remove all the crio, bbb, and 2014 code

This also meant upgrading to clang-3.5 from llvm.org to try to get it to
build code for the roboRIO.

Change-Id: I44df4af4e9e04296ee7934cc787da3101b1ac449
diff --git a/aos/README.txt b/aos/README.txt
index 7bf0144..e0f9377 100644
--- a/aos/README.txt
+++ b/aos/README.txt
@@ -10,9 +10,8 @@
 	the .config files are for building linux kernels
 
 linux/ has code that only runs on linux systems
-crio/ has code that only runs on the crio
 
-common/ is where stuff that runs on both the crio and linux is
+common/ is where stuff that runs on all platforms is
 common/input/ is where the framework code for reading stuff into the queues system is
 common/output/ is where the framework for writing things out of the queues system is
 common/messages is where the c++ wrappers for "queues" are
diff --git a/aos/build/aos.gyp b/aos/build/aos.gyp
index 1187d05..648718c 100644
--- a/aos/build/aos.gyp
+++ b/aos/build/aos.gyp
@@ -1,9 +1,4 @@
 # This file has all of the aos targets.
-# For the cRIO, shared_library means to build a .out file, NOT a shared library.
-#   This means that depending on shared libraries doesn't work very well.
-# Shared libraries don't seem to be supported by the powerpc-wrs-vxworks
-# tools and gyp doesn't like a static_library that depends only on
-# other static_librarys.
 {
   'targets': [
     # A target for things used by the logging implementation (except die) to
diff --git a/aos/build/aos.gypi b/aos/build/aos.gypi
index 6cae0e4..3ffe5c0 100644
--- a/aos/build/aos.gypi
+++ b/aos/build/aos.gypi
@@ -22,32 +22,20 @@
     ],
   },
   'conditions': [
-    ['PLATFORM=="crio"', {
-        'make_global_settings': [
-          ['CC', '<!(readlink -f <(AOS)/build/crio_cc)'],
-          ['CXX', '<!(readlink -f <(AOS)/build/crio_cxx)'],
-        ],
-      }
-    ], ['PLATFORM=="linux-arm-gcc_frc"', {
+    ['PLATFORM=="linux-arm-gcc_frc"', {
         'make_global_settings': [
           ['CC', '<(ccache)<!(which arm-frc-linux-gnueabi-gcc-4.9)'],
           ['CXX', '<(ccache)<!(which arm-frc-linux-gnueabi-g++-4.9)'],
         ],
       },
-    ], ['PLATFORM=="linux-arm-gcc"', {
-        'make_global_settings': [
-          ['CC', '<(ccache)<!(which arm-linux-gnueabihf-gcc-4.7)'],
-          ['CXX', '<(ccache)<!(which arm-linux-gnueabihf-g++-4.7)'],
-        ],
-      },
-    ], ['PLATFORM=="linux-arm-clang"', {
+    ], ['PLATFORM=="linux-arm-clang_frc"', {
         'variables': {
           'arm-clang-symlinks': '<!(realpath -s <(AOS)/build/arm-clang-symlinks)',
           'arm-clang-sysroot': '<(arm-clang-symlinks)/sysroot',
 # Flags that should be passed to all compile/link/etc commands.
           'platflags': [
-            '-target', 'armv7a-linux-gnueabihf',
-            '-mfloat-abi=hard',
+            '-target', 'armv7a-frc-linux-gnueabi',
+            '-mfloat-abi=softfp',
             '--sysroot=<(arm-clang-sysroot)',
 
             # TODO(brians): See if it will run with this enabled.
@@ -63,18 +51,21 @@
             '<@(platflags)',
           ],
           'cflags_cc': [
-            '-isystem', '<(arm-clang-sysroot)/usr/include/c++/4.7.2',
-            '-isystem', '<(arm-clang-sysroot)/usr/include/c++/4.7.2/arm-linux-gnueabihf',
+            '-isystem', '<(arm-clang-sysroot)/include/c++/4.9.1',
+            '-isystem', '<(arm-clang-sysroot)/include/c++/4.9.1/arm-frc-linux-gnueabi',
           ],
           'ldflags': [
             '<@(platflags)',
+            '-L', '/usr/lib/x86_64-linux-gnu/gcc/arm-frc-linux-gnueabi/4.9.1',
+            #'-L', '<(arm-clang-sysroot)/other_lib/',
+            #'-nostartfiles',
           ],
         },
       },
     ], ['PLATFORM=="linux-amd64-clang"', {
         'make_global_settings': [
-          ['CC', '<(ccache)/opt/clang-3.5/bin/clang'],
-          ['CXX', '<(ccache)/opt/clang-3.5/bin/clang++'],
+          ['CC', '<(ccache)<!(which clang)'],
+          ['CXX', '<(ccache)<!(which clang++)'],
         ],
       },
     ], ['PLATFORM=="linux-amd64-gcc"', {
@@ -153,13 +144,21 @@
       '__STDC_CONSTANT_MACROS',
       '__STDC_LIMIT_MACROS',
       'AOS_COMPILER_<!(echo <(FULL_COMPILER) | sed \'s/\./_/g\')',
+      '_FILE_OFFSET_BITS=64',
     ],
     'ldflags': [
       '-pipe',
+      '-pthread',
+    ],
+    'libraries': [
+      '-lm',
+      '-lrt',
     ],
     'cflags': [
       '-pipe',
 
+      '-pthread',
+
       '-Wall',
       '-Wextra',
       '-Wswitch-enum',
@@ -178,6 +177,9 @@
     'cflags_c': [
       '-std=gnu99',
     ],
+    'cflags_cc': [
+      '-std=gnu++11',
+    ],
     'include_dirs': [
       '<(DEPTH)',
     ],
@@ -217,15 +219,7 @@
           'ldflags': [
             '-O3',
           ],
-          'conditions': [['PLATFORM=="crio"', {
-# Copied from stuff that I think started with the supplied Makefiles.
-              'cflags': [
-                '-fstrength-reduce',
-                '-fno-builtin',
-                '-fno-strict-aliasing',
-              ],
-            }],
-            ['ARCHITECTURE=="amd64"', {
+          'conditions': [['ARCHITECTURE=="amd64"', {
               'cflags': [
                 '-fstack-protector-all',
               ],
@@ -244,17 +238,7 @@
           ],
         }
       ],
-      ['ARCHITECTURE=="arm" and FULL_COMPILER!="gcc_frc"', {
-        'cflags': [
-          '-mcpu=cortex-a8',
-          '-mfpu=neon',
-        ],
-        'ldflags': [
-          '-mcpu=cortex-a8',
-          '-mfpu=neon',
-        ],
-      }],
-      ['ARCHITECTURE=="arm" and FULL_COMPILER=="gcc_frc"', {
+      ['ARCHITECTURE=="arm"', {
         'cflags': [
           '-mcpu=cortex-a9',
           '-mfpu=neon',
@@ -266,95 +250,31 @@
           '-mfloat-abi=softfp',
         ],
       }],
-      ['PLATFORM=="crio"', {
-          'target_conditions': [
-            ['_type=="shared_library"', {
-                'ldflags': [
-                  '-r',
-                  '-nostdlib',
-                  '-Wl,-X',
-                ],
-              }
-            ],
-          ],
-          'ldflags': [
-            '-mcpu=603e',
-            '-mstrict-align',
-            '-mlongcall',
-          ],
-          'cflags': [
-            # The Freescale MPC5200B (cRIO-FRC) and MPC5125 (cRIO-FRC II) both
-            # have MPC603e cores according to Freescale docs.
-            '-mcpu=603e',
-            '-mstrict-align',
-            '-mlongcall',
-            '-isystem', '<(aos_abs)/../output/downloaded/gccdist/WindRiver/gnu/3.4.4-vxworks-6.3/x86-win32/lib/gcc/powerpc-wrs-vxworks/3.4.4/include/',
-            '-isystem', '<(aos_abs)/../output/downloaded/gccdist/WindRiver/vxworks-6.3/target/h/',
-            '-isystem', '<(aos_abs)/../output/downloaded/gccdist/WindRiver/gnu/3.4.4-vxworks-6.3/x86-win32/include/c++/3.4.4/',
-            '-isystem', '<(aos_abs)/../output/downloaded/gccdist/WindRiver/gnu/3.4.4-vxworks-6.3/x86-win32/include/c++/3.4.4/powerpc-wrs-vxworks/',
-            '-isystem', '<(WIND_BASE)/target/h',
-            '-isystem', '<(WIND_BASE)/target/h/wrn/coreip',
-          ],
-          'cflags_cc': [
-            '-std=gnu++0x',
-          ],
-          'defines': [
-            'CPU=PPC603',
-            'TOOL_FAMILY=gnu',
-            'TOOL=gnu',
-            '_WRS_KERNEL',
-            '__PPC__',
-# Prevent the vxworks system headers from being dumb and #defining min and max.
-            'NOMINMAX',
-          ],
-        }, { # 'PLATFORM!="crio"'
-          'target_conditions': [
+      ['COMPILER=="gcc"', {
+        'cflags': [
+          '-Wunused-local-typedefs',
+        ],
+        'defines': [
+          '__has_feature(n)=0'
+        ],
+      }], ['COMPILER=="clang"', {
+        'cflags': [
+          '-fcolor-diagnostics',
+          '-fmessage-length=80',
+          '-fmacro-backtrace-limit=0',
+        ],
+        'defines': [
+          # This tells clang's optimizer the same thing.
+          '__builtin_assume_aligned(p, a)=({ const typeof(p) my_p_ = (p); ((((uintptr_t)my_p_ % (a)) == 0u) ? my_p_ : (__builtin_unreachable(), (my_p_))); })',
+        ],
+      }],
+    ],
+    'target_conditions': [
 # Default to putting outputs into rsync_dir.
-            ['no_rsync==0 and _type!="static_library"', {
-                'product_dir': '<(rsync_dir)',
-              },
-            ],
-          ],
-          'ldflags': [
-            '-pthread',
-          ],
-          'cflags': [
-            '-pthread',
-          ],
-          'cflags_cc': [
-            '-std=gnu++11',
-          ],
-          'defines': [
-            '_FILE_OFFSET_BITS=64',
-          ],
-          'libraries': [
-            '-lm',
-            '-lrt',
-          ],
-          'conditions': [
-            ['COMPILER=="gcc"', {
-                'cflags': [
-                  '-Wunused-local-typedefs',
-                ],
-                'defines': [
-                  '__has_feature(n)=0'
-                ],
-              },
-            ], ['COMPILER=="clang"', {
-                'cflags': [
-                  '-fcolor-diagnostics',
-                  '-fmessage-length=80',
-                  '-fmacro-backtrace-limit=0',
-                ],
-                'defines': [
-                  # This tells clang's optimizer the same thing.
-                  '__builtin_assume_aligned(p, a)=({ const typeof(p) my_p_ = (p); ((((uintptr_t)my_p_ % (a)) == 0u) ? my_p_ : (__builtin_unreachable(), (my_p_))); })',
-                ],
-              },
-            ],
-          ],
-        }
-      ]
+      ['no_rsync==0 and _type!="static_library"', {
+          'product_dir': '<(rsync_dir)',
+        },
+      ],
     ],
   },
 }
diff --git a/aos/build/aos_all.gyp b/aos/build/aos_all.gyp
index 3d02b84..d67a11d 100644
--- a/aos/build/aos_all.gyp
+++ b/aos/build/aos_all.gyp
@@ -17,7 +17,6 @@
         '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:raw_queue_test',
         '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:ipc_stress_test',
         '<(AOS)/linux_code/starter/starter.gyp:starter_exe',
-        '<(AOS)/linux_code/starter/starter.gyp:netconsole',
         '<(AOS)/linux_code/linux_code.gyp:complex_thread_local_test',
         '<(AOS)/linux_code/linux_code.gyp:dump_rtprio',
       ],
diff --git a/aos/build/arm-clang-symlinks/bin/as b/aos/build/arm-clang-symlinks/bin/as
index 0e8bd12..f5bd4f8 120000
--- a/aos/build/arm-clang-symlinks/bin/as
+++ b/aos/build/arm-clang-symlinks/bin/as
@@ -1 +1 @@
-/usr/arm-linux-gnueabihf/bin/as
\ No newline at end of file
+/usr/bin/arm-frc-linux-gnueabi-as
\ No newline at end of file
diff --git a/aos/build/arm-clang-symlinks/bin/clang b/aos/build/arm-clang-symlinks/bin/clang
index 6e5b0eb..c456250 120000
--- a/aos/build/arm-clang-symlinks/bin/clang
+++ b/aos/build/arm-clang-symlinks/bin/clang
@@ -1 +1 @@
-/opt/clang-3.5/bin/clang
\ No newline at end of file
+/usr/bin/clang
\ No newline at end of file
diff --git a/aos/build/arm-clang-symlinks/bin/clang++ b/aos/build/arm-clang-symlinks/bin/clang++
index 3237b82..2932265 120000
--- a/aos/build/arm-clang-symlinks/bin/clang++
+++ b/aos/build/arm-clang-symlinks/bin/clang++
@@ -1 +1 @@
-/opt/clang-3.5/bin/clang++
\ No newline at end of file
+/usr/bin/clang++
\ No newline at end of file
diff --git a/aos/build/arm-clang-symlinks/bin/ld b/aos/build/arm-clang-symlinks/bin/ld
index 5981fc6..a12d1ed 120000
--- a/aos/build/arm-clang-symlinks/bin/ld
+++ b/aos/build/arm-clang-symlinks/bin/ld
@@ -1 +1 @@
-/usr/arm-linux-gnueabihf/bin/ld.gold
\ No newline at end of file
+/usr/bin/arm-frc-linux-gnueabi-ld
\ No newline at end of file
diff --git a/aos/build/arm-clang-symlinks/more_libs/libc.so b/aos/build/arm-clang-symlinks/more_libs/libc.so
new file mode 100644
index 0000000..188a467
--- /dev/null
+++ b/aos/build/arm-clang-symlinks/more_libs/libc.so
@@ -0,0 +1,5 @@
+/* GNU ld script
+   Use the shared library, but some functions are only in
+   the static library, so try that secondarily.  */
+OUTPUT_FORMAT(elf32-littlearm)
+GROUP ( /home/brian/Desktop/git_frc971/2014/trunk/src/aos/build/arm-clang-symlinks/sysroot/lib/libc.so.6 /home/brian/Desktop/git_frc971/2014/trunk/src/aos/build/arm-clang-symlinks/sysroot/usr/lib/libc_nonshared.a  AS_NEEDED ( /home/brian/Desktop/git_frc971/2014/trunk/src/aos/build/arm-clang-symlinks/sysroot/lib/ld-linux.so.3 ) )
diff --git a/aos/build/arm-clang-symlinks/more_libs/libpthread.so b/aos/build/arm-clang-symlinks/more_libs/libpthread.so
new file mode 100644
index 0000000..a7c99bf
--- /dev/null
+++ b/aos/build/arm-clang-symlinks/more_libs/libpthread.so
@@ -0,0 +1,5 @@
+/* GNU ld script
+   Use the shared library, but some functions are only in
+   the static library, so try that secondarily.  */
+OUTPUT_FORMAT(elf32-littlearm)
+GROUP ( /home/brian/Desktop/git_frc971/2014/trunk/src/aos/build/arm-clang-symlinks/sysroot/lib/libpthread.so.0 /home/brian/Desktop/git_frc971/2014/trunk/src/aos/build/arm-clang-symlinks/sysroot/usr/lib/libpthread_nonshared.a )
diff --git a/aos/build/arm-clang-symlinks/other_lib b/aos/build/arm-clang-symlinks/other_lib
new file mode 120000
index 0000000..4603144
--- /dev/null
+++ b/aos/build/arm-clang-symlinks/other_lib
@@ -0,0 +1 @@
+/usr/lib/x86_64-linux-gnu/gcc/arm-frc-linux-gnueabi/4.9.1
\ No newline at end of file
diff --git a/aos/build/arm-clang-symlinks/sysroot/include b/aos/build/arm-clang-symlinks/sysroot/include
new file mode 120000
index 0000000..f4878ac
--- /dev/null
+++ b/aos/build/arm-clang-symlinks/sysroot/include
@@ -0,0 +1 @@
+/usr/arm-frc-linux-gnueabi/include
\ No newline at end of file
diff --git a/aos/build/arm-clang-symlinks/sysroot/lib b/aos/build/arm-clang-symlinks/sysroot/lib
index aa3bc5b..5a01f30 120000
--- a/aos/build/arm-clang-symlinks/sysroot/lib
+++ b/aos/build/arm-clang-symlinks/sysroot/lib
@@ -1 +1 @@
-/usr/lib/gcc/arm-linux-gnueabihf/4.7
\ No newline at end of file
+/usr/arm-frc-linux-gnueabi/lib
\ No newline at end of file
diff --git a/aos/build/arm-clang-symlinks/sysroot/usr b/aos/build/arm-clang-symlinks/sysroot/usr
new file mode 120000
index 0000000..5d4ffd7
--- /dev/null
+++ b/aos/build/arm-clang-symlinks/sysroot/usr
@@ -0,0 +1 @@
+/usr/arm-frc-linux-gnueabi/usr
\ No newline at end of file
diff --git a/aos/build/arm-clang-symlinks/sysroot/usr/include b/aos/build/arm-clang-symlinks/sysroot/usr/include
deleted file mode 120000
index 60bd24d..0000000
--- a/aos/build/arm-clang-symlinks/sysroot/usr/include
+++ /dev/null
@@ -1 +0,0 @@
-/usr/arm-linux-gnueabihf/include
\ No newline at end of file
diff --git a/aos/build/arm-clang-symlinks/sysroot/usr/lib b/aos/build/arm-clang-symlinks/sysroot/usr/lib
deleted file mode 120000
index a9253d6..0000000
--- a/aos/build/arm-clang-symlinks/sysroot/usr/lib
+++ /dev/null
@@ -1 +0,0 @@
-/usr/arm-linux-gnueabihf/lib
\ No newline at end of file
diff --git a/aos/build/build.py b/aos/build/build.py
index acca25f..39559b3 100755
--- a/aos/build/build.py
+++ b/aos/build/build.py
@@ -377,86 +377,6 @@
                   ' '.join(not_found))
       exit(1)
 
-class CRIOProcessor(Processor):
-  """A Processor subclass for building cRIO code."""
-
-  class Platform(Processor.Platform):
-    def __init__(self, debug, wind_base):
-      super(CRIOProcessor.Platform, self).__init__()
-
-      self.__debug = debug
-      self.__wind_base = wind_base
-
-    def __repr__(self):
-      return 'CRIOProcessor.Platform(debug=%s)' % self.debug()
-    def __str__(self):
-      return 'crio%s' % ('-debug' if self.debug() else '')
-
-    def outname(self):
-      return 'crio-debug' if self.debug() else 'crio'
-    def os(self):
-      return 'vxworks'
-    def gyp_platform(self):
-      return 'crio'
-    def architecture(self):
-      return 'ppc'
-    def compiler(self):
-      return 'gcc'
-    def sanitizer(self):
-      return 'none'
-    def debug(self):
-      return self.__debug
-    def wind_base(self):
-      return self.__wind_base
-
-    # TODO(brians): test this
-    def deploy(self, dry_run):
-      self.do_deploy(dry_run,
-                     ('ncftpput', get_ip('robot'), '/',
-                      os.path.join(self.outdir(), 'lib',
-                                   'FRC_UserProgram.out')))
-
-    def build_env(self):
-      return {'WIND_BASE': self.wind_base()}
-
-  def __init__(self):
-    super(CRIOProcessor, self).__init__()
-
-    if 'WIND_BASE' in os.environ:
-      self.__wind_base = os.environ['WIND_BASE']
-    else:
-      self.__wind_base = '/usr/local/powerpc-wrs-vxworks/wind_base'
-
-  def parse_platforms(self, platforms_string):
-    if platforms_string is None or platforms_string == 'crio':
-      return (CRIOProcessor.Platform(False, self.wind_base()),)
-    elif string == 'crio-debug' or string == 'debug':
-      return (CRIOProcessor.Platform(True, self.wind_base()),)
-    else:
-      raise Processor.UnknownPlatform(
-          '"%s" not recognized as a cRIO platform.' % platforms_string)
-
-  def wind_base(self):
-    return self.__wind_base
-
-  def extra_gyp_flags(self):
-    return ('-DWIND_BASE=%s' % self.wind_base(),)
-
-  def modify_ninja_file(self, ninja_file):
-    subprocess.check_call(
-        ('sed', '-i',
-         's/nm -gD/nm/g', ninja_file),
-        stdin=open(os.devnull, 'r'))
-
-  def download_externals(self, _):
-    call_download_externals('crio')
-
-  def check_installed(self, platforms, is_deploy):
-    packages = ('powerpc-wrs-vxworks', 'tcl')
-    if is_deploy:
-      packages += ('ncftp',)
-    self.do_check_installed(packages)
-
 class PrimeProcessor(Processor):
   """A Processor subclass for building prime code."""
 
@@ -511,7 +431,7 @@
     def deploy(self, dry_run):
       # Downloads code to the prime in a way that avoids clashing too badly with
       # starter (like the naive download everything one at a time).
-      if self.compiler() == 'gcc_frc':
+      if self.compiler().endswith('_frc'):
         device = 'roboRIO'
       else:
         device = 'prime'
@@ -550,11 +470,11 @@
              ''.join(mv_cmd).format(TMPDIR=TEMP_DIR, TO_DIR=TARGET_DIR)))
 
     def build_env(self):
-      OTHER_SYSROOT = '/opt/clang-3.5/'
+      OTHER_SYSROOT = '/usr/lib/llvm-3.5'
       SYMBOLIZER_PATH = OTHER_SYSROOT + 'bin/llvm-symbolizer'
       r = {}
       if self.compiler() == 'clang' or self.compiler() == 'gcc_4.8':
-        r['LD_LIBRARY_PATH'] = OTHER_SYSROOT + 'lib64'
+        r['LD_LIBRARY_PATH'] = OTHER_SYSROOT + 'lib'
       if self.sanitizer() == 'address':
         r['ASAN_SYMBOLIZER_PATH'] = SYMBOLIZER_PATH
         r['ASAN_OPTIONS'] = \
@@ -570,7 +490,7 @@
       r['CCACHE_DIR'] = os.path.abspath(os.path.join(aos_path(), '..', 'output',
                                                      'ccache_dir'))
       r['CCACHE_HASHDIR'] = 'yes'
-      if self.compiler() == 'clang':
+      if self.compiler().startswith('clang'):
         # clang doesn't like being run directly on the preprocessed files.
         r['CCACHE_CPP2'] = 'yes'
       # Without this, ccache slows down because of the generated header files.
@@ -586,7 +506,7 @@
       return r
 
   ARCHITECTURES = ('arm', 'amd64')
-  COMPILERS = ('clang', 'gcc', 'gcc_4.8', 'gcc_frc')
+  COMPILERS = ('clang', 'gcc', 'gcc_frc')
   SANITIZERS = ('address', 'undefined', 'integer', 'memory', 'thread', 'none')
   SANITIZER_TEST_WARNINGS = {
       'memory': (True,
@@ -603,14 +523,14 @@
     for architecture in PrimeProcessor.ARCHITECTURES:
       for compiler in PrimeProcessor.COMPILERS:
         for debug in [True, False]:
-          if ((architecture == 'arm' and compiler == 'gcc_4.8') or
-              (architecture == 'amd64' and compiler == 'gcc_frc')):
+          if ((architecture == 'arm' and not compiler.endswith('_frc')) or
+              (architecture == 'amd64' and compiler.endswith('_frc'))):
             # We don't have a compiler to use here.
             continue
           platforms.append(
               self.Platform(architecture, compiler, debug, 'none'))
     for sanitizer in PrimeProcessor.SANITIZERS:
-      for compiler in ('gcc_4.8', 'clang'):
+      for compiler in ('clang',):
         if compiler == 'gcc_4.8' and (sanitizer == 'undefined' or
                                       sanitizer == 'integer' or
                                       sanitizer == 'memory'):
@@ -630,12 +550,8 @@
         if warning[0]:
           default_platforms -= self.select_platforms(sanitizer=sanitizer)
     elif is_deploy:
-      if get_ip_base() == '10.99.71':
-        compiler = 'gcc_frc'
-      else:
-        compiler = 'clang'
       default_platforms = self.select_platforms(architecture='arm',
-                                                compiler=compiler,
+                                                compiler='gcc_frc',
                                                 debug=False)
     else:
       default_platforms = self.select_platforms(debug=False)
@@ -732,7 +648,8 @@
       if platform.architecture() == 'arm':
         packages.add('gcc-4.7-arm-linux-gnueabihf')
         packages.add('g++-4.7-arm-linux-gnueabihf')
-      if platform.compiler() == 'clang' or platform.compiler() == 'gcc_4.8':
+      if (platform.compiler() == 'clang' or platform.compiler() == 'gcc_4.8' or
+          platform.compiler() == 'clang_frc'):
         packages.add('clang-3.5')
       if platform.compiler() == 'gcc_4.8':
         packages.add('libcloog-isl3:amd64')
@@ -847,7 +764,7 @@
     if len(r) > 1:
       r[-1] = 'and ' + r[-1]
     return ', '.join(r)
-  
+
   class Arguments(object):
     def __init__(self):
       self.jobs = os.sysconf('SC_NPROCESSORS_ONLN') + 2
@@ -890,9 +807,7 @@
     else:
       args.platform = arg
 
-  if args.processor == 'crio':
-    processor = CRIOProcessor()
-  elif args.processor == 'prime':
+  if args.processor == 'prime':
     processor = PrimeProcessor(args.action_name == 'tests',
                                args.action_name == 'deploy')
   elif args.processor == 'bot3_prime':
@@ -1018,7 +933,7 @@
              '-DSANITIZER=%s' % platform.sanitizer(),
              '-DEXTERNALS_EXTRA=%s' %
              ('-fPIE' if platform.sanitizer() in PrimeProcessor.PIE_SANITIZERS
-              else ('_frc' if platform.compiler() == 'gcc_frc' else ''))) +
+              else ('_frc' if platform.compiler().endswith('_frc') else ''))) +
             processor.extra_gyp_flags() + (args.main_gyp,),
             stdin=subprocess.PIPE)
         gyp.communicate(("""
diff --git a/aos/build/crio_cc b/aos/build/crio_cc
deleted file mode 100755
index 442d3fe..0000000
--- a/aos/build/crio_cc
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-# This is a helper script that gets called as a replacement for gcc. It just
-# passes all arguments on unless it is being called as a shared linker.
-
-[ $1 != '-shared' ] && exec powerpc-wrs-vxworks-gcc "$@"
-exec $(dirname $0)/crio_link_out "$@"
diff --git a/aos/build/crio_cxx b/aos/build/crio_cxx
deleted file mode 100755
index ea68e58..0000000
--- a/aos/build/crio_cxx
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-# This is a helper script that gets called as a replacement for g++. It just
-# passes all arguments on unless it is being called as a shared linker.
-
-[ $1 != '-shared' ] && exec powerpc-wrs-vxworks-g++ "$@"
-exec $(dirname $0)/crio_link_out "$@"
diff --git a/aos/build/crio_link_out b/aos/build/crio_link_out
deleted file mode 100755
index 0630341..0000000
--- a/aos/build/crio_link_out
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-#set -x
-
-set -e
-
-# This is a helper script that compiles .out files for the cRIO. It gets called
-# by the gcc and g++ wrapper scripts if they detect that the tool is being used
-# as a shared linker.
-
-# All the flags except -shared.
-INPUTS_FLAGS=`echo "$@" | sed 's/-shared//g'`
-# The arguments after any -o flags.
-OUTPUT=`echo ${INPUTS_FLAGS} | awk \
-  'BEGIN { RS=" " }; output { print ; output = 0 }; /-o/ { output = 1 }'`
-# All arguments that don't start with a - and aren't ${OUTPUT}.
-INPUTS=`echo ${INPUTS_FLAGS} | awk \
-  'BEGIN { RS=" " }; /-Wl,--no-whole-archive/ { output = 0 }; \
-  output { print }; \
-  /-Wl,--whole-archive/ { output = 1 }'`
-TEMPDIR=`dirname ${OUTPUT}`
-AOS=`dirname $0`/..
-powerpc-wrs-vxworks-nm ${INPUTS} | \
-  tclsh ${WIND_BASE}/host/resource/hutils/tcl/munch.tcl -c ppc > \
-    ${TEMPDIR}/ctdt.c
-powerpc-wrs-vxworks-gcc -I${AOS}/.. -c ${TEMPDIR}/ctdt.c -o ${TEMPDIR}/ctdt.o
-powerpc-wrs-vxworks-g++ ${INPUTS_FLAGS} ${TEMPDIR}/ctdt.o
-ln -f ${OUTPUT} `echo ${OUTPUT} | sed 's/lib\([A-Za-z0-9_]*\)\.so$/\1.out/'`
diff --git a/aos/build/download_externals.sh b/aos/build/download_externals.sh
index 674dc3a..50eec85 100755
--- a/aos/build/download_externals.sh
+++ b/aos/build/download_externals.sh
@@ -26,7 +26,6 @@
   export CXXFLAGS="-mcpu=cortex-a8 -mfpu=neon"
   export OBJDUMP=${CROSS_COMPILE}objdump
   CONFIGURE_FLAGS="--host=arm-linux-gnueabihf CC=${CC} CXX=${CXX} CFLAGS=\"${CFLAGS}\" CXXFLAGS=\"${CXXFLAGS}\" OBJDUMP=${OBJDUMP}"
-  IS_CRIO=0
 elif [ "$1" == "arm_frc" ]; then
   COMPILED=${EXTERNALS}/../compiled-arm_frc
 
@@ -40,7 +39,6 @@
   CONFIGURE_FLAGS="--host=arm-frc-linux-gnueabi CC=${CC} CXX=${CXX} CFLAGS=\"${CFLAGS}\" CXXFLAGS=\"${CXXFLAGS}\" OBJDUMP=${OBJDUMP}"
 elif [ "$1" == "amd64" ]; then
   COMPILED=${EXTERNALS}/../compiled-amd64
-  IS_CRIO=0
 elif [ "$1" == "amd64-fPIE" ]; then
   COMPILED=${EXTERNALS}/../compiled-amd64-fPIE
 
@@ -49,9 +47,6 @@
   ALL_LDFLAGS="-fPIE"
   export LDFLAGS=${ALL_LDFLAGS}
   CONFIGURE_FLAGS="CFLAGS=\"${CFLAGS}\" CXXFLAGS=\"${CXXFLAGS}\" LDFLAGS=\"${LDFLAGS}\""
-  IS_CRIO=0
-elif [ "$1" == "crio" ]; then
-  IS_CRIO=1
 else
   echo "Unknown platform $1 to download externals for." 1>&2
   exit 1
@@ -68,24 +63,12 @@
 # get gyp
 [ -d ${GYP_DIR} ] || ( svn co http://gyp.googlecode.com/svn/trunk -r ${GYP_REVISION} ${GYP_DIR} && patch -p1 -d ${GYP_DIR} < ${AOS}/externals/gyp.patch )
 
-# get gccdist
-GCCDIST=${EXTERNALS}/gccdist
-[ -f ${GCCDIST}.zip ] || wget ftp://ftp.ni.com/pub/devzone/tut/updated_vxworks63gccdist.zip -O ${GCCDIST}.zip
-[ -d ${GCCDIST} ] || ( cd ${EXTERNALS} && unzip -q ${GCCDIST}.zip )
-
 # get eigen
 EIGEN_VERSION=3.2.1
 EIGEN_DIR=${EXTERNALS}/eigen-${EIGEN_VERSION}
 [ -f ${EIGEN_DIR}.tar.bz2 ] || wget http://bitbucket.org/eigen/eigen/get/${EIGEN_VERSION}.tar.bz2 -O ${EIGEN_DIR}.tar.bz2
 [ -d ${EIGEN_DIR} ] || ( mkdir ${EIGEN_DIR} && tar --strip-components=1 -C ${EIGEN_DIR} -xf ${EIGEN_DIR}.tar.bz2 )
 
-# get the LLVM Compiler-RT source
-COMPILER_RT_TAG=RELEASE_32/final
-COMPILER_RT_VERSION=`echo ${COMPILER_RT_TAG} | sed s:/:_:`
-COMPILER_RT_DIR=${EXTERNALS}/compiler-rt-${COMPILER_RT_VERSION}
-COMPILER_RT_URL=http://llvm.org/svn/llvm-project/compiler-rt/tags/${COMPILER_RT_TAG}
-[ -d ${COMPILER_RT_DIR} ] || svn checkout ${COMPILER_RT_URL} ${COMPILER_RT_DIR}
-
 # get gtest
 GTEST_VERSION=1.6.0
 GTEST_DIR=${EXTERNALS}/gtest-${GTEST_VERSION}-p2
@@ -93,8 +76,6 @@
 [ -f ${GTEST_ZIP} ] || wget http://googletest.googlecode.com/files/gtest-${GTEST_VERSION}.zip -O ${GTEST_ZIP}
 [ -d ${GTEST_DIR} ] || ( unzip ${GTEST_ZIP} -d ${TMPDIR} && mv ${TMPDIR}/gtest-${GTEST_VERSION} ${GTEST_DIR} && cd ${GTEST_DIR} && patch -p1 < ${AOS}/externals/gtest.patch )
 
-[[ ${IS_CRIO} -eq 1 ]] && exit 0
-
 # get and build libjpeg
 LIBJPEG_VERSION=8d
 LIBJPEG_DIR=${COMPILED}/jpeg-${LIBJPEG_VERSION}
@@ -195,14 +176,6 @@
 	--prefix=$(readlink -f ${LIBCDD_PREFIX}) \
 	&& make gmpdir=${GMP_PREFIX} && make install"
 
-# download stm32flash
-STM32FLASH_COMMIT=8399fbe1baf2b7d097746786458021d92895d71b
-STM32FLASH_DIR=${EXTERNALS}/stm32flash-${STM32FLASH_COMMIT}
-STM32FLASH_URL=https://git.gitorious.org/stm32flash/stm32flash.git
-[ -d ${STM32FLASH_DIR} ] || ( mkdir ${STM32FLASH_DIR} && \
-	git clone ${STM32FLASH_URL} ${STM32FLASH_DIR}/stm32flash && \
-	cd ${STM32FLASH_DIR}/stm32flash && git checkout ${STM32FLASH_COMMIT} )
-
 # get and build libunwind
 LIBUNWIND_VERSION=1.1
 LIBUNWIND_TAR=${EXTERNALS}/libunwind-${LIBUNWIND_VERSION}.tar.gz
diff --git a/aos/build/externals.gyp b/aos/build/externals.gyp
index ae5a038..de00669 100644
--- a/aos/build/externals.gyp
+++ b/aos/build/externals.gyp
@@ -46,54 +46,6 @@
       },
     },
     {
-      'target_name': 'WPILib',
-      'type': 'static_library',
-      'sources': [
-        '<!@(find <(AOS)/externals/WPILib/WPILib/ -name *.cpp)',
-      ],
-      'cflags!': [
-        '-Werror',
-        '-ggdb3',
-        '-O0'
-      ],
-      'cflags': [
-        '-ggdb1',
-        '-O3'
-      ],
-      'include_dirs': [
-        '<(AOS)/externals/WPILib',
-        '<(AOS)/externals/WPILib/WPILib',
-      ],
-      'direct_dependent_settings': {
-        'cflags': [
-          '-isystem', '<(AOS)/externals/WPILib',
-          '-isystem', '<(AOS)/externals/WPILib/WPILib',
-        ],
-      },
-    },
-    {
-      'target_name': 'WPILib-NetworkRobotValues',
-      'type': 'static_library',
-      'sources': [
-        '<(AOS)/externals/WPILib/WPILib/NetworkRobot/NetworkRobotValues.cpp'
-      ],
-      'include_dirs': [
-        '<(AOS)/externals/WPILib',
-      ],
-      'defines': [
-        # Clang doesn't like having register in the hton* macros.
-        'register=',
-      ],
-      'direct_dependent_settings': {
-        'include_dirs': [
-          '<(AOS)/externals/WPILib',
-        ],
-        'defines': [
-          'register=',
-        ],
-      },
-    },
-    {
       'target_name': 'opencv',
       'type': 'none',
       'link_settings': {
@@ -205,26 +157,5 @@
         'include_dirs': ['<(compiled_abs)/'],
       },
     },
-    {
-      'target_name': 'stm32flash',
-      'type': 'static_library',
-      'sources': [
-        '<(externals)/stm32flash-<(stm32flash_commit)/stm32flash/init.c',
-        '<(externals)/stm32flash-<(stm32flash_commit)/stm32flash/parsers/hex.c',
-        '<(externals)/stm32flash-<(stm32flash_commit)/stm32flash/serial_common.c',
-        '<(externals)/stm32flash-<(stm32flash_commit)/stm32flash/serial_platform.c',
-        '<(externals)/stm32flash-<(stm32flash_commit)/stm32flash/utils.c',
-        '<(externals)/stm32flash-<(stm32flash_commit)/stm32flash/stm32.c',
-      ],
-      'cflags': [
-        '-Wno-error',
-      ],
-      'direct_dependent_settings': {
-        'include_dirs': ['<(externals_abs)/stm32flash-<(stm32flash_commit)'],
-      },
-    },
-  ],
-  'includes': [
-    'libgcc-additions/libgcc-additions.gypi',
   ],
 }
diff --git a/aos/build/libgcc-additions/README b/aos/build/libgcc-additions/README
deleted file mode 100644
index 6a9a665..0000000
--- a/aos/build/libgcc-additions/README
+++ /dev/null
@@ -1,26 +0,0 @@
-This directory contains the stuff necessary to deal with the fact that the
-  libgcc.a from the old GCC that the cRIO has doesn't have all of the functions
-  that newer GCCs expect from it.
-
-[extra functions necessary for 4.5.2]
-I generated this diff with `powerpc-wrs-vxworks-nm \
-  gccdist/WindRiver/gnu/3.4.4-vxworks-6.3/x86-win32/lib/gcc/powerpc-wrs-vxworks/3.4.4/libgcc.a \
-  | fgrep '000 T' | awk ' { print $NF }'` (and using the same command with the
-  gccdist.a from the 4.5.2 GCC.
-  I then gave the outputs from both of those to diff and edited out by hand the
-  functions that just moved.
-__powisf2
-__powidf2
-__mulsc3
-__muldc3
-__divsc3
-__divdc3
-__bswapsi2
-__bswapdi2
-__floatundisf
-__floatundidf
-__eprintf
-
-eprintf looks like it's not needed.
-Compiler-RT thinks that bswapsi2 and bswapdi2 are only needed on arm, so it
-  only has arm assembly for them.
diff --git a/aos/build/libgcc-additions/_bswapdi2.o b/aos/build/libgcc-additions/_bswapdi2.o
deleted file mode 100644
index 8bc6f56..0000000
--- a/aos/build/libgcc-additions/_bswapdi2.o
+++ /dev/null
Binary files differ
diff --git a/aos/build/libgcc-additions/_bswapsi2.o b/aos/build/libgcc-additions/_bswapsi2.o
deleted file mode 100644
index 4700ad8..0000000
--- a/aos/build/libgcc-additions/_bswapsi2.o
+++ /dev/null
Binary files differ
diff --git a/aos/build/libgcc-additions/libgcc-additions.gypi b/aos/build/libgcc-additions/libgcc-additions.gypi
deleted file mode 100644
index afa81f6..0000000
--- a/aos/build/libgcc-additions/libgcc-additions.gypi
+++ /dev/null
@@ -1,35 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'libgcc-4.5.2',
-      'type': 'static_library',
-      'variables': {
-        'compiler-rt': '<(externals)/compiler-rt-<(compiler_rt_version)',
-      },
-      'include_dirs': [
-        '<(compiler-rt)/lib',
-      ],
-      'defines': [
-        '_YUGA_BIG_ENDIAN=1',
-        '_YUGA_LITTLE_ENDIAN=0',
-        'UINT64_C(c)=c##ULL',
-      ],
-      'sources': [
-        '<(compiler-rt)/lib/powisf2.c',
-        '<(compiler-rt)/lib/powidf2.c',
-        '<(compiler-rt)/lib/mulsc3.c',
-        '<(compiler-rt)/lib/muldc3.c',
-        '<(compiler-rt)/lib/divsc3.c',
-        '<(compiler-rt)/lib/divdc3.c',
-        #'<(compiler-rt)/lib/bswapsi2.c',
-        '_bswapsi2.o',
-        #'<(compiler-rt)/lib/bswapdi2.c',
-        '_bswapdi2.o',
-        '<(compiler-rt)/lib/floatundisf.c',
-        '<(compiler-rt)/lib/floatundidf.c',
-
-        'libm.c',
-      ],
-    },
-  ],
-}
diff --git a/aos/build/libgcc-additions/libm.c b/aos/build/libgcc-additions/libm.c
deleted file mode 100644
index ce04ce5..0000000
--- a/aos/build/libgcc-additions/libm.c
+++ /dev/null
@@ -1,47 +0,0 @@
-// Some of the Compiler-RT implementations we use want to use functions from
-// libm. However, GCC provides builtins for them, so they don't need to show up
-// in <math.h> Unfortunately, those GCC builtins seem to (sometimes, at least)
-// just emit calls to the functions themselves, so we have our own
-// implementations here. They might not be as fast as they could be, but they
-// are correct as far as I can tell.
-
-#include <stdint.h>
-
-double fmax(double a, double b) {
-  if (__builtin_isnan(a)) return b;
-  if (__builtin_isnan(b)) return a;
-  if (a > b) return a;
-  return b;
-}
-float fmaxf(float a, float b) {
-  if (__builtin_isnan(a)) return b;
-  if (__builtin_isnan(b)) return a;
-  if (a > b) return a;
-  return b;
-}
-
-double scalbn(double x, int exp) {
-  return x * (2 << exp);
-}
-float scalbnf(float x, int exp) {
-  return x * (2 << exp);
-}
-
-float logbf(float x) {
-  union {
-    float f;
-    int32_t d;
-  } converter;
-  converter.f = x;
-  int32_t ix = converter.d & 0x7fffffff;
-  int32_t rix;
-
-  if (ix == 0) {
-    return (float)-1.0 / __builtin_fabsf(x);
-  } else if (ix >= 0x7f800000) {
-    return x * x;
-  } else if (__builtin_expect((rix = ix >> 23) == 0, 0)) {
-    rix -= __builtin_clz(ix) - 9;
-  }
-  return (float)(rix - 127);
-}
diff --git a/aos/build/queues/compiler.rb b/aos/build/queues/compiler.rb
index 864d1c6..52c0005 100644
--- a/aos/build/queues/compiler.rb
+++ b/aos/build/queues/compiler.rb
@@ -60,7 +60,7 @@
 end
 def format_pipeline(output)
   read_in, write_in = IO.pipe()
-  child = Process.spawn('/opt/clang-3.5/bin/clang-format --style=google',
+  child = Process.spawn('/usr/bin/clang-format-3.5 --style=google',
                         {:in=>read_in, write_in=>:close,
                          :out=>output.fileno})
   read_in.close
diff --git a/aos/common/common.gyp b/aos/common/common.gyp
index 9a63e48..693f717 100644
--- a/aos/common/common.gyp
+++ b/aos/common/common.gyp
@@ -118,25 +118,12 @@
       'sources': [
         'queue.cc',
       ],
-      'conditions': [
-        ['PLATFORM=="crio"', {
-          'dependencies': [
-            '<(EXTERNALS):WPILib',
-          ],
-        },
-        {
-          'dependencies': [
-            '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:queue',
-          ],
-          'export_dependent_settings': [
-            '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:queue',
-          ],
-        }]
-      ],
       'dependencies': [
+        '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:queue',
         'time',
       ],
       'export_dependent_settings': [
+        '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:queue',
         'time',
       ],
     },
@@ -253,26 +240,16 @@
     {
       'target_name': 'mutex',
       'type': 'static_library',
-      'conditions': [
-        ['PLATFORM=="crio"', {
-          'sources': [
-            '<(AOS)/crio/shared_libs/mutex.cpp',
-          ],
-        }, {
-          'sources': [
-            '<(AOS)/linux_code/ipc_lib/mutex.cpp',
-          ],
-          'dependencies': [
-            '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:aos_sync',
-          ],
-          'export_dependent_settings': [
-            '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:aos_sync',
-          ],
-        }],
+      'sources': [
+        '<(AOS)/linux_code/ipc_lib/mutex.cpp',
       ],
       'dependencies': [
+        '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:aos_sync',
         '<(AOS)/build/aos.gyp:logging_interface',
       ],
+      'export_dependent_settings': [
+        '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:aos_sync',
+      ],
     },
     {
       'target_name': 'mutex_test',
diff --git a/aos/common/controls/output_check.q b/aos/common/controls/output_check.q
index 76f5cd7..e7c8190 100644
--- a/aos/common/controls/output_check.q
+++ b/aos/common/controls/output_check.q
@@ -7,7 +7,7 @@
 	double pulse_length;
 };
 
-// Each message here represents a value that was sent to the cRIO.
+// Each message here represents a value that was sent out.
 // The sent timestamp of the message is when the value was sent.
 queue OutputCheck output_check_sent;
 
diff --git a/aos/common/debugging-tips.txt b/aos/common/debugging-tips.txt
index 718f7d9..b9a50f3 100644
--- a/aos/common/debugging-tips.txt
+++ b/aos/common/debugging-tips.txt
@@ -12,8 +12,7 @@
 [Startup]
 Low level startup errors often end up in
   /tmp/aos_fatal_error.* under linux. Also helpful are the /tmp/starter*_std*
-  files (if the standard start scripts are being used) and
-  aos/crio/bin/netconsole.sh for reading cRIO stdout and stderr.
+  files (if the standard start scripts are being used).
     If lots of the /tmp/starter_*std* files (with different numbers) are being
     created, that means that starter_exe is dying constantly.
 
diff --git a/aos/common/input/input.gyp b/aos/common/input/input.gyp
index 7d5af30..5674ce7 100644
--- a/aos/common/input/input.gyp
+++ b/aos/common/input/input.gyp
@@ -7,11 +7,9 @@
         'driver_station_data.cc',
       ],
       'dependencies': [
-        '<(EXTERNALS):WPILib-NetworkRobotValues',
         '<(AOS)/common/messages/messages.gyp:robot_state',
       ],
       'export_dependent_settings': [
-        '<(EXTERNALS):WPILib-NetworkRobotValues',
         '<(AOS)/common/messages/messages.gyp:robot_state',
       ],
     },
diff --git a/aos/config/README.txt b/aos/config/README.txt
deleted file mode 100644
index 4732bb3..0000000
--- a/aos/config/README.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-[FILES]
-
-fitpc_kernel.config is a kernel configuration file for a fit-pc2
-	it is currently for kernel version 3.2.21
-	directions to use
-		download the 3.2.21 vanilla kernel source and the 3.2.21 rt patch
-		extract the kernel source and apply the patch
-		if on a 64-bit x86 machine, create a 32-bit chroot to build in
-		make sure fakeroot and kernel-package are installed
-		in the linux-x.x.x directory: fakeroot make-kpkg --jobs=4 kernel_image
diff --git a/aos/config/fitpc_kernel.config b/aos/config/fitpc_kernel.config
deleted file mode 100644
index e4d8700..0000000
--- a/aos/config/fitpc_kernel.config
+++ /dev/null
@@ -1,3798 +0,0 @@
-#
-# Automatically generated file; DO NOT EDIT.
-# Linux/i386 3.2.21 Kernel Configuration
-#
-# CONFIG_64BIT is not set
-CONFIG_X86_32=y
-# CONFIG_X86_64 is not set
-CONFIG_X86=y
-CONFIG_INSTRUCTION_DECODER=y
-CONFIG_OUTPUT_FORMAT="elf32-i386"
-CONFIG_ARCH_DEFCONFIG="arch/x86/configs/i386_defconfig"
-CONFIG_GENERIC_CMOS_UPDATE=y
-CONFIG_CLOCKSOURCE_WATCHDOG=y
-CONFIG_GENERIC_CLOCKEVENTS=y
-CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
-CONFIG_LOCKDEP_SUPPORT=y
-CONFIG_STACKTRACE_SUPPORT=y
-CONFIG_HAVE_LATENCYTOP_SUPPORT=y
-CONFIG_MMU=y
-CONFIG_ZONE_DMA=y
-# CONFIG_NEED_DMA_MAP_STATE is not set
-CONFIG_NEED_SG_DMA_LENGTH=y
-CONFIG_GENERIC_ISA_DMA=y
-CONFIG_GENERIC_IOMAP=y
-CONFIG_GENERIC_BUG=y
-CONFIG_GENERIC_HWEIGHT=y
-CONFIG_GENERIC_GPIO=y
-CONFIG_ARCH_MAY_HAVE_PC_FDC=y
-CONFIG_RWSEM_GENERIC_SPINLOCK=y
-# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
-CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y
-CONFIG_GENERIC_CALIBRATE_DELAY=y
-# CONFIG_GENERIC_TIME_VSYSCALL is not set
-CONFIG_ARCH_HAS_CPU_RELAX=y
-CONFIG_ARCH_HAS_DEFAULT_IDLE=y
-CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
-CONFIG_HAVE_SETUP_PER_CPU_AREA=y
-CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
-CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
-CONFIG_ARCH_HIBERNATION_POSSIBLE=y
-CONFIG_ARCH_SUSPEND_POSSIBLE=y
-# CONFIG_ZONE_DMA32 is not set
-CONFIG_ARCH_POPULATES_NODE_MAP=y
-# CONFIG_AUDIT_ARCH is not set
-CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
-CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
-CONFIG_X86_32_SMP=y
-CONFIG_X86_HT=y
-CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-ecx -fcall-saved-edx"
-CONFIG_KTIME_SCALAR=y
-CONFIG_ARCH_CPU_PROBE_RELEASE=y
-CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
-CONFIG_HAVE_IRQ_WORK=y
-CONFIG_IRQ_WORK=y
-
-#
-# General setup
-#
-CONFIG_EXPERIMENTAL=y
-CONFIG_INIT_ENV_ARG_LIMIT=32
-CONFIG_CROSS_COMPILE=""
-CONFIG_LOCALVERSION=""
-# CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_HAVE_KERNEL_GZIP=y
-CONFIG_HAVE_KERNEL_BZIP2=y
-CONFIG_HAVE_KERNEL_LZMA=y
-CONFIG_HAVE_KERNEL_XZ=y
-CONFIG_HAVE_KERNEL_LZO=y
-CONFIG_KERNEL_GZIP=y
-# CONFIG_KERNEL_BZIP2 is not set
-# CONFIG_KERNEL_LZMA is not set
-# CONFIG_KERNEL_XZ is not set
-# CONFIG_KERNEL_LZO is not set
-CONFIG_DEFAULT_HOSTNAME="(none)"
-CONFIG_SWAP=y
-CONFIG_SYSVIPC=y
-CONFIG_SYSVIPC_SYSCTL=y
-CONFIG_POSIX_MQUEUE=y
-CONFIG_POSIX_MQUEUE_SYSCTL=y
-CONFIG_BSD_PROCESS_ACCT=y
-CONFIG_BSD_PROCESS_ACCT_V3=y
-# CONFIG_FHANDLE is not set
-CONFIG_TASKSTATS=y
-CONFIG_TASK_DELAY_ACCT=y
-CONFIG_TASK_XACCT=y
-CONFIG_TASK_IO_ACCOUNTING=y
-CONFIG_AUDIT=y
-CONFIG_AUDITSYSCALL=y
-CONFIG_AUDIT_WATCH=y
-CONFIG_AUDIT_TREE=y
-CONFIG_HAVE_GENERIC_HARDIRQS=y
-
-#
-# IRQ subsystem
-#
-CONFIG_GENERIC_HARDIRQS=y
-CONFIG_HAVE_SPARSE_IRQ=y
-CONFIG_GENERIC_IRQ_PROBE=y
-CONFIG_GENERIC_IRQ_SHOW=y
-CONFIG_GENERIC_PENDING_IRQ=y
-CONFIG_IRQ_FORCED_THREADING=y
-CONFIG_SPARSE_IRQ=y
-
-#
-# RCU Subsystem
-#
-CONFIG_TREE_PREEMPT_RCU=y
-CONFIG_PREEMPT_RCU=y
-# CONFIG_RCU_TRACE is not set
-CONFIG_RCU_FANOUT=32
-# CONFIG_RCU_FANOUT_EXACT is not set
-# CONFIG_TREE_RCU_TRACE is not set
-# CONFIG_RCU_BOOST is not set
-CONFIG_IKCONFIG=y
-CONFIG_IKCONFIG_PROC=y
-CONFIG_LOG_BUF_SHIFT=17
-CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
-CONFIG_CGROUPS=y
-# CONFIG_CGROUP_DEBUG is not set
-CONFIG_CGROUP_FREEZER=y
-CONFIG_CGROUP_DEVICE=y
-CONFIG_CPUSETS=y
-CONFIG_PROC_PID_CPUSET=y
-CONFIG_CGROUP_CPUACCT=y
-# CONFIG_RESOURCE_COUNTERS is not set
-# CONFIG_CGROUP_PERF is not set
-CONFIG_CGROUP_SCHED=y
-CONFIG_FAIR_GROUP_SCHED=y
-# CONFIG_CFS_BANDWIDTH is not set
-# CONFIG_RT_GROUP_SCHED is not set
-# CONFIG_BLK_CGROUP is not set
-CONFIG_NAMESPACES=y
-CONFIG_UTS_NS=y
-CONFIG_IPC_NS=y
-CONFIG_USER_NS=y
-CONFIG_PID_NS=y
-CONFIG_NET_NS=y
-# CONFIG_SCHED_AUTOGROUP is not set
-# CONFIG_SYSFS_DEPRECATED is not set
-CONFIG_RELAY=y
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_INITRAMFS_SOURCE=""
-CONFIG_RD_GZIP=y
-CONFIG_RD_BZIP2=y
-CONFIG_RD_LZMA=y
-CONFIG_RD_XZ=y
-CONFIG_RD_LZO=y
-# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
-CONFIG_SYSCTL=y
-CONFIG_ANON_INODES=y
-# CONFIG_EXPERT is not set
-CONFIG_UID16=y
-# CONFIG_SYSCTL_SYSCALL is not set
-CONFIG_KALLSYMS=y
-# CONFIG_KALLSYMS_ALL is not set
-CONFIG_HOTPLUG=y
-CONFIG_PRINTK=y
-CONFIG_BUG=y
-CONFIG_ELF_CORE=y
-CONFIG_PCSPKR_PLATFORM=y
-CONFIG_HAVE_PCSPKR_PLATFORM=y
-CONFIG_BASE_FULL=y
-CONFIG_FUTEX=y
-CONFIG_EPOLL=y
-CONFIG_SIGNALFD=y
-CONFIG_TIMERFD=y
-CONFIG_EVENTFD=y
-CONFIG_SHMEM=y
-CONFIG_AIO=y
-# CONFIG_EMBEDDED is not set
-CONFIG_HAVE_PERF_EVENTS=y
-
-#
-# Kernel Performance Events And Counters
-#
-CONFIG_PERF_EVENTS=y
-# CONFIG_PERF_COUNTERS is not set
-# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
-CONFIG_VM_EVENT_COUNTERS=y
-CONFIG_PCI_QUIRKS=y
-# CONFIG_COMPAT_BRK is not set
-CONFIG_SLAB=y
-CONFIG_PROFILING=y
-CONFIG_TRACEPOINTS=y
-CONFIG_HAVE_OPROFILE=y
-CONFIG_KPROBES=y
-# CONFIG_JUMP_LABEL is not set
-CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
-CONFIG_KRETPROBES=y
-CONFIG_HAVE_IOREMAP_PROT=y
-CONFIG_HAVE_KPROBES=y
-CONFIG_HAVE_KRETPROBES=y
-CONFIG_HAVE_OPTPROBES=y
-CONFIG_HAVE_ARCH_TRACEHOOK=y
-CONFIG_HAVE_DMA_ATTRS=y
-CONFIG_USE_GENERIC_SMP_HELPERS=y
-CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
-CONFIG_HAVE_DMA_API_DEBUG=y
-CONFIG_HAVE_HW_BREAKPOINT=y
-CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
-CONFIG_HAVE_USER_RETURN_NOTIFIER=y
-CONFIG_HAVE_PERF_EVENTS_NMI=y
-CONFIG_HAVE_ARCH_JUMP_LABEL=y
-CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
-
-#
-# GCOV-based kernel profiling
-#
-# CONFIG_GCOV_KERNEL is not set
-CONFIG_HAVE_GENERIC_DMA_COHERENT=y
-CONFIG_SLABINFO=y
-CONFIG_RT_MUTEXES=y
-CONFIG_BASE_SMALL=0
-CONFIG_MODULES=y
-CONFIG_MODULE_FORCE_LOAD=y
-CONFIG_MODULE_UNLOAD=y
-CONFIG_MODULE_FORCE_UNLOAD=y
-CONFIG_MODVERSIONS=y
-CONFIG_MODULE_SRCVERSION_ALL=y
-CONFIG_STOP_MACHINE=y
-CONFIG_BLOCK=y
-CONFIG_LBDAF=y
-CONFIG_BLK_DEV_BSG=y
-CONFIG_BLK_DEV_BSGLIB=y
-CONFIG_BLK_DEV_INTEGRITY=y
-
-#
-# IO Schedulers
-#
-CONFIG_IOSCHED_NOOP=y
-CONFIG_IOSCHED_DEADLINE=y
-CONFIG_IOSCHED_CFQ=y
-CONFIG_DEFAULT_DEADLINE=y
-# CONFIG_DEFAULT_CFQ is not set
-# CONFIG_DEFAULT_NOOP is not set
-CONFIG_DEFAULT_IOSCHED="deadline"
-# CONFIG_INLINE_SPIN_TRYLOCK is not set
-# CONFIG_INLINE_SPIN_TRYLOCK_BH is not set
-# CONFIG_INLINE_SPIN_LOCK is not set
-# CONFIG_INLINE_SPIN_LOCK_BH is not set
-# CONFIG_INLINE_SPIN_LOCK_IRQ is not set
-# CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set
-# CONFIG_INLINE_SPIN_UNLOCK is not set
-# CONFIG_INLINE_SPIN_UNLOCK_BH is not set
-# CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set
-# CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set
-# CONFIG_INLINE_READ_TRYLOCK is not set
-# CONFIG_INLINE_READ_LOCK is not set
-# CONFIG_INLINE_READ_LOCK_BH is not set
-# CONFIG_INLINE_READ_LOCK_IRQ is not set
-# CONFIG_INLINE_READ_LOCK_IRQSAVE is not set
-# CONFIG_INLINE_READ_UNLOCK is not set
-# CONFIG_INLINE_READ_UNLOCK_BH is not set
-# CONFIG_INLINE_READ_UNLOCK_IRQ is not set
-# CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set
-# CONFIG_INLINE_WRITE_TRYLOCK is not set
-# CONFIG_INLINE_WRITE_LOCK is not set
-# CONFIG_INLINE_WRITE_LOCK_BH is not set
-# CONFIG_INLINE_WRITE_LOCK_IRQ is not set
-# CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set
-# CONFIG_INLINE_WRITE_UNLOCK is not set
-# CONFIG_INLINE_WRITE_UNLOCK_BH is not set
-# CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set
-# CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set
-# CONFIG_MUTEX_SPIN_ON_OWNER is not set
-CONFIG_FREEZER=y
-
-#
-# Processor type and features
-#
-CONFIG_TICK_ONESHOT=y
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
-CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
-CONFIG_SMP=y
-# CONFIG_X86_MPPARSE is not set
-# CONFIG_X86_BIGSMP is not set
-# CONFIG_X86_EXTENDED_PLATFORM is not set
-# CONFIG_X86_32_IRIS is not set
-CONFIG_SCHED_OMIT_FRAME_POINTER=y
-# CONFIG_PARAVIRT_GUEST is not set
-CONFIG_NO_BOOTMEM=y
-# CONFIG_MEMTEST is not set
-# CONFIG_M386 is not set
-# CONFIG_M486 is not set
-# CONFIG_M586 is not set
-# CONFIG_M586TSC is not set
-# CONFIG_M586MMX is not set
-# CONFIG_M686 is not set
-# CONFIG_MPENTIUMII is not set
-# CONFIG_MPENTIUMIII is not set
-# CONFIG_MPENTIUMM is not set
-# CONFIG_MPENTIUM4 is not set
-# CONFIG_MK6 is not set
-# CONFIG_MK7 is not set
-# CONFIG_MK8 is not set
-# CONFIG_MCRUSOE is not set
-# CONFIG_MEFFICEON is not set
-# CONFIG_MWINCHIPC6 is not set
-# CONFIG_MWINCHIP3D is not set
-# CONFIG_MELAN is not set
-# CONFIG_MGEODEGX1 is not set
-# CONFIG_MGEODE_LX is not set
-# CONFIG_MCYRIXIII is not set
-# CONFIG_MVIAC3_2 is not set
-# CONFIG_MVIAC7 is not set
-# CONFIG_MCORE2 is not set
-CONFIG_MATOM=y
-# CONFIG_X86_GENERIC is not set
-CONFIG_X86_INTERNODE_CACHE_SHIFT=6
-CONFIG_X86_CMPXCHG=y
-CONFIG_CMPXCHG_LOCAL=y
-CONFIG_CMPXCHG_DOUBLE=y
-CONFIG_X86_L1_CACHE_SHIFT=6
-CONFIG_X86_XADD=y
-CONFIG_X86_WP_WORKS_OK=y
-CONFIG_X86_INVLPG=y
-CONFIG_X86_BSWAP=y
-CONFIG_X86_POPAD_OK=y
-CONFIG_X86_USE_PPRO_CHECKSUM=y
-CONFIG_X86_TSC=y
-CONFIG_X86_CMPXCHG64=y
-CONFIG_X86_CMOV=y
-CONFIG_X86_MINIMUM_CPU_FAMILY=5
-CONFIG_X86_DEBUGCTLMSR=y
-CONFIG_CPU_SUP_INTEL=y
-CONFIG_CPU_SUP_CYRIX_32=y
-CONFIG_CPU_SUP_AMD=y
-CONFIG_CPU_SUP_CENTAUR=y
-CONFIG_CPU_SUP_TRANSMETA_32=y
-CONFIG_CPU_SUP_UMC_32=y
-CONFIG_HPET_TIMER=y
-CONFIG_HPET_EMULATE_RTC=y
-CONFIG_DMI=y
-# CONFIG_IOMMU_HELPER is not set
-CONFIG_NR_CPUS=8
-CONFIG_SCHED_SMT=y
-CONFIG_SCHED_MC=y
-# CONFIG_IRQ_TIME_ACCOUNTING is not set
-CONFIG_PREEMPT=y
-CONFIG_PREEMPT_RT_BASE=y
-# CONFIG_PREEMPT_NONE is not set
-# CONFIG_PREEMPT_VOLUNTARY is not set
-# CONFIG_PREEMPT__LL is not set
-# CONFIG_PREEMPT_RTB is not set
-CONFIG_PREEMPT_RT_FULL=y
-CONFIG_PREEMPT_COUNT=y
-CONFIG_X86_LOCAL_APIC=y
-CONFIG_X86_IO_APIC=y
-CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
-CONFIG_X86_MCE=y
-CONFIG_X86_MCE_INTEL=y
-# CONFIG_X86_MCE_AMD is not set
-# CONFIG_X86_ANCIENT_MCE is not set
-CONFIG_X86_MCE_THRESHOLD=y
-# CONFIG_X86_MCE_INJECT is not set
-CONFIG_X86_THERMAL_VECTOR=y
-CONFIG_VM86=y
-# CONFIG_TOSHIBA is not set
-# CONFIG_I8K is not set
-# CONFIG_X86_REBOOTFIXUPS is not set
-CONFIG_MICROCODE=m
-CONFIG_MICROCODE_INTEL=y
-# CONFIG_MICROCODE_AMD is not set
-CONFIG_MICROCODE_OLD_INTERFACE=y
-CONFIG_X86_MSR=m
-CONFIG_X86_CPUID=m
-# CONFIG_NOHIGHMEM is not set
-CONFIG_HIGHMEM4G=y
-# CONFIG_HIGHMEM64G is not set
-CONFIG_PAGE_OFFSET=0xC0000000
-CONFIG_HIGHMEM=y
-# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
-# CONFIG_ARCH_DMA_ADDR_T_64BIT is not set
-CONFIG_NEED_NODE_MEMMAP_SIZE=y
-CONFIG_ARCH_FLATMEM_ENABLE=y
-CONFIG_ARCH_SPARSEMEM_ENABLE=y
-CONFIG_ARCH_SELECT_MEMORY_MODEL=y
-CONFIG_ILLEGAL_POINTER_VALUE=0
-CONFIG_SELECT_MEMORY_MODEL=y
-# CONFIG_FLATMEM_MANUAL is not set
-CONFIG_SPARSEMEM_MANUAL=y
-CONFIG_SPARSEMEM=y
-CONFIG_HAVE_MEMORY_PRESENT=y
-CONFIG_SPARSEMEM_STATIC=y
-CONFIG_HAVE_MEMBLOCK=y
-# CONFIG_MEMORY_HOTPLUG is not set
-CONFIG_SPLIT_PTLOCK_CPUS=4
-# CONFIG_COMPACTION is not set
-# CONFIG_PHYS_ADDR_T_64BIT is not set
-CONFIG_ZONE_DMA_FLAG=1
-CONFIG_BOUNCE=y
-CONFIG_VIRT_TO_BUS=y
-# CONFIG_KSM is not set
-CONFIG_DEFAULT_MMAP_MIN_ADDR=65536
-# CONFIG_CLEANCACHE is not set
-# CONFIG_HIGHPTE is not set
-# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set
-CONFIG_X86_RESERVE_LOW=64
-# CONFIG_MATH_EMULATION is not set
-CONFIG_MTRR=y
-CONFIG_MTRR_SANITIZER=y
-CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0
-CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
-CONFIG_X86_PAT=y
-CONFIG_ARCH_USES_PG_UNCACHED=y
-CONFIG_ARCH_RANDOM=y
-# CONFIG_EFI is not set
-# CONFIG_SECCOMP is not set
-CONFIG_CC_STACKPROTECTOR=y
-# CONFIG_HZ_100 is not set
-# CONFIG_HZ_250 is not set
-# CONFIG_HZ_300 is not set
-CONFIG_HZ_1000=y
-CONFIG_HZ=1000
-CONFIG_SCHED_HRTICK=y
-CONFIG_KEXEC=y
-# CONFIG_CRASH_DUMP is not set
-CONFIG_PHYSICAL_START=0x1000000
-CONFIG_RELOCATABLE=y
-CONFIG_X86_NEED_RELOCS=y
-CONFIG_PHYSICAL_ALIGN=0x1000000
-CONFIG_HOTPLUG_CPU=y
-CONFIG_COMPAT_VDSO=y
-# CONFIG_CMDLINE_BOOL is not set
-CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
-
-#
-# Power management and ACPI options
-#
-# CONFIG_SUSPEND is not set
-# CONFIG_HIBERNATION is not set
-CONFIG_PM_RUNTIME=y
-CONFIG_PM=y
-CONFIG_PM_DEBUG=y
-# CONFIG_PM_ADVANCED_DEBUG is not set
-CONFIG_ACPI=y
-CONFIG_ACPI_PROCFS=y
-# CONFIG_ACPI_PROCFS_POWER is not set
-# CONFIG_ACPI_EC_DEBUGFS is not set
-# CONFIG_ACPI_PROC_EVENT is not set
-CONFIG_ACPI_AC=y
-CONFIG_ACPI_BATTERY=y
-CONFIG_ACPI_BUTTON=y
-CONFIG_ACPI_VIDEO=y
-# CONFIG_ACPI_FAN is not set
-CONFIG_ACPI_DOCK=y
-CONFIG_ACPI_PROCESSOR=y
-# CONFIG_ACPI_IPMI is not set
-CONFIG_ACPI_HOTPLUG_CPU=y
-CONFIG_ACPI_PROCESSOR_AGGREGATOR=m
-CONFIG_ACPI_THERMAL=y
-# CONFIG_ACPI_CUSTOM_DSDT is not set
-CONFIG_ACPI_BLACKLIST_YEAR=0
-# CONFIG_ACPI_DEBUG is not set
-CONFIG_ACPI_PCI_SLOT=m
-CONFIG_X86_PM_TIMER=y
-CONFIG_ACPI_CONTAINER=y
-CONFIG_ACPI_SBS=m
-# CONFIG_ACPI_HED is not set
-# CONFIG_ACPI_CUSTOM_METHOD is not set
-# CONFIG_ACPI_APEI is not set
-CONFIG_SFI=y
-
-#
-# CPU Frequency scaling
-#
-CONFIG_CPU_FREQ=y
-CONFIG_CPU_FREQ_TABLE=y
-CONFIG_CPU_FREQ_STAT=m
-# CONFIG_CPU_FREQ_STAT_DETAILS is not set
-CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
-# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
-# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
-# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
-CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
-# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
-# CONFIG_CPU_FREQ_GOV_USERSPACE is not set
-CONFIG_CPU_FREQ_GOV_ONDEMAND=y
-# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set
-
-#
-# x86 CPU frequency scaling drivers
-#
-# CONFIG_X86_PCC_CPUFREQ is not set
-CONFIG_X86_ACPI_CPUFREQ=m
-# CONFIG_X86_POWERNOW_K6 is not set
-# CONFIG_X86_POWERNOW_K7 is not set
-# CONFIG_X86_POWERNOW_K8 is not set
-# CONFIG_X86_GX_SUSPMOD is not set
-CONFIG_X86_SPEEDSTEP_CENTRINO=m
-CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y
-# CONFIG_X86_SPEEDSTEP_ICH is not set
-# CONFIG_X86_SPEEDSTEP_SMI is not set
-# CONFIG_X86_P4_CLOCKMOD is not set
-# CONFIG_X86_CPUFREQ_NFORCE2 is not set
-# CONFIG_X86_LONGRUN is not set
-# CONFIG_X86_LONGHAUL is not set
-# CONFIG_X86_E_POWERSAVER is not set
-
-#
-# shared options
-#
-# CONFIG_X86_SPEEDSTEP_LIB is not set
-CONFIG_CPU_IDLE=y
-CONFIG_CPU_IDLE_GOV_LADDER=y
-CONFIG_CPU_IDLE_GOV_MENU=y
-CONFIG_INTEL_IDLE=y
-
-#
-# Bus options (PCI etc.)
-#
-CONFIG_PCI=y
-# CONFIG_PCI_GOBIOS is not set
-# CONFIG_PCI_GOMMCONFIG is not set
-# CONFIG_PCI_GODIRECT is not set
-CONFIG_PCI_GOANY=y
-CONFIG_PCI_BIOS=y
-CONFIG_PCI_DIRECT=y
-CONFIG_PCI_MMCONFIG=y
-CONFIG_PCI_DOMAINS=y
-# CONFIG_PCI_CNB20LE_QUIRK is not set
-CONFIG_PCIEPORTBUS=y
-# CONFIG_HOTPLUG_PCI_PCIE is not set
-CONFIG_PCIEAER=y
-# CONFIG_PCIE_ECRC is not set
-# CONFIG_PCIEAER_INJECT is not set
-CONFIG_PCIEASPM=y
-# CONFIG_PCIEASPM_DEBUG is not set
-CONFIG_PCIE_PME=y
-CONFIG_ARCH_SUPPORTS_MSI=y
-CONFIG_PCI_MSI=y
-# CONFIG_PCI_DEBUG is not set
-# CONFIG_PCI_STUB is not set
-CONFIG_HT_IRQ=y
-CONFIG_PCI_ATS=y
-CONFIG_PCI_IOV=y
-# CONFIG_PCI_PRI is not set
-# CONFIG_PCI_PASID is not set
-CONFIG_PCI_IOAPIC=y
-CONFIG_PCI_LABEL=y
-CONFIG_ISA_DMA_API=y
-# CONFIG_ISA is not set
-# CONFIG_MCA is not set
-# CONFIG_SCx200 is not set
-# CONFIG_OLPC is not set
-# CONFIG_ALIX is not set
-CONFIG_AMD_NB=y
-# CONFIG_PCCARD is not set
-CONFIG_HOTPLUG_PCI=m
-CONFIG_HOTPLUG_PCI_FAKE=m
-# CONFIG_HOTPLUG_PCI_COMPAQ is not set
-# CONFIG_HOTPLUG_PCI_IBM is not set
-CONFIG_HOTPLUG_PCI_ACPI=m
-CONFIG_HOTPLUG_PCI_ACPI_IBM=m
-CONFIG_HOTPLUG_PCI_CPCI=y
-CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m
-CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m
-CONFIG_HOTPLUG_PCI_SHPC=m
-# CONFIG_RAPIDIO is not set
-
-#
-# Executable file formats / Emulations
-#
-CONFIG_BINFMT_ELF=y
-CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
-CONFIG_HAVE_AOUT=y
-# CONFIG_BINFMT_AOUT is not set
-CONFIG_BINFMT_MISC=m
-CONFIG_HAVE_ATOMIC_IOMAP=y
-CONFIG_HAVE_TEXT_POKE_SMP=y
-CONFIG_NET=y
-
-#
-# Networking options
-#
-CONFIG_PACKET=y
-CONFIG_UNIX=y
-CONFIG_XFRM=y
-CONFIG_XFRM_USER=m
-CONFIG_XFRM_SUB_POLICY=y
-CONFIG_XFRM_MIGRATE=y
-# CONFIG_XFRM_STATISTICS is not set
-CONFIG_XFRM_IPCOMP=m
-CONFIG_NET_KEY=m
-CONFIG_NET_KEY_MIGRATE=y
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_ADVANCED_ROUTER=y
-# CONFIG_IP_FIB_TRIE_STATS is not set
-CONFIG_IP_MULTIPLE_TABLES=y
-CONFIG_IP_ROUTE_MULTIPATH=y
-CONFIG_IP_ROUTE_VERBOSE=y
-CONFIG_IP_ROUTE_CLASSID=y
-# CONFIG_IP_PNP is not set
-CONFIG_NET_IPIP=m
-# CONFIG_NET_IPGRE_DEMUX is not set
-CONFIG_IP_MROUTE=y
-# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set
-CONFIG_IP_PIMSM_V1=y
-CONFIG_IP_PIMSM_V2=y
-# CONFIG_ARPD is not set
-CONFIG_SYN_COOKIES=y
-CONFIG_INET_AH=m
-CONFIG_INET_ESP=m
-CONFIG_INET_IPCOMP=m
-CONFIG_INET_XFRM_TUNNEL=m
-CONFIG_INET_TUNNEL=m
-CONFIG_INET_XFRM_MODE_TRANSPORT=m
-CONFIG_INET_XFRM_MODE_TUNNEL=m
-CONFIG_INET_XFRM_MODE_BEET=m
-CONFIG_INET_LRO=m
-CONFIG_INET_DIAG=m
-CONFIG_INET_TCP_DIAG=m
-CONFIG_TCP_CONG_ADVANCED=y
-CONFIG_TCP_CONG_BIC=m
-CONFIG_TCP_CONG_CUBIC=y
-CONFIG_TCP_CONG_WESTWOOD=m
-CONFIG_TCP_CONG_HTCP=m
-CONFIG_TCP_CONG_HSTCP=m
-CONFIG_TCP_CONG_HYBLA=m
-CONFIG_TCP_CONG_VEGAS=m
-CONFIG_TCP_CONG_SCALABLE=m
-CONFIG_TCP_CONG_LP=m
-CONFIG_TCP_CONG_VENO=m
-CONFIG_TCP_CONG_YEAH=m
-CONFIG_TCP_CONG_ILLINOIS=m
-CONFIG_DEFAULT_CUBIC=y
-# CONFIG_DEFAULT_RENO is not set
-CONFIG_DEFAULT_TCP_CONG="cubic"
-CONFIG_TCP_MD5SIG=y
-CONFIG_IPV6=y
-CONFIG_IPV6_PRIVACY=y
-CONFIG_IPV6_ROUTER_PREF=y
-CONFIG_IPV6_ROUTE_INFO=y
-CONFIG_IPV6_OPTIMISTIC_DAD=y
-CONFIG_INET6_AH=m
-CONFIG_INET6_ESP=m
-CONFIG_INET6_IPCOMP=m
-CONFIG_IPV6_MIP6=y
-CONFIG_INET6_XFRM_TUNNEL=m
-CONFIG_INET6_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_TRANSPORT=m
-CONFIG_INET6_XFRM_MODE_TUNNEL=m
-CONFIG_INET6_XFRM_MODE_BEET=m
-CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
-CONFIG_IPV6_SIT=m
-# CONFIG_IPV6_SIT_6RD is not set
-CONFIG_IPV6_NDISC_NODETYPE=y
-CONFIG_IPV6_TUNNEL=m
-CONFIG_IPV6_MULTIPLE_TABLES=y
-CONFIG_IPV6_SUBTREES=y
-CONFIG_IPV6_MROUTE=y
-# CONFIG_IPV6_MROUTE_MULTIPLE_TABLES is not set
-CONFIG_IPV6_PIMSM_V2=y
-# CONFIG_NETLABEL is not set
-CONFIG_NETWORK_SECMARK=y
-# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
-CONFIG_NETFILTER=y
-# CONFIG_NETFILTER_DEBUG is not set
-CONFIG_NETFILTER_ADVANCED=y
-CONFIG_BRIDGE_NETFILTER=y
-
-#
-# Core Netfilter Configuration
-#
-CONFIG_NETFILTER_NETLINK=m
-CONFIG_NETFILTER_NETLINK_QUEUE=m
-CONFIG_NETFILTER_NETLINK_LOG=m
-CONFIG_NF_CONNTRACK=m
-CONFIG_NF_CONNTRACK_MARK=y
-CONFIG_NF_CONNTRACK_SECMARK=y
-CONFIG_NF_CONNTRACK_EVENTS=y
-# CONFIG_NF_CONNTRACK_TIMESTAMP is not set
-CONFIG_NF_CT_PROTO_DCCP=m
-CONFIG_NF_CT_PROTO_GRE=m
-CONFIG_NF_CT_PROTO_SCTP=m
-CONFIG_NF_CT_PROTO_UDPLITE=m
-CONFIG_NF_CONNTRACK_AMANDA=m
-CONFIG_NF_CONNTRACK_FTP=m
-CONFIG_NF_CONNTRACK_H323=m
-CONFIG_NF_CONNTRACK_IRC=m
-CONFIG_NF_CONNTRACK_BROADCAST=m
-CONFIG_NF_CONNTRACK_NETBIOS_NS=m
-# CONFIG_NF_CONNTRACK_SNMP is not set
-CONFIG_NF_CONNTRACK_PPTP=m
-CONFIG_NF_CONNTRACK_SANE=m
-CONFIG_NF_CONNTRACK_SIP=m
-CONFIG_NF_CONNTRACK_TFTP=m
-CONFIG_NF_CT_NETLINK=m
-CONFIG_NETFILTER_TPROXY=m
-CONFIG_NETFILTER_XTABLES=m
-
-#
-# Xtables combined modules
-#
-CONFIG_NETFILTER_XT_MARK=m
-CONFIG_NETFILTER_XT_CONNMARK=m
-
-#
-# Xtables targets
-#
-# CONFIG_NETFILTER_XT_TARGET_AUDIT is not set
-# CONFIG_NETFILTER_XT_TARGET_CHECKSUM is not set
-CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
-CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
-CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
-# CONFIG_NETFILTER_XT_TARGET_CT is not set
-CONFIG_NETFILTER_XT_TARGET_DSCP=m
-CONFIG_NETFILTER_XT_TARGET_HL=m
-# CONFIG_NETFILTER_XT_TARGET_IDLETIMER is not set
-CONFIG_NETFILTER_XT_TARGET_LED=m
-CONFIG_NETFILTER_XT_TARGET_MARK=m
-CONFIG_NETFILTER_XT_TARGET_NFLOG=m
-CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
-CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
-CONFIG_NETFILTER_XT_TARGET_RATEEST=m
-# CONFIG_NETFILTER_XT_TARGET_TEE is not set
-CONFIG_NETFILTER_XT_TARGET_TPROXY=m
-CONFIG_NETFILTER_XT_TARGET_TRACE=m
-CONFIG_NETFILTER_XT_TARGET_SECMARK=m
-CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
-CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
-
-#
-# Xtables matches
-#
-# CONFIG_NETFILTER_XT_MATCH_ADDRTYPE is not set
-CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
-CONFIG_NETFILTER_XT_MATCH_COMMENT=m
-CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
-CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
-CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
-# CONFIG_NETFILTER_XT_MATCH_CPU is not set
-CONFIG_NETFILTER_XT_MATCH_DCCP=m
-# CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set
-CONFIG_NETFILTER_XT_MATCH_DSCP=m
-CONFIG_NETFILTER_XT_MATCH_ESP=m
-CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
-CONFIG_NETFILTER_XT_MATCH_HELPER=m
-CONFIG_NETFILTER_XT_MATCH_HL=m
-CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
-# CONFIG_NETFILTER_XT_MATCH_IPVS is not set
-CONFIG_NETFILTER_XT_MATCH_LENGTH=m
-CONFIG_NETFILTER_XT_MATCH_LIMIT=m
-CONFIG_NETFILTER_XT_MATCH_MAC=m
-CONFIG_NETFILTER_XT_MATCH_MARK=m
-CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
-CONFIG_NETFILTER_XT_MATCH_OSF=m
-CONFIG_NETFILTER_XT_MATCH_OWNER=m
-CONFIG_NETFILTER_XT_MATCH_POLICY=m
-CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
-CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
-CONFIG_NETFILTER_XT_MATCH_QUOTA=m
-CONFIG_NETFILTER_XT_MATCH_RATEEST=m
-CONFIG_NETFILTER_XT_MATCH_REALM=m
-CONFIG_NETFILTER_XT_MATCH_RECENT=m
-CONFIG_NETFILTER_XT_MATCH_SCTP=m
-CONFIG_NETFILTER_XT_MATCH_SOCKET=m
-CONFIG_NETFILTER_XT_MATCH_STATE=m
-CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
-CONFIG_NETFILTER_XT_MATCH_STRING=m
-CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
-CONFIG_NETFILTER_XT_MATCH_TIME=m
-CONFIG_NETFILTER_XT_MATCH_U32=m
-# CONFIG_IP_SET is not set
-CONFIG_IP_VS=m
-CONFIG_IP_VS_IPV6=y
-# CONFIG_IP_VS_DEBUG is not set
-CONFIG_IP_VS_TAB_BITS=12
-
-#
-# IPVS transport protocol load balancing support
-#
-CONFIG_IP_VS_PROTO_TCP=y
-CONFIG_IP_VS_PROTO_UDP=y
-CONFIG_IP_VS_PROTO_AH_ESP=y
-CONFIG_IP_VS_PROTO_ESP=y
-CONFIG_IP_VS_PROTO_AH=y
-# CONFIG_IP_VS_PROTO_SCTP is not set
-
-#
-# IPVS scheduler
-#
-CONFIG_IP_VS_RR=m
-CONFIG_IP_VS_WRR=m
-CONFIG_IP_VS_LC=m
-CONFIG_IP_VS_WLC=m
-CONFIG_IP_VS_LBLC=m
-CONFIG_IP_VS_LBLCR=m
-CONFIG_IP_VS_DH=m
-CONFIG_IP_VS_SH=m
-CONFIG_IP_VS_SED=m
-CONFIG_IP_VS_NQ=m
-
-#
-# IPVS application helper
-#
-CONFIG_IP_VS_FTP=m
-CONFIG_IP_VS_NFCT=y
-# CONFIG_IP_VS_PE_SIP is not set
-
-#
-# IP: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV4=m
-CONFIG_NF_CONNTRACK_IPV4=m
-CONFIG_NF_CONNTRACK_PROC_COMPAT=y
-CONFIG_IP_NF_QUEUE=m
-CONFIG_IP_NF_IPTABLES=m
-CONFIG_IP_NF_MATCH_AH=m
-CONFIG_IP_NF_MATCH_ECN=m
-CONFIG_IP_NF_MATCH_TTL=m
-CONFIG_IP_NF_FILTER=m
-CONFIG_IP_NF_TARGET_REJECT=m
-CONFIG_IP_NF_TARGET_LOG=m
-CONFIG_IP_NF_TARGET_ULOG=m
-CONFIG_NF_NAT=m
-CONFIG_NF_NAT_NEEDED=y
-CONFIG_IP_NF_TARGET_MASQUERADE=m
-CONFIG_IP_NF_TARGET_NETMAP=m
-CONFIG_IP_NF_TARGET_REDIRECT=m
-CONFIG_NF_NAT_PROTO_DCCP=m
-CONFIG_NF_NAT_PROTO_GRE=m
-CONFIG_NF_NAT_PROTO_UDPLITE=m
-CONFIG_NF_NAT_PROTO_SCTP=m
-CONFIG_NF_NAT_FTP=m
-CONFIG_NF_NAT_IRC=m
-CONFIG_NF_NAT_TFTP=m
-CONFIG_NF_NAT_AMANDA=m
-CONFIG_NF_NAT_PPTP=m
-CONFIG_NF_NAT_H323=m
-CONFIG_NF_NAT_SIP=m
-CONFIG_IP_NF_MANGLE=m
-CONFIG_IP_NF_TARGET_CLUSTERIP=m
-CONFIG_IP_NF_TARGET_ECN=m
-CONFIG_IP_NF_TARGET_TTL=m
-CONFIG_IP_NF_RAW=m
-CONFIG_IP_NF_SECURITY=m
-CONFIG_IP_NF_ARPTABLES=m
-CONFIG_IP_NF_ARPFILTER=m
-CONFIG_IP_NF_ARP_MANGLE=m
-
-#
-# IPv6: Netfilter Configuration
-#
-CONFIG_NF_DEFRAG_IPV6=m
-CONFIG_NF_CONNTRACK_IPV6=m
-CONFIG_IP6_NF_QUEUE=m
-CONFIG_IP6_NF_IPTABLES=m
-CONFIG_IP6_NF_MATCH_AH=m
-CONFIG_IP6_NF_MATCH_EUI64=m
-CONFIG_IP6_NF_MATCH_FRAG=m
-CONFIG_IP6_NF_MATCH_OPTS=m
-CONFIG_IP6_NF_MATCH_HL=m
-CONFIG_IP6_NF_MATCH_IPV6HEADER=m
-CONFIG_IP6_NF_MATCH_MH=m
-CONFIG_IP6_NF_MATCH_RT=m
-CONFIG_IP6_NF_TARGET_HL=m
-CONFIG_IP6_NF_TARGET_LOG=m
-CONFIG_IP6_NF_FILTER=m
-CONFIG_IP6_NF_TARGET_REJECT=m
-CONFIG_IP6_NF_MANGLE=m
-CONFIG_IP6_NF_RAW=m
-CONFIG_IP6_NF_SECURITY=m
-
-#
-# DECnet: Netfilter Configuration
-#
-CONFIG_DECNET_NF_GRABULATOR=m
-CONFIG_BRIDGE_NF_EBTABLES=m
-CONFIG_BRIDGE_EBT_BROUTE=m
-CONFIG_BRIDGE_EBT_T_FILTER=m
-CONFIG_BRIDGE_EBT_T_NAT=m
-CONFIG_BRIDGE_EBT_802_3=m
-CONFIG_BRIDGE_EBT_AMONG=m
-CONFIG_BRIDGE_EBT_ARP=m
-CONFIG_BRIDGE_EBT_IP=m
-CONFIG_BRIDGE_EBT_IP6=m
-CONFIG_BRIDGE_EBT_LIMIT=m
-CONFIG_BRIDGE_EBT_MARK=m
-CONFIG_BRIDGE_EBT_PKTTYPE=m
-CONFIG_BRIDGE_EBT_STP=m
-CONFIG_BRIDGE_EBT_VLAN=m
-CONFIG_BRIDGE_EBT_ARPREPLY=m
-CONFIG_BRIDGE_EBT_DNAT=m
-CONFIG_BRIDGE_EBT_MARK_T=m
-CONFIG_BRIDGE_EBT_REDIRECT=m
-CONFIG_BRIDGE_EBT_SNAT=m
-CONFIG_BRIDGE_EBT_LOG=m
-CONFIG_BRIDGE_EBT_ULOG=m
-CONFIG_BRIDGE_EBT_NFLOG=m
-CONFIG_IP_DCCP=m
-CONFIG_INET_DCCP_DIAG=m
-
-#
-# DCCP CCIDs Configuration (EXPERIMENTAL)
-#
-# CONFIG_IP_DCCP_CCID2_DEBUG is not set
-CONFIG_IP_DCCP_CCID3=y
-# CONFIG_IP_DCCP_CCID3_DEBUG is not set
-CONFIG_IP_DCCP_TFRC_LIB=y
-
-#
-# DCCP Kernel Hacking
-#
-# CONFIG_IP_DCCP_DEBUG is not set
-# CONFIG_NET_DCCPPROBE is not set
-CONFIG_IP_SCTP=m
-# CONFIG_NET_SCTPPROBE is not set
-# CONFIG_SCTP_DBG_MSG is not set
-# CONFIG_SCTP_DBG_OBJCNT is not set
-# CONFIG_SCTP_HMAC_NONE is not set
-# CONFIG_SCTP_HMAC_SHA1 is not set
-CONFIG_SCTP_HMAC_MD5=y
-CONFIG_RDS=m
-CONFIG_RDS_TCP=m
-# CONFIG_RDS_DEBUG is not set
-CONFIG_TIPC=m
-CONFIG_TIPC_ADVANCED=y
-CONFIG_TIPC_PORTS=8191
-CONFIG_TIPC_LOG=0
-# CONFIG_TIPC_DEBUG is not set
-CONFIG_ATM=m
-CONFIG_ATM_CLIP=m
-# CONFIG_ATM_CLIP_NO_ICMP is not set
-CONFIG_ATM_LANE=m
-CONFIG_ATM_MPOA=m
-CONFIG_ATM_BR2684=m
-# CONFIG_ATM_BR2684_IPFILTER is not set
-# CONFIG_L2TP is not set
-CONFIG_STP=m
-CONFIG_GARP=m
-CONFIG_BRIDGE=m
-CONFIG_BRIDGE_IGMP_SNOOPING=y
-# CONFIG_NET_DSA is not set
-CONFIG_VLAN_8021Q=m
-CONFIG_VLAN_8021Q_GVRP=y
-CONFIG_DECNET=m
-# CONFIG_DECNET_ROUTER is not set
-CONFIG_LLC=m
-CONFIG_LLC2=m
-CONFIG_IPX=m
-# CONFIG_IPX_INTERN is not set
-CONFIG_ATALK=m
-CONFIG_DEV_APPLETALK=m
-CONFIG_IPDDP=m
-CONFIG_IPDDP_ENCAP=y
-CONFIG_IPDDP_DECAP=y
-CONFIG_X25=m
-CONFIG_LAPB=m
-CONFIG_ECONET=m
-CONFIG_ECONET_AUNUDP=y
-CONFIG_ECONET_NATIVE=y
-# CONFIG_WAN_ROUTER is not set
-# CONFIG_PHONET is not set
-# CONFIG_IEEE802154 is not set
-CONFIG_NET_SCHED=y
-
-#
-# Queueing/Scheduling
-#
-CONFIG_NET_SCH_CBQ=m
-CONFIG_NET_SCH_HTB=m
-CONFIG_NET_SCH_HFSC=m
-CONFIG_NET_SCH_ATM=m
-CONFIG_NET_SCH_PRIO=m
-CONFIG_NET_SCH_MULTIQ=m
-CONFIG_NET_SCH_RED=m
-# CONFIG_NET_SCH_SFB is not set
-CONFIG_NET_SCH_SFQ=m
-CONFIG_NET_SCH_TEQL=m
-CONFIG_NET_SCH_TBF=m
-CONFIG_NET_SCH_GRED=m
-CONFIG_NET_SCH_DSMARK=m
-CONFIG_NET_SCH_NETEM=m
-CONFIG_NET_SCH_DRR=m
-# CONFIG_NET_SCH_MQPRIO is not set
-# CONFIG_NET_SCH_CHOKE is not set
-# CONFIG_NET_SCH_QFQ is not set
-CONFIG_NET_SCH_INGRESS=m
-
-#
-# Classification
-#
-CONFIG_NET_CLS=y
-CONFIG_NET_CLS_BASIC=m
-CONFIG_NET_CLS_TCINDEX=m
-CONFIG_NET_CLS_ROUTE4=m
-CONFIG_NET_CLS_FW=m
-CONFIG_NET_CLS_U32=m
-CONFIG_CLS_U32_PERF=y
-CONFIG_CLS_U32_MARK=y
-CONFIG_NET_CLS_RSVP=m
-CONFIG_NET_CLS_RSVP6=m
-CONFIG_NET_CLS_FLOW=m
-CONFIG_NET_CLS_CGROUP=y
-CONFIG_NET_EMATCH=y
-CONFIG_NET_EMATCH_STACK=32
-CONFIG_NET_EMATCH_CMP=m
-CONFIG_NET_EMATCH_NBYTE=m
-CONFIG_NET_EMATCH_U32=m
-CONFIG_NET_EMATCH_META=m
-CONFIG_NET_EMATCH_TEXT=m
-CONFIG_NET_CLS_ACT=y
-CONFIG_NET_ACT_POLICE=m
-CONFIG_NET_ACT_GACT=m
-CONFIG_GACT_PROB=y
-CONFIG_NET_ACT_MIRRED=m
-CONFIG_NET_ACT_IPT=m
-CONFIG_NET_ACT_NAT=m
-CONFIG_NET_ACT_PEDIT=m
-CONFIG_NET_ACT_SIMP=m
-CONFIG_NET_ACT_SKBEDIT=m
-# CONFIG_NET_ACT_CSUM is not set
-CONFIG_NET_CLS_IND=y
-CONFIG_NET_SCH_FIFO=y
-CONFIG_DCB=y
-CONFIG_DNS_RESOLVER=y
-# CONFIG_BATMAN_ADV is not set
-CONFIG_RPS=y
-CONFIG_RFS_ACCEL=y
-CONFIG_XPS=y
-
-#
-# Network testing
-#
-CONFIG_NET_PKTGEN=m
-# CONFIG_NET_TCPPROBE is not set
-CONFIG_NET_DROP_MONITOR=y
-# CONFIG_HAMRADIO is not set
-CONFIG_CAN=m
-CONFIG_CAN_RAW=m
-CONFIG_CAN_BCM=m
-# CONFIG_CAN_GW is not set
-
-#
-# CAN Device Drivers
-#
-CONFIG_CAN_VCAN=m
-# CONFIG_CAN_SLCAN is not set
-CONFIG_CAN_DEV=m
-CONFIG_CAN_CALC_BITTIMING=y
-# CONFIG_CAN_MCP251X is not set
-# CONFIG_PCH_CAN is not set
-CONFIG_CAN_SJA1000=m
-CONFIG_CAN_SJA1000_PLATFORM=m
-CONFIG_CAN_EMS_PCI=m
-# CONFIG_CAN_PEAK_PCI is not set
-CONFIG_CAN_KVASER_PCI=m
-# CONFIG_CAN_PLX_PCI is not set
-# CONFIG_CAN_C_CAN is not set
-
-#
-# CAN USB interfaces
-#
-CONFIG_CAN_EMS_USB=m
-# CONFIG_CAN_ESD_USB2 is not set
-# CONFIG_CAN_SOFTING is not set
-# CONFIG_CAN_DEBUG_DEVICES is not set
-CONFIG_IRDA=m
-
-#
-# IrDA protocols
-#
-CONFIG_IRLAN=m
-CONFIG_IRCOMM=m
-# CONFIG_IRDA_ULTRA is not set
-
-#
-# IrDA options
-#
-CONFIG_IRDA_CACHE_LAST_LSAP=y
-CONFIG_IRDA_FAST_RR=y
-# CONFIG_IRDA_DEBUG is not set
-
-#
-# Infrared-port device drivers
-#
-
-#
-# SIR device drivers
-#
-CONFIG_IRTTY_SIR=m
-
-#
-# Dongle support
-#
-CONFIG_DONGLE=y
-CONFIG_ESI_DONGLE=m
-CONFIG_ACTISYS_DONGLE=m
-CONFIG_TEKRAM_DONGLE=m
-CONFIG_TOIM3232_DONGLE=m
-CONFIG_LITELINK_DONGLE=m
-CONFIG_MA600_DONGLE=m
-CONFIG_GIRBIL_DONGLE=m
-CONFIG_MCP2120_DONGLE=m
-CONFIG_OLD_BELKIN_DONGLE=m
-CONFIG_ACT200L_DONGLE=m
-CONFIG_KINGSUN_DONGLE=m
-CONFIG_KSDAZZLE_DONGLE=m
-CONFIG_KS959_DONGLE=m
-
-#
-# FIR device drivers
-#
-CONFIG_USB_IRDA=m
-CONFIG_SIGMATEL_FIR=m
-CONFIG_NSC_FIR=m
-CONFIG_WINBOND_FIR=m
-# CONFIG_TOSHIBA_FIR is not set
-CONFIG_SMC_IRCC_FIR=m
-CONFIG_ALI_FIR=m
-CONFIG_VLSI_FIR=m
-CONFIG_VIA_FIR=m
-CONFIG_MCS_FIR=m
-# CONFIG_BT is not set
-CONFIG_AF_RXRPC=m
-# CONFIG_AF_RXRPC_DEBUG is not set
-# CONFIG_RXKAD is not set
-CONFIG_FIB_RULES=y
-CONFIG_WIRELESS=y
-CONFIG_WEXT_CORE=y
-CONFIG_WEXT_PROC=y
-CONFIG_CFG80211=m
-# CONFIG_NL80211_TESTMODE is not set
-# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
-# CONFIG_CFG80211_REG_DEBUG is not set
-CONFIG_CFG80211_DEFAULT_PS=y
-# CONFIG_CFG80211_DEBUGFS is not set
-# CONFIG_CFG80211_INTERNAL_REGDB is not set
-CONFIG_CFG80211_WEXT=y
-# CONFIG_WIRELESS_EXT_SYSFS is not set
-CONFIG_LIB80211=m
-# CONFIG_LIB80211_DEBUG is not set
-CONFIG_MAC80211=m
-CONFIG_MAC80211_HAS_RC=y
-CONFIG_MAC80211_RC_MINSTREL=y
-CONFIG_MAC80211_RC_MINSTREL_HT=y
-CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
-CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
-CONFIG_MAC80211_MESH=y
-CONFIG_MAC80211_LEDS=y
-# CONFIG_MAC80211_DEBUGFS is not set
-# CONFIG_MAC80211_DEBUG_MENU is not set
-# CONFIG_WIMAX is not set
-# CONFIG_RFKILL is not set
-# CONFIG_RFKILL_REGULATOR is not set
-CONFIG_NET_9P=m
-# CONFIG_NET_9P_DEBUG is not set
-# CONFIG_CAIF is not set
-# CONFIG_CEPH_LIB is not set
-# CONFIG_NFC is not set
-
-#
-# Device Drivers
-#
-
-#
-# Generic Driver Options
-#
-CONFIG_UEVENT_HELPER_PATH=""
-CONFIG_DEVTMPFS=y
-# CONFIG_DEVTMPFS_MOUNT is not set
-CONFIG_STANDALONE=y
-CONFIG_PREVENT_FIRMWARE_BUILD=y
-CONFIG_FW_LOADER=y
-# CONFIG_FIRMWARE_IN_KERNEL is not set
-CONFIG_EXTRA_FIRMWARE=""
-# CONFIG_DEBUG_DRIVER is not set
-# CONFIG_DEBUG_DEVRES is not set
-# CONFIG_SYS_HYPERVISOR is not set
-CONFIG_REGMAP=y
-CONFIG_REGMAP_I2C=m
-CONFIG_CONNECTOR=m
-CONFIG_MTD=m
-# CONFIG_MTD_TESTS is not set
-CONFIG_MTD_REDBOOT_PARTS=m
-CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1
-# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set
-# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set
-CONFIG_MTD_AR7_PARTS=m
-
-#
-# User Modules And Translation Layers
-#
-CONFIG_MTD_CHAR=m
-CONFIG_MTD_BLKDEVS=m
-CONFIG_MTD_BLOCK=m
-CONFIG_MTD_BLOCK_RO=m
-CONFIG_FTL=m
-CONFIG_NFTL=m
-CONFIG_NFTL_RW=y
-CONFIG_INFTL=m
-CONFIG_RFD_FTL=m
-CONFIG_SSFDC=m
-# CONFIG_SM_FTL is not set
-CONFIG_MTD_OOPS=m
-# CONFIG_MTD_SWAP is not set
-
-#
-# RAM/ROM/Flash chip drivers
-#
-CONFIG_MTD_CFI=m
-CONFIG_MTD_JEDECPROBE=m
-CONFIG_MTD_GEN_PROBE=m
-# CONFIG_MTD_CFI_ADV_OPTIONS is not set
-CONFIG_MTD_MAP_BANK_WIDTH_1=y
-CONFIG_MTD_MAP_BANK_WIDTH_2=y
-CONFIG_MTD_MAP_BANK_WIDTH_4=y
-# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
-# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
-CONFIG_MTD_CFI_I1=y
-CONFIG_MTD_CFI_I2=y
-# CONFIG_MTD_CFI_I4 is not set
-# CONFIG_MTD_CFI_I8 is not set
-CONFIG_MTD_CFI_INTELEXT=m
-CONFIG_MTD_CFI_AMDSTD=m
-CONFIG_MTD_CFI_STAA=m
-CONFIG_MTD_CFI_UTIL=m
-CONFIG_MTD_RAM=m
-CONFIG_MTD_ROM=m
-CONFIG_MTD_ABSENT=m
-
-#
-# Mapping drivers for chip access
-#
-CONFIG_MTD_COMPLEX_MAPPINGS=y
-CONFIG_MTD_PHYSMAP=m
-# CONFIG_MTD_PHYSMAP_COMPAT is not set
-CONFIG_MTD_SC520CDP=m
-CONFIG_MTD_NETSC520=m
-CONFIG_MTD_TS5500=m
-CONFIG_MTD_SBC_GXX=m
-# CONFIG_MTD_AMD76XROM is not set
-# CONFIG_MTD_ICHXROM is not set
-# CONFIG_MTD_ESB2ROM is not set
-# CONFIG_MTD_CK804XROM is not set
-# CONFIG_MTD_SCB2_FLASH is not set
-CONFIG_MTD_NETtel=m
-# CONFIG_MTD_L440GX is not set
-CONFIG_MTD_PCI=m
-# CONFIG_MTD_GPIO_ADDR is not set
-CONFIG_MTD_INTEL_VR_NOR=m
-CONFIG_MTD_PLATRAM=m
-# CONFIG_MTD_LATCH_ADDR is not set
-
-#
-# Self-contained MTD device drivers
-#
-CONFIG_MTD_PMC551=m
-# CONFIG_MTD_PMC551_BUGFIX is not set
-# CONFIG_MTD_PMC551_DEBUG is not set
-CONFIG_MTD_DATAFLASH=m
-# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set
-# CONFIG_MTD_DATAFLASH_OTP is not set
-CONFIG_MTD_M25P80=m
-CONFIG_M25PXX_USE_FAST_READ=y
-CONFIG_MTD_SST25L=m
-CONFIG_MTD_SLRAM=m
-CONFIG_MTD_PHRAM=m
-CONFIG_MTD_MTDRAM=m
-CONFIG_MTDRAM_TOTAL_SIZE=4096
-CONFIG_MTDRAM_ERASE_SIZE=128
-CONFIG_MTD_BLOCK2MTD=m
-
-#
-# Disk-On-Chip Device Drivers
-#
-CONFIG_MTD_DOC2000=m
-CONFIG_MTD_DOC2001=m
-CONFIG_MTD_DOC2001PLUS=m
-# CONFIG_MTD_DOCG3 is not set
-CONFIG_MTD_DOCPROBE=m
-CONFIG_MTD_DOCECC=m
-# CONFIG_MTD_DOCPROBE_ADVANCED is not set
-CONFIG_MTD_DOCPROBE_ADDRESS=0x0
-CONFIG_MTD_NAND_ECC=m
-# CONFIG_MTD_NAND_ECC_SMC is not set
-CONFIG_MTD_NAND=m
-# CONFIG_MTD_NAND_VERIFY_WRITE is not set
-# CONFIG_MTD_NAND_ECC_BCH is not set
-# CONFIG_MTD_SM_COMMON is not set
-# CONFIG_MTD_NAND_MUSEUM_IDS is not set
-# CONFIG_MTD_NAND_DENALI is not set
-CONFIG_MTD_NAND_IDS=m
-# CONFIG_MTD_NAND_RICOH is not set
-CONFIG_MTD_NAND_DISKONCHIP=m
-# CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set
-CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0
-# CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set
-CONFIG_MTD_NAND_CAFE=m
-# CONFIG_MTD_NAND_CS553X is not set
-CONFIG_MTD_NAND_NANDSIM=m
-CONFIG_MTD_NAND_PLATFORM=m
-CONFIG_MTD_ALAUDA=m
-CONFIG_MTD_ONENAND=m
-CONFIG_MTD_ONENAND_VERIFY_WRITE=y
-CONFIG_MTD_ONENAND_GENERIC=m
-# CONFIG_MTD_ONENAND_OTP is not set
-CONFIG_MTD_ONENAND_2X_PROGRAM=y
-CONFIG_MTD_ONENAND_SIM=m
-
-#
-# LPDDR flash memory drivers
-#
-CONFIG_MTD_LPDDR=m
-CONFIG_MTD_QINFO_PROBE=m
-CONFIG_MTD_UBI=m
-CONFIG_MTD_UBI_WL_THRESHOLD=4096
-CONFIG_MTD_UBI_BEB_RESERVE=1
-# CONFIG_MTD_UBI_GLUEBI is not set
-# CONFIG_MTD_UBI_DEBUG is not set
-# CONFIG_PARPORT is not set
-CONFIG_PNP=y
-# CONFIG_PNP_DEBUG_MESSAGES is not set
-
-#
-# Protocols
-#
-CONFIG_PNPACPI=y
-CONFIG_BLK_DEV=y
-CONFIG_BLK_DEV_FD=m
-CONFIG_BLK_CPQ_DA=m
-# CONFIG_BLK_CPQ_CISS_DA is not set
-# CONFIG_BLK_DEV_DAC960 is not set
-# CONFIG_BLK_DEV_UMEM is not set
-# CONFIG_BLK_DEV_COW_COMMON is not set
-CONFIG_BLK_DEV_LOOP=y
-CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
-# CONFIG_BLK_DEV_CRYPTOLOOP is not set
-# CONFIG_BLK_DEV_DRBD is not set
-CONFIG_BLK_DEV_NBD=m
-CONFIG_BLK_DEV_OSD=m
-CONFIG_BLK_DEV_SX8=m
-# CONFIG_BLK_DEV_UB is not set
-CONFIG_BLK_DEV_RAM=m
-CONFIG_BLK_DEV_RAM_COUNT=16
-CONFIG_BLK_DEV_RAM_SIZE=8192
-# CONFIG_BLK_DEV_XIP is not set
-CONFIG_CDROM_PKTCDVD=m
-CONFIG_CDROM_PKTCDVD_BUFFERS=8
-# CONFIG_CDROM_PKTCDVD_WCACHE is not set
-CONFIG_ATA_OVER_ETH=m
-# CONFIG_BLK_DEV_HD is not set
-# CONFIG_BLK_DEV_RBD is not set
-# CONFIG_SENSORS_LIS3LV02D is not set
-CONFIG_MISC_DEVICES=y
-# CONFIG_AD525X_DPOT is not set
-# CONFIG_IBM_ASM is not set
-CONFIG_HWLAT_DETECTOR=m
-# CONFIG_PHANTOM is not set
-# CONFIG_INTEL_MID_PTI is not set
-CONFIG_SGI_IOC4=m
-CONFIG_TIFM_CORE=m
-CONFIG_TIFM_7XX1=m
-# CONFIG_ICS932S401 is not set
-CONFIG_ENCLOSURE_SERVICES=m
-# CONFIG_HP_ILO is not set
-# CONFIG_APDS9802ALS is not set
-# CONFIG_ISL29003 is not set
-# CONFIG_ISL29020 is not set
-# CONFIG_SENSORS_TSL2550 is not set
-# CONFIG_SENSORS_BH1780 is not set
-# CONFIG_SENSORS_BH1770 is not set
-# CONFIG_SENSORS_APDS990X is not set
-# CONFIG_HMC6352 is not set
-# CONFIG_DS1682 is not set
-# CONFIG_TI_DAC7512 is not set
-# CONFIG_VMWARE_BALLOON is not set
-# CONFIG_BMP085 is not set
-# CONFIG_PCH_PHUB is not set
-# CONFIG_USB_SWITCH_FSA9480 is not set
-CONFIG_C2PORT=m
-CONFIG_C2PORT_DURAMAR_2150=m
-
-#
-# EEPROM support
-#
-CONFIG_EEPROM_AT24=m
-CONFIG_EEPROM_AT25=m
-CONFIG_EEPROM_LEGACY=m
-CONFIG_EEPROM_MAX6875=m
-CONFIG_EEPROM_93CX6=m
-# CONFIG_EEPROM_93XX46 is not set
-CONFIG_CB710_CORE=m
-# CONFIG_CB710_DEBUG is not set
-CONFIG_CB710_DEBUG_ASSUMPTIONS=y
-# CONFIG_IWMC3200TOP is not set
-
-#
-# Texas Instruments shared transport line discipline
-#
-# CONFIG_TI_ST is not set
-# CONFIG_SENSORS_LIS3_I2C is not set
-
-#
-# Altera FPGA firmware download module
-#
-# CONFIG_ALTERA_STAPL is not set
-CONFIG_HAVE_IDE=y
-# CONFIG_IDE is not set
-
-#
-# SCSI device support
-#
-CONFIG_SCSI_MOD=y
-CONFIG_RAID_ATTRS=m
-CONFIG_SCSI=y
-CONFIG_SCSI_DMA=y
-CONFIG_SCSI_TGT=m
-CONFIG_SCSI_NETLINK=y
-CONFIG_SCSI_PROC_FS=y
-
-#
-# SCSI support type (disk, tape, CD-ROM)
-#
-CONFIG_BLK_DEV_SD=y
-# CONFIG_CHR_DEV_ST is not set
-# CONFIG_CHR_DEV_OSST is not set
-CONFIG_BLK_DEV_SR=m
-CONFIG_BLK_DEV_SR_VENDOR=y
-CONFIG_CHR_DEV_SG=m
-# CONFIG_CHR_DEV_SCH is not set
-# CONFIG_SCSI_ENCLOSURE is not set
-CONFIG_SCSI_MULTI_LUN=y
-CONFIG_SCSI_CONSTANTS=y
-CONFIG_SCSI_LOGGING=y
-CONFIG_SCSI_SCAN_ASYNC=y
-CONFIG_SCSI_WAIT_SCAN=m
-
-#
-# SCSI Transports
-#
-CONFIG_SCSI_SPI_ATTRS=m
-CONFIG_SCSI_FC_ATTRS=m
-CONFIG_SCSI_FC_TGT_ATTRS=y
-CONFIG_SCSI_ISCSI_ATTRS=m
-CONFIG_SCSI_SAS_ATTRS=m
-CONFIG_SCSI_SAS_LIBSAS=m
-CONFIG_SCSI_SAS_ATA=y
-CONFIG_SCSI_SAS_HOST_SMP=y
-CONFIG_SCSI_SRP_ATTRS=m
-CONFIG_SCSI_SRP_TGT_ATTRS=y
-CONFIG_SCSI_LOWLEVEL=y
-# CONFIG_ISCSI_TCP is not set
-CONFIG_ISCSI_BOOT_SYSFS=y
-# CONFIG_SCSI_CXGB3_ISCSI is not set
-# CONFIG_SCSI_CXGB4_ISCSI is not set
-CONFIG_SCSI_BNX2_ISCSI=m
-# CONFIG_SCSI_BNX2X_FCOE is not set
-# CONFIG_BE2ISCSI is not set
-CONFIG_BLK_DEV_3W_XXXX_RAID=m
-CONFIG_SCSI_HPSA=m
-CONFIG_SCSI_3W_9XXX=m
-CONFIG_SCSI_3W_SAS=m
-CONFIG_SCSI_ACARD=m
-CONFIG_SCSI_AACRAID=m
-CONFIG_SCSI_AIC7XXX=m
-CONFIG_AIC7XXX_CMDS_PER_DEVICE=8
-CONFIG_AIC7XXX_RESET_DELAY_MS=15000
-CONFIG_AIC7XXX_DEBUG_ENABLE=y
-CONFIG_AIC7XXX_DEBUG_MASK=0
-CONFIG_AIC7XXX_REG_PRETTY_PRINT=y
-CONFIG_SCSI_AIC7XXX_OLD=m
-CONFIG_SCSI_AIC79XX=m
-CONFIG_AIC79XX_CMDS_PER_DEVICE=32
-CONFIG_AIC79XX_RESET_DELAY_MS=15000
-CONFIG_AIC79XX_DEBUG_ENABLE=y
-CONFIG_AIC79XX_DEBUG_MASK=0
-CONFIG_AIC79XX_REG_PRETTY_PRINT=y
-CONFIG_SCSI_AIC94XX=m
-# CONFIG_AIC94XX_DEBUG is not set
-CONFIG_SCSI_MVSAS=m
-# CONFIG_SCSI_MVSAS_DEBUG is not set
-# CONFIG_SCSI_MVSAS_TASKLET is not set
-# CONFIG_SCSI_MVUMI is not set
-CONFIG_SCSI_DPT_I2O=m
-CONFIG_SCSI_ADVANSYS=m
-CONFIG_SCSI_ARCMSR=m
-CONFIG_MEGARAID_NEWGEN=y
-CONFIG_MEGARAID_MM=m
-CONFIG_MEGARAID_MAILBOX=m
-CONFIG_MEGARAID_LEGACY=m
-CONFIG_MEGARAID_SAS=m
-CONFIG_SCSI_MPT2SAS=m
-CONFIG_SCSI_MPT2SAS_MAX_SGE=128
-# CONFIG_SCSI_MPT2SAS_LOGGING is not set
-CONFIG_SCSI_HPTIOP=m
-CONFIG_SCSI_BUSLOGIC=m
-# CONFIG_SCSI_FLASHPOINT is not set
-CONFIG_VMWARE_PVSCSI=m
-CONFIG_LIBFC=m
-CONFIG_LIBFCOE=m
-CONFIG_FCOE=m
-CONFIG_FCOE_FNIC=m
-CONFIG_SCSI_DMX3191D=m
-CONFIG_SCSI_EATA=m
-CONFIG_SCSI_EATA_TAGGED_QUEUE=y
-CONFIG_SCSI_EATA_LINKED_COMMANDS=y
-CONFIG_SCSI_EATA_MAX_TAGS=16
-CONFIG_SCSI_FUTURE_DOMAIN=m
-CONFIG_SCSI_GDTH=m
-# CONFIG_SCSI_ISCI is not set
-CONFIG_SCSI_IPS=m
-CONFIG_SCSI_INITIO=m
-# CONFIG_SCSI_INIA100 is not set
-CONFIG_SCSI_STEX=m
-CONFIG_SCSI_SYM53C8XX_2=m
-CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1
-CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16
-CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64
-CONFIG_SCSI_SYM53C8XX_MMIO=y
-CONFIG_SCSI_IPR=m
-# CONFIG_SCSI_IPR_TRACE is not set
-# CONFIG_SCSI_IPR_DUMP is not set
-CONFIG_SCSI_QLOGIC_1280=m
-CONFIG_SCSI_QLA_FC=m
-CONFIG_SCSI_QLA_ISCSI=m
-CONFIG_SCSI_LPFC=m
-# CONFIG_SCSI_LPFC_DEBUG_FS is not set
-CONFIG_SCSI_DC395x=m
-CONFIG_SCSI_DC390T=m
-# CONFIG_SCSI_NSP32 is not set
-CONFIG_SCSI_DEBUG=m
-CONFIG_SCSI_PMCRAID=m
-CONFIG_SCSI_PM8001=m
-CONFIG_SCSI_SRP=m
-CONFIG_SCSI_BFA_FC=m
-CONFIG_SCSI_DH=m
-CONFIG_SCSI_DH_RDAC=m
-CONFIG_SCSI_DH_HP_SW=m
-CONFIG_SCSI_DH_EMC=m
-CONFIG_SCSI_DH_ALUA=m
-CONFIG_SCSI_OSD_INITIATOR=m
-CONFIG_SCSI_OSD_ULD=m
-CONFIG_SCSI_OSD_DPRINT_SENSE=1
-# CONFIG_SCSI_OSD_DEBUG is not set
-CONFIG_ATA=y
-# CONFIG_ATA_NONSTANDARD is not set
-CONFIG_ATA_VERBOSE_ERROR=y
-CONFIG_ATA_ACPI=y
-CONFIG_SATA_PMP=y
-
-#
-# Controllers with non-SFF native interface
-#
-CONFIG_SATA_AHCI=m
-# CONFIG_SATA_AHCI_PLATFORM is not set
-# CONFIG_SATA_INIC162X is not set
-# CONFIG_SATA_ACARD_AHCI is not set
-# CONFIG_SATA_SIL24 is not set
-CONFIG_ATA_SFF=y
-
-#
-# SFF controllers with custom DMA interface
-#
-# CONFIG_PDC_ADMA is not set
-# CONFIG_SATA_QSTOR is not set
-# CONFIG_SATA_SX4 is not set
-CONFIG_ATA_BMDMA=y
-
-#
-# SATA SFF controllers with BMDMA
-#
-# CONFIG_ATA_PIIX is not set
-# CONFIG_SATA_MV is not set
-# CONFIG_SATA_NV is not set
-# CONFIG_SATA_PROMISE is not set
-# CONFIG_SATA_SIL is not set
-# CONFIG_SATA_SIS is not set
-# CONFIG_SATA_SVW is not set
-# CONFIG_SATA_ULI is not set
-# CONFIG_SATA_VIA is not set
-# CONFIG_SATA_VITESSE is not set
-
-#
-# PATA SFF controllers with BMDMA
-#
-# CONFIG_PATA_ALI is not set
-# CONFIG_PATA_AMD is not set
-# CONFIG_PATA_ARASAN_CF is not set
-# CONFIG_PATA_ARTOP is not set
-# CONFIG_PATA_ATIIXP is not set
-# CONFIG_PATA_ATP867X is not set
-# CONFIG_PATA_CMD64X is not set
-# CONFIG_PATA_CS5520 is not set
-# CONFIG_PATA_CS5530 is not set
-# CONFIG_PATA_CS5535 is not set
-# CONFIG_PATA_CS5536 is not set
-# CONFIG_PATA_CYPRESS is not set
-# CONFIG_PATA_EFAR is not set
-# CONFIG_PATA_HPT366 is not set
-# CONFIG_PATA_HPT37X is not set
-# CONFIG_PATA_HPT3X2N is not set
-# CONFIG_PATA_HPT3X3 is not set
-# CONFIG_PATA_IT8213 is not set
-# CONFIG_PATA_IT821X is not set
-# CONFIG_PATA_JMICRON is not set
-# CONFIG_PATA_MARVELL is not set
-# CONFIG_PATA_NETCELL is not set
-# CONFIG_PATA_NINJA32 is not set
-# CONFIG_PATA_NS87415 is not set
-# CONFIG_PATA_OLDPIIX is not set
-# CONFIG_PATA_OPTIDMA is not set
-# CONFIG_PATA_PDC2027X is not set
-# CONFIG_PATA_PDC_OLD is not set
-# CONFIG_PATA_RADISYS is not set
-# CONFIG_PATA_RDC is not set
-# CONFIG_PATA_SC1200 is not set
-CONFIG_PATA_SCH=y
-# CONFIG_PATA_SERVERWORKS is not set
-# CONFIG_PATA_SIL680 is not set
-# CONFIG_PATA_SIS is not set
-# CONFIG_PATA_TOSHIBA is not set
-# CONFIG_PATA_TRIFLEX is not set
-# CONFIG_PATA_VIA is not set
-# CONFIG_PATA_WINBOND is not set
-
-#
-# PIO-only SFF controllers
-#
-# CONFIG_PATA_CMD640_PCI is not set
-CONFIG_PATA_MPIIX=m
-# CONFIG_PATA_NS87410 is not set
-# CONFIG_PATA_OPTI is not set
-# CONFIG_PATA_RZ1000 is not set
-
-#
-# Generic fallback / legacy drivers
-#
-# CONFIG_PATA_ACPI is not set
-CONFIG_ATA_GENERIC=y
-# CONFIG_PATA_LEGACY is not set
-# CONFIG_MD is not set
-# CONFIG_TARGET_CORE is not set
-# CONFIG_FUSION is not set
-
-#
-# IEEE 1394 (FireWire) support
-#
-CONFIG_FIREWIRE=m
-CONFIG_FIREWIRE_OHCI=m
-CONFIG_FIREWIRE_OHCI_DEBUG=y
-CONFIG_FIREWIRE_SBP2=m
-CONFIG_FIREWIRE_NET=m
-# CONFIG_FIREWIRE_NOSY is not set
-# CONFIG_I2O is not set
-# CONFIG_MACINTOSH_DRIVERS is not set
-CONFIG_NETDEVICES=y
-CONFIG_NET_CORE=y
-# CONFIG_BONDING is not set
-# CONFIG_DUMMY is not set
-# CONFIG_EQUALIZER is not set
-# CONFIG_NET_FC is not set
-CONFIG_MII=y
-CONFIG_IFB=m
-# CONFIG_MACVLAN is not set
-# CONFIG_NETPOLL is not set
-# CONFIG_NET_POLL_CONTROLLER is not set
-CONFIG_TUN=m
-# CONFIG_VETH is not set
-# CONFIG_ARCNET is not set
-# CONFIG_ATM_DRIVERS is not set
-
-#
-# CAIF transport drivers
-#
-CONFIG_ETHERNET=y
-# CONFIG_NET_VENDOR_3COM is not set
-# CONFIG_NET_VENDOR_ADAPTEC is not set
-# CONFIG_NET_VENDOR_ALTEON is not set
-# CONFIG_NET_VENDOR_AMD is not set
-# CONFIG_NET_VENDOR_ATHEROS is not set
-CONFIG_NET_VENDOR_BROADCOM=y
-# CONFIG_B44 is not set
-CONFIG_BNX2=m
-CONFIG_CNIC=m
-# CONFIG_TIGON3 is not set
-# CONFIG_BNX2X is not set
-# CONFIG_NET_VENDOR_BROCADE is not set
-# CONFIG_NET_VENDOR_CHELSIO is not set
-# CONFIG_NET_VENDOR_CISCO is not set
-# CONFIG_DNET is not set
-# CONFIG_NET_VENDOR_DEC is not set
-# CONFIG_NET_VENDOR_DLINK is not set
-# CONFIG_NET_VENDOR_EMULEX is not set
-# CONFIG_NET_VENDOR_EXAR is not set
-# CONFIG_NET_VENDOR_HP is not set
-# CONFIG_NET_VENDOR_INTEL is not set
-# CONFIG_IP1000 is not set
-# CONFIG_JME is not set
-# CONFIG_NET_VENDOR_MARVELL is not set
-# CONFIG_NET_VENDOR_MELLANOX is not set
-# CONFIG_NET_VENDOR_MICREL is not set
-# CONFIG_NET_VENDOR_MICROCHIP is not set
-# CONFIG_NET_VENDOR_MYRI is not set
-# CONFIG_FEALNX is not set
-# CONFIG_NET_VENDOR_NATSEMI is not set
-# CONFIG_NET_VENDOR_NVIDIA is not set
-# CONFIG_NET_VENDOR_OKI is not set
-# CONFIG_ETHOC is not set
-# CONFIG_NET_PACKET_ENGINE is not set
-# CONFIG_NET_VENDOR_QLOGIC is not set
-CONFIG_NET_VENDOR_REALTEK=y
-# CONFIG_8139CP is not set
-# CONFIG_8139TOO is not set
-CONFIG_R8169=y
-# CONFIG_NET_VENDOR_RDC is not set
-# CONFIG_NET_VENDOR_SEEQ is not set
-# CONFIG_NET_VENDOR_SILAN is not set
-# CONFIG_NET_VENDOR_SIS is not set
-# CONFIG_SFC is not set
-# CONFIG_NET_VENDOR_SMSC is not set
-# CONFIG_NET_VENDOR_STMICRO is not set
-# CONFIG_NET_VENDOR_SUN is not set
-# CONFIG_NET_VENDOR_TEHUTI is not set
-# CONFIG_NET_VENDOR_TI is not set
-# CONFIG_NET_VENDOR_VIA is not set
-# CONFIG_FDDI is not set
-# CONFIG_HIPPI is not set
-# CONFIG_NET_SB1000 is not set
-CONFIG_PHYLIB=m
-
-#
-# MII PHY device drivers
-#
-CONFIG_MARVELL_PHY=m
-CONFIG_DAVICOM_PHY=m
-CONFIG_QSEMI_PHY=m
-CONFIG_LXT_PHY=m
-CONFIG_CICADA_PHY=m
-CONFIG_VITESSE_PHY=m
-CONFIG_SMSC_PHY=m
-CONFIG_BROADCOM_PHY=m
-CONFIG_ICPLUS_PHY=m
-CONFIG_REALTEK_PHY=m
-CONFIG_NATIONAL_PHY=m
-CONFIG_STE10XP=m
-CONFIG_LSI_ET1011C_PHY=m
-# CONFIG_MICREL_PHY is not set
-CONFIG_MDIO_BITBANG=m
-# CONFIG_MDIO_GPIO is not set
-# CONFIG_PPP is not set
-# CONFIG_SLIP is not set
-# CONFIG_TR is not set
-
-#
-# USB Network Adapters
-#
-CONFIG_USB_CATC=m
-CONFIG_USB_KAWETH=m
-CONFIG_USB_PEGASUS=m
-CONFIG_USB_RTL8150=m
-CONFIG_USB_USBNET=m
-CONFIG_USB_NET_AX8817X=m
-CONFIG_USB_NET_CDCETHER=m
-CONFIG_USB_NET_CDC_EEM=m
-CONFIG_USB_NET_CDC_NCM=m
-CONFIG_USB_NET_DM9601=m
-# CONFIG_USB_NET_SMSC75XX is not set
-CONFIG_USB_NET_SMSC95XX=m
-CONFIG_USB_NET_GL620A=m
-CONFIG_USB_NET_NET1080=m
-CONFIG_USB_NET_PLUSB=m
-CONFIG_USB_NET_MCS7830=m
-CONFIG_USB_NET_RNDIS_HOST=m
-CONFIG_USB_NET_CDC_SUBSET=m
-CONFIG_USB_ALI_M5632=y
-CONFIG_USB_AN2720=y
-CONFIG_USB_BELKIN=y
-CONFIG_USB_ARMLINUX=y
-CONFIG_USB_EPSON2888=y
-CONFIG_USB_KC2190=y
-CONFIG_USB_NET_ZAURUS=m
-# CONFIG_USB_NET_CX82310_ETH is not set
-# CONFIG_USB_NET_KALMIA is not set
-CONFIG_USB_NET_INT51X1=m
-CONFIG_USB_IPHETH=m
-# CONFIG_USB_SIERRA_NET is not set
-# CONFIG_USB_VL600 is not set
-# CONFIG_WLAN is not set
-
-#
-# Enable WiMAX (Networking options) to see the WiMAX drivers
-#
-# CONFIG_WAN is not set
-# CONFIG_VMXNET3 is not set
-# CONFIG_ISDN is not set
-# CONFIG_PHONE is not set
-
-#
-# Input device support
-#
-CONFIG_INPUT=y
-CONFIG_INPUT_FF_MEMLESS=y
-CONFIG_INPUT_POLLDEV=y
-CONFIG_INPUT_SPARSEKMAP=m
-
-#
-# Userland interfaces
-#
-CONFIG_INPUT_MOUSEDEV=y
-CONFIG_INPUT_MOUSEDEV_PSAUX=y
-CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
-CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
-CONFIG_INPUT_JOYDEV=y
-CONFIG_INPUT_EVDEV=y
-# CONFIG_INPUT_EVBUG is not set
-
-#
-# Input Device Drivers
-#
-CONFIG_INPUT_KEYBOARD=y
-CONFIG_KEYBOARD_ADP5588=m
-# CONFIG_KEYBOARD_ADP5589 is not set
-CONFIG_KEYBOARD_ATKBD=y
-# CONFIG_KEYBOARD_QT1070 is not set
-# CONFIG_KEYBOARD_QT2160 is not set
-CONFIG_KEYBOARD_LKKBD=m
-# CONFIG_KEYBOARD_GPIO is not set
-# CONFIG_KEYBOARD_GPIO_POLLED is not set
-# CONFIG_KEYBOARD_TCA6416 is not set
-# CONFIG_KEYBOARD_MATRIX is not set
-CONFIG_KEYBOARD_LM8323=m
-CONFIG_KEYBOARD_MAX7359=m
-# CONFIG_KEYBOARD_MCS is not set
-# CONFIG_KEYBOARD_MPR121 is not set
-CONFIG_KEYBOARD_NEWTON=m
-CONFIG_KEYBOARD_OPENCORES=m
-CONFIG_KEYBOARD_STOWAWAY=m
-CONFIG_KEYBOARD_SUNKBD=m
-CONFIG_KEYBOARD_XTKBD=m
-CONFIG_INPUT_MOUSE=y
-CONFIG_MOUSE_PS2=y
-CONFIG_MOUSE_PS2_ALPS=y
-CONFIG_MOUSE_PS2_LOGIPS2PP=y
-CONFIG_MOUSE_PS2_SYNAPTICS=y
-CONFIG_MOUSE_PS2_LIFEBOOK=y
-CONFIG_MOUSE_PS2_TRACKPOINT=y
-CONFIG_MOUSE_PS2_ELANTECH=y
-CONFIG_MOUSE_PS2_SENTELIC=y
-# CONFIG_MOUSE_PS2_TOUCHKIT is not set
-# CONFIG_MOUSE_SERIAL is not set
-# CONFIG_MOUSE_APPLETOUCH is not set
-# CONFIG_MOUSE_BCM5974 is not set
-# CONFIG_MOUSE_VSXXXAA is not set
-# CONFIG_MOUSE_GPIO is not set
-# CONFIG_MOUSE_SYNAPTICS_I2C is not set
-CONFIG_INPUT_JOYSTICK=y
-# CONFIG_JOYSTICK_ANALOG is not set
-# CONFIG_JOYSTICK_A3D is not set
-CONFIG_JOYSTICK_ADI=m
-# CONFIG_JOYSTICK_COBRA is not set
-# CONFIG_JOYSTICK_GF2K is not set
-# CONFIG_JOYSTICK_GRIP is not set
-# CONFIG_JOYSTICK_GRIP_MP is not set
-# CONFIG_JOYSTICK_GUILLEMOT is not set
-# CONFIG_JOYSTICK_INTERACT is not set
-CONFIG_JOYSTICK_SIDEWINDER=m
-CONFIG_JOYSTICK_TMDC=m
-# CONFIG_JOYSTICK_IFORCE is not set
-# CONFIG_JOYSTICK_WARRIOR is not set
-# CONFIG_JOYSTICK_MAGELLAN is not set
-# CONFIG_JOYSTICK_SPACEORB is not set
-# CONFIG_JOYSTICK_SPACEBALL is not set
-# CONFIG_JOYSTICK_STINGER is not set
-# CONFIG_JOYSTICK_TWIDJOY is not set
-# CONFIG_JOYSTICK_ZHENHUA is not set
-# CONFIG_JOYSTICK_AS5011 is not set
-# CONFIG_JOYSTICK_JOYDUMP is not set
-CONFIG_JOYSTICK_XPAD=m
-CONFIG_JOYSTICK_XPAD_FF=y
-CONFIG_JOYSTICK_XPAD_LEDS=y
-# CONFIG_INPUT_TABLET is not set
-# CONFIG_INPUT_TOUCHSCREEN is not set
-# CONFIG_INPUT_MISC is not set
-
-#
-# Hardware I/O ports
-#
-CONFIG_SERIO=y
-CONFIG_SERIO_I8042=y
-# CONFIG_SERIO_SERPORT is not set
-# CONFIG_SERIO_CT82C710 is not set
-# CONFIG_SERIO_PCIPS2 is not set
-CONFIG_SERIO_LIBPS2=y
-# CONFIG_SERIO_RAW is not set
-# CONFIG_SERIO_ALTERA_PS2 is not set
-# CONFIG_SERIO_PS2MULT is not set
-CONFIG_GAMEPORT=m
-# CONFIG_GAMEPORT_NS558 is not set
-# CONFIG_GAMEPORT_L4 is not set
-# CONFIG_GAMEPORT_EMU10K1 is not set
-# CONFIG_GAMEPORT_FM801 is not set
-
-#
-# Character devices
-#
-CONFIG_VT=y
-CONFIG_CONSOLE_TRANSLATIONS=y
-CONFIG_VT_CONSOLE=y
-CONFIG_HW_CONSOLE=y
-CONFIG_VT_HW_CONSOLE_BINDING=y
-CONFIG_UNIX98_PTYS=y
-CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
-# CONFIG_LEGACY_PTYS is not set
-CONFIG_SERIAL_NONSTANDARD=y
-# CONFIG_ROCKETPORT is not set
-# CONFIG_CYCLADES is not set
-# CONFIG_MOXA_INTELLIO is not set
-# CONFIG_MOXA_SMARTIO is not set
-# CONFIG_SYNCLINK is not set
-# CONFIG_SYNCLINKMP is not set
-# CONFIG_SYNCLINK_GT is not set
-# CONFIG_NOZOMI is not set
-# CONFIG_ISI is not set
-CONFIG_N_HDLC=m
-# CONFIG_N_GSM is not set
-# CONFIG_TRACE_SINK is not set
-# CONFIG_DEVKMEM is not set
-CONFIG_STALDRV=y
-
-#
-# Serial drivers
-#
-CONFIG_SERIAL_8250=y
-CONFIG_SERIAL_8250_CONSOLE=y
-CONFIG_FIX_EARLYCON_MEM=y
-CONFIG_SERIAL_8250_PCI=y
-CONFIG_SERIAL_8250_PNP=y
-CONFIG_SERIAL_8250_NR_UARTS=32
-CONFIG_SERIAL_8250_RUNTIME_UARTS=4
-CONFIG_SERIAL_8250_EXTENDED=y
-CONFIG_SERIAL_8250_MANY_PORTS=y
-CONFIG_SERIAL_8250_SHARE_IRQ=y
-# CONFIG_SERIAL_8250_DETECT_IRQ is not set
-CONFIG_SERIAL_8250_RSA=y
-
-#
-# Non-8250 serial port support
-#
-CONFIG_SERIAL_MAX3100=m
-# CONFIG_SERIAL_MAX3107 is not set
-# CONFIG_SERIAL_MFD_HSU is not set
-CONFIG_SERIAL_CORE=y
-CONFIG_SERIAL_CORE_CONSOLE=y
-CONFIG_SERIAL_JSM=m
-# CONFIG_SERIAL_TIMBERDALE is not set
-# CONFIG_SERIAL_ALTERA_JTAGUART is not set
-# CONFIG_SERIAL_ALTERA_UART is not set
-# CONFIG_SERIAL_IFX6X60 is not set
-# CONFIG_SERIAL_PCH_UART is not set
-# CONFIG_SERIAL_XILINX_PS_UART is not set
-CONFIG_IPMI_HANDLER=m
-# CONFIG_IPMI_PANIC_EVENT is not set
-CONFIG_IPMI_DEVICE_INTERFACE=m
-CONFIG_IPMI_SI=m
-CONFIG_IPMI_WATCHDOG=m
-CONFIG_IPMI_POWEROFF=m
-CONFIG_HW_RANDOM=y
-CONFIG_HW_RANDOM_TIMERIOMEM=y
-CONFIG_HW_RANDOM_INTEL=y
-# CONFIG_HW_RANDOM_AMD is not set
-CONFIG_HW_RANDOM_GEODE=y
-# CONFIG_HW_RANDOM_VIA is not set
-CONFIG_NVRAM=m
-CONFIG_R3964=m
-CONFIG_APPLICOM=m
-# CONFIG_SONYPI is not set
-# CONFIG_MWAVE is not set
-# CONFIG_PC8736x_GPIO is not set
-# CONFIG_NSC_GPIO is not set
-CONFIG_RAW_DRIVER=m
-CONFIG_MAX_RAW_DEVS=256
-CONFIG_HPET=y
-CONFIG_HPET_MMAP=y
-CONFIG_HANGCHECK_TIMER=m
-# CONFIG_TCG_TPM is not set
-CONFIG_TELCLOCK=m
-CONFIG_DEVPORT=y
-# CONFIG_RAMOOPS is not set
-CONFIG_I2C=y
-CONFIG_I2C_BOARDINFO=y
-CONFIG_I2C_COMPAT=y
-CONFIG_I2C_CHARDEV=m
-# CONFIG_I2C_MUX is not set
-CONFIG_I2C_HELPER_AUTO=y
-CONFIG_I2C_ALGOBIT=m
-
-#
-# I2C Hardware Bus support
-#
-
-#
-# PC SMBus host controller drivers
-#
-# CONFIG_I2C_ALI1535 is not set
-# CONFIG_I2C_ALI1563 is not set
-# CONFIG_I2C_ALI15X3 is not set
-# CONFIG_I2C_AMD756 is not set
-# CONFIG_I2C_AMD8111 is not set
-# CONFIG_I2C_I801 is not set
-CONFIG_I2C_ISCH=y
-# CONFIG_I2C_PIIX4 is not set
-# CONFIG_I2C_NFORCE2 is not set
-# CONFIG_I2C_SIS5595 is not set
-# CONFIG_I2C_SIS630 is not set
-# CONFIG_I2C_SIS96X is not set
-# CONFIG_I2C_VIA is not set
-# CONFIG_I2C_VIAPRO is not set
-
-#
-# ACPI drivers
-#
-CONFIG_I2C_SCMI=m
-
-#
-# I2C system bus drivers (mostly embedded / system-on-chip)
-#
-# CONFIG_I2C_DESIGNWARE_PCI is not set
-# CONFIG_I2C_GPIO is not set
-# CONFIG_I2C_INTEL_MID is not set
-# CONFIG_I2C_OCORES is not set
-# CONFIG_I2C_PCA_PLATFORM is not set
-# CONFIG_I2C_PXA_PCI is not set
-# CONFIG_I2C_SIMTEC is not set
-# CONFIG_I2C_XILINX is not set
-# CONFIG_I2C_EG20T is not set
-
-#
-# External I2C/SMBus adapter drivers
-#
-# CONFIG_I2C_DIOLAN_U2C is not set
-# CONFIG_I2C_PARPORT_LIGHT is not set
-# CONFIG_I2C_TAOS_EVM is not set
-# CONFIG_I2C_TINY_USB is not set
-
-#
-# Other I2C/SMBus bus drivers
-#
-# CONFIG_I2C_STUB is not set
-# CONFIG_SCx200_ACB is not set
-# CONFIG_I2C_DEBUG_CORE is not set
-# CONFIG_I2C_DEBUG_ALGO is not set
-# CONFIG_I2C_DEBUG_BUS is not set
-CONFIG_SPI=y
-# CONFIG_SPI_DEBUG is not set
-CONFIG_SPI_MASTER=y
-
-#
-# SPI Master Controller Drivers
-#
-# CONFIG_SPI_ALTERA is not set
-CONFIG_SPI_BITBANG=m
-# CONFIG_SPI_GPIO is not set
-# CONFIG_SPI_OC_TINY is not set
-# CONFIG_SPI_PXA2XX is not set
-# CONFIG_SPI_PXA2XX_PCI is not set
-# CONFIG_SPI_TOPCLIFF_PCH is not set
-# CONFIG_SPI_XILINX is not set
-# CONFIG_SPI_DESIGNWARE is not set
-
-#
-# SPI Protocol Masters
-#
-# CONFIG_SPI_SPIDEV is not set
-CONFIG_SPI_TLE62X0=m
-
-#
-# PPS support
-#
-CONFIG_PPS=m
-# CONFIG_PPS_DEBUG is not set
-
-#
-# PPS clients support
-#
-# CONFIG_PPS_CLIENT_KTIMER is not set
-# CONFIG_PPS_CLIENT_LDISC is not set
-# CONFIG_PPS_CLIENT_GPIO is not set
-
-#
-# PPS generators support
-#
-
-#
-# PTP clock support
-#
-# CONFIG_PTP_1588_CLOCK is not set
-CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
-CONFIG_GPIOLIB=y
-# CONFIG_DEBUG_GPIO is not set
-# CONFIG_GPIO_SYSFS is not set
-
-#
-# Memory mapped GPIO drivers:
-#
-# CONFIG_GPIO_GENERIC_PLATFORM is not set
-# CONFIG_GPIO_IT8761E is not set
-# CONFIG_GPIO_SCH is not set
-# CONFIG_GPIO_VX855 is not set
-
-#
-# I2C GPIO expanders:
-#
-# CONFIG_GPIO_MAX7300 is not set
-# CONFIG_GPIO_MAX732X is not set
-# CONFIG_GPIO_PCA953X is not set
-# CONFIG_GPIO_PCF857X is not set
-# CONFIG_GPIO_SX150X is not set
-# CONFIG_GPIO_ADP5588 is not set
-
-#
-# PCI GPIO expanders:
-#
-# CONFIG_GPIO_LANGWELL is not set
-# CONFIG_GPIO_PCH is not set
-# CONFIG_GPIO_ML_IOH is not set
-# CONFIG_GPIO_RDC321X is not set
-
-#
-# SPI GPIO expanders:
-#
-# CONFIG_GPIO_MAX7301 is not set
-# CONFIG_GPIO_MCP23S08 is not set
-# CONFIG_GPIO_MC33880 is not set
-# CONFIG_GPIO_74X164 is not set
-
-#
-# AC97 GPIO expanders:
-#
-
-#
-# MODULbus GPIO expanders:
-#
-# CONFIG_W1 is not set
-CONFIG_POWER_SUPPLY=y
-# CONFIG_POWER_SUPPLY_DEBUG is not set
-CONFIG_PDA_POWER=m
-# CONFIG_TEST_POWER is not set
-# CONFIG_BATTERY_DS2780 is not set
-CONFIG_BATTERY_DS2782=m
-# CONFIG_BATTERY_BQ20Z75 is not set
-CONFIG_BATTERY_BQ27x00=m
-CONFIG_BATTERY_BQ27X00_I2C=y
-CONFIG_BATTERY_BQ27X00_PLATFORM=y
-CONFIG_BATTERY_MAX17040=m
-# CONFIG_BATTERY_MAX17042 is not set
-CONFIG_CHARGER_PCF50633=m
-# CONFIG_CHARGER_MAX8903 is not set
-# CONFIG_CHARGER_GPIO is not set
-CONFIG_HWMON=y
-CONFIG_HWMON_VID=m
-# CONFIG_HWMON_DEBUG_CHIP is not set
-
-#
-# Native drivers
-#
-CONFIG_SENSORS_ABITUGURU=m
-CONFIG_SENSORS_ABITUGURU3=m
-# CONFIG_SENSORS_AD7314 is not set
-CONFIG_SENSORS_AD7414=m
-CONFIG_SENSORS_AD7418=m
-CONFIG_SENSORS_ADCXX=m
-CONFIG_SENSORS_ADM1021=m
-CONFIG_SENSORS_ADM1025=m
-CONFIG_SENSORS_ADM1026=m
-CONFIG_SENSORS_ADM1029=m
-CONFIG_SENSORS_ADM1031=m
-CONFIG_SENSORS_ADM9240=m
-# CONFIG_SENSORS_ADT7411 is not set
-CONFIG_SENSORS_ADT7462=m
-CONFIG_SENSORS_ADT7470=m
-CONFIG_SENSORS_ADT7475=m
-# CONFIG_SENSORS_ASC7621 is not set
-CONFIG_SENSORS_K8TEMP=m
-CONFIG_SENSORS_K10TEMP=m
-# CONFIG_SENSORS_FAM15H_POWER is not set
-CONFIG_SENSORS_ASB100=m
-CONFIG_SENSORS_ATXP1=m
-# CONFIG_SENSORS_DS620 is not set
-CONFIG_SENSORS_DS1621=m
-CONFIG_SENSORS_I5K_AMB=m
-CONFIG_SENSORS_F71805F=m
-CONFIG_SENSORS_F71882FG=m
-CONFIG_SENSORS_F75375S=m
-CONFIG_SENSORS_FSCHMD=m
-CONFIG_SENSORS_G760A=m
-CONFIG_SENSORS_GL518SM=m
-CONFIG_SENSORS_GL520SM=m
-# CONFIG_SENSORS_GPIO_FAN is not set
-CONFIG_SENSORS_CORETEMP=m
-CONFIG_SENSORS_IBMAEM=m
-CONFIG_SENSORS_IBMPEX=m
-CONFIG_SENSORS_IT87=m
-# CONFIG_SENSORS_JC42 is not set
-# CONFIG_SENSORS_LINEAGE is not set
-CONFIG_SENSORS_LM63=m
-CONFIG_SENSORS_LM70=m
-# CONFIG_SENSORS_LM73 is not set
-CONFIG_SENSORS_LM75=m
-CONFIG_SENSORS_LM77=m
-CONFIG_SENSORS_LM78=m
-CONFIG_SENSORS_LM80=m
-CONFIG_SENSORS_LM83=m
-CONFIG_SENSORS_LM85=m
-CONFIG_SENSORS_LM87=m
-CONFIG_SENSORS_LM90=m
-CONFIG_SENSORS_LM92=m
-CONFIG_SENSORS_LM93=m
-# CONFIG_SENSORS_LTC4151 is not set
-CONFIG_SENSORS_LTC4215=m
-CONFIG_SENSORS_LTC4245=m
-# CONFIG_SENSORS_LTC4261 is not set
-CONFIG_SENSORS_LM95241=m
-# CONFIG_SENSORS_LM95245 is not set
-CONFIG_SENSORS_MAX1111=m
-# CONFIG_SENSORS_MAX16065 is not set
-CONFIG_SENSORS_MAX1619=m
-# CONFIG_SENSORS_MAX1668 is not set
-# CONFIG_SENSORS_MAX6639 is not set
-# CONFIG_SENSORS_MAX6642 is not set
-CONFIG_SENSORS_MAX6650=m
-# CONFIG_SENSORS_NTC_THERMISTOR is not set
-CONFIG_SENSORS_PC87360=m
-CONFIG_SENSORS_PC87427=m
-CONFIG_SENSORS_PCF8591=m
-# CONFIG_PMBUS is not set
-# CONFIG_SENSORS_SHT15 is not set
-# CONFIG_SENSORS_SHT21 is not set
-CONFIG_SENSORS_SIS5595=m
-# CONFIG_SENSORS_SMM665 is not set
-CONFIG_SENSORS_DME1737=m
-# CONFIG_SENSORS_EMC1403 is not set
-# CONFIG_SENSORS_EMC2103 is not set
-# CONFIG_SENSORS_EMC6W201 is not set
-CONFIG_SENSORS_SMSC47M1=m
-CONFIG_SENSORS_SMSC47M192=m
-CONFIG_SENSORS_SMSC47B397=m
-# CONFIG_SENSORS_SCH56XX_COMMON is not set
-# CONFIG_SENSORS_SCH5627 is not set
-# CONFIG_SENSORS_SCH5636 is not set
-# CONFIG_SENSORS_ADS1015 is not set
-CONFIG_SENSORS_ADS7828=m
-# CONFIG_SENSORS_ADS7871 is not set
-# CONFIG_SENSORS_AMC6821 is not set
-CONFIG_SENSORS_THMC50=m
-# CONFIG_SENSORS_TMP102 is not set
-CONFIG_SENSORS_TMP401=m
-CONFIG_SENSORS_TMP421=m
-CONFIG_SENSORS_VIA_CPUTEMP=m
-CONFIG_SENSORS_VIA686A=m
-CONFIG_SENSORS_VT1211=m
-CONFIG_SENSORS_VT8231=m
-CONFIG_SENSORS_W83781D=m
-CONFIG_SENSORS_W83791D=m
-CONFIG_SENSORS_W83792D=m
-CONFIG_SENSORS_W83793=m
-# CONFIG_SENSORS_W83795 is not set
-CONFIG_SENSORS_W83L785TS=m
-CONFIG_SENSORS_W83L786NG=m
-CONFIG_SENSORS_W83627HF=m
-CONFIG_SENSORS_W83627EHF=m
-CONFIG_SENSORS_APPLESMC=m
-
-#
-# ACPI drivers
-#
-# CONFIG_SENSORS_ACPI_POWER is not set
-CONFIG_SENSORS_ATK0110=m
-CONFIG_THERMAL=y
-CONFIG_THERMAL_HWMON=y
-CONFIG_WATCHDOG=y
-# CONFIG_WATCHDOG_CORE is not set
-# CONFIG_WATCHDOG_NOWAYOUT is not set
-
-#
-# Watchdog Device Drivers
-#
-CONFIG_SOFT_WATCHDOG=m
-CONFIG_ACQUIRE_WDT=m
-CONFIG_ADVANTECH_WDT=m
-CONFIG_ALIM1535_WDT=m
-CONFIG_ALIM7101_WDT=m
-CONFIG_F71808E_WDT=m
-# CONFIG_SP5100_TCO is not set
-CONFIG_SC520_WDT=m
-CONFIG_SBC_FITPC2_WATCHDOG=m
-CONFIG_EUROTECH_WDT=m
-CONFIG_IB700_WDT=m
-CONFIG_IBMASR=m
-CONFIG_WAFER_WDT=m
-CONFIG_I6300ESB_WDT=m
-CONFIG_ITCO_WDT=m
-CONFIG_ITCO_VENDOR_SUPPORT=y
-CONFIG_IT8712F_WDT=m
-CONFIG_IT87_WDT=m
-CONFIG_HP_WATCHDOG=m
-CONFIG_HPWDT_NMI_DECODING=y
-CONFIG_SC1200_WDT=m
-CONFIG_PC87413_WDT=m
-# CONFIG_NV_TCO is not set
-CONFIG_60XX_WDT=m
-CONFIG_SBC8360_WDT=m
-# CONFIG_SBC7240_WDT is not set
-CONFIG_CPU5_WDT=m
-CONFIG_SMSC_SCH311X_WDT=m
-CONFIG_SMSC37B787_WDT=m
-CONFIG_W83627HF_WDT=m
-CONFIG_W83697HF_WDT=m
-CONFIG_W83697UG_WDT=m
-CONFIG_W83877F_WDT=m
-CONFIG_W83977F_WDT=m
-CONFIG_MACHZ_WDT=m
-CONFIG_SBC_EPX_C3_WATCHDOG=m
-
-#
-# PCI-based Watchdog Cards
-#
-CONFIG_PCIPCWATCHDOG=m
-CONFIG_WDTPCI=m
-
-#
-# USB-based Watchdog Cards
-#
-CONFIG_USBPCWATCHDOG=m
-CONFIG_SSB_POSSIBLE=y
-
-#
-# Sonics Silicon Backplane
-#
-CONFIG_SSB=m
-CONFIG_SSB_SPROM=y
-CONFIG_SSB_PCIHOST_POSSIBLE=y
-CONFIG_SSB_PCIHOST=y
-# CONFIG_SSB_B43_PCI_BRIDGE is not set
-CONFIG_SSB_SDIOHOST_POSSIBLE=y
-CONFIG_SSB_SDIOHOST=y
-# CONFIG_SSB_DEBUG is not set
-CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
-CONFIG_SSB_DRIVER_PCICORE=y
-CONFIG_BCMA_POSSIBLE=y
-
-#
-# Broadcom specific AMBA
-#
-# CONFIG_BCMA is not set
-
-#
-# Multifunction device drivers
-#
-CONFIG_MFD_CORE=y
-# CONFIG_MFD_88PM860X is not set
-CONFIG_MFD_SM501=m
-# CONFIG_MFD_SM501_GPIO is not set
-CONFIG_HTC_PASIC3=m
-# CONFIG_HTC_I2CPLD is not set
-# CONFIG_TPS6105X is not set
-# CONFIG_TPS65010 is not set
-# CONFIG_TPS6507X is not set
-# CONFIG_MFD_TPS6586X is not set
-# CONFIG_MFD_TPS65910 is not set
-# CONFIG_MFD_TPS65912_I2C is not set
-# CONFIG_MFD_TPS65912_SPI is not set
-# CONFIG_TWL4030_CORE is not set
-# CONFIG_MFD_STMPE is not set
-# CONFIG_MFD_TC3589X is not set
-# CONFIG_MFD_TMIO is not set
-# CONFIG_PMIC_DA903X is not set
-# CONFIG_PMIC_ADP5520 is not set
-# CONFIG_MFD_MAX8925 is not set
-# CONFIG_MFD_MAX8997 is not set
-# CONFIG_MFD_MAX8998 is not set
-CONFIG_MFD_WM8400=m
-# CONFIG_MFD_WM831X_I2C is not set
-# CONFIG_MFD_WM831X_SPI is not set
-# CONFIG_MFD_WM8350_I2C is not set
-# CONFIG_MFD_WM8994 is not set
-CONFIG_MFD_PCF50633=m
-CONFIG_PCF50633_ADC=m
-CONFIG_PCF50633_GPIO=m
-# CONFIG_MFD_MC13XXX is not set
-# CONFIG_ABX500_CORE is not set
-# CONFIG_EZX_PCAP is not set
-# CONFIG_MFD_CS5535 is not set
-# CONFIG_MFD_TIMBERDALE is not set
-CONFIG_LPC_SCH=y
-# CONFIG_MFD_RDC321X is not set
-# CONFIG_MFD_JANZ_CMODIO is not set
-# CONFIG_MFD_VX855 is not set
-# CONFIG_MFD_WL1273_CORE is not set
-# CONFIG_MFD_AAT2870_CORE is not set
-CONFIG_REGULATOR=y
-# CONFIG_REGULATOR_DEBUG is not set
-# CONFIG_REGULATOR_DUMMY is not set
-CONFIG_REGULATOR_FIXED_VOLTAGE=m
-# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set
-CONFIG_REGULATOR_USERSPACE_CONSUMER=m
-# CONFIG_REGULATOR_GPIO is not set
-CONFIG_REGULATOR_BQ24022=m
-CONFIG_REGULATOR_MAX1586=m
-# CONFIG_REGULATOR_MAX8649 is not set
-# CONFIG_REGULATOR_MAX8660 is not set
-# CONFIG_REGULATOR_MAX8952 is not set
-CONFIG_REGULATOR_WM8400=m
-CONFIG_REGULATOR_PCF50633=m
-CONFIG_REGULATOR_LP3971=m
-# CONFIG_REGULATOR_LP3972 is not set
-CONFIG_REGULATOR_TPS65023=m
-CONFIG_REGULATOR_TPS6507X=m
-# CONFIG_REGULATOR_ISL6271A is not set
-# CONFIG_REGULATOR_AD5398 is not set
-# CONFIG_REGULATOR_TPS6524X is not set
-CONFIG_MEDIA_SUPPORT=y
-
-#
-# Multimedia core support
-#
-# CONFIG_MEDIA_CONTROLLER is not set
-CONFIG_VIDEO_DEV=y
-CONFIG_VIDEO_V4L2_COMMON=y
-# CONFIG_DVB_CORE is not set
-CONFIG_VIDEO_MEDIA=y
-
-#
-# Multimedia drivers
-#
-CONFIG_VIDEO_SAA7146=m
-CONFIG_VIDEO_SAA7146_VV=m
-CONFIG_RC_CORE=m
-CONFIG_LIRC=m
-CONFIG_RC_MAP=m
-CONFIG_IR_NEC_DECODER=m
-CONFIG_IR_RC5_DECODER=m
-CONFIG_IR_RC6_DECODER=m
-CONFIG_IR_JVC_DECODER=m
-CONFIG_IR_SONY_DECODER=m
-CONFIG_IR_RC5_SZ_DECODER=m
-CONFIG_IR_MCE_KBD_DECODER=m
-CONFIG_IR_LIRC_CODEC=m
-# CONFIG_RC_ATI_REMOTE is not set
-# CONFIG_IR_ENE is not set
-# CONFIG_IR_IMON is not set
-# CONFIG_IR_MCEUSB is not set
-# CONFIG_IR_ITE_CIR is not set
-# CONFIG_IR_FINTEK is not set
-# CONFIG_IR_NUVOTON is not set
-# CONFIG_IR_REDRAT3 is not set
-# CONFIG_IR_STREAMZAP is not set
-# CONFIG_IR_WINBOND_CIR is not set
-# CONFIG_RC_LOOPBACK is not set
-CONFIG_MEDIA_ATTACH=y
-CONFIG_MEDIA_TUNER=y
-# CONFIG_MEDIA_TUNER_CUSTOMISE is not set
-CONFIG_MEDIA_TUNER_SIMPLE=y
-CONFIG_MEDIA_TUNER_TDA8290=y
-CONFIG_MEDIA_TUNER_TDA827X=y
-CONFIG_MEDIA_TUNER_TDA18271=y
-CONFIG_MEDIA_TUNER_TDA9887=y
-CONFIG_MEDIA_TUNER_TEA5761=y
-CONFIG_MEDIA_TUNER_TEA5767=y
-CONFIG_MEDIA_TUNER_MT20XX=y
-CONFIG_MEDIA_TUNER_XC2028=y
-CONFIG_MEDIA_TUNER_XC5000=y
-CONFIG_MEDIA_TUNER_XC4000=y
-CONFIG_MEDIA_TUNER_MC44S803=y
-CONFIG_VIDEO_V4L2=y
-CONFIG_VIDEOBUF_GEN=m
-CONFIG_VIDEOBUF_DMA_SG=m
-CONFIG_VIDEOBUF_VMALLOC=m
-CONFIG_VIDEO_BTCX=m
-CONFIG_VIDEO_TVEEPROM=m
-CONFIG_VIDEO_TUNER=m
-CONFIG_VIDEOBUF2_CORE=m
-CONFIG_VIDEOBUF2_MEMOPS=m
-CONFIG_VIDEOBUF2_DMA_CONTIG=m
-CONFIG_VIDEOBUF2_VMALLOC=m
-CONFIG_VIDEO_CAPTURE_DRIVERS=y
-# CONFIG_VIDEO_ADV_DEBUG is not set
-# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
-CONFIG_VIDEO_HELPER_CHIPS_AUTO=y
-CONFIG_VIDEO_IR_I2C=m
-
-#
-# Audio decoders, processors and mixers
-#
-CONFIG_VIDEO_TVAUDIO=m
-CONFIG_VIDEO_TDA7432=m
-CONFIG_VIDEO_TDA9840=m
-CONFIG_VIDEO_TEA6415C=m
-CONFIG_VIDEO_TEA6420=m
-CONFIG_VIDEO_MSP3400=m
-CONFIG_VIDEO_CS53L32A=m
-CONFIG_VIDEO_WM8775=m
-CONFIG_VIDEO_WM8739=m
-CONFIG_VIDEO_VP27SMPX=m
-
-#
-# RDS decoders
-#
-CONFIG_VIDEO_SAA6588=m
-
-#
-# Video decoders
-#
-CONFIG_VIDEO_BT819=m
-CONFIG_VIDEO_BT856=m
-CONFIG_VIDEO_BT866=m
-CONFIG_VIDEO_KS0127=m
-CONFIG_VIDEO_SAA7110=m
-CONFIG_VIDEO_SAA711X=m
-CONFIG_VIDEO_TVP5150=m
-CONFIG_VIDEO_VPX3220=m
-
-#
-# Video and audio decoders
-#
-CONFIG_VIDEO_SAA717X=m
-CONFIG_VIDEO_CX25840=m
-
-#
-# MPEG video encoders
-#
-CONFIG_VIDEO_CX2341X=m
-
-#
-# Video encoders
-#
-CONFIG_VIDEO_SAA7127=m
-CONFIG_VIDEO_SAA7185=m
-CONFIG_VIDEO_ADV7170=m
-CONFIG_VIDEO_ADV7175=m
-
-#
-# Camera sensor devices
-#
-CONFIG_VIDEO_OV7670=m
-CONFIG_VIDEO_MT9V011=m
-
-#
-# Flash devices
-#
-
-#
-# Video improvement chips
-#
-CONFIG_VIDEO_UPD64031A=m
-CONFIG_VIDEO_UPD64083=m
-
-#
-# Miscelaneous helper chips
-#
-CONFIG_VIDEO_M52790=m
-CONFIG_VIDEO_VIVI=m
-CONFIG_VIDEO_BT848=m
-CONFIG_VIDEO_CPIA2=m
-CONFIG_VIDEO_ZORAN=m
-CONFIG_VIDEO_ZORAN_DC30=m
-CONFIG_VIDEO_ZORAN_ZR36060=m
-CONFIG_VIDEO_ZORAN_BUZ=m
-CONFIG_VIDEO_ZORAN_DC10=m
-CONFIG_VIDEO_ZORAN_LML33=m
-CONFIG_VIDEO_ZORAN_LML33R10=m
-CONFIG_VIDEO_ZORAN_AVS6EYES=m
-CONFIG_VIDEO_SAA7134=m
-CONFIG_VIDEO_SAA7134_RC=y
-CONFIG_VIDEO_MXB=m
-CONFIG_VIDEO_HEXIUM_ORION=m
-CONFIG_VIDEO_HEXIUM_GEMINI=m
-# CONFIG_VIDEO_TIMBERDALE is not set
-CONFIG_VIDEO_CX88=m
-CONFIG_VIDEO_CX88_BLACKBIRD=m
-CONFIG_VIDEO_CX88_MPEG=m
-CONFIG_VIDEO_IVTV=m
-CONFIG_VIDEO_FB_IVTV=m
-CONFIG_VIDEO_CAFE_CCIC=m
-CONFIG_SOC_CAMERA=m
-# CONFIG_SOC_CAMERA_IMX074 is not set
-CONFIG_SOC_CAMERA_MT9M001=m
-CONFIG_SOC_CAMERA_MT9M111=m
-CONFIG_SOC_CAMERA_MT9T031=m
-# CONFIG_SOC_CAMERA_MT9T112 is not set
-CONFIG_SOC_CAMERA_MT9V022=m
-# CONFIG_SOC_CAMERA_RJ54N1 is not set
-CONFIG_SOC_CAMERA_TW9910=m
-CONFIG_SOC_CAMERA_PLATFORM=m
-# CONFIG_SOC_CAMERA_OV2640 is not set
-# CONFIG_SOC_CAMERA_OV5642 is not set
-# CONFIG_SOC_CAMERA_OV6650 is not set
-CONFIG_SOC_CAMERA_OV772X=m
-# CONFIG_SOC_CAMERA_OV9640 is not set
-# CONFIG_SOC_CAMERA_OV9740 is not set
-CONFIG_V4L_USB_DRIVERS=y
-CONFIG_USB_VIDEO_CLASS=y
-CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
-CONFIG_USB_GSPCA=m
-CONFIG_USB_M5602=m
-CONFIG_USB_STV06XX=m
-CONFIG_USB_GL860=m
-# CONFIG_USB_GSPCA_BENQ is not set
-CONFIG_USB_GSPCA_CONEX=m
-# CONFIG_USB_GSPCA_CPIA1 is not set
-CONFIG_USB_GSPCA_ETOMS=m
-CONFIG_USB_GSPCA_FINEPIX=m
-CONFIG_USB_GSPCA_JEILINJ=m
-# CONFIG_USB_GSPCA_KINECT is not set
-# CONFIG_USB_GSPCA_KONICA is not set
-CONFIG_USB_GSPCA_MARS=m
-CONFIG_USB_GSPCA_MR97310A=m
-# CONFIG_USB_GSPCA_NW80X is not set
-CONFIG_USB_GSPCA_OV519=m
-CONFIG_USB_GSPCA_OV534=m
-# CONFIG_USB_GSPCA_OV534_9 is not set
-CONFIG_USB_GSPCA_PAC207=m
-# CONFIG_USB_GSPCA_PAC7302 is not set
-CONFIG_USB_GSPCA_PAC7311=m
-# CONFIG_USB_GSPCA_SE401 is not set
-# CONFIG_USB_GSPCA_SN9C2028 is not set
-CONFIG_USB_GSPCA_SN9C20X=m
-CONFIG_USB_GSPCA_SONIXB=m
-CONFIG_USB_GSPCA_SONIXJ=m
-CONFIG_USB_GSPCA_SPCA500=m
-CONFIG_USB_GSPCA_SPCA501=m
-CONFIG_USB_GSPCA_SPCA505=m
-CONFIG_USB_GSPCA_SPCA506=m
-CONFIG_USB_GSPCA_SPCA508=m
-CONFIG_USB_GSPCA_SPCA561=m
-# CONFIG_USB_GSPCA_SPCA1528 is not set
-CONFIG_USB_GSPCA_SQ905=m
-CONFIG_USB_GSPCA_SQ905C=m
-# CONFIG_USB_GSPCA_SQ930X is not set
-CONFIG_USB_GSPCA_STK014=m
-# CONFIG_USB_GSPCA_STV0680 is not set
-CONFIG_USB_GSPCA_SUNPLUS=m
-CONFIG_USB_GSPCA_T613=m
-# CONFIG_USB_GSPCA_TOPRO is not set
-CONFIG_USB_GSPCA_TV8532=m
-CONFIG_USB_GSPCA_VC032X=m
-# CONFIG_USB_GSPCA_VICAM is not set
-# CONFIG_USB_GSPCA_XIRLINK_CIT is not set
-CONFIG_USB_GSPCA_ZC3XX=m
-CONFIG_VIDEO_PVRUSB2=m
-CONFIG_VIDEO_PVRUSB2_SYSFS=y
-# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
-CONFIG_VIDEO_HDPVR=m
-CONFIG_VIDEO_EM28XX=m
-CONFIG_VIDEO_EM28XX_RC=y
-CONFIG_VIDEO_CX231XX=m
-CONFIG_VIDEO_CX231XX_RC=y
-# CONFIG_VIDEO_TM6000 is not set
-CONFIG_VIDEO_USBVISION=m
-CONFIG_USB_ET61X251=m
-CONFIG_USB_SN9C102=m
-CONFIG_USB_PWC=m
-# CONFIG_USB_PWC_DEBUG is not set
-CONFIG_USB_PWC_INPUT_EVDEV=y
-CONFIG_USB_ZR364XX=m
-CONFIG_USB_STKWEBCAM=m
-CONFIG_USB_S2255=m
-# CONFIG_V4L_MEM2MEM_DRIVERS is not set
-# CONFIG_RADIO_ADAPTERS is not set
-
-#
-# Graphics support
-#
-# CONFIG_AGP is not set
-CONFIG_VGA_ARB=y
-CONFIG_VGA_ARB_MAX_GPUS=16
-# CONFIG_VGA_SWITCHEROO is not set
-# CONFIG_DRM is not set
-# CONFIG_STUB_POULSBO is not set
-CONFIG_VGASTATE=m
-CONFIG_VIDEO_OUTPUT_CONTROL=y
-CONFIG_FB=y
-CONFIG_FIRMWARE_EDID=y
-# CONFIG_FB_DDC is not set
-CONFIG_FB_BOOT_VESA_SUPPORT=y
-CONFIG_FB_CFB_FILLRECT=y
-CONFIG_FB_CFB_COPYAREA=y
-CONFIG_FB_CFB_IMAGEBLIT=y
-# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
-CONFIG_FB_SYS_FILLRECT=m
-CONFIG_FB_SYS_COPYAREA=m
-CONFIG_FB_SYS_IMAGEBLIT=m
-# CONFIG_FB_FOREIGN_ENDIAN is not set
-CONFIG_FB_SYS_FOPS=m
-# CONFIG_FB_WMT_GE_ROPS is not set
-# CONFIG_FB_SVGALIB is not set
-# CONFIG_FB_MACMODES is not set
-# CONFIG_FB_BACKLIGHT is not set
-CONFIG_FB_MODE_HELPERS=y
-CONFIG_FB_TILEBLITTING=y
-
-#
-# Frame buffer hardware drivers
-#
-# CONFIG_FB_CIRRUS is not set
-# CONFIG_FB_PM2 is not set
-# CONFIG_FB_CYBER2000 is not set
-# CONFIG_FB_ARC is not set
-# CONFIG_FB_ASILIANT is not set
-# CONFIG_FB_IMSTT is not set
-CONFIG_FB_VGA16=m
-# CONFIG_FB_UVESA is not set
-CONFIG_FB_VESA=y
-# CONFIG_FB_N411 is not set
-# CONFIG_FB_HGA is not set
-# CONFIG_FB_S1D13XXX is not set
-# CONFIG_FB_NVIDIA is not set
-# CONFIG_FB_RIVA is not set
-CONFIG_FB_LE80578=m
-CONFIG_FB_CARILLO_RANCH=m
-CONFIG_FB_MATROX=m
-CONFIG_FB_MATROX_MILLENIUM=y
-CONFIG_FB_MATROX_MYSTIQUE=y
-CONFIG_FB_MATROX_G=y
-# CONFIG_FB_MATROX_I2C is not set
-# CONFIG_FB_RADEON is not set
-# CONFIG_FB_ATY128 is not set
-# CONFIG_FB_ATY is not set
-# CONFIG_FB_S3 is not set
-# CONFIG_FB_SAVAGE is not set
-# CONFIG_FB_SIS is not set
-# CONFIG_FB_VIA is not set
-# CONFIG_FB_NEOMAGIC is not set
-# CONFIG_FB_KYRO is not set
-# CONFIG_FB_3DFX is not set
-# CONFIG_FB_VOODOO1 is not set
-# CONFIG_FB_VT8623 is not set
-# CONFIG_FB_TRIDENT is not set
-# CONFIG_FB_ARK is not set
-# CONFIG_FB_PM3 is not set
-# CONFIG_FB_CARMINE is not set
-# CONFIG_FB_GEODE is not set
-# CONFIG_FB_TMIO is not set
-# CONFIG_FB_SM501 is not set
-# CONFIG_FB_SMSCUFX is not set
-# CONFIG_FB_UDL is not set
-CONFIG_FB_VIRTUAL=m
-# CONFIG_FB_METRONOME is not set
-# CONFIG_FB_MB862XX is not set
-# CONFIG_FB_BROADSHEET is not set
-CONFIG_BACKLIGHT_LCD_SUPPORT=y
-# CONFIG_LCD_CLASS_DEVICE is not set
-CONFIG_BACKLIGHT_CLASS_DEVICE=y
-# CONFIG_BACKLIGHT_GENERIC is not set
-CONFIG_BACKLIGHT_PROGEAR=m
-# CONFIG_BACKLIGHT_APPLE is not set
-# CONFIG_BACKLIGHT_SAHARA is not set
-# CONFIG_BACKLIGHT_ADP8860 is not set
-# CONFIG_BACKLIGHT_ADP8870 is not set
-# CONFIG_BACKLIGHT_PCF50633 is not set
-
-#
-# Display device support
-#
-CONFIG_DISPLAY_SUPPORT=m
-
-#
-# Display hardware drivers
-#
-
-#
-# Console display driver support
-#
-CONFIG_VGA_CONSOLE=y
-# CONFIG_VGACON_SOFT_SCROLLBACK is not set
-CONFIG_DUMMY_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
-CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
-# CONFIG_FONTS is not set
-CONFIG_FONT_8x8=y
-CONFIG_FONT_8x16=y
-# CONFIG_LOGO is not set
-# CONFIG_SOUND is not set
-CONFIG_HID_SUPPORT=y
-CONFIG_HID=y
-CONFIG_HIDRAW=y
-
-#
-# USB Input Devices
-#
-CONFIG_USB_HID=y
-CONFIG_HID_PID=y
-CONFIG_USB_HIDDEV=y
-
-#
-# Special HID drivers
-#
-CONFIG_HID_A4TECH=y
-# CONFIG_HID_ACRUX is not set
-CONFIG_HID_APPLE=y
-CONFIG_HID_BELKIN=y
-CONFIG_HID_CHERRY=y
-CONFIG_HID_CHICONY=y
-CONFIG_HID_CYPRESS=y
-# CONFIG_HID_DRAGONRISE is not set
-# CONFIG_HID_EMS_FF is not set
-CONFIG_HID_EZKEY=y
-# CONFIG_HID_HOLTEK is not set
-# CONFIG_HID_KEYTOUCH is not set
-CONFIG_HID_KYE=y
-# CONFIG_HID_UCLOGIC is not set
-# CONFIG_HID_WALTOP is not set
-# CONFIG_HID_GYRATION is not set
-# CONFIG_HID_TWINHAN is not set
-CONFIG_HID_KENSINGTON=y
-# CONFIG_HID_LCPOWER is not set
-CONFIG_HID_LOGITECH=y
-CONFIG_HID_LOGITECH_DJ=m
-CONFIG_LOGITECH_FF=y
-CONFIG_LOGIRUMBLEPAD2_FF=y
-# CONFIG_LOGIG940_FF is not set
-CONFIG_LOGIWHEELS_FF=y
-CONFIG_HID_MICROSOFT=y
-CONFIG_HID_MONTEREY=y
-# CONFIG_HID_MULTITOUCH is not set
-# CONFIG_HID_NTRIG is not set
-# CONFIG_HID_ORTEK is not set
-# CONFIG_HID_PANTHERLORD is not set
-# CONFIG_HID_PETALYNX is not set
-# CONFIG_HID_PICOLCD is not set
-# CONFIG_HID_PRIMAX is not set
-# CONFIG_HID_QUANTA is not set
-# CONFIG_HID_ROCCAT is not set
-# CONFIG_HID_SAMSUNG is not set
-CONFIG_HID_SONY=m
-# CONFIG_HID_SPEEDLINK is not set
-# CONFIG_HID_SUNPLUS is not set
-# CONFIG_HID_GREENASIA is not set
-# CONFIG_HID_SMARTJOYPLUS is not set
-# CONFIG_HID_TOPSEED is not set
-CONFIG_HID_THRUSTMASTER=m
-CONFIG_THRUSTMASTER_FF=y
-# CONFIG_HID_ZEROPLUS is not set
-# CONFIG_HID_ZYDACRON is not set
-CONFIG_USB_SUPPORT=y
-CONFIG_USB_COMMON=y
-CONFIG_USB_ARCH_HAS_HCD=y
-CONFIG_USB_ARCH_HAS_OHCI=y
-CONFIG_USB_ARCH_HAS_EHCI=y
-CONFIG_USB_ARCH_HAS_XHCI=y
-CONFIG_USB=y
-# CONFIG_USB_DEBUG is not set
-CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
-
-#
-# Miscellaneous USB options
-#
-CONFIG_USB_DEVICEFS=y
-# CONFIG_USB_DEVICE_CLASS is not set
-CONFIG_USB_DYNAMIC_MINORS=y
-CONFIG_USB_SUSPEND=y
-# CONFIG_USB_OTG is not set
-# CONFIG_USB_DWC3 is not set
-CONFIG_USB_MON=y
-# CONFIG_USB_WUSB is not set
-# CONFIG_USB_WUSB_CBAF is not set
-
-#
-# USB Host Controller Drivers
-#
-# CONFIG_USB_C67X00_HCD is not set
-# CONFIG_USB_XHCI_HCD is not set
-CONFIG_USB_EHCI_HCD=y
-CONFIG_USB_EHCI_ROOT_HUB_TT=y
-CONFIG_USB_EHCI_TT_NEWSCHED=y
-# CONFIG_USB_OXU210HP_HCD is not set
-# CONFIG_USB_ISP116X_HCD is not set
-# CONFIG_USB_ISP1760_HCD is not set
-# CONFIG_USB_ISP1362_HCD is not set
-# CONFIG_USB_OHCI_HCD is not set
-CONFIG_USB_UHCI_HCD=y
-# CONFIG_USB_SL811_HCD is not set
-# CONFIG_USB_R8A66597_HCD is not set
-# CONFIG_USB_WHCI_HCD is not set
-# CONFIG_USB_HWA_HCD is not set
-
-#
-# USB Device Class drivers
-#
-CONFIG_USB_ACM=y
-# CONFIG_USB_PRINTER is not set
-# CONFIG_USB_WDM is not set
-CONFIG_USB_TMC=y
-
-#
-# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
-#
-
-#
-# also be needed; see USB_STORAGE Help for more info
-#
-CONFIG_USB_STORAGE=y
-# CONFIG_USB_STORAGE_DEBUG is not set
-# CONFIG_USB_STORAGE_REALTEK is not set
-CONFIG_USB_STORAGE_DATAFAB=m
-CONFIG_USB_STORAGE_FREECOM=m
-CONFIG_USB_STORAGE_ISD200=m
-CONFIG_USB_STORAGE_USBAT=m
-CONFIG_USB_STORAGE_SDDR09=m
-CONFIG_USB_STORAGE_SDDR55=m
-CONFIG_USB_STORAGE_JUMPSHOT=m
-CONFIG_USB_STORAGE_ALAUDA=m
-CONFIG_USB_STORAGE_ONETOUCH=m
-CONFIG_USB_STORAGE_KARMA=m
-CONFIG_USB_STORAGE_CYPRESS_ATACB=m
-# CONFIG_USB_STORAGE_ENE_UB6250 is not set
-# CONFIG_USB_UAS is not set
-# CONFIG_USB_LIBUSUAL is not set
-
-#
-# USB Imaging devices
-#
-# CONFIG_USB_MDC800 is not set
-# CONFIG_USB_MICROTEK is not set
-
-#
-# USB port drivers
-#
-CONFIG_USB_SERIAL=m
-CONFIG_USB_EZUSB=y
-CONFIG_USB_SERIAL_GENERIC=y
-CONFIG_USB_SERIAL_AIRCABLE=m
-CONFIG_USB_SERIAL_ARK3116=m
-CONFIG_USB_SERIAL_BELKIN=m
-CONFIG_USB_SERIAL_CH341=m
-CONFIG_USB_SERIAL_WHITEHEAT=m
-CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
-CONFIG_USB_SERIAL_CP210X=m
-CONFIG_USB_SERIAL_CYPRESS_M8=m
-CONFIG_USB_SERIAL_EMPEG=m
-CONFIG_USB_SERIAL_FTDI_SIO=m
-CONFIG_USB_SERIAL_FUNSOFT=m
-CONFIG_USB_SERIAL_VISOR=m
-CONFIG_USB_SERIAL_IPAQ=m
-CONFIG_USB_SERIAL_IR=m
-CONFIG_USB_SERIAL_EDGEPORT=m
-CONFIG_USB_SERIAL_EDGEPORT_TI=m
-CONFIG_USB_SERIAL_GARMIN=m
-CONFIG_USB_SERIAL_IPW=m
-CONFIG_USB_SERIAL_IUU=m
-CONFIG_USB_SERIAL_KEYSPAN_PDA=m
-CONFIG_USB_SERIAL_KEYSPAN=m
-CONFIG_USB_SERIAL_KLSI=m
-CONFIG_USB_SERIAL_KOBIL_SCT=m
-CONFIG_USB_SERIAL_MCT_U232=m
-CONFIG_USB_SERIAL_MOS7720=m
-CONFIG_USB_SERIAL_MOS7840=m
-CONFIG_USB_SERIAL_MOTOROLA=m
-CONFIG_USB_SERIAL_NAVMAN=m
-CONFIG_USB_SERIAL_PL2303=m
-CONFIG_USB_SERIAL_OTI6858=m
-# CONFIG_USB_SERIAL_QCAUX is not set
-CONFIG_USB_SERIAL_QUALCOMM=m
-CONFIG_USB_SERIAL_SPCP8X5=m
-CONFIG_USB_SERIAL_HP4X=m
-CONFIG_USB_SERIAL_SAFE=m
-# CONFIG_USB_SERIAL_SAFE_PADDED is not set
-CONFIG_USB_SERIAL_SIEMENS_MPI=m
-CONFIG_USB_SERIAL_SIERRAWIRELESS=m
-CONFIG_USB_SERIAL_SYMBOL=m
-CONFIG_USB_SERIAL_TI=m
-CONFIG_USB_SERIAL_CYBERJACK=m
-CONFIG_USB_SERIAL_XIRCOM=m
-CONFIG_USB_SERIAL_WWAN=m
-CONFIG_USB_SERIAL_OPTION=m
-CONFIG_USB_SERIAL_OMNINET=m
-CONFIG_USB_SERIAL_OPTICON=m
-# CONFIG_USB_SERIAL_VIVOPAY_SERIAL is not set
-# CONFIG_USB_SERIAL_ZIO is not set
-# CONFIG_USB_SERIAL_SSU100 is not set
-CONFIG_USB_SERIAL_DEBUG=m
-
-#
-# USB Miscellaneous drivers
-#
-# CONFIG_USB_EMI62 is not set
-# CONFIG_USB_EMI26 is not set
-# CONFIG_USB_ADUTUX is not set
-# CONFIG_USB_SEVSEG is not set
-# CONFIG_USB_RIO500 is not set
-CONFIG_USB_LEGOTOWER=m
-# CONFIG_USB_LCD is not set
-# CONFIG_USB_LED is not set
-CONFIG_USB_CYPRESS_CY7C63=m
-# CONFIG_USB_CYTHERM is not set
-# CONFIG_USB_IDMOUSE is not set
-# CONFIG_USB_FTDI_ELAN is not set
-# CONFIG_USB_APPLEDISPLAY is not set
-# CONFIG_USB_SISUSBVGA is not set
-CONFIG_USB_LD=m
-CONFIG_USB_TRANCEVIBRATOR=m
-# CONFIG_USB_IOWARRIOR is not set
-CONFIG_USB_TEST=m
-# CONFIG_USB_ISIGHTFW is not set
-# CONFIG_USB_YUREX is not set
-# CONFIG_USB_ATM is not set
-# CONFIG_USB_GADGET is not set
-
-#
-# OTG and related infrastructure
-#
-# CONFIG_USB_GPIO_VBUS is not set
-# CONFIG_NOP_USB_XCEIV is not set
-# CONFIG_UWB is not set
-CONFIG_MMC=y
-# CONFIG_MMC_DEBUG is not set
-# CONFIG_MMC_UNSAFE_RESUME is not set
-# CONFIG_MMC_CLKGATE is not set
-
-#
-# MMC/SD/SDIO Card Drivers
-#
-CONFIG_MMC_BLOCK=m
-CONFIG_MMC_BLOCK_MINORS=8
-CONFIG_MMC_BLOCK_BOUNCE=y
-# CONFIG_SDIO_UART is not set
-# CONFIG_MMC_TEST is not set
-
-#
-# MMC/SD/SDIO Host Controller Drivers
-#
-CONFIG_MMC_SDHCI=y
-CONFIG_MMC_SDHCI_PCI=y
-# CONFIG_MMC_RICOH_MMC is not set
-CONFIG_MMC_SDHCI_PLTFM=m
-# CONFIG_MMC_WBSD is not set
-CONFIG_MMC_TIFM_SD=m
-CONFIG_MMC_CB710=m
-CONFIG_MMC_VIA_SDMMC=m
-# CONFIG_MMC_VUB300 is not set
-# CONFIG_MMC_USHC is not set
-# CONFIG_MEMSTICK is not set
-CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=y
-
-#
-# LED drivers
-#
-# CONFIG_LEDS_LM3530 is not set
-CONFIG_LEDS_PCA9532=m
-# CONFIG_LEDS_PCA9532_GPIO is not set
-# CONFIG_LEDS_GPIO is not set
-CONFIG_LEDS_LP3944=m
-# CONFIG_LEDS_LP5521 is not set
-# CONFIG_LEDS_LP5523 is not set
-CONFIG_LEDS_CLEVO_MAIL=m
-CONFIG_LEDS_PCA955X=m
-CONFIG_LEDS_DAC124S085=m
-# CONFIG_LEDS_REGULATOR is not set
-CONFIG_LEDS_BD2802=m
-# CONFIG_LEDS_INTEL_SS4200 is not set
-# CONFIG_LEDS_LT3593 is not set
-# CONFIG_LEDS_DELL_NETBOOKS is not set
-CONFIG_LEDS_TRIGGERS=y
-
-#
-# LED Triggers
-#
-CONFIG_LEDS_TRIGGER_TIMER=m
-CONFIG_LEDS_TRIGGER_HEARTBEAT=m
-CONFIG_LEDS_TRIGGER_BACKLIGHT=m
-# CONFIG_LEDS_TRIGGER_GPIO is not set
-CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
-
-#
-# iptables trigger is under Netfilter config (LED target)
-#
-CONFIG_ACCESSIBILITY=y
-CONFIG_A11Y_BRAILLE_CONSOLE=y
-# CONFIG_INFINIBAND is not set
-CONFIG_EDAC=y
-
-#
-# Reporting subsystems
-#
-# CONFIG_EDAC_DEBUG is not set
-CONFIG_EDAC_MM_EDAC=m
-# CONFIG_EDAC_AMD76X is not set
-# CONFIG_EDAC_E7XXX is not set
-CONFIG_EDAC_E752X=m
-# CONFIG_EDAC_I82875P is not set
-CONFIG_EDAC_I82975X=m
-CONFIG_EDAC_I3000=m
-CONFIG_EDAC_I3200=m
-CONFIG_EDAC_X38=m
-CONFIG_EDAC_I5400=m
-# CONFIG_EDAC_I7CORE is not set
-# CONFIG_EDAC_I82860 is not set
-# CONFIG_EDAC_R82600 is not set
-CONFIG_EDAC_I5000=m
-CONFIG_EDAC_I5100=m
-# CONFIG_EDAC_I7300 is not set
-CONFIG_RTC_LIB=y
-CONFIG_RTC_CLASS=y
-CONFIG_RTC_HCTOSYS=y
-CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
-# CONFIG_RTC_DEBUG is not set
-
-#
-# RTC interfaces
-#
-CONFIG_RTC_INTF_SYSFS=y
-CONFIG_RTC_INTF_PROC=y
-CONFIG_RTC_INTF_DEV=y
-# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
-# CONFIG_RTC_DRV_TEST is not set
-
-#
-# I2C RTC drivers
-#
-CONFIG_RTC_DRV_DS1307=m
-CONFIG_RTC_DRV_DS1374=m
-CONFIG_RTC_DRV_DS1672=m
-# CONFIG_RTC_DRV_DS3232 is not set
-CONFIG_RTC_DRV_MAX6900=m
-CONFIG_RTC_DRV_RS5C372=m
-CONFIG_RTC_DRV_ISL1208=m
-# CONFIG_RTC_DRV_ISL12022 is not set
-CONFIG_RTC_DRV_X1205=m
-CONFIG_RTC_DRV_PCF8563=m
-CONFIG_RTC_DRV_PCF8583=m
-CONFIG_RTC_DRV_M41T80=m
-# CONFIG_RTC_DRV_M41T80_WDT is not set
-# CONFIG_RTC_DRV_BQ32K is not set
-CONFIG_RTC_DRV_S35390A=m
-CONFIG_RTC_DRV_FM3130=m
-CONFIG_RTC_DRV_RX8581=m
-CONFIG_RTC_DRV_RX8025=m
-# CONFIG_RTC_DRV_EM3027 is not set
-# CONFIG_RTC_DRV_RV3029C2 is not set
-
-#
-# SPI RTC drivers
-#
-# CONFIG_RTC_DRV_M41T93 is not set
-CONFIG_RTC_DRV_M41T94=m
-CONFIG_RTC_DRV_DS1305=m
-CONFIG_RTC_DRV_DS1390=m
-CONFIG_RTC_DRV_MAX6902=m
-CONFIG_RTC_DRV_R9701=m
-CONFIG_RTC_DRV_RS5C348=m
-CONFIG_RTC_DRV_DS3234=m
-CONFIG_RTC_DRV_PCF2123=m
-
-#
-# Platform RTC drivers
-#
-CONFIG_RTC_DRV_CMOS=y
-CONFIG_RTC_DRV_DS1286=m
-CONFIG_RTC_DRV_DS1511=m
-CONFIG_RTC_DRV_DS1553=m
-CONFIG_RTC_DRV_DS1742=m
-CONFIG_RTC_DRV_STK17TA8=m
-CONFIG_RTC_DRV_M48T86=m
-CONFIG_RTC_DRV_M48T35=m
-CONFIG_RTC_DRV_M48T59=m
-# CONFIG_RTC_DRV_MSM6242 is not set
-CONFIG_RTC_DRV_BQ4802=m
-# CONFIG_RTC_DRV_RP5C01 is not set
-CONFIG_RTC_DRV_V3020=m
-CONFIG_RTC_DRV_PCF50633=m
-
-#
-# on-CPU RTC drivers
-#
-CONFIG_DMADEVICES=y
-# CONFIG_DMADEVICES_DEBUG is not set
-
-#
-# DMA Devices
-#
-# CONFIG_INTEL_MID_DMAC is not set
-CONFIG_INTEL_IOATDMA=m
-# CONFIG_TIMB_DMA is not set
-# CONFIG_PCH_DMA is not set
-CONFIG_DMA_ENGINE=y
-
-#
-# DMA Clients
-#
-CONFIG_NET_DMA=y
-CONFIG_ASYNC_TX_DMA=y
-# CONFIG_DMATEST is not set
-CONFIG_DCA=m
-# CONFIG_AUXDISPLAY is not set
-CONFIG_UIO=m
-# CONFIG_UIO_CIF is not set
-CONFIG_UIO_PDRV=m
-CONFIG_UIO_PDRV_GENIRQ=m
-# CONFIG_UIO_AEC is not set
-# CONFIG_UIO_SERCOS3 is not set
-# CONFIG_UIO_PCI_GENERIC is not set
-# CONFIG_UIO_NETX is not set
-
-#
-# Virtio drivers
-#
-# CONFIG_VIRTIO_PCI is not set
-# CONFIG_VIRTIO_BALLOON is not set
-# CONFIG_VIRTIO_MMIO is not set
-CONFIG_STAGING=y
-# CONFIG_ET131X is not set
-# CONFIG_SLICOSS is not set
-# CONFIG_USBIP_CORE is not set
-# CONFIG_ECHO is not set
-# CONFIG_COMEDI is not set
-# CONFIG_ASUS_OLED is not set
-# CONFIG_RTS_PSTOR is not set
-# CONFIG_RTS5139 is not set
-# CONFIG_TRANZPORT is not set
-# CONFIG_POHMELFS is not set
-# CONFIG_IDE_PHISON is not set
-# CONFIG_USB_SERIAL_QUATECH2 is not set
-# CONFIG_USB_SERIAL_QUATECH_USB2 is not set
-# CONFIG_VME_BUS is not set
-# CONFIG_DX_SEP is not set
-# CONFIG_IIO is not set
-# CONFIG_XVMALLOC is not set
-# CONFIG_ZRAM is not set
-# CONFIG_FB_SM7XX is not set
-# CONFIG_CRYSTALHD is not set
-# CONFIG_FB_XGI is not set
-# CONFIG_ACPI_QUICKSTART is not set
-# CONFIG_USB_ENESTORAGE is not set
-# CONFIG_BCM_WIMAX is not set
-# CONFIG_FT1000 is not set
-
-#
-# Speakup console speech
-#
-CONFIG_SPEAKUP=m
-CONFIG_SPEAKUP_SYNTH_ACNTSA=m
-CONFIG_SPEAKUP_SYNTH_ACNTPC=m
-CONFIG_SPEAKUP_SYNTH_APOLLO=m
-CONFIG_SPEAKUP_SYNTH_AUDPTR=m
-CONFIG_SPEAKUP_SYNTH_BNS=m
-CONFIG_SPEAKUP_SYNTH_DECTLK=m
-CONFIG_SPEAKUP_SYNTH_DECEXT=m
-# CONFIG_SPEAKUP_SYNTH_DECPC is not set
-CONFIG_SPEAKUP_SYNTH_DTLK=m
-CONFIG_SPEAKUP_SYNTH_KEYPC=m
-CONFIG_SPEAKUP_SYNTH_LTLK=m
-CONFIG_SPEAKUP_SYNTH_SOFT=m
-CONFIG_SPEAKUP_SYNTH_SPKOUT=m
-CONFIG_SPEAKUP_SYNTH_TXPRT=m
-CONFIG_SPEAKUP_SYNTH_DUMMY=m
-# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set
-# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
-# CONFIG_STAGING_MEDIA is not set
-CONFIG_X86_PLATFORM_DEVICES=y
-# CONFIG_ACER_WMI is not set
-# CONFIG_ACERHDF is not set
-# CONFIG_ASUS_LAPTOP is not set
-# CONFIG_DELL_LAPTOP is not set
-# CONFIG_DELL_WMI is not set
-# CONFIG_DELL_WMI_AIO is not set
-# CONFIG_FUJITSU_LAPTOP is not set
-# CONFIG_TC1100_WMI is not set
-# CONFIG_HP_ACCEL is not set
-# CONFIG_HP_WMI is not set
-# CONFIG_PANASONIC_LAPTOP is not set
-# CONFIG_THINKPAD_ACPI is not set
-# CONFIG_SENSORS_HDAPS is not set
-# CONFIG_INTEL_MENLOW is not set
-# CONFIG_EEEPC_LAPTOP is not set
-# CONFIG_ASUS_WMI is not set
-CONFIG_ACPI_WMI=m
-# CONFIG_MSI_WMI is not set
-# CONFIG_ACPI_ASUS is not set
-# CONFIG_TOPSTAR_LAPTOP is not set
-# CONFIG_ACPI_TOSHIBA is not set
-# CONFIG_TOSHIBA_BT_RFKILL is not set
-# CONFIG_ACPI_CMPC is not set
-# CONFIG_INTEL_IPS is not set
-# CONFIG_IBM_RTL is not set
-# CONFIG_XO15_EBOOK is not set
-# CONFIG_MXM_WMI is not set
-# CONFIG_SAMSUNG_Q10 is not set
-
-#
-# Hardware Spinlock drivers
-#
-CONFIG_CLKSRC_I8253=y
-CONFIG_CLKEVT_I8253=y
-CONFIG_I8253_LOCK=y
-CONFIG_CLKBLD_I8253=y
-CONFIG_IOMMU_SUPPORT=y
-# CONFIG_INTEL_IOMMU is not set
-# CONFIG_VIRT_DRIVERS is not set
-# CONFIG_HYPERV is not set
-# CONFIG_PM_DEVFREQ is not set
-
-#
-# Firmware Drivers
-#
-CONFIG_EDD=m
-# CONFIG_EDD_OFF is not set
-CONFIG_FIRMWARE_MEMMAP=y
-CONFIG_DELL_RBU=m
-CONFIG_DCDBAS=m
-CONFIG_DMIID=y
-# CONFIG_DMI_SYSFS is not set
-CONFIG_ISCSI_IBFT_FIND=y
-CONFIG_ISCSI_IBFT=y
-# CONFIG_SIGMA is not set
-# CONFIG_GOOGLE_FIRMWARE is not set
-
-#
-# File systems
-#
-CONFIG_EXT2_FS=y
-CONFIG_EXT2_FS_XATTR=y
-CONFIG_EXT2_FS_POSIX_ACL=y
-CONFIG_EXT2_FS_SECURITY=y
-# CONFIG_EXT2_FS_XIP is not set
-CONFIG_EXT3_FS=y
-CONFIG_EXT3_DEFAULTS_TO_ORDERED=y
-CONFIG_EXT3_FS_XATTR=y
-CONFIG_EXT3_FS_POSIX_ACL=y
-CONFIG_EXT3_FS_SECURITY=y
-# CONFIG_EXT4_FS is not set
-CONFIG_JBD=y
-# CONFIG_JBD_DEBUG is not set
-CONFIG_FS_MBCACHE=y
-# CONFIG_REISERFS_FS is not set
-# CONFIG_JFS_FS is not set
-CONFIG_XFS_FS=y
-CONFIG_XFS_QUOTA=y
-CONFIG_XFS_POSIX_ACL=y
-CONFIG_XFS_RT=y
-# CONFIG_XFS_DEBUG is not set
-# CONFIG_GFS2_FS is not set
-# CONFIG_OCFS2_FS is not set
-# CONFIG_BTRFS_FS is not set
-# CONFIG_NILFS2_FS is not set
-CONFIG_FS_POSIX_ACL=y
-CONFIG_EXPORTFS=y
-CONFIG_FILE_LOCKING=y
-CONFIG_FSNOTIFY=y
-CONFIG_DNOTIFY=y
-CONFIG_INOTIFY_USER=y
-# CONFIG_FANOTIFY is not set
-CONFIG_QUOTA=y
-CONFIG_QUOTA_NETLINK_INTERFACE=y
-CONFIG_PRINT_QUOTA_WARNING=y
-# CONFIG_QUOTA_DEBUG is not set
-CONFIG_QUOTA_TREE=m
-CONFIG_QFMT_V1=m
-CONFIG_QFMT_V2=m
-CONFIG_QUOTACTL=y
-CONFIG_AUTOFS4_FS=m
-CONFIG_FUSE_FS=m
-CONFIG_CUSE=m
-CONFIG_GENERIC_ACL=y
-
-#
-# Caches
-#
-# CONFIG_FSCACHE is not set
-
-#
-# CD-ROM/DVD Filesystems
-#
-CONFIG_ISO9660_FS=y
-CONFIG_JOLIET=y
-CONFIG_ZISOFS=y
-CONFIG_UDF_FS=m
-CONFIG_UDF_NLS=y
-
-#
-# DOS/FAT/NT Filesystems
-#
-CONFIG_FAT_FS=m
-CONFIG_MSDOS_FS=m
-CONFIG_VFAT_FS=m
-CONFIG_FAT_DEFAULT_CODEPAGE=437
-CONFIG_FAT_DEFAULT_IOCHARSET="utf8"
-# CONFIG_NTFS_FS is not set
-
-#
-# Pseudo filesystems
-#
-CONFIG_PROC_FS=y
-CONFIG_PROC_KCORE=y
-CONFIG_PROC_SYSCTL=y
-CONFIG_PROC_PAGE_MONITOR=y
-CONFIG_SYSFS=y
-CONFIG_TMPFS=y
-CONFIG_TMPFS_POSIX_ACL=y
-CONFIG_TMPFS_XATTR=y
-# CONFIG_HUGETLBFS is not set
-# CONFIG_HUGETLB_PAGE is not set
-CONFIG_CONFIGFS_FS=m
-# CONFIG_MISC_FILESYSTEMS is not set
-# CONFIG_NETWORK_FILESYSTEMS is not set
-
-#
-# Partition Types
-#
-CONFIG_PARTITION_ADVANCED=y
-# CONFIG_ACORN_PARTITION is not set
-# CONFIG_OSF_PARTITION is not set
-# CONFIG_AMIGA_PARTITION is not set
-# CONFIG_ATARI_PARTITION is not set
-# CONFIG_MAC_PARTITION is not set
-CONFIG_MSDOS_PARTITION=y
-CONFIG_BSD_DISKLABEL=y
-CONFIG_MINIX_SUBPARTITION=y
-CONFIG_SOLARIS_X86_PARTITION=y
-CONFIG_UNIXWARE_DISKLABEL=y
-CONFIG_LDM_PARTITION=y
-# CONFIG_LDM_DEBUG is not set
-# CONFIG_SGI_PARTITION is not set
-# CONFIG_ULTRIX_PARTITION is not set
-# CONFIG_SUN_PARTITION is not set
-# CONFIG_KARMA_PARTITION is not set
-# CONFIG_EFI_PARTITION is not set
-# CONFIG_SYSV68_PARTITION is not set
-CONFIG_NLS=y
-CONFIG_NLS_DEFAULT="utf8"
-CONFIG_NLS_CODEPAGE_437=y
-# CONFIG_NLS_CODEPAGE_737 is not set
-# CONFIG_NLS_CODEPAGE_775 is not set
-# CONFIG_NLS_CODEPAGE_850 is not set
-# CONFIG_NLS_CODEPAGE_852 is not set
-# CONFIG_NLS_CODEPAGE_855 is not set
-# CONFIG_NLS_CODEPAGE_857 is not set
-# CONFIG_NLS_CODEPAGE_860 is not set
-# CONFIG_NLS_CODEPAGE_861 is not set
-# CONFIG_NLS_CODEPAGE_862 is not set
-# CONFIG_NLS_CODEPAGE_863 is not set
-# CONFIG_NLS_CODEPAGE_864 is not set
-# CONFIG_NLS_CODEPAGE_865 is not set
-# CONFIG_NLS_CODEPAGE_866 is not set
-# CONFIG_NLS_CODEPAGE_869 is not set
-# CONFIG_NLS_CODEPAGE_936 is not set
-# CONFIG_NLS_CODEPAGE_950 is not set
-# CONFIG_NLS_CODEPAGE_932 is not set
-# CONFIG_NLS_CODEPAGE_949 is not set
-# CONFIG_NLS_CODEPAGE_874 is not set
-# CONFIG_NLS_ISO8859_8 is not set
-# CONFIG_NLS_CODEPAGE_1250 is not set
-# CONFIG_NLS_CODEPAGE_1251 is not set
-CONFIG_NLS_ASCII=y
-# CONFIG_NLS_ISO8859_1 is not set
-# CONFIG_NLS_ISO8859_2 is not set
-# CONFIG_NLS_ISO8859_3 is not set
-# CONFIG_NLS_ISO8859_4 is not set
-# CONFIG_NLS_ISO8859_5 is not set
-# CONFIG_NLS_ISO8859_6 is not set
-# CONFIG_NLS_ISO8859_7 is not set
-# CONFIG_NLS_ISO8859_9 is not set
-# CONFIG_NLS_ISO8859_13 is not set
-# CONFIG_NLS_ISO8859_14 is not set
-# CONFIG_NLS_ISO8859_15 is not set
-# CONFIG_NLS_KOI8_R is not set
-# CONFIG_NLS_KOI8_U is not set
-CONFIG_NLS_UTF8=y
-CONFIG_DLM=m
-CONFIG_DLM_DEBUG=y
-
-#
-# Kernel hacking
-#
-CONFIG_TRACE_IRQFLAGS_SUPPORT=y
-CONFIG_PRINTK_TIME=y
-CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
-CONFIG_ENABLE_WARN_DEPRECATED=y
-CONFIG_ENABLE_MUST_CHECK=y
-CONFIG_FRAME_WARN=1024
-CONFIG_MAGIC_SYSRQ=y
-# CONFIG_MAGIC_SYSRQ_FORCE_PRINTK is not set
-CONFIG_STRIP_ASM_SYMS=y
-CONFIG_UNUSED_SYMBOLS=y
-CONFIG_DEBUG_FS=y
-# CONFIG_HEADERS_CHECK is not set
-# CONFIG_DEBUG_SECTION_MISMATCH is not set
-CONFIG_DEBUG_KERNEL=y
-# CONFIG_LOCKUP_DETECTOR is not set
-# CONFIG_HARDLOCKUP_DETECTOR is not set
-CONFIG_DETECT_HUNG_TASK=y
-CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
-# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
-CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
-CONFIG_SCHED_DEBUG=y
-# CONFIG_SCHEDSTATS is not set
-CONFIG_TIMER_STATS=y
-# CONFIG_DEBUG_OBJECTS is not set
-# CONFIG_DEBUG_SLAB is not set
-# CONFIG_DEBUG_KMEMLEAK is not set
-CONFIG_DEBUG_PREEMPT=y
-# CONFIG_DEBUG_RT_MUTEXES is not set
-# CONFIG_RT_MUTEX_TESTER is not set
-# CONFIG_DEBUG_SPINLOCK is not set
-# CONFIG_DEBUG_MUTEXES is not set
-# CONFIG_DEBUG_LOCK_ALLOC is not set
-# CONFIG_PROVE_LOCKING is not set
-# CONFIG_SPARSE_RCU_POINTER is not set
-# CONFIG_LOCK_STAT is not set
-# CONFIG_DEBUG_ATOMIC_SLEEP is not set
-# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
-CONFIG_STACKTRACE=y
-# CONFIG_DEBUG_STACK_USAGE is not set
-# CONFIG_DEBUG_KOBJECT is not set
-# CONFIG_DEBUG_HIGHMEM is not set
-CONFIG_DEBUG_BUGVERBOSE=y
-# CONFIG_DEBUG_INFO is not set
-# CONFIG_DEBUG_VM is not set
-# CONFIG_DEBUG_VIRTUAL is not set
-# CONFIG_DEBUG_WRITECOUNT is not set
-CONFIG_DEBUG_MEMORY_INIT=y
-# CONFIG_DEBUG_LIST is not set
-# CONFIG_TEST_LIST_SORT is not set
-# CONFIG_DEBUG_SG is not set
-# CONFIG_DEBUG_NOTIFIERS is not set
-# CONFIG_DEBUG_CREDENTIALS is not set
-CONFIG_ARCH_WANT_FRAME_POINTERS=y
-# CONFIG_FRAME_POINTER is not set
-# CONFIG_BOOT_PRINTK_DELAY is not set
-# CONFIG_RCU_TORTURE_TEST is not set
-CONFIG_RCU_CPU_STALL_TIMEOUT=60
-CONFIG_RCU_CPU_STALL_VERBOSE=y
-# CONFIG_KPROBES_SANITY_TEST is not set
-# CONFIG_BACKTRACE_SELF_TEST is not set
-# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
-# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
-# CONFIG_DEBUG_PER_CPU_MAPS is not set
-# CONFIG_LKDTM is not set
-# CONFIG_CPU_NOTIFIER_ERROR_INJECT is not set
-# CONFIG_FAULT_INJECTION is not set
-# CONFIG_LATENCYTOP is not set
-CONFIG_SYSCTL_SYSCALL_CHECK=y
-# CONFIG_DEBUG_PAGEALLOC is not set
-CONFIG_USER_STACKTRACE_SUPPORT=y
-CONFIG_NOP_TRACER=y
-CONFIG_HAVE_FUNCTION_TRACER=y
-CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
-CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
-CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y
-CONFIG_HAVE_DYNAMIC_FTRACE=y
-CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
-CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
-CONFIG_HAVE_C_RECORDMCOUNT=y
-CONFIG_RING_BUFFER=y
-CONFIG_EVENT_TRACING=y
-CONFIG_EVENT_POWER_TRACING_DEPRECATED=y
-CONFIG_CONTEXT_SWITCH_TRACER=y
-CONFIG_TRACING=y
-CONFIG_GENERIC_TRACER=y
-CONFIG_TRACING_SUPPORT=y
-CONFIG_FTRACE=y
-# CONFIG_FUNCTION_TRACER is not set
-# CONFIG_IRQSOFF_TRACER is not set
-# CONFIG_PREEMPT_TRACER is not set
-# CONFIG_SCHED_TRACER is not set
-# CONFIG_MISSED_TIMER_OFFSETS_HIST is not set
-# CONFIG_FTRACE_SYSCALLS is not set
-CONFIG_BRANCH_PROFILE_NONE=y
-# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
-# CONFIG_PROFILE_ALL_BRANCHES is not set
-# CONFIG_STACK_TRACER is not set
-CONFIG_BLK_DEV_IO_TRACE=y
-CONFIG_KPROBE_EVENT=y
-# CONFIG_FTRACE_STARTUP_TEST is not set
-# CONFIG_MMIOTRACE is not set
-# CONFIG_RING_BUFFER_BENCHMARK is not set
-# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
-# CONFIG_FIREWIRE_OHCI_REMOTE_DMA is not set
-# CONFIG_DYNAMIC_DEBUG is not set
-# CONFIG_DMA_API_DEBUG is not set
-# CONFIG_ATOMIC64_SELFTEST is not set
-# CONFIG_SAMPLES is not set
-CONFIG_HAVE_ARCH_KGDB=y
-# CONFIG_KGDB is not set
-CONFIG_HAVE_ARCH_KMEMCHECK=y
-# CONFIG_KMEMCHECK is not set
-# CONFIG_TEST_KSTRTOX is not set
-CONFIG_STRICT_DEVMEM=y
-CONFIG_X86_VERBOSE_BOOTUP=y
-CONFIG_EARLY_PRINTK=y
-# CONFIG_EARLY_PRINTK_DBGP is not set
-# CONFIG_DEBUG_STACKOVERFLOW is not set
-# CONFIG_X86_PTDUMP is not set
-CONFIG_DEBUG_RODATA=y
-# CONFIG_DEBUG_RODATA_TEST is not set
-# CONFIG_DEBUG_SET_MODULE_RONX is not set
-# CONFIG_DEBUG_NX_TEST is not set
-CONFIG_DOUBLEFAULT=y
-# CONFIG_IOMMU_STRESS is not set
-CONFIG_HAVE_MMIOTRACE_SUPPORT=y
-# CONFIG_X86_DECODER_SELFTEST is not set
-CONFIG_IO_DELAY_TYPE_0X80=0
-CONFIG_IO_DELAY_TYPE_0XED=1
-CONFIG_IO_DELAY_TYPE_UDELAY=2
-CONFIG_IO_DELAY_TYPE_NONE=3
-CONFIG_IO_DELAY_0X80=y
-# CONFIG_IO_DELAY_0XED is not set
-# CONFIG_IO_DELAY_UDELAY is not set
-# CONFIG_IO_DELAY_NONE is not set
-CONFIG_DEFAULT_IO_DELAY_TYPE=0
-# CONFIG_DEBUG_BOOT_PARAMS is not set
-# CONFIG_CPA_DEBUG is not set
-CONFIG_OPTIMIZE_INLINING=y
-# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
-
-#
-# Security options
-#
-CONFIG_KEYS=y
-# CONFIG_ENCRYPTED_KEYS is not set
-CONFIG_KEYS_DEBUG_PROC_KEYS=y
-# CONFIG_SECURITY_DMESG_RESTRICT is not set
-CONFIG_SECURITY=y
-CONFIG_SECURITYFS=y
-# CONFIG_SECURITY_NETWORK is not set
-# CONFIG_SECURITY_PATH is not set
-# CONFIG_SECURITY_TOMOYO is not set
-# CONFIG_SECURITY_APPARMOR is not set
-# CONFIG_IMA is not set
-# CONFIG_EVM is not set
-CONFIG_DEFAULT_SECURITY_DAC=y
-CONFIG_DEFAULT_SECURITY=""
-CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA=y
-CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA=y
-CONFIG_CRYPTO=y
-
-#
-# Crypto core or helper
-#
-CONFIG_CRYPTO_ALGAPI=y
-CONFIG_CRYPTO_ALGAPI2=y
-CONFIG_CRYPTO_AEAD=m
-CONFIG_CRYPTO_AEAD2=y
-CONFIG_CRYPTO_BLKCIPHER=m
-CONFIG_CRYPTO_BLKCIPHER2=y
-CONFIG_CRYPTO_HASH=y
-CONFIG_CRYPTO_HASH2=y
-CONFIG_CRYPTO_RNG=m
-CONFIG_CRYPTO_RNG2=y
-CONFIG_CRYPTO_PCOMP=m
-CONFIG_CRYPTO_PCOMP2=y
-CONFIG_CRYPTO_MANAGER=y
-CONFIG_CRYPTO_MANAGER2=y
-# CONFIG_CRYPTO_USER is not set
-CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
-CONFIG_CRYPTO_GF128MUL=m
-CONFIG_CRYPTO_NULL=m
-# CONFIG_CRYPTO_PCRYPT is not set
-CONFIG_CRYPTO_WORKQUEUE=y
-# CONFIG_CRYPTO_CRYPTD is not set
-CONFIG_CRYPTO_AUTHENC=m
-CONFIG_CRYPTO_TEST=m
-
-#
-# Authenticated Encryption with Associated Data
-#
-CONFIG_CRYPTO_CCM=m
-CONFIG_CRYPTO_GCM=m
-CONFIG_CRYPTO_SEQIV=m
-
-#
-# Block modes
-#
-CONFIG_CRYPTO_CBC=m
-CONFIG_CRYPTO_CTR=m
-CONFIG_CRYPTO_CTS=m
-CONFIG_CRYPTO_ECB=m
-CONFIG_CRYPTO_LRW=m
-CONFIG_CRYPTO_PCBC=m
-CONFIG_CRYPTO_XTS=m
-
-#
-# Hash modes
-#
-CONFIG_CRYPTO_HMAC=m
-CONFIG_CRYPTO_XCBC=m
-CONFIG_CRYPTO_VMAC=m
-
-#
-# Digest
-#
-CONFIG_CRYPTO_CRC32C=m
-CONFIG_CRYPTO_CRC32C_INTEL=m
-CONFIG_CRYPTO_GHASH=m
-CONFIG_CRYPTO_MD4=m
-CONFIG_CRYPTO_MD5=y
-CONFIG_CRYPTO_MICHAEL_MIC=m
-CONFIG_CRYPTO_RMD128=m
-CONFIG_CRYPTO_RMD160=m
-CONFIG_CRYPTO_RMD256=m
-CONFIG_CRYPTO_RMD320=m
-CONFIG_CRYPTO_SHA1=m
-CONFIG_CRYPTO_SHA256=m
-CONFIG_CRYPTO_SHA512=m
-CONFIG_CRYPTO_TGR192=m
-CONFIG_CRYPTO_WP512=m
-
-#
-# Ciphers
-#
-CONFIG_CRYPTO_AES=m
-# CONFIG_CRYPTO_AES_586 is not set
-# CONFIG_CRYPTO_AES_NI_INTEL is not set
-CONFIG_CRYPTO_ANUBIS=m
-CONFIG_CRYPTO_ARC4=m
-CONFIG_CRYPTO_BLOWFISH=m
-CONFIG_CRYPTO_BLOWFISH_COMMON=m
-CONFIG_CRYPTO_CAMELLIA=m
-CONFIG_CRYPTO_CAST5=m
-CONFIG_CRYPTO_CAST6=m
-CONFIG_CRYPTO_DES=m
-CONFIG_CRYPTO_FCRYPT=m
-CONFIG_CRYPTO_KHAZAD=m
-CONFIG_CRYPTO_SALSA20=m
-# CONFIG_CRYPTO_SALSA20_586 is not set
-CONFIG_CRYPTO_SEED=m
-CONFIG_CRYPTO_SERPENT=m
-CONFIG_CRYPTO_TEA=m
-CONFIG_CRYPTO_TWOFISH=m
-CONFIG_CRYPTO_TWOFISH_COMMON=m
-# CONFIG_CRYPTO_TWOFISH_586 is not set
-
-#
-# Compression
-#
-CONFIG_CRYPTO_DEFLATE=m
-CONFIG_CRYPTO_ZLIB=m
-CONFIG_CRYPTO_LZO=m
-
-#
-# Random Number Generation
-#
-CONFIG_CRYPTO_ANSI_CPRNG=m
-# CONFIG_CRYPTO_USER_API_HASH is not set
-# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
-CONFIG_CRYPTO_HW=y
-CONFIG_CRYPTO_DEV_PADLOCK=m
-CONFIG_CRYPTO_DEV_PADLOCK_AES=m
-CONFIG_CRYPTO_DEV_PADLOCK_SHA=m
-# CONFIG_CRYPTO_DEV_GEODE is not set
-# CONFIG_CRYPTO_DEV_HIFN_795X is not set
-CONFIG_HAVE_KVM=y
-# CONFIG_VIRTUALIZATION is not set
-CONFIG_BINARY_PRINTF=y
-
-#
-# Library routines
-#
-CONFIG_BITREVERSE=y
-CONFIG_GENERIC_FIND_FIRST_BIT=y
-CONFIG_CRC_CCITT=m
-CONFIG_CRC16=m
-CONFIG_CRC_T10DIF=y
-CONFIG_CRC_ITU_T=m
-CONFIG_CRC32=y
-CONFIG_CRC7=m
-CONFIG_LIBCRC32C=m
-# CONFIG_CRC8 is not set
-CONFIG_AUDIT_GENERIC=y
-CONFIG_ZLIB_INFLATE=y
-CONFIG_ZLIB_DEFLATE=m
-CONFIG_LZO_COMPRESS=y
-CONFIG_LZO_DECOMPRESS=y
-CONFIG_XZ_DEC=y
-CONFIG_XZ_DEC_X86=y
-CONFIG_XZ_DEC_POWERPC=y
-CONFIG_XZ_DEC_IA64=y
-CONFIG_XZ_DEC_ARM=y
-CONFIG_XZ_DEC_ARMTHUMB=y
-CONFIG_XZ_DEC_SPARC=y
-CONFIG_XZ_DEC_BCJ=y
-# CONFIG_XZ_DEC_TEST is not set
-CONFIG_DECOMPRESS_GZIP=y
-CONFIG_DECOMPRESS_BZIP2=y
-CONFIG_DECOMPRESS_LZMA=y
-CONFIG_DECOMPRESS_XZ=y
-CONFIG_DECOMPRESS_LZO=y
-CONFIG_REED_SOLOMON=m
-CONFIG_REED_SOLOMON_DEC16=y
-CONFIG_TEXTSEARCH=y
-CONFIG_TEXTSEARCH_KMP=m
-CONFIG_TEXTSEARCH_BM=m
-CONFIG_TEXTSEARCH_FSM=m
-CONFIG_HAS_IOMEM=y
-CONFIG_HAS_IOPORT=y
-CONFIG_HAS_DMA=y
-CONFIG_CHECK_SIGNATURE=y
-CONFIG_CPU_RMAP=y
-CONFIG_NLATTR=y
-CONFIG_AVERAGE=y
-# CONFIG_CORDIC is not set
diff --git a/aos/config/starter b/aos/config/starter
deleted file mode 100755
index cb869a4..0000000
--- a/aos/config/starter
+++ /dev/null
@@ -1,160 +0,0 @@
-#! /bin/sh
-### BEGIN INIT INFO
-# Provides:          starter
-# Required-Start:    $remote_fs $syslog sshd $all
-# Required-Stop:     $remote_fs $syslog
-# Default-Start:     2 3 4 5
-# Default-Stop:      0 1 6
-# Short-Description: AOS Startup Code
-# Description:       Starts up all of the AOS-related things (FRC robot code).
-### END INIT INFO
-# pam_limits
-
-# Author: Spartan Robotics <spartanrobotics.org>
-
-# Install by placing in /etc/init.d/ and then `update-rc.d starter defaults`.
-
-# Do NOT "set -e"
-
-# PATH should only include /usr/* if it runs after the mountnfs.sh script
-PATH=/sbin:/usr/sbin:/bin:/usr/bin
-DESC="FRC robot code"
-NAME=starter
-DAEMON=/home/driver/robot_code/bin/$NAME.sh
-DAEMON_ARGS="/home/driver/robot_code/bin/start_list.txt"
-PIDFILE=/tmp/$NAME.pid
-SCRIPTNAME=/etc/init.d/$NAME
-
-# Exit if the package is not installed
-[ -x "$DAEMON" ] || exit 0
-
-# Read configuration variable file if it is present
-[ -r /etc/default/$NAME ] && . /etc/default/$NAME
-
-# Load the VERBOSE setting and other rcS variables
-. /lib/init/vars.sh
-
-# Define LSB log_* functions.
-# Depend on lsb-base (>= 3.2-14) to ensure that this file is present
-# and status_of_proc is working.
-. /lib/lsb/init-functions
-VERBOSE=yes
-
-#
-# Function that starts the daemon/service
-#
-do_start()
-{
-	# Return
-	#   0 if daemon has been started
-	#   1 if daemon was already running
-	#   2 if daemon could not be started
-	start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \
-		|| return 1
-	start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \
-		$DAEMON_ARGS \
-		|| return 2
-	# Add code here, if necessary, that waits for the process to be ready
-	# to handle requests from services started subsequently which depend
-	# on this one.  As a last resort, sleep for some time.
-}
-
-#
-# Function that stops the daemon/service
-#
-do_stop()
-{
-	# Return
-	#   0 if daemon has been stopped
-	#   1 if daemon was already stopped
-	#   2 if daemon could not be stopped
-	#   other if a failure occurred
-	start-stop-daemon --stop --quiet --retry=INT/10/KILL/5 --pidfile $PIDFILE
-	RETVAL="$?"
-	[ "$RETVAL" = 2 ] && return 2
-	# Wait for children to finish too if this is a daemon that forks
-	# and if the daemon is only ever run from this initscript.
-	# If the above conditions are not satisfied then add some other code
-	# that waits for the process to drop all resources that could be
-	# needed by services started subsequently.  A last resort is to
-	# sleep for some time.
-	#start-stop-daemon --stop --quiet --oknodo --retry=INT/10/KILL/5
-	#[ "$?" = 2 ] && return 2
-	sleep 5
-	# Many daemons don't delete their pidfiles when they exit.
-	rm -f $PIDFILE
-	return "$RETVAL"
-}
-
-#
-# Function that sends a SIGHUP to the daemon/service
-#
-do_reload() {
-	#
-	# If the daemon can reload its configuration without
-	# restarting (for example, when it is sent a SIGHUP),
-	# then implement that here.
-	#
-	start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
-	return 0
-}
-
-case "$1" in
-  start)
-	[ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
-	do_start
-	case "$?" in
-		0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
-		2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
-	esac
-	;;
-  stop)
-	[ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME"
-	do_stop
-	case "$?" in
-		0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
-		2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
-	esac
-	;;
-  status)
-       status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $?
-       ;;
-  #reload|force-reload)
-	#
-	# If do_reload() is not implemented then leave this commented out
-	# and leave 'force-reload' as an alias for 'restart'.
-	#
-	#log_daemon_msg "Reloading $DESC" "$NAME"
-	#do_reload
-	#log_end_msg $?
-	#;;
-  restart|force-reload)
-	#
-	# If the "reload" option is implemented then remove the
-	# 'force-reload' alias
-	#
-	log_daemon_msg "Restarting $DESC" "$NAME"
-	do_stop
-	case "$?" in
-	  0|1)
-		do_start
-		case "$?" in
-			0) log_end_msg 0 ;;
-			1) log_end_msg 1 ;; # Old process is still running
-			*) log_end_msg 1 ;; # Failed to start
-		esac
-		;;
-	  *)
-	  	# Failed to stop
-		log_end_msg 1
-		;;
-	esac
-	;;
-  *)
-	#echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2
-	echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2
-	exit 3
-	;;
-esac
-
-:
diff --git a/aos/crio/README.txt b/aos/crio/README.txt
deleted file mode 100644
index 82f1b09..0000000
--- a/aos/crio/README.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-see ../README.txt for stuff affecting crio and linux code
-There isn't much cRIO code left any more... At this point, we're basically
-removing all of the #ifdeffed etc stuff in aos/common/ because the code is
-nowhere close to compiling for the cRIO by now and it makes it harder to see
-everything else.
-
-[NOTES]
-The assumption that sizeof(pointers) == sizeof(int) == sizeof(UINT32) == sizeof(uint32_t) == 4 is all over the crio code. The vxworks apis use UINT32 to pass user-defined arguments, and just passing pointers through those makes the code a lot simpler.
diff --git a/aos/crio/crio.gyp b/aos/crio/crio.gyp
deleted file mode 100644
index 9b5d57e..0000000
--- a/aos/crio/crio.gyp
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'ip',
-      'type': 'static_library',
-      'sources': [
-        'ip.cc',
-      ],
-    },
-  ],
-}
diff --git a/aos/crio/ip.cc b/aos/crio/ip.cc
deleted file mode 100644
index 9230365..0000000
--- a/aos/crio/ip.cc
+++ /dev/null
@@ -1,32 +0,0 @@
-#include "aos/crio/ip.h"
-
-#include <ifLib.h>
-#include <stdio.h>
-
-namespace aos {
-namespace util {
-
-// 4-slot cRIO: motfec0
-// 8-slot cRIO port 1: fec0
-// `ifShow` will show you all of the ones on a given cRIO
-const char *const kCrioNetInterfaces[] = {"fec0", "motfec0"};
-in_addr GetOwnIPAddress() {
-  char buffer[INET_ADDR_LEN];
-  in_addr r;
-  while (true) {
-    for (size_t i = 0;
-         i < sizeof(kCrioNetInterfaces) / sizeof(kCrioNetInterfaces[0]); ++i) {
-      if (ifAddrGet(const_cast<char *>(kCrioNetInterfaces[i]), buffer) == OK) {
-        if (inet_aton(buffer, &r) == OK) {
-          return r;
-        } else {
-          buffer[sizeof(buffer) - 1] = '\0';
-          printf("inet_aton('%s', %p) failed\n", buffer, &r);
-        }
-      }
-    }
-  }
-}
-
-}  // namespace util
-}  // namespace aos
diff --git a/aos/crio/ip.h b/aos/crio/ip.h
deleted file mode 100644
index f9cf430..0000000
--- a/aos/crio/ip.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef AOS_CRIO_IP_H_
-#define AOS_CRIO_IP_H_
-
-#include <inetLib.h>
-#include <stdint.h>
-
-namespace aos {
-namespace util {
-
-// Retrieves the IP address of this cRIO and stores it in *address.
-// Loops infinitely until it succeeds.
-in_addr GetOwnIPAddress();
-
-}  // namespace util
-}  // namespace aos
-
-#endif  // AOS_CRIO_IP_H_
diff --git a/aos/externals/WPILib/Makefile b/aos/externals/WPILib/Makefile
deleted file mode 100644
index fe999c8..0000000
--- a/aos/externals/WPILib/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-broken:
-	@echo THIS FILE IS OLD 2>&1
-	@echo IT IS ONLY HERE TO HELP MANUALLY DOWNLOAD NEW VERSIONS!!!!! 2>&1
-	exit 1
-
-all: make.rb WPILib.a
-	#ruby make.rb
-clean:
-	rm -f *.out WPILib/*.o WPILib/*/*.o *.d
-
-deploy: all
-	ncftpput robot /ni-rt/system/ wpilib.out
-
-wpilibupdate.exe:
-	wget http://firstforge.wpi.edu/sf/frs/do/downloadFile/projects.wpilib/frs.2012_update_for_c.frc_update_3111/frs1405?dl=1 -O wpilibupdate.exe
-
-WPILib: wpilibupdate.exe
-	mkdir wpilibinstaller
-	cd wpilibinstaller
-	unzip wpilibupdate.exe -d wpilibinstaller/ | tee wpilibinstaller/unziplog.txt
-	cat wpilibinstaller/unziplog.txt | grep "inflating: wpilibinstaller/.*\.zip" | sed "s/.*\(wpilibinstaller\/.*\.zip\).*/\1/" | xargs -I '{}' cp '{}' ./
-	#cat wpilibinstaller/unziplog.txt | grep "inflating: wpilibinstaller/.*\.zip" | sed "s/.*wpilibinstaller\/\(.*\.zip\).*/\1/" | xargs -I '{}' ln -s '{}' ./WPILib.zip
-	unzip -a WPILib*.zip
-	rm -r wpilibinstaller
-	rm -f wpilib_page1.url wpilib_page2.url wpilib_page3.url
-
-WPILib.a: wpilibupdate.exe
-	unzip wpilibupdate.exe
-	cp vxworks-6.3/target/lib/WPILib.a ./
-
diff --git a/aos/externals/WPILib/WPILib/ADXL345_I2C.cpp b/aos/externals/WPILib/WPILib/ADXL345_I2C.cpp
deleted file mode 100644
index 9cce2c2..0000000
--- a/aos/externals/WPILib/WPILib/ADXL345_I2C.cpp
+++ /dev/null
@@ -1,94 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "ADXL345_I2C.h"
-#include "DigitalModule.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "I2C.h"
-
-const uint8_t ADXL345_I2C::kAddress;
-const uint8_t ADXL345_I2C::kPowerCtlRegister;
-const uint8_t ADXL345_I2C::kDataFormatRegister;
-const uint8_t ADXL345_I2C::kDataRegister;
-constexpr double ADXL345_I2C::kGsPerLSB;
-
-/**
- * Constructor.
- * 
- * @param moduleNumber The digital module that the sensor is plugged into (1 or 2).
- * @param range The range (+ or -) that the accelerometer will measure.
- */
-ADXL345_I2C::ADXL345_I2C(uint8_t moduleNumber, ADXL345_I2C::DataFormat_Range range)
-	: m_i2c (NULL)
-{
-	DigitalModule *module = DigitalModule::GetInstance(moduleNumber);
-	if (module)
-	{
-		m_i2c = module->GetI2C(kAddress);
-
-		// Turn on the measurements
-		m_i2c->Write(kPowerCtlRegister, kPowerCtl_Measure);
-		// Specify the data format to read
-		m_i2c->Write(kDataFormatRegister, kDataFormat_FullRes | (uint8_t)range);
-
-		nUsageReporting::report(nUsageReporting::kResourceType_ADXL345, nUsageReporting::kADXL345_I2C, moduleNumber - 1);
-	}
-}
-
-/**
- * Destructor.
- */
-ADXL345_I2C::~ADXL345_I2C()
-{
-	delete m_i2c;
-	m_i2c = NULL;
-}
-
-/**
- * Get the acceleration of one axis in Gs.
- * 
- * @param axis The axis to read from.
- * @return Acceleration of the ADXL345 in Gs.
- */
-double ADXL345_I2C::GetAcceleration(ADXL345_I2C::Axes axis)
-{
-	int16_t rawAccel = 0;
-	if(m_i2c)
-	{
-		m_i2c->Read(kDataRegister + (uint8_t)axis, sizeof(rawAccel), (uint8_t *)&rawAccel);
-
-		// Sensor is little endian... swap bytes
-		rawAccel = ((rawAccel >> 8) & 0xFF) | (rawAccel << 8);
-	}
-	return rawAccel * kGsPerLSB;
-}
-
-/**
- * Get the acceleration of all axes in Gs.
- * 
- * @return Acceleration measured on all axes of the ADXL345 in Gs.
- */
-ADXL345_I2C::AllAxes ADXL345_I2C::GetAccelerations()
-{
-	AllAxes data = {0.0, 0.0, 0.0};
-	int16_t rawData[3];
-	if (m_i2c)
-	{
-		m_i2c->Read(kDataRegister, sizeof(rawData), (uint8_t*)rawData);
-
-		// Sensor is little endian... swap bytes
-		for (int32_t i=0; i<3; i++)
-		{
-			rawData[i] = ((rawData[i] >> 8) & 0xFF) | (rawData[i] << 8);
-		}
-
-		data.XAxis = rawData[0] * kGsPerLSB;
-		data.YAxis = rawData[1] * kGsPerLSB;
-		data.ZAxis = rawData[2] * kGsPerLSB;
-	}
-	return data;
-}
-
diff --git a/aos/externals/WPILib/WPILib/ADXL345_I2C.h b/aos/externals/WPILib/WPILib/ADXL345_I2C.h
deleted file mode 100644
index 8110ee2..0000000
--- a/aos/externals/WPILib/WPILib/ADXL345_I2C.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __ADXL345_I2C_h__
-#define __ADXL345_I2C_h__
-
-#include "SensorBase.h"
-
-class I2C;
-
-/**
- * ADXL345 Accelerometer on I2C.
- * 
- * This class alows access to a Analog Devices ADXL345 3-axis accelerometer on an I2C bus.
- * This class assumes the default (not alternate) sensor address of 0x3A (8-bit address).
- */
-class ADXL345_I2C : public SensorBase
-{
-protected:
-	static const uint8_t kAddress = 0x3A;
-	static const uint8_t kPowerCtlRegister = 0x2D;
-	static const uint8_t kDataFormatRegister = 0x31;
-	static const uint8_t kDataRegister = 0x32;
-	static constexpr double kGsPerLSB = 0.00390625;
-	enum PowerCtlFields {kPowerCtl_Link=0x20, kPowerCtl_AutoSleep=0x10, kPowerCtl_Measure=0x08, kPowerCtl_Sleep=0x04};
-	enum DataFormatFields {kDataFormat_SelfTest=0x80, kDataFormat_SPI=0x40, kDataFormat_IntInvert=0x20,
-		kDataFormat_FullRes=0x08, kDataFormat_Justify=0x04};
-
-public:
-	enum DataFormat_Range {kRange_2G=0x00, kRange_4G=0x01, kRange_8G=0x02, kRange_16G=0x03};
-	enum Axes {kAxis_X=0x00, kAxis_Y=0x02, kAxis_Z=0x04};
-	struct AllAxes
-	{
-		double XAxis;
-		double YAxis;
-		double ZAxis;
-	};
-
-public:
-	explicit ADXL345_I2C(uint8_t moduleNumber, DataFormat_Range range=kRange_2G);
-	virtual ~ADXL345_I2C();
-	virtual double GetAcceleration(Axes axis);
-	virtual AllAxes GetAccelerations();
-
-protected:
-	I2C* m_i2c;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/ADXL345_SPI.cpp b/aos/externals/WPILib/WPILib/ADXL345_SPI.cpp
deleted file mode 100644
index 8d279b0..0000000
--- a/aos/externals/WPILib/WPILib/ADXL345_SPI.cpp
+++ /dev/null
@@ -1,213 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "ADXL345_SPI.h"
-#include "DigitalInput.h"
-#include "DigitalOutput.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "SPI.h"
-
-const uint8_t ADXL345_SPI::kPowerCtlRegister;
-const uint8_t ADXL345_SPI::kDataFormatRegister;
-const uint8_t ADXL345_SPI::kDataRegister;
-constexpr double ADXL345_SPI::kGsPerLSB;
-
-/**
- * Constructor.
- * 
- * @param clk The GPIO the clock signal is wired to.
- * @param mosi The GPIO the MOSI (Master Out Slave In) signal is wired to.
- * @param miso The GPIO the MISO (Master In Slave Out) signal is wired to.
- * @param cs The GPIO the CS (Chip Select) signal is wired to.
- * @param range The range (+ or -) that the accelerometer will measure.
- */
-ADXL345_SPI::ADXL345_SPI(DigitalOutput &clk, DigitalOutput &mosi, DigitalInput &miso,
-	DigitalOutput &cs, DataFormat_Range range)
-	: m_clk (NULL)
-	, m_mosi (NULL)
-	, m_miso (NULL)
-	, m_cs (NULL)
-	, m_spi (NULL)
-{
-	Init(&clk, &mosi, &miso, &cs, range);
-}
-
-/**
- * Constructor.
- * 
- * @param clk The GPIO the clock signal is wired to.
- * @param mosi The GPIO the MOSI (Master Out Slave In) signal is wired to.
- * @param miso The GPIO the MISO (Master In Slave Out) signal is wired to.
- * @param cs The GPIO the CS (Chip Select) signal is wired to.
- * @param range The range (+ or -) that the accelerometer will measure.
- */
-ADXL345_SPI::ADXL345_SPI(DigitalOutput *clk, DigitalOutput *mosi, DigitalInput *miso,
-	DigitalOutput *cs, DataFormat_Range range)
-	: m_clk (NULL)
-	, m_mosi (NULL)
-	, m_miso (NULL)
-	, m_cs (NULL)
-	, m_spi (NULL)
-{
-	Init(clk, mosi, miso, cs, range);
-}
-
-/**
- * Constructor.
- * 
- * @param moduleNumber The digital module with the sensor attached.
- * @param clk The GPIO the clock signal is wired to.
- * @param mosi The GPIO the MOSI (Master Out Slave In) signal is wired to.
- * @param miso The GPIO the MISO (Master In Slave Out) signal is wired to.
- * @param cs The GPIO the CS (Chip Select) signal is wired to.
- * @param range The range (+ or -) that the accelerometer will measure.
- */
-ADXL345_SPI::ADXL345_SPI(uint8_t moduleNumber, uint32_t clk, uint32_t mosi, uint32_t miso,
-		uint32_t cs, ADXL345_SPI::DataFormat_Range range)
-	: m_clk (NULL)
-	, m_mosi (NULL)
-	, m_miso (NULL)
-	, m_cs (NULL)
-	, m_spi (NULL)
-{
-	m_clk = new DigitalOutput(moduleNumber, clk);
-	m_mosi = new DigitalOutput(moduleNumber, mosi);
-	m_miso = new DigitalInput(moduleNumber, miso);
-	m_cs = new DigitalOutput(moduleNumber, cs);
-	Init(m_clk, m_mosi, m_miso, m_cs, range);
-}
-
-/**
- * Internal common init function.
- */
-void ADXL345_SPI::Init(DigitalOutput *clk, DigitalOutput *mosi, DigitalInput *miso,
-	DigitalOutput *cs, DataFormat_Range range)
-{
-	if (clk != NULL && mosi != NULL && miso != NULL && cs != NULL)
-	{
-		m_spi = new SPI(clk, mosi, miso);
-		m_spi->SetMSBFirst();
-		m_spi->SetSampleDataOnRising();
-		m_spi->SetSlaveSelect(cs, SPI::kChipSelect, false);
-		m_spi->SetClockActiveLow();
-		// 8-bit address and 8-bit data
-		m_spi->SetBitsPerWord(16);
-		m_spi->ApplyConfig();
-		m_spi->ClearReceivedData();
-
-		// Turn on the measurements
-		m_spi->Write((kPowerCtlRegister << 8) | kPowerCtl_Measure);
-		m_spi->Read();
-		// Specify the data format to read
-		m_spi->Write((kDataFormatRegister << 8) | kDataFormat_FullRes | (uint8_t)(range & 0x03));
-		m_spi->Read();
-
-		// 8-bit address and 16-bit data
-		m_spi->SetBitsPerWord(24);
-		m_spi->ApplyConfig();
-
-		nUsageReporting::report(nUsageReporting::kResourceType_ADXL345, nUsageReporting::kADXL345_SPI);
-	}
-}
-
-/**
- * Destructor.
- */
-ADXL345_SPI::~ADXL345_SPI()
-{
-	delete m_spi;
-	m_spi = NULL;
-	delete m_cs;
-	m_cs = NULL;
-	delete m_miso;
-	m_miso = NULL;
-	delete m_mosi;
-	m_mosi = NULL;
-	delete m_clk;
-	m_clk = NULL;
-}
-
-/**
- * Get the acceleration of one axis in Gs.
- * 
- * @param axis The axis to read from.
- * @return Acceleration of the ADXL345 in Gs.
- */
-double ADXL345_SPI::GetAcceleration(ADXL345_SPI::Axes axis)
-{
-	int16_t rawAccel = 0;
-	if(m_spi)
-	{
-		m_spi->Write(((kAddress_Read | kAddress_MultiByte | kDataRegister) + (uint8_t)axis) << 16);
-		rawAccel = (uint16_t)m_spi->Read();
-
-		// Sensor is little endian... swap bytes
-		rawAccel = ((rawAccel >> 8) & 0xFF) | (rawAccel << 8);
-	}
-	return rawAccel * kGsPerLSB;
-}
-
-/**
- * Get the acceleration of all axes in Gs.
- * 
- * @return Acceleration measured on all axes of the ADXL345 in Gs.
- */
-ADXL345_SPI::AllAxes ADXL345_SPI::GetAccelerations()
-{
-	AllAxes data = {0.0, 0.0, 0.0};
-	int16_t rawData[3];
-	if (m_spi)
-	{
-		SPI::tFrameMode mode;
-		bool activeLow;
-
-		// Backup original settings.
-		DigitalOutput *cs = m_spi->GetSlaveSelect(&mode, &activeLow);
-		uint32_t bitsPerWord = m_spi->GetBitsPerWord();
-
-		// Initialize the chip select to inactive.
-		cs->Set(activeLow);
-
-		// Control the chip select manually.
-		m_spi->SetSlaveSelect(NULL);
-		// 8-bit address
-		m_spi->SetBitsPerWord(8);
-		m_spi->ApplyConfig();
-
-		// Assert chip select.
-		cs->Set(!activeLow);
-
-		// Select the data address.
-		m_spi->Write(kAddress_Read | kAddress_MultiByte | kDataRegister);
-		m_spi->Read();
-
-		// 16-bits for each axis
-		m_spi->SetBitsPerWord(16);
-		m_spi->ApplyConfig();
-
-		for (int32_t i=0; i<3; i++)
-		{
-			// SPI Interface can't read enough data in a single transaction to read all axes at once.
-			rawData[i] = (uint16_t)m_spi->Read(true);
-			// Sensor is little endian... swap bytes
-			rawData[i] = ((rawData[i] >> 8) & 0xFF) | (rawData[i] << 8);
-		}
-
-		// Deassert chip select.
-		cs->Set(activeLow);
-
-		// Restore original settings.
-		m_spi->SetSlaveSelect(cs, mode, activeLow);
-		m_spi->SetBitsPerWord(bitsPerWord);
-		m_spi->ApplyConfig();
-
-		data.XAxis = rawData[0] * kGsPerLSB;
-		data.YAxis = rawData[1] * kGsPerLSB;
-		data.ZAxis = rawData[2] * kGsPerLSB;
-	}
-	return data;
-}
-
diff --git a/aos/externals/WPILib/WPILib/ADXL345_SPI.h b/aos/externals/WPILib/WPILib/ADXL345_SPI.h
deleted file mode 100644
index 3e8a308..0000000
--- a/aos/externals/WPILib/WPILib/ADXL345_SPI.h
+++ /dev/null
@@ -1,67 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __ADXL345_SPI_h__
-#define __ADXL345_SPI_h__
-
-#include "SensorBase.h"
-
-class DigitalInput;
-class DigitalOutput;
-class SPI;
-
-/**
- * ADXL345 Accelerometer on SPI.
- * 
- * This class alows access to an Analog Devices ADXL345 3-axis accelerometer via SPI.
- * This class assumes the sensor is wired in 4-wire SPI mode.
- */
-class ADXL345_SPI : public SensorBase
-{
-protected:
-	static const uint8_t kPowerCtlRegister = 0x2D;
-	static const uint8_t kDataFormatRegister = 0x31;
-	static const uint8_t kDataRegister = 0x32;
-	static constexpr double kGsPerLSB = 0.00390625;
-	enum SPIAddressFields {kAddress_Read=0x80, kAddress_MultiByte=0x40};
-	enum PowerCtlFields {kPowerCtl_Link=0x20, kPowerCtl_AutoSleep=0x10, kPowerCtl_Measure=0x08, kPowerCtl_Sleep=0x04};
-	enum DataFormatFields {kDataFormat_SelfTest=0x80, kDataFormat_SPI=0x40, kDataFormat_IntInvert=0x20,
-		kDataFormat_FullRes=0x08, kDataFormat_Justify=0x04};
-
-public:
-	enum DataFormat_Range {kRange_2G=0x00, kRange_4G=0x01, kRange_8G=0x02, kRange_16G=0x03};
-	enum Axes {kAxis_X=0x00, kAxis_Y=0x02, kAxis_Z=0x04};
-	struct AllAxes
-	{
-		double XAxis;
-		double YAxis;
-		double ZAxis;
-	};
-
-public:
-	ADXL345_SPI(DigitalOutput &clk, DigitalOutput &mosi, DigitalInput &miso,
-		DigitalOutput &cs, DataFormat_Range range=kRange_2G);
-	ADXL345_SPI(DigitalOutput *clk, DigitalOutput *mosi, DigitalInput *miso,
-		DigitalOutput *cs, DataFormat_Range range=kRange_2G);
-	ADXL345_SPI(uint8_t moduleNumber, uint32_t clk, uint32_t mosi, uint32_t miso, uint32_t cs,
-		DataFormat_Range range=kRange_2G);
-	virtual ~ADXL345_SPI();
-	virtual double GetAcceleration(Axes axis);
-	virtual AllAxes GetAccelerations();
-
-protected:
-	void Init(DigitalOutput *clk, DigitalOutput *mosi, DigitalInput *miso,
-		DigitalOutput *cs, DataFormat_Range range);
-
-	DigitalOutput *m_clk;
-	DigitalOutput *m_mosi;
-	DigitalInput *m_miso;
-	DigitalOutput *m_cs;
-	SPI* m_spi;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Accelerometer.cpp b/aos/externals/WPILib/WPILib/Accelerometer.cpp
deleted file mode 100644
index 94bf6fa..0000000
--- a/aos/externals/WPILib/WPILib/Accelerometer.cpp
+++ /dev/null
@@ -1,156 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Accelerometer.h"
-#include "AnalogModule.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "WPIErrors.h"
-#include "LiveWindow/LiveWindow.h"
-
-/**
- * Common function for initializing the accelerometer.
- */
-void Accelerometer::InitAccelerometer()
-{
-	m_table = NULL;
-	m_voltsPerG = 1.0;
-	m_zeroGVoltage = 2.5;
-	nUsageReporting::report(nUsageReporting::kResourceType_Accelerometer, m_analogChannel->GetChannel(), m_analogChannel->GetModuleNumber() - 1);
-	LiveWindow::GetInstance()->AddSensor("Accelerometer", m_analogChannel->GetModuleNumber(), m_analogChannel->GetChannel(), this);
-}
-
-/**
- * Create a new instance of an accelerometer.
- * 
- * The accelerometer is assumed to be in the first analog module in the given analog channel. The
- * constructor allocates desired analog channel.
- */
-Accelerometer::Accelerometer(uint32_t channel)
-{
-	m_analogChannel = new AnalogChannel(channel);
-	m_allocatedChannel = true;
-	InitAccelerometer();
-}
-
-/**
- * Create new instance of accelerometer.
- * 
- * Make a new instance of the accelerometer given a module and channel. The constructor allocates
- * the desired analog channel from the specified module
- *
- * @param moduleNumber The analog module (1 or 2).
- * @param channel The analog channel (1..8)
- */
-Accelerometer::Accelerometer(uint8_t moduleNumber, uint32_t channel)
-{
-	m_analogChannel = new AnalogChannel(moduleNumber, channel);
-	m_allocatedChannel = true;
-	InitAccelerometer();
-}
-
-/**
- * Create a new instance of Accelerometer from an existing AnalogChannel.
- * Make a new instance of accelerometer given an AnalogChannel. This is particularly
- * useful if the port is going to be read as an analog channel as well as through
- * the Accelerometer class.
- */
-Accelerometer::Accelerometer(AnalogChannel *channel)
-{
-	if (channel == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-	}
-	else
-	{
-		m_analogChannel = channel;
-		InitAccelerometer();
-	}
-	m_allocatedChannel = false;
-}
-	
-/**
- * Delete the analog components used for the accelerometer.
- */
-Accelerometer::~Accelerometer()
-{
-	if (m_allocatedChannel)
-	{
-		delete m_analogChannel;
-	}
-}
-
-/**
- * Return the acceleration in Gs.
- * 
- * The acceleration is returned units of Gs.
- * 
- * @return The current acceleration of the sensor in Gs.
- */
-float Accelerometer::GetAcceleration()
-{
-	return (m_analogChannel->GetAverageVoltage() - m_zeroGVoltage) / m_voltsPerG;
-}
-
-/**
- * Set the accelerometer sensitivity.
- * 
- * This sets the sensitivity of the accelerometer used for calculating the acceleration.
- * The sensitivity varys by accelerometer model. There are constants defined for various models.
- * 
- * @param sensitivity The sensitivity of accelerometer in Volts per G.
- */
-void Accelerometer::SetSensitivity(float sensitivity)
-{
-	m_voltsPerG = sensitivity;
-}
-
-/**
- * Set the voltage that corresponds to 0 G.
- * 
- * The zero G voltage varys by accelerometer model. There are constants defined for various models.
- * 
- * @param zero The zero G voltage.
- */
-void Accelerometer::SetZero(float zero)
-{
-	m_zeroGVoltage = zero;
-}
-
-/**
- * Get the Acceleration for the PID Source parent.
- * 
- * @return The current acceleration in Gs.
- */ 
-double Accelerometer::PIDGet()
-{
-	return GetAcceleration();
-}
-
-void Accelerometer::UpdateTable() {
-	if (m_table != NULL) {
-		m_table->PutNumber("Value", GetAcceleration());
-	}
-}
-
-void Accelerometer::StartLiveWindowMode() {
-}
-
-void Accelerometer::StopLiveWindowMode() {
-}
-
-std::string Accelerometer::GetSmartDashboardType() {
-	return "Accelerometer";
-}
-
-void Accelerometer::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * Accelerometer::GetTable() {
-	return m_table;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Accelerometer.h b/aos/externals/WPILib/WPILib/Accelerometer.h
deleted file mode 100644
index 10605a2..0000000
--- a/aos/externals/WPILib/WPILib/Accelerometer.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef ACCELEROMETER_H_
-#define ACCELEROMETER_H_
-
-#include "AnalogChannel.h"
-#include "SensorBase.h"
-#include "PIDSource.h"
-#include "LiveWindow/LiveWindowSendable.h"
-
-/** 
- * Handle operation of the accelerometer.
- * The accelerometer reads acceleration directly through the sensor. Many sensors have
- * multiple axis and can be treated as multiple devices. Each is calibrated by finding
- * the center value over a period of time.
- */
-class Accelerometer : public SensorBase, public PIDSource, public LiveWindowSendable {
-public:
-	explicit Accelerometer(uint32_t channel);
-	Accelerometer(uint8_t moduleNumber, uint32_t channel);
-	explicit Accelerometer(AnalogChannel *channel);
-	virtual ~Accelerometer();
-
-	float GetAcceleration();
-	void SetSensitivity(float sensitivity);
-	void SetZero(float zero);
-	double PIDGet();
-
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-
-private:
-	void InitAccelerometer();
-
-	AnalogChannel *m_analogChannel;
-	float m_voltsPerG;
-	float m_zeroGVoltage;
-	bool m_allocatedChannel;
-	
-	ITable *m_table;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/AnalogChannel.cpp b/aos/externals/WPILib/WPILib/AnalogChannel.cpp
deleted file mode 100644
index d8b55ff..0000000
--- a/aos/externals/WPILib/WPILib/AnalogChannel.cpp
+++ /dev/null
@@ -1,483 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "AnalogChannel.h"
-#include "AnalogModule.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Resource.h"
-#include "WPIErrors.h"
-#include "LiveWindow/LiveWindow.h"
-
-static Resource *channels = NULL;
-
-const uint8_t AnalogChannel::kAccumulatorModuleNumber;
-const uint32_t AnalogChannel::kAccumulatorNumChannels;
-const uint32_t AnalogChannel::kAccumulatorChannels[] = {1, 2};
-
-/**
- * Common initialization.
- */
-void AnalogChannel::InitChannel(uint8_t moduleNumber, uint32_t channel)
-{
-	m_table = NULL;
-	char buf[64];
-	Resource::CreateResourceObject(&channels, kAnalogModules * kAnalogChannels);
-	if (!CheckAnalogModule(moduleNumber))
-	{
-		snprintf(buf, 64, "Analog Module %d", moduleNumber);
-		wpi_setWPIErrorWithContext(ModuleIndexOutOfRange, buf);
-		return;
-	}
-	if (!CheckAnalogChannel(channel))
-	{
-		snprintf(buf, 64, "Analog Channel %d", channel);
-		wpi_setWPIErrorWithContext(ChannelIndexOutOfRange, buf);
-		return;
-	}
-
-	snprintf(buf, 64, "Analog Input %d (Module: %d)", channel, moduleNumber);
-	if (channels->Allocate((moduleNumber - 1) * kAnalogChannels +
-                         channel - 1, buf, this) == ~0ul)
-	{
-		return;
-	}
-	m_channel = channel;
-	m_module = AnalogModule::GetInstance(moduleNumber);
-	if (IsAccumulatorChannel())
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		m_accumulator = tAccumulator::create(channel - 1, &localStatus);
-		wpi_setError(localStatus);
-		m_accumulatorOffset=0;
-	}
-	else
-	{
-		m_accumulator = NULL;
-	}
-	m_shouldUseVoltageForPID = false;
-	LiveWindow::GetInstance()->AddSensor("AnalogChannel",channel, GetModuleNumber(), this);
-	nUsageReporting::report(nUsageReporting::kResourceType_AnalogChannel, channel, GetModuleNumber() - 1);
-}
-
-/**
- * Construct an analog channel on a specified module.
- * 
- * @param moduleNumber The analog module (1 or 2).
- * @param channel The channel number to represent.
- */
-AnalogChannel::AnalogChannel(uint8_t moduleNumber, uint32_t channel)
-{
-	InitChannel(moduleNumber, channel);
-}
-
-/**
- * Construct an analog channel on the default module.
- * 
- * @param channel The channel number to represent.
- */
-AnalogChannel::AnalogChannel(uint32_t channel)
-{
-	InitChannel(GetDefaultAnalogModule(), channel);
-}
-
-/**
- * Channel destructor.
- */
-AnalogChannel::~AnalogChannel()
-{
-	channels->Free((m_module->GetNumber() - 1) * kAnalogChannels + m_channel - 1,
-                 this);
-}
-
-/**
- * Get the analog module that this channel is on.
- * @return A pointer to the AnalogModule that this channel is on.
- */
-AnalogModule *AnalogChannel::GetModule()
-{
-	if (StatusIsFatal()) return NULL;
-	return m_module;
-}
-
-/**
- * Get a sample straight from this channel on the module.
- * The sample is a 12-bit value representing the -10V to 10V range of the A/D converter in the module.
- * The units are in A/D converter codes.  Use GetVoltage() to get the analog value in calibrated units.
- * @return A sample straight from this channel on the module.
- */
-int16_t AnalogChannel::GetValue()
-{
-	if (StatusIsFatal()) return 0;
-	return m_module->GetValue(m_channel);
-}
-
-/**
- * Get a sample from the output of the oversample and average engine for this channel.
- * The sample is 12-bit + the value configured in SetOversampleBits().
- * The value configured in SetAverageBits() will cause this value to be averaged 2**bits number of samples.
- * This is not a sliding window.  The sample will not change until 2**(OversamplBits + AverageBits) samples
- * have been acquired from the module on this channel.
- * Use GetAverageVoltage() to get the analog value in calibrated units.
- * @return A sample from the oversample and average engine for this channel.
- */
-int32_t AnalogChannel::GetAverageValue()
-{
-	if (StatusIsFatal()) return 0;
-	return m_module->GetAverageValue(m_channel);
-}
-
-/**
- * Get a scaled sample straight from this channel on the module.
- * The value is scaled to units of Volts using the calibrated scaling data from GetLSBWeight() and GetOffset().
- * @return A scaled sample straight from this channel on the module.
- */
-float AnalogChannel::GetVoltage()
-{
-	if (StatusIsFatal()) return 0.0f;
-	return m_module->GetVoltage(m_channel);
-}
-
-/**
- * Get a scaled sample from the output of the oversample and average engine for this channel.
- * The value is scaled to units of Volts using the calibrated scaling data from GetLSBWeight() and GetOffset().
- * Using oversampling will cause this value to be higher resolution, but it will update more slowly.
- * Using averaging will cause this value to be more stable, but it will update more slowly.
- * @return A scaled sample from the output of the oversample and average engine for this channel.
- */
-float AnalogChannel::GetAverageVoltage()
-{
-	if (StatusIsFatal()) return 0.0f;
-	return m_module->GetAverageVoltage(m_channel);
-}
-
-/**
- * Get the factory scaling least significant bit weight constant.
- * The least significant bit weight constant for the channel that was calibrated in
- * manufacturing and stored in an eeprom in the module.
- * 
- * Volts = ((LSB_Weight * 1e-9) * raw) - (Offset * 1e-9)
- * 
- * @return Least significant bit weight.
- */
-uint32_t AnalogChannel::GetLSBWeight()
-{
-	if (StatusIsFatal()) return 0;
-	return m_module->GetLSBWeight(m_channel);
-}
-
-/**
- * Get the factory scaling offset constant.
- * The offset constant for the channel that was calibrated in manufacturing and stored
- * in an eeprom in the module.
- * 
- * Volts = ((LSB_Weight * 1e-9) * raw) - (Offset * 1e-9)
- * 
- * @return Offset constant.
- */
-int32_t AnalogChannel::GetOffset()
-{
-	if (StatusIsFatal()) return 0;
-	return m_module->GetOffset(m_channel);
-}
-
-/**
- * Get the channel number.
- * @return The channel number.
- */
-uint32_t AnalogChannel::GetChannel()
-{
-	if (StatusIsFatal()) return 0;
-	return m_channel;
-}
-
-/**
- * Get the module number.
- * @return The module number.
- */
-uint8_t AnalogChannel::GetModuleNumber()
-{
-	if (StatusIsFatal()) return 0;
-	return m_module->GetNumber();
-}
-
-/**
- * Set the number of averaging bits.
- * This sets the number of averaging bits. The actual number of averaged samples is 2**bits.
- * Use averaging to improve the stability of your measurement at the expense of sampling rate.
- * The averaging is done automatically in the FPGA.
- * 
- * @param bits Number of bits of averaging.
- */
-void AnalogChannel::SetAverageBits(uint32_t bits)
-{
-	if (StatusIsFatal()) return;
-	m_module->SetAverageBits(m_channel, bits);
-}
-
-/**
- * Get the number of averaging bits previously configured.
- * This gets the number of averaging bits from the FPGA. The actual number of averaged samples is 2**bits.
- * The averaging is done automatically in the FPGA.
- * 
- * @return Number of bits of averaging previously configured.
- */
-uint32_t AnalogChannel::GetAverageBits()
-{
-	if (StatusIsFatal()) return 0;
-	return m_module->GetAverageBits(m_channel);
-}
-
-/**
- * Set the number of oversample bits.
- * This sets the number of oversample bits. The actual number of oversampled values is 2**bits.
- * Use oversampling to improve the resolution of your measurements at the expense of sampling rate.
- * The oversampling is done automatically in the FPGA.
- * 
- * @param bits Number of bits of oversampling.
- */
-void AnalogChannel::SetOversampleBits(uint32_t bits)
-{
-	if (StatusIsFatal()) return;
-	m_module->SetOversampleBits(m_channel, bits);
-}
-
-/**
- * Get the number of oversample bits previously configured.
- * This gets the number of oversample bits from the FPGA. The actual number of oversampled values is
- * 2**bits. The oversampling is done automatically in the FPGA.
- * 
- * @return Number of bits of oversampling previously configured.
- */
-uint32_t AnalogChannel::GetOversampleBits()
-{
-	if (StatusIsFatal()) return 0;
-	return m_module->GetOversampleBits(m_channel);
-}
-
-/**
- * Is the channel attached to an accumulator.
- * 
- * @return The analog channel is attached to an accumulator.
- */
-bool AnalogChannel::IsAccumulatorChannel()
-{
-	if (StatusIsFatal()) return false;
-	if(m_module->GetNumber() != kAccumulatorModuleNumber) return false;
-	for (uint32_t i=0; i<kAccumulatorNumChannels; i++)
-	{
-		if (m_channel == kAccumulatorChannels[i]) return true;
-	}
-	return false;
-}
-
-/**
- * Initialize the accumulator.
- */
-void AnalogChannel::InitAccumulator()
-{
-	if (StatusIsFatal()) return;
-	m_accumulatorOffset = 0;
-	SetAccumulatorCenter(0);
-	ResetAccumulator();
-}
-
-
-/**
- * Set an inital value for the accumulator.
- * 
- * This will be added to all values returned to the user.
- * @param initialValue The value that the accumulator should start from when reset.
- */
-void AnalogChannel::SetAccumulatorInitialValue(int64_t initialValue)
-{
-	if (StatusIsFatal()) return;
-	m_accumulatorOffset = initialValue;
-}
-
-/**
- * Resets the accumulator to the initial value.
- */
-void AnalogChannel::ResetAccumulator()
-{
-	if (StatusIsFatal()) return;
-	if (m_accumulator == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-		return;
-	}
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_accumulator->strobeReset(&localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Set the center value of the accumulator.
- * 
- * The center value is subtracted from each A/D value before it is added to the accumulator. This
- * is used for the center value of devices like gyros and accelerometers to make integration work
- * and to take the device offset into account when integrating.
- * 
- * This center value is based on the output of the oversampled and averaged source from channel 1.
- * Because of this, any non-zero oversample bits will affect the size of the value for this field.
- */
-void AnalogChannel::SetAccumulatorCenter(int32_t center)
-{
-	if (StatusIsFatal()) return;
-	if (m_accumulator == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-		return;
-	}
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_accumulator->writeCenter(center, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Set the accumulator's deadband.
- */
-void AnalogChannel::SetAccumulatorDeadband(int32_t deadband)
-{
-	if (StatusIsFatal()) return;
-	if (m_accumulator == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-		return;
-	}
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_accumulator->writeDeadband(deadband, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Read the accumulated value.
- * 
- * Read the value that has been accumulating on channel 1.
- * The accumulator is attached after the oversample and average engine.
- * 
- * @return The 64-bit value accumulated since the last Reset().
- */
-int64_t AnalogChannel::GetAccumulatorValue()
-{
-	if (StatusIsFatal()) return 0;
-	if (m_accumulator == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-		return 0;
-	}
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	int64_t value = m_accumulator->readOutput_Value(&localStatus) + m_accumulatorOffset;
-	wpi_setError(localStatus);
-	return value;
-}
-
-/**
- * Read the number of accumulated values.
- * 
- * Read the count of the accumulated values since the accumulator was last Reset().
- * 
- * @return The number of times samples from the channel were accumulated.
- */
-uint32_t AnalogChannel::GetAccumulatorCount()
-{
-	if (StatusIsFatal()) return 0;
-	if (m_accumulator == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-		return 0;
-	}
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t count = m_accumulator->readOutput_Count(&localStatus);
-	wpi_setError(localStatus);
-	return count;
-}
-
-
-/**
- * Read the accumulated value and the number of accumulated values atomically.
- * 
- * This function reads the value and count from the FPGA atomically.
- * This can be used for averaging.
- * 
- * @param value Pointer to the 64-bit accumulated output.
- * @param count Pointer to the number of accumulation cycles.
- */
-void AnalogChannel::GetAccumulatorOutput(int64_t *value, uint32_t *count)
-{
-	if (StatusIsFatal()) return;
-	if (m_accumulator == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-		return;
-	}
-	if (value == NULL || count == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-		return;
-	}
-
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	tAccumulator::tOutput output = m_accumulator->readOutput(&localStatus);
-	*value = output.Value + m_accumulatorOffset;
-	*count = output.Count;
-	wpi_setError(localStatus);
-}
-
-/**
- * Set whether to use voltage or value for PIDGet.
- * This method determines whether PIDGet should use average voltage
- * or value for PIDControllers for a particular channel. This is to
- * preserve compatibility with existng programs and is likely to change
- * in favor of voltage for 2015 and beyond.
- * @param shouldUseVoltageForPID true if voltage should be used for PIDGet.
- */
-void AnalogChannel::SetVoltageForPID(bool shouldUseVoltageForPID) {
-	m_shouldUseVoltageForPID = shouldUseVoltageForPID;
-}
-
-/**
- * Get the Average value for the PID Source base object.
- * 
- * @return The average voltage.
- */
-double AnalogChannel::PIDGet() 
-{
-	if (StatusIsFatal()) return 0.0;
-	if (m_shouldUseVoltageForPID) {
-		return GetAverageVoltage();
-	} else {
-		return GetAverageValue();
-	}
-}
-
-void AnalogChannel::UpdateTable() {
-	if (m_table != NULL) {
-		m_table->PutNumber("Value", GetAverageVoltage());
-	}
-}
-
-void AnalogChannel::StartLiveWindowMode() {
-	
-}
-
-void AnalogChannel::StopLiveWindowMode() {
-	
-}
-
-std::string AnalogChannel::GetSmartDashboardType() {
-	return "Analog Input";
-}
-
-void AnalogChannel::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * AnalogChannel::GetTable() {
-	return m_table;
-}
-
-
diff --git a/aos/externals/WPILib/WPILib/AnalogChannel.h b/aos/externals/WPILib/WPILib/AnalogChannel.h
deleted file mode 100644
index 153640a..0000000
--- a/aos/externals/WPILib/WPILib/AnalogChannel.h
+++ /dev/null
@@ -1,90 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef ANALOG_CHANNEL_H_
-#define ANALOG_CHANNEL_H_
-
-#include "ChipObject.h"
-#include "SensorBase.h"
-#include "PIDSource.h"
-#include "LiveWindow/LiveWindowSendable.h"
-
-class AnalogModule;
-
-/**
- * Analog channel class.
- * 
- * Each analog channel is read from hardware as a 12-bit number representing -10V to 10V.
- * 
- * Connected to each analog channel is an averaging and oversampling engine.  This engine accumulates
- * the specified ( by SetAverageBits() and SetOversampleBits() ) number of samples before returning a new
- * value.  This is not a sliding window average.  The only difference between the oversampled samples and
- * the averaged samples is that the oversampled samples are simply accumulated effectively increasing the
- * resolution, while the averaged samples are divided by the number of samples to retain the resolution,
- * but get more stable values.
- */
-class AnalogChannel : public SensorBase, public PIDSource, public LiveWindowSendable
-{
-public:
-	static const uint8_t kAccumulatorModuleNumber = 1;
-	static const uint32_t kAccumulatorNumChannels = 2;
-	static const uint32_t kAccumulatorChannels[kAccumulatorNumChannels];
-
-	AnalogChannel(uint8_t moduleNumber, uint32_t channel);
-	explicit AnalogChannel(uint32_t channel);
-	virtual ~AnalogChannel();
-
-	AnalogModule *GetModule();
-
-	int16_t GetValue();
-	int32_t GetAverageValue();
-
-	float GetVoltage();
-	float GetAverageVoltage();
-
-	uint8_t GetModuleNumber();
-	uint32_t GetChannel();
-
-	void SetAverageBits(uint32_t bits);
-	uint32_t GetAverageBits();
-	void SetOversampleBits(uint32_t bits);
-	uint32_t GetOversampleBits();
-
-	uint32_t GetLSBWeight();
-	int32_t GetOffset();
-
-	bool IsAccumulatorChannel();
-	void InitAccumulator();
-	void SetAccumulatorInitialValue(int64_t value);
-	void ResetAccumulator();
-	void SetAccumulatorCenter(int32_t center);
-	void SetAccumulatorDeadband(int32_t deadband);
-	int64_t GetAccumulatorValue();
-	uint32_t GetAccumulatorCount();
-	void GetAccumulatorOutput(int64_t *value, uint32_t *count);
-	void SetVoltageForPID(bool shouldUseVoltageForPID);
-	
-	double PIDGet();
-	
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-
-private:
-	void InitChannel(uint8_t moduleNumber, uint32_t channel);
-	uint32_t m_channel;
-	AnalogModule *m_module;
-	tAccumulator *m_accumulator;
-	int64_t m_accumulatorOffset;
-	bool m_shouldUseVoltageForPID;
-	
-	ITable *m_table;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/AnalogModule.cpp b/aos/externals/WPILib/WPILib/AnalogModule.cpp
deleted file mode 100644
index 9fd829b..0000000
--- a/aos/externals/WPILib/WPILib/AnalogModule.cpp
+++ /dev/null
@@ -1,418 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "AnalogModule.h"
-#include "Synchronized.h"
-#include "Timer.h"
-#include "WPIErrors.h"
-#include "NetworkCommunication/AICalibration.h"
-
-const long AnalogModule::kTimebase; ///< 40 MHz clock
-const long AnalogModule::kDefaultOversampleBits;
-const long AnalogModule::kDefaultAverageBits;
-constexpr float AnalogModule::kDefaultSampleRate;
-// Needs to be global since the protected resource spans both module singletons.
-ReentrantSemaphore AnalogModule::m_registerWindowSemaphore;
-
-/**
- * Get an instance of an Analog Module.
- * 
- * Singleton analog module creation where a module is allocated on the first use
- * and the same module is returned on subsequent uses.
- * 
- * @param moduleNumber The analog module to get (1 or 2).
- * @return A pointer to the AnalogModule.
- */
-AnalogModule* AnalogModule::GetInstance(uint8_t moduleNumber)
-{
-	if (CheckAnalogModule(moduleNumber))
-	{
-		return (AnalogModule*)GetModule(nLoadOut::kModuleType_Analog, moduleNumber);
-	}
-
-	// If this wasn't caught before now, make sure we say what's wrong before we crash
-	char buf[64];
-	snprintf(buf, 64, "Analog Module %d", moduleNumber);
-	wpi_setGlobalWPIErrorWithContext(ModuleIndexOutOfRange, buf);
-
-	return NULL;
-}
-
-/**
- * Create a new instance of an analog module.
- * 
- * Create an instance of the analog module object. Initialize all the parameters
- * to reasonable values on start.
- * Setting a global value on an analog module can be done only once unless subsequent
- * values are set the previously set value.
- * Analog modules are a singleton, so the constructor is never called outside of this class.
- * 
- * @param moduleNumber The analog module to create (1 or 2).
- */
-AnalogModule::AnalogModule(uint8_t moduleNumber)
-	: Module(nLoadOut::kModuleType_Analog, moduleNumber)
-	, m_module (NULL)
-	, m_sampleRateSet (false)
-	, m_numChannelsToActivate (0)
-{
-	AddToSingletonList();
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_module = tAI::create(m_moduleNumber - 1, &localStatus);
-	wpi_setError(localStatus);
-	SetNumChannelsToActivate(kAnalogChannels);
-	SetSampleRate(kDefaultSampleRate);
-
-	for (uint32_t i = 0; i < kAnalogChannels; i++)
-	{
-		m_module->writeScanList(i, i, &localStatus);
-		wpi_setError(localStatus);
-		SetAverageBits(i + 1, kDefaultAverageBits);
-		SetOversampleBits(i + 1, kDefaultOversampleBits);
-	}
-}
-
-/**
- * Destructor for AnalogModule.
- */
-AnalogModule::~AnalogModule()
-{
-	delete m_module;
-}
-
-/**
- * Set the sample rate on the module.
- * 
- * This is a global setting for the module and effects all channels.
- * 
- * @param samplesPerSecond The number of samples per channel per second.
- */
-void AnalogModule::SetSampleRate(float samplesPerSecond)
-{
-	// TODO: This will change when variable size scan lists are implemented.
-	// TODO: Need float comparison with epsilon.
-	//wpi_assert(!sampleRateSet || GetSampleRate() == samplesPerSecond);
-	m_sampleRateSet = true;
-
-	// Compute the convert rate
-	uint32_t ticksPerSample = (uint32_t)((float)kTimebase / samplesPerSecond);
-	uint32_t ticksPerConversion = ticksPerSample / GetNumChannelsToActivate();
-	// ticksPerConversion must be at least 80
-	if (ticksPerConversion < 80)
-	{
-		wpi_setWPIError(SampleRateTooHigh);
-		ticksPerConversion = 80;
-	}
-
-	// Atomically set the scan size and the convert rate so that the sample rate is constant
-	tAI::tConfig config;
-	config.ScanSize = GetNumChannelsToActivate();
-	config.ConvertRate = ticksPerConversion;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_module->writeConfig(config, &localStatus);
-	wpi_setError(localStatus);
-
-	// Indicate that the scan size has been commited to hardware.
-	SetNumChannelsToActivate(0);
-}
-
-/**
- * Get the current sample rate on the module.
- * 
- * This assumes one entry in the scan list.
- * This is a global setting for the module and effects all channels.
- * 
- * @return Sample rate.
- */
-float AnalogModule::GetSampleRate()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t ticksPerConversion = m_module->readLoopTiming(&localStatus);
-	wpi_setError(localStatus);
-	uint32_t ticksPerSample = ticksPerConversion * GetNumActiveChannels();
-	return (float)kTimebase / (float)ticksPerSample;
-}
-
-/**
- * Return the number of channels on the module in use.
- * 
- * @return Active channels.
- */
-uint32_t AnalogModule::GetNumActiveChannels()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t scanSize = m_module->readConfig_ScanSize(&localStatus);
-	wpi_setError(localStatus);
-	if (scanSize == 0)
-		return 8;
-	return scanSize;
-}
-
-/**
- * Get the number of active channels.
- * 
- * This is an internal function to allow the atomic update of both the 
- * number of active channels and the sample rate.
- * 
- * When the number of channels changes, use the new value.  Otherwise,
- * return the curent value.
- * 
- * @return Value to write to the active channels field.
- */
-uint32_t AnalogModule::GetNumChannelsToActivate()
-{
-	if(m_numChannelsToActivate == 0) return GetNumActiveChannels();
-	return m_numChannelsToActivate;
-}
-
-/**
- * Set the number of active channels.
- * 
- * Store the number of active channels to set.  Don't actually commit to hardware
- * until SetSampleRate().
- * 
- * @param channels Number of active channels.
- */
-void AnalogModule::SetNumChannelsToActivate(uint32_t channels)
-{
-	m_numChannelsToActivate = channels;
-}
-
-/**
- * Set the number of averaging bits.
- * 
- * This sets the number of averaging bits. The actual number of averaged samples is 2**bits.
- * Use averaging to improve the stability of your measurement at the expense of sampling rate.
- * The averaging is done automatically in the FPGA.
- * 
- * @param channel Analog channel to configure.
- * @param bits Number of bits to average.
- */
-void AnalogModule::SetAverageBits(uint32_t channel, uint32_t bits)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_module->writeAverageBits(channel - 1, bits, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Get the number of averaging bits.
- * 
- * This gets the number of averaging bits from the FPGA. The actual number of averaged samples is 2**bits.
- * The averaging is done automatically in the FPGA.
- * 
- * @param channel Channel to address.
- * @return Bits to average.
- */
-uint32_t AnalogModule::GetAverageBits(uint32_t channel)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t result = m_module->readAverageBits(channel - 1, &localStatus);
-	wpi_setError(localStatus);
-	return result;
-}
-
-/**
- * Set the number of oversample bits.
- * 
- * This sets the number of oversample bits. The actual number of oversampled values is 2**bits.
- * Use oversampling to improve the resolution of your measurements at the expense of sampling rate.
- * The oversampling is done automatically in the FPGA.
- * 
- * @param channel Analog channel to configure.
- * @param bits Number of bits to oversample.
- */
-void AnalogModule::SetOversampleBits(uint32_t channel, uint32_t bits)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_module->writeOversampleBits(channel - 1, bits, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Get the number of oversample bits.
- * 
- * This gets the number of oversample bits from the FPGA. The actual number of oversampled values is
- * 2**bits. The oversampling is done automatically in the FPGA.
- * 
- * @param channel Channel to address.
- * @return Bits to oversample.
- */
-uint32_t AnalogModule::GetOversampleBits(uint32_t channel)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t result = m_module->readOversampleBits(channel - 1, &localStatus);
-	wpi_setError(localStatus);
-	return result;
-}
-
-/**
- * Get a sample straight from the channel on this module.
- * 
- * The sample is a 12-bit value representing the -10V to 10V range of the A/D converter in the module.
- * The units are in A/D converter codes.  Use GetVoltage() to get the analog value in calibrated units.
- * 
- * @return A sample straight from the channel on this module.
- */
-int16_t AnalogModule::GetValue(uint32_t channel)
-{
-	int16_t value;
-	CheckAnalogChannel(channel);
-
-	tAI::tReadSelect readSelect;
-	readSelect.Channel = channel - 1;
-	readSelect.Module = m_moduleNumber - 1;
-	readSelect.Averaged = false;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-
-	{
-		Synchronized sync(m_registerWindowSemaphore);
-		m_module->writeReadSelect(readSelect, &localStatus);
-		m_module->strobeLatchOutput(&localStatus);
-		value = (int16_t) m_module->readOutput(&localStatus);
-	}
-
-	wpi_setError(localStatus);
-	return value;
-}
-
-/**
- * Get a sample from the output of the oversample and average engine for the channel.
- * 
- * The sample is 12-bit + the value configured in SetOversampleBits().
- * The value configured in SetAverageBits() will cause this value to be averaged 2**bits number of samples.
- * This is not a sliding window.  The sample will not change until 2**(OversamplBits + AverageBits) samples
- * have been acquired from the module on this channel.
- * Use GetAverageVoltage() to get the analog value in calibrated units.
- * 
- * @param channel Channel number to read.
- * @return A sample from the oversample and average engine for the channel.
- */
-int32_t AnalogModule::GetAverageValue(uint32_t channel)
-{
-	int32_t value;
-	CheckAnalogChannel(channel);
-
-	tAI::tReadSelect readSelect;
-	readSelect.Channel = channel - 1;
-	readSelect.Module = m_moduleNumber - 1;
-	readSelect.Averaged = true;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-
-	{
-		Synchronized sync(m_registerWindowSemaphore);
-		m_module->writeReadSelect(readSelect, &localStatus);
-		m_module->strobeLatchOutput(&localStatus);
-		value = m_module->readOutput(&localStatus);
-	}
-
-	wpi_setError(localStatus);
-	return value;
-}
-
-/**
- * Convert a voltage to a raw value for a specified channel.
- * 
- * This process depends on the calibration of each channel, so the channel
- * must be specified.
- * 
- * @todo This assumes raw values.  Oversampling not supported as is.
- * 
- * @param channel The channel to convert for.
- * @param voltage The voltage to convert.
- * @return The raw value for the channel.
- */
-int32_t AnalogModule::VoltsToValue(int32_t channel, float voltage)
-{
-	if (voltage > 10.0)
-	{
-		voltage = 10.0;
-		wpi_setWPIError(VoltageOutOfRange);
-	}
-	if (voltage < -10.0)
-	{
-		voltage = -10.0;
-		wpi_setWPIError(VoltageOutOfRange);
-	}
-	uint32_t LSBWeight = GetLSBWeight(channel);
-	int32_t offset = GetOffset(channel);
-	int32_t value = (int32_t) ((voltage + offset * 1.0e-9) / (LSBWeight * 1.0e-9));
-	return value;
-}
-
-/**
- * Get a scaled sample straight from the channel on this module.
- * 
- * The value is scaled to units of Volts using the calibrated scaling data from GetLSBWeight() and GetOffset().
- * 
- * @param channel The channel to read.
- * @return A scaled sample straight from the channel on this module.
- */
-float AnalogModule::GetVoltage(uint32_t channel)
-{
-	int16_t value = GetValue(channel);
-	uint32_t LSBWeight = GetLSBWeight(channel);
-	int32_t offset = GetOffset(channel);
-	float voltage = LSBWeight * 1.0e-9 * value - offset * 1.0e-9;
-	return voltage;
-}
-
-/**
- * Get a scaled sample from the output of the oversample and average engine for the channel.
- * 
- * The value is scaled to units of Volts using the calibrated scaling data from GetLSBWeight() and GetOffset().
- * Using oversampling will cause this value to be higher resolution, but it will update more slowly.
- * Using averaging will cause this value to be more stable, but it will update more slowly.
- * 
- * @param channel The channel to read.
- * @return A scaled sample from the output of the oversample and average engine for the channel.
- */
-float AnalogModule::GetAverageVoltage(uint32_t channel)
-{
-	int32_t value = GetAverageValue(channel);
-	uint32_t LSBWeight = GetLSBWeight(channel);
-	int32_t offset = GetOffset(channel);
-	uint32_t oversampleBits = GetOversampleBits(channel);
-	float voltage = ((LSBWeight * 1.0e-9 * value) / (float)(1 << oversampleBits)) - offset * 1.0e-9;
-	return voltage;
-}
-
-/**
- * Get the factory scaling least significant bit weight constant.
- * The least significant bit weight constant for the channel that was calibrated in
- * manufacturing and stored in an eeprom in the module.
- * 
- * Volts = ((LSB_Weight * 1e-9) * raw) - (Offset * 1e-9)
- * 
- * @param channel The channel to get calibration data for.
- * @return Least significant bit weight.
- */
-uint32_t AnalogModule::GetLSBWeight(uint32_t channel) 
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t lsbWeight = FRC_NetworkCommunication_nAICalibration_getLSBWeight(m_module->getSystemIndex(), channel - 1, (int32_t*)&localStatus);
-	wpi_setError(localStatus);
-	return lsbWeight;
-}
-
-/**
- * Get the factory scaling offset constant.
- * The offset constant for the channel that was calibrated in manufacturing and stored
- * in an eeprom in the module.
- * 
- * Volts = ((LSB_Weight * 1e-9) * raw) - (Offset * 1e-9)
- * 
- * @param channel The channel to get calibration data for.
- * @return Offset constant.
- */
-int32_t AnalogModule::GetOffset(uint32_t channel)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	int32_t offset = FRC_NetworkCommunication_nAICalibration_getOffset(m_module->getSystemIndex(), channel - 1, (int32_t*)&localStatus);
-	wpi_setError(localStatus);
-	return offset;
-}
-
-
diff --git a/aos/externals/WPILib/WPILib/AnalogModule.h b/aos/externals/WPILib/WPILib/AnalogModule.h
deleted file mode 100644
index 9b98c60..0000000
--- a/aos/externals/WPILib/WPILib/AnalogModule.h
+++ /dev/null
@@ -1,62 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef ANALOG_MODULE_H_
-#define ANALOG_MODULE_H_
-
-#include "ChipObject.h"
-#include "Module.h"
-
-/**
- * Analog Module class.
- * Each module can independently sample its channels at a configurable rate.
- * There is a 64-bit hardware accumulator associated with channel 1 on each module.
- * The accumulator is attached to the output of the oversample and average engine so that the center
- * value can be specified in higher resolution resulting in less error.
- */
-class AnalogModule: public Module
-{ 
-    friend class Module;
-
-public:
-	static const long kTimebase = 40000000; ///< 40 MHz clock
-	static const long kDefaultOversampleBits = 0;
-	static const long kDefaultAverageBits = 7;
-	static constexpr float kDefaultSampleRate = 50000.0;
-
-	void SetSampleRate(float samplesPerSecond);
-	float GetSampleRate();
-	void SetAverageBits(uint32_t channel, uint32_t bits);
-	uint32_t GetAverageBits(uint32_t channel);
-	void SetOversampleBits(uint32_t channel, uint32_t bits);
-	uint32_t GetOversampleBits(uint32_t channel);
-	int16_t GetValue(uint32_t channel);
-	int32_t GetAverageValue(uint32_t channel);
-	float GetAverageVoltage(uint32_t channel);
-	float GetVoltage(uint32_t channel);
-	uint32_t GetLSBWeight(uint32_t channel);
-	int32_t GetOffset(uint32_t channel);
-	int32_t VoltsToValue(int32_t channel, float voltage);
-
-	static AnalogModule* GetInstance(uint8_t moduleNumber);
-
-protected:
-	explicit AnalogModule(uint8_t moduleNumber);
-	virtual ~AnalogModule();
-
-private:
-	static ReentrantSemaphore m_registerWindowSemaphore;
-
-	uint32_t GetNumActiveChannels();
-	uint32_t GetNumChannelsToActivate();
-	void SetNumChannelsToActivate(uint32_t channels);
-
-	tAI *m_module;
-	bool m_sampleRateSet;
-	uint32_t m_numChannelsToActivate;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/AnalogPotentiometer.cpp b/aos/externals/WPILib/WPILib/AnalogPotentiometer.cpp
deleted file mode 100644
index fc43ce4..0000000
--- a/aos/externals/WPILib/WPILib/AnalogPotentiometer.cpp
+++ /dev/null
@@ -1,144 +0,0 @@
-#include "AnalogPotentiometer.h"
-
-/**
- * Class for reading analog potentiometers. Analog potentiometers read
- * in an analog voltage that corresponds to a position. Usually the
- * position is either degrees or meters. However, if no conversion is
- * given it remains volts.
- *
- */
-    void AnalogPotentiometer::InitPot(int slot, int channel, double scale, double offset) {
-        m_module = slot;
-        m_channel = channel;
-        m_scale = scale;
-        m_offset = offset;
-        m_analog_channel = new AnalogChannel(slot, channel);
-    }
-    
-    /**
-     * AnalogPotentiometer constructor.
-     *
-     * Use the scaling and offset values so that the output produces
-     * meaningful values. I.E: you have a 270 degree potentiometer and
-     * you want the output to be degrees with the halfway point as 0
-     * degrees. The scale value is 270.0(degrees)/5.0(volts) and the
-     * offset is -135.0 since the halfway point after scaling is 135
-     * degrees.
-     *
-     * @param slot The analog module this potentiometer is plugged into.
-     * @param channel The analog channel this potentiometer is plugged into.
-     * @param scale The scaling to multiply the voltage by to get a meaningful unit.
-     * @param offset The offset to add to the scaled value for controlling the zero value
-     */
-    AnalogPotentiometer::AnalogPotentiometer(int slot, int channel, double scale, double offset) {
-        InitPot(slot, channel, scale, offset);
-    }
-    
-    /**
-     * AnalogPotentiometer constructor.
-     *
-     * Use the scaling and offset values so that the output produces
-     * meaningful values. I.E: you have a 270 degree potentiometer and
-     * you want the output to be degrees with the halfway point as 0
-     * degrees. The scale value is 270.0(degrees)/5.0(volts) and the
-     * offset is -135.0 since the halfway point after scaling is 135
-     * degrees.
-     *
-     * @param channel The analog channel this potentiometer is plugged into.
-     * @param scale The scaling to multiply the voltage by to get a meaningful unit.
-     * @param offset The offset to add to the scaled value for controlling the zero value
-     */
-    AnalogPotentiometer::AnalogPotentiometer(int channel, double scale, double offset) {
-        InitPot(1, channel, scale, offset);
-    }
-    
-    /**
-     * AnalogPotentiometer constructor.
-     *
-     * Use the scaling and offset values so that the output produces
-     * meaningful values. I.E: you have a 270 degree potentiometer and
-     * you want the output to be degrees with the halfway point as 0
-     * degrees. The scale value is 270.0(degrees)/5.0(volts) and the
-     * offset is -135.0 since the halfway point after scaling is 135
-     * degrees.
-     *
-     * @param channel The analog channel this potentiometer is plugged into.
-     * @param scale The scaling to multiply the voltage by to get a meaningful unit.
-     */
-    AnalogPotentiometer::AnalogPotentiometer(int channel, double scale) {
-        InitPot(1, channel, scale, 0);
-    }
-    
-    /**
-     * AnalogPotentiometer constructor.
-     *
-     * @param channel The analog channel this potentiometer is plugged into.
-     */
-    AnalogPotentiometer::AnalogPotentiometer(int channel) {
-        InitPot(1, channel, 1, 0);
-    }
-    
-    /**
-     * Get the current reading of the potentiomere.
-     *
-     * @return The current position of the potentiometer.
-     */
-    double AnalogPotentiometer::Get() {
-        return m_analog_channel->GetVoltage() * m_scale + m_offset;
-    }
-    
-    
-    /**
-     * Implement the PIDSource interface.
-     *
-     * @return The current reading.
-     */
-    double AnalogPotentiometer::PIDGet() {
-        return Get();
-    }
-    
-    /*
-     * Live Window code, only does anything if live window is activated.
-     */
-    std::string AnalogPotentiometer::GetSmartDashboardType(){
-        return "Analog Input";
-    }
-    
-    ITable *m_table;
-    
-    /**
-     * {@inheritDoc}
-     */
-    void AnalogPotentiometer::InitTable(ITable *subtable) {
-        m_table = subtable;
-        UpdateTable();
-    }
-    
-    /**
-     * {@inheritDoc}
-     */
-    void AnalogPotentiometer::UpdateTable() {
-        if (m_table != NULL) {
-            m_table->PutNumber("Value", Get());
-        }
-    }
-    
-    /**
-     * {@inheritDoc}
-     */
-    ITable * AnalogPotentiometer::GetTable(){
-        return m_table;
-    }
-    
-    /**
-     * Analog Channels don't have to do anything special when entering the LiveWindow.
-     * {@inheritDoc}
-     */
-    void AnalogPotentiometer::StartLiveWindowMode() {}
-    
-    /**
-     * Analog Channels don't have to do anything special when exiting the LiveWindow.
-     * {@inheritDoc}
-     */
-    void AnalogPotentiometer::StopLiveWindowMode() {}
-
diff --git a/aos/externals/WPILib/WPILib/AnalogPotentiometer.h b/aos/externals/WPILib/WPILib/AnalogPotentiometer.h
deleted file mode 100644
index 1c42255..0000000
--- a/aos/externals/WPILib/WPILib/AnalogPotentiometer.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#ifndef _ANALOG_POTENTIOMETER_H
-#define _ANALOG_POTENTIOMETER_H
-
-#include "Interfaces/Potentiometer.h"
-#include "LiveWindow/LiveWindowSendable.h"
-#include "AnalogChannel.h"
-
-/**
- * Class for reading analog potentiometers. Analog potentiometers read
- * in an analog voltage that corresponds to a position. Usually the
- * position is either degrees or meters. However, if no conversion is
- * given it remains volts.
- *
- * @author Alex Henning
- */
-class AnalogPotentiometer : public Potentiometer, public LiveWindowSendable {
-private:
-    int m_module, m_channel;
-    double m_scale, m_offset;
-    AnalogChannel *m_analog_channel;
-    void InitPot(int slot, int channel, double scale, double offset);
-	ITable *m_table;
-public:
-    AnalogPotentiometer(int slot, int channel, double scale, double offset);
-    AnalogPotentiometer(int channel, double scale, double offset);    
-    AnalogPotentiometer(int channel, double scale);
-    AnalogPotentiometer(int channel);
-    double Get();
-    double PIDGet();
-    std::string GetSmartDashboardType();
-    void InitTable(ITable *subtable);
-    void UpdateTable();
-    ITable * GetTable();
-    void StartLiveWindowMode();
-    void StopLiveWindowMode();
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/AnalogTrigger.cpp b/aos/externals/WPILib/WPILib/AnalogTrigger.cpp
deleted file mode 100644
index fff2365..0000000
--- a/aos/externals/WPILib/WPILib/AnalogTrigger.cpp
+++ /dev/null
@@ -1,199 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "AnalogTrigger.h"
-
-#include "AnalogChannel.h"
-#include "AnalogModule.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Resource.h"
-#include "WPIErrors.h"
-
-static Resource *triggers = NULL;
-
-/**
- * Initialize an analog trigger from a slot and channel.
- * This is the common code for the two constructors that use a slot and channel.
- */
-void AnalogTrigger::InitTrigger(uint8_t moduleNumber, uint32_t channel)
-{
-	Resource::CreateResourceObject(&triggers, tAnalogTrigger::kNumSystems);
-	uint32_t index = triggers->Allocate("Analog Trigger", this);
-	if (index == ~0ul)
-	{
-		return;
-	}
-	m_index = (uint8_t)index;
-	m_channel = channel;
-	m_analogModule = AnalogModule::GetInstance(moduleNumber);
-
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_trigger = tAnalogTrigger::create(m_index, &localStatus);
-	m_trigger->writeSourceSelect_Channel(m_channel - 1, &localStatus);
-	m_trigger->writeSourceSelect_Module(moduleNumber - 1, &localStatus);
-	wpi_setError(localStatus);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_AnalogTrigger, m_channel, moduleNumber - 1);
-}
-
-/**
- * Constructor for an analog trigger given a channel number.
- * The default module is used in this case.
- *
- * @param channel The analog channel (1..8).
- */
-AnalogTrigger::AnalogTrigger(uint32_t channel)
-{
-	InitTrigger(GetDefaultAnalogModule(), channel);
-}
-
-/**
- * Constructor for an analog trigger given both the slot and channel.
- *
- * @param moduleNumber The analog module (1 or 2).
- * @param channel The analog channel (1..8).
- */
-AnalogTrigger::AnalogTrigger(uint8_t moduleNumber, uint32_t channel)
-{
-	InitTrigger(moduleNumber, channel);
-}
-
-/**
- * Construct an analog trigger given an analog channel.
- * This should be used in the case of sharing an analog channel between the trigger
- * and an analog input object.
- */
-AnalogTrigger::AnalogTrigger(AnalogChannel *channel)
-{
-	InitTrigger(channel->GetModuleNumber(), channel->GetChannel());
-}
-
-AnalogTrigger::~AnalogTrigger()
-{
-	triggers->Free(m_index, this);
-	delete m_trigger;
-}
-
-/**
- * Set the upper and lower limits of the analog trigger.
- * The limits are given in ADC codes.  If oversampling is used, the units must be scaled
- * appropriately.
- */
-void AnalogTrigger::SetLimitsRaw(int32_t lower, int32_t upper)
-{
-	if (StatusIsFatal()) return;
-	if (lower > upper)
-	{
-		wpi_setWPIError(AnalogTriggerLimitOrderError);
-	}
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_trigger->writeLowerLimit(lower, &localStatus);
-	m_trigger->writeUpperLimit(upper, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Set the upper and lower limits of the analog trigger.
- * The limits are given as floating point voltage values.
- */
-void AnalogTrigger::SetLimitsVoltage(float lower, float upper)
-{
-	if (StatusIsFatal()) return;
-	if (lower > upper)
-	{
-		wpi_setWPIError(AnalogTriggerLimitOrderError);
-	}
-	// TODO: This depends on the averaged setting.  Only raw values will work as is.
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_trigger->writeLowerLimit(m_analogModule->VoltsToValue(m_channel, lower), &localStatus);
-	m_trigger->writeUpperLimit(m_analogModule->VoltsToValue(m_channel, upper), &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Configure the analog trigger to use the averaged vs. raw values.
- * If the value is true, then the averaged value is selected for the analog trigger, otherwise
- * the immediate value is used.
- */
-void AnalogTrigger::SetAveraged(bool useAveragedValue)
-{
-	if (StatusIsFatal()) return;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	if (m_trigger->readSourceSelect_Filter(&localStatus) != 0)
-		wpi_setWPIErrorWithContext(IncompatibleMode, "Hardware does not support average and filtering at the same time.");
-	m_trigger->writeSourceSelect_Averaged(useAveragedValue, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Configure the analog trigger to use a filtered value.
- * The analog trigger will operate with a 3 point average rejection filter. This is designed to
- * help with 360 degree pot applications for the period where the pot crosses through zero.
- */
-void AnalogTrigger::SetFiltered(bool useFilteredValue)
-{
-	if (StatusIsFatal()) return;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	if (m_trigger->readSourceSelect_Averaged(&localStatus) != 0)
-		wpi_setWPIErrorWithContext(IncompatibleMode, "Hardware does not support average and filtering at the same time.");
-	m_trigger->writeSourceSelect_Filter(useFilteredValue, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Return the index of the analog trigger.
- * This is the FPGA index of this analog trigger instance.
- * @return The index of the analog trigger.
- */
-uint32_t AnalogTrigger::GetIndex()
-{
-	if (StatusIsFatal()) return ~0ul;
-	return m_index;
-}
-
-/**
- * Return the InWindow output of the analog trigger.
- * True if the analog input is between the upper and lower limits.
- * @return The InWindow output of the analog trigger.
- */
-bool AnalogTrigger::GetInWindow()
-{
-	if (StatusIsFatal()) return false;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	bool result = m_trigger->readOutput_InHysteresis(m_index, &localStatus) != 0;
-	wpi_setError(localStatus);
-	return result;
-}
-
-/**
- * Return the TriggerState output of the analog trigger.
- * True if above upper limit.
- * False if below lower limit.
- * If in Hysteresis, maintain previous state.
- * @return The TriggerState output of the analog trigger.
- */
-bool AnalogTrigger::GetTriggerState()
-{
-	if (StatusIsFatal()) return false;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	bool result = m_trigger->readOutput_OverLimit(m_index, &localStatus) != 0;
-	wpi_setError(localStatus);
-	return result;
-}
-
-/**
- * Creates an AnalogTriggerOutput object.
- * Gets an output object that can be used for routing.
- * Caller is responsible for deleting the AnalogTriggerOutput object.
- * @param type An enum of the type of output object to create.
- * @return A pointer to a new AnalogTriggerOutput object.
- */
-AnalogTriggerOutput *AnalogTrigger::CreateOutput(AnalogTriggerOutput::Type type)
-{
-	if (StatusIsFatal()) return NULL;
-	return new AnalogTriggerOutput(this, type);
-}
-
diff --git a/aos/externals/WPILib/WPILib/AnalogTrigger.h b/aos/externals/WPILib/WPILib/AnalogTrigger.h
deleted file mode 100644
index d4b1a4b..0000000
--- a/aos/externals/WPILib/WPILib/AnalogTrigger.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef ANALOG_TRIGGER_H_
-#define ANALOG_TRIGGER_H_
-
-#include "AnalogTriggerOutput.h"
-#include "SensorBase.h"
-
-class AnalogChannel;
-class AnalogModule;
-
-class AnalogTrigger: public SensorBase
-{
-	friend class AnalogTriggerOutput;
-public:
-	AnalogTrigger(uint8_t moduleNumber, uint32_t channel);
-	explicit AnalogTrigger(uint32_t channel);
-	explicit AnalogTrigger(AnalogChannel *channel);
-	virtual ~AnalogTrigger();
-
-	void SetLimitsVoltage(float lower, float upper);
-	void SetLimitsRaw(int32_t lower, int32_t upper);
-	void SetAveraged(bool useAveragedValue);
-	void SetFiltered(bool useFilteredValue);
-	uint32_t GetIndex();
-	bool GetInWindow();
-	bool GetTriggerState();
-	AnalogTriggerOutput *CreateOutput(AnalogTriggerOutput::Type type);
-
-private:
-	void InitTrigger(uint8_t moduleNumber, uint32_t channel);
-
-	uint8_t m_index;
-	tAnalogTrigger *m_trigger;
-	AnalogModule *m_analogModule;
-	uint32_t m_channel;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/AnalogTriggerOutput.cpp b/aos/externals/WPILib/WPILib/AnalogTriggerOutput.cpp
deleted file mode 100644
index 415e3f9..0000000
--- a/aos/externals/WPILib/WPILib/AnalogTriggerOutput.cpp
+++ /dev/null
@@ -1,79 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "AnalogTriggerOutput.h"
-#include "AnalogTrigger.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "WPIErrors.h"
-
-/**
- * Create an object that represents one of the four outputs from an analog trigger.
- * 
- * Because this class derives from DigitalSource, it can be passed into routing functions
- * for Counter, Encoder, etc.
- * 
- * @param trigger A pointer to the trigger for which this is an output.
- * @param outputType An enum that specifies the output on the trigger to represent.
- */
-AnalogTriggerOutput::AnalogTriggerOutput(AnalogTrigger *trigger, AnalogTriggerOutput::Type outputType)
-	: m_trigger (trigger)
-	, m_outputType (outputType)
-{
-	nUsageReporting::report(nUsageReporting::kResourceType_AnalogTriggerOutput, trigger->GetIndex(), outputType);
-}
-
-AnalogTriggerOutput::~AnalogTriggerOutput()
-{
-}
-
-/**
- * Get the state of the analog trigger output.
- * @return The state of the analog trigger output.
- */
-bool AnalogTriggerOutput::Get()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	bool result = false;
-	switch(m_outputType)
-	{
-	case kInWindow:
-		result = m_trigger->m_trigger->readOutput_InHysteresis(m_trigger->m_index, &localStatus);
-		break;
-	case kState:
-		result = m_trigger->m_trigger->readOutput_OverLimit(m_trigger->m_index, &localStatus);
-		break;
-	case kRisingPulse:
-	case kFallingPulse:
-		wpi_setWPIError(AnalogTriggerPulseOutputError);
-		return false;
-	}
-	wpi_setError(localStatus);
-	return result;
-}
-
-/**
- * @return The value to be written to the channel field of a routing mux.
- */
-uint32_t AnalogTriggerOutput::GetChannelForRouting()
-{
-	return (m_trigger->m_index << 2) + m_outputType;
-}
-
-/**
- * @return The value to be written to the module field of a routing mux.
- */
-uint32_t AnalogTriggerOutput::GetModuleForRouting()
-{
-	return m_trigger->m_index >> 2;
-}
-
-/**
- * @return The value to be written to the module field of a routing mux.
- */
-bool AnalogTriggerOutput::GetAnalogTriggerForRouting()
-{
-	return true;
-}
diff --git a/aos/externals/WPILib/WPILib/AnalogTriggerOutput.h b/aos/externals/WPILib/WPILib/AnalogTriggerOutput.h
deleted file mode 100644
index 83e4450..0000000
--- a/aos/externals/WPILib/WPILib/AnalogTriggerOutput.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef ANALOG_TRIGGER_OUTPUT_H_
-#define ANALOG_TRIGGER_OUTPUT_H_
-
-#include "DigitalSource.h"
-
-class AnalogTrigger;
-
-/**
- * Class to represent a specific output from an analog trigger.
- * This class is used to get the current output value and also as a DigitalSource
- * to provide routing of an output to digital subsystems on the FPGA such as
- * Counter, Encoder, and Interrupt.
- * 
- * The TriggerState output indicates the primary output value of the trigger.  If the analog
- * signal is less than the lower limit, the output is false.  If the analog value is greater
- * than the upper limit, then the output is true.  If the analog value is in between, then
- * the trigger output state maintains its most recent value.
- * 
- * The InWindow output indicates whether or not the analog signal is inside the range defined
- * by the limits.
- * 
- * The RisingPulse and FallingPulse outputs detect an instantaneous transition from above the
- * upper limit to below the lower limit, and vise versa.  These pulses represent a rollover
- * condition of a sensor and can be routed to an up / down couter or to interrupts.  Because
- * the outputs generate a pulse, they cannot be read directly.  To help ensure that a rollover
- * condition is not missed, there is an average rejection filter available that operates on the
- * upper 8 bits of a 12 bit number and selects the nearest outlyer of 3 samples.  This will reject
- * a sample that is (due to averaging or sampling) errantly between the two limits.  This filter
- * will fail if more than one sample in a row is errantly in between the two limits.  You may see
- * this problem if attempting to use this feature with a mechanical rollover sensor, such as a
- * 360 degree no-stop potentiometer without signal conditioning, because the rollover transition
- * is not sharp / clean enough.  Using the averaging engine may help with this, but rotational speeds of
- * the sensor will then be limited.
- */
-class AnalogTriggerOutput: public DigitalSource
-{
-	friend class AnalogTrigger;
-public:
-  // kRisingPulse and kFallingPulse don't seem to work with RequestInterrupts.
-	typedef enum {kInWindow=0, kState=1, kRisingPulse=2, kFallingPulse=3} Type;
-	
-	virtual ~AnalogTriggerOutput();
-	bool Get();
-
-	// DigitalSource interface
-	virtual uint32_t GetChannelForRouting();
-	virtual uint32_t GetModuleForRouting();
-	virtual bool GetAnalogTriggerForRouting();
-protected:
-	AnalogTriggerOutput(AnalogTrigger *trigger, Type outputType);
-
-private:
-	AnalogTrigger *m_trigger;
-	Type m_outputType;
-};
-
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Base.h b/aos/externals/WPILib/WPILib/Base.h
deleted file mode 100644
index eb11f96..0000000
--- a/aos/externals/WPILib/WPILib/Base.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef _BASE_H
-#define _BASE_H
-
-// If don't have C++11, define constexpr as const for WindRiver
-#if __cplusplus < 201103L
-#define constexpr const
-#endif
-
-// A macro to disallow the copy constructor and operator= functions
-// This should be used in the private: declarations for a class
-#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
-  TypeName(const TypeName&);               \
-  void operator=(const TypeName&)
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Buttons/AnalogIOButton.cpp b/aos/externals/WPILib/WPILib/Buttons/AnalogIOButton.cpp
deleted file mode 100644
index b2122ff..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/AnalogIOButton.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Buttons/AnalogIOButton.h"
-#include "DriverStation.h"
-
-const double AnalogIOButton::kThreshold = 0.5;
-
-AnalogIOButton::AnalogIOButton(int port) :
-	m_port(port)
-{
-}
-
-bool AnalogIOButton::Get()
-{
-	return DriverStation::GetInstance()->GetEnhancedIO().GetAnalogIn(m_port) < kThreshold;
-}
diff --git a/aos/externals/WPILib/WPILib/Buttons/AnalogIOButton.h b/aos/externals/WPILib/WPILib/Buttons/AnalogIOButton.h
deleted file mode 100644
index 9b867e6..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/AnalogIOButton.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __ANALOG_IO_BUTTON_H__
-#define __ANALOG_IO_BUTTON_H__
-
-#include "Buttons/Button.h"
-
-class AnalogIOButton : public Trigger
-{
-public:
-	static const double kThreshold;
-
-	AnalogIOButton(int port);
-	virtual ~AnalogIOButton() {}
-	virtual bool Get();
-
-private:
-	int m_port;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Buttons/Button.cpp b/aos/externals/WPILib/WPILib/Buttons/Button.cpp
deleted file mode 100644
index 020cb94..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/Button.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Button.h"
-
-/**
- * Specifies the command to run when a button is first pressed
- * @param command The pointer to the command to run
- */
-void Button::WhenPressed(Command *command) {
-	WhenActive(command);
-}
-
-/**
- * Specifies the command to be scheduled while the button is pressed
- * The command will be scheduled repeatedly while the button is pressed and will
- * be canceled when the button is released.
- * @param command The pointer to the command to run
- */
-void Button::WhileHeld(Command *command) {
-	WhileActive(command);
-}
-
-/**
- * Specifies the command to run when the button is released
- * The command will be scheduled a single time.
- * @param The pointer to the command to run
- */
-void Button::WhenReleased(Command *command) {
-	WhenInactive(command);
-}
-
-/**
- * Cancels the specificed command when the button is pressed
- * @param The command to be canceled
- */
-void Button::CancelWhenPressed(Command *command) {
-	CancelWhenActive(command);
-}
-
-/**
- * Toggle the specified command when the button is pressed
- * @param The command to be toggled
- */
-void Button::ToggleWhenPressed(Command *command) {
-	ToggleWhenActive(command);
-}
diff --git a/aos/externals/WPILib/WPILib/Buttons/Button.h b/aos/externals/WPILib/WPILib/Buttons/Button.h
deleted file mode 100644
index c491111..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/Button.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __BUTTON_H__
-#define __BUTTON_H__
-
-#include "Buttons/Trigger.h"
-#include "Commands/Command.h"
-
-/**
- * This class provides an easy way to link commands to OI inputs.
- *
- * It is very easy to link a button to a command.  For instance, you could
- * link the trigger button of a joystick to a "score" command.
- *
- * This class represents a subclass of Trigger that is specifically aimed at
- * buttons on an operator interface as a common use case of the more generalized
- * Trigger objects. This is a simple wrapper around Trigger with the method names
- * renamed to fit the Button object use.
- * 
- * @author brad
- */
-class Button : public Trigger {
-public:
-	virtual void WhenPressed(Command *command);
-	virtual void WhileHeld(Command *command);
-	virtual void WhenReleased(Command *command);
-	virtual void CancelWhenPressed(Command *command);
-	virtual void ToggleWhenPressed(Command *command);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Buttons/ButtonScheduler.cpp b/aos/externals/WPILib/WPILib/Buttons/ButtonScheduler.cpp
deleted file mode 100644
index e7f71b9..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/ButtonScheduler.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Buttons/ButtonScheduler.h"
-
-#include "Commands/Scheduler.h"
-
-ButtonScheduler::ButtonScheduler(bool last, Trigger *button, Command *orders) :
-	m_pressedLast(last),
-	m_button(button),
-	m_command(orders)
-{
-}
-
-void ButtonScheduler::Start()
-{
-	Scheduler::GetInstance()->AddButton(this);
-}
diff --git a/aos/externals/WPILib/WPILib/Buttons/ButtonScheduler.h b/aos/externals/WPILib/WPILib/Buttons/ButtonScheduler.h
deleted file mode 100644
index 96d0a0e..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/ButtonScheduler.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __BUTTON_SCHEDULER_H__
-#define __BUTTON_SCHEDULER_H__
-
-class Trigger;
-class Command;
-
-class ButtonScheduler
-{
-public:
-	ButtonScheduler(bool last, Trigger *button, Command *orders);
-	virtual ~ButtonScheduler() {}
-	virtual void Execute() = 0;
-	void Start();
-
-protected:
-	bool m_pressedLast;
-	Trigger *m_button;
-	Command *m_command;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Buttons/CancelButtonScheduler.cpp b/aos/externals/WPILib/WPILib/Buttons/CancelButtonScheduler.cpp
deleted file mode 100644
index 5562158..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/CancelButtonScheduler.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Buttons/CancelButtonScheduler.h"
-
-#include "Buttons/Button.h"
-#include "Commands/Command.h"
-
-CancelButtonScheduler::CancelButtonScheduler(bool last, Trigger *button, Command *orders) :
-	ButtonScheduler(last, button, orders)
-{
-	pressedLast = m_button->Grab();
-}
-
-void CancelButtonScheduler::Execute()
-{
-    if (m_button->Grab()) {
-        if (!pressedLast) {
-            pressedLast = true;
-            m_command->Cancel();
-        }
-    } else {
-        pressedLast = false;
-    }
-}
-
diff --git a/aos/externals/WPILib/WPILib/Buttons/CancelButtonScheduler.h b/aos/externals/WPILib/WPILib/Buttons/CancelButtonScheduler.h
deleted file mode 100644
index 0491213..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/CancelButtonScheduler.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __CANCEL_BUTTON_SCHEDULER_H__
-#define __CANCEL_BUTTON_SCHEDULER_H__
-
-#include "Buttons/ButtonScheduler.h"
-
-class Trigger;
-class Command;
-
-class CancelButtonScheduler : public ButtonScheduler
-{
-public:
-	CancelButtonScheduler(bool last, Trigger *button, Command *orders);
-	virtual ~CancelButtonScheduler() {}
-	virtual void Execute();
-private:
-	bool pressedLast;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Buttons/DigitalIOButton.cpp b/aos/externals/WPILib/WPILib/Buttons/DigitalIOButton.cpp
deleted file mode 100644
index 8bb39be..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/DigitalIOButton.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Buttons/DigitalIOButton.h"
-#include "DriverStation.h"
-
-const bool DigitalIOButton::kActiveState = false;
-
-DigitalIOButton::DigitalIOButton(int port) :
-	m_port(port)
-{
-}
-
-bool DigitalIOButton::Get()
-{
-	return DriverStation::GetInstance()->GetEnhancedIO().GetDigital(m_port) == kActiveState;
-}
diff --git a/aos/externals/WPILib/WPILib/Buttons/DigitalIOButton.h b/aos/externals/WPILib/WPILib/Buttons/DigitalIOButton.h
deleted file mode 100644
index 6482c75..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/DigitalIOButton.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __DIGITAL_IO_BUTTON_H__
-#define __DIGITAL_IO_BUTTON_H__
-
-#include "Buttons/Button.h"
-
-class DigitalIOButton: public Button
-{
-public:
-	static const bool kActiveState;
-
-	DigitalIOButton(int port);
-	virtual ~DigitalIOButton() {}
-
-	virtual bool Get();
-
-private:
-	int m_port;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Buttons/HeldButtonScheduler.cpp b/aos/externals/WPILib/WPILib/Buttons/HeldButtonScheduler.cpp
deleted file mode 100644
index fbe4a9f..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/HeldButtonScheduler.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Buttons/HeldButtonScheduler.h"
-
-#include "Buttons/Button.h"
-#include "Commands/Command.h"
-
-HeldButtonScheduler::HeldButtonScheduler(bool last, Trigger *button, Command *orders) :
-	ButtonScheduler(last, button, orders)
-{
-}
-
-void HeldButtonScheduler::Execute()
-{
-	if (m_button->Grab())
-	{
-		m_pressedLast = true;
-		m_command->Start();
-	}
-	else
-	{
-		if (m_pressedLast)
-		{
-			m_pressedLast = false;
-			m_command->Cancel();
-		}
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/Buttons/HeldButtonScheduler.h b/aos/externals/WPILib/WPILib/Buttons/HeldButtonScheduler.h
deleted file mode 100644
index 3bca0d5..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/HeldButtonScheduler.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __HELD_BUTTON_SCHEDULER_H__
-#define __HELD_BUTTON_SCHEDULER_H__
-
-#include "Buttons/ButtonScheduler.h"
-
-class Trigger;
-class Command;
-
-class HeldButtonScheduler : public ButtonScheduler
-{
-public:
-	HeldButtonScheduler(bool last, Trigger *button, Command *orders);
-	virtual ~HeldButtonScheduler() {}
-	virtual void Execute();
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Buttons/InternalButton.cpp b/aos/externals/WPILib/WPILib/Buttons/InternalButton.cpp
deleted file mode 100644
index 0bd322d..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/InternalButton.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Buttons/InternalButton.h"
-
-InternalButton::InternalButton() :
-	m_pressed(false),
-	m_inverted(false)
-{
-}
-
-InternalButton::InternalButton(bool inverted) :
-	m_pressed(inverted),
-	m_inverted(inverted)
-{
-}
-
-void InternalButton::SetInverted(bool inverted)
-{
-	m_inverted = inverted;
-}
-
-void InternalButton::SetPressed(bool pressed)
-{
-	m_pressed = pressed;
-}
-
-bool InternalButton::Get()
-{
-	return m_pressed ^ m_inverted;
-}
diff --git a/aos/externals/WPILib/WPILib/Buttons/InternalButton.h b/aos/externals/WPILib/WPILib/Buttons/InternalButton.h
deleted file mode 100644
index e61cf0a..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/InternalButton.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __INTERNAL_BUTTON_H__
-#define __INTERNAL_BUTTON_H__
-
-#include "Buttons/Button.h"
-
-class InternalButton : public Button
-{
-public:
-	InternalButton();
-	InternalButton(bool inverted);
-	virtual ~InternalButton() {}
-
-	void SetInverted(bool inverted);
-	void SetPressed(bool pressed);
-
-	virtual bool Get();
-
-private:
-	bool m_pressed;
-	bool m_inverted;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Buttons/JoystickButton.cpp b/aos/externals/WPILib/WPILib/Buttons/JoystickButton.cpp
deleted file mode 100644
index 3dace65..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/JoystickButton.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Buttons/JoystickButton.h"
-
-JoystickButton::JoystickButton(GenericHID *joystick, int buttonNumber) :
-	m_joystick(joystick),
-	m_buttonNumber(buttonNumber)
-{
-}
-
-bool JoystickButton::Get()
-{
-    return m_joystick->GetRawButton(m_buttonNumber);
-}
diff --git a/aos/externals/WPILib/WPILib/Buttons/JoystickButton.h b/aos/externals/WPILib/WPILib/Buttons/JoystickButton.h
deleted file mode 100644
index cb5f0c4..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/JoystickButton.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __JOYSTICK_BUTTON_H__
-#define __JOYSTICK_BUTTON_H__
-
-#include "GenericHID.h"
-#include "Buttons/Button.h"
-
-class JoystickButton : public Button
-{
-public:
-	JoystickButton(GenericHID *joystick, int buttonNumber);
-	virtual ~JoystickButton() {}
-
-	virtual bool Get();
-
-private:
-	GenericHID *m_joystick;
-	int m_buttonNumber;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Buttons/NetworkButton.cpp b/aos/externals/WPILib/WPILib/Buttons/NetworkButton.cpp
deleted file mode 100644
index 5b67c2a..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/NetworkButton.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Buttons/NetworkButton.h"
-#include "networktables/NetworkTable.h"
-
-NetworkButton::NetworkButton(const char *tableName, const char *field) ://TODO how is this supposed to work???
-	m_netTable(NetworkTable::GetTable(tableName)),
-	m_field(field)
-{
-}
-
-NetworkButton::NetworkButton(ITable *table, const char *field) :
-	m_netTable(table),
-	m_field(field)
-{
-}
-
-bool NetworkButton::Get()
-{
-	/*if (m_netTable->isConnected())
-		return m_netTable->GetBoolean(m_field.c_str());
-	else
-		return false;*/
-	return m_netTable->GetBoolean(m_field);
-}
diff --git a/aos/externals/WPILib/WPILib/Buttons/NetworkButton.h b/aos/externals/WPILib/WPILib/Buttons/NetworkButton.h
deleted file mode 100644
index 874a768..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/NetworkButton.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __NETWORK_BUTTON_H__
-#define __NETWORK_BUTTON_H__
-
-#include "Buttons/Button.h"
-#include <string>
-
-class NetworkButton : public Button
-{
-public:
-	NetworkButton(const char *tableName, const char *field);
-	NetworkButton(ITable* table, const char *field);
-	virtual ~NetworkButton() {}
-
-	virtual bool Get();
-
-private:
-	ITable* m_netTable;
-	std::string m_field;
-
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Buttons/PressedButtonScheduler.cpp b/aos/externals/WPILib/WPILib/Buttons/PressedButtonScheduler.cpp
deleted file mode 100644
index 3cf25ba..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/PressedButtonScheduler.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Buttons/PressedButtonScheduler.h"
-
-#include "Buttons/Button.h"
-#include "Commands/Command.h"
-
-PressedButtonScheduler::PressedButtonScheduler(bool last, Trigger *button, Command *orders) :
-	ButtonScheduler(last, button, orders)
-{
-}
-
-void PressedButtonScheduler::Execute()
-{
-	if (m_button->Grab())
-	{
-		if (!m_pressedLast)
-		{
-			m_pressedLast = true;
-			m_command->Start();
-		}
-	}
-	else
-	{
-		m_pressedLast = false;
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/Buttons/PressedButtonScheduler.h b/aos/externals/WPILib/WPILib/Buttons/PressedButtonScheduler.h
deleted file mode 100644
index a69320b..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/PressedButtonScheduler.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __PRESSED_BUTTON_SCHEDULER_H__
-#define __PRESSED_BUTTON_SCHEDULER_H__
-
-#include "Buttons/ButtonScheduler.h"
-
-class Trigger;
-class Command;
-
-class PressedButtonScheduler : public ButtonScheduler
-{
-public:
-	PressedButtonScheduler(bool last, Trigger *button, Command *orders);
-	virtual ~PressedButtonScheduler() {}
-	virtual void Execute();
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Buttons/ReleasedButtonScheduler.cpp b/aos/externals/WPILib/WPILib/Buttons/ReleasedButtonScheduler.cpp
deleted file mode 100644
index 8715573..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/ReleasedButtonScheduler.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Buttons/ReleasedButtonScheduler.h"
-
-#include "Buttons/Button.h"
-#include "Commands/Command.h"
-
-ReleasedButtonScheduler::ReleasedButtonScheduler(bool last, Trigger *button, Command *orders) :
-	ButtonScheduler(last, button, orders)
-{
-}
-
-void ReleasedButtonScheduler::Execute()
-{
-	if (m_button->Grab())
-	{
-		m_pressedLast = true;
-	}
-	else
-	{
-		if (m_pressedLast)
-		{
-			m_pressedLast = false;
-			m_command->Start();
-		}
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/Buttons/ReleasedButtonScheduler.h b/aos/externals/WPILib/WPILib/Buttons/ReleasedButtonScheduler.h
deleted file mode 100644
index 198a1d3..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/ReleasedButtonScheduler.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __RELEASED_BUTTON_SCHEDULER_H__
-#define __RELEASED_BUTTON_SCHEDULER_H__
-
-#include "Buttons/ButtonScheduler.h"
-
-class Trigger;
-class Command;
-
-class ReleasedButtonScheduler : public ButtonScheduler
-{
-public:
-	ReleasedButtonScheduler(bool last, Trigger *button, Command *orders);
-	virtual ~ReleasedButtonScheduler() {}
-	virtual void Execute();
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Buttons/ToggleButtonScheduler.cpp b/aos/externals/WPILib/WPILib/Buttons/ToggleButtonScheduler.cpp
deleted file mode 100644
index ed72160..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/ToggleButtonScheduler.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Buttons/ToggleButtonScheduler.h"
-
-#include "Buttons/Button.h"
-#include "Commands/Command.h"
-
-ToggleButtonScheduler::ToggleButtonScheduler(bool last, Trigger *button,
-		Command *orders) :
-	ButtonScheduler(last, button, orders) {
-	pressedLast = m_button->Grab();
-}
-
-void ToggleButtonScheduler::Execute() {
-	if (m_button->Grab()) {
-		if (!pressedLast) {
-			pressedLast = true;
-			if (m_command->IsRunning()) {
-				m_command->Cancel();
-			} else {
-				m_command->Start();
-			}
-		}
-	} else {
-		pressedLast = false;
-	}
-}
-
diff --git a/aos/externals/WPILib/WPILib/Buttons/ToggleButtonScheduler.h b/aos/externals/WPILib/WPILib/Buttons/ToggleButtonScheduler.h
deleted file mode 100644
index e0987e5..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/ToggleButtonScheduler.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __TOGGLE_BUTTON_SCHEDULER_H__
-#define __TOGGLE_BUTTON_SCHEDULER_H__
-
-#include "Buttons/ButtonScheduler.h"
-
-class Trigger;
-class Command;
-
-class ToggleButtonScheduler : public ButtonScheduler
-{
-public:
-	ToggleButtonScheduler(bool last, Trigger *button, Command *orders);
-	virtual ~ToggleButtonScheduler() {}
-	virtual void Execute();
-private:
-	bool pressedLast;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Buttons/Trigger.cpp b/aos/externals/WPILib/WPILib/Buttons/Trigger.cpp
deleted file mode 100644
index 55b865b..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/Trigger.cpp
+++ /dev/null
@@ -1,75 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Buttons/Button.h"
-
-#include "Buttons/HeldButtonScheduler.h"
-#include "Buttons/PressedButtonScheduler.h"
-#include "Buttons/ReleasedButtonScheduler.h"
-#include "Buttons/ToggleButtonScheduler.h"
-#include "Buttons/CancelButtonScheduler.h"
-
-Trigger::Trigger() {
-	m_table = NULL;
-}
-
-bool Trigger::Grab()
-{
-	if (Get())
-		return true;
-	else if (m_table != NULL)
-	{
-		//if (m_table->isConnected())//TODO is connected on button?
-			return m_table->GetBoolean("pressed");
-		/*else
-			return false;*/
-	}
-	else
-		return false;
-}
-
-void Trigger::WhenActive(Command *command)
-{
-	PressedButtonScheduler *pbs = new PressedButtonScheduler(Grab(), this, command);
-	pbs->Start();
-}
-
-void Trigger::WhileActive(Command *command)
-{
-	HeldButtonScheduler *hbs = new HeldButtonScheduler(Grab(), this, command);
-	hbs->Start();
-}
-
-void Trigger::WhenInactive(Command *command)
-{
-	ReleasedButtonScheduler *rbs = new ReleasedButtonScheduler(Grab(), this, command);
-	rbs->Start();
-}
-
-void Trigger::CancelWhenActive(Command *command) {
-	CancelButtonScheduler *cbs = new CancelButtonScheduler(Grab(), this, command);
-	cbs->Start();
-}
-
-void Trigger::ToggleWhenActive(Command *command) {
-	ToggleButtonScheduler *tbs = new ToggleButtonScheduler(Grab(), this, command);
-	tbs->Start();
-}
-
-std::string Trigger::GetSmartDashboardType(){
-	return "Button";
-}
-
-void Trigger::InitTable(ITable* table){
-	m_table = table;
-	if(m_table!=NULL){
-		m_table->PutBoolean("pressed", Get());
-	}
-}
-
-ITable* Trigger::GetTable(){
-	return m_table;
-}
diff --git a/aos/externals/WPILib/WPILib/Buttons/Trigger.h b/aos/externals/WPILib/WPILib/Buttons/Trigger.h
deleted file mode 100644
index 509fc82..0000000
--- a/aos/externals/WPILib/WPILib/Buttons/Trigger.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __TRIGGER_H__
-#define __TRIGGER_H__
-
-#include "SmartDashboard/Sendable.h"
-
-class Command;
-
-/**
- * This class provides an easy way to link commands to inputs.
- *
- * It is very easy to link a polled input to a command.  For instance, you could
- * link the trigger button of a joystick to a "score" command or an encoder reaching
- * a particular value.
- *
- * It is encouraged that teams write a subclass of Trigger if they want to have
- * something unusual (for instance, if they want to react to the user holding
- * a button while the robot is reading a certain sensor input).  For this, they
- * only have to write the {@link Trigger#Get()} method to get the full functionality
- * of the Trigger class.
- *
- * @author Brad Miller, Joe Grinstead
- */
-class Trigger : public Sendable
-{
-public:
-	Trigger();
-	virtual ~Trigger() {}
-	bool Grab();
-	virtual bool Get() = 0;
-	void WhenActive(Command *command);
-	void WhileActive(Command *command);
-	void WhenInactive(Command *command);
-	void CancelWhenActive(Command *command);
-	void ToggleWhenActive(Command *command);
-	
-	virtual void InitTable(ITable* table);
-	virtual ITable* GetTable();
-	virtual std::string GetSmartDashboardType();
-protected:
-	ITable* m_table;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/CAN/JaguarCANDriver.h b/aos/externals/WPILib/WPILib/CAN/JaguarCANDriver.h
deleted file mode 100644
index 171dcd6..0000000
--- a/aos/externals/WPILib/WPILib/CAN/JaguarCANDriver.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2009. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-// JaguarCANDriver.h
-//
-//  Defines the API for building a CAN Interface Plugin to support
-//    PWM-cable-free CAN motor control on FRC robots.  This allows you
-//    to connect any CAN interface to the secure Jaguar CAN driver.
-//
-
-#ifndef __JaguarCANDriver_h__
-#define __JaguarCANDriver_h__
-
-#include <vxWorks.h>
-
-#ifdef __cplusplus
-extern "C"
-{
-#endif
-
-	void FRC_NetworkCommunication_JaguarCANDriver_sendMessage(uint32_t messageID, const uint8_t *data, uint8_t dataSize, int32_t *status);
-	void FRC_NetworkCommunication_JaguarCANDriver_receiveMessage(uint32_t *messageID, uint8_t *data, uint8_t *dataSize, uint32_t timeoutMs, int32_t *status);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // __JaguarCANDriver_h__
diff --git a/aos/externals/WPILib/WPILib/CAN/can_proto.h b/aos/externals/WPILib/WPILib/CAN/can_proto.h
deleted file mode 100644
index 5113b02..0000000
--- a/aos/externals/WPILib/WPILib/CAN/can_proto.h
+++ /dev/null
@@ -1,428 +0,0 @@
-//*****************************************************************************
-//
-// can_proto.h - Definitions for the CAN protocol used to communicate with the
-//               BDC motor controller.
-//
-// Copyright (c) 2008 Texas Instruments Incorporated.  All rights reserved.
-// TI Information - Selective Disclosure
-//
-//*****************************************************************************
-
-#ifndef __CAN_PROTO_H__
-#define __CAN_PROTO_H__
-
-//*****************************************************************************
-//
-// The masks of the fields that are used in the message identifier.
-//
-//*****************************************************************************
-#define CAN_MSGID_FULL_M        0x1fffffff
-#define CAN_MSGID_DEVNO_M       0x0000003f
-#define CAN_MSGID_API_M         0x0000ffc0
-#define CAN_MSGID_MFR_M         0x00ff0000
-#define CAN_MSGID_DTYPE_M       0x1f000000
-#define CAN_MSGID_DEVNO_S       0
-#define CAN_MSGID_API_S         6
-#define CAN_MSGID_MFR_S         16
-#define CAN_MSGID_DTYPE_S       24
-
-//*****************************************************************************
-//
-// The Reserved device number values in the Message Id.
-//
-//*****************************************************************************
-#define CAN_MSGID_DEVNO_BCAST   0x00000000
-
-//*****************************************************************************
-//
-// The Reserved system control API numbers in the Message Id.
-//
-//*****************************************************************************
-#define CAN_MSGID_API_SYSHALT   0x00000000
-#define CAN_MSGID_API_SYSRST    0x00000040
-#define CAN_MSGID_API_DEVASSIGN 0x00000080
-#define CAN_MSGID_API_DEVQUERY  0x000000c0
-#define CAN_MSGID_API_HEARTBEAT 0x00000140
-#define CAN_MSGID_API_SYNC      0x00000180
-#define CAN_MSGID_API_UPDATE    0x000001c0
-#define CAN_MSGID_API_FIRMVER   0x00000200
-#define CAN_MSGID_API_ENUMERATE 0x00000240
-#define CAN_MSGID_API_SYSRESUME 0x00000280
-
-//*****************************************************************************
-//
-// The 32 bit values associated with the CAN_MSGID_API_STATUS request.
-//
-//*****************************************************************************
-#define CAN_STATUS_CODE_M       0x0000ffff
-#define CAN_STATUS_MFG_M        0x00ff0000
-#define CAN_STATUS_DTYPE_M      0x1f000000
-#define CAN_STATUS_CODE_S       0
-#define CAN_STATUS_MFG_S        16
-#define CAN_STATUS_DTYPE_S      24
-
-//*****************************************************************************
-//
-// The Reserved manufacturer identifiers in the Message Id.
-//
-//*****************************************************************************
-#define CAN_MSGID_MFR_NI        0x00010000
-#define CAN_MSGID_MFR_LM        0x00020000
-#define CAN_MSGID_MFR_DEKA      0x00030000
-
-//*****************************************************************************
-//
-// The Reserved device type identifiers in the Message Id.
-//
-//*****************************************************************************
-#define CAN_MSGID_DTYPE_BCAST   0x00000000
-#define CAN_MSGID_DTYPE_ROBOT   0x01000000
-#define CAN_MSGID_DTYPE_MOTOR   0x02000000
-#define CAN_MSGID_DTYPE_RELAY   0x03000000
-#define CAN_MSGID_DTYPE_GYRO    0x04000000
-#define CAN_MSGID_DTYPE_ACCEL   0x05000000
-#define CAN_MSGID_DTYPE_USONIC  0x06000000
-#define CAN_MSGID_DTYPE_GEART   0x07000000
-#define CAN_MSGID_DTYPE_UPDATE  0x1f000000
-
-//*****************************************************************************
-//
-// LM Motor Control API Classes API Class and ID masks.
-//
-//*****************************************************************************
-#define CAN_MSGID_API_CLASS_M   0x0000fc00
-#define CAN_MSGID_API_ID_M      0x000003c0
-
-//*****************************************************************************
-//
-// LM Motor Control API Classes in the Message Id for non-broadcast.
-// These are the upper 6 bits of the API field, the lower 4 bits determine
-// the APIId.
-//
-//*****************************************************************************
-#define CAN_API_MC_VOLTAGE      0x00000000
-#define CAN_API_MC_SPD          0x00000400
-#define CAN_API_MC_VCOMP        0x00000800
-#define CAN_API_MC_POS          0x00000c00
-#define CAN_API_MC_ICTRL        0x00001000
-#define CAN_API_MC_STATUS       0x00001400
-#define CAN_API_MC_PSTAT        0x00001800
-#define CAN_API_MC_CFG          0x00001c00
-#define CAN_API_MC_ACK          0x00002000
-
-//*****************************************************************************
-//
-// The Stellaris Motor Class Control Voltage API definitions.
-//
-//*****************************************************************************
-#define LM_API_VOLT             (CAN_MSGID_MFR_LM | CAN_MSGID_DTYPE_MOTOR |   \
-                                 CAN_API_MC_VOLTAGE)
-#define LM_API_VOLT_EN          (LM_API_VOLT | (0 << CAN_MSGID_API_S))
-#define LM_API_VOLT_DIS         (LM_API_VOLT | (1 << CAN_MSGID_API_S))
-#define LM_API_VOLT_SET         (LM_API_VOLT | (2 << CAN_MSGID_API_S))
-#define LM_API_VOLT_SET_RAMP    (LM_API_VOLT | (3 << CAN_MSGID_API_S))
-//##### FIRST BEGIN #####
-#define LM_API_VOLT_T_EN        (LM_API_VOLT | (4 << CAN_MSGID_API_S))
-#define LM_API_VOLT_T_SET       (LM_API_VOLT | (5 << CAN_MSGID_API_S))
-#define LM_API_VOLT_T_SET_NO_ACK                                              \
-                                (LM_API_VOLT | (7 << CAN_MSGID_API_S))
-//##### FIRST END #####
-#define LM_API_VOLT_SET_NO_ACK  (LM_API_VOLT | (8 << CAN_MSGID_API_S))
-
-//*****************************************************************************
-//
-// The Stellaris Motor Class Control API definitions for LM_API_VOLT_SET_RAMP.
-//
-//*****************************************************************************
-#define LM_API_VOLT_RAMP_DIS    0
-
-//*****************************************************************************
-//
-// The Stellaris Motor Class Control API definitions for CAN_MSGID_API_SYNC.
-//
-//*****************************************************************************
-#define LM_API_SYNC_PEND_NOW    0
-
-//*****************************************************************************
-//
-// The Stellaris Motor Class Speed Control API definitions.
-//
-//*****************************************************************************
-#define LM_API_SPD              (CAN_MSGID_MFR_LM | CAN_MSGID_DTYPE_MOTOR |   \
-                                 CAN_API_MC_SPD)
-#define LM_API_SPD_EN           (LM_API_SPD | (0 << CAN_MSGID_API_S))
-#define LM_API_SPD_DIS          (LM_API_SPD | (1 << CAN_MSGID_API_S))
-#define LM_API_SPD_SET          (LM_API_SPD | (2 << CAN_MSGID_API_S))
-#define LM_API_SPD_PC           (LM_API_SPD | (3 << CAN_MSGID_API_S))
-#define LM_API_SPD_IC           (LM_API_SPD | (4 << CAN_MSGID_API_S))
-#define LM_API_SPD_DC           (LM_API_SPD | (5 << CAN_MSGID_API_S))
-#define LM_API_SPD_REF          (LM_API_SPD | (6 << CAN_MSGID_API_S))
-//##### FIRST BEGIN #####
-#define LM_API_SPD_T_EN         (LM_API_SPD | (7 << CAN_MSGID_API_S))
-#define LM_API_SPD_T_SET        (LM_API_SPD | (8 << CAN_MSGID_API_S))
-#define LM_API_SPD_T_SET_NO_ACK (LM_API_SPD | (10 << CAN_MSGID_API_S))
-//##### FIRST END #####
-#define LM_API_SPD_SET_NO_ACK   (LM_API_SPD | (11 << CAN_MSGID_API_S))
-
-//*****************************************************************************
-//
-// The Stellaris Motor Control Voltage Compensation Control API definitions.
-//
-//*****************************************************************************
-#define LM_API_VCOMP            (CAN_MSGID_MFR_LM | CAN_MSGID_DTYPE_MOTOR |   \
-                                 CAN_API_MC_VCOMP)
-#define LM_API_VCOMP_EN         (LM_API_VCOMP | (0 << CAN_MSGID_API_S))
-#define LM_API_VCOMP_DIS        (LM_API_VCOMP | (1 << CAN_MSGID_API_S))
-#define LM_API_VCOMP_SET        (LM_API_VCOMP | (2 << CAN_MSGID_API_S))
-#define LM_API_VCOMP_IN_RAMP    (LM_API_VCOMP | (3 << CAN_MSGID_API_S))
-#define LM_API_VCOMP_COMP_RAMP  (LM_API_VCOMP | (4 << CAN_MSGID_API_S))
-//##### FIRST BEGIN #####
-#define LM_API_VCOMP_T_EN       (LM_API_VCOMP | (5 << CAN_MSGID_API_S))
-#define LM_API_VCOMP_T_SET      (LM_API_VCOMP | (6 << CAN_MSGID_API_S))
-#define LM_API_VCOMP_T_SET_NO_ACK                                             \
-                                (LM_API_VCOMP | (8 << CAN_MSGID_API_S))
-//##### FIRST END #####
-#define LM_API_VCOMP_SET_NO_ACK (LM_API_VCOMP | (9 << CAN_MSGID_API_S))
-
-//*****************************************************************************
-//
-// The Stellaris Motor Class Position Control API definitions.
-//
-//*****************************************************************************
-#define LM_API_POS              (CAN_MSGID_MFR_LM | CAN_MSGID_DTYPE_MOTOR |   \
-                                 CAN_API_MC_POS)
-#define LM_API_POS_EN           (LM_API_POS | (0 << CAN_MSGID_API_S))
-#define LM_API_POS_DIS          (LM_API_POS | (1 << CAN_MSGID_API_S))
-#define LM_API_POS_SET          (LM_API_POS | (2 << CAN_MSGID_API_S))
-#define LM_API_POS_PC           (LM_API_POS | (3 << CAN_MSGID_API_S))
-#define LM_API_POS_IC           (LM_API_POS | (4 << CAN_MSGID_API_S))
-#define LM_API_POS_DC           (LM_API_POS | (5 << CAN_MSGID_API_S))
-#define LM_API_POS_REF          (LM_API_POS | (6 << CAN_MSGID_API_S))
-//##### FIRST BEGIN #####
-#define LM_API_POS_T_EN         (LM_API_POS | (7 << CAN_MSGID_API_S))
-#define LM_API_POS_T_SET        (LM_API_POS | (8 << CAN_MSGID_API_S))
-#define LM_API_POS_T_SET_NO_ACK (LM_API_POS | (10 << CAN_MSGID_API_S))
-//##### FIRST END #####
-#define LM_API_POS_SET_NO_ACK   (LM_API_POS | (11 << CAN_MSGID_API_S))
-
-//*****************************************************************************
-//
-// The Stellaris Motor Class Current Control API definitions.
-//
-//*****************************************************************************
-#define LM_API_ICTRL            (CAN_MSGID_MFR_LM | CAN_MSGID_DTYPE_MOTOR |   \
-                                 CAN_API_MC_ICTRL)
-#define LM_API_ICTRL_EN         (LM_API_ICTRL | (0 << CAN_MSGID_API_S))
-#define LM_API_ICTRL_DIS        (LM_API_ICTRL | (1 << CAN_MSGID_API_S))
-#define LM_API_ICTRL_SET        (LM_API_ICTRL | (2 << CAN_MSGID_API_S))
-#define LM_API_ICTRL_PC         (LM_API_ICTRL | (3 << CAN_MSGID_API_S))
-#define LM_API_ICTRL_IC         (LM_API_ICTRL | (4 << CAN_MSGID_API_S))
-#define LM_API_ICTRL_DC         (LM_API_ICTRL | (5 << CAN_MSGID_API_S))
-//##### FIRST BEGIN #####
-#define LM_API_ICTRL_T_EN       (LM_API_ICTRL | (6 << CAN_MSGID_API_S))
-#define LM_API_ICTRL_T_SET      (LM_API_ICTRL | (7 << CAN_MSGID_API_S))
-#define LM_API_ICTRL_T_SET_NO_ACK                                             \
-                                (LM_API_ICTRL | (9 << CAN_MSGID_API_S))
-//##### FIRST END #####
-#define LM_API_ICTRL_SET_NO_ACK (LM_API_ICTRL | (10 << CAN_MSGID_API_S))
-
-//*****************************************************************************
-//
-// The Stellaris Motor Class Firmware Update API definitions.
-//
-//*****************************************************************************
-#define LM_API_UPD              (CAN_MSGID_MFR_LM | CAN_MSGID_DTYPE_UPDATE)
-#define LM_API_UPD_PING         (LM_API_UPD | (0 << CAN_MSGID_API_S))
-#define LM_API_UPD_DOWNLOAD     (LM_API_UPD | (1 << CAN_MSGID_API_S))
-#define LM_API_UPD_SEND_DATA    (LM_API_UPD | (2 << CAN_MSGID_API_S))
-#define LM_API_UPD_RESET        (LM_API_UPD | (3 << CAN_MSGID_API_S))
-#define LM_API_UPD_ACK          (LM_API_UPD | (4 << CAN_MSGID_API_S))
-#define LM_API_HWVER            (LM_API_UPD | (5 << CAN_MSGID_API_S))
-#define LM_API_UPD_REQUEST      (LM_API_UPD | (6 << CAN_MSGID_API_S))
-//##### FIRST BEGIN #####
-#define LM_API_UNTRUST_EN       (LM_API_UPD | (11 << CAN_MSGID_API_S))
-#define LM_API_TRUST_EN         (LM_API_UPD | (12 << CAN_MSGID_API_S))
-#define LM_API_TRUST_HEARTBEAT  (LM_API_UPD | (13 << CAN_MSGID_API_S))
-//##### FIRST END #####
-
-//*****************************************************************************
-//
-// The Stellaris Motor Class Status API definitions.
-//
-//*****************************************************************************
-#define LM_API_STATUS           (CAN_MSGID_MFR_LM | CAN_MSGID_DTYPE_MOTOR |   \
-                                 CAN_API_MC_STATUS)
-#define LM_API_STATUS_VOLTOUT   (LM_API_STATUS | (0 << CAN_MSGID_API_S))
-#define LM_API_STATUS_VOLTBUS   (LM_API_STATUS | (1 << CAN_MSGID_API_S))
-#define LM_API_STATUS_CURRENT   (LM_API_STATUS | (2 << CAN_MSGID_API_S))
-#define LM_API_STATUS_TEMP      (LM_API_STATUS | (3 << CAN_MSGID_API_S))
-#define LM_API_STATUS_POS       (LM_API_STATUS | (4 << CAN_MSGID_API_S))
-#define LM_API_STATUS_SPD       (LM_API_STATUS | (5 << CAN_MSGID_API_S))
-#define LM_API_STATUS_LIMIT     (LM_API_STATUS | (6 << CAN_MSGID_API_S))
-#define LM_API_STATUS_FAULT     (LM_API_STATUS | (7 << CAN_MSGID_API_S))
-#define LM_API_STATUS_POWER     (LM_API_STATUS | (8 << CAN_MSGID_API_S))
-#define LM_API_STATUS_CMODE     (LM_API_STATUS | (9 << CAN_MSGID_API_S))
-#define LM_API_STATUS_VOUT      (LM_API_STATUS | (10 << CAN_MSGID_API_S))
-#define LM_API_STATUS_STKY_FLT  (LM_API_STATUS | (11 << CAN_MSGID_API_S))
-#define LM_API_STATUS_FLT_COUNT (LM_API_STATUS | (12 << CAN_MSGID_API_S))
-
-//*****************************************************************************
-//
-// These definitions are used with the byte that is returned from
-// the status request for LM_API_STATUS_LIMIT.
-//
-//*****************************************************************************
-#define LM_STATUS_LIMIT_FWD     0x01
-#define LM_STATUS_LIMIT_REV     0x02
-#define LM_STATUS_LIMIT_SFWD    0x04
-#define LM_STATUS_LIMIT_SREV    0x08
-#define LM_STATUS_LIMIT_STKY_FWD                                              \
-                                0x10
-#define LM_STATUS_LIMIT_STKY_REV                                              \
-                                0x20
-#define LM_STATUS_LIMIT_STKY_SFWD                                             \
-                                0x40
-#define LM_STATUS_LIMIT_STKY_SREV                                             \
-                                0x80
-
-//*****************************************************************************
-//
-// LM Motor Control status codes returned due to the CAN_STATUS_CODE_M field.
-//
-//*****************************************************************************
-#define LM_STATUS_FAULT_ILIMIT  0x01
-#define LM_STATUS_FAULT_TLIMIT  0x02
-#define LM_STATUS_FAULT_VLIMIT  0x04
-
-//*****************************************************************************
-//
-// The Stellaris Motor Class Configuration API definitions.
-//
-//*****************************************************************************
-#define LM_API_CFG              (CAN_MSGID_MFR_LM | CAN_MSGID_DTYPE_MOTOR |   \
-                                 CAN_API_MC_CFG)
-#define LM_API_CFG_NUM_BRUSHES  (LM_API_CFG | (0 << CAN_MSGID_API_S))
-#define LM_API_CFG_ENC_LINES    (LM_API_CFG | (1 << CAN_MSGID_API_S))
-#define LM_API_CFG_POT_TURNS    (LM_API_CFG | (2 << CAN_MSGID_API_S))
-#define LM_API_CFG_BRAKE_COAST  (LM_API_CFG | (3 << CAN_MSGID_API_S))
-#define LM_API_CFG_LIMIT_MODE   (LM_API_CFG | (4 << CAN_MSGID_API_S))
-#define LM_API_CFG_LIMIT_FWD    (LM_API_CFG | (5 << CAN_MSGID_API_S))
-#define LM_API_CFG_LIMIT_REV    (LM_API_CFG | (6 << CAN_MSGID_API_S))
-#define LM_API_CFG_MAX_VOUT     (LM_API_CFG | (7 << CAN_MSGID_API_S))
-#define LM_API_CFG_FAULT_TIME   (LM_API_CFG | (8 << CAN_MSGID_API_S))
-
-//*****************************************************************************
-//
-// The Stellaris ACK API definition.
-//
-//*****************************************************************************
-#define LM_API_ACK              (CAN_MSGID_MFR_LM | CAN_MSGID_DTYPE_MOTOR |   \
-                                 CAN_API_MC_ACK)
-
-//*****************************************************************************
-//
-// The 8 bit values that can be returned by a call to LM_API_STATUS_HWVER.
-//
-//*****************************************************************************
-#define LM_HWVER_UNKNOWN        0x00
-#define LM_HWVER_JAG_1_0        0x01
-#define LM_HWVER_JAG_2_0        0x02
-
-//*****************************************************************************
-//
-// The 8 bit values that can be returned by a call to LM_API_STATUS_CMODE.
-//
-//*****************************************************************************
-#define LM_STATUS_CMODE_VOLT    0x00
-#define LM_STATUS_CMODE_CURRENT 0x01
-#define LM_STATUS_CMODE_SPEED   0x02
-#define LM_STATUS_CMODE_POS     0x03
-#define LM_STATUS_CMODE_VCOMP   0x04
-
-//*****************************************************************************
-//
-// The values that can specified as the position or speed reference.  Not all
-// values are valid for each reference; if an invalid reference is set, then
-// none will be selected.
-//
-//*****************************************************************************
-#define LM_REF_ENCODER          0x00
-#define LM_REF_POT              0x01
-#define LM_REF_INV_ENCODER      0x02
-#define LM_REF_QUAD_ENCODER     0x03
-#define LM_REF_NONE             0xff
-
-//*****************************************************************************
-//
-// The flags that are used to indicate the currently active fault sources.
-//
-//*****************************************************************************
-#define LM_FAULT_CURRENT        0x01
-#define LM_FAULT_TEMP           0x02
-#define LM_FAULT_VBUS           0x04
-#define LM_FAULT_GATE_DRIVE     0x08
-#define LM_FAULT_COMM           0x10
-
-//*****************************************************************************
-//
-// The Stellaris Motor Class Periodic Status API definitions.
-//
-//*****************************************************************************
-#define LM_API_PSTAT            (CAN_MSGID_MFR_LM | CAN_MSGID_DTYPE_MOTOR |   \
-                                 CAN_API_MC_PSTAT)
-#define LM_API_PSTAT_PER_EN_S0  (LM_API_PSTAT | (0 << CAN_MSGID_API_S))
-#define LM_API_PSTAT_PER_EN_S1  (LM_API_PSTAT | (1 << CAN_MSGID_API_S))
-#define LM_API_PSTAT_PER_EN_S2  (LM_API_PSTAT | (2 << CAN_MSGID_API_S))
-#define LM_API_PSTAT_PER_EN_S3  (LM_API_PSTAT | (3 << CAN_MSGID_API_S))
-#define LM_API_PSTAT_CFG_S0     (LM_API_PSTAT | (4 << CAN_MSGID_API_S))
-#define LM_API_PSTAT_CFG_S1     (LM_API_PSTAT | (5 << CAN_MSGID_API_S))
-#define LM_API_PSTAT_CFG_S2     (LM_API_PSTAT | (6 << CAN_MSGID_API_S))
-#define LM_API_PSTAT_CFG_S3     (LM_API_PSTAT | (7 << CAN_MSGID_API_S))
-#define LM_API_PSTAT_DATA_S0    (LM_API_PSTAT | (8 << CAN_MSGID_API_S))
-#define LM_API_PSTAT_DATA_S1    (LM_API_PSTAT | (9 << CAN_MSGID_API_S))
-#define LM_API_PSTAT_DATA_S2    (LM_API_PSTAT | (10 << CAN_MSGID_API_S))
-#define LM_API_PSTAT_DATA_S3    (LM_API_PSTAT | (11 << CAN_MSGID_API_S))
-
-//*****************************************************************************
-//
-// The values that can be used to configure the data the Periodic Status
-// Message bytes.  Bytes of a multi-byte data values are encoded as
-// little-endian, therefore B0 is the least significant byte.
-//
-//*****************************************************************************
-#define LM_PSTAT_END            0
-#define LM_PSTAT_VOLTOUT_B0     1
-#define LM_PSTAT_VOLTOUT_B1     2
-#define LM_PSTAT_VOLTBUS_B0     3
-#define LM_PSTAT_VOLTBUS_B1     4
-#define LM_PSTAT_CURRENT_B0     5
-#define LM_PSTAT_CURRENT_B1     6
-#define LM_PSTAT_TEMP_B0        7
-#define LM_PSTAT_TEMP_B1        8
-#define LM_PSTAT_POS_B0         9
-#define LM_PSTAT_POS_B1         10
-#define LM_PSTAT_POS_B2         11
-#define LM_PSTAT_POS_B3         12
-#define LM_PSTAT_SPD_B0         13
-#define LM_PSTAT_SPD_B1         14
-#define LM_PSTAT_SPD_B2         15
-#define LM_PSTAT_SPD_B3         16
-#define LM_PSTAT_LIMIT_NCLR     17
-#define LM_PSTAT_LIMIT_CLR      18
-#define LM_PSTAT_FAULT          19
-#define LM_PSTAT_STKY_FLT_NCLR  20
-#define LM_PSTAT_STKY_FLT_CLR   21
-#define LM_PSTAT_VOUT_B0        22
-#define LM_PSTAT_VOUT_B1        23
-#define LM_PSTAT_FLT_COUNT_CURRENT \
-                                24
-#define LM_PSTAT_FLT_COUNT_TEMP 25
-#define LM_PSTAT_FLT_COUNT_VOLTBUS \
-                                26
-#define LM_PSTAT_FLT_COUNT_GATE 27
-#define LM_PSTAT_FLT_COUNT_COMM 28
-#define LM_PSTAT_CANSTS         29
-#define LM_PSTAT_CANERR_B0      30
-#define LM_PSTAT_CANERR_B1      31
-
-#endif // __CAN_PROTO_H__
diff --git a/aos/externals/WPILib/WPILib/CANJaguar.cpp b/aos/externals/WPILib/WPILib/CANJaguar.cpp
deleted file mode 100644
index bafa8a1..0000000
--- a/aos/externals/WPILib/WPILib/CANJaguar.cpp
+++ /dev/null
@@ -1,1276 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2009. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "CANJaguar.h"
-#define tNIRIO_i32 int
-#include "ChipObject/NiFpga.h"
-#include "CAN/JaguarCANDriver.h"
-#include "CAN/can_proto.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "WPIErrors.h"
-#include <stdio.h>
-#include "LiveWindow/LiveWindow.h"
-
-#define swap16(x) ( (((x)>>8) &0x00FF) \
-                  | (((x)<<8) &0xFF00) )
-#define swap32(x) ( (((x)>>24)&0x000000FF) \
-                  | (((x)>>8) &0x0000FF00) \
-                  | (((x)<<8) &0x00FF0000) \
-                  | (((x)<<24)&0xFF000000) )
-
-#define kFullMessageIDMask (CAN_MSGID_API_M | CAN_MSGID_MFR_M | CAN_MSGID_DTYPE_M)
-
-const int32_t CANJaguar::kControllerRate;
-constexpr double CANJaguar::kApproxBusVoltage;
-
-/**
- * Common initialization code called by all constructors.
- */
-void CANJaguar::InitCANJaguar()
-{
-	m_table = NULL;
-	m_transactionSemaphore = semMCreate(SEM_Q_PRIORITY | SEM_INVERSION_SAFE | SEM_DELETE_SAFE);
-	if (m_deviceNumber < 1 || m_deviceNumber > 63)
-	{
-		char buf[256];
-		snprintf(buf, 256, "device number \"%d\" must be between 1 and 63", m_deviceNumber);
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, buf);
-		return;
-	}
-	uint32_t fwVer = GetFirmwareVersion();
-	if (StatusIsFatal())
-		return;
-	// 3330 was the first shipping RDK firmware version for the Jaguar
-	if (fwVer >= 3330 || fwVer < 101)
-	{
-		char buf[256];
-		if (fwVer < 3330)
-		{
-			snprintf(buf, 256, "Jag #%d firmware (%d) is too old (must be at least version 101 of the FIRST approved firmware)", m_deviceNumber, fwVer);
-		}
-		else
-		{
-			snprintf(buf, 256, "Jag #%d firmware (%d) is not FIRST approved (must be at least version 101 of the FIRST approved firmware)", m_deviceNumber, fwVer);
-		}
-		wpi_setWPIErrorWithContext(JaguarVersionError, buf);
-		return;
-	}
-	switch (m_controlMode)
-	{
-	case kPercentVbus:
-	case kVoltage:
-		// No additional configuration required... start enabled.
-		EnableControl();
-		break;
-	default:
-		break;
-	}
-	m_safetyHelper = new MotorSafetyHelper(this);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_CANJaguar, m_deviceNumber, m_controlMode);
-	LiveWindow::GetInstance()->AddActuator("CANJaguar", m_deviceNumber, 0, this);
-}
-
-/**
- * Constructor
- * 
- * @param deviceNumber The the address of the Jaguar on the CAN bus.
- */
-CANJaguar::CANJaguar(uint8_t deviceNumber, ControlMode controlMode)
-	: m_deviceNumber (deviceNumber)
-	, m_controlMode (controlMode)
-	, m_transactionSemaphore (NULL)
-	, m_maxOutputVoltage (kApproxBusVoltage)
-	, m_safetyHelper (NULL)
-{
-	InitCANJaguar();
-}
-
-CANJaguar::~CANJaguar()
-{
-	delete m_safetyHelper;
-	m_safetyHelper = NULL;
-	semDelete(m_transactionSemaphore);
-	m_transactionSemaphore = NULL;
-}
-
-/**
- * Set the output set-point value.  
- * 
- * The scale and the units depend on the mode the Jaguar is in.
- * In PercentVbus Mode, the outputValue is from -1.0 to 1.0 (same as PWM Jaguar).
- * In Voltage Mode, the outputValue is in Volts.
- * In Current Mode, the outputValue is in Amps.
- * In Speed Mode, the outputValue is in Rotations/Minute.
- * In Position Mode, the outputValue is in Rotations.
- * 
- * @param outputValue The set-point to sent to the motor controller.
- * @param syncGroup The update group to add this Set() to, pending UpdateSyncGroup().  If 0, update immediately.
- */
-void CANJaguar::Set(float outputValue, uint8_t syncGroup)
-{
-	uint32_t messageID;
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	if (m_safetyHelper && !m_safetyHelper->IsAlive())
-	{
-		EnableControl();
-	}
-
-	switch(m_controlMode)
-	{
-	case kPercentVbus:
-		{
-			messageID = LM_API_VOLT_T_SET;
-			if (outputValue > 1.0) outputValue = 1.0;
-			if (outputValue < -1.0) outputValue = -1.0;
-			dataSize = packPercentage(dataBuffer, outputValue);
-		}
-		break;
-	case kSpeed:
-		{
-			messageID = LM_API_SPD_T_SET;
-			dataSize = packFXP16_16(dataBuffer, outputValue);
-		}
-		break;
-	case kPosition:
-		{
-			messageID = LM_API_POS_T_SET;
-			dataSize = packFXP16_16(dataBuffer, outputValue);
-		}
-		break;
-	case kCurrent:
-		{
-			messageID = LM_API_ICTRL_T_SET;
-			dataSize = packFXP8_8(dataBuffer, outputValue);
-		}
-		break;
-	case kVoltage:
-		{
-			messageID = LM_API_VCOMP_T_SET;
-			dataSize = packFXP8_8(dataBuffer, outputValue);
-		}
-		break;
-	default:
-		return;
-	}
-	if (syncGroup != 0)
-	{
-		dataBuffer[dataSize] = syncGroup;
-		dataSize++;
-	}
-	setTransaction(messageID, dataBuffer, dataSize);
-	if (m_safetyHelper) m_safetyHelper->Feed();
-}
-
-/**
- * Get the recently set outputValue setpoint.
- * 
- * The scale and the units depend on the mode the Jaguar is in.
- * In PercentVbus Mode, the outputValue is from -1.0 to 1.0 (same as PWM Jaguar).
- * In Voltage Mode, the outputValue is in Volts.
- * In Current Mode, the outputValue is in Amps.
- * In Speed Mode, the outputValue is in Rotations/Minute.
- * In Position Mode, the outputValue is in Rotations.
- * 
- * @return The most recently set outputValue setpoint.
- */
-float CANJaguar::Get()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	switch(m_controlMode)
-	{
-	case kPercentVbus:
-		getTransaction(LM_API_VOLT_SET, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int16_t))
-		{
-			return unpackPercentage(dataBuffer);
-		}
-		break;
-	case kSpeed:
-		getTransaction(LM_API_SPD_SET, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int32_t))
-		{
-			return unpackFXP16_16(dataBuffer);
-		}
-		break;
-	case kPosition:
-		getTransaction(LM_API_POS_SET, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int32_t))
-		{
-			return unpackFXP16_16(dataBuffer);
-		}
-		break;
-	case kCurrent:
-		getTransaction(LM_API_ICTRL_SET, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int16_t))
-		{
-			return unpackFXP8_8(dataBuffer);
-		}
-		break;
-	case kVoltage:
-		getTransaction(LM_API_VCOMP_SET, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int16_t))
-		{
-			return unpackFXP8_8(dataBuffer);
-		}
-		break;
-	}
-	return 0.0;
-}
-
-/**
- * Common interface for disabling a motor.
- * 
- * @deprecated Call DisableControl instead.
- */
-void CANJaguar::Disable()
-{
-	DisableControl();
-}
-
-/**
- * Write out the PID value as seen in the PIDOutput base object.
- * 
- * @deprecated Call Set instead.
- * 
- * @param output Write out the PercentVbus value as was computed by the PIDController
- */
-void CANJaguar::PIDWrite(float output)
-{
-	if (m_controlMode == kPercentVbus)
-	{
-		Set(output);
-	}
-	else
-	{
-		wpi_setWPIErrorWithContext(IncompatibleMode, "PID only supported in PercentVbus mode");
-	}
-}
-
-uint8_t CANJaguar::packPercentage(uint8_t *buffer, double value)
-{
-	int16_t intValue = (int16_t)(value * 32767.0);
-	*((int16_t*)buffer) = swap16(intValue);
-	return sizeof(int16_t);
-}
-
-uint8_t CANJaguar::packFXP8_8(uint8_t *buffer, double value)
-{
-	int16_t intValue = (int16_t)(value * 256.0);
-	*((int16_t*)buffer) = swap16(intValue);
-	return sizeof(int16_t);
-}
-
-uint8_t CANJaguar::packFXP16_16(uint8_t *buffer, double value)
-{
-	int32_t intValue = (int32_t)(value * 65536.0);
-	*((int32_t*)buffer) = swap32(intValue);
-	return sizeof(int32_t);
-}
-
-uint8_t CANJaguar::packint16_t(uint8_t *buffer, int16_t value)
-{
-	*((int16_t*)buffer) = swap16(value);
-	return sizeof(int16_t);
-}
-
-uint8_t CANJaguar::packint32_t(uint8_t *buffer, int32_t value)
-{
-	*((int32_t*)buffer) = swap32(value);
-	return sizeof(int32_t);
-}
-
-double CANJaguar::unpackPercentage(uint8_t *buffer)
-{
-	int16_t value = *((int16_t*)buffer);
-	value = swap16(value);
-	return value / 32767.0;
-}
-
-double CANJaguar::unpackFXP8_8(uint8_t *buffer)
-{
-	int16_t value = *((int16_t*)buffer);
-	value = swap16(value);
-	return value / 256.0;
-}
-
-double CANJaguar::unpackFXP16_16(uint8_t *buffer)
-{
-	int32_t value = *((int32_t*)buffer);
-	value = swap32(value);
-	return value / 65536.0;
-}
-
-int16_t CANJaguar::unpackint16_t(uint8_t *buffer)
-{
-	int16_t value = *((int16_t*)buffer);
-	return swap16(value);
-}
-
-int32_t CANJaguar::unpackint32_t(uint8_t *buffer)
-{
-	int32_t value = *((int32_t*)buffer);
-	return swap32(value);
-}
-
-/**
- * Send a message on the CAN bus through the CAN driver in FRC_NetworkCommunication
- * 
- * Trusted messages require a 2-byte token at the beginning of the data payload.
- * If the message being sent is trusted, make space for the token.
- * 
- * @param messageID The messageID to be used on the CAN bus
- * @param data The up to 8 bytes of data to be sent with the message
- * @param dataSize Specify how much of the data in "data" to send
- * @return Status of send call
- */
-int32_t CANJaguar::sendMessage(uint32_t messageID, const uint8_t *data, uint8_t dataSize)
-{
-	static const uint32_t kTrustedMessages[] = {
-			LM_API_VOLT_T_EN, LM_API_VOLT_T_SET, LM_API_SPD_T_EN, LM_API_SPD_T_SET,
-			LM_API_VCOMP_T_EN, LM_API_VCOMP_T_SET, LM_API_POS_T_EN, LM_API_POS_T_SET,
-			LM_API_ICTRL_T_EN, LM_API_ICTRL_T_SET};
-	int32_t status=0;
-
-	for (uint8_t i=0; i<(sizeof(kTrustedMessages)/sizeof(kTrustedMessages[0])); i++)
-	{
-		if ((kFullMessageIDMask & messageID) == kTrustedMessages[i])
-		{
-			uint8_t dataBuffer[8];
-			dataBuffer[0] = 0;
-			dataBuffer[1] = 0;
-			// Make sure the data will still fit after adjusting for the token.
-			if (dataSize > 6)
-			{
-				// TODO: I would rather this not have to set the global error
-				wpi_setGlobalWPIErrorWithContext(ParameterOutOfRange, "dataSize > 6");
-				return 0;
-			}
-			for (uint8_t j=0; j < dataSize; j++)
-			{
-				dataBuffer[j + 2] = data[j];
-			}
-			FRC_NetworkCommunication_JaguarCANDriver_sendMessage(messageID, dataBuffer, dataSize + 2, &status);
-			return status;
-		}
-	}
-	FRC_NetworkCommunication_JaguarCANDriver_sendMessage(messageID, data, dataSize, &status);
-	return status;
-}
-
-/**
- * Receive a message from the CAN bus through the CAN driver in FRC_NetworkCommunication
- * 
- * @param messageID The messageID to read from the CAN bus
- * @param data The up to 8 bytes of data that was received with the message
- * @param dataSize Indicates how much data was received
- * @param timeout Specify how long to wait for a message (in seconds)
- * @return Status of receive call
- */
-int32_t CANJaguar::receiveMessage(uint32_t *messageID, uint8_t *data, uint8_t *dataSize, float timeout)
-{
-	int32_t status = 0;
-	FRC_NetworkCommunication_JaguarCANDriver_receiveMessage(messageID, data, dataSize,
-			(uint32_t)(timeout * 1000), &status);
-	return status;
-}
-
-/**
- * Execute a transaction with a Jaguar that sets some property.
- * 
- * Jaguar always acks when it receives a message.  If we don't wait for an ack,
- * the message object in the Jaguar could get overwritten before it is handled.
- * 
- * @param messageID The messageID to be used on the CAN bus (device number is added internally)
- * @param data The up to 8 bytes of data to be sent with the message
- * @param dataSize Specify how much of the data in "data" to send
- */
-void CANJaguar::setTransaction(uint32_t messageID, const uint8_t *data, uint8_t dataSize)
-{
-	uint32_t ackMessageID = LM_API_ACK | m_deviceNumber;
-	int32_t localStatus = 0;
-
-	// If there was an error on this object and it wasn't a timeout, refuse to talk to the device
-	// Call ClearError() on the object to try again
-	if (StatusIsFatal() && GetError().GetCode() != -44087)
-		return;
-
-	// Make sure we don't have more than one transaction with the same Jaguar outstanding.
-	semTake(m_transactionSemaphore, WAIT_FOREVER);
-
-	// Throw away any stale acks.
-	receiveMessage(&ackMessageID, NULL, 0, 0.0f);
-	// Send the message with the data.
-	localStatus = sendMessage(messageID | m_deviceNumber, data, dataSize);
-	wpi_setErrorWithContext(localStatus, "sendMessage");
-	// Wait for an ack.
-	localStatus = receiveMessage(&ackMessageID, NULL, 0);
-	wpi_setErrorWithContext(localStatus, "receiveMessage");
-
-	// Transaction complete.
-	semGive(m_transactionSemaphore);
-}
-
-/**
- * Execute a transaction with a Jaguar that gets some property.
- * 
- * Jaguar always generates a message with the same message ID when replying.
- * 
- * @param messageID The messageID to read from the CAN bus (device number is added internally)
- * @param data The up to 8 bytes of data that was received with the message
- * @param dataSize Indicates how much data was received
- */
-void CANJaguar::getTransaction(uint32_t messageID, uint8_t *data, uint8_t *dataSize)
-{
-	uint32_t targetedMessageID = messageID | m_deviceNumber;
-	int32_t localStatus = 0;
-
-	// If there was an error on this object and it wasn't a timeout, refuse to talk to the device
-	// Call ClearError() on the object to try again
-	if (StatusIsFatal() && GetError().GetCode() != -44087)
-	{
-		if (dataSize != NULL)
-			*dataSize = 0;
-		return;
-	}
-
-	// Make sure we don't have more than one transaction with the same Jaguar outstanding.
-	semTake(m_transactionSemaphore, WAIT_FOREVER);
-
-	// Throw away any stale responses.
-	receiveMessage(&targetedMessageID, NULL, 0, 0.0f);
-	// Send the message requesting data.
-	localStatus = sendMessage(targetedMessageID, NULL, 0);
-	wpi_setErrorWithContext(localStatus, "sendMessage");
-	// Caller may have set bit31 for remote frame transmission so clear invalid bits[31-29]
-	targetedMessageID &= 0x1FFFFFFF;
-	// Wait for the data.
-	localStatus = receiveMessage(&targetedMessageID, data, dataSize);
-	wpi_setErrorWithContext(localStatus, "receiveMessage");
-
-	// Transaction complete.
-	semGive(m_transactionSemaphore);
-}
-
-/**
- * Set the reference source device for speed controller mode.
- * 
- * Choose encoder as the source of speed feedback when in speed control mode.
- * 
- * @param reference Specify a SpeedReference.
- */
-void CANJaguar::SetSpeedReference(SpeedReference reference)
-{
-	uint8_t dataBuffer[8];
-
-	dataBuffer[0] = reference;
-	setTransaction(LM_API_SPD_REF, dataBuffer, sizeof(uint8_t));
-}
-
-/**
- * Get the reference source device for speed controller mode.
- * 
- * @return A SpeedReference indicating the currently selected reference device for speed controller mode.
- */
-CANJaguar::SpeedReference CANJaguar::GetSpeedReference()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	getTransaction(LM_API_SPD_REF, dataBuffer, &dataSize);
-	if (dataSize == sizeof(uint8_t))
-	{
-		return (SpeedReference)*dataBuffer;
-	}
-	return kSpeedRef_None;
-}
-
-/**
- * Set the reference source device for position controller mode.
- * 
- * Choose between using and encoder and using a potentiometer
- * as the source of position feedback when in position control mode.
- * 
- * @param reference Specify a PositionReference.
- */
-void CANJaguar::SetPositionReference(PositionReference reference)
-{
-	uint8_t dataBuffer[8];
-
-	dataBuffer[0] = reference;
-	setTransaction(LM_API_POS_REF, dataBuffer, sizeof(uint8_t));
-}
-
-/**
- * Get the reference source device for position controller mode.
- * 
- * @return A PositionReference indicating the currently selected reference device for position controller mode.
- */
-CANJaguar::PositionReference CANJaguar::GetPositionReference()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	getTransaction(LM_API_POS_REF, dataBuffer, &dataSize);
-	if (dataSize == sizeof(uint8_t))
-	{
-		return (PositionReference)*dataBuffer;
-	}
-	return kPosRef_None;
-}
-
-/**
- * Set the P, I, and D constants for the closed loop modes.
- * 
- * @param p The proportional gain of the Jaguar's PID controller.
- * @param i The integral gain of the Jaguar's PID controller.
- * @param d The differential gain of the Jaguar's PID controller.
- */
-void CANJaguar::SetPID(double p, double i, double d)
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	switch(m_controlMode)
-	{
-	case kPercentVbus:
-	case kVoltage:
-		wpi_setWPIErrorWithContext(IncompatibleMode, "PID constants only apply in Speed, Position, and Current mode");
-		break;
-	case kSpeed:
-		dataSize = packFXP16_16(dataBuffer, p);
-		setTransaction(LM_API_SPD_PC, dataBuffer, dataSize);
-		dataSize = packFXP16_16(dataBuffer, i);
-		setTransaction(LM_API_SPD_IC, dataBuffer, dataSize);
-		dataSize = packFXP16_16(dataBuffer, d);
-		setTransaction(LM_API_SPD_DC, dataBuffer, dataSize);
-		break;
-	case kPosition:
-		dataSize = packFXP16_16(dataBuffer, p);
-		setTransaction(LM_API_POS_PC, dataBuffer, dataSize);
-		dataSize = packFXP16_16(dataBuffer, i);
-		setTransaction(LM_API_POS_IC, dataBuffer, dataSize);
-		dataSize = packFXP16_16(dataBuffer, d);
-		setTransaction(LM_API_POS_DC, dataBuffer, dataSize);
-		break;
-	case kCurrent:
-		dataSize = packFXP16_16(dataBuffer, p);
-		setTransaction(LM_API_ICTRL_PC, dataBuffer, dataSize);
-		dataSize = packFXP16_16(dataBuffer, i);
-		setTransaction(LM_API_ICTRL_IC, dataBuffer, dataSize);
-		dataSize = packFXP16_16(dataBuffer, d);
-		setTransaction(LM_API_ICTRL_DC, dataBuffer, dataSize);
-		break;
-	}
-}
-
-/**
- * Get the Proportional gain of the controller.
- * 
- * @return The proportional gain.
- */
-double CANJaguar::GetP()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	switch(m_controlMode)
-	{
-	case kPercentVbus:
-	case kVoltage:
-		wpi_setWPIErrorWithContext(IncompatibleMode, "PID constants only apply in Speed, Position, and Current mode");
-		break;
-	case kSpeed:
-		getTransaction(LM_API_SPD_PC, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int32_t))
-		{
-			return unpackFXP16_16(dataBuffer);
-		}
-		break;
-	case kPosition:
-		getTransaction(LM_API_POS_PC, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int32_t))
-		{
-			return unpackFXP16_16(dataBuffer);
-		}
-		break;
-	case kCurrent:
-		getTransaction(LM_API_ICTRL_PC, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int32_t))
-		{
-			return unpackFXP16_16(dataBuffer);
-		}
-		break;
-	}
-	return 0.0;
-}
-
-/**
- * Get the Intregral gain of the controller.
- * 
- * @return The integral gain.
- */
-double CANJaguar::GetI()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	switch(m_controlMode)
-	{
-	case kPercentVbus:
-	case kVoltage:
-		wpi_setWPIErrorWithContext(IncompatibleMode, "PID constants only apply in Speed, Position, and Current mode");
-		break;
-	case kSpeed:
-		getTransaction(LM_API_SPD_IC, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int32_t))
-		{
-			return unpackFXP16_16(dataBuffer);
-		}
-		break;
-	case kPosition:
-		getTransaction(LM_API_POS_IC, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int32_t))
-		{
-			return unpackFXP16_16(dataBuffer);
-		}
-		break;
-	case kCurrent:
-		getTransaction(LM_API_ICTRL_IC, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int32_t))
-		{
-			return unpackFXP16_16(dataBuffer);
-		}
-		break;
-	}
-	return 0.0;
-}
-
-/**
- * Get the Differential gain of the controller.
- * 
- * @return The differential gain.
- */
-double CANJaguar::GetD()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	switch(m_controlMode)
-	{
-	case kPercentVbus:
-	case kVoltage:
-		wpi_setWPIErrorWithContext(IncompatibleMode, "PID constants only apply in Speed, Position, and Current mode");
-		break;
-	case kSpeed:
-		getTransaction(LM_API_SPD_DC, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int32_t))
-		{
-			return unpackFXP16_16(dataBuffer);
-		}
-		break;
-	case kPosition:
-		getTransaction(LM_API_POS_DC, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int32_t))
-		{
-			return unpackFXP16_16(dataBuffer);
-		}
-		break;
-	case kCurrent:
-		getTransaction(LM_API_ICTRL_DC, dataBuffer, &dataSize);
-		if (dataSize == sizeof(int32_t))
-		{
-			return unpackFXP16_16(dataBuffer);
-		}
-		break;
-	}
-	return 0.0;
-}
-
-/**
- * Enable the closed loop controller.
- * 
- * Start actually controlling the output based on the feedback.
- * If starting a position controller with an encoder reference,
- * use the encoderInitialPosition parameter to initialize the
- * encoder state.
- * 
- * @param encoderInitialPosition Encoder position to set if position with encoder reference.  Ignored otherwise.
- */
-void CANJaguar::EnableControl(double encoderInitialPosition)
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize = 0;
-
-	switch(m_controlMode)
-	{
-	case kPercentVbus:
-		setTransaction(LM_API_VOLT_T_EN, dataBuffer, dataSize);
-		break;
-	case kSpeed:
-		setTransaction(LM_API_SPD_T_EN, dataBuffer, dataSize);
-		break;
-	case kPosition:
-		dataSize = packFXP16_16(dataBuffer, encoderInitialPosition);
-		setTransaction(LM_API_POS_T_EN, dataBuffer, dataSize);
-		break;
-	case kCurrent:
-		setTransaction(LM_API_ICTRL_T_EN, dataBuffer, dataSize);
-		break;
-	case kVoltage:
-		setTransaction(LM_API_VCOMP_T_EN, dataBuffer, dataSize);
-		break;
-	}
-}
-
-/**
- * Disable the closed loop controller.
- * 
- * Stop driving the output based on the feedback.
- */
-void CANJaguar::DisableControl()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize = 0;
-
-	switch(m_controlMode)
-	{
-	case kPercentVbus:
-		setTransaction(LM_API_VOLT_DIS, dataBuffer, dataSize);
-		break;
-	case kSpeed:
-		setTransaction(LM_API_SPD_DIS, dataBuffer, dataSize);
-		break;
-	case kPosition:
-		setTransaction(LM_API_POS_DIS, dataBuffer, dataSize);
-		break;
-	case kCurrent:
-		setTransaction(LM_API_ICTRL_DIS, dataBuffer, dataSize);
-		break;
-	case kVoltage:
-		setTransaction(LM_API_VCOMP_DIS, dataBuffer, dataSize);
-		break;
-	}
-}
-
-/**
- * Change the control mode of this Jaguar object.
- * 
- * After changing modes, configure any PID constants or other settings needed
- * and then EnableControl() to actually change the mode on the Jaguar.
- * 
- * @param controlMode The new mode.
- */
-void CANJaguar::ChangeControlMode(ControlMode controlMode)
-{
-	// Disable the previous mode
-	DisableControl();
-
-	// Update the local mode
-	m_controlMode = controlMode;
-
-	nUsageReporting::report(nUsageReporting::kResourceType_CANJaguar, m_deviceNumber, m_controlMode);
-}
-
-/**
- * Get the active control mode from the Jaguar.
- * 
- * Ask the Jag what mode it is in.
- * 
- * @return ControlMode that the Jag is in.
- */
-CANJaguar::ControlMode CANJaguar::GetControlMode()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	getTransaction(LM_API_STATUS_CMODE, dataBuffer, &dataSize);
-	if (dataSize == sizeof(int8_t))
-	{
-		return (ControlMode)dataBuffer[0];
-	}
-	return kPercentVbus;
-}
-
-/**
- * Get the voltage at the battery input terminals of the Jaguar.
- * 
- * @return The bus voltage in Volts.
- */
-float CANJaguar::GetBusVoltage()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	getTransaction(LM_API_STATUS_VOLTBUS, dataBuffer, &dataSize);
-	if (dataSize == sizeof(int16_t))
-	{
-		return unpackFXP8_8(dataBuffer);
-	}
-	return 0.0;
-}
-
-/**
- * Get the voltage being output from the motor terminals of the Jaguar.
- * 
- * @return The output voltage in Volts.
- */
-float CANJaguar::GetOutputVoltage()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	// Read the volt out which is in Volts units.
-	getTransaction(LM_API_STATUS_VOUT, dataBuffer, &dataSize);
-	if (dataSize == sizeof(int16_t))
-	{
-		return unpackFXP8_8(dataBuffer);
-	}
-	return 0.0;
-}
-
-/**
- * Get the current through the motor terminals of the Jaguar.
- * 
- * @return The output current in Amps.
- */
-float CANJaguar::GetOutputCurrent()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	getTransaction(LM_API_STATUS_CURRENT, dataBuffer, &dataSize);
-	if (dataSize == sizeof(int16_t))
-	{
-		return unpackFXP8_8(dataBuffer);
-	}
-	return 0.0;
-}
-
-/**
- * Get the internal temperature of the Jaguar.
- * 
- * @return The temperature of the Jaguar in degrees Celsius.
- */
-float CANJaguar::GetTemperature()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	getTransaction(LM_API_STATUS_TEMP, dataBuffer, &dataSize);
-	if (dataSize == sizeof(int16_t))
-	{
-		return unpackFXP8_8(dataBuffer);
-	}
-	return 0.0;
-}
-
-/**
- * Get the position of the encoder or potentiometer.
- * 
- * @return The position of the motor in rotations based on the configured feedback.
- */
-double CANJaguar::GetPosition()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	getTransaction(LM_API_STATUS_POS, dataBuffer, &dataSize);
-	if (dataSize == sizeof(int32_t))
-	{
-		return unpackFXP16_16(dataBuffer);
-	}
-	return 0.0;
-}
-
-/**
- * Get the speed of the encoder.
- * 
- * @return The speed of the motor in RPM based on the configured feedback.
- */
-double CANJaguar::GetSpeed()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	getTransaction(LM_API_STATUS_SPD, dataBuffer, &dataSize);
-	if (dataSize == sizeof(int32_t))
-	{
-		return unpackFXP16_16(dataBuffer);
-	}
-	return 0.0;
-}
-
-/**
- * Get the status of the forward limit switch.
- * 
- * @return The motor is allowed to turn in the forward direction when true.
- */
-bool CANJaguar::GetForwardLimitOK()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	getTransaction(LM_API_STATUS_LIMIT, dataBuffer, &dataSize);
-	if (dataSize == sizeof(uint8_t))
-	{
-		return (*dataBuffer & kForwardLimit) != 0;
-	}
-	return 0;
-}
-
-/**
- * Get the status of the reverse limit switch.
- * 
- * @return The motor is allowed to turn in the reverse direction when true.
- */
-bool CANJaguar::GetReverseLimitOK()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	getTransaction(LM_API_STATUS_LIMIT, dataBuffer, &dataSize);
-	if (dataSize == sizeof(uint8_t))
-	{
-		return (*dataBuffer & kReverseLimit) != 0;
-	}
-	return 0;
-}
-
-/**
- * Get the status of any faults the Jaguar has detected.
- * 
- * @return A bit-mask of faults defined by the "Faults" enum.
- */
-uint16_t CANJaguar::GetFaults()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	getTransaction(LM_API_STATUS_FAULT, dataBuffer, &dataSize);
-	if (dataSize == sizeof(uint16_t))
-	{
-		return unpackint16_t(dataBuffer);
-	}
-	return 0;
-}
-
-/**
- * Check if the Jaguar's power has been cycled since this was last called.
- * 
- * This should return true the first time called after a Jaguar power up,
- * and false after that.
- * 
- * @return The Jaguar was power cycled since the last call to this function.
- */
-bool CANJaguar::GetPowerCycled()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	getTransaction(LM_API_STATUS_POWER, dataBuffer, &dataSize);
-	if (dataSize == sizeof(uint8_t))
-	{
-		bool powerCycled = (*dataBuffer != 0);
-
-		// Clear the power cycled bit now that we've accessed it
-		if (powerCycled)
-		{
-			dataBuffer[0] = 1;
-			setTransaction(LM_API_STATUS_POWER, dataBuffer, sizeof(uint8_t));
-		}
-
-		return powerCycled;
-	}
-	return 0;
-}
-
-/**
- * Set the maximum voltage change rate.
- * 
- * When in PercentVbus or Voltage output mode, the rate at which the voltage changes can
- * be limited to reduce current spikes.  Set this to 0.0 to disable rate limiting.
- * 
- * @param rampRate The maximum rate of voltage change in Percent Voltage mode in V/s.
- */
-void CANJaguar::SetVoltageRampRate(double rampRate)
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	switch(m_controlMode)
-	{
-	case kPercentVbus:
-		dataSize = packPercentage(dataBuffer, rampRate / (m_maxOutputVoltage * kControllerRate));
-		setTransaction(LM_API_VOLT_SET_RAMP, dataBuffer, dataSize);
-		break;
-	case kVoltage:
-		dataSize = packFXP8_8(dataBuffer, rampRate / kControllerRate);
-		setTransaction(LM_API_VCOMP_IN_RAMP, dataBuffer, dataSize);
-		break;
-	default:
-		return;
-	}
-}
-
-/**
- * Get the version of the firmware running on the Jaguar.
- * 
- * @return The firmware version.  0 if the device did not respond.
- */
-uint32_t CANJaguar::GetFirmwareVersion()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	// Set the MSB to tell the 2CAN that this is a remote message.
-	getTransaction(0x80000000 | CAN_MSGID_API_FIRMVER, dataBuffer, &dataSize);
-	if (dataSize == sizeof(uint32_t))
-	{
-		return unpackint32_t(dataBuffer);
-	}
-	return 0;
-}
-
-/**
- * Get the version of the Jaguar hardware.
- * 
- * @return The hardware version. 1: Jaguar,  2: Black Jaguar
- */
-uint8_t CANJaguar::GetHardwareVersion()
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	getTransaction(LM_API_HWVER, dataBuffer, &dataSize);
-	if (dataSize == sizeof(uint8_t)+sizeof(uint8_t))
-	{
-		if (*dataBuffer == m_deviceNumber)
-		{
-			return *(dataBuffer+1);
-		}
-	}
-	// Assume Gray Jag if there is no response
-	return LM_HWVER_JAG_1_0;
-}
-
-/**
- * Configure what the controller does to the H-Bridge when neutral (not driving the output).
- * 
- * This allows you to override the jumper configuration for brake or coast.
- * 
- * @param mode Select to use the jumper setting or to override it to coast or brake.
- */
-void CANJaguar::ConfigNeutralMode(NeutralMode mode)
-{
-	uint8_t dataBuffer[8];
-
-	dataBuffer[0] = mode;
-	setTransaction(LM_API_CFG_BRAKE_COAST, dataBuffer, sizeof(uint8_t));
-}
-
-/**
- * Configure how many codes per revolution are generated by your encoder.
- * 
- * @param codesPerRev The number of counts per revolution in 1X mode.
- */
-void CANJaguar::ConfigEncoderCodesPerRev(uint16_t codesPerRev)
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	dataSize = packint16_t(dataBuffer, codesPerRev);
-	setTransaction(LM_API_CFG_ENC_LINES, dataBuffer, dataSize);
-}
-
-/**
- * Configure the number of turns on the potentiometer.
- * 
- * There is no special support for continuous turn potentiometers.
- * Only integer numbers of turns are supported.
- * 
- * @param turns The number of turns of the potentiometer
- */
-void CANJaguar::ConfigPotentiometerTurns(uint16_t turns)
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	dataSize = packint16_t(dataBuffer, turns);
-	setTransaction(LM_API_CFG_POT_TURNS, dataBuffer, dataSize);
-}
-
-/**
- * Configure Soft Position Limits when in Position Controller mode.
- * 
- * When controlling position, you can add additional limits on top of the limit switch inputs
- * that are based on the position feedback.  If the position limit is reached or the
- * switch is opened, that direction will be disabled.
- * 
- * @param forwardLimitPosition The position that if exceeded will disable the forward direction.
- * @param reverseLimitPosition The position that if exceeded will disable the reverse direction.
- */
-void CANJaguar::ConfigSoftPositionLimits(double forwardLimitPosition, double reverseLimitPosition)
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	dataSize = packFXP16_16(dataBuffer, forwardLimitPosition);
-	dataBuffer[dataSize++] = forwardLimitPosition > reverseLimitPosition;
-	setTransaction(LM_API_CFG_LIMIT_FWD, dataBuffer, dataSize);
-
-	dataSize = packFXP16_16(dataBuffer, reverseLimitPosition);
-	dataBuffer[dataSize++] = forwardLimitPosition <= reverseLimitPosition;
-	setTransaction(LM_API_CFG_LIMIT_REV, dataBuffer, dataSize);
-
-	dataBuffer[0] = kLimitMode_SoftPositionLimits;
-	setTransaction(LM_API_CFG_LIMIT_MODE, dataBuffer, sizeof(uint8_t));
-}
-
-/**
- * Disable Soft Position Limits if previously enabled.
- * 
- * Soft Position Limits are disabled by default.
- */
-void CANJaguar::DisableSoftPositionLimits()
-{
-	uint8_t dataBuffer[8];
-
-	dataBuffer[0] = kLimitMode_SwitchInputsOnly;
-	setTransaction(LM_API_CFG_LIMIT_MODE, dataBuffer, sizeof(uint8_t));
-}
-
-/**
- * Configure the maximum voltage that the Jaguar will ever output.
- * 
- * This can be used to limit the maximum output voltage in all modes so that
- * motors which cannot withstand full bus voltage can be used safely.
- * 
- * @param voltage The maximum voltage output by the Jaguar.
- */
-void CANJaguar::ConfigMaxOutputVoltage(double voltage)
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	m_maxOutputVoltage = voltage;
-	dataSize = packFXP8_8(dataBuffer, voltage);
-	setTransaction(LM_API_CFG_MAX_VOUT, dataBuffer, dataSize);
-}
-
-/**
- * Configure how long the Jaguar waits in the case of a fault before resuming operation.
- * 
- * Faults include over temerature, over current, and bus under voltage.
- * The default is 3.0 seconds, but can be reduced to as low as 0.5 seconds.
- * 
- * @param faultTime The time to wait before resuming operation, in seconds.
- */
-void CANJaguar::ConfigFaultTime(float faultTime)
-{
-	uint8_t dataBuffer[8];
-	uint8_t dataSize;
-
-	// Message takes ms
-	dataSize = packint16_t(dataBuffer, (int16_t)(faultTime * 1000.0));
-	setTransaction(LM_API_CFG_FAULT_TIME, dataBuffer, dataSize);
-}
-
-/**
- * Update all the motors that have pending sets in the syncGroup.
- * 
- * @param syncGroup A bitmask of groups to generate synchronous output.
- */
-void CANJaguar::UpdateSyncGroup(uint8_t syncGroup)
-{
-	sendMessage(CAN_MSGID_API_SYNC, &syncGroup, sizeof(syncGroup));
-}
-
-
-void CANJaguar::SetExpiration(float timeout)
-{
-	if (m_safetyHelper) m_safetyHelper->SetExpiration(timeout);
-}
-
-float CANJaguar::GetExpiration()
-{
-	if (!m_safetyHelper) return 0.0;
-	return m_safetyHelper->GetExpiration();
-}
-
-bool CANJaguar::IsAlive()
-{
-	if (!m_safetyHelper) return false;
-	return m_safetyHelper->IsAlive();
-}
-
-bool CANJaguar::IsSafetyEnabled()
-{
-	if (!m_safetyHelper) return false;
-	return m_safetyHelper->IsSafetyEnabled();
-}
-
-void CANJaguar::SetSafetyEnabled(bool enabled)
-{
-	if (m_safetyHelper) m_safetyHelper->SetSafetyEnabled(enabled);
-}
-
-void CANJaguar::GetDescription(char *desc)
-{
-	snprintf(desc, 64, "CANJaguar ID %d", m_deviceNumber);
-}
-
-/**
- * Common interface for stopping the motor
- * Part of the MotorSafety interface
- * 
- * @deprecated Call DisableControl instead.
- */
-void CANJaguar::StopMotor()
-{
-	DisableControl();
-}
-
-void CANJaguar::ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew) {
-	Set(value.f);
-}
-
-void CANJaguar::UpdateTable() {
-	if (m_table != NULL) {
-		m_table->PutNumber("Value", Get());
-	}
-}
-
-void CANJaguar::StartLiveWindowMode() {
-	if (m_table != NULL) {
-		m_table->AddTableListener("Value", this, true);
-	}
-}
-
-void CANJaguar::StopLiveWindowMode() {
-	if (m_table != NULL) {
-		m_table->RemoveTableListener(this);
-	}
-}
-
-std::string CANJaguar::GetSmartDashboardType() {
-	return "Speed Controller";
-}
-
-void CANJaguar::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * CANJaguar::GetTable() {
-	return m_table;
-}
-
-
diff --git a/aos/externals/WPILib/WPILib/CANJaguar.h b/aos/externals/WPILib/WPILib/CANJaguar.h
deleted file mode 100644
index 55ec1b0..0000000
--- a/aos/externals/WPILib/WPILib/CANJaguar.h
+++ /dev/null
@@ -1,136 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2009. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-
-#ifndef CANJAGUAR_H
-#define CANJAGUAR_H
-
-#include "ErrorBase.h"
-#include "MotorSafety.h"
-#include "MotorSafetyHelper.h"
-#include "PIDOutput.h"
-#include "SpeedController.h"
-#include <semLib.h>
-#include <vxWorks.h>
-#include "LiveWindow/LiveWindowSendable.h"
-#include "tables/ITable.h"
-
-/**
- * Luminary Micro Jaguar Speed Control
- */
-class CANJaguar : public MotorSafety,
-					public SpeedController,
-					public ErrorBase,
-					public LiveWindowSendable,
-					public ITableListener
-{
-public:
-	// The internal PID control loop in the Jaguar runs at 1kHz.
-	static const int32_t kControllerRate = 1000;
-	static constexpr double kApproxBusVoltage = 12.0;
-
-	typedef enum {kPercentVbus, kCurrent, kSpeed, kPosition, kVoltage} ControlMode;
-	typedef enum {kCurrentFault = 1, kTemperatureFault = 2, kBusVoltageFault = 4, kGateDriverFault = 8} Faults;
-	typedef enum {kForwardLimit = 1, kReverseLimit = 2} Limits;
-	typedef enum {kPosRef_QuadEncoder = 0, kPosRef_Potentiometer = 1, kPosRef_None = 0xFF} PositionReference;
-	typedef enum {kSpeedRef_Encoder = 0, kSpeedRef_InvEncoder = 2, kSpeedRef_QuadEncoder = 3, kSpeedRef_None = 0xFF} SpeedReference;
-	typedef enum {kNeutralMode_Jumper = 0, kNeutralMode_Brake = 1, kNeutralMode_Coast = 2} NeutralMode;
-	typedef enum {kLimitMode_SwitchInputsOnly = 0, kLimitMode_SoftPositionLimits = 1} LimitMode;
-
-	explicit CANJaguar(uint8_t deviceNumber, ControlMode controlMode = kPercentVbus);
-	virtual ~CANJaguar();
-
-	// SpeedController interface
-	virtual float Get();
-	virtual void Set(float value, uint8_t syncGroup=0);
-	virtual void Disable();
-
-	// PIDOutput interface
-	virtual void PIDWrite(float output);
-
-	// Other Accessors
-	void SetSpeedReference(SpeedReference reference);
-	SpeedReference GetSpeedReference();
-	void SetPositionReference(PositionReference reference);
-	PositionReference GetPositionReference();
-	void SetPID(double p, double i, double d);
-	double GetP();
-	double GetI();
-	double GetD();
-	void EnableControl(double encoderInitialPosition = 0.0);
-	void DisableControl();
-	void ChangeControlMode(ControlMode controlMode);
-	ControlMode GetControlMode();
-	float GetBusVoltage();
-	float GetOutputVoltage();
-	float GetOutputCurrent();
-	float GetTemperature();
-	double GetPosition();
-	double GetSpeed();
-	bool GetForwardLimitOK();
-	bool GetReverseLimitOK();
-	uint16_t GetFaults();
-	bool GetPowerCycled();
-	void SetVoltageRampRate(double rampRate);
-	virtual uint32_t GetFirmwareVersion();
-	uint8_t GetHardwareVersion();
-	void ConfigNeutralMode(NeutralMode mode);
-	void ConfigEncoderCodesPerRev(uint16_t codesPerRev);
-	void ConfigPotentiometerTurns(uint16_t turns);
-	void ConfigSoftPositionLimits(double forwardLimitPosition, double reverseLimitPosition);
-	void DisableSoftPositionLimits();
-	void ConfigMaxOutputVoltage(double voltage);
-	void ConfigFaultTime(float faultTime);
-
-	static void UpdateSyncGroup(uint8_t syncGroup);
-
-	void SetExpiration(float timeout);
-	float GetExpiration();
-	bool IsAlive();
-	void StopMotor();
-	bool IsSafetyEnabled();
-	void SetSafetyEnabled(bool enabled);
-	void GetDescription(char *desc);
-
-protected:
-	uint8_t packPercentage(uint8_t *buffer, double value);
-	uint8_t packFXP8_8(uint8_t *buffer, double value);
-	uint8_t packFXP16_16(uint8_t *buffer, double value);
-	uint8_t packint16_t(uint8_t *buffer, int16_t value);
-	uint8_t packint32_t(uint8_t *buffer, int32_t value);
-	double unpackPercentage(uint8_t *buffer);
-	double unpackFXP8_8(uint8_t *buffer);
-	double unpackFXP16_16(uint8_t *buffer);
-	int16_t unpackint16_t(uint8_t *buffer);
-	int32_t unpackint32_t(uint8_t *buffer);
-	virtual void setTransaction(uint32_t messageID, const uint8_t *data, uint8_t dataSize);
-	virtual void getTransaction(uint32_t messageID, uint8_t *data, uint8_t *dataSize);
-
-	static int32_t sendMessage(uint32_t messageID, const uint8_t *data, uint8_t dataSize);
-	static int32_t receiveMessage(uint32_t *messageID, uint8_t *data, uint8_t *dataSize, float timeout = 0.02);
-
-	uint8_t m_deviceNumber;
-	ControlMode m_controlMode;
-	SEM_ID m_transactionSemaphore;
-	double m_maxOutputVoltage;
-
-	MotorSafetyHelper *m_safetyHelper;
-
-	void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-	
-	ITable *m_table;
-
-private:
-	void InitCANJaguar();
-};
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/ChipObject.h b/aos/externals/WPILib/WPILib/ChipObject.h
deleted file mode 100644
index 607af92..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __ChipObject_h__
-#define __ChipObject_h__
-
-#include <vxWorks.h>
-#include "ChipObject/NiRio.h"
-
-#include "ChipObject/tAccumulator.h"
-#include "ChipObject/tAI.h"
-#include "ChipObject/tAlarm.h"
-#include "ChipObject/tAnalogTrigger.h"
-#include "ChipObject/tCounter.h"
-#include "ChipObject/tDIO.h"
-#include "ChipObject/tDMA.h"
-//#include "ChipObject/tDMAManager.h"
-#include "ChipObject/tEncoder.h"
-#include "ChipObject/tGlobal.h"
-#include "ChipObject/tInterrupt.h"
-#include "ChipObject/tInterruptManager.h"
-#include "ChipObject/tSolenoid.h"
-#include "ChipObject/tSPI.h"
-#include "ChipObject/tWatchdog.h"
-
-using namespace nFPGA;
-using namespace nFRC_2012_1_6_4;
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/ChipObject/Makefile b/aos/externals/WPILib/WPILib/ChipObject/Makefile
deleted file mode 100644
index bc19164..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/Makefile
+++ /dev/null
@@ -1,2184 +0,0 @@
-# Wind River Workbench generated Makefile.
-# Do not edit!!!
-#
-# The file ".wrmakefile" is the template used by the Wind River Workbench to
-# generate the makefiles of this project. Add user-specific build targets and
-# make rules only(!) in this project's ".wrmakefile" file. These will then be
-# automatically dumped into the makefiles.
-
-WIND_HOME := $(subst \,/,$(WIND_HOME))
-WIND_BASE := $(subst \,/,$(WIND_BASE))
-WIND_USR := $(subst \,/,$(WIND_USR))
-
-all : pre_build main_all post_build
-
-_clean ::
-	@echo "make: removing targets and objects of `pwd`"
-
-TRACE=0
-TRACEON=$(TRACE:0=@)
-TRACE_FLAG=$(TRACEON:1=)
-
-MAKEFILE := Makefile
-
-BUILD_SPEC = PPC603gnu
-DEBUG_MODE = 1
-SRC_DIR := .
-BUILD_ROOT_DIR := 
-PRJ_ROOT_DIR := C:/windriver/workspace/WPILib
-WS_ROOT_DIR := C:/windriver/workspace
-
-ALL_BUILD_SPECS := PPC32diab PPC32gnu PPC32sfdiab PPC32sfgnu \
-	 PPC403diab PPC403gnu PPC405diab PPC405gnu \
-	 PPC405sfdiab PPC405sfgnu PPC440diab PPC440gnu \
-	 PPC440sfdiab PPC440sfgnu PPC603diab PPC603gnu \
-	 PPC604diab PPC604gnu PPC85XXdiab PPC85XXgnu \
-	 PPC85XXsfdiab PPC85XXsfgnu PPC860sfdiab PPC860sfgnu \
-	 SIMLINUXdiab SIMLINUXgnu SIMNTdiab SIMNTgnu \
-	 SIMSPARCSOLARISdiab SIMSPARCSOLARISgnu
-ENABLED_BUILD_SPECS := PPC603gnu
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32diab_DEBUG
-else
-OBJ_DIR := PPC32diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32gnu_DEBUG
-else
-OBJ_DIR := PPC32gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32sfdiab_DEBUG
-else
-OBJ_DIR := PPC32sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32sfgnu_DEBUG
-else
-OBJ_DIR := PPC32sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC403diab_DEBUG
-else
-OBJ_DIR := PPC403diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC403gnu_DEBUG
-else
-OBJ_DIR := PPC403gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405diab_DEBUG
-else
-OBJ_DIR := PPC405diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405gnu_DEBUG
-else
-OBJ_DIR := PPC405gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405sfdiab_DEBUG
-else
-OBJ_DIR := PPC405sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405sfgnu_DEBUG
-else
-OBJ_DIR := PPC405sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440diab_DEBUG
-else
-OBJ_DIR := PPC440diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440gnu_DEBUG
-else
-OBJ_DIR := PPC440gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440sfdiab_DEBUG
-else
-OBJ_DIR := PPC440sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440sfgnu_DEBUG
-else
-OBJ_DIR := PPC440sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC603diab_DEBUG
-else
-OBJ_DIR := PPC603diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC603gnu_DEBUG
-else
-OBJ_DIR := PPC603gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC604diab_DEBUG
-else
-OBJ_DIR := PPC604diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC604gnu_DEBUG
-else
-OBJ_DIR := PPC604gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXdiab_DEBUG
-else
-OBJ_DIR := PPC85XXdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXgnu_DEBUG
-else
-OBJ_DIR := PPC85XXgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXsfdiab_DEBUG
-else
-OBJ_DIR := PPC85XXsfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXsfgnu_DEBUG
-else
-OBJ_DIR := PPC85XXsfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC860sfdiab_DEBUG
-else
-OBJ_DIR := PPC860sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC860sfgnu_DEBUG
-else
-OBJ_DIR := PPC860sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMLINUXdiab_DEBUG
-else
-OBJ_DIR := SIMLINUXdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMLINUXgnu_DEBUG
-else
-OBJ_DIR := SIMLINUXgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMNTdiab_DEBUG
-else
-OBJ_DIR := SIMNTdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMNTgnu_DEBUG
-else
-OBJ_DIR := SIMNTgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMSPARCSOLARISdiab_DEBUG
-else
-OBJ_DIR := SIMSPARCSOLARISdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMSPARCSOLARISgnu_DEBUG
-else
-OBJ_DIR := SIMSPARCSOLARISgnu
-endif
-endif
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-
-PROJECT_TYPE = DKM
-DEFINES = 
-EXPAND_DBG = 0
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCFH:vxworks63 -Xstmw-slow -DPPC32_fp60x
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC32gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mhard-float -mstrict-align -mno-implicit-fp -DPPC32_fp60x
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCFS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -msoft-float -mstrict-align
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC403diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC403
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC403FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC403gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC403
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=403 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC405FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=405 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC405FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=405 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC440FH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=440 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC440FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=440 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC603diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC603
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC603FH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC603gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC603
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=603 -mstrict-align -mno-implicit-fp -mlongcall
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I.. -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC604diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC604
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC604FH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC604gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC604
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=604 -mstrict-align -mno-implicit-fp
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCE500FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=8540 -mstrict-align -msoft-float -mabi=no-spe
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCE500FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=8540 -mstrict-align -msoft-float -mabi=no-spe
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC860
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC860FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC860
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=860 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-VX_CPU_FAMILY = simlinux
-CPU = SIMLINUX
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tX86LH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-VX_CPU_FAMILY = simlinux
-CPU = SIMLINUX
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mtune=i486 -march=i486
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-VX_CPU_FAMILY = simpc
-CPU = SIMNT
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tX86LH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-VX_CPU_FAMILY = simpc
-CPU = SIMNT
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mtune=i486 -march=i486
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-VX_CPU_FAMILY = simso
-CPU = SIMSPARCSOLARIS
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tSPARCFH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-VX_CPU_FAMILY = simso
-CPU = SIMSPARCSOLARIS
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = 
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space -Wa,-Xmnem-mit -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space -Wa,-Xmnem-mit -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-
-
-
-
-
--include $(PRJ_ROOT_DIR)/*.makefile
-
--include *.makefile
-
-main_all : external_build $(PROJECT_TARGETS)
-	@echo "make: built targets of `pwd`"
-
-# entry point for extending the build
-external_build ::
-	@echo ""
-
-# main entry point for pre processing prior to the build
-pre_build :: $(PRE_BUILD_STEP) generate_sources
-	@echo ""
-
-# entry point for generating sources prior to the build
-generate_sources ::
-	@echo ""
-
-# main entry point for post processing after the build
-post_build :: $(POST_BUILD_STEP) deploy_output
-	@echo ""
-
-# entry point for deploying output after the build
-deploy_output ::
-	@echo ""
-
-clean :: external_clean $(CLEAN_STEP) _clean
-
-# entry point for extending the build clean
-external_clean ::
-	@echo ""
diff --git a/aos/externals/WPILib/WPILib/ChipObject/NiFpga.h b/aos/externals/WPILib/WPILib/ChipObject/NiFpga.h
deleted file mode 100644
index c5f2bce..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/NiFpga.h
+++ /dev/null
@@ -1,2311 +0,0 @@
-/*
- * FPGA Interface C API 2.0 header file.
- *
- * Copyright (c) 2011,
- * National Instruments Corporation.
- * All rights reserved.
- */
-
-#ifndef __NiFpga_h__
-#define __NiFpga_h__
-
-/*
- * Determine platform details.
- */
-#if defined(_M_IX86) \
- || defined(_M_X64) \
- || defined(i386) \
- || defined(__i386__) \
- || defined(__amd64__) \
- || defined(__amd64) \
- || defined(__x86_64__) \
- || defined(__x86_64) \
- || defined(__i386) \
- || defined(_X86_) \
- || defined(__THW_INTEL__) \
- || defined(__I86__) \
- || defined(__INTEL__) \
- || defined(__X86__) \
- || defined(__386__) \
- || defined(__I86__) \
- || defined(M_I386) \
- || defined(M_I86) \
- || defined(_M_I386) \
- || defined(_M_I86)
-   #if defined(_WIN32) \
-    || defined(_WIN64) \
-    || defined(__WIN32__) \
-    || defined(__TOS_WIN__) \
-    || defined(__WINDOWS__) \
-    || defined(_WINDOWS) \
-    || defined(__WINDOWS_386__) \
-    || defined(__CYGWIN__)
-      /* Either Windows or Phar Lap ETS. */
-      #define NiFpga_Windows 1
-   #elif defined(__linux) \
-      || defined(__linux__) \
-      || defined(__gnu_linux__) \
-      || defined(linux)
-      #define NiFpga_Linux 1
-   #else
-      #error Unsupported OS.
-   #endif
-#elif defined(__powerpc) \
-   || defined(__powerpc__) \
-   || defined(__POWERPC__) \
-   || defined(__ppc__) \
-   || defined(__PPC) \
-   || defined(_M_PPC) \
-   || defined(_ARCH_PPC) \
-   || defined(__PPC__) \
-   || defined(__ppc)
-   #if defined(__vxworks)
-      #define NiFpga_VxWorks 1
-   #else
-      #error Unsupported OS.
-   #endif
-#else
-   #error Unsupported architecture.
-#endif
-
-/*
- * Determine compiler.
- */
-#if defined(_MSC_VER)
-   #define NiFpga_Msvc 1
-#elif defined(__GNUC__)
-   #define NiFpga_Gcc 1
-#elif defined(_CVI_) && !defined(_TPC_)
-   #define NiFpga_Cvi 1
-   /* Enables CVI Library Protection Errors. */
-   #pragma EnableLibraryRuntimeChecking
-#else
-   /* Unknown compiler. */
-#endif
-
-/*
- * Determine compliance with different C/C++ language standards.
- */
-#if defined(__cplusplus)
-   #define NiFpga_Cpp 1
-   #if __cplusplus >= 199707L
-      #define NiFpga_Cpp98 1
-   #endif
-#endif
-#if defined(__STDC__)
-   #define NiFpga_C89 1
-   #if defined(__STDC_VERSION__)
-      #define NiFpga_C90 1
-      #if __STDC_VERSION__ >= 199409L
-         #define NiFpga_C94 1
-         #if __STDC_VERSION__ >= 199901L
-            #define NiFpga_C99 1
-         #endif
-      #endif
-   #endif
-#endif
-
-/*
- * Determine ability to inline functions.
- */
-#if NiFpga_Cpp || NiFpga_C99
-   /* The inline keyword exists in C++ and C99. */
-   #define NiFpga_Inline inline
-#elif NiFpga_Msvc
-   /* Visual C++ (at least since 6.0) also supports an alternate keyword. */
-   #define NiFpga_Inline __inline
-#elif NiFpga_Gcc
-   /* GCC (at least since 2.95.2) also supports an alternate keyword. */
-   #define NiFpga_Inline __inline__
-#elif !defined(NiFpga_Inline)
-   /*
-    * Disable inlining if inline support is unknown. To manually enable
-    * inlining, #define the following macro before #including NiFpga.h:
-    *
-    *    #define NiFpga_Inline inline
-    */
-   #define NiFpga_Inline
-#endif
-
-/*
- * Define exact-width integer types, if they have not already been defined.
- */
-#if NiFpga_ExactWidthIntegerTypesDefined \
- || defined(_STDINT) \
- || defined(_STDINT_H) \
- || defined(_STDINT_H_) \
- || defined(_INTTYPES_H) \
- || defined(_INTTYPES_H_) \
- || defined(_SYS_STDINT_H) \
- || defined(_SYS_STDINT_H_) \
- || defined(_SYS_INTTYPES_H) \
- || defined(_SYS_INTTYPES_H_) \
- || defined(_STDINT_H_INCLUDED) \
- || defined(BOOST_CSTDINT_HPP) \
- || defined(_MSC_STDINT_H_) \
- || defined(_PSTDINT_H_INCLUDED)
-   /* Assume that exact-width integer types have already been defined. */
-#elif NiFpga_VxWorks
-   #include <vxWorks.h>
-#elif NiFpga_C99 \
-   || NiFpga_Gcc /* GCC (at least since 3.0) has a stdint.h. */ \
-   || defined(HAVE_STDINT_H)
-   /* Assume that stdint.h can be included. */
-   #include <stdint.h>
-#elif NiFpga_Msvc \
-   || NiFpga_Cvi
-   /* Manually define exact-width integer types. */
-   typedef   signed    char  int8_t;
-   typedef unsigned    char uint8_t;
-   typedef            short  int16_t;
-   typedef unsigned   short uint16_t;
-   typedef              int  int32_t;
-   typedef unsigned     int uint32_t;
-   typedef          __int64  int64_t;
-   typedef unsigned __int64 uint64_t;
-#else
-   /*
-    * Exact-width integer types must be defined by the user, and the following
-    * macro must be #defined, before #including NiFpga.h:
-    *
-    *    #define NiFpga_ExactWidthIntegerTypesDefined 1
-    */
-   #error Exact-width integer types must be defined by the user. See comment.
-#endif
-
-/* Included for definition of size_t. */
-#include <stddef.h>
-
-#if NiFpga_Cpp
-extern "C" {
-#endif
-
-/**
- * A boolean value; either NiFpga_False or NiFpga_True.
- */
-typedef uint8_t NiFpga_Bool;
-
-/**
- * Represents a false condition.
- */
-static const NiFpga_Bool NiFpga_False = 0;
-
-/**
- * Represents a true condition.
- */
-static const NiFpga_Bool NiFpga_True = 1;
-
-/**
- * Represents the resulting status of a function call through its return value.
- * 0 is success, negative values are errors, and positive values are warnings.
- */
-typedef int32_t NiFpga_Status;
-
-/**
- * No errors or warnings.
- */
-static const NiFpga_Status NiFpga_Status_Success = 0;
-
-/**
- * The timeout expired before the FIFO operation could complete.
- */
-static const NiFpga_Status NiFpga_Status_FifoTimeout = -50400;
-
-/**
- * A memory allocation failed. Try again after rebooting.
- */
-static const NiFpga_Status NiFpga_Status_MemoryFull = -52000;
-
-/**
- * An unexpected software error occurred.
- */
-static const NiFpga_Status NiFpga_Status_SoftwareFault = -52003;
-
-/**
- * A parameter to a function was not valid. This could be a NULL pointer, a bad
- * value, etc.
- */
-static const NiFpga_Status NiFpga_Status_InvalidParameter = -52005;
-
-/**
- * A required resource was not found. The NiFpga.* library, the RIO resource,
- * or some other resource may be missing, or the NiFpga.* library may not be
- * the required minimum version.
- */
-static const NiFpga_Status NiFpga_Status_ResourceNotFound = -52006;
-
-/**
- * A required resource was not properly initialized. This could occur if
- * NiFpga_Initialize was not called or a required NiFpga_IrqContext was not
- * reserved.
- */
-static const NiFpga_Status NiFpga_Status_ResourceNotInitialized = -52010;
-
-/**
- * The FPGA is already running.
- */
-static const NiFpga_Status NiFpga_Status_FpgaAlreadyRunning = -61003;
-
-/**
- * The bitfile was not compiled for the specified resource's device type.
- */
-static const NiFpga_Status NiFpga_Status_DeviceTypeMismatch = -61024;
-
-/**
- * An error was detected in the communication between the host computer and the
- * FPGA target.
- */
-static const NiFpga_Status NiFpga_Status_CommunicationTimeout = -61046;
-
-/**
- * The timeout expired before any of the IRQs were asserted.
- */
-static const NiFpga_Status NiFpga_Status_IrqTimeout = -61060;
-
-/**
- * The specified bitfile is invalid or corrupt.
- */
-static const NiFpga_Status NiFpga_Status_CorruptBitfile = -61070;
-
-/**
- * The FIFO depth is invalid. It was either 0, greater than the amount of
- * available memory in the host computer, or greater than the maximum size
- * allowed by the hardware.
- */
-static const NiFpga_Status NiFpga_Status_BadDepth = -61072;
-
-/**
- * The number of FIFO elements is invalid. Either the number is greater than
- * the depth of the host memory DMA FIFO, or more elements were requested for
- * release than had been acquired. 
- */
-static const NiFpga_Status NiFpga_Status_BadReadWriteCount = -61073;
-
-/**
- * A hardware clocking error occurred. A derived clock lost lock with its base
- * clock during the execution of the LabVIEW FPGA VI. If any base clocks with
- * derived clocks are referencing an external source, make sure that the
- * external source is connected and within the supported frequency, jitter,
- * accuracy, duty cycle, and voltage specifications. Also verify that the
- * characteristics of the base clock match the configuration specified in the
- * FPGA Base Clock Properties. If all base clocks with derived clocks are
- * generated from free-running, on-board sources, please contact National
- * Instruments technical support at ni.com/support.
- */
-static const NiFpga_Status NiFpga_Status_ClockLostLock = -61083;
-
-/**
- * Operation could not be performed because the FPGA is busy. Stop all the
- * activities on the FPGA before requesting this operation.
- */
-static const NiFpga_Status NiFpga_Status_FpgaBusy = -61141;
-
-/**
- * Operation could not be performed because the FPGA is busy operating in FPGA
- * Interface C API mode. Stop all the activities on the FPGA before requesting
- * this operation.
- */
-static const NiFpga_Status NiFpga_Status_FpgaBusyFpgaInterfaceCApi = -61200;
-
-/**
- * The chassis is in Scan Interface programming mode. In order to run FPGA VIs,
- * you must go to the chassis properties page, select FPGA programming mode,
- * and deploy settings.
- */
-static const NiFpga_Status NiFpga_Status_FpgaBusyScanInterface = -61201;
-
-/**
- * Operation could not be performed because the FPGA is busy operating in FPGA
- * Interface mode. Stop all the activities on the FPGA before requesting this
- * operation.
- */
-static const NiFpga_Status NiFpga_Status_FpgaBusyFpgaInterface = -61202;
-
-/**
- * Operation could not be performed because the FPGA is busy operating in
- * Interactive mode. Stop all the activities on the FPGA before requesting this
- * operation.
- */
-static const NiFpga_Status NiFpga_Status_FpgaBusyInteractive = -61203;
-
-/**
- * Operation could not be performed because the FPGA is busy operating in
- * Emulation mode. Stop all the activities on the FPGA before requesting this
- * operation.
- */
-static const NiFpga_Status NiFpga_Status_FpgaBusyEmulation = -61204;
-
-/**
- * An unexpected internal error occurred.
- */
-static const NiFpga_Status NiFpga_Status_InternalError = -61499;
-
-/**
- * Access to the remote system was denied. Use MAX to check the Remote Device
- * Access settings under Software>>NI-RIO>>NI-RIO Settings on the remote system.
- */
-static const NiFpga_Status NiFpga_Status_AccessDenied = -63033;
-
-/**
- * A connection could not be established to the specified remote device. Ensure
- * that the device is on and accessible over the network, that NI-RIO software
- * is installed, and that the RIO server is running and properly configured.
- */
-static const NiFpga_Status NiFpga_Status_RpcConnectionError = -63040;
-
-/**
- * The RPC session is invalid. The target may have reset or been rebooted. Check
- * the network connection and retry the operation.
- */
-static const NiFpga_Status NiFpga_Status_RpcSessionError = -63043;
-
-/**
- * A Read FIFO or Write FIFO function was called while the host had acquired
- * elements of the FIFO. Release all acquired elements before reading or
- * writing.
- */
-static const NiFpga_Status NiFpga_Status_FifoElementsCurrentlyAcquired = -63083;
-
-/**
- * The bitfile could not be read.
- */
-static const NiFpga_Status NiFpga_Status_BitfileReadError = -63101;
-
-/**
- * The specified signature does not match the signature of the bitfile. If the
- * bitfile has been recompiled, regenerate the C API and rebuild the
- * application.
- */
-static const NiFpga_Status NiFpga_Status_SignatureMismatch = -63106;
-
-/**
- * Either the supplied resource name is invalid as a RIO resource name, or the
- * device was not found. Use MAX to find the proper resource name for the
- * intended device.
- */
-static const NiFpga_Status NiFpga_Status_InvalidResourceName = -63192;
-
-/**
- * The requested feature is not supported.
- */
-static const NiFpga_Status NiFpga_Status_FeatureNotSupported = -63193;
-
-/**
- * The NI-RIO software on the remote system is not compatible with the local
- * NI-RIO software. Upgrade the NI-RIO software on the remote system.
- */
-static const NiFpga_Status NiFpga_Status_VersionMismatch = -63194;
-
-/**
- * The session is invalid or has been closed.
- */
-static const NiFpga_Status NiFpga_Status_InvalidSession = -63195;
-
-/**
- * The maximum number of open FPGA sessions has been reached. Close some open
- * sessions.
- */
-static const NiFpga_Status NiFpga_Status_OutOfHandles = -63198;
-
-/**
- * Tests whether a status is an error.
- *
- * @param status status to check for an error
- * @return whether the status was an error
- */
-static NiFpga_Inline NiFpga_Bool NiFpga_IsError(const NiFpga_Status status)
-{
-   return status < NiFpga_Status_Success;
-}
-
-/**
- * Tests whether a status is not an error. Success and warnings are not errors.
- *
- * @param status status to check for an error
- * @return whether the status was a success or warning
- */
-static NiFpga_Inline NiFpga_Bool NiFpga_IsNotError(const NiFpga_Status status)
-{
-   return status >= NiFpga_Status_Success;
-}
-
-/**
- * Conditionally sets the status to a new value. The previous status is
- * preserved unless the new status is more of an error, which means that
- * warnings and errors overwrite successes, and errors overwrite warnings. New
- * errors do not overwrite older errors, and new warnings do not overwrite
- * older warnings.
- *
- * @param status status to conditionally set
- * @param newStatus new status value that may be set
- * @return the resulting status
- */
-static NiFpga_Inline NiFpga_Status NiFpga_MergeStatus(
-                                                NiFpga_Status* const status,
-                                                const NiFpga_Status  newStatus)
-{
-   if (!status)
-   {
-      return NiFpga_Status_InvalidParameter;
-   }
-   if (NiFpga_IsNotError(*status)
-   &&  (*status == NiFpga_Status_Success || NiFpga_IsError(newStatus)))
-   {
-      *status = newStatus;
-   }
-   return *status;
-}
-
-/**
- * This macro evaluates the expression only if the status is not an error. The
- * expression must evaluate to an NiFpga_Status, such as a call to any NiFpga_*
- * function, because the status will be set to the returned status if the
- * expression is evaluated.
- *
- * You can use this macro to mimic status chaining in LabVIEW, where the status
- * does not have to be explicitly checked after each call. Such code may look
- * like the following example.
- *
- *    NiFpga_Status status = NiFpga_Status_Success;
- *    NiFpga_IfIsNotError(status, NiFpga_WriteU32(...));
- *    NiFpga_IfIsNotError(status, NiFpga_WriteU32(...));
- *    NiFpga_IfIsNotError(status, NiFpga_WriteU32(...));
- *
- * @param status status to check for an error
- * @param expression expression to call if the incoming status is not an error
- */
-#define NiFpga_IfIsNotError(status, expression) \
-   if (NiFpga_IsNotError(status)) \
-   { \
-      NiFpga_MergeStatus(&status, (expression)); \
-   }
-
-/**
- * You must call this function before all other function calls. This function
- * loads the NiFpga library so that all the other functions will work. If this
- * function succeeds, you must call NiFpga_Finalize after all other function
- * calls.
- *
- * @warning This function is not thread safe.
- *
- * @return result of the call
- */
-NiFpga_Status NiFpga_Initialize(void);
-
-/**
- * You must call this function after all other function calls if
- * NiFpga_Initialize succeeds. This function unloads the NiFpga library.
- *
- * @warning This function is not thread safe.
- *
- * @return result of the call
- */
-NiFpga_Status NiFpga_Finalize(void);
-
-/**
- * A handle to an FPGA session.
- */
-typedef uint32_t NiFpga_Session;
-
-/**
- * Attributes that NiFpga_Open accepts.
- */
-typedef enum
-{
-   NiFpga_OpenAttribute_NoRun = 1
-} NiFpga_OpenAttribute;
-
-/**
- * Opens a session to the FPGA. This call ensures that the contents of the
- * bitfile are programmed to the FPGA. The FPGA runs unless the
- * NiFpga_OpenAttribute_NoRun attribute is used.
- *
- * Because different operating systems have different default current working
- * directories for applications, you must pass an absolute path for the bitfile
- * parameter. If you pass only the filename instead of an absolute path, the
- * operating system may not be able to locate the bitfile. For example, the
- * default current working directories are C:\ni-rt\system\ for Phar Lap ETS and
- * /c/ for VxWorks. Because the generated *_Bitfile constant is a #define to a
- * string literal, you can use C/C++ string-literal concatenation to form an
- * absolute path. For example, if the bitfile is in the root directory of a
- * Phar Lap ETS system, pass the following for the bitfile parameter.
- *
- *    "C:\\" NiFpga_MyApplication_Bitfile
- *
- * @param bitfile path to the bitfile
- * @param signature signature of the bitfile
- * @param resource RIO resource string to open ("RIO0" or "rio://mysystem/RIO")
- * @param attribute bitwise OR of any NiFpga_OpenAttributes, or 0
- * @param session outputs the session handle, which must be closed when no
- *                longer needed
- * @return result of the call
- */
-NiFpga_Status NiFpga_Open(const char*     bitfile,
-                          const char*     signature,
-                          const char*     resource,
-                          uint32_t        attribute,
-                          NiFpga_Session* session);
-
-/**
- * Attributes that NiFpga_Close accepts.
- */
-typedef enum
-{
-   NiFpga_CloseAttribute_NoResetIfLastSession = 1
-} NiFpga_CloseAttribute;
-
-/**
- * Closes the session to the FPGA. The FPGA resets unless either another session
- * is still open or you use the NiFpga_CloseAttribute_NoResetIfLastSession
- * attribute.
- *
- * @param session handle to a currently open session
- * @param attribute bitwise OR of any NiFpga_CloseAttributes, or 0
- * @return result of the call
- */
-NiFpga_Status NiFpga_Close(NiFpga_Session session,
-                           uint32_t       attribute);
-
-/**
- * Attributes that NiFpga_Run accepts.
- */
-typedef enum
-{
-   NiFpga_RunAttribute_WaitUntilDone = 1
-} NiFpga_RunAttribute;
-
-/**
- * Runs the FPGA VI on the target. If you use NiFpga_RunAttribute_WaitUntilDone,
- * NiFpga_Run blocks the thread until the FPGA finishes running (if ever).
- *
- * @param session handle to a currently open session
- * @param attribute bitwise OR of any NiFpga_RunAttributes, or 0
- * @return result of the call
- */
-NiFpga_Status NiFpga_Run(NiFpga_Session session,
-                         uint32_t       attribute);
-
-/**
- * Aborts the FPGA VI.
- *
- * @param session handle to a currently open session
- * @return result of the call
- */
-NiFpga_Status NiFpga_Abort(NiFpga_Session session);
-
-/**
- * Resets the FPGA VI.
- *
- * @param session handle to a currently open session
- * @return result of the call
- */
-NiFpga_Status NiFpga_Reset(NiFpga_Session session);
-
-/**
- * Re-downloads the FPGA bitstream to the target.
- *
- * @param session handle to a currently open session
- * @return result of the call
- */
-NiFpga_Status NiFpga_Download(NiFpga_Session session);
-
-/**
- * Reads a boolean value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadBool(NiFpga_Session session,
-                              uint32_t       indicator,
-                              NiFpga_Bool*   value);
-
-/**
- * Reads a signed 8-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadI8(NiFpga_Session session,
-                            uint32_t       indicator,
-                            int8_t*        value);
-
-/**
- * Reads an unsigned 8-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadU8(NiFpga_Session session,
-                            uint32_t       indicator,
-                            uint8_t*       value);
-
-/**
- * Reads a signed 16-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadI16(NiFpga_Session session,
-                             uint32_t       indicator,
-                             int16_t*       value);
-
-/**
- * Reads an unsigned 16-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadU16(NiFpga_Session session,
-                             uint32_t       indicator,
-                             uint16_t*      value);
-
-/**
- * Reads a signed 32-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadI32(NiFpga_Session session,
-                             uint32_t       indicator,
-                             int32_t*       value);
-
-/**
- * Reads an unsigned 32-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadU32(NiFpga_Session session,
-                             uint32_t       indicator,
-                             uint32_t*      value);
-
-/**
- * Reads a signed 64-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadI64(NiFpga_Session session,
-                             uint32_t       indicator,
-                             int64_t*       value);
-
-/**
- * Reads an unsigned 64-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadU64(NiFpga_Session session,
-                             uint32_t       indicator,
-                             uint64_t*      value);
-
-/**
- * Writes a boolean value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteBool(NiFpga_Session session,
-                               uint32_t       control,
-                               NiFpga_Bool    value);
-
-/**
- * Writes a signed 8-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteI8(NiFpga_Session session,
-                             uint32_t       control,
-                             int8_t         value);
-
-/**
- * Writes an unsigned 8-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteU8(NiFpga_Session session,
-                             uint32_t       control,
-                             uint8_t        value);
-
-/**
- * Writes a signed 16-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteI16(NiFpga_Session session,
-                              uint32_t       control,
-                              int16_t        value);
-
-/**
- * Writes an unsigned 16-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteU16(NiFpga_Session session,
-                              uint32_t       control,
-                              uint16_t       value);
-
-/**
- * Writes a signed 32-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteI32(NiFpga_Session session,
-                              uint32_t       control,
-                              int32_t        value);
-
-/**
- * Writes an unsigned 32-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteU32(NiFpga_Session session,
-                              uint32_t       control,
-                              uint32_t       value);
-
-/**
- * Writes a signed 64-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteI64(NiFpga_Session session,
-                              uint32_t       control,
-                              int64_t        value);
-
-/**
- * Writes an unsigned 64-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteU64(NiFpga_Session session,
-                              uint32_t       control,
-                              uint64_t       value);
-
-/**
- * Reads an entire array of boolean values from a given array indicator or
- * control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayBool(NiFpga_Session session,
-                                   uint32_t       indicator,
-                                   NiFpga_Bool*   array,
-                                   size_t         size);
-
-/**
- * Reads an entire array of signed 8-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayI8(NiFpga_Session session,
-                                 uint32_t       indicator,
-                                 int8_t*        array,
-                                 size_t         size);
-
-/**
- * Reads an entire array of unsigned 8-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayU8(NiFpga_Session session,
-                                 uint32_t       indicator,
-                                 uint8_t*       array,
-                                 size_t         size);
-
-/**
- * Reads an entire array of signed 16-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayI16(NiFpga_Session session,
-                                  uint32_t       indicator,
-                                  int16_t*       array,
-                                  size_t         size);
-
-/**
- * Reads an entire array of unsigned 16-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayU16(NiFpga_Session session,
-                                  uint32_t       indicator,
-                                  uint16_t*      array,
-                                  size_t         size);
-
-/**
- * Reads an entire array of signed 32-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayI32(NiFpga_Session session,
-                                  uint32_t       indicator,
-                                  int32_t*       array,
-                                  size_t         size);
-
-/**
- * Reads an entire array of unsigned 32-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayU32(NiFpga_Session session,
-                                  uint32_t       indicator,
-                                  uint32_t*      array,
-                                  size_t         size);
-
-/**
- * Reads an entire array of signed 64-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayI64(NiFpga_Session session,
-                                  uint32_t       indicator,
-                                  int64_t*       array,
-                                  size_t         size);
-
-/**
- * Reads an entire array of unsigned 64-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayU64(NiFpga_Session session,
-                                  uint32_t       indicator,
-                                  uint64_t*      array,
-                                  size_t         size);
-
-/**
- * Writes an entire array of boolean values to a given array control or
- * indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayBool(NiFpga_Session     session,
-                                    uint32_t           control,
-                                    const NiFpga_Bool* array,
-                                    size_t             size);
-
-/**
- * Writes an entire array of signed 8-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayI8(NiFpga_Session session,
-                                  uint32_t       control,
-                                  const int8_t*  array,
-                                  size_t         size);
-
-/**
- * Writes an entire array of unsigned 8-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayU8(NiFpga_Session session,
-                                  uint32_t       control,
-                                  const uint8_t* array,
-                                  size_t         size);
-
-/**
- * Writes an entire array of signed 16-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayI16(NiFpga_Session session,
-                                   uint32_t       control,
-                                   const int16_t* array,
-                                   size_t         size);
-
-/**
- * Writes an entire array of unsigned 16-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayU16(NiFpga_Session  session,
-                                   uint32_t        control,
-                                   const uint16_t* array,
-                                   size_t          size);
-
-/**
- * Writes an entire array of signed 32-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayI32(NiFpga_Session session,
-                                   uint32_t       control,
-                                   const int32_t* array,
-                                   size_t         size);
-
-/**
- * Writes an entire array of unsigned 32-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayU32(NiFpga_Session  session,
-                                   uint32_t        control,
-                                   const uint32_t* array,
-                                   size_t          size);
-
-/**
- * Writes an entire array of signed 64-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayI64(NiFpga_Session session,
-                                   uint32_t       control,
-                                   const int64_t* array,
-                                   size_t         size);
-
-/**
- * Writes an entire array of unsigned 64-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayU64(NiFpga_Session  session,
-                                   uint32_t        control,
-                                   const uint64_t* array,
-                                   size_t          size);
-
-/**
- * Enumeration of all 32 possible IRQs. Multiple IRQs can be bitwise ORed
- * together like this:
- *
- *    NiFpga_Irq_3 | NiFpga_Irq_23
- */
-typedef enum
-{
-   NiFpga_Irq_0  = 1 << 0,
-   NiFpga_Irq_1  = 1 << 1,
-   NiFpga_Irq_2  = 1 << 2,
-   NiFpga_Irq_3  = 1 << 3,
-   NiFpga_Irq_4  = 1 << 4,
-   NiFpga_Irq_5  = 1 << 5,
-   NiFpga_Irq_6  = 1 << 6,
-   NiFpga_Irq_7  = 1 << 7,
-   NiFpga_Irq_8  = 1 << 8,
-   NiFpga_Irq_9  = 1 << 9,
-   NiFpga_Irq_10 = 1 << 10,
-   NiFpga_Irq_11 = 1 << 11,
-   NiFpga_Irq_12 = 1 << 12,
-   NiFpga_Irq_13 = 1 << 13,
-   NiFpga_Irq_14 = 1 << 14,
-   NiFpga_Irq_15 = 1 << 15,
-   NiFpga_Irq_16 = 1 << 16,
-   NiFpga_Irq_17 = 1 << 17,
-   NiFpga_Irq_18 = 1 << 18,
-   NiFpga_Irq_19 = 1 << 19,
-   NiFpga_Irq_20 = 1 << 20,
-   NiFpga_Irq_21 = 1 << 21,
-   NiFpga_Irq_22 = 1 << 22,
-   NiFpga_Irq_23 = 1 << 23,
-   NiFpga_Irq_24 = 1 << 24,
-   NiFpga_Irq_25 = 1 << 25,
-   NiFpga_Irq_26 = 1 << 26,
-   NiFpga_Irq_27 = 1 << 27,
-   NiFpga_Irq_28 = 1 << 28,
-   NiFpga_Irq_29 = 1 << 29,
-   NiFpga_Irq_30 = 1 << 30,
-   NiFpga_Irq_31 = 1U << 31
-} NiFpga_Irq;
-
-/**
- * Represents an infinite timeout.
- */
-static const uint32_t NiFpga_InfiniteTimeout = 0xFFFFFFFF;
-
-/**
- * See NiFpga_ReserveIrqContext for more information.
- */
-typedef void* NiFpga_IrqContext;
-
-/**
- * IRQ contexts are single-threaded; only one thread can wait with a particular
- * context at any given time. Clients must reserve as many contexts as the
- * application requires.
- *
- * If a context is successfully reserved (the returned status is not an error),
- * it must be unreserved later. Otherwise a memory leak will occur.
- *
- * @param session handle to a currently open session
- * @param context outputs the IRQ context
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReserveIrqContext(NiFpga_Session     session,
-                                       NiFpga_IrqContext* context);
-
-/**
- * Unreserves an IRQ context obtained from NiFpga_ReserveIrqContext.
- *
- * @param session handle to a currently open session
- * @param context IRQ context to unreserve
- * @return result of the call
- */
-NiFpga_Status NiFpga_UnreserveIrqContext(NiFpga_Session    session,
-                                         NiFpga_IrqContext context);
-
-/**
- * This is a blocking function that stops the calling thread until the FPGA
- * asserts any IRQ in the irqs parameter, or until the function call times out.
- * Before calling this function, you must use NiFpga_ReserveIrqContext to
- * reserve an IRQ context. No other threads can use the same context when this
- * function is called.
- *
- * You can use the irqsAsserted parameter to determine which IRQs were asserted
- * for each function call.
- *
- * @param session handle to a currently open session
- * @param context IRQ context with which to wait
- * @param irqs bitwise OR of NiFpga_Irqs
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param irqsAsserted if non-NULL, outputs bitwise OR of IRQs that were
- *                     asserted
- * @param timedOut if non-NULL, outputs whether the timeout expired
- * @return result of the call
- */
-NiFpga_Status NiFpga_WaitOnIrqs(NiFpga_Session    session,
-                                NiFpga_IrqContext context,
-                                uint32_t          irqs,
-                                uint32_t          timeout,
-                                uint32_t*         irqsAsserted,
-                                NiFpga_Bool*      timedOut);
-
-/**
- * Acknowledges an IRQ or set of IRQs.
- *
- * @param session handle to a currently open session
- * @param irqs bitwise OR of NiFpga_Irqs
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcknowledgeIrqs(NiFpga_Session session,
-                                     uint32_t       irqs);
-
-/**
- * Specifies the depth of the host memory part of the DMA FIFO. This method is
- * optional. In order to see the actual depth configured, use
- * NiFpga_ConfigureFifo2.
- *
- * @param session handle to a currently open session
- * @param fifo FIFO to configure
- * @param depth requested number of elements in the host memory part of the
- *              DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ConfigureFifo(NiFpga_Session session,
-                                   uint32_t       fifo,
-                                   size_t         depth);
-
-/**
- * Specifies the depth of the host memory part of the DMA FIFO. This method is
- * optional.
- *
- * @param session handle to a currently open session
- * @param fifo FIFO to configure
- * @param requestedDepth requested number of elements in the host memory part
- *                       of the DMA FIFO
- * @param actualDepth if non-NULL, outputs the actual number of elements in the
- *                    host memory part of the DMA FIFO, which may be more than
- *                    the requested number
- * @return result of the call
- */
-NiFpga_Status NiFpga_ConfigureFifo2(NiFpga_Session session,
-                                    uint32_t       fifo,
-                                    size_t         requestedDepth,
-                                    size_t*        actualDepth);
-/**
- * Starts a FIFO. This method is optional.
- *
- * @param session handle to a currently open session
- * @param fifo FIFO to start
- * @return result of the call
- */
-NiFpga_Status NiFpga_StartFifo(NiFpga_Session session,
-                               uint32_t       fifo);
-
-/**
- * Stops a FIFO. This method is optional.
- *
- * @param session handle to a currently open session
- * @param fifo FIFO to stop
- * @return result of the call
- */
-NiFpga_Status NiFpga_StopFifo(NiFpga_Session session,
-                              uint32_t       fifo);
-
-/**
- * Reads from a target-to-host FIFO of booleans.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoBool(NiFpga_Session session,
-                                  uint32_t       fifo,
-                                  NiFpga_Bool*   data,
-                                  size_t         numberOfElements,
-                                  uint32_t       timeout,
-                                  size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of signed 8-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoI8(NiFpga_Session session,
-                                uint32_t       fifo,
-                                int8_t*        data,
-                                size_t         numberOfElements,
-                                uint32_t       timeout,
-                                size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of unsigned 8-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoU8(NiFpga_Session session,
-                                uint32_t       fifo,
-                                uint8_t*       data,
-                                size_t         numberOfElements,
-                                uint32_t       timeout,
-                                size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of signed 16-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoI16(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 int16_t*       data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of unsigned 16-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoU16(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 uint16_t*      data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of signed 32-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoI32(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 int32_t*       data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of unsigned 32-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoU32(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 uint32_t*      data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of signed 64-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoI64(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 int64_t*       data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of unsigned 64-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoU64(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 uint64_t*      data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        elementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of booleans.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoBool(NiFpga_Session     session,
-                                   uint32_t           fifo,
-                                   const NiFpga_Bool* data,
-                                   size_t             numberOfElements,
-                                   uint32_t           timeout,
-                                   size_t*            emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of signed 8-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoI8(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 const int8_t*  data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of unsigned 8-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoU8(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 const uint8_t* data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of signed 16-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoI16(NiFpga_Session session,
-                                  uint32_t       fifo,
-                                  const int16_t* data,
-                                  size_t         numberOfElements,
-                                  uint32_t       timeout,
-                                  size_t*        emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of unsigned 16-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoU16(NiFpga_Session  session,
-                                  uint32_t        fifo,
-                                  const uint16_t* data,
-                                  size_t          numberOfElements,
-                                  uint32_t        timeout,
-                                  size_t*         emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of signed 32-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoI32(NiFpga_Session session,
-                                  uint32_t       fifo,
-                                  const int32_t* data,
-                                  size_t         numberOfElements,
-                                  uint32_t       timeout,
-                                  size_t*        emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of unsigned 32-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoU32(NiFpga_Session  session,
-                                  uint32_t        fifo,
-                                  const uint32_t* data,
-                                  size_t          numberOfElements,
-                                  uint32_t        timeout,
-                                  size_t*         emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of signed 64-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoI64(NiFpga_Session session,
-                                  uint32_t       fifo,
-                                  const int64_t* data,
-                                  size_t         numberOfElements,
-                                  uint32_t       timeout,
-                                  size_t*        emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of unsigned 64-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoU64(NiFpga_Session  session,
-                                  uint32_t        fifo,
-                                  const uint64_t* data,
-                                  size_t          numberOfElements,
-                                  uint32_t        timeout,
-                                  size_t*         emptyElementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of booleans.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsBool(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             NiFpga_Bool**  elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of signed 8-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsI8(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             int8_t**       elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of unsigned 8-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsU8(
-                                            NiFpga_Session  session,
-                                            uint32_t        fifo,
-                                            uint8_t**       elements,
-                                            size_t          elementsRequested,
-                                            uint32_t        timeout,
-                                            size_t*         elementsAcquired,
-                                            size_t*         elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of signed 16-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsI16(
-                                            NiFpga_Session  session,
-                                            uint32_t        fifo,
-                                            int16_t**       elements,
-                                            size_t          elementsRequested,
-                                            uint32_t        timeout,
-                                            size_t*         elementsAcquired,
-                                            size_t*         elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of unsigned 16-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsU16(
-                                           NiFpga_Session   session,
-                                           uint32_t         fifo,
-                                           uint16_t**       elements,
-                                           size_t           elementsRequested,
-                                           uint32_t         timeout,
-                                           size_t*          elementsAcquired,
-                                           size_t*          elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of signed 32-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsI32(
-                                            NiFpga_Session  session,
-                                            uint32_t        fifo,
-                                            int32_t**       elements,
-                                            size_t          elementsRequested,
-                                            uint32_t        timeout,
-                                            size_t*         elementsAcquired,
-                                            size_t*         elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of unsigned 32-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsU32(
-                                           NiFpga_Session   session,
-                                           uint32_t         fifo,
-                                           uint32_t**       elements,
-                                           size_t           elementsRequested,
-                                           uint32_t         timeout,
-                                           size_t*          elementsAcquired,
-                                           size_t*          elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of signed 64-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsI64(
-                                            NiFpga_Session  session,
-                                            uint32_t        fifo,
-                                            int64_t**       elements,
-                                            size_t          elementsRequested,
-                                            uint32_t        timeout,
-                                            size_t*         elementsAcquired,
-                                            size_t*         elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of unsigned 64-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsU64(
-                                           NiFpga_Session   session,
-                                           uint32_t         fifo,
-                                           uint64_t**       elements,
-                                           size_t           elementsRequested,
-                                           uint32_t         timeout,
-                                           size_t*          elementsAcquired,
-                                           size_t*          elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of booleans.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsBool(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             NiFpga_Bool**  elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of signed 8-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsI8(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             int8_t**       elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of unsigned 8-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsU8(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             uint8_t**      elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of signed 16-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsI16(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             int16_t**      elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of unsigned 16-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsU16(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             uint16_t**     elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of signed 32-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsI32(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             int32_t**      elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of unsigned 32-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsU32(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             uint32_t**     elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of signed 64-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsI64(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             int64_t**      elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of unsigned 64-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested reqested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsU64(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             uint64_t**     elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Releases previously acquired FIFO elements.
- *
- * The FPGA target cannot read elements acquired by the host. Therefore, the
- * host must release elements after acquiring them. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo FIFO from which to release elements
- * @param elements number of elements to release
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReleaseFifoElements(NiFpga_Session session,
-                                         uint32_t       fifo,
-                                         size_t         elements);
-
-/**
- * Gets an endpoint reference to a peer-to-peer FIFO.
- *
- * @param session handle to a currently open session
- * @param fifo peer-to-peer FIFO
- * @param endpoint outputs the endpoint reference
- * @return result of the call
- */
-NiFpga_Status NiFpga_GetPeerToPeerFifoEndpoint(NiFpga_Session session,
-                                               uint32_t       fifo,
-                                               uint32_t*      endpoint);
-
-#if NiFpga_Cpp
-}
-#endif
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/ChipObject/NiRio.h b/aos/externals/WPILib/WPILib/ChipObject/NiRio.h
deleted file mode 100644
index c0dc29e..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/NiRio.h
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-
-#ifndef __NiRio_h__
-#define __NiRio_h__
-
-#include "NiFpga.h"
-typedef NiFpga_Status tRioStatusCode;
-
-#endif // __NiRio_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/chipObjectAliases.h b/aos/externals/WPILib/WPILib/ChipObject/chipObjectAliases.h
deleted file mode 100644
index 2b2bb48..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/chipObjectAliases.h
+++ /dev/null
@@ -1,10 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __chipObjectAliases_h__
-#define __chipObjectAliases_h__
-
-#define nInvariantFPGANamespace nFRC_C0EF_1_1_0
-#define nRuntimeFPGANamespace nFRC_2012_1_6_4
-
-#endif // __chipObjectAliases_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/fpgainterfacecapi/NiFpga.h b/aos/externals/WPILib/WPILib/ChipObject/fpgainterfacecapi/NiFpga.h
deleted file mode 100644
index 8e8f88d..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/fpgainterfacecapi/NiFpga.h
+++ /dev/null
@@ -1,2435 +0,0 @@
-/*
- * FPGA Interface C API 13.0 header file.
- *
- * Copyright (c) 2013,
- * National Instruments Corporation.
- * All rights reserved.
- */
-
-#ifndef __NiFpga_h__
-#define __NiFpga_h__
-
-/*
- * Determine platform details.
- */
-#if defined(_M_IX86) \
- || defined(_M_X64) \
- || defined(_M_AMD64) \
- || defined(i386) \
- || defined(__i386) \
- || defined(__i386__) \
- || defined(__i486__) \
- || defined(__i586__) \
- || defined(__i686__) \
- || defined(__amd64__) \
- || defined(__amd64) \
- || defined(__x86_64__) \
- || defined(__x86_64) \
- || defined(__IA32__) \
- || defined(_X86_) \
- || defined(__THW_INTEL__) \
- || defined(__I86__) \
- || defined(__INTEL__) \
- || defined(__X86__) \
- || defined(__386__) \
- || defined(__I86__) \
- || defined(M_I386) \
- || defined(M_I86) \
- || defined(_M_I386) \
- || defined(_M_I86)
-   #if defined(_WIN32) \
-    || defined(_WIN64) \
-    || defined(__WIN32__) \
-    || defined(__TOS_WIN__) \
-    || defined(__WINDOWS__) \
-    || defined(_WINDOWS) \
-    || defined(__WINDOWS_386__) \
-    || defined(__CYGWIN__)
-      /* Either Windows or Phar Lap ETS. */
-      #define NiFpga_Windows 1
-   #elif defined(__linux__) \
-      || defined(__linux) \
-      || defined(linux) \
-      || defined(__gnu_linux__)
-      #define NiFpga_Linux 1
-   #else
-      #error Unsupported OS.
-   #endif
-#elif defined(__powerpc) \
-   || defined(__powerpc__) \
-   || defined(__POWERPC__) \
-   || defined(__ppc__) \
-   || defined(__PPC) \
-   || defined(_M_PPC) \
-   || defined(_ARCH_PPC) \
-   || defined(__PPC__) \
-   || defined(__ppc)
-   #if defined(__vxworks)
-      #define NiFpga_VxWorks 1
-   #else
-      #error Unsupported OS.
-   #endif
-#elif defined(__arm__) \
-   || defined(__thumb__) \
-   || defined(__TARGET_ARCH_ARM) \
-   || defined(__TARGET_ARCH_THUMB) \
-   || defined(_ARM) \
-   || defined(_M_ARM) \
-   || defined(_M_ARMT)
-   #if defined(__linux__) \
-    || defined(__linux) \
-    || defined(linux) \
-    || defined(__gnu_linux__)
-      #define NiFpga_Linux 1
-   #else
-      #error Unsupported OS.
-   #endif
-#else
-   #error Unsupported architecture.
-#endif
-
-/*
- * Determine compiler.
- */
-#if defined(_MSC_VER)
-   #define NiFpga_Msvc 1
-#elif defined(__GNUC__)
-   #define NiFpga_Gcc 1
-#elif defined(_CVI_) && !defined(_TPC_)
-   #define NiFpga_Cvi 1
-   /* Enables CVI Library Protection Errors. */
-   #pragma EnableLibraryRuntimeChecking
-#else
-   /* Unknown compiler. */
-#endif
-
-/*
- * Determine compliance with different C/C++ language standards.
- */
-#if defined(__cplusplus)
-   #define NiFpga_Cpp 1
-   #if __cplusplus >= 199707L
-      #define NiFpga_Cpp98 1
-      #if __cplusplus >= 201103L
-         #define NiFpga_Cpp11 1
-      #endif
-   #endif
-#endif
-#if defined(__STDC__)
-   #define NiFpga_C89 1
-   #if defined(__STDC_VERSION__)
-      #define NiFpga_C90 1
-      #if __STDC_VERSION__ >= 199409L
-         #define NiFpga_C94 1
-         #if __STDC_VERSION__ >= 199901L
-            #define NiFpga_C99 1
-            #if __STDC_VERSION__ >= 201112L
-               #define NiFpga_C11 1
-            #endif
-         #endif
-      #endif
-   #endif
-#endif
-
-/*
- * Determine ability to inline functions.
- */
-#if NiFpga_Cpp || NiFpga_C99
-   /* The inline keyword exists in C++ and C99. */
-   #define NiFpga_Inline inline
-#elif NiFpga_Msvc
-   /* Visual C++ (at least since 6.0) also supports an alternate keyword. */
-   #define NiFpga_Inline __inline
-#elif NiFpga_Gcc
-   /* GCC (at least since 2.95.2) also supports an alternate keyword. */
-   #define NiFpga_Inline __inline__
-#elif !defined(NiFpga_Inline)
-   /*
-    * Disable inlining if inline support is unknown. To manually enable
-    * inlining, #define the following macro before #including NiFpga.h:
-    *
-    *    #define NiFpga_Inline inline
-    */
-   #define NiFpga_Inline
-#endif
-
-/*
- * Define exact-width integer types, if they have not already been defined.
- */
-#if NiFpga_ExactWidthIntegerTypesDefined \
- || defined(_STDINT) \
- || defined(_STDINT_H) \
- || defined(_STDINT_H_) \
- || defined(_INTTYPES_H) \
- || defined(_INTTYPES_H_) \
- || defined(_SYS_STDINT_H) \
- || defined(_SYS_STDINT_H_) \
- || defined(_SYS_INTTYPES_H) \
- || defined(_SYS_INTTYPES_H_) \
- || defined(_STDINT_H_INCLUDED) \
- || defined(_MSC_STDINT_H_) \
- || defined(_PSTDINT_H_INCLUDED)
-   /* Assume that exact-width integer types have already been defined. */
-#elif NiFpga_VxWorks
-   /* VxWorks (at least 6.3 and earlier) did not have stdint.h. */
-   #include <types/vxTypes.h>
-#elif NiFpga_C99 \
-   || NiFpga_Gcc /* GCC (at least since 3.0) has a stdint.h. */ \
-   || defined(HAVE_STDINT_H)
-   /* Assume that stdint.h can be included. */
-   #include <stdint.h>
-#elif NiFpga_Msvc \
-   || NiFpga_Cvi
-   /* Manually define exact-width integer types. */
-   typedef   signed    char  int8_t;
-   typedef unsigned    char uint8_t;
-   typedef            short  int16_t;
-   typedef unsigned   short uint16_t;
-   typedef              int  int32_t;
-   typedef unsigned     int uint32_t;
-   typedef          __int64  int64_t;
-   typedef unsigned __int64 uint64_t;
-#else
-   /*
-    * Exact-width integer types must be defined by the user, and the following
-    * macro must be #defined, before #including NiFpga.h:
-    *
-    *    #define NiFpga_ExactWidthIntegerTypesDefined 1
-    */
-   #error Exact-width integer types must be defined by the user. See comment.
-#endif
-
-/* Included for definition of size_t. */
-#include <stddef.h>
-
-#if NiFpga_Cpp
-extern "C"
-{
-#endif
-
-/**
- * A boolean value; either NiFpga_False or NiFpga_True.
- */
-typedef uint8_t NiFpga_Bool;
-
-/**
- * Represents a false condition.
- */
-static const NiFpga_Bool NiFpga_False = 0;
-
-/**
- * Represents a true condition.
- */
-static const NiFpga_Bool NiFpga_True = 1;
-
-/**
- * Represents the resulting status of a function call through its return value.
- * 0 is success, negative values are errors, and positive values are warnings.
- */
-typedef int32_t NiFpga_Status;
-
-/**
- * No errors or warnings.
- */
-static const NiFpga_Status NiFpga_Status_Success = 0;
-
-/**
- * The timeout expired before the FIFO operation could complete.
- */
-static const NiFpga_Status NiFpga_Status_FifoTimeout = -50400;
-
-/**
- * A memory allocation failed. Try again after rebooting.
- */
-static const NiFpga_Status NiFpga_Status_MemoryFull = -52000;
-
-/**
- * An unexpected software error occurred.
- */
-static const NiFpga_Status NiFpga_Status_SoftwareFault = -52003;
-
-/**
- * A parameter to a function was not valid. This could be a NULL pointer, a bad
- * value, etc.
- */
-static const NiFpga_Status NiFpga_Status_InvalidParameter = -52005;
-
-/**
- * A required resource was not found. The NiFpga.* library, the RIO resource, or
- * some other resource may be missing.
- */
-static const NiFpga_Status NiFpga_Status_ResourceNotFound = -52006;
-
-/**
- * A required resource was not properly initialized. This could occur if
- * NiFpga_Initialize was not called or a required NiFpga_IrqContext was not
- * reserved.
- */
-static const NiFpga_Status NiFpga_Status_ResourceNotInitialized = -52010;
-
-/**
- * The FPGA is already running.
- */
-static const NiFpga_Status NiFpga_Status_FpgaAlreadyRunning = -61003;
-
-/**
- * An error occurred downloading the VI to the FPGA device. Verify that
- * the target is connected and powered and that the resource of the target
- * is properly configured.
- */
-static const NiFpga_Status NiFpga_Status_DownloadError = -61018;
-
-/**
- * The bitfile was not compiled for the specified resource's device type.
- */
-static const NiFpga_Status NiFpga_Status_DeviceTypeMismatch = -61024;
-
-/**
- * An error was detected in the communication between the host computer and the
- * FPGA target.
- */
-static const NiFpga_Status NiFpga_Status_CommunicationTimeout = -61046;
-
-/**
- * The timeout expired before any of the IRQs were asserted.
- */
-static const NiFpga_Status NiFpga_Status_IrqTimeout = -61060;
-
-/**
- * The specified bitfile is invalid or corrupt.
- */
-static const NiFpga_Status NiFpga_Status_CorruptBitfile = -61070;
-
-/**
- * The requested FIFO depth is invalid. It is either 0 or an amount not
- * supported by the hardware.
- */
-static const NiFpga_Status NiFpga_Status_BadDepth = -61072;
-
-/**
- * The number of FIFO elements is invalid. Either the number is greater than the
- * depth of the host memory DMA FIFO, or more elements were requested for
- * release than had been acquired.
- */
-static const NiFpga_Status NiFpga_Status_BadReadWriteCount = -61073;
-
-/**
- * A hardware clocking error occurred. A derived clock lost lock with its base
- * clock during the execution of the LabVIEW FPGA VI. If any base clocks with
- * derived clocks are referencing an external source, make sure that the
- * external source is connected and within the supported frequency, jitter,
- * accuracy, duty cycle, and voltage specifications. Also verify that the
- * characteristics of the base clock match the configuration specified in the
- * FPGA Base Clock Properties. If all base clocks with derived clocks are
- * generated from free-running, on-board sources, please contact National
- * Instruments technical support at ni.com/support.
- */
-static const NiFpga_Status NiFpga_Status_ClockLostLock = -61083;
-
-/**
- * The operation could not be performed because the FPGA is busy. Stop all
- * activities on the FPGA before requesting this operation. If the target is in
- * Scan Interface programming mode, put it in FPGA Interface programming mode.
- */
-static const NiFpga_Status NiFpga_Status_FpgaBusy = -61141;
-
-/**
- * The operation could not be performed because the FPGA is busy operating in
- * FPGA Interface C API mode. Stop all activities on the FPGA before requesting
- * this operation.
- */
-static const NiFpga_Status NiFpga_Status_FpgaBusyFpgaInterfaceCApi = -61200;
-
-/**
- * The chassis is in Scan Interface programming mode. In order to run FPGA VIs,
- * you must go to the chassis properties page, select FPGA programming mode, and
- * deploy settings.
- */
-static const NiFpga_Status NiFpga_Status_FpgaBusyScanInterface = -61201;
-
-/**
- * The operation could not be performed because the FPGA is busy operating in
- * FPGA Interface mode. Stop all activities on the FPGA before requesting this
- * operation.
- */
-static const NiFpga_Status NiFpga_Status_FpgaBusyFpgaInterface = -61202;
-
-/**
- * The operation could not be performed because the FPGA is busy operating in
- * Interactive mode. Stop all activities on the FPGA before requesting this
- * operation.
- */
-static const NiFpga_Status NiFpga_Status_FpgaBusyInteractive = -61203;
-
-/**
- * The operation could not be performed because the FPGA is busy operating in
- * Emulation mode. Stop all activities on the FPGA before requesting this
- * operation.
- */
-static const NiFpga_Status NiFpga_Status_FpgaBusyEmulation = -61204;
-
-/**
- * LabVIEW FPGA does not support the Reset method for bitfiles that allow
- * removal of implicit enable signals in single-cycle Timed Loops.
- */
-static const NiFpga_Status NiFpga_Status_ResetCalledWithImplicitEnableRemoval = -61211;
-
-/**
- * LabVIEW FPGA does not support the Abort method for bitfiles that allow
- * removal of implicit enable signals in single-cycle Timed Loops.
- */
-static const NiFpga_Status NiFpga_Status_AbortCalledWithImplicitEnableRemoval = -61212;
-
-/**
- * LabVIEW FPGA does not support Close and Reset if Last Reference for bitfiles
- * that allow removal of implicit enable signals in single-cycle Timed Loops.
- * Pass the NiFpga_CloseAttribute_NoResetIfLastSession attribute to NiFpga_Close
- * instead of 0.
- */
-static const NiFpga_Status NiFpga_Status_CloseAndResetCalledWithImplicitEnableRemoval = -61213;
-
-/**
- * For bitfiles that allow removal of implicit enable signals in single-cycle
- * Timed Loops, LabVIEW FPGA does not support this method prior to running the
- * bitfile.
- */
-static const NiFpga_Status NiFpga_Status_ImplicitEnableRemovalButNotYetRun = -61214;
-
-/**
- * Bitfiles that allow removal of implicit enable signals in single-cycle Timed
- * Loops can run only once. Download the bitfile again before re-running the VI.
- */
-static const NiFpga_Status NiFpga_Status_RunAfterStoppedCalledWithImplicitEnableRemoval = -61215;
-
-/**
- * A gated clock has violated the handshaking protocol. If you are using
- * external gated clocks, ensure that they follow the required clock gating
- * protocol. If you are generating your clocks internally, please contact
- * National Instruments Technical Support.
- */
-static const NiFpga_Status NiFpga_Status_GatedClockHandshakingViolation = -61216;
-
-/**
- * The number of elements requested must be less than or equal to the number of
- * unacquired elements left in the host memory DMA FIFO. There are currently
- * fewer unacquired elements left in the FIFO than are being requested. Release
- * some acquired elements before acquiring more elements.
- */
-static const NiFpga_Status NiFpga_Status_ElementsNotPermissibleToBeAcquired = -61219;
-
-/**
- * An unexpected internal error occurred.
- */
-static const NiFpga_Status NiFpga_Status_InternalError = -61499;
-
-/**
- * The NI-RIO driver was unable to allocate memory for a FIFO. This can happen
- * when the combined depth of all DMA FIFOs exceeds the maximum depth for the
- * controller, or when the controller runs out of system memory. You may be able
- * to reconfigure the controller with a greater maximum FIFO depth. For more
- * information, refer to the NI KnowledgeBase article 65OF2ERQ.
- */
-static const NiFpga_Status NiFpga_Status_TotalDmaFifoDepthExceeded = -63003;
-
-/**
- * Access to the remote system was denied. Use MAX to check the Remote Device
- * Access settings under Software>>NI-RIO>>NI-RIO Settings on the remote system.
- */
-static const NiFpga_Status NiFpga_Status_AccessDenied = -63033;
-
-/**
- * The NI-RIO software on the host is not compatible with the software on the
- * target. Upgrade the NI-RIO software on the host in order to connect to this
- * target.
- */
-static const NiFpga_Status NiFpga_Status_HostVersionMismatch = -63038;
-
-/**
- * A connection could not be established to the specified remote device. Ensure
- * that the device is on and accessible over the network, that NI-RIO software
- * is installed, and that the RIO server is running and properly configured.
- */
-static const NiFpga_Status NiFpga_Status_RpcConnectionError = -63040;
-
-/**
- * The RPC session is invalid. The target may have reset or been rebooted. Check
- * the network connection and retry the operation.
- */
-static const NiFpga_Status NiFpga_Status_RpcSessionError = -63043;
-
-/**
- * The operation could not complete because another session is accessing the
- * FIFO. Close the other session and retry.
- */
-static const NiFpga_Status NiFpga_Status_FifoReserved = -63082;
-
-/**
- * A Configure FIFO, Stop FIFO, Read FIFO, or Write FIFO function was called
- * while the host had acquired elements of the FIFO. Release all acquired
- * elements before configuring, stopping, reading, or writing.
- */
-static const NiFpga_Status NiFpga_Status_FifoElementsCurrentlyAcquired = -63083;
-
-/**
- * A function was called using a misaligned address. The address must be a
- * multiple of the size of the datatype.
- */
-static const NiFpga_Status NiFpga_Status_MisalignedAccess = -63084;
-
-/**
- * The FPGA Read/Write Control Function is accessing a control or indicator
- * with data that exceeds the maximum size supported on the current target.
- * Refer to the hardware documentation for the limitations on data types for
- * this target.
- */
-static const NiFpga_Status NiFpga_Status_ControlOrIndicatorTooLarge = -63085;
-
-/**
- * A valid .lvbitx bitfile is required. If you are using a valid .lvbitx
- * bitfile, the bitfile may not be compatible with the software you are using.
- * Determine which version of LabVIEW was used to make the bitfile, update your
- * software to that version or later, and try again.
- */
-static const NiFpga_Status NiFpga_Status_BitfileReadError = -63101;
-
-/**
- * The specified signature does not match the signature of the bitfile. If the
- * bitfile has been recompiled, regenerate the C API and rebuild the
- * application.
- */
-static const NiFpga_Status NiFpga_Status_SignatureMismatch = -63106;
-
-/**
- * The bitfile you are trying to use is not compatible with the version of
- * NI-RIO installed on the target and/or the host. Determine which versions of
- * NI-RIO and LabVIEW were used to make the bitfile, update the software on the
- * target and host to that version or later, and try again.
- */
-static const NiFpga_Status NiFpga_Status_IncompatibleBitfile = -63107;
-
-/**
- * Either the supplied resource name is invalid as a RIO resource name, or the
- * device was not found. Use MAX to find the proper resource name for the
- * intended device.
- */
-static const NiFpga_Status NiFpga_Status_InvalidResourceName = -63192;
-
-/**
- * The requested feature is not supported.
- */
-static const NiFpga_Status NiFpga_Status_FeatureNotSupported = -63193;
-
-/**
- * The NI-RIO software on the target system is not compatible with this
- * software. Upgrade the NI-RIO software on the target system.
- */
-static const NiFpga_Status NiFpga_Status_VersionMismatch = -63194;
-
-/**
- * The session is invalid or has been closed.
- */
-static const NiFpga_Status NiFpga_Status_InvalidSession = -63195;
-
-/**
- * The maximum number of open FPGA sessions has been reached. Close some open
- * sessions.
- */
-static const NiFpga_Status NiFpga_Status_OutOfHandles = -63198;
-
-/**
- * Tests whether a status is an error.
- *
- * @param status status to check for an error
- * @return whether the status was an error
- */
-static NiFpga_Inline NiFpga_Bool NiFpga_IsError(const NiFpga_Status status)
-{
-   return status < NiFpga_Status_Success;
-}
-
-/**
- * Tests whether a status is not an error. Success and warnings are not errors.
- *
- * @param status status to check for an error
- * @return whether the status was a success or warning
- */
-static NiFpga_Inline NiFpga_Bool NiFpga_IsNotError(const NiFpga_Status status)
-{
-   return status >= NiFpga_Status_Success;
-}
-
-/**
- * Conditionally sets the status to a new value. The previous status is
- * preserved unless the new status is more of an error, which means that
- * warnings and errors overwrite successes, and errors overwrite warnings. New
- * errors do not overwrite older errors, and new warnings do not overwrite
- * older warnings.
- *
- * @param status status to conditionally set
- * @param newStatus new status value that may be set
- * @return the resulting status
- */
-static NiFpga_Inline NiFpga_Status NiFpga_MergeStatus(
-                                                NiFpga_Status* const status,
-                                                const NiFpga_Status  newStatus)
-{
-   if (!status)
-      return NiFpga_Status_InvalidParameter;
-   if (NiFpga_IsNotError(*status)
-   &&  (*status == NiFpga_Status_Success || NiFpga_IsError(newStatus)))
-      *status = newStatus;
-   return *status;
-}
-
-/**
- * This macro evaluates the expression only if the status is not an error. The
- * expression must evaluate to an NiFpga_Status, such as a call to any NiFpga_*
- * function, because the status will be set to the returned status if the
- * expression is evaluated.
- *
- * You can use this macro to mimic status chaining in LabVIEW, where the status
- * does not have to be explicitly checked after each call. Such code may look
- * like the following example.
- *
- *    NiFpga_Status status = NiFpga_Status_Success;
- *    NiFpga_IfIsNotError(status, NiFpga_WriteU32(...));
- *    NiFpga_IfIsNotError(status, NiFpga_WriteU32(...));
- *    NiFpga_IfIsNotError(status, NiFpga_WriteU32(...));
- *
- * @param status status to check for an error
- * @param expression expression to call if the incoming status is not an error
- */
-#define NiFpga_IfIsNotError(status, expression) \
-   if (NiFpga_IsNotError(status)) \
-      NiFpga_MergeStatus(&status, (expression)); \
-
-/**
- * You must call this function before all other function calls. This function
- * loads the NiFpga library so that all the other functions will work. If this
- * function succeeds, you must call NiFpga_Finalize after all other function
- * calls.
- *
- * @warning This function is not thread safe.
- *
- * @return result of the call
- */
-NiFpga_Status NiFpga_Initialize(void);
-
-/**
- * You must call this function after all other function calls if
- * NiFpga_Initialize succeeds. This function unloads the NiFpga library.
- *
- * @warning This function is not thread safe.
- *
- * @return result of the call
- */
-NiFpga_Status NiFpga_Finalize(void);
-
-/**
- * A handle to an FPGA session.
- */
-typedef uint32_t NiFpga_Session;
-
-/**
- * Attributes that NiFpga_Open accepts.
- */
-typedef enum
-{
-   NiFpga_OpenAttribute_NoRun = 1
-} NiFpga_OpenAttribute;
-
-/**
- * Opens a session to the FPGA. This call ensures that the contents of the
- * bitfile are programmed to the FPGA. The FPGA runs unless the
- * NiFpga_OpenAttribute_NoRun attribute is used.
- *
- * Because different operating systems have different default current working
- * directories for applications, you must pass an absolute path for the bitfile
- * parameter. If you pass only the filename instead of an absolute path, the
- * operating system may not be able to locate the bitfile. For example, the
- * default current working directories are C:\ni-rt\system\ for Phar Lap ETS and
- * /c/ for VxWorks. Because the generated *_Bitfile constant is a #define to a
- * string literal, you can use C/C++ string-literal concatenation to form an
- * absolute path. For example, if the bitfile is in the root directory of a
- * Phar Lap ETS system, pass the following for the bitfile parameter.
- *
- *    "C:\\" NiFpga_MyApplication_Bitfile
- *
- * @param bitfile path to the bitfile
- * @param signature signature of the bitfile
- * @param resource RIO resource string to open ("RIO0" or "rio://mysystem/RIO")
- * @param attribute bitwise OR of any NiFpga_OpenAttributes, or 0
- * @param session outputs the session handle, which must be closed when no
- *                longer needed
- * @return result of the call
- */
-NiFpga_Status NiFpga_Open(const char*     bitfile,
-                          const char*     signature,
-                          const char*     resource,
-                          uint32_t        attribute,
-                          NiFpga_Session* session);
-
-/**
- * Attributes that NiFpga_Close accepts.
- */
-typedef enum
-{
-   NiFpga_CloseAttribute_NoResetIfLastSession = 1
-} NiFpga_CloseAttribute;
-
-/**
- * Closes the session to the FPGA. The FPGA resets unless either another session
- * is still open or you use the NiFpga_CloseAttribute_NoResetIfLastSession
- * attribute.
- *
- * @param session handle to a currently open session
- * @param attribute bitwise OR of any NiFpga_CloseAttributes, or 0
- * @return result of the call
- */
-NiFpga_Status NiFpga_Close(NiFpga_Session session,
-                           uint32_t       attribute);
-
-/**
- * Attributes that NiFpga_Run accepts.
- */
-typedef enum
-{
-   NiFpga_RunAttribute_WaitUntilDone = 1
-} NiFpga_RunAttribute;
-
-/**
- * Runs the FPGA VI on the target. If you use NiFpga_RunAttribute_WaitUntilDone,
- * NiFpga_Run blocks the thread until the FPGA finishes running.
- *
- * @param session handle to a currently open session
- * @param attribute bitwise OR of any NiFpga_RunAttributes, or 0
- * @return result of the call
- */
-NiFpga_Status NiFpga_Run(NiFpga_Session session,
-                         uint32_t       attribute);
-
-/**
- * Aborts the FPGA VI.
- *
- * @param session handle to a currently open session
- * @return result of the call
- */
-NiFpga_Status NiFpga_Abort(NiFpga_Session session);
-
-/**
- * Resets the FPGA VI.
- *
- * @param session handle to a currently open session
- * @return result of the call
- */
-NiFpga_Status NiFpga_Reset(NiFpga_Session session);
-
-/**
- * Re-downloads the FPGA bitstream to the target.
- *
- * @param session handle to a currently open session
- * @return result of the call
- */
-NiFpga_Status NiFpga_Download(NiFpga_Session session);
-
-/**
- * Reads a boolean value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadBool(NiFpga_Session session,
-                              uint32_t       indicator,
-                              NiFpga_Bool*   value);
-
-/**
- * Reads a signed 8-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadI8(NiFpga_Session session,
-                            uint32_t       indicator,
-                            int8_t*        value);
-
-/**
- * Reads an unsigned 8-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadU8(NiFpga_Session session,
-                            uint32_t       indicator,
-                            uint8_t*       value);
-
-/**
- * Reads a signed 16-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadI16(NiFpga_Session session,
-                             uint32_t       indicator,
-                             int16_t*       value);
-
-/**
- * Reads an unsigned 16-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadU16(NiFpga_Session session,
-                             uint32_t       indicator,
-                             uint16_t*      value);
-
-/**
- * Reads a signed 32-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadI32(NiFpga_Session session,
-                             uint32_t       indicator,
-                             int32_t*       value);
-
-/**
- * Reads an unsigned 32-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadU32(NiFpga_Session session,
-                             uint32_t       indicator,
-                             uint32_t*      value);
-
-/**
- * Reads a signed 64-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadI64(NiFpga_Session session,
-                             uint32_t       indicator,
-                             int64_t*       value);
-
-/**
- * Reads an unsigned 64-bit integer value from a given indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param value outputs the value that was read
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadU64(NiFpga_Session session,
-                             uint32_t       indicator,
-                             uint64_t*      value);
-
-/**
- * Writes a boolean value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteBool(NiFpga_Session session,
-                               uint32_t       control,
-                               NiFpga_Bool    value);
-
-/**
- * Writes a signed 8-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteI8(NiFpga_Session session,
-                             uint32_t       control,
-                             int8_t         value);
-
-/**
- * Writes an unsigned 8-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteU8(NiFpga_Session session,
-                             uint32_t       control,
-                             uint8_t        value);
-
-/**
- * Writes a signed 16-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteI16(NiFpga_Session session,
-                              uint32_t       control,
-                              int16_t        value);
-
-/**
- * Writes an unsigned 16-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteU16(NiFpga_Session session,
-                              uint32_t       control,
-                              uint16_t       value);
-
-/**
- * Writes a signed 32-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteI32(NiFpga_Session session,
-                              uint32_t       control,
-                              int32_t        value);
-
-/**
- * Writes an unsigned 32-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteU32(NiFpga_Session session,
-                              uint32_t       control,
-                              uint32_t       value);
-
-/**
- * Writes a signed 64-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteI64(NiFpga_Session session,
-                              uint32_t       control,
-                              int64_t        value);
-
-/**
- * Writes an unsigned 64-bit integer value to a given control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param value value to write
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteU64(NiFpga_Session session,
-                              uint32_t       control,
-                              uint64_t       value);
-
-/**
- * Reads an entire array of boolean values from a given array indicator or
- * control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayBool(NiFpga_Session session,
-                                   uint32_t       indicator,
-                                   NiFpga_Bool*   array,
-                                   size_t         size);
-
-/**
- * Reads an entire array of signed 8-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayI8(NiFpga_Session session,
-                                 uint32_t       indicator,
-                                 int8_t*        array,
-                                 size_t         size);
-
-/**
- * Reads an entire array of unsigned 8-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayU8(NiFpga_Session session,
-                                 uint32_t       indicator,
-                                 uint8_t*       array,
-                                 size_t         size);
-
-/**
- * Reads an entire array of signed 16-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayI16(NiFpga_Session session,
-                                  uint32_t       indicator,
-                                  int16_t*       array,
-                                  size_t         size);
-
-/**
- * Reads an entire array of unsigned 16-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayU16(NiFpga_Session session,
-                                  uint32_t       indicator,
-                                  uint16_t*      array,
-                                  size_t         size);
-
-/**
- * Reads an entire array of signed 32-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayI32(NiFpga_Session session,
-                                  uint32_t       indicator,
-                                  int32_t*       array,
-                                  size_t         size);
-
-/**
- * Reads an entire array of unsigned 32-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayU32(NiFpga_Session session,
-                                  uint32_t       indicator,
-                                  uint32_t*      array,
-                                  size_t         size);
-
-/**
- * Reads an entire array of signed 64-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayI64(NiFpga_Session session,
-                                  uint32_t       indicator,
-                                  int64_t*       array,
-                                  size_t         size);
-
-/**
- * Reads an entire array of unsigned 64-bit integer values from a given array
- * indicator or control.
- *
- * @warning The size passed must be the exact number of elements in the
- *          indicator or control.
- *
- * @param session handle to a currently open session
- * @param indicator indicator or control from which to read
- * @param array outputs the entire array that was read
- * @param size exact number of elements in the indicator or control
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadArrayU64(NiFpga_Session session,
-                                  uint32_t       indicator,
-                                  uint64_t*      array,
-                                  size_t         size);
-
-/**
- * Writes an entire array of boolean values to a given array control or
- * indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayBool(NiFpga_Session     session,
-                                    uint32_t           control,
-                                    const NiFpga_Bool* array,
-                                    size_t             size);
-
-/**
- * Writes an entire array of signed 8-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayI8(NiFpga_Session session,
-                                  uint32_t       control,
-                                  const int8_t*  array,
-                                  size_t         size);
-
-/**
- * Writes an entire array of unsigned 8-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayU8(NiFpga_Session session,
-                                  uint32_t       control,
-                                  const uint8_t* array,
-                                  size_t         size);
-
-/**
- * Writes an entire array of signed 16-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayI16(NiFpga_Session session,
-                                   uint32_t       control,
-                                   const int16_t* array,
-                                   size_t         size);
-
-/**
- * Writes an entire array of unsigned 16-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayU16(NiFpga_Session  session,
-                                   uint32_t        control,
-                                   const uint16_t* array,
-                                   size_t          size);
-
-/**
- * Writes an entire array of signed 32-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayI32(NiFpga_Session session,
-                                   uint32_t       control,
-                                   const int32_t* array,
-                                   size_t         size);
-
-/**
- * Writes an entire array of unsigned 32-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayU32(NiFpga_Session  session,
-                                   uint32_t        control,
-                                   const uint32_t* array,
-                                   size_t          size);
-
-/**
- * Writes an entire array of signed 64-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayI64(NiFpga_Session session,
-                                   uint32_t       control,
-                                   const int64_t* array,
-                                   size_t         size);
-
-/**
- * Writes an entire array of unsigned 64-bit integer values to a given array
- * control or indicator.
- *
- * @warning The size passed must be the exact number of elements in the
- *          control or indicator.
- *
- * @param session handle to a currently open session
- * @param control control or indicator to which to write
- * @param array entire array to write
- * @param size exact number of elements in the control or indicator
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteArrayU64(NiFpga_Session  session,
-                                   uint32_t        control,
-                                   const uint64_t* array,
-                                   size_t          size);
-
-/**
- * Enumeration of all 32 possible IRQs. Multiple IRQs can be bitwise ORed
- * together like this:
- *
- *    NiFpga_Irq_3 | NiFpga_Irq_23
- */
-typedef enum
-{
-   NiFpga_Irq_0  = 1 << 0,
-   NiFpga_Irq_1  = 1 << 1,
-   NiFpga_Irq_2  = 1 << 2,
-   NiFpga_Irq_3  = 1 << 3,
-   NiFpga_Irq_4  = 1 << 4,
-   NiFpga_Irq_5  = 1 << 5,
-   NiFpga_Irq_6  = 1 << 6,
-   NiFpga_Irq_7  = 1 << 7,
-   NiFpga_Irq_8  = 1 << 8,
-   NiFpga_Irq_9  = 1 << 9,
-   NiFpga_Irq_10 = 1 << 10,
-   NiFpga_Irq_11 = 1 << 11,
-   NiFpga_Irq_12 = 1 << 12,
-   NiFpga_Irq_13 = 1 << 13,
-   NiFpga_Irq_14 = 1 << 14,
-   NiFpga_Irq_15 = 1 << 15,
-   NiFpga_Irq_16 = 1 << 16,
-   NiFpga_Irq_17 = 1 << 17,
-   NiFpga_Irq_18 = 1 << 18,
-   NiFpga_Irq_19 = 1 << 19,
-   NiFpga_Irq_20 = 1 << 20,
-   NiFpga_Irq_21 = 1 << 21,
-   NiFpga_Irq_22 = 1 << 22,
-   NiFpga_Irq_23 = 1 << 23,
-   NiFpga_Irq_24 = 1 << 24,
-   NiFpga_Irq_25 = 1 << 25,
-   NiFpga_Irq_26 = 1 << 26,
-   NiFpga_Irq_27 = 1 << 27,
-   NiFpga_Irq_28 = 1 << 28,
-   NiFpga_Irq_29 = 1 << 29,
-   NiFpga_Irq_30 = 1 << 30,
-   NiFpga_Irq_31 = 1U << 31
-} NiFpga_Irq;
-
-/**
- * Represents an infinite timeout.
- */
-static const uint32_t NiFpga_InfiniteTimeout = 0xFFFFFFFF;
-
-/**
- * See NiFpga_ReserveIrqContext for more information.
- */
-typedef void* NiFpga_IrqContext;
-
-/**
- * IRQ contexts are single-threaded; only one thread can wait with a particular
- * context at any given time. Clients must reserve as many contexts as the
- * application requires.
- *
- * If a context is successfully reserved (the returned status is not an error),
- * it must be unreserved later. Otherwise a memory leak will occur.
- *
- * @param session handle to a currently open session
- * @param context outputs the IRQ context
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReserveIrqContext(NiFpga_Session     session,
-                                       NiFpga_IrqContext* context);
-
-/**
- * Unreserves an IRQ context obtained from NiFpga_ReserveIrqContext.
- *
- * @param session handle to a currently open session
- * @param context IRQ context to unreserve
- * @return result of the call
- */
-NiFpga_Status NiFpga_UnreserveIrqContext(NiFpga_Session    session,
-                                         NiFpga_IrqContext context);
-
-/**
- * This is a blocking function that stops the calling thread until the FPGA
- * asserts any IRQ in the irqs parameter, or until the function call times out.
- * Before calling this function, you must use NiFpga_ReserveIrqContext to
- * reserve an IRQ context. No other threads can use the same context when this
- * function is called.
- *
- * You can use the irqsAsserted parameter to determine which IRQs were asserted
- * for each function call.
- *
- * @param session handle to a currently open session
- * @param context IRQ context with which to wait
- * @param irqs bitwise OR of NiFpga_Irqs
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param irqsAsserted if non-NULL, outputs bitwise OR of IRQs that were
- *                     asserted
- * @param timedOut if non-NULL, outputs whether the timeout expired
- * @return result of the call
- */
-NiFpga_Status NiFpga_WaitOnIrqs(NiFpga_Session    session,
-                                NiFpga_IrqContext context,
-                                uint32_t          irqs,
-                                uint32_t          timeout,
-                                uint32_t*         irqsAsserted,
-                                NiFpga_Bool*      timedOut);
-
-/**
- * Acknowledges an IRQ or set of IRQs.
- *
- * @param session handle to a currently open session
- * @param irqs bitwise OR of NiFpga_Irqs
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcknowledgeIrqs(NiFpga_Session session,
-                                     uint32_t       irqs);
-
-/**
- * Specifies the depth of the host memory part of the DMA FIFO. This method is
- * optional. In order to see the actual depth configured, use
- * NiFpga_ConfigureFifo2.
- *
- * @param session handle to a currently open session
- * @param fifo FIFO to configure
- * @param depth requested number of elements in the host memory part of the
- *              DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ConfigureFifo(NiFpga_Session session,
-                                   uint32_t       fifo,
-                                   size_t         depth);
-
-/**
- * Specifies the depth of the host memory part of the DMA FIFO. This method is
- * optional.
- *
- * @param session handle to a currently open session
- * @param fifo FIFO to configure
- * @param requestedDepth requested number of elements in the host memory part
- *                       of the DMA FIFO
- * @param actualDepth if non-NULL, outputs the actual number of elements in the
- *                    host memory part of the DMA FIFO, which may be more than
- *                    the requested number
- * @return result of the call
- */
-NiFpga_Status NiFpga_ConfigureFifo2(NiFpga_Session session,
-                                    uint32_t       fifo,
-                                    size_t         requestedDepth,
-                                    size_t*        actualDepth);
-
-/**
- * Starts a FIFO. This method is optional.
- *
- * @param session handle to a currently open session
- * @param fifo FIFO to start
- * @return result of the call
- */
-NiFpga_Status NiFpga_StartFifo(NiFpga_Session session,
-                               uint32_t       fifo);
-
-/**
- * Stops a FIFO. This method is optional.
- *
- * @param session handle to a currently open session
- * @param fifo FIFO to stop
- * @return result of the call
- */
-NiFpga_Status NiFpga_StopFifo(NiFpga_Session session,
-                              uint32_t       fifo);
-
-/**
- * Reads from a target-to-host FIFO of booleans.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoBool(NiFpga_Session session,
-                                  uint32_t       fifo,
-                                  NiFpga_Bool*   data,
-                                  size_t         numberOfElements,
-                                  uint32_t       timeout,
-                                  size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of signed 8-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoI8(NiFpga_Session session,
-                                uint32_t       fifo,
-                                int8_t*        data,
-                                size_t         numberOfElements,
-                                uint32_t       timeout,
-                                size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of unsigned 8-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoU8(NiFpga_Session session,
-                                uint32_t       fifo,
-                                uint8_t*       data,
-                                size_t         numberOfElements,
-                                uint32_t       timeout,
-                                size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of signed 16-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoI16(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 int16_t*       data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of unsigned 16-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoU16(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 uint16_t*      data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of signed 32-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoI32(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 int32_t*       data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of unsigned 32-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoU32(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 uint32_t*      data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of signed 64-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoI64(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 int64_t*       data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        elementsRemaining);
-
-/**
- * Reads from a target-to-host FIFO of unsigned 64-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param data outputs the data that was read
- * @param numberOfElements number of elements to read
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReadFifoU64(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 uint64_t*      data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        elementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of booleans.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoBool(NiFpga_Session     session,
-                                   uint32_t           fifo,
-                                   const NiFpga_Bool* data,
-                                   size_t             numberOfElements,
-                                   uint32_t           timeout,
-                                   size_t*            emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of signed 8-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoI8(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 const int8_t*  data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of unsigned 8-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoU8(NiFpga_Session session,
-                                 uint32_t       fifo,
-                                 const uint8_t* data,
-                                 size_t         numberOfElements,
-                                 uint32_t       timeout,
-                                 size_t*        emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of signed 16-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoI16(NiFpga_Session session,
-                                  uint32_t       fifo,
-                                  const int16_t* data,
-                                  size_t         numberOfElements,
-                                  uint32_t       timeout,
-                                  size_t*        emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of unsigned 16-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoU16(NiFpga_Session  session,
-                                  uint32_t        fifo,
-                                  const uint16_t* data,
-                                  size_t          numberOfElements,
-                                  uint32_t        timeout,
-                                  size_t*         emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of signed 32-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoI32(NiFpga_Session session,
-                                  uint32_t       fifo,
-                                  const int32_t* data,
-                                  size_t         numberOfElements,
-                                  uint32_t       timeout,
-                                  size_t*        emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of unsigned 32-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoU32(NiFpga_Session  session,
-                                  uint32_t        fifo,
-                                  const uint32_t* data,
-                                  size_t          numberOfElements,
-                                  uint32_t        timeout,
-                                  size_t*         emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of signed 64-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoI64(NiFpga_Session session,
-                                  uint32_t       fifo,
-                                  const int64_t* data,
-                                  size_t         numberOfElements,
-                                  uint32_t       timeout,
-                                  size_t*        emptyElementsRemaining);
-
-/**
- * Writes to a host-to-target FIFO of unsigned 64-bit integers.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param data data to write
- * @param numberOfElements number of elements to write
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param emptyElementsRemaining if non-NULL, outputs the number of empty
- *                               elements remaining in the host memory part of
- *                               the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_WriteFifoU64(NiFpga_Session  session,
-                                  uint32_t        fifo,
-                                  const uint64_t* data,
-                                  size_t          numberOfElements,
-                                  uint32_t        timeout,
-                                  size_t*         emptyElementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of booleans.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsBool(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             NiFpga_Bool**  elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of signed 8-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsI8(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             int8_t**       elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of unsigned 8-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsU8(
-                                            NiFpga_Session  session,
-                                            uint32_t        fifo,
-                                            uint8_t**       elements,
-                                            size_t          elementsRequested,
-                                            uint32_t        timeout,
-                                            size_t*         elementsAcquired,
-                                            size_t*         elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of signed 16-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsI16(
-                                            NiFpga_Session  session,
-                                            uint32_t        fifo,
-                                            int16_t**       elements,
-                                            size_t          elementsRequested,
-                                            uint32_t        timeout,
-                                            size_t*         elementsAcquired,
-                                            size_t*         elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of unsigned 16-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsU16(
-                                           NiFpga_Session   session,
-                                           uint32_t         fifo,
-                                           uint16_t**       elements,
-                                           size_t           elementsRequested,
-                                           uint32_t         timeout,
-                                           size_t*          elementsAcquired,
-                                           size_t*          elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of signed 32-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsI32(
-                                            NiFpga_Session  session,
-                                            uint32_t        fifo,
-                                            int32_t**       elements,
-                                            size_t          elementsRequested,
-                                            uint32_t        timeout,
-                                            size_t*         elementsAcquired,
-                                            size_t*         elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of unsigned 32-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsU32(
-                                           NiFpga_Session   session,
-                                           uint32_t         fifo,
-                                           uint32_t**       elements,
-                                           size_t           elementsRequested,
-                                           uint32_t         timeout,
-                                           size_t*          elementsAcquired,
-                                           size_t*          elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of signed 64-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsI64(
-                                            NiFpga_Session  session,
-                                            uint32_t        fifo,
-                                            int64_t**       elements,
-                                            size_t          elementsRequested,
-                                            uint32_t        timeout,
-                                            size_t*         elementsAcquired,
-                                            size_t*         elementsRemaining);
-
-/**
- * Acquires elements for reading from a target-to-host FIFO of unsigned 64-bit
- * integers.
- *
- * Acquiring, reading, and releasing FIFO elements prevents the need to copy
- * the contents of elements from the host memory buffer to a separate
- * user-allocated buffer before reading. The FPGA target cannot write to
- * elements acquired by the host. Therefore, the host must release elements
- * after reading them. The number of elements acquired may differ from the
- * number of elements requested if, for example, the number of elements
- * requested reaches the end of the host memory buffer. Always release all
- * acquired elements before closing the session. Do not attempt to access FIFO
- * elements after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo target-to-host FIFO from which to read
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoReadElementsU64(
-                                           NiFpga_Session   session,
-                                           uint32_t         fifo,
-                                           uint64_t**       elements,
-                                           size_t           elementsRequested,
-                                           uint32_t         timeout,
-                                           size_t*          elementsAcquired,
-                                           size_t*          elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of booleans.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsBool(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             NiFpga_Bool**  elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of signed 8-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsI8(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             int8_t**       elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of unsigned 8-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsU8(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             uint8_t**      elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of signed 16-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsI16(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             int16_t**      elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of unsigned 16-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsU16(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             uint16_t**     elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of signed 32-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsI32(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             int32_t**      elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of unsigned 32-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsU32(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             uint32_t**     elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of signed 64-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsI64(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             int64_t**      elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Acquires elements for writing to a host-to-target FIFO of unsigned 64-bit
- * integers.
- *
- * Acquiring, writing, and releasing FIFO elements prevents the need to write
- * first into a separate user-allocated buffer and then copy the contents of
- * elements to the host memory buffer. The FPGA target cannot read elements
- * acquired by the host. Therefore, the host must release elements after
- * writing to them. The number of elements acquired may differ from the number
- * of elements requested if, for example, the number of elements requested
- * reaches the end of the host memory buffer. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo host-to-target FIFO to which to write
- * @param elements outputs a pointer to the elements acquired
- * @param elementsRequested requested number of elements
- * @param timeout timeout in milliseconds, or NiFpga_InfiniteTimeout
- * @param elementsAcquired actual number of elements acquired, which may be
- *                         less than the requested number
- * @param elementsRemaining if non-NULL, outputs the number of elements
- *                          remaining in the host memory part of the DMA FIFO
- * @return result of the call
- */
-NiFpga_Status NiFpga_AcquireFifoWriteElementsU64(
-                                             NiFpga_Session session,
-                                             uint32_t       fifo,
-                                             uint64_t**     elements,
-                                             size_t         elementsRequested,
-                                             uint32_t       timeout,
-                                             size_t*        elementsAcquired,
-                                             size_t*        elementsRemaining);
-
-/**
- * Releases previously acquired FIFO elements.
- *
- * The FPGA target cannot read elements acquired by the host. Therefore, the
- * host must release elements after acquiring them. Always release all acquired
- * elements before closing the session. Do not attempt to access FIFO elements
- * after the elements are released or the session is closed.
- *
- * @param session handle to a currently open session
- * @param fifo FIFO from which to release elements
- * @param elements number of elements to release
- * @return result of the call
- */
-NiFpga_Status NiFpga_ReleaseFifoElements(NiFpga_Session session,
-                                         uint32_t       fifo,
-                                         size_t         elements);
-
-/**
- * Gets an endpoint reference to a peer-to-peer FIFO.
- *
- * @param session handle to a currently open session
- * @param fifo peer-to-peer FIFO
- * @param endpoint outputs the endpoint reference
- * @return result of the call
- */
-NiFpga_Status NiFpga_GetPeerToPeerFifoEndpoint(NiFpga_Session session,
-                                               uint32_t       fifo,
-                                               uint32_t*      endpoint);
-
-#if NiFpga_Cpp
-}
-#endif
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/ChipObject/printFpgaVersion.h b/aos/externals/WPILib/WPILib/ChipObject/printFpgaVersion.h
deleted file mode 100644
index 044e0ef..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/printFpgaVersion.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-
-#ifndef __printFPGAVersion_h__
-#define __printFPGAVersion_h__
-
-namespace nFPGA
-{
-
-template<typename ttGlobal>
-inline void printFPGAVersion(ttGlobal &global)
-{
-   tRioStatusCode cleanStatus=0;
-   uint32_t hardwareGuid[4];
-   tSystemInterface &system = *global.getSystemInterface();
-   system.getHardwareFpgaSignature(hardwareGuid, &cleanStatus);
-   const uint32_t *softwareGuid = system.getExpectedFPGASignature();
-   printf("FPGA Hardware GUID: 0x");
-   for(int i=0; i<4; i++)
-   {
-      printf("%08X", hardwareGuid[i]);
-   }
-   printf("\n");
-   printf("FPGA Software GUID: 0x");
-   for(int i=0; i<4; i++)
-   {
-      printf("%08X", softwareGuid[i]);
-   }
-   printf("\n");
-   uint16_t fpgaHardwareVersion = global.readVersion(&cleanStatus);
-   uint16_t fpgaSoftwareVersion = system.getExpectedFPGAVersion();
-   printf("FPGA Hardware Version: %X\n", fpgaHardwareVersion);
-   printf("FPGA Software Version: %X\n", fpgaSoftwareVersion);
-   uint32_t fpgaHardwareRevision = global.readRevision(&cleanStatus);
-   uint32_t fpgaSoftwareRevision = system.getExpectedFPGARevision();
-   printf("FPGA Hardware Revision: %X.%X.%X\n", (fpgaHardwareRevision >> 20) & 0xFFF, (fpgaHardwareRevision >> 12) & 0xFF, fpgaHardwareRevision & 0xFFF);
-   printf("FPGA Software Revision: %X.%X.%X\n", (fpgaSoftwareRevision >> 20) & 0xFFF, (fpgaSoftwareRevision >> 12) & 0xFF, fpgaSoftwareRevision & 0xFFF);
-}
-
-}
-
-#endif // __tSystemInterface_h__
-
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tAI.h b/aos/externals/WPILib/WPILib/ChipObject/tAI.h
deleted file mode 100644
index 6316af6..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tAI.h
+++ /dev/null
@@ -1,149 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __nFRC_2012_1_6_4_AI_h__
-#define __nFRC_2012_1_6_4_AI_h__
-
-#include "tSystemInterface.h"
-
-namespace nFPGA
-{
-namespace nFRC_2012_1_6_4
-{
-
-class tAI
-{
-public:
-   tAI(){}
-   virtual ~tAI(){}
-
-   virtual tSystemInterface* getSystemInterface() = 0;
-   static tAI* create(unsigned char sys_index, tRioStatusCode *status);
-   virtual unsigned char getSystemIndex() = 0;
-
-
-   typedef enum
-   {
-      kNumSystems = 2,
-   } tIfaceConstants;
-
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned Channel : 3;
-         unsigned Module : 1;
-         unsigned Averaged : 1;
-#else
-         unsigned Averaged : 1;
-         unsigned Module : 1;
-         unsigned Channel : 3;
-#endif
-      };
-      struct{
-         unsigned value : 5;
-      };
-   } tReadSelect;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned ScanSize : 3;
-         unsigned ConvertRate : 26;
-#else
-         unsigned ConvertRate : 26;
-         unsigned ScanSize : 3;
-#endif
-      };
-      struct{
-         unsigned value : 29;
-      };
-   } tConfig;
-
-
-   typedef enum
-   {
-   } tConfig_IfaceConstants;
-
-   virtual void writeConfig(tConfig value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_ScanSize(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_ConvertRate(unsigned int value, tRioStatusCode *status) = 0;
-   virtual tConfig readConfig(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_ScanSize(tRioStatusCode *status) = 0;
-   virtual unsigned int readConfig_ConvertRate(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tLoopTiming_IfaceConstants;
-
-   virtual unsigned int readLoopTiming(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-      kNumOversampleBitsElements = 8,
-   } tOversampleBits_IfaceConstants;
-
-   virtual void writeOversampleBits(unsigned char bitfield_index, unsigned char value, tRioStatusCode *status) = 0;
-   virtual unsigned char readOversampleBits(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-      kNumAverageBitsElements = 8,
-   } tAverageBits_IfaceConstants;
-
-   virtual void writeAverageBits(unsigned char bitfield_index, unsigned char value, tRioStatusCode *status) = 0;
-   virtual unsigned char readAverageBits(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-      kNumScanListElements = 8,
-   } tScanList_IfaceConstants;
-
-   virtual void writeScanList(unsigned char bitfield_index, unsigned char value, tRioStatusCode *status) = 0;
-   virtual unsigned char readScanList(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-
-
-
-   typedef enum
-   {
-   } tOutput_IfaceConstants;
-
-   virtual signed int readOutput(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tLatchOutput_IfaceConstants;
-
-   virtual void strobeLatchOutput(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tReadSelect_IfaceConstants;
-
-   virtual void writeReadSelect(tReadSelect value, tRioStatusCode *status) = 0;
-   virtual void writeReadSelect_Channel(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeReadSelect_Module(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeReadSelect_Averaged(bool value, tRioStatusCode *status) = 0;
-   virtual tReadSelect readReadSelect(tRioStatusCode *status) = 0;
-   virtual unsigned char readReadSelect_Channel(tRioStatusCode *status) = 0;
-   virtual unsigned char readReadSelect_Module(tRioStatusCode *status) = 0;
-   virtual bool readReadSelect_Averaged(tRioStatusCode *status) = 0;
-
-
-
-
-private:
-   tAI(const tAI&);
-   void operator=(const tAI&);
-};
-
-}
-}
-
-#endif // __nFRC_2012_1_6_4_AI_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tAccumulator.h b/aos/externals/WPILib/WPILib/ChipObject/tAccumulator.h
deleted file mode 100644
index d182882..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tAccumulator.h
+++ /dev/null
@@ -1,87 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __nFRC_2012_1_6_4_Accumulator_h__
-#define __nFRC_2012_1_6_4_Accumulator_h__
-
-#include "tSystemInterface.h"
-
-namespace nFPGA
-{
-namespace nFRC_2012_1_6_4
-{
-
-class tAccumulator
-{
-public:
-   tAccumulator(){}
-   virtual ~tAccumulator(){}
-
-   virtual tSystemInterface* getSystemInterface() = 0;
-   static tAccumulator* create(unsigned char sys_index, tRioStatusCode *status);
-   virtual unsigned char getSystemIndex() = 0;
-
-
-   typedef enum
-   {
-      kNumSystems = 2,
-   } tIfaceConstants;
-
-   typedef
-   union{
-      struct{
-         signed long long Value;
-         unsigned Count : 32;
-      };
-      struct{
-         unsigned value : 32;
-         unsigned value2 : 32;
-         unsigned value3 : 32;
-      };
-   } tOutput;
-
-
-   typedef enum
-   {
-   } tOutput_IfaceConstants;
-
-   virtual tOutput readOutput(tRioStatusCode *status) = 0;
-   virtual signed long long readOutput_Value(tRioStatusCode *status) = 0;
-   virtual unsigned int readOutput_Count(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tCenter_IfaceConstants;
-
-   virtual void writeCenter(signed int value, tRioStatusCode *status) = 0;
-   virtual signed int readCenter(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tDeadband_IfaceConstants;
-
-   virtual void writeDeadband(signed int value, tRioStatusCode *status) = 0;
-   virtual signed int readDeadband(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tReset_IfaceConstants;
-
-   virtual void strobeReset(tRioStatusCode *status) = 0;
-
-
-
-
-
-private:
-   tAccumulator(const tAccumulator&);
-   void operator=(const tAccumulator&);
-};
-
-}
-}
-
-#endif // __nFRC_2012_1_6_4_Accumulator_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tAlarm.h b/aos/externals/WPILib/WPILib/ChipObject/tAlarm.h
deleted file mode 100644
index a1c2f51..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tAlarm.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __nFRC_2012_1_6_4_Alarm_h__
-#define __nFRC_2012_1_6_4_Alarm_h__
-
-#include "tSystemInterface.h"
-
-namespace nFPGA
-{
-namespace nFRC_2012_1_6_4
-{
-
-class tAlarm
-{
-public:
-   tAlarm(){}
-   virtual ~tAlarm(){}
-
-   virtual tSystemInterface* getSystemInterface() = 0;
-   static tAlarm* create(tRioStatusCode *status);
-
-   typedef enum
-   {
-      kNumSystems = 1,
-   } tIfaceConstants;
-
-
-
-
-   typedef enum
-   {
-   } tEnable_IfaceConstants;
-
-   virtual void writeEnable(bool value, tRioStatusCode *status) = 0;
-   virtual bool readEnable(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tTriggerTime_IfaceConstants;
-
-   virtual void writeTriggerTime(unsigned int value, tRioStatusCode *status) = 0;
-   virtual unsigned int readTriggerTime(tRioStatusCode *status) = 0;
-
-
-
-
-private:
-   tAlarm(const tAlarm&);
-   void operator=(const tAlarm&);
-};
-
-}
-}
-
-#endif // __nFRC_2012_1_6_4_Alarm_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tAnalogTrigger.h b/aos/externals/WPILib/WPILib/ChipObject/tAnalogTrigger.h
deleted file mode 100644
index 4fabd9c..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tAnalogTrigger.h
+++ /dev/null
@@ -1,133 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __nFRC_2012_1_6_4_AnalogTrigger_h__
-#define __nFRC_2012_1_6_4_AnalogTrigger_h__
-
-#include "tSystemInterface.h"
-
-namespace nFPGA
-{
-namespace nFRC_2012_1_6_4
-{
-
-class tAnalogTrigger
-{
-public:
-   tAnalogTrigger(){}
-   virtual ~tAnalogTrigger(){}
-
-   virtual tSystemInterface* getSystemInterface() = 0;
-   static tAnalogTrigger* create(unsigned char sys_index, tRioStatusCode *status);
-   virtual unsigned char getSystemIndex() = 0;
-
-
-   typedef enum
-   {
-      kNumSystems = 8,
-   } tIfaceConstants;
-
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned InHysteresis : 1;
-         unsigned OverLimit : 1;
-         unsigned Rising : 1;
-         unsigned Falling : 1;
-#else
-         unsigned Falling : 1;
-         unsigned Rising : 1;
-         unsigned OverLimit : 1;
-         unsigned InHysteresis : 1;
-#endif
-      };
-      struct{
-         unsigned value : 4;
-      };
-   } tOutput;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned Channel : 3;
-         unsigned Module : 1;
-         unsigned Averaged : 1;
-         unsigned Filter : 1;
-         unsigned FloatingRollover : 1;
-         signed RolloverLimit : 8;
-#else
-         signed RolloverLimit : 8;
-         unsigned FloatingRollover : 1;
-         unsigned Filter : 1;
-         unsigned Averaged : 1;
-         unsigned Module : 1;
-         unsigned Channel : 3;
-#endif
-      };
-      struct{
-         unsigned value : 15;
-      };
-   } tSourceSelect;
-
-
-   typedef enum
-   {
-   } tSourceSelect_IfaceConstants;
-
-   virtual void writeSourceSelect(tSourceSelect value, tRioStatusCode *status) = 0;
-   virtual void writeSourceSelect_Channel(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeSourceSelect_Module(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeSourceSelect_Averaged(bool value, tRioStatusCode *status) = 0;
-   virtual void writeSourceSelect_Filter(bool value, tRioStatusCode *status) = 0;
-   virtual void writeSourceSelect_FloatingRollover(bool value, tRioStatusCode *status) = 0;
-   virtual void writeSourceSelect_RolloverLimit(signed short value, tRioStatusCode *status) = 0;
-   virtual tSourceSelect readSourceSelect(tRioStatusCode *status) = 0;
-   virtual unsigned char readSourceSelect_Channel(tRioStatusCode *status) = 0;
-   virtual unsigned char readSourceSelect_Module(tRioStatusCode *status) = 0;
-   virtual bool readSourceSelect_Averaged(tRioStatusCode *status) = 0;
-   virtual bool readSourceSelect_Filter(tRioStatusCode *status) = 0;
-   virtual bool readSourceSelect_FloatingRollover(tRioStatusCode *status) = 0;
-   virtual signed short readSourceSelect_RolloverLimit(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tUpperLimit_IfaceConstants;
-
-   virtual void writeUpperLimit(signed int value, tRioStatusCode *status) = 0;
-   virtual signed int readUpperLimit(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tLowerLimit_IfaceConstants;
-
-   virtual void writeLowerLimit(signed int value, tRioStatusCode *status) = 0;
-   virtual signed int readLowerLimit(tRioStatusCode *status) = 0;
-
-
-
-   typedef enum
-   {
-      kNumOutputElements = 8,
-   } tOutput_IfaceConstants;
-
-   virtual tOutput readOutput(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-   virtual bool readOutput_InHysteresis(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-   virtual bool readOutput_OverLimit(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-   virtual bool readOutput_Rising(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-   virtual bool readOutput_Falling(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-
-
-
-
-private:
-   tAnalogTrigger(const tAnalogTrigger&);
-   void operator=(const tAnalogTrigger&);
-};
-
-}
-}
-
-#endif // __nFRC_2012_1_6_4_AnalogTrigger_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tCounter.h b/aos/externals/WPILib/WPILib/ChipObject/tCounter.h
deleted file mode 100644
index 200ffb3..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tCounter.h
+++ /dev/null
@@ -1,219 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __nFRC_2012_1_6_4_Counter_h__
-#define __nFRC_2012_1_6_4_Counter_h__
-
-#include "tSystemInterface.h"
-
-namespace nFPGA
-{
-namespace nFRC_2012_1_6_4
-{
-
-class tCounter
-{
-public:
-   tCounter(){}
-   virtual ~tCounter(){}
-
-   virtual tSystemInterface* getSystemInterface() = 0;
-   static tCounter* create(unsigned char sys_index, tRioStatusCode *status);
-   virtual unsigned char getSystemIndex() = 0;
-
-
-   typedef enum
-   {
-      kNumSystems = 8,
-   } tIfaceConstants;
-
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned Direction : 1;
-         signed Value : 31;
-#else
-         signed Value : 31;
-         unsigned Direction : 1;
-#endif
-      };
-      struct{
-         unsigned value : 32;
-      };
-   } tOutput;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned UpSource_Channel : 4;
-         unsigned UpSource_Module : 1;
-         unsigned UpSource_AnalogTrigger : 1;
-         unsigned DownSource_Channel : 4;
-         unsigned DownSource_Module : 1;
-         unsigned DownSource_AnalogTrigger : 1;
-         unsigned IndexSource_Channel : 4;
-         unsigned IndexSource_Module : 1;
-         unsigned IndexSource_AnalogTrigger : 1;
-         unsigned IndexActiveHigh : 1;
-         unsigned UpRisingEdge : 1;
-         unsigned UpFallingEdge : 1;
-         unsigned DownRisingEdge : 1;
-         unsigned DownFallingEdge : 1;
-         unsigned Mode : 2;
-         unsigned PulseLengthThreshold : 6;
-         unsigned Enable : 1;
-#else
-         unsigned Enable : 1;
-         unsigned PulseLengthThreshold : 6;
-         unsigned Mode : 2;
-         unsigned DownFallingEdge : 1;
-         unsigned DownRisingEdge : 1;
-         unsigned UpFallingEdge : 1;
-         unsigned UpRisingEdge : 1;
-         unsigned IndexActiveHigh : 1;
-         unsigned IndexSource_AnalogTrigger : 1;
-         unsigned IndexSource_Module : 1;
-         unsigned IndexSource_Channel : 4;
-         unsigned DownSource_AnalogTrigger : 1;
-         unsigned DownSource_Module : 1;
-         unsigned DownSource_Channel : 4;
-         unsigned UpSource_AnalogTrigger : 1;
-         unsigned UpSource_Module : 1;
-         unsigned UpSource_Channel : 4;
-#endif
-      };
-      struct{
-         unsigned value : 32;
-      };
-   } tConfig;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned Period : 23;
-         signed Count : 8;
-         unsigned Stalled : 1;
-#else
-         unsigned Stalled : 1;
-         signed Count : 8;
-         unsigned Period : 23;
-#endif
-      };
-      struct{
-         unsigned value : 32;
-      };
-   } tTimerOutput;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned StallPeriod : 24;
-         unsigned AverageSize : 7;
-         unsigned UpdateWhenEmpty : 1;
-#else
-         unsigned UpdateWhenEmpty : 1;
-         unsigned AverageSize : 7;
-         unsigned StallPeriod : 24;
-#endif
-      };
-      struct{
-         unsigned value : 32;
-      };
-   } tTimerConfig;
-
-
-   typedef enum
-   {
-   } tOutput_IfaceConstants;
-
-   virtual tOutput readOutput(tRioStatusCode *status) = 0;
-   virtual bool readOutput_Direction(tRioStatusCode *status) = 0;
-   virtual signed int readOutput_Value(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tConfig_IfaceConstants;
-
-   virtual void writeConfig(tConfig value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_UpSource_Channel(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_UpSource_Module(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_UpSource_AnalogTrigger(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_DownSource_Channel(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_DownSource_Module(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_DownSource_AnalogTrigger(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_IndexSource_Channel(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_IndexSource_Module(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_IndexSource_AnalogTrigger(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_IndexActiveHigh(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_UpRisingEdge(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_UpFallingEdge(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_DownRisingEdge(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_DownFallingEdge(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Mode(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_PulseLengthThreshold(unsigned short value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable(bool value, tRioStatusCode *status) = 0;
-   virtual tConfig readConfig(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_UpSource_Channel(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_UpSource_Module(tRioStatusCode *status) = 0;
-   virtual bool readConfig_UpSource_AnalogTrigger(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_DownSource_Channel(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_DownSource_Module(tRioStatusCode *status) = 0;
-   virtual bool readConfig_DownSource_AnalogTrigger(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_IndexSource_Channel(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_IndexSource_Module(tRioStatusCode *status) = 0;
-   virtual bool readConfig_IndexSource_AnalogTrigger(tRioStatusCode *status) = 0;
-   virtual bool readConfig_IndexActiveHigh(tRioStatusCode *status) = 0;
-   virtual bool readConfig_UpRisingEdge(tRioStatusCode *status) = 0;
-   virtual bool readConfig_UpFallingEdge(tRioStatusCode *status) = 0;
-   virtual bool readConfig_DownRisingEdge(tRioStatusCode *status) = 0;
-   virtual bool readConfig_DownFallingEdge(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_Mode(tRioStatusCode *status) = 0;
-   virtual unsigned short readConfig_PulseLengthThreshold(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tTimerOutput_IfaceConstants;
-
-   virtual tTimerOutput readTimerOutput(tRioStatusCode *status) = 0;
-   virtual unsigned int readTimerOutput_Period(tRioStatusCode *status) = 0;
-   virtual signed char readTimerOutput_Count(tRioStatusCode *status) = 0;
-   virtual bool readTimerOutput_Stalled(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tReset_IfaceConstants;
-
-   virtual void strobeReset(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tTimerConfig_IfaceConstants;
-
-   virtual void writeTimerConfig(tTimerConfig value, tRioStatusCode *status) = 0;
-   virtual void writeTimerConfig_StallPeriod(unsigned int value, tRioStatusCode *status) = 0;
-   virtual void writeTimerConfig_AverageSize(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeTimerConfig_UpdateWhenEmpty(bool value, tRioStatusCode *status) = 0;
-   virtual tTimerConfig readTimerConfig(tRioStatusCode *status) = 0;
-   virtual unsigned int readTimerConfig_StallPeriod(tRioStatusCode *status) = 0;
-   virtual unsigned char readTimerConfig_AverageSize(tRioStatusCode *status) = 0;
-   virtual bool readTimerConfig_UpdateWhenEmpty(tRioStatusCode *status) = 0;
-
-
-
-
-
-private:
-   tCounter(const tCounter&);
-   void operator=(const tCounter&);
-};
-
-}
-}
-
-#endif // __nFRC_2012_1_6_4_Counter_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tDIO.h b/aos/externals/WPILib/WPILib/ChipObject/tDIO.h
deleted file mode 100644
index d9852c9..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tDIO.h
+++ /dev/null
@@ -1,330 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __nFRC_2012_1_6_4_DIO_h__
-#define __nFRC_2012_1_6_4_DIO_h__
-
-#include "tSystemInterface.h"
-
-namespace nFPGA
-{
-namespace nFRC_2012_1_6_4
-{
-
-class tDIO
-{
-public:
-   tDIO(){}
-   virtual ~tDIO(){}
-
-   virtual tSystemInterface* getSystemInterface() = 0;
-   static tDIO* create(unsigned char sys_index, tRioStatusCode *status);
-   virtual unsigned char getSystemIndex() = 0;
-
-
-   typedef enum
-   {
-      kNumSystems = 2,
-   } tIfaceConstants;
-
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned Period : 16;
-         unsigned MinHigh : 16;
-#else
-         unsigned MinHigh : 16;
-         unsigned Period : 16;
-#endif
-      };
-      struct{
-         unsigned value : 32;
-      };
-   } tPWMConfig;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned RelayFwd : 8;
-         unsigned RelayRev : 8;
-         unsigned I2CHeader : 4;
-#else
-         unsigned I2CHeader : 4;
-         unsigned RelayRev : 8;
-         unsigned RelayFwd : 8;
-#endif
-      };
-      struct{
-         unsigned value : 20;
-      };
-   } tSlowValue;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned Transaction : 1;
-         unsigned Done : 1;
-         unsigned Aborted : 1;
-         unsigned DataReceivedHigh : 24;
-#else
-         unsigned DataReceivedHigh : 24;
-         unsigned Aborted : 1;
-         unsigned Done : 1;
-         unsigned Transaction : 1;
-#endif
-      };
-      struct{
-         unsigned value : 27;
-      };
-   } tI2CStatus;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned Address : 8;
-         unsigned BytesToRead : 3;
-         unsigned BytesToWrite : 3;
-         unsigned DataToSendHigh : 16;
-         unsigned BitwiseHandshake : 1;
-#else
-         unsigned BitwiseHandshake : 1;
-         unsigned DataToSendHigh : 16;
-         unsigned BytesToWrite : 3;
-         unsigned BytesToRead : 3;
-         unsigned Address : 8;
-#endif
-      };
-      struct{
-         unsigned value : 31;
-      };
-   } tI2CConfig;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned PeriodPower : 4;
-         unsigned OutputSelect_0 : 4;
-         unsigned OutputSelect_1 : 4;
-         unsigned OutputSelect_2 : 4;
-         unsigned OutputSelect_3 : 4;
-#else
-         unsigned OutputSelect_3 : 4;
-         unsigned OutputSelect_2 : 4;
-         unsigned OutputSelect_1 : 4;
-         unsigned OutputSelect_0 : 4;
-         unsigned PeriodPower : 4;
-#endif
-      };
-      struct{
-         unsigned value : 20;
-      };
-   } tDO_PWMConfig;
-
-
-   typedef enum
-   {
-      kNumFilterSelectElements = 16,
-   } tFilterSelect_IfaceConstants;
-
-   virtual void writeFilterSelect(unsigned char bitfield_index, unsigned char value, tRioStatusCode *status) = 0;
-   virtual unsigned char readFilterSelect(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tI2CDataToSend_IfaceConstants;
-
-   virtual void writeI2CDataToSend(unsigned int value, tRioStatusCode *status) = 0;
-   virtual unsigned int readI2CDataToSend(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tDO_IfaceConstants;
-
-   virtual void writeDO(unsigned short value, tRioStatusCode *status) = 0;
-   virtual unsigned short readDO(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-      kNumFilterPeriodElements = 3,
-   } tFilterPeriod_IfaceConstants;
-
-   virtual void writeFilterPeriod(unsigned char bitfield_index, unsigned char value, tRioStatusCode *status) = 0;
-   virtual unsigned char readFilterPeriod(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tOutputEnable_IfaceConstants;
-
-   virtual void writeOutputEnable(unsigned short value, tRioStatusCode *status) = 0;
-   virtual unsigned short readOutputEnable(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tPulse_IfaceConstants;
-
-   virtual void writePulse(unsigned short value, tRioStatusCode *status) = 0;
-   virtual unsigned short readPulse(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tSlowValue_IfaceConstants;
-
-   virtual void writeSlowValue(tSlowValue value, tRioStatusCode *status) = 0;
-   virtual void writeSlowValue_RelayFwd(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeSlowValue_RelayRev(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeSlowValue_I2CHeader(unsigned char value, tRioStatusCode *status) = 0;
-   virtual tSlowValue readSlowValue(tRioStatusCode *status) = 0;
-   virtual unsigned char readSlowValue_RelayFwd(tRioStatusCode *status) = 0;
-   virtual unsigned char readSlowValue_RelayRev(tRioStatusCode *status) = 0;
-   virtual unsigned char readSlowValue_I2CHeader(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tI2CStatus_IfaceConstants;
-
-   virtual tI2CStatus readI2CStatus(tRioStatusCode *status) = 0;
-   virtual unsigned char readI2CStatus_Transaction(tRioStatusCode *status) = 0;
-   virtual bool readI2CStatus_Done(tRioStatusCode *status) = 0;
-   virtual bool readI2CStatus_Aborted(tRioStatusCode *status) = 0;
-   virtual unsigned int readI2CStatus_DataReceivedHigh(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tI2CDataReceived_IfaceConstants;
-
-   virtual unsigned int readI2CDataReceived(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tDI_IfaceConstants;
-
-   virtual unsigned short readDI(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tPulseLength_IfaceConstants;
-
-   virtual void writePulseLength(unsigned char value, tRioStatusCode *status) = 0;
-   virtual unsigned char readPulseLength(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-      kNumPWMPeriodScaleElements = 10,
-   } tPWMPeriodScale_IfaceConstants;
-
-   virtual void writePWMPeriodScale(unsigned char bitfield_index, unsigned char value, tRioStatusCode *status) = 0;
-   virtual unsigned char readPWMPeriodScale(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-      kNumDO_PWMDutyCycleElements = 4,
-   } tDO_PWMDutyCycle_IfaceConstants;
-
-   virtual void writeDO_PWMDutyCycle(unsigned char bitfield_index, unsigned char value, tRioStatusCode *status) = 0;
-   virtual unsigned char readDO_PWMDutyCycle(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tBFL_IfaceConstants;
-
-   virtual void writeBFL(bool value, tRioStatusCode *status) = 0;
-   virtual bool readBFL(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tI2CConfig_IfaceConstants;
-
-   virtual void writeI2CConfig(tI2CConfig value, tRioStatusCode *status) = 0;
-   virtual void writeI2CConfig_Address(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeI2CConfig_BytesToRead(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeI2CConfig_BytesToWrite(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeI2CConfig_DataToSendHigh(unsigned short value, tRioStatusCode *status) = 0;
-   virtual void writeI2CConfig_BitwiseHandshake(bool value, tRioStatusCode *status) = 0;
-   virtual tI2CConfig readI2CConfig(tRioStatusCode *status) = 0;
-   virtual unsigned char readI2CConfig_Address(tRioStatusCode *status) = 0;
-   virtual unsigned char readI2CConfig_BytesToRead(tRioStatusCode *status) = 0;
-   virtual unsigned char readI2CConfig_BytesToWrite(tRioStatusCode *status) = 0;
-   virtual unsigned short readI2CConfig_DataToSendHigh(tRioStatusCode *status) = 0;
-   virtual bool readI2CConfig_BitwiseHandshake(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tDO_PWMConfig_IfaceConstants;
-
-   virtual void writeDO_PWMConfig(tDO_PWMConfig value, tRioStatusCode *status) = 0;
-   virtual void writeDO_PWMConfig_PeriodPower(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeDO_PWMConfig_OutputSelect_0(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeDO_PWMConfig_OutputSelect_1(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeDO_PWMConfig_OutputSelect_2(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeDO_PWMConfig_OutputSelect_3(unsigned char value, tRioStatusCode *status) = 0;
-   virtual tDO_PWMConfig readDO_PWMConfig(tRioStatusCode *status) = 0;
-   virtual unsigned char readDO_PWMConfig_PeriodPower(tRioStatusCode *status) = 0;
-   virtual unsigned char readDO_PWMConfig_OutputSelect_0(tRioStatusCode *status) = 0;
-   virtual unsigned char readDO_PWMConfig_OutputSelect_1(tRioStatusCode *status) = 0;
-   virtual unsigned char readDO_PWMConfig_OutputSelect_2(tRioStatusCode *status) = 0;
-   virtual unsigned char readDO_PWMConfig_OutputSelect_3(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tI2CStart_IfaceConstants;
-
-   virtual void strobeI2CStart(tRioStatusCode *status) = 0;
-
-
-
-   typedef enum
-   {
-   } tLoopTiming_IfaceConstants;
-
-   virtual unsigned short readLoopTiming(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tPWMConfig_IfaceConstants;
-
-   virtual void writePWMConfig(tPWMConfig value, tRioStatusCode *status) = 0;
-   virtual void writePWMConfig_Period(unsigned short value, tRioStatusCode *status) = 0;
-   virtual void writePWMConfig_MinHigh(unsigned short value, tRioStatusCode *status) = 0;
-   virtual tPWMConfig readPWMConfig(tRioStatusCode *status) = 0;
-   virtual unsigned short readPWMConfig_Period(tRioStatusCode *status) = 0;
-   virtual unsigned short readPWMConfig_MinHigh(tRioStatusCode *status) = 0;
-
-
-
-   typedef enum
-   {
-      kNumPWMValueRegisters = 10,
-   } tPWMValue_IfaceConstants;
-
-   virtual void writePWMValue(unsigned char reg_index, unsigned char value, tRioStatusCode *status) = 0;
-   virtual unsigned char readPWMValue(unsigned char reg_index, tRioStatusCode *status) = 0;
-
-
-
-private:
-   tDIO(const tDIO&);
-   void operator=(const tDIO&);
-};
-
-}
-}
-
-#endif // __nFRC_2012_1_6_4_DIO_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tDMA.h b/aos/externals/WPILib/WPILib/ChipObject/tDMA.h
deleted file mode 100644
index c46cad2..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tDMA.h
+++ /dev/null
@@ -1,188 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __nFRC_2012_1_6_4_DMA_h__
-#define __nFRC_2012_1_6_4_DMA_h__
-
-#include "tSystemInterface.h"
-
-namespace nFPGA
-{
-namespace nFRC_2012_1_6_4
-{
-
-class tDMA
-{
-public:
-   tDMA(){}
-   virtual ~tDMA(){}
-
-   virtual tSystemInterface* getSystemInterface() = 0;
-   static tDMA* create(tRioStatusCode *status);
-
-   typedef enum
-   {
-      kNumSystems = 1,
-   } tIfaceConstants;
-
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned Pause : 1;
-         unsigned Enable_AI0_Low : 1;
-         unsigned Enable_AI0_High : 1;
-         unsigned Enable_AIAveraged0_Low : 1;
-         unsigned Enable_AIAveraged0_High : 1;
-         unsigned Enable_AI1_Low : 1;
-         unsigned Enable_AI1_High : 1;
-         unsigned Enable_AIAveraged1_Low : 1;
-         unsigned Enable_AIAveraged1_High : 1;
-         unsigned Enable_Accumulator0 : 1;
-         unsigned Enable_Accumulator1 : 1;
-         unsigned Enable_DI : 1;
-         unsigned Enable_AnalogTriggers : 1;
-         unsigned Enable_Counters_Low : 1;
-         unsigned Enable_Counters_High : 1;
-         unsigned Enable_CounterTimers_Low : 1;
-         unsigned Enable_CounterTimers_High : 1;
-         unsigned Enable_Encoders : 1;
-         unsigned Enable_EncoderTimers : 1;
-         unsigned ExternalClock : 1;
-#else
-         unsigned ExternalClock : 1;
-         unsigned Enable_EncoderTimers : 1;
-         unsigned Enable_Encoders : 1;
-         unsigned Enable_CounterTimers_High : 1;
-         unsigned Enable_CounterTimers_Low : 1;
-         unsigned Enable_Counters_High : 1;
-         unsigned Enable_Counters_Low : 1;
-         unsigned Enable_AnalogTriggers : 1;
-         unsigned Enable_DI : 1;
-         unsigned Enable_Accumulator1 : 1;
-         unsigned Enable_Accumulator0 : 1;
-         unsigned Enable_AIAveraged1_High : 1;
-         unsigned Enable_AIAveraged1_Low : 1;
-         unsigned Enable_AI1_High : 1;
-         unsigned Enable_AI1_Low : 1;
-         unsigned Enable_AIAveraged0_High : 1;
-         unsigned Enable_AIAveraged0_Low : 1;
-         unsigned Enable_AI0_High : 1;
-         unsigned Enable_AI0_Low : 1;
-         unsigned Pause : 1;
-#endif
-      };
-      struct{
-         unsigned value : 20;
-      };
-   } tConfig;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned ExternalClockSource_Channel : 4;
-         unsigned ExternalClockSource_Module : 1;
-         unsigned ExternalClockSource_AnalogTrigger : 1;
-         unsigned RisingEdge : 1;
-         unsigned FallingEdge : 1;
-#else
-         unsigned FallingEdge : 1;
-         unsigned RisingEdge : 1;
-         unsigned ExternalClockSource_AnalogTrigger : 1;
-         unsigned ExternalClockSource_Module : 1;
-         unsigned ExternalClockSource_Channel : 4;
-#endif
-      };
-      struct{
-         unsigned value : 8;
-      };
-   } tExternalTriggers;
-
-
-
-   typedef enum
-   {
-   } tRate_IfaceConstants;
-
-   virtual void writeRate(unsigned int value, tRioStatusCode *status) = 0;
-   virtual unsigned int readRate(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tConfig_IfaceConstants;
-
-   virtual void writeConfig(tConfig value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Pause(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_AI0_Low(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_AI0_High(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_AIAveraged0_Low(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_AIAveraged0_High(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_AI1_Low(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_AI1_High(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_AIAveraged1_Low(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_AIAveraged1_High(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_Accumulator0(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_Accumulator1(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_DI(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_AnalogTriggers(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_Counters_Low(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_Counters_High(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_CounterTimers_Low(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_CounterTimers_High(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_Encoders(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable_EncoderTimers(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_ExternalClock(bool value, tRioStatusCode *status) = 0;
-   virtual tConfig readConfig(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Pause(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_AI0_Low(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_AI0_High(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_AIAveraged0_Low(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_AIAveraged0_High(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_AI1_Low(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_AI1_High(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_AIAveraged1_Low(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_AIAveraged1_High(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_Accumulator0(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_Accumulator1(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_DI(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_AnalogTriggers(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_Counters_Low(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_Counters_High(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_CounterTimers_Low(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_CounterTimers_High(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_Encoders(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable_EncoderTimers(tRioStatusCode *status) = 0;
-   virtual bool readConfig_ExternalClock(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-      kNumExternalTriggersElements = 4,
-   } tExternalTriggers_IfaceConstants;
-
-   virtual void writeExternalTriggers(unsigned char bitfield_index, tExternalTriggers value, tRioStatusCode *status) = 0;
-   virtual void writeExternalTriggers_ExternalClockSource_Channel(unsigned char bitfield_index, unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeExternalTriggers_ExternalClockSource_Module(unsigned char bitfield_index, unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeExternalTriggers_ExternalClockSource_AnalogTrigger(unsigned char bitfield_index, bool value, tRioStatusCode *status) = 0;
-   virtual void writeExternalTriggers_RisingEdge(unsigned char bitfield_index, bool value, tRioStatusCode *status) = 0;
-   virtual void writeExternalTriggers_FallingEdge(unsigned char bitfield_index, bool value, tRioStatusCode *status) = 0;
-   virtual tExternalTriggers readExternalTriggers(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-   virtual unsigned char readExternalTriggers_ExternalClockSource_Channel(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-   virtual unsigned char readExternalTriggers_ExternalClockSource_Module(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-   virtual bool readExternalTriggers_ExternalClockSource_AnalogTrigger(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-   virtual bool readExternalTriggers_RisingEdge(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-   virtual bool readExternalTriggers_FallingEdge(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-
-
-
-
-private:
-   tDMA(const tDMA&);
-   void operator=(const tDMA&);
-};
-
-}
-}
-
-#endif // __nFRC_2012_1_6_4_DMA_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tDMAManager.h b/aos/externals/WPILib/WPILib/ChipObject/tDMAManager.h
deleted file mode 100644
index ce292b1..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tDMAManager.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// Class for handling DMA transters.
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-
-#ifndef __tDMAManager_h__
-#define __tDMAManager_h__
-
-#include "tSystem.h"
-
-namespace nFPGA
-{
-// TODO: Implement DMA Manager
-/*
-class tDMAManager : public tSystem
-{
-public:
-   tDMAManager(tNIRIO_u32 dmaChannel, tNIRIO_u32 hostBufferSize, tRioStatusCode *status);
-   ~tDMAManager();
-   void start(tRioStatusCode *status);
-   void stop(tRioStatusCode *status);
-   bool isStarted() {return _started;}
-   void read(
-      tNIRIO_u32*      buf,
-      tNIRIO_u32       num,
-      tNIRIO_u32       timeout,
-      tNIRIO_u32*      read,
-      tNIRIO_u32*      remaining,
-      tRioStatusCode *status);
-   void write(
-      tNIRIO_u32*      buf,
-      tNIRIO_u32       num,
-      tNIRIO_u32       timeout,
-      tNIRIO_u32*      remaining,
-      tRioStatusCode *status);
-private:
-   bool _started;
-   tNIRIO_u32 _dmaChannel;
-   tNIRIO_u32 _hostBufferSize;
-   tDMAChannelDescriptor const *_dmaChannelDescriptor;
-
-};
-*/
-}
-
-
-#endif // __tDMAManager_h__
-
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tEncoder.h b/aos/externals/WPILib/WPILib/ChipObject/tEncoder.h
deleted file mode 100644
index 0b68067..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tEncoder.h
+++ /dev/null
@@ -1,199 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __nFRC_2012_1_6_4_Encoder_h__
-#define __nFRC_2012_1_6_4_Encoder_h__
-
-#include "tSystemInterface.h"
-
-namespace nFPGA
-{
-namespace nFRC_2012_1_6_4
-{
-
-class tEncoder
-{
-public:
-   tEncoder(){}
-   virtual ~tEncoder(){}
-
-   virtual tSystemInterface* getSystemInterface() = 0;
-   static tEncoder* create(unsigned char sys_index, tRioStatusCode *status);
-   virtual unsigned char getSystemIndex() = 0;
-
-
-   typedef enum
-   {
-      kNumSystems = 4,
-   } tIfaceConstants;
-
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned Direction : 1;
-         signed Value : 31;
-#else
-         signed Value : 31;
-         unsigned Direction : 1;
-#endif
-      };
-      struct{
-         unsigned value : 32;
-      };
-   } tOutput;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned ASource_Channel : 4;
-         unsigned ASource_Module : 1;
-         unsigned ASource_AnalogTrigger : 1;
-         unsigned BSource_Channel : 4;
-         unsigned BSource_Module : 1;
-         unsigned BSource_AnalogTrigger : 1;
-         unsigned IndexSource_Channel : 4;
-         unsigned IndexSource_Module : 1;
-         unsigned IndexSource_AnalogTrigger : 1;
-         unsigned IndexActiveHigh : 1;
-         unsigned Reverse : 1;
-         unsigned Enable : 1;
-#else
-         unsigned Enable : 1;
-         unsigned Reverse : 1;
-         unsigned IndexActiveHigh : 1;
-         unsigned IndexSource_AnalogTrigger : 1;
-         unsigned IndexSource_Module : 1;
-         unsigned IndexSource_Channel : 4;
-         unsigned BSource_AnalogTrigger : 1;
-         unsigned BSource_Module : 1;
-         unsigned BSource_Channel : 4;
-         unsigned ASource_AnalogTrigger : 1;
-         unsigned ASource_Module : 1;
-         unsigned ASource_Channel : 4;
-#endif
-      };
-      struct{
-         unsigned value : 21;
-      };
-   } tConfig;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned Period : 23;
-         signed Count : 8;
-         unsigned Stalled : 1;
-#else
-         unsigned Stalled : 1;
-         signed Count : 8;
-         unsigned Period : 23;
-#endif
-      };
-      struct{
-         unsigned value : 32;
-      };
-   } tTimerOutput;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned StallPeriod : 24;
-         unsigned AverageSize : 7;
-         unsigned UpdateWhenEmpty : 1;
-#else
-         unsigned UpdateWhenEmpty : 1;
-         unsigned AverageSize : 7;
-         unsigned StallPeriod : 24;
-#endif
-      };
-      struct{
-         unsigned value : 32;
-      };
-   } tTimerConfig;
-
-
-   typedef enum
-   {
-   } tOutput_IfaceConstants;
-
-   virtual tOutput readOutput(tRioStatusCode *status) = 0;
-   virtual bool readOutput_Direction(tRioStatusCode *status) = 0;
-   virtual signed int readOutput_Value(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tConfig_IfaceConstants;
-
-   virtual void writeConfig(tConfig value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_ASource_Channel(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_ASource_Module(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_ASource_AnalogTrigger(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_BSource_Channel(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_BSource_Module(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_BSource_AnalogTrigger(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_IndexSource_Channel(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_IndexSource_Module(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_IndexSource_AnalogTrigger(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_IndexActiveHigh(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Reverse(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Enable(bool value, tRioStatusCode *status) = 0;
-   virtual tConfig readConfig(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_ASource_Channel(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_ASource_Module(tRioStatusCode *status) = 0;
-   virtual bool readConfig_ASource_AnalogTrigger(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_BSource_Channel(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_BSource_Module(tRioStatusCode *status) = 0;
-   virtual bool readConfig_BSource_AnalogTrigger(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_IndexSource_Channel(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_IndexSource_Module(tRioStatusCode *status) = 0;
-   virtual bool readConfig_IndexSource_AnalogTrigger(tRioStatusCode *status) = 0;
-   virtual bool readConfig_IndexActiveHigh(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Reverse(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Enable(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tTimerOutput_IfaceConstants;
-
-   virtual tTimerOutput readTimerOutput(tRioStatusCode *status) = 0;
-   virtual unsigned int readTimerOutput_Period(tRioStatusCode *status) = 0;
-   virtual signed char readTimerOutput_Count(tRioStatusCode *status) = 0;
-   virtual bool readTimerOutput_Stalled(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tReset_IfaceConstants;
-
-   virtual void strobeReset(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tTimerConfig_IfaceConstants;
-
-   virtual void writeTimerConfig(tTimerConfig value, tRioStatusCode *status) = 0;
-   virtual void writeTimerConfig_StallPeriod(unsigned int value, tRioStatusCode *status) = 0;
-   virtual void writeTimerConfig_AverageSize(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeTimerConfig_UpdateWhenEmpty(bool value, tRioStatusCode *status) = 0;
-   virtual tTimerConfig readTimerConfig(tRioStatusCode *status) = 0;
-   virtual unsigned int readTimerConfig_StallPeriod(tRioStatusCode *status) = 0;
-   virtual unsigned char readTimerConfig_AverageSize(tRioStatusCode *status) = 0;
-   virtual bool readTimerConfig_UpdateWhenEmpty(tRioStatusCode *status) = 0;
-
-
-
-
-
-private:
-   tEncoder(const tEncoder&);
-   void operator=(const tEncoder&);
-};
-
-}
-}
-
-#endif // __nFRC_2012_1_6_4_Encoder_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tGlobal.h b/aos/externals/WPILib/WPILib/ChipObject/tGlobal.h
deleted file mode 100644
index 2dbbbe7..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tGlobal.h
+++ /dev/null
@@ -1,70 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __nFRC_2012_1_6_4_Global_h__
-#define __nFRC_2012_1_6_4_Global_h__
-
-#include "tSystemInterface.h"
-
-namespace nFPGA
-{
-namespace nFRC_2012_1_6_4
-{
-
-class tGlobal
-{
-public:
-   tGlobal(){}
-   virtual ~tGlobal(){}
-
-   virtual tSystemInterface* getSystemInterface() = 0;
-   static tGlobal* create(tRioStatusCode *status);
-
-   typedef enum
-   {
-      kNumSystems = 1,
-   } tIfaceConstants;
-
-
-
-
-   typedef enum
-   {
-   } tVersion_IfaceConstants;
-
-   virtual unsigned short readVersion(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tLocalTime_IfaceConstants;
-
-   virtual unsigned int readLocalTime(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tFPGA_LED_IfaceConstants;
-
-   virtual void writeFPGA_LED(bool value, tRioStatusCode *status) = 0;
-   virtual bool readFPGA_LED(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tRevision_IfaceConstants;
-
-   virtual unsigned int readRevision(tRioStatusCode *status) = 0;
-
-
-
-
-private:
-   tGlobal(const tGlobal&);
-   void operator=(const tGlobal&);
-};
-
-}
-}
-
-#endif // __nFRC_2012_1_6_4_Global_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tInterrupt.h b/aos/externals/WPILib/WPILib/ChipObject/tInterrupt.h
deleted file mode 100644
index 519f6b3..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tInterrupt.h
+++ /dev/null
@@ -1,93 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __nFRC_2012_1_6_4_Interrupt_h__
-#define __nFRC_2012_1_6_4_Interrupt_h__
-
-#include "tSystemInterface.h"
-
-namespace nFPGA
-{
-namespace nFRC_2012_1_6_4
-{
-
-class tInterrupt
-{
-public:
-   tInterrupt(){}
-   virtual ~tInterrupt(){}
-
-   virtual tSystemInterface* getSystemInterface() = 0;
-   static tInterrupt* create(unsigned char sys_index, tRioStatusCode *status);
-   virtual unsigned char getSystemIndex() = 0;
-
-
-   typedef enum
-   {
-      kNumSystems = 8,
-   } tIfaceConstants;
-
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned Source_Channel : 4;
-         unsigned Source_Module : 1;
-         unsigned Source_AnalogTrigger : 1;
-         unsigned RisingEdge : 1;
-         unsigned FallingEdge : 1;
-         unsigned WaitForAck : 1;
-#else
-         unsigned WaitForAck : 1;
-         unsigned FallingEdge : 1;
-         unsigned RisingEdge : 1;
-         unsigned Source_AnalogTrigger : 1;
-         unsigned Source_Module : 1;
-         unsigned Source_Channel : 4;
-#endif
-      };
-      struct{
-         unsigned value : 9;
-      };
-   } tConfig;
-
-
-   typedef enum
-   {
-   } tTimeStamp_IfaceConstants;
-
-   virtual unsigned int readTimeStamp(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tConfig_IfaceConstants;
-
-   virtual void writeConfig(tConfig value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Source_Channel(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Source_Module(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_Source_AnalogTrigger(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_RisingEdge(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_FallingEdge(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_WaitForAck(bool value, tRioStatusCode *status) = 0;
-   virtual tConfig readConfig(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_Source_Channel(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_Source_Module(tRioStatusCode *status) = 0;
-   virtual bool readConfig_Source_AnalogTrigger(tRioStatusCode *status) = 0;
-   virtual bool readConfig_RisingEdge(tRioStatusCode *status) = 0;
-   virtual bool readConfig_FallingEdge(tRioStatusCode *status) = 0;
-   virtual bool readConfig_WaitForAck(tRioStatusCode *status) = 0;
-
-
-
-
-
-private:
-   tInterrupt(const tInterrupt&);
-   void operator=(const tInterrupt&);
-};
-
-}
-}
-
-#endif // __nFRC_2012_1_6_4_Interrupt_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tInterruptManager.h b/aos/externals/WPILib/WPILib/ChipObject/tInterruptManager.h
deleted file mode 100644
index b8fb361..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tInterruptManager.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// Class for handling interrupts.
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-
-#ifndef __tInterruptManager_h__
-#define __tInterruptManager_h__
-
-#include "tSystem.h"
-
-namespace ni
-{
-   namespace dsc
-   {
-      namespace osdep
-      {
-         class CriticalSection;
-      }
-   }
-}
-
-namespace nFPGA
-{
-
-typedef void (*tInterruptHandler)(uint32_t interruptAssertedMask, void *param);
-
-class tInterruptManager : public tSystem
-{
-public:
-   tInterruptManager(uint32_t interruptMask, bool watcher, tRioStatusCode *status);
-   ~tInterruptManager();
-   void registerHandler(tInterruptHandler handler, void *param, tRioStatusCode *status);
-   uint32_t watch(int32_t timeoutInMs, tRioStatusCode *status);
-   void enable(tRioStatusCode *status);
-   void disable(tRioStatusCode *status);
-   bool isEnabled(tRioStatusCode *status);
-private:
-   class tInterruptThread;
-   friend class tInterruptThread;
-   void handler();
-   static int handlerWrapper(tInterruptManager *pInterrupt);
-
-   void acknowledge(tRioStatusCode *status);
-   void reserve(tRioStatusCode *status);
-   void unreserve(tRioStatusCode *status);
-   tInterruptHandler _handler;
-   uint32_t _interruptMask;
-   tInterruptThread *_thread;
-   NiFpga_IrqContext _rioContext;
-   bool _watcher;
-   bool _enabled;
-   void *_userParam;
-
-   // maintain the interrupts that are already dealt with.
-   static uint32_t _globalInterruptMask;
-   static ni::dsc::osdep::CriticalSection *_globalInterruptMaskSemaphore;
-};
-
-}
-
-
-#endif // __tInterruptManager_h__
-
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tSPI.h b/aos/externals/WPILib/WPILib/ChipObject/tSPI.h
deleted file mode 100644
index c74ec9b..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tSPI.h
+++ /dev/null
@@ -1,228 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __nFRC_2012_1_6_4_SPI_h__
-#define __nFRC_2012_1_6_4_SPI_h__
-
-#include "tSystemInterface.h"
-
-namespace nFPGA
-{
-namespace nFRC_2012_1_6_4
-{
-
-class tSPI
-{
-public:
-   tSPI(){}
-   virtual ~tSPI(){}
-
-   virtual tSystemInterface* getSystemInterface() = 0;
-   static tSPI* create(tRioStatusCode *status);
-
-   typedef enum
-   {
-      kNumSystems = 1,
-   } tIfaceConstants;
-
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned ReceivedDataOverflow : 1;
-         unsigned Idle : 1;
-#else
-         unsigned Idle : 1;
-         unsigned ReceivedDataOverflow : 1;
-#endif
-      };
-      struct{
-         unsigned value : 2;
-      };
-   } tStatus;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned BusBitWidth : 8;
-         unsigned ClockHalfPeriodDelay : 8;
-         unsigned MSBfirst : 1;
-         unsigned DataOnFalling : 1;
-         unsigned LatchFirst : 1;
-         unsigned LatchLast : 1;
-         unsigned FramePolarity : 1;
-         unsigned WriteOnly : 1;
-         unsigned ClockPolarity : 1;
-#else
-         unsigned ClockPolarity : 1;
-         unsigned WriteOnly : 1;
-         unsigned FramePolarity : 1;
-         unsigned LatchLast : 1;
-         unsigned LatchFirst : 1;
-         unsigned DataOnFalling : 1;
-         unsigned MSBfirst : 1;
-         unsigned ClockHalfPeriodDelay : 8;
-         unsigned BusBitWidth : 8;
-#endif
-      };
-      struct{
-         unsigned value : 23;
-      };
-   } tConfig;
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned SCLK_Channel : 4;
-         unsigned SCLK_Module : 1;
-         unsigned MOSI_Channel : 4;
-         unsigned MOSI_Module : 1;
-         unsigned MISO_Channel : 4;
-         unsigned MISO_Module : 1;
-         unsigned SS_Channel : 4;
-         unsigned SS_Module : 1;
-#else
-         unsigned SS_Module : 1;
-         unsigned SS_Channel : 4;
-         unsigned MISO_Module : 1;
-         unsigned MISO_Channel : 4;
-         unsigned MOSI_Module : 1;
-         unsigned MOSI_Channel : 4;
-         unsigned SCLK_Module : 1;
-         unsigned SCLK_Channel : 4;
-#endif
-      };
-      struct{
-         unsigned value : 20;
-      };
-   } tChannels;
-
-
-
-   typedef enum
-   {
-   } tStatus_IfaceConstants;
-
-   virtual tStatus readStatus(tRioStatusCode *status) = 0;
-   virtual bool readStatus_ReceivedDataOverflow(tRioStatusCode *status) = 0;
-   virtual bool readStatus_Idle(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tReceivedData_IfaceConstants;
-
-   virtual unsigned int readReceivedData(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tDataToLoad_IfaceConstants;
-
-   virtual void writeDataToLoad(unsigned int value, tRioStatusCode *status) = 0;
-   virtual unsigned int readDataToLoad(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tConfig_IfaceConstants;
-
-   virtual void writeConfig(tConfig value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_BusBitWidth(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_ClockHalfPeriodDelay(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_MSBfirst(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_DataOnFalling(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_LatchFirst(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_LatchLast(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_FramePolarity(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_WriteOnly(bool value, tRioStatusCode *status) = 0;
-   virtual void writeConfig_ClockPolarity(bool value, tRioStatusCode *status) = 0;
-   virtual tConfig readConfig(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_BusBitWidth(tRioStatusCode *status) = 0;
-   virtual unsigned char readConfig_ClockHalfPeriodDelay(tRioStatusCode *status) = 0;
-   virtual bool readConfig_MSBfirst(tRioStatusCode *status) = 0;
-   virtual bool readConfig_DataOnFalling(tRioStatusCode *status) = 0;
-   virtual bool readConfig_LatchFirst(tRioStatusCode *status) = 0;
-   virtual bool readConfig_LatchLast(tRioStatusCode *status) = 0;
-   virtual bool readConfig_FramePolarity(tRioStatusCode *status) = 0;
-   virtual bool readConfig_WriteOnly(tRioStatusCode *status) = 0;
-   virtual bool readConfig_ClockPolarity(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tClearReceivedData_IfaceConstants;
-
-   virtual void strobeClearReceivedData(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tReceivedElements_IfaceConstants;
-
-   virtual unsigned short readReceivedElements(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tLoad_IfaceConstants;
-
-   virtual void strobeLoad(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tReset_IfaceConstants;
-
-   virtual void strobeReset(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tChannels_IfaceConstants;
-
-   virtual void writeChannels(tChannels value, tRioStatusCode *status) = 0;
-   virtual void writeChannels_SCLK_Channel(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeChannels_SCLK_Module(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeChannels_MOSI_Channel(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeChannels_MOSI_Module(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeChannels_MISO_Channel(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeChannels_MISO_Module(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeChannels_SS_Channel(unsigned char value, tRioStatusCode *status) = 0;
-   virtual void writeChannels_SS_Module(unsigned char value, tRioStatusCode *status) = 0;
-   virtual tChannels readChannels(tRioStatusCode *status) = 0;
-   virtual unsigned char readChannels_SCLK_Channel(tRioStatusCode *status) = 0;
-   virtual unsigned char readChannels_SCLK_Module(tRioStatusCode *status) = 0;
-   virtual unsigned char readChannels_MOSI_Channel(tRioStatusCode *status) = 0;
-   virtual unsigned char readChannels_MOSI_Module(tRioStatusCode *status) = 0;
-   virtual unsigned char readChannels_MISO_Channel(tRioStatusCode *status) = 0;
-   virtual unsigned char readChannels_MISO_Module(tRioStatusCode *status) = 0;
-   virtual unsigned char readChannels_SS_Channel(tRioStatusCode *status) = 0;
-   virtual unsigned char readChannels_SS_Module(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tAvailableToLoad_IfaceConstants;
-
-   virtual unsigned short readAvailableToLoad(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tReadReceivedData_IfaceConstants;
-
-   virtual void strobeReadReceivedData(tRioStatusCode *status) = 0;
-
-
-
-
-private:
-   tSPI(const tSPI&);
-   void operator=(const tSPI&);
-};
-
-}
-}
-
-#endif // __nFRC_2012_1_6_4_SPI_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tSolenoid.h b/aos/externals/WPILib/WPILib/ChipObject/tSolenoid.h
deleted file mode 100644
index 67c9a40..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tSolenoid.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __nFRC_2012_1_6_4_Solenoid_h__
-#define __nFRC_2012_1_6_4_Solenoid_h__
-
-#include "tSystemInterface.h"
-
-namespace nFPGA
-{
-namespace nFRC_2012_1_6_4
-{
-
-class tSolenoid
-{
-public:
-   tSolenoid(){}
-   virtual ~tSolenoid(){}
-
-   virtual tSystemInterface* getSystemInterface() = 0;
-   static tSolenoid* create(tRioStatusCode *status);
-
-   typedef enum
-   {
-      kNumSystems = 1,
-   } tIfaceConstants;
-
-
-
-
-   typedef enum
-   {
-      kNumDO7_0Elements = 2,
-   } tDO7_0_IfaceConstants;
-
-   virtual void writeDO7_0(unsigned char bitfield_index, unsigned char value, tRioStatusCode *status) = 0;
-   virtual unsigned char readDO7_0(unsigned char bitfield_index, tRioStatusCode *status) = 0;
-
-
-
-
-private:
-   tSolenoid(const tSolenoid&);
-   void operator=(const tSolenoid&);
-};
-
-}
-}
-
-#endif // __nFRC_2012_1_6_4_Solenoid_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tSystem.h b/aos/externals/WPILib/WPILib/ChipObject/tSystem.h
deleted file mode 100644
index eb55be1..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tSystem.h
+++ /dev/null
@@ -1,47 +0,0 @@
-// Base class for generated chip objects
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-
-#ifndef __tSystem_h__
-#define __tSystem_h__
-
-#include "fpgainterfacecapi/NiFpga.h"
-typedef NiFpga_Status tRioStatusCode;
-
-#define FRC_FPGA_PRELOAD_BITFILE
-
-typedef uint32_t NiFpga_Session;
-
-namespace nFPGA
-{
-
-class tSystem
-{
-public:
-   tSystem(tRioStatusCode *status);
-   ~tSystem();
-   void getFpgaGuid(uint32_t *guid_ptr, tRioStatusCode *status);
-
-protected:
-   static NiFpga_Session _DeviceHandle;
-
-#ifdef FRC_FPGA_PRELOAD_BITFILE
-   void NiFpga_SharedOpen_common(const char*     bitfile);
-   NiFpga_Status NiFpga_SharedOpen(const char*     bitfile,
-                            const char*     signature,
-                            const char*     resource,
-                            uint32_t        attribute,
-                            NiFpga_Session* session);
-   NiFpga_Status NiFpgaLv_SharedOpen(const char* const     bitfile,
-                            const char* const     apiSignature,
-                            const char* const     resource,
-                            const uint32_t        attribute,
-                            NiFpga_Session* const session);
-private:
-    static char *_FileName;
-    static char *_Bitfile;
-#endif
-};
-
-}
-
-#endif // __tSystem_h__
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tSystemInterface.h b/aos/externals/WPILib/WPILib/ChipObject/tSystemInterface.h
deleted file mode 100644
index d5008e1..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tSystemInterface.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-
-#ifndef __tSystemInterface_h__
-#define __tSystemInterface_h__
-
-namespace nFPGA
-{
-
-class tSystemInterface
-{
-public:
-   tSystemInterface(){}
-   virtual ~tSystemInterface(){}
-
-   virtual uint16_t getExpectedFPGAVersion()=0;
-   virtual uint32_t getExpectedFPGARevision()=0;
-   virtual uint32_t * getExpectedFPGASignature()=0;
-   virtual void getHardwareFpgaSignature(uint32_t *guid_ptr, tRioStatusCode *status)=0;
-   virtual uint32_t getLVHandle(tRioStatusCode *status)=0;
-   virtual uint32_t getHandle()=0;
-};
-
-}
-
-#endif // __tSystemInterface_h__
-
diff --git a/aos/externals/WPILib/WPILib/ChipObject/tWatchdog.h b/aos/externals/WPILib/WPILib/ChipObject/tWatchdog.h
deleted file mode 100644
index d4a4cba..0000000
--- a/aos/externals/WPILib/WPILib/ChipObject/tWatchdog.h
+++ /dev/null
@@ -1,108 +0,0 @@
-// Copyright (c) National Instruments 2008.  All Rights Reserved.
-// Do Not Edit... this file is generated!
-
-#ifndef __nFRC_2012_1_6_4_Watchdog_h__
-#define __nFRC_2012_1_6_4_Watchdog_h__
-
-#include "tSystemInterface.h"
-
-namespace nFPGA
-{
-namespace nFRC_2012_1_6_4
-{
-
-class tWatchdog
-{
-public:
-   tWatchdog(){}
-   virtual ~tWatchdog(){}
-
-   virtual tSystemInterface* getSystemInterface() = 0;
-   static tWatchdog* create(tRioStatusCode *status);
-
-   typedef enum
-   {
-      kNumSystems = 1,
-   } tIfaceConstants;
-
-   typedef
-   union{
-      struct{
-#ifdef __vxworks
-         unsigned SystemActive : 1;
-         unsigned Alive : 1;
-         unsigned SysDisableCount : 15;
-         unsigned DisableCount : 15;
-#else
-         unsigned DisableCount : 15;
-         unsigned SysDisableCount : 15;
-         unsigned Alive : 1;
-         unsigned SystemActive : 1;
-#endif
-      };
-      struct{
-         unsigned value : 32;
-      };
-   } tStatus;
-
-
-
-   typedef enum
-   {
-   } tStatus_IfaceConstants;
-
-   virtual tStatus readStatus(tRioStatusCode *status) = 0;
-   virtual bool readStatus_SystemActive(tRioStatusCode *status) = 0;
-   virtual bool readStatus_Alive(tRioStatusCode *status) = 0;
-   virtual unsigned short readStatus_SysDisableCount(tRioStatusCode *status) = 0;
-   virtual unsigned short readStatus_DisableCount(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tKill_IfaceConstants;
-
-   virtual void strobeKill(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tFeed_IfaceConstants;
-
-   virtual void strobeFeed(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tTimer_IfaceConstants;
-
-   virtual unsigned int readTimer(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tExpiration_IfaceConstants;
-
-   virtual void writeExpiration(unsigned int value, tRioStatusCode *status) = 0;
-   virtual unsigned int readExpiration(tRioStatusCode *status) = 0;
-
-
-   typedef enum
-   {
-   } tImmortal_IfaceConstants;
-
-   virtual void writeImmortal(bool value, tRioStatusCode *status) = 0;
-   virtual bool readImmortal(tRioStatusCode *status) = 0;
-
-
-
-
-private:
-   tWatchdog(const tWatchdog&);
-   void operator=(const tWatchdog&);
-};
-
-}
-}
-
-#endif // __nFRC_2012_1_6_4_Watchdog_h__
diff --git a/aos/externals/WPILib/WPILib/Commands/Command.cpp b/aos/externals/WPILib/WPILib/Commands/Command.cpp
deleted file mode 100644
index 42adcd6..0000000
--- a/aos/externals/WPILib/WPILib/Commands/Command.cpp
+++ /dev/null
@@ -1,475 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Commands/Command.h"
-#include "Commands/CommandGroup.h"
-#include "Commands/Scheduler.h"
-#include "DriverStation.h"
-#include "Timer.h"
-#include "WPIErrors.h"
-
-static const char *kName = "name";
-static const char *kRunning = "running";
-static const char *kIsParented = "isParented";
-
-int Command::m_commandCounter = 0;
-
-void Command::InitCommand(const char *name, double timeout)
-{
-	m_commandID = m_commandCounter++;
-	m_timeout = timeout;
-	m_locked = false;
-	m_startTime = -1;
-	m_initialized = false;
-	m_running = false;
-	m_interruptible = true;
-	m_canceled = false;
-	m_runWhenDisabled = false;
-	m_parent = NULL;
-	if (name == NULL)
-	{
-		// Don't have a way to find the subclass name like java, so use the address
-		char buf[32];
-		snprintf(buf, 32, "Command_%p", this);
-		m_name = buf;
-	}
-	else
-	{
-		m_name = name;
-	}
-	m_table = NULL;	
-}
-
-/**
- * Creates a new command.
- * The name of this command will be default.
- */
-Command::Command()
-{
-	InitCommand(NULL, -1.0);
-}
-
-/**
- * Creates a new command with the given name and no timeout.
- * @param name the name for this command
- */
-Command::Command(const char *name)
-{
-	if (name == NULL)
-		wpi_setWPIErrorWithContext(NullParameter, "name");
-	InitCommand(name, -1.0);
-}
-
-/**
- * Creates a new command with the given timeout and a default name.
- * @param timeout the time (in seconds) before this command "times out"
- * @see Command#isTimedOut() isTimedOut()
- */
-Command::Command(double timeout)
-{
-	if (timeout < 0.0)
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "timeout < 0.0");
-	InitCommand(NULL, timeout);
-}
-
-/**
- * Creates a new command with the given name and timeout.
- * @param name the name of the command
- * @param timeout the time (in seconds) before this command "times out"
- * @see Command#isTimedOut() isTimedOut()
- */
-Command::Command(const char *name, double timeout)
-{
-	if (name == NULL)
-		wpi_setWPIErrorWithContext(NullParameter, "name");
-	if (timeout < 0.0)
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "timeout < 0.0");
-	InitCommand(name, timeout);
-}
-
-Command::~Command()
-{//TODO deal with cleaning up all listeners
-	/*if (m_table != NULL){
-		m_table->RemoveChangeListener(kRunning, this);
-	}*/
-}
-
-/**
- * Get the ID (sequence number) for this command
- * The ID is a unique sequence number that is incremented for each command.
- * @return the ID of this command
- */
-int Command::GetID() {
-	return m_commandID;
-}
-
-/**
- * Sets the timeout of this command.
- * @param timeout the timeout (in seconds)
- * @see Command#isTimedOut() isTimedOut()
- */
-void Command::SetTimeout(double timeout)
-{
-	if (timeout < 0.0)
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "timeout < 0.0");
-	else
-		m_timeout = timeout;
-}
-
-/**
- * Returns the time since this command was initialized (in seconds).
- * This function will work even if there is no specified timeout.
- * @return the time since this command was initialized (in seconds).
- */
-double Command::TimeSinceInitialized()
-{
-	if (m_startTime < 0.0)
-		return 0.0;
-	else
-		return Timer::GetFPGATimestamp() - m_startTime;
-}
-
-/**
- * This method specifies that the given {@link Subsystem} is used by this command.
- * This method is crucial to the functioning of the Command System in general.
- *
- * <p>Note that the recommended way to call this method is in the constructor.</p>
- *
- * @param subsystem the {@link Subsystem} required
- * @see Subsystem
- */
-void Command::Requires(Subsystem *subsystem)
-{
-	if (!AssertUnlocked("Can not add new requirement to command"))
-		return;
-
-	if (subsystem != NULL)
-		m_requirements.insert(subsystem);
-	else
-		wpi_setWPIErrorWithContext(NullParameter, "subsystem");
-}
-
-/**
- * Called when the command has been removed.
- * This will call {@link Command#interrupted() interrupted()} or {@link Command#end() end()}.
- */
-void Command::Removed()
-{
-	if (m_initialized)
-	{
-		if (IsCanceled())
-		{
-			Interrupted();
-			_Interrupted();
-		}
-		else
-		{
-			End();
-			_End();
-		}
-	}
-	m_initialized = false;
-	m_canceled = false;
-	m_running = false;
-	if (m_table != NULL)
-		m_table->PutBoolean(kRunning, false);
-}
-
-/**
- * Starts up the command.  Gets the command ready to start.
- * <p>Note that the command will eventually start, however it will not necessarily
- * do so immediately, and may in fact be canceled before initialize is even called.</p>
- */
-void Command::Start()
-{
-	LockChanges();
-	if (m_parent != NULL)
-		wpi_setWPIErrorWithContext(CommandIllegalUse, "Can not start a command that is part of a command group");
-
-	Scheduler::GetInstance()->AddCommand(this);
-}
-
-/**
- * The run method is used internally to actually run the commands.
- * @return whether or not the command should stay within the {@link Scheduler}.
- */
-bool Command::Run()
-{
-	if (!m_runWhenDisabled && m_parent == NULL && DriverStation::GetInstance()->IsDisabled())
-		Cancel();
-
-	if (IsCanceled())
-		return false;
-
-	if (!m_initialized)
-	{
-		m_initialized = true;
-		StartTiming();
-		_Initialize();
-		Initialize();
-	}
-	_Execute();
-	Execute();
-	return !IsFinished();
-}
-
-void Command::_Initialize()
-{
-}
-
-void Command::_Interrupted()
-{
-}
-
-void Command::_Execute()
-{
-}
-
-void Command::_End()
-{
-}
-
-/**
- * Called to indicate that the timer should start.
- * This is called right before {@link Command#initialize() initialize()} is, inside the
- * {@link Command#run() run()} method.
- */
-void Command::StartTiming()
-{
-	m_startTime = Timer::GetFPGATimestamp();
-}
-
-/**
- * Returns whether or not the {@link Command#timeSinceInitialized() timeSinceInitialized()}
- * method returns a number which is greater than or equal to the timeout for the command.
- * If there is no timeout, this will always return false.
- * @return whether the time has expired
- */
-bool Command::IsTimedOut()
-{
-	return m_timeout != -1 && TimeSinceInitialized() >= m_timeout;
-}
-
-/**
- * Returns the requirements (as an std::set of {@link Subsystem Subsystems} pointers) of this command
- * @return the requirements (as an std::set of {@link Subsystem Subsystems} pointers) of this command
- */
-Command::SubsystemSet Command::GetRequirements()
-{
-	return m_requirements;
-}
-
-/**
- * Prevents further changes from being made
- */
-void Command::LockChanges()
-{
-	m_locked = true;
-}
-
-/**
- * If changes are locked, then this will generate a CommandIllegalUse error.
- * @param message the message to report on error (it is appended by a default message)
- * @return true if assert passed, false if assert failed
- */
-bool Command::AssertUnlocked(const char *message)
-{
-	if (m_locked)
-	{
-		char buf[128];
-		snprintf(buf, 128, "%s after being started or being added to a command group", message);
-		wpi_setWPIErrorWithContext(CommandIllegalUse, buf);
-		return false;
-	}
-	return true;
-}
-
-/**
- * Sets the parent of this command.  No actual change is made to the group.
- * @param parent the parent
- */
-void Command::SetParent(CommandGroup *parent)
-{
-	if (parent == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "parent");
-	}
-	else if (m_parent != NULL)
-	{
-		wpi_setWPIErrorWithContext(CommandIllegalUse, "Can not give command to a command group after already being put in a command group");
-	}
-	else
-	{
-		LockChanges();
-		m_parent = parent;
-		if (m_table != NULL)
-		{
-			m_table->PutBoolean(kIsParented, true);
-		}
-	}
-}
-
-/**
- * This is used internally to mark that the command has been started.
- * The lifecycle of a command is:
- *
- * startRunning() is called.
- * run() is called (multiple times potentially)
- * removed() is called
- *
- * It is very important that startRunning and removed be called in order or some assumptions
- * of the code will be broken.
- */
-void Command::StartRunning()
-{
-	m_running = true;
-	m_startTime = -1;
-	if (m_table != NULL)
-		m_table->PutBoolean(kRunning, true);
-}
-
-/**
- * Returns whether or not the command is running.
- * This may return true even if the command has just been canceled, as it may
- * not have yet called {@link Command#interrupted()}.
- * @return whether or not the command is running
- */
-bool Command::IsRunning()
-{
-	return m_running;
-}
-
-/**
- * This will cancel the current command.
- * <p>This will cancel the current command eventually.  It can be called multiple times.
- * And it can be called when the command is not running.  If the command is running though,
- * then the command will be marked as canceled and eventually removed.</p>
- * <p>A command can not be canceled
- * if it is a part of a command group, you must cancel the command group instead.</p>
- */
-void Command::Cancel()
-{
-	if (m_parent != NULL)
-		wpi_setWPIErrorWithContext(CommandIllegalUse, "Can not cancel a command that is part of a command group");
-
-	_Cancel();
-}
-
-/**
- * This works like cancel(), except that it doesn't throw an exception if it is a part
- * of a command group.  Should only be called by the parent command group.
- */
-void Command::_Cancel()
-{
-	if (IsRunning())
-		m_canceled = true;
-}
-
-/**
- * Returns whether or not this has been canceled.
- * @return whether or not this has been canceled
- */
-bool Command::IsCanceled()
-{
-	return m_canceled;
-}
-
-/**
- * Returns whether or not this command can be interrupted.
- * @return whether or not this command can be interrupted
- */
-bool Command::IsInterruptible()
-{
-	return m_interruptible;
-}
-
-/**
- * Sets whether or not this command can be interrupted.
- * @param interruptible whether or not this command can be interrupted
- */
-void Command::SetInterruptible(bool interruptible)
-{
-	m_interruptible = interruptible;
-}
-
-/**
- * Checks if the command requires the given {@link Subsystem}.
- * @param system the system
- * @return whether or not the subsystem is required (false if given NULL)
- */
-bool Command::DoesRequire(Subsystem *system)
-{
-	return m_requirements.count(system) > 0;
-}
-
-/**
- * Returns the {@link CommandGroup} that this command is a part of.
- * Will return null if this {@link Command} is not in a group.
- * @return the {@link CommandGroup} that this command is a part of (or null if not in group)
- */
-CommandGroup *Command::GetGroup()
-{
-	return m_parent;
-}
-
-/**
- * Sets whether or not this {@link Command} should run when the robot is disabled.
- *
- * <p>By default a command will not run when the robot is disabled, and will in fact be canceled.</p>
- * @param run whether or not this command should run when the robot is disabled
- */
-void Command::SetRunWhenDisabled(bool run)
-{
-	m_runWhenDisabled = run;
-}
-
-/**
- * Returns whether or not this {@link Command} will run when the robot is disabled, or if it will cancel itself.
- * @return whether or not this {@link Command} will run when the robot is disabled, or if it will cancel itself
- */
-bool Command::WillRunWhenDisabled()
-{
-	return m_runWhenDisabled;
-}
-
-std::string Command::GetName()
-{
-	return m_name;
-}
-
-std::string Command::GetSmartDashboardType()
-{
-	return "Command";
-}
-
-void Command::InitTable(ITable* table)
-{
-    if(m_table!=NULL)
-    	m_table->RemoveTableListener(this);
-    m_table = table;
-    if(m_table!=NULL){
-    	m_table->PutString(kName, GetName());
-    	m_table->PutBoolean(kRunning, IsRunning());
-    	m_table->PutBoolean(kIsParented, m_parent != NULL);
-    	m_table->AddTableListener(kRunning, this, false);
-    }
-}
-
-ITable* Command::GetTable(){
-	return m_table;
-}
-
-void Command::ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew)
-{
-	if (value.b){
-		if(!IsRunning())
-			Start();
-	}
-	else{
-		if(IsRunning())
-			Cancel();
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/Commands/Command.h b/aos/externals/WPILib/WPILib/Commands/Command.h
deleted file mode 100644
index 5a9a77f..0000000
--- a/aos/externals/WPILib/WPILib/Commands/Command.h
+++ /dev/null
@@ -1,164 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __COMMAND_H__
-#define __COMMAND_H__
-
-#include "ErrorBase.h"
-#include "SmartDashboard/NamedSendable.h"
-#include <set>
-#include <string>
-
-class CommandGroup;
-class Subsystem;
-
-/**
- * The Command class is at the very core of the entire command framework.
- * Every command can be started with a call to {@link Command#Start() Start()}.
- * Once a command is started it will call {@link Command#Initialize() Initialize()}, and then
- * will repeatedly call {@link Command#Execute() Execute()} until the {@link Command#IsFinished() IsFinished()}
- * returns true.  Once it does, {@link Command#End() End()} will be called.
- *
- * <p>However, if at any point while it is running {@link Command#Cancel() Cancel()} is called, then
- * the command will be stopped and {@link Command#Interrupted() Interrupted()} will be called.</p>
- *
- * <p>If a command uses a {@link Subsystem}, then it should specify that it does so by
- * calling the {@link Command#Requires(Subsystem) Requires(...)} method
- * in its constructor. Note that a Command may have multiple requirements, and
- * {@link Command#Requires(Subsystem) Requires(...)} should be
- * called for each one.</p>
- *
- * <p>If a command is running and a new command with shared requirements is started,
- * then one of two things will happen.  If the active command is interruptible,
- * then {@link Command#Cancel() Cancel()} will be called and the command will be removed
- * to make way for the new one.  If the active command is not interruptible, the
- * other one will not even be started, and the active one will continue functioning.</p>
- *
- * @see CommandGroup
- * @see Subsystem
- */
-class Command : public ErrorBase, public NamedSendable, public ITableListener
-{
-	friend class CommandGroup;
-	friend class Scheduler;
-public:
-	Command();
-	Command(const char *name);
-	Command(double timeout);
-	Command(const char *name, double timeout);
-	virtual ~Command();
-	double TimeSinceInitialized();
-	void Requires(Subsystem *s);
-	bool IsCanceled();
-	void Start();
-	bool Run();
-	void Cancel();
-	bool IsRunning();
-	bool IsInterruptible();
-	void SetInterruptible(bool interruptible);
-	bool DoesRequire(Subsystem *subsystem);
-	typedef std::set<Subsystem *> SubsystemSet;
-	SubsystemSet GetRequirements();
-	CommandGroup *GetGroup();
-	void SetRunWhenDisabled(bool run);
-	bool WillRunWhenDisabled();
-	int GetID();
-
-
-protected:
-	void SetTimeout(double timeout);
-	bool IsTimedOut();
-	bool AssertUnlocked(const char *message);
-	void SetParent(CommandGroup *parent);
-	/**
-	 * The initialize method is called the first time this Command is run after 
-	 * being started.
-	 */
-	virtual void Initialize() = 0;
-	/**
-	 * The execute method is called repeatedly until this Command either finishes
-	 * or is canceled.
-	 */
-	virtual void Execute() = 0;
-	/**
-	 * Returns whether this command is finished.
-	 * If it is, then the command will be removed
-	 * and {@link Command#end() end()} will be called.
-	 *
-	 * <p>It may be useful for a team to reference the {@link Command#isTimedOut() isTimedOut()} method
-	 * for time-sensitive commands.</p>
-	 * @return whether this command is finished.
-	 * @see Command#isTimedOut() isTimedOut()
-	 */
-	virtual bool IsFinished() = 0;
-	/**
-	 * Called when the command ended peacefully.  This is where you may want
-	 * to wrap up loose ends, like shutting off a motor that was being used
-	 * in the command.
-	 */
-	virtual void End() = 0;
-	/**
-	 * Called when the command ends because somebody called {@link Command#cancel() cancel()}
-	 * or another command shared the same requirements as this one, and booted
-	 * it out.
-	 *
-	 * <p>This is where you may want
-	 * to wrap up loose ends, like shutting off a motor that was being used
-	 * in the command.</p>
-	 *
-	 * <p>Generally, it is useful to simply call the {@link Command#end() end()} method
-	 * within this method</p>
-	 */
-	virtual void Interrupted() = 0;
-	virtual void _Initialize();
-	virtual void _Interrupted();
-	virtual void _Execute();
-	virtual void _End();
-	virtual void _Cancel();
-
-private:
-	void InitCommand(const char *name, double timeout);
-	void LockChanges();
-	/*synchronized*/ void Removed();
-	void StartRunning();
-	void StartTiming();
-
-	/** The name of this command */
-	std::string m_name;
-	/** The time since this command was initialized */
-	double m_startTime;
-	/** The time (in seconds) before this command "times out" (or -1 if no timeout) */
-	double m_timeout;
-	/** Whether or not this command has been initialized */
-	bool m_initialized;
-	/** The requirements (or null if no requirements) */
-	SubsystemSet m_requirements;
-	/** Whether or not it is running */
-	bool m_running;
-	/** Whether or not it is interruptible*/
-	bool m_interruptible;
-	/** Whether or not it has been canceled */
-	bool m_canceled;
-	/** Whether or not it has been locked */
-	bool m_locked;
-	/** Whether this command should run when the robot is disabled */
-	bool m_runWhenDisabled;
-	/** The {@link CommandGroup} this is in */
-	CommandGroup *m_parent;
-	int m_commandID;
-	static int m_commandCounter;
-	
-public:
-	virtual std::string GetName();
-	virtual void InitTable(ITable* table);
-	virtual ITable* GetTable();
-	virtual std::string GetSmartDashboardType();
-	virtual void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-protected:
-	ITable* m_table;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Commands/CommandGroup.cpp b/aos/externals/WPILib/WPILib/Commands/CommandGroup.cpp
deleted file mode 100644
index b1decd3..0000000
--- a/aos/externals/WPILib/WPILib/Commands/CommandGroup.cpp
+++ /dev/null
@@ -1,383 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Commands/CommandGroup.h"
-#include "WPIErrors.h"
-
-/**
- * Creates a new {@link CommandGroup CommandGroup}.
- */
-CommandGroup::CommandGroup()
-{
-	m_currentCommandIndex = -1;
-}
-
-/**
- * Creates a new {@link CommandGroup CommandGroup} with the given name.
- * @param name the name for this command group
- */
-CommandGroup::CommandGroup(const char *name) :
-	Command(name)
-{
-	m_currentCommandIndex = -1;
-}
-
-CommandGroup::~CommandGroup()
-{
-}
-
-/**
- * Adds a new {@link Command Command} to the group.  The {@link Command Command} will be started after
- * all the previously added {@link Command Commands}.
- *
- * <p>Note that any requirements the given {@link Command Command} has will be added to the
- * group.  For this reason, a {@link Command Command's} requirements can not be changed after
- * being added to a group.</p>
- *
- * <p>It is recommended that this method be called in the constructor.</p>
- * 
- * @param command The {@link Command Command} to be added
- */
-void CommandGroup::AddSequential(Command *command)
-{
-	if (command == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "command");
-		return;
-	}
-	if (!AssertUnlocked("Cannot add new command to command group"))
-		return;
-
-	command->SetParent(this);
-
-	m_commands.push_back(CommandGroupEntry(command, CommandGroupEntry::kSequence_InSequence));
-	// Iterate through command->GetRequirements() and call Requires() on each required subsystem
-	Command::SubsystemSet requirements = command->GetRequirements();
-	Command::SubsystemSet::iterator iter = requirements.begin();
-	for (; iter != requirements.end(); iter++)
-		Requires(*iter);
-}
-
-/**
- * Adds a new {@link Command Command} to the group with a given timeout.
- * The {@link Command Command} will be started after all the previously added commands.
- *
- * <p>Once the {@link Command Command} is started, it will be run until it finishes or the time
- * expires, whichever is sooner.  Note that the given {@link Command Command} will have no
- * knowledge that it is on a timer.</p>
- *
- * <p>Note that any requirements the given {@link Command Command} has will be added to the
- * group.  For this reason, a {@link Command Command's} requirements can not be changed after
- * being added to a group.</p>
- *
- * <p>It is recommended that this method be called in the constructor.</p>
- *
- * @param command The {@link Command Command} to be added
- * @param timeout The timeout (in seconds)
- */
-void CommandGroup::AddSequential(Command *command, double timeout)
-{
-	if (command == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "command");
-		return;
-	}
-	if (!AssertUnlocked("Cannot add new command to command group"))
-		return;
-	if (timeout < 0.0)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "timeout < 0.0");
-		return;
-	}
-
-	command->SetParent(this);
-
-	m_commands.push_back(CommandGroupEntry(command, CommandGroupEntry::kSequence_InSequence, timeout));
-	// Iterate through command->GetRequirements() and call Requires() on each required subsystem
-	Command::SubsystemSet requirements = command->GetRequirements();
-	Command::SubsystemSet::iterator iter = requirements.begin();
-	for (; iter != requirements.end(); iter++)
-		Requires(*iter);
-}
-
-/**
- * Adds a new child {@link Command} to the group.  The {@link Command} will be started after
- * all the previously added {@link Command Commands}.
- *
- * <p>Instead of waiting for the child to finish, a {@link CommandGroup} will have it
- * run at the same time as the subsequent {@link Command Commands}.  The child will run until either
- * it finishes, a new child with conflicting requirements is started, or
- * the main sequence runs a {@link Command} with conflicting requirements.  In the latter
- * two cases, the child will be canceled even if it says it can't be
- * interrupted.</p>
- *
- * <p>Note that any requirements the given {@link Command Command} has will be added to the
- * group.  For this reason, a {@link Command Command's} requirements can not be changed after
- * being added to a group.</p>
- *
- * <p>It is recommended that this method be called in the constructor.</p>
- *
- * @param command The command to be added
- */
-void CommandGroup::AddParallel(Command *command)
-{
-	if (command == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "command");
-		return;
-	}
-	if (!AssertUnlocked("Cannot add new command to command group"))
-		return;
-
-	command->SetParent(this);
-
-	m_commands.push_back(CommandGroupEntry(command, CommandGroupEntry::kSequence_BranchChild));
-	// Iterate through command->GetRequirements() and call Requires() on each required subsystem
-	Command::SubsystemSet requirements = command->GetRequirements();
-	Command::SubsystemSet::iterator iter = requirements.begin();
-	for (; iter != requirements.end(); iter++)
-		Requires(*iter);
-}
-
-/**
- * Adds a new child {@link Command} to the group with the given timeout.  The {@link Command} will be started after
- * all the previously added {@link Command Commands}.
- *
- * <p>Once the {@link Command Command} is started, it will run until it finishes, is interrupted,
- * or the time expires, whichever is sooner.  Note that the given {@link Command Command} will have no
- * knowledge that it is on a timer.</p>
- *
- * <p>Instead of waiting for the child to finish, a {@link CommandGroup} will have it
- * run at the same time as the subsequent {@link Command Commands}.  The child will run until either
- * it finishes, the timeout expires, a new child with conflicting requirements is started, or
- * the main sequence runs a {@link Command} with conflicting requirements.  In the latter
- * two cases, the child will be canceled even if it says it can't be
- * interrupted.</p>
- *
- * <p>Note that any requirements the given {@link Command Command} has will be added to the
- * group.  For this reason, a {@link Command Command's} requirements can not be changed after
- * being added to a group.</p>
- *
- * <p>It is recommended that this method be called in the constructor.</p>
- *
- * @param command The command to be added
- * @param timeout The timeout (in seconds)
- */
-void CommandGroup::AddParallel(Command *command, double timeout)
-{
-	if (command == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "command");
-		return;
-	}
-	if (!AssertUnlocked("Cannot add new command to command group"))
-		return;
-	if (timeout < 0.0)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "timeout < 0.0");
-		return;
-	}
-
-	command->SetParent(this);
-
-	m_commands.push_back(CommandGroupEntry(command, CommandGroupEntry::kSequence_BranchChild, timeout));
-	// Iterate through command->GetRequirements() and call Requires() on each required subsystem
-	Command::SubsystemSet requirements = command->GetRequirements();
-	Command::SubsystemSet::iterator iter = requirements.begin();
-	for (; iter != requirements.end(); iter++)
-		Requires(*iter);
-}
-
-void CommandGroup::_Initialize()
-{
-	m_currentCommandIndex = -1;
-}
-
-void CommandGroup::_Execute()
-{
-	CommandGroupEntry entry;
-	Command *cmd = NULL;
-	bool firstRun = false;
-
-	if (m_currentCommandIndex == -1)
-	{
-		firstRun = true;
-		m_currentCommandIndex = 0;
-	}
-
-	while ((unsigned)m_currentCommandIndex < m_commands.size())
-	{
-		if (cmd != NULL)
-		{
-			if (entry.IsTimedOut())
-				cmd->_Cancel();
-
-			if (cmd->Run())
-			{
-				break;
-			}
-			else
-			{
-				cmd->Removed();
-				m_currentCommandIndex++;
-				firstRun = true;
-				cmd = NULL;
-				continue;
-			}
-		}
-
-		entry = m_commands[m_currentCommandIndex];
-		cmd = NULL;
-
-		switch (entry.m_state)
-		{
-			case CommandGroupEntry::kSequence_InSequence:
-				cmd = entry.m_command;
-				if (firstRun)
-				{
-					cmd->StartRunning();
-					CancelConflicts(cmd);
-					firstRun = false;
-				}
-				break;
-
-			case CommandGroupEntry::kSequence_BranchPeer:
-				m_currentCommandIndex++;
-				entry.m_command->Start();
-				break;
-
-			case CommandGroupEntry::kSequence_BranchChild:
-				m_currentCommandIndex++;
-				CancelConflicts(entry.m_command);
-				entry.m_command->StartRunning();
-				m_children.push_back(entry);
-				break;
-		}
-	}
-
-	// Run Children
-	CommandList::iterator iter = m_children.begin();
-	for (; iter != m_children.end();)
-	{
-		entry = *iter;
-		Command *child = entry.m_command;
-		if (entry.IsTimedOut())
-			child->_Cancel();
-
-		if (!child->Run())
-		{
-			child->Removed();
-			iter = m_children.erase(iter);
-		}
-		else
-		{
-			iter++;
-		}
-	}
-}
-
-void CommandGroup::_End()
-{
-	// Theoretically, we don't have to check this, but we do if teams override the IsFinished method
-	if (m_currentCommandIndex != -1 && (unsigned)m_currentCommandIndex < m_commands.size())
-	{
-		Command *cmd = m_commands[m_currentCommandIndex].m_command;
-		cmd->_Cancel();
-		cmd->Removed();
-	}
-
-	CommandList::iterator iter = m_children.begin();
-	for (; iter != m_children.end(); iter++)
-	{
-		Command *cmd = iter->m_command;
-		cmd->_Cancel();
-		cmd->Removed();
-	}
-	m_children.clear();
-}
-
-void CommandGroup::_Interrupted()
-{
-	_End();
-}
-
-// Can be overwritten by teams
-void CommandGroup::Initialize()
-{
-}
-
-// Can be overwritten by teams
-void CommandGroup::Execute()
-{
-}
-
-// Can be overwritten by teams
-void CommandGroup::End()
-{
-}
-
-// Can be overwritten by teams
-void CommandGroup::Interrupted()
-{
-}
-
-bool CommandGroup::IsFinished()
-{
-	return (unsigned)m_currentCommandIndex >= m_commands.size() && m_children.empty();
-}
-
-bool CommandGroup::IsInterruptible()
-{
-	if (!Command::IsInterruptible())
-		return false;
-
-	if (m_currentCommandIndex != -1 && (unsigned)m_currentCommandIndex < m_commands.size())
-	{
-		Command *cmd = m_commands[m_currentCommandIndex].m_command;
-		if (!cmd->IsInterruptible())
-			return false;
-	}
-
-	CommandList::iterator iter = m_children.begin();
-	for (; iter != m_children.end(); iter++)
-	{
-		if (!iter->m_command->IsInterruptible())
-			return false;
-	}
-
-	return true;
-}
-
-void CommandGroup::CancelConflicts(Command *command)
-{
-	CommandList::iterator childIter = m_children.begin();
-	for (; childIter != m_children.end();)
-	{
-		Command *child = childIter->m_command;
-		bool erased = false;
-
-		Command::SubsystemSet requirements = command->GetRequirements();
-		Command::SubsystemSet::iterator requirementIter = requirements.begin();
-		for (; requirementIter != requirements.end(); requirementIter++)
-		{
-			if (child->DoesRequire(*requirementIter))
-			{
-				child->_Cancel();
-				child->Removed();
-				childIter = m_children.erase(childIter);
-				erased = true;
-				break;
-			}
-		}
-		if (!erased)
-			childIter++;
-	}
-}
-
-int CommandGroup::GetSize()
-{
-	return m_children.size();
-}
diff --git a/aos/externals/WPILib/WPILib/Commands/CommandGroup.h b/aos/externals/WPILib/WPILib/Commands/CommandGroup.h
deleted file mode 100644
index 87c299f..0000000
--- a/aos/externals/WPILib/WPILib/Commands/CommandGroup.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __COMMAND_GROUP_H__
-#define __COMMAND_GROUP_H__
-
-#include "Commands/Command.h"
-#include "Commands/CommandGroupEntry.h"
-#include <list>
-#include <vector>
-
-/**
- * A {@link CommandGroup} is a list of commands which are executed in sequence.
- *
- * <p>Commands in a {@link CommandGroup} are added using the {@link CommandGroup#AddSequential(Command) AddSequential(...)} method
- * and are called sequentially.
- * {@link CommandGroup CommandGroups} are themselves {@link Command Commands}
- * and can be given to other {@link CommandGroup CommandGroups}.</p>
- *
- * <p>{@link CommandGroup CommandGroups} will carry all of the requirements of their {@link Command subcommands}.  Additional
- * requirements can be specified by calling {@link CommandGroup#Requires(Subsystem) Requires(...)}
- * normally in the constructor.</P>
- *
- * <p>CommandGroups can also execute commands in parallel, simply by adding them
- * using {@link CommandGroup#AddParallel(Command) AddParallel(...)}.</p>
- * 
- * @see Command
- * @see Subsystem
- */
-class CommandGroup : public Command
-{
-public:
-	CommandGroup();
-	CommandGroup(const char *name);
-	virtual ~CommandGroup();
-	
-	void AddSequential(Command *command);
-	void AddSequential(Command *command, double timeout);
-	void AddParallel(Command *command);
-	void AddParallel(Command *command, double timeout);
-	bool IsInterruptible();
-	int GetSize();
-
-protected:
-	virtual void Initialize();
-	virtual void Execute();
-	virtual bool IsFinished();
-	virtual void End();
-	virtual void Interrupted();
-	virtual void _Initialize();
-	virtual void _Interrupted();
-	virtual void _Execute();
-	virtual void _End();
-
-private:
-	void CancelConflicts(Command *command);
-
-	typedef std::vector<CommandGroupEntry> CommandVector;
-	/** The commands in this group (stored in entries) */
-	CommandVector m_commands;
-	typedef std::list<CommandGroupEntry> CommandList;
-	/** The active children in this group (stored in entries) */
-	CommandList m_children;
-	/** The current command, -1 signifies that none have been run */
-	int m_currentCommandIndex;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Commands/CommandGroupEntry.cpp b/aos/externals/WPILib/WPILib/Commands/CommandGroupEntry.cpp
deleted file mode 100644
index 1448257..0000000
--- a/aos/externals/WPILib/WPILib/Commands/CommandGroupEntry.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Commands/CommandGroupEntry.h"
-
-#include "Commands/Command.h"
-
-CommandGroupEntry::CommandGroupEntry() :
-	m_timeout(-1.0),
-	m_command(NULL),
-	m_state(kSequence_InSequence)
-{
-}
-
-CommandGroupEntry::CommandGroupEntry(Command *command, Sequence state) :
-	m_timeout(-1.0),
-	m_command(command),
-	m_state(state)
-{
-}
-
-CommandGroupEntry::CommandGroupEntry(Command *command, Sequence state, double timeout) :
-	m_timeout(timeout),
-	m_command(command),
-	m_state(state)
-{
-}
-
-bool CommandGroupEntry::IsTimedOut()
-{
-	if (m_timeout < 0.0)
-		return false;
-	double time = m_command->TimeSinceInitialized();
-	if (time == 0.0)
-		return false;
-	return time >= m_timeout;
-}
diff --git a/aos/externals/WPILib/WPILib/Commands/CommandGroupEntry.h b/aos/externals/WPILib/WPILib/Commands/CommandGroupEntry.h
deleted file mode 100644
index d2be6a8..0000000
--- a/aos/externals/WPILib/WPILib/Commands/CommandGroupEntry.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __COMMAND_GROUP_ENTRY_H__
-#define __COMMAND_GROUP_ENTRY_H__
-
-class Command;
-
-class CommandGroupEntry
-{
-public:
-	typedef enum {kSequence_InSequence, kSequence_BranchPeer, kSequence_BranchChild} Sequence;
-
-	CommandGroupEntry();
-	CommandGroupEntry(Command *command, Sequence state);
-	CommandGroupEntry(Command *command, Sequence state, double timeout);
-	bool IsTimedOut();
-
-	double m_timeout;
-	Command *m_command;
-	Sequence m_state;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Commands/PIDCommand.cpp b/aos/externals/WPILib/WPILib/Commands/PIDCommand.cpp
deleted file mode 100644
index 19da02d..0000000
--- a/aos/externals/WPILib/WPILib/Commands/PIDCommand.cpp
+++ /dev/null
@@ -1,106 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Commands/PIDCommand.h"
-
-#include "PIDController.h"
-#include "float.h"
-
-PIDCommand::PIDCommand(const char *name, double p, double i, double d, double f, double period) :
-		Command(name)
-{
-	m_controller = new PIDController(p, i, d, this, this, period);
-}
-
-PIDCommand::PIDCommand(double p, double i, double d, double f, double period)
-{
-	m_controller = new PIDController(p, i, d, f, this, this, period);
-}
-
-PIDCommand::PIDCommand(const char *name, double p, double i, double d) :
-	Command(name)
-{
-	m_controller = new PIDController(p, i, d, this, this);
-}
-
-PIDCommand::PIDCommand(const char *name, double p, double i, double d, double period) :
-	Command(name)
-{
-	m_controller = new PIDController(p, i, d, this, this, period);
-}
-
-PIDCommand::PIDCommand(double p, double i, double d)
-{
-	m_controller = new PIDController(p, i, d, this, this);
-}
-
-PIDCommand::PIDCommand(double p, double i, double d, double period)
-{
-	m_controller = new PIDController(p, i, d, this, this, period);
-}
-
-PIDCommand::~PIDCommand()
-{
-	delete m_controller;
-}
-
-void PIDCommand::_Initialize()
-{
-	m_controller->Enable();
-}
-
-void PIDCommand::_End()
-{
-	m_controller->Disable();
-}
-
-void PIDCommand::_Interrupted()
-{
-	_End();
-}
-
-void PIDCommand::SetSetpointRelative(double deltaSetpoint)
-{
-	SetSetpoint(GetSetpoint() + deltaSetpoint);
-}
-
-void PIDCommand::PIDWrite(float output)
-{
-	UsePIDOutput(output);
-}
-
-double PIDCommand::PIDGet()
-{
-	return ReturnPIDInput();
-}
-
-PIDController *PIDCommand::GetPIDController()
-{
-	return m_controller;
-}
-
-void PIDCommand::SetSetpoint(double setpoint)
-{
-	m_controller->SetSetpoint(setpoint);
-}
-
-double PIDCommand::GetSetpoint()
-{
-	return m_controller->GetSetpoint();
-}
-
-double PIDCommand::GetPosition()
-{
-	return ReturnPIDInput();
-}
-
-std::string PIDCommand::GetSmartDashboardType(){
-        return "PIDCommand";
-}
-void PIDCommand::InitTable(ITable* table){
-	m_controller->InitTable(table);
-	Command::InitTable(table);
-}
diff --git a/aos/externals/WPILib/WPILib/Commands/PIDCommand.h b/aos/externals/WPILib/WPILib/Commands/PIDCommand.h
deleted file mode 100644
index be44f06..0000000
--- a/aos/externals/WPILib/WPILib/Commands/PIDCommand.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __PID_COMMAND_H__
-#define __PID_COMMAND_H__
-
-#include "Commands/Command.h"
-#include "PIDSource.h"
-#include "PIDOutput.h"
-
-class PIDController;
-
-class PIDCommand : public Command, public PIDOutput, public PIDSource
-{
-public:
-	PIDCommand(const char *name, double p, double i, double d);
-	PIDCommand(const char *name, double p, double i, double d, double period);
-	PIDCommand(const char *name, double p, double i, double d, double f, double perioid);
-	PIDCommand(double p, double i, double d);
-	PIDCommand(double p, double i, double d, double period);
-	PIDCommand(double p, double i, double d, double f, double period);
-	virtual ~PIDCommand();
-	
-	void SetSetpointRelative(double deltaSetpoint);
-
-	// PIDOutput interface
-	virtual void PIDWrite(float output);
-
-	// PIDSource interface
-	virtual double PIDGet();
-protected:
-	PIDController *GetPIDController();
-	virtual void _Initialize();
-	virtual void _Interrupted();
-	virtual void _End();
-	void SetSetpoint(double setpoint);
-	double GetSetpoint();
-	double GetPosition();
-
-	virtual double ReturnPIDInput() = 0;
-	virtual void UsePIDOutput(double output) = 0;
-
-private:	
-	/** The internal {@link PIDController} */
-	PIDController *m_controller;
-
-public:
-	virtual void InitTable(ITable* table);
-	virtual std::string GetSmartDashboardType();
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Commands/PIDSubsystem.cpp b/aos/externals/WPILib/WPILib/Commands/PIDSubsystem.cpp
deleted file mode 100644
index b093725..0000000
--- a/aos/externals/WPILib/WPILib/Commands/PIDSubsystem.cpp
+++ /dev/null
@@ -1,237 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Commands/PIDSubsystem.h"
-#include "PIDController.h"
-#include "float.h"
-
-// XXX max and min are not used?
-
-/**
- * Instantiates a {@link PIDSubsystem} that will use the given p, i and d values.
- * @param name the name
- * @param p the proportional value
- * @param i the integral value
- * @param d the derivative value
- */
-PIDSubsystem::PIDSubsystem(const char *name, double p, double i, double d) :
-	Subsystem(name)
-{
-	m_controller = new PIDController(p, i, d, this, this);
-}
-
-/**
- * Instantiates a {@link PIDSubsystem} that will use the given p, i and d values.
- * @param name the name
- * @param p the proportional value
- * @param i the integral value
- * @param d the derivative value
- * @param f the feedforward value
- */
-PIDSubsystem::PIDSubsystem(const char *name, double p, double i, double d, double f) :
-	Subsystem(name)
-{
-	m_controller = new PIDController(p, i, d, f, this, this);
-}
-
-/**
- * Instantiates a {@link PIDSubsystem} that will use the given p, i and d values.  It will also space the time
- * between PID loop calculations to be equal to the given period.
- * @param name the name
- * @param p the proportional value
- * @param i the integral value
- * @param d the derivative value
- * @param f the feedfoward value
- * @param period the time (in seconds) between calculations
- */
-PIDSubsystem::PIDSubsystem(const char *name, double p, double i, double d, double f,
-	double period) :
-	Subsystem(name)
-{
-	m_controller = new PIDController(p, i, d, f, this, this, period);
-}
-
-/**
- * Instantiates a {@link PIDSubsystem} that will use the given p, i and d values.
- * It will use the class name as its name.
- * @param p the proportional value
- * @param i the integral value
- * @param d the derivative value
- */
-PIDSubsystem::PIDSubsystem(double p, double i, double d) :
-	Subsystem("PIDSubsystem")
-{
-	m_controller = new PIDController(p, i, d, this, this);
-}
-
-/**
- * Instantiates a {@link PIDSubsystem} that will use the given p, i and d values.
- * It will use the class name as its name.
- * @param p the proportional value
- * @param i the integral value
- * @param d the derivative value
- * @param f the feedforward value
- */
-PIDSubsystem::PIDSubsystem(double p, double i, double d, double f) :
-	Subsystem("PIDSubsystem")
-{
-	m_controller = new PIDController(p, i, d, f, this, this);
-}
-
-/**
- * Instantiates a {@link PIDSubsystem} that will use the given p, i and d values.
- * It will use the class name as its name.
- * It will also space the time
- * between PID loop calculations to be equal to the given period.
- * @param p the proportional value
- * @param i the integral value
- * @param d the derivative value
- * @param f the feedforward value
- * @param period the time (in seconds) between calculations
- */
-PIDSubsystem::PIDSubsystem(double p, double i, double d, double f, double period) :
-	Subsystem("PIDSubsystem")
-{
-	m_controller = new PIDController(p, i, d, f, this, this, period);
-}
-
-PIDSubsystem::~PIDSubsystem()
-{
-	delete m_controller;
-}
-
-/**
- * Enables the internal {@link PIDController}
- */
-void PIDSubsystem::Enable()
-{
-	m_controller->Enable();
-}
-
-/** 
-  * Disables the internal {@link PIDController}
-  */
-void PIDSubsystem::Disable()
-{
-	m_controller->Disable();
-}
-
-
-/**
- * Returns the {@link PIDController} used by this {@link PIDSubsystem}.
- * Use this if you would like to fine tune the pid loop.
- *
- * @return the {@link PIDController} used by this {@link PIDSubsystem}
- */
-PIDController *PIDSubsystem::GetPIDController()
-{
-	return m_controller;
-}
-
-/**
- * Sets the setpoint to the given value.  If {@link PIDCommand#SetRange(double, double) SetRange(...)}
- * was called,
- * then the given setpoint
- * will be trimmed to fit within the range.
- * @param setpoint the new setpoint
- */
-void PIDSubsystem::SetSetpoint(double setpoint)
-{
-	m_controller->SetSetpoint(setpoint);
-}
-
-/**
- * Adds the given value to the setpoint.
- * If {@link PIDCommand#SetRange(double, double) SetRange(...)} was used,
- * then the bounds will still be honored by this method.
- * @param deltaSetpoint the change in the setpoint
- */
-void PIDSubsystem::SetSetpointRelative(double deltaSetpoint)
-{
-	SetSetpoint(GetSetpoint() + deltaSetpoint);
-}
-
-/**
- * Return the current setpoint
- * @return The current setpoint
- */
-double PIDSubsystem::GetSetpoint()
-{
-	return m_controller->GetSetpoint();
-}
-
-/**
- * Sets the maximum and minimum values expected from the input.
- * 
- * @param minimumInput the minimum value expected from the input
- * @param maximumInput the maximum value expected from the output
- */
-void PIDSubsystem::SetInputRange(float minimumInput, float maximumInput)
-{
-	m_controller->SetInputRange(minimumInput, maximumInput);
-}
-
-/*
- * Set the absolute error which is considered tolerable for use with
- * OnTarget.
- * @param percentage error which is tolerable
- */
-void PIDSubsystem::SetAbsoluteTolerance(float absValue) {
-	m_controller->SetAbsoluteTolerance(absValue);
-}
-
-/*
- * Set the percentage error which is considered tolerable for use with
- * OnTarget.
- * @param percentage error which is tolerable
- */
-void PIDSubsystem::SetPercentTolerance(float percent) {
-	m_controller->SetPercentTolerance(percent);
-}
-
-/*
- * Return true if the error is within the percentage of the total input range,
- * determined by SetTolerance. This asssumes that the maximum and minimum input
- * were set using SetInput. Use OnTarget() in the IsFinished() method of commands
- * that use this subsystem.
- * 
- * Currently this just reports on target as the actual value passes through the setpoint.
- * Ideally it should be based on being within the tolerance for some period of time.
- * 
- * @return true if the error is within the percentage tolerance of the input range
- */
-bool PIDSubsystem::OnTarget()
-{
-	return m_controller->OnTarget();
-}
-
-/**
- * Returns the current position
- * @return the current position
- */
-double PIDSubsystem::GetPosition()
-{
-	return ReturnPIDInput();
-}
-
-void PIDSubsystem::PIDWrite(float output)
-{
-	UsePIDOutput(output);
-}
-
-double PIDSubsystem::PIDGet()
-{
-	return ReturnPIDInput();
-}
-
-
-std::string PIDSubsystem::GetSmartDashboardType(){
-	return "PIDCommand";
-}
-void PIDSubsystem::InitTable(ITable* table){
-	m_controller->InitTable(table);
-	Subsystem::InitTable(table);
-}
diff --git a/aos/externals/WPILib/WPILib/Commands/PIDSubsystem.h b/aos/externals/WPILib/WPILib/Commands/PIDSubsystem.h
deleted file mode 100644
index 6b9d138..0000000
--- a/aos/externals/WPILib/WPILib/Commands/PIDSubsystem.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __PID_SUBSYSTEM_H__
-#define __PID_SUBSYSTEM_H__
-
-#include "Commands/Subsystem.h"
-#include "PIDController.h"
-#include "PIDSource.h"
-#include "PIDOutput.h"
-
-/**
- * This class is designed to handle the case where there is a {@link Subsystem}
- * which uses a single {@link PIDController} almost constantly (for instance, 
- * an elevator which attempts to stay at a constant height).
- *
- * <p>It provides some convenience methods to run an internal {@link PIDController}.
- * It also allows access to the internal {@link PIDController} in order to give total control
- * to the programmer.</p>
- *
- */
-class PIDSubsystem : public Subsystem, public PIDOutput, public PIDSource
-{
-public:
-	PIDSubsystem(const char *name, double p, double i, double d);
-	PIDSubsystem(const char *name, double p, double i, double d, double f);
-	PIDSubsystem(const char *name, double p, double i, double d, double f, double period);
-	PIDSubsystem(double p, double i, double d);
-	PIDSubsystem(double p, double i, double d, double f);
-	PIDSubsystem(double p, double i, double d, double f, double period);
-	virtual ~PIDSubsystem();
-	
-	void Enable();
-	void Disable();
-
-	// PIDOutput interface
-	virtual void PIDWrite(float output);
-
-	// PIDSource interface
-	virtual double PIDGet();
-	void SetSetpoint(double setpoint);
-	void SetSetpointRelative(double deltaSetpoint);
-	void SetInputRange(float minimumInput, float maximumInput);
-	double GetSetpoint();
-	double GetPosition();
-
-	virtual void SetAbsoluteTolerance(float absValue);
-	virtual void SetPercentTolerance(float percent);
-	virtual bool OnTarget();
-	
-protected:
-	PIDController *GetPIDController();
-
-	virtual double ReturnPIDInput() = 0;
-	virtual void UsePIDOutput(double output) = 0;
-
-private:
-	/** The internal {@link PIDController} */
-	PIDController *m_controller;
-
-public:
-	virtual void InitTable(ITable* table);
-	virtual std::string GetSmartDashboardType();
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Commands/PrintCommand.cpp b/aos/externals/WPILib/WPILib/Commands/PrintCommand.cpp
deleted file mode 100644
index 4a84996..0000000
--- a/aos/externals/WPILib/WPILib/Commands/PrintCommand.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Commands/PrintCommand.h"
-#include "stdio.h"
-#include <sstream>
-
-PrintCommand::PrintCommand(const char *message) :
-	Command(((std::stringstream&)(std::stringstream("Print \"") << message << "\"")).str().c_str())
-{
-	m_message = message;
-}
-
-void PrintCommand::Initialize()
-{
-	printf(m_message.c_str());
-}
-
-void PrintCommand::Execute()
-{
-}
-
-bool PrintCommand::IsFinished()
-{
-	return true;
-}
-
-void PrintCommand::End()
-{
-}
-
-void PrintCommand::Interrupted()
-{
-}
diff --git a/aos/externals/WPILib/WPILib/Commands/PrintCommand.h b/aos/externals/WPILib/WPILib/Commands/PrintCommand.h
deleted file mode 100644
index b6342f5..0000000
--- a/aos/externals/WPILib/WPILib/Commands/PrintCommand.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __PRINT_COMMAND_H__
-#define __PRINT_COMMAND_H__
-
-#include "Commands/Command.h"
-#include <string>
-
-class PrintCommand : public Command
-{
-public:
-	PrintCommand(const char *message);
-	virtual ~PrintCommand() {}
-
-protected:
-	virtual void Initialize();
-	virtual void Execute();
-	virtual bool IsFinished();
-	virtual void End();
-	virtual void Interrupted();
-
-private:
-	std::string m_message;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Commands/Scheduler.cpp b/aos/externals/WPILib/WPILib/Commands/Scheduler.cpp
deleted file mode 100644
index 3f63180..0000000
--- a/aos/externals/WPILib/WPILib/Commands/Scheduler.cpp
+++ /dev/null
@@ -1,288 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Commands/Scheduler.h"
-
-#include "Buttons/ButtonScheduler.h"
-#include "Commands/Subsystem.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Synchronized.h"
-#include "WPIErrors.h"
-#include <iostream>
-#include <set>
-#include <semLib.h>
-#include <algorithm>
-
-Scheduler *Scheduler::_instance = NULL;
-
-Scheduler::Scheduler() :
-	m_buttonsLock(NULL), m_additionsLock(NULL), m_adding(false) {
-	m_buttonsLock = semMCreate(
-			SEM_Q_PRIORITY | SEM_INVERSION_SAFE | SEM_DELETE_SAFE);
-	m_additionsLock = semMCreate(
-			SEM_Q_PRIORITY | SEM_INVERSION_SAFE | SEM_DELETE_SAFE);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_Command,
-			nUsageReporting::kCommand_Scheduler);
-
-	m_table = NULL;
-	m_enabled = true;
-}
-
-Scheduler::~Scheduler() {
-	semTake(m_additionsLock, WAIT_FOREVER);
-	semDelete(m_additionsLock);
-
-	semTake(m_buttonsLock, WAIT_FOREVER);
-	semDelete(m_buttonsLock);
-}
-
-/**
- * Returns the {@link Scheduler}, creating it if one does not exist.
- * @return the {@link Scheduler}
- */
-Scheduler *Scheduler::GetInstance() {
-	if (_instance == NULL)
-		_instance = new Scheduler();
-	return _instance;
-}
-
-void Scheduler::SetEnabled(bool enabled) {
-	m_enabled = enabled;
-}
-
-/**
- * Add a command to be scheduled later.
- * In any pass through the scheduler, all commands are added to the additions list, then
- * at the end of the pass, they are all scheduled.
- * @param command The command to be scheduled
- */
-void Scheduler::AddCommand(Command *command) {
-	Synchronized sync(m_additionsLock);
-	if (std::find(m_additions.begin(), m_additions.end(), command)
-			!= m_additions.end())
-		return;
-	m_additions.push_back(command);
-}
-
-void Scheduler::AddButton(ButtonScheduler *button) {
-	Synchronized sync(m_buttonsLock);
-	m_buttons.push_back(button);
-}
-
-void Scheduler::ProcessCommandAddition(Command *command) {
-	if (command == NULL)
-		return;
-
-	// Check to make sure no adding during adding
-	if (m_adding) {
-		wpi_setWPIErrorWithContext(IncompatibleState, "Can not start command from cancel method");
-		return;
-	}
-
-	// Only add if not already in
-	CommandSet::iterator found = m_commands.find(command);
-	if (found == m_commands.end()) {
-		// Check that the requirements can be had
-		Command::SubsystemSet requirements = command->GetRequirements();
-		Command::SubsystemSet::iterator iter;
-		for (iter = requirements.begin(); iter != requirements.end(); iter++) {
-			Subsystem *lock = *iter;
-			if (lock->GetCurrentCommand() != NULL
-					&& !lock->GetCurrentCommand()->IsInterruptible())
-				return;
-		}
-
-		// Give it the requirements
-		m_adding = true;
-		for (iter = requirements.begin(); iter != requirements.end(); iter++) {
-			Subsystem *lock = *iter;
-			if (lock->GetCurrentCommand() != NULL) {
-				lock->GetCurrentCommand()->Cancel();
-				Remove(lock->GetCurrentCommand());
-			}
-			lock->SetCurrentCommand(command);
-		}
-		m_adding = false;
-
-		m_commands.insert(command);
-
-		command->StartRunning();
-		m_runningCommandsChanged = true;
-	}
-}
-
-/**
- * Runs a single iteration of the loop.  This method should be called often in order to have a functioning
- * {@link Command} system.  The loop has five stages:
- *
- * <ol>
- * <li> Poll the Buttons </li>
- * <li> Execute/Remove the Commands </li>
- * <li> Send values to SmartDashboard </li>
- * <li> Add Commands </li>
- * <li> Add Defaults </li>
- * </ol>
- */
-void Scheduler::Run() {
-	// Get button input (going backwards preserves button priority)
-	{
-		if (!m_enabled)
-			return;
-
-		Synchronized sync(m_buttonsLock);
-		ButtonVector::reverse_iterator rButtonIter = m_buttons.rbegin();
-		for (; rButtonIter != m_buttons.rend(); rButtonIter++) {
-			(*rButtonIter)->Execute();
-		}
-	}
-	
-	m_runningCommandsChanged = false;
-
-	// Loop through the commands
-	CommandSet::iterator commandIter = m_commands.begin();
-	for (; commandIter != m_commands.end();) {
-		Command *command = *commandIter;
-		// Increment before potentially removing to keep the iterator valid
-		commandIter++;
-		if (!command->Run()) {
-			Remove(command);
-			m_runningCommandsChanged = true;
-		}
-	}
-
-	// Add the new things
-	{
-		Synchronized sync(m_additionsLock);
-		CommandVector::iterator additionsIter = m_additions.begin();
-		for (; additionsIter != m_additions.end(); additionsIter++) {
-			ProcessCommandAddition(*additionsIter);
-		}
-		m_additions.clear();
-	}
-
-	// Add in the defaults
-	Command::SubsystemSet::iterator subsystemIter = m_subsystems.begin();
-	for (; subsystemIter != m_subsystems.end(); subsystemIter++) {
-		Subsystem *lock = *subsystemIter;
-		if (lock->GetCurrentCommand() == NULL) {
-			ProcessCommandAddition(lock->GetDefaultCommand());
-		}
-		lock->ConfirmCommand();
-	}
-
-	UpdateTable();
-}
-
-/**
- * Registers a {@link Subsystem} to this {@link Scheduler}, so that the {@link Scheduler} might know
- * if a default {@link Command} needs to be run.  All {@link Subsystem Subsystems} should call this.
- * @param system the system
- */
-void Scheduler::RegisterSubsystem(Subsystem *subsystem) {
-	if (subsystem == NULL) {
-		wpi_setWPIErrorWithContext(NullParameter, "subsystem");
-		return;
-	}
-	m_subsystems.insert(subsystem);
-}
-
-/**
- * Removes the {@link Command} from the {@link Scheduler}.
- * @param command the command to remove
- */
-void Scheduler::Remove(Command *command) {
-	if (command == NULL) {
-		wpi_setWPIErrorWithContext(NullParameter, "command");
-		return;
-	}
-
-	if (!m_commands.erase(command))
-		return;
-
-	Command::SubsystemSet requirements = command->GetRequirements();
-	Command::SubsystemSet::iterator iter = requirements.begin();
-	for (; iter != requirements.end(); iter++) {
-		Subsystem *lock = *iter;
-		lock->SetCurrentCommand(NULL);
-	}
-
-	command->Removed();
-}
-
-void Scheduler::RemoveAll() {
-	while (m_commands.size() > 0) {
-		Remove(*m_commands.begin());
-	}
-}
-
-/**
- * Update the network tables associated with the Scheduler object on the SmartDashboard
- */
-void Scheduler::UpdateTable() {
-	CommandSet::iterator commandIter;
-	if (m_table != NULL) {
-		// Get the list of possible commands to cancel
-		m_table->RetrieveValue("Cancel", *toCancel);
-//		m_table->RetrieveValue("Ids", *ids);
-
-		// cancel commands that have had the cancel buttons pressed
-		// on the SmartDashboad
-		if (toCancel->size() > 0) {
-			for (commandIter = m_commands.begin(); commandIter
-					!= m_commands.end(); ++commandIter) {
-				for (unsigned i = 0; i < toCancel->size(); i++) {
-					Command *c = *commandIter;
-					if (c->GetID() == toCancel->get(i)) {
-						c->Cancel();
-					}
-				}
-			}
-			toCancel->setSize(0);
-			m_table->PutValue("Cancel", *toCancel);
-		}
-		
-		// Set the running commands
-		if (m_runningCommandsChanged) {
-			commands->setSize(0);
-			ids->setSize(0);
-			for (commandIter = m_commands.begin(); commandIter != m_commands.end(); ++commandIter) {
-				Command *c = *commandIter;
-				commands->add(c->GetName());
-				ids->add(c->GetID());
-			}
-			m_table->PutValue("Names", *commands);
-			m_table->PutValue("Ids", *ids);
-		}
-	}
-}
-
-std::string Scheduler::GetName() {
-	return "Scheduler";
-}
-
-std::string Scheduler::GetType() {
-	return "Scheduler";
-}
-
-std::string Scheduler::GetSmartDashboardType() {
-	return "Scheduler";
-}
-
-void Scheduler::InitTable(ITable *subTable) {
-	m_table = subTable;
-	commands = new StringArray();
-	ids = new NumberArray();
-	toCancel = new NumberArray();
-
-	m_table->PutValue("Names", *commands);
-	m_table->PutValue("Ids", *ids);
-	m_table->PutValue("Cancel", *toCancel);
-}
-
-ITable * Scheduler::GetTable() {
-	return m_table;
-}
diff --git a/aos/externals/WPILib/WPILib/Commands/Scheduler.h b/aos/externals/WPILib/WPILib/Commands/Scheduler.h
deleted file mode 100644
index 3547e2b..0000000
--- a/aos/externals/WPILib/WPILib/Commands/Scheduler.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __SCHEDULER_H__
-#define __SCHEDULER_H__
-
-#include "Commands/Command.h"
-#include "ErrorBase.h"
-#include "SmartDashboard/NamedSendable.h"
-#include "networktables/NetworkTable.h"
-#include "networktables2/type/NumberArray.h"
-#include "networktables2/type/StringArray.h"
-#include "SmartDashboard/SmartDashboard.h"
-#include <list>
-#include <map>
-#include <set>
-#include <vector>
-
-class ButtonScheduler;
-class Subsystem;
-
-class Scheduler : public ErrorBase, public NamedSendable
-{
-public:
-	static Scheduler *GetInstance();
-
-	void AddCommand(Command* command);
-	void AddButton(ButtonScheduler* button);
-	void RegisterSubsystem(Subsystem *subsystem);
-	void Run();	
-	void Remove(Command *command);
-	void RemoveAll();
-	void SetEnabled(bool enabled);
-	
-	void UpdateTable();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-	std::string GetName();
-	std::string GetType();
-
-private:
-	Scheduler();
-	virtual ~Scheduler();
-
-	void ProcessCommandAddition(Command *command);
-
-	static Scheduler *_instance;
-	Command::SubsystemSet m_subsystems;
-	SEM_ID m_buttonsLock;
-	typedef std::vector<ButtonScheduler *> ButtonVector;
-	ButtonVector m_buttons;
-	typedef std::vector<Command *> CommandVector;
-	SEM_ID m_additionsLock;
-	CommandVector m_additions;
-	typedef std::set<Command *> CommandSet;
-	CommandSet m_commands;
-	bool m_adding;
-	bool m_enabled;
-	StringArray *commands;
-	NumberArray *ids;
-	NumberArray *toCancel;
-	ITable *m_table;
-	bool m_runningCommandsChanged;
-};
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Commands/StartCommand.cpp b/aos/externals/WPILib/WPILib/Commands/StartCommand.cpp
deleted file mode 100644
index 4e04514..0000000
--- a/aos/externals/WPILib/WPILib/Commands/StartCommand.cpp
+++ /dev/null
@@ -1,35 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Commands/StartCommand.h"
-
-StartCommand::StartCommand(Command *commandToStart) :
-	Command("StartCommand")
-{
-	m_commandToFork = commandToStart;
-}
-
-void StartCommand::Initialize()
-{
-	m_commandToFork->Start();
-}
-
-void StartCommand::Execute()
-{
-}
-
-void StartCommand::End()
-{
-}
-
-void StartCommand::Interrupted()
-{
-}
-
-bool StartCommand::IsFinished()
-{
-    return true;
-}
diff --git a/aos/externals/WPILib/WPILib/Commands/StartCommand.h b/aos/externals/WPILib/WPILib/Commands/StartCommand.h
deleted file mode 100644
index 1ea6dcf..0000000
--- a/aos/externals/WPILib/WPILib/Commands/StartCommand.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __START_COMMAND_H__
-#define __START_COMMAND_H__
-
-#include "Commands/Command.h"
-
-class StartCommand : public Command
-{
-public:
-	StartCommand(Command *commandToStart);
-	virtual ~StartCommand() {}
-
-protected:
-	virtual void Initialize();
-	virtual void Execute();
-	virtual bool IsFinished();
-	virtual void End();
-	virtual void Interrupted();
-
-private:
-	Command *m_commandToFork;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Commands/Subsystem.cpp b/aos/externals/WPILib/WPILib/Commands/Subsystem.cpp
deleted file mode 100644
index bdc0da8..0000000
--- a/aos/externals/WPILib/WPILib/Commands/Subsystem.cpp
+++ /dev/null
@@ -1,179 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Commands/Subsystem.h"
-
-#include "Commands/Command.h"
-#include "Commands/Scheduler.h"
-#include "WPIErrors.h"
-
-/**
- * Creates a subsystem with the given name
- * @param name the name of the subsystem
- */
-Subsystem::Subsystem(const char *name) :
-	m_currentCommand(NULL),
-	m_defaultCommand(NULL),
-	m_initializedDefaultCommand(false)
-{
-	m_name = name;
-	Scheduler::GetInstance()->RegisterSubsystem(this);
-	m_table = NULL;
-	m_currentCommandChanged = true;
-}
-/**
- * Initialize the default command for this subsystem
- * This is meant to be the place to call SetDefaultCommand in a subsystem and will be called
- * on all the subsystems by the CommandBase method before the program starts running by using
- * the list of all registered Subsystems inside the Scheduler.
- * 
- * This should be overridden by a Subsystem that has a default Command
- */
-void Subsystem::InitDefaultCommand() {
-
-}
-
-/**
- * Sets the default command.  If this is not called or is called with null,
- * then there will be no default command for the subsystem.
- *
- * <p><b>WARNING:</b> This should <b>NOT</b> be called in a constructor if the subsystem is a
- * singleton.</p>
- *
- * @param command the default command (or null if there should be none)
- */
-void Subsystem::SetDefaultCommand(Command *command)
-{
-	if (command == NULL)
-	{
-		m_defaultCommand = NULL;
-	}
-	else
-	{
-		bool found = false;
-		Command::SubsystemSet requirements = command->GetRequirements();
-		Command::SubsystemSet::iterator iter = requirements.begin();
-		for (; iter != requirements.end(); iter++)
-		{
-			if (*iter == this)
-			{
-				found = true;
-				break;
-			}
-		}
-
-		if (!found)
-		{
-			wpi_setWPIErrorWithContext(CommandIllegalUse, "A default command must require the subsystem");
-			return;
-		}
-		
-		m_defaultCommand = command;
-	}
-	if (m_table != NULL)
-	{
-		if (m_defaultCommand != NULL)
-		{
-			m_table->PutBoolean("hasDefault", true);
-			m_table->PutString("default", m_defaultCommand->GetName());
-		}
-		else
-		{
-			m_table->PutBoolean("hasDefault", false);
-		}
-	}
-}
-
-/**
- * Returns the default command (or null if there is none).
- * @return the default command
- */
-Command *Subsystem::GetDefaultCommand()
-{
-	if (!m_initializedDefaultCommand) {
-		m_initializedDefaultCommand = true;
-		InitDefaultCommand();
-	}
-	return m_defaultCommand;
-}
-
-/**
- * Sets the current command
- * @param command the new current command
- */
-void Subsystem::SetCurrentCommand(Command *command)
-{
-	m_currentCommand = command;
-	m_currentCommandChanged = true;
-}
-
-/**
- * Returns the command which currently claims this subsystem.
- * @return the command which currently claims this subsystem
- */
-Command *Subsystem::GetCurrentCommand()
-{
-	return m_currentCommand;
-}
-
-/**
- * Call this to alert Subsystem that the current command is actually the command.
- * Sometimes, the {@link Subsystem} is told that it has no command while the {@link Scheduler}
- * is going through the loop, only to be soon after given a new one.  This will avoid that situation.
- */
-void Subsystem::ConfirmCommand()
-{
-	if (m_currentCommandChanged) {
-		if (m_table != NULL)
-		{
-			if (m_currentCommand != NULL)
-			{
-				m_table->PutBoolean("hasCommand", true);
-				m_table->PutString("command", m_currentCommand->GetName());
-			}
-			else
-			{
-				m_table->PutBoolean("hasCommand", false);
-			}
-		}
-		m_currentCommandChanged = false;
-	}
-}
-
-
-
-std::string Subsystem::GetName()
-{
-	return m_name;
-}
-
-std::string Subsystem::GetSmartDashboardType()
-{
-	return "Subsystem";
-}
-
-void Subsystem::InitTable(ITable* table)
-{
-    m_table = table;
-    if(m_table!=NULL){
-        if (m_defaultCommand != NULL) {
-        	m_table->PutBoolean("hasDefault", true);
-        	m_table->PutString("default", m_defaultCommand->GetName());
-        } else {
-        	m_table->PutBoolean("hasDefault", false);
-        }
-        if (m_currentCommand != NULL) {
-        	m_table->PutBoolean("hasCommand", true);
-            m_table->PutString("command", m_currentCommand->GetName());
-        } else {
-        	m_table->PutBoolean("hasCommand", false);
-        }
-    }
-}
-
-ITable* Subsystem::GetTable(){
-	return m_table;
-}
diff --git a/aos/externals/WPILib/WPILib/Commands/Subsystem.h b/aos/externals/WPILib/WPILib/Commands/Subsystem.h
deleted file mode 100644
index 1bc1fd2..0000000
--- a/aos/externals/WPILib/WPILib/Commands/Subsystem.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __SUBSYSTEM_H__
-#define __SUBSYSTEM_H__
-
-#include "ErrorBase.h"
-#include "SmartDashboard/NamedSendable.h"
-#include <string>
-
-
-class Command;
-
-class Subsystem : public ErrorBase, public NamedSendable
-{
-	friend class Scheduler;
-public:
-	Subsystem(const char *name);
-	virtual ~Subsystem() {}
-
-	void SetDefaultCommand(Command *command);
-	Command *GetDefaultCommand();
-	void SetCurrentCommand(Command *command);
-	Command *GetCurrentCommand();
-	virtual void InitDefaultCommand();
-	
-private:
-	void ConfirmCommand();
-
-	Command *m_currentCommand;
-	bool m_currentCommandChanged;
-	Command *m_defaultCommand;
-	std::string m_name;
-	bool m_initializedDefaultCommand;
-
-public:
-	virtual std::string GetName();
-	virtual void InitTable(ITable* table);
-	virtual ITable* GetTable();
-	virtual std::string GetSmartDashboardType();
-protected:
-	ITable* m_table;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Commands/WaitCommand.cpp b/aos/externals/WPILib/WPILib/Commands/WaitCommand.cpp
deleted file mode 100644
index 508db04..0000000
--- a/aos/externals/WPILib/WPILib/Commands/WaitCommand.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Commands/WaitCommand.h"
-#include <sstream>
-
-WaitCommand::WaitCommand(double timeout) :
-	Command(((std::stringstream&)(std::stringstream("Wait(") << timeout << ")")).str().c_str(), timeout)
-{
-}
-
-WaitCommand::WaitCommand(const char *name, double timeout) :
-	Command(name, timeout)
-{
-}
-
-void WaitCommand::Initialize()
-{
-}
-
-void WaitCommand::Execute()
-{
-}
-
-bool WaitCommand::IsFinished()
-{
-    return IsTimedOut();
-}
-
-void WaitCommand::End()
-{
-}
-
-void WaitCommand::Interrupted()
-{
-}
diff --git a/aos/externals/WPILib/WPILib/Commands/WaitCommand.h b/aos/externals/WPILib/WPILib/Commands/WaitCommand.h
deleted file mode 100644
index 036bae8..0000000
--- a/aos/externals/WPILib/WPILib/Commands/WaitCommand.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __WAIT_COMMAND_H__
-#define __WAIT_COMMAND_H__
-
-#include "Commands/Command.h"
-
-class WaitCommand : public Command
-{
-public:
-	WaitCommand(double timeout);
-	WaitCommand(const char *name, double timeout);
-	virtual ~WaitCommand() {}
-
-protected:
-	virtual void Initialize();
-	virtual void Execute();
-	virtual bool IsFinished();
-	virtual void End();
-	virtual void Interrupted();	
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Commands/WaitForChildren.cpp b/aos/externals/WPILib/WPILib/Commands/WaitForChildren.cpp
deleted file mode 100644
index e168513..0000000
--- a/aos/externals/WPILib/WPILib/Commands/WaitForChildren.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Commands/WaitForChildren.h"
-#include "Commands/CommandGroup.h"
-
-WaitForChildren::WaitForChildren(double timeout) :
-	Command("WaitForChildren", timeout)
-{	
-}
-
-WaitForChildren::WaitForChildren(const char *name, double timeout) :
-	Command(name, timeout)
-{
-}
-
-void WaitForChildren::Initialize()
-{
-}
-
-void WaitForChildren::Execute()
-{
-}
-
-void WaitForChildren::End()
-{
-}
-
-void WaitForChildren::Interrupted()
-{
-}
-
-bool WaitForChildren::IsFinished()
-{
-    return GetGroup() == NULL || GetGroup()->GetSize() == 0;
-}
diff --git a/aos/externals/WPILib/WPILib/Commands/WaitForChildren.h b/aos/externals/WPILib/WPILib/Commands/WaitForChildren.h
deleted file mode 100644
index 2f4e3ea..0000000
--- a/aos/externals/WPILib/WPILib/Commands/WaitForChildren.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __WAIT_FOR_CHILDREN_H__
-#define __WAIT_FOR_CHILDREN_H__
-
-#include "Commands/Command.h"
-
-class WaitForChildren : public Command
-{
-public:
-	WaitForChildren(double timeout);
-	WaitForChildren(const char *name, double timeout);
-	virtual ~WaitForChildren() {}
-
-protected:
-	virtual void Initialize();
-	virtual void Execute();
-	virtual bool IsFinished();
-	virtual void End();
-	virtual void Interrupted();	
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Commands/WaitUntilCommand.cpp b/aos/externals/WPILib/WPILib/Commands/WaitUntilCommand.cpp
deleted file mode 100644
index 3d521b8..0000000
--- a/aos/externals/WPILib/WPILib/Commands/WaitUntilCommand.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Commands/WaitUntilCommand.h"
-#include "DriverStation.h"
-#include "Timer.h"
-
-/**
- * A {@link WaitCommand} will wait until a certain match time before finishing.
- * This will wait until the game clock reaches some value, then continue to the
- * next command.
- * @see CommandGroup
- */
-WaitUntilCommand::WaitUntilCommand(double time) :
-	Command("WaitUntilCommand", time)
-{
-    m_time = time;
-}
-
-WaitUntilCommand::WaitUntilCommand(const char *name, double time) :
-	Command(name, time)
-{
-    m_time = time;
-}
-
-void WaitUntilCommand::Initialize()
-{
-}
-
-void WaitUntilCommand::Execute()
-{
-}
-
-/**
- * Check if we've reached the actual finish time.
- */
-bool WaitUntilCommand::IsFinished()
-{
-    return DriverStation::GetInstance()->GetMatchTime() >= m_time;
-}
-
-void WaitUntilCommand::End()
-{
-}
-
-void WaitUntilCommand::Interrupted()
-{
-}
diff --git a/aos/externals/WPILib/WPILib/Commands/WaitUntilCommand.h b/aos/externals/WPILib/WPILib/Commands/WaitUntilCommand.h
deleted file mode 100644
index b816ccf..0000000
--- a/aos/externals/WPILib/WPILib/Commands/WaitUntilCommand.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __WAIT_UNTIL_COMMAND_H__
-#define __WAIT_UNTIL_COMMAND_H__
-
-#include "Commands/Command.h"
-
-class WaitUntilCommand : public Command
-{
-public:
-	WaitUntilCommand(double time);
-	WaitUntilCommand(const char *name, double time);
-	virtual ~WaitUntilCommand() {}
-
-protected:
-	virtual void Initialize();
-	virtual void Execute();
-	virtual bool IsFinished();
-	virtual void End();
-	virtual void Interrupted();	
-
-private:
-	double m_time;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Compressor.cpp b/aos/externals/WPILib/WPILib/Compressor.cpp
deleted file mode 100644
index 0c973f1..0000000
--- a/aos/externals/WPILib/WPILib/Compressor.cpp
+++ /dev/null
@@ -1,195 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Compressor.h"
-#include "DigitalInput.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Timer.h"
-#include "WPIErrors.h"
-
-/**
- * Internal task.
- * 
- * Task which checks the compressor pressure switch and operates the relay as necessary
- * depending on the pressure.
- * 
- * Do not call this function directly.
- */
-static void CompressorChecker(Compressor *c)
-{
-	while (1)
-	{
-		if (c->Enabled())
-		{
-			c->SetRelayValue( c->GetPressureSwitchValue() == 0 ? Relay::kOn : Relay::kOff );
-		}
-		else
-		{
-			c->SetRelayValue(Relay::kOff);
-		}
-		Wait(0.5);
-	}
-}
-
-/**
- * Initialize the Compressor object.
- * This method is the common initialization code for all the constructors for the Compressor
- * object. It takes the relay channel and pressure switch channel and spawns a task that polls the
- * compressor and sensor.
- * 
- * You MUST start the compressor by calling the Start() method.
- */
-void Compressor::InitCompressor(uint8_t pressureSwitchModuleNumber,
-		uint32_t pressureSwitchChannel,
-		uint8_t compresssorRelayModuleNumber,
-		uint32_t compressorRelayChannel)
-{
-	m_table = NULL;
-	m_enabled = false;
-	m_pressureSwitch = new DigitalInput(pressureSwitchModuleNumber, pressureSwitchChannel);
-	m_relay = new Relay(compresssorRelayModuleNumber, compressorRelayChannel, Relay::kForwardOnly);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_Compressor, 0);
-
-	if (!m_task.Start((int32_t)this))
-	{
-		wpi_setWPIError(CompressorTaskError);
-	}
-}
-
-/**
- * Compressor constructor.
- * Given a fully specified relay channel and pressure switch channel, initialize the Compressor object.
- * 
- * You MUST start the compressor by calling the Start() method.
- * 
- * @param pressureSwitchModuleNumber The digital module that the pressure switch is attached to.
- * @param pressureSwitchChannel The GPIO channel that the pressure switch is attached to.
- * @param compresssorRelayModuleNumber The digital module that the compressor relay is attached to.
- * @param compressorRelayChannel The relay channel that the compressor relay is attached to.
- */
-Compressor::Compressor(uint8_t pressureSwitchModuleNumber,
-		uint32_t pressureSwitchChannel,
-		uint8_t compresssorRelayModuleNumber,
-		uint32_t compressorRelayChannel)
-	: m_task ("Compressor", (FUNCPTR)CompressorChecker)
-{
-	InitCompressor(pressureSwitchModuleNumber,
-		pressureSwitchChannel,
-		compresssorRelayModuleNumber,
-		compressorRelayChannel);
-}
-
-/**
- * Compressor constructor.
- * Given a relay channel and pressure switch channel (both in the default digital module), initialize
- * the Compressor object.
- * 
- * You MUST start the compressor by calling the Start() method.
- * 
- * @param pressureSwitchChannel The GPIO channel that the pressure switch is attached to.
- * @param compressorRelayChannel The relay channel that the compressor relay is attached to.
- */
-Compressor::Compressor(uint32_t pressureSwitchChannel, uint32_t compressorRelayChannel)
-	: m_task ("Compressor", (FUNCPTR)CompressorChecker)
-{
-	InitCompressor(GetDefaultDigitalModule(),
-			pressureSwitchChannel,
-			GetDefaultDigitalModule(),
-			compressorRelayChannel);
-}
-
-/**
- * Delete the Compressor object.
- * Delete the allocated resources for the compressor and kill the compressor task that is polling
- * the pressure switch.
- */
-Compressor::~Compressor()
-{
-	delete m_pressureSwitch;
-	delete m_relay;
-}
-
-/**
- * Operate the relay for the compressor.
- * Change the value of the relay output that is connected to the compressor motor.
- * This is only intended to be called by the internal polling thread.
- */
-void Compressor::SetRelayValue(Relay::Value relayValue)
-{
-	m_relay->Set(relayValue);
-}
-
-/**
- * Get the pressure switch value.
- * Read the pressure switch digital input.
- * 
- * @return The current state of the pressure switch.
- */
-uint32_t Compressor::GetPressureSwitchValue()
-{
-	return m_pressureSwitch->Get();
-}
-
-/**
- * Start the compressor.
- * This method will allow the polling loop to actually operate the compressor. The
- * is stopped by default and won't operate until starting it.
- */
-void Compressor::Start()
-{
-	m_enabled = true;
-}
-
-/**
- * Stop the compressor.
- * This method will stop the compressor from turning on.
- */
-void Compressor::Stop()
-{
-	m_enabled = false;
-}
-
-/**
- * Get the state of the enabled flag.
- * Return the state of the enabled flag for the compressor and pressure switch
- * combination.
- * 
- * @return The state of the compressor thread's enable flag.
- */
-bool Compressor::Enabled()
-{
-	return m_enabled;
-}
-
-void Compressor::UpdateTable() {
-	if (m_table != NULL) {
-		m_table->PutBoolean("Enabled", m_enabled);
-		m_table->PutBoolean("Pressure switch", GetPressureSwitchValue());
-	}
-}
-
-void Compressor::StartLiveWindowMode() {
-	
-}
-
-void Compressor::StopLiveWindowMode() {
-	
-}
-
-std::string Compressor::GetSmartDashboardType() {
-	return "Compressor";
-}
-
-void Compressor::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * Compressor::GetTable() {
-	return m_table;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Compressor.h b/aos/externals/WPILib/WPILib/Compressor.h
deleted file mode 100644
index cd68af4..0000000
--- a/aos/externals/WPILib/WPILib/Compressor.h
+++ /dev/null
@@ -1,60 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef COMPRESSOR_H_
-#define COMPRESSOR_H_
-
-#define COMPRESSOR_PRIORITY 90
-
-#include "SensorBase.h"
-#include "Relay.h"
-#include "Task.h"
-#include "LiveWindow/LiveWindowSendable.h"
-
-class DigitalInput;
-
-/**
- * Compressor object.
- * The Compressor object is designed to handle the operation of the compressor, pressure sensor and
- * relay for a FIRST robot pneumatics system. The Compressor object starts a task which runs in the
- * backround and periodically polls the pressure sensor and operates the relay that controls the
- * compressor.
- */ 
-class Compressor: public SensorBase, public LiveWindowSendable
-{
-public:
-	Compressor(uint32_t pressureSwitchChannel, uint32_t compressorRelayChannel);
-	Compressor(uint8_t pressureSwitchModuleNumber, uint32_t pressureSwitchChannel,
-			uint8_t compresssorRelayModuleNumber, uint32_t compressorRelayChannel);
-	~Compressor();
-
-	void Start();
-	void Stop();
-	bool Enabled();
-	uint32_t GetPressureSwitchValue();
-	void SetRelayValue(Relay::Value relayValue);
-	
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-
-private:
-	void InitCompressor(uint8_t pressureSwitchModuleNumber, uint32_t pressureSwitchChannel,
-				uint8_t compresssorRelayModuleNumber, uint32_t compressorRelayChannel);
-
-	DigitalInput *m_pressureSwitch;
-	Relay *m_relay;
-	bool m_enabled;
-	Task m_task;
-	
-	ITable *m_table;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Controller.h b/aos/externals/WPILib/WPILib/Controller.h
deleted file mode 100644
index 84f8857..0000000
--- a/aos/externals/WPILib/WPILib/Controller.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef CONTROLLER_H
-#define CONTROLLER_H
-
-#include <vxWorks.h>
-
-/**
- * Interface for Controllers
- * Common interface for controllers. Controllers run control loops, the most common
- * are PID controllers and their variants, but this includes anything that is controlling
- * an actuator in a separate thread.
- */
-class Controller
-{
-public:
-	virtual ~Controller() {};
-	
-	/**
-	 * Allows the control loop to run
-	 */
-	virtual void Enable() = 0;
-	
-	/** 
-	 * Stops the control loop from running until explicitly re-enabled by calling enable()
-	 */
-	virtual void Disable() = 0;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Counter.cpp b/aos/externals/WPILib/WPILib/Counter.cpp
deleted file mode 100644
index bf77743..0000000
--- a/aos/externals/WPILib/WPILib/Counter.cpp
+++ /dev/null
@@ -1,726 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Counter.h"
-#include "AnalogTrigger.h"
-#include "DigitalInput.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Resource.h"
-#include "WPIErrors.h"
-
-static Resource *counters = NULL;
-
-/**
- * Create an instance of a counter object.
- * This creates a ChipObject counter and initializes status variables appropriately
- */
-void Counter::InitCounter(Mode mode)
-{
-	m_table = NULL;
-	Resource::CreateResourceObject(&counters, tCounter::kNumSystems);
-	uint32_t index = counters->Allocate("Counter", this);
-	if (index == ~0ul)
-	{
-		return;
-	}
-	m_index = index;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_counter = tCounter::create(m_index, &localStatus);
-	m_counter->writeConfig_Mode(mode, &localStatus);
-	m_upSource = NULL;
-	m_downSource = NULL;
-	m_allocatedUpSource = false;
-	m_allocatedDownSource = false;
-	m_counter->writeTimerConfig_AverageSize(1, &localStatus);
-	wpi_setError(localStatus);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_Counter, index, mode);
-}
-
-/**
- * Create an instance of a counter where no sources are selected.
- * Then they all must be selected by calling functions to specify the upsource and the downsource
- * independently.
- */
-Counter::Counter() :
-	m_upSource(NULL),
-	m_downSource(NULL),
-	m_counter(NULL)
-{
-	InitCounter();
-}
-
-/**
- * Create an instance of a counter from a Digital Input.
- * This is used if an existing digital input is to be shared by multiple other objects such
- * as encoders.
- */
-Counter::Counter(DigitalSource *source) :
-	m_upSource(NULL),
-	m_downSource(NULL),
-	m_counter(NULL)
-{
-	InitCounter();
-	SetUpSource(source);
-	ClearDownSource();
-}
-
-Counter::Counter(DigitalSource &source) :
-	m_upSource(NULL),
-	m_downSource(NULL),
-	m_counter(NULL)
-{
-	InitCounter();
-	SetUpSource(&source);
-	ClearDownSource();
-}
-
-/**
- * Create an instance of a Counter object.
- * Create an up-Counter instance given a channel. The default digital module is assumed.
- */
-Counter::Counter(uint32_t channel) :
-	m_upSource(NULL),
-	m_downSource(NULL),
-	m_counter(NULL)
-{
-	InitCounter();
-	SetUpSource(channel);
-	ClearDownSource();
-}
-
-/**
- * Create an instance of a Counter object.
- * Create an instance of an up-Counter given a digital module and a channel.
- * @param moduleNumber The digital module (1 or 2).
- * @param channel The channel in the digital module
- */
-Counter::Counter(uint8_t moduleNumber, uint32_t channel) :
-	m_upSource(NULL),
-	m_downSource(NULL),
-	m_counter(NULL)
-{
-	InitCounter();
-	SetUpSource(moduleNumber, channel);
-	ClearDownSource();
-}
-
-/**
- * Create an instance of a Counter object.
- * Create an instance of a simple up-Counter given an analog trigger.
- * Use the trigger state output from the analog trigger.
- */
-Counter::Counter(AnalogTrigger *trigger) :
-	m_upSource(NULL),
-	m_downSource(NULL),
-	m_counter(NULL)
-{
-	InitCounter();
-	SetUpSource(trigger->CreateOutput(AnalogTriggerOutput::kState));
-	ClearDownSource();
-	m_allocatedUpSource = true;
-}
-
-Counter::Counter(AnalogTrigger &trigger) :
-	m_upSource(NULL),
-	m_downSource(NULL),
-	m_counter(NULL)
-{
-	InitCounter();
-	SetUpSource(trigger.CreateOutput(AnalogTriggerOutput::kState));
-	ClearDownSource();
-	m_allocatedUpSource = true;
-}
-
-Counter::Counter(EncodingType encodingType, DigitalSource *upSource, DigitalSource *downSource, bool inverted) :
-	m_upSource(NULL),
-	m_downSource(NULL),
-	m_counter(NULL)
-{
-	if (encodingType != k1X && encodingType != k2X)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "Counter only supports 1X and 2X quadrature decoding.");
-		return;
-	}
-	InitCounter(kExternalDirection);
-	SetUpSource(upSource);
-	SetDownSource(downSource);
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-
-	if (encodingType == k1X)
-	{
-		SetUpSourceEdge(true, false);
-		m_counter->writeTimerConfig_AverageSize(1, &localStatus);
-	}
-	else
-	{
-		SetUpSourceEdge(true, true);
-		m_counter->writeTimerConfig_AverageSize(2, &localStatus);
-	}
-
-	wpi_setError(localStatus);
-	SetDownSourceEdge(inverted, true);
-}
-
-/**
- * Delete the Counter object.
- */
-Counter::~Counter()
-{
-	SetUpdateWhenEmpty(true);
-	if (m_allocatedUpSource)
-	{
-		delete m_upSource;
-		m_upSource = NULL;
-	}
-	if (m_allocatedDownSource)
-	{
-		delete m_downSource;
-		m_downSource = NULL;
-	}
-	delete m_counter;
-	m_counter = NULL;
-	counters->Free(m_index, this);
-}
-
-/**
- * Set the up source for the counter as digital input channel and slot.
- *
- * @param moduleNumber The digital module (1 or 2).
- * @param channel The digital channel (1..14).
- */
-void Counter::SetUpSource(uint8_t moduleNumber, uint32_t channel)
-{
-	if (StatusIsFatal()) return;
-	SetUpSource(new DigitalInput(moduleNumber, channel));
-	m_allocatedUpSource = true;
-}
-
-/**
- * Set the upsource for the counter as a digital input channel.
- * The slot will be the default digital module slot.
- */
-void Counter::SetUpSource(uint32_t channel)
-{
-	if (StatusIsFatal()) return;
-	SetUpSource(GetDefaultDigitalModule(), channel);
-	m_allocatedUpSource = true;
-}
-
-/**
- * Set the up counting source to be an analog trigger.
- * @param analogTrigger The analog trigger object that is used for the Up Source
- * @param triggerType The analog trigger output that will trigger the counter.
- */
-void Counter::SetUpSource(AnalogTrigger *analogTrigger, AnalogTriggerOutput::Type triggerType)
-{
-	if (StatusIsFatal()) return;
-	SetUpSource(analogTrigger->CreateOutput(triggerType));
-	m_allocatedUpSource = true;
-}
-
-/**
- * Set the up counting source to be an analog trigger.
- * @param analogTrigger The analog trigger object that is used for the Up Source
- * @param triggerType The analog trigger output that will trigger the counter.
- */
-void Counter::SetUpSource(AnalogTrigger &analogTrigger, AnalogTriggerOutput::Type triggerType)
-{
-	SetUpSource(&analogTrigger, triggerType);
-}
-
-/**
- * Set the source object that causes the counter to count up.
- * Set the up counting DigitalSource.
- */
-void Counter::SetUpSource(DigitalSource *source)
-{
-	if (StatusIsFatal()) return;
-	if (m_allocatedUpSource)
-	{
-		delete m_upSource;
-		m_upSource = NULL;
-		m_allocatedUpSource = false;
-	}
-	m_upSource = source;
-	if (m_upSource->StatusIsFatal())
-	{
-		CloneError(m_upSource);
-	}
-	else
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		m_counter->writeConfig_UpSource_Module(source->GetModuleForRouting(), &localStatus);
-		m_counter->writeConfig_UpSource_Channel(source->GetChannelForRouting(), &localStatus);
-		m_counter->writeConfig_UpSource_AnalogTrigger(source->GetAnalogTriggerForRouting(), &localStatus);
-	
-		if(m_counter->readConfig_Mode(&localStatus) == kTwoPulse ||
-				m_counter->readConfig_Mode(&localStatus) == kExternalDirection)
-		{
-			SetUpSourceEdge(true, false);
-		}
-		m_counter->strobeReset(&localStatus);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Set the source object that causes the counter to count up.
- * Set the up counting DigitalSource.
- */
-void Counter::SetUpSource(DigitalSource &source)
-{
-	SetUpSource(&source);
-}
-
-/**
- * Set the edge sensitivity on an up counting source.
- * Set the up source to either detect rising edges or falling edges.
- */
-void Counter::SetUpSourceEdge(bool risingEdge, bool fallingEdge)
-{
-	if (StatusIsFatal()) return;
-	if (m_upSource == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "Must set non-NULL UpSource before setting UpSourceEdge");
-	}
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_counter->writeConfig_UpRisingEdge(risingEdge, &localStatus);
-	m_counter->writeConfig_UpFallingEdge(fallingEdge, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Disable the up counting source to the counter.
- */
-void Counter::ClearUpSource()
-{
-	if (StatusIsFatal()) return;
-	if (m_allocatedUpSource)
-	{
-		delete m_upSource;
-		m_upSource = NULL;
-		m_allocatedUpSource = false;
-	}
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	bool state = m_counter->readConfig_Enable(&localStatus);
-	m_counter->writeConfig_Enable(false, &localStatus);
-	m_counter->writeConfig_UpFallingEdge(false, &localStatus);
-	m_counter->writeConfig_UpRisingEdge(false, &localStatus);
-	// Index 0 of digital is always 0.
-	m_counter->writeConfig_UpSource_Channel(0, &localStatus);
-	m_counter->writeConfig_UpSource_AnalogTrigger(false, &localStatus);
-	m_counter->writeConfig_Enable(state, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Set the down counting source to be a digital input channel.
- * The slot will be set to the default digital module slot.
- */
-void Counter::SetDownSource(uint32_t channel)
-{
-	if (StatusIsFatal()) return;
-	SetDownSource(new DigitalInput(channel));
-	m_allocatedDownSource = true;
-}
-
-/**
- * Set the down counting source to be a digital input slot and channel.
- *
- * @param moduleNumber The digital module (1 or 2).
- * @param channel The digital channel (1..14).
- */
-void Counter::SetDownSource(uint8_t moduleNumber, uint32_t channel)
-{
-	if (StatusIsFatal()) return;
-	SetDownSource(new DigitalInput(moduleNumber, channel));
-	m_allocatedDownSource = true;
-}
-
-/**
- * Set the down counting source to be an analog trigger.
- * @param analogTrigger The analog trigger object that is used for the Down Source
- * @param triggerType The analog trigger output that will trigger the counter.
- */
-void Counter::SetDownSource(AnalogTrigger *analogTrigger, AnalogTriggerOutput::Type triggerType)
-{
-	if (StatusIsFatal()) return;
-	SetDownSource(analogTrigger->CreateOutput(triggerType));
-	m_allocatedDownSource = true;
-}
-
-/**
- * Set the down counting source to be an analog trigger.
- * @param analogTrigger The analog trigger object that is used for the Down Source
- * @param triggerType The analog trigger output that will trigger the counter.
- */
-void Counter::SetDownSource(AnalogTrigger &analogTrigger, AnalogTriggerOutput::Type triggerType)
-{
-	SetDownSource(&analogTrigger, triggerType);
-}
-
-/**
- * Set the source object that causes the counter to count down.
- * Set the down counting DigitalSource.
- */
-void Counter::SetDownSource(DigitalSource *source)
-{
-	if (StatusIsFatal()) return;
-	if (m_allocatedDownSource)
-	{
-		delete m_downSource;
-		m_downSource = NULL;
-		m_allocatedDownSource = false;
-	}
-	m_downSource = source;
-	if (m_downSource->StatusIsFatal())
-	{
-		CloneError(m_downSource);
-	}
-	else
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		unsigned char mode = m_counter->readConfig_Mode(&localStatus);
-		if (mode != kTwoPulse && mode != kExternalDirection)
-		{
-			wpi_setWPIErrorWithContext(ParameterOutOfRange, "Counter only supports DownSource in TwoPulse and ExternalDirection modes.");
-			return;
-		}
-		m_counter->writeConfig_DownSource_Module(source->GetModuleForRouting(), &localStatus);
-		m_counter->writeConfig_DownSource_Channel(source->GetChannelForRouting(), &localStatus);
-		m_counter->writeConfig_DownSource_AnalogTrigger(source->GetAnalogTriggerForRouting(), &localStatus);
-	
-		SetDownSourceEdge(true, false);
-		m_counter->strobeReset(&localStatus);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Set the source object that causes the counter to count down.
- * Set the down counting DigitalSource.
- */
-void Counter::SetDownSource(DigitalSource &source)
-{
-	SetDownSource(&source);
-}
-
-/**
- * Set the edge sensitivity on a down counting source.
- * Set the down source to either detect rising edges or falling edges.
- */
-void Counter::SetDownSourceEdge(bool risingEdge, bool fallingEdge)
-{
-	if (StatusIsFatal()) return;
-	if (m_downSource == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "Must set non-NULL DownSource before setting DownSourceEdge");
-	}
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_counter->writeConfig_DownRisingEdge(risingEdge, &localStatus);
-	m_counter->writeConfig_DownFallingEdge(fallingEdge, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Disable the down counting source to the counter.
- */
-void Counter::ClearDownSource()
-{
-	if (StatusIsFatal()) return;
-	if (m_allocatedDownSource)
-	{
-		delete m_downSource;
-		m_downSource = NULL;
-		m_allocatedDownSource = false;
-	}
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	bool state = m_counter->readConfig_Enable(&localStatus);
-	m_counter->writeConfig_Enable(false, &localStatus);
-	m_counter->writeConfig_DownFallingEdge(false, &localStatus);
-	m_counter->writeConfig_DownRisingEdge(false, &localStatus);
-	// Index 0 of digital is always 0.
-	m_counter->writeConfig_DownSource_Channel(0, &localStatus);
-	m_counter->writeConfig_DownSource_AnalogTrigger(false, &localStatus);
-	m_counter->writeConfig_Enable(state, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Set standard up / down counting mode on this counter.
- * Up and down counts are sourced independently from two inputs.
- */
-void Counter::SetUpDownCounterMode()
-{
-	if (StatusIsFatal()) return;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_counter->writeConfig_Mode(kTwoPulse, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Set external direction mode on this counter.
- * Counts are sourced on the Up counter input.
- * The Down counter input represents the direction to count.
- */
-void Counter::SetExternalDirectionMode()
-{
-	if (StatusIsFatal()) return;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_counter->writeConfig_Mode(kExternalDirection, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Set Semi-period mode on this counter.
- * Counts up on both rising and falling edges. 
- */
-void Counter::SetSemiPeriodMode(bool highSemiPeriod)
-{
-	if (StatusIsFatal()) return;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_counter->writeConfig_Mode(kSemiperiod, &localStatus);
-	m_counter->writeConfig_UpRisingEdge(highSemiPeriod, &localStatus);
-	SetUpdateWhenEmpty(false);
-	wpi_setError(localStatus);
-}
-
-/**
- * Configure the counter to count in up or down based on the length of the input pulse.
- * This mode is most useful for direction sensitive gear tooth sensors.
- * @param threshold The pulse length beyond which the counter counts the opposite direction.  Units are seconds.
- */
-void Counter::SetPulseLengthMode(float threshold)
-{
-	if (StatusIsFatal()) return;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_counter->writeConfig_Mode(kPulseLength, &localStatus);
-	m_counter->writeConfig_PulseLengthThreshold((uint32_t)(threshold * 1.0e6) * kSystemClockTicksPerMicrosecond, &localStatus);
-	wpi_setError(localStatus);
-}
-
-    
-    /**
-     * Get the Samples to Average which specifies the number of samples of the timer to 
-     * average when calculating the period. Perform averaging to account for 
-     * mechanical imperfections or as oversampling to increase resolution.
-     * @return SamplesToAverage The number of samples being averaged (from 1 to 127)
-     */
-    int Counter::GetSamplesToAverage()
-    {
-    	tRioStatusCode localStatus = NiFpga_Status_Success;
-        return m_counter->readTimerConfig_AverageSize(&localStatus);
-    	wpi_setError(localStatus);
-    }
-
-/**
- * Set the Samples to Average which specifies the number of samples of the timer to 
- * average when calculating the period. Perform averaging to account for 
- * mechanical imperfections or as oversampling to increase resolution.
- * @param samplesToAverage The number of samples to average from 1 to 127.
- */
-    void Counter::SetSamplesToAverage (int samplesToAverage) {
-    	tRioStatusCode localStatus = NiFpga_Status_Success;
-    	if (samplesToAverage < 1 || samplesToAverage > 127)
-    	{
-    		wpi_setWPIErrorWithContext(ParameterOutOfRange, "Average counter values must be between 1 and 127");
-    	}
-    	m_counter->writeTimerConfig_AverageSize(samplesToAverage, &localStatus);
-    	wpi_setError(localStatus);
-    }
-
-/**
- * Start the Counter counting.
- * This enables the counter and it starts accumulating counts from the associated
- * input channel. The counter value is not reset on starting, and still has the previous value.
- */
-void Counter::Start()
-{
-	if (StatusIsFatal()) return;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_counter->writeConfig_Enable(1, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Read the current counter value.
- * Read the value at this instant. It may still be running, so it reflects the current value. Next
- * time it is read, it might have a different value.
- */
-int32_t Counter::Get()
-{
-	if (StatusIsFatal()) return 0;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	int32_t value = m_counter->readOutput_Value(&localStatus);
-	wpi_setError(localStatus);
-	return value;
-}
-
-/**
- * Reset the Counter to zero.
- * Set the counter value to zero. This doesn't effect the running state of the counter, just sets
- * the current value to zero.
- */
-void Counter::Reset()
-{
-	if (StatusIsFatal()) return;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_counter->strobeReset(&localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Stop the Counter.
- * Stops the counting but doesn't effect the current value.
- */
-void Counter::Stop()
-{
-	if (StatusIsFatal()) return;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_counter->writeConfig_Enable(0, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/*
- * Get the Period of the most recent count.
- * Returns the time interval of the most recent count. This can be used for velocity calculations
- * to determine shaft speed.
- * @returns The period of the last two pulses in units of seconds.
- */
-double Counter::GetPeriod()
-{
-	if (StatusIsFatal()) return 0.0;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	tCounter::tTimerOutput output = m_counter->readTimerOutput(&localStatus);
-	double period;
-	if (output.Stalled)
-	{
-		// Return infinity
-		double zero = 0.0;
-		period = 1.0 / zero;
-	}
-	else
-	{
-		// output.Period is a fixed point number that counts by 2 (24 bits, 25 integer bits)
-		period = (double)(output.Period << 1) / (double)output.Count;
-	}
-	wpi_setError(localStatus);
-	return period * 1.0e-6;
-}
-
-/**
- * Set the maximum period where the device is still considered "moving".
- * Sets the maximum period where the device is considered moving. This value is used to determine
- * the "stopped" state of the counter using the GetStopped method.
- * @param maxPeriod The maximum period where the counted device is considered moving in
- * seconds.
- */
-void Counter::SetMaxPeriod(double maxPeriod)
-{
-	if (StatusIsFatal()) return;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_counter->writeTimerConfig_StallPeriod((uint32_t)(maxPeriod * 1.0e6), &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Select whether you want to continue updating the event timer output when there are no samples captured.
- * The output of the event timer has a buffer of periods that are averaged and posted to
- * a register on the FPGA.  When the timer detects that the event source has stopped
- * (based on the MaxPeriod) the buffer of samples to be averaged is emptied.  If you
- * enable the update when empty, you will be notified of the stopped source and the event
- * time will report 0 samples.  If you disable update when empty, the most recent average
- * will remain on the output until a new sample is acquired.  You will never see 0 samples
- * output (except when there have been no events since an FPGA reset) and you will likely not
- * see the stopped bit become true (since it is updated at the end of an average and there are
- * no samples to average).
- */
-void Counter::SetUpdateWhenEmpty(bool enabled)
-{
-	if (StatusIsFatal()) return;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_counter->writeTimerConfig_UpdateWhenEmpty(enabled, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Determine if the clock is stopped.
- * Determine if the clocked input is stopped based on the MaxPeriod value set using the
- * SetMaxPeriod method. If the clock exceeds the MaxPeriod, then the device (and counter) are
- * assumed to be stopped and it returns true.
- * @return Returns true if the most recent counter period exceeds the MaxPeriod value set by
- * SetMaxPeriod.
- */
-bool Counter::GetStopped()
-{
-	if (StatusIsFatal()) return false;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	return m_counter->readTimerOutput_Stalled(&localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * The last direction the counter value changed.
- * @return The last direction the counter value changed.
- */
-bool Counter::GetDirection()
-{
-	if (StatusIsFatal()) return false;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	bool value = m_counter->readOutput_Direction(&localStatus);
-	wpi_setError(localStatus);
-	return value;
-}
-
-/**
- * Set the Counter to return reversed sensing on the direction.
- * This allows counters to change the direction they are counting in the case of 1X and 2X
- * quadrature encoding only. Any other counter mode isn't supported.
- * @param reverseDirection true if the value counted should be negated.
- */
-void Counter::SetReverseDirection(bool reverseDirection)
-{
-	if (StatusIsFatal()) return;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	if (m_counter->readConfig_Mode(&localStatus) == kExternalDirection)
-	{
-		if (reverseDirection)
-			SetDownSourceEdge(true, true);
-		else
-			SetDownSourceEdge(false, true);
-	}
-	wpi_setError(localStatus);
-}
-
-
-void Counter::UpdateTable() {
-	if (m_table != NULL) {
-		m_table->PutNumber("Value", Get());
-	}
-}
-
-void Counter::StartLiveWindowMode() {
-	
-}
-
-void Counter::StopLiveWindowMode() {
-	
-}
-
-std::string Counter::GetSmartDashboardType() {
-	return "Counter";
-}
-
-void Counter::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * Counter::GetTable() {
-	return m_table;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Counter.h b/aos/externals/WPILib/WPILib/Counter.h
deleted file mode 100644
index fff1328..0000000
--- a/aos/externals/WPILib/WPILib/Counter.h
+++ /dev/null
@@ -1,96 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef CPPCOUNTER_H_
-#define CPPCOUNTER_H_
-
-#include "AnalogTriggerOutput.h"
-#include "CounterBase.h"
-#include "SensorBase.h"
-#include "LiveWindow/LiveWindowSendable.h"
-
-/**
- * Class for counting the number of ticks on a digital input channel.
- * This is a general purpose class for counting repetitive events. It can return the number
- * of counts, the period of the most recent cycle, and detect when the signal being counted
- * has stopped by supplying a maximum cycle time.
- */
-class Counter : public SensorBase, public CounterBase, public LiveWindowSendable
-{
-public:
-	typedef enum {kTwoPulse=0, kSemiperiod=1, kPulseLength=2, kExternalDirection=3} Mode;
-
-	Counter();
-	explicit Counter(uint32_t channel);
-	Counter(uint8_t moduleNumber, uint32_t channel);
-	explicit Counter(DigitalSource *source);
-	explicit Counter(DigitalSource &source);
-	explicit Counter(AnalogTrigger *trigger);
-	explicit Counter(AnalogTrigger &trigger);
-	Counter(EncodingType encodingType, DigitalSource *upSource, DigitalSource *downSource, bool inverted);
-	virtual ~Counter();
-
-	void SetUpSource(uint32_t channel);
-	void SetUpSource(uint8_t moduleNumber, uint32_t channel);
-	void SetUpSource(AnalogTrigger *analogTrigger, AnalogTriggerOutput::Type triggerType);
-	void SetUpSource(AnalogTrigger &analogTrigger, AnalogTriggerOutput::Type triggerType);
-	void SetUpSource(DigitalSource *source);
-	void SetUpSource(DigitalSource &source);
-	void SetUpSourceEdge(bool risingEdge, bool fallingEdge);
-	void ClearUpSource();
-
-	void SetDownSource(uint32_t channel);
-	void SetDownSource(uint8_t moduleNumber, uint32_t channel);
-	void SetDownSource(AnalogTrigger *analogTrigger, AnalogTriggerOutput::Type triggerType);
-	void SetDownSource(AnalogTrigger &analogTrigger, AnalogTriggerOutput::Type triggerType);
-	void SetDownSource(DigitalSource *source);
-	void SetDownSource(DigitalSource &source);
-	void SetDownSourceEdge(bool risingEdge, bool fallingEdge);
-	void ClearDownSource();
-
-	void SetUpDownCounterMode();
-	void SetExternalDirectionMode();
-	void SetSemiPeriodMode(bool highSemiPeriod);
-	void SetPulseLengthMode(float threshold);
-
-	void SetReverseDirection(bool reverseDirection);
-
-	// CounterBase interface
-	void Start();
-	int32_t Get();
-	void Reset();
-	void Stop();
-	double GetPeriod();
-	void SetMaxPeriod(double maxPeriod);
-	void SetUpdateWhenEmpty(bool enabled);
-	bool GetStopped();
-	bool GetDirection();
-	void SetSamplesToAverage(int samplesToAverage);
-	int GetSamplesToAverage();
-	uint32_t GetIndex() {return m_index;}
-	
-	
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	virtual std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-protected:
-	DigitalSource *m_upSource;		///< What makes the counter count up.
-	DigitalSource *m_downSource;	///< What makes the counter count down.
-	tCounter *m_counter;				///< The FPGA counter object.	
-private:
-	void InitCounter(Mode mode = kTwoPulse);
-
-	bool m_allocatedUpSource;		///< Was the upSource allocated locally?
-	bool m_allocatedDownSource;	///< Was the downSource allocated locally?
-	uint32_t m_index;					///< The index of this counter.
-	
-	ITable *m_table;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/CounterBase.h b/aos/externals/WPILib/WPILib/CounterBase.h
deleted file mode 100644
index 4354e42..0000000
--- a/aos/externals/WPILib/WPILib/CounterBase.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef CPPCOUNTER_BASE_H_
-#define CPPCOUNTER_BASE_H_
-
-/**
- * Interface for counting the number of ticks on a digital input channel.
- * Encoders, Gear tooth sensors, and counters should all subclass this so it can be used to
- * build more advanced classes for control and driving.
- */
-class CounterBase
-{
-public:
-	typedef enum {k1X, k2X, k4X} EncodingType;
-
-	virtual ~CounterBase() {}
-	virtual void Start() = 0;
-	virtual int32_t Get() = 0;
-	virtual void Reset() = 0;
-	virtual void Stop() = 0;
-	virtual double GetPeriod() = 0;
-	virtual void SetMaxPeriod(double maxPeriod) = 0;
-	virtual bool GetStopped() = 0;
-	virtual bool GetDirection() = 0;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Dashboard.cpp b/aos/externals/WPILib/WPILib/Dashboard.cpp
deleted file mode 100644
index b21cd7c..0000000
--- a/aos/externals/WPILib/WPILib/Dashboard.cpp
+++ /dev/null
@@ -1,399 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Dashboard.h"
-#include "DriverStation.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Synchronized.h"
-#include "WPIErrors.h"
-#include <strLib.h>
-
-const int32_t Dashboard::kMaxDashboardDataSize;
-
-/**
- * Dashboard contructor.
- * 
- * This is only called once when the DriverStation constructor is called.
- */
-Dashboard::Dashboard(SEM_ID statusDataSem)
-	: m_userStatusData (NULL)
-	, m_userStatusDataSize (0)
-	, m_localBuffer (NULL)
-	, m_localPrintBuffer (NULL)
-	, m_packPtr (NULL)
-	, m_printSemaphore (0)
-	, m_statusDataSemaphore (statusDataSem)
-{
-	m_userStatusData = new char[kMaxDashboardDataSize];
-	m_localBuffer = new char[kMaxDashboardDataSize];
-	m_localPrintBuffer = new char[kLocalPrintBufferSize];
-	m_localPrintBuffer[0] = 0;
-	m_packPtr = m_localBuffer;
-	m_printSemaphore = semMCreate(SEM_Q_PRIORITY | SEM_DELETE_SAFE | SEM_INVERSION_SAFE);
-}
-
-/**
- * Dashboard destructor.
- * 
- * Called only when the DriverStation class is destroyed.
- */
-Dashboard::~Dashboard()
-{
-	semDelete(m_printSemaphore);
-	m_packPtr = NULL;
-	delete [] m_localPrintBuffer;
-	m_localPrintBuffer = NULL;
-	delete [] m_localBuffer;
-	m_localBuffer = NULL;
-	delete [] m_userStatusData;
-	m_userStatusData = NULL;
-}
-
-/**
- * Pack a signed 8-bit int into the dashboard data structure.
- * @param value Data to be packed into the structure.
- */
-void Dashboard::AddI8(int8_t value)
-{
-	if (!ValidateAdd(sizeof(int8_t))) return;
-	memcpy(m_packPtr, (char*)&value, sizeof(value));
-	m_packPtr += sizeof(value);
-	AddedElement(kI8);
-}
-
-/**
- * Pack a signed 16-bit int into the dashboard data structure.
- * @param value Data to be packed into the structure.
- */
-void Dashboard::AddI16(int16_t value)
-{
-	if (!ValidateAdd(sizeof(int16_t))) return;
-	memcpy(m_packPtr, (char*)&value, sizeof(value));
-	m_packPtr += sizeof(value);
-	AddedElement(kI16);
-}
-
-/**
- * Pack a signed 32-bit int into the dashboard data structure.
- * @param value Data to be packed into the structure.
- */
-void Dashboard::AddI32(int32_t value)
-{
-	if (!ValidateAdd(sizeof(int32_t))) return;
-	memcpy(m_packPtr, (char*)&value, sizeof(value));
-	m_packPtr += sizeof(value);
-	AddedElement(kI32);
-}
-
-/**
- * Pack an unsigned 8-bit int into the dashboard data structure.
- * @param value Data to be packed into the structure.
- */
-void Dashboard::AddU8(uint8_t value)
-{
-	if (!ValidateAdd(sizeof(uint8_t))) return;
-	memcpy(m_packPtr, (char*)&value, sizeof(value));
-	m_packPtr += sizeof(value);
-	AddedElement(kU8);
-}
-
-/**
- * Pack an unsigned 16-bit int into the dashboard data structure.
- * @param value Data to be packed into the structure.
- */
-void Dashboard::AddU16(uint16_t value)
-{
-	if (!ValidateAdd(sizeof(uint16_t))) return;
-	memcpy(m_packPtr, (char*)&value, sizeof(value));
-	m_packPtr += sizeof(value);
-	AddedElement(kU16);
-}
-
-/**
- * Pack an unsigned 32-bit int into the dashboard data structure.
- * @param value Data to be packed into the structure.
- */
-void Dashboard::AddU32(uint32_t value)
-{
-	if (!ValidateAdd(sizeof(uint32_t))) return;
-	memcpy(m_packPtr, (char*)&value, sizeof(value));
-	m_packPtr += sizeof(value);
-	AddedElement(kU32);
-}
-
-/**
- * Pack a 32-bit floating point number into the dashboard data structure.
- * @param value Data to be packed into the structure.
- */
-void Dashboard::AddFloat(float value)
-{
-	if (!ValidateAdd(sizeof(float))) return;
-	memcpy(m_packPtr, (char*)&value, sizeof(value));
-	m_packPtr += sizeof(value);
-	AddedElement(kFloat);
-}
-
-/**
- * Pack a 64-bit floating point number into the dashboard data structure.
- * @param value Data to be packed into the structure.
- */
-void Dashboard::AddDouble(double value)
-{
-	if (!ValidateAdd(sizeof(double))) return;
-	memcpy(m_packPtr, (char*)&value, sizeof(value));
-	m_packPtr += sizeof(value);
-	AddedElement(kDouble);
-}
-
-/**
- * Pack a boolean into the dashboard data structure.
- * @param value Data to be packed into the structure.
- */
-void Dashboard::AddBoolean(bool value)
-{
-	if (!ValidateAdd(sizeof(char))) return;
-	*m_packPtr = value ? 1 : 0;
-	m_packPtr += sizeof(char);	
-	AddedElement(kBoolean);
-}
-
-/**
- * Pack a NULL-terminated string of 8-bit characters into the dashboard data structure.
- * @param value Data to be packed into the structure.
- */
-void Dashboard::AddString(char* value)
-{
-	AddString(value, strlen(value));
-}
-
-/**
- * Pack a string of 8-bit characters of specified length into the dashboard data structure.
- * @param value Data to be packed into the structure.
- * @param length The number of bytes in the string to pack.
- */
-void Dashboard::AddString(char* value, int32_t length)
-{
-	if (!ValidateAdd(length + sizeof(length))) return;
-	memcpy(m_packPtr, (char*)&length, sizeof(length));
-	m_packPtr += sizeof(length);
-	memcpy(m_packPtr, value, length);
-	m_packPtr += length;
-	AddedElement(kString);
-}
-
-/**
- * Start an array in the packed dashboard data structure.
- * 
- * After calling AddArray(), call the appropriate Add method for each element of the array.
- * Make sure you call the same add each time.  An array must contain elements of the same type.
- * You can use clusters inside of arrays to make each element of the array contain a structure of values.
- * You can also nest arrays inside of other arrays.
- * Every call to AddArray() must have a matching call to FinalizeArray().
- */
-void Dashboard::AddArray()
-{
-	if (!ValidateAdd(sizeof(int32_t))) return;
-	m_complexTypeStack.push(kArray);
-	m_arrayElementCount.push_back(0);
-	m_arraySizePtr.push_back((int32_t*)m_packPtr);
-	m_packPtr += sizeof(int32_t);
-}
-
-/**
- * Indicate the end of an array packed into the dashboard data structure.
- * 
- * After packing data into the array, call FinalizeArray().
- * Every call to AddArray() must have a matching call to FinalizeArray().
- */
-void Dashboard::FinalizeArray()
-{
-	if (m_complexTypeStack.top() != kArray)
-	{
-		wpi_setWPIError(MismatchedComplexTypeClose);
-		return;
-	}
-	m_complexTypeStack.pop();
-	*(m_arraySizePtr.back()) = m_arrayElementCount.back();
-	m_arraySizePtr.pop_back();
-	if (m_arrayElementCount.back() != 0)
-	{
-		m_expectedArrayElementType.pop_back();
-	}
-	m_arrayElementCount.pop_back();
-	AddedElement(kOther);
-}
-
-/**
- * Start a cluster in the packed dashboard data structure.
- * 
- * After calling AddCluster(), call the appropriate Add method for each element of the cluster.
- * You can use clusters inside of arrays to make each element of the array contain a structure of values.
- * Every call to AddCluster() must have a matching call to FinalizeCluster().
- */
-void Dashboard::AddCluster()
-{
-	m_complexTypeStack.push(kCluster);
-}
-
-/**
- * Indicate the end of a cluster packed into the dashboard data structure.
- * 
- * After packing data into the cluster, call FinalizeCluster().
- * Every call to AddCluster() must have a matching call to FinalizeCluster().
- */
-void Dashboard::FinalizeCluster()
-{
-	if (m_complexTypeStack.top() != kCluster)
-	{
-		wpi_setWPIError(MismatchedComplexTypeClose);
-		return;
-	}
-	m_complexTypeStack.pop();
-	AddedElement(kOther);
-}
-
-/**
- * Print a string to the UserData text on the Dashboard.
- * 
- * This will add text to the buffer to send to the dashboard.
- * You must call Finalize() periodically to actually send the buffer to the dashboard if you are not using the packed dashboard data.
- */
-void Dashboard::Printf(const char *writeFmt, ...)
-{
-	va_list args;
-	int32_t size;
-
-	// Check if the buffer has already been used for packing.
-	if (m_packPtr != m_localBuffer)
-	{
-		wpi_setWPIError(DashboardDataCollision);
-		return;
-	}
-	va_start (args, writeFmt);
-	{
-		Synchronized sync(m_printSemaphore);
-		vsnprintf(m_localPrintBuffer + strlen(m_localPrintBuffer), kLocalPrintBufferSize - strlen(m_localPrintBuffer), writeFmt, args);
-		size = strlen(m_localPrintBuffer);
-	}
-	if (size > kMaxDashboardDataSize)
-	{
-		wpi_setWPIError(DashboardDataOverflow);
-	}
-
-	va_end (args);
-}
-
-/**
- * Indicate that the packing is complete and commit the buffer to the DriverStation.
- * 
- * The packing of the dashboard packet is complete.
- * If you are not using the packed dashboard data, you can call Finalize() to commit the Printf() buffer and the error string buffer.
- * In effect, you are packing an empty structure.
- * Prepares a packet to go to the dashboard...
- * @return The total size of the data packed into the userData field of the status packet.
- */
-int32_t Dashboard::Finalize()
-{
-	if (!m_complexTypeStack.empty())
-	{
-		wpi_setWPIError(MismatchedComplexTypeClose);
-		return 0;
-	}
-
-	static bool reported = false;
-	if (!reported)
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_Dashboard, 0);
-		reported = true;
-	}
-
-	Synchronized sync(m_statusDataSemaphore);
-
-	// Sequence number
-	DriverStation::GetInstance()->IncrementUpdateNumber();
-
-	// Packed Dashboard Data
-	m_userStatusDataSize = m_packPtr - m_localBuffer;
-	memcpy(m_userStatusData, m_localBuffer, m_userStatusDataSize);
-	m_packPtr = m_localBuffer;
-
-	return m_userStatusDataSize;
-}
-
-/**
- * Called by the DriverStation class to retrieve buffers, sizes, etc. for writing
- *   to the NetworkCommunication task.
- * This function is called while holding the m_statusDataSemaphore.
- */
-void Dashboard::GetStatusBuffer(char **userStatusData, int32_t* userStatusDataSize)
-{
-	// User printed strings
-	if (m_localPrintBuffer[0] != 0)
-	{
-		// Sequence number
-		DriverStation::GetInstance()->IncrementUpdateNumber();
-
-		int32_t printSize;
-		Synchronized syncPrint(m_printSemaphore);
-		printSize = strlen(m_localPrintBuffer);
-		m_userStatusDataSize = printSize;
-		memcpy(m_userStatusData, m_localPrintBuffer, m_userStatusDataSize);
-		m_localPrintBuffer[0] = 0;
-	}
-
-	*userStatusData = m_userStatusData;
-	*userStatusDataSize = m_userStatusDataSize;
-}
-
-/**
- * Validate that the data being packed will fit in the buffer.
- */
-bool Dashboard::ValidateAdd(int32_t size)
-{
-	if ((m_packPtr - m_localBuffer) + size > kMaxDashboardDataSize)
-	{
-		wpi_setWPIError(DashboardDataOverflow);
-		return false;
-	}
-	// Make sure printf is not being used at the same time.
-	if (m_localPrintBuffer[0] != 0)
-	{
-		wpi_setWPIError(DashboardDataCollision);
-		return false;
-	}
-	return true;
-}
-
-/**
- * Check for consistent types when adding elements to an array and keep track of the number of elements in the array.
- */
-void Dashboard::AddedElement(Type type)
-{
-	if(IsArrayRoot())
-	{
-		if (m_arrayElementCount.back() == 0)
-		{
-			m_expectedArrayElementType.push_back(type);
-		}
-		else
-		{
-			if (type != m_expectedArrayElementType.back())
-			{
-				wpi_setWPIError(InconsistentArrayValueAdded);
-			}
-		}
-		m_arrayElementCount.back() = m_arrayElementCount.back() + 1;
-	}
-}
-
-/**
- * If the top of the type stack an array?
- */
-bool Dashboard::IsArrayRoot()
-{
-	return !m_complexTypeStack.empty() && m_complexTypeStack.top() == kArray;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Dashboard.h b/aos/externals/WPILib/WPILib/Dashboard.h
deleted file mode 100644
index bcd8f7b..0000000
--- a/aos/externals/WPILib/WPILib/Dashboard.h
+++ /dev/null
@@ -1,76 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __DASHBOARD_H__
-#define __DASHBOARD_H__
-
-#include "DashboardBase.h"
-#include "NetworkCommunication/FRCComm.h"
-#include <stack>
-#include <vector>
-#include <vxWorks.h>
-
-/**
- * Pack data into the "user data" field that gets sent to the dashboard laptop
- * via the driver station.
- */
-class Dashboard : public DashboardBase
-{
-public:
-	explicit Dashboard(SEM_ID statusDataSemaphore);
-	virtual ~Dashboard();
-
-	enum Type {kI8, kI16, kI32, kU8, kU16, kU32, kFloat, kDouble, kBoolean, kString, kOther};
-	enum ComplexType {kArray, kCluster};
-
-	void AddI8(int8_t value);
-	void AddI16(int16_t value);
-	void AddI32(int32_t value);
-	void AddU8(uint8_t value);
-	void AddU16(uint16_t value);
-	void AddU32(uint32_t value);
-	void AddFloat(float value);
-	void AddDouble(double value);
-	void AddBoolean(bool value);
-	void AddString(char* value);
-	void AddString(char* value, int32_t length);
-
-	void AddArray();
-	void FinalizeArray();
-	void AddCluster();
-	void FinalizeCluster();
-
-	void Printf(const char *writeFmt, ...);
-
-	int32_t Finalize();
-	void GetStatusBuffer(char** userStatusData, int32_t* userStatusDataSize);
-	void Flush() {}
-private:
-	static const int32_t kMaxDashboardDataSize = USER_STATUS_DATA_SIZE - sizeof(uint32_t) * 3 - sizeof(uint8_t); // 13 bytes needed for 3 size parameters and the sequence number
-  static const size_t kLocalPrintBufferSize = kMaxDashboardDataSize * 2;
-
-	// Usage Guidelines...
-	DISALLOW_COPY_AND_ASSIGN(Dashboard);
-
-	bool ValidateAdd(int32_t size);
-	void AddedElement(Type type);
-	bool IsArrayRoot();
-
-	char *m_userStatusData;
-	int32_t m_userStatusDataSize;
-	char *m_localBuffer;
-	char *m_localPrintBuffer;
-	char *m_packPtr;
-	std::vector<Type> m_expectedArrayElementType;
-	std::vector<int32_t> m_arrayElementCount;
-	std::vector<int32_t*> m_arraySizePtr;
-	std::stack<ComplexType> m_complexTypeStack;
-	SEM_ID m_printSemaphore;
-	SEM_ID m_statusDataSemaphore;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/DashboardBase.h b/aos/externals/WPILib/WPILib/DashboardBase.h
deleted file mode 100644
index 18a54d8..0000000
--- a/aos/externals/WPILib/WPILib/DashboardBase.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __DASHBOARDBASE_H__
-#define __DASHBOARDBASE_H__
-
-#include <vxWorks.h>
-#include "ErrorBase.h"
-
-class DashboardBase : public ErrorBase {
-public:
-	virtual void GetStatusBuffer(char** userStatusData, int32_t* userStatusDataSize) = 0;
-	virtual void Flush() = 0;
-	virtual ~DashboardBase() {}
-protected:
-	DashboardBase() {}
-private:
-	DISALLOW_COPY_AND_ASSIGN(DashboardBase);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/DigitalInput.cpp b/aos/externals/WPILib/WPILib/DigitalInput.cpp
deleted file mode 100644
index 0caaba7..0000000
--- a/aos/externals/WPILib/WPILib/DigitalInput.cpp
+++ /dev/null
@@ -1,141 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "DigitalInput.h"
-#include "DigitalModule.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Resource.h"
-#include "WPIErrors.h"
-
-/**
- * Create an instance of a DigitalInput.
- * Creates a digital input given a slot and channel. Common creation routine
- * for all constructors.
- */
-void DigitalInput::InitDigitalInput(uint8_t moduleNumber, uint32_t channel)
-{
-	m_table = NULL;
-	char buf[64];
-	if (!CheckDigitalModule(moduleNumber))
-	{
-		snprintf(buf, 64, "Digital Module %d", moduleNumber);
-		wpi_setWPIErrorWithContext(ModuleIndexOutOfRange, buf);
-		return;
-	}
-	if (!CheckDigitalChannel(channel))
-	{
-		snprintf(buf, 64, "Digital Channel %d", channel);
-		wpi_setWPIErrorWithContext(ChannelIndexOutOfRange, buf);
-		return;
-	}
-	m_channel = channel;
-	m_module = DigitalModule::GetInstance(moduleNumber);
-	m_module->AllocateDIO(channel, true);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_DigitalInput, channel, moduleNumber - 1);
-}
-
-/**
- * Create an instance of a Digital Input class.
- * Creates a digital input given a channel and uses the default module.
- *
- * @param channel The digital channel (1..14).
- */
-DigitalInput::DigitalInput(uint32_t channel)
-{
-	InitDigitalInput(GetDefaultDigitalModule(), channel);
-}
-
-/**
- * Create an instance of a Digital Input class.
- * Creates a digital input given an channel and module.
- *
- * @param moduleNumber The digital module (1 or 2).
- * @param channel The digital channel (1..14).
- */
-DigitalInput::DigitalInput(uint8_t moduleNumber, uint32_t channel)
-{
-	InitDigitalInput(moduleNumber, channel);
-}
-
-/**
- * Free resources associated with the Digital Input class.
- */
-DigitalInput::~DigitalInput()
-{
-	if (StatusIsFatal()) return;
-	m_module->FreeDIO(m_channel);
-}
-
-/*
- * Get the value from a digital input channel.
- * Retrieve the value of a single digital input channel from the FPGA.
- */
-uint32_t DigitalInput::Get()
-{
-	if (StatusIsFatal()) return 0;
-	return m_module->GetDIO(m_channel);
-}
-
-/**
- * @return The GPIO channel number that this object represents.
- */
-uint32_t DigitalInput::GetChannel()
-{
-	return m_channel;
-}
-
-/**
- * @return The value to be written to the channel field of a routing mux.
- */
-uint32_t DigitalInput::GetChannelForRouting()
-{
-	return DigitalModule::RemapDigitalChannel(GetChannel() - 1);
-}
-
-/**
- * @return The value to be written to the module field of a routing mux.
- */
-uint32_t DigitalInput::GetModuleForRouting()
-{
-	if (StatusIsFatal()) return 0;
-	return m_module->GetNumber() - 1;
-}
-
-/**
- * @return The value to be written to the analog trigger field of a routing mux.
- */
-bool DigitalInput::GetAnalogTriggerForRouting()
-{
-	return false;
-}
-
-void DigitalInput::UpdateTable() {
-	if (m_table != NULL) {
-		m_table->PutBoolean("Value", Get());
-	}
-}
-
-void DigitalInput::StartLiveWindowMode() {
-	
-}
-
-void DigitalInput::StopLiveWindowMode() {
-	
-}
-
-std::string DigitalInput::GetSmartDashboardType() {
-	return "DigitalInput";
-}
-
-void DigitalInput::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * DigitalInput::GetTable() {
-	return m_table;
-}
diff --git a/aos/externals/WPILib/WPILib/DigitalInput.h b/aos/externals/WPILib/WPILib/DigitalInput.h
deleted file mode 100644
index b9d77f7..0000000
--- a/aos/externals/WPILib/WPILib/DigitalInput.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef DIGITAL_INPUT_H_
-#define DIGITAL_INPUT_H_
-
-class DigitalModule;
-
-#include "DigitalSource.h"
-#include "LiveWindow/LiveWindowSendable.h"
-
-/**
- * Class to read a digital input.
- * This class will read digital inputs and return the current value on the channel. Other devices
- * such as encoders, gear tooth sensors, etc. that are implemented elsewhere will automatically
- * allocate digital inputs and outputs as required. This class is only for devices like switches
- * etc. that aren't implemented anywhere else.
- */
-class DigitalInput : public DigitalSource, public LiveWindowSendable {
-public:
-	explicit DigitalInput(uint32_t channel);
-	DigitalInput(uint8_t moduleNumber, uint32_t channel);
-	virtual ~DigitalInput();
-	uint32_t Get();
-	uint32_t GetChannel();
-
-	// Digital Source Interface
-	virtual uint32_t GetChannelForRouting();
-	virtual uint32_t GetModuleForRouting();
-	virtual bool GetAnalogTriggerForRouting();
-	
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-
-private:
-	void InitDigitalInput(uint8_t moduleNumber, uint32_t channel);
-	uint32_t m_channel;
-	DigitalModule *m_module;
-	bool m_lastValue;
-	
-	ITable *m_table;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/DigitalModule.cpp b/aos/externals/WPILib/WPILib/DigitalModule.cpp
deleted file mode 100644
index 61fa6f6..0000000
--- a/aos/externals/WPILib/WPILib/DigitalModule.cpp
+++ /dev/null
@@ -1,570 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "DigitalModule.h"
-#include "I2C.h"
-#include "PWM.h"
-#include "Resource.h"
-#include "Synchronized.h"
-#include "WPIErrors.h"
-#include <math.h>
-#include <taskLib.h>
-
-static Resource *DIOChannels = NULL;
-static Resource *DO_PWMGenerators[tDIO::kNumSystems] = {NULL};
-
-/**
- * Get an instance of an Digital Module.
- * Singleton digital module creation where a module is allocated on the first use
- * and the same module is returned on subsequent uses.
- *
- * @param moduleNumber The digital module to get (1 or 2).
- */
-DigitalModule* DigitalModule::GetInstance(uint8_t moduleNumber)
-{
-	if (CheckDigitalModule(moduleNumber))
-	{
-		return (DigitalModule *)GetModule(nLoadOut::kModuleType_Digital, moduleNumber);
-	}
-
-	// If this wasn't caught before now, make sure we say what's wrong before we crash
-	char buf[64];
-	snprintf(buf, 64, "Digital Module %d", moduleNumber);
-	wpi_setGlobalWPIErrorWithContext(ModuleIndexOutOfRange, buf);
-
-	return NULL;
-}
-
-/**
- * Create a new instance of an digital module.
- * Create an instance of the digital module object. Initialize all the parameters
- * to reasonable values on start.
- * Setting a global value on an digital module can be done only once unless subsequent
- * values are set the previously set value.
- * Digital modules are a singleton, so the constructor is never called outside of this class.
- *
- * @param moduleNumber The digital module to create (1 or 2).
- */
-DigitalModule::DigitalModule(uint8_t moduleNumber)
-	: Module(nLoadOut::kModuleType_Digital, moduleNumber)
-	, m_fpgaDIO (NULL)
-{
-	Resource::CreateResourceObject(&DIOChannels, tDIO::kNumSystems * kDigitalChannels);
-	Resource::CreateResourceObject(&DO_PWMGenerators[m_moduleNumber - 1], tDIO::kNumDO_PWMDutyCycleElements);
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_fpgaDIO = tDIO::create(m_moduleNumber - 1, &localStatus);
-	wpi_setError(localStatus);
-
-	// Make sure that the 9403 IONode has had a chance to initialize before continuing.
-	while(m_fpgaDIO->readLoopTiming(&localStatus) == 0) taskDelay(1);
-	
-	if (m_fpgaDIO->readLoopTiming(&localStatus) != kExpectedLoopTiming)
-	{
-		char err[128];
-		snprintf(err, sizeof(err), "DIO LoopTiming: %d, expecting: %lu\n", m_fpgaDIO->readLoopTiming(&localStatus), kExpectedLoopTiming);
-		wpi_setWPIErrorWithContext(LoopTimingError, err);
-	}
-	
-    //Calculate the length, in ms, of one DIO loop
-    double loopTime = m_fpgaDIO->readLoopTiming(&localStatus)/(kSystemClockTicksPerMicrosecond*1e3);
-    
-	m_fpgaDIO->writePWMConfig_Period((uint16_t) (PWM::kDefaultPwmPeriod/loopTime + .5), &localStatus);
-	m_fpgaDIO->writePWMConfig_MinHigh((uint16_t) ((PWM::kDefaultPwmCenter-PWM::kDefaultPwmStepsDown*loopTime)/loopTime + .5), &localStatus);
-
-	// Ensure that PWM output values are set to OFF
-	for (uint32_t pwm_index = 1; pwm_index <= kPwmChannels; pwm_index++)
-	{
-		SetPWM(pwm_index, PWM::kPwmDisabled);
-		SetPWMPeriodScale(pwm_index, 3); // Set all to 4x by default.
-	}
-
-	// Turn off all relay outputs.
-	m_fpgaDIO->writeSlowValue_RelayFwd(0, &localStatus);
-	m_fpgaDIO->writeSlowValue_RelayRev(0, &localStatus);
-	wpi_setError(localStatus);
-
-	// Create a semaphore to protect changes to the digital output values
-	m_digitalSemaphore = semMCreate(SEM_Q_PRIORITY | SEM_DELETE_SAFE | SEM_INVERSION_SAFE);
-
-	// Create a semaphore to protect changes to the relay values
-	m_relaySemaphore = semMCreate(SEM_Q_PRIORITY | SEM_DELETE_SAFE | SEM_INVERSION_SAFE);
-
-	// Create a semaphore to protect changes to the DO PWM config
-	m_doPwmSemaphore = semMCreate(SEM_Q_PRIORITY | SEM_DELETE_SAFE | SEM_INVERSION_SAFE);
-
-	AddToSingletonList();
-}
-
-DigitalModule::~DigitalModule()
-{
-	semDelete(m_doPwmSemaphore);
-	m_doPwmSemaphore = NULL;
-	semDelete(m_relaySemaphore);
-	m_relaySemaphore = NULL;
-	semDelete(m_digitalSemaphore);
-	m_digitalSemaphore = NULL;
-	delete m_fpgaDIO;
-}
-
-/**
- * Set a PWM channel to the desired value. The values range from 0 to 255 and the period is controlled
- * by the PWM Period and MinHigh registers.
- * 
- * @param channel The PWM channel to set.
- * @param value The PWM value to set.
- */
-void DigitalModule::SetPWM(uint32_t channel, uint8_t value)
-{
-	CheckPWMChannel(channel);
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_fpgaDIO->writePWMValue(channel - 1, value, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Get a value from a PWM channel. The values range from 0 to 255.
- * 
- * @param channel The PWM channel to read from.
- * @return The raw PWM value.
- */
-uint8_t DigitalModule::GetPWM(uint32_t channel)
-{
-	CheckPWMChannel(channel);
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	return m_fpgaDIO->readPWMValue(channel - 1, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Set how how often the PWM signal is squelched, thus scaling the period.
- * 
- * @param channel The PWM channel to configure.
- * @param squelchMask The 2-bit mask of outputs to squelch.
- */
-void DigitalModule::SetPWMPeriodScale(uint32_t channel, uint32_t squelchMask)
-{
-	CheckPWMChannel(channel);
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_fpgaDIO->writePWMPeriodScale(channel - 1, squelchMask, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Set the state of a relay.
- * Set the state of a relay output to be forward. Relays have two outputs and each is
- * independently set to 0v or 12v.
- */
-void DigitalModule::SetRelayForward(uint32_t channel, bool on)
-{
-  SetRelaysForward(1 << (channel - 1), on ? 0xFF : 0x00);
-}
-
-/**
- * Set the state of a relay.
- * Set the state of a relay output to be reverse. Relays have two outputs and each is
- * independently set to 0v or 12v.
- */
-void DigitalModule::SetRelayReverse(uint32_t channel, bool on)
-{
-  SetRelaysReverse(1 << (channel - 1), on ? 0xFF : 0x00);
-}
-
-/**
- * Set the state of multiple relays at the same time.
- * For both parameters, 0b100000000 is channel 1 and 0b00000001 is channel 8.
- * @param mask which relays to set
- * @param values what to set the relays to
- */
-void DigitalModule::SetRelaysForward(uint8_t mask, uint8_t values) {
-  tRioStatusCode localStatus = NiFpga_Status_Success;
-  {
-    Synchronized sync(m_relaySemaphore);
-    uint8_t current = m_fpgaDIO->readSlowValue_RelayFwd(&localStatus);
-    // Clearr all of the bits that we're messing with first.
-    current &= ~mask;
-    // Then set only the ones that are supposed to be set.
-    current |= (mask & values);
-    m_fpgaDIO->writeSlowValue_RelayFwd(current, &localStatus);
-  }
-  wpi_setError(localStatus);
-}
-
-/**
- * Set the state of multiple relays at the same time.
- * For both parameters, 0b100000000 is channel 1 and 0b00000001 is channel 8.
- * @param mask which relays to set
- * @param values what to set the relays to
- */
-void DigitalModule::SetRelaysReverse(uint8_t mask, uint8_t values) {
-  tRioStatusCode localStatus = NiFpga_Status_Success;
-  {
-    Synchronized sync(m_relaySemaphore);
-    uint8_t current = m_fpgaDIO->readSlowValue_RelayRev(&localStatus);
-    // Clearr all of the bits that we're messing with first.
-    current &= ~mask;
-    // Then set only the ones that are supposed to be set.
-    current |= (mask & values);
-    m_fpgaDIO->writeSlowValue_RelayRev(current, &localStatus);
-  }
-  wpi_setError(localStatus);
-}
-
-/**
- * Get the current state of the forward relay channel
- */
-bool DigitalModule::GetRelayForward(uint32_t channel)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint8_t forwardRelays = m_fpgaDIO->readSlowValue_RelayFwd(&localStatus);
-	wpi_setError(localStatus);
-	return (forwardRelays & (1 << (channel - 1))) != 0;
-}
-
-/**
- * Get the current state of all of the forward relay channels on this module.
- */
-uint8_t DigitalModule::GetRelayForward()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint8_t forwardRelays = m_fpgaDIO->readSlowValue_RelayFwd(&localStatus);
-	wpi_setError(localStatus);
-	return forwardRelays;
-}
-
-/**
- * Get the current state of the reverse relay channel
- */
-bool DigitalModule::GetRelayReverse(uint32_t channel)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint8_t reverseRelays = m_fpgaDIO->readSlowValue_RelayRev(&localStatus);
-	wpi_setError(localStatus);
-	return (reverseRelays & (1 << (channel - 1))) != 0;
-	
-}
-
-/**
- * Get the current state of all of the reverse relay channels on this module.
- */
-uint8_t DigitalModule::GetRelayReverse()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint8_t reverseRelays = m_fpgaDIO->readSlowValue_RelayRev(&localStatus);
-	wpi_setError(localStatus);
-	return reverseRelays;	
-}
-
-
-/**
- * Allocate Digital I/O channels.
- * Allocate channels so that they are not accidently reused. Also the direction is set at the
- * time of the allocation.
- * 
- * @param channel The Digital I/O channel
- * @param input If true open as input; if false open as output
- * @return Was successfully allocated
- */
-bool DigitalModule::AllocateDIO(uint32_t channel, bool input)
-{
-	char buf[64];
-	snprintf(buf, 64, "DIO %d (Module %d)", channel, m_moduleNumber);
-	if (DIOChannels->Allocate(kDigitalChannels * (m_moduleNumber - 1) +
-                            channel - 1, buf, this) == ~0ul) return false;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	{
-		Synchronized sync(m_digitalSemaphore);
-		uint32_t bitToSet = 1 << (RemapDigitalChannel(channel - 1));
-		uint32_t outputEnable = m_fpgaDIO->readOutputEnable(&localStatus);
-		uint32_t outputEnableValue;
-		if (input)
-		{
-			outputEnableValue = outputEnable & (~bitToSet); // clear the bit for read
-		}
-		else
-		{
-			outputEnableValue = outputEnable | bitToSet; // set the bit for write
-		}
-		m_fpgaDIO->writeOutputEnable(outputEnableValue, &localStatus);
-	}
-	wpi_setError(localStatus);
-	return true;
-}
-
-/**
- * Free the resource associated with a digital I/O channel.
- * 
- * @param channel The Digital I/O channel to free
- */
-void DigitalModule::FreeDIO(uint32_t channel)
-{
-	DIOChannels->Free(kDigitalChannels * (m_moduleNumber - 1) + channel - 1,
-                    this);
-}
-
-/**
- * Write multiple digital I/O bits to the FPGA at the same time.
- * For both parameters, 0x0001 is channel 16 and 0x8000 is channel 1.
- *
- * @param mask Which bits to modify.
- * @param values What to set all of the bits in mask to.
- */
-void DigitalModule::SetDIOs(uint16_t mask, uint16_t values) {
-  tRioStatusCode localStatus = NiFpga_Status_Success;
-  {
-    Synchronized sync(m_digitalSemaphore);
-    uint16_t current = m_fpgaDIO->readDO(&localStatus);
-    // Clear all of the bits that we're messing with first.
-    current &= ~mask;
-    // Then set only the ones that are supposed to be set.
-    current |= (mask & values);
-    m_fpgaDIO->writeDO(current, &localStatus);
-  }
-  wpi_setError(localStatus);
-}
-
-/**
- * Write a digital I/O bit to the FPGA.
- * Set a single value on a digital I/O channel.
- * 
- * @param channel The Digital I/O channel
- * @param value The state to set the digital channel (if it is configured as an output)
- */
-void DigitalModule::SetDIO(uint32_t channel, bool value)
-{
-  SetDIOs(1 << RemapDigitalChannel(channel - 1), value ? 0xFFFF : 0x0000);
-}
-
-/**
- * Read a digital I/O bit from the FPGA.
- * Get a single value from a digital I/O channel.
- * 
- * @param channel The digital I/O channel
- * @return The state of the specified channel
- */
-bool DigitalModule::GetDIO(uint32_t channel)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t currentDIO = m_fpgaDIO->readDI(&localStatus);
-	wpi_setError(localStatus);
-
-	//Shift 00000001 over channel-1 places.
-	//AND it against the currentDIO
-	//if it == 0, then return false
-	//else return true
-	return ((currentDIO >> RemapDigitalChannel(channel - 1)) & 1) != 0;
-}
-
-/**
- * Read the state of all the Digital I/O lines from the FPGA
- * These are not remapped to logical order.  They are still in hardware order.
- */
-uint16_t DigitalModule::GetDIO()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t currentDIO = m_fpgaDIO->readDI(&localStatus);
-	wpi_setError(localStatus);
-	return currentDIO;
-}
-
-/**
- * Read the direction of a the Digital I/O lines
- * A 1 bit means output and a 0 bit means input.
- * 
- * @param channel The digital I/O channel
- * @return The direction of the specified channel
- */
-bool DigitalModule::GetDIODirection(uint32_t channel)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t currentOutputEnable = m_fpgaDIO->readOutputEnable(&localStatus);
-	wpi_setError(localStatus);
-	
-	//Shift 00000001 over channel-1 places.
-	//AND it against the currentOutputEnable
-	//if it == 0, then return false
-	//else return true
-	return ((currentOutputEnable >> RemapDigitalChannel(channel - 1)) & 1) != 0;
-}
-
-/**
- * Read the direction of all the Digital I/O lines from the FPGA
- * A 1 bit means output and a 0 bit means input.
- * These are not remapped to logical order.  They are still in hardware order.
- */
-uint16_t DigitalModule::GetDIODirection()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t currentOutputEnable = m_fpgaDIO->readOutputEnable(&localStatus);
-	wpi_setError(localStatus);
-	return currentOutputEnable;
-}
-
-/**
- * Generate a single pulse.
- * Write a pulse to the specified digital output channel. There can only be a single pulse going at any time.
- * 
- * @param channel The Digital Output channel that the pulse should be output on
- * @param pulseLength The active length of the pulse (in seconds)
- */
-void DigitalModule::Pulse(uint32_t channel, float pulseLength)
-{
-	uint16_t mask = 1 << RemapDigitalChannel(channel - 1);
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_fpgaDIO->writePulseLength((uint8_t)(1.0e9 * pulseLength / (m_fpgaDIO->readLoopTiming(&localStatus) * 25)), &localStatus);
-	m_fpgaDIO->writePulse(mask, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Check a DIO line to see if it is currently generating a pulse.
- * 
- * @return A pulse is in progress
- */
-bool DigitalModule::IsPulsing(uint32_t channel)
-{
-	uint16_t mask = 1 << RemapDigitalChannel(channel - 1);
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint16_t pulseRegister = m_fpgaDIO->readPulse(&localStatus);
-	wpi_setError(localStatus);
-	return (pulseRegister & mask) != 0;
-}
-
-/**
- * Check if any DIO line is currently generating a pulse.
- * 
- * @return A pulse on some line is in progress
- */
-bool DigitalModule::IsPulsing()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint16_t pulseRegister = m_fpgaDIO->readPulse(&localStatus);
-	wpi_setError(localStatus);
-	return pulseRegister != 0;
-}
-
-/**
- * Allocate a DO PWM Generator.
- * Allocate PWM generators so that they are not accidentally reused.
- * 
- * @return PWM Generator refnum
- */
-uint32_t DigitalModule::AllocateDO_PWM()
-{
-	char buf[64];
-	snprintf(buf, 64, "DO_PWM (Module: %d)", m_moduleNumber);
-	return DO_PWMGenerators[(m_moduleNumber - 1)]->Allocate(buf, this);
-}
-
-/**
- * Free the resource associated with a DO PWM generator.
- * 
- * @param pwmGenerator The pwmGen to free that was allocated with AllocateDO_PWM()
- */
-void DigitalModule::FreeDO_PWM(uint32_t pwmGenerator)
-{
-	if (pwmGenerator == ~0ul) return;
-	DO_PWMGenerators[(m_moduleNumber - 1)]->Free(pwmGenerator, this);
-}
-
-/**
- * Change the frequency of the DO PWM generator.
- * 
- * The valid range is from 0.6 Hz to 19 kHz.  The frequency resolution is logarithmic.
- * 
- * @param rate The frequency to output all digital output PWM signals on this module.
- */
-void DigitalModule::SetDO_PWMRate(float rate)
-{
-	// Currently rounding in the log rate domain... heavy weight toward picking a higher freq.
-	// TODO: Round in the linear rate domain.
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint8_t pwmPeriodPower = (uint8_t)(log(1.0 / (m_fpgaDIO->readLoopTiming(&localStatus) * 0.25E-6 * rate))/log(2.0) + 0.5);
-	m_fpgaDIO->writeDO_PWMConfig_PeriodPower(pwmPeriodPower, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Configure which DO channel the PWM signal is output on
- * 
- * @param pwmGenerator The generator index reserved by AllocateDO_PWM()
- * @param channel The Digital Output channel to output on
- */
-void DigitalModule::SetDO_PWMOutputChannel(uint32_t pwmGenerator, uint32_t channel)
-{
-	if (pwmGenerator == ~0ul) return;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	switch(pwmGenerator)
-	{
-	case 0:
-		m_fpgaDIO->writeDO_PWMConfig_OutputSelect_0(RemapDigitalChannel(channel - 1), &localStatus);
-		break;
-	case 1:
-		m_fpgaDIO->writeDO_PWMConfig_OutputSelect_1(RemapDigitalChannel(channel - 1), &localStatus);
-		break;
-	case 2:
-		m_fpgaDIO->writeDO_PWMConfig_OutputSelect_2(RemapDigitalChannel(channel - 1), &localStatus);
-		break;
-	case 3:
-		m_fpgaDIO->writeDO_PWMConfig_OutputSelect_3(RemapDigitalChannel(channel - 1), &localStatus);
-		break;
-	}
-	wpi_setError(localStatus);
-}
-
-/**
- * Configure the duty-cycle of the PWM generator
- * 
- * @param pwmGenerator The generator index reserved by AllocateDO_PWM()
- * @param dutyCycle The percent duty cycle to output [0..1].
- */
-void DigitalModule::SetDO_PWMDutyCycle(uint32_t pwmGenerator, float dutyCycle)
-{
-	if (pwmGenerator == ~0ul) return;
-	if (dutyCycle > 1.0) dutyCycle = 1.0;
-	if (dutyCycle < 0.0) dutyCycle = 0.0;
-	float rawDutyCycle = 256.0 * dutyCycle;
-	if (rawDutyCycle > 255.5) rawDutyCycle = 255.5;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	{
-		Synchronized sync(m_doPwmSemaphore);
-		uint8_t pwmPeriodPower = m_fpgaDIO->readDO_PWMConfig_PeriodPower(&localStatus);
-		if (pwmPeriodPower < 4)
-		{
-			// The resolution of the duty cycle drops close to the highest frequencies.
-			rawDutyCycle = rawDutyCycle / pow(2.0, 4 - pwmPeriodPower);
-		}
-		m_fpgaDIO->writeDO_PWMDutyCycle(pwmGenerator, (uint8_t)rawDutyCycle, &localStatus);
-	}
-	wpi_setError(localStatus);
-}
-
-/**
- * Get the loop timing of the Digital Module
- * 
- * @return The loop time
- */
-uint16_t DigitalModule::GetLoopTiming()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint16_t timing = m_fpgaDIO->readLoopTiming(&localStatus);
-	wpi_setError(localStatus);
-	
-	return timing;
-}
-
-/**
- * Return a pointer to an I2C object for this digital module
- * The caller is responsible for deleting the pointer.
- * 
- * @param address The address of the device on the I2C bus
- * @return A pointer to an I2C object to talk to the device at address
- */
-I2C* DigitalModule::GetI2C(uint32_t address)
-{
-	return new I2C(this, address);
-}
-
-
diff --git a/aos/externals/WPILib/WPILib/DigitalModule.h b/aos/externals/WPILib/WPILib/DigitalModule.h
deleted file mode 100644
index 86189b9..0000000
--- a/aos/externals/WPILib/WPILib/DigitalModule.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef DIGITAL_MODULE_H_
-#define DIGITAL_MODULE_H_
-
-#include "Module.h"
-#include "ChipObject.h"
-
-class I2C;
-
-const uint32_t kExpectedLoopTiming = 260;
-
-class DigitalModule: public Module
-{
-	friend class I2C;
-	friend class Module;
-
-protected:
-	explicit DigitalModule(uint8_t moduleNumber);
-	virtual ~DigitalModule();
-
-public:
-	void SetPWM(uint32_t channel, uint8_t value);
-	uint8_t GetPWM(uint32_t channel);
-	void SetPWMPeriodScale(uint32_t channel, uint32_t squelchMask);
-	void SetRelayForward(uint32_t channel, bool on);
-	void SetRelayReverse(uint32_t channel, bool on);
-  void SetRelaysForward(uint8_t mask, uint8_t values);
-  void SetRelaysReverse(uint8_t mask, uint8_t values);
-	bool GetRelayForward(uint32_t channel);
-	uint8_t GetRelayForward();
-	bool GetRelayReverse(uint32_t channel);
-	uint8_t GetRelayReverse();
-	bool AllocateDIO(uint32_t channel, bool input);
-	void FreeDIO(uint32_t channel);
-  void SetDIOs(uint16_t mask, uint16_t values);
-	void SetDIO(uint32_t channel, bool value);
-	bool GetDIO(uint32_t channel);
-	uint16_t GetDIO();
-	bool GetDIODirection(uint32_t channel);
-	uint16_t GetDIODirection();
-	void Pulse(uint32_t channel, float pulseLength);
-	bool IsPulsing(uint32_t channel);
-	bool IsPulsing();
-	uint32_t AllocateDO_PWM();
-	void FreeDO_PWM(uint32_t pwmGenerator);
-	void SetDO_PWMRate(float rate);
-	void SetDO_PWMDutyCycle(uint32_t pwmGenerator, float dutyCycle);
-	void SetDO_PWMOutputChannel(uint32_t pwmGenerator, uint32_t channel);
-	uint16_t GetLoopTiming();
-
-	I2C* GetI2C(uint32_t address);
-
-	static DigitalModule* GetInstance(uint8_t moduleNumber);
-	static uint8_t RemapDigitalChannel(uint32_t channel) { return 15 - channel; }; // TODO: Need channel validation
-	static uint8_t UnmapDigitalChannel(uint32_t channel) { return 15 - channel; }; // TODO: Need channel validation
-
-private:
-	SEM_ID m_digitalSemaphore;
-	SEM_ID m_relaySemaphore;
-	SEM_ID m_doPwmSemaphore;
-	tDIO *m_fpgaDIO;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/DigitalOutput.cpp b/aos/externals/WPILib/WPILib/DigitalOutput.cpp
deleted file mode 100644
index 06b9c48..0000000
--- a/aos/externals/WPILib/WPILib/DigitalOutput.cpp
+++ /dev/null
@@ -1,314 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "DigitalOutput.h"
-#include "DigitalModule.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Resource.h"
-#include "WPIErrors.h"
-
-extern Resource *interruptsResource;
-
-/**
- * Create an instance of a DigitalOutput.
- * Creates a digital output given a slot and channel. Common creation routine
- * for all constructors.
- */
-void DigitalOutput::InitDigitalOutput(uint8_t moduleNumber, uint32_t channel)
-{
-	m_table = NULL;
-	char buf[64];
-	if (!CheckDigitalModule(moduleNumber))
-	{
-		snprintf(buf, 64, "Digital Module %d", moduleNumber);
-		wpi_setWPIErrorWithContext(ModuleIndexOutOfRange, buf);
-		return;
-	}
-	if (!CheckDigitalChannel(channel))
-	{
-		snprintf(buf, 64, "Digital Channel %d", channel);
-		wpi_setWPIErrorWithContext(ChannelIndexOutOfRange, buf);
-		return;
-	}
-	m_channel = channel;
-	m_pwmGenerator = ~0ul;
-	m_module = DigitalModule::GetInstance(moduleNumber);
-	m_module->AllocateDIO(m_channel, false);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_DigitalOutput, channel, moduleNumber - 1);
-}
-
-/**
- * Create an instance of a digital output.
- * Create a digital output given a channel. The default module is used.
- *
- * @param channel The digital channel (1..14).
- */
-DigitalOutput::DigitalOutput(uint32_t channel)
-{
-	InitDigitalOutput(GetDefaultDigitalModule(), channel);
-}
-
-/**
- * Create an instance of a digital output.
- * Create an instance of a digital output given a module number and channel.
- *
- * @param moduleNumber The digital module (1 or 2).
- * @param channel The digital channel (1..14).
- */
-DigitalOutput::DigitalOutput(uint8_t moduleNumber, uint32_t channel)
-{
-	InitDigitalOutput(moduleNumber, channel);
-}
-
-/**
- * Free the resources associated with a digital output.
- */
-DigitalOutput::~DigitalOutput()
-{
-	if (StatusIsFatal()) return;
-	// Disable the PWM in case it was running.
-	DisablePWM();
-	m_module->FreeDIO(m_channel);
-}
-
-/**
- * Set the value of a digital output.
- * Set the value of a digital output to either one (true) or zero (false).
- */
-void DigitalOutput::Set(uint32_t value)
-{
-	if (StatusIsFatal()) return;
-	m_module->SetDIO(m_channel, value);
-}
-
-/**
- * @return The GPIO channel number that this object represents.
- */
-uint32_t DigitalOutput::GetChannel()
-{
-	return m_channel;
-}
-
-/**
- * Output a single pulse on the digital output line.
- * Send a single pulse on the digital output line where the pulse diration is specified in seconds.
- * Maximum pulse length is 0.0016 seconds.
- * @param length The pulselength in seconds
- */
-void DigitalOutput::Pulse(float length)
-{
-	if (StatusIsFatal()) return;
-	m_module->Pulse(m_channel, length);
-}
-
-/**
- * Determine if the pulse is still going.
- * Determine if a previously started pulse is still going.
- */
-bool DigitalOutput::IsPulsing()
-{
-	if (StatusIsFatal()) return false;
-	return m_module->IsPulsing(m_channel);
-}
-
-/**
- * Change the PWM frequency of the PWM output on a Digital Output line.
- * 
- * The valid range is from 0.6 Hz to 19 kHz.  The frequency resolution is logarithmic.
- * 
- * There is only one PWM frequency per digital module.
- * 
- * @param rate The frequency to output all digital output PWM signals on this module.
- */
-void DigitalOutput::SetPWMRate(float rate)
-{
-	if (StatusIsFatal()) return;
-	m_module->SetDO_PWMRate(rate);
-}
-
-/**
- * Enable a PWM Output on this line.
- * 
- * Allocate one of the 4 DO PWM generator resources from this module.
- * 
- * Supply the initial duty-cycle to output so as to avoid a glitch when first starting.
- * 
- * The resolution of the duty cycle is 8-bit for low frequencies (1kHz or less)
- * but is reduced the higher the frequency of the PWM signal is.
- * 
- * @param initialDutyCycle The duty-cycle to start generating. [0..1]
- */
-void DigitalOutput::EnablePWM(float initialDutyCycle)
-{
-	if (StatusIsFatal()) return;
-	if (m_pwmGenerator != ~0ul) return;
-	m_pwmGenerator = m_module->AllocateDO_PWM();
-	m_module->SetDO_PWMDutyCycle(m_pwmGenerator, initialDutyCycle);
-	m_module->SetDO_PWMOutputChannel(m_pwmGenerator, m_channel);
-}
-
-/**
- * Change this line from a PWM output back to a static Digital Output line.
- * 
- * Free up one of the 4 DO PWM generator resources that were in use.
- */
-void DigitalOutput::DisablePWM()
-{
-	if (StatusIsFatal()) return;
-	// Disable the output by routing to a dead bit.
-	m_module->SetDO_PWMOutputChannel(m_pwmGenerator, kDigitalChannels);
-	m_module->FreeDO_PWM(m_pwmGenerator);
-	m_pwmGenerator = ~0ul;
-}
-
-/**
- * Change the duty-cycle that is being generated on the line.
- * 
- * The resolution of the duty cycle is 8-bit for low frequencies (1kHz or less)
- * but is reduced the higher the frequency of the PWM signal is.
- * 
- * @param dutyCycle The duty-cycle to change to. [0..1]
- */
-void DigitalOutput::UpdateDutyCycle(float dutyCycle)
-{
-	if (StatusIsFatal()) return;
-	m_module->SetDO_PWMDutyCycle(m_pwmGenerator, dutyCycle);
-}
-
-/**
- * @return The value to be written to the channel field of a routing mux.
- */
-uint32_t DigitalOutput::GetChannelForRouting()
-{
-	return DigitalModule::RemapDigitalChannel(GetChannel() - 1);
-}
-
-/**
- * @return The value to be written to the module field of a routing mux.
- */
-uint32_t DigitalOutput::GetModuleForRouting()
-{
-	if (StatusIsFatal()) return 0;
-	return m_module->GetNumber() - 1;
-}
-
-/**
- * @return The value to be written to the analog trigger field of a routing mux.
- */
-bool DigitalOutput::GetAnalogTriggerForRouting()
-{
-	return false;
-}
-
-/**
- * Request interrupts asynchronously on this digital output.
- * @param handler The address of the interrupt handler function of type tInterruptHandler that
- * will be called whenever there is an interrupt on the digitial output port.
- * Request interrupts in synchronus mode where the user program interrupt handler will be
- * called when an interrupt occurs.
- * The default is interrupt on rising edges only.
- */
-void DigitalOutput::RequestInterrupts(tInterruptHandler handler, void *param)
-{
-	if (StatusIsFatal()) return;
-	uint32_t index = interruptsResource->Allocate("Sync Interrupt", this);
-	if (index == ~0ul)
-	{
-		return;
-	}
-	m_interruptIndex = index;
-
-	// Creates a manager too
-	AllocateInterrupts(false);
-
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_interrupt->writeConfig_WaitForAck(false, &localStatus);
-	m_interrupt->writeConfig_Source_AnalogTrigger(GetAnalogTriggerForRouting(), &localStatus);
-	m_interrupt->writeConfig_Source_Channel(GetChannelForRouting(), &localStatus);
-	m_interrupt->writeConfig_Source_Module(GetModuleForRouting(), &localStatus);
-	SetUpSourceEdge(true, false);
-
-	m_manager->registerHandler(handler, param, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Request interrupts synchronously on this digital output.
- * Request interrupts in synchronus mode where the user program will have to explicitly
- * wait for the interrupt to occur.
- * The default is interrupt on rising edges only.
- */
-void DigitalOutput::RequestInterrupts()
-{
-	if (StatusIsFatal()) return;
-	uint32_t index = interruptsResource->Allocate("Sync Interrupt", this);
-	if (index == ~0ul)
-	{
-		return;
-	}
-	m_interruptIndex = index;
-
-	AllocateInterrupts(true);
-
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_interrupt->writeConfig_Source_AnalogTrigger(GetAnalogTriggerForRouting(), &localStatus);
-	m_interrupt->writeConfig_Source_Channel(GetChannelForRouting(), &localStatus);
-	m_interrupt->writeConfig_Source_Module(GetModuleForRouting(), &localStatus);
-	SetUpSourceEdge(true, false);
-	wpi_setError(localStatus);
-}
-
-void DigitalOutput::SetUpSourceEdge(bool risingEdge, bool fallingEdge)
-{
-	if (StatusIsFatal()) return;
-	if (m_interrupt == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "You must call RequestInterrupts before SetUpSourceEdge");
-		return;
-	}
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	if (m_interrupt != NULL)
-	{
-		m_interrupt->writeConfig_RisingEdge(risingEdge, &localStatus);
-		m_interrupt->writeConfig_FallingEdge(fallingEdge, &localStatus);
-	}
-	wpi_setError(localStatus);
-}
-
-void DigitalOutput::ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew) {
-	Set(value.b);
-}
-
-void DigitalOutput::UpdateTable() {
-}
-
-void DigitalOutput::StartLiveWindowMode() {
-	if (m_table != NULL) {
-		m_table->AddTableListener("Value", this, true);
-	}
-}
-
-void DigitalOutput::StopLiveWindowMode() {
-	if (m_table != NULL) {
-		m_table->RemoveTableListener(this);
-	}
-}
-
-std::string DigitalOutput::GetSmartDashboardType() {
-	return "Digital Output";
-}
-
-void DigitalOutput::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * DigitalOutput::GetTable() {
-	return m_table;
-}
-
-
diff --git a/aos/externals/WPILib/WPILib/DigitalOutput.h b/aos/externals/WPILib/WPILib/DigitalOutput.h
deleted file mode 100644
index 749027d..0000000
--- a/aos/externals/WPILib/WPILib/DigitalOutput.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef DIGITAL_OUTPUT_H_
-#define DIGITAL_OUTPUT_H_
-
-#include "DigitalSource.h"
-#include "LiveWindow/LiveWindowSendable.h"
-#include "tables/ITableListener.h"
-
-class DigitalModule;
-
-/**
- * Class to write to digital outputs.
- * Write values to the digital output channels. Other devices implemented elsewhere will allocate
- * channels automatically so for those devices it shouldn't be done here.
- */
-class DigitalOutput : public DigitalSource, public ITableListener, public LiveWindowSendable
-{
-public:
-	explicit DigitalOutput(uint32_t channel);
-	DigitalOutput(uint8_t moduleNumber, uint32_t channel);
-	virtual ~DigitalOutput();
-	void Set(uint32_t value);
-	uint32_t GetChannel();
-	void Pulse(float length);
-	bool IsPulsing();
-	void SetPWMRate(float rate);
-	void EnablePWM(float initialDutyCycle);
-	void DisablePWM();
-	void UpdateDutyCycle(float dutyCycle);
-
-	// Digital Source Interface
-	virtual uint32_t GetChannelForRouting();
-	virtual uint32_t GetModuleForRouting();
-	virtual bool GetAnalogTriggerForRouting();
-	virtual void RequestInterrupts(tInterruptHandler handler, void *param);
-	virtual void RequestInterrupts();
-
-	void SetUpSourceEdge(bool risingEdge, bool fallingEdge);
-	
-	virtual void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-
-private:
-	void InitDigitalOutput(uint8_t moduleNumber, uint32_t channel);
-
-	uint32_t m_channel;
-	uint32_t m_pwmGenerator;
-	DigitalModule *m_module;
-	
-	ITable *m_table;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/DigitalSource.cpp b/aos/externals/WPILib/WPILib/DigitalSource.cpp
deleted file mode 100644
index 00244e4..0000000
--- a/aos/externals/WPILib/WPILib/DigitalSource.cpp
+++ /dev/null
@@ -1,104 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "DigitalSource.h"
-#include "Resource.h"
-#include "WPIErrors.h"
-
-Resource *interruptsResource = NULL;
-
-DigitalSource::DigitalSource()
-{
-	Resource::CreateResourceObject(&interruptsResource, tInterrupt::kNumSystems);
-}
-
-/**
- * DigitalSource destructor.
- */
-DigitalSource::~DigitalSource()
-{
-	if (m_manager != NULL)
-	{
-		delete m_manager;
-		delete m_interrupt;
-		interruptsResource->Free(m_interruptIndex, this);
-	}
-}
-
-/**
- * Request interrupts asynchronously on this digital input.
- * @param handler The address of the interrupt handler function of type tInterruptHandler that
- * will be called whenever there is an interrupt on the digitial input port.
- * Request interrupts in synchronus mode where the user program interrupt handler will be
- * called when an interrupt occurs.
- * The default is interrupt on rising edges only.
- */
-void DigitalSource::RequestInterrupts(tInterruptHandler handler, void *param)
-{
-	if (StatusIsFatal()) return;
-	uint32_t index = interruptsResource->Allocate("Async Interrupt", this);
-	if (index == ~0ul)
-	{
-		return;
-	}
-	m_interruptIndex = index;
-
-	 // Creates a manager too
-	AllocateInterrupts(false);
-
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_interrupt->writeConfig_WaitForAck(false, &localStatus);
-	m_interrupt->writeConfig_Source_AnalogTrigger(GetAnalogTriggerForRouting(), &localStatus);
-	m_interrupt->writeConfig_Source_Channel(GetChannelForRouting(), &localStatus);
-	m_interrupt->writeConfig_Source_Module(GetModuleForRouting(), &localStatus);
-	SetUpSourceEdge(true, false);
-
-	m_manager->registerHandler(handler, param, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Request interrupts synchronously on this digital input.
- * Request interrupts in synchronus mode where the user program will have to explicitly
- * wait for the interrupt to occur.
- * The default is interrupt on rising edges only.
- */
-void DigitalSource::RequestInterrupts()
-{
-	if (StatusIsFatal()) return;
-	uint32_t index = interruptsResource->Allocate("Sync Interrupt", this);
-	if (index == ~0ul)
-	{
-		return;
-	}
-	m_interruptIndex = index;
-
-	AllocateInterrupts(true);
-
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_interrupt->writeConfig_Source_AnalogTrigger(GetAnalogTriggerForRouting(), &localStatus);
-	m_interrupt->writeConfig_Source_Channel(GetChannelForRouting(), &localStatus);
-	m_interrupt->writeConfig_Source_Module(GetModuleForRouting(), &localStatus);
-	SetUpSourceEdge(true, false);
-	wpi_setError(localStatus);
-}
-
-void DigitalSource::SetUpSourceEdge(bool risingEdge, bool fallingEdge)
-{
-	if (StatusIsFatal()) return;
-	if (m_interrupt == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "You must call RequestInterrupts before SetUpSourceEdge");
-		return;
-	}
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	if (m_interrupt != NULL)
-	{
-		m_interrupt->writeConfig_RisingEdge(risingEdge, &localStatus);
-		m_interrupt->writeConfig_FallingEdge(fallingEdge, &localStatus);
-	}
-	wpi_setError(localStatus);
-}
diff --git a/aos/externals/WPILib/WPILib/DigitalSource.h b/aos/externals/WPILib/WPILib/DigitalSource.h
deleted file mode 100644
index d5d7e7d..0000000
--- a/aos/externals/WPILib/WPILib/DigitalSource.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef DIGITAL_SOURCE_H
-#define DIGITAL_SOURCE_H
-
-#include "InterruptableSensorBase.h"
-
-/**
- * DigitalSource Interface.
- * The DigitalSource represents all the possible inputs for a counter or a quadrature encoder. The source may be
- * either a digital input or an analog input. If the caller just provides a channel, then a digital input will be
- * constructed and freed when finished for the source. The source can either be a digital input or analog trigger
- * but not both.
- */
-class DigitalSource: public InterruptableSensorBase
-{
-public:
- DigitalSource();
-	virtual ~DigitalSource();
-	virtual uint32_t GetChannelForRouting() = 0;
-	virtual uint32_t GetModuleForRouting() = 0;
-	virtual bool GetAnalogTriggerForRouting() = 0;
-	virtual void RequestInterrupts(tInterruptHandler handler, void *param);
-	virtual void RequestInterrupts();
-	void SetUpSourceEdge(bool risingEdge, bool fallingEdge);
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/DoubleSolenoid.cpp b/aos/externals/WPILib/WPILib/DoubleSolenoid.cpp
deleted file mode 100644
index 19ef5b7..0000000
--- a/aos/externals/WPILib/WPILib/DoubleSolenoid.cpp
+++ /dev/null
@@ -1,183 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "DoubleSolenoid.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "WPIErrors.h"
-#include <string.h>
-#include "LiveWindow/LiveWindow.h"
-
-/**
- * Common function to implement constructor behavior.
- */
-void DoubleSolenoid::InitSolenoid()
-{
-	m_table = NULL;
-	char buf[64];
-	if (!CheckSolenoidModule(m_moduleNumber))
-	{
-		snprintf(buf, 64, "Solenoid Module %d", m_moduleNumber);
-		wpi_setWPIErrorWithContext(ModuleIndexOutOfRange, buf);
-		return;
-	}
-	if (!CheckSolenoidChannel(m_forwardChannel))
-	{
-		snprintf(buf, 64, "Solenoid Channel %d", m_forwardChannel);
-		wpi_setWPIErrorWithContext(ChannelIndexOutOfRange, buf);
-		return;
-	}
-	if (!CheckSolenoidChannel(m_reverseChannel))
-	{
-		snprintf(buf, 64, "Solenoid Channel %d", m_reverseChannel);
-		wpi_setWPIErrorWithContext(ChannelIndexOutOfRange, buf);
-		return;
-	}
-	Resource::CreateResourceObject(&m_allocated, tSolenoid::kNumDO7_0Elements * kSolenoidChannels);
-
-	snprintf(buf, 64, "Solenoid %d (Module %d)", m_forwardChannel, m_moduleNumber);
-	if (m_allocated->Allocate((m_moduleNumber - 1) * kSolenoidChannels +
-                            m_forwardChannel - 1, buf, this) == ~0ul)
-	{
-		return;
-	}
-	snprintf(buf, 64, "Solenoid %d (Module %d)", m_reverseChannel, m_moduleNumber);
-	if (m_allocated->Allocate((m_moduleNumber - 1) * kSolenoidChannels +
-                            m_reverseChannel - 1, buf, this) == ~0ul)
-	{
-		return;
-	}
-	m_forwardMask = 1 << (m_forwardChannel - 1);
-	m_reverseMask = 1 << (m_reverseChannel - 1);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_Solenoid, m_forwardChannel, m_moduleNumber - 1);
-	nUsageReporting::report(nUsageReporting::kResourceType_Solenoid, m_reverseChannel, m_moduleNumber - 1);
-	LiveWindow::GetInstance()->AddActuator("DoubleSolenoid", m_moduleNumber, m_forwardChannel, this);
-}
-
-/**
- * Constructor.
- * 
- * @param forwardChannel The forward channel on the module to control.
- * @param reverseChannel The reverse channel on the module to control.
- */
-DoubleSolenoid::DoubleSolenoid(uint32_t forwardChannel, uint32_t reverseChannel)
-	: SolenoidBase (GetDefaultSolenoidModule())
-	, m_forwardChannel (forwardChannel)
-	, m_reverseChannel (reverseChannel)
-{
-	InitSolenoid();
-}
-
-/**
- * Constructor.
- * 
- * @param moduleNumber The solenoid module (1 or 2).
- * @param forwardChannel The forward channel on the module to control.
- * @param reverseChannel The reverse channel on the module to control.
- */
-DoubleSolenoid::DoubleSolenoid(uint8_t moduleNumber, uint32_t forwardChannel, uint32_t reverseChannel)
-	: SolenoidBase (moduleNumber)
-	, m_forwardChannel (forwardChannel)
-	, m_reverseChannel (reverseChannel)
-{
-	InitSolenoid();
-}
-
-/**
- * Destructor.
- */
-DoubleSolenoid::~DoubleSolenoid()
-{
-	m_allocated->Free((m_moduleNumber - 1) * kSolenoidChannels +
-                    m_forwardChannel - 1, this);
-	m_allocated->Free((m_moduleNumber - 1) * kSolenoidChannels +
-                    m_reverseChannel - 1, this);
-}
-
-/**
- * Set the value of a solenoid.
- * 
- * @param value Move the solenoid to forward, reverse, or don't move it.
- */
-void DoubleSolenoid::Set(Value value)
-{
-	if (StatusIsFatal()) return;
-	uint8_t rawValue = 0x00;
-
-	switch(value)
-	{
-	case kOff:
-		rawValue = 0x00;
-		break;
-	case kForward:
-		rawValue = m_forwardMask;
-		break;
-	case kReverse:
-		rawValue = m_reverseMask;
-		break;
-	}
-
-	SolenoidBase::Set(rawValue, m_forwardMask | m_reverseMask);
-}
-
-/**
- * Read the current value of the solenoid.
- * 
- * @return The current value of the solenoid.
- */
-DoubleSolenoid::Value DoubleSolenoid::Get()
-{
-	if (StatusIsFatal()) return kOff;
-	uint8_t value = GetAll();
-
-	if (value & m_forwardMask) return kForward;
-	if (value & m_reverseMask) return kReverse;
-	return kOff;
-}
-
-void DoubleSolenoid::ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew) {
-	Value lvalue = kOff;
-	std::string *val = (std::string *)value.ptr;
-	if (*val == "Forward")
-		lvalue = kForward;
-	else if (*val == "Reverse")
-		lvalue = kReverse;
-	Set(lvalue);
-}
-
-void DoubleSolenoid::UpdateTable() {
-	if (m_table != NULL) {
-		m_table->PutString("Value", (Get() == kForward ? "Forward" : (Get() == kReverse ? "Reverse" : "Off")));
-	}
-}
-
-void DoubleSolenoid::StartLiveWindowMode() {
-	Set(kOff);
-	if (m_table != NULL) {
-		m_table->AddTableListener("Value", this, true);
-	}
-}
-
-void DoubleSolenoid::StopLiveWindowMode() {
-	Set(kOff);
-	if (m_table != NULL) {
-		m_table->RemoveTableListener(this);
-	}
-}
-
-std::string DoubleSolenoid::GetSmartDashboardType() {
-	return "Double Solenoid";
-}
-
-void DoubleSolenoid::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * DoubleSolenoid::GetTable() {
-	return m_table;
-}
-
diff --git a/aos/externals/WPILib/WPILib/DoubleSolenoid.h b/aos/externals/WPILib/WPILib/DoubleSolenoid.h
deleted file mode 100644
index 09c8c90..0000000
--- a/aos/externals/WPILib/WPILib/DoubleSolenoid.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef DOUBLE_SOLENOID_H_
-#define DOUBLE_SOLENOID_H_
-
-#include "SolenoidBase.h"
-#include "LiveWindow/LiveWindowSendable.h"
-#include "tables/ITableListener.h"
-
-
-/**
- * DoubleSolenoid class for running 2 channels of high voltage Digital Output
- * (9472 module).
- * 
- * The DoubleSolenoid class is typically used for pneumatics solenoids that
- * have two positions controlled by two separate channels.
- */
-class DoubleSolenoid : public SolenoidBase, public LiveWindowSendable, public ITableListener {
-public:
-	typedef enum {kOff, kForward, kReverse} Value;
-
-	explicit DoubleSolenoid(uint32_t forwardChannel, uint32_t reverseChannel);
-	DoubleSolenoid(uint8_t moduleNumber, uint32_t forwardChannel, uint32_t reverseChannel);
-	virtual ~DoubleSolenoid();
-	virtual void Set(Value value);
-	virtual Value Get();
-	
-	void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-
-private:
-	void InitSolenoid();
-
-	uint32_t m_forwardChannel; ///< The forward channel on the module to control.
-	uint32_t m_reverseChannel; ///< The reverse channel on the module to control.
-	uint8_t m_forwardMask; ///< The mask for the forward channel.
-	uint8_t m_reverseMask; ///< The mask for the reverse channel.
-	
-	ITable *m_table;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/DriverStation.cpp b/aos/externals/WPILib/WPILib/DriverStation.cpp
deleted file mode 100644
index e90beae..0000000
--- a/aos/externals/WPILib/WPILib/DriverStation.cpp
+++ /dev/null
@@ -1,548 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "DriverStation.h"
-#include "AnalogChannel.h"
-#include "Synchronized.h"
-#include "Timer.h"
-#include "NetworkCommunication/FRCComm.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "MotorSafetyHelper.h"
-#include "Utility.h"
-#include "WPIErrors.h"
-#include <strLib.h>
-
-const uint32_t DriverStation::kBatteryModuleNumber;
-const uint32_t DriverStation::kBatteryChannel;
-const uint32_t DriverStation::kJoystickPorts;
-const uint32_t DriverStation::kJoystickAxes;
-DriverStation* DriverStation::m_instance = NULL;
-ReentrantSemaphore DriverStation::m_instanceSemaphore;
-uint8_t DriverStation::m_updateNumber = 0;
-
-/**
- * DriverStation contructor.
- * 
- * This is only called once the first time GetInstance() is called
- */
-DriverStation::DriverStation()
-	: m_controlData (NULL)
-	, m_digitalOut (0)
-	, m_batteryChannel (NULL)
-	, m_statusDataSemaphore (semMCreate(SEM_Q_PRIORITY | SEM_DELETE_SAFE | SEM_INVERSION_SAFE))
-	, m_task ("DriverStation", (FUNCPTR)DriverStation::InitTask)
-	, m_dashboardHigh(m_statusDataSemaphore)
-	, m_dashboardLow(m_statusDataSemaphore)
-	, m_dashboardInUseHigh(&m_dashboardHigh)
-	, m_dashboardInUseLow(&m_dashboardLow)
-	, m_newControlData(0)
-	, m_packetDataAvailableSem (0)
-	, m_enhancedIO()
-	, m_waitForDataSem(0)
-	, m_approxMatchTimeOffset(-1.0)
-	, m_userInDisabled(false)
-	, m_userInAutonomous(false)
-	, m_userInTeleop(false)
-	, m_userInTest(false)
-{
-	// Create a new semaphore
-	m_packetDataAvailableSem = semBCreate (SEM_Q_PRIORITY, SEM_EMPTY);
-	m_newControlData = semBCreate (SEM_Q_FIFO, SEM_EMPTY);
-
-	// Register that semaphore with the network communications task.
-	// It will signal when new packet data is available. 
-	setNewDataSem(m_packetDataAvailableSem);
-
-	m_waitForDataSem = semBCreate (SEM_Q_PRIORITY, SEM_EMPTY);
-
-	m_controlData = new FRCCommonControlData();
-
-	m_batteryChannel = new AnalogChannel(kBatteryModuleNumber, kBatteryChannel);
-
-	AddToSingletonList();
-
-	if (!m_task.Start((int32_t)this))
-	{
-		wpi_setWPIError(DriverStationTaskError);
-	}
-}
-
-DriverStation::~DriverStation()
-{
-  Synchronized sync(m_instanceSemaphore);
-	m_task.Stop();
-	semDelete(m_statusDataSemaphore);
-	delete m_batteryChannel;
-	delete m_controlData;
-	m_instance = NULL;
-	semDelete(m_waitForDataSem);
-	// Unregister our semaphore.
-	setNewDataSem(0);
-	semDelete(m_packetDataAvailableSem);
-  semDelete(m_newControlData);
-}
-
-/**
- * Gets a read lock on all of the data. Be careful with this; holding one of
- * these locks prevents any new data from being read.
- */
-RWLock::Locker DriverStation::GetDataReadLock() {
-  return RWLock::Locker(&m_dataLock, false);
-}
-
-void DriverStation::InitTask(DriverStation *ds)
-{
-	ds->Run();
-}
-
-/**
- * Gets called in a separate task to deal with actually reading any new data.
- */
-void DriverStation::Run()
-{
-	int period = 0;
-	while (true)
-	{
-		semTake(m_packetDataAvailableSem, WAIT_FOREVER);
-		SetData();
-		m_enhancedIO.UpdateData();
-		GetData();
-		semFlush(m_waitForDataSem);
-		if (++period >= 4)
-		{
-			MotorSafetyHelper::CheckMotors();
-			period = 0;
-		}
-    {
-      RWLock::Locker userStateLocker(&m_userStateLock, false);
-		  if (m_userInDisabled)
-			  FRC_NetworkCommunication_observeUserProgramDisabled();
-		  if (m_userInAutonomous)
-			  FRC_NetworkCommunication_observeUserProgramAutonomous();
-      if (m_userInTeleop)
-        FRC_NetworkCommunication_observeUserProgramTeleop();
-      if (m_userInTest)
-        FRC_NetworkCommunication_observeUserProgramTest();
-    }
-	}
-}
-
-/**
- * Return a pointer to the singleton DriverStation.
- */
-DriverStation* DriverStation::GetInstance()
-{
-  Synchronized sync(m_instanceSemaphore);
-	if (m_instance == NULL)
-	{
-		m_instance = new DriverStation();
-	}
-	return m_instance;
-}
-
-/**
- * Copy data from the DS task for the rest of the code to use.
- */
-void DriverStation::GetData()
-{
-	static bool lastEnabled = false;
-  {
-    // Only have to lock right around reading the data because we're the only
-    // task that ever modifies it.
-    RWLock::Locker write_lock(&m_dataLock, true);
-	  // Have to const_cast away the volatile and the const.
-	  getCommonControlData(const_cast<FRCCommonControlData *>(m_controlData), WAIT_FOREVER);
-  }
-	if (!lastEnabled && IsEnabled()) 
-	{
-		// If starting teleop, assume that autonomous just took up 10 seconds
-		if (IsAutonomous())
-			m_approxMatchTimeOffset = Timer::GetFPGATimestamp();
-		else
-			m_approxMatchTimeOffset = Timer::GetFPGATimestamp() - 10.0;
-	}
-	else if (lastEnabled && !IsEnabled())
-	{
-		m_approxMatchTimeOffset = -1.0;
-	}
-	lastEnabled = IsEnabled();
-	semGive(m_newControlData);
-}
-
-/**
- * Copy status data to the DS task from the user.
- */
-void DriverStation::SetData()
-{
-	char *userStatusDataHigh;
-	int32_t userStatusDataHighSize;
-	char *userStatusDataLow;
-	int32_t userStatusDataLowSize;
-
-	Synchronized sync(m_statusDataSemaphore);
-
-	m_dashboardInUseHigh->GetStatusBuffer(&userStatusDataHigh, &userStatusDataHighSize);
-	m_dashboardInUseLow->GetStatusBuffer(&userStatusDataLow, &userStatusDataLowSize);
-	setStatusData(GetBatteryVoltage(), m_digitalOut, m_updateNumber,
-		userStatusDataHigh, userStatusDataHighSize, userStatusDataLow, userStatusDataLowSize, WAIT_FOREVER);
-	
-	m_dashboardInUseHigh->Flush();
-	m_dashboardInUseLow->Flush();
-}
-
-/**
- * Read the battery voltage from the specified AnalogChannel.
- * 
- * This accessor assumes that the battery voltage is being measured
- * through the voltage divider on an analog breakout.
- * 
- * @return The battery voltage.
- */
-float DriverStation::GetBatteryVoltage()
-{
-	if (m_batteryChannel == NULL)
-		wpi_setWPIError(NullParameter);
-
-	// The Analog bumper has a voltage divider on the battery source.
-	// Vbatt *--/\/\/\--* Vsample *--/\/\/\--* Gnd
-	//         680 Ohms            1000 Ohms
-	return m_batteryChannel->GetAverageVoltage() * (1680.0 / 1000.0);
-}
-
-/**
- * Get the value of the axis on a joystick.
- * This depends on the mapping of the joystick connected to the specified port.
- * 
- * @param stick The joystick to read.
- * @param axis The analog axis value to read from the joystick.
- * @return The value of the axis on the joystick.
- */
-float DriverStation::GetStickAxis(uint32_t stick, uint32_t axis)
-{
-	if (axis < 1 || axis > kJoystickAxes)
-	{
-		wpi_setWPIError(BadJoystickAxis);
-		return 0.0;
-	}
-
-	int8_t value;
-	switch (stick)
-	{
-		case 1:
-			value = m_controlData->stick0Axes[axis-1];
-			break;
-		case 2:
-			value = m_controlData->stick1Axes[axis-1];
-			break;
-		case 3:
-			value = m_controlData->stick2Axes[axis-1];
-			break;
-		case 4:
-			value = m_controlData->stick3Axes[axis-1];
-			break;
-		default:
-			wpi_setWPIError(BadJoystickIndex);
-			return 0.0;
-	}
-	
-	float result;
-	if (value < 0)
-		result = ((float) value) / 128.0;
-	else
-		result = ((float) value) / 127.0;
-	wpi_assert(result <= 1.0 && result >= -1.0);
-	if (result > 1.0)
-		result = 1.0;
-	else if (result < -1.0)
-		result = -1.0;
-	return result;
-}
-
-/**
- * The state of the buttons on the joystick.
- * 12 buttons (4 msb are unused) from the joystick.
- * 
- * @param stick The joystick to read.
- * @return The state of the buttons on the joystick.
- */
-short DriverStation::GetStickButtons(uint32_t stick)
-{
-	if (stick < 1 || stick > 4)
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "stick must be between 1 and 4");
-
-	switch (stick)
-	{
-	case 1:
-		return m_controlData->stick0Buttons;
-	case 2:
-		return m_controlData->stick1Buttons;
-	case 3:
-		return m_controlData->stick2Buttons;
-	case 4:
-		return m_controlData->stick3Buttons;
-	}
-	return 0;
-}
-
-// 5V divided by 10 bits
-#define kDSAnalogInScaling ((float)(5.0 / 1023.0))
-
-/**
- * Get an analog voltage from the Driver Station.
- * The analog values are returned as voltage values for the Driver Station analog inputs.
- * These inputs are typically used for advanced operator interfaces consisting of potentiometers
- * or resistor networks representing values on a rotary switch.
- * 
- * @param channel The analog input channel on the driver station to read from. Valid range is 1 - 4.
- * @return The analog voltage on the input.
- */
-float DriverStation::GetAnalogIn(uint32_t channel)
-{
-	if (channel < 1 || channel > 4)
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 4");
-
-	// TODO: Fix the lack of thread safety here (for reported_mask).
-	static uint8_t reported_mask = 0;
-	if (!(reported_mask & (1 >> channel)))
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_DriverStationCIO, channel, nUsageReporting::kDriverStationCIO_Analog);
-		reported_mask |= (1 >> channel);
-	}
-
-	switch (channel)
-	{
-	case 1:
-		return kDSAnalogInScaling * m_controlData->analog1;
-	case 2:
-		return kDSAnalogInScaling * m_controlData->analog2;
-	case 3:
-		return kDSAnalogInScaling * m_controlData->analog3;
-	case 4:
-		return kDSAnalogInScaling * m_controlData->analog4;
-	}
-	return 0.0;
-}
-
-/**
- * Get values from the digital inputs on the Driver Station.
- * Return digital values from the Drivers Station. These values are typically used for buttons
- * and switches on advanced operator interfaces.
- * @param channel The digital input to get. Valid range is 1 - 8.
- */
-bool DriverStation::GetDigitalIn(uint32_t channel)
-{
-	if (channel < 1 || channel > 8)
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 8");
-
-	// TODO: Fix the lack of thread safety here (for reported_mask).
-	static uint8_t reported_mask = 0;
-	if (!(reported_mask & (1 >> channel)))
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_DriverStationCIO, channel, nUsageReporting::kDriverStationCIO_DigitalIn);
-		reported_mask |= (1 >> channel);
-	}
-
-	return ((m_controlData->dsDigitalIn >> (channel-1)) & 0x1) ? true : false;
-}
-
-/**
- * Set a value for the digital outputs on the Driver Station.
- * 
- * Control digital outputs on the Drivers Station. These values are typically used for
- * giving feedback on a custom operator station such as LEDs.
- * 
- * @param channel The digital output to set. Valid range is 1 - 8.
- * @param value The state to set the digital output.
- */
-void DriverStation::SetDigitalOut(uint32_t channel, bool value) 
-{
-	if (channel < 1 || channel > 8)
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 8");
-
-	// TODO: Fix the lack of thread safety here (for both reported_mask and
-  // m_digitalOut).
-	static uint8_t reported_mask = 0;
-	if (!(reported_mask & (1 >> channel)))
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_DriverStationCIO, channel, nUsageReporting::kDriverStationCIO_DigitalOut);
-		reported_mask |= (1 >> channel);
-	}
-
-	m_digitalOut &= ~(0x1 << (channel-1));
-	m_digitalOut |= ((uint8_t)value << (channel-1));
-}
-
-/**
- * Get a value that was set for the digital outputs on the Driver Station.
- * @param channel The digital ouput to monitor. Valid range is 1 through 8.
- * @return A digital value being output on the Drivers Station.
- */
-bool DriverStation::GetDigitalOut(uint32_t channel) 
-{
-	if (channel < 1 || channel > 8)
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 8");
-
-	return ((m_digitalOut >> (channel-1)) & 0x1) ? true : false;;
-}
-
-/**
- * @return Whether or not the robot is currently enabled by the field controls.
- */
-bool DriverStation::IsEnabled()
-{
-	return m_controlData->enabled;
-}
-
-/**
- * @return Whether or not the robot is currently disabled by the field controls.
- */
-bool DriverStation::IsDisabled()
-{
-	return !m_controlData->enabled;
-}
-
-/**
- * Determines if the robot is currently in autonomous mode. Does not check
- * whether the robot is enabled.
- * @return Whether or not the robot is currently in autonomous mode.
- */
-bool DriverStation::IsAutonomous()
-{
-	return m_controlData->autonomous;
-}
-
-/**
- * Determines if the robot is currently in teleoperated mode. Does not check
- * whether the robot is enabled.
- * @return Whether or not the robot is currently in teleoperated mode.
- */
-bool DriverStation::IsOperatorControl()
-{
-  RWLock::Locker data_locker(GetDataReadLock());
-	return !(m_controlData->autonomous || m_controlData->test);
-}
-
-/**
- * Determines if the robot is currently in test mode. Does not check
- * whether the robot is enabled.
- * @return Whether or not the robot is currently in test mode.
- */
-bool DriverStation::IsTest()
-{
-	return m_controlData->test;
-}
-
-/**
- * @return What state the robot is currently in.
- */
-DriverStation::FMSState DriverStation::GetCurrentState() {
-  RWLock::Locker data_locker(GetDataReadLock());
-  if (IsDisabled()) {
-    return FMSState::kDisabled;
-    // Or else it must be enabled (for all of the other ones).
-  } else if (IsAutonomous()) {
-    return FMSState::kAutonomous;
-  } else if (IsTest()) {
-    return FMSState::kTestMode;
-  } else {  // IsOperatorControl() has to return true now
-    return FMSState::kTeleop;
-  }
-}
-
-/**
- * Has a new control packet from the driver station arrived since the last time this function was called?
- * Warning: If you call this function from more than one place at the same time,
- * you will not get the get the intended behavior unless that behavior is
- * exactly 1 of the places that you call it from getting a true after a packet
- * arrives.
- * @return True if the control data has been updated since the last call.
- */
-bool DriverStation::IsNewControlData()
-{
-	return semTake(m_newControlData, NO_WAIT) == 0;
-}
-
-/**
- * Is the driver station attached to a Field Management System?
- * Note: This does not work with the Blue DS.
- * @return True if the robot is competing on a field being controlled by a Field Management System
- */
-bool DriverStation::IsFMSAttached()
-{
-	return m_controlData->fmsAttached;
-}
-
-/**
- * Return the DS packet number.
- * The packet number is the index of this set of data returned by the driver station.
- * @return The driver station packet number
- */
-uint32_t DriverStation::GetPacketNumber()
-{
-	return m_controlData->packetIndex;
-}
-
-/**
- * Return the alliance that the driver station says it is on.
- * @return The Alliance enum
- */
-DriverStation::Alliance DriverStation::GetAlliance()
-{
-  // Read it first to make sure that it doesn't change in between the checks.
-  char alliance = m_controlData->dsID_Alliance;
-	if (alliance == 'R') return kRed;
-	if (alliance == 'B') return kBlue;
-	wpi_assert(false);
-	return kInvalid;
-}
-
-/**
- * Return the driver station location on the field
- * This could return 1, 2, or 3
- * @return The location of the driver station
- */
-uint32_t DriverStation::GetLocation()
-{
-  char position = m_controlData->dsID_Position;
-	wpi_assert ((position >= '1') && (position <= '3'));
-	return position - '0';
-}
-
-/**
- * Wait until a new packet comes from the driver station
- * This blocks on a semaphore, so the waiting is efficient.
- * This is a good way to delay processing until there is new driver station data to act on
- */
-void DriverStation::WaitForData()
-{
-	semTake(m_waitForDataSem, WAIT_FOREVER);
-}
-
-/**
- * Return the approximate match time
- * The FMS does not currently send the official match time to the robots
- * This returns the time since the enable signal sent from the Driver Station
- * At the beginning of autonomous, the time is reset to 0.0 seconds
- * At the beginning of teleop, the time is reset to +15.0 seconds
- * If the robot is disabled, this returns 0.0 seconds
- * Warning: This is not an official time (so it cannot be used to argue with referees)
- * @return Match time in seconds since the beginning of autonomous
- */
-double DriverStation::GetMatchTime()
-{
-	if (m_approxMatchTimeOffset < 0.0)
-		return 0.0;
-	return Timer::GetFPGATimestamp() - m_approxMatchTimeOffset;
-}
-
-/**
- * Return the team number that the Driver Station is configured for
- * @return The team number
- */
-uint16_t DriverStation::GetTeamNumber()
-{
-	return m_controlData->teamID;
-}
diff --git a/aos/externals/WPILib/WPILib/DriverStation.h b/aos/externals/WPILib/WPILib/DriverStation.h
deleted file mode 100644
index cc00819..0000000
--- a/aos/externals/WPILib/WPILib/DriverStation.h
+++ /dev/null
@@ -1,193 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __DRIVER_STATION_H__
-#define __DRIVER_STATION_H__
-
-#include "Dashboard.h"
-#include "DriverStationEnhancedIO.h"
-#include "SensorBase.h"
-#include "Task.h"
-#include "Synchronized.h"
-#include "RWLock.h"
-#include "Base.h"
-
-struct FRCCommonControlData;
-class AnalogChannel;
-
-/**
- * Provide access to the network communication data to / from the Driver Station.
- */
-class DriverStation : public SensorBase
-{
-public:
-	enum Alliance {kRed, kBlue, kInvalid};
-
-  // Represents all of the states that FMS thinks of a robot as being in.
-  // NOTE: All of the ones except kDisabled mean that the robot is enabled too.
-  enum FMSState {
-    kDisabled,
-    kAutonomous,
-    kTeleop,
-    kTestMode,
-  };
-
-	static DriverStation *GetInstance();
-
-  RWLock::Locker GetDataReadLock();
-
-	static const uint32_t kBatteryModuleNumber = 1;
-	static const uint32_t kBatteryChannel = 8;
-	static const uint32_t kJoystickPorts = 4;
-	static const uint32_t kJoystickAxes = 6;
-
-  /**
-   * Returns the pointer to all of the data. This pointer will never change, but
-   * its contents will, so make sure to GetDataReadLock() if you want to make
-   * sure that it doesn't change while you're using it.
-   *
-   * You may NOT modify the contents!
-   */
-  const volatile struct FRCCommonControlData *GetControlData() {
-    return m_controlData;
-  }
-
-	float GetStickAxis(uint32_t stick, uint32_t axis);
-	short GetStickButtons(uint32_t stick);
-
-	float GetAnalogIn(uint32_t channel);
-	bool GetDigitalIn(uint32_t channel);
-	void SetDigitalOut(uint32_t channel, bool value);
-	bool GetDigitalOut(uint32_t channel);
-
-	bool IsEnabled();
-	bool IsDisabled();
-  bool IsAutonomous();
-	bool IsOperatorControl();
-  bool IsTest();
-  FMSState GetCurrentState();
-	bool IsNewControlData();
-	bool IsFMSAttached();
-
-	uint32_t GetPacketNumber();
-	Alliance GetAlliance();
-	uint32_t GetLocation();
-	void WaitForData();
-	double GetMatchTime();
-	float GetBatteryVoltage();
-	uint16_t GetTeamNumber();
-
-	// Get the default dashboard packers. These instances stay around even after
-	// a call to SetHigh|LowPriorityDashboardPackerToUse() changes which packer
-	// is in use. You can restore the default high priority packer by calling
-	// SetHighPriorityDashboardPackerToUse(&GetHighPriorityDashboardPacker()).
-	Dashboard& GetHighPriorityDashboardPacker() { return m_dashboardHigh; }
-	Dashboard& GetLowPriorityDashboardPacker() { return m_dashboardLow; }
-
-	// Get/set the dashboard packers to use. This can sideline or restore the
-	// default packers. Initializing SmartDashboard changes the high priority
-	// packer in use so beware that the default packer will then be idle. These
-	// methods support any kind of DashboardBase, e.g. a Dashboard or a
-	// SmartDashboard.
-	DashboardBase* GetHighPriorityDashboardPackerInUse() { return m_dashboardInUseHigh; }
-	DashboardBase* GetLowPriorityDashboardPackerInUse() { return m_dashboardInUseLow; }
-	void SetHighPriorityDashboardPackerToUse(DashboardBase* db) { m_dashboardInUseHigh = db; }
-	void SetLowPriorityDashboardPackerToUse(DashboardBase* db) { m_dashboardInUseLow = db; }
-
-	DriverStationEnhancedIO& GetEnhancedIO() { return m_enhancedIO; }
-
-	void IncrementUpdateNumber() { m_updateNumber++; }
-	SEM_ID GetUserStatusDataSem() { return m_statusDataSemaphore; }
-
-	/** Only to be used to tell the Driver Station what code you claim to be executing
-	 *   for diagnostic purposes only
-	 * @param entering If true, starting disabled code; if false, leaving disabled code */
-	void InDisabled(bool entering) {m_userInDisabled=entering;}
-	/** Only to be used to tell the Driver Station what code you claim to be executing
-	 *   for diagnostic purposes only
-	 * @param entering If true, starting autonomous code; if false, leaving autonomous code */
-	void InAutonomous(bool entering) {m_userInAutonomous=entering;}
-    /** Only to be used to tell the Driver Station what code you claim to be executing
-     *   for diagnostic purposes only
-     * @param entering If true, starting teleop code; if false, leaving teleop code */
-    void InOperatorControl(bool entering) {m_userInTeleop=entering;}
-    /** Only to be used to tell the Driver Station what code you claim to be executing
-     *   for diagnostic purposes only
-     * @param entering If true, starting test code; if false, leaving test code */
-    void InTest(bool entering) {m_userInTest=entering;}
-  /**
-   * Get a pointer to the lock used for the data set by the In* methods.
-   * Creating write locks on this is useful if you want to atomically modify the
-   * information about what code you claim to be executing.
-   * @return A pointer to the lock. Be aware that the code that looks at this
-   * state (using a read lock) runs after the code that reads new packets and
-   * must finish before a new one can be read.
-   * @see #InDisabled(bool)
-   * @see #InAutonomous(bool)
-   * @see #InOperatorControl(bool)
-   * @see #InTest(bool)
-   */
-  RWLock *GetUserStateLock() { return &m_userStateLock; }
-
-protected:
-	DriverStation();
-	virtual ~DriverStation();
-
-	void GetData();
-	void SetData();
-
-private:
-	static DriverStation *m_instance;
-  static ReentrantSemaphore m_instanceSemaphore;
-	static uint8_t m_updateNumber;
-	///< TODO: Get rid of this and use the semaphore signaling
-	static constexpr float kUpdatePeriod = 0.02;
-
-	static void InitTask(DriverStation *ds);
-	void Run();
-
-  // Volatile because it gets modified by GetData() in a separate task. Be
-  // careful using values out of here (2-byte and 4-byte accesses are safe as
-  // long as they're aligned, which all of the ones in here should be). If you
-  // need consistent data, use m_dataLock.
-  // Const because it should never be modifed except by getCommonControlData,
-  // and that call has to const_cast away the volatile anyways.
-  const volatile struct FRCCommonControlData *m_controlData;
-  // A lock for *m_controlData.
-  // Read (not write) RWLock::Lockers for this get given out to users so that
-  // they can prevent updates to the data while they are doing stuff with it.
-  RWLock m_dataLock;
-
-	uint8_t m_digitalOut;
-	AnalogChannel *m_batteryChannel;
-	SEM_ID m_statusDataSemaphore;
-	Task m_task;
-	Dashboard m_dashboardHigh;  // the default dashboard packers
-	Dashboard m_dashboardLow;
-	DashboardBase* m_dashboardInUseHigh;  // the current dashboard packers in use
-	DashboardBase* m_dashboardInUseLow;
-  // Used to indicate when there is new control data available for
-  // IsNewControlData(). A semaphore instead of just a bool to avoid race
-  // conditions resulting in missed packets.
-	SEM_ID m_newControlData;
-	SEM_ID m_packetDataAvailableSem;
-	DriverStationEnhancedIO m_enhancedIO;
-  // Always empty. Gets semFlushed when there is new data available so that
-  // multiple tasks waiting for it can be woken at the same time.
-	SEM_ID m_waitForDataSem;
-	double m_approxMatchTimeOffset;
-
-  RWLock m_userStateLock;
-	bool m_userInDisabled;
-	bool m_userInAutonomous;
-    bool m_userInTeleop;
-    bool m_userInTest;
-
-  DISALLOW_COPY_AND_ASSIGN(DriverStation);
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/DriverStationEnhancedIO.cpp b/aos/externals/WPILib/WPILib/DriverStationEnhancedIO.cpp
deleted file mode 100644
index afd9437..0000000
--- a/aos/externals/WPILib/WPILib/DriverStationEnhancedIO.cpp
+++ /dev/null
@@ -1,995 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "DriverStationEnhancedIO.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Synchronized.h"
-#include "WPIErrors.h"
-#include <strLib.h>
-
-/**
- * DriverStationEnhancedIO contructor.
- * 
- * This is only called once when the DriverStation constructor is called.
- */
-DriverStationEnhancedIO::DriverStationEnhancedIO()
-	: m_inputValid (false)
-	, m_outputValid (false)
-	, m_configChanged (false)
-	, m_requestEnhancedEnable (false)
-{
-	bzero((char*)&m_inputData, sizeof(m_inputData));
-	bzero((char*)&m_outputData, sizeof(m_outputData));
-	m_outputData.size = sizeof(m_outputData) - 1;
-	m_outputData.id = kOutputBlockID;
-	// Expected to be active low, so initialize inactive.
-	m_outputData.data.fixed_digital_out = 0x3;
-	m_inputDataSemaphore = semMCreate(SEM_Q_PRIORITY | SEM_DELETE_SAFE | SEM_INVERSION_SAFE);
-	m_outputDataSemaphore = semMCreate(SEM_Q_PRIORITY | SEM_DELETE_SAFE | SEM_INVERSION_SAFE);
-	m_encoderOffsets[0] = 0;
-	m_encoderOffsets[1] = 0;
-}
-
-/**
- * DriverStationEnhancedIO destructor.
- * 
- * Called only when the DriverStation class is destroyed.
- */
-DriverStationEnhancedIO::~DriverStationEnhancedIO()
-{
-	semDelete(m_outputDataSemaphore);
-	semDelete(m_inputDataSemaphore);
-}
-
-/**
- * Called by the DriverStation class when data is available.
- * This function will set any modified configuration / output,
- * then read the input and configuration from the IO.
- */
-void DriverStationEnhancedIO::UpdateData()
-{
-	int32_t retVal;
-	{
-		status_block_t tempOutputData;
-		Synchronized sync(m_outputDataSemaphore);
-		if (m_outputValid || m_configChanged || m_requestEnhancedEnable)
-		{
-			m_outputData.flags = kStatusValid;
-			if (m_requestEnhancedEnable)
-			{
-				// Someone called one of the get config APIs, but we are not in enhanced mode.
-				m_outputData.flags |= kForceEnhancedMode;
-			}
-			if (m_configChanged)
-			{
-				if (!m_outputValid)
-				{
-					// Someone called one of the set config APIs, but we are not in enhanced mode.
-					m_outputData.flags |= kForceEnhancedMode;
-				}
-				m_outputData.flags |= kStatusConfigChanged;
-			}
-			overrideIOConfig((char*)&m_outputData, 5);
-		}
-		retVal = getDynamicControlData(kOutputBlockID, (char*)&tempOutputData, sizeof(status_block_t), 5);
-		if (retVal == 0)
-		{
-			if (m_outputValid)
-			{
-				if (m_configChanged)
-				{
-					// If our config change made the round trip then clear the flag.
-					if (IsConfigEqual(tempOutputData, m_outputData))
-					{
-						m_configChanged = false;
-					}
-				}
-				else
-				{
-					// TODO: This won't work until artf1128 is fixed
-					//if (tempOutputData.flags & kStatusConfigChanged)
-					{
-						// Configuration was updated on the DS, so update our local cache.
-						MergeConfigIntoOutput(tempOutputData, m_outputData);
-					}
-				}
-			}
-			else
-			{
-				// Initialize the local cache.
-				MergeConfigIntoOutput(tempOutputData, m_outputData);
-			}
-			m_requestEnhancedEnable = false;
-			m_outputValid = true;
-		}
-		else
-		{
-			m_outputValid = false;
-			m_inputValid = false;
-		}
-	}
-	{
-		Synchronized sync(m_inputDataSemaphore);
-		control_block_t tempInputData;
-		retVal = getDynamicControlData(kInputBlockID, (char*)&tempInputData, sizeof(control_block_t), 5);
-		if (retVal == 0 && tempInputData.data.api_version == kSupportedAPIVersion)
-		{
-			m_inputData = tempInputData;
-			m_inputValid = true;
-		}
-		else
-		{
-			m_outputValid = false;
-			m_inputValid = false;
-		}
-	}
-}
-
-/**
- * Merge the config portion of the DS output block into the local cache.
- */
-void DriverStationEnhancedIO::MergeConfigIntoOutput(const status_block_t &dsOutputBlock, status_block_t &localCache)
-{
-	localCache.data.digital = (localCache.data.digital & dsOutputBlock.data.digital_oe) |
-		(dsOutputBlock.data.digital & ~dsOutputBlock.data.digital_oe);
-	localCache.data.digital_oe = dsOutputBlock.data.digital_oe;
-	localCache.data.digital_pe = dsOutputBlock.data.digital_pe;
-	localCache.data.pwm_period[0] = dsOutputBlock.data.pwm_period[0];
-	localCache.data.pwm_period[1] = dsOutputBlock.data.pwm_period[1];
-	localCache.data.enables = dsOutputBlock.data.enables;
-}
-
-/**
- * Compare the config portion of the output blocks.
- */
-bool DriverStationEnhancedIO::IsConfigEqual(const status_block_t &dsOutputBlock, const status_block_t &localCache)
-{
-	if (localCache.data.digital_oe != dsOutputBlock.data.digital_oe) return false;
-	if ((localCache.data.digital & ~dsOutputBlock.data.digital) !=
-		(dsOutputBlock.data.digital & ~dsOutputBlock.data.digital)) return false;
-	if (localCache.data.digital_pe != dsOutputBlock.data.digital_pe) return false;
-	if (localCache.data.pwm_period[0] != dsOutputBlock.data.pwm_period[0]) return false;
-	if (localCache.data.pwm_period[1] != dsOutputBlock.data.pwm_period[1]) return false;
-	if (localCache.data.enables != dsOutputBlock.data.enables) return false;
-	return true;
-}
-
-/**
- * Query an accelerometer channel on the DS IO.
- * 
- * @param channel The channel number to read.
- * @return The current acceleration on the channel in Gs.
- */
-double DriverStationEnhancedIO::GetAcceleration(tAccelChannel channel)
-{
-	if (channel < 1 || channel > 2)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 2");
-		return 0.0;
-	}
-	if (!m_inputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return 0.0;
-	}
-
-	static uint8_t reported_mask = 0;
-	if (!(reported_mask & (1 >> channel)))
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, channel, nUsageReporting::kDriverStationEIO_Acceleration);
-		reported_mask |= (1 >> channel);
-	}
-
-	Synchronized sync(m_inputDataSemaphore);
-	return (m_inputData.data.accel[channel] - kAccelOffset) / kAccelScale;
-}
-
-/**
- * Query an analog input channel on the DS IO.
- * 
- * @param channel The channel number to read. [1,8]
- * @return The analog input voltage for the channel.
- */
-double DriverStationEnhancedIO::GetAnalogIn(uint32_t channel)
-{
-	// 3.3V is the analog reference voltage
-	return GetAnalogInRatio(channel) * kAnalogInputReference;
-}
-
-/**
- * Query an analog input channel on the DS IO in ratiometric form.
- * 
- * @param channel The channel number to read. [1,8]
- * @return The analog input percentage for the channel.
- */
-double DriverStationEnhancedIO::GetAnalogInRatio(uint32_t channel)
-{
-	if (channel < 1 || channel > 8)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 8");
-		return 0.0;
-	}
-	if (!m_inputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return 0.0;
-	}
-
-	static uint16_t reported_mask = 0;
-	if (!(reported_mask & (1 >> channel)))
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, channel, nUsageReporting::kDriverStationEIO_AnalogIn);
-		reported_mask |= (1 >> channel);
-	}
-
-	Synchronized sync(m_inputDataSemaphore);
-	return m_inputData.data.analog[channel-1] / kAnalogInputResolution;
-}
-
-/**
- * Query the voltage currently being output.
- * 
- * AO1 is pin 11 on the top connector (P2).
- * AO2 is pin 12 on the top connector (P2).
- * 
- * @param channel The analog output channel on the DS IO. [1,2]
- * @return The voltage being output on the channel.
- */
-double DriverStationEnhancedIO::GetAnalogOut(uint32_t channel)
-{
-	if (channel < 1 || channel > 2)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 2");
-		return 0.0;
-	}
-	if (!m_outputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return 0.0;
-	}
-
-	Synchronized sync(m_outputDataSemaphore);
-	return m_outputData.data.dac[channel-1] * kAnalogOutputReference / kAnalogOutputResolution;
-}
-
-/**
- * Set the analog output voltage.
- * 
- * AO1 is pin 11 on the top connector (P2).
- * AO2 is pin 12 on the top connector (P2).
- * AO1 is the reference voltage for the 2 analog comparators on DIO15 and DIO16.
- * 
- * The output range is 0V to 4V, however due to the supply voltage don't expect more than about 3V.
- * Current supply capability is only 100uA.
- * 
- * @param channel The analog output channel on the DS IO. [1,2]
- * @param value The voltage to output on the channel.
- */
-void DriverStationEnhancedIO::SetAnalogOut(uint32_t channel, double value)
-{
-	if (channel < 1 || channel > 2)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 2");
-		return;
-	}
-	if (!m_outputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return;
-	}
-	if (value < 0.0) value = 0.0;
-	if (value > kAnalogOutputReference) value = kAnalogOutputReference;
-
-	static uint8_t reported_mask = 0;
-	if (!(reported_mask & (1 >> channel)))
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, channel, nUsageReporting::kDriverStationEIO_AnalogOut);
-		reported_mask |= (1 >> channel);
-	}
-
-	Synchronized sync(m_outputDataSemaphore);
-	m_outputData.data.dac[channel-1] = (uint8_t)(value / kAnalogOutputReference * kAnalogOutputResolution);
-}
-
-/**
- * Get the state of a button on the IO board.
- * 
- * Button1 is the physical button "S1".
- * Button2 is pin 4 on the top connector (P2).
- * Button3 is pin 6 on the top connector (P2).
- * Button4 is pin 8 on the top connector (P2).
- * Button5 is pin 10 on the top connector (P2).
- * Button6 is pin 7 on the top connector (P2).
- * 
- * Button2 through Button6 are Capacitive Sense buttons.
- * 
- * @param channel The button channel to read. [1,6]
- * @return The state of the selected button.
- */
-bool DriverStationEnhancedIO::GetButton(uint32_t channel)
-{
-	if (channel < 1 || channel > 6)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 6");
-		return false;
-	}
-
-	static uint8_t reported_mask = 0;
-	if (!(reported_mask & (1 >> channel)))
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, channel, nUsageReporting::kDriverStationEIO_Button);
-		reported_mask |= (1 >> channel);
-	}
-
-	return ((GetButtons() >> (channel-1)) & 1) != 0;
-}
-
-/**
- * Get the state of all the button channels.
- * 
- * @return The state of the 6 button channels in the 6 lsb of the returned byte.
- */
-uint8_t DriverStationEnhancedIO::GetButtons()
-{
-	if (!m_inputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return 0;
-	}
-	nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, 0, nUsageReporting::kDriverStationEIO_Button);
-	Synchronized sync(m_inputDataSemaphore);
-	return m_inputData.data.buttons;
-}
-
-/**
- * Set the state of an LED on the IO board.
- * 
- * @param channel The LED channel to set. [1,8]
- * @param value True to turn the LED on.
- */
-void DriverStationEnhancedIO::SetLED(uint32_t channel, bool value)
-{
-	if (channel < 1 || channel > 8)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 8");
-		return;
-	}
-	if (!m_outputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return;
-	}
-
-	static uint16_t reported_mask = 0;
-	if (!(reported_mask & (1 >> channel)))
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, channel, nUsageReporting::kDriverStationEIO_LED);
-		reported_mask |= (1 >> channel);
-	}
-
-	uint8_t leds;
-	Synchronized sync(m_outputDataSemaphore);
-	leds = m_outputData.data.leds;
-
-	leds &= ~(1 << (channel-1));
-	if (value) leds |= 1 << (channel-1);
-
-	m_outputData.data.leds = leds;
-}
-
-/**
- * Set the state of all 8 LEDs on the IO board.
- * 
- * @param value The state of each LED.  LED1 is lsb and LED8 is msb.
- */
-void DriverStationEnhancedIO::SetLEDs(uint8_t value)
-{
-	if (!m_outputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return;
-	}
-	nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, 0, nUsageReporting::kDriverStationEIO_LED);
-	Synchronized sync(m_outputDataSemaphore);
-	m_outputData.data.leds = value;
-}
-
-/**
- * Get the current state of a DIO channel regardless of mode.
- * 
- * @param channel The DIO channel to read. [1,16]
- * @return The state of the selected digital line.
- */
-bool DriverStationEnhancedIO::GetDigital(uint32_t channel)
-{
-	if (channel < 1 || channel > 16)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 16");
-		return false;
-	}
-
-	static uint32_t reported_mask = 0;
-	if (!(reported_mask & (1 >> channel)))
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, channel, nUsageReporting::kDriverStationEIO_DigitalIn);
-		reported_mask |= (1 >> channel);
-	}
-
-	return ((GetDigitals() >> (channel-1)) & 1) != 0;
-}
-
-/**
- * Get the state of all 16 DIO lines regardless of mode.
- * 
- * @return The state of all DIO lines. DIO1 is lsb and DIO16 is msb.
- */
-uint16_t DriverStationEnhancedIO::GetDigitals()
-{
-	if (!m_inputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return 0;
-	}
-	nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, 0, nUsageReporting::kDriverStationEIO_DigitalIn);
-	Synchronized sync(m_inputDataSemaphore);
-	return m_inputData.data.digital;
-}
-
-/**
- * Set the state of a DIO line that is configured for digital output.
- * 
- * @param channel The DIO channel to set. [1,16]
- * @param value The state to set the selected channel to.
- */
-void DriverStationEnhancedIO::SetDigitalOutput(uint32_t channel, bool value)
-{
-	if (channel < 1 || channel > 16)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 16");
-		return;
-	}
-	if (!m_outputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return;
-	}
-
-	static uint32_t reported_mask = 0;
-	if (!(reported_mask & (1 >> channel)))
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, channel, nUsageReporting::kDriverStationEIO_DigitalOut);
-		reported_mask |= (1 >> channel);
-	}
-
-	uint16_t digital;
-	Synchronized sync(m_outputDataSemaphore);
-
-	if (m_outputData.data.digital_oe & (1 << (channel-1)))
-	{
-		digital = m_outputData.data.digital;
-	
-		digital &= ~(1 << (channel-1));
-		if (value) digital |= 1 << (channel-1);
-	
-		m_outputData.data.digital = digital;
-	}
-	else
-	{
-		wpi_setWPIError(LineNotOutput);
-	}
-}
-
-/**
- * Get the current configuration for a DIO line.
- * 
- * This has the side effect of forcing the Driver Station to switch to Enhanced mode if it's not when called.
- * If Enhanced mode is not enabled when this is called, it will return kUnknown.
- * 
- * @param channel The DIO channel config to get. [1,16]
- * @return The configured mode for the DIO line.
- */
-DriverStationEnhancedIO::tDigitalConfig DriverStationEnhancedIO::GetDigitalConfig(uint32_t channel)
-{
-	if (channel < 1 || channel > 16)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 16");
-		return kUnknown;
-	}
-	if (!m_outputValid)
-	{
-		m_requestEnhancedEnable = true;
-		wpi_setWPIError(EnhancedIOMissing);
-		return kUnknown;
-	}
-	Synchronized sync(m_outputDataSemaphore);
-	if ((channel >= 1) && (channel <= 4))
-	{
-		if (m_outputData.data.pwm_enable & (1 << (channel - 1)))
-		{
-			return kPWM;
-		}
-	}
-	if ((channel >= 15) && (channel <= 16))
-	{
-		if (m_outputData.data.comparator_enable & (1 << (channel - 15)))
-		{
-			return kAnalogComparator;
-		}
-	}
-	if (m_outputData.data.digital_oe & (1 << (channel - 1)))
-	{
-		return kOutput;
-	}
-	if (!(m_outputData.data.digital_pe & (1 << (channel - 1))))
-	{
-		return kInputFloating;
-	}
-	if (m_outputData.data.digital & (1 << (channel - 1)))
-	{
-		return kInputPullUp;
-	}
-	else
-	{
-		return kInputPullDown;
-	}
-}
-
-/**
- * Override the DS's configuration of a DIO line.
- * 
- * If configured to kInputFloating, the selected DIO line will be tri-stated with no internal pull resistor.
- * 
- * If configured to kInputPullUp, the selected DIO line will be tri-stated with a 5k-Ohm internal pull-up resistor enabled.
- * 
- * If configured to kInputPullDown, the selected DIO line will be tri-stated with a 5k-Ohm internal pull-down resistor enabled.
- * 
- * If configured to kOutput, the selected DIO line will actively drive to 0V or Vddio (specified by J1 and J4).
- * DIO1 through DIO12, DIO15, and DIO16 can source 4mA and can sink 8mA.
- * DIO12 and DIO13 can source 4mA and can sink 25mA.
- * 
- * In addition to the common configurations, DIO1 through DIO4 can be configured to kPWM to enable PWM output.
- * 
- * In addition to the common configurations, DIO15 and DIO16 can be configured to kAnalogComparator to enable
- * analog comparators on those 2 DIO lines.  When enabled, the lines are tri-stated and will accept analog voltages
- * between 0V and 3.3V.  If the input voltage is greater than the voltage output by AO1, the DIO will read as true,
- * if less then false.
- * 
- * @param channel The DIO line to configure. [1,16]
- * @param config The mode to put the DIO line in.
- */
-void DriverStationEnhancedIO::SetDigitalConfig(uint32_t channel, tDigitalConfig config)
-{
-	if (channel < 1 || channel > 16)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 16");
-		return;
-	}
-	if (config == kPWM && (channel < 1 || channel > 4))
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel in PWM mode must be between 1 and 4");
-		return;
-	}
-	if (config == kAnalogComparator && (channel < 15 || channel > 16))
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel in Analog Comparator mode must be between 15 and 16");
-		return;
-	}
-
-	Synchronized sync(m_outputDataSemaphore);
-	m_configChanged = true;
-
-	if ((channel >= 1) && (channel <= 4))
-	{
-		if (config == kPWM)
-		{
-			m_outputData.data.pwm_enable |= 1 << (channel - 1);
-			m_outputData.data.digital &= ~(1 << (channel - 1));
-			m_outputData.data.digital_oe |= 1 << (channel - 1);
-			m_outputData.data.digital_pe &= ~(1 << (channel - 1));
-			return;
-		}
-		else
-		{
-			m_outputData.data.pwm_enable &= ~(1 << (channel - 1));
-		}
-	}
-	else if ((channel >= 15) && (channel <= 16))
-	{
-		if (config == kAnalogComparator)
-		{
-			m_outputData.data.comparator_enable |= 1 << (channel - 15);
-			m_outputData.data.digital &= ~(1 << (channel - 1));
-			m_outputData.data.digital_oe &= ~(1 << (channel - 1));
-			m_outputData.data.digital_pe &= ~(1 << (channel - 1));
-			return;
-		}
-		else
-		{
-			m_outputData.data.comparator_enable &= ~(1 << (channel - 15));
-		}
-	}
-	if (config == kInputFloating)
-	{
-		m_outputData.data.digital &= ~(1 << (channel - 1));
-		m_outputData.data.digital_oe &= ~(1 << (channel - 1));
-		m_outputData.data.digital_pe &= ~(1 << (channel - 1));
-	}
-	else if (config == kInputPullUp)
-	{
-		m_outputData.data.digital |= 1 << (channel - 1);
-		m_outputData.data.digital_oe &= ~(1 << (channel - 1));
-		m_outputData.data.digital_pe |= 1 << (channel - 1);
-	}
-	else if (config == kInputPullDown)
-	{
-		m_outputData.data.digital &= ~(1 << (channel - 1));
-		m_outputData.data.digital_oe &= ~(1 << (channel - 1));
-		m_outputData.data.digital_pe |= 1 << (channel - 1);
-	}
-	else if (config == kOutput)
-	{
-		m_outputData.data.digital_oe |= 1 << (channel - 1);
-		m_outputData.data.digital_pe &= ~(1 << (channel - 1));
-	}
-	else
-	{
-		// Something went wrong.
-	}
-}
-
-/**
- * Get the period of a PWM generator.
- * 
- * This has the side effect of forcing the Driver Station to switch to Enhanced mode if it's not when called.
- * If Enhanced mode is not enabled when this is called, it will return 0.
- * 
- * @param channels Select the generator by specifying the two channels to which it is connected.
- * @return The period of the PWM generator in seconds.
- */
-double DriverStationEnhancedIO::GetPWMPeriod(tPWMPeriodChannels channels)
-{
-	if (channels < kPWMChannels1and2 || channels > kPWMChannels3and4)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channels must be kPWMChannels1and2 or kPWMChannels3and4");
-		return 0.0;
-	}
-	if (!m_outputValid)
-	{
-		m_requestEnhancedEnable = true;
-		wpi_setWPIError(EnhancedIOMissing);
-		return 0.0;
-	}
-
-	Synchronized sync(m_outputDataSemaphore);
-	return m_outputData.data.pwm_period[channels] / 24000000.0;
-}
-
-/**
- * Set the period of a PWM generator.
- * 
- * There are 2 PWM generators on the IO board.  One can generate PWM signals on DIO1 and DIO2,
- * the other on DIO3 and DIO4.  Each generator has one counter and two compare registers.  As such,
- * each pair of PWM outputs share the output period but have independent duty cycles.
- * 
- * @param channels Select the generator by specifying the two channels to which it is connected.
- * @param period The period of the PWM generator in seconds. [0.0,0.002731]
- */
-void DriverStationEnhancedIO::SetPWMPeriod(tPWMPeriodChannels channels, double period)
-{
-	if (channels < kPWMChannels1and2 || channels > kPWMChannels3and4)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channels must be kPWMChannels1and2 or kPWMChannels3and4");
-		return;
-	}
-
-	// Convert to ticks based on the IO board's 24MHz clock
-	double ticks = period * 24000000.0;
-	// Limit the range of the ticks... warn if too big.
-	if (ticks > 65534.0) 
-	{
-		wpi_setWPIError(EnhancedIOPWMPeriodOutOfRange);
-		ticks = 65534.0;
-	}
-	else if (ticks < 0.0) ticks = 0.0;
-	// Preserve the duty cycles.
-	double dutyCycles[2];
-	dutyCycles[0] = GetPWMOutput((channels << 1) + 1);
-	dutyCycles[1] = GetPWMOutput((channels << 1) + 2);
-	{
-		Synchronized sync(m_outputDataSemaphore);
-		// Update the period
-		m_outputData.data.pwm_period[channels] = (uint16_t)ticks;
-		m_configChanged = true;
-	}
-	// Restore the duty cycles
-	SetPWMOutput((channels << 1) + 1, dutyCycles[0]);
-	SetPWMOutput((channels << 1) + 2, dutyCycles[1]);
-}
-
-/**
- * Get the state being output on a fixed digital output.
- * 
- * @param channel The FixedDO line to get. [1,2]
- * @return The state of the FixedDO line.
- */
-bool DriverStationEnhancedIO::GetFixedDigitalOutput(uint32_t channel)
-{
-	if (channel < 1 || channel > 2)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 2");
-		return 0;
-	}
-	if (!m_outputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return 0;
-	}
-
-	Synchronized sync(m_outputDataSemaphore);
-	return ((m_outputData.data.fixed_digital_out >> (channel-1)) & 1) != 0;
-}
-
-/**
- * Set the state to output on a Fixed High Current Digital Output line.
- * 
- * FixedDO1 is pin 5 on the top connector (P2).
- * FixedDO2 is pin 3 on the top connector (P2).
- * 
- * The FixedDO lines always output 0V and 3.3V regardless of J1 and J4.
- * They can source 4mA and can sink 25mA.  Because of this, they are expected to be used
- * in an active low configuration, such as connecting to the cathode of a bright LED.
- * Because they are expected to be active low, they default to true.
- * 
- * @param channel The FixedDO channel to set.
- * @param value The state to set the FixedDO.
- */
-void DriverStationEnhancedIO::SetFixedDigitalOutput(uint32_t channel, bool value)
-{
-	if (channel < 1 || channel > 2)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 2");
-		return;
-	}
-	if (!m_outputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return;
-	}
-
-	static uint8_t reported_mask = 0;
-	if (!(reported_mask & (1 >> channel)))
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, channel, nUsageReporting::kDriverStationEIO_FixedDigitalOut);
-		reported_mask |= (1 >> channel);
-	}
-
-	uint8_t digital;
-	Synchronized sync(m_outputDataSemaphore);
-	digital = m_outputData.data.fixed_digital_out;
-
-	digital &= ~(1 << (channel-1));
-	if (value) digital |= 1 << (channel-1);
-
-	m_outputData.data.fixed_digital_out = digital;
-}
-
-/**
- * Get the position of a quadrature encoder.
- * 
- * There are two signed 16-bit 4X quadrature decoders on the IO board.  These decoders are always monitoring
- * the state of the lines assigned to them, but these lines do not have to be used for encoders.
- * 
- * Encoder1 uses DIO4 for "A", DIO6 for "B", and DIO8 for "Index".
- * Encoder2 uses DIO5 for "A", DIO7 for "B", and DIO9 for "Index".
- * 
- * The index functionality can be enabled or disabled using SetEncoderIndexEnable().
- * 
- * @param encoderNumber The quadrature encoder to access. [1,2]
- * @return The current position of the quadrature encoder.
- */
-int16_t DriverStationEnhancedIO::GetEncoder(uint32_t encoderNumber)
-{
-	if (encoderNumber < 1 || encoderNumber > 2)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "encoderNumber must be between 1 and 2");
-		return 0;
-	}
-	if (!m_inputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return 0;
-	}
-
-	static uint8_t reported_mask = 0;
-	if (!(reported_mask & (1 >> encoderNumber)))
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, encoderNumber, nUsageReporting::kDriverStationEIO_Encoder);
-		reported_mask |= (1 >> encoderNumber);
-	}
-
-	Synchronized sync(m_inputDataSemaphore);
-	return m_inputData.data.quad[encoderNumber - 1] - m_encoderOffsets[encoderNumber - 1];
-}
-
-/**
- * Reset the position of an encoder to 0.
- * 
- * This simply stores an offset locally.  It does not reset the hardware counter on the IO board.
- * If you use this method with Index enabled, you may get unexpected results.
- * 
- * @param encoderNumber The quadrature encoder to reset. [1,2]
- */
-void DriverStationEnhancedIO::ResetEncoder(uint32_t encoderNumber)
-{
-	if (encoderNumber < 1 || encoderNumber > 2)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "encoderNumber must be between 1 and 2");
-		return;
-	}
-	if (!m_inputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return;
-	}
-
-	Synchronized sync(m_inputDataSemaphore);
-	m_encoderOffsets[encoderNumber - 1] = m_inputData.data.quad[encoderNumber - 1];
-}
-
-/**
- * Get the current configuration of a quadrature encoder index channel.
- * 
- * This has the side effect of forcing the Driver Station to switch to Enhanced mode if it's not when called.
- * If Enhanced mode is not enabled when this is called, it will return false.
- * 
- * @param encoderNumber The quadrature encoder. [1,2]
- * @return Is the index channel of the encoder enabled.
- */
-bool DriverStationEnhancedIO::GetEncoderIndexEnable(uint32_t encoderNumber)
-{
-	if (encoderNumber < 1 || encoderNumber > 2)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "encoderNumber must be between 1 and 2");
-		return false;
-	}
-	if (!m_outputValid)
-	{
-		m_requestEnhancedEnable = true;
-		wpi_setWPIError(EnhancedIOMissing);
-		return false;
-	}
-
-	Synchronized sync(m_outputDataSemaphore);
-	return ((m_outputData.data.quad_index_enable >> (encoderNumber - 1)) & 1) != 0;
-}
-
-/**
- * Enable or disable the index channel of a quadrature encoder.
- * 
- * The quadrature decoders on the IO board support an active-low index input.
- * 
- * Encoder1 uses DIO8 for "Index".
- * Encoder2 uses DIO9 for "Index".
- * 
- * When enabled, the decoder's counter will be reset to 0 when A, B, and Index are all low.
- * 
- * @param encoderNumber The quadrature encoder. [1,2]
- * @param enable If true, reset the encoder in an index condition.
- */
-void DriverStationEnhancedIO::SetEncoderIndexEnable(uint32_t encoderNumber, bool enable)
-{
-	if (encoderNumber < 1 || encoderNumber > 2)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "encoderNumber must be between 1 and 2");
-		return;
-	}
-
-	Synchronized sync(m_outputDataSemaphore);
-	m_outputData.data.quad_index_enable &= ~(1 << (encoderNumber - 1));
-	if (enable) m_outputData.data.quad_index_enable |= 1 << (encoderNumber - 1);
-	m_configChanged = true;
-}
-
-/**
- * Get the value of the Capacitive Sense touch slider.
- * 
- * @return Value between 0.0 (toward center of board) and 1.0 (toward edge of board).  -1.0 means no touch detected.
- */
-double DriverStationEnhancedIO::GetTouchSlider()
-{
-	if (!m_inputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return 0.0;
-	}
-
-	nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, 1, nUsageReporting::kDriverStationEIO_TouchSlider);
-
-	Synchronized sync(m_inputDataSemaphore);
-	uint8_t value = m_inputData.data.capsense_slider;
-	return value == 255 ? -1.0 : value / 254.0;
-}
-
-/**
- * Get the percent duty-cycle that the PWM generator channel is configured to output.
- * 
- * @param channel The DIO line's PWM generator to get the duty-cycle from. [1,4]
- * @return The percent duty-cycle being output (if the DIO line is configured for PWM). [0.0,1.0]
- */
-double DriverStationEnhancedIO::GetPWMOutput(uint32_t channel)
-{
-	if (channel < 1 || channel > 4)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 4");
-		return 0.0;
-	}
-	if (!m_outputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return 0.0;
-	}
-
-	Synchronized sync(m_outputDataSemaphore);
-	return (double)m_outputData.data.pwm_compare[channel - 1] / (double)m_outputData.data.pwm_period[(channel - 1) >> 1];
-}
-
-/**
- * Set the percent duty-cycle to output on a PWM enabled DIO line.
- * 
- * DIO1 through DIO4 have the ability to output a PWM signal.  The period of the
- * signal can be configured in pairs using SetPWMPeriod().
- * 
- * @param channel The DIO line's PWM generator to set. [1,4]
- * @param value The percent duty-cycle to output from the PWM generator. [0.0,1.0]
- */
-void DriverStationEnhancedIO::SetPWMOutput(uint32_t channel, double value)
-{
-	if (channel < 1 || channel > 4)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "channel must be between 1 and 4");
-		return;
-	}
-	if (!m_outputValid)
-	{
-		wpi_setWPIError(EnhancedIOMissing);
-		return;
-	}
-
-	static uint8_t reported_mask = 0;
-	if (!(reported_mask & (1 >> channel)))
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_DriverStationEIO, channel, nUsageReporting::kDriverStationEIO_PWM);
-		reported_mask |= (1 >> channel);
-	}
-
-	if (value > 1.0) value = 1.0;
-	else if (value < 0.0) value = 0.0;
-	Synchronized sync(m_outputDataSemaphore);
-	m_outputData.data.pwm_compare[channel - 1] = (uint16_t)(value * (double)m_outputData.data.pwm_period[(channel - 1) >> 1]);
-}
-
-/**
- * Get the firmware version running on the IO board.
- * 
- * This also has the side effect of forcing the driver station to switch to Enhanced mode if it is not.
- * If you plan to switch between Driver Stations with unknown IO configurations, you can call this
- * until it returns a non-0 version to ensure that this API is accessible before proceeding.
- * 
- * @return The version of the firmware running on the IO board.  0 if the board is not attached or not in Enhanced mode.
- */
-uint8_t DriverStationEnhancedIO::GetFirmwareVersion()
-{
-	if (!m_inputValid)
-	{
-		m_requestEnhancedEnable = true;
-		wpi_setWPIError(EnhancedIOMissing);
-		return 0;
-	}
-
-	Synchronized sync(m_inputDataSemaphore);
-	return m_inputData.data.fw_version;
-}
-
diff --git a/aos/externals/WPILib/WPILib/DriverStationEnhancedIO.h b/aos/externals/WPILib/WPILib/DriverStationEnhancedIO.h
deleted file mode 100644
index ac265dd..0000000
--- a/aos/externals/WPILib/WPILib/DriverStationEnhancedIO.h
+++ /dev/null
@@ -1,151 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __DRIVER_STATION_ENHANCED_IO_H__
-#define __DRIVER_STATION_ENHANCED_IO_H__
-
-#include "ErrorBase.h"
-#include "NetworkCommunication/FRCComm.h"
-#include <stack>
-#include <vector>
-#include <vxWorks.h>
-
-#define kAnalogInputResolution ((double)((1<<14)-1))
-#define kAnalogInputReference 3.3
-#define kAnalogOutputResolution ((double)((1<<8)-1))
-#define kAnalogOutputReference 4.0
-#define kAccelOffset 8300
-#define kAccelScale 3300.0
-#define kSupportedAPIVersion 1
-
-/**
- * Interact with the more complete I/O available from the 
- * newest driver station.  Get a reference to an object
- * of this type by calling GetEnhancedIO() on the DriverStation object.
- */
-class DriverStationEnhancedIO : public ErrorBase
-{
-	// Can only be constructed by the DriverStation class.
-	friend class DriverStation;
-
-#pragma pack(push,1)
-	// BEGIN: Definitions from the Cypress firmware
-	typedef struct
-	{
-		uint16_t digital;
-		uint16_t digital_oe;
-		uint16_t digital_pe;
-		uint16_t pwm_compare[4];
-		uint16_t pwm_period[2];
-		uint8_t dac[2];
-		uint8_t leds;
-		union
-		{
-			struct
-			{
-				// Bits are inverted from cypress fw because of big-endian!
-				uint8_t pwm_enable : 4;
-				uint8_t comparator_enable : 2;
-				uint8_t quad_index_enable : 2;
-			};
-			uint8_t enables;
-		};
-		uint8_t fixed_digital_out;
-	} output_t;  //data to IO (23 bytes)
-
-	typedef struct
-	{
-		uint8_t api_version;
-		uint8_t fw_version;
-		int16_t analog[8];
-		uint16_t digital;
-		int16_t accel[3];
-		int16_t quad[2];
-		uint8_t buttons;
-		uint8_t capsense_slider;
-		uint8_t capsense_proximity;
-	} input_t;	//data from IO (33 bytes)
-	// END: Definitions from the Cypress firmware
-
-	// Dynamic block definitions
-	typedef struct
-	{
-		uint8_t size; // Must be 25 (size remaining in the block not counting the size variable)
-		uint8_t id; // Must be 18
-		output_t data;
-		uint8_t flags;
-	} status_block_t;
-
-	typedef struct
-	{
-		uint8_t size; // Must be 34
-		uint8_t id; // Must be 17
-		input_t data;
-	} control_block_t;
-#pragma pack(pop)
-
-	enum tBlockID
-	{
-		kInputBlockID = kFRC_NetworkCommunication_DynamicType_DSEnhancedIO_Input,
-		kOutputBlockID = kFRC_NetworkCommunication_DynamicType_DSEnhancedIO_Output,
-	};
-	enum tStatusFlags {kStatusValid = 0x01, kStatusConfigChanged = 0x02, kForceEnhancedMode = 0x04};
-
-public:
-	enum tDigitalConfig {kUnknown, kInputFloating, kInputPullUp, kInputPullDown, kOutput, kPWM, kAnalogComparator};
-	enum tAccelChannel {kAccelX = 0, kAccelY = 1, kAccelZ = 2};
-	enum tPWMPeriodChannels {kPWMChannels1and2, kPWMChannels3and4};
-
-	double GetAcceleration(tAccelChannel channel);
-	double GetAnalogIn(uint32_t channel);
-	double GetAnalogInRatio(uint32_t channel);
-	double GetAnalogOut(uint32_t channel);
-	void SetAnalogOut(uint32_t channel, double value);
-	bool GetButton(uint32_t channel);
-	uint8_t GetButtons();
-	void SetLED(uint32_t channel, bool value);
-	void SetLEDs(uint8_t value);
-	bool GetDigital(uint32_t channel);
-	uint16_t GetDigitals();
-	void SetDigitalOutput(uint32_t channel, bool value);
-	tDigitalConfig GetDigitalConfig(uint32_t channel);
-	void SetDigitalConfig(uint32_t channel, tDigitalConfig config);
-	double GetPWMPeriod(tPWMPeriodChannels channels);
-	void SetPWMPeriod(tPWMPeriodChannels channels, double period);
-	bool GetFixedDigitalOutput(uint32_t channel);
-	void SetFixedDigitalOutput(uint32_t channel, bool value);
-	int16_t GetEncoder(uint32_t encoderNumber);
-	void ResetEncoder(uint32_t encoderNumber);
-	bool GetEncoderIndexEnable(uint32_t encoderNumber);
-	void SetEncoderIndexEnable(uint32_t encoderNumber, bool enable);
-	double GetTouchSlider();
-	double GetPWMOutput(uint32_t channel);
-	void SetPWMOutput(uint32_t channel, double value);
-	uint8_t GetFirmwareVersion();
-
-private:
-	DriverStationEnhancedIO();
-	virtual ~DriverStationEnhancedIO();
-	void UpdateData();
-	void MergeConfigIntoOutput(const status_block_t &dsOutputBlock, status_block_t &localCache);
-	bool IsConfigEqual(const status_block_t &dsOutputBlock, const status_block_t &localCache);
-
-	// Usage Guidelines...
-	DISALLOW_COPY_AND_ASSIGN(DriverStationEnhancedIO);
-
-	control_block_t m_inputData;
-	status_block_t m_outputData;
-	SEM_ID m_inputDataSemaphore;
-	SEM_ID m_outputDataSemaphore;
-	bool m_inputValid;
-	bool m_outputValid;
-	bool m_configChanged;
-	bool m_requestEnhancedEnable;
-	int16_t m_encoderOffsets[2];
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/DriverStationLCD.cpp b/aos/externals/WPILib/WPILib/DriverStationLCD.cpp
deleted file mode 100644
index 6841a69..0000000
--- a/aos/externals/WPILib/WPILib/DriverStationLCD.cpp
+++ /dev/null
@@ -1,165 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "DriverStationLCD.h"
-#include "NetworkCommunication/FRCComm.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Synchronized.h"
-#include "WPIErrors.h"
-#include <strLib.h>
-
-const uint32_t DriverStationLCD::kSyncTimeout_ms;
-const uint16_t DriverStationLCD::kFullDisplayTextCommand;
-const int32_t DriverStationLCD::kLineLength;
-const int32_t DriverStationLCD::kNumLines;
-DriverStationLCD* DriverStationLCD::m_instance = NULL;
-
-/**
- * DriverStationLCD contructor.
- * 
- * This is only called once the first time GetInstance() is called
- */
-DriverStationLCD::DriverStationLCD()
-	: m_textBuffer (NULL)
-	, m_textBufferSemaphore (NULL)
-{
-	m_textBuffer = new char[USER_DS_LCD_DATA_SIZE];
-	memset(m_textBuffer, ' ', USER_DS_LCD_DATA_SIZE);
-
-	*((uint16_t *)m_textBuffer) = kFullDisplayTextCommand;
-
-	m_textBufferSemaphore = semMCreate(SEM_DELETE_SAFE);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_DriverStationLCD, 0);
-
-	AddToSingletonList();
-}
-
-DriverStationLCD::~DriverStationLCD()
-{
-	semDelete(m_textBufferSemaphore);
-	delete [] m_textBuffer;
-	m_instance = NULL;
-}
-
-/**
- * Return a pointer to the singleton DriverStationLCD.
- */
-DriverStationLCD* DriverStationLCD::GetInstance()
-{
-	if (m_instance == NULL)
-	{
-		m_instance = new DriverStationLCD();
-	}
-	return m_instance;
-}
-
-/**
- * Send the text data to the Driver Station.
- */
-void DriverStationLCD::UpdateLCD()
-{
-	Synchronized sync(m_textBufferSemaphore);
-	setUserDsLcdData(m_textBuffer, USER_DS_LCD_DATA_SIZE, kSyncTimeout_ms);
-}
-
-/**
- * Print formatted text to the Driver Station LCD text bufer.
- * 
- * Use UpdateLCD() periodically to actually send the text to the Driver Station.
- * 
- * @param line The line on the LCD to print to.
- * @param startingColumn The column to start printing to.  This is a 1-based number.
- * @param writeFmt The printf format string describing how to print.
- */
-void DriverStationLCD::Printf(Line line, int32_t startingColumn, const char *writeFmt, ...)
-{
-	va_list args;
-	va_start (args, writeFmt);
-	VPrintf(line, startingColumn, writeFmt, args);
-	va_end (args);
-}
-
-void DriverStationLCD::VPrintf(Line line, int32_t startingColumn, const char *writeFmt, va_list args)
-{
-	uint32_t start = startingColumn - 1;
-	int32_t maxLength = kLineLength - start;
-	char lineBuffer[kLineLength + 1];
-
-	if (startingColumn < 1 || startingColumn > kLineLength)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "startingColumn");
-		return;
-	}
-
-	if (line < kMain_Line6 || line > kUser_Line6)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "line");
-		return;
-	}
-
-	{
-		Synchronized sync(m_textBufferSemaphore);
-		// snprintf appends NULL to its output.  Therefore we can't write directly to the buffer.
-		int32_t length = vsnprintf(lineBuffer, kLineLength + 1, writeFmt, args);
-		if (length < 0) length = kLineLength;
-
-		memcpy(m_textBuffer + start + line * kLineLength + sizeof(uint16_t), lineBuffer, std::min(maxLength,length));
-	}
-}
-
-/**
- * Print formatted text to the Driver Station LCD text bufer. This function 
- * pads the line with empty spaces. 
- * 
- * Use UpdateLCD() periodically to actually send the text to the Driver Station.
- * 
- * @param line The line on the LCD to print to.
- * @param writeFmt The printf format string describing how to print.
- */
-void DriverStationLCD::PrintfLine(Line line, const char *writeFmt, ...)
-{
-	va_list args;
-	va_start (args, writeFmt);
-	VPrintfLine(line, writeFmt, args);
-	va_end (args);
-}
-
-void DriverStationLCD::VPrintfLine(Line line, const char *writeFmt, va_list args)
-{
-	char lineBuffer[kLineLength + 1];
-
-	if (line < kMain_Line6 || line > kUser_Line6)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "line");
-		return;
-	}
-
-	{
-		Synchronized sync(m_textBufferSemaphore);
-		// snprintf appends NULL to its output.  Therefore we can't write directly to the buffer.
-		int32_t length = std::min(vsnprintf(lineBuffer, kLineLength + 1, writeFmt, args), (int)kLineLength);
-		if (length < 0) length = kLineLength;
-
-		// Fill the rest of the buffer
-		if (length < kLineLength)
-		{
-			memset(lineBuffer + length, ' ', kLineLength - length);
-		}
-		
-		memcpy(m_textBuffer + line * kLineLength + sizeof(uint16_t), lineBuffer, kLineLength);
-	}
-}
-
-/**
- *  Clear all lines on the LCD.
- */
-void DriverStationLCD::Clear()
-{
-	Synchronized sync(m_textBufferSemaphore);
-	memset(m_textBuffer + sizeof(uint16_t), ' ', kLineLength*kNumLines);
-}
-
diff --git a/aos/externals/WPILib/WPILib/DriverStationLCD.h b/aos/externals/WPILib/WPILib/DriverStationLCD.h
deleted file mode 100644
index ebdf6bc..0000000
--- a/aos/externals/WPILib/WPILib/DriverStationLCD.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __DRIVER_STATION_LCD_H__
-#define __DRIVER_STATION_LCD_H__
-
-#include "SensorBase.h"
-
-/**
- * Provide access to "LCD" on the Driver Station.
- * This is the Messages box on the DS Operation tab.
- * 
- * Buffer the printed data locally and then send it
- * when UpdateLCD is called.
- */
-class DriverStationLCD : public SensorBase
-{
-public:
-	static const uint32_t kSyncTimeout_ms = 20;
-	static const uint16_t kFullDisplayTextCommand = 0x9FFF;
-	static const int32_t kLineLength = 21;
-	static const int32_t kNumLines = 6;
-	enum Line {kMain_Line6=0, kUser_Line1=0, kUser_Line2=1, kUser_Line3=2, kUser_Line4=3, kUser_Line5=4, kUser_Line6=5};
-
-	static DriverStationLCD *GetInstance();
-
-	void UpdateLCD();
-	void Printf(Line line, int32_t startingColumn, const char *writeFmt, ...);
-	void VPrintf(Line line, int32_t startingColumn, const char *writeFmt, va_list args);
-	void PrintfLine(Line line, const char *writeFmt, ...);
-	void VPrintfLine(Line line, const char *writeFmt, va_list args);
- 
-	void Clear();
-
-protected:
-	DriverStationLCD();
-	virtual ~DriverStationLCD();
-
-private:
-	static void InitTask(DriverStationLCD *ds);
-	static DriverStationLCD *m_instance;
-	DISALLOW_COPY_AND_ASSIGN(DriverStationLCD);
-
-	char *m_textBuffer;
-	SEM_ID m_textBufferSemaphore;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Eclipse.cproject b/aos/externals/WPILib/WPILib/Eclipse.cproject
deleted file mode 100644
index 8447cbb..0000000
--- a/aos/externals/WPILib/WPILib/Eclipse.cproject
+++ /dev/null
@@ -1,109 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage">
-	<storageModule moduleId="org.eclipse.cdt.core.settings">
-		<cconfiguration id="cdt.managedbuild.config.gnu.cross.exe.debug.1905580494">
-			<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.cross.exe.debug.1905580494" moduleId="org.eclipse.cdt.core.settings" name="Debug">
-				<externalSettings>
-					<externalSetting>
-						<entry flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/WPILib"/>
-						<entry flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/WPILib/Debug"/>
-						<entry flags="RESOLVED" kind="libraryFile" name="WPILib" srcPrefixMapping="" srcRootPath=""/>
-					</externalSetting>
-				</externalSettings>
-				<extensions>
-					<extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/>
-					<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
-					<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
-				</extensions>
-			</storageModule>
-			<storageModule moduleId="cdtBuildSystem" version="4.0.0">
-				<configuration artifactExtension="a" artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.staticLib" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.staticLib" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.cross.exe.debug.1905580494" name="Debug" parent="cdt.managedbuild.config.gnu.cross.exe.debug">
-					<folderInfo id="cdt.managedbuild.config.gnu.cross.exe.debug.1905580494." name="/" resourcePath="">
-						<toolChain id="cdt.managedbuild.toolchain.gnu.cross.exe.debug.994329655" name="Cross GCC" nonInternalBuilderId="cdt.managedbuild.builder.gnu.cross" resourceTypeBasedDiscovery="true" superClass="cdt.managedbuild.toolchain.gnu.cross.exe.debug">
-							<option id="cdt.managedbuild.option.gnu.cross.prefix.1233302794" name="Prefix" superClass="cdt.managedbuild.option.gnu.cross.prefix" value="powerpc-wrs-vxworks-" valueType="string"/>
-							<option id="cdt.managedbuild.option.gnu.cross.path.344448660" name="Path" superClass="cdt.managedbuild.option.gnu.cross.path" value="/usr/powerpc-wrs-vxworks/bin" valueType="string"/>
-							<targetPlatform archList="all" binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.targetPlatform.gnu.cross.1506551398" isAbstract="false" osList="all" superClass="cdt.managedbuild.targetPlatform.gnu.cross"/>
-							<builder autoBuildTarget="all" buildPath="${workspace_loc:/WPILib/Debug}" cleanBuildTarget="clean" id="org.eclipse.cdt.build.core.internal.builder.1737288017" incrementalBuildTarget="all" managedBuildOn="true" name="CDT Internal Builder" superClass="org.eclipse.cdt.build.core.internal.builder"/>
-							<tool id="cdt.managedbuild.tool.gnu.cross.c.compiler.720051271" name="Cross GCC Compiler" superClass="cdt.managedbuild.tool.gnu.cross.c.compiler">
-								<option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.option.optimization.level.1408965103" name="Optimization Level" superClass="gnu.c.compiler.option.optimization.level" valueType="enumerated"/>
-								<option id="gnu.c.compiler.option.debugging.level.1453206520" name="Debug Level" superClass="gnu.c.compiler.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/>
-								<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1545251527" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
-							</tool>
-							<tool commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cross.cpp.compiler.1658342348" name="Cross G++ Compiler" superClass="cdt.managedbuild.tool.gnu.cross.cpp.compiler">
-								<option id="gnu.cpp.compiler.option.optimization.level.486336400" name="Optimization Level" superClass="gnu.cpp.compiler.option.optimization.level" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/>
-								<option id="gnu.cpp.compiler.option.debugging.level.1345636137" name="Debug Level" superClass="gnu.cpp.compiler.option.debugging.level" value="gnu.cpp.compiler.debugging.level.default" valueType="enumerated"/>
-								<option id="gnu.cpp.compiler.option.warnings.toerrors.1436493674" name="Warnings as errors (-Werror)" superClass="gnu.cpp.compiler.option.warnings.toerrors" value="true" valueType="boolean"/>
-								<option id="gnu.cpp.compiler.option.other.other.921313522" name="Other flags" superClass="gnu.cpp.compiler.option.other.other" value="-c -fmessage-length=0 -mcpu=603 -mstrict-align  -mlongcall  -DTOOL=GNU -std=gnu++11" valueType="string"/>
-								<option id="gnu.cpp.compiler.option.include.paths.1510285501" name="Include paths (-I)" superClass="gnu.cpp.compiler.option.include.paths" valueType="includePath">
-									<listOptionValue builtIn="false" value="&quot;${workspace_loc:/${ProjName}}&quot;"/>
-								</option>
-								<option id="gnu.cpp.compiler.option.warnings.pedantic.136839208" name="Pedantic (-pedantic)" superClass="gnu.cpp.compiler.option.warnings.pedantic" value="false" valueType="boolean"/>
-								<option id="gnu.cpp.compiler.option.warnings.extrawarn.1677322864" name="Extra warnings (-Wextra)" superClass="gnu.cpp.compiler.option.warnings.extrawarn" value="false" valueType="boolean"/>
-								<option id="gnu.cpp.compiler.option.warnings.pedantic.error.845911741" name="Pedantic warnings as errors (-pedantic-errors)" superClass="gnu.cpp.compiler.option.warnings.pedantic.error" value="false" valueType="boolean"/>
-								<inputType id="cdt.managedbuild.tool.gnu.cpp.compiler.input.2053579657" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.input"/>
-							</tool>
-							<tool id="cdt.managedbuild.tool.gnu.cross.c.linker.1358345602" name="Cross GCC Linker" superClass="cdt.managedbuild.tool.gnu.cross.c.linker">
-								<option defaultValue="true" id="gnu.c.link.option.shared.1740428128" name="Shared (-shared)" superClass="gnu.c.link.option.shared" valueType="boolean"/>
-							</tool>
-							<tool id="cdt.managedbuild.tool.gnu.cross.cpp.linker.1430642678" name="Cross G++ Linker" superClass="cdt.managedbuild.tool.gnu.cross.cpp.linker">
-								<option defaultValue="true" id="gnu.cpp.link.option.shared.238861230" name="Shared (-shared)" superClass="gnu.cpp.link.option.shared" valueType="boolean"/>
-								<inputType id="cdt.managedbuild.tool.gnu.cpp.linker.input.235722841" superClass="cdt.managedbuild.tool.gnu.cpp.linker.input">
-									<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
-									<additionalInput kind="additionalinput" paths="$(LIBS)"/>
-								</inputType>
-							</tool>
-							<tool id="cdt.managedbuild.tool.gnu.cross.archiver.1709016862" name="Cross GCC Archiver" superClass="cdt.managedbuild.tool.gnu.cross.archiver">
-								<option id="gnu.both.lib.option.flags.1145203980" name="Archiver flags" superClass="gnu.both.lib.option.flags" value="-crus" valueType="string"/>
-							</tool>
-							<tool id="cdt.managedbuild.tool.gnu.cross.assembler.1675338920" name="Cross GCC Assembler" superClass="cdt.managedbuild.tool.gnu.cross.assembler">
-								<inputType id="cdt.managedbuild.tool.gnu.assembler.input.428648088" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
-							</tool>
-						</toolChain>
-					</folderInfo>
-				</configuration>
-			</storageModule>
-			<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
-		</cconfiguration>
-	</storageModule>
-	<storageModule moduleId="cdtBuildSystem" version="4.0.0">
-		<project id="WPILib.cdt.managedbuild.target.gnu.cross.exe.869600547" name="Executable" projectType="cdt.managedbuild.target.gnu.cross.exe"/>
-	</storageModule>
-	<storageModule moduleId="org.eclipse.cdt.core.LanguageSettingsProviders"/>
-	<storageModule moduleId="refreshScope" versionNumber="2">
-		<configuration configurationName="Debug">
-			<resource resourceType="PROJECT" workspacePath="/WPILib"/>
-		</configuration>
-	</storageModule>
-	<storageModule moduleId="scannerConfiguration">
-		<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
-		<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.cross.exe.debug.1905580494;cdt.managedbuild.config.gnu.cross.exe.debug.1905580494.;cdt.managedbuild.tool.gnu.cross.cpp.compiler.1658342348;cdt.managedbuild.tool.gnu.cpp.compiler.input.2053579657">
-			<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP"/>
-			<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP">
-				<buildOutputProvider>
-					<openAction enabled="true" filePath=""/>
-					<parser enabled="true"/>
-				</buildOutputProvider>
-				<scannerInfoProvider id="specsFile">
-					<runAction arguments="-E -P -v -dD &quot;${plugin_state_location}/specs.cpp&quot;" command="powerpc-wrs-vxworks-g++" useDefault="true"/>
-					<parser enabled="true"/>
-				</scannerInfoProvider>
-			</profile>
-		</scannerConfigBuildInfo>
-		<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.cross.exe.debug.1905580494;cdt.managedbuild.config.gnu.cross.exe.debug.1905580494.;cdt.managedbuild.tool.gnu.cross.c.compiler.720051271;cdt.managedbuild.tool.gnu.c.compiler.input.1545251527">
-			<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/>
-			<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC">
-				<buildOutputProvider>
-					<openAction enabled="true" filePath=""/>
-					<parser enabled="true"/>
-				</buildOutputProvider>
-				<scannerInfoProvider id="specsFile">
-					<runAction arguments="-E -P -v -dD &quot;${plugin_state_location}/specs.c&quot;" command="powerpc-wrs-vxworks-gcc" useDefault="true"/>
-					<parser enabled="true"/>
-				</scannerInfoProvider>
-			</profile>
-		</scannerConfigBuildInfo>
-		<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.cross.exe.debug.1905580494">
-			<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC"/>
-		</scannerConfigBuildInfo>
-	</storageModule>
-</cproject>
diff --git a/aos/externals/WPILib/WPILib/Eclipse.project b/aos/externals/WPILib/WPILib/Eclipse.project
deleted file mode 100644
index 2a7f5d1..0000000
--- a/aos/externals/WPILib/WPILib/Eclipse.project
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
-	<name>WPILib</name>
-	<comment></comment>
-	<projects>
-	</projects>
-	<buildSpec>
-		<buildCommand>
-			<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
-			<triggers>clean,full,incremental,</triggers>
-			<arguments>
-			</arguments>
-		</buildCommand>
-		<buildCommand>
-			<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
-			<triggers>full,incremental,</triggers>
-			<arguments>
-			</arguments>
-		</buildCommand>
-	</buildSpec>
-	<natures>
-		<nature>org.eclipse.cdt.core.cnature</nature>
-		<nature>org.eclipse.cdt.core.ccnature</nature>
-		<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
-		<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
-	</natures>
-</projectDescription>
diff --git a/aos/externals/WPILib/WPILib/Encoder.cpp b/aos/externals/WPILib/WPILib/Encoder.cpp
deleted file mode 100644
index 941b8cc..0000000
--- a/aos/externals/WPILib/WPILib/Encoder.cpp
+++ /dev/null
@@ -1,594 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Encoder.h"
-#include "DigitalInput.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Resource.h"
-#include "WPIErrors.h"
-#include "LiveWindow/LiveWindow.h"
-
-static Resource *quadEncoders = NULL;
-
-/**
- * Common initialization code for Encoders.
- * This code allocates resources for Encoders and is common to all constructors.
- * @param reverseDirection If true, counts down instead of up (this is all relative)
- * @param encodingType either k1X, k2X, or k4X to indicate 1X, 2X or 4X decoding. If 4X is
- * selected, then an encoder FPGA object is used and the returned counts will be 4x the encoder
- * spec'd value since all rising and falling edges are counted. If 1X or 2X are selected then
- * a counter object will be used and the returned value will either exactly match the spec'd count
- * or be double (2x) the spec'd count.
- */
-void Encoder::InitEncoder(bool reverseDirection, EncodingType encodingType)
-{
-	m_table = NULL;
-	m_encodingType = encodingType;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-  if (encodingType == k4X) {
-		Resource::CreateResourceObject(&quadEncoders, tEncoder::kNumSystems);
-		uint32_t index = quadEncoders->Allocate("4X Encoder", this);
-		if (index == ~0ul)
-		{
-			return;
-		}
-		if (m_aSource->StatusIsFatal())
-		{
-			CloneError(m_aSource);
-			return;
-		}
-		if (m_bSource->StatusIsFatal())
-		{
-			CloneError(m_bSource);
-			return;
-		}
-		m_index = index;
-		m_encoder = tEncoder::create(m_index, &localStatus);
-		m_encoder->writeConfig_ASource_Module(m_aSource->GetModuleForRouting(), &localStatus);
-		m_encoder->writeConfig_ASource_Channel(m_aSource->GetChannelForRouting(), &localStatus);
-		m_encoder->writeConfig_ASource_AnalogTrigger(m_aSource->GetAnalogTriggerForRouting(), &localStatus);
-		m_encoder->writeConfig_BSource_Module(m_bSource->GetModuleForRouting(), &localStatus);
-		m_encoder->writeConfig_BSource_Channel(m_bSource->GetChannelForRouting(), &localStatus);
-		m_encoder->writeConfig_BSource_AnalogTrigger(m_bSource->GetAnalogTriggerForRouting(), &localStatus);
-		m_encoder->strobeReset(&localStatus);
-		m_encoder->writeConfig_Reverse(reverseDirection, &localStatus);
-		m_encoder->writeTimerConfig_AverageSize(4, &localStatus);
-		m_counter = NULL;
-  } else {
-		m_counter = new Counter(m_encodingType, m_aSource, m_bSource, reverseDirection);
-		m_index = m_counter->GetIndex();
-	}
-	m_distancePerPulse = 1.0;
-	m_pidSource = kDistance;
-	wpi_setError(localStatus);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_Encoder, m_index, encodingType);
-	LiveWindow::GetInstance()->AddSensor("Encoder", m_aSource->GetModuleForRouting(), m_aSource->GetChannelForRouting(), this);
-}
-
-/**
- * Encoder constructor.
- * Construct a Encoder given a and b modules and channels fully specified.
- * @param aModuleNumber The a channel digital input module.
- * @param aChannel The a channel digital input channel.
- * @param bModuleNumber The b channel digital input module.
- * @param bChannel The b channel digital input channel.
- * @param reverseDirection represents the orientation of the encoder and inverts the output values
- * if necessary so forward represents positive values.
- * @param encodingType either k1X, k2X, or k4X to indicate 1X, 2X or 4X decoding. If 4X is
- * selected, then an encoder FPGA object is used and the returned counts will be 4x the encoder
- * spec'd value since all rising and falling edges are counted. If 1X or 2X are selected then
- * a counter object will be used and the returned value will either exactly match the spec'd count
- * or be double (2x) the spec'd count.
- */
-Encoder::Encoder(uint8_t aModuleNumber, uint32_t aChannel,
-						uint8_t bModuleNumber, uint32_t bChannel,
-						bool reverseDirection, EncodingType encodingType) :
-	m_encoder(NULL),
-	m_counter(NULL)
-{
-	m_aSource = new DigitalInput(aModuleNumber, aChannel);
-	m_bSource = new DigitalInput(bModuleNumber, bChannel);
-	InitEncoder(reverseDirection, encodingType);
-	m_allocatedASource = true;
-	m_allocatedBSource = true;
-}
-
-/**
- * Encoder constructor.
- * Construct a Encoder given a and b channels assuming the default module.
- * @param aChannel The a channel digital input channel.
- * @param bChannel The b channel digital input channel.
- * @param reverseDirection represents the orientation of the encoder and inverts the output values
- * if necessary so forward represents positive values.
- * @param encodingType either k1X, k2X, or k4X to indicate 1X, 2X or 4X decoding. If 4X is
- * selected, then an encoder FPGA object is used and the returned counts will be 4x the encoder
- * spec'd value since all rising and falling edges are counted. If 1X or 2X are selected then
- * a counter object will be used and the returned value will either exactly match the spec'd count
- * or be double (2x) the spec'd count.
- */
-Encoder::Encoder(uint32_t aChannel, uint32_t bChannel, bool reverseDirection, EncodingType encodingType) :
-	m_encoder(NULL),
-	m_counter(NULL)
-{
-	m_aSource = new DigitalInput(aChannel);
-	m_bSource = new DigitalInput(bChannel);
-	InitEncoder(reverseDirection, encodingType);
-	m_allocatedASource = true;
-	m_allocatedBSource = true;
-}
-
-/**
- * Encoder constructor.
- * Construct a Encoder given a and b channels as digital inputs. This is used in the case
- * where the digital inputs are shared. The Encoder class will not allocate the digital inputs
- * and assume that they already are counted.
- * @param aSource The source that should be used for the a channel.
- * @param bSource the source that should be used for the b channel.
- * @param reverseDirection represents the orientation of the encoder and inverts the output values
- * if necessary so forward represents positive values.
- * @param encodingType either k1X, k2X, or k4X to indicate 1X, 2X or 4X decoding. If 4X is
- * selected, then an encoder FPGA object is used and the returned counts will be 4x the encoder
- * spec'd value since all rising and falling edges are counted. If 1X or 2X are selected then
- * a counter object will be used and the returned value will either exactly match the spec'd count
- * or be double (2x) the spec'd count.
- */
-Encoder::Encoder(DigitalSource *aSource, DigitalSource *bSource, bool reverseDirection, EncodingType encodingType) :
-	m_encoder(NULL),
-	m_counter(NULL)
-{
-	m_aSource = aSource;
-	m_bSource = bSource;
-	m_allocatedASource = false;
-	m_allocatedBSource = false;
-	if (m_aSource == NULL || m_bSource == NULL)
-		wpi_setWPIError(NullParameter);
-	else
-		InitEncoder(reverseDirection, encodingType);
-}
-
-/**
- * Encoder constructor.
- * Construct a Encoder given a and b channels as digital inputs. This is used in the case
- * where the digital inputs are shared. The Encoder class will not allocate the digital inputs
- * and assume that they already are counted.
- * @param aSource The source that should be used for the a channel.
- * @param bSource the source that should be used for the b channel.
- * @param reverseDirection represents the orientation of the encoder and inverts the output values
- * if necessary so forward represents positive values.
- * @param encodingType either k1X, k2X, or k4X to indicate 1X, 2X or 4X decoding. If 4X is
- * selected, then an encoder FPGA object is used and the returned counts will be 4x the encoder
- * spec'd value since all rising and falling edges are counted. If 1X or 2X are selected then
- * a counter object will be used and the returned value will either exactly match the spec'd count
- * or be double (2x) the spec'd count.
- */
-Encoder::Encoder(DigitalSource &aSource, DigitalSource &bSource, bool reverseDirection, EncodingType encodingType) :
-	m_encoder(NULL),
-	m_counter(NULL)
-{
-	m_aSource = &aSource;
-	m_bSource = &bSource;
-	m_allocatedASource = false;
-	m_allocatedBSource = false;
-	InitEncoder(reverseDirection, encodingType);
-}
-
-/**
- * Free the resources for an Encoder.
- * Frees the FPGA resources associated with an Encoder.
- */
-Encoder::~Encoder()
-{
-	if (m_allocatedASource) delete m_aSource;
-	if (m_allocatedBSource) delete m_bSource;
-	if (m_counter)
-	{
-		delete m_counter;
-	}
-	else
-	{
-		quadEncoders->Free(m_index, this);
-		delete m_encoder;
-	}
-}
-
-/**
- * Start the Encoder.
- * Starts counting pulses on the Encoder device.
- */
-void Encoder::Start()
-{
-	if (StatusIsFatal()) return;
-	if (m_counter)
-		m_counter->Start();
-	else
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		m_encoder->writeConfig_Enable(1, &localStatus);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Stops counting pulses on the Encoder device. The value is not changed.
- */
-void Encoder::Stop()
-{
-	if (StatusIsFatal()) return;
-	if (m_counter)
-		m_counter->Stop();
-	else
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		m_encoder->writeConfig_Enable(0, &localStatus);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Gets the raw value from the encoder.
- * The raw value is the actual count unscaled by the 1x, 2x, or 4x scale
- * factor.
- * @return Current raw count from the encoder
- */
-int32_t Encoder::GetRaw()
-{
-	if (StatusIsFatal()) return 0;
-	int32_t value;
-	if (m_counter)
-		value = m_counter->Get();
-	else
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		value = m_encoder->readOutput_Value(&localStatus);
-		wpi_setError(localStatus);
-	}
-	return value;
-}
-
-/**
- * Gets the current count.
- * Returns the current count on the Encoder.
- * This method compensates for the decoding type.
- * 
- * @return Current count from the Encoder adjusted for the 1x, 2x, or 4x scale factor.
- */
-int32_t Encoder::Get()
-{
-	if (StatusIsFatal()) return 0;
-	return (int32_t) (GetRaw() * DecodingScaleFactor());
-}
-
-/**
- * Reset the Encoder distance to zero.
- * Resets the current count to zero on the encoder.
- */
-void Encoder::Reset()
-{
-	if (StatusIsFatal()) return;
-	if (m_counter)
-		m_counter->Reset();
-	else
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		m_encoder->strobeReset(&localStatus);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Returns the period of the most recent pulse.
- * Returns the period of the most recent Encoder pulse in seconds.
- * This method compenstates for the decoding type.
- * 
- * @deprecated Use GetRate() in favor of this method.  This returns unscaled periods and GetRate() scales using value from SetDistancePerPulse().
- *
- * @return Period in seconds of the most recent pulse.
- */
-double Encoder::GetPeriod()
-{
-	if (StatusIsFatal()) return 0.0;
-	double measuredPeriod;
-	if (m_counter)
-	{
-		measuredPeriod = m_counter->GetPeriod();
-	}
-	else
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		tEncoder::tTimerOutput output = m_encoder->readTimerOutput(&localStatus);
-		double value;
-		if (output.Stalled)
-		{
-			// Return infinity
-			double zero = 0.0;
-			value = 1.0 / zero;
-		}
-		else
-		{
-			// output.Period is a fixed point number that counts by 2 (24 bits, 25 integer bits)
-			value = (double)(output.Period << 1) / (double)output.Count;
-		}
-		wpi_setError(localStatus);
-		measuredPeriod = value * 1.0e-6;
-	}
-	return measuredPeriod / DecodingScaleFactor();
-}
-
-/**
- * Sets the maximum period for stopped detection.
- * Sets the value that represents the maximum period of the Encoder before it will assume
- * that the attached device is stopped. This timeout allows users to determine if the wheels or
- * other shaft has stopped rotating.
- * This method compensates for the decoding type.
- * 
- * @deprecated Use SetMinRate() in favor of this method.  This takes unscaled periods and SetMinRate() scales using value from SetDistancePerPulse().
- * 
- * @param maxPeriod The maximum time between rising and falling edges before the FPGA will
- * report the device stopped. This is expressed in seconds.
- */
-void Encoder::SetMaxPeriod(double maxPeriod)
-{
-	if (StatusIsFatal()) return;
-	if (m_counter)
-	{
-		m_counter->SetMaxPeriod(maxPeriod * DecodingScaleFactor());
-	}
-	else
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		m_encoder->writeTimerConfig_StallPeriod((uint32_t)(maxPeriod * 1.0e6 * DecodingScaleFactor()), &localStatus);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Determine if the encoder is stopped.
- * Using the MaxPeriod value, a boolean is returned that is true if the encoder is considered
- * stopped and false if it is still moving. A stopped encoder is one where the most recent pulse
- * width exceeds the MaxPeriod.
- * @return True if the encoder is considered stopped.
- */
-bool Encoder::GetStopped()
-{
-	if (StatusIsFatal()) return true;
-	if (m_counter)
-	{
-		return m_counter->GetStopped();
-	}
-	else
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		bool value = m_encoder->readTimerOutput_Stalled(&localStatus) != 0;
-		wpi_setError(localStatus);
-		return value;
-	}
-}
-
-/**
- * The last direction the encoder value changed.
- * @return The last direction the encoder value changed.
- */
-bool Encoder::GetDirection()
-{
-	if (StatusIsFatal()) return false;
-	if (m_counter)
-	{
-		return m_counter->GetDirection();
-	}
-	else
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		bool value = m_encoder->readOutput_Direction(&localStatus);
-		wpi_setError(localStatus);
-		return value;
-	}
-}
-
-/**
- * The scale needed to convert a raw counter value into a number of encoder pulses.
- */
-double Encoder::DecodingScaleFactor()
-{
-	if (StatusIsFatal()) return 0.0;
-	switch (m_encodingType)
-	{
-	case k1X:
-		return 1.0;
-	case k2X:
-		return 0.5;
-	case k4X:
-		return 0.25;
-	default:
-		return 0.0;
-	}	
-}
-
-/**
- * Get the distance the robot has driven since the last reset.
- * 
- * @return The distance driven since the last reset as scaled by the value from SetDistancePerPulse().
- */
-double Encoder::GetDistance()
-{
-	if (StatusIsFatal()) return 0.0;
-	return GetRaw() * DecodingScaleFactor() * m_distancePerPulse;
-}
-
-/**
- * Get the current rate of the encoder.
- * Units are distance per second as scaled by the value from SetDistancePerPulse().
- * 
- * @return The current rate of the encoder.
- */
-double Encoder::GetRate()
-{
-	if (StatusIsFatal()) return 0.0;
-	return (m_distancePerPulse / GetPeriod());
-}
-
-/**
- * Set the minimum rate of the device before the hardware reports it stopped.
- * 
- * @param minRate The minimum rate.  The units are in distance per second as scaled by the value from SetDistancePerPulse().
- */
-void Encoder::SetMinRate(double minRate)
-{
-	if (StatusIsFatal()) return;
-	SetMaxPeriod(m_distancePerPulse / minRate);
-}
-
-/**
- * Set the distance per pulse for this encoder.
- * This sets the multiplier used to determine the distance driven based on the count value
- * from the encoder.
- * Do not include the decoding type in this scale.  The library already compensates for the decoding type.
- * Set this value based on the encoder's rated Pulses per Revolution and
- * factor in gearing reductions following the encoder shaft.
- * This distance can be in any units you like, linear or angular.
- * 
- * @param distancePerPulse The scale factor that will be used to convert pulses to useful units.
- */
-void Encoder::SetDistancePerPulse(double distancePerPulse)
-{
-	if (StatusIsFatal()) return;
-	m_distancePerPulse = distancePerPulse;
-}
-
-/**
- * Set the direction sensing for this encoder.
- * This sets the direction sensing on the encoder so that it could count in the correct
- * software direction regardless of the mounting.
- * @param reverseDirection true if the encoder direction should be reversed
- */
-void Encoder::SetReverseDirection(bool reverseDirection)
-{
-	if (StatusIsFatal()) return;
-	if (m_counter)
-	{
-		m_counter->SetReverseDirection(reverseDirection);
-	}
-	else
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		m_encoder->writeConfig_Reverse(reverseDirection, &localStatus);
-		wpi_setError(localStatus);
-	}
-}
-
-    
-/**
- * Set the Samples to Average which specifies the number of samples of the timer to 
- * average when calculating the period. Perform averaging to account for 
- * mechanical imperfections or as oversampling to increase resolution.
- * @param samplesToAverage The number of samples to average from 1 to 127.
- */
-void Encoder::SetSamplesToAverage(int samplesToAverage)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	if (samplesToAverage < 1 || samplesToAverage > 127)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "Average counter values must be between 1 and 127");
-	}
-	switch (m_encodingType) {
-		case k4X:
-			m_encoder->writeTimerConfig_AverageSize(samplesToAverage, &localStatus);
-			break;
-		case k1X:
-		case k2X:
-			m_counter->SetSamplesToAverage(samplesToAverage);
-			break;
-	}
-	wpi_setError(localStatus);
-}
-    
-/**
- * Get the Samples to Average which specifies the number of samples of the timer to 
- * average when calculating the period. Perform averaging to account for 
- * mechanical imperfections or as oversampling to increase resolution.
- * @return SamplesToAverage The number of samples being averaged (from 1 to 127)
- */
-int Encoder::GetSamplesToAverage()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	int result = 1;
-	switch (m_encodingType) {
-		case k4X:
-			result = m_encoder->readTimerConfig_AverageSize(&localStatus);
-			break;
-		case k1X:
-		case k2X:
-			result = m_counter->GetSamplesToAverage();
-			break;
-	}
-	wpi_setError(localStatus);
-	return result;
-}
-
-
-
-/**
- * Set which parameter of the encoder you are using as a process control variable.
- * 
- * @param pidSource An enum to select the parameter.
- */
-void Encoder::SetPIDSourceParameter(PIDSourceParameter pidSource)
-{
-	if (StatusIsFatal()) return;
-	m_pidSource = pidSource;
-}
-
-/**
- * Implement the PIDSource interface.
- * 
- * @return The current value of the selected source parameter.
- */
-double Encoder::PIDGet()
-{
-	if (StatusIsFatal()) return 0.0;
-	switch (m_pidSource)
-	{
-	case kDistance:
-		return GetDistance();
-	case kRate:
-		return GetRate();
-	default:
-		return 0.0;
-	}
-}
-
-void Encoder::UpdateTable() {
-	if (m_table != NULL) {
-        m_table->PutNumber("Speed", GetRate());
-        m_table->PutNumber("Distance", GetDistance());
-        m_table->PutNumber("Distance per Tick", m_distancePerPulse);
-	}
-}
-
-void Encoder::StartLiveWindowMode() {
-	
-}
-
-void Encoder::StopLiveWindowMode() {
-	
-}
-
-std::string Encoder::GetSmartDashboardType() {
-	if (m_encodingType == k4X)
-		return "Quadrature Encoder";
-	else
-		return "Encoder";
-}
-
-void Encoder::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * Encoder::GetTable() {
-	return m_table;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Encoder.h b/aos/externals/WPILib/WPILib/Encoder.h
deleted file mode 100644
index e42ae6a..0000000
--- a/aos/externals/WPILib/WPILib/Encoder.h
+++ /dev/null
@@ -1,84 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef QUAD_ENCODER_H_
-#define QUAD_ENCODER_H_
-
-#include "ChipObject.h"
-#include "CounterBase.h"
-#include "SensorBase.h"
-#include "Counter.h"
-#include "PIDSource.h"
-#include "LiveWindow/LiveWindowSendable.h"
-
-class DigitalSource;
-
-/**
- * Class to read quad encoders.
- * Quadrature encoders are devices that count shaft rotation and can sense direction. The output of
- * the QuadEncoder class is an integer that can count either up or down, and can go negative for
- * reverse direction counting. When creating QuadEncoders, a direction is supplied that changes the
- * sense of the output to make code more readable if the encoder is mounted such that forward movement
- * generates negative values. Quadrature encoders have two digital outputs, an A Channel and a B Channel
- * that are out of phase with each other to allow the FPGA to do direction sensing. 
- */
-class Encoder: public SensorBase, public CounterBase, public PIDSource, public LiveWindowSendable
-{
-public:
-
-	Encoder(uint32_t aChannel, uint32_t bChannel, bool reverseDirection=false, EncodingType encodingType = k4X);
-	Encoder(uint8_t aModuleNumber, uint32_t aChannel, uint8_t bModuleNumber, uint32_t _bChannel, bool reverseDirection=false, EncodingType encodingType = k4X);
-	Encoder(DigitalSource *aSource, DigitalSource *bSource, bool reverseDirection=false, EncodingType encodingType = k4X);
-	Encoder(DigitalSource &aSource, DigitalSource &bSource, bool reverseDirection=false, EncodingType encodingType = k4X);
-	virtual ~Encoder();
-
-	// CounterBase interface
-	void Start();
-	int32_t Get();
-	int32_t GetRaw();
-	void Reset();
-	void Stop();
-	double GetPeriod();
-	void SetMaxPeriod(double maxPeriod);
-	bool GetStopped();
-	bool GetDirection();
-	double GetDistance();
-	double GetRate();
-	void SetMinRate(double minRate);
-	void SetDistancePerPulse(double distancePerPulse);
-	void SetReverseDirection(bool reverseDirection);
-	void SetSamplesToAverage(int samplesToAverage);
-	int GetSamplesToAverage();
-	void SetPIDSourceParameter(PIDSourceParameter pidSource);
-	double PIDGet();
-	
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-
-private:
-	void InitEncoder(bool _reverseDirection, EncodingType encodingType);
-	double DecodingScaleFactor();
-
-	DigitalSource *m_aSource;		// the A phase of the quad encoder
-	DigitalSource *m_bSource;		// the B phase of the quad encoder
-	bool m_allocatedASource;		// was the A source allocated locally?
-	bool m_allocatedBSource;		// was the B source allocated locally?
-	tEncoder* m_encoder;
-	uint8_t m_index;
-	double m_distancePerPulse;		// distance of travel for each encoder tick
-	Counter *m_counter;				// Counter object for 1x and 2x encoding
-	EncodingType m_encodingType;	// Encoding type
-	PIDSourceParameter m_pidSource;// Encoder parameter that sources a PID controller
-	
-	ITable *m_table;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Error.cpp b/aos/externals/WPILib/WPILib/Error.cpp
deleted file mode 100644
index 11399ca..0000000
--- a/aos/externals/WPILib/WPILib/Error.cpp
+++ /dev/null
@@ -1,153 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Error.h"
-
-#include <taskLib.h>
-#include <cstdio>
-#include <cstring>
-
-#include "NetworkCommunication/FRCComm.h"
-#include "Timer.h"
-#include "Utility.h"
-bool Error::m_stackTraceEnabled = false;
-bool Error::m_suspendOnErrorEnabled = false;
-
-Error::Error()
-	: m_code(0)
-	, m_lineNumber(0)
-	, m_originatingObject(NULL)
-	, m_timestamp (0.0)
-{}
-
-Error::~Error()
-{}
-
-/**
- * Clones another error into this if this is currently clear. If not, does
- * nothing.
- * This is necessary because just using "if (!IsClear()) Clone(error)" has a
- * race condition which this method does not.
- * Cloning 2 errors into each other at the same time can lead to deadlocks!
- */
-void Error::CloneIfClear(const Error &error) {
-  Synchronized sync(m_semaphore);
-  if (IsClear()) {
-    DoClone(error);
-  }
-}
-
-/**
- * Clones another error into this object.
- * Cloning 2 errors into each other at the same time can lead to deadlocks!
- */
-void Error::Clone(const Error &error) {
-  Synchronized sync(m_semaphore);
-  DoClone(error);
-}
-
-void Error::DoClone(const Error &error)
-{
-  Synchronized sync(error.m_semaphore);
-	m_code = error.m_code;
-	m_message = error.m_message;
-	m_filename = error.m_filename;
-	m_function = error.m_function;
-	m_lineNumber = error.m_lineNumber;
-	m_originatingObject = error.m_originatingObject;
-	m_timestamp = error.m_timestamp;
-}
-
-bool Error::IsClear() const { return GetCode() == 0; }
-
-Error::Code Error::GetCode() const
-{	return m_code;  }
-
-std::string Error::GetMessage() const
-{	return m_message;  }
-
-std::string Error::GetFilename() const
-{	return m_filename;  }
-
-std::string Error::GetFunction() const
-{	return m_function;  }
-
-uint32_t Error::GetLineNumber() const
-{	return m_lineNumber;  }
-
-const ErrorBase* Error::GetOriginatingObject() const
-{	return m_originatingObject;  }
-
-double Error::GetTime() const
-{	return m_timestamp;  }
-
-void Error::Set(Code code, const char* contextMessage, const char* filename,
-                const char* function, uint32_t lineNumber,
-                const ErrorBase* originatingObject)  {
-  Synchronized sync(m_semaphore);
-	m_code = code;
-	m_message = contextMessage;
-	m_filename = filename;
-	m_function = function;
-	m_lineNumber = lineNumber;
-	m_originatingObject = originatingObject;
-	m_timestamp = GetTime();
-
-	Report();
-
-	if (m_suspendOnErrorEnabled) taskSuspend(0 /*self*/);
-}
-
-void Error::Report() const
-{
-	// Error string buffers
-	char error[256];
-	char error_with_code[256];
-
-	// Build error strings
-	if (m_code != -1 && m_code != 1)
-	{
-		snprintf(error, sizeof(error),
-             "%s: status = %d (0x%08X) %s ...in %s() in %s at line %d\n",
-				     m_code < 0 ? "ERROR" : "WARNING", (int32_t)m_code,
-             (uint32_t)m_code, m_message.c_str(),
-				     m_function.c_str(), m_filename.c_str(), m_lineNumber);
-		snprintf(error_with_code, sizeof(error_with_code),
-             "<Code>%ld %s", (int32_t)m_code, error);
-	} else {
-		snprintf(error, sizeof(error),
-             "%s: %s ...in %s() in %s at line %d\n",
-             m_code < 0 ? "ERROR" : "WARNING", m_message.c_str(),
-				     m_function.c_str(), m_filename.c_str(), m_lineNumber);
-		strncpy(error_with_code, error, sizeof(error_with_code));
-	}
-	// TODO: Add logging to disk
-
-	// Send to the DriverStation
-	setErrorData(error_with_code, strlen(error_with_code), 100);
-
-	// Print to console
-	printf("\n\n>>>>%s", error);
-
-	if (m_stackTraceEnabled)
-	{
-		printf("-----------<Stack Trace>----------------\n");
-		wpi_selfTrace();
-	}
-}
-
-void Error::Clear()
-{
-  Synchronized sync(m_semaphore);
-	m_code = 0;
-	m_message = "";
-	m_filename = "";
-	m_function = "";
-	m_lineNumber = 0;
-	m_originatingObject = NULL;
-	m_timestamp = 0.0;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Error.h b/aos/externals/WPILib/WPILib/Error.h
deleted file mode 100644
index 6ded992..0000000
--- a/aos/externals/WPILib/WPILib/Error.h
+++ /dev/null
@@ -1,81 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef _ERROR_H
-#define _ERROR_H
-
-#include "Base.h"
-#include "ChipObject/NiRio.h"
-#include <string>
-#include "Synchronized.h"
-
-//  Forward declarations
-class ErrorBase;
-
-/**
- * Represents an error or warning.
- *
- * All methods that can change instance data are protected by a lock so
- * that it is safe to call any methods from multiple tasks at the same time.
- */
-class Error
-{
-public:
-  // -1 is other error, 1 is other warning.
-	typedef tRioStatusCode Code;
-
-	Error();
-	~Error();
-
-	void CloneIfClear(const Error &error);
-  void Clone(const Error &error);
-	void Clear();
-	void Set(Code code, const char* contextMessage, const char* filename,
-		const char *function, uint32_t lineNumber, const ErrorBase* originatingObject);
-
-  bool IsClear() const;
-	Code GetCode() const;
-  // Have to return by value to avoid race conditions using the result for all
-  // of these methods.
-  std::string GetMessage() const;
-  std::string GetFilename() const;
-  std::string GetFunction() const;
-	uint32_t GetLineNumber() const;
-	const ErrorBase* GetOriginatingObject() const;
-	double GetTime() const;
-
-  // Enable or disable printing out a stack trace on the console whenever there
-  // is an error.
-	static void EnableStackTrace(bool enable) { m_stackTraceEnabled=enable; }
-  // Enable or disable having any task that gets an error suspend itself.
-	static void EnableSuspendOnError(bool enable) { m_suspendOnErrorEnabled=enable; }
-
-private:
-  // Deals with notifying other code of this error.
-	void Report() const;
-  // Actually implements cloning.
-  // Does not lock m_semaphore, so callers must.
-  void DoClone(const Error &error);
-
-	Code m_code;
-	std::string m_message;
-	std::string m_filename;
-	std::string m_function;
-	uint32_t m_lineNumber;
-	const ErrorBase* m_originatingObject;
-	double m_timestamp;
-  // Used for protecting all modifications to instance data.
-  // This means that all non-const methods should lock this for (at least most)
-  // of their implementations!
-  ReentrantSemaphore m_semaphore;
-
-	static bool m_stackTraceEnabled;
-	static bool m_suspendOnErrorEnabled;
-	DISALLOW_COPY_AND_ASSIGN(Error);
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/ErrorBase.cpp b/aos/externals/WPILib/WPILib/ErrorBase.cpp
deleted file mode 100644
index 8f717b9..0000000
--- a/aos/externals/WPILib/WPILib/ErrorBase.cpp
+++ /dev/null
@@ -1,212 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "ErrorBase.h"
-#include "Synchronized.h"
-#include "nivision.h"
-#define WPI_ERRORS_DEFINE_STRINGS
-#include "WPIErrors.h"
-
-#include <errnoLib.h>
-#include <symLib.h>
-#include <sysSymTbl.h>
-#include <cstdio>
-
-Error ErrorBase::_globalError;
-
-/**
- * @brief Initialize the instance status to 0 for now.
- */
-ErrorBase::ErrorBase()
-{}
-
-ErrorBase::~ErrorBase()
-{}
-
-/**
- * @brief Retrieve the error associated this object.
- * Get the error information associated with this sensor.
- */
-Error& ErrorBase::GetError() const
-{
-	return m_error;
-}
-
-/**
- * @brief Clear the current error information associated with this sensor.
- */
-void ErrorBase::ClearError() const
-{
-	m_error.Clear();
-}
-
-/**
- * @brief Set error information associated with a C library call that set an
- * error to the "errno" "global variable" (it's really a macro that calls a
- * function under VxWorks so that it's thread safe).
- * Will still set an error even if errno is 0.
- * 
- * @param contextMessage A custom message from the code that set the error.
- * @param filename Filename of the error source
- * @param function Function of the error source
- * @param lineNumber Line number of the error source
- */
-void ErrorBase::SetErrnoError(const char *contextMessage,
-		const char* filename, const char* function, uint32_t lineNumber) const
-{
-	char err[256];
-	int errNo = errnoGet();
-	if (errNo == 0)
-	{
-		snprintf(err, sizeof(err), "OK: %s", contextMessage);
-	}
-	else
-	{
-		char *statName = new char[MAX_SYS_SYM_LEN + 1];
-		int pval;
-		SYM_TYPE ptype;
-		symFindByValue(statSymTbl, errNo, statName, &pval, &ptype);
-		if (pval != errNo)
-			snprintf(err, sizeof(err), "Unknown errno 0x%08X: %s", errNo, contextMessage);
-		else
-			snprintf(err, sizeof(err), "%s (0x%08X): %s", statName, errNo, contextMessage);
-		delete [] statName;
-	}
-
-	//  Set the current error information for this object.
-	m_error.Set(-1, err, filename, function, lineNumber, this);
-
-  _globalError.CloneIfClear(m_error);
-}
-
-/**
- * @brief Set the current error information associated from the nivision Imaq API.
- * Does nothing of success is > 0.
- * 
- * @param success The return from the function
- * @param contextMessage A custom message from the code that set the error.
- * @param filename Filename of the error source
- * @param function Function of the error source
- * @param lineNumber Line number of the error source
- */
-void ErrorBase::SetImaqError(int success, const char *contextMessage, const char* filename, const char* function, uint32_t lineNumber) const
-{
-	//  If there was an error
-	if (success <= 0) {
-		char err[256];
-		snprintf(err, sizeof(err), "%s: %s", contextMessage, imaqGetErrorText(imaqGetLastError()));
-
-		//  Set the current error information for this object.
-		m_error.Set(imaqGetLastError(), err, filename, function, lineNumber, this);
-
-    _globalError.CloneIfClear(m_error);
-	}
-}
-
-/**
- * @brief Set the current error information associated with this object.
- * Does nothing if code is 0.
- * 
- * @param code The error code
- * @param contextMessage A custom message from the code that set the error.
- * @param filename Filename of the error source
- * @param function Function of the error source
- * @param lineNumber Line number of the error source
- */
-void ErrorBase::SetError(Error::Code code, const char *contextMessage,
-		const char* filename, const char* function, uint32_t lineNumber) const
-{
-	//  If there was an error
-	if (code != 0) {
-		//  Set the current error information for this object.
-		m_error.Set(code, contextMessage, filename, function, lineNumber, this);
-
-    _globalError.CloneIfClear(m_error);
-	}
-}
-
-/**
- * @brief Set the current error information associated with this object.
- * 
- * @param errorMessage The error message from WPIErrors.h
- * @param contextMessage A custom message from the code that set the error.
- * @param filename Filename of the error source
- * @param function Function of the error source
- * @param lineNumber Line number of the error source
- */
-void ErrorBase::SetWPIError(const char *errorMessage, const char *contextMessage,
-		const char* filename, const char* function, uint32_t lineNumber) const
-{
-	char err[256];
-	snprintf(err, sizeof(err), "%s: %s", errorMessage, contextMessage);
-
-	//  Set the current error information for this object.
-	m_error.Set(-1, err, filename, function, lineNumber, this);
-
-  _globalError.CloneIfClear(m_error);
-}
-
-void ErrorBase::CloneError(const ErrorBase *rhs) const
-{
-	m_error.Clone(rhs->GetError());
-}
-
-/**
-@brief Check if the current error code represents a fatal error.
-  
-@return true if the current error is fatal.
-*/
-bool ErrorBase::StatusIsFatal() const
-{
-	return m_error.GetCode() < 0;
-}
-
-/**
- * @brief Set the current global error information.
- * Does nothing if code is 0.
- * TODO: think about getting rid of this because nothing uses it any more
- *
- * @param code The error code
- * @param contextMessage A custom message from the code that set the error.
- * @param filename Filename of the error source
- * @param function Function of the error source
- * @param lineNumber Line number of the error source
- */
-void ErrorBase::SetGlobalError(Error::Code code, const char *contextMessage,
-		const char* filename, const char* function, uint32_t lineNumber)
-{
-  if (code != 0) {
-	  //  Set the current error information for this object.
-	  _globalError.Set(code, contextMessage, filename, function, lineNumber, NULL);
-  }
-}
-
-/**
- * @brief Set the current global error information.
- *
- * @param errorMessage The error message from WPIErrors.h
- * @param contextMessage A custom message from the code that set the error.
- * @param filename Filename of the error source
- * @param function Function of the error source
- * @param lineNumber Line number of the error source
- */
-void ErrorBase::SetGlobalWPIError(const char *errorMessage, const char *contextMessage,
-        const char* filename, const char* function, uint32_t lineNumber)
-{
-	char err[256];
-	snprintf(err, sizeof(err), "%s: %s", errorMessage, contextMessage);
-
-	_globalError.Set(-1, err, filename, function, lineNumber, NULL);
-}
-
-/**
-  * Retrieve the global error.
-*/
-const Error& ErrorBase::GetGlobalError()
-{
-	return _globalError;
-}
-
diff --git a/aos/externals/WPILib/WPILib/ErrorBase.h b/aos/externals/WPILib/WPILib/ErrorBase.h
deleted file mode 100644
index 7ccac2d..0000000
--- a/aos/externals/WPILib/WPILib/ErrorBase.h
+++ /dev/null
@@ -1,97 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef _ERROR_BASE_H
-#define _ERROR_BASE_H
-
-#include "Base.h"
-#include "ChipObject/NiRio.h"
-#include "Error.h"
-
-// Helper macros to fill in the context information for you. See the
-// documentation for the methods that they call for details.
-#define wpi_setErrnoErrorWithContext(context) \
-    (this->SetErrnoError((context), __FILE__, __FUNCTION__, __LINE__))
-#define wpi_setErrnoError() \
-    (wpi_setErrnoErrorWithContext(""))
-#define wpi_setImaqErrorWithContext(code, context) \
-    (this->SetImaqError((code), (context), __FILE__, __FUNCTION__, __LINE__))
-#define wpi_setErrorWithContext(code, context) \
-        (this->SetError((code), (context), __FILE__, __FUNCTION__, __LINE__))
-#define wpi_setError(code)   (wpi_setErrorWithContext(code, ""))
-#define wpi_setStaticErrorWithContext(object, code, context) \
-        (object->SetError((code), (context), __FILE__, __FUNCTION__, __LINE__))
-#define wpi_setStaticError(object, code) \
-    (wpi_setStaticErrorWithContext(object, code, ""))
-#define wpi_setGlobalErrorWithContext(code, context) \
-        (ErrorBase::SetGlobalError((code), (context), \
-                                   __FILE__, __FUNCTION__, __LINE__))
-#define wpi_setGlobalError(code)   (wpi_setGlobalErrorWithContext(code, ""))
-#define wpi_setWPIErrorWithContext(error, context) \
-        (this->SetWPIError((wpi_error_s_##error), (context), \
-                           __FILE__, __FUNCTION__, __LINE__))
-#define wpi_setWPIError(error)   (wpi_setWPIErrorWithContext(error, ""))
-#define wpi_setStaticWPIErrorWithContext(object, error, context) \
-        (object->SetWPIError((wpi_error_s_##error), (context), \
-                             __FILE__, __FUNCTION__, __LINE__))
-#define wpi_setStaticWPIError(object, error) \
-    (wpi_setStaticWPIErrorWithContext(object, error, ""))
-#define wpi_setGlobalWPIErrorWithContext(error, context) \
-        (ErrorBase::SetGlobalWPIError((wpi_error_s_##error), (context), \
-                                      __FILE__, __FUNCTION__, __LINE__))
-#define wpi_setGlobalWPIError(error) \
-    (wpi_setGlobalWPIErrorWithContext(error, ""))
-
-/**
- * Base class for most objects.
- * ErrorBase is the base class for most objects since it holds the generated error
- * for that object. In addition, there is a single instance of a global error object
- *
- * BE AWARE: This does include a mutable instance variable! This means that even
- * if you make an object const it's not really. However, all modification to
- * that instance variable is protected by a semaphore, so it does not create any
- * thread safety issues.
- *
- * All of the Set*Error methods will update the global error if there is nothing
- * there already.
- */
-class ErrorBase
-{
-public:
-	ErrorBase();
-	virtual ~ErrorBase();
-
-	Error& GetError() const;
-	void SetErrnoError(const char *contextMessage,
-		const char* filename, const char* function, uint32_t lineNumber) const;
-	void SetImaqError(int success, const char *contextMessage,
-        const char* filename, const char* function, uint32_t lineNumber) const;
-	void SetError(Error::Code code, const char *contextMessage,
-		const char* filename, const char* function, uint32_t lineNumber) const;
-	void SetWPIError(const char *errorMessage, const char *contextMessage,
-		const char* filename, const char* function, uint32_t lineNumber) const;
-	void CloneError(const ErrorBase *rhs) const;
-	void ClearError() const;
-	bool StatusIsFatal() const;
-	static void SetGlobalError(Error::Code code, const char *contextMessage,
-		const char* filename, const char* function, uint32_t lineNumber);
-	static void SetGlobalWPIError(const char *errorMessage, const char *contextMessage,
-		const char* filename, const char* function, uint32_t lineNumber);
-	static const Error& GetGlobalError();
-
-protected:
-  // This mutable is safe because Error guarantees that all modifications are
-  // protected with an internal lock.
-	mutable Error m_error;
-	// TODO: Replace globalError with a global list of all errors, but make sure
-  // that it's thread safe.
-	static Error _globalError;
-
-private:
-	DISALLOW_COPY_AND_ASSIGN(ErrorBase);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/GearTooth.cpp b/aos/externals/WPILib/WPILib/GearTooth.cpp
deleted file mode 100644
index 118b9f6..0000000
--- a/aos/externals/WPILib/WPILib/GearTooth.cpp
+++ /dev/null
@@ -1,80 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "GearTooth.h"
-#include "LiveWindow/LiveWindow.h"
-
-constexpr double GearTooth::kGearToothThreshold;
-
-/**
- * Common code called by the constructors.
- */
-void GearTooth::EnableDirectionSensing(bool directionSensitive)
-{
-	if (directionSensitive)
-	{
-		SetPulseLengthMode(kGearToothThreshold);
-	}
-}
-
-/**
- * Construct a GearTooth sensor given a channel.
- * 
- * The default module is assumed.
- * 
- * @param channel The GPIO channel on the digital module that the sensor is connected to.
- * @param directionSensitive Enable the pulse length decoding in hardware to specify count direction.
- */
-GearTooth::GearTooth(uint32_t channel, bool directionSensitive)
-	: Counter(channel)
-{
-	EnableDirectionSensing(directionSensitive);
-}
-
-/**
- * Construct a GearTooth sensor given a channel and module.
- * 
- * @param moduleNumber The digital module (1 or 2).
- * @param channel The GPIO channel on the digital module that the sensor is connected to.
- * @param directionSensitive Enable the pulse length decoding in hardware to specify count direction.
- */
-GearTooth::GearTooth(uint8_t moduleNumber, uint32_t channel, bool directionSensitive)
-	: Counter(moduleNumber, channel)
-{
-	EnableDirectionSensing(directionSensitive);
-	LiveWindow::GetInstance()->AddSensor("GearTooth", moduleNumber, channel, this);
-}
-
-/**
- * Construct a GearTooth sensor given a digital input.
- * This should be used when sharing digial inputs.
- * 
- * @param source An object that fully descibes the input that the sensor is connected to.
- * @param directionSensitive Enable the pulse length decoding in hardware to specify count direction.
- */
-GearTooth::GearTooth(DigitalSource *source, bool directionSensitive)
-	: Counter(source)
-{
-	EnableDirectionSensing(directionSensitive);
-}
-
-GearTooth::GearTooth(DigitalSource &source, bool directionSensitive): Counter(source)
-{
-	EnableDirectionSensing(directionSensitive);
-}
-
-/**
- * Free the resources associated with a gear tooth sensor.
- */
-GearTooth::~GearTooth()
-{
-}
-
-
-std::string GearTooth::GetSmartDashboardType() {
-	return "GearTooth";
-}
-
diff --git a/aos/externals/WPILib/WPILib/GearTooth.h b/aos/externals/WPILib/WPILib/GearTooth.h
deleted file mode 100644
index c2d6f49..0000000
--- a/aos/externals/WPILib/WPILib/GearTooth.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef GEAR_TOOTH_H_
-#define GEAR_TOOTH_H_
-
-#include "Counter.h"
-
-/**
- * Alias for counter class.
- * Implement the gear tooth sensor supplied by FIRST. Currently there is no reverse sensing on
- * the gear tooth sensor, but in future versions we might implement the necessary timing in the
- * FPGA to sense direction.
- */
-class GearTooth : public Counter
-{
-public:
-	/// 55 uSec for threshold
-	static constexpr double kGearToothThreshold = 55e-6;
-	GearTooth(uint32_t channel, bool directionSensitive = false);
-	GearTooth(uint8_t moduleNumber, uint32_t channel, bool directionSensitive = false);
-	GearTooth(DigitalSource *source, bool directionSensitive = false);
-	GearTooth(DigitalSource &source, bool directionSensitive = false);
-	virtual ~GearTooth();
-	void EnableDirectionSensing(bool directionSensitive);
-	
-	virtual std::string GetSmartDashboardType();
-};
-
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/GenericHID.h b/aos/externals/WPILib/WPILib/GenericHID.h
deleted file mode 100644
index 0841d12..0000000
--- a/aos/externals/WPILib/WPILib/GenericHID.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef GENERIC_HID_H
-#define GENERIC_HID_H
-
-#include <vxWorks.h>
-
-/** GenericHID Interface
- */
-class GenericHID
-{
-public:
-	typedef enum {
-		kLeftHand = 0,
-		kRightHand = 1
-	} JoystickHand;
-
-	virtual ~GenericHID() {}
-
-	virtual float GetX(JoystickHand hand = kRightHand) = 0;
-	virtual float GetY(JoystickHand hand = kRightHand) = 0;
-	virtual float GetZ() = 0;
-	virtual float GetTwist() = 0;
-	virtual float GetThrottle() = 0;
-	virtual float GetRawAxis(uint32_t axis) = 0;
-
-	virtual bool GetTrigger(JoystickHand hand = kRightHand) = 0;
-	virtual bool GetTop(JoystickHand hand = kRightHand) = 0;
-	virtual bool GetBumper(JoystickHand hand = kRightHand) = 0;
-	virtual bool GetRawButton(uint32_t button) = 0;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Global.cpp b/aos/externals/WPILib/WPILib/Global.cpp
deleted file mode 100644
index 23c29ec..0000000
--- a/aos/externals/WPILib/WPILib/Global.cpp
+++ /dev/null
@@ -1,155 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.                             */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Global.h"
-#include "Utility.h"
-
-Global *Global::instance;
-ReentrantSemaphore Global::instance_lock;
-
-Global *Global::GetInstance() {
-  Synchronized sync(instance_lock);
-  if (instance == NULL) {
-    instance = new Global();
-  }
-  return instance;
-}
-
-Global::Global() {
-	tRioStatusCode status = NiFpga_Status_Success;
-	global_.reset(tGlobal::create(&status));
-  wpi_setError(status);
-
-  AddToSingletonList();
-}
-
-Global::~Global() {
-  Synchronized sync(instance_lock);
-  instance = NULL;
-}
-
-/**
- * Return the FPGA Version number.
- * For now, expect this to be competition year.
- * @return FPGA Version number.
- */
-uint16_t Global::GetFPGAVersion()
-{
-	tRioStatusCode status = NiFpga_Status_Success;
-	uint16_t version = global_->readVersion(&status);
-	wpi_setError(status);
-	return version;
-}
-
-/**
- * Return the FPGA Revision number.
- * The format of the revision is 3 numbers.
- * The 12 most significant bits are the Major Revision.
- * the next 8 bits are the Minor Revision.
- * The 12 least significant bits are the Build Number.
- * @return FPGA Revision number.
- */
-uint32_t Global::GetFPGARevision()
-{
-	tRioStatusCode status = NiFpga_Status_Success;
-	uint32_t revision = global_->readRevision(&status);
-	wpi_setError(status);
-	return revision;
-}
-
-/**
- * Read the microsecond-resolution timer on the FPGA.
- *
- * @return The current time in microseconds according to the FPGA (since FPGA reset).
- */
-uint32_t Global::GetFPGATime()
-{
-	tRioStatusCode status = NiFpga_Status_Success;
-	uint32_t time = global_->readLocalTime(&status);
-	wpi_setError(status);
-	return time;
-}
-
-// RT hardware access functions exported from ni_emb.out
-extern "C"
-{
-	int32_t UserSwitchInput(int32_t nSwitch);
-	int32_t LedInput(int32_t led);
-	int32_t LedOutput(int32_t led, int32_t value);
-}
-
-/**
- * Read the value of the USER1 DIP switch on the cRIO.
- */
-int32_t Global::GetRIOUserSwitch()
-{
-	int32_t switchValue = UserSwitchInput(0);
-	wpi_assert(switchValue >= 0);
-	return switchValue > 0;
-}
-
-/**
- * Set the state of the USER1 status LED on the cRIO.
- */
-void Global::SetRIOUserLED(uint32_t state)
-{
-	LedOutput(0, state > 0);
-}
-
-/**
- * Get the current state of the USER1 status LED on the cRIO.
- * @return The curent state of the USER1 LED.
- */
-int32_t Global::GetRIOUserLED()
-{
-	return LedInput(0);
-}
-
-/**
- * Toggle the state of the USER1 status LED on the cRIO.
- * @return The new state of the USER1 LED.
- */
-int32_t Global::ToggleRIOUserLED()
-{
-  Synchronized sync(led_toggle_lock_);
-	int32_t ledState = !GetRIOUserLED();
-	SetRIOUserLED(ledState);
-	return ledState;
-}
-
-/**
- * Set the state of the FPGA status LED on the cRIO.
- */
-void Global::SetRIO_FPGA_LED(uint32_t state)
-{
-	tRioStatusCode status = NiFpga_Status_Success;
-	global_->writeFPGA_LED(state, &status);
-	wpi_setError(status);
-}
-
-/**
- * Get the current state of the FPGA status LED on the cRIO.
- * @return The curent state of the FPGA LED.
- */
-int32_t Global::GetRIO_FPGA_LED()
-{
-	tRioStatusCode status = NiFpga_Status_Success;
-	bool ledValue = global_->readFPGA_LED(&status);
-	wpi_setError(status);
-	return ledValue;
-}
-
-/**
- * Toggle the state of the FPGA status LED on the cRIO.
- * @return The new state of the FPGA LED.
- */
-int32_t Global::ToggleRIO_FPGA_LED()
-{
-  Synchronized sync(led_toggle_lock_);
-	int32_t ledState = !GetRIO_FPGA_LED();
-	SetRIO_FPGA_LED(ledState);
-	return ledState;
-}
diff --git a/aos/externals/WPILib/WPILib/Global.h b/aos/externals/WPILib/WPILib/Global.h
deleted file mode 100644
index 869de50..0000000
--- a/aos/externals/WPILib/WPILib/Global.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.                             */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include <memory>
-
-#include "SensorBase.h"
-#include "Synchronized.h"
-#include "ChipObject.h"
-
-#ifndef WPILIB_GLOBAL_H_
-#define WPILIB_GLOBAL_H_
-
-class Global : public SensorBase {
- public:
-  static Global *GetInstance();
-
-  uint16_t GetFPGAVersion();
-  uint32_t GetFPGARevision();
-  uint32_t GetFPGATime();
-  int32_t GetRIOUserSwitch();
-  void SetRIOUserLED(uint32_t state);
-  int32_t GetRIOUserLED();
-  int32_t ToggleRIOUserLED();
-  void SetRIO_FPGA_LED(uint32_t state);
-  int32_t GetRIO_FPGA_LED();
-  int32_t ToggleRIO_FPGA_LED();
-
- private:
-  Global();
-  ~Global();
-
-  static Global *instance;
-  static ReentrantSemaphore instance_lock;
-
-  ::std::auto_ptr<tGlobal> global_;
-  ReentrantSemaphore led_toggle_lock_;
-};
-
-#endif  // WPILIB_GLOBAL_H_
diff --git a/aos/externals/WPILib/WPILib/Gyro.cpp b/aos/externals/WPILib/WPILib/Gyro.cpp
deleted file mode 100644
index af69cf3..0000000
--- a/aos/externals/WPILib/WPILib/Gyro.cpp
+++ /dev/null
@@ -1,248 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Gyro.h"
-#include "AnalogChannel.h"
-#include "AnalogModule.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Timer.h"
-#include "WPIErrors.h"
-#include "LiveWindow/LiveWindow.h"
-
-const uint32_t Gyro::kOversampleBits;
-const uint32_t Gyro::kAverageBits;
-constexpr float Gyro::kSamplesPerSecond;
-constexpr float Gyro::kCalibrationSampleTime;
-constexpr float Gyro::kDefaultVoltsPerDegreePerSecond;
-
-/**
- * Initialize the gyro.
- * Calibrate the gyro by running for a number of samples and computing the center value for this
- * part. Then use the center value as the Accumulator center value for subsequent measurements.
- * It's important to make sure that the robot is not moving while the centering calculations are
- * in progress, this is typically done when the robot is first turned on while it's sitting at
- * rest before the competition starts.
- */
-void Gyro::InitGyro()
-{
-	m_table = NULL;
-	if (!m_analog->IsAccumulatorChannel())
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange,
-				"moduleNumber and/or channel (must be accumulator channel)");
-		if (m_channelAllocated)
-		{
-			delete m_analog;
-			m_analog = NULL;
-		}
-		return;
-	}
-
-	m_voltsPerDegreePerSecond = kDefaultVoltsPerDegreePerSecond;
-	m_analog->SetAverageBits(kAverageBits);
-	m_analog->SetOversampleBits(kOversampleBits);
-	float sampleRate = kSamplesPerSecond * 
-		(1 << (kAverageBits + kOversampleBits));
-	m_analog->GetModule()->SetSampleRate(sampleRate);
-	Wait(1.0);
-
-	m_analog->InitAccumulator();
-	Wait(kCalibrationSampleTime);
-
-	int64_t value;
-	uint32_t count;
-	m_analog->GetAccumulatorOutput(&value, &count);
-
-	m_center = (uint32_t)((float)value / (float)count + .5);
-
-	m_offset = ((float)value / (float)count) - (float)m_center;
-
-	m_analog->SetAccumulatorCenter(m_center);
-	m_analog->SetAccumulatorDeadband(0); ///< TODO: compute / parameterize this
-	m_analog->ResetAccumulator();
-	
-	SetPIDSourceParameter(kAngle);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_Gyro, m_analog->GetChannel(), m_analog->GetModuleNumber() - 1);
-	LiveWindow::GetInstance()->AddSensor("Gyro", m_analog->GetModuleNumber(), m_analog->GetChannel(), this);
-}
-
-/**
- * Gyro constructor given a slot and a channel.
- * 
- * @param moduleNumber The analog module the gyro is connected to (1).
- * @param channel The analog channel the gyro is connected to (1 or 2).
- */
-Gyro::Gyro(uint8_t moduleNumber, uint32_t channel)
-{
-	m_analog = new AnalogChannel(moduleNumber, channel);
-	m_channelAllocated = true;
-	InitGyro();
-}
-
-/**
- * Gyro constructor with only a channel.
- * 
- * Use the default analog module slot.
- * 
- * @param channel The analog channel the gyro is connected to.
- */
-Gyro::Gyro(uint32_t channel)
-{
-	m_analog = new AnalogChannel(channel);
-	m_channelAllocated = true;
-	InitGyro();
-}
-
-/**
- * Gyro constructor with a precreated analog channel object.
- * Use this constructor when the analog channel needs to be shared. There
- * is no reference counting when an AnalogChannel is passed to the gyro.
- * @param channel The AnalogChannel object that the gyro is connected to.
- */
-Gyro::Gyro(AnalogChannel *channel)
-{
-	m_analog = channel;
-	m_channelAllocated = false;
-	if (channel == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-	}
-	else
-	{
-		InitGyro();
-	}
-}
-
-Gyro::Gyro(AnalogChannel &channel)
-{
-	m_analog = &channel;
-	m_channelAllocated = false;
-	InitGyro();
-}
-
-/**
- * Reset the gyro.
- * Resets the gyro to a heading of zero. This can be used if there is significant
- * drift in the gyro and it needs to be recalibrated after it has been running.
- */
-void Gyro::Reset()
-{
-	m_analog->ResetAccumulator();
-}
-
-/**
- * Delete (free) the accumulator and the analog components used for the gyro.
- */
-Gyro::~Gyro()
-{
-	if (m_channelAllocated)
-		delete m_analog;
-}
-
-/**
- * Return the actual angle in degrees that the robot is currently facing.
- * 
- * The angle is based on the current accumulator value corrected by the oversampling rate, the
- * gyro type and the A/D calibration values.
- * The angle is continuous, that is can go beyond 360 degrees. This make algorithms that wouldn't
- * want to see a discontinuity in the gyro output as it sweeps past 0 on the second time around.
- * 
- * @return the current heading of the robot in degrees. This heading is based on integration
- * of the returned rate from the gyro.
- */
-float Gyro::GetAngle( void )
-{
-	int64_t rawValue;
-	uint32_t count;
-	m_analog->GetAccumulatorOutput(&rawValue, &count);
-
-	int64_t value = rawValue - (int64_t)((float)count * m_offset);
-
-	double scaledValue = value * 1e-9 * (double)m_analog->GetLSBWeight() * (double)(1 << m_analog->GetAverageBits()) /
-		(m_analog->GetModule()->GetSampleRate() * m_voltsPerDegreePerSecond);
-
-	return (float)scaledValue;
-}
-
-
-/**
- * Return the rate of rotation of the gyro
- * 
- * The rate is based on the most recent reading of the gyro analog value
- * 
- * @return the current rate in degrees per second
- */
-double Gyro::GetRate( void )
-{
-	return (m_analog->GetAverageValue() - ((double)m_center + m_offset)) * 1e-9 * m_analog->GetLSBWeight() 
-			/ ((1 << m_analog->GetOversampleBits()) * m_voltsPerDegreePerSecond);
-}
-
-
-/**
- * Set the gyro type based on the sensitivity.
- * This takes the number of volts/degree/second sensitivity of the gyro and uses it in subsequent
- * calculations to allow the code to work with multiple gyros.
- * 
- * @param voltsPerDegreePerSecond The type of gyro specified as the voltage that represents one degree/second.
- */
-void Gyro::SetSensitivity( float voltsPerDegreePerSecond )
-{
-	m_voltsPerDegreePerSecond = voltsPerDegreePerSecond;
-}
-
-void Gyro::SetPIDSourceParameter(PIDSourceParameter pidSource)
-{
-	if(pidSource == 0 || pidSource > 2)
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "Gyro pidSource");
-    m_pidSource = pidSource;
-}
-
-/**
- * Get the angle in degrees for the PIDSource base object.
- * 
- * @return The angle in degrees.
- */
-double Gyro::PIDGet()
-{
-	switch(m_pidSource){
-	case kRate:
-		return GetRate();
-	case kAngle:
-		return GetAngle();
-	default:
-		return 0;
-	}
-}
-
-void Gyro::UpdateTable() {
-	if (m_table != NULL) {
-		m_table->PutNumber("Value", GetAngle());
-	}
-}
-
-void Gyro::StartLiveWindowMode() {
-	
-}
-
-void Gyro::StopLiveWindowMode() {
-	
-}
-
-std::string Gyro::GetSmartDashboardType() {
-	return "Gyro";
-}
-
-void Gyro::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * Gyro::GetTable() {
-	return m_table;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Gyro.h b/aos/externals/WPILib/WPILib/Gyro.h
deleted file mode 100644
index fd5be72..0000000
--- a/aos/externals/WPILib/WPILib/Gyro.h
+++ /dev/null
@@ -1,69 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef GYRO_H_
-#define GYRO_H_
-
-#include "SensorBase.h"
-#include "PIDSource.h"
-#include "LiveWindow/LiveWindowSendable.h"
-
-class AnalogChannel;
-class AnalogModule;
-
-/**
- * Use a rate gyro to return the robots heading relative to a starting position.
- * The Gyro class tracks the robots heading based on the starting position. As the robot
- * rotates the new heading is computed by integrating the rate of rotation returned
- * by the sensor. When the class is instantiated, it does a short calibration routine
- * where it samples the gyro while at rest to determine the default offset. This is
- * subtracted from each sample to determine the heading. This gyro class must be used 
- * with a channel that is assigned one of the Analog accumulators from the FPGA. See
- * AnalogChannel for the current accumulator assignments.
- */
-class Gyro : public SensorBase, public PIDSource, public LiveWindowSendable
-{
-public:
-	static const uint32_t kOversampleBits = 10;
-	static const uint32_t kAverageBits = 0;
-	static constexpr float kSamplesPerSecond = 50.0;
-	static constexpr float kCalibrationSampleTime = 5.0;
-	static constexpr float kDefaultVoltsPerDegreePerSecond = 0.007;
-
-	Gyro(uint8_t moduleNumber, uint32_t channel);
-	explicit Gyro(uint32_t channel);
-	explicit Gyro(AnalogChannel *channel);
-	explicit Gyro(AnalogChannel &channel);
-	virtual ~Gyro();
-	virtual float GetAngle();
-	virtual double GetRate();
-	void SetSensitivity(float voltsPerDegreePerSecond);
-	void SetPIDSourceParameter(PIDSourceParameter pidSource);
-	virtual void Reset();
-
-	// PIDSource interface
-	double PIDGet();
-	
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-
-private:
-	void InitGyro();
-
-	AnalogChannel *m_analog;
-	float m_voltsPerDegreePerSecond;
-	float m_offset;
-	bool m_channelAllocated;
-	uint32_t m_center;
-	PIDSourceParameter m_pidSource;
-	
-	ITable *m_table;
-};
-#endif
diff --git a/aos/externals/WPILib/WPILib/HiTechnicColorSensor.cpp b/aos/externals/WPILib/WPILib/HiTechnicColorSensor.cpp
deleted file mode 100644
index 39850dc..0000000
--- a/aos/externals/WPILib/WPILib/HiTechnicColorSensor.cpp
+++ /dev/null
@@ -1,388 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "HiTechnicColorSensor.h"
-#include "DigitalModule.h"
-#include "I2C.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "networktables2/type/NumberArray.h"
-#include "WPIErrors.h"
-
-const uint8_t HiTechnicColorSensor::kAddress;
-const uint8_t HiTechnicColorSensor::kManufacturerBaseRegister;
-const uint8_t HiTechnicColorSensor::kManufacturerSize;
-const uint8_t HiTechnicColorSensor::kSensorTypeBaseRegister;
-const uint8_t HiTechnicColorSensor::kSensorTypeSize;
-const uint8_t HiTechnicColorSensor::kModeRegister;
-const uint8_t HiTechnicColorSensor::kColorRegister;
-const uint8_t HiTechnicColorSensor::kRedRegister;
-const uint8_t HiTechnicColorSensor::kGreenRegister;
-const uint8_t HiTechnicColorSensor::kBlueRegister;
-const uint8_t HiTechnicColorSensor::kRawRedRegister;
-const uint8_t HiTechnicColorSensor::kRawGreenRegister;
-const uint8_t HiTechnicColorSensor::kRawBlueRegister;
-
-/**
- * Constructor.
- * 
- * @param moduleNumber The digital module that the sensor is plugged into (1 or 2).
- */
-HiTechnicColorSensor::HiTechnicColorSensor(uint8_t moduleNumber)
-	: m_i2c (NULL)
-{
-	m_table = NULL;
-	DigitalModule *module = DigitalModule::GetInstance(moduleNumber);
-	m_mode = kActive;
-	
-	if (module)
-	{
-		m_i2c = module->GetI2C(kAddress);
-	
-		// Verify Sensor
-		const uint8_t kExpectedManufacturer[] = "HiTechnc";
-		const uint8_t kExpectedSensorType[] = "ColorPD ";
-		if ( ! m_i2c->VerifySensor(kManufacturerBaseRegister, kManufacturerSize, kExpectedManufacturer) )
-		{
-			wpi_setWPIError(CompassManufacturerError);
-			return;
-		}
-		if ( ! m_i2c->VerifySensor(kSensorTypeBaseRegister, kSensorTypeSize, kExpectedSensorType) )
-		{
-			wpi_setWPIError(CompassTypeError);
-		}
-		
-		nUsageReporting::report(nUsageReporting::kResourceType_HiTechnicColorSensor, moduleNumber - 1);
-	}
-}
-
-/**
- * Destructor.
- */
-HiTechnicColorSensor::~HiTechnicColorSensor()
-{
-	delete m_i2c;
-	m_i2c = NULL;
-}
-
-/**
- * Get the estimated color.
- *
- * Gets a color estimate from the sensor corresponding to the
- * table found with the sensor or at the following site:
- * http://www.hitechnic.com/cgi-bin/commerce.cgi?preadd=action&key=NCO1038
- *
- * @return The estimated color.
- */
-uint8_t HiTechnicColorSensor::GetColor()
-{
-	uint8_t color = 0;
-	
-	if(m_mode != kActive)
-	{
-		SetMode(kActive);
-	}
-	if (m_i2c)
-	{
-		m_i2c->Read(kColorRegister, sizeof(color), &color);
-	}
-	return color;
-}
-
-/**
- * Get the Red value.
- *
- * Gets the (0-255) red value from the sensor.
- * 
- * The sensor must be in active mode to access the regular RGB data
- * if the sensor is not in active mode, it will be placed into active
- * mode by this method.
- *
- * @return The Red sensor value.
- */
-uint8_t HiTechnicColorSensor::GetRed()
-{
-	uint8_t red = 0;
-	
-	if(m_mode != kActive)
-	{
-		SetMode(kActive);
-	}
-	if (m_i2c)
-	{
-		m_i2c->Read(kRedRegister, sizeof(red), &red);
-	}
-	return red;
-}
-
-/**
- * Get the Green value.
- *
- * Gets the(0-255) green value from the sensor.
- * 
- * The sensor must be in active mode to access the regular RGB data
- * if the sensor is not in active mode, it will be placed into active
- * mode by this method.
- * 
- * @return The Green sensor value.
- */
-uint8_t HiTechnicColorSensor::GetGreen()
-{
-	uint8_t green = 0;
-	
-	if(m_mode != kActive)
-	{
-		SetMode(kActive);
-	}
-	if (m_i2c)
-	{
-		m_i2c->Read(kGreenRegister, sizeof(green), &green);
-	}
-	return green;
-}
-
-/**
- * Get the Blue value.
- *
- * Gets the raw (0-255) blue value from the sensor.
- * 
- * The sensor must be in active mode to access the regular RGB data
- * if the sensor is not in active mode, it will be placed into active
- * mode by this method.
- * 
- * @return The Blue sensor value.
- */
-uint8_t HiTechnicColorSensor::GetBlue()
-{
-	uint8_t blue = 0;
-	
-	if(m_mode != kActive)
-	{
-		SetMode(kActive);
-	}
-	if (m_i2c)
-	{
-		m_i2c->Read(kBlueRegister, sizeof(blue), &blue);
-	}
-	return blue;
-}
-
-/**
- * Get the value of all three colors from a single sensor reading.
- * Using this method ensures that all three values come from the
- * same sensor reading, using the individual color methods provides
- * no such guarantee.
- * 
- * The sensor must be in active mode to access the regular RGB data.
- * If the sensor is not in active mode, it will be placed into active
- * mode by this method.
- * 
- * @return RGB object with the three color values
- */
-HiTechnicColorSensor::RGB HiTechnicColorSensor::GetRGB()
-{
-	uint8_t colors[3] = {0,0,0};
-	RGB result;
-	
-	if(m_mode != kActive)
-	{
-		SetMode(kActive);
-	}
-	if(m_i2c)
-	{
-		m_i2c->Read(kRawRedRegister, sizeof(colors), (uint8_t*)&colors);
-	}
-	
-	result.red = colors[0];
-	result.green = colors[1];
-	result.blue = colors[2];
-	
-	return result;
-}
-
-/**
- * Get the Raw Red value.
- *
- * Gets the (0-65536) raw red value from the sensor.
- * 
- * The sensor must be in raw or passive mode to access the regular RGB data
- * if the sensor is not in raw or passive mode, it will be placed into raw
- * mode by this method.
- *
- * @return The Raw Red sensor value.
- */
-uint16_t HiTechnicColorSensor::GetRawRed()
-{
-	uint16_t rawRed = 0;
-	
-	if(m_mode == kActive)
-	{
-		SetMode(kRaw);
-	}
-	if (m_i2c)
-	{
-		m_i2c->Read(kRawRedRegister, sizeof(rawRed), (uint8_t *)&rawRed);
-	}
-	return rawRed;
-}
-
-/**
-   * Get the Raw Green value.
-   *
-   * Gets the (0-65536) raw green value from the sensor.
-   * 
-   * The sensor must be in raw or passive mode to access the regular RGB data
-   * if the sensor is not in raw or passive mode, it will be placed into raw
-   * mode by this method.
-   *
-   * @return The Raw Green sensor value.
-   */
-uint16_t HiTechnicColorSensor::GetRawGreen()
-{
-	uint16_t rawGreen = 0;
-	
-	if(m_mode == kActive)
-	{
-		SetMode(kRaw);
-	}
-	if (m_i2c)
-	{
-		m_i2c->Read(kRawGreenRegister, sizeof(rawGreen), (uint8_t *)&rawGreen);
-	}
-	return rawGreen;
-}
-
-/**
- * Get the Raw Blue value.
- *
- * Gets the (0-65536) raw blue value from the sensor.
- * 
- * The sensor must be in raw or passive mode to access the regular RGB data
- * if the sensor is not in raw or passive mode, it will be placed into raw
- * mode by this method.
- *
- * @return The Raw Blue sensor value.
- */
-uint16_t HiTechnicColorSensor::GetRawBlue()
-{
-	uint16_t rawBlue = 0;
-	
-	if(m_mode == kActive)
-	{
-		SetMode(kRaw);
-	}
-	if (m_i2c)
-	{
-		m_i2c->Read(kRawBlueRegister, sizeof(rawBlue), (uint8_t *)&rawBlue);
-	}
-	return rawBlue;
-}
-
-/**
- * Get the raw value of all three colors from a single sensor reading.
- * Using this method ensures that all three values come from the
- * same sensor reading, using the individual color methods provides
- * no such guarantee.
- *
- * Gets the (0-65536) raw color values from the sensor.
- * 
- * The sensor must be in raw or passive mode to access the regular RGB data
- * if the sensor is not in raw or passive mode, it will be placed into raw
- * mode by this method.
- *
- * @return An RGB object with the raw sensor values.
- */
-HiTechnicColorSensor::RGB HiTechnicColorSensor::GetRawRGB()
-{
-	uint8_t colors[6] = {0,0,0,0,0,0};
-	RGB result;
-	
-	if(m_mode != kActive)
-	{
-		SetMode(kActive);
-	}
-	if(m_i2c)
-	{
-		m_i2c->Read(kRedRegister, sizeof(colors), (uint8_t*)&colors);
-	}
-	
-	result.red = (colors[0]<<8) + colors[1];
-	result.green = (colors[2]<<8) + colors[3];
-	result.blue = (colors[4]<<8) + colors[5];
-	
-	return result;
-}
-
-/**
- * Set the Mode of the color sensor
- * This method is used to set the color sensor to one of the three modes,
- * active, passive or raw. The sensor defaults to active mode which uses the
- * internal LED and returns an interpreted color value and 3 8-bit RGB channel
- * values. Raw mode uses the internal LED and returns 3 16-bit RGB channel values.
- * Passive mode disables the internal LED and returns 3 16-bit RGB channel values.
- * @param mode The mode to set
- */
-void HiTechnicColorSensor::SetMode(tColorMode mode)
-{
-	if(m_i2c)
-	{
-		m_i2c->Write(kModeRegister, (uint8_t)mode);
-	}
-}
-
-/*
- * Live Window code, only does anything if live window is activated.
- */
-std::string HiTechnicColorSensor::GetType()
-{
-    return "Compass";
-}
-
-/**
- * {@inheritDoc}
- */
-void HiTechnicColorSensor::InitTable(ITable *subtable) {
-    m_table = subtable;
-    UpdateTable();
-}
-
-/**
- * {@inheritDoc}
- */
-void HiTechnicColorSensor::UpdateTable() {
-    if (m_table != NULL) {
-        m_table->PutNumber("Value", GetColor());
-		NumberArray* rgb = new NumberArray();
-		rgb->add(GetRed());
-		rgb->add(GetGreen());
-		rgb->add(GetBlue());
-		m_table->PutValue("RGB", *rgb);
-		delete rgb;
-    }
-}
-
-/**
- * {@inheritDoc}
- */
-ITable* HiTechnicColorSensor::GetTable()
-{
-    return m_table;
-}
-
-/**
- * {@inheritDoc}
- */
-void HiTechnicColorSensor::StartLiveWindowMode()
-{
-	
-}
-
-/**
- * {@inheritDoc}
- */
-void HiTechnicColorSensor::StopLiveWindowMode()
-{
-	
-}
diff --git a/aos/externals/WPILib/WPILib/HiTechnicColorSensor.h b/aos/externals/WPILib/WPILib/HiTechnicColorSensor.h
deleted file mode 100644
index e61fcb7..0000000
--- a/aos/externals/WPILib/WPILib/HiTechnicColorSensor.h
+++ /dev/null
@@ -1,78 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __HiTechnicColorSensor_h__
-#define __HiTechnicColorSensor_h__
-
-#include "SensorBase.h"
-#include "LiveWindow/LiveWindowSendable.h"
-
-class I2C;
-
-/**
- * HiTechnic NXT Color Sensor.
- *
- * This class allows access to a HiTechnic NXT Color Sensor on an I2C bus.
- * These sensors do not allow changing addresses so you cannot have more
- * than one on a single bus.
- *
- * Details on the sensor can be found here:
- *   http://www.hitechnic.com/index.html?lang=en-us&target=d17.html
- *
- */
-class HiTechnicColorSensor : public SensorBase
-{
-public:
-	enum tColorMode {kActive = 0, kPassive = 1, kRaw = 3};
-	typedef struct{
-		uint16_t red;
-		uint16_t blue;
-		uint16_t green;
-	}RGB;
-	explicit HiTechnicColorSensor(uint8_t moduleNumber);
-	virtual ~HiTechnicColorSensor();
-	uint8_t GetColor();
-	uint8_t GetRed();
-	uint8_t GetGreen();
-	uint8_t GetBlue();
-	RGB GetRGB();
-	uint16_t GetRawRed();
-	uint16_t GetRawGreen();
-	uint16_t GetRawBlue();
-	RGB GetRawRGB();
-	void SetMode(tColorMode mode);
-	
-	
-	//LiveWindowSendable interface
-	virtual std::string GetType();
-	virtual void InitTable(ITable *subtable);
-	virtual void UpdateTable();
-	virtual ITable* GetTable();
-	virtual void StartLiveWindowMode();
-	virtual void StopLiveWindowMode(); 
-
-private:
-	static const uint8_t kAddress = 0x02;
-	static const uint8_t kManufacturerBaseRegister = 0x08;
-	static const uint8_t kManufacturerSize = 0x08;
-	static const uint8_t kSensorTypeBaseRegister = 0x10;
-	static const uint8_t kSensorTypeSize = 0x08;
-	static const uint8_t kModeRegister = 0x41;
-	static const uint8_t kColorRegister = 0x42;
-	static const uint8_t kRedRegister = 0x43;
-	static const uint8_t kGreenRegister = 0x44;
-	static const uint8_t kBlueRegister = 0x45;
-	static const uint8_t kRawRedRegister = 0x43;
-	static const uint8_t kRawGreenRegister = 0x45;
-	static const uint8_t kRawBlueRegister = 0x47;
-	
-	int m_mode;
-	I2C* m_i2c;
-	ITable *m_table;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/HiTechnicCompass.cpp b/aos/externals/WPILib/WPILib/HiTechnicCompass.cpp
deleted file mode 100644
index 2a98aa9..0000000
--- a/aos/externals/WPILib/WPILib/HiTechnicCompass.cpp
+++ /dev/null
@@ -1,108 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "HiTechnicCompass.h"
-#include "DigitalModule.h"
-#include "I2C.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "WPIErrors.h"
-#include "LiveWindow/LiveWindow.h"
-
-const uint8_t HiTechnicCompass::kAddress;
-const uint8_t HiTechnicCompass::kManufacturerBaseRegister;
-const uint8_t HiTechnicCompass::kManufacturerSize;
-const uint8_t HiTechnicCompass::kSensorTypeBaseRegister;
-const uint8_t HiTechnicCompass::kSensorTypeSize;
-const uint8_t HiTechnicCompass::kHeadingRegister;
-
-/**
- * Constructor.
- * 
- * @param moduleNumber The digital module that the sensor is plugged into (1 or 2).
- */
-HiTechnicCompass::HiTechnicCompass(uint8_t moduleNumber)
-	: m_i2c (NULL)
-{
-	m_table = NULL;
-	DigitalModule *module = DigitalModule::GetInstance(moduleNumber);
-	if (module)
-	{
-		m_i2c = module->GetI2C(kAddress);
-	
-		// Verify Sensor
-		const uint8_t kExpectedManufacturer[] = "HiTechnc";
-		const uint8_t kExpectedSensorType[] = "Compass ";
-		if ( ! m_i2c->VerifySensor(kManufacturerBaseRegister, kManufacturerSize, kExpectedManufacturer) )
-		{
-			wpi_setWPIError(CompassManufacturerError);
-			return;
-		}
-		if ( ! m_i2c->VerifySensor(kSensorTypeBaseRegister, kSensorTypeSize, kExpectedSensorType) )
-		{
-			wpi_setWPIError(CompassTypeError);
-		}
-
-		nUsageReporting::report(nUsageReporting::kResourceType_HiTechnicCompass, moduleNumber - 1);
-		LiveWindow::GetInstance()->AddSensor("HiTechnicCompass", moduleNumber, 0, this);
-	}
-}
-
-/**
- * Destructor.
- */
-HiTechnicCompass::~HiTechnicCompass()
-{
-	delete m_i2c;
-	m_i2c = NULL;
-}
-
-/**
- * Get the compass angle in degrees.
- * 
- * The resolution of this reading is 1 degree.
- * 
- * @return Angle of the compass in degrees.
- */
-float HiTechnicCompass::GetAngle()
-{
-	uint16_t heading = 0;
-	if (m_i2c)
-	{
-		m_i2c->Read(kHeadingRegister, sizeof(heading), (uint8_t *)&heading);
-
-		// Sensor is little endian... swap bytes
-		heading = (heading >> 8) | (heading << 8);
-	}
-	return (float)heading;
-}
-
-void HiTechnicCompass::UpdateTable() {
-	if (m_table != NULL) {
-		m_table->PutNumber("Value", GetAngle());
-	}
-}
-
-void HiTechnicCompass::StartLiveWindowMode() {
-	
-}
-
-void HiTechnicCompass::StopLiveWindowMode() {
-	
-}
-
-std::string HiTechnicCompass::GetSmartDashboardType() {
-	return "HiTechnicCompass";
-}
-
-void HiTechnicCompass::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * HiTechnicCompass::GetTable() {
-	return m_table;
-}
-
diff --git a/aos/externals/WPILib/WPILib/HiTechnicCompass.h b/aos/externals/WPILib/WPILib/HiTechnicCompass.h
deleted file mode 100644
index de7de61..0000000
--- a/aos/externals/WPILib/WPILib/HiTechnicCompass.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __HiTechnicCompass_h__
-#define __HiTechnicCompass_h__
-
-#include "SensorBase.h"
-#include "LiveWindow/LiveWindowSendable.h"
-
-class I2C;
-
-/**
- * HiTechnic NXT Compass.
- * 
- * This class alows access to a HiTechnic NXT Compass on an I2C bus.
- * These sensors to not allow changing addresses so you cannot have more
- *   than one on a single bus.
- * 
- * Details on the sensor can be found here:
- *   http://www.hitechnic.com/index.html?lang=en-us&target=d17.html
- * 
- * @todo Implement a calibration method for the sensor.
- */
-class HiTechnicCompass : public SensorBase, public LiveWindowSendable
-{
-public:
-	explicit HiTechnicCompass(uint8_t moduleNumber);
-	virtual ~HiTechnicCompass();
-	float GetAngle();
-	
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-
-private:
-	static const uint8_t kAddress = 0x02;
-	static const uint8_t kManufacturerBaseRegister = 0x08;
-	static const uint8_t kManufacturerSize = 0x08;
-	static const uint8_t kSensorTypeBaseRegister = 0x10;
-	static const uint8_t kSensorTypeSize = 0x08;
-	static const uint8_t kHeadingRegister = 0x44;
-
-	I2C* m_i2c;
-	
-	ITable *m_table;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/I2C.cpp b/aos/externals/WPILib/WPILib/I2C.cpp
deleted file mode 100644
index a4b1b85..0000000
--- a/aos/externals/WPILib/WPILib/I2C.cpp
+++ /dev/null
@@ -1,236 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "I2C.h"
-#include "DigitalModule.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Synchronized.h"
-#include "WPIErrors.h"
-#include <taskLib.h>
-
-SEM_ID I2C::m_semaphore = NULL;
-uint32_t I2C::m_objCount = 0;
-
-/**
- * Constructor.
- * 
- * @param module The Digital Module to which the device is conneted.
- * @param deviceAddress The address of the device on the I2C bus.
- */
-I2C::I2C(DigitalModule *module, uint8_t deviceAddress)
-	: m_module (module)
-	, m_deviceAddress (deviceAddress)
-	, m_compatibilityMode (true)
-{
-	if (m_semaphore == NULL)
-	{
-		m_semaphore = semMCreate(SEM_Q_PRIORITY | SEM_DELETE_SAFE | SEM_INVERSION_SAFE);
-	}
-	m_objCount++;
-
-	nUsageReporting::report(nUsageReporting::kResourceType_I2C, deviceAddress, module->GetNumber() - 1);
-}
-
-/**
- * Destructor.
- */
-I2C::~I2C()
-{
-	m_objCount--;
-	if (m_objCount <= 0)
-	{
-		semDelete(m_semaphore);
-		m_semaphore = NULL;
-	}
-}
-
-/**
- * Generic transaction.
- * 
- * This is a lower-level interface to the I2C hardware giving you more control over each transaction.
- * 
- * @param dataToSend Buffer of data to send as part of the transaction.
- * @param sendSize Number of bytes to send as part of the transaction. [0..6]
- * @param dataReceived Buffer to read data into.
- * @param receiveSize Number of byted to read from the device. [0..7]
- * @return Transfer Aborted... false for success, true for aborted.
- */
-bool I2C::Transaction(uint8_t *dataToSend, uint8_t sendSize, uint8_t *dataReceived, uint8_t receiveSize)
-{
-	if (sendSize > 6)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "sendSize");
-		return true;
-	}
-	if (receiveSize > 7)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "receiveSize");
-		return true;
-	}
-
-	uint32_t data=0;
-	uint32_t dataHigh=0;
-	uint32_t i;
-	for(i=0; i<sendSize && i<sizeof(data); i++)
-	{
-		data |= (uint32_t)dataToSend[i] << (8*i);
-	}
-	for(; i<sendSize; i++)
-	{
-		dataHigh |= (uint32_t)dataToSend[i] << (8*(i-sizeof(data)));
-	}
-
-	bool aborted = true;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	{
-		Synchronized sync(m_semaphore);
-		m_module->m_fpgaDIO->writeI2CConfig_Address(m_deviceAddress, &localStatus);
-		m_module->m_fpgaDIO->writeI2CConfig_BytesToWrite(sendSize, &localStatus);
-		m_module->m_fpgaDIO->writeI2CConfig_BytesToRead(receiveSize, &localStatus);
-		if (sendSize > 0) m_module->m_fpgaDIO->writeI2CDataToSend(data, &localStatus);
-		if (sendSize > sizeof(data)) m_module->m_fpgaDIO->writeI2CConfig_DataToSendHigh(dataHigh, &localStatus);
-		m_module->m_fpgaDIO->writeI2CConfig_BitwiseHandshake(m_compatibilityMode, &localStatus);
-		uint8_t transaction = m_module->m_fpgaDIO->readI2CStatus_Transaction(&localStatus);
-		m_module->m_fpgaDIO->strobeI2CStart(&localStatus);
-		while(transaction == m_module->m_fpgaDIO->readI2CStatus_Transaction(&localStatus)) taskDelay(1);
-		while(!m_module->m_fpgaDIO->readI2CStatus_Done(&localStatus)) taskDelay(1);
-		aborted = m_module->m_fpgaDIO->readI2CStatus_Aborted(&localStatus);
-		if (receiveSize > 0) data = m_module->m_fpgaDIO->readI2CDataReceived(&localStatus);
-		if (receiveSize > sizeof(data)) dataHigh = m_module->m_fpgaDIO->readI2CStatus_DataReceivedHigh(&localStatus);
-	}
-	wpi_setError(localStatus);
-
-	for(i=0; i<receiveSize && i<sizeof(data); i++)
-	{
-		dataReceived[i] = (data >> (8*i)) & 0xFF;
-	}
-	for(; i<receiveSize; i++)
-	{
-		dataReceived[i] = (dataHigh >> (8*(i-sizeof(data)))) & 0xFF;
-	}
-	return aborted;
-}
-
-/**
- * Attempt to address a device on the I2C bus.
- * 
- * This allows you to figure out if there is a device on the I2C bus that
- * responds to the address specified in the constructor.
- * 
- * @return Transfer Aborted... false for success, true for aborted.
- */
-bool I2C::AddressOnly()
-{
-	return Transaction(NULL, 0, NULL, 0);
-}
-
-/**
- * Execute a write transaction with the device.
- * 
- * Write a single byte to a register on a device and wait until the
- *   transaction is complete.
- * 
- * @param registerAddress The address of the register on the device to be written.
- * @param data The byte to write to the register on the device.
- * @return Transfer Aborted... false for success, true for aborted.
- */
-bool I2C::Write(uint8_t registerAddress, uint8_t data)
-{
-	uint8_t buffer[2];
-	buffer[0] = registerAddress;
-	buffer[1] = data;
-	return Transaction(buffer, sizeof(buffer), NULL, 0);
-}
-
-/**
- * Execute a read transaction with the device.
- * 
- * Read 1 to 7 bytes from a device.
- * Most I2C devices will auto-increment the register pointer internally
- *   allowing you to read up to 7 consecutive registers on a device in a
- *   single transaction.
- * 
- * @param registerAddress The register to read first in the transaction.
- * @param count The number of bytes to read in the transaction. [1..7]
- * @param buffer A pointer to the array of bytes to store the data read from the device.
- * @return Transfer Aborted... false for success, true for aborted.
- */
-bool I2C::Read(uint8_t registerAddress, uint8_t count, uint8_t *buffer)
-{
-	if (count < 1 || count > 7)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "count");
-		return true;
-	}
-	if (buffer == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "buffer");
-		return true;
-	}
-
-	return Transaction(&registerAddress, sizeof(registerAddress), buffer, count);
-}
-
-/**
- * Send a broadcast write to all devices on the I2C bus.
- * 
- * This is not currently implemented!
- * 
- * @param registerAddress The register to write on all devices on the bus.
- * @param data The value to write to the devices.
- */
-void I2C::Broadcast(uint8_t registerAddress, uint8_t data)
-{
-}
-
-/**
- * SetCompatibilityMode
- * 
- * Enables bitwise clock skewing detection.  This will reduce the I2C interface speed,
- * but will allow you to communicate with devices that skew the clock at abnormal times.
- * Compatability mode is enabled by default. 
- * @param enable Enable compatibility mode for this sensor or not.
- */
-void I2C::SetCompatibilityMode(bool enable)
-{
-	m_compatibilityMode = enable;
-
-	const char *cm = NULL;
-	if (m_compatibilityMode) cm = "C";
-	nUsageReporting::report(nUsageReporting::kResourceType_I2C, m_deviceAddress, m_module->GetNumber() - 1, cm);
-}
-
-/**
- * Verify that a device's registers contain expected values.
- * 
- * Most devices will have a set of registers that contain a known value that
- *   can be used to identify them.  This allows an I2C device driver to easily
- *   verify that the device contains the expected value.
- * 
- * @pre The device must support and be configured to use register auto-increment.
- * 
- * @param registerAddress The base register to start reading from the device.
- * @param count The size of the field to be verified.
- * @param expected A buffer containing the values expected from the device.
- */
-bool I2C::VerifySensor(uint8_t registerAddress, uint8_t count, const uint8_t *expected)
-{
-	// TODO: Make use of all 7 read bytes
-	uint8_t deviceData[4];
-	for (uint8_t i=0, curRegisterAddress = registerAddress; i < count; i+=4, curRegisterAddress+=4)
-	{
-		uint8_t toRead = count - i < 4 ? count - i : 4;
-		// Read the chunk of data.  Return false if the sensor does not respond.
-		if (Read(curRegisterAddress, toRead, deviceData)) return false;
-
-		for (uint8_t j=0; j<toRead; j++)
-		{
-			if(deviceData[j] != expected[i + j]) return false;
-		}
-	}
-	return true;
-}
-
diff --git a/aos/externals/WPILib/WPILib/I2C.h b/aos/externals/WPILib/WPILib/I2C.h
deleted file mode 100644
index f200737..0000000
--- a/aos/externals/WPILib/WPILib/I2C.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef I2C_H
-#define I2C_H
-
-#include "SensorBase.h"
-
-class DigitalModule;
-
-/**
- * I2C bus interface class.
- * 
- * This class is intended to be used by sensor (and other I2C device) drivers.
- * It probably should not be used directly.
- * 
- * It is constructed by calling DigitalModule::GetI2C() on a DigitalModule object.
- */
-class I2C : SensorBase
-{
-	friend class DigitalModule;
-public:
-	virtual ~I2C();
-	bool Transaction(uint8_t *dataToSend, uint8_t sendSize, uint8_t *dataReceived, uint8_t receiveSize);
-	bool AddressOnly();
-	bool Write(uint8_t registerAddress, uint8_t data);
-	bool Read(uint8_t registerAddress, uint8_t count, uint8_t *data);
-	void Broadcast(uint8_t registerAddress, uint8_t data);
-	void SetCompatibilityMode(bool enable);
-
-	bool VerifySensor(uint8_t registerAddress, uint8_t count, const uint8_t *expected);
-private:
-	static SEM_ID m_semaphore;
-	static uint32_t m_objCount;
-
-	I2C(DigitalModule *module, uint8_t deviceAddress);
-
-	DigitalModule *m_module;
-	uint8_t m_deviceAddress;
-	bool m_compatibilityMode;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Interfaces/Potentiometer.h b/aos/externals/WPILib/WPILib/Interfaces/Potentiometer.h
deleted file mode 100644
index bda5049..0000000
--- a/aos/externals/WPILib/WPILib/Interfaces/Potentiometer.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef _POTENTIOMETER_H
-#define _POTENTIOMETER_H
-
-#include "PIDSource.h"
-
-class Potentiometer : public PIDSource {
-public:
-	virtual double Get() = 0;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/InterruptableSensorBase.cpp b/aos/externals/WPILib/WPILib/InterruptableSensorBase.cpp
deleted file mode 100644
index ad9aa4b..0000000
--- a/aos/externals/WPILib/WPILib/InterruptableSensorBase.cpp
+++ /dev/null
@@ -1,98 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "InterruptableSensorBase.h"
-#include "Utility.h"
-
-InterruptableSensorBase::InterruptableSensorBase()
-{
-	m_manager = NULL;
-	m_interrupt = NULL;
-}
-
-InterruptableSensorBase::~InterruptableSensorBase()
-{
-
-}
-
-void InterruptableSensorBase::AllocateInterrupts(bool watcher)
-{
-	wpi_assert(m_interrupt == NULL);
-	wpi_assert(m_manager == NULL);
-	// Expects the calling leaf class to allocate an interrupt index.
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_interrupt = tInterrupt::create(m_interruptIndex, &localStatus);
-	m_interrupt->writeConfig_WaitForAck(false, &localStatus);
-	m_manager = new tInterruptManager(1 << m_interruptIndex, watcher, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Cancel interrupts on this device.
- * This deallocates all the chipobject structures and disables any interrupts.
- */
-void InterruptableSensorBase::CancelInterrupts()
-{
-	wpi_assert(m_manager != NULL);
-	wpi_assert(m_interrupt != NULL);
-	delete m_interrupt;
-	delete m_manager;
-	m_interrupt = NULL;
-	m_manager = NULL;
-}
-
-/**
- * In synchronous mode, wait for the defined interrupt to occur.
- * @param timeout Timeout in seconds
- */
-void InterruptableSensorBase::WaitForInterrupt(float timeout)
-{
-	wpi_assert(m_manager != NULL);
-	wpi_assert(m_interrupt != NULL);
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_manager->watch((int32_t)(timeout * 1e3), &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Enable interrupts to occur on this input.
- * Interrupts are disabled when the RequestInterrupt call is made. This gives time to do the
- * setup of the other options before starting to field interrupts.
- */
-void InterruptableSensorBase::EnableInterrupts()
-{
-	wpi_assert(m_manager != NULL);
-	wpi_assert(m_interrupt != NULL);
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_manager->enable(&localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Disable Interrupts without without deallocating structures.
- */
-void InterruptableSensorBase::DisableInterrupts()
-{
-	wpi_assert(m_manager != NULL);
-	wpi_assert(m_interrupt != NULL);
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_manager->disable(&localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Return the timestamp for the interrupt that occurred most recently.
- * This is in the same time domain as GetClock().
- * @return Timestamp in seconds since boot.
- */
-double InterruptableSensorBase::ReadInterruptTimestamp()
-{
-	wpi_assert(m_interrupt != NULL);
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t timestamp = m_interrupt->readTimeStamp(&localStatus);
-	wpi_setError(localStatus);
-	return timestamp * 1e-6;
-}
diff --git a/aos/externals/WPILib/WPILib/InterruptableSensorBase.h b/aos/externals/WPILib/WPILib/InterruptableSensorBase.h
deleted file mode 100644
index 96a5309..0000000
--- a/aos/externals/WPILib/WPILib/InterruptableSensorBase.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef INTERRUPTABLE_SENSORBASE_H_
-#define INTERRUPTABLE_SENSORBASE_H_
-
-#include "ChipObject.h"
-#include "SensorBase.h"
-
-class InterruptableSensorBase : public SensorBase
-{
-public:
-	InterruptableSensorBase();
-	virtual ~InterruptableSensorBase();
-	virtual void RequestInterrupts(tInterruptHandler handler, void *param) = 0; ///< Asynchronus handler version.
-	virtual void RequestInterrupts() = 0;		///< Synchronus Wait version.
-	virtual void CancelInterrupts();			///< Free up the underlying chipobject functions.
-	virtual void WaitForInterrupt(float timeout); ///< Synchronus version.
-	virtual void EnableInterrupts();			///< Enable interrupts - after finishing setup.
-	virtual void DisableInterrupts();		///< Disable, but don't deallocate.
-	virtual double ReadInterruptTimestamp();		///< Return the timestamp for the interrupt that occurred.
-protected:
-	tInterrupt *m_interrupt;
-	tInterruptManager *m_manager;
-	uint32_t m_interruptIndex;
-	void AllocateInterrupts(bool watcher);
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/IterativeRobot.cpp b/aos/externals/WPILib/WPILib/IterativeRobot.cpp
deleted file mode 100644
index c3220cf..0000000
--- a/aos/externals/WPILib/WPILib/IterativeRobot.cpp
+++ /dev/null
@@ -1,337 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "IterativeRobot.h"
-
-#include "DriverStation.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include <taskLib.h>
-#include "SmartDashboard/SmartDashboard.h"
-#include "LiveWindow/LiveWindow.h"
-#include "networktables/NetworkTable.h"
-
-constexpr double IterativeRobot::kDefaultPeriod;
-
-/**
- * Constructor for RobotIterativeBase
- * 
- * The constructor initializes the instance variables for the robot to indicate
- * the status of initialization for disabled, autonomous, teleop, and test code.
- */
-IterativeRobot::IterativeRobot()
-	: m_disabledInitialized (false)
-	, m_autonomousInitialized (false)
-	, m_teleopInitialized (false)
-	, m_testInitialized (false)
-	, m_period (kDefaultPeriod)
-{
-	m_watchdog.SetEnabled(false);
-}
-
-/**
- * Free the resources for a RobotIterativeBase class.
- */
-IterativeRobot::~IterativeRobot()
-{
-}
-
-/**
- * Set the period for the periodic functions.
- * 
- * @param period The period of the periodic function calls.  0.0 means sync to driver station control data.
- */
-void IterativeRobot::SetPeriod(double period)
-{
-	if (period > 0.0)
-	{
-		// Not syncing with the DS, so start the timer for the main loop
-		m_mainLoopTimer.Reset();
-		m_mainLoopTimer.Start();
-	}
-	else
-	{
-		// Syncing with the DS, don't need the timer
-		m_mainLoopTimer.Stop();
-	}
-	m_period = period;
-}
-
-/**
- * Get the period for the periodic functions.
- * Returns 0.0 if configured to synchronize with DS control data packets.
- * @return Period of the periodic function calls
- */
-double IterativeRobot::GetPeriod()
-{
-	return m_period;
-}
-
-/**
- * Get the number of loops per second for the IterativeRobot
- * @return Frequency of the periodic function calls
- */
-double IterativeRobot::GetLoopsPerSec()
-{
-	// If syncing to the driver station, we don't know the rate,
-	//   so guess something close.
-	if (m_period <= 0.0)
-		return 50.0;
-	return 1.0 / m_period;
-}
-
-/**
- * Provide an alternate "main loop" via StartCompetition().
- * 
- * This specific StartCompetition() implements "main loop" behavior like that of the FRC
- * control system in 2008 and earlier, with a primary (slow) loop that is
- * called periodically.
- */
-void IterativeRobot::StartCompetition()
-{
-	nUsageReporting::report(nUsageReporting::kResourceType_Framework, nUsageReporting::kFramework_Iterative);
-
-	LiveWindow *lw = LiveWindow::GetInstance();
-	// first and one-time initialization
-	SmartDashboard::init();
-	NetworkTable::GetTable("LiveWindow")->GetSubTable("~STATUS~")->PutBoolean("LW Enabled", false);
-	RobotInit();
-
-	// loop forever, calling the appropriate mode-dependent function
-	lw->SetEnabled(false);
-	while (true)
-	{
-		// Call the appropriate function depending upon the current robot mode
-		if (IsDisabled())
-		{
-			// call DisabledInit() if we are now just entering disabled mode from
-			// either a different mode or from power-on
-			if(!m_disabledInitialized)
-			{
-				lw->SetEnabled(false);
-				DisabledInit();
-				m_disabledInitialized = true;
-				// reset the initialization flags for the other modes
-				m_autonomousInitialized = false;
-                m_teleopInitialized = false;
-                m_testInitialized = false;
-			}
-			if (NextPeriodReady())
-			{
-				FRC_NetworkCommunication_observeUserProgramDisabled();
-				DisabledPeriodic();
-			}
-		}
-		else if (IsAutonomous())
-		{
-			// call AutonomousInit() if we are now just entering autonomous mode from
-			// either a different mode or from power-on
-			if(!m_autonomousInitialized)
-			{
-				lw->SetEnabled(false);
-				AutonomousInit();
-				m_autonomousInitialized = true;
-				// reset the initialization flags for the other modes
-				m_disabledInitialized = false;
-                m_teleopInitialized = false;
-                m_testInitialized = false;
-			}
-			if (NextPeriodReady())
-			{
-				FRC_NetworkCommunication_observeUserProgramAutonomous();
-				AutonomousPeriodic();
-			}
-		}
-        else if (IsTest())
-        {
-            // call TestInit() if we are now just entering test mode from
-            // either a different mode or from power-on
-            if(!m_testInitialized)
-            {
-            	lw->SetEnabled(true);
-                TestInit();
-                m_testInitialized = true;
-                // reset the initialization flags for the other modes
-                m_disabledInitialized = false;
-                m_autonomousInitialized = false;
-                m_teleopInitialized = false;
-            }
-            if (NextPeriodReady())
-            {
-                FRC_NetworkCommunication_observeUserProgramTest();
-                TestPeriodic();
-            }
-        }
-		else
-		{
-			// call TeleopInit() if we are now just entering teleop mode from
-			// either a different mode or from power-on
-			if(!m_teleopInitialized)
-			{
-				lw->SetEnabled(false);
-				TeleopInit();
-				m_teleopInitialized = true;
-				// reset the initialization flags for the other modes
-				m_disabledInitialized = false;
-                m_autonomousInitialized = false;
-                m_testInitialized = false;
-                Scheduler::GetInstance()->SetEnabled(true);
-			}
-			if (NextPeriodReady())
-			{
-				FRC_NetworkCommunication_observeUserProgramTeleop();
-				TeleopPeriodic();
-			}
-		}
-		// wait for driver station data so the loop doesn't hog the CPU
-		m_ds->WaitForData();
-	}	
-}
-
-/**
- * Determine if the periodic functions should be called.
- *
- * If m_period > 0.0, call the periodic function every m_period as compared
- * to Timer.Get().  If m_period == 0.0, call the periodic functions whenever
- * a packet is received from the Driver Station, or about every 20ms.
- *
- * @todo Decide what this should do if it slips more than one cycle.
- */
-
-bool IterativeRobot::NextPeriodReady()
-{
-	if (m_period > 0.0)
-	{
-		return m_mainLoopTimer.HasPeriodPassed(m_period);
-	}
-	else
-	{
-		return m_ds->IsNewControlData();
-	}
-}
-
-/**
- * Robot-wide initialization code should go here.
- * 
- * Users should override this method for default Robot-wide initialization which will
- * be called when the robot is first powered on.  It will be called exactly 1 time.
- */
-void IterativeRobot::RobotInit()
-{
-	printf("Default %s() method... Overload me!\n", __FUNCTION__);
-}
-
-/**
- * Initialization code for disabled mode should go here.
- * 
- * Users should override this method for initialization code which will be called each time
- * the robot enters disabled mode.
- */
-void IterativeRobot::DisabledInit()
-{
-	printf("Default %s() method... Overload me!\n", __FUNCTION__);
-}
-
-/**
- * Initialization code for autonomous mode should go here.
- * 
- * Users should override this method for initialization code which will be called each time
- * the robot enters autonomous mode.
- */
-void IterativeRobot::AutonomousInit()
-{
-	printf("Default %s() method... Overload me!\n", __FUNCTION__);
-}
-
-/**
- * Initialization code for teleop mode should go here.
- * 
- * Users should override this method for initialization code which will be called each time
- * the robot enters teleop mode.
- */
-void IterativeRobot::TeleopInit()
-{
-    printf("Default %s() method... Overload me!\n", __FUNCTION__);
-}
-
-/**
- * Initialization code for test mode should go here.
- * 
- * Users should override this method for initialization code which will be called each time
- * the robot enters test mode.
- */
-void IterativeRobot::TestInit()
-{
-    printf("Default %s() method... Overload me!\n", __FUNCTION__);
-}
-
-/**
- * Periodic code for disabled mode should go here.
- * 
- * Users should override this method for code which will be called periodically at a regular
- * rate while the robot is in disabled mode.
- */
-void IterativeRobot::DisabledPeriodic()
-{
-	static bool firstRun = true;
-	if (firstRun)
-	{
-		printf("Default %s() method... Overload me!\n", __FUNCTION__);
-		firstRun = false;
-	}
-	taskDelay(1);
-}
-
-/**
- * Periodic code for autonomous mode should go here.
- *
- * Users should override this method for code which will be called periodically at a regular
- * rate while the robot is in autonomous mode.
- */
-void IterativeRobot::AutonomousPeriodic()
-{
-	static bool firstRun = true;
-	if (firstRun)
-	{
-		printf("Default %s() method... Overload me!\n", __FUNCTION__);
-		firstRun = false;
-	}
-	taskDelay(1);
-}
-
-/**
- * Periodic code for teleop mode should go here.
- *
- * Users should override this method for code which will be called periodically at a regular
- * rate while the robot is in teleop mode.
- */
-void IterativeRobot::TeleopPeriodic()
-{
-	static bool firstRun = true;
-	if (firstRun)
-	{
-		printf("Default %s() method... Overload me!\n", __FUNCTION__);
-		firstRun = false;
-	}
-	taskDelay(1);
-}
-
-/**
- * Periodic code for test mode should go here.
- *
- * Users should override this method for code which will be called periodically at a regular
- * rate while the robot is in test mode.
- */
-void IterativeRobot::TestPeriodic()
-{
-    static bool firstRun = true;
-    if (firstRun)
-    {
-        printf("Default %s() method... Overload me!\n", __FUNCTION__);
-        firstRun = false;
-    }
-    taskDelay(1);
-}
-
diff --git a/aos/externals/WPILib/WPILib/IterativeRobot.h b/aos/externals/WPILib/WPILib/IterativeRobot.h
deleted file mode 100644
index e3e86d4..0000000
--- a/aos/externals/WPILib/WPILib/IterativeRobot.h
+++ /dev/null
@@ -1,83 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef ROBOT_ITERATIVE_H_
-#define ROBOT_ITERATIVE_H_
-
-#include "Timer.h"
-#include "RobotBase.h"
-
-/**
- * IterativeRobot implements a specific type of Robot Program framework, extending the RobotBase class.
- * 
- * The IterativeRobot class is intended to be subclassed by a user creating a robot program.
- * 
- * This class is intended to implement the "old style" default code, by providing
- * the following functions which are called by the main loop, StartCompetition(), at the appropriate times:
- * 
- * RobotInit() -- provide for initialization at robot power-on
- * 
- * Init() functions -- each of the following functions is called once when the
- *                     appropriate mode is entered:
- *  - DisabledInit()   -- called only when first disabled
- *  - AutonomousInit() -- called each and every time autonomous is entered from another mode
- *  - TeleopInit()     -- called each and every time teleop is entered from another mode
- *  - TestInit()       -- called each and every time test is entered from another mode
- * 
- * Periodic() functions -- each of these functions is called iteratively at the
- *                         appropriate periodic rate (aka the "slow loop").  The default period of
- *                         the iterative robot is synced to the driver station control packets,
- *                         giving a periodic frequency of about 50Hz (50 times per second).
- *   - DisabledPeriodic()
- *   - AutonomousPeriodic()
- *   - TeleopPeriodic()
- *   - TestPeriodic()
- * 
- */
-
-class IterativeRobot : public RobotBase {
-public:
-	/*
-	 * The default period for the periodic function calls (seconds)
-	 * Setting the period to 0.0 will cause the periodic functions to follow
-	 * the Driver Station packet rate of about 50Hz.
-	 */
-	static constexpr double kDefaultPeriod = 0.0;
-
-	virtual void StartCompetition();
-
-	virtual void RobotInit();
-	virtual void DisabledInit();
-	virtual void AutonomousInit();
-    virtual void TeleopInit();
-    virtual void TestInit();
-
-	virtual void DisabledPeriodic();
-	virtual void AutonomousPeriodic();
-    virtual void TeleopPeriodic();
-    virtual void TestPeriodic();
-
-	void SetPeriod(double period);
-	double GetPeriod();
-	double GetLoopsPerSec();
-
-protected:
-	virtual ~IterativeRobot();
-	IterativeRobot();
-
-private:
-	bool NextPeriodReady();
-
-	bool m_disabledInitialized;
-	bool m_autonomousInitialized;
-    bool m_teleopInitialized;
-    bool m_testInitialized;
-	double m_period;
-	Timer m_mainLoopTimer;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Jaguar.cpp b/aos/externals/WPILib/WPILib/Jaguar.cpp
deleted file mode 100644
index b5f1187..0000000
--- a/aos/externals/WPILib/WPILib/Jaguar.cpp
+++ /dev/null
@@ -1,101 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-
-#include "Jaguar.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "DigitalModule.h"
-#include "LiveWindow/LiveWindow.h"
-
-/**
- * Common initialization code called by all constructors.
- */
-void Jaguar::InitJaguar()
-{
-	/*
-	 * Input profile defined by Luminary Micro.
-	 * 
-	 * Full reverse ranges from 0.671325ms to 0.6972211ms
-	 * Proportional reverse ranges from 0.6972211ms to 1.4482078ms
-	 * Neutral ranges from 1.4482078ms to 1.5517922ms
-	 * Proportional forward ranges from 1.5517922ms to 2.3027789ms
-	 * Full forward ranges from 2.3027789ms to 2.328675ms
-	 */
-	SetBounds(2.31, 1.55, 1.507, 1.454, .697);
-	SetPeriodMultiplier(kPeriodMultiplier_1X);
-	SetRaw(m_centerPwm);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_Jaguar, GetChannel(), GetModuleNumber() - 1);
-	LiveWindow::GetInstance()->AddActuator("Jaguar", GetModuleNumber(), GetChannel(), this);
-}
-
-/**
- * Constructor that assumes the default digital module.
- * 
- * @param channel The PWM channel on the digital module that the Jaguar is attached to.
- */
-Jaguar::Jaguar(uint32_t channel) : SafePWM(channel)
-{
-	InitJaguar();
-}
-
-/**
- * Constructor that specifies the digital module.
- * 
- * @param moduleNumber The digital module (1 or 2).
- * @param channel The PWM channel on the digital module that the Jaguar is attached to.
- */
-Jaguar::Jaguar(uint8_t moduleNumber, uint32_t channel) : SafePWM(moduleNumber, channel)
-{
-	InitJaguar();
-}
-
-Jaguar::~Jaguar()
-{
-}
-
-/**
- * Set the PWM value.  
- * 
- * The PWM value is set using a range of -1.0 to 1.0, appropriately
- * scaling the value for the FPGA.
- * 
- * @param speed The speed value between -1.0 and 1.0 to set.
- * @param syncGroup Unused interface.
- */
-void Jaguar::Set(float speed, uint8_t syncGroup)
-{
-	SetSpeed(speed);
-}
-
-/**
- * Get the recently set value of the PWM.
- * 
- * @return The most recently set value for the PWM between -1.0 and 1.0.
- */
-float Jaguar::Get()
-{
-	return GetSpeed();
-}
-
-/**
- * Common interface for disabling a motor.
- */
-void Jaguar::Disable()
-{
-	SetRaw(kPwmDisabled);
-}
-
-/**
- * Write out the PID value as seen in the PIDOutput base object.
- * 
- * @param output Write out the PWM value as was found in the PIDController
- */
-void Jaguar::PIDWrite(float output)
-{
-	Set(output);
-}
-
diff --git a/aos/externals/WPILib/WPILib/Jaguar.h b/aos/externals/WPILib/WPILib/Jaguar.h
deleted file mode 100644
index 2b0a405..0000000
--- a/aos/externals/WPILib/WPILib/Jaguar.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef JAGUAR_H
-#define JAGUAR_H
-
-#include "SafePWM.h"
-#include "SpeedController.h"
-#include "PIDOutput.h"
-
-/**
- * Luminary Micro Jaguar Speed Control
- */
-class Jaguar : public SafePWM, public SpeedController
-{
-public:
-	explicit Jaguar(uint32_t channel);
-	Jaguar(uint8_t moduleNumber, uint32_t channel);
-	virtual ~Jaguar();
-	virtual void Set(float value, uint8_t syncGroup=0);
-	virtual float Get();
-	virtual void Disable();
-
-	virtual void PIDWrite(float output);
-
-private:
-	void InitJaguar();
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Joystick.cpp b/aos/externals/WPILib/WPILib/Joystick.cpp
deleted file mode 100644
index 645a1e5..0000000
--- a/aos/externals/WPILib/WPILib/Joystick.cpp
+++ /dev/null
@@ -1,302 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Joystick.h"
-#include "DriverStation.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "WPIErrors.h"
-#include <math.h>
-
-const uint32_t Joystick::kDefaultXAxis;
-const uint32_t Joystick::kDefaultYAxis;
-const uint32_t Joystick::kDefaultZAxis;
-const uint32_t Joystick::kDefaultTwistAxis;
-const uint32_t Joystick::kDefaultThrottleAxis;
-const uint32_t Joystick::kDefaultTriggerButton;
-const uint32_t Joystick::kDefaultTopButton;
-static Joystick *joysticks[DriverStation::kJoystickPorts];
-static bool joySticksInitialized = false;
-
-/**
- * Construct an instance of a joystick.
- * The joystick index is the usb port on the drivers station.
- * 
- * @param port The port on the driver station that the joystick is plugged into.
- */
-Joystick::Joystick(uint32_t port)
-	: m_ds (NULL)
-	, m_port (port)
-	, m_axes (NULL)
-	, m_buttons (NULL)
-{
-	InitJoystick(kNumAxisTypes, kNumButtonTypes);
-
-	m_axes[kXAxis] = kDefaultXAxis;
-	m_axes[kYAxis] = kDefaultYAxis;
-	m_axes[kZAxis] = kDefaultZAxis;
-	m_axes[kTwistAxis] = kDefaultTwistAxis;
-	m_axes[kThrottleAxis] = kDefaultThrottleAxis;
-	
-	m_buttons[kTriggerButton] = kDefaultTriggerButton;
-	m_buttons[kTopButton] = kDefaultTopButton;
-
-	nUsageReporting::report(nUsageReporting::kResourceType_Joystick, port);
-}
-
-/**
- * Version of the constructor to be called by sub-classes.
- * 
- * This constructor allows the subclass to configure the number of constants
- * for axes and buttons.
- * 
- * @param port The port on the driver station that the joystick is plugged into.
- * @param numAxisTypes The number of axis types in the enum.
- * @param numButtonTypes The number of button types in the enum.
- */
-Joystick::Joystick(uint32_t port, uint32_t numAxisTypes, uint32_t numButtonTypes)
-	: m_ds (NULL)
-	, m_port (port)
-	, m_axes (NULL)
-	, m_buttons (NULL)
-{
-	InitJoystick(numAxisTypes, numButtonTypes);
-}
-
-void Joystick::InitJoystick(uint32_t numAxisTypes, uint32_t numButtonTypes)
-{
-	if ( !joySticksInitialized )
-	{
-		for (unsigned i = 0; i < DriverStation::kJoystickPorts; i++)
-			joysticks[i] = NULL;
-		joySticksInitialized = true;
-	}
-	joysticks[m_port - 1] = this;
-	
-	m_ds = DriverStation::GetInstance();
-	m_axes = new uint32_t[numAxisTypes];
-	m_buttons = new uint32_t[numButtonTypes];
-}
-
-Joystick * Joystick::GetStickForPort(uint32_t port)
-{
-	Joystick *stick = joysticks[port - 1];
-	if (stick == NULL)
-	{
-		stick = new Joystick(port);
-		joysticks[port - 1] = stick;
-	}
-	return stick;
-}
-
-Joystick::~Joystick()
-{
-	delete [] m_buttons;
-	delete [] m_axes;
-}
-
-/**
- * Get the X value of the joystick.
- * This depends on the mapping of the joystick connected to the current port.
- */
-float Joystick::GetX(JoystickHand hand)
-{
-	return GetRawAxis(m_axes[kXAxis]);
-}
-
-/**
- * Get the Y value of the joystick.
- * This depends on the mapping of the joystick connected to the current port.
- */
-float Joystick::GetY(JoystickHand hand)
-{
-	return GetRawAxis(m_axes[kYAxis]);
-}
-
-/**
- * Get the Z value of the current joystick.
- * This depends on the mapping of the joystick connected to the current port.
- */
-float Joystick::GetZ()
-{
-	return GetRawAxis(m_axes[kZAxis]);
-}
-
-/**
- * Get the twist value of the current joystick.
- * This depends on the mapping of the joystick connected to the current port.
- */
-float Joystick::GetTwist()
-{
-	return GetRawAxis(m_axes[kTwistAxis]);
-}
-
-/**
- * Get the throttle value of the current joystick.
- * This depends on the mapping of the joystick connected to the current port.
- */
-float Joystick::GetThrottle()
-{
-	return GetRawAxis(m_axes[kThrottleAxis]);
-}
-
-/**
- * Get the value of the axis.
- * 
- * @param axis The axis to read [1-6].
- * @return The value of the axis.
- */
-float Joystick::GetRawAxis(uint32_t axis)
-{
-	return m_ds->GetStickAxis(m_port, axis);
-}
-
-/**
- * For the current joystick, return the axis determined by the argument.
- * 
- * This is for cases where the joystick axis is returned programatically, otherwise one of the
- * previous functions would be preferable (for example GetX()).
- * 
- * @param axis The axis to read.
- * @return The value of the axis.
- */
-float Joystick::GetAxis(AxisType axis)
-{
-	switch(axis)
-	{
-		case kXAxis: return this->GetX();
-		case kYAxis: return this->GetY();
-		case kZAxis: return this->GetZ();
-		case kTwistAxis: return this->GetTwist();
-		case kThrottleAxis: return this->GetThrottle();
-		default:
-			wpi_setWPIError(BadJoystickAxis);
-			return 0.0;
-	}
-}
-
-/**
- * Read the state of the trigger on the joystick.
- * 
- * Look up which button has been assigned to the trigger and read its state.
- * 
- * @param hand This parameter is ignored for the Joystick class and is only here to complete the GenericHID interface.
- * @return The state of the trigger.
- */
-bool Joystick::GetTrigger(JoystickHand hand)
-{
-	return GetRawButton(m_buttons[kTriggerButton]);
-}
-
-/**
- * Read the state of the top button on the joystick.
- * 
- * Look up which button has been assigned to the top and read its state.
- * 
- * @param hand This parameter is ignored for the Joystick class and is only here to complete the GenericHID interface.
- * @return The state of the top button.
- */
-bool Joystick::GetTop(JoystickHand hand)
-{
-	return GetRawButton(m_buttons[kTopButton]);
-}
-
-/**
- * This is not supported for the Joystick.
- * This method is only here to complete the GenericHID interface.
- */
-bool Joystick::GetBumper(JoystickHand hand)
-{
-	// Joysticks don't have bumpers.
-	return false;
-}
-
-/**
- * Get the button value for buttons 1 through 12.
- * 
- * The buttons are returned in a single 16 bit value with one bit representing the state
- * of each button. The appropriate button is returned as a boolean value. 
- * 
- * @param button The button number to be read.
- * @return The state of the button.
- **/
-bool Joystick::GetRawButton(uint32_t button)
-{
-	return ((0x1 << (button-1)) & m_ds->GetStickButtons(m_port)) != 0;
-}
-
-/**
- * Get buttons based on an enumerated type.
- * 
- * The button type will be looked up in the list of buttons and then read.
- * 
- * @param button The type of button to read.
- * @return The state of the button.
- */
-bool Joystick::GetButton(ButtonType button)
-{
-	switch (button)
-	{
-	case kTriggerButton: return GetTrigger();
-	case kTopButton: return GetTop();
-	default:
-		return false;
-	}
-}
-
-/**
- * Get the channel currently associated with the specified axis.
- * 
- * @param axis The axis to look up the channel for.
- * @return The channel fr the axis.
- */
-uint32_t Joystick::GetAxisChannel(AxisType axis)
-{
-	return m_axes[axis];
-}
-
-/**
- * Set the channel associated with a specified axis.
- * 
- * @param axis The axis to set the channel for.
- * @param channel The channel to set the axis to.
- */
-void Joystick::SetAxisChannel(AxisType axis, uint32_t channel)
-{
-	m_axes[axis] = channel;
-}
-
-/**
- * Get the magnitude of the direction vector formed by the joystick's
- * current position relative to its origin
- * 
- * @return The magnitude of the direction vector
- */
-float Joystick::GetMagnitude(){
-	return sqrt(pow(GetX(),2) + pow(GetY(),2) );
-}
-
-/**
- * Get the direction of the vector formed by the joystick and its origin
- * in radians
- * 
- * @return The direction of the vector in radians
- */
-float Joystick::GetDirectionRadians(){
-	return atan2(GetX(), -GetY());
-}
-
-/**
- * Get the direction of the vector formed by the joystick and its origin
- * in degrees
- * 
- * uses acos(-1) to represent Pi due to absence of readily accessable Pi 
- * constant in C++
- * 
- * @return The direction of the vector in degrees
- */
-float Joystick::GetDirectionDegrees(){
-	return (180/acos(-1))*GetDirectionRadians();
-}
diff --git a/aos/externals/WPILib/WPILib/Joystick.h b/aos/externals/WPILib/WPILib/Joystick.h
deleted file mode 100644
index e21e070..0000000
--- a/aos/externals/WPILib/WPILib/Joystick.h
+++ /dev/null
@@ -1,77 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef JOYSTICK_H_
-#define JOYSTICK_H_
-
-#include "GenericHID.h"
-#include "ErrorBase.h"
-
-class DriverStation;
-
-/**
- * Handle input from standard Joysticks connected to the Driver Station.
- * This class handles standard input that comes from the Driver Station. Each time a value is requested
- * the most recent value is returned. There is a single class instance for each joystick and the mapping
- * of ports to hardware buttons depends on the code in the driver station.
- */
-class Joystick : public GenericHID, public ErrorBase
-{
-public:
-	static const uint32_t kDefaultXAxis = 1;
-	static const uint32_t kDefaultYAxis = 2;
-	static const uint32_t kDefaultZAxis = 3;
-	static const uint32_t kDefaultTwistAxis = 4;
-	static const uint32_t kDefaultThrottleAxis = 3;
-	typedef enum
-	{
-		kXAxis, kYAxis, kZAxis, kTwistAxis, kThrottleAxis, kNumAxisTypes
-	} AxisType;
-	static const uint32_t kDefaultTriggerButton = 1;
-	static const uint32_t kDefaultTopButton = 2;
-	typedef enum
-	{
-		kTriggerButton, kTopButton, kNumButtonTypes
-	} ButtonType;
-
-	explicit Joystick(uint32_t port);
-	Joystick(uint32_t port, uint32_t numAxisTypes, uint32_t numButtonTypes);
-	virtual ~Joystick();
-
-	uint32_t GetAxisChannel(AxisType axis);
-	void SetAxisChannel(AxisType axis, uint32_t channel); 
-
-	virtual float GetX(JoystickHand hand = kRightHand);
-	virtual float GetY(JoystickHand hand = kRightHand);
-	virtual float GetZ();
-	virtual float GetTwist();
-	virtual float GetThrottle();
-	virtual float GetAxis(AxisType axis);
-	float GetRawAxis(uint32_t axis);
-
-	virtual bool GetTrigger(JoystickHand hand = kRightHand);
-	virtual bool GetTop(JoystickHand hand = kRightHand);
-	virtual bool GetBumper(JoystickHand hand = kRightHand);
-	virtual bool GetButton(ButtonType button);
-	bool GetRawButton(uint32_t button);
-	static Joystick* GetStickForPort(uint32_t port);
-	
-	virtual float GetMagnitude();
-	virtual float GetDirectionRadians();
-	virtual float GetDirectionDegrees();
-
-private:
-	DISALLOW_COPY_AND_ASSIGN(Joystick);
-	void InitJoystick(uint32_t numAxisTypes, uint32_t numButtonTypes);
-
-	DriverStation *m_ds;
-	uint32_t m_port;
-	uint32_t *m_axes;
-	uint32_t *m_buttons;
-};
-
-#endif
- 
diff --git a/aos/externals/WPILib/WPILib/Kinect.cpp b/aos/externals/WPILib/WPILib/Kinect.cpp
deleted file mode 100644
index 91a0027..0000000
--- a/aos/externals/WPILib/WPILib/Kinect.cpp
+++ /dev/null
@@ -1,196 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Kinect.h"
-
-#include "DriverStation.h"
-#include "NetworkCommunication/FRCComm.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Skeleton.h"
-#include "Synchronized.h"
-#include "WPIErrors.h"
-#include <cstring>
-
-#define kHeaderBundleID kFRC_NetworkCommunication_DynamicType_Kinect_Header
-#define kSkeletonExtraBundleID kFRC_NetworkCommunication_DynamicType_Kinect_Extra1
-#define kSkeletonBundleID kFRC_NetworkCommunication_DynamicType_Kinect_Vertices1
-
-Kinect *Kinect::_instance = NULL;
-
-Kinect::Kinect() :
-	m_recentPacketNumber(0),
-	m_numberOfPlayers(0)
-{
-	AddToSingletonList();
-	m_dataLock = semMCreate(SEM_Q_PRIORITY | SEM_INVERSION_SAFE | SEM_DELETE_SAFE);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_Kinect, 0);
-}
-
-Kinect::~Kinect()
-{
-	semTake(m_dataLock, WAIT_FOREVER);
-	semDelete(m_dataLock);
-}
-
-/**
- * Get the one and only Kinect object
- * @returns pointer to a Kinect
- */
-Kinect *Kinect::GetInstance()
-{
-	if (_instance == NULL)
-		_instance = new Kinect();
-	return _instance;
-}
-
-/**
- * Get the number of tracked players on the Kinect
- * @return the number of players being actively tracked
- */
-int Kinect::GetNumberOfPlayers()
-{
-	UpdateData();
-	return m_numberOfPlayers;
-}
-
-/**
- * Get the floor clip plane as defined in the Kinect SDK
- * @return The floor clip plane
- */
-Kinect::Point4 Kinect::GetFloorClipPlane()
-{
-	UpdateData();
-	return m_floorClipPlane;
-}
-
-/**
- * Get the gravity normal from the kinect as defined in the Kinect SDK
- * @return The gravity normal (w is ignored)
- */
-Kinect::Point4 Kinect::GetGravityNormal()
-{
-	UpdateData();
-	return m_gravityNormal;
-}
-
-/**
- * Get the skeleton data
- * Returns the detected skeleton data from the kinect as defined in the Kinect SDK
- * @param skeletonIndex Which of (potentially 2) skeletons to return. This is ignored in this implementation and
- * only a single skeleton is supported for the FRC release default gesture interpretation.
- * @return The current version of the skeleton object.
- */
-Skeleton Kinect::GetSkeleton(int skeletonIndex)
-{
-	if (skeletonIndex <= 0 || skeletonIndex > kNumSkeletons)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "Skeleton index must be 1");
-		return Skeleton();
-	}
-	UpdateData();
-	return m_skeletons[skeletonIndex-1];
-}
-
-/**
- * Get the current position of the skeleton
- * @param skeletonIndex the skeleton to read from
- * @return the current position as defined in the Kinect SDK (w is ignored)
- */
-Kinect::Point4 Kinect::GetPosition(int skeletonIndex)
-{
-	if (skeletonIndex <= 0 || skeletonIndex > kNumSkeletons)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "Skeleton index must be 1");
-		return Point4();
-	}
-	UpdateData();
-	return m_position[skeletonIndex-1];
-}
-
-/**
- * Get the quality of the skeleton.
- * Quality masks are defined in the SkeletonQuality enum
- * @param skeletonIndex the skeleton to read from
- * @return the quality value as defined in the Kinect SDK
- */
-uint32_t Kinect::GetQuality(int skeletonIndex)
-{
-	if (skeletonIndex <= 0 || skeletonIndex > kNumSkeletons)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "Skeleton index must be 1");
-		return kClippedRight | kClippedLeft | kClippedTop | kClippedBottom;
-	}
-	UpdateData();
-	return m_quality[skeletonIndex-1];
-}
-
-/**
- * Get the TrackingState of the skeleton.
- * Tracking states are defined in the SkeletonTrackingState enum
- * @param skeletonIndex the skeleton to read from
- * @return the tracking state value as defined in the Kinect SDK
- */
-Kinect::SkeletonTrackingState Kinect::GetTrackingState(int skeletonIndex)
-{
-	if (skeletonIndex <= 0 || skeletonIndex > kNumSkeletons)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "Skeleton index must be 1");
-		return kNotTracked;
-	}
-	UpdateData();
-	return m_trackingState[skeletonIndex-1];
-}
-
-/**
- * Check for an update of new data from the Driver Station
- * This will read the new values and update the data structures in this class.
- */
-void Kinect::UpdateData()
-{
-	Synchronized sync(m_dataLock);
-	uint32_t packetNumber = DriverStation::GetInstance()->GetPacketNumber();
-	if (m_recentPacketNumber != packetNumber)
-	{
-		m_recentPacketNumber = packetNumber;
-		int retVal = getDynamicControlData(kHeaderBundleID, m_rawHeader, sizeof(m_rawHeader), 5);
-		if(retVal == 0)
-		{
-			m_numberOfPlayers = (int)m_rawHeader[13];
-			memcpy(&m_floorClipPlane.x, &m_rawHeader[18], 4);
-			memcpy(&m_floorClipPlane.y, &m_rawHeader[22], 4);
-			memcpy(&m_floorClipPlane.z, &m_rawHeader[26], 4);
-			memcpy(&m_floorClipPlane.w, &m_rawHeader[30], 4);
-			memcpy(&m_gravityNormal.x, &m_rawHeader[34], 4);
-			memcpy(&m_gravityNormal.y, &m_rawHeader[38], 4);
-			memcpy(&m_gravityNormal.z, &m_rawHeader[42], 4);
-		}
-
-		retVal = getDynamicControlData(kSkeletonExtraBundleID, m_rawSkeletonExtra, sizeof(m_rawSkeletonExtra), 5);
-		if(retVal == 0)
-		{
-			memcpy(&m_position[0].x, &m_rawSkeletonExtra[22], 4);
-			memcpy(&m_position[0].y, &m_rawSkeletonExtra[26], 4);
-			memcpy(&m_position[0].z, &m_rawSkeletonExtra[30], 4);
-			memcpy(&m_quality[0], &m_rawSkeletonExtra[34], 4);
-			memcpy(&m_trackingState[0], &m_rawSkeletonExtra[38], 4);
-		}
-
-		retVal = getDynamicControlData(kSkeletonBundleID, m_rawSkeleton, sizeof(m_rawSkeleton), 5);
-		if(retVal == 0)
-		{
-			for(int i=0; i < Skeleton::JointCount; i++)
-			{
-				memcpy(&m_skeletons[0].m_joints[i].x, &m_rawSkeleton[i*12+2], 4);
-				memcpy(&m_skeletons[0].m_joints[i].y, &m_rawSkeleton[i*12+6], 4);
-				memcpy(&m_skeletons[0].m_joints[i].z, &m_rawSkeleton[i*12+10], 4);
-				m_skeletons[0].m_joints[i].trackingState = (Skeleton::JointTrackingState)m_rawSkeletonExtra[i+2];
-			}
-		}
-
-		// TODO: Read skeleton #2
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/Kinect.h b/aos/externals/WPILib/WPILib/Kinect.h
deleted file mode 100644
index 988fccd..0000000
--- a/aos/externals/WPILib/WPILib/Kinect.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __KINECT_H__
-#define __KINECT_H__
-
-#include "SensorBase.h"
-#include "Skeleton.h"
-
-#include <semLib.h>
-
-#define kNumSkeletons 1
-
-/**
- * Handles raw data input from the FRC Kinect Server
- * when used with a Kinect device connected to the Driver Station.
- * Each time a value is requested the most recent value is returned.
- * See Getting Started with Microsoft Kinect for FRC and the Kinect
- * for Windows SDK API reference for more information
- */
-class Kinect : public SensorBase
-{
-public:
-	typedef enum {kNotTracked, kPositionOnly, kTracked} SkeletonTrackingState;
-	typedef enum {kClippedRight = 1, kClippedLeft = 2, kClippedTop = 4, kClippedBottom = 8} SkeletonQuality;
-	typedef struct
-	{
-		float x;
-		float y;
-		float z;
-		float w;
-	} Point4;
-
-	int GetNumberOfPlayers();
-	Point4 GetFloorClipPlane();
-	Point4 GetGravityNormal();
-	Skeleton GetSkeleton(int skeletonIndex = 1);
-	Point4 GetPosition(int skeletonIndex = 1);
-	uint32_t GetQuality(int skeletonIndex = 1);
-	SkeletonTrackingState GetTrackingState(int skeletonIndex = 1);
-
-	static Kinect *GetInstance();
-
-private:
-	Kinect();
-	~Kinect();
-	void UpdateData();
-
-	DISALLOW_COPY_AND_ASSIGN(Kinect);
-
-	uint32_t m_recentPacketNumber;
-	SEM_ID m_dataLock;
-	int m_numberOfPlayers;
-	Point4 m_floorClipPlane;
-	Point4 m_gravityNormal;
-	Point4 m_position[kNumSkeletons];
-	uint32_t m_quality[kNumSkeletons];
-	SkeletonTrackingState m_trackingState[kNumSkeletons];
-	Skeleton m_skeletons[kNumSkeletons];
-
-	// TODO: Include structs for this data format (would be clearer than 100 magic numbers)
-	char m_rawHeader[46];
-	char m_rawSkeletonExtra[42];
-	char m_rawSkeleton[242];
-
-	static Kinect *_instance;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/KinectStick.cpp b/aos/externals/WPILib/WPILib/KinectStick.cpp
deleted file mode 100644
index f6e3021..0000000
--- a/aos/externals/WPILib/WPILib/KinectStick.cpp
+++ /dev/null
@@ -1,201 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "KinectStick.h"
-
-#include "DriverStation.h"
-#include "Joystick.h"
-#include "NetworkCommunication/FRCComm.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Utility.h"
-#include "WPIErrors.h"
-
-uint32_t KinectStick::_recentPacketNumber = 0;
-KinectStick::KinectStickData KinectStick::_sticks;
-
-#define kJoystickBundleID kFRC_NetworkCommunication_DynamicType_Kinect_Joystick
-#define kTriggerMask 1
-#define kTopMask 2
-
-/**
- * Kinect joystick constructor
- * @param id value is either 1 or 2 for the left or right joystick decoded from
- * gestures interpreted by the Kinect server on the Driver Station computer.
- */
-KinectStick::KinectStick(int id)
-{
-	if (id != 1 && id != 2)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "KinectStick ID must be 1 or 2");
-		return;
-	}
-	m_id = id;
-
-	nUsageReporting::report(nUsageReporting::kResourceType_KinectStick, id);
-}
-
-/**
- * Get the X value of the KinectStick. This axis
- * is unimplemented in the default gestures but can
- * be populated by teams editing the Kinect Server.
- * @param hand Unused
- * @return The X value of the KinectStick
- */
-float KinectStick::GetX(JoystickHand hand)
-{
-	return GetRawAxis(Joystick::kDefaultXAxis);
-}
-
-/**
- * Get the Y value of the KinectStick. This axis
- * represents arm angle in the default gestures
- * @param hand Unused
- * @return The Y value of the KinectStick
- */
-float KinectStick::GetY(JoystickHand hand)
-{
-	return GetRawAxis(Joystick::kDefaultYAxis);
-}
-
-/**
- * Get the Z value of the KinectStick. This axis
- * is unimplemented in the default gestures but can
- * be populated by teams editing the Kinect Server.
- * @param hand Unused
- * @return The Z value of the KinectStick
- */
-float KinectStick::GetZ()
-{
-	return GetRawAxis(Joystick::kDefaultZAxis);
-}
-
-/**
- * Get the Twist value of the KinectStick. This axis
- * is unimplemented in the default gestures but can
- * be populated by teams editing the Kinect Server.
- * @return The Twist value of the KinectStick
- */
-float KinectStick::GetTwist()
-{
-	return GetRawAxis(Joystick::kDefaultTwistAxis);
-}
-
-/**
- * Get the Throttle value of the KinectStick. This axis
- * is unimplemented in the default gestures but can
- * be populated by teams editing the Kinect Server.
- * @return The Throttle value of the KinectStick
- */
-float KinectStick::GetThrottle()
-{
-	return GetRawAxis(Joystick::kDefaultThrottleAxis);
-}
-
-/**
- * Get the value of the KinectStick axis.
- *
- * @param axis The axis to read [1-6].
- * @return The value of the axis
- */
-float KinectStick::GetRawAxis(uint32_t axis)
-{
-	if (StatusIsFatal()) return 0.0;
-
-	GetData();
-	float value = ConvertRawToFloat(_sticks.formatted.rawSticks[m_id - 1].axis[axis-1]);
-	return value;
-}
-
-/**
- * Get the button value for the button set as the default trigger
- *
- * @param hand Unused
- * @return The state of the button.
- */
-bool KinectStick::GetTrigger(JoystickHand hand)
-{
-	return GetRawButton(kTriggerMask);
-}
-
-/**
- * Get the button value for the button set as the default top
- *
- * @param hand Unused
- * @return The state of the button.
- */
-bool KinectStick::GetTop(JoystickHand hand)
-{
-	return GetRawButton(kTopMask);
-}
-
-/**
- * Get the button value for the button set as the default bumper (button 4)
- *
- * @param hand Unused
- * @return The state of the button.
- */
-bool KinectStick::GetBumper(JoystickHand hand)
-{
-	// TODO: Should this even be in GenericHID?  Is 4 an appropriate mask value (button 3)?
-	return GetRawButton(4);
-}
-
-/**
- * Get the button value for buttons 1 through 12. The default gestures
- * implement only 9 buttons.
- *
- * The appropriate button is returned as a boolean value.
- *
- * @param button The button number to be read.
- * @return The state of the button.
- */
-bool KinectStick::GetRawButton(uint32_t button)
-{
-	if (StatusIsFatal()) return false;
-
-	GetData();
-	return (_sticks.formatted.rawSticks[m_id - 1].buttons & (1 << button)) != 0;
-}
-
-/**
- * Get dynamic data from the driver station buffer
- */
-void KinectStick::GetData()
-{
-	uint32_t packetNumber = DriverStation::GetInstance()->GetPacketNumber();
-	if (_recentPacketNumber != packetNumber)
-	{
-		_recentPacketNumber = packetNumber;
-		int retVal = getDynamicControlData(kJoystickBundleID, _sticks.data, sizeof(_sticks.data), 5);
-		if (retVal == 0)
-		{
-			wpi_assert(_sticks.formatted.size == sizeof(_sticks.data) - 1);
-		}
-	}
-}
-
-/**
- * Convert an 8 bit joystick value to a floating point (-1,1) value
- * @param value The 8 bit raw joystick value returned from the driver station
- */
-float KinectStick::ConvertRawToFloat(int8_t value)
-{
-	float result;
-
-	if (value < 0)
-		result = ((float) value) / 128.0;
-	else
-		result = ((float) value) / 127.0;
-
-	wpi_assert(result <= 1.0 && result >= -1.0);
-
-	if (result > 1.0)
-		result = 1.0;
-	else if (result < -1.0)
-		result = -1.0;
-
-	return result;
-}
diff --git a/aos/externals/WPILib/WPILib/KinectStick.h b/aos/externals/WPILib/WPILib/KinectStick.h
deleted file mode 100644
index e605b5a..0000000
--- a/aos/externals/WPILib/WPILib/KinectStick.h
+++ /dev/null
@@ -1,61 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __KINECT_STICK_H__
-#define __KINECT_STICK_H__
-
-#include "ErrorBase.h"
-#include "GenericHID.h"
-
-/**
- * Handles input from the Joystick data sent by the FRC Kinect Server
- * when used with a Kinect device connected to the Driver Station.
- * Each time a value is requested the most recent value is returned.
- * Default gestures embedded in the FRC Kinect Server are described
- * in the document Getting Started with Microsoft Kinect for FRC.
- */
-class KinectStick : public GenericHID, public ErrorBase
-{
-public:
-	explicit KinectStick(int id);
-	virtual float GetX(JoystickHand hand = kRightHand);
-	virtual float GetY(JoystickHand hand = kRightHand);
-	virtual float GetZ();
-	virtual float GetTwist();
-	virtual float GetThrottle();
-	virtual float GetRawAxis(uint32_t axis);
-
-	virtual bool GetTrigger(JoystickHand hand = kRightHand);
-	virtual bool GetTop(JoystickHand hand = kRightHand);
-	virtual bool GetBumper(JoystickHand hand = kRightHand);
-	virtual bool GetRawButton(uint32_t button);
-
-private:
-	void GetData();
-	float ConvertRawToFloat(int8_t charValue);
-
-	typedef union
-	{
-		struct
-		{
-			uint8_t size;
-			uint8_t id;
-			struct
-			{
-				unsigned char axis[6];
-				unsigned short buttons;
-			} rawSticks[2];
-		} formatted;
-		char data[18];
-	} KinectStickData;
-
-	int m_id;
-	static uint32_t _recentPacketNumber;
-	static KinectStickData _sticks;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/LiveWindow/LiveWindow.cpp b/aos/externals/WPILib/WPILib/LiveWindow/LiveWindow.cpp
deleted file mode 100644
index a2ecbc6..0000000
--- a/aos/externals/WPILib/WPILib/LiveWindow/LiveWindow.cpp
+++ /dev/null
@@ -1,209 +0,0 @@
-#include "LiveWindow/LiveWindow.h"
-#include "networktables/NetworkTable.h"
-#include <algorithm>
-#include <sstream>
-
-LiveWindow* LiveWindow::m_instance = NULL;
-ReentrantSemaphore LiveWindow::m_instanceLock;
-
-/**
- * Get an instance of the LiveWindow main class
- * This is a singleton to guarantee that there is only a single instance regardless of
- * how many times GetInstance is called.
- */
-LiveWindow * LiveWindow::GetInstance()
-{
-  Synchronized sync(m_instanceLock);
-	if (m_instance == NULL)
-	{
-		m_instance = new LiveWindow();
-	}
-	return m_instance;
-}
-
-/**
- * LiveWindow constructor.
- * Allocate the necessary tables.
- */
-LiveWindow::LiveWindow()
-{
-#if 0
-	m_enabled = false;
-	m_liveWindowTable = NetworkTable::GetTable("LiveWindow");
-	m_statusTable = m_liveWindowTable->GetSubTable("~STATUS~");
-	m_scheduler = Scheduler::GetInstance();
-#endif
-}
-
-/**
- * Change the enabled status of LiveWindow
- * If it changes to enabled, start livewindow running otherwise stop it
- */
-void LiveWindow::SetEnabled(bool enabled)
-{
-#if 0
-	if (m_enabled == enabled)
-		return;
-	if (enabled)
-	{
-		printf("Starting live window mode\n");
-		if (m_firstTime)
-		{
-			InitializeLiveWindowComponents();
-			m_firstTime = false;
-		}
-		m_scheduler->SetEnabled(false);
-		m_scheduler->RemoveAll();
-		for (std::map<LiveWindowSendable *, LiveWindowComponent>::iterator it =
-				m_components.begin(); it != m_components.end(); ++it)
-		{
-			it->first->StartLiveWindowMode();
-		}
-	}
-	else
-	{
-		printf("Ending LiveWindow mode\n");
-		for (std::map<LiveWindowSendable *, LiveWindowComponent>::iterator it =
-				m_components.begin(); it != m_components.end(); ++it)
-		{
-			it->first->StopLiveWindowMode();
-		}
-		m_scheduler->SetEnabled(true);
-	}
-	m_enabled = enabled;
-	m_statusTable->PutBoolean("LW Enabled", m_enabled);
-#endif
-}
-
-LiveWindow::~LiveWindow()
-{
-}
-
-/**
- * Add a Sensor associated with the subsystem and with call it by the given name.
- * @param subsystem The subsystem this component is part of.
- * @param name The name of this component.
- * @param component A LiveWindowSendable component that represents a sensor.
- */
-void LiveWindow::AddSensor(const char *subsystem, const char *name,
-		LiveWindowSendable *component)
-{
-#if 0
-	m_components[component].subsystem = subsystem;
-	m_components[component].name = name;
-	m_components[component].isSensor = true;
-#endif
-}
-
-/**
- * Add an Actuator associated with the subsystem and with call it by the given name.
- * @param subsystem The subsystem this component is part of.
- * @param name The name of this component.
- * @param component A LiveWindowSendable component that represents a actuator.
- */
-void LiveWindow::AddActuator(const char *subsystem, const char *name,
-		LiveWindowSendable *component)
-{
-#if 0
-	m_components[component].subsystem = subsystem;
-	m_components[component].name = name;
-	m_components[component].isSensor = false;
-#endif
-}
-
-/**
- * INTERNAL
- */
-void LiveWindow::AddSensor(std::string type, int module, int channel, LiveWindowSendable *component)
-{
-#if 0
-	std::ostringstream oss;
-	oss << type << "[" << module << "," << channel << "]";
-	std::string types(oss.str());
-	char* cc = new char[types.size() + 1];
-	types.copy(cc, types.size());
-	cc[types.size()]='\0';
-	AddSensor("Ungrouped", cc, component);
-	if (std::find(m_sensors.begin(), m_sensors.end(), component) == m_sensors.end())
-		m_sensors.push_back(component);
-#endif
-}
-
-/**
- * INTERNAL
- */
-void LiveWindow::AddActuator(std::string type, int module, int channel, LiveWindowSendable *component)
-{
-#if 0
-	std::ostringstream oss;
-	oss << type << "[" << module << "," << channel << "]";
-	std::string types(oss.str());
-	char* cc = new char[types.size() + 1];
-	types.copy(cc, types.size());
-	cc[types.size()]='\0';
-	AddActuator("Ungrouped", cc, component);
-#endif
-}
-
-/**
- * Tell all the sensors to update (send) their values
- * Actuators are handled through callbacks on their value changing from the
- * SmartDashboard widgets.
- */
-void LiveWindow::UpdateValues()
-{
-#if 0
-	for (unsigned int i = 0; i < m_sensors.size(); i++)
-	{
-		m_sensors[i]->UpdateTable();
-	}
-#endif
-}
-
-/**
- * This method is called periodically to cause the sensors to send new values
- * to the SmartDashboard.
- */
-void LiveWindow::Run()
-{
-#if 0
-	if (m_enabled)
-	{
-		UpdateValues();
-	}
-#endif
-}
-
-/**
- * Initialize all the LiveWindow elements the first time we enter LiveWindow mode.
- * By holding off creating the NetworkTable entries, it allows them to be redefined
- * before the first time in LiveWindow mode. This allows default sensor and actuator
- * values to be created that are replaced with the custom names from users calling
- * addActuator and addSensor.
- */
-void LiveWindow::InitializeLiveWindowComponents()
-{
-#if 0
-	for (std::map<LiveWindowSendable *, LiveWindowComponent>::iterator it =
-			m_components.begin(); it != m_components.end(); ++it)
-	{
-		LiveWindowSendable *component = it->first;
-		LiveWindowComponent c = it->second;
-		std::string subsystem = c.subsystem;
-		std::string name = c.name;
-		m_liveWindowTable->GetSubTable(subsystem)->PutString("~TYPE~",
-				"LW Subsystem");
-		ITable *table = m_liveWindowTable->GetSubTable(subsystem)->GetSubTable(
-				name);
-		table->PutString("~TYPE~", component->GetSmartDashboardType());
-		table->PutString("Name", name);
-		table->PutString("Subsystem", subsystem);
-		component->InitTable(table);
-		if (c.isSensor)
-		{
-			m_sensors.push_back(component);
-		}
-	}
-#endif
-}
-
diff --git a/aos/externals/WPILib/WPILib/LiveWindow/LiveWindow.h b/aos/externals/WPILib/WPILib/LiveWindow/LiveWindow.h
deleted file mode 100644
index 2b103f7..0000000
--- a/aos/externals/WPILib/WPILib/LiveWindow/LiveWindow.h
+++ /dev/null
@@ -1,81 +0,0 @@
-#ifndef _LIVE_WINDOW_H
-#define _LIVE_WINDOW_H
-
-#include "LiveWindow/LiveWindowSendable.h"
-#include "tables/ITable.h"
-#include "Commands/Scheduler.h"
-#include "Synchronized.h"
-#include <vector>
-#include <map>
-
-struct LiveWindowComponent
-{
-#if 0
-	std::string subsystem;
-	std::string name;
-	bool isSensor;
-#endif
-
-	LiveWindowComponent()
-	{}//WTF?
-	LiveWindowComponent(std::string subsystem, std::string name, bool isSensor)
-	{
-#if 0
-		this->subsystem = subsystem;
-		this->name = name;
-		this->isSensor = isSensor;
-#else
-    (void)subsystem;
-    (void)name;
-    (void)isSensor;
-#endif
-	}
-};
-
-/**
- * The LiveWindow class is the public interface for putting sensors and actuators
- * on the LiveWindow.
- *
- * @author Brad Miller
- */
-class LiveWindow {
-public:
-	static LiveWindow * GetInstance();
-	void Run();
-	void AddSensor(const char *subsystem, const char *name, LiveWindowSendable *component);
-	void AddActuator(const char *subsystem, const char *name, LiveWindowSendable *component);
-	void AddSensor(std::string type, int module, int channel, LiveWindowSendable *component);
-	void AddActuator(std::string type, int module, int channel, LiveWindowSendable *component);
-	
-	bool IsEnabled() { return false; }
-	void SetEnabled(bool enabled);
-
-protected:
-	LiveWindow();
-	virtual ~LiveWindow();
-
-private:
-	void UpdateValues();
-	void Initialize();
-	void InitializeLiveWindowComponents();
-	
-#if 0
-	std::vector<LiveWindowSendable *> m_sensors;
-	std::map<LiveWindowSendable *, LiveWindowComponent> m_components;
-	
-#endif
-	static LiveWindow *m_instance;
-  static ReentrantSemaphore m_instanceLock;
-#if 0
-	ITable *m_liveWindowTable;
-	ITable *m_statusTable;
-	
-	Scheduler *m_scheduler;
-	
-	bool m_enabled;
-	bool m_firstTime;
-#endif
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/LiveWindow/LiveWindowSendable.h b/aos/externals/WPILib/WPILib/LiveWindow/LiveWindowSendable.h
deleted file mode 100644
index abc4f7e..0000000
--- a/aos/externals/WPILib/WPILib/LiveWindow/LiveWindowSendable.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) Patrick Plenefisch 2012. All Rights Reserved.			      */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef LIVEWINDOWSENDABLE_H_
-#define LIVEWINDOWSENDABLE_H_
-
-#include "SmartDashboard/Sendable.h"
-
-/**
- * Live Window Sendable is a special type of object sendable to the live window.
- *
- * @author Patrick Plenefisch
- */
-class LiveWindowSendable: public Sendable
-{
-public:
-    /**
-     * Update the table for this sendable object with the latest
-     * values.
-     */
-    virtual void UpdateTable() = 0;
-
-    /**
-     * Start having this sendable object automatically respond to
-     * value changes reflect the value on the table.
-     */
-    virtual void StartLiveWindowMode() = 0;
-
-    /**
-     * Stop having this sendable object automatically respond to value
-     * changes.
-     */
-    virtual void StopLiveWindowMode() = 0;
-};
-
-
-#endif /* LIVEWINDOWSENDABLE_H_ */
diff --git a/aos/externals/WPILib/WPILib/LiveWindow/LiveWindowStatusListener.cpp b/aos/externals/WPILib/WPILib/LiveWindow/LiveWindowStatusListener.cpp
deleted file mode 100644
index 5a80f90..0000000
--- a/aos/externals/WPILib/WPILib/LiveWindow/LiveWindowStatusListener.cpp
+++ /dev/null
@@ -1,7 +0,0 @@
-#include "LiveWindow/LiveWindowStatusListener.h"
-#include "Commands/Scheduler.h"
-
-void LiveWindowStatusListener::ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew) {
-	
-}
-
diff --git a/aos/externals/WPILib/WPILib/LiveWindow/LiveWindowStatusListener.h b/aos/externals/WPILib/WPILib/LiveWindow/LiveWindowStatusListener.h
deleted file mode 100644
index 7c701e3..0000000
--- a/aos/externals/WPILib/WPILib/LiveWindow/LiveWindowStatusListener.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef _LIVE_WINDOW_STATUS_LISTENER_H
-#define _LIVE_WINDOW_STATUS_LISTENER_H
-
-#include "tables/ITable.h"
-#include "tables/ITableListener.h"
-
-class LiveWindowStatusListener : public ITableListener {
-public:
-	virtual void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-};
-
-#endif 
diff --git a/aos/externals/WPILib/WPILib/Makefile b/aos/externals/WPILib/WPILib/Makefile
deleted file mode 100644
index 598ecf3..0000000
--- a/aos/externals/WPILib/WPILib/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-# force powerpc compilers
-CXX=powerpc-wrs-vxworks-g++
-AR=powerpc-wrs-vxworks-ar
-
-CPPFILES := $(shell find -name '*.cpp' | sort | sed 's/\.\///g')
-OBJS = $(CPPFILES:.cpp=.o)
-
-WPILib.a: $(OBJS)
-	@echo " [AR]	WPILib.a"
-	@$(AR) crus WPILib.a $(OBJS)
-
-%.o: %.cpp
-	@echo " [G++]	"$?
-	@mkdir -p `dirname Debug/$@`
-	@$(CXX) -o $@ -c $? -g -I. -mcpu=603 -mstrict-align -mlongcall -Wall -DTOOL=GNU -D'SVN_REV="3623+1"' -std=c++11
-
-clean-objects:
-	@$(foreach obf, $(shell find -name '*.o' | sort | sed 's/\.\///g'), echo " [RM]	"$(obf);rm -rf $(obf);)
-	
-clean-wpilib:
-	@echo " [RM]	WPILib.a"
-	@rm -rf WPILib.a
-	
-clean: clean-objects clean-wpilib
-	
-install:
-	mkdir -p $(DESTDIR)$(PREFIX)/lib
-	cp WPILib.a $(DESTDIR)$(PREFIX)/lib/libWPILib.a
-	$(foreach hdir,$(shell find -name '*.h' | sed 's/\.\///g' | xargs -L 1 dirname | sort | uniq),mkdir -p $(DESTDIR)$(PREFIX)/include/WPILib/$(hdir);)
-	$(foreach header, $(shell find -name '*.h' | sed 's/\.\///g'), cp $(header) $(DESTDIR)$(PREFIX)/include/WPILib/$(header);)
-
-rebuild: clean all
-
-all: WPILib.a
diff --git a/aos/externals/WPILib/WPILib/Module.cpp b/aos/externals/WPILib/WPILib/Module.cpp
deleted file mode 100644
index 727fda3..0000000
--- a/aos/externals/WPILib/WPILib/Module.cpp
+++ /dev/null
@@ -1,95 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Module.h"
-#include "AnalogModule.h"
-#include "DigitalModule.h"
-//#include "SolenoidModule.h"
-#include "Utility.h"
-
-ReentrantSemaphore Module::m_semaphore;
-
-Module* Module::m_modules[kMaxModules] = {NULL};
-
-/**
- * Constructor.
- * 
- * @param type The type of module represented.
- * @param number The module index within the module type.
- */
-Module::Module(nLoadOut::tModuleType type, uint8_t number)
-	: m_moduleType (type)
-	, m_moduleNumber (number)
-{
-  Synchronized sync(m_semaphore);
-	m_modules[ToIndex(type, number)] = this;
-}
-
-/**
- * Destructor.
- */
-Module::~Module()
-{
-  m_modules[ToIndex(m_moduleType, m_moduleNumber)] = NULL;
-}
-
-/**
- * Static module singleton factory.
- * 
- * @param type The type of module represented.
- * @param number The module index within the module type.
- */
-Module* Module::GetModule(nLoadOut::tModuleType type, uint8_t number)
-{
-  Synchronized sync(m_semaphore);
-	if (m_modules[ToIndex(type, number)] == NULL)
-	{
-		switch(type)
-		{
-		case nLoadOut::kModuleType_Analog:
-			new AnalogModule(number);
-			break;
-		case nLoadOut::kModuleType_Digital:
-			new DigitalModule(number);
-			break;
-/*
-		case nLoadOut::kModuleType_Solenoid:
-			new SolenoidModule(number);
-			break;
-*/
-		default:
-		    return NULL;
-		}
-	}
-	return m_modules[ToIndex(type, number)];
-}
-
-/**
- * Create an index into the m_modules array based on type and number
- * 
- * @param type The type of module represented.
- * @param number The module index within the module type.
- * @return The index into m_modules.
- */
-uint8_t Module::ToIndex(nLoadOut::tModuleType type, uint8_t number)
-{
-	if (number == 0 || number > kMaxModuleNumber) {
-    char buf[64];
-    snprintf(buf, sizeof(buf), "Trying to get index for invalid module %d",
-             static_cast<int>(number));
-    wpi_assertWithMessage(false, buf);
-    return 0;
-  }
-	if (type < nLoadOut::kModuleType_Analog ||
-      type > nLoadOut::kModuleType_Solenoid) {
-    char buf[64];
-    snprintf(buf, sizeof(buf), "Trying to get index for invalid module type %d",
-             static_cast<int>(type));
-    wpi_assertWithMessage(false, buf);
-    return 0;
-  }
-	return (type * kMaxModuleNumber) + (number - 1);
-}
diff --git a/aos/externals/WPILib/WPILib/Module.h b/aos/externals/WPILib/WPILib/Module.h
deleted file mode 100644
index 390d77a..0000000
--- a/aos/externals/WPILib/WPILib/Module.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef MODULE_H_
-#define MODULE_H_
-
-#include "SensorBase.h"
-#include "NetworkCommunication/LoadOut.h"
-#include "Synchronized.h"
-
-#define kMaxModules	(nLoadOut::kModuleType_Solenoid * kMaxModuleNumber + (kMaxModuleNumber - 1))
-
-class Module: public SensorBase
-{
-public:
-	nLoadOut::tModuleType GetType() {return m_moduleType;}
-	uint8_t GetNumber() {return m_moduleNumber;}
-	static Module *GetModule(nLoadOut::tModuleType type, uint8_t number);
-
-protected:
-	Module(nLoadOut::tModuleType type, uint8_t number);
-	virtual ~Module();
-
-	nLoadOut::tModuleType m_moduleType; ///< The type of module represented.
-	uint8_t m_moduleNumber; ///< The module index within the module type.
-
-private:
-	static uint8_t ToIndex(nLoadOut::tModuleType type, uint8_t number);
-	static Module* m_modules[kMaxModules];
-  static ReentrantSemaphore m_semaphore;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/MotorSafety.h b/aos/externals/WPILib/WPILib/MotorSafety.h
deleted file mode 100644
index a13ac38..0000000
--- a/aos/externals/WPILib/WPILib/MotorSafety.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-#ifndef _MOTOR_SAFETY_
-#define _MOTOR_SAFETY_
-
-#define DEFAULT_SAFETY_EXPIRATION 0.1
-
-class MotorSafety {
-public:
-	virtual void SetExpiration(float timeout) = 0;
-	virtual float GetExpiration() = 0;
-	virtual bool IsAlive() = 0;
-	virtual void StopMotor() = 0;
-	virtual void SetSafetyEnabled(bool enabled) = 0;
-	virtual bool IsSafetyEnabled() = 0;
-  // May write to the first 64 bytes of desc.
-	virtual void GetDescription(char *desc) = 0;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/MotorSafetyHelper.cpp b/aos/externals/WPILib/WPILib/MotorSafetyHelper.cpp
deleted file mode 100644
index 23e49d5..0000000
--- a/aos/externals/WPILib/WPILib/MotorSafetyHelper.cpp
+++ /dev/null
@@ -1,156 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "MotorSafetyHelper.h"
-
-#include "DriverStation.h"
-#include "MotorSafety.h"
-#include "Timer.h"
-#include "WPIErrors.h"
-
-#include <stdio.h>
-
-MotorSafetyHelper *MotorSafetyHelper::m_headHelper = NULL;
-ReentrantSemaphore MotorSafetyHelper::m_listMutex;
-
-/**
- * The constructor for a MotorSafetyHelper object.
- * The helper object is constructed for every object that wants to implement the Motor
- * Safety protocol. The helper object has the code to actually do the timing and call the
- * motors Stop() method when the timeout expires. The motor object is expected to call the
- * Feed() method whenever the motors value is updated.
- * @param safeObject a pointer to the motor object implementing MotorSafety. This is used
- * to call the Stop() method on the motor.
- */
-MotorSafetyHelper::MotorSafetyHelper(MotorSafety *safeObject)
-{
-	m_safeObject = safeObject;
-	m_enabled = false;
-	m_expiration = DEFAULT_SAFETY_EXPIRATION;
-	m_stopTime = Timer::GetFPGATimestamp();
-
-	Synchronized sync(m_listMutex);
-	m_nextHelper = m_headHelper;
-	m_headHelper = this;
-}
-
-
-MotorSafetyHelper::~MotorSafetyHelper()
-{
-	Synchronized sync(m_listMutex);
-	if (m_headHelper == this)
-	{
-		m_headHelper = m_nextHelper;
-	}
-	else
-	{
-		MotorSafetyHelper *prev = NULL;
-		MotorSafetyHelper *cur = m_headHelper;
-		while (cur != this && cur != NULL)
-			prev = cur, cur = cur->m_nextHelper;
-		if (cur == this)
-			prev->m_nextHelper = cur->m_nextHelper;
-	}
-}
-
-/*
- * Feed the motor safety object.
- * Resets the timer on this object that is used to do the timeouts.
- */
-void MotorSafetyHelper::Feed()
-{
-	Synchronized sync(m_syncMutex);
-	m_stopTime = Timer::GetFPGATimestamp() + m_expiration;
-}
-
-/*
- * Set the expiration time for the corresponding motor safety object.
- * @param expirationTime The timeout value in seconds.
- */
-void MotorSafetyHelper::SetExpiration(float expirationTime)
-{
-	Synchronized sync(m_syncMutex);
-	m_expiration = expirationTime;
-}
-
-/**
- * Retrieve the timeout value for the corresponding motor safety object.
- * @returns the timeout value in seconds.
- */
-float MotorSafetyHelper::GetExpiration()
-{
-	Synchronized sync(m_syncMutex);
-	return m_expiration;
-}
-
-/**
- * Determine if the motor is still operating or has timed out.
- * @returns a true value if the motor is still operating normally and hasn't timed out.
- */
-bool MotorSafetyHelper::IsAlive()
-{
-	Synchronized sync(m_syncMutex);
-	return !m_enabled || m_stopTime > Timer::GetFPGATimestamp();
-}
-
-/**
- * Check if this motor has exceeded its timeout.
- * This method is called periodically to determine if this motor has exceeded its timeout
- * value. If it has, the stop method is called, and the motor is shut down until its value is
- * updated again.
- */
-void MotorSafetyHelper::Check()
-{
-	DriverStation *ds = DriverStation::GetInstance();
-	if (!m_enabled || ds->IsDisabled() || ds->IsTest()) return;
-
-	Synchronized sync(m_syncMutex);
-	if (m_stopTime < Timer::GetFPGATimestamp())
-	{
-		char buf[128];
-		char desc[64];
-		m_safeObject->GetDescription(desc);
-		snprintf(buf, 128, "%s... Output not updated often enough.", desc);
-		wpi_setWPIErrorWithContext(Timeout, buf);
-		m_safeObject->StopMotor();
-	}
-}
-
-/**
- * Enable/disable motor safety for this device
- * Turn on and off the motor safety option for this PWM object.
- * @param enabled True if motor safety is enforced for this object
- */
-void MotorSafetyHelper::SetSafetyEnabled(bool enabled)
-{
-	Synchronized sync(m_syncMutex);
-	m_enabled = enabled;
-}
-
-/**
- * Return the state of the motor safety enabled flag
- * Return if the motor safety is currently enabled for this devicce.
- * @returns True if motor safety is enforced for this device
- */
-bool MotorSafetyHelper::IsSafetyEnabled()
-{
-	Synchronized sync(m_syncMutex);
-	return m_enabled;
-}
-
-/**
- * Check the motors to see if any have timed out.
- * This static  method is called periodically to poll all the motors and stop any that have
- * timed out.
- */
-void MotorSafetyHelper::CheckMotors()
-{
-	Synchronized sync(m_listMutex);
-	for (MotorSafetyHelper *msh = m_headHelper; msh != NULL; msh = msh->m_nextHelper)
-	{
-		msh->Check();
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/MotorSafetyHelper.h b/aos/externals/WPILib/WPILib/MotorSafetyHelper.h
deleted file mode 100644
index 67a6a2f..0000000
--- a/aos/externals/WPILib/WPILib/MotorSafetyHelper.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __MOTOR_SAFETY_HELPER__
-#define __MOTOR_SAFETY_HELPER__
-
-#include "ErrorBase.h"
-#include "Synchronized.h"
-#include <semLib.h>
-
-class MotorSafety;
-
-class MotorSafetyHelper : public ErrorBase
-{
-public:
-	MotorSafetyHelper(MotorSafety *safeObject);
-	~MotorSafetyHelper();
-	void Feed();
-	void SetExpiration(float expirationTime);
-	float GetExpiration();
-	bool IsAlive();
-	void Check();
-	void SetSafetyEnabled(bool enabled);
-	bool IsSafetyEnabled();
-	static void CheckMotors();
-private:
-	double m_expiration;			// the expiration time for this object
-	bool m_enabled;					// true if motor safety is enabled for this motor
-	double m_stopTime; 				// the FPGA clock value when this motor has expired
-	ReentrantSemaphore m_syncMutex;			// protect accesses to the state for this object
-	MotorSafety *m_safeObject;		// the object that is using the helper
-	MotorSafetyHelper *m_nextHelper; // next object in the list of MotorSafetyHelpers
-	static MotorSafetyHelper *m_headHelper; // the head of the list of MotorSafetyHelper objects
-	static ReentrantSemaphore m_listMutex;	// protect accesses to the list of helpers
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/NetworkCommunication/AICalibration.h b/aos/externals/WPILib/WPILib/NetworkCommunication/AICalibration.h
deleted file mode 100644
index 8b94b65..0000000
--- a/aos/externals/WPILib/WPILib/NetworkCommunication/AICalibration.h
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#ifndef __AICalibration_h__
-#define __AICalibration_h__
-
-#include <vxWorks.h>
-
-#ifdef __cplusplus
-extern "C"
-{
-#endif
-
-	uint32_t FRC_NetworkCommunication_nAICalibration_getLSBWeight(const uint32_t aiSystemIndex, const uint32_t channel, int32_t *status);
-	int32_t FRC_NetworkCommunication_nAICalibration_getOffset(const uint32_t aiSystemIndex, const uint32_t channel, int32_t *status);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // __AICalibration_h__
diff --git a/aos/externals/WPILib/WPILib/NetworkCommunication/FRCComm.h b/aos/externals/WPILib/WPILib/NetworkCommunication/FRCComm.h
deleted file mode 100644
index 80f91a9..0000000
--- a/aos/externals/WPILib/WPILib/NetworkCommunication/FRCComm.h
+++ /dev/null
@@ -1,180 +0,0 @@
-/*************************************************************
- * 					NOTICE
- * 
- * 	These are the only externally exposed functions to the
- *   NetworkCommunication library
- * 
- * This is an implementation of FRC Spec for Comm Protocol
- * Revision 4.5, June 30, 2008
- *
- * Copyright (c) National Instruments 2008.  All Rights Reserved.
- * 
- *************************************************************/
-
-#ifndef __FRC_COMM_H__
-#define __FRC_COMM_H__
-
-#ifdef SIMULATION
-#include <vxWorks_compat.h>
-#define EXPORT_FUNC __declspec(dllexport) __cdecl
-#else
-#include <vxWorks.h>
-#define EXPORT_FUNC
-#endif
-
-// Commandeer some bytes at the end for advanced I/O feedback.
-#define IO_CONFIG_DATA_SIZE 32
-#define SYS_STATUS_DATA_SIZE 44
-#define USER_STATUS_DATA_SIZE (984 - IO_CONFIG_DATA_SIZE - SYS_STATUS_DATA_SIZE)
-#define USER_DS_LCD_DATA_SIZE 128
-
-struct FRCCommonControlData{
-	uint16_t packetIndex;
-	union {
-		uint8_t control;
-#ifdef SIMULATION
-		struct {
-			uint8_t checkVersions :1;
-			uint8_t test :1;
-			uint8_t resync : 1;
-			uint8_t fmsAttached:1;
-			uint8_t autonomous : 1;
-			uint8_t enabled : 1;
-			uint8_t notEStop : 1;
-			uint8_t reset : 1;
-		};
-#else
-		struct {
-			uint8_t reset : 1;
-			uint8_t notEStop : 1;
-			uint8_t enabled : 1;
-			uint8_t autonomous : 1;
-			uint8_t fmsAttached:1;
-			uint8_t resync : 1;
-			uint8_t test :1;
-			uint8_t checkVersions :1;
-		};
-#endif
-	};
-	uint8_t dsDigitalIn;
-	uint16_t teamID;
-
-	char dsID_Alliance;
-	char dsID_Position;
-
-	union {
-		int8_t stick0Axes[6];
-		struct {
-			int8_t stick0Axis1;
-			int8_t stick0Axis2;
-			int8_t stick0Axis3;
-			int8_t stick0Axis4;
-			int8_t stick0Axis5;
-			int8_t stick0Axis6;
-		};
-	};
-	uint16_t stick0Buttons;		// Left-most 4 bits are unused
-
-	union {
-		int8_t stick1Axes[6];
-		struct {
-			int8_t stick1Axis1;
-			int8_t stick1Axis2;
-			int8_t stick1Axis3;
-			int8_t stick1Axis4;
-			int8_t stick1Axis5;
-			int8_t stick1Axis6;
-		};
-	};
-	uint16_t stick1Buttons;		// Left-most 4 bits are unused
-
-	union {
-		int8_t stick2Axes[6];
-		struct {
-			int8_t stick2Axis1;
-			int8_t stick2Axis2;
-			int8_t stick2Axis3;
-			int8_t stick2Axis4;
-			int8_t stick2Axis5;
-			int8_t stick2Axis6;
-		};
-	};
-	uint16_t stick2Buttons;		// Left-most 4 bits are unused
-
-	union {
-		int8_t stick3Axes[6];
-		struct {
-			int8_t stick3Axis1;
-			int8_t stick3Axis2;
-			int8_t stick3Axis3;
-			int8_t stick3Axis4;
-			int8_t stick3Axis5;
-			int8_t stick3Axis6;
-		};
-	};
-	uint16_t stick3Buttons;		// Left-most 4 bits are unused
-
-	//Analog inputs are 10 bit right-justified
-	uint16_t analog1;
-	uint16_t analog2;
-	uint16_t analog3;
-	uint16_t analog4;
-
-	uint64_t cRIOChecksum;
-	uint32_t FPGAChecksum0;
-	uint32_t FPGAChecksum1;
-	uint32_t FPGAChecksum2;
-	uint32_t FPGAChecksum3;
-
-	char versionData[8];
-};
-
-#define kFRC_NetworkCommunication_DynamicType_DSEnhancedIO_Input 17
-#define kFRC_NetworkCommunication_DynamicType_DSEnhancedIO_Output 18
-#define kFRC_NetworkCommunication_DynamicType_Kinect_Header 19
-#define kFRC_NetworkCommunication_DynamicType_Kinect_Extra1 20
-#define kFRC_NetworkCommunication_DynamicType_Kinect_Vertices1 21
-#define kFRC_NetworkCommunication_DynamicType_Kinect_Extra2 22
-#define kFRC_NetworkCommunication_DynamicType_Kinect_Vertices2 23
-#define kFRC_NetworkCommunication_DynamicType_Kinect_Joystick 24
-#define kFRC_NetworkCommunication_DynamicType_Kinect_Custom 25
-
-extern "C" {
-#ifndef SIMULATION
-	void EXPORT_FUNC getFPGAHardwareVersion(uint16_t *fpgaVersion, uint32_t *fpgaRevision);
-#endif
-	int EXPORT_FUNC getCommonControlData(FRCCommonControlData *data, int wait_ms);
-	int EXPORT_FUNC getRecentCommonControlData(FRCCommonControlData *commonData, int wait_ms);
-	int EXPORT_FUNC getRecentStatusData(uint8_t *batteryInt, uint8_t *batteryDec, uint8_t *dsDigitalOut, int wait_ms);
-	int EXPORT_FUNC getDynamicControlData(uint8_t type, char *dynamicData, int32_t maxLength, int wait_ms);
-	int EXPORT_FUNC setStatusData(float battery, uint8_t dsDigitalOut, uint8_t updateNumber,
-			const char *userDataHigh, int userDataHighLength,
-			const char *userDataLow, int userDataLowLength, int wait_ms);
-	int EXPORT_FUNC setStatusDataFloatAsInt(int battery, uint8_t dsDigitalOut, uint8_t updateNumber,
-			const char *userDataHigh, int userDataHighLength,
-			const char *userDataLow, int userDataLowLength, int wait_ms);
-	int EXPORT_FUNC setErrorData(const char *errors, int errorsLength, int wait_ms);
-	int EXPORT_FUNC setUserDsLcdData(const char *userDsLcdData, int userDsLcdDataLength, int wait_ms);
-	int EXPORT_FUNC overrideIOConfig(const char *ioConfig, int wait_ms);
-
-	void EXPORT_FUNC setNewDataSem(SEM_ID);
-#ifndef SIMULATION
-	void EXPORT_FUNC setResyncSem(SEM_ID);
-	void EXPORT_FUNC signalResyncActionDone(void);
-#endif
-
-	// this uint32_t is really a LVRefNum
-	void EXPORT_FUNC setNewDataOccurRef(uint32_t refnum);
-#ifndef SIMULATION
-	void EXPORT_FUNC setResyncOccurRef(uint32_t refnum);
-#endif
-
-	void EXPORT_FUNC FRC_NetworkCommunication_getVersionString(char *version);
-	void EXPORT_FUNC FRC_NetworkCommunication_observeUserProgramStarting(void);
-	void EXPORT_FUNC FRC_NetworkCommunication_observeUserProgramDisabled(void);
-	void EXPORT_FUNC FRC_NetworkCommunication_observeUserProgramAutonomous(void);
-	void EXPORT_FUNC FRC_NetworkCommunication_observeUserProgramTeleop(void);
-	void EXPORT_FUNC FRC_NetworkCommunication_observeUserProgramTest(void);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/NetworkCommunication/LoadOut.h b/aos/externals/WPILib/WPILib/NetworkCommunication/LoadOut.h
deleted file mode 100644
index f28249e..0000000
--- a/aos/externals/WPILib/WPILib/NetworkCommunication/LoadOut.h
+++ /dev/null
@@ -1,39 +0,0 @@
-
-#ifndef __LoadOut_h__
-#define __LoadOut_h__
-
-#define kMaxModuleNumber 2
-namespace nLoadOut
-{
-    typedef enum {
-        kModuleType_Unknown = 0x00,
-        kModuleType_Analog = 0x01,
-        kModuleType_Digital = 0x02,
-        kModuleType_Solenoid = 0x03,
-    } tModuleType;
-    bool getModulePresence(tModuleType moduleType, uint8_t moduleNumber);
-    typedef enum {
-        kTargetClass_Unknown = 0x00,
-        kTargetClass_FRC1 = 0x10,
-        kTargetClass_FRC2 = 0x20,
-        kTargetClass_FRC2_Analog = kTargetClass_FRC2 | kModuleType_Analog,
-        kTargetClass_FRC2_Digital = kTargetClass_FRC2 | kModuleType_Digital,
-        kTargetClass_FRC2_Solenoid = kTargetClass_FRC2 | kModuleType_Solenoid,
-        kTargetClass_FamilyMask = 0xF0,
-        kTargetClass_ModuleMask = 0x0F,
-    } tTargetClass;
-    tTargetClass getTargetClass();
-}
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-    uint32_t FRC_NetworkCommunication_nLoadOut_getModulePresence(uint32_t moduleType, uint8_t moduleNumber);
-    uint32_t FRC_NetworkCommunication_nLoadOut_getTargetClass();
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // __LoadOut_h__
diff --git a/aos/externals/WPILib/WPILib/NetworkCommunication/Makefile b/aos/externals/WPILib/WPILib/NetworkCommunication/Makefile
deleted file mode 100644
index bc19164..0000000
--- a/aos/externals/WPILib/WPILib/NetworkCommunication/Makefile
+++ /dev/null
@@ -1,2184 +0,0 @@
-# Wind River Workbench generated Makefile.
-# Do not edit!!!
-#
-# The file ".wrmakefile" is the template used by the Wind River Workbench to
-# generate the makefiles of this project. Add user-specific build targets and
-# make rules only(!) in this project's ".wrmakefile" file. These will then be
-# automatically dumped into the makefiles.
-
-WIND_HOME := $(subst \,/,$(WIND_HOME))
-WIND_BASE := $(subst \,/,$(WIND_BASE))
-WIND_USR := $(subst \,/,$(WIND_USR))
-
-all : pre_build main_all post_build
-
-_clean ::
-	@echo "make: removing targets and objects of `pwd`"
-
-TRACE=0
-TRACEON=$(TRACE:0=@)
-TRACE_FLAG=$(TRACEON:1=)
-
-MAKEFILE := Makefile
-
-BUILD_SPEC = PPC603gnu
-DEBUG_MODE = 1
-SRC_DIR := .
-BUILD_ROOT_DIR := 
-PRJ_ROOT_DIR := C:/windriver/workspace/WPILib
-WS_ROOT_DIR := C:/windriver/workspace
-
-ALL_BUILD_SPECS := PPC32diab PPC32gnu PPC32sfdiab PPC32sfgnu \
-	 PPC403diab PPC403gnu PPC405diab PPC405gnu \
-	 PPC405sfdiab PPC405sfgnu PPC440diab PPC440gnu \
-	 PPC440sfdiab PPC440sfgnu PPC603diab PPC603gnu \
-	 PPC604diab PPC604gnu PPC85XXdiab PPC85XXgnu \
-	 PPC85XXsfdiab PPC85XXsfgnu PPC860sfdiab PPC860sfgnu \
-	 SIMLINUXdiab SIMLINUXgnu SIMNTdiab SIMNTgnu \
-	 SIMSPARCSOLARISdiab SIMSPARCSOLARISgnu
-ENABLED_BUILD_SPECS := PPC603gnu
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32diab_DEBUG
-else
-OBJ_DIR := PPC32diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32gnu_DEBUG
-else
-OBJ_DIR := PPC32gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32sfdiab_DEBUG
-else
-OBJ_DIR := PPC32sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32sfgnu_DEBUG
-else
-OBJ_DIR := PPC32sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC403diab_DEBUG
-else
-OBJ_DIR := PPC403diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC403gnu_DEBUG
-else
-OBJ_DIR := PPC403gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405diab_DEBUG
-else
-OBJ_DIR := PPC405diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405gnu_DEBUG
-else
-OBJ_DIR := PPC405gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405sfdiab_DEBUG
-else
-OBJ_DIR := PPC405sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405sfgnu_DEBUG
-else
-OBJ_DIR := PPC405sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440diab_DEBUG
-else
-OBJ_DIR := PPC440diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440gnu_DEBUG
-else
-OBJ_DIR := PPC440gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440sfdiab_DEBUG
-else
-OBJ_DIR := PPC440sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440sfgnu_DEBUG
-else
-OBJ_DIR := PPC440sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC603diab_DEBUG
-else
-OBJ_DIR := PPC603diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC603gnu_DEBUG
-else
-OBJ_DIR := PPC603gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC604diab_DEBUG
-else
-OBJ_DIR := PPC604diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC604gnu_DEBUG
-else
-OBJ_DIR := PPC604gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXdiab_DEBUG
-else
-OBJ_DIR := PPC85XXdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXgnu_DEBUG
-else
-OBJ_DIR := PPC85XXgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXsfdiab_DEBUG
-else
-OBJ_DIR := PPC85XXsfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXsfgnu_DEBUG
-else
-OBJ_DIR := PPC85XXsfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC860sfdiab_DEBUG
-else
-OBJ_DIR := PPC860sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC860sfgnu_DEBUG
-else
-OBJ_DIR := PPC860sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMLINUXdiab_DEBUG
-else
-OBJ_DIR := SIMLINUXdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMLINUXgnu_DEBUG
-else
-OBJ_DIR := SIMLINUXgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMNTdiab_DEBUG
-else
-OBJ_DIR := SIMNTdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMNTgnu_DEBUG
-else
-OBJ_DIR := SIMNTgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMSPARCSOLARISdiab_DEBUG
-else
-OBJ_DIR := SIMSPARCSOLARISdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMSPARCSOLARISgnu_DEBUG
-else
-OBJ_DIR := SIMSPARCSOLARISgnu
-endif
-endif
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-
-PROJECT_TYPE = DKM
-DEFINES = 
-EXPAND_DBG = 0
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCFH:vxworks63 -Xstmw-slow -DPPC32_fp60x
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC32gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mhard-float -mstrict-align -mno-implicit-fp -DPPC32_fp60x
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCFS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -msoft-float -mstrict-align
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC403diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC403
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC403FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC403gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC403
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=403 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC405FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=405 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC405FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=405 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC440FH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=440 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC440FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=440 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC603diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC603
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC603FH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC603gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC603
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=603 -mstrict-align -mno-implicit-fp -mlongcall
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I.. -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC604diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC604
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC604FH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC604gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC604
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=604 -mstrict-align -mno-implicit-fp
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCE500FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=8540 -mstrict-align -msoft-float -mabi=no-spe
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCE500FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=8540 -mstrict-align -msoft-float -mabi=no-spe
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC860
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC860FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC860
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=860 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-VX_CPU_FAMILY = simlinux
-CPU = SIMLINUX
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tX86LH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-VX_CPU_FAMILY = simlinux
-CPU = SIMLINUX
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mtune=i486 -march=i486
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-VX_CPU_FAMILY = simpc
-CPU = SIMNT
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tX86LH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-VX_CPU_FAMILY = simpc
-CPU = SIMNT
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mtune=i486 -march=i486
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-VX_CPU_FAMILY = simso
-CPU = SIMSPARCSOLARIS
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tSPARCFH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-VX_CPU_FAMILY = simso
-CPU = SIMSPARCSOLARIS
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = 
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space -Wa,-Xmnem-mit -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space -Wa,-Xmnem-mit -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-
-
-
-
-
--include $(PRJ_ROOT_DIR)/*.makefile
-
--include *.makefile
-
-main_all : external_build $(PROJECT_TARGETS)
-	@echo "make: built targets of `pwd`"
-
-# entry point for extending the build
-external_build ::
-	@echo ""
-
-# main entry point for pre processing prior to the build
-pre_build :: $(PRE_BUILD_STEP) generate_sources
-	@echo ""
-
-# entry point for generating sources prior to the build
-generate_sources ::
-	@echo ""
-
-# main entry point for post processing after the build
-post_build :: $(POST_BUILD_STEP) deploy_output
-	@echo ""
-
-# entry point for deploying output after the build
-deploy_output ::
-	@echo ""
-
-clean :: external_clean $(CLEAN_STEP) _clean
-
-# entry point for extending the build clean
-external_clean ::
-	@echo ""
diff --git a/aos/externals/WPILib/WPILib/NetworkCommunication/UsageReporting.h b/aos/externals/WPILib/WPILib/NetworkCommunication/UsageReporting.h
deleted file mode 100644
index 6d499b2..0000000
--- a/aos/externals/WPILib/WPILib/NetworkCommunication/UsageReporting.h
+++ /dev/null
@@ -1,135 +0,0 @@
-
-#ifndef __UsageReporting_h__
-#define __UsageReporting_h__
-
-#ifdef SIMULATION
-#include <vxWorks_compat.h>
-#define EXPORT_FUNC __declspec(dllexport) __cdecl
-#else
-#include <vxWorks.h>
-#define EXPORT_FUNC
-#endif
-
-#define kUsageReporting_version 1
-
-namespace nUsageReporting
-{
-    typedef enum
-    {
-        kResourceType_Controller,
-        kResourceType_Module,
-        kResourceType_Language,
-        kResourceType_CANPlugin,
-        kResourceType_Accelerometer,
-        kResourceType_ADXL345,
-        kResourceType_AnalogChannel,
-        kResourceType_AnalogTrigger,
-        kResourceType_AnalogTriggerOutput,
-        kResourceType_CANJaguar,
-        kResourceType_Compressor,
-        kResourceType_Counter,
-        kResourceType_Dashboard,
-        kResourceType_DigitalInput,
-        kResourceType_DigitalOutput,
-        kResourceType_DriverStationCIO,
-        kResourceType_DriverStationEIO,
-        kResourceType_DriverStationLCD,
-        kResourceType_Encoder,
-        kResourceType_GearTooth,
-        kResourceType_Gyro,
-        kResourceType_I2C,
-        kResourceType_Framework,
-        kResourceType_Jaguar,
-        kResourceType_Joystick,
-        kResourceType_Kinect,
-        kResourceType_KinectStick,
-        kResourceType_PIDController,
-        kResourceType_Preferences,
-        kResourceType_PWM,
-        kResourceType_Relay,
-        kResourceType_RobotDrive,
-        kResourceType_SerialPort,
-        kResourceType_Servo,
-        kResourceType_Solenoid,
-        kResourceType_SPI,
-        kResourceType_Task,
-        kResourceType_Ultrasonic,
-        kResourceType_Victor,
-        kResourceType_Button,
-        kResourceType_Command,
-        kResourceType_AxisCamera,
-        kResourceType_PCVideoServer,
-        kResourceType_SmartDashboard,
-        kResourceType_Talon,
-        kResourceType_HiTechnicColorSensor,
-        kResourceType_HiTechnicAccel,
-        kResourceType_HiTechnicCompass,
-        kResourceType_SRF08,
-    } tResourceType;
-
-    typedef enum
-    {
-        kLanguage_LabVIEW = 1,
-        kLanguage_CPlusPlus = 2,
-        kLanguage_Java = 3,
-        kLanguage_Python = 4,
-
-        kCANPlugin_BlackJagBridge = 1,
-        kCANPlugin_2CAN = 2,
-
-        kFramework_Iterative = 1,
-        kFramework_Simple = 2,
-
-        kRobotDrive_ArcadeStandard = 1,
-        kRobotDrive_ArcadeButtonSpin = 2,
-        kRobotDrive_ArcadeRatioCurve = 3,
-        kRobotDrive_Tank = 4,
-        kRobotDrive_MecanumPolar = 5,
-        kRobotDrive_MecanumCartesian = 6,
-
-        kDriverStationCIO_Analog = 1,
-        kDriverStationCIO_DigitalIn = 2,
-        kDriverStationCIO_DigitalOut = 3,
-
-        kDriverStationEIO_Acceleration = 1,
-        kDriverStationEIO_AnalogIn = 2,
-        kDriverStationEIO_AnalogOut = 3,
-        kDriverStationEIO_Button = 4,
-        kDriverStationEIO_LED = 5,
-        kDriverStationEIO_DigitalIn = 6,
-        kDriverStationEIO_DigitalOut = 7,
-        kDriverStationEIO_FixedDigitalOut = 8,
-        kDriverStationEIO_PWM = 9,
-        kDriverStationEIO_Encoder = 10,
-        kDriverStationEIO_TouchSlider = 11,
-
-        kADXL345_SPI = 1,
-        kADXL345_I2C = 2,
-
-        kCommand_Scheduler = 1,
-
-        kSmartDashboard_Instance = 1,
-    } tInstances;
-
-    /**
-     * Report the usage of a resource of interest.
-     * 
-     * @param resource one of the values in the tResourceType above (max value 51).
-     * @param instanceNumber an index that identifies the resource instance.
-     * @param context an optional additional context number for some cases (such as module number).  Set to 0 to omit.
-     * @param feature a string to be included describing features in use on a specific resource.  Setting the same resource more than once allows you to change the feature string.
-     */
-    uint32_t EXPORT_FUNC report(tResourceType resource, uint8_t instanceNumber, uint8_t context = 0, const char *feature = NULL);
-}
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-    uint32_t EXPORT_FUNC FRC_NetworkCommunication_nUsageReporting_report(uint8_t resource, uint8_t instanceNumber, uint8_t context, const char *feature);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // __UsageReporting_h__
diff --git a/aos/externals/WPILib/WPILib/NetworkCommunication/symModuleLink.h b/aos/externals/WPILib/WPILib/NetworkCommunication/symModuleLink.h
deleted file mode 100644
index dac419d..0000000
--- a/aos/externals/WPILib/WPILib/NetworkCommunication/symModuleLink.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef __SYM_MODULE_LINK_H__
-#define __SYM_MODULE_LINK_H__
-
-#include <vxWorks.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-extern STATUS    moduleNameFindBySymbolName
-    (
-        const char *    symbol,        /* symbol name to look for */
-        char * module        /* where to return module name */
-    );
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobot.cpp b/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobot.cpp
deleted file mode 100644
index 1e92caf..0000000
--- a/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobot.cpp
+++ /dev/null
@@ -1,485 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.                             */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "WPILib/NetworkRobot/NetworkRobot.h"
-
-#include <sockLib.h>
-#include <stdint.h>
-#include <selectLib.h>
-#include <assert.h>
-
-#include "WPILib/Utility.h"
-#include "WPILib/WPIErrors.h"
-#include "WPILib/SensorBase.h"
-#include "WPILib/Timer.h"
-
-const double NetworkRobot::kDisableTime = 0.15;
-
-NetworkRobot::NetworkRobot(uint16_t receive_port, const char *sender_address,
-                           uint16_t send_port, const char *receiver_address)
-    : receive_port_(receive_port), sender_address_(sender_address),
-      send_port_(send_port), receiver_address_(receiver_address),
-      receive_socket_(-1), send_socket_(-1),
-      joystick_values_(),
-      send_task_("DS_Send", reinterpret_cast<FUNCPTR>(StaticSendLoop)),
-      last_received_timestamp_(0.0),
-      last_sent_state_valid_(false),
-      digital_modules_(), solenoid_bases_(),
-      allocated_digital_outputs_() {
-}
-
-NetworkRobot::~NetworkRobot() {
-  // Nothing we can really do about any errors for either of these.
-  if (receive_socket_ != -1) {
-    close(receive_socket_);
-  }
-  if (send_socket_ != -1) {
-    close(send_socket_);
-  }
-
-  for (size_t module = 0;
-       module < sizeof(solenoid_bases_) / sizeof(solenoid_bases_[0]);
-       ++module) {
-    delete solenoid_bases_[module];
-  }
-  for (size_t module = 0;
-       module < sizeof(digital_modules_) / sizeof(digital_modules_[0]);
-       ++module) {
-    for (int i = 0; i < 16; ++i) {
-      if (allocated_digital_outputs_[module] & (1 << i)) {
-        digital_modules_[module]->FreeDIO(15 - i);
-      }
-    }
-  }
-}
-
-bool NetworkRobot::FillinInAddr(const char *const_ip, in_addr *inet_address) {
-  // A copy of the passed in address string because vxworks has the function
-  // signature without the const and I don't really trust it not to do something
-  // weird and change it.
-  // The size is the maximum length of an IP address (including the terminating
-  // NUL) (ie "123.456.789.123").
-  char non_const_ip[3 + 1 + 3 + 1 + 3 + 1 + 3 + 1];
-  size_t ip_length = strlen(const_ip);
-  if (ip_length >= sizeof(non_const_ip)) {
-    char buf[128];
-    snprintf(buf, sizeof(buf), "IP address '%s' is %zd bytes long"
-             " but should only be %zd", const_ip,
-             ip_length, sizeof(non_const_ip) - 1);
-    wpi_setErrorWithContext(-1, buf);
-    return false;
-  }
-  memcpy(non_const_ip, const_ip, ip_length + 1);
-  errno = 0;
-  if (inet_aton(non_const_ip, inet_address) != 0) {
-    char buf[64];
-    snprintf(buf, sizeof(buf), "inet_aton(%s)", const_ip);
-    wpi_setErrnoErrorWithContext(buf);
-    return false;
-  }
-  return true;
-}
-
-void NetworkRobot::StartCompetition() {
-  // Multiplied by 2 to give ourselves plenty of time to get around to feeding
-  // it before it completely cuts out everything.
-  m_watchdog.SetExpiration(kDisableTime * 2);
-
-  // This outer loop is so that it will retry after encountering any errors.
-  while (true) {
-    if (sender_address_ != NULL) {
-      CreateReceiveSocket();
-      if (!FillinInAddr(sender_address_, &expected_sender_address_)) return;
-    }
-
-    if (receiver_address_ != NULL) {
-      CreateSendSocket();
-    }
-
-    if (sender_address_ != NULL) {
-      // We only need to do it in a separate task if we're doing both parts.
-      if (receiver_address_ != NULL) {
-        send_task_.Start(reinterpret_cast<uintptr_t>(this));
-      }
-
-      while (!StatusIsFatal()) {
-        if ((Timer::GetPPCTimestamp() - last_received_timestamp_) >
-            kDisableTime) {
-          StopOutputs();
-        }
-        ReceivePacket();
-      }
-      StopOutputs();
-    } else {
-      SendLoop();
-    }
-
-    Cleanup();
-  }
-}
-
-void NetworkRobot::StopOutputs() {
-  for (size_t module = 0;
-       module < sizeof(digital_modules_) / sizeof(digital_modules_[0]);
-       ++module) {
-    DigitalModule *digital_module = digital_modules_[module];
-
-    if (digital_module != NULL) {
-      for (int i = 0; i < 10; ++i) {
-        // 0 means stop sending anything.
-        digital_module->SetPWM(i + 1, 0);
-      }
-
-      // Turn off all of the ones that we're responsible for.
-      digital_module->SetDIOs(allocated_digital_outputs_[module], 0);
-
-      // Turn off all of the relays (both directions).
-      digital_module->SetRelaysForward(0xFF, 0);
-      digital_module->SetRelaysReverse(0xFF, 0);
-    }
-  }
-
-  // Can't do anything intelligent with solenoids. Turning them off can be just
-  // as dangerous as leaving them on, so just leave them alone.
-
-  // We took care of it, so we don't want the watchdog to permanently disable
-  // everything.
-  m_watchdog.Feed();
-}
-
-void NetworkRobot::Cleanup() {
-  send_task_.Stop();
-
-  if (receive_socket_ != -1) {
-    if (close(receive_socket_) == ERROR) {
-      char buf[64];
-      snprintf(buf, sizeof(buf), "close(%d)", receive_socket_);
-      wpi_setErrnoErrorWithContext(buf);
-    }
-    receive_socket_ = -1;
-  }
-  if (send_socket_ != -1) {
-    if (close(send_socket_) == ERROR) {
-      char buf[64];
-      snprintf(buf, sizeof(buf), "close(%d)", send_socket_);
-      wpi_setErrnoErrorWithContext(buf);
-    }
-    send_socket_ = -1;
-  }
-
-  ClearError();
-}
-
-bool NetworkRobot::WaitForData() {
-  assert(kDisableTime < 1.0);
-
-  struct timeval timeout;
-  timeout.tv_sec = 0;
-  timeout.tv_usec = kDisableTime *
-      1000.0 /*seconds to mseconds*/ *
-      1000.0 /*mseconds to useconds*/ + 0.5;
-
-  fd_set fds;
-  FD_ZERO(&fds);
-  FD_SET(receive_socket_, &fds);
-
-  int ret = select(receive_socket_ + 1,
-                   &fds,  // read fds
-                   NULL,  // write fds
-                   NULL,  // exception fds (not supported)
-                   &timeout);
-  if (ret == 0) {
-    // timeout
-    return false;
-  } else if (ret == 1) {
-    return true;
-  } else if (ret != -1) {
-    char buf[64];
-    snprintf(buf, sizeof(buf), "select returned %d", ret);
-    wpi_setErrorWithContext(-1, buf);
-    return false;
-  } else {
-    wpi_setErrnoErrorWithContext("waiting until the socket has data");
-    return false;
-  }
-}
-
-void NetworkRobot::ReceivePacket() {
-  if (!WaitForData()) return;
-
-  char buffer[sizeof(motors_) + buffers::kOverhead];
-  union {
-    sockaddr addr;
-    sockaddr_in in;
-  } sender_address;
-  int sender_address_length = sizeof(sender_address);
-  int received = recvfrom(receive_socket_,
-                          buffer,
-                          sizeof(buffer),
-                          0,
-                          &sender_address.addr,
-                          &sender_address_length);
-  if (received == -1) {
-    if (errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR ||
-        errno == ETIMEDOUT) {
-      // All of these are various kinds of timing out.
-      return;
-    }
-    wpi_setErrnoErrorWithContext("recvfrom on motor value socket");
-    return;
-  }
-  assert(static_cast<size_t>(sender_address_length) >=
-         sizeof(sender_address.in));
-  if (sender_address.in.sin_addr.s_addr !=
-      expected_sender_address_.s_addr) {
-    char address[INET_ADDR_LEN];
-    inet_ntoa_b(sender_address.in.sin_addr, address);
-    char buf[64];
-    snprintf(buf, sizeof(buf), "Received packet from wrong IP %s", address);
-    wpi_setErrorWithContext(1, buf);
-    return;
-  }
-
-  if (motors_.DeserializeFrom(buffer, sizeof(buffer))) {
-    ProcessPacket();
-  } else {
-    char buf[64];
-    snprintf(buf, sizeof(buf), "Deserializing from %d byte buffer",
-             sizeof(buffer));
-    wpi_setErrorWithContext(1, buf);
-    return;
-  }
-}
-
-void NetworkRobot::ProcessPacket() {
-  int8_t digital_number = motors_.digital_module;
-  if (digital_number != -1) {
-    if (digital_number == 0) {
-      digital_number = SensorBase::GetDefaultDigitalModule();
-    }
-    if (digital_number < 1 ||
-        digital_number > static_cast<int32_t>(SensorBase::kDigitalModules)) {
-      char buf[64];
-      snprintf(buf, sizeof(buf), "Got Digital Module %d",
-               static_cast<int>(digital_number));
-      wpi_setWPIErrorWithContext(ModuleIndexOutOfRange, buf);
-      return;
-    }
-    DigitalModule *digital_module = digital_modules_[digital_number - 1];
-    if (digital_module == NULL) {
-      digital_module = digital_modules_[digital_number - 1] =
-          DigitalModule::GetInstance(digital_number);
-      for (int i = 0; i < 10; ++i) {
-        digital_module->SetPWMPeriodScale(i + 1, 0);
-      }
-    }
-
-    for (int i = 0; i < 10; ++i) {
-      digital_module->SetPWM(i + 1, motors_.pwm_outputs[i]);
-    }
-
-    uint16_t old_allocated = allocated_digital_outputs_[digital_number - 1];
-    // Have to keep track of which ones we've (de)allocated as we go through in
-    // case we have trouble allocating one of them in the middle.
-    for (int i = 0; i < 16; ++i) {
-      // If we have it allocated and this packet says we shouldn't.
-      if ((old_allocated & (1 << i)) &&
-          !(motors_.digital_output_enables & (1 << i))) {
-        digital_module->FreeDIO(15 - i);
-        allocated_digital_outputs_[digital_number - 1] &= ~(1 << i);
-      // If this packet says we should have it allocated and we don't.
-      } else if ((motors_.digital_output_enables & (1 << i)) &&
-                 !(old_allocated & (1 << i))) {
-        if (!digital_module->AllocateDIO(15 - i, false /*input*/)) return;
-        allocated_digital_outputs_[digital_number - 1] |= 1 << i;
-      }
-    }
-    wpi_assertEqual(allocated_digital_outputs_[digital_number - 1],
-                    motors_.digital_output_enables);
-    digital_module->SetDIOs(motors_.digital_output_enables,
-                            motors_.digital_output_values);
-
-    if (motors_.pressure_switch_channel != 0 &&
-        motors_.compressor_channel != 0) {
-      digital_module->SetRelayForward(motors_.compressor_channel,
-                                      !digital_module->GetDIO(
-                                          motors_.pressure_switch_channel));
-    }
-  }
-
-  int8_t solenoid_number = motors_.solenoid_module;
-  if (solenoid_number != -1) {
-    if (solenoid_number == 0) {
-      solenoid_number = SensorBase::GetDefaultSolenoidModule();
-    }
-    if (solenoid_number < 1 ||
-        solenoid_number > static_cast<int32_t>(SensorBase::kSolenoidModules)) {
-      char buf[64];
-      snprintf(buf, sizeof(buf), "Got Solenoid Module %d",
-               static_cast<int>(solenoid_number));
-      wpi_setWPIErrorWithContext(ModuleIndexOutOfRange, buf);
-      return;
-    }
-    SolenoidBase *solenoid_base = solenoid_bases_[solenoid_number - 1];
-    if (solenoid_base == NULL) {
-      solenoid_base = solenoid_bases_[solenoid_number - 1] =
-          new SolenoidBase(solenoid_number);
-    }
-
-    solenoid_base->SetAll(motors_.solenoid_values);
-  }
-
-  // This code can only assume that whatever is sending it values received the
-  // most recent state that it sent out.
-  if (last_sent_state_valid_) {
-    // Don't have to synchronize with writing the last sent state too because
-    // it's ok if we're 1 cycle off. It would just be bad if we reported not
-    // being in any state or in 2 states at once.
-    RWLock::Locker state_locker(m_ds->GetUserStateLock(), true);
-    const DriverStation::FMSState state = last_sent_state_;
-    m_ds->InDisabled(state == DriverStation::FMSState::kDisabled);
-    m_ds->InAutonomous(state == DriverStation::FMSState::kAutonomous);
-    m_ds->InOperatorControl(state == DriverStation::FMSState::kTeleop);
-    m_ds->InTest(state == DriverStation::FMSState::kTestMode);
-  }
-
-  m_watchdog.Feed();
-  last_received_timestamp_ = Timer::GetPPCTimestamp();
-}
-
-void NetworkRobot::SendLoop() {
-  while (!StatusIsFatal()) {
-    m_ds->WaitForData();
-
-    {
-      RWLock::Locker data_locker(m_ds->GetDataReadLock());
-      // Get a pointer to the data and then cast away the volatile because it's
-      // annoying to propagate it all over and it's unnecessary here because
-      // we have a lock on the data so it's not going to change.
-      const FRCCommonControlData *data =
-          const_cast<const FRCCommonControlData *>(m_ds->GetControlData());
-      CopyStickValues(0, data->stick0Axes, data->stick0Buttons);
-      CopyStickValues(1, data->stick1Axes, data->stick1Buttons);
-      CopyStickValues(2, data->stick2Axes, data->stick2Buttons);
-      CopyStickValues(3, data->stick3Axes, data->stick3Buttons);
-
-      joystick_values_.control_packet_index = data->packetIndex;
-
-      joystick_values_.team_number = data->teamID;
-      joystick_values_.alliance = data->dsID_Alliance;
-      joystick_values_.position = data->dsID_Position;
-
-      joystick_values_.control.set_test_mode(data->test);
-      joystick_values_.control.set_fms_attached(data->fmsAttached);
-      joystick_values_.control.set_autonomous(data->autonomous);
-      joystick_values_.control.set_enabled(data->enabled);
-
-      last_sent_state_ = m_ds->GetCurrentState();
-      last_sent_state_valid_ = true;
-    }
-    ++joystick_values_.index;
-
-    char buffer[sizeof(joystick_values_) + buffers::kOverhead];
-    ssize_t size = joystick_values_.SerializeTo(buffer, sizeof(buffer));
-    if (size <= 0) {
-      char buf[64];
-      snprintf(buf, sizeof(buf),
-               "Serializing joystick values into %d byte buffer",
-               sizeof(buffer));
-      wpi_setErrorWithContext(-1, buf);
-      return;
-    }
-    ssize_t sent = send(send_socket_, buffer, size, 0);
-    if (sent != size) {
-      if (sent == -1) {
-        if (errno == EINTR || errno == ENOBUFS) {
-          // These are all errors that just mean it didn't manage to send this
-          // time.
-          continue;
-        } else {
-          wpi_setErrnoErrorWithContext("send to joystick output socket");
-          return;
-        }
-      } else {
-        char buf[64];
-        snprintf(buf, sizeof(buf), "Wanted to send %d bytes but only sent %d",
-                 size, sent);
-        wpi_setErrorWithContext(1, buf);
-        continue;
-      }
-    }
-  }
-}
-
-void NetworkRobot::CopyStickValues(int number,
-                                   const int8_t (&axes)[6],
-                                   uint16_t buttons) {
-  for (int i = 0; i < 6; ++i) {
-    joystick_values_.joysticks[number].axes[i] = axes[i];
-  }
-  joystick_values_.joysticks[number].buttons = buttons;
-}
-
-void NetworkRobot::CreateReceiveSocket() {
-  wpi_assertEqual(receive_socket_, -1);
-
-  receive_socket_ = socket(AF_INET, SOCK_DGRAM, 0);
-  if (receive_socket_ < 0) {
-    wpi_setErrnoErrorWithContext("Creating UDP Socket");
-    receive_socket_ = -1;
-    return;
-  }
-
-  union {
-    sockaddr_in in;
-    sockaddr addr;
-  } address;
-  memset(&address, 0, sizeof(address));
-  address.in.sin_family = AF_INET;
-  address.in.sin_port = receive_port_;
-  address.in.sin_addr.s_addr = INADDR_ANY;
-  if (bind(receive_socket_, &address.addr, sizeof(address.addr)) == ERROR) {
-    char buf[64];
-    snprintf(buf, sizeof(buf), "Binding Socket to 0.0.0.0:%d", receive_port_);
-    wpi_setErrnoErrorWithContext(buf);
-    return;
-  }
-
-  int on = 1;
-  errno = 0;
-  if (ioctl(receive_socket_, FIONBIO, reinterpret_cast<int>(&on)) < 0) {
-    wpi_setErrnoErrorWithContext("Setting Socket to Non-Blocking Mode");
-    return;
-  }
-}
-
-void NetworkRobot::CreateSendSocket() {
-  wpi_assertEqual(send_socket_, -1);
-
-  send_socket_ = socket(AF_INET, SOCK_DGRAM, 0);
-  if (send_socket_ < 0) {
-    wpi_setErrnoErrorWithContext("Creating UDP Socket");
-    send_socket_ = -1;
-    return;
-  }
-
-  union {
-    sockaddr_in in;
-    sockaddr addr;
-  } address;
-  memset(&address, 0, sizeof(address));
-  address.in.sin_family = AF_INET;
-  address.in.sin_port = send_port_;
-  if (!FillinInAddr(receiver_address_, &address.in.sin_addr)) return;
-
-  if (connect(send_socket_, &address.addr, sizeof(address.addr)) == ERROR) {
-    char buf[64];
-    snprintf(buf, sizeof(buf), "Connecting Socket to %s:%d",
-             receiver_address_, send_port_);
-    wpi_setErrnoErrorWithContext(buf);
-    return;
-  }
-}
diff --git a/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobot.h b/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobot.h
deleted file mode 100644
index 7b1e05b..0000000
--- a/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobot.h
+++ /dev/null
@@ -1,140 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.                             */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef WPILIB_NETWORK_ROBOT_NETWORK_ROBOT_H_
-#define WPILIB_NETWORK_ROBOT_NETWORK_ROBOT_H_
-
-#include <inetLib.h>
-
-#include "WPILib/NetworkRobot/NetworkRobotValues.h"
-#include "WPILib/RobotBase.h"
-#include "WPILib/Base.h"
-#include "WPILib/DigitalModule.h"
-#include "WPILib/ErrorBase.h"
-#include "WPILib/SolenoidBase.h"
-#include "WPILib/Task.h"
-#include "WPILib/DriverStation.h"
-
-// A simple implementation of receiving motor values over UDP and sending
-// joystick data back out.
-// Deals with turning a compressor on and off at the same time.
-// You should not try to change any of the outputs on any of the modules that
-// you have this class control outside of this class.
-// This class takes care of disabling outputs when no packets are received in
-// kDisableTime and feeding the Watchdog correctly.
-//
-// The receiving interface consists of receiving NetworkRobotMotors structs on
-// a given UDP port from a given sender address. Each time a set of motor values
-// is received, this class will update all output values.
-//
-// The sending interface consists of sending NetworkRobotJoysticks structs on a
-// given UDP port to a given sender address. Each time a new Driver's Station
-// packet is received from the FMS code this class will send out another packet
-// with the new values.
-class NetworkRobot : public RobotBase, public ErrorBase {
- protected:
-  // Does not take ownership of *sender_address or *receiver_address.
-  // A NULL for either address means to not do anything with that part (sending
-  // or receiving).
-  NetworkRobot(uint16_t receive_port, const char *sender_address,
-               uint16_t send_port, const char *receiver_address);
-  virtual ~NetworkRobot();
-
-  // Called when a valid packet has been received into motors_.
-  // Subclasses can override if they want to do more, however they still need to
-  // call this implementation.
-  virtual void ProcessPacket();
-
-  // Called when no packet has been received for too long and it's time to stop
-  // everything.
-  // Subclasses can override if they want to do more, however they still need to
-  // call this implementation.
-  virtual void StopOutputs();
-
- private:
-  // How long between packets we wait until we disable all of the outputs (in
-  // seconds).
-  // Must stay less than 1 second with the current implementation.
-  static const double kDisableTime;
-
-  // Deals with calling inet_aton and passing any errors on to the logging
-  // system. A helper is necessary here because inet_aton is normally just kind
-  // of annoying to deal with, but under vxworks, you have to make a copy of the
-  // string before doing anything with it etc etc so it's really complicated.
-  // Returns whether or not it was successful. If it returns false, then an
-  // error will have already been recorded.
-  bool FillinInAddr(const char *const_ip, in_addr *inet_address);
-
-  virtual void StartCompetition();
-
-  // Cleans everything up after the main loop encounters an error so that it can
-  // try again.
-  void Cleanup();
-
-  // Waits for receive_socket_ to become readable for up to kDisableTime.
-  // Returns whether or not there is readable data available.
-  bool WaitForData();
-
-  // Attempts to receive a packet (with WaitForData()) and calls ProcessPacket()
-  // if it's a good one.
-  void ReceivePacket();
-
-  // Gets run in its own task to take DS data and send it out.
-  void SendLoop();
-  static void StaticSendLoop(void *self) {
-    static_cast<NetworkRobot *>(self)->SendLoop();
-  }
-
-  // Sets receive_socket_ to an opened socket listening on receive_port_ to UDP
-  // packets from sender_address_.
-  void CreateReceiveSocket();
-  // Sets send_socket_ to an opened socket sending UDP packets on send_port_ to
-  // receiver_address_.
-  void CreateSendSocket();
-
-  const uint16_t receive_port_;
-  const char *const sender_address_;
-  struct in_addr expected_sender_address_;
-
-  const uint16_t send_port_;
-  const char *const receiver_address_;
-
-  int receive_socket_;
-  NetworkRobotMotors motors_;
-
-  int send_socket_;
-  NetworkRobotJoysticks joystick_values_;
-  // A task set up to run StaticSendLoop (aka SendLoop()).
-  // Only actually gets used if we're going to do both parts (sending and
-  // receiving).
-  Task send_task_;
-
-  // Helper function to copy all of the data for a single joystick into
-  // joystick_values_.
-  // axes and buttons get copied into joystick_values_.joysticks[number].
-  void CopyStickValues(int number, const int8_t (&axes)[6], uint16_t buttons);
-
-  // Using Timer::GetPPCTimestamp() values.
-  double last_received_timestamp_;
-
-  // What the last state we sent out was.
-  // Kept track of so that we can more accurately report it back.
-  DriverStation::FMSState last_sent_state_;
-  bool last_sent_state_valid_;
-
-  // Ownership of the pointers stored here stays in DigitalModule.
-  DigitalModule *digital_modules_[2];
-  // This object owns pointers stored here.
-  SolenoidBase *solenoid_bases_[2];
-
-  // A bitmask of all of the digital outputs that we have currently allocated.
-  // In hardware order.
-  uint16_t allocated_digital_outputs_[2];
-
-  DISALLOW_COPY_AND_ASSIGN(NetworkRobot);
-};
-
-#endif  // WPILIB_NETWORK_ROBOT_NETWORK_ROBOT_H_
diff --git a/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobotValues.cpp b/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobotValues.cpp
deleted file mode 100644
index 57760ab..0000000
--- a/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobotValues.cpp
+++ /dev/null
@@ -1,140 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.                             */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "WPILib/NetworkRobot/NetworkRobotValues.h"
-
-#include <string.h>
-
-namespace buffers {
-namespace {
-
-uint32_t CalculateHashValue(const char *data, size_t size) {
-  uint32_t hash_value = 0;
-  for (size_t i = 0; i < size; ++i) {
-    hash_value = (((hash_value << 8) & 0xFF00) + (data[i] & 0xFF)) % 0x04C11DB7;
-  }
-  return hash_value;
-}
-
-}  // namespace
-
-bool Read::Check() {
-  if (data_size_ < kOverhead) return false;
-
-  current_index_ = 0;
-  uint32_t size = Read32();
-  uint32_t hash = Read32();
-
-  if (data_size_ < size) return false;
-
-  uint32_t expected = CalculateHashValue(data_ + kOverhead, size - kOverhead);
-  return hash == expected;
-}
-
-bool Read::ReadCorrectAmount() {
-  if (overrun()) return false;
-
-  size_t read = current_index_;
-
-  current_index_ = 0;
-  uint32_t size = Read32();
-  current_index_ = kOverhead;
-
-  return read == size;
-}
-
-ssize_t Write::Finalize() {
-  if (overrun()) return -1;
-
-  uint32_t size = current_index_;
-  uint32_t hash = CalculateHashValue(data_ + kOverhead, size - kOverhead);
-
-  current_index_ = 0;
-  Write32(size);
-  Write32(hash);
-
-  return size;
-}
-
-}  // namespace buffers
-
-ssize_t NetworkRobotMotors::SerializeTo(char *data, size_t data_size) const {
-  buffers::Write buffer(data, data_size);
-
-  buffer.Write8(digital_module);
-  for (size_t i = 0; i < sizeof(pwm_outputs) / sizeof(pwm_outputs[0]); ++i) {
-    buffer.Write8(pwm_outputs[i]);
-  }
-  buffer.Write16(digital_output_enables);
-  buffer.Write16(digital_output_values);
-  buffer.Write8(pressure_switch_channel);
-  buffer.Write8(compressor_channel);
-  buffer.Write8(solenoid_module);
-  buffer.Write8(solenoid_values);
-
-  return buffer.Finalize();
-}
-
-bool NetworkRobotMotors::DeserializeFrom(const char *data, size_t data_size) {
-  buffers::Read buffer(data, data_size);
-  if (!buffer.Check()) return false;
-
-  digital_module = buffer.Read8();
-  for (size_t i = 0; i < sizeof(pwm_outputs) / sizeof(pwm_outputs[0]); ++i) {
-    pwm_outputs[i] = buffer.Read8();
-  }
-  digital_output_enables = buffer.Read16();
-  digital_output_values = buffer.Read16();
-  pressure_switch_channel = buffer.Read8();
-  compressor_channel = buffer.Read8();
-  solenoid_module = buffer.Read8();
-  solenoid_values = buffer.Read8();
-
-  return buffer.ReadCorrectAmount();
-}
-
-ssize_t NetworkRobotJoysticks::SerializeTo(char *data, size_t data_size) const {
-  buffers::Write buffer(data, data_size);
-
-  for (size_t i = 0; i < sizeof(joysticks) / sizeof(joysticks[0]); ++i) {
-    buffer.Write16(joysticks[i].buttons);
-    for (size_t ii = 0;
-         ii < sizeof(joysticks[0].axes) / sizeof(joysticks[0].axes[0]);
-         ++ii) {
-      buffer.Write8(joysticks[i].axes[ii]);
-    }
-  }
-  buffer.Write16(control_packet_index);
-  buffer.Write16(index);
-  buffer.Write16(team_number);
-  buffer.Write8(alliance);
-  buffer.Write8(position);
-  buffer.Write8(control.bits);
-
-  return buffer.Finalize();
-}
-
-bool NetworkRobotJoysticks::DeserializeFrom(const char *data, size_t data_size) {
-  buffers::Read buffer(data, data_size);
-  if (!buffer.Check()) return false;
-
-  for (size_t i = 0; i < sizeof(joysticks) / sizeof(joysticks[0]); ++i) {
-    joysticks[i].buttons = buffer.Read16();
-    for (size_t ii = 0;
-         ii < sizeof(joysticks[0].axes) / sizeof(joysticks[0].axes[0]);
-         ++ii) {
-      joysticks[i].axes[ii] = buffer.Read8();
-    }
-  }
-  control_packet_index = buffer.Read16();
-  index = buffer.Read16();
-  team_number = buffer.Read16();
-  alliance = buffer.Read8();
-  position = buffer.Read8();
-  control.bits = buffer.Read8();
-
-  return buffer.ReadCorrectAmount();
-}
diff --git a/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobotValues.h b/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobotValues.h
deleted file mode 100644
index 6949582..0000000
--- a/aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobotValues.h
+++ /dev/null
@@ -1,280 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.                             */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef WPILIB_NETWORK_ROBOT_NETWORK_ROBOT_VALUES_H_
-#define WPILIB_NETWORK_ROBOT_NETWORK_ROBOT_VALUES_H_
-
-#include <stdint.h>
-#include <arpa/inet.h>
-
-// This file needs to not have any dependencies on any other parts of WPILib so
-// that it can be #included by other code (like that which sends these values).
-// All multi-byte values are sent over the network in big endian (network)
-// byte order.
-//
-// The structures get run through a Serialize phase to avoid byte-order,
-// padding, etc compatibility problems.
-
-// Provides a convenient way to serialize/deserialize data.
-// The serialized format consists of a 4-byte size (of everything, including the
-// size and hash value), a 4-byte hash value, and then all of the actual data.
-namespace buffers {
-// The number of extra bytes needed on top of what the actual data takes.
-// Code should use this constant in case other information is added to the
-// start (or end).
-static const size_t kOverhead = 4 + 4;
-
-// Allows reading data out of a buffer.
-// Instances are not safe for concurrent use.
-//
-// To make writing code easier, the Read* methods simply return 0 on overrun.
-// Users should check at the end (see overrun()) to see if all of the data that
-// they read is valid.
-class Read {
- public:
-  // Does not take ownership of data, but the object will use it throughout its
-  // lifetime.
-  Read(const char *data, size_t data_size)
-      : data_(data), data_size_(data_size), current_index_(kOverhead) {}
-
-  // Returns whether there is enough data according to the size recorded with
-  // the data and the hash value is correct.
-  // Will reset the current read position to the beginning of the data unless
-  // overrun() is true.
-  bool Check();
-
-  // Returns whether or not the correct amount of data (according to the size
-  // stored at the start) was read.
-  // Will reset the current read position to the beginning of the data unless
-  // overrun() is true.
-  bool ReadCorrectAmount();
-
-  uint8_t Read8() {
-    current_index_ += 1;
-    if (overrun()) return 0;
-    return data_[current_index_ - 1];
-  }
-  uint16_t Read16() {
-    current_index_ += 2;
-    if (overrun()) return 0;
-    union {
-      uint16_t value;
-      uint8_t bytes[2];
-    } value;
-    value.bytes[0] = data_[current_index_ - 2];
-    value.bytes[1] = data_[current_index_ - 1];
-    return ntohs(value.value);
-  }
-  uint32_t Read32() {
-    current_index_ += 4;
-    if (overrun()) return 0;
-    union {
-      uint32_t value;
-      uint8_t bytes[4];
-    } value;
-    value.bytes[0] = data_[current_index_ - 4];
-    value.bytes[1] = data_[current_index_ - 3];
-    value.bytes[2] = data_[current_index_ - 2];
-    value.bytes[3] = data_[current_index_ - 1];
-    return ntohl(value.value);
-  }
-
-  // Returns whether or not we ran over the end.
-  bool overrun() const { return current_index_ > data_size_; }
-
- private:
-  // Where we are reading or writing from. Not owned by this object.
-  const char *const data_;
-  const size_t data_size_;
-
-  // The index of the next read/write to data_.
-  size_t current_index_;
-};
-
-// Allows writing data into a buffer.
-// Instances are not safe for concurrent use.
-//
-// To make writing code easier, the Write* methods simply do nothing on overrun.
-// Users should check at the end (see overrun()) to see if all of the data that
-// they write actually got written.
-class Write {
- public:
-  Write(char *data, size_t data_size)
-      : data_(data), data_size_(data_size), current_index_(kOverhead) {}
-
-  // Fills in the hash value and size at the beginning and returns the number of
-  // bytes used.
-  // Afterwards, further writes will go to the beginning of the data again.
-  // Returns the number of bytes used (including kOverhead at the beginning) or
-  // -1 if writing too much data was attempted.
-  ssize_t Finalize();
-
-  void Write8(uint8_t value) {
-    current_index_ += 1;
-    if (overrun()) return;
-    data_[current_index_ - 1] = value;
-  }
-  void Write16(uint16_t value) {
-    current_index_ += 2;
-    if (overrun()) return;
-    union {
-      uint16_t value;
-      uint8_t bytes[2];
-    } flipped;
-    flipped.value = htons(value);
-    data_[current_index_ - 2] = flipped.bytes[0];
-    data_[current_index_ - 1] = flipped.bytes[1];
-  }
-  void Write32(uint32_t value) {
-    current_index_ += 4;
-    if (overrun()) return;
-    union {
-      uint32_t value;
-      uint8_t bytes[4];
-    } flipped;
-    flipped.value = htonl(value);
-    data_[current_index_ - 4] = flipped.bytes[0];
-    data_[current_index_ - 3] = flipped.bytes[1];
-    data_[current_index_ - 2] = flipped.bytes[2];
-    data_[current_index_ - 1] = flipped.bytes[3];
-  }
-
-  // Returns whether or not we ran over the end.
-  bool overrun() const { return current_index_ > data_size_; }
-
- private:
-  // Where we are reading or writing from. Not owned by this object.
-  char *const data_;
-  const size_t data_size_;
-
-  // The index of the next read/write to data_.
-  size_t current_index_;
-};
-
-}  // namespace buffers
-
-// Contains motor and other output values.
-// All channel and module numbers are 1-based like usual.
-struct NetworkRobotMotors {
-  // Which digital module this packet has values for (1 or 2).
-  // 0 means the default one and -1 means to not update any one.
-  int8_t digital_module;
-  // Raw values for all 10 PWM outputs.
-  uint8_t pwm_outputs[10];
-
-  // Bitmasks for enabling digital outputs and what values to set them to.
-  // See DigitalModule::SetDIOs for which bit is which.
-  uint16_t digital_output_enables;
-  uint16_t digital_output_values;
-
-  // Channels for a presssure switch and compressor to turn on and off based on
-  // the value from it.
-  // Whatever compressor channel is sent will be updated with the value from the
-  // corresponding pressure switch channel when the packet is received.
-  // 0 means to not do anything.
-  uint8_t pressure_switch_channel, compressor_channel;
-
-  // Which solenoid module this packet has values for (1 or 2).
-  // 0 means the default one and -1 means to not update any one.
-  int8_t solenoid_module;
-  // 1 bit for each solenoid output.
-  uint8_t solenoid_values;
-
-  // Serializes this object into data (which must be a buffer with at least
-  // data_size bytes in it).
-  // data_size should be at least sizeof(*this) + buffers::kOverhead to make sure
-  // that it is big enough.
-  // See DeserializeFrom to decode data back into an instance of this class.
-  // Returns the number of bytes of data that were used or -1 if data_size is
-  // too small.
-  ssize_t SerializeTo(char *data, size_t data_size) const;
-  // Deserializes data into this object (which must be a buffer of at least
-  // data_size bytes).
-  // data should be (all of) the data written by SerializeTo.
-  // Returns whether or not the hash value etc information in data matched (if
-  // false, the members of this object may or may not have been modified).
-  bool DeserializeFrom(const char *data, size_t data_size);
-};
-
-// The structure that the cRIO sends out with joystick positions etc.
-struct NetworkRobotJoysticks {
-  // A structure that stores the information about a joystick and instances for
-  // each of the 4 joysticks.
-  struct Joystick {
-    // Bitmask of the button values.
-    // The LSB is button 1 and only a maximum of 12 are supported.
-    uint16_t buttons;
-    // Raw values for each of the 6 joystick axes.
-    // The range of values depends on the joystick.
-    int8_t axes[6];
-  } joysticks[4];
-
-  // The index number from the DS.
-  uint16_t control_packet_index;
-  // An index for this structure. Gets incremented by 1 for each one of these
-  // structures that is sent.
-  uint16_t index;
-
-  // The team number that the DS is configured for.
-  uint16_t team_number;
-  // Which alliance the robot is on. Should be 'R' or 'B'.
-  char alliance;
-  // Which position the DS is in on the field. Should be '1', '2', or '3'.
-  char position;
-
-  // A structure that efficiently stores the control data bits from the DS and
-  // has methods for safely and easily getting and setting them and an instance
-  // of it for actually sending the information.
-  // Not just a C bitfield because those are a mess for portability.
-  struct ControlInformation {
-    bool test_mode() const { return GetBit(kTestMode); }
-    void set_test_mode(bool value) { SetBit(kTestMode, value); }
-    bool fms_attached() const { return GetBit(kFmsAttached); }
-    void set_fms_attached(bool value) { SetBit(kFmsAttached, value); }
-    bool autonomous() const { return GetBit(kAutonomous); }
-    void set_autonomous(bool value) { SetBit(kAutonomous, value); }
-    bool enabled() const { return GetBit(kEnabled); }
-    void set_enabled(bool value) { SetBit(kEnabled, value); }
-
-   private:
-    // Constants for which bit is which.
-    static const int kTestMode = 0;
-    static const int kFmsAttached = 1;
-    static const int kAutonomous = 2;
-    static const int kEnabled = 3;
-
-    bool GetBit(int bit) const {
-      return bits & (1 << bit);
-    }
-    void SetBit(int bit, bool value) {
-      uint8_t mask = 1 << bit;
-      bits &= ~mask;
-      bits |= (mask & (value ? 0xFF : 0x00));
-    }
-
-    // So that it can access bits directly for Serialize/Deserialize.
-    friend struct NetworkRobotJoysticks;
-
-    uint8_t bits;
-  } control;
-
-  // Serializes this object into data (which must be a buffer with at least
-  // data_size bytes in it).
-  // data_size should be at least sizeof(*this) + buffers::kOverhead to make sure
-  // that it is big enough.
-  // See DeserializeFrom to decode data back into an instance of this class.
-  // Returns the number of bytes of data that were used or -1 if data_size is
-  // too small.
-  ssize_t SerializeTo(char *data, size_t data_size) const;
-  // Deserializes data into this object (which must be a buffer of at least
-  // data_size bytes).
-  // data should be (all of) the data written by SerializeTo.
-  // Returns whether or not the hash value etc information in data matched (if
-  // false, the members of this object may or may not have been modified).
-  bool DeserializeFrom(const char *data, size_t data_size);
-};
-
-#endif  // WPILIB_NETWORK_ROBOT_NETWORK_ROBOT_VALUES_H_
diff --git a/aos/externals/WPILib/WPILib/Notifier.cpp b/aos/externals/WPILib/WPILib/Notifier.cpp
deleted file mode 100644
index ebb42c7..0000000
--- a/aos/externals/WPILib/WPILib/Notifier.cpp
+++ /dev/null
@@ -1,273 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Notifier.h"
-#include "Timer.h"
-#include "Utility.h"
-#include "WPIErrors.h"
-
-const uint32_t Notifier::kTimerInterruptNumber;
-Notifier *Notifier::timerQueueHead = NULL;
-ReentrantSemaphore Notifier::queueSemaphore;
-tAlarm *Notifier::talarm = NULL;
-tInterruptManager *Notifier::manager = NULL;
-int Notifier::refcount = 0;
-
-/**
- * Create a Notifier for timer event notification.
- * @param handler The handler is called at the notification time which is set
- * using StartSingle or StartPeriodic.
- */
-Notifier::Notifier(TimerEventHandler handler, void *param)
-{
-	if (handler == NULL)
-		wpi_setWPIErrorWithContext(NullParameter, "handler must not be NULL");
-	m_handler = handler;
-	m_param = param;
-	m_periodic = false;
-	m_expirationTime = 0;
-	m_period = 0;
-	m_nextEvent = NULL;
-	m_queued = false;
-	m_handlerSemaphore = semBCreate(SEM_Q_PRIORITY, SEM_FULL);
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	{
-		Synchronized sync(queueSemaphore);
-		// do the first time intialization of static variables
-		if (refcount == 0)
-		{
-			manager = new tInterruptManager(1 << kTimerInterruptNumber, false, &localStatus);
-			manager->registerHandler(ProcessQueue, NULL, &localStatus);
-			manager->enable(&localStatus);
-			talarm = tAlarm::create(&localStatus);
-		}
-		refcount++;
-	}
-	wpi_setError(localStatus);
-}
-
-/**
- * Free the resources for a timer event.
- * All resources will be freed and the timer event will be removed from the
- * queue if necessary.
- */
-Notifier::~Notifier()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	{
-		Synchronized sync(queueSemaphore);
-		DeleteFromQueue();
-
-		// Delete the static variables when the last one is going away
-		if (!(--refcount))
-		{
-			talarm->writeEnable(false, &localStatus);
-			delete talarm;
-			talarm = NULL;
-			manager->disable(&localStatus);
-			delete manager;
-			manager = NULL;
-		}
-	}
-	wpi_setError(localStatus);
-
-	// Acquire the semaphore; this makes certain that the handler is 
-	// not being executed by the interrupt manager.
-	semTake(m_handlerSemaphore, WAIT_FOREVER);
-	// Delete while holding the semaphore so there can be no race.
-	semDelete(m_handlerSemaphore);
-}
-
-/**
- * Update the alarm hardware to reflect the current first element in the queue.
- * Compute the time the next alarm should occur based on the current time and the
- * period for the first element in the timer queue.
- * WARNING: this method does not do synchronization! It must be called from somewhere
- * that is taking care of synchronizing access to the queue.
- */
-void Notifier::UpdateAlarm()
-{
-	if (timerQueueHead != NULL)
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		// write the first item in the queue into the trigger time
-		talarm->writeTriggerTime((uint32_t)(timerQueueHead->m_expirationTime * 1e6), &localStatus);
-		// Enable the alarm.  The hardware disables itself after each alarm.
-		talarm->writeEnable(true, &localStatus);
-		wpi_setStaticError(timerQueueHead, localStatus);
-	}
-}
-
-/**
- * ProcessQueue is called whenever there is a timer interrupt.
- * We need to wake up and process the current top item in the timer queue as long
- * as its scheduled time is after the current time. Then the item is removed or 
- * rescheduled (repetitive events) in the queue.
- */
-void Notifier::ProcessQueue(uint32_t mask, void *params)
-{
-	Notifier *current;
-	while (true)				// keep processing past events until no more
-	{
-		{
-			Synchronized sync(queueSemaphore);
-			double currentTime = GetClock();
-			current = timerQueueHead;
-			if (current == NULL || current->m_expirationTime > currentTime)
-			{
-				break;		// no more timer events to process
-			}
-			// need to process this entry
-			timerQueueHead = current->m_nextEvent;
-			if (current->m_periodic)
-			{
-				// if periodic, requeue the event
-				// compute when to put into queue
-				current->InsertInQueue(true);
-			}
-			else
-			{
-				// not periodic; removed from queue
-				current->m_queued = false;
-			}
-			// Take handler semaphore while holding queue semaphore to make sure
-			//  the handler will execute to completion in case we are being deleted.
-			semTake(current->m_handlerSemaphore, WAIT_FOREVER);
-		}
-
-		current->m_handler(current->m_param);	// call the event handler
-		semGive(current->m_handlerSemaphore);
-	}
-	// reschedule the first item in the queue
-	Synchronized sync(queueSemaphore);
-	UpdateAlarm();
-}
-
-/**
- * Insert this Notifier into the timer queue in right place.
- * WARNING: this method does not do synchronization! It must be called from somewhere
- * that is taking care of synchronizing access to the queue.
- * @param reschedule If false, the scheduled alarm is based on the curent time and UpdateAlarm
- * method is called which will enable the alarm if necessary.
- * If true, update the time by adding the period (no drift) when rescheduled periodic from ProcessQueue.
- * This ensures that the public methods only update the queue after finishing inserting.
- */
-void Notifier::InsertInQueue(bool reschedule)
-{
-	if (reschedule)
-	{
-		m_expirationTime += m_period;
-	}
-	else
-	{
-		m_expirationTime = GetClock() + m_period;
-	}
-	if (timerQueueHead == NULL || timerQueueHead->m_expirationTime >= this->m_expirationTime)
-	{
-		// the queue is empty or greater than the new entry
-		// the new entry becomes the first element
-		this->m_nextEvent = timerQueueHead;
-		timerQueueHead = this;
-		if (!reschedule)
-		{
-			// since the first element changed, update alarm, unless we already plan to
-			UpdateAlarm();
-		}
-	}
-	else
-	{
-		for (Notifier **npp = &(timerQueueHead->m_nextEvent); ; npp = &(*npp)->m_nextEvent)
-		{
-			Notifier *n = *npp;
-			if (n == NULL || n->m_expirationTime > this->m_expirationTime)
-			{
-				*npp = this;
-				this->m_nextEvent = n;
-				break;
-			}
-		}
-	}
-	m_queued = true;
-}
-
-/**
- * Delete this Notifier from the timer queue.
- * WARNING: this method does not do synchronization! It must be called from somewhere
- * that is taking care of synchronizing access to the queue.
- * Remove this Notifier from the timer queue and adjust the next interrupt time to reflect
- * the current top of the queue.
- */
-void Notifier::DeleteFromQueue()
-{
-	if (m_queued)
-	{
-		m_queued = false;
-		wpi_assert(timerQueueHead != NULL);
-		if (timerQueueHead == this)
-		{
-			// remove the first item in the list - update the alarm
-			timerQueueHead = this->m_nextEvent;
-			UpdateAlarm();
-		}
-		else
-		{
-			for (Notifier *n = timerQueueHead; n != NULL; n = n->m_nextEvent)
-			{
-				if (n->m_nextEvent == this)
-				{
-					// this element is the next element from *n from the queue
-					n->m_nextEvent = this->m_nextEvent;	// point around this one
-				}
-			}
-		}
-	}
-}
-
-/**
- * Register for single event notification.
- * A timer event is queued for a single event after the specified delay.
- * @param delay Seconds to wait before the handler is called.
- */
-void Notifier::StartSingle(double delay)
-{
-	Synchronized sync(queueSemaphore);
-	m_periodic = false;
-	m_period = delay;
-	DeleteFromQueue();
-	InsertInQueue(false);
-}
-
-/**
- * Register for periodic event notification.
- * A timer event is queued for periodic event notification. Each time the interrupt
- * occurs, the event will be immediately requeued for the same time interval.
- * @param period Period in seconds to call the handler starting one period after the call to this method.
- */
-void Notifier::StartPeriodic(double period)
-{
-	Synchronized sync(queueSemaphore);
-	m_periodic = true;
-	m_period = period;
-	DeleteFromQueue();
-	InsertInQueue(false);
-}
-
-/**
- * Stop timer events from occuring.
- * Stop any repeating timer events from occuring. This will also remove any single
- * notification events from the queue.
- * If a timer-based call to the registered handler is in progress, this function will
- * block until the handler call is complete.
- */
-void Notifier::Stop()
-{
-	{
-		Synchronized sync(queueSemaphore);
-		DeleteFromQueue();
-	}
-	// Wait for a currently executing handler to complete before returning from Stop()
-	Synchronized sync(m_handlerSemaphore);
-}
diff --git a/aos/externals/WPILib/WPILib/Notifier.h b/aos/externals/WPILib/WPILib/Notifier.h
deleted file mode 100644
index e9904a1..0000000
--- a/aos/externals/WPILib/WPILib/Notifier.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef NOTIFIER_H
-#define NOTIFIER_H
-
-#include "ChipObject.h"
-#include "ErrorBase.h"
-#include "Synchronized.h"
-
-typedef void (*TimerEventHandler)(void *param);
-
-class Notifier : public ErrorBase
-{
-public:
-	Notifier(TimerEventHandler handler, void *param = NULL);
-	virtual ~Notifier();
-	void StartSingle(double delay);
-	void StartPeriodic(double period);
-	void Stop();
-private:
-	static Notifier *timerQueueHead;
-	static ReentrantSemaphore queueSemaphore;
-	static tAlarm *talarm;
-	static tInterruptManager *manager;
-	static int refcount;
-
-	static const uint32_t kTimerInterruptNumber = 28;
-	static void ProcessQueue(uint32_t mask, void *params); // process the timer queue on a timer event
-	static void UpdateAlarm();			// update the FPGA alarm since the queue has changed
-	void InsertInQueue(bool reschedule);	// insert this Notifier in the timer queue
-	void DeleteFromQueue();				// delete this Notifier from the timer queue
-	TimerEventHandler m_handler;			// address of the handler
-	void *m_param;							// a parameter to pass to the handler
-	double m_period;						// the relative time (either periodic or single)
-	double m_expirationTime;				// absolute expiration time for the current event
-	Notifier *m_nextEvent;					// next Nofifier event
-	bool m_periodic;						// true if this is a periodic event
-	bool m_queued;							// indicates if this entry is queued
-	SEM_ID m_handlerSemaphore;				// held by interrupt manager task while handler call is in progress 
-	DISALLOW_COPY_AND_ASSIGN(Notifier);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/OSAL/Synchronized.cpp b/aos/externals/WPILib/WPILib/OSAL/Synchronized.cpp
deleted file mode 100644
index 53aa960..0000000
--- a/aos/externals/WPILib/WPILib/OSAL/Synchronized.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "OSAL/Synchronized.h"
-
-/**
- * Synchronized class deals with critical regions.
- * Declare a Synchronized object at the beginning of a block. That will take the semaphore.
- * When the code exits from the block it will call the destructor which will give the semaphore.
- * This ensures that no matter how the block is exited, the semaphore will always be released.
- * Use the CRITICAL_REGION(SEM_ID) and END_REGION macros to make the code look cleaner (see header file)
- * @param semaphore The semaphore controlling this critical region.
- */
-NTSynchronized::NTSynchronized(SEM_ID semaphore)
-{
-	usingSem = false;
-	m_semaphore = semaphore;
-	semTake(m_semaphore, WAIT_FOREVER);
-}
-
-NTSynchronized::NTSynchronized(NTReentrantSemaphore& sem)
-{
-	usingSem = true;
-	m_sem = &sem;
-	m_sem->take();
-}
-
-/**
- * Syncronized destructor.
- * This destructor frees the semaphore ensuring that the resource is freed for the block
- * containing the Synchronized object.
- */
-NTSynchronized::~NTSynchronized()
-{
-	if(usingSem)
-		m_sem->give();
-	else
-		semGive(m_semaphore);
-}
diff --git a/aos/externals/WPILib/WPILib/OSAL/Synchronized.h b/aos/externals/WPILib/WPILib/OSAL/Synchronized.h
deleted file mode 100644
index bcf4634..0000000
--- a/aos/externals/WPILib/WPILib/OSAL/Synchronized.h
+++ /dev/null
@@ -1,98 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef NT_SYNCHRONIZED_H
-#define NT_SYNCHRONIZED_H
-
-#define NT_CRITICAL_REGION(s) { NTSynchronized _sync(s);
-#define NT_END_REGION }
-
-#if (defined __vxworks || defined WIN32)
-
-#ifdef __vxworks
-#include <vxWorks.h>
-#endif
-#include <semLib.h>
-
-class NTReentrantSemaphore
-{
-public:
-	explicit NTReentrantSemaphore(){
-		m_semaphore = semMCreate(SEM_Q_PRIORITY | SEM_INVERSION_SAFE | SEM_DELETE_SAFE);
-	};
-	~NTReentrantSemaphore(){
-		semDelete(m_semaphore);
-	};
-	void take(){
-		semTake(m_semaphore, WAIT_FOREVER);
-	};
-	void give(){
-		semGive(m_semaphore);
-	};
-private:
-	SEM_ID m_semaphore;
-};
-
-#else
-
-#include <pthread.h>
-
-class NTReentrantSemaphore
-{
-public:
-	explicit NTReentrantSemaphore(){
-		pthread_mutexattr_init(&mta);
-		pthread_mutexattr_settype(&mta, PTHREAD_MUTEX_RECURSIVE);
-		pthread_mutex_init(&m_semaphore, &mta);
-	};
-	~NTReentrantSemaphore(){
-		pthread_mutex_unlock(&m_semaphore);
-		pthread_mutex_destroy(&m_semaphore);
-	};
-	void take(){
-		pthread_mutex_lock(&m_semaphore);
-	};
-	void give(){
-		pthread_mutex_unlock(&m_semaphore);
-	};
-private:
-	pthread_mutexattr_t mta;
-	pthread_mutex_t m_semaphore;
-};
-#endif // __vxworks
-
-/**
- * Provide easy support for critical regions.
- * A critical region is an area of code that is always executed under mutual exclusion. Only
- * one task can be executing this code at any time. The idea is that code that manipulates data
- * that is shared between two or more tasks has to be prevented from executing at the same time
- * otherwise a race condition is possible when both tasks try to update the data. Typically
- * semaphores are used to ensure only single task access to the data.
- * Synchronized objects are a simple wrapper around semaphores to help ensure that semaphores
- * are always signaled (semGive) after a wait (semTake).
- */
-class NTSynchronized
-{
-public:
-	explicit NTSynchronized(NTReentrantSemaphore&);
-	//TODO remove vxworks SEM_ID support
-#if (defined __vxworks || defined WIN32)
-	explicit NTSynchronized(SEM_ID);
-#endif
-	virtual ~NTSynchronized();
-private:
-#if (defined __vxworks || defined WIN32)
-	bool usingSem;
-	NTReentrantSemaphore* m_sem;
-	SEM_ID m_semaphore;
-#else
-	NTReentrantSemaphore& m_semaphore;
-#endif
-};
-
-
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/OSAL/Task.cpp b/aos/externals/WPILib/WPILib/OSAL/Task.cpp
deleted file mode 100644
index 59596d1..0000000
--- a/aos/externals/WPILib/WPILib/OSAL/Task.cpp
+++ /dev/null
@@ -1,216 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "OSAL/Task.h"
-
-#include "NetworkCommunication/UsageReporting.h"
-#include "WPIErrors.h"
-#include <errnoLib.h>
-#include <string.h>
-#include <taskLib.h>
-#include <usrLib.h>
-
-const UINT32 NTTask::kDefaultPriority;
-const INT32 NTTask::kInvalidTaskID;
-
-/**
- * Create but don't launch a task.
- * @param name The name of the task.  "FRC_" will be prepended to the task name.
- * @param function The address of the function to run as the new task.
- * @param priority The VxWorks priority for the task.
- * @param stackSize The size of the stack for the task
- */
-NTTask::NTTask(const char* name, FUNCPTR function, INT32 priority, UINT32 stackSize)
-{
-	m_taskID = kInvalidTaskID;
-	m_function = function;
-	m_priority = priority;
-	m_stackSize = stackSize;
-	m_taskName = new char[strlen(name) + 5];
-	strcpy(m_taskName, "FRC_");
-	strcpy(m_taskName+4, name);
-
-	static INT32 instances = 0;
-	instances++;
-	//nUsageReporting::report(nUsageReporting::kResourceType_Task, instances, 0, m_taskName);
-}
-
-NTTask::~NTTask()
-{
-	if (m_taskID != kInvalidTaskID) Stop();
-	delete [] m_taskName;
-	m_taskName = NULL;
-}
-
-/**
- * Starts this task.
- * If it is already running or unable to start, it fails and returns false.
- */
-bool NTTask::Start(UINT32 arg0, UINT32 arg1, UINT32 arg2, UINT32 arg3, UINT32 arg4, 
-		UINT32 arg5, UINT32 arg6, UINT32 arg7, UINT32 arg8, UINT32 arg9)
-{
-	m_taskID = taskSpawn(m_taskName,
-						m_priority,
-						VX_FP_TASK,							// options
-						m_stackSize,						// stack size
-						m_function,							// function to start
-						arg0, arg1, arg2, arg3, arg4,	// parameter 1 - pointer to this class
-						arg5, arg6, arg7, arg8, arg9);// additional unused parameters
-	bool ok = HandleError(m_taskID);
-	if (!ok) m_taskID = kInvalidTaskID;
-	return ok;
-}
-
-/**
- * Restarts a running task.
- * If the task isn't started, it starts it.
- * @return false if the task is running and we are unable to kill the previous instance
- */
-bool NTTask::Restart()
-{
-	return HandleError(taskRestart(m_taskID));
-}
-
-/**
- * Kills the running task.
- * @returns true on success false if the task doesn't exist or we are unable to kill it.
- */
-bool NTTask::Stop()
-{
-	bool ok = true;
-	if (Verify())
-	{
-		ok = HandleError(taskDelete(m_taskID));
-	}
-	m_taskID = kInvalidTaskID;
-	return ok;
-}
-
-/**
- * Returns true if the task is ready to execute (i.e. not suspended, delayed, or blocked).
- * @return true if ready, false if not ready.
- */
-bool NTTask::IsReady()
-{
-	return taskIsReady(m_taskID);
-}
-
-/**
- * Returns true if the task was explicitly suspended by calling Suspend()
- * @return true if suspended, false if not suspended.
- */
-bool NTTask::IsSuspended()
-{
-	return taskIsSuspended(m_taskID);
-}
-
-/**
- * Pauses a running task.
- * Returns true on success, false if unable to pause or the task isn't running.
- */
-bool NTTask::Suspend()
-{
-	return HandleError(taskSuspend(m_taskID));
-}
-
-/**
- * Resumes a paused task.
- * Returns true on success, false if unable to resume or if the task isn't running/paused.
- */
-bool NTTask::Resume()
-{
-	return HandleError(taskResume(m_taskID));
-}
-
-/**
- * Verifies a task still exists.
- * @returns true on success.
- */
-bool NTTask::Verify()
-{
-	return taskIdVerify(m_taskID) == OK;
-}
-
-/**
- * Gets the priority of a task.
- * @returns task priority or 0 if an error occured
- */
-INT32 NTTask::GetPriority()
-{
-	if (HandleError(taskPriorityGet(m_taskID, &m_priority)))
-		return m_priority;
-	else
-		return 0;
-}
-
-/**
- * This routine changes a task's priority to a specified priority.
- * Priorities range from 0, the highest priority, to 255, the lowest priority.
- * Default task priority is 100.
- * @param priority The priority the task should run at.
- * @returns true on success.
- */
-bool NTTask::SetPriority(INT32 priority)
-{
-	m_priority = priority;
-	return HandleError(taskPrioritySet(m_taskID, m_priority));
-}
-
-/**
- * Returns the name of the task.
- * @returns Pointer to the name of the task or NULL if not allocated
- */
-const char* NTTask::GetName()
-{
-	return m_taskName;
-}
-
-/**
- * Get the ID of a task
- * @returns Task ID of this task.  Task::kInvalidTaskID (-1) if the task has not been started or has already exited.
- */
-INT32 NTTask::GetID()
-{
-	if (Verify())
-		return m_taskID;
-	return kInvalidTaskID;
-}
-
-/**
- * Handles errors generated by task related code.
- */
-bool NTTask::HandleError(STATUS results)
-{
-	if (results != ERROR) return true;
-	switch(errnoGet())
-	{
-	case S_objLib_OBJ_ID_ERROR:
-		wpi_setWPIErrorWithContext(TaskIDError, m_taskName);
-		break;
-		
-	case S_objLib_OBJ_DELETED:
-		wpi_setWPIErrorWithContext(TaskDeletedError, m_taskName);
-		break;
-		
-	case S_taskLib_ILLEGAL_OPTIONS:
-		wpi_setWPIErrorWithContext(TaskOptionsError, m_taskName);
-		break;
-		
-	case S_memLib_NOT_ENOUGH_MEMORY:
-		wpi_setWPIErrorWithContext(TaskMemoryError, m_taskName);
-		break;
-		
-	case S_taskLib_ILLEGAL_PRIORITY:
-		wpi_setWPIErrorWithContext(TaskPriorityError, m_taskName);
-		break;
-
-	default:
-		printErrno(errnoGet());
-		wpi_setWPIErrorWithContext(TaskError, m_taskName);
-	}
-	return false;
-}
-
diff --git a/aos/externals/WPILib/WPILib/OSAL/Task.h b/aos/externals/WPILib/WPILib/OSAL/Task.h
deleted file mode 100644
index 67de9d6..0000000
--- a/aos/externals/WPILib/WPILib/OSAL/Task.h
+++ /dev/null
@@ -1,76 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __NTTASK_H__
-#define __NTTASK_H__
-
-#if (defined __vxworks || defined WIN32)
-
-#include "ErrorBase.h"
-#ifdef __vxworks
-#include <vxWorks.h>
-#endif
-
-/**
- * WPI task is a wrapper for the native Task object.
- * All WPILib tasks are managed by a static task manager for simplified cleanup.
- **/
-class NTTask : public ErrorBase
-{
-public:
-	static const UINT32 kDefaultPriority = 101;
-	static const INT32 kInvalidTaskID = -1;
-
-	NTTask(const char* name, FUNCPTR function, INT32 priority = kDefaultPriority, UINT32 stackSize = 20000);
-	virtual ~NTTask();
-
-	#ifdef WIN32
-	bool Start(void * arg0);
-	#else
-	bool Start(UINT32 arg0 = 0, UINT32 arg1 = 0, UINT32 arg2 = 0, UINT32 arg3 = 0, UINT32 arg4 = 0, 
-			UINT32 arg5 = 0, UINT32 arg6 = 0, UINT32 arg7 = 0, UINT32 arg8 = 0, UINT32 arg9 = 0);
-	#endif
-
-	bool Restart();
-	bool Stop();
-
-	bool IsReady();
-	bool IsSuspended();
-
-	bool Suspend();
-	bool Resume();
-
-	bool Verify();
-
-	INT32 GetPriority();
-	bool SetPriority(INT32 priority);
-	const char* GetName();
-	INT32 GetID();
-
-	#ifdef WIN32
-	FUNCPTR m_function;
-	void * m_Arg;
-	#endif
-private:
-	char* m_taskName;
-
-	#ifdef WIN32
-	bool StartInternal();
-	HANDLE m_Handle;
-	DWORD m_ID;
-	#else
-	FUNCPTR m_function;
-	INT32 m_taskID;
-	#endif
-
-	UINT32 m_stackSize;
-	INT32 m_priority;
-	bool HandleError(STATUS results);
-	DISALLOW_COPY_AND_ASSIGN(NTTask);
-};
-
-#endif // __vxworks
-#endif // __TASK_H__
diff --git a/aos/externals/WPILib/WPILib/PIDController.cpp b/aos/externals/WPILib/WPILib/PIDController.cpp
deleted file mode 100644
index 0bdefb2..0000000
--- a/aos/externals/WPILib/WPILib/PIDController.cpp
+++ /dev/null
@@ -1,613 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "PIDController.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Notifier.h"
-#include "PIDSource.h"
-#include "PIDOutput.h"
-#include <math.h>
-#include "Synchronized.h"
-
-static const char *kP = "p";
-static const char *kI = "i";
-static const char *kD = "d";
-static const char *kF = "f";
-static const char *kSetpoint = "setpoint";
-static const char *kEnabled = "enabled";
-
-
-/**
- * Allocate a PID object with the given constants for P, I, D
- * @param Kp the proportional coefficient
- * @param Ki the integral coefficient
- * @param Kd the derivative coefficient
- * @param source The PIDSource object that is used to get values
- * @param output The PIDOutput object that is set to the output value
- * @param period the loop time for doing calculations. This particularly effects calculations of the
- * integral and differental terms. The default is 50ms.
- */
-PIDController::PIDController(float Kp, float Ki, float Kd,
-								PIDSource *source, PIDOutput *output,
-								float period) :
-	m_semaphore (0)
-{
-	Initialize(Kp, Ki, Kd, 0.0f, source, output, period);
-}
-
-/**
- * Allocate a PID object with the given constants for P, I, D
- * @param Kp the proportional coefficient
- * @param Ki the integral coefficient
- * @param Kd the derivative coefficient
- * @param source The PIDSource object that is used to get values
- * @param output The PIDOutput object that is set to the output value
- * @param period the loop time for doing calculations. This particularly effects calculations of the
- * integral and differental terms. The default is 50ms.
- */
-PIDController::PIDController(float Kp, float Ki, float Kd, float Kf,
-								PIDSource *source, PIDOutput *output,
-								float period) :
-	m_semaphore (0)
-{
-	Initialize(Kp, Ki, Kd, Kf, source, output, period);
-}
-
-
-void PIDController::Initialize(float Kp, float Ki, float Kd, float Kf,
-								PIDSource *source, PIDOutput *output,
-								float period)
-{
-	m_table = NULL;
-	
-	m_semaphore = semMCreate(SEM_Q_PRIORITY);
-
-	m_controlLoop = new Notifier(PIDController::CallCalculate, this);
-
-	m_P = Kp;
-	m_I = Ki;
-	m_D = Kd;
-	m_F = Kf;
-	
-	m_maximumOutput = 1.0;
-	m_minimumOutput = -1.0;
-
-	m_maximumInput = 0;
-	m_minimumInput = 0;
-
-	m_continuous = false;
-	m_enabled = false;
-	m_setpoint = 0;
-
-	m_prevError = 0;
-	m_totalError = 0;
-	m_tolerance = .05;
-
-	m_result = 0;
-
-	m_pidInput = source;
-	m_pidOutput = output;
-	m_period = period;
-
-	m_controlLoop->StartPeriodic(m_period);
-
-	static int32_t instances = 0;
-	instances++;
-	nUsageReporting::report(nUsageReporting::kResourceType_PIDController, instances);
-	
-	m_toleranceType = kNoTolerance;
-}
-
-/**
- * Free the PID object
- */
-PIDController::~PIDController()
-{
-	semFlush(m_semaphore);
-	delete m_controlLoop;
-}
-
-/**
- * Call the Calculate method as a non-static method. This avoids having to prepend
- * all local variables in that method with the class pointer. This way the "this"
- * pointer will be set up and class variables can be called more easily.
- * This method is static and called by the Notifier class.
- * @param controller the address of the PID controller object to use in the background loop
- */
-void PIDController::CallCalculate(void *controller)
-{
-	PIDController *control = (PIDController*) controller;
-	control->Calculate();
-}
-
- /**
-  * Read the input, calculate the output accordingly, and write to the output.
-  * This should only be called by the Notifier indirectly through CallCalculate
-  * and is created during initialization.
-  */	
-void PIDController::Calculate()
-{
-	bool enabled;
-	PIDSource *pidInput;
-
-	CRITICAL_REGION(m_semaphore)
-	{
-		if (m_pidInput == 0) return;
-		if (m_pidOutput == 0) return;
-		enabled = m_enabled;
-		pidInput = m_pidInput;
-	}
-	END_REGION;
-
-	if (enabled)
-	{
-		float input = pidInput->PIDGet();
-		float result;
-		PIDOutput *pidOutput;
-
-		{
-			Synchronized sync(m_semaphore);
-			m_error = m_setpoint - input;
-			if (m_continuous)
-			{
-				if (fabs(m_error) > (m_maximumInput - m_minimumInput) / 2)
-				{
-					if (m_error > 0)
-					{
-						m_error = m_error - m_maximumInput + m_minimumInput;
-					}
-					else
-					{
-						m_error = m_error + m_maximumInput - m_minimumInput;
-					}
-				}
-			}
-			
-			if(m_I != 0)
-			{
-				double potentialIGain = (m_totalError + m_error) * m_I;
-				if (potentialIGain < m_maximumOutput)
-				{
-					if (potentialIGain > m_minimumOutput)
-						m_totalError += m_error;
-					else
-						m_totalError = m_minimumOutput / m_I;
-				}
-				else
-				{
-					m_totalError = m_maximumOutput / m_I;
-				}
-			}
-
-			m_result = m_P * m_error + m_I * m_totalError + m_D * (m_error - m_prevError) + m_setpoint * m_F;
-			m_prevError = m_error;
-
-			if (m_result > m_maximumOutput) m_result = m_maximumOutput;
-			else if (m_result < m_minimumOutput) m_result = m_minimumOutput;
-
-			pidOutput = m_pidOutput;
-			result = m_result;
-		}
-
-		pidOutput->PIDWrite(result);
-	}
-}
-
-/**
- * Set the PID Controller gain parameters.
- * Set the proportional, integral, and differential coefficients.
- * @param p Proportional coefficient
- * @param i Integral coefficient
- * @param d Differential coefficient
- */
-void PIDController::SetPID(float p, float i, float d)
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		m_P = p;
-		m_I = i;
-		m_D = d;
-	}
-	END_REGION;
-
-	if (m_table != NULL) {
-		m_table->PutNumber("p", m_P);
-		m_table->PutNumber("i", m_I);
-		m_table->PutNumber("d", m_D);
-	}
-}
-
-/**
- * Set the PID Controller gain parameters.
- * Set the proportional, integral, and differential coefficients.
- * @param p Proportional coefficient
- * @param i Integral coefficient
- * @param d Differential coefficient
- * @param f Feed forward coefficient
- */
-void PIDController::SetPID(float p, float i, float d, float f)
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		m_P = p;
-		m_I = i;
-		m_D = d;
-		m_F = f;
-	}
-	END_REGION;
-
-	if (m_table != NULL) {
-		m_table->PutNumber("p", m_P);
-		m_table->PutNumber("i", m_I);
-		m_table->PutNumber("d", m_D);
-		m_table->PutNumber("f", m_F);
-	}
-}
-
-/**
- * Get the Proportional coefficient
- * @return proportional coefficient
- */
-float PIDController::GetP()
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		return m_P;
-	}
-	END_REGION;
-}
-
-/**
- * Get the Integral coefficient
- * @return integral coefficient
- */
-float PIDController::GetI()
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		return m_I;
-	}
-	END_REGION;
-}
-
-/**
- * Get the Differential coefficient
- * @return differential coefficient
- */
-float PIDController::GetD()
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		return m_D;
-	}
-	END_REGION;
-}
-
-/**
- * Get the Feed forward coefficient
- * @return Feed forward coefficient
- */
-float PIDController::GetF()
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		return m_F;
-	}
-	END_REGION;
-}
-
-/**
- * Return the current PID result
- * This is always centered on zero and constrained the the max and min outs
- * @return the latest calculated output
- */
-float PIDController::Get()
-{
-	float result;
-	CRITICAL_REGION(m_semaphore)
-	{
-		result = m_result;
-	}
-	END_REGION;
-	return result;
-}
-
-/**
- *  Set the PID controller to consider the input to be continuous,
- *  Rather then using the max and min in as constraints, it considers them to
- *  be the same point and automatically calculates the shortest route to
- *  the setpoint.
- * @param continuous Set to true turns on continuous, false turns off continuous
- */
-void PIDController::SetContinuous(bool continuous)
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		m_continuous = continuous;
-	}
-	END_REGION;
-
-}
-
-/**
- * Sets the maximum and minimum values expected from the input.
- * 
- * @param minimumInput the minimum value expected from the input
- * @param maximumInput the maximum value expected from the output
- */
-void PIDController::SetInputRange(float minimumInput, float maximumInput)
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		m_minimumInput = minimumInput;
-		m_maximumInput = maximumInput;	
-	}
-	END_REGION;
-
-	SetSetpoint(m_setpoint);
-}
-
-/**
- * Sets the minimum and maximum values to write.
- * 
- * @param minimumOutput the minimum value to write to the output
- * @param maximumOutput the maximum value to write to the output
- */
-void PIDController::SetOutputRange(float minimumOutput, float maximumOutput)
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		m_minimumOutput = minimumOutput;
-		m_maximumOutput = maximumOutput;
-	}
-	END_REGION;
-}
-
-/**
- * Set the setpoint for the PIDController
- * @param setpoint the desired setpoint
- */
-void PIDController::SetSetpoint(float setpoint)
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		if (m_maximumInput > m_minimumInput)
-		{
-			if (setpoint > m_maximumInput)
-				m_setpoint = m_maximumInput;
-			else if (setpoint < m_minimumInput)
-				m_setpoint = m_minimumInput;
-			else
-				m_setpoint = setpoint;
-		}
-		else
-		{
-			m_setpoint = setpoint;
-		}
-	}
-	END_REGION;	
-	
-	if (m_table != NULL) {
-		m_table->PutNumber("setpoint", m_setpoint);
-	}
-}
-
-/**
- * Returns the current setpoint of the PIDController
- * @return the current setpoint
- */
-float PIDController::GetSetpoint()
-{
-	float setpoint;
-	CRITICAL_REGION(m_semaphore)
-	{
-		setpoint = m_setpoint;
-	}
-	END_REGION;
-	return setpoint;
-}
-
-/**
- * Retruns the current difference of the input from the setpoint
- * @return the current error
- */
-float PIDController::GetError()
-{
-	float error;
-	CRITICAL_REGION(m_semaphore)
-	{
-		error = m_setpoint - m_pidInput->PIDGet();
-	}
-	END_REGION;
-	return error;
-}
-
-/*
- * Set the percentage error which is considered tolerable for use with
- * OnTarget.
- * @param percentage error which is tolerable
- */
-void PIDController::SetTolerance(float percent)
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		m_toleranceType = kPercentTolerance;
-		m_tolerance = percent;
-	}
-	END_REGION;
-}
-
-/*
- * Set the percentage error which is considered tolerable for use with
- * OnTarget.
- * @param percentage error which is tolerable
- */
-void PIDController::SetPercentTolerance(float percent)
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		m_toleranceType = kPercentTolerance;
-		m_tolerance = percent;
-	}
-	END_REGION;
-}
-
-/*
- * Set the absolute error which is considered tolerable for use with
- * OnTarget.
- * @param percentage error which is tolerable
- */
-void PIDController::SetAbsoluteTolerance(float absTolerance)
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		m_toleranceType = kAbsoluteTolerance;
-		m_tolerance = absTolerance;
-	}
-	END_REGION;
-}
-
-/*
- * Return true if the error is within the percentage of the total input range,
- * determined by SetTolerance. This asssumes that the maximum and minimum input
- * were set using SetInput.
- * Currently this just reports on target as the actual value passes through the setpoint.
- * Ideally it should be based on being within the tolerance for some period of time.
- */
-bool PIDController::OnTarget()
-{
-	bool temp;
-	CRITICAL_REGION(m_semaphore)
-	{
-		switch (m_toleranceType) {
-		case kPercentTolerance:
-			temp = fabs(GetError()) < (m_tolerance / 100 * (m_maximumInput - m_minimumInput));
-			break;
-		case kAbsoluteTolerance:
-			temp = fabs(GetError()) < m_tolerance;
-			break;
-		//TODO: this case needs an error
-		case kNoTolerance:
-			temp = false;
-		}
-	}
-	END_REGION;
-	return temp;
-}
-
-/**
- * Begin running the PIDController
- */
-void PIDController::Enable()
-{
-	CRITICAL_REGION(m_semaphore)
-	{			
-		m_enabled = true;
-	}
-	END_REGION;	
-	
-	if (m_table != NULL) {
-		m_table->PutBoolean("enabled", true);
-	}
-}
-
-/**
- * Stop running the PIDController, this sets the output to zero before stopping.
- */
-void PIDController::Disable()
-{
-	CRITICAL_REGION(m_semaphore)
-	{
-		m_pidOutput->PIDWrite(0);
-		m_enabled = false;
-	}
-	END_REGION;
-	
-	if (m_table != NULL) {
-		m_table->PutBoolean("enabled", false);
-	}
-}
-
-/**
- * Return true if PIDController is enabled.
- */
-bool PIDController::IsEnabled()
-{
-	bool enabled;
-	CRITICAL_REGION(m_semaphore)
-	{
-		enabled = m_enabled;
-	}
-	END_REGION;
-	return enabled;
-}
-
-/**
- * Reset the previous error,, the integral term, and disable the controller.
- */
-void PIDController::Reset()
-{
-	Disable();
-
-	CRITICAL_REGION(m_semaphore)
-	{
-		m_prevError = 0;
-		m_totalError = 0;
-		m_result = 0;
-	}
-	END_REGION;
-}
-
-std::string PIDController::GetSmartDashboardType(){
-	return "PIDController";
-}
-
-void PIDController::InitTable(ITable* table){
-	if(m_table!=NULL)
-		m_table->RemoveTableListener(this);
-	m_table = table;
-	if(m_table!=NULL){
-		m_table->PutNumber(kP, GetP());
-		m_table->PutNumber(kI, GetI());
-		m_table->PutNumber(kD, GetD());
-		m_table->PutNumber(kF, GetF());
-		m_table->PutNumber(kSetpoint, GetSetpoint());
-		m_table->PutBoolean(kEnabled, IsEnabled());
-		m_table->AddTableListener(this, false);
-	}
-}
-
-ITable* PIDController::GetTable(){
-	return m_table;
-}
-
-void PIDController::ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew){
-	if (key==kP || key==kI || key==kD || key==kF) {
-		if (m_P != m_table->GetNumber(kP) || m_I != m_table->GetNumber(kI) || m_D != m_table->GetNumber(kD) || m_F != m_table->GetNumber(kF)  ) {
-			SetPID(m_table->GetNumber(kP, 0.0), m_table->GetNumber(kI, 0.0), m_table->GetNumber(kD, 0.0), m_table->GetNumber(kF, 0.0));
-		}
-	} else if (key==kSetpoint && m_setpoint != value.f) {
-		SetSetpoint(value.f);
-	} else if (key==kEnabled && m_enabled != value.b) {
-		if (value.b) {
-			Enable();
-		} else {
-			Disable();
-		}
-	}
-}
-
-void PIDController::UpdateTable() {
-	
-}
-
-void PIDController::StartLiveWindowMode() {
-	Disable();
-}
-
-void PIDController::StopLiveWindowMode() {
-	
-}
diff --git a/aos/externals/WPILib/WPILib/PIDController.h b/aos/externals/WPILib/WPILib/PIDController.h
deleted file mode 100644
index 2cf5bf4..0000000
--- a/aos/externals/WPILib/WPILib/PIDController.h
+++ /dev/null
@@ -1,109 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef PIDCONTROLLER_H_
-#define PIDCONTROLLER_H_
-
-#include "Base.h"
-#include "semLib.h"
-#include "Controller.h"
-#include "LiveWindow/LiveWindow.h"
-
-class PIDOutput;
-class PIDSource;
-class Notifier;
-
-/**
- * Class implements a PID Control Loop.
- * 
- * Creates a separate thread which reads the given PIDSource and takes
- * care of the integral calculations, as well as writing the given
- * PIDOutput
- */
-class PIDController : public LiveWindowSendable, public Controller, public ITableListener
-{
-public:
-	PIDController(float p, float i, float d,
-					PIDSource *source, PIDOutput *output,
-					float period = 0.05);
-	PIDController(float p, float i, float d, float f,
-					PIDSource *source, PIDOutput *output,
-					float period = 0.05);
-	virtual ~PIDController();
-	virtual float Get();
-	virtual void SetContinuous(bool continuous = true);
-	virtual void SetInputRange(float minimumInput, float maximumInput);
-	virtual void SetOutputRange(float mimimumOutput, float maximumOutput);
-	virtual void SetPID(float p, float i, float d);
-	virtual void SetPID(float p, float i, float d, float f);
-	virtual float GetP();
-	virtual float GetI();
-	virtual float GetD();
-	virtual float GetF();
-	
-	virtual void SetSetpoint(float setpoint);
-	virtual float GetSetpoint();
-
-	virtual float GetError();
-	
-	virtual void SetTolerance(float percent);
-	virtual void SetAbsoluteTolerance(float absValue);
-	virtual void SetPercentTolerance(float percentValue);
-	virtual bool OnTarget();
-	
-	virtual void Enable();
-	virtual void Disable();
-	virtual bool IsEnabled();
-	
-	virtual void Reset();
-	
-	virtual void InitTable(ITable* table);
-
-private:
-	float m_P;			// factor for "proportional" control
-	float m_I;			// factor for "integral" control
-	float m_D;			// factor for "derivative" control
-	float m_F;			// factor for "feed forward" control
-	float m_maximumOutput;	// |maximum output|
-	float m_minimumOutput;	// |minimum output|
-	float m_maximumInput;		// maximum input - limit setpoint to this
-	float m_minimumInput;		// minimum input - limit setpoint to this
-	bool m_continuous;	// do the endpoints wrap around? eg. Absolute encoder
-	bool m_enabled; 			//is the pid controller enabled
-	float m_prevError;	// the prior sensor input (used to compute velocity)
-	double m_totalError; //the sum of the errors for use in the integral calc
-	enum {kAbsoluteTolerance, kPercentTolerance, kNoTolerance} m_toleranceType;
-	float m_tolerance;	//the percetage or absolute error that is considered on target
-	float m_setpoint;
-	float m_error;
-	float m_result;
-	float m_period;
-	
-	SEM_ID m_semaphore;
-	
-	PIDSource *m_pidInput;
-	PIDOutput *m_pidOutput;
-	Notifier *m_controlLoop;
-
-	void Initialize(float p, float i, float d, float f,
-					PIDSource *source, PIDOutput *output,
-					float period = 0.05);
-	static void CallCalculate(void *controller);
-	
-	virtual ITable* GetTable();
-	virtual std::string GetSmartDashboardType();
-	virtual void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-	virtual void UpdateTable();
-	virtual void StartLiveWindowMode();
-	virtual void StopLiveWindowMode();
-protected:
-	ITable* m_table;
-	void Calculate();
-
-	DISALLOW_COPY_AND_ASSIGN(PIDController);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/PIDOutput.h b/aos/externals/WPILib/WPILib/PIDOutput.h
deleted file mode 100644
index 81483a6..0000000
--- a/aos/externals/WPILib/WPILib/PIDOutput.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef PID_OUTPUT_H
-#define PID_OUTPUT_H
-
-#include "Base.h"
-
-/**
- * PIDOutput interface is a generic output for the PID class.
- * PWMs use this class.
- * Users implement this interface to allow for a PIDController to 
- * read directly from the inputs
- */
-class PIDOutput
-{
-public:
-	virtual void PIDWrite(float output) = 0;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/PIDSource.h b/aos/externals/WPILib/WPILib/PIDSource.h
deleted file mode 100644
index a2ed1c2..0000000
--- a/aos/externals/WPILib/WPILib/PIDSource.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef PID_SOURCE_H
-#define PID_SOURCE_H
-
-/**
- * PIDSource interface is a generic sensor source for the PID class.
- * All sensors that can be used with the PID class will implement the PIDSource that
- * returns a standard value that will be used in the PID code.
- */
-class PIDSource
-{	
-public:
-	typedef enum {kDistance, kRate, kAngle} PIDSourceParameter;
-	virtual double PIDGet() = 0;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/PPC603gnu/Makefile b/aos/externals/WPILib/WPILib/PPC603gnu/Makefile
deleted file mode 100644
index 3b82d89..0000000
--- a/aos/externals/WPILib/WPILib/PPC603gnu/Makefile
+++ /dev/null
@@ -1,1103 +0,0 @@
-# Wind River Workbench generated Makefile.
-# Do not edit!!!
-#
-# The file ".wrmakefile" is the template used by the Wind River Workbench to
-# generate the makefiles of this project. Add user-specific build targets and
-# make rules only(!) in this project's ".wrmakefile" file. These will then be
-# automatically dumped into the makefiles.
-
-WIND_HOME := $(subst \,/,$(WIND_HOME))
-WIND_BASE := $(subst \,/,$(WIND_BASE))
-WIND_USR := $(subst \,/,$(WIND_USR))
-
-all : pre_build main_all post_build
-
-_clean ::
-	@echo "make: removing targets and objects of `pwd`"
-
-TRACE=0
-TRACEON=$(TRACE:0=@)
-TRACE_FLAG=$(TRACEON:1=)
-
-MAKEFILE := Makefile
-
-FLEXIBLE_BUILD := 1
-
-BUILD_SPEC = PPC603gnu
-DEBUG_MODE = 1
-ifeq ($(DEBUG_MODE),1)
-MODE_DIR := Debug
-else
-MODE_DIR := NonDebug
-endif
-OBJ_DIR := .
-WS_ROOT_DIR := C:/WindRiver/workspace
-PRJ_ROOT_DIR := $(WS_ROOT_DIR)/WPILib
-
-
-
-#Global Build Macros
-PROJECT_TYPE = DKM
-DEFINES = 
-EXPAND_DBG = 0
-
-
-#BuildSpec specific Build Macros
-VX_CPU_FAMILY = ppc
-CPU = PPC603
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=603 -mstrict-align -mno-implicit-fp -mlongcall
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I.. -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-
-IDE_DEFINES = 
-
-
-
-#BuildTool flags
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-DEBUGFLAGS_C++-Compiler = -g
-DEBUGFLAGS_Linker = -g
-DEBUGFLAGS_Partial-Image-Linker = 
-DEBUGFLAGS_Librarian = 
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-DEBUGFLAGS_Linker = -O2 -fstrength-reduce -fno-builtin
-DEBUGFLAGS_Partial-Image-Linker = 
-DEBUGFLAGS_Librarian = 
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-
-
-#Project Targets
-PROJECT_TARGETS = WPILib/$(MODE_DIR)/WPILib.a \
-	 JavaCameraLib/$(MODE_DIR)/JavaCameraLib.a
-
-
-#Rules
-
-# WPILib
-ifeq ($(DEBUG_MODE),1)
-WPILib/$(MODE_DIR)/% : DEBUGFLAGS_C-Compiler = -g
-WPILib/$(MODE_DIR)/% : DEBUGFLAGS_C++-Compiler = -g
-WPILib/$(MODE_DIR)/% : DEBUGFLAGS_Linker = -g
-WPILib/$(MODE_DIR)/% : DEBUGFLAGS_Partial-Image-Linker = 
-WPILib/$(MODE_DIR)/% : DEBUGFLAGS_Librarian = 
-WPILib/$(MODE_DIR)/% : DEBUGFLAGS_Assembler = -g
-else
-WPILib/$(MODE_DIR)/% : DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-WPILib/$(MODE_DIR)/% : DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-WPILib/$(MODE_DIR)/% : DEBUGFLAGS_Linker = -O2 -fstrength-reduce -fno-builtin
-WPILib/$(MODE_DIR)/% : DEBUGFLAGS_Partial-Image-Linker = 
-WPILib/$(MODE_DIR)/% : DEBUGFLAGS_Librarian = 
-WPILib/$(MODE_DIR)/% : DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-WPILib/$(MODE_DIR)/% : IDE_INCLUDES = -I.. -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-WPILib/$(MODE_DIR)/% : IDE_LIBRARIES = 
-WPILib/$(MODE_DIR)/% : IDE_DEFINES = 
-WPILib/$(MODE_DIR)/% : PROJECT_TYPE = DKM
-WPILib/$(MODE_DIR)/% : DEFINES = 
-WPILib/$(MODE_DIR)/% : EXPAND_DBG = 0
-WPILib/$(MODE_DIR)/% : VX_CPU_FAMILY = ppc
-WPILib/$(MODE_DIR)/% : CPU = PPC603
-WPILib/$(MODE_DIR)/% : TOOL_FAMILY = gnu
-WPILib/$(MODE_DIR)/% : TOOL = gnu
-WPILib/$(MODE_DIR)/% : TOOL_PATH = 
-WPILib/$(MODE_DIR)/% : CC_ARCH_SPEC = -mcpu=603 -mstrict-align -mno-implicit-fp -mlongcall
-WPILib/$(MODE_DIR)/% : LIBPATH = 
-WPILib/$(MODE_DIR)/% : LIBS = 
-WPILib/$(MODE_DIR)/% : OBJ_DIR := WPILib/$(MODE_DIR)
-
-WPILib/$(MODE_DIR)/Objects/WPILib/ADXL345_I2C.o : $(PRJ_ROOT_DIR)/ADXL345_I2C.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/ADXL345_SPI.o : $(PRJ_ROOT_DIR)/ADXL345_SPI.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Accelerometer.o : $(PRJ_ROOT_DIR)/Accelerometer.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/AnalogChannel.o : $(PRJ_ROOT_DIR)/AnalogChannel.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/AnalogModule.o : $(PRJ_ROOT_DIR)/AnalogModule.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/AnalogTrigger.o : $(PRJ_ROOT_DIR)/AnalogTrigger.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/AnalogTriggerOutput.o : $(PRJ_ROOT_DIR)/AnalogTriggerOutput.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/AnalogIOButton.o : $(PRJ_ROOT_DIR)/Buttons/AnalogIOButton.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/Button.o : $(PRJ_ROOT_DIR)/Buttons/Button.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/ButtonScheduler.o : $(PRJ_ROOT_DIR)/Buttons/ButtonScheduler.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/CancelButtonScheduler.o : $(PRJ_ROOT_DIR)/Buttons/CancelButtonScheduler.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/DigitalIOButton.o : $(PRJ_ROOT_DIR)/Buttons/DigitalIOButton.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/HeldButtonScheduler.o : $(PRJ_ROOT_DIR)/Buttons/HeldButtonScheduler.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/InternalButton.o : $(PRJ_ROOT_DIR)/Buttons/InternalButton.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/JoystickButton.o : $(PRJ_ROOT_DIR)/Buttons/JoystickButton.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/NetworkButton.o : $(PRJ_ROOT_DIR)/Buttons/NetworkButton.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/PressedButtonScheduler.o : $(PRJ_ROOT_DIR)/Buttons/PressedButtonScheduler.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/ReleasedButtonScheduler.o : $(PRJ_ROOT_DIR)/Buttons/ReleasedButtonScheduler.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/ToggleButtonScheduler.o : $(PRJ_ROOT_DIR)/Buttons/ToggleButtonScheduler.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/Trigger.o : $(PRJ_ROOT_DIR)/Buttons/Trigger.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/CANJaguar.o : $(PRJ_ROOT_DIR)/CANJaguar.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Commands/Command.o : $(PRJ_ROOT_DIR)/Commands/Command.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Commands/CommandGroup.o : $(PRJ_ROOT_DIR)/Commands/CommandGroup.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Commands/CommandGroupEntry.o : $(PRJ_ROOT_DIR)/Commands/CommandGroupEntry.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Commands/PIDCommand.o : $(PRJ_ROOT_DIR)/Commands/PIDCommand.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Commands/PIDSubsystem.o : $(PRJ_ROOT_DIR)/Commands/PIDSubsystem.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Commands/PrintCommand.o : $(PRJ_ROOT_DIR)/Commands/PrintCommand.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Commands/Scheduler.o : $(PRJ_ROOT_DIR)/Commands/Scheduler.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Commands/StartCommand.o : $(PRJ_ROOT_DIR)/Commands/StartCommand.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Commands/Subsystem.o : $(PRJ_ROOT_DIR)/Commands/Subsystem.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Commands/WaitCommand.o : $(PRJ_ROOT_DIR)/Commands/WaitCommand.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Commands/WaitForChildren.o : $(PRJ_ROOT_DIR)/Commands/WaitForChildren.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Commands/WaitUntilCommand.o : $(PRJ_ROOT_DIR)/Commands/WaitUntilCommand.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Compressor.o : $(PRJ_ROOT_DIR)/Compressor.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Counter.o : $(PRJ_ROOT_DIR)/Counter.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Dashboard.o : $(PRJ_ROOT_DIR)/Dashboard.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/DigitalInput.o : $(PRJ_ROOT_DIR)/DigitalInput.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/DigitalModule.o : $(PRJ_ROOT_DIR)/DigitalModule.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/DigitalOutput.o : $(PRJ_ROOT_DIR)/DigitalOutput.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/DigitalSource.o : $(PRJ_ROOT_DIR)/DigitalSource.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/DoubleSolenoid.o : $(PRJ_ROOT_DIR)/DoubleSolenoid.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/DriverStation.o : $(PRJ_ROOT_DIR)/DriverStation.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/DriverStationEnhancedIO.o : $(PRJ_ROOT_DIR)/DriverStationEnhancedIO.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/DriverStationLCD.o : $(PRJ_ROOT_DIR)/DriverStationLCD.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Encoder.o : $(PRJ_ROOT_DIR)/Encoder.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Error.o : $(PRJ_ROOT_DIR)/Error.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/ErrorBase.o : $(PRJ_ROOT_DIR)/ErrorBase.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/GearTooth.o : $(PRJ_ROOT_DIR)/GearTooth.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Gyro.o : $(PRJ_ROOT_DIR)/Gyro.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/HiTechnicColorSensor.o : $(PRJ_ROOT_DIR)/HiTechnicColorSensor.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/HiTechnicCompass.o : $(PRJ_ROOT_DIR)/HiTechnicCompass.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/I2C.o : $(PRJ_ROOT_DIR)/I2C.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/InterruptableSensorBase.o : $(PRJ_ROOT_DIR)/InterruptableSensorBase.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/IterativeRobot.o : $(PRJ_ROOT_DIR)/IterativeRobot.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Jaguar.o : $(PRJ_ROOT_DIR)/Jaguar.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Joystick.o : $(PRJ_ROOT_DIR)/Joystick.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Kinect.o : $(PRJ_ROOT_DIR)/Kinect.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/KinectStick.o : $(PRJ_ROOT_DIR)/KinectStick.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/LiveWindow/LiveWindow.o : $(PRJ_ROOT_DIR)/LiveWindow/LiveWindow.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/LiveWindow/LiveWindowStatusListener.o : $(PRJ_ROOT_DIR)/LiveWindow/LiveWindowStatusListener.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Module.o : $(PRJ_ROOT_DIR)/Module.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/MotorSafetyHelper.o : $(PRJ_ROOT_DIR)/MotorSafetyHelper.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Notifier.o : $(PRJ_ROOT_DIR)/Notifier.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/OSAL/Synchronized.o : $(PRJ_ROOT_DIR)/OSAL/Synchronized.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/OSAL/Task.o : $(PRJ_ROOT_DIR)/OSAL/Task.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/PIDController.o : $(PRJ_ROOT_DIR)/PIDController.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/PWM.o : $(PRJ_ROOT_DIR)/PWM.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Preferences.o : $(PRJ_ROOT_DIR)/Preferences.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Relay.o : $(PRJ_ROOT_DIR)/Relay.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Resource.o : $(PRJ_ROOT_DIR)/Resource.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/RobotBase.o : $(PRJ_ROOT_DIR)/RobotBase.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/RobotDrive.o : $(PRJ_ROOT_DIR)/RobotDrive.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/SPI.o : $(PRJ_ROOT_DIR)/SPI.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/SafePWM.o : $(PRJ_ROOT_DIR)/SafePWM.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/SensorBase.o : $(PRJ_ROOT_DIR)/SensorBase.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/SerialPort.o : $(PRJ_ROOT_DIR)/SerialPort.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Servo.o : $(PRJ_ROOT_DIR)/Servo.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/SimpleRobot.o : $(PRJ_ROOT_DIR)/SimpleRobot.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/SmartDashboard/SendableChooser.o : $(PRJ_ROOT_DIR)/SmartDashboard/SendableChooser.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/SmartDashboard/SmartDashboard.o : $(PRJ_ROOT_DIR)/SmartDashboard/SmartDashboard.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Solenoid.o : $(PRJ_ROOT_DIR)/Solenoid.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/SolenoidBase.o : $(PRJ_ROOT_DIR)/SolenoidBase.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Synchronized.o : $(PRJ_ROOT_DIR)/Synchronized.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Talon.o : $(PRJ_ROOT_DIR)/Talon.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Task.o : $(PRJ_ROOT_DIR)/Task.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Timer.o : $(PRJ_ROOT_DIR)/Timer.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Ultrasonic.o : $(PRJ_ROOT_DIR)/Ultrasonic.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Utility.o : $(PRJ_ROOT_DIR)/Utility.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Victor.o : $(PRJ_ROOT_DIR)/Victor.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision/AxisCamera.o : $(PRJ_ROOT_DIR)/Vision/AxisCamera.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision/AxisCameraParams.o : $(PRJ_ROOT_DIR)/Vision/AxisCameraParams.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision/BinaryImage.o : $(PRJ_ROOT_DIR)/Vision/BinaryImage.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision/ColorImage.o : $(PRJ_ROOT_DIR)/Vision/ColorImage.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision/EnumCameraParameter.o : $(PRJ_ROOT_DIR)/Vision/EnumCameraParameter.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision/HSLImage.o : $(PRJ_ROOT_DIR)/Vision/HSLImage.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision/ImageBase.o : $(PRJ_ROOT_DIR)/Vision/ImageBase.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision/IntCameraParameter.o : $(PRJ_ROOT_DIR)/Vision/IntCameraParameter.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision/MonoImage.o : $(PRJ_ROOT_DIR)/Vision/MonoImage.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision/PCVideoServer.o : $(PRJ_ROOT_DIR)/Vision/PCVideoServer.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision/RGBImage.o : $(PRJ_ROOT_DIR)/Vision/RGBImage.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision/Threshold.o : $(PRJ_ROOT_DIR)/Vision/Threshold.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/AxisCamera.o : $(PRJ_ROOT_DIR)/Vision2009/AxisCamera.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/BaeUtilities.o : $(PRJ_ROOT_DIR)/Vision2009/BaeUtilities.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/FrcError.o : $(PRJ_ROOT_DIR)/Vision2009/FrcError.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/TrackAPI.o : $(PRJ_ROOT_DIR)/Vision2009/TrackAPI.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/VisionAPI.o : $(PRJ_ROOT_DIR)/Vision2009/VisionAPI.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/Watchdog.o : $(PRJ_ROOT_DIR)/Watchdog.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTable.o : $(PRJ_ROOT_DIR)/networktables/NetworkTable.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableConnectionListenerAdapter.o : $(PRJ_ROOT_DIR)/networktables/NetworkTableConnectionListenerAdapter.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableKeyListenerAdapter.o : $(PRJ_ROOT_DIR)/networktables/NetworkTableKeyListenerAdapter.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableListenerAdapter.o : $(PRJ_ROOT_DIR)/networktables/NetworkTableListenerAdapter.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableMode.o : $(PRJ_ROOT_DIR)/networktables/NetworkTableMode.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableProvider.o : $(PRJ_ROOT_DIR)/networktables/NetworkTableProvider.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableSubListenerAdapter.o : $(PRJ_ROOT_DIR)/networktables/NetworkTableSubListenerAdapter.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/AbstractNetworkTableEntryStore.o : $(PRJ_ROOT_DIR)/networktables2/AbstractNetworkTableEntryStore.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/NetworkTableEntry.o : $(PRJ_ROOT_DIR)/networktables2/NetworkTableEntry.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/NetworkTableNode.o : $(PRJ_ROOT_DIR)/networktables2/NetworkTableNode.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/OutgoingEntryReciever.o : $(PRJ_ROOT_DIR)/networktables2/OutgoingEntryReciever.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/TableKeyExistsWithDifferentTypeException.o : $(PRJ_ROOT_DIR)/networktables2/TableKeyExistsWithDifferentTypeException.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/TransactionDirtier.o : $(PRJ_ROOT_DIR)/networktables2/TransactionDirtier.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/WriteManager.o : $(PRJ_ROOT_DIR)/networktables2/WriteManager.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/client/ClientConnectionAdapter.o : $(PRJ_ROOT_DIR)/networktables2/client/ClientConnectionAdapter.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/client/ClientConnectionState.o : $(PRJ_ROOT_DIR)/networktables2/client/ClientConnectionState.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/client/ClientNetworkTableEntryStore.o : $(PRJ_ROOT_DIR)/networktables2/client/ClientNetworkTableEntryStore.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/client/NetworkTableClient.o : $(PRJ_ROOT_DIR)/networktables2/client/NetworkTableClient.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/connection/BadMessageException.o : $(PRJ_ROOT_DIR)/networktables2/connection/BadMessageException.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/connection/ConnectionMonitorThread.o : $(PRJ_ROOT_DIR)/networktables2/connection/ConnectionMonitorThread.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/connection/DataIOStream.o : $(PRJ_ROOT_DIR)/networktables2/connection/DataIOStream.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/connection/NetworkTableConnection.o : $(PRJ_ROOT_DIR)/networktables2/connection/NetworkTableConnection.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/NetworkTableServer.o : $(PRJ_ROOT_DIR)/networktables2/server/NetworkTableServer.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerConnectionAdapter.o : $(PRJ_ROOT_DIR)/networktables2/server/ServerConnectionAdapter.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerConnectionList.o : $(PRJ_ROOT_DIR)/networktables2/server/ServerConnectionList.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerConnectionState.o : $(PRJ_ROOT_DIR)/networktables2/server/ServerConnectionState.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerIncomingStreamMonitor.o : $(PRJ_ROOT_DIR)/networktables2/server/ServerIncomingStreamMonitor.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerNetworkTableEntryStore.o : $(PRJ_ROOT_DIR)/networktables2/server/ServerNetworkTableEntryStore.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/stream/FDIOStream.o : $(PRJ_ROOT_DIR)/networktables2/stream/FDIOStream.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/stream/SocketServerStreamProvider.o : $(PRJ_ROOT_DIR)/networktables2/stream/SocketServerStreamProvider.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/stream/SocketStreamFactory.o : $(PRJ_ROOT_DIR)/networktables2/stream/SocketStreamFactory.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/stream/SocketStreams.o : $(PRJ_ROOT_DIR)/networktables2/stream/SocketStreams.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/thread/DefaultThreadManger.o : $(PRJ_ROOT_DIR)/networktables2/thread/DefaultThreadManger.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/ArrayData.o : $(PRJ_ROOT_DIR)/networktables2/type/ArrayData.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/ArrayEntryType.o : $(PRJ_ROOT_DIR)/networktables2/type/ArrayEntryType.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/BooleanArray.o : $(PRJ_ROOT_DIR)/networktables2/type/BooleanArray.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/ComplexData.o : $(PRJ_ROOT_DIR)/networktables2/type/ComplexData.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/ComplexEntryType.o : $(PRJ_ROOT_DIR)/networktables2/type/ComplexEntryType.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/DefaultEntryTypes.o : $(PRJ_ROOT_DIR)/networktables2/type/DefaultEntryTypes.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/NetworkTableEntryType.o : $(PRJ_ROOT_DIR)/networktables2/type/NetworkTableEntryType.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/NetworkTableEntryTypeManager.o : $(PRJ_ROOT_DIR)/networktables2/type/NetworkTableEntryTypeManager.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/NumberArray.o : $(PRJ_ROOT_DIR)/networktables2/type/NumberArray.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/StringArray.o : $(PRJ_ROOT_DIR)/networktables2/type/StringArray.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/EOFException.o : $(PRJ_ROOT_DIR)/networktables2/util/EOFException.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/IOException.o : $(PRJ_ROOT_DIR)/networktables2/util/IOException.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/IllegalStateException.o : $(PRJ_ROOT_DIR)/networktables2/util/IllegalStateException.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/StringCache.o : $(PRJ_ROOT_DIR)/networktables2/util/StringCache.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/System.o : $(PRJ_ROOT_DIR)/networktables2/util/System.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-WPILib/$(MODE_DIR)/Objects/WPILib/tables/TableKeyNotDefinedException.o : $(PRJ_ROOT_DIR)/tables/TableKeyNotDefinedException.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-OBJECTS_WPILib = WPILib/$(MODE_DIR)/Objects/WPILib/ADXL345_I2C.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/ADXL345_SPI.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Accelerometer.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/AnalogChannel.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/AnalogModule.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/AnalogTrigger.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/AnalogTriggerOutput.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/AnalogIOButton.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/Button.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/ButtonScheduler.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/CancelButtonScheduler.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/DigitalIOButton.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/HeldButtonScheduler.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/InternalButton.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/JoystickButton.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/NetworkButton.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/PressedButtonScheduler.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/ReleasedButtonScheduler.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/ToggleButtonScheduler.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/Trigger.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/CANJaguar.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/Command.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/CommandGroup.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/CommandGroupEntry.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/PIDCommand.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/PIDSubsystem.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/PrintCommand.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/Scheduler.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/StartCommand.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/Subsystem.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/WaitCommand.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/WaitForChildren.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/WaitUntilCommand.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Compressor.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Counter.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Dashboard.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/DigitalInput.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/DigitalModule.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/DigitalOutput.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/DigitalSource.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/DoubleSolenoid.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/DriverStation.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/DriverStationEnhancedIO.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/DriverStationLCD.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Encoder.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Error.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/ErrorBase.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/GearTooth.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Gyro.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/HiTechnicColorSensor.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/HiTechnicCompass.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/I2C.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/InterruptableSensorBase.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/IterativeRobot.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Jaguar.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Joystick.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Kinect.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/KinectStick.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/LiveWindow/LiveWindow.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/LiveWindow/LiveWindowStatusListener.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Module.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/MotorSafetyHelper.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Notifier.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/OSAL/Synchronized.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/OSAL/Task.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/PIDController.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/PWM.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Preferences.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Relay.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Resource.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/RobotBase.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/RobotDrive.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/SPI.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/SafePWM.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/SensorBase.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/SerialPort.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Servo.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/SimpleRobot.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/SmartDashboard/SendableChooser.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/SmartDashboard/SmartDashboard.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Solenoid.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/SolenoidBase.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Synchronized.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Talon.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Task.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Timer.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Ultrasonic.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Utility.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Victor.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/AxisCamera.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/AxisCameraParams.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/BinaryImage.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/ColorImage.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/EnumCameraParameter.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/HSLImage.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/ImageBase.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/IntCameraParameter.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/MonoImage.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/PCVideoServer.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/RGBImage.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/Threshold.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/AxisCamera.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/BaeUtilities.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/FrcError.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/TrackAPI.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/VisionAPI.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Watchdog.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTable.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableConnectionListenerAdapter.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableKeyListenerAdapter.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableListenerAdapter.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableMode.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableProvider.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableSubListenerAdapter.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/AbstractNetworkTableEntryStore.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/NetworkTableEntry.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/NetworkTableNode.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/OutgoingEntryReciever.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/TableKeyExistsWithDifferentTypeException.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/TransactionDirtier.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/WriteManager.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/client/ClientConnectionAdapter.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/client/ClientConnectionState.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/client/ClientNetworkTableEntryStore.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/client/NetworkTableClient.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/connection/BadMessageException.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/connection/ConnectionMonitorThread.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/connection/DataIOStream.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/connection/NetworkTableConnection.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/NetworkTableServer.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerConnectionAdapter.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerConnectionList.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerConnectionState.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerIncomingStreamMonitor.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerNetworkTableEntryStore.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/stream/FDIOStream.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/stream/SocketServerStreamProvider.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/stream/SocketStreamFactory.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/stream/SocketStreams.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/thread/DefaultThreadManger.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/ArrayData.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/ArrayEntryType.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/BooleanArray.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/ComplexData.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/ComplexEntryType.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/DefaultEntryTypes.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/NetworkTableEntryType.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/NetworkTableEntryTypeManager.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/NumberArray.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/StringArray.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/EOFException.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/IOException.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/IllegalStateException.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/StringCache.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/System.o \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/tables/TableKeyNotDefinedException.o
-
-WPILib/$(MODE_DIR)/WPILib.a : $(OBJECTS_WPILib)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)arppc crus "$@" $(OBJECTS_WPILib)
-
-WPILib/$(MODE_DIR)/WPILib_compile_file : $(FILE) ;
-
-_clean :: WPILib/$(MODE_DIR)/WPILib_clean
-
-WPILib/$(MODE_DIR)/WPILib_clean : 
-	$(TRACE_FLAG)if [ -d "WPILib" ]; then cd "WPILib"; rm -rf $(MODE_DIR); fi
-
-
-# JavaCameraLib
-ifeq ($(DEBUG_MODE),1)
-JavaCameraLib/$(MODE_DIR)/% : DEBUGFLAGS_C-Compiler = -g
-JavaCameraLib/$(MODE_DIR)/% : DEBUGFLAGS_C++-Compiler = -g
-JavaCameraLib/$(MODE_DIR)/% : DEBUGFLAGS_Linker = -g
-JavaCameraLib/$(MODE_DIR)/% : DEBUGFLAGS_Partial-Image-Linker = 
-JavaCameraLib/$(MODE_DIR)/% : DEBUGFLAGS_Librarian = 
-JavaCameraLib/$(MODE_DIR)/% : DEBUGFLAGS_Assembler = -g
-else
-JavaCameraLib/$(MODE_DIR)/% : DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-JavaCameraLib/$(MODE_DIR)/% : DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-JavaCameraLib/$(MODE_DIR)/% : DEBUGFLAGS_Linker = -O2 -fstrength-reduce -fno-builtin
-JavaCameraLib/$(MODE_DIR)/% : DEBUGFLAGS_Partial-Image-Linker = 
-JavaCameraLib/$(MODE_DIR)/% : DEBUGFLAGS_Librarian = 
-JavaCameraLib/$(MODE_DIR)/% : DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-JavaCameraLib/$(MODE_DIR)/% : IDE_INCLUDES = -I.. -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-JavaCameraLib/$(MODE_DIR)/% : IDE_LIBRARIES = 
-JavaCameraLib/$(MODE_DIR)/% : IDE_DEFINES = 
-JavaCameraLib/$(MODE_DIR)/% : PROJECT_TYPE = DKM
-JavaCameraLib/$(MODE_DIR)/% : DEFINES = 
-JavaCameraLib/$(MODE_DIR)/% : EXPAND_DBG = 0
-JavaCameraLib/$(MODE_DIR)/% : VX_CPU_FAMILY = ppc
-JavaCameraLib/$(MODE_DIR)/% : CPU = PPC603
-JavaCameraLib/$(MODE_DIR)/% : TOOL_FAMILY = gnu
-JavaCameraLib/$(MODE_DIR)/% : TOOL = gnu
-JavaCameraLib/$(MODE_DIR)/% : TOOL_PATH = 
-JavaCameraLib/$(MODE_DIR)/% : CC_ARCH_SPEC = -mcpu=603 -mstrict-align -mno-implicit-fp -mlongcall
-JavaCameraLib/$(MODE_DIR)/% : LIBPATH = 
-JavaCameraLib/$(MODE_DIR)/% : LIBS = 
-JavaCameraLib/$(MODE_DIR)/% : OBJ_DIR := JavaCameraLib/$(MODE_DIR)
-
-JavaCameraLib/$(MODE_DIR)/Objects/PCVideoServer.o : $(PRJ_ROOT_DIR)/Vision/PCVideoServer.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -DJAVA_CAMERA_LIB=1 -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-JavaCameraLib/$(MODE_DIR)/Objects/AxisCamera.o : $(PRJ_ROOT_DIR)/Vision/AxisCamera.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -DJAVA_CAMERA_LIB=1 -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-JavaCameraLib/$(MODE_DIR)/Objects/AxisCameraParams.o : $(PRJ_ROOT_DIR)/Vision/AxisCameraParams.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -DJAVA_CAMERA_LIB=1 -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-JavaCameraLib/$(MODE_DIR)/Objects/EnumCameraParameter.o : $(PRJ_ROOT_DIR)/Vision/EnumCameraParameter.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -DJAVA_CAMERA_LIB=1 -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-JavaCameraLib/$(MODE_DIR)/Objects/IntCameraParameter.o : $(PRJ_ROOT_DIR)/Vision/IntCameraParameter.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -DJAVA_CAMERA_LIB=1 -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-JavaCameraLib/$(MODE_DIR)/Objects/Error.o : $(PRJ_ROOT_DIR)/Error.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -DJAVA_CAMERA_LIB=1 -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-JavaCameraLib/$(MODE_DIR)/Objects/ErrorBase.o : $(PRJ_ROOT_DIR)/ErrorBase.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -DJAVA_CAMERA_LIB=1 -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-JavaCameraLib/$(MODE_DIR)/Objects/Task.o : $(PRJ_ROOT_DIR)/Task.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -DJAVA_CAMERA_LIB=1 -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-JavaCameraLib/$(MODE_DIR)/Objects/Timer.o : $(PRJ_ROOT_DIR)/Timer.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -DJAVA_CAMERA_LIB=1 -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-JavaCameraLib/$(MODE_DIR)/Objects/Synchronized.o : $(PRJ_ROOT_DIR)/Synchronized.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -DJAVA_CAMERA_LIB=1 -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-JavaCameraLib/$(MODE_DIR)/Objects/Utility.o : $(PRJ_ROOT_DIR)/Utility.cpp $(FORCE_FILE_BUILD)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -DJAVA_CAMERA_LIB=1 -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-
-OBJECTS_JavaCameraLib = JavaCameraLib/$(MODE_DIR)/Objects/PCVideoServer.o \
-	 JavaCameraLib/$(MODE_DIR)/Objects/AxisCamera.o \
-	 JavaCameraLib/$(MODE_DIR)/Objects/AxisCameraParams.o \
-	 JavaCameraLib/$(MODE_DIR)/Objects/EnumCameraParameter.o \
-	 JavaCameraLib/$(MODE_DIR)/Objects/IntCameraParameter.o \
-	 JavaCameraLib/$(MODE_DIR)/Objects/Error.o \
-	 JavaCameraLib/$(MODE_DIR)/Objects/ErrorBase.o \
-	 JavaCameraLib/$(MODE_DIR)/Objects/Task.o \
-	 JavaCameraLib/$(MODE_DIR)/Objects/Timer.o \
-	 JavaCameraLib/$(MODE_DIR)/Objects/Synchronized.o \
-	 JavaCameraLib/$(MODE_DIR)/Objects/Utility.o
-
-JavaCameraLib/$(MODE_DIR)/JavaCameraLib.a : $(OBJECTS_JavaCameraLib)
-	$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)arppc crus "$@" $(OBJECTS_JavaCameraLib)
-
-JavaCameraLib/$(MODE_DIR)/JavaCameraLib_compile_file : $(FILE) ;
-
-_clean :: JavaCameraLib/$(MODE_DIR)/JavaCameraLib_clean
-
-JavaCameraLib/$(MODE_DIR)/JavaCameraLib_clean : 
-	$(TRACE_FLAG)if [ -d "JavaCameraLib" ]; then cd "JavaCameraLib"; rm -rf $(MODE_DIR); fi
-
-force : 
-
-DEP_FILES := WPILib/$(MODE_DIR)/Objects/WPILib/ADXL345_I2C.d WPILib/$(MODE_DIR)/Objects/WPILib/ADXL345_SPI.d WPILib/$(MODE_DIR)/Objects/WPILib/Accelerometer.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/AnalogChannel.d WPILib/$(MODE_DIR)/Objects/WPILib/AnalogModule.d WPILib/$(MODE_DIR)/Objects/WPILib/AnalogTrigger.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/AnalogTriggerOutput.d WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/AnalogIOButton.d WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/Button.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/ButtonScheduler.d WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/CancelButtonScheduler.d WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/DigitalIOButton.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/HeldButtonScheduler.d WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/InternalButton.d WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/JoystickButton.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/NetworkButton.d WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/PressedButtonScheduler.d WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/ReleasedButtonScheduler.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/ToggleButtonScheduler.d WPILib/$(MODE_DIR)/Objects/WPILib/Buttons/Trigger.d WPILib/$(MODE_DIR)/Objects/WPILib/CANJaguar.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/Command.d WPILib/$(MODE_DIR)/Objects/WPILib/Commands/CommandGroup.d WPILib/$(MODE_DIR)/Objects/WPILib/Commands/CommandGroupEntry.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/PIDCommand.d WPILib/$(MODE_DIR)/Objects/WPILib/Commands/PIDSubsystem.d WPILib/$(MODE_DIR)/Objects/WPILib/Commands/PrintCommand.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/Scheduler.d WPILib/$(MODE_DIR)/Objects/WPILib/Commands/StartCommand.d WPILib/$(MODE_DIR)/Objects/WPILib/Commands/Subsystem.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Commands/WaitCommand.d WPILib/$(MODE_DIR)/Objects/WPILib/Commands/WaitForChildren.d WPILib/$(MODE_DIR)/Objects/WPILib/Commands/WaitUntilCommand.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Compressor.d WPILib/$(MODE_DIR)/Objects/WPILib/Counter.d WPILib/$(MODE_DIR)/Objects/WPILib/Dashboard.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/DigitalInput.d WPILib/$(MODE_DIR)/Objects/WPILib/DigitalModule.d WPILib/$(MODE_DIR)/Objects/WPILib/DigitalOutput.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/DigitalSource.d WPILib/$(MODE_DIR)/Objects/WPILib/DoubleSolenoid.d WPILib/$(MODE_DIR)/Objects/WPILib/DriverStation.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/DriverStationEnhancedIO.d WPILib/$(MODE_DIR)/Objects/WPILib/DriverStationLCD.d WPILib/$(MODE_DIR)/Objects/WPILib/Encoder.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Error.d WPILib/$(MODE_DIR)/Objects/WPILib/ErrorBase.d WPILib/$(MODE_DIR)/Objects/WPILib/GearTooth.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Gyro.d WPILib/$(MODE_DIR)/Objects/WPILib/HiTechnicColorSensor.d WPILib/$(MODE_DIR)/Objects/WPILib/HiTechnicCompass.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/I2C.d WPILib/$(MODE_DIR)/Objects/WPILib/InterruptableSensorBase.d WPILib/$(MODE_DIR)/Objects/WPILib/IterativeRobot.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Jaguar.d WPILib/$(MODE_DIR)/Objects/WPILib/Joystick.d WPILib/$(MODE_DIR)/Objects/WPILib/Kinect.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/KinectStick.d WPILib/$(MODE_DIR)/Objects/WPILib/LiveWindow/LiveWindow.d WPILib/$(MODE_DIR)/Objects/WPILib/LiveWindow/LiveWindowStatusListener.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Module.d WPILib/$(MODE_DIR)/Objects/WPILib/MotorSafetyHelper.d WPILib/$(MODE_DIR)/Objects/WPILib/Notifier.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/OSAL/Synchronized.d WPILib/$(MODE_DIR)/Objects/WPILib/OSAL/Task.d WPILib/$(MODE_DIR)/Objects/WPILib/PIDController.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/PWM.d WPILib/$(MODE_DIR)/Objects/WPILib/Preferences.d WPILib/$(MODE_DIR)/Objects/WPILib/Relay.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Resource.d WPILib/$(MODE_DIR)/Objects/WPILib/RobotBase.d WPILib/$(MODE_DIR)/Objects/WPILib/RobotDrive.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/SPI.d WPILib/$(MODE_DIR)/Objects/WPILib/SafePWM.d WPILib/$(MODE_DIR)/Objects/WPILib/SensorBase.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/SerialPort.d WPILib/$(MODE_DIR)/Objects/WPILib/Servo.d WPILib/$(MODE_DIR)/Objects/WPILib/SimpleRobot.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/SmartDashboard/SendableChooser.d WPILib/$(MODE_DIR)/Objects/WPILib/SmartDashboard/SmartDashboard.d WPILib/$(MODE_DIR)/Objects/WPILib/Solenoid.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/SolenoidBase.d WPILib/$(MODE_DIR)/Objects/WPILib/Synchronized.d WPILib/$(MODE_DIR)/Objects/WPILib/Talon.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Task.d WPILib/$(MODE_DIR)/Objects/WPILib/Timer.d WPILib/$(MODE_DIR)/Objects/WPILib/Ultrasonic.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Utility.d WPILib/$(MODE_DIR)/Objects/WPILib/Victor.d WPILib/$(MODE_DIR)/Objects/WPILib/Vision/AxisCamera.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/AxisCameraParams.d WPILib/$(MODE_DIR)/Objects/WPILib/Vision/BinaryImage.d WPILib/$(MODE_DIR)/Objects/WPILib/Vision/ColorImage.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/EnumCameraParameter.d WPILib/$(MODE_DIR)/Objects/WPILib/Vision/HSLImage.d WPILib/$(MODE_DIR)/Objects/WPILib/Vision/ImageBase.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/IntCameraParameter.d WPILib/$(MODE_DIR)/Objects/WPILib/Vision/MonoImage.d WPILib/$(MODE_DIR)/Objects/WPILib/Vision/PCVideoServer.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision/RGBImage.d WPILib/$(MODE_DIR)/Objects/WPILib/Vision/Threshold.d WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/AxisCamera.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/BaeUtilities.d WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/FrcError.d WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/TrackAPI.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/Vision2009/VisionAPI.d WPILib/$(MODE_DIR)/Objects/WPILib/Watchdog.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTable.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableConnectionListenerAdapter.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableKeyListenerAdapter.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableListenerAdapter.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableMode.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableProvider.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables/NetworkTableSubListenerAdapter.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/AbstractNetworkTableEntryStore.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/NetworkTableEntry.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/NetworkTableNode.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/OutgoingEntryReciever.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/TableKeyExistsWithDifferentTypeException.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/TransactionDirtier.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/WriteManager.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/client/ClientConnectionAdapter.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/client/ClientConnectionState.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/client/ClientNetworkTableEntryStore.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/client/NetworkTableClient.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/connection/BadMessageException.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/connection/ConnectionMonitorThread.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/connection/DataIOStream.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/connection/NetworkTableConnection.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/NetworkTableServer.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerConnectionAdapter.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerConnectionList.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerConnectionState.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerIncomingStreamMonitor.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/server/ServerNetworkTableEntryStore.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/stream/FDIOStream.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/stream/SocketServerStreamProvider.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/stream/SocketStreamFactory.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/stream/SocketStreams.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/thread/DefaultThreadManger.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/ArrayData.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/ArrayEntryType.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/BooleanArray.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/ComplexData.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/ComplexEntryType.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/DefaultEntryTypes.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/NetworkTableEntryType.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/NetworkTableEntryTypeManager.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/NumberArray.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/type/StringArray.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/EOFException.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/IOException.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/IllegalStateException.d \
-	 WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/StringCache.d WPILib/$(MODE_DIR)/Objects/WPILib/networktables2/util/System.d WPILib/$(MODE_DIR)/Objects/WPILib/tables/TableKeyNotDefinedException.d \
-	 JavaCameraLib/$(MODE_DIR)/Objects/PCVideoServer.d JavaCameraLib/$(MODE_DIR)/Objects/AxisCamera.d JavaCameraLib/$(MODE_DIR)/Objects/AxisCameraParams.d \
-	 JavaCameraLib/$(MODE_DIR)/Objects/EnumCameraParameter.d JavaCameraLib/$(MODE_DIR)/Objects/IntCameraParameter.d JavaCameraLib/$(MODE_DIR)/Objects/Error.d \
-	 JavaCameraLib/$(MODE_DIR)/Objects/ErrorBase.d JavaCameraLib/$(MODE_DIR)/Objects/Task.d JavaCameraLib/$(MODE_DIR)/Objects/Timer.d \
-	 JavaCameraLib/$(MODE_DIR)/Objects/Synchronized.d JavaCameraLib/$(MODE_DIR)/Objects/Utility.d
--include $(DEP_FILES)
-
-
-
--include $(PRJ_ROOT_DIR)/*.makefile
-
--include *.makefile
-
-main_all : external_build $(PROJECT_TARGETS)
-	@echo "make: built targets of `pwd`"
-
-# entry point for extending the build
-external_build ::
-	@echo ""
-
-# main entry point for pre processing prior to the build
-pre_build :: $(PRE_BUILD_STEP) generate_sources
-	@echo ""
-
-# entry point for generating sources prior to the build
-generate_sources ::
-	@echo ""
-
-# main entry point for post processing after the build
-post_build :: $(POST_BUILD_STEP) deploy_output
-	@echo ""
-
-# entry point for deploying output after the build
-deploy_output ::
-	@echo ""
-
-clean :: external_clean $(CLEAN_STEP) _clean
-
-# entry point for extending the build clean
-external_clean ::
-	@echo ""
diff --git a/aos/externals/WPILib/WPILib/PWM.cpp b/aos/externals/WPILib/WPILib/PWM.cpp
deleted file mode 100644
index a95489b..0000000
--- a/aos/externals/WPILib/WPILib/PWM.cpp
+++ /dev/null
@@ -1,404 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "PWM.h"
-
-#include "DigitalModule.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Resource.h"
-#include "Utility.h"
-#include "WPIErrors.h"
-
-constexpr float PWM::kDefaultPwmPeriod;
-constexpr float PWM::kDefaultPwmCenter;
-const int32_t PWM::kDefaultPwmStepsDown;
-const int32_t PWM::kPwmDisabled;
-static Resource *allocated = NULL;
-
-/**
- * Initialize PWMs given an module and channel.
- * 
- * This method is private and is the common path for all the constructors for creating PWM
- * instances. Checks module and channel value ranges and allocates the appropriate channel.
- * The allocation is only done to help users ensure that they don't double assign channels.
- */
-void PWM::InitPWM(uint8_t moduleNumber, uint32_t channel)
-{
-	m_table = NULL;
-	char buf[64];
-	Resource::CreateResourceObject(&allocated, tDIO::kNumSystems * kPwmChannels);
-	if (!CheckPWMModule(moduleNumber))
-	{
-		snprintf(buf, 64, "Digital Module %d", moduleNumber);
-		wpi_setWPIErrorWithContext(ModuleIndexOutOfRange, buf);
-		return;
-	}
-	if (!CheckPWMChannel(channel))
-	{
-		snprintf(buf, 64, "PWM Channel %d", channel);
-		wpi_setWPIErrorWithContext(ChannelIndexOutOfRange, buf);
-		return;
-	}
-
-	snprintf(buf, 64, "PWM %d (Module: %d)", channel, moduleNumber);
-	if (allocated->Allocate((moduleNumber - 1) * kPwmChannels + channel - 1,
-                          buf, this) == ~0ul)
-	{
-		return;
-	}
-	m_channel = channel;
-	m_module = DigitalModule::GetInstance(moduleNumber);
-	m_module->SetPWM(m_channel, kPwmDisabled);
-	m_eliminateDeadband = false;
-
-	nUsageReporting::report(nUsageReporting::kResourceType_PWM, channel, moduleNumber - 1);
-}
-
-/**
- * Allocate a PWM given a module and channel.
- * Allocate a PWM using a module and channel number.
- * 
- * @param moduleNumber The digital module (1 or 2).
- * @param channel The PWM channel on the digital module (1..10).
- */
-PWM::PWM(uint8_t moduleNumber, uint32_t channel)
-	: m_module(NULL)
-{
-	InitPWM(moduleNumber, channel);
-}
-
-/**
- * Allocate a PWM in the default module given a channel.
- * 
- * Using a default module allocate a PWM given the channel number.  The default module is the first
- * slot numerically in the cRIO chassis.
- * 
- * @param channel The PWM channel on the digital module.
- */
-PWM::PWM(uint32_t channel)
-	: m_module(NULL)
-{
-	InitPWM(GetDefaultDigitalModule(), channel);
-}
-
-/**
- * Free the PWM channel.
- * 
- * Free the resource associated with the PWM channel and set the value to 0.
- */
-PWM::~PWM()
-{
-	if (m_module)
-	{
-		m_module->SetPWM(m_channel, kPwmDisabled);
-		allocated->Free((m_module->GetNumber() - 1) * kPwmChannels + m_channel - 1,
-                    this);
-	}
-}
-
-/**
- * Optionally eliminate the deadband from a speed controller.
- * @param eliminateDeadband If true, set the motor curve on the Jaguar to eliminate
- * the deadband in the middle of the range. Otherwise, keep the full range without
- * modifying any values.
- */
-void PWM::EnableDeadbandElimination(bool eliminateDeadband)
-{
-	if (StatusIsFatal()) return;
-	m_eliminateDeadband = eliminateDeadband;
-}
-
-/**
- * Set the bounds on the PWM values.
- * This sets the bounds on the PWM values for a particular each type of controller. The values
- * determine the upper and lower speeds as well as the deadband bracket.
- * @param max The Minimum pwm value
- * @param deadbandMax The high end of the deadband range
- * @param center The center speed (off)
- * @param deadbandMin The low end of the deadband range
- * @param min The minimum pwm value
- */
-void PWM::SetBounds(int32_t max, int32_t deadbandMax, int32_t center, int32_t deadbandMin, int32_t min)
-{
-	if (StatusIsFatal()) return;
-	m_maxPwm = max;
-	m_deadbandMaxPwm = deadbandMax;
-	m_centerPwm = center;
-	m_deadbandMinPwm = deadbandMin;
-	m_minPwm = min;
-}
-
-
-/**
- * Set the bounds on the PWM pulse widths.
- * This sets the bounds on the PWM values for a particular type of controller. The values
- * determine the upper and lower speeds as well as the deadband bracket.
- * @param max The max PWM pulse width in ms
- * @param deadbandMax The high end of the deadband range pulse width in ms
- * @param center The center (off) pulse width in ms
- * @param deadbandMin The low end of the deadband pulse width in ms
- * @param min The minimum pulse width in ms
- */
-void PWM::SetBounds(double max, double deadbandMax, double center, double deadbandMin, double min)
-{
-	if (StatusIsFatal()) return;
-    
-	double loopTime = m_module->GetLoopTiming()/(kSystemClockTicksPerMicrosecond*1e3);
-			
-    m_maxPwm = (int32_t)((max-kDefaultPwmCenter)/loopTime+kDefaultPwmStepsDown-1);
-    m_deadbandMaxPwm = (int32_t)((deadbandMax-kDefaultPwmCenter)/loopTime+kDefaultPwmStepsDown-1);
-    m_centerPwm = (int32_t)((center-kDefaultPwmCenter)/loopTime+kDefaultPwmStepsDown-1);
-    m_deadbandMinPwm = (int32_t)((deadbandMin-kDefaultPwmCenter)/loopTime+kDefaultPwmStepsDown-1);
-    m_minPwm = (int32_t)((min-kDefaultPwmCenter)/loopTime+kDefaultPwmStepsDown-1);
-}
-
-uint32_t PWM::GetModuleNumber()
-{
-	return m_module->GetNumber();
-}
-
-/**
- * Set the PWM value based on a position.
- * 
- * This is intended to be used by servos.
- * 
- * @pre SetMaxPositivePwm() called.
- * @pre SetMinNegativePwm() called.
- * 
- * @param pos The position to set the servo between 0.0 and 1.0.
- */
-void PWM::SetPosition(float pos)
-{
-	if (StatusIsFatal()) return;
-	if (pos < 0.0)
-	{
-		pos = 0.0;
-	}
-	else if (pos > 1.0)
-	{
-		pos = 1.0;
-	}
-
-	int32_t rawValue;
-	// note, need to perform the multiplication below as floating point before converting to int
-	rawValue = (int32_t)( (pos * (float) GetFullRangeScaleFactor()) + GetMinNegativePwm());
-
-	wpi_assert((rawValue >= GetMinNegativePwm()) && (rawValue <= GetMaxPositivePwm()));
-	wpi_assert(rawValue != kPwmDisabled);
-
-	// send the computed pwm value to the FPGA
-	SetRaw((uint8_t)rawValue);
-}
-
-/**
- * Get the PWM value in terms of a position.
- * 
- * This is intended to be used by servos.
- * 
- * @pre SetMaxPositivePwm() called.
- * @pre SetMinNegativePwm() called.
- * 
- * @return The position the servo is set to between 0.0 and 1.0.
- */
-float PWM::GetPosition()
-{
-	if (StatusIsFatal()) return 0.0;
-	int32_t value = GetRaw();
-	if (value < GetMinNegativePwm())
-	{
-		return 0.0;
-	}
-	else if (value > GetMaxPositivePwm())
-	{
-		return 1.0;
-	}
-	else
-	{
-		return (float)(value - GetMinNegativePwm()) / (float)GetFullRangeScaleFactor();
-	}
-}
-
-/**
- * Set the PWM value based on a speed.
- * 
- * This is intended to be used by speed controllers.
- * 
- * @pre SetMaxPositivePwm() called.
- * @pre SetMinPositivePwm() called.
- * @pre SetCenterPwm() called.
- * @pre SetMaxNegativePwm() called.
- * @pre SetMinNegativePwm() called.
- * 
- * @param speed The speed to set the speed controller between -1.0 and 1.0.
- */
-void PWM::SetSpeed(float speed)
-{
-	if (StatusIsFatal()) return;
-	// clamp speed to be in the range 1.0 >= speed >= -1.0
-	if (speed < -1.0)
-	{
-		speed = -1.0;
-	}
-	else if (speed > 1.0)
-	{
-		speed = 1.0;
-	}
-
-	// calculate the desired output pwm value by scaling the speed appropriately
-	int32_t rawValue;
-	if (speed == 0.0)
-	{
-		rawValue = GetCenterPwm();
-	}
-	else if (speed > 0.0)
-	{
-		rawValue = (int32_t)(speed * ((float)GetPositiveScaleFactor()) +
-									((float) GetMinPositivePwm()) + 0.5);
-	}
-	else
-	{
-		rawValue = (int32_t)(speed * ((float)GetNegativeScaleFactor()) +
-									((float) GetMaxNegativePwm()) + 0.5);
-	}
-
-	// the above should result in a pwm_value in the valid range
-	wpi_assert((rawValue >= GetMinNegativePwm()) && (rawValue <= GetMaxPositivePwm()));
-	wpi_assert(rawValue != kPwmDisabled);
-
-	// send the computed pwm value to the FPGA
-	SetRaw((uint8_t)rawValue);
-}
-
-/**
- * Get the PWM value in terms of speed.
- * 
- * This is intended to be used by speed controllers.
- * 
- * @pre SetMaxPositivePwm() called.
- * @pre SetMinPositivePwm() called.
- * @pre SetMaxNegativePwm() called.
- * @pre SetMinNegativePwm() called.
- * 
- * @return The most recently set speed between -1.0 and 1.0.
- */
-float PWM::GetSpeed()
-{
-	if (StatusIsFatal()) return 0.0;
-	int32_t value = GetRaw();
-	if (value == PWM::kPwmDisabled)
-	{
-		return 0.0;
-	}
-	else if (value > GetMaxPositivePwm())
-	{
-		return 1.0;
-	}
-	else if (value < GetMinNegativePwm())
-	{
-		return -1.0;
-	}
-	else if (value > GetMinPositivePwm())
-	{
-		return (float)(value - GetMinPositivePwm()) / (float)GetPositiveScaleFactor();
-	}
-	else if (value < GetMaxNegativePwm())
-	{
-		return (float)(value - GetMaxNegativePwm()) / (float)GetNegativeScaleFactor();
-	}
-	else
-	{
-		return 0.0;
-	}
-}
-
-/**
- * Set the PWM value directly to the hardware.
- * 
- * Write a raw value to a PWM channel.
- * 
- * @param value Raw PWM value.  Range 0 - 255.
- */
-void PWM::SetRaw(uint8_t value)
-{
-	if (StatusIsFatal()) return;
-	m_module->SetPWM(m_channel, value);
-}
-
-/**
- * Get the PWM value directly from the hardware.
- * 
- * Read a raw value from a PWM channel.
- * 
- * @return Raw PWM control value.  Range: 0 - 255.
- */
-uint8_t PWM::GetRaw()
-{
-	if (StatusIsFatal()) return 0;
-	return m_module->GetPWM(m_channel);
-}
-
-/**
- * Slow down the PWM signal for old devices.
- * 
- * @param mult The period multiplier to apply to this channel
- */
-void PWM::SetPeriodMultiplier(PeriodMultiplier mult)
-{
-	if (StatusIsFatal()) return;
-	switch(mult)
-	{
-	case kPeriodMultiplier_4X:
-		m_module->SetPWMPeriodScale(m_channel, 3); // Squelch 3 out of 4 outputs
-		break;
-	case kPeriodMultiplier_2X:
-		m_module->SetPWMPeriodScale(m_channel, 1); // Squelch 1 out of 2 outputs
-		break;
-	case kPeriodMultiplier_1X:
-		m_module->SetPWMPeriodScale(m_channel, 0); // Don't squelch any outputs
-		break;
-	default:
-		wpi_assert(false);
-	}
-}
-
-
-void PWM::ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew) {
-	SetSpeed(value.f);
-}
-
-void PWM::UpdateTable() {
-	if (m_table != NULL) {
-		m_table->PutNumber("Value", GetSpeed());
-	}
-}
-
-void PWM::StartLiveWindowMode() {
-	SetSpeed(0);
-	if (m_table != NULL) {
-		m_table->AddTableListener("Value", this, true);
-	}
-}
-
-void PWM::StopLiveWindowMode() {
-	SetSpeed(0);
-	if (m_table != NULL) {
-		m_table->RemoveTableListener(this);
-	}
-}
-
-std::string PWM::GetSmartDashboardType() {
-	return "Speed Controller";
-}
-
-void PWM::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * PWM::GetTable() {
-	return m_table;
-}
-
diff --git a/aos/externals/WPILib/WPILib/PWM.h b/aos/externals/WPILib/WPILib/PWM.h
deleted file mode 100644
index d497ed2..0000000
--- a/aos/externals/WPILib/WPILib/PWM.h
+++ /dev/null
@@ -1,114 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef PWM_H_
-#define PWM_H_
-
-#include "SensorBase.h"
-#include "LiveWindow/LiveWindowSendable.h"
-#include "tables/ITableListener.h"
-
-class DigitalModule;
-
-/**
- * Class implements the PWM generation in the FPGA.
- * 
- * The values supplied as arguments for PWM outputs range from -1.0 to 1.0. They are mapped
- * to the hardware dependent values, in this case 0-255 for the FPGA.
- * Changes are immediately sent to the FPGA, and the update occurs at the next
- * FPGA cycle. There is no delay.
- * 
- * As of revision 0.1.10 of the FPGA, the FPGA interprets the 0-255 values as follows:
- *   - 255 = full "forward"
- *   - 254 to 129 = linear scaling from "full forward" to "center"
- *   - 128 = center value
- *   - 127 to 2 = linear scaling from "center" to "full reverse"
- *   - 1 = full "reverse"
- *   - 0 = disabled (i.e. PWM output is held low)
- */
-class PWM : public SensorBase, public ITableListener, public LiveWindowSendable
-{
-	friend class DigitalModule;
-public:
-	typedef enum {kPeriodMultiplier_1X = 1, kPeriodMultiplier_2X = 2, kPeriodMultiplier_4X = 4} PeriodMultiplier;
-
-	explicit PWM(uint32_t channel);
-	PWM(uint8_t moduleNumber, uint32_t channel);
-	virtual ~PWM();
-	virtual void SetRaw(uint8_t value);
-	virtual uint8_t GetRaw();
-	void SetPeriodMultiplier(PeriodMultiplier mult);
-	void EnableDeadbandElimination(bool eliminateDeadband);
-	void SetBounds(int32_t max, int32_t deadbandMax, int32_t center, int32_t deadbandMin, int32_t min);
-	void SetBounds(double max, double deadbandMax, double center, double deadbandMin, double min);
-	uint32_t GetChannel() {return m_channel;}
-	uint32_t GetModuleNumber();
-
-protected:
-    /**
-     * kDefaultPwmPeriod is in ms
-     *
-     * - 20ms periods (50 Hz) are the "safest" setting in that this works for all devices
-     * - 20ms periods seem to be desirable for Vex Motors
-     * - 20ms periods are the specified period for HS-322HD servos, but work reliably down
-     *      to 10.0 ms; starting at about 8.5ms, the servo sometimes hums and get hot;
-     *      by 5.0ms the hum is nearly continuous
-     * - 10ms periods work well for Victor 884
-     * - 5ms periods allows higher update rates for Luminary Micro Jaguar speed controllers.
-     *      Due to the shipping firmware on the Jaguar, we can't run the update period less
-     *      than 5.05 ms.
-     *
-     * kDefaultPwmPeriod is the 1x period (5.05 ms).  In hardware, the period scaling is implemented as an
-     * output squelch to get longer periods for old devices.
-     */
-    static constexpr float kDefaultPwmPeriod = 5.05;
-    /**
-     * kDefaultPwmCenter is the PWM range center in ms
-     */
-    static constexpr float kDefaultPwmCenter = 1.5;
-    /**
-     * kDefaultPWMStepsDown is the number of PWM steps below the centerpoint
-     */
-    static const int32_t kDefaultPwmStepsDown = 128;
-	static const int32_t kPwmDisabled = 0;
-
-	virtual void SetPosition(float pos);
-	virtual float GetPosition();
-	virtual void SetSpeed(float speed);
-	virtual float GetSpeed();
-
-	bool m_eliminateDeadband;
-	int32_t m_maxPwm;
-	int32_t m_deadbandMaxPwm;
-	int32_t m_centerPwm;
-	int32_t m_deadbandMinPwm;
-	int32_t m_minPwm;
-	
-	void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-	
-	ITable *m_table;
-
-private:
-	void InitPWM(uint8_t moduleNumber, uint32_t channel);
-	uint32_t m_channel;
-	DigitalModule *m_module;
-	int32_t GetMaxPositivePwm() { return m_maxPwm; };
-	int32_t GetMinPositivePwm() { return m_eliminateDeadband ? m_deadbandMaxPwm : m_centerPwm + 1; };
-	int32_t GetCenterPwm() { return m_centerPwm; };
-	int32_t GetMaxNegativePwm() { return m_eliminateDeadband ? m_deadbandMinPwm : m_centerPwm - 1; };
-	int32_t GetMinNegativePwm() { return m_minPwm; };
-	int32_t GetPositiveScaleFactor() {return GetMaxPositivePwm() - GetMinPositivePwm();} ///< The scale for positive speeds.
-	int32_t GetNegativeScaleFactor() {return GetMaxNegativePwm() - GetMinNegativePwm();} ///< The scale for negative speeds.
-	int32_t GetFullRangeScaleFactor() {return GetMaxPositivePwm() - GetMinNegativePwm();} ///< The scale for positions.
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Preferences.cpp b/aos/externals/WPILib/WPILib/Preferences.cpp
deleted file mode 100644
index 9517a05..0000000
--- a/aos/externals/WPILib/WPILib/Preferences.cpp
+++ /dev/null
@@ -1,620 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Preferences.h"
-
-#include "NetworkCommunication/UsageReporting.h"
-#include "Synchronized.h"
-#include "WPIErrors.h"
-
-#include <stdio.h>
-#include <algorithm>
-
-/** Private NI function needed to write to the VxWorks target */
-extern "C" int Priv_SetWriteFileAllowed(uint32_t enable); 
-
-/** The Preferences table name */
-static const char *kTableName = "Preferences";
-/** The value of the save field */
-static const char *kSaveField = "~S A V E~";
-/** The file to save to */
-static const char *kFileName = "/c/wpilib-preferences.ini";
-/** The characters to put between a field and value */
-static const char *kValuePrefix = "=\"";
-/** The characters to put after the value */
-static const char *kValueSuffix = "\"\n";
-/** The singleton instance */
-Preferences *Preferences::_instance = NULL;
-
-Preferences::Preferences() :
-	m_fileLock(NULL),
-	m_fileOpStarted(NULL),
-	m_tableLock(NULL),
-	m_readTask("PreferencesReadTask", (FUNCPTR)Preferences::InitReadTask),
-	m_writeTask("PreferencesWriteTask", (FUNCPTR)Preferences::InitWriteTask)
-{
-	m_fileLock = semMCreate(SEM_Q_PRIORITY | SEM_INVERSION_SAFE | SEM_DELETE_SAFE);
-	m_fileOpStarted = semBCreate (SEM_Q_PRIORITY, SEM_EMPTY);
-	m_tableLock = semMCreate(SEM_Q_PRIORITY | SEM_INVERSION_SAFE | SEM_DELETE_SAFE);
-
-	Synchronized sync(m_fileLock);
-	m_readTask.Start((uint32_t)this);
-	semTake(m_fileOpStarted, WAIT_FOREVER);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_Preferences, 0);
-}
-
-Preferences::~Preferences()
-{
-	semTake(m_tableLock, WAIT_FOREVER);
-	semDelete(m_tableLock);
-	semTake(m_fileLock, WAIT_FOREVER);
-	semDelete(m_fileOpStarted);
-	semDelete(m_fileLock);
-}
-
-/**
- * Get the one and only {@link Preferences} object
- * @return pointer to the {@link Preferences}
- */
-Preferences *Preferences::GetInstance()
-{
-	if (_instance == NULL)
-		_instance = new Preferences;
-	return _instance;
-}
-
-/**
- * Returns a vector of all the keys
- * @return a vector of the keys
- */
-std::vector<std::string> Preferences::GetKeys()
-{
-	return m_keys;
-}
-
-/**
- * Returns the string at the given key.  If this table does not have a value
- * for that position, then the given defaultValue will be returned.
- * @param key the key
- * @param defaultValue the value to return if none exists in the table
- * @return either the value in the table, or the defaultValue
- */
-std::string Preferences::GetString(const char *key, const char *defaultValue)
-{
-	std::string value = Get(key);
-	return value.empty() ? defaultValue : value;
-}
-
-/**
- * Returns the string at the given key.  If this table does not have a value
- * for that position, then the given defaultValue will be returned.
- * @param key the key
- * @param value the buffer to copy the value into
- * @param valueSize the size of value
- * @param defaultValue the value to return if none exists in the table
- * @return The size of the returned string
- */
-int Preferences::GetString(const char *key, char *value, int valueSize, const char *defaultValue)
-{
-	std::string stringValue = GetString(key, defaultValue);
-	stringValue.copy(value, valueSize);
-	return stringValue.size();
-}
-
-/**
- * Returns the int at the given key.  If this table does not have a value
- * for that position, then the given defaultValue value will be returned.
- * @param key the key
- * @param defaultValue the value to return if none exists in the table
- * @return either the value in the table, or the defaultValue
- */
-int Preferences::GetInt(const char *key, int defaultValue)
-{
-	std::string value = Get(key);
-	if (value.empty())
-		return defaultValue;
-
-	return strtol(value.c_str(), NULL, 0);
-}
-
-/**
- * Returns the double at the given key.  If this table does not have a value
- * for that position, then the given defaultValue value will be returned.
- * @param key the key
- * @param defaultValue the value to return if none exists in the table
- * @return either the value in the table, or the defaultValue
- */
-double Preferences::GetDouble(const char *key, double defaultValue)
-{
-	std::string value = Get(key);
-	if (value.empty())
-		return defaultValue;
-
-	return strtod(value.c_str(), NULL);
-}
-
-/**
- * Returns the float at the given key.  If this table does not have a value
- * for that position, then the given defaultValue value will be returned.
- * @param key the key
- * @param defaultValue the value to return if none exists in the table
- * @return either the value in the table, or the defaultValue
- */
-float Preferences::GetFloat(const char *key, float defaultValue)
-{
-	std::string value = Get(key);
-	if (value.empty())
-		return defaultValue;
-
-	return strtod(value.c_str(), NULL);
-}
-
-/**
- * Returns the boolean at the given key.  If this table does not have a value
- * for that position, then the given defaultValue value will be returned.
- * @param key the key
- * @param defaultValue the value to return if none exists in the table
- * @return either the value in the table, or the defaultValue
- */
-bool Preferences::GetBoolean(const char *key, bool defaultValue)
-{
-	std::string value = Get(key);
-	if (value.empty())
-		return defaultValue;
-
-	if (value.compare("true") == 0)
-		return true;
-	else if (value.compare("false") == 0)
-		return false;
-
-	wpi_setWPIErrorWithContext(ParameterOutOfRange, "Boolean value does not contain \"true\" or \"false\"");
-	return false;
-}
-
-/**
- * Returns the long (INT64) at the given key.  If this table does not have a value
- * for that position, then the given defaultValue value will be returned.
- * @param key the key
- * @param defaultValue the value to return if none exists in the table
- * @return either the value in the table, or the defaultValue
- */
-INT64 Preferences::GetLong(const char *key, INT64 defaultValue)
-{
-	std::string value = Get(key);
-	if (value.empty())
-		return defaultValue;
-
-	// Ummm... not available in our VxWorks...
-	//return strtoll(value.c_str(), NULL, 0);
-	INT64 intVal;
-	sscanf(value.c_str(), "%lld", &intVal);
-	return intVal;
-}
-
-/**
- * Puts the given string into the preferences table.
- *
- * <p>The value may not have quotation marks, nor may the key
- * have any whitespace nor an equals sign</p>
- *
- * <p>This will <b>NOT</b> save the value to memory between power cycles,
- * to do that you must call {@link Preferences#Save() Save()} (which must be used with care).
- * at some point after calling this.</p>
- * @param key the key
- * @param value the value
- */
-void Preferences::PutString(const char *key, const char *value)
-{
-	if (value == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "value");
-		return;
-	}
-	if (std::string(value).find_first_of("\"") != std::string::npos)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "value contains illegal characters");
-		return;
-	}
-	Put(key, value);
-}
-
-/**
- * Puts the given int into the preferences table.
- *
- * <p>The key may not have any whitespace nor an equals sign</p>
- *
- * <p>This will <b>NOT</b> save the value to memory between power cycles,
- * to do that you must call {@link Preferences#Save() Save()} (which must be used with care)
- * at some point after calling this.</p>
- * @param key the key
- * @param value the value
- */
-void Preferences::PutInt(const char *key, int value)
-{
-	char buf[32];
-	snprintf(buf, 32, "%d", value);
-	Put(key, buf);
-}
-
-/**
- * Puts the given double into the preferences table.
- *
- * <p>The key may not have any whitespace nor an equals sign</p>
- *
- * <p>This will <b>NOT</b> save the value to memory between power cycles,
- * to do that you must call {@link Preferences#Save() Save()} (which must be used with care)
- * at some point after calling this.</p>
- * @param key the key
- * @param value the value
- */
-void Preferences::PutDouble(const char *key, double value)
-{
-	char buf[32];
-	snprintf(buf, 32, "%f", value);
-	Put(key, buf);
-}
-
-/**
- * Puts the given float into the preferences table.
- *
- * <p>The key may not have any whitespace nor an equals sign</p>
- *
- * <p>This will <b>NOT</b> save the value to memory between power cycles,
- * to do that you must call {@link Preferences#Save() Save()} (which must be used with care)
- * at some point after calling this.</p>
- * @param key the key
- * @param value the value
- */
-void Preferences::PutFloat(const char *key, float value)
-{
-	char buf[32];
-	snprintf(buf, 32, "%f", value);
-	Put(key, buf);
-}
-
-/**
- * Puts the given boolean into the preferences table.
- *
- * <p>The key may not have any whitespace nor an equals sign</p>
- *
- * <p>This will <b>NOT</b> save the value to memory between power cycles,
- * to do that you must call {@link Preferences#Save() Save()} (which must be used with care)
- * at some point after calling this.</p>
- * @param key the key
- * @param value the value
- */
-void Preferences::PutBoolean(const char *key, bool value)
-{
-	Put(key, value ? "true" : "false");
-}
-
-/**
- * Puts the given long (INT64) into the preferences table.
- *
- * <p>The key may not have any whitespace nor an equals sign</p>
- *
- * <p>This will <b>NOT</b> save the value to memory between power cycles,
- * to do that you must call {@link Preferences#Save() Save()} (which must be used with care)
- * at some point after calling this.</p>
- * @param key the key
- * @param value the value
- */
-void Preferences::PutLong(const char *key, INT64 value)
-{
-	char buf[32];
-	snprintf(buf, 32, "%lld", value);
-	Put(key, buf);
-}
-
-/**
- * Saves the preferences to a file on the cRIO.
- *
- * <p>This should <b>NOT</b> be called often.
- * Too many writes can damage the cRIO's flash memory.
- * While it is ok to save once or twice a match, this should never
- * be called every run of {@link IterativeRobot#TeleopPeriodic()}, etc.</p>
- *
- * <p>The actual writing of the file is done in a separate thread.
- * However, any call to a get or put method will wait until the table is fully saved before continuing.</p>
- */
-void Preferences::Save()
-{
-	Synchronized sync(m_fileLock);
-	m_writeTask.Start((uint32_t)this);
-	semTake(m_fileOpStarted, WAIT_FOREVER);
-}
-
-/**
- * Returns whether or not there is a key with the given name.
- * @param key the key
- * @return if there is a value at the given key
- */
-bool Preferences::ContainsKey(const char *key)
-{
-	return !Get(key).empty();
-}
-
-/**
- * Remove a preference
- * @param key the key
- */
-void Preferences::Remove(const char *key)
-{
-	m_values.erase(std::string(key));
-	std::vector<std::string>::iterator it = m_keys.begin();
-	for (; it != m_keys.end(); it++)
-	{
-		if (it->compare(key) == 0)
-		{
-			m_keys.erase(it);
-			break;
-		}
-	}
-}
-
-/**
- * Returns the value at the given key.
- * @param key the key
- * @return the value (or empty if none exists)
- */
-std::string Preferences::Get(const char *key)
-{
-	Synchronized sync(m_tableLock);
-	if (key == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "key");
-		return std::string("");
-	}
-	return m_values[std::string(key)];
-}
-
-/**
- * Puts the given value into the given key position
- * @param key the key
- * @param value the value
- */
-void Preferences::Put(const char *key, std::string value)
-{
-	Synchronized sync(m_tableLock);
-	if (key == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "key");
-		return;
-	}
-
-	if (std::string(key).find_first_of("=\n\r \t\"") != std::string::npos)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "key contains illegal characters");
-		return;
-	}
-
-	std::pair<StringMap::iterator, bool> ret =
-		m_values.insert(StringMap::value_type(key, value));
-	if (ret.second)
-		m_keys.push_back(key);
-	else
-		ret.first->second = value;
-
-	NetworkTable::GetTable(kTableName)->PutString(key, value);
-}
-
-/**
- * The internal method to read from a file.
- * This will be called in its own thread when the preferences singleton is
- * first created.
- */
-void Preferences::ReadTaskRun()
-{
-	Synchronized sync(m_tableLock);
-	semGive(m_fileOpStarted);
-
-	std::string comment;
-
-	FILE *file = NULL;
-	file = fopen(kFileName, "r");
-
-	if (file != NULL)
-	{
-		std::string buffer;
-		while (true)
-		{
-			char value;
-			do
-			{
-				value = fgetc(file);
-			} while (value == ' ' || value == '\t');
-			
-			if (value == '\n' || value == ';')
-			{
-				if (value == '\n')
-				{
-					comment += "\n";
-				}
-				else
-				{
-					buffer.clear();
-					for (; value != '\n' && !feof(file); value = fgetc(file))
-						buffer += value;
-					buffer += '\n';
-					comment += buffer;
-				}
-			}
-			else if (value == '[')
-			{
-				// Find the end of the section and the new line after it and throw it away
-				for (; value != ']' && !feof(file); value = fgetc(file));
-				for (; value != '\n' && !feof(file); value = fgetc(file));
-			}
-			else
-			{
-				buffer.clear();
-				for (; value != '=' && !feof(file); )
-				{
-					buffer += value;
-					do
-					{
-						value = fgetc(file);
-					} while (value == ' ' || value == '\t');
-				}
-				std::string name = buffer;
-				buffer.clear();
-
-				bool shouldBreak = false;
-
-				do
-				{
-					value = fgetc(file);
-				} while (value == ' ' || value == '\t');
-
-				if (value == '"')
-				{
-					for (value = fgetc(file); value != '"' && !feof(file); value = fgetc(file))
-						buffer += value;
-
-					// Clear the line
-					while (fgetc(file) != '\n' && !feof(file));
-				}
-				else
-				{
-					for (; value != '\n' && !feof(file);)
-					{
-						buffer += value;
-						do
-						{
-							value = fgetc(file);
-						} while (value == ' ' || value == '\t');
-					}
-					if (feof(file))
-						shouldBreak = true;
-				}
-
-				std::string value = buffer;
-
-				if (!name.empty() && !value.empty())
-				{
-					m_keys.push_back(name);
-					m_values.insert(std::pair<std::string, std::string>(name, value));
-					NetworkTable::GetTable(kTableName)->PutString(name, value);
-
-					if (!comment.empty())
-					{
-						m_comments.insert(std::pair<std::string, std::string>(name, comment));
-						comment.clear();
-					}
-				}
-
-				if (shouldBreak)
-					break;
-			}
-		}
-	}
-	else
-	{
-		wpi_setWPIErrorWithContext(NoAvailableResources, "Failed to open preferences file.");
-	}
-
-	if (file != NULL)
-		fclose(file);
-
-	if (!comment.empty())
-		m_endComment = comment;
-	
-	NetworkTable::GetTable(kTableName)->PutBoolean(kSaveField, false);
-	NetworkTable::GetTable(kTableName)->AddTableListener(this);
-}
-
-/**
- * Internal method that actually writes the table to a file.
- * This is called in its own thread when {@link Preferences#Save() Save()} is called.
- */
-void Preferences::WriteTaskRun()
-{
-	Synchronized sync(m_tableLock);
-	semGive(m_fileOpStarted);
-
-	FILE *file = NULL;
-	Priv_SetWriteFileAllowed(1);
-	file = fopen(kFileName, "w");
-
-	fputs("[Preferences]\n", file);
-	std::vector<std::string>::iterator it = m_keys.begin();
-	for (; it != m_keys.end(); it++)
-	{
-		std::string key = *it;
-		std::string value = m_values[key];
-		std::string comment = m_comments[key];
-
-		if (!comment.empty())
-			fputs(comment.c_str(), file);
-
-		fputs(key.c_str(), file);
-		fputs(kValuePrefix, file);
-		fputs(value.c_str(), file);
-		fputs(kValueSuffix, file);
-	}
-
-	if (!m_endComment.empty())
-		fputs(m_endComment.c_str(), file);
-
-	if (file != NULL)
-		fclose(file);
-
-	NetworkTable::GetTable(kTableName)->PutBoolean(kSaveField, false);
-}
-
-static bool isKeyAcceptable(const std::string& value) {
-    for (unsigned int i = 0; i < value.length(); i++) {
-        char letter = value.at(i);
-        switch (letter) {
-            case '=':
-            case '\n':
-            case '\r':
-            case ' ':
-            case '\t':
-            	return false;
-        }
-    }
-    return true;
-}
-void Preferences::ValueChanged(ITable* table, const std::string& key, EntryValue value, bool isNew)
-{
-	if (key==kSaveField)
-	{
-		if (table->GetBoolean(kSaveField, false))
-			Save();
-	}
-	else
-	{
-		Synchronized sync(m_tableLock);
-
-		if (!isKeyAcceptable(key) || table->GetString(key, "").find('"')!=std::string::npos)
-		{
-			if(m_values.find(key) != m_values.end()){
-				m_values.erase(key);
-				std::vector<std::string>::iterator it = m_keys.begin();
-				for (; it != m_keys.end(); it++)
-				{
-					if (key==*it)
-					{
-						m_keys.erase(it);
-						break;
-					}
-				}
-				table->PutString(key, "\"");
-			}
-		}
-		else
-		{
-			std::pair<StringMap::iterator, bool> ret =
-				m_values.insert(StringMap::value_type(key, table->GetString(key, "")));
-			if (ret.second)
-				m_keys.push_back(key);
-			else
-				ret.first->second = table->GetString(key, "");
-		}
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/Preferences.h b/aos/externals/WPILib/WPILib/Preferences.h
deleted file mode 100644
index 7aae2e4..0000000
--- a/aos/externals/WPILib/WPILib/Preferences.h
+++ /dev/null
@@ -1,94 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __PREFERENCES_H__
-#define __PREFERENCES_H__
-
-#include "ErrorBase.h"
-#include "Task.h"
-#include <map>
-#include <semLib.h>
-#include <string>
-#include <vector>
-#include "tables/ITableListener.h"
-#include "networktables/NetworkTable.h"
-
-/**
- * The preferences class provides a relatively simple way to save important values to
- * the cRIO to access the next time the cRIO is booted.
- *
- * <p>This class loads and saves from a file
- * inside the cRIO.  The user can not access the file directly, but may modify values at specific
- * fields which will then be saved to the file when {@link Preferences#Save() Save()} is called.</p>
- *
- * <p>This class is thread safe.</p>
- *
- * <p>This will also interact with {@link NetworkTable} by creating a table called "Preferences" with all the
- * key-value pairs.  To save using {@link NetworkTable}, simply set the boolean at position "~S A V E~" to true.
- * Also, if the value of any variable is " in the {@link NetworkTable}, then that represents non-existence in the
- * {@link Preferences} table</p>
- */
-class Preferences : public ErrorBase, public ITableListener
-{
-public:
-	static Preferences *GetInstance();
-
-	std::vector<std::string> GetKeys();
-	std::string GetString(const char *key, const char *defaultValue = "");
-	int GetString(const char *key, char *value, int valueSize, const char *defaultValue = "");
-	int GetInt(const char *key, int defaultValue = 0);
-	double GetDouble(const char *key, double defaultValue = 0.0);
-	float GetFloat(const char *key, float defaultValue = 0.0);
-	bool GetBoolean(const char *key, bool defaultValue = false);
-	INT64 GetLong(const char *key, INT64 defaultValue = 0);
-	void PutString(const char *key, const char *value);
-	void PutInt(const char *key, int value);
-	void PutDouble(const char *key, double value);
-	void PutFloat(const char *key, float value);
-	void PutBoolean(const char *key, bool value);
-	void PutLong(const char *key, INT64 value);
-	void Save();
-	bool ContainsKey(const char *key);
-	void Remove(const char *key);
-	
-	void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-
-protected:
-	Preferences();
-	virtual ~Preferences();
-
-private:
-	std::string Get(const char *key);
-	void Put(const char *key, std::string value);
-
-	void ReadTaskRun();
-	void WriteTaskRun();
-
-	static int InitReadTask(Preferences *obj) {obj->ReadTaskRun();return 0;}
-	static int InitWriteTask(Preferences *obj) {obj->WriteTaskRun();return 0;}
-
-	static Preferences *_instance;
-
-	/** The semaphore for accessing the file */
-	SEM_ID m_fileLock;
-	/** The semaphore for beginning reads and writes to the file */
-	SEM_ID m_fileOpStarted;
-	/** The semaphore for reading from the table */
-	SEM_ID m_tableLock;
-	typedef std::map<std::string, std::string> StringMap;
-	/** The actual values (String->String) */
-	StringMap m_values;
-	/** The keys in the order they were read from the file */
-	std::vector<std::string> m_keys;
-	/** The comments that were in the file sorted by which key they appeared over (String->Comment) */
-	StringMap m_comments;
-	/** The comment at the end of the file */
-	std::string m_endComment;
-	Task m_readTask;
-	Task m_writeTask;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/RWLock.cpp b/aos/externals/WPILib/WPILib/RWLock.cpp
deleted file mode 100644
index 16b77de..0000000
--- a/aos/externals/WPILib/WPILib/RWLock.cpp
+++ /dev/null
@@ -1,322 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.                             */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include <taskLib.h>
-#include <intLib.h>
-#include <assert.h>
-#include <tickLib.h>
-
-#include "RWLock.h"
-
-// A wrapper for assert that allows it to be easily turned off just in this
-// file. That configuration is recommended for normal use because it means less
-// code that gets executed with the scheduler locked.
-#if 1
-#define rwlock_assert(expression) assert(expression)
-// A macro to easily assert that some expression (possibly with side effects)
-// is 0.
-#define rwlock_assert_success(expression) do { \
-  int ret = (expression); \
-  assert(ret == 0); \
-} while (false)
-#else
-#define rwlock_assert(expression) ((void)0)
-#define rwlock_assert_success(expression) ((void)(expression))
-#endif
-
-/**
- * Class that locks the scheduler and then unlocks it in the destructor.
- */
-class TaskSchedulerLocker {
- public:
-  TaskSchedulerLocker() {
-    rwlock_assert_success(taskLock());
-  }
-  ~TaskSchedulerLocker() {
-    rwlock_assert_success(taskUnlock());
-  }
-
- private:
-  DISALLOW_COPY_AND_ASSIGN(TaskSchedulerLocker);
-};
-
-RWLock::Locker::Locker(RWLock *lock, bool write)
-  : lock_(lock), num_(lock_->Lock(write)) {
-}
-
-RWLock::Locker::Locker(const Locker &other)
-  : lock_(other.lock_), num_(lock_->AddLock()) {
-}
-
-RWLock::Locker::~Locker() {
-  lock_->Unlock(num_);
-}
-
-// RWLock is implemented by just locking the scheduler while doing anything
-// because that is the only way under vxworks to do much of anything atomically.
-
-RWLock::RWLock()
-  : number_of_write_locks_(0),
-    number_of_writers_pending_(0),
-    number_of_readers_(0),
-    reader_tasks_(),
-    read_ready_(semBCreate(SEM_Q_PRIORITY, SEM_EMPTY)),
-    write_ready_(semBCreate(SEM_Q_PRIORITY, SEM_EMPTY)) {
-  rwlock_assert(read_ready_ != NULL);
-  rwlock_assert(write_ready_ != NULL);
-}
-
-RWLock::~RWLock() {
-  // Make sure that nobody else currently has a lock or will ever be able to.
-  Lock(true);
-
-  rwlock_assert_success(semDelete(read_ready_));
-  rwlock_assert_success(semDelete(write_ready_));
-}
-
-int RWLock::Lock(bool write) {
-  assert(!intContext());
-
-  int current_task = taskIdSelf();
-  // It's safe to do this check up here (outside of locking the scheduler)
-  // because we only care whether the current task is in there or not and that
-  // can't be changed because it's the task doing the checking.
-  bool current_task_holds_already = TaskOwns(current_task);
-
-  TaskSchedulerLocker scheduler_locker;
-
-  taskSafe();
-
-  // We can't be reading and writing at the same time.
-  rwlock_assert(!((number_of_write_locks_ > 0) && (number_of_readers_ > 0)));
-
-  if (write) {
-    assert(!current_task_holds_already);
-    // If somebody else already has it locked.
-    // Don't have to worry about another task getting scheduled after
-    // write_ready_ gets given because nobody else (except another writer, which
-    // would just block on it) will do anything while there are pending
-    // writer(s).
-    if ((number_of_readers_ > 0) || (number_of_write_locks_ > 0)) {
-      ++number_of_writers_pending_;
-      // Wait for it to be our turn.
-      rwlock_assert_success(semTake(write_ready_, WAIT_FOREVER));
-      --number_of_writers_pending_;
-    } else {
-      rwlock_assert(number_of_writers_pending_ == 0);
-    }
-    rwlock_assert((number_of_write_locks_ == 0) && (number_of_readers_ == 0));
-    number_of_write_locks_ = 1;
-    return 0;
-  } else {  // read
-    // While there are one or more writers active or waiting.
-    // Has to be a loop in case a writer gets scheduled between the time
-    // read_ready_ gets flushed and we run.
-    while ((number_of_write_locks_ > 0) || (number_of_writers_pending_ > 0)) {
-      // Wait for the writer(s) to finish.
-      rwlock_assert_success(semTake(read_ready_, WAIT_FOREVER));
-    }
-
-    int num = number_of_readers_;
-    number_of_readers_ = num + 1;
-    assert(num < kMaxReaders);
-    rwlock_assert(reader_tasks_[num] == 0);
-    reader_tasks_[num] = current_task;
-    rwlock_assert((number_of_write_locks_ == 0) && (number_of_readers_ > 0));
-    return num;
-  }
-}
-
-void RWLock::Unlock(int num) {
-  assert(!intContext());
-  TaskSchedulerLocker scheduler_locker;
-
-  taskUnsafe();
-
-  // We have to be reading or writing right now, but not both.
-  rwlock_assert((number_of_write_locks_ > 0) != (number_of_readers_ > 0));
-
-  if (number_of_write_locks_ > 0) {  // we're currently writing
-    rwlock_assert(num == 0);
-    --number_of_write_locks_;
-    rwlock_assert((number_of_write_locks_ >= 0) &&
-                  (number_of_writers_pending_ >= 0));
-    // If we were the last one.
-    if (number_of_write_locks_ == 0) {
-      // If there are no other tasks waiting to write (because otherwise they
-      // need to get priority over any readers).
-      if (number_of_writers_pending_ == 0) {
-        // Wake up any waiting readers.
-        rwlock_assert_success(semFlush(read_ready_));
-      } else {
-        // Wake up a waiting writer.
-        // Not a problem if somebody else already did this before the waiting
-        // writer got a chance to take it because it'll do nothing and return
-        // success.
-        rwlock_assert_success(semGive(write_ready_));
-      }
-    }
-  } else {  // we're curently reading
-    rwlock_assert(reader_tasks_[num] == taskIdSelf());
-    reader_tasks_[num] = 0;
-    --number_of_readers_;
-    rwlock_assert(number_of_readers_ >= 0 &&
-                  (number_of_writers_pending_ >= 0));
-    // If we were the last one.
-    if (number_of_readers_ == 0) {
-      // If there are any writers waiting for a chance to go.
-      if (number_of_writers_pending_ > 0) {
-        // Wake a waiting writer.
-        // Not a problem if somebody else already did this before the waiting
-        // writer got a chance to take it because it'll still return success.
-        rwlock_assert_success(semGive(write_ready_));
-      }
-    }
-  }
-}
-
-int RWLock::AddLock() {
-  assert(!intContext());
-  // TODO: Replace this with just atomically incrementing the right number once
-  // we start using a GCC new enough to have the nice atomic builtins.
-  // That will be safe because whether we're currently reading or writing can't
-  // change in the middle of this.
-  TaskSchedulerLocker scheduler_locker;
-
-  // We have to be reading or writing right now, but not both.
-  rwlock_assert((number_of_write_locks_ > 0) != (number_of_readers_ > 0));
-
-  if (number_of_write_locks_ > 0) {  // we're currently writing
-    ++number_of_write_locks_;
-    return 0;
-  } else {  // we're currently reading
-    return number_of_readers_++;
-  }
-}
-
-bool RWLock::TaskOwns(int task_id) {
-  for (size_t i = 0;
-       i < sizeof(reader_tasks_) / sizeof(reader_tasks_[0]);
-       ++i) {
-    if (reader_tasks_[i] == task_id) return true;
-  }
-  return false;
-}
-
-#include <stdint.h>
-
-#include "Task.h"
-
-namespace {
-namespace testing {
-
-// It's kind of hard to test for race conditions because (by definition) they
-// only happen with really specific (and uncommon) timing. However, what tests
-// can cover is "normal" functioning (locking/unlocking by multiple tasks).
-
-// How long to wait until "everything" will be done doing whatever it's going
-// to.
-const int kSettleTicks = 10;
-
-void SetUp() {
-}
-
-void TearDown() {
-}
-
-struct LockerConfig {
-  RWLock *const lock;
-  const bool write;
-
-  const int delay_ticks;
-
-  bool started;
-  bool locked;
-  bool done;
-  bool unlocked;
-
-  LockerConfig(RWLock *lock, bool write, int delay_ticks = kSettleTicks)
-      : lock(lock), write(write), delay_ticks(delay_ticks),
-        started(false), locked(false), done(false), unlocked(false) {}
-};
-void LockerTask(LockerConfig *config) {
-  config->started = true;
-  {
-    RWLock::Locker locker(config->lock, config->write);
-    config->locked = true;
-    taskDelay(config->delay_ticks);
-    config->done = true;
-  }
-  config->unlocked = true;
-}
-
-// A basic test to make sure that 2 readers can get to it at the same time.
-// Mostly just to make sure that the test setup etc works.
-bool TwoReaders() {
-  Task one("R1", reinterpret_cast<FUNCPTR>(LockerTask));
-  Task two("R2", reinterpret_cast<FUNCPTR>(LockerTask));
-  RWLock lock;
-
-  LockerConfig one_config(&lock, false), two_config(&lock, false);
-  one.Start(reinterpret_cast<uintptr_t>(&one_config));
-  two.Start(reinterpret_cast<uintptr_t>(&two_config));
-  while (!one_config.locked) taskDelay(1);
-  assert(!one_config.done);
-  while (!two_config.locked) taskDelay(1);
-  if (one_config.done) {
-    printf("It took too long for the second one to lock.\n");
-    return false;
-  }
-  return true;
-}
-
-// Makes sure that everything works correctly even if a task is deleted while
-// a lock is held.
-bool DeleteWhileLocked() {
-  Task reader("reader", reinterpret_cast<FUNCPTR>(LockerTask));
-  Task writer("writer", reinterpret_cast<FUNCPTR>(LockerTask));
-  static const unsigned int kDelayTicks = 15;
-  RWLock lock;
-
-  LockerConfig reader_config(&lock, false, kDelayTicks);
-  LockerConfig writer_config(&lock, true, kDelayTicks);
-
-  ULONG start = tickGet();
-  reader.Start(reinterpret_cast<uintptr_t>(&reader_config));
-  while (!reader_config.locked) taskDelay(1);
-  writer.Start(reinterpret_cast<uintptr_t>(&writer_config));
-  reader.Stop();
-  if (tickGet() - start < kDelayTicks) {
-    printf("Reader stopped too quickly.\n");
-    return false;
-  }
-
-  while (!writer_config.done) taskDelay(1);
-  if (tickGet() - start < kDelayTicks * 2) {
-    printf("Writer finished too quickly.\n");
-    return false;
-  }
-  return true;
-}
-
-#define RUN_TEST(name) do { \
-  SetUp(); \
-  bool test_succeeded = name(); \
-  TearDown(); \
-  if (!test_succeeded) successful = false; \
-} while (false)
-extern "C" int rwlock_test() {
-  bool successful = true;
-
-  RUN_TEST(TwoReaders);
-  RUN_TEST(DeleteWhileLocked);
-
-  return successful ? 0 : -1;
-}
-#undef RUN_TEST
-
-}  // namespace testing
-}  // namespace
diff --git a/aos/externals/WPILib/WPILib/RWLock.h b/aos/externals/WPILib/WPILib/RWLock.h
deleted file mode 100644
index 4ad64c8..0000000
--- a/aos/externals/WPILib/WPILib/RWLock.h
+++ /dev/null
@@ -1,127 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.                             */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef WPILIB_DATA_LOCK_H_
-#define WPILIB_DATA_LOCK_H_
-
-#include <semLib.h>
-
-#include "Base.h"
-
-/**
- * Represents a read/write lock on using some shared data so that it will not
- * be modified by any other tasks while code is using it.
- *
- * See <http://en.wikipedia.org/wiki/Readers-writer_lock> for an overview of how
- * this can be used.
- *
- * In this implementation, if there are any writers pending, then any new
- * attempts to acquire read locks will wait until all writers are done unless a
- * read lock is already held by that same task.
- *
- * While a lock is held, the task holding it can not be deleted.
- */
-class RWLock {
- public:
-  /**
-   * Represents an actual lock on the shared data. The destructor will free it.
-   *
-   * Intended to be used as an automatic (or local) variable so that the
-   * compiler will ensure that the destructor gets called no matter how the
-   * scope is exited.
-   *
-   * While it is possible to use new/delete to dynamically allocate an instance,
-   * the constructor and destructor still MUST still be called from the same
-   * task.
-   *
-   * Has a copy constructor which allows "copying" the lock that is held. Does
-   * not have an assignment operator because assigning a lock doesn't make much
-   * sense.
-   */
-  class Locker {
-   public:
-    /**
-     * @param write Whether to create a writer lock (creates a reader lock
-     * otherwise).
-     */
-    Locker(RWLock *lock, bool write);
-
-    /**
-     * Creates another lock of the same type. They can both be released
-     * (destructed) independently.
-     * NOTE: This does allow creating multiple write locks that are held at the
-     * same time.
-     */
-    Locker(const Locker &other);
-
-    /**
-     * Unlocks the lock.
-     */
-    ~Locker();
-
-   private:
-    RWLock *const lock_;
-    const int num_;
-
-    void operator=(const Locker &);
-  };
-
-  /**
-   * The maximum number of read locks that can be held at the same time.
-   */
-  static const int kMaxReaders = 64;
-
-  RWLock();
-  /**
-   * Waits until there are no more read or write locks held.
-   */
-  ~RWLock();
-
- private:
-  // The number of write locks that are currently held.
-  int number_of_write_locks_;
-  // How many tasks are currently waiting to get a write lock.
-  // Each count in here corresponds to a task that is blocked on write_ready_.
-  int number_of_writers_pending_;
-
-  // How many read locks are currently held.
-  int number_of_readers_;
-
-  // The task ID of the task holding each read lock.
-  int reader_tasks_[kMaxReaders];
-
-  // Always locked. Gets semFlushed when readers are allowed to take the lock
-  // (after all writers are done).
-  SEM_ID read_ready_;
-  // Locked almost all of the time. Pending writers (who have to update
-  // number_of_writers_pending_) block locking this and it gets unlocked when it
-  // is time for one of them to go.
-  SEM_ID write_ready_;
-
-  // Acquires the appropriate kind of lock.
-  // Returns a value that must be passed to the corresponding Unlock call.
-  int Lock(bool write);
-  // Unlocks 1 lock.
-  // Does not need to know whether it is read or write because only one type of
-  // lock can be held at a time.
-  // num must be the return value from the corresponding Lock/AddLock call.
-  void Unlock(int num);
-  // Increments the lock count by 1.
-  // There must be at least 1 lock held during the execution of this method.
-  // Use the regular Unlock() to unlock a lock acquired this way.
-  // This is not the same as Lock(current_type) because this is the only way to
-  // acquire multiple write locks at the same time.
-  // Returns a value that must be passed to the corresponding Unlock call.
-  int AddLock();
-  // Checks whether task_id is in reader_tasks_.
-  bool TaskOwns(int task_id);
-
-  friend class Locker;
-
-  DISALLOW_COPY_AND_ASSIGN(RWLock);
-};
-
-#endif  // WPILIB_DATA_LOCK_H_
diff --git a/aos/externals/WPILib/WPILib/Relay.cpp b/aos/externals/WPILib/WPILib/Relay.cpp
deleted file mode 100644
index 1e319c0..0000000
--- a/aos/externals/WPILib/WPILib/Relay.cpp
+++ /dev/null
@@ -1,274 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Relay.h"
-
-#include "DigitalModule.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Resource.h"
-#include "WPIErrors.h"
-#include "LiveWindow/LiveWindow.h"
-
-// Allocate each direction separately.
-static Resource *relayChannels = NULL;
-
-/**
- * Common relay intitialization methode.
- * This code is common to all Relay constructors and initializes the relay and reserves
- * all resources that need to be locked. Initially the relay is set to both lines at 0v.
- * @param slot The module slot number this relay is connected to.
- * 
- * @param moduleNumber The digital module this relay is connected to (1 or 2).
- */
-void Relay::InitRelay (uint8_t moduleNumber)
-{
-	m_table = NULL;
-	char buf[64];
-	Resource::CreateResourceObject(&relayChannels, tDIO::kNumSystems * kRelayChannels * 2);
-	if (!SensorBase::CheckRelayModule(moduleNumber))
-	{
-		snprintf(buf, 64, "Digital Module %d", moduleNumber);
-		wpi_setWPIErrorWithContext(ModuleIndexOutOfRange, buf);
-		return;
-	}
-	if (!SensorBase::CheckRelayChannel(m_channel))
-	{
-		snprintf(buf, 64, "Relay Channel %d", m_channel);
-		wpi_setWPIErrorWithContext(ChannelIndexOutOfRange, buf);
-		return;
-	}
-
-	if (m_direction == kBothDirections || m_direction == kForwardOnly)
-	{
-		snprintf(buf, 64, "Forward Relay %d (Module: %d)", m_channel, moduleNumber);
-		if (relayChannels->Allocate(((moduleNumber - 1) * kRelayChannels +
-                                 m_channel - 1) * 2, buf, this) == ~0ul)
-		{
-			return;
-		}
-
-		nUsageReporting::report(nUsageReporting::kResourceType_Relay, m_channel, moduleNumber - 1);
-	}
-	if (m_direction == kBothDirections || m_direction == kReverseOnly)
-	{
-		snprintf(buf, 64, "Reverse Relay %d (Module: %d)", m_channel, moduleNumber);
-		if (relayChannels->Allocate(((moduleNumber - 1) * kRelayChannels
-                                 + m_channel - 1) * 2 + 1, buf, this) == ~0ul)
-		{
-			return;
-		}
-
-		nUsageReporting::report(nUsageReporting::kResourceType_Relay, m_channel + 128, moduleNumber - 1);
-	}
-	m_module = DigitalModule::GetInstance(moduleNumber);
-	m_module->SetRelayForward(m_channel, false);
-	m_module->SetRelayReverse(m_channel, false);
-	LiveWindow::GetInstance()->AddActuator("Relay", moduleNumber, m_channel, this);
-}
-
-/**
- * Relay constructor given the module and the channel.
- * 
- * @param moduleNumber The digital module this relay is connected to (1 or 2).
- * @param channel The channel number within the module for this relay.
- * @param direction The direction that the Relay object will control.
- */
-Relay::Relay(uint8_t moduleNumber, uint32_t channel, Relay::Direction direction)
-	: m_channel (channel)
-	, m_direction (direction)
-{
-	InitRelay(moduleNumber);
-}
-
-/**
- * Relay constructor given a channel only where the default digital module is used.
- * @param channel The channel number within the default module for this relay.
- * @param direction The direction that the Relay object will control.
- */
-Relay::Relay(uint32_t channel, Relay::Direction direction)
-	: m_channel (channel)
-	, m_direction (direction)
-{
-	InitRelay(GetDefaultDigitalModule());
-}
-
-/**
- * Free the resource associated with a relay.
- * The relay channels are set to free and the relay output is turned off.
- */
-Relay::~Relay()
-{
-	m_module->SetRelayForward(m_channel, false);
-	m_module->SetRelayReverse(m_channel, false);
-
-	if (m_direction == kBothDirections || m_direction == kForwardOnly)
-	{
-		relayChannels->Free(((m_module->GetNumber() - 1) *
-                         kRelayChannels + m_channel - 1) * 2, this);
-	}
-	if (m_direction == kBothDirections || m_direction == kReverseOnly)
-	{
-		relayChannels->Free(((m_module->GetNumber() - 1) *
-                         kRelayChannels + m_channel - 1) * 2 + 1, this);
-	}
-}
-
-/**
- * Set the relay state.
- * 
- * Valid values depend on which directions of the relay are controlled by the object.
- * 
- * When set to kBothDirections, the relay can be any of the four states:
- *    0v-0v, 0v-12v, 12v-0v, 12v-12v
- * 
- * When set to kForwardOnly or kReverseOnly, you can specify the constant for the
- *    direction or you can simply specify kOff and kOn.  Using only kOff and kOn is
- *    recommended.
- * 
- * @param value The state to set the relay.
- */
-void Relay::Set(Relay::Value value)
-{
-	if (StatusIsFatal()) return;
-	switch (value)
-	{
-	case kOff:
-		if (m_direction == kBothDirections || m_direction == kForwardOnly)
-		{
-			m_module->SetRelayForward(m_channel, false);
-		}
-		if (m_direction == kBothDirections || m_direction == kReverseOnly)
-		{
-			m_module->SetRelayReverse(m_channel, false);
-		}
-		break;
-	case kOn:
-		if (m_direction == kBothDirections || m_direction == kForwardOnly)
-		{
-			m_module->SetRelayForward(m_channel, true);
-		}
-		if (m_direction == kBothDirections || m_direction == kReverseOnly)
-		{
-			m_module->SetRelayReverse(m_channel, true);
-		}
-		break;
-	case kForward:
-		if (m_direction == kReverseOnly)
-		{
-			wpi_setWPIError(IncompatibleMode);
-			break;
-		}
-		if (m_direction == kBothDirections || m_direction == kForwardOnly)
-		{
-			m_module->SetRelayForward(m_channel, true);
-		}
-		if (m_direction == kBothDirections)
-		{
-			m_module->SetRelayReverse(m_channel, false);
-		}
-		break;
-	case kReverse:
-		if (m_direction == kForwardOnly)
-		{
-			wpi_setWPIError(IncompatibleMode);
-			break;
-		}
-		if (m_direction == kBothDirections)
-		{
-			m_module->SetRelayForward(m_channel, false);
-		}
-		if (m_direction == kBothDirections || m_direction == kReverseOnly)
-		{
-			m_module->SetRelayReverse(m_channel, true);
-		}
-		break;
-	}
-}
-
-/**
- * Get the Relay State
- * 
- * Gets the current state of the relay.
- * 
- * When set to kForwardOnly or kReverseOnly, value is returned as kOn/kOff not
- * kForward/kReverse (per the recommendation in Set)
- * 
- * @return The current state of the relay as a Relay::Value
- */
-Relay::Value Relay::Get() {
-   if(m_module->GetRelayForward(m_channel)) {
-	   if(m_module->GetRelayReverse(m_channel)) {
-		   return kOn;
-	   } else {
-		   if(m_direction == kForwardOnly) {
-			   return kOn;
-		   } else {
-		   return kForward;
-		   }
-	   }
-   } else {
-	   if(m_module->GetRelayReverse(m_channel)) {
-		   if(m_direction == kReverseOnly) {
-			   return kOn;
-		   } else {
-		   return kReverse;
-		   }
-	   } else {
-		   return kOff;
-	   }
-   }        
-}
-
-void Relay::ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew) {
-	std::string *val = (std::string *) value.ptr;
-	if (*val == "Off") Set(kOff);
-	else if (*val == "Forward") Set(kForward);
-	else if (*val == "Reverse") Set(kReverse);
-}
-
-void Relay::UpdateTable() {
-	if(m_table != NULL){
-		if (Get() == kOn) {
-			m_table->PutString("Value", "On");
-		}
-		else if (Get() == kForward) {
-			m_table->PutString("Value", "Forward");
-		}
-		else if (Get() == kReverse) {
-			m_table->PutString("Value", "Reverse");
-		}
-		else {
-			m_table->PutString("Value", "Off");
-		}
-	}
-}
-
-void Relay::StartLiveWindowMode() {
-	if(m_table != NULL){
-		m_table->AddTableListener("Value", this, true);
-	}
-}
-
-void Relay::StopLiveWindowMode() {
-	if(m_table != NULL){
-		m_table->RemoveTableListener(this);
-	}
-}
-
-std::string Relay::GetSmartDashboardType() {
-	return "Relay";
-}
-
-void Relay::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * Relay::GetTable() {
-	return m_table;
-}
-
-
diff --git a/aos/externals/WPILib/WPILib/Relay.h b/aos/externals/WPILib/WPILib/Relay.h
deleted file mode 100644
index d7bb459..0000000
--- a/aos/externals/WPILib/WPILib/Relay.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef RELAY_H_
-#define RELAY_H_
-
-#include "SensorBase.h"
-#include "tables/ITableListener.h"
-#include "LiveWindow/LiveWindowSendable.h"
-#include "tables/ITable.h"
-
-class DigitalModule;
-
-/**
- * Class for Spike style relay outputs.
- * Relays are intended to be connected to spikes or similar relays. The relay channels controls
- * a pair of pins that are either both off, one on, the other on, or both on. This translates into
- * two spike outputs at 0v, one at 12v and one at 0v, one at 0v and the other at 12v, or two 
- * spike outputs at 12V. This allows off, full forward, or full reverse control of motors without
- * variable speed.  It also allows the two channels (forward and reverse) to be used independently
- * for something that does not care about voltage polatiry (like a solenoid).
- */
-class Relay : public SensorBase, public ITableListener, public LiveWindowSendable {
-public:
-	typedef enum {kOff, kOn, kForward, kReverse} Value;
-	typedef enum {kBothDirections, kForwardOnly, kReverseOnly} Direction;
-
-	Relay(uint32_t channel, Direction direction = kBothDirections);
-	Relay(uint8_t moduleNumber, uint32_t channel, Direction direction = kBothDirections);
-	virtual ~Relay();
-
-	void Set(Value value);
-	Value Get();
-	
-	void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-	
-	ITable *m_table;
-
-private:
-	void InitRelay(uint8_t moduleNumber);
-
-	uint32_t m_channel;
-	Direction m_direction;
-	DigitalModule *m_module;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Resource.cpp b/aos/externals/WPILib/WPILib/Resource.cpp
deleted file mode 100644
index a5a763e..0000000
--- a/aos/externals/WPILib/WPILib/Resource.cpp
+++ /dev/null
@@ -1,121 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Resource.h"
-#include "WPIErrors.h"
-
-ReentrantSemaphore Resource::m_createLock;
-
-/**
- * Allocate storage for a new instance of Resource.
- * Allocate a bool array of values that will get initialized to indicate that no resources
- * have been allocated yet. The indicies of the resources are [0 .. elements - 1].
- */
-Resource::Resource(uint32_t elements)
-{
-	Synchronized sync(m_createLock);
-	m_size = elements;
-	m_isAllocated = new bool[m_size];
-	for (uint32_t i=0; i < m_size; i++)
-	{
-		m_isAllocated[i] = false;
-	}
-}
-
-/**
- * Factory method to create a Resource allocation-tracker *if* needed.
- * Handles the necessary synchronization internally.
- *
- * @param r -- address of the caller's Resource pointer. If *r == NULL, this
- *    will construct a Resource and make *r point to it. If *r != NULL, i.e.
- *    the caller already has a Resource instance, this won't do anything.
- * @param elements -- the number of elements for this Resource allocator to
- *    track, that is, it will allocate resource numbers in the range
- *    [0 .. elements - 1].
- */
-/*static*/ void Resource::CreateResourceObject(Resource **r, uint32_t elements)
-{
-	Synchronized sync(m_createLock);
-	if (*r == NULL)
-	{
-		*r = new Resource(elements);
-	}
-}
-
-/**
- * Delete the allocated array or resources.
- * This happens when the module is unloaded (provided it was statically allocated).
- */
-Resource::~Resource()
-{
-	delete[] m_isAllocated;
-}
-
-/**
- * Allocate a resource.
- * When a resource is requested, mark it allocated. In this case, a free resource value
- * within the range is located and returned after it is marked allocated.
- */
-uint32_t Resource::Allocate(const char *resourceDesc, const ErrorBase *error)
-{
-	Synchronized sync(m_allocateLock);
-	for (uint32_t i=0; i < m_size; i++)
-	{
-		if (!m_isAllocated[i])
-		{
-			m_isAllocated[i] = true;
-			return i;
-		}
-	}
-	wpi_setStaticWPIErrorWithContext(error, NoAvailableResources, resourceDesc);
-	return ~0ul;
-}
-
-/**
- * Allocate a specific resource value.
- * The user requests a specific resource value, i.e. channel number and it is verified
- * unallocated, then returned.
- */
-uint32_t Resource::Allocate(uint32_t index, const char *resourceDesc,
-                            const ErrorBase *error)
-{
-	Synchronized sync(m_allocateLock);
-	if (index >= m_size)
-	{
-		wpi_setStaticWPIErrorWithContext(error, ChannelIndexOutOfRange, resourceDesc);
-		return ~0ul;
-	}
-	if ( m_isAllocated[index] )
-	{
-		wpi_setStaticWPIErrorWithContext(error, ResourceAlreadyAllocated, resourceDesc);
-		return ~0ul;
-	}
-	m_isAllocated[index] = true;
-	return index;
-}
-
-
-/**
- * Free an allocated resource.
- * After a resource is no longer needed, for example a destructor is called for a channel assignment
- * class, Free will release the resource value so it can be reused somewhere else in the program.
- */
-void Resource::Free(uint32_t index, const ErrorBase *error)
-{
-	Synchronized sync(m_allocateLock);
-	if (index == ~0ul) return;
-	if (index >= m_size)
-	{
-		wpi_setStaticWPIError(error, NotAllocated);
-		return;
-	}
-	if (!m_isAllocated[index])
-	{
-		wpi_setStaticWPIError(error, NotAllocated);
-		return;
-	}
-	m_isAllocated[index] = false;
-}
diff --git a/aos/externals/WPILib/WPILib/Resource.h b/aos/externals/WPILib/WPILib/Resource.h
deleted file mode 100644
index daac57b..0000000
--- a/aos/externals/WPILib/WPILib/Resource.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef RESOURCE_H_
-#define RESOURCE_H_
-
-#include "ErrorBase.h"
-#include "Synchronized.h"
-#include <vxWorks.h>
-
-/**
- * The Resource class is a convenient way to track allocated resources.
- * It tracks them as indicies in the range [0 .. elements - 1].
- * E.g. the library uses this to track hardware channel allocation.
- *
- * The Resource class does not allocate the hardware channels or other
- * resources; it just tracks which indices were marked in use by
- * Allocate and not yet freed by Free.
- *
- * Several methods require an ErrorBase* so that they can report any errors.
- */
-class Resource
-{
-public:
-	virtual ~Resource();
-	static void CreateResourceObject(Resource **r, uint32_t elements);
-	uint32_t Allocate(const char *resourceDesc, const ErrorBase *error);
-	uint32_t Allocate(uint32_t index, const char *resourceDesc,
-                    const ErrorBase *error);
-	void Free(uint32_t index, const ErrorBase *error);
-
-private:
-	explicit Resource(uint32_t size);
-
-	bool *m_isAllocated;
-	ReentrantSemaphore m_allocateLock;
-	uint32_t m_size;
-
-	static ReentrantSemaphore m_createLock;
-
-	DISALLOW_COPY_AND_ASSIGN(Resource);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/RobotBase.cpp b/aos/externals/WPILib/WPILib/RobotBase.cpp
deleted file mode 100644
index a42938b..0000000
--- a/aos/externals/WPILib/WPILib/RobotBase.cpp
+++ /dev/null
@@ -1,236 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "RobotBase.h"
-
-#include "DriverStation.h"
-#include "NetworkCommunication/FRCComm.h"
-#include "NetworkCommunication/symModuleLink.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Utility.h"
-#include <moduleLib.h>
-#include <taskLib.h>
-#include <unldLib.h>
-#include <cstring>
-
-RobotBase* RobotBase::m_instance = NULL;
-
-const char *FILE_NAME = "/c/FRC_Lib_Version.ini";
-const char *VERSION_STRING = "C++ 2014 Update 1";
-
-
-void RobotBase::setInstance(RobotBase* robot)
-{
-  // No point in synchronization here because it's private and it only gets
-  // called from robotTask.
-	wpi_assert(m_instance == NULL);
-	m_instance = robot;
-}
-
-RobotBase &RobotBase::getInstance()
-{
-	return *m_instance;
-}
-
-/**
- * Constructor for a generic robot program.
- * User code that should run before the Autonomous or Operator Control period
- * starts should be placed in the subclass constructor.
- * The constructor must finish before Autonomous can be entered.
- * 
- * This must be used to ensure that the communications code starts. In the future it would be
- * nice to put this code into it's own task that loads on boot so ensure that it runs.
- */
-RobotBase::RobotBase()
-	: m_task (NULL)
-	, m_ds (NULL)
-{
-	m_ds = DriverStation::GetInstance();
-}
-
-/**
- * Free the resources for a RobotBase class.
- * This includes deleting all classes that might have been allocated as Singletons so they
- * would never be deleted except here.
- */
-RobotBase::~RobotBase()
-{
-	SensorBase::DeleteSingletons();
-	delete m_task;
-	m_task = NULL;
-	m_instance = NULL;
-}
-
-/**
- * Check on the overall status of the system.
- * 
- * @return Is the system active (i.e. PWM motor outputs, etc. enabled)?
- */
-bool RobotBase::IsSystemActive()
-{
-	return m_watchdog.IsSystemActive();
-}
-
-/**
- * Return the instance of the Watchdog timer.
- * Get the watchdog timer so the user program can either disable it or feed it when
- * necessary.
- */
-Watchdog &RobotBase::GetWatchdog()
-{
-	return m_watchdog;
-}
-
-/**
- * Determine if the Robot is currently enabled.
- * @return True if the Robot is currently enabled by the field controls.
- */
-bool RobotBase::IsEnabled()
-{
-	return m_ds->IsEnabled();
-}
-
-/**
- * Determine if the Robot is currently disabled.
- * @return True if the Robot is currently disabled by the field controls.
- */
-bool RobotBase::IsDisabled()
-{
-	return m_ds->IsDisabled();
-}
-
-/**
- * Determine if the robot is currently in Autonomous mode.
- * @return True if the robot is currently operating Autonomously as determined by the field controls.
- */
-bool RobotBase::IsAutonomous()
-{
-	return m_ds->IsAutonomous();
-}
-
-/**
- * Determine if the robot is currently in Operator Control mode.
- * @return True if the robot is currently operating in Tele-Op mode as determined by the field controls.
- */
-bool RobotBase::IsOperatorControl()
-{
-	return m_ds->IsOperatorControl();
-}
-
-/**
- * Determine if the robot is currently in Test mode.
- * @return True if the robot is currently running tests as determined by the field controls.
- */
-bool RobotBase::IsTest()
-{
-    return m_ds->IsTest();
-}
-
-/**
- * Indicates if new data is available from the driver station.
- * @return Has new data arrived over the network since the last time this function was called?
- */
-bool RobotBase::IsNewDataAvailable()
-{
-	return m_ds->IsNewControlData();
-}
-
-/**
- * Static interface that will start the competition in the new task.
- */
-void RobotBase::robotTask(FUNCPTR factory, Task *task)
-{
-  RobotBase *instance = (RobotBase*)factory();
-  instance->m_task = task;
-  RobotBase::setInstance(instance);
-  instance->StartCompetition();
-}
-
-void RobotBase::WriteVersionString() {
-	FILE *file = fopen(FILE_NAME, "w");
-	if (file != NULL) {
-		fputs(VERSION_STRING, file);
-    fputs(" (customized by Team 971 Spartan Robotics)", file);
-		fclose(file);
-	}
-}
-
-/**
- * 
- * Start the robot code.
- * This function starts the robot code running by spawning a task. Currently
- * tasks seem to be started by LVRT without setting the VX_FP_TASK flag which
- * means that the floating point registers are not saved on interrupts and task
- * switches. That causes the program to experience hard to debug and
- * unpredictable results, so the LVRT code starts this function, so that it, in
- * turn, can start the actual user program.
- */
-void RobotBase::startRobotTask(FUNCPTR factory)
-{
-#ifdef SVN_REV
-	if (strlen(SVN_REV))
-	{
-		printf("WPILib was compiled from SVN revision %s\n", SVN_REV);
-	}
-	else
-	{
-		printf("WPILib was compiled from a location that is not source controlled.\n");
-	}
-#else
-	printf("WPILib was compiled without -D'SVN_REV=nnnn'\n");
-#endif
-  printf("This WPILib has been fixed by Team 971 Spartan Robotics.\n");
-
-	// Check for startup code already running
-	int32_t oldId = taskNameToId(const_cast<char*>("FRC_RobotTask"));
-	if (oldId != ERROR)
-	{
-		// Find the startup code module.
-		char moduleName[256];
-		moduleNameFindBySymbolName("FRC_UserProgram_StartupLibraryInit", moduleName);
-		MODULE_ID startupModId = moduleFindByName(moduleName);
-		if (startupModId != NULL)
-		{
-			// Remove the startup code.
-			unldByModuleId(startupModId, 0);
-			printf("!!!   Error: Default code was still running... It was unloaded for you... Please try again.\n");
-			return;
-		}
-		// This case should no longer get hit.
-		printf("!!!   Error: Other robot code is still running... Unload it and then try again.\n");
-		return;
-	}
-
-	// Let the framework know that we are starting a new user program so the Driver Station can disable.
-	FRC_NetworkCommunication_observeUserProgramStarting();
-
-	// Let the Usage Reporting framework know that there is a C++ program running
-	nUsageReporting::report(nUsageReporting::kResourceType_Language, nUsageReporting::kLanguage_CPlusPlus);
-	
-	RobotBase::WriteVersionString();
-
-	// Start robot task
-	// This is done to ensure that the C++ robot task is spawned with the floating point
-	// context save parameter.
-	Task *task = new Task("RobotTask", (FUNCPTR)RobotBase::robotTask, Task::kDefaultPriority, 64000);
-	task->Start((int32_t)factory, (int32_t)task);
-}
-
-/**
- * This class exists for the sole purpose of getting its destructor called when the module unloads.
- * Before the module is done unloading, we need to delete the RobotBase derived singleton.  This should delete
- * the other remaining singletons that were registered.
- */
-class RobotDeleter
-{
-public:
-	RobotDeleter() {}
-	~RobotDeleter()
-	{
-		delete &RobotBase::getInstance();
-	}
-};
-static RobotDeleter g_robotDeleter;
diff --git a/aos/externals/WPILib/WPILib/RobotBase.h b/aos/externals/WPILib/WPILib/RobotBase.h
deleted file mode 100644
index e587089..0000000
--- a/aos/externals/WPILib/WPILib/RobotBase.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef ROBOT_H_
-#define ROBOT_H_
-
-#include "Base.h"
-#include "Task.h"
-#include "Watchdog.h"
-
-class DriverStation;
-
-/**
- * This macro will set up the given class (which must be a (direct or indirect)
- * RobotBase subclass) so that when the user code is loaded, it will be
- * instantiated and StartCompetition() will be called on the instance.
- */
-#define START_ROBOT_CLASS(_ClassName_) \
-	RobotBase *FRC_userClassFactory() \
-	{ \
-		return new _ClassName_(); \
-	} \
-	extern "C" { \
-		int32_t FRC_UserProgram_StartupLibraryInit() \
-		{ \
-			RobotBase::startRobotTask((FUNCPTR)FRC_userClassFactory); \
-			return 0; \
-		} \
-	}
-
-/**
- * Implement a Robot Program framework.
- * The RobotBase class is intended to be subclassed by a user creating a robot
- * program, possibly indirectly through one of the subclasses included in this
- * library.
- */
-class RobotBase {
-	friend class RobotDeleter;
-public:
-	static RobotBase &getInstance();
-
-	bool IsEnabled();
-	bool IsDisabled();
-	bool IsAutonomous();
-	bool IsOperatorControl();
-    bool IsTest();
-	bool IsSystemActive();
-	bool IsNewDataAvailable();
-	Watchdog &GetWatchdog();
-	static void startRobotTask(FUNCPTR factory);
-
-protected:
-	virtual ~RobotBase();
-	virtual void StartCompetition() = 0;
-	RobotBase();
-	static void WriteVersionString();
-
-	static void setInstance(RobotBase* robot);
-	static void robotTask(FUNCPTR factory, Task *task);
-
-	Task *m_task;
-	Watchdog m_watchdog;
-	DriverStation *m_ds;
-private:
-	static RobotBase *m_instance;
-	DISALLOW_COPY_AND_ASSIGN(RobotBase);
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/RobotDrive.cpp b/aos/externals/WPILib/WPILib/RobotDrive.cpp
deleted file mode 100644
index 4f6b4b6..0000000
--- a/aos/externals/WPILib/WPILib/RobotDrive.cpp
+++ /dev/null
@@ -1,737 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "RobotDrive.h"
-
-#include "CANJaguar.h"
-#include "GenericHID.h"
-#include "Joystick.h"
-#include "Jaguar.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Utility.h"
-#include "WPIErrors.h"
-#include <math.h>
-
-#define max(x, y) (((x) > (y)) ? (x) : (y))
-
-const int32_t RobotDrive::kMaxNumberOfMotors;
-
-/*
- * Driving functions
- * These functions provide an interface to multiple motors that is used for C programming
- * The Drive(speed, direction) function is the main part of the set that makes it easy
- * to set speeds and direction independently in one call.
- */
-
-/**
- * Common function to initialize all the robot drive constructors.
- * Create a motor safety object (the real reason for the common code) and
- * initialize all the motor assignments. The default timeout is set for the robot drive.
- */
-void RobotDrive::InitRobotDrive() {
-	m_frontLeftMotor = NULL;
-	m_frontRightMotor = NULL;
-	m_rearRightMotor = NULL;
-	m_rearLeftMotor = NULL;
-	m_sensitivity = 0.5;
-	m_maxOutput = 1.0;
-	m_safetyHelper = new MotorSafetyHelper(this);
-	m_safetyHelper->SetSafetyEnabled(true);
-}
-
-/** Constructor for RobotDrive with 2 motors specified with channel numbers.
- * Set up parameters for a two wheel drive system where the
- * left and right motor pwm channels are specified in the call.
- * This call assumes Jaguars for controlling the motors.
- * @param leftMotorChannel The PWM channel number on the default digital module that drives the left motor.
- * @param rightMotorChannel The PWM channel number on the default digital module that drives the right motor.
- */
-RobotDrive::RobotDrive(uint32_t leftMotorChannel, uint32_t rightMotorChannel)
-{
-	InitRobotDrive();
-	m_rearLeftMotor = new Jaguar(leftMotorChannel);
-	m_rearRightMotor = new Jaguar(rightMotorChannel);
-	for (int32_t i=0; i < kMaxNumberOfMotors; i++)
-	{
-		m_invertedMotors[i] = 1;
-	}
-	SetLeftRightMotorOutputs(0.0, 0.0);
-	m_deleteSpeedControllers = true;
-}
-
-/**
- * Constructor for RobotDrive with 4 motors specified with channel numbers.
- * Set up parameters for a four wheel drive system where all four motor
- * pwm channels are specified in the call.
- * This call assumes Jaguars for controlling the motors.
- * @param frontLeftMotor Front left motor channel number on the default digital module
- * @param rearLeftMotor Rear Left motor channel number on the default digital module
- * @param frontRightMotor Front right motor channel number on the default digital module
- * @param rearRightMotor Rear Right motor channel number on the default digital module
- */
-RobotDrive::RobotDrive(uint32_t frontLeftMotor, uint32_t rearLeftMotor,
-		uint32_t frontRightMotor, uint32_t rearRightMotor)
-{
-	InitRobotDrive();
-	m_rearLeftMotor = new Jaguar(rearLeftMotor);
-	m_rearRightMotor = new Jaguar(rearRightMotor);
-	m_frontLeftMotor = new Jaguar(frontLeftMotor);
-	m_frontRightMotor = new Jaguar(frontRightMotor);
-	for (int32_t i=0; i < kMaxNumberOfMotors; i++)
-	{
-		m_invertedMotors[i] = 1;
-	}
-	SetLeftRightMotorOutputs(0.0, 0.0);
-	m_deleteSpeedControllers = true;
-}
-
-/**
- * Constructor for RobotDrive with 2 motors specified as SpeedController objects.
- * The SpeedController version of the constructor enables programs to use the RobotDrive classes with
- * subclasses of the SpeedController objects, for example, versions with ramping or reshaping of
- * the curve to suit motor bias or deadband elimination.
- * @param leftMotor The left SpeedController object used to drive the robot.
- * @param rightMotor the right SpeedController object used to drive the robot.
- */
-RobotDrive::RobotDrive(SpeedController *leftMotor, SpeedController *rightMotor)
-{
-	InitRobotDrive();
-	if (leftMotor == NULL || rightMotor == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-		m_rearLeftMotor = m_rearRightMotor = NULL;
-		return;
-	}
-	m_rearLeftMotor = leftMotor;
-	m_rearRightMotor = rightMotor;
-	for (int32_t i=0; i < kMaxNumberOfMotors; i++)
-	{
-		m_invertedMotors[i] = 1;
-	}
-	m_deleteSpeedControllers = false;
-}
-
-RobotDrive::RobotDrive(SpeedController &leftMotor, SpeedController &rightMotor)
-{
-	InitRobotDrive();
-	m_rearLeftMotor = &leftMotor;
-	m_rearRightMotor = &rightMotor;
-	for (int32_t i=0; i < kMaxNumberOfMotors; i++)
-	{
-		m_invertedMotors[i] = 1;
-	}
-	m_deleteSpeedControllers = false;
-}
-
-/**
- * Constructor for RobotDrive with 4 motors specified as SpeedController objects.
- * Speed controller input version of RobotDrive (see previous comments).
- * @param rearLeftMotor The back left SpeedController object used to drive the robot.
- * @param frontLeftMotor The front left SpeedController object used to drive the robot
- * @param rearRightMotor The back right SpeedController object used to drive the robot.
- * @param frontRightMotor The front right SpeedController object used to drive the robot.
- */
-RobotDrive::RobotDrive(SpeedController *frontLeftMotor, SpeedController *rearLeftMotor,
-						SpeedController *frontRightMotor, SpeedController *rearRightMotor)
-{
-	InitRobotDrive();
-	if (frontLeftMotor == NULL || rearLeftMotor == NULL || frontRightMotor == NULL || rearRightMotor == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-		return;
-	}
-	m_frontLeftMotor = frontLeftMotor;
-	m_rearLeftMotor = rearLeftMotor;
-	m_frontRightMotor = frontRightMotor;
-	m_rearRightMotor = rearRightMotor;
-	for (int32_t i=0; i < kMaxNumberOfMotors; i++)
-	{
-		m_invertedMotors[i] = 1;
-	}
-	m_deleteSpeedControllers = false;
-}
-
-RobotDrive::RobotDrive(SpeedController &frontLeftMotor, SpeedController &rearLeftMotor,
-						SpeedController &frontRightMotor, SpeedController &rearRightMotor)
-{
-	InitRobotDrive();
-	m_frontLeftMotor = &frontLeftMotor;
-	m_rearLeftMotor = &rearLeftMotor;
-	m_frontRightMotor = &frontRightMotor;
-	m_rearRightMotor = &rearRightMotor;
-	for (int32_t i=0; i < kMaxNumberOfMotors; i++)
-	{
-		m_invertedMotors[i] = 1;
-	}
-	m_deleteSpeedControllers = false;
-}
-
-/**
- * RobotDrive destructor.
- * Deletes motor objects that were not passed in and created internally only.
- **/
-RobotDrive::~RobotDrive()
-{
-	if (m_deleteSpeedControllers)
-	{
-		delete m_frontLeftMotor;
-		delete m_rearLeftMotor;
-		delete m_frontRightMotor;
-		delete m_rearRightMotor;
-	}
-	delete m_safetyHelper;
-}
-
-/**
- * Drive the motors at "speed" and "curve".
- *
- * The speed and curve are -1.0 to +1.0 values where 0.0 represents stopped and
- * not turning. The algorithm for adding in the direction attempts to provide a constant
- * turn radius for differing speeds.
- *
- * This function will most likely be used in an autonomous routine.
- *
- * @param outputMagnitude The forward component of the output magnitude to send to the motors.
- * @param curve The rate of turn, constant for different forward speeds.
- */
-void RobotDrive::Drive(float outputMagnitude, float curve)
-{
-	float leftOutput, rightOutput;
-	static bool reported = false;
-	if (!reported)
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_RobotDrive, GetNumMotors(), nUsageReporting::kRobotDrive_ArcadeRatioCurve);
-		reported = true;
-	}
-
-	if (curve < 0)
-	{
-		float value = log(-curve);
-		float ratio = (value - m_sensitivity)/(value + m_sensitivity);
-		if (ratio == 0) ratio =.0000000001;
-		leftOutput = outputMagnitude / ratio;
-		rightOutput = outputMagnitude;
-	}
-	else if (curve > 0)
-	{
-		float value = log(curve);
-		float ratio = (value - m_sensitivity)/(value + m_sensitivity);
-		if (ratio == 0) ratio =.0000000001;
-		leftOutput = outputMagnitude;
-		rightOutput = outputMagnitude / ratio;
-	}
-	else
-	{
-		leftOutput = outputMagnitude;
-		rightOutput = outputMagnitude;
-	}
-	SetLeftRightMotorOutputs(leftOutput, rightOutput);
-}
-
-/**
- * Provide tank steering using the stored robot configuration.
- * Drive the robot using two joystick inputs. The Y-axis will be selected from
- * each Joystick object.
- * @param leftStick The joystick to control the left side of the robot.
- * @param rightStick The joystick to control the right side of the robot.
- */
-void RobotDrive::TankDrive(GenericHID *leftStick, GenericHID *rightStick, bool squaredInputs)
-{
-	if (leftStick == NULL || rightStick == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-		return;
-	}
-	TankDrive(leftStick->GetY(), rightStick->GetY(), squaredInputs);
-}
-
-void RobotDrive::TankDrive(GenericHID &leftStick, GenericHID &rightStick, bool squaredInputs)
-{
-	TankDrive(leftStick.GetY(), rightStick.GetY(), squaredInputs);
-}
-
-/**
- * Provide tank steering using the stored robot configuration.
- * This function lets you pick the axis to be used on each Joystick object for the left
- * and right sides of the robot.
- * @param leftStick The Joystick object to use for the left side of the robot.
- * @param leftAxis The axis to select on the left side Joystick object.
- * @param rightStick The Joystick object to use for the right side of the robot.
- * @param rightAxis The axis to select on the right side Joystick object.
- */
-void RobotDrive::TankDrive(GenericHID *leftStick, uint32_t leftAxis,
-		GenericHID *rightStick, uint32_t rightAxis, bool squaredInputs)
-{
-	if (leftStick == NULL || rightStick == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-		return;
-	}
-	TankDrive(leftStick->GetRawAxis(leftAxis), rightStick->GetRawAxis(rightAxis), squaredInputs);
-}
-
-void RobotDrive::TankDrive(GenericHID &leftStick, uint32_t leftAxis,
-		GenericHID &rightStick, uint32_t rightAxis, bool squaredInputs)
-{
-	TankDrive(leftStick.GetRawAxis(leftAxis), rightStick.GetRawAxis(rightAxis), squaredInputs);
-}
-
-
-/**
- * Provide tank steering using the stored robot configuration.
- * This function lets you directly provide joystick values from any source.
- * @param leftValue The value of the left stick.
- * @param rightValue The value of the right stick.
- */
-void RobotDrive::TankDrive(float leftValue, float rightValue, bool squaredInputs)
-{
-	static bool reported = false;
-	if (!reported)
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_RobotDrive, GetNumMotors(), nUsageReporting::kRobotDrive_Tank);
-		reported = true;
-	}
-
-	// square the inputs (while preserving the sign) to increase fine control while permitting full power
-	leftValue = Limit(leftValue);
-	rightValue = Limit(rightValue);
-	if(squaredInputs)
-	{
-		if (leftValue >= 0.0)
-		{
-			leftValue = (leftValue * leftValue);
-		}
-		else
-		{
-			leftValue = -(leftValue * leftValue);
-		}
-		if (rightValue >= 0.0)
-		{
-			rightValue = (rightValue * rightValue);
-		}
-		else
-		{
-			rightValue = -(rightValue * rightValue);
-		}
-	}
-
-	SetLeftRightMotorOutputs(leftValue, rightValue);
-}
-
-/**
- * Arcade drive implements single stick driving.
- * Given a single Joystick, the class assumes the Y axis for the move value and the X axis
- * for the rotate value.
- * (Should add more information here regarding the way that arcade drive works.)
- * @param stick The joystick to use for Arcade single-stick driving. The Y-axis will be selected
- * for forwards/backwards and the X-axis will be selected for rotation rate.
- * @param squaredInputs If true, the sensitivity will be increased for small values
- */
-void RobotDrive::ArcadeDrive(GenericHID *stick, bool squaredInputs)
-{
-	// simply call the full-featured ArcadeDrive with the appropriate values
-	ArcadeDrive(stick->GetY(), stick->GetX(), squaredInputs);
-}
-
-/**
- * Arcade drive implements single stick driving.
- * Given a single Joystick, the class assumes the Y axis for the move value and the X axis
- * for the rotate value.
- * (Should add more information here regarding the way that arcade drive works.)
- * @param stick The joystick to use for Arcade single-stick driving. The Y-axis will be selected
- * for forwards/backwards and the X-axis will be selected for rotation rate.
- * @param squaredInputs If true, the sensitivity will be increased for small values
- */
-void RobotDrive::ArcadeDrive(GenericHID &stick, bool squaredInputs)
-{
-	// simply call the full-featured ArcadeDrive with the appropriate values
-	ArcadeDrive(stick.GetY(), stick.GetX(), squaredInputs);
-}
-
-/**
- * Arcade drive implements single stick driving.
- * Given two joystick instances and two axis, compute the values to send to either two
- * or four motors.
- * @param moveStick The Joystick object that represents the forward/backward direction
- * @param moveAxis The axis on the moveStick object to use for fowards/backwards (typically Y_AXIS)
- * @param rotateStick The Joystick object that represents the rotation value
- * @param rotateAxis The axis on the rotation object to use for the rotate right/left (typically X_AXIS)
- * @param squaredInputs Setting this parameter to true increases the sensitivity at lower speeds
- */
-void RobotDrive::ArcadeDrive(GenericHID* moveStick, uint32_t moveAxis,
-								GenericHID* rotateStick, uint32_t rotateAxis,
-								bool squaredInputs)
-{
-	float moveValue = moveStick->GetRawAxis(moveAxis);
-	float rotateValue = rotateStick->GetRawAxis(rotateAxis);
-
-	ArcadeDrive(moveValue, rotateValue, squaredInputs);
-}
-
-/**
- * Arcade drive implements single stick driving.
- * Given two joystick instances and two axis, compute the values to send to either two
- * or four motors.
- * @param moveStick The Joystick object that represents the forward/backward direction
- * @param moveAxis The axis on the moveStick object to use for fowards/backwards (typically Y_AXIS)
- * @param rotateStick The Joystick object that represents the rotation value
- * @param rotateAxis The axis on the rotation object to use for the rotate right/left (typically X_AXIS)
- * @param squaredInputs Setting this parameter to true increases the sensitivity at lower speeds
- */
-
-void RobotDrive::ArcadeDrive(GenericHID &moveStick, uint32_t moveAxis,
-								GenericHID &rotateStick, uint32_t rotateAxis,
-								bool squaredInputs)
-{
-	float moveValue = moveStick.GetRawAxis(moveAxis);
-	float rotateValue = rotateStick.GetRawAxis(rotateAxis);
-
-	ArcadeDrive(moveValue, rotateValue, squaredInputs);
-}
-
-/**
- * Arcade drive implements single stick driving.
- * This function lets you directly provide joystick values from any source.
- * @param moveValue The value to use for fowards/backwards
- * @param rotateValue The value to use for the rotate right/left
- * @param squaredInputs If set, increases the sensitivity at low speeds
- */
-void RobotDrive::ArcadeDrive(float moveValue, float rotateValue, bool squaredInputs)
-{
-	static bool reported = false;
-	if (!reported)
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_RobotDrive, GetNumMotors(), nUsageReporting::kRobotDrive_ArcadeStandard);
-		reported = true;
-	}
-
-	// local variables to hold the computed PWM values for the motors
-	float leftMotorOutput;
-	float rightMotorOutput;
-
-	moveValue = Limit(moveValue);
-	rotateValue = Limit(rotateValue);
-
-	if (squaredInputs)
-	{
-		// square the inputs (while preserving the sign) to increase fine control while permitting full power
-		if (moveValue >= 0.0)
-		{
-			moveValue = (moveValue * moveValue);
-		}
-		else
-		{
-			moveValue = -(moveValue * moveValue);
-		}
-		if (rotateValue >= 0.0)
-		{
-			rotateValue = (rotateValue * rotateValue);
-		}
-		else
-		{
-			rotateValue = -(rotateValue * rotateValue);
-		}
-	}
-
-	if (moveValue > 0.0)
-	{
-		if (rotateValue > 0.0)
-		{
-			leftMotorOutput = moveValue - rotateValue;
-			rightMotorOutput = max(moveValue, rotateValue);
-		}
-		else
-		{
-			leftMotorOutput = max(moveValue, -rotateValue);
-			rightMotorOutput = moveValue + rotateValue;
-		}
-	}
-	else
-	{
-		if (rotateValue > 0.0)
-		{
-			leftMotorOutput = - max(-moveValue, rotateValue);
-			rightMotorOutput = moveValue + rotateValue;
-		}
-		else
-		{
-			leftMotorOutput = moveValue - rotateValue;
-			rightMotorOutput = - max(-moveValue, -rotateValue);
-		}
-	}
-	SetLeftRightMotorOutputs(leftMotorOutput, rightMotorOutput);
-}
-
-/**
- * Drive method for Mecanum wheeled robots.
- *
- * A method for driving with Mecanum wheeled robots. There are 4 wheels
- * on the robot, arranged so that the front and back wheels are toed in 45 degrees.
- * When looking at the wheels from the top, the roller axles should form an X across the robot.
- * 
- * This is designed to be directly driven by joystick axes.
- *
- * @param x The speed that the robot should drive in the X direction. [-1.0..1.0]
- * @param y The speed that the robot should drive in the Y direction.
- * This input is inverted to match the forward == -1.0 that joysticks produce. [-1.0..1.0]
- * @param rotation The rate of rotation for the robot that is completely independent of
- * the translation. [-1.0..1.0]
- * @param gyroAngle The current angle reading from the gyro.  Use this to implement field-oriented controls.
- */
-void RobotDrive::MecanumDrive_Cartesian(float x, float y, float rotation, float gyroAngle)
-{
-	static bool reported = false;
-	if (!reported)
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_RobotDrive, GetNumMotors(), nUsageReporting::kRobotDrive_MecanumCartesian);
-		reported = true;
-	}
-
-	double xIn = x;
-	double yIn = y;
-	// Negate y for the joystick.
-	yIn = -yIn;
-	// Compenstate for gyro angle.
-	RotateVector(xIn, yIn, gyroAngle);
-
-	double wheelSpeeds[kMaxNumberOfMotors];
-	wheelSpeeds[kFrontLeftMotor] = xIn + yIn + rotation;
-	wheelSpeeds[kFrontRightMotor] = -xIn + yIn - rotation;
-	wheelSpeeds[kRearLeftMotor] = -xIn + yIn + rotation;
-	wheelSpeeds[kRearRightMotor] = xIn + yIn - rotation;
-
-	Normalize(wheelSpeeds);
-
-	uint8_t syncGroup = 0x80;
-
-	m_frontLeftMotor->Set(wheelSpeeds[kFrontLeftMotor] * m_invertedMotors[kFrontLeftMotor] * m_maxOutput, syncGroup);
-	m_frontRightMotor->Set(wheelSpeeds[kFrontRightMotor] * m_invertedMotors[kFrontRightMotor] * m_maxOutput, syncGroup);
-	m_rearLeftMotor->Set(wheelSpeeds[kRearLeftMotor] * m_invertedMotors[kRearLeftMotor] * m_maxOutput, syncGroup);
-	m_rearRightMotor->Set(wheelSpeeds[kRearRightMotor] * m_invertedMotors[kRearRightMotor] * m_maxOutput, syncGroup);
-
-	CANJaguar::UpdateSyncGroup(syncGroup);
-	
-	m_safetyHelper->Feed();
-}
-
-/**
- * Drive method for Mecanum wheeled robots.
- *
- * A method for driving with Mecanum wheeled robots. There are 4 wheels
- * on the robot, arranged so that the front and back wheels are toed in 45 degrees.
- * When looking at the wheels from the top, the roller axles should form an X across the robot.
- *
- * @param magnitude The speed that the robot should drive in a given direction. [-1.0..1.0]
- * @param direction The direction the robot should drive in degrees. The direction and maginitute are
- * independent of the rotation rate.
- * @param rotation The rate of rotation for the robot that is completely independent of
- * the magnitute or direction. [-1.0..1.0]
- */
-void RobotDrive::MecanumDrive_Polar(float magnitude, float direction, float rotation)
-{
-	static bool reported = false;
-	if (!reported)
-	{
-		nUsageReporting::report(nUsageReporting::kResourceType_RobotDrive, GetNumMotors(), nUsageReporting::kRobotDrive_MecanumPolar);
-		reported = true;
-	}
-
-	// Normalized for full power along the Cartesian axes.
-	magnitude = Limit(magnitude) * sqrt(2.0);
-	// The rollers are at 45 degree angles.
-	double dirInRad = (direction + 45.0) * 3.14159 / 180.0;
-	double cosD = cos(dirInRad);
-	double sinD = sin(dirInRad);
-
-	double wheelSpeeds[kMaxNumberOfMotors];
-	wheelSpeeds[kFrontLeftMotor] = sinD * magnitude + rotation;
-	wheelSpeeds[kFrontRightMotor] = cosD * magnitude - rotation;
-	wheelSpeeds[kRearLeftMotor] = cosD * magnitude + rotation;
-	wheelSpeeds[kRearRightMotor] = sinD * magnitude - rotation;
-
-	Normalize(wheelSpeeds);
-
-	uint8_t syncGroup = 0x80;
-
-	m_frontLeftMotor->Set(wheelSpeeds[kFrontLeftMotor] * m_invertedMotors[kFrontLeftMotor] * m_maxOutput, syncGroup);
-	m_frontRightMotor->Set(wheelSpeeds[kFrontRightMotor] * m_invertedMotors[kFrontRightMotor] * m_maxOutput, syncGroup);
-	m_rearLeftMotor->Set(wheelSpeeds[kRearLeftMotor] * m_invertedMotors[kRearLeftMotor] * m_maxOutput, syncGroup);
-	m_rearRightMotor->Set(wheelSpeeds[kRearRightMotor] * m_invertedMotors[kRearRightMotor] * m_maxOutput, syncGroup);
-
-	CANJaguar::UpdateSyncGroup(syncGroup);
-	
-	m_safetyHelper->Feed();
-}
-
-/**
- * Holonomic Drive method for Mecanum wheeled robots.
- *
- * This is an alias to MecanumDrive_Polar() for backward compatability
- *
- * @param magnitude The speed that the robot should drive in a given direction.  [-1.0..1.0]
- * @param direction The direction the robot should drive. The direction and maginitute are
- * independent of the rotation rate.
- * @param rotation The rate of rotation for the robot that is completely independent of
- * the magnitute or direction.  [-1.0..1.0]
- */
-void RobotDrive::HolonomicDrive(float magnitude, float direction, float rotation)
-{
-	MecanumDrive_Polar(magnitude, direction, rotation);
-}
-
-/** Set the speed of the right and left motors.
- * This is used once an appropriate drive setup function is called such as
- * TwoWheelDrive(). The motors are set to "leftOutput" and "rightOutput"
- * and includes flipping the direction of one side for opposing motors.
- * @param leftOutput The speed to send to the left side of the robot.
- * @param rightOutput The speed to send to the right side of the robot.
- */
-void RobotDrive::SetLeftRightMotorOutputs(float leftOutput, float rightOutput)
-{
-	wpi_assert(m_rearLeftMotor != NULL && m_rearRightMotor != NULL);
-
-	uint8_t syncGroup = 0x80;
-
-	if (m_frontLeftMotor != NULL)
-		m_frontLeftMotor->Set(Limit(leftOutput) * m_invertedMotors[kFrontLeftMotor] * m_maxOutput, syncGroup);
-	m_rearLeftMotor->Set(Limit(leftOutput) * m_invertedMotors[kRearLeftMotor] * m_maxOutput, syncGroup);
-
-	if (m_frontRightMotor != NULL)
-		m_frontRightMotor->Set(-Limit(rightOutput) * m_invertedMotors[kFrontRightMotor] * m_maxOutput, syncGroup);
-	m_rearRightMotor->Set(-Limit(rightOutput) * m_invertedMotors[kRearRightMotor] * m_maxOutput, syncGroup);
-
-	CANJaguar::UpdateSyncGroup(syncGroup);
-
-	m_safetyHelper->Feed();
-}
-
-/**
- * Limit motor values to the -1.0 to +1.0 range.
- */
-float RobotDrive::Limit(float num)
-{
-	if (num > 1.0)
-	{
-		return 1.0;
-	}
-	if (num < -1.0)
-	{
-		return -1.0;
-	}
-	return num;
-}
-
-/**
- * Normalize all wheel speeds if the magnitude of any wheel is greater than 1.0.
- */
-void RobotDrive::Normalize(double *wheelSpeeds)
-{
-	double maxMagnitude = fabs(wheelSpeeds[0]);
-	int32_t i;
-	for (i=1; i<kMaxNumberOfMotors; i++)
-	{
-		double temp = fabs(wheelSpeeds[i]);
-		if (maxMagnitude < temp) maxMagnitude = temp;
-	}
-	if (maxMagnitude > 1.0)
-	{
-		for (i=0; i<kMaxNumberOfMotors; i++)
-		{
-			wheelSpeeds[i] = wheelSpeeds[i] / maxMagnitude;
-		}
-	}
-}
-
-/**
- * Rotate a vector in Cartesian space.
- */
-void RobotDrive::RotateVector(double &x, double &y, double angle)
-{
-	double cosA = cos(angle * (3.14159 / 180.0));
-	double sinA = sin(angle * (3.14159 / 180.0));
-	double xOut = x * cosA - y * sinA;
-	double yOut = x * sinA + y * cosA;
-	x = xOut;
-	y = yOut;
-}
-
-/*
- * Invert a motor direction.
- * This is used when a motor should run in the opposite direction as the drive
- * code would normally run it. Motors that are direct drive would be inverted, the
- * Drive code assumes that the motors are geared with one reversal.
- * @param motor The motor index to invert.
- * @param isInverted True if the motor should be inverted when operated.
- */
-void RobotDrive::SetInvertedMotor(MotorType motor, bool isInverted)
-{
-	if (motor < 0 || motor > 3)
-	{
-		wpi_setWPIError(InvalidMotorIndex);
-		return;
-	}
-	m_invertedMotors[motor] = isInverted ? -1 : 1;
-}
-
-/**
- * Set the turning sensitivity.
- * 
- * This only impacts the Drive() entry-point.
- * @param sensitivity Effectively sets the turning sensitivity (or turn radius for a given value)
- */
-void RobotDrive::SetSensitivity(float sensitivity)
-{
-	m_sensitivity = sensitivity;
-}
-
-/**
- * Configure the scaling factor for using RobotDrive with motor controllers in a mode other than PercentVbus.
- * @param maxOutput Multiplied with the output percentage computed by the drive functions.
- */
-void RobotDrive::SetMaxOutput(double maxOutput)
-{
-	m_maxOutput = maxOutput;
-}
-
-
-
-void RobotDrive::SetExpiration(float timeout)
-{
-	m_safetyHelper->SetExpiration(timeout);
-}
-
-float RobotDrive::GetExpiration()
-{
-	return m_safetyHelper->GetExpiration();
-}
-
-bool RobotDrive::IsAlive()
-{
-	return m_safetyHelper->IsAlive();
-}
-
-bool RobotDrive::IsSafetyEnabled()
-{
-	return m_safetyHelper->IsSafetyEnabled();
-}
-
-void RobotDrive::SetSafetyEnabled(bool enabled)
-{
-	m_safetyHelper->SetSafetyEnabled(enabled);
-}
-
-void RobotDrive::GetDescription(char *desc)
-{
-	snprintf(desc, 64, "RobotDrive");
-}
-
-void RobotDrive::StopMotor()
-{
-	if (m_frontLeftMotor != NULL) m_frontLeftMotor->Disable();
-	if (m_frontRightMotor != NULL) m_frontRightMotor->Disable();
-	if (m_rearLeftMotor != NULL) m_rearLeftMotor->Disable();
-	if (m_rearRightMotor != NULL) m_rearRightMotor->Disable();
-}
diff --git a/aos/externals/WPILib/WPILib/RobotDrive.h b/aos/externals/WPILib/WPILib/RobotDrive.h
deleted file mode 100644
index 892685c..0000000
--- a/aos/externals/WPILib/WPILib/RobotDrive.h
+++ /dev/null
@@ -1,108 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef ROBOTDRIVE_H_
-#define ROBOTDRIVE_H_
-
-#include "ErrorBase.h"
-#include <stdlib.h>
-#include <vxWorks.h>
-#include "MotorSafety.h"
-#include "MotorSafetyHelper.h"
-
-class SpeedController;
-class GenericHID;
-
-/**
- * Utility class for handling Robot drive based on a definition of the motor configuration.
- * The robot drive class handles basic driving for a robot. Currently, 2 and 4 motor standard
- * drive trains are supported. In the future other drive types like swerve and meccanum might
- * be implemented. Motor channel numbers are passed supplied on creation of the class. Those are
- * used for either the Drive function (intended for hand created drive code, such as autonomous)
- * or with the Tank/Arcade functions intended to be used for Operator Control driving.
- */
-class RobotDrive: public MotorSafety, public ErrorBase
-{
-public:
-	typedef enum
-	{
-		kFrontLeftMotor = 0,
-		kFrontRightMotor = 1,
-		kRearLeftMotor = 2,
-		kRearRightMotor = 3
-	} MotorType;
-
-	RobotDrive(uint32_t leftMotorChannel, uint32_t rightMotorChannel);
-	RobotDrive(uint32_t frontLeftMotorChannel, uint32_t rearLeftMotorChannel,
-				uint32_t frontRightMotorChannel, uint32_t rearRightMotorChannel);
-	RobotDrive(SpeedController *leftMotor, SpeedController *rightMotor);
-	RobotDrive(SpeedController &leftMotor, SpeedController &rightMotor);
-	RobotDrive(SpeedController *frontLeftMotor, SpeedController *rearLeftMotor,
-				SpeedController *frontRightMotor, SpeedController *rearRightMotor);
-	RobotDrive(SpeedController &frontLeftMotor, SpeedController &rearLeftMotor,
-				SpeedController &frontRightMotor, SpeedController &rearRightMotor);
-	virtual ~RobotDrive();
-
-	void Drive(float outputMagnitude, float curve);
-	void TankDrive(GenericHID *leftStick, GenericHID *rightStick, bool squaredInputs = true);
-	void TankDrive(GenericHID &leftStick, GenericHID &rightStick, bool squaredInputs = true);
-	void TankDrive(GenericHID *leftStick, uint32_t leftAxis, GenericHID *rightStick, uint32_t rightAxis, bool squaredInputs = true);
-	void TankDrive(GenericHID &leftStick, uint32_t leftAxis, GenericHID &rightStick, uint32_t rightAxis, bool squaredInputs = true);
-	void TankDrive(float leftValue, float rightValue, bool squaredInputs = true);
-	void ArcadeDrive(GenericHID *stick, bool squaredInputs = true);
-	void ArcadeDrive(GenericHID &stick, bool squaredInputs = true);
-	void ArcadeDrive(GenericHID *moveStick, uint32_t moveChannel, GenericHID *rotateStick, uint32_t rotateChannel, bool squaredInputs = true);
-	void ArcadeDrive(GenericHID &moveStick, uint32_t moveChannel, GenericHID &rotateStick, uint32_t rotateChannel, bool squaredInputs = true);
-	void ArcadeDrive(float moveValue, float rotateValue, bool squaredInputs = true);
-	void MecanumDrive_Cartesian(float x, float y, float rotation, float gyroAngle = 0.0);
-	void MecanumDrive_Polar(float magnitude, float direction, float rotation);
-	void HolonomicDrive(float magnitude, float direction, float rotation);
-	virtual void SetLeftRightMotorOutputs(float leftOutput, float rightOutput);
-	void SetInvertedMotor(MotorType motor, bool isInverted);
-	void SetSensitivity(float sensitivity);
-	void SetMaxOutput(double maxOutput);
-
-	void SetExpiration(float timeout);
-	float GetExpiration();
-	bool IsAlive();
-	void StopMotor();
-	bool IsSafetyEnabled();
-	void SetSafetyEnabled(bool enabled);
-	void GetDescription(char *desc);
-
-protected:
-	void InitRobotDrive();
-	float Limit(float num);
-	void Normalize(double *wheelSpeeds);
-	void RotateVector(double &x, double &y, double angle);
-
-	static const int32_t kMaxNumberOfMotors = 4;
-
-	int32_t m_invertedMotors[kMaxNumberOfMotors];
-	float m_sensitivity;
-	double m_maxOutput;
-	bool m_deleteSpeedControllers;
-	SpeedController *m_frontLeftMotor;
-	SpeedController *m_frontRightMotor;
-	SpeedController *m_rearLeftMotor;
-	SpeedController *m_rearRightMotor;
-	MotorSafetyHelper *m_safetyHelper;
-	
-private:
-	int32_t GetNumMotors()
-	{
-		int motors = 0;
-		if (m_frontLeftMotor) motors++;
-		if (m_frontRightMotor) motors++;
-		if (m_rearLeftMotor) motors++;
-		if (m_rearRightMotor) motors++;
-		return motors;
-	}
-	DISALLOW_COPY_AND_ASSIGN(RobotDrive);
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/SPI.cpp b/aos/externals/WPILib/WPILib/SPI.cpp
deleted file mode 100644
index 2f90d74..0000000
--- a/aos/externals/WPILib/WPILib/SPI.cpp
+++ /dev/null
@@ -1,526 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "SPI.h"
-
-#include "ChipObject/tSPI.h"
-#include "DigitalModule.h"
-#include "DigitalInput.h"
-#include "DigitalOutput.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Synchronized.h"
-#include "WPIErrors.h"
-
-#include <math.h>
-#include <usrLib.h>
-
-SEM_ID SPI::m_semaphore = NULL;
-
-/**
- * Constructor for input and output.
- *
- * @param clk	The digital output for the clock signal.
- * @param mosi	The digital output for the written data to the slave
- *				(master-out slave-in).
- * @param miso	The digital input for the input data from the slave
- *				(master-in slave-out).
- */
-SPI::SPI(DigitalOutput &clk, DigitalOutput &mosi, DigitalInput &miso)
-{
-	Init(&clk, &mosi, &miso);
-}
-
-/**
- * Constructor for input and output.
- *
- * @param clk	The digital output for the clock signal.
- * @param mosi	The digital output for the written data to the slave
- *				(master-out slave-in).
- * @param miso	The digital input for the input data from the slave
- *				(master-in slave-out).
- */
-SPI::SPI(DigitalOutput *clk, DigitalOutput *mosi, DigitalInput *miso)
-{
-	Init(clk, mosi, miso);
-}
-
-/**
- * Constructor for output only.
- *
- * @param clk	The digital output for the clock signal.
- * @param mosi	The digital output for the written data to the slave
- *				(master-out slave-in).
- */
-SPI::SPI(DigitalOutput &clk, DigitalOutput &mosi)
-{
-	Init(&clk, &mosi, NULL);
-}
-
-/**
- * Constructor for output only.
- *
- * @param clk	The digital output for the clock signal.
- * @param mosi	The digital output for the written data to the slave
- *				(master-out slave-in).
- */
-SPI::SPI(DigitalOutput *clk, DigitalOutput *mosi)
-{
-	Init(clk, mosi, NULL);
-}
-
-/**
- * Constructor for input only.
- *
- * @param clk	The digital output for the clock signal.
- * @param miso	The digital input for the input data from the slave
- *				(master-in slave-out).
- */
-SPI::SPI(DigitalOutput &clk, DigitalInput &miso)
-{
-	Init(&clk, NULL, &miso);
-}
-
-/**
- * Constructor for input only.
- *
- * @param clk	The digital output for the clock signal.
- * @param miso	The digital input for the input data from the slave
- *				(master-in slave-out).
- */
-SPI::SPI(DigitalOutput *clk, DigitalInput *miso)
-{
-	Init(clk, NULL, miso);
-}
-
-/**
- * Destructor.
- */
-SPI::~SPI()
-{
-	delete m_spi;
-}
-
-/**
- * Initialize SPI channel configuration.
- *
- * @param clk	The digital output for the clock signal.
- * @param mosi	The digital output for the written data to the slave
- *				(master-out slave-in).
- * @param miso	The digital input for the input data from the slave
- *				(master-in slave-out).
- */
-void SPI::Init(DigitalOutput *clk, DigitalOutput *mosi, DigitalInput *miso)
-{
-	if (m_semaphore == NULL)
-	{
-		m_semaphore = semMCreate(SEM_Q_PRIORITY | SEM_DELETE_SAFE | SEM_INVERSION_SAFE);
-	}
-
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_spi = tSPI::create(&localStatus);
-	wpi_setError(localStatus);
-
-	m_config.BusBitWidth = 8;
-	m_config.ClockHalfPeriodDelay = 0;
-	m_config.MSBfirst = 0;
-	m_config.DataOnFalling = 0;
-	m_config.LatchFirst = 0;
-	m_config.LatchLast = 0;
-	m_config.FramePolarity = 0;
-	m_config.WriteOnly = miso ? 0 : 1;
-	m_config.ClockPolarity = 0;
-
-	m_channels.SCLK_Channel = clk->GetChannelForRouting();
-	m_channels.SCLK_Module = clk->GetModuleForRouting();
-	m_channels.SS_Channel = 0;
-	m_channels.SS_Module = 0;
-
-	if (mosi)
-	{
-		m_channels.MOSI_Channel = mosi->GetChannelForRouting();
-		m_channels.MOSI_Module = mosi->GetModuleForRouting();
-	}
-	else
-	{
-		m_channels.MOSI_Channel = 0;
-		m_channels.MOSI_Module = 0;
-	}
-
-	if (miso)
-	{
-		m_channels.MISO_Channel = miso->GetChannelForRouting();
-		m_channels.MISO_Module = miso->GetModuleForRouting();
-	}
-	else
-	{
-		m_channels.MISO_Channel = 0;
-		m_channels.MISO_Module = 0;
-	}
-
-	m_ss = NULL;
-
-	static int32_t instances = 0;
-	instances++;
-	nUsageReporting::report(nUsageReporting::kResourceType_SPI, instances);
-}
-
-/**
- * Configure the number of bits from each word that the slave transmits
- * or receives.
- *
- * @param bits	The number of bits in one frame (1 to 32 bits).
- */
-void SPI::SetBitsPerWord(uint32_t bits)
-{
-	m_config.BusBitWidth = bits;
-}
-
-/**
- * Get the number of bits from each word that the slave transmits
- * or receives.
- *
- * @return The number of bits in one frame (1 to 32 bits).
- */
-uint32_t SPI::GetBitsPerWord()
-{
-	return m_config.BusBitWidth;
-}
-
-/**
- * Configure the rate of the generated clock signal.
- * The default and maximum value is 76,628.4 Hz.
- *
- * @param hz	The clock rate in Hertz.
- */
-void SPI::SetClockRate(double hz)
-{
-	int delay = 0;
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	int loopTiming = DigitalModule::GetInstance(m_spi->readChannels_SCLK_Module(&localStatus))->GetLoopTiming();
-    wpi_setError(localStatus);
-    double v = (1.0 / hz) / (2 * loopTiming / (kSystemClockTicksPerMicrosecond * 1e6));
-    if (v < 1) {
-        wpi_setWPIErrorWithContext(ParameterOutOfRange, "SPI Clock too high");
-    }
-    delay = (int) (v + .5);
-    if (delay > 255) {
-    	wpi_setWPIErrorWithContext(ParameterOutOfRange, "SPI Clock too low");
-    }
-
-	m_config.ClockHalfPeriodDelay = delay;
-}
-
-/**
- * Configure the order that bits are sent and received on the wire
- * to be most significant bit first.
- */
-void SPI::SetMSBFirst()
-{
-	m_config.MSBfirst = 1;
-}
-
-/**
- * Configure the order that bits are sent and received on the wire
- * to be least significant bit first.
- */
-void SPI::SetLSBFirst()
-{
-	m_config.MSBfirst = 0;
-}
-
-/**
- * Configure that the data is stable on the falling edge and the data
- * changes on the rising edge.
- */
-void SPI::SetSampleDataOnFalling()
-{
-	m_config.DataOnFalling = 1;
-}
-
-/**
- * Configure that the data is stable on the rising edge and the data
- * changes on the falling edge.
- */
-void SPI::SetSampleDataOnRising()
-{
-	m_config.DataOnFalling = 0;
-}
-
-/**
- * Configure the slave select line behavior.
- *
- * @param ss slave select digital output.
- * @param mode Frame mode:
- *			   kChipSelect: active for the duration of the frame.
- *			   kPreLatchPulse: pulses before the transfer of each frame.
- *			   kPostLatchPulse: pulses after the transfer of each frame.
- *			   kPreAndPostLatchPulse: pulses before and after each frame.
- * @param activeLow True if slave select line is active low.
- */
-void SPI::SetSlaveSelect(DigitalOutput *ss, tFrameMode mode, bool activeLow)
-{
-	if (ss)
-	{
-		m_channels.SS_Channel = ss->GetChannelForRouting();
-		m_channels.SS_Module = ss->GetModuleForRouting();
-	}
-	else
-	{
-		m_channels.SS_Channel = 0;
-		m_channels.SS_Module = 0;
-	}
-	m_ss = ss;
-
-	switch (mode)
-	{
-		case kChipSelect:
-			m_config.LatchFirst = 0;
-			m_config.LatchLast = 0;
-			break;
-		case kPreLatchPulse:
-			m_config.LatchFirst = 1;
-			m_config.LatchLast = 0;
-			break;
-		case kPostLatchPulse:
-			m_config.LatchFirst = 0;
-			m_config.LatchLast = 1;
-			break;
-		case kPreAndPostLatchPulse:
-			m_config.LatchFirst = 1;
-			m_config.LatchLast = 1;
-			break;
-	}
-
-	m_config.FramePolarity = activeLow ? 1 : 0;
-}
-
-/**
- * Configure the slave select line behavior.
- *
- * @param ss slave select digital output.
- * @param mode Frame mode:
- *			   kChipSelect: active for the duration of the frame.
- *			   kPreLatchPulse: pulses before the transfer of each frame.
- *			   kPostLatchPulse: pulses after the transfer of each frame.
- *			   kPreAndPostLatchPulse: pulses before and after each frame.
- * @param activeLow True if slave select line is active low.
- */
-void SPI::SetSlaveSelect(DigitalOutput &ss, tFrameMode mode, bool activeLow)
-{
-	SetSlaveSelect(&ss, mode, activeLow);
-}
-
-/**
- * Get the slave select line behavior.
- *
- * @param mode Frame mode:
- *			   kChipSelect: active for the duration of the frame.
- *			   kPreLatchPulse: pulses before the transfer of each frame.
- *			   kPostLatchPulse: pulses after the transfer of each frame.
- *			   kPreAndPostLatchPulse: pulses before and after each frame.
- * @param activeLow True if slave select line is active low.
- * @return The slave select digital output.
- */
-DigitalOutput *SPI::GetSlaveSelect(tFrameMode *mode, bool *activeLow)
-{
-	if (mode != NULL)
-	{
-		*mode = (tFrameMode) (m_config.LatchFirst | (m_config.LatchLast << 1));
-	}
-	if (activeLow != NULL)
-	{
-		*activeLow = m_config.FramePolarity != 0;
-	}
-	return m_ss;
-}
-
-/**
- * Configure the clock output line to be active low.
- * This is sometimes called clock polarity high.
- */
-void SPI::SetClockActiveLow()
-{
-	m_config.ClockPolarity = 1;
-}
-
-/**
- * Configure the clock output line to be active high.
- * This is sometimes called clock polarity low.
- */
-void SPI::SetClockActiveHigh()
-{
-	m_config.ClockPolarity = 0;
-}
-
-/**
- * Apply configuration settings and reset the SPI logic.
- */
-void SPI::ApplyConfig()
-{
-	Synchronized sync(m_semaphore);
-
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_spi->writeConfig(m_config, &localStatus);
-	m_spi->writeChannels(m_channels, &localStatus);
-	m_spi->strobeReset(&localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Get the number of words that can currently be stored before being
- * transmitted to the device.
- *
- * @return The number of words available to be written.
- */
-uint16_t SPI::GetOutputFIFOAvailable()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint16_t result = m_spi->readAvailableToLoad(&localStatus);
-	wpi_setError(localStatus);
-	return result;
-}
-
-/**
- * Get the number of words received and currently available to be read from
- * the receive FIFO.
- *
- * @return The number of words available to read.
- */
-uint16_t SPI::GetNumReceived()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint16_t result = m_spi->readReceivedElements(&localStatus);
-	wpi_setError(localStatus);
-	return result;
-}
-
-/**
- * Have all pending transfers completed?
- *
- * @return True if no transfers are pending.
- */
-bool SPI::IsDone()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	bool result = m_spi->readStatus_Idle(&localStatus);
-	wpi_setError(localStatus);
-	return result;
-}
-
-/**
- * Determine if the receive FIFO was full when attempting to add new data at
- * end of a transfer.
- *
- * @return True if the receive FIFO overflowed.
- */
-bool SPI::HadReceiveOverflow()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	bool result = m_spi->readStatus_ReceivedDataOverflow(&localStatus);
-	wpi_setError(localStatus);
-	return result;
-}
-
-/**
- * Write a word to the slave device.  Blocks until there is space in the
- * output FIFO.
- *
- * If not running in output only mode, also saves the data received
- * on the MISO input during the transfer into the receive FIFO.
- */
-void SPI::Write(uint32_t data)
-{
-	if (m_channels.MOSI_Channel == 0 && m_channels.MOSI_Module == 0)
-	{
-		wpi_setWPIError(SPIWriteNoMOSI);
-		return;
-	}
-
-	Synchronized sync(m_semaphore);
-
-	while (GetOutputFIFOAvailable() == 0)
-		taskDelay(NO_WAIT);
-
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_spi->writeDataToLoad(data, &localStatus);
-	m_spi->strobeLoad(&localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Read a word from the receive FIFO.
- *
- * Waits for the current transfer to complete if the receive FIFO is empty.
- *
- * If the receive FIFO is empty, there is no active transfer, and initiate
- * is false, errors.
- *
- * @param initiate	If true, this function pushes "0" into the
- *				    transmit buffer and initiates a transfer.
- *				    If false, this function assumes that data is
- *				    already in the receive FIFO from a previous write.
- */
-uint32_t SPI::Read(bool initiate)
-{
-	if (m_channels.MISO_Channel == 0 && m_channels.MISO_Module == 0)
-	{
-		wpi_setWPIError(SPIReadNoMISO);
-		return 0;
-	}
-
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t data;
-	{
-		Synchronized sync(m_semaphore);
-
-		if (initiate)
-		{
-			m_spi->writeDataToLoad(0, &localStatus);
-			m_spi->strobeLoad(&localStatus);
-		}
-
-		// Do we have anything ready to read?
-		if (GetNumReceived() == 0)
-		{
-			if (!initiate && IsDone() && GetOutputFIFOAvailable() == kTransmitFIFODepth)
-			{
-				// Nothing to read: error out
-				wpi_setWPIError(SPIReadNoData);
-				return 0;
-			}
-
-			// Wait for the transaction to complete
-			while (GetNumReceived() == 0)
-				taskDelay(NO_WAIT);
-		}
-
-		m_spi->strobeReadReceivedData(&localStatus);
-		data = m_spi->readReceivedData(&localStatus);
-	}
-	wpi_setError(localStatus);
-
-	return data;
-}
-
-/**
- * Stop any transfer in progress and empty the transmit FIFO.
- */
-void SPI::Reset()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_spi->strobeReset(&localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Empty the receive FIFO.
- */
-void SPI::ClearReceivedData()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_spi->strobeClearReceivedData(&localStatus);
-	wpi_setError(localStatus);
-}
diff --git a/aos/externals/WPILib/WPILib/SPI.h b/aos/externals/WPILib/WPILib/SPI.h
deleted file mode 100644
index 60fd4bc..0000000
--- a/aos/externals/WPILib/WPILib/SPI.h
+++ /dev/null
@@ -1,83 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __SPI_H__
-#define __SPI_H__
-
-#include "ChipObject.h"
-#include "SensorBase.h"
-
-class DigitalOutput;
-class DigitalInput;
-
-/**
- * SPI bus interface class.
- *
- * This class is intended to be used by sensor (and other SPI device) drivers.
- * It probably should not be used directly.
- *
- * The FPGA only supports a single SPI interface.
- */
-class SPI : public SensorBase
-{
-public:
-	enum tFrameMode {kChipSelect, kPreLatchPulse, kPostLatchPulse, kPreAndPostLatchPulse};
-	enum tSPIConstants {kReceiveFIFODepth=512, kTransmitFIFODepth=512};
-
-	SPI(DigitalOutput &clk, DigitalOutput &mosi, DigitalInput &miso);
-	SPI(DigitalOutput *clk, DigitalOutput *mosi, DigitalInput *miso);
-	SPI(DigitalOutput &clk, DigitalOutput &mosi);
-	SPI(DigitalOutput *clk, DigitalOutput *mosi);
-	SPI(DigitalOutput &clk, DigitalInput &miso);
-	SPI(DigitalOutput *clk, DigitalInput *miso);
-	virtual ~SPI();
-
-	void SetBitsPerWord(uint32_t bits);
-	uint32_t GetBitsPerWord();
-	void SetClockRate(double hz);
-
-	void SetMSBFirst();
-	void SetLSBFirst();
-
-	void SetSampleDataOnFalling();
-	void SetSampleDataOnRising();
-
-	void SetSlaveSelect(DigitalOutput *ss, tFrameMode mode=kChipSelect, bool activeLow=false);
-	void SetSlaveSelect(DigitalOutput &ss, tFrameMode mode=kChipSelect, bool activeLow=false);
-	DigitalOutput *GetSlaveSelect(tFrameMode *mode=NULL, bool *activeLow=NULL);
-
-	void SetClockActiveLow();
-	void SetClockActiveHigh();
-
-	virtual void ApplyConfig();
-
-	virtual uint16_t GetOutputFIFOAvailable();
-	virtual uint16_t GetNumReceived();
-
-	virtual bool IsDone();
-	bool HadReceiveOverflow();
-
-	virtual void Write(uint32_t data);
-	virtual uint32_t Read(bool initiate = false);
-
-	virtual void Reset();
-	virtual void ClearReceivedData();
-
-protected:
-	static SEM_ID m_semaphore;
-
-	tSPI* m_spi;
-	tSPI::tConfig m_config;
-	tSPI::tChannels m_channels;
-	DigitalOutput *m_ss;
-
-private:
-	void Init(DigitalOutput *clk, DigitalOutput *mosi, DigitalInput *miso);
-
-	DISALLOW_COPY_AND_ASSIGN(SPI);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/SafePWM.cpp b/aos/externals/WPILib/WPILib/SafePWM.cpp
deleted file mode 100644
index d0ddb8b..0000000
--- a/aos/externals/WPILib/WPILib/SafePWM.cpp
+++ /dev/null
@@ -1,117 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "SafePWM.h"
-
-#include "MotorSafetyHelper.h"
-
-/**
- * Initialize a SafePWM object by setting defaults
- */
-void SafePWM::InitSafePWM()
-{
-	m_safetyHelper = new MotorSafetyHelper(this);
-	m_safetyHelper->SetSafetyEnabled(false);
-}
-
-/**
- * Constructor for a SafePWM object taking a channel number
- * @param channel The channel number to be used for the underlying PWM object
- */
-SafePWM::SafePWM(uint32_t channel): PWM(channel)
-{
-	InitSafePWM();
-}
-
-/**
- * Constructor for a SafePWM object taking channel and slot numbers.
- * @param moduleNumber The digital module (1 or 2).
- * @param channel The PWM channel number on the module (1..10).
- */
-SafePWM::SafePWM(uint8_t moduleNumber, uint32_t channel): PWM(moduleNumber, channel)
-{
-	InitSafePWM();
-}
-
-SafePWM::~SafePWM()
-{
-	delete m_safetyHelper;
-}
-
-/*
- * Set the expiration time for the PWM object
- * @param timeout The timeout (in seconds) for this motor object
- */
-void SafePWM::SetExpiration(float timeout)
-{
-	m_safetyHelper->SetExpiration(timeout);
-}
-
-/**
- * Return the expiration time for the PWM object.
- * @returns The expiration time value.
- */
-float SafePWM::GetExpiration()
-{
-	return m_safetyHelper->GetExpiration();
-}
-
-/**
- * Check if the PWM object is currently alive or stopped due to a timeout.
- * @returns a bool value that is true if the motor has NOT timed out and should still
- * be running.
- */
-bool SafePWM::IsAlive()
-{
-	return m_safetyHelper->IsAlive();
-}
-
-/**
- * Stop the motor associated with this PWM object.
- * This is called by the MotorSafetyHelper object when it has a timeout for this PWM and needs to
- * stop it from running.
- */
-void SafePWM::StopMotor()
-{
-	SetRaw(kPwmDisabled);
-}
-
-/**
- * Enable/disable motor safety for this device
- * Turn on and off the motor safety option for this PWM object.
- * @param enabled True if motor safety is enforced for this object
- */
-void SafePWM::SetSafetyEnabled(bool enabled)
-{
-	m_safetyHelper->SetSafetyEnabled(enabled);
-}
-
-/**
- * Check if motor safety is enabled for this object
- * @returns True if motor safety is enforced for this object
- */
-bool SafePWM::IsSafetyEnabled()
-{
-	return m_safetyHelper->IsSafetyEnabled();
-}
-
-void SafePWM::GetDescription(char *desc)
-{
-	snprintf(desc, 64, "PWM %ld on module %ld", GetChannel(), GetModuleNumber());
-}
-
-/**
- * Feed the MotorSafety timer when setting the speed.
- * This method is called by the subclass motor whenever it updates its speed, thereby reseting
- * the timeout value.
- * @param speed Value to pass to the PWM class
- */
-void SafePWM::SetSpeed(float speed)
-{
-	PWM::SetSpeed(speed);
-	m_safetyHelper->Feed();
-}
-
diff --git a/aos/externals/WPILib/WPILib/SafePWM.h b/aos/externals/WPILib/WPILib/SafePWM.h
deleted file mode 100644
index 5b5b0a7..0000000
--- a/aos/externals/WPILib/WPILib/SafePWM.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __SAFE_PWM__
-#define __SAFE_PWM__
-
-#include "MotorSafety.h"
-#include "PWM.h"
-
-class MotorSafetyHelper;
-
-/**
- * A safe version of the PWM class.
- * It is safe because it implements the MotorSafety interface that provides timeouts
- * in the event that the motor value is not updated before the expiration time.
- * This delegates the actual work to a MotorSafetyHelper object that is used for all
- * objects that implement MotorSafety.
- */
-class SafePWM: public PWM, public MotorSafety
-{
-public:
-	explicit SafePWM(uint32_t channel);
-	SafePWM(uint8_t moduleNumber, uint32_t channel);
-	~SafePWM();
-
-	void SetExpiration(float timeout);
-	float GetExpiration();
-	bool IsAlive();
-	void StopMotor();
-	bool IsSafetyEnabled();
-	void SetSafetyEnabled(bool enabled);
-	void GetDescription(char *desc);
-
-	virtual void SetSpeed(float speed);
-private:
-	void InitSafePWM();
-	MotorSafetyHelper *m_safetyHelper;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Scripts/CopyWPILibToUpdateDirectory.cmd b/aos/externals/WPILib/WPILib/Scripts/CopyWPILibToUpdateDirectory.cmd
deleted file mode 100644
index 26ecc83..0000000
--- a/aos/externals/WPILib/WPILib/Scripts/CopyWPILibToUpdateDirectory.cmd
+++ /dev/null
@@ -1,88 +0,0 @@
-rem cd C:\WindRiver\workspace\WorkbenchUpdate
-cd ..\..\WorkbenchUpdate
-
-
-mkdir vxworks-6.3\target\h\WPILib\Buttons
-mkdir vxworks-6.3\target\h\WPILib\CAN
-mkdir vxworks-6.3\target\h\WPILib\ChipObject
-mkdir vxworks-6.3\target\h\WPILib\ChipObject\fpgainterfacecapi
-mkdir vxworks-6.3\target\h\WPILib\Interfaces
-mkdir vxworks-6.3\target\h\WPILib\Commands
-mkdir vxworks-6.3\target\h\WPILib\NetworkCommunication
-mkdir vxworks-6.3\target\h\WPILib\SmartDashboard
-mkdir vxworks-6.3\target\h\WPILib\visa
-mkdir vxworks-6.3\target\h\WPILib\Vision
-mkdir vxworks-6.3\target\h\WPILib\Vision2009
-
-mkdir vxworks-6.3\target\h\WPILib\LiveWindow
-mkdir vxworks-6.3\target\h\WPILib\OSAL
-mkdir vxworks-6.3\target\h\WPILib\networktables
-mkdir vxworks-6.3\target\h\WPILib\tables
-mkdir vxworks-6.3\target\h\WPILib\networktables2
-mkdir vxworks-6.3\target\h\WPILib\networktables2\client
-mkdir vxworks-6.3\target\h\WPILib\networktables2\connection
-mkdir vxworks-6.3\target\h\WPILib\networktables2\server
-mkdir vxworks-6.3\target\h\WPILib\networktables2\stream
-mkdir vxworks-6.3\target\h\WPILib\networktables2\thread
-mkdir vxworks-6.3\target\h\WPILib\networktables2\type
-mkdir vxworks-6.3\target\h\WPILib\networktables2\util
-
-
-del vxworks-6.3\target\h\WPIlib\*.h
-del vxworks-6.3\target\h\WPIlib\Buttons\*.h
-del vxworks-6.3\target\h\WPIlib\CAN\*.h
-del vxworks-6.3\target\h\WPIlib\ChipObject\*.h
-del vxworks-6.3\target\h\WPIlib\Interfaces\*.h
-del vxworks-6.3\target\h\WPIlib\Commands\*.h
-del vxworks-6.3\target\h\WPIlib\NetworkCommunication\*.h
-del vxworks-6.3\target\h\WPIlib\SmartDashboard\*.h
-del vxworks-6.3\target\h\WPIlib\visa\*.h
-del vxworks-6.3\target\h\WPIlib\Vision\*.h
-del vxworks-6.3\target\h\WPIlib\Vision2009\*.h
-
-del vxworks-6.3\target\h\WPIlib\LiveWindow\*.h
-del vxworks-6.3\target\h\WPIlib\OSAL\*.h
-del vxworks-6.3\target\h\WPIlib\networktables\*.h
-del vxworks-6.3\target\h\WPIlib\tables\*.h
-del vxworks-6.3\target\h\WPIlib\networktables2\*.h
-del vxworks-6.3\target\h\WPIlib\networktables2\client\*.h
-del vxworks-6.3\target\h\WPIlib\networktables2\connection\*.h
-del vxworks-6.3\target\h\WPIlib\networktables2\server\*.h
-del vxworks-6.3\target\h\WPIlib\networktables2\stream\*.h
-del vxworks-6.3\target\h\WPIlib\networktables2\thread\*.h
-del vxworks-6.3\target\h\WPIlib\networktables2\type\*.h
-del vxworks-6.3\target\h\WPIlib\networktables2\util\*.h
-
-del vxworks-6.3\target\lib\WPILib.a
-
-
-copy C:\WindRiver\workspace\WPILib\*.h vxworks-6.3\target\h\WPILib
-copy C:\WindRiver\workspace\WPILib\Buttons\*.h vxworks-6.3\target\h\WPILib\Buttons
-copy C:\WindRiver\workspace\WPILib\CAN\*.h vxworks-6.3\target\h\WPILib\CAN
-copy C:\WindRiver\workspace\WPILib\ChipObject\*.h vxworks-6.3\target\h\WPILib\ChipObject
-copy C:\WindRiver\workspace\WPILib\ChipObject\fpgainterfacecapi\*.h vxworks-6.3\target\h\WPILib\ChipObject\fpgainterfacecapi
-copy C:\WindRiver\workspace\WPILib\Interfaces\*.h vxworks-6.3\target\h\WPILib\Interfaces
-copy C:\WindRiver\workspace\WPILib\Commands\*.h vxworks-6.3\target\h\WPILib\Commands
-copy C:\WindRiver\workspace\WPILib\NetworkCommunication\*.h vxworks-6.3\target\h\WPILib\NetworkCommunication
-copy C:\WindRiver\workspace\WPILib\SmartDashboard\*.h vxworks-6.3\target\h\WPILib\SmartDashboard
-copy C:\WindRiver\workspace\WPILib\visa\*.h vxworks-6.3\target\h\WPILib\visa
-copy C:\WindRiver\workspace\WPILib\Vision\*.h vxworks-6.3\target\h\WPILib\Vision
-copy C:\WindRiver\workspace\WPILib\Vision2009\*.h vxworks-6.3\target\h\WPILib\Vision2009
-
-copy C:\WindRiver\workspace\WPILib\LiveWindow\*.h vxworks-6.3\target\h\WPILib\LiveWindow
-copy C:\WindRiver\workspace\WPILib\OSAL\*.h vxworks-6.3\target\h\WPILib\OSAL
-copy C:\WindRiver\workspace\WPILib\networktables\*.h vxworks-6.3\target\h\WPILib\networktables
-copy C:\WindRiver\workspace\WPILib\tables\*.h vxworks-6.3\target\h\WPILib\tables
-copy C:\WindRiver\workspace\WPILib\networktables2\*.h vxworks-6.3\target\h\WPILib\networktables2
-copy C:\WindRiver\workspace\WPILib\networktables2\client\*.h vxworks-6.3\target\h\WPILib\networktables2\client
-copy C:\WindRiver\workspace\WPILib\networktables2\connection\*.h vxworks-6.3\target\h\WPILib\networktables2\connection
-copy C:\WindRiver\workspace\WPILib\networktables2\server\*.h vxworks-6.3\target\h\WPILib\networktables2\server
-copy C:\WindRiver\workspace\WPILib\networktables2\stream\*.h vxworks-6.3\target\h\WPILib\networktables2\stream
-copy C:\WindRiver\workspace\WPILib\networktables2\thread\*.h vxworks-6.3\target\h\WPILib\networktables2\thread
-copy C:\WindRiver\workspace\WPILib\networktables2\type\*.h vxworks-6.3\target\h\WPILib\networktables2\type
-copy C:\WindRiver\workspace\WPILib\networktables2\util\*.h vxworks-6.3\target\h\WPILib\networktables2\util
-
-
-copy C:\WindRiver\workspace\WPILib\PPC603gnu\WPILib\Debug\WPILib.a vxworks-6.3\target\lib
-
-cd C:\WindRiver\workspace\WPILib\Scripts
diff --git a/aos/externals/WPILib/WPILib/Scripts/Makefile b/aos/externals/WPILib/WPILib/Scripts/Makefile
deleted file mode 100644
index bc19164..0000000
--- a/aos/externals/WPILib/WPILib/Scripts/Makefile
+++ /dev/null
@@ -1,2184 +0,0 @@
-# Wind River Workbench generated Makefile.
-# Do not edit!!!
-#
-# The file ".wrmakefile" is the template used by the Wind River Workbench to
-# generate the makefiles of this project. Add user-specific build targets and
-# make rules only(!) in this project's ".wrmakefile" file. These will then be
-# automatically dumped into the makefiles.
-
-WIND_HOME := $(subst \,/,$(WIND_HOME))
-WIND_BASE := $(subst \,/,$(WIND_BASE))
-WIND_USR := $(subst \,/,$(WIND_USR))
-
-all : pre_build main_all post_build
-
-_clean ::
-	@echo "make: removing targets and objects of `pwd`"
-
-TRACE=0
-TRACEON=$(TRACE:0=@)
-TRACE_FLAG=$(TRACEON:1=)
-
-MAKEFILE := Makefile
-
-BUILD_SPEC = PPC603gnu
-DEBUG_MODE = 1
-SRC_DIR := .
-BUILD_ROOT_DIR := 
-PRJ_ROOT_DIR := C:/windriver/workspace/WPILib
-WS_ROOT_DIR := C:/windriver/workspace
-
-ALL_BUILD_SPECS := PPC32diab PPC32gnu PPC32sfdiab PPC32sfgnu \
-	 PPC403diab PPC403gnu PPC405diab PPC405gnu \
-	 PPC405sfdiab PPC405sfgnu PPC440diab PPC440gnu \
-	 PPC440sfdiab PPC440sfgnu PPC603diab PPC603gnu \
-	 PPC604diab PPC604gnu PPC85XXdiab PPC85XXgnu \
-	 PPC85XXsfdiab PPC85XXsfgnu PPC860sfdiab PPC860sfgnu \
-	 SIMLINUXdiab SIMLINUXgnu SIMNTdiab SIMNTgnu \
-	 SIMSPARCSOLARISdiab SIMSPARCSOLARISgnu
-ENABLED_BUILD_SPECS := PPC603gnu
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32diab_DEBUG
-else
-OBJ_DIR := PPC32diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32gnu_DEBUG
-else
-OBJ_DIR := PPC32gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32sfdiab_DEBUG
-else
-OBJ_DIR := PPC32sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32sfgnu_DEBUG
-else
-OBJ_DIR := PPC32sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC403diab_DEBUG
-else
-OBJ_DIR := PPC403diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC403gnu_DEBUG
-else
-OBJ_DIR := PPC403gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405diab_DEBUG
-else
-OBJ_DIR := PPC405diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405gnu_DEBUG
-else
-OBJ_DIR := PPC405gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405sfdiab_DEBUG
-else
-OBJ_DIR := PPC405sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405sfgnu_DEBUG
-else
-OBJ_DIR := PPC405sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440diab_DEBUG
-else
-OBJ_DIR := PPC440diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440gnu_DEBUG
-else
-OBJ_DIR := PPC440gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440sfdiab_DEBUG
-else
-OBJ_DIR := PPC440sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440sfgnu_DEBUG
-else
-OBJ_DIR := PPC440sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC603diab_DEBUG
-else
-OBJ_DIR := PPC603diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC603gnu_DEBUG
-else
-OBJ_DIR := PPC603gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC604diab_DEBUG
-else
-OBJ_DIR := PPC604diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC604gnu_DEBUG
-else
-OBJ_DIR := PPC604gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXdiab_DEBUG
-else
-OBJ_DIR := PPC85XXdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXgnu_DEBUG
-else
-OBJ_DIR := PPC85XXgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXsfdiab_DEBUG
-else
-OBJ_DIR := PPC85XXsfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXsfgnu_DEBUG
-else
-OBJ_DIR := PPC85XXsfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC860sfdiab_DEBUG
-else
-OBJ_DIR := PPC860sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC860sfgnu_DEBUG
-else
-OBJ_DIR := PPC860sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMLINUXdiab_DEBUG
-else
-OBJ_DIR := SIMLINUXdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMLINUXgnu_DEBUG
-else
-OBJ_DIR := SIMLINUXgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMNTdiab_DEBUG
-else
-OBJ_DIR := SIMNTdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMNTgnu_DEBUG
-else
-OBJ_DIR := SIMNTgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMSPARCSOLARISdiab_DEBUG
-else
-OBJ_DIR := SIMSPARCSOLARISdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMSPARCSOLARISgnu_DEBUG
-else
-OBJ_DIR := SIMSPARCSOLARISgnu
-endif
-endif
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-
-PROJECT_TYPE = DKM
-DEFINES = 
-EXPAND_DBG = 0
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCFH:vxworks63 -Xstmw-slow -DPPC32_fp60x
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC32gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mhard-float -mstrict-align -mno-implicit-fp -DPPC32_fp60x
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCFS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -msoft-float -mstrict-align
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC403diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC403
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC403FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC403gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC403
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=403 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC405FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=405 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC405FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=405 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC440FH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=440 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC440FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=440 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC603diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC603
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC603FH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC603gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC603
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=603 -mstrict-align -mno-implicit-fp -mlongcall
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I.. -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC604diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC604
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC604FH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC604gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC604
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=604 -mstrict-align -mno-implicit-fp
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCE500FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=8540 -mstrict-align -msoft-float -mabi=no-spe
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCE500FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=8540 -mstrict-align -msoft-float -mabi=no-spe
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC860
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC860FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC860
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=860 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-VX_CPU_FAMILY = simlinux
-CPU = SIMLINUX
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tX86LH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-VX_CPU_FAMILY = simlinux
-CPU = SIMLINUX
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mtune=i486 -march=i486
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-VX_CPU_FAMILY = simpc
-CPU = SIMNT
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tX86LH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-VX_CPU_FAMILY = simpc
-CPU = SIMNT
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mtune=i486 -march=i486
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-VX_CPU_FAMILY = simso
-CPU = SIMSPARCSOLARIS
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tSPARCFH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-VX_CPU_FAMILY = simso
-CPU = SIMSPARCSOLARIS
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = 
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space -Wa,-Xmnem-mit -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space -Wa,-Xmnem-mit -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-
-
-
-
-
--include $(PRJ_ROOT_DIR)/*.makefile
-
--include *.makefile
-
-main_all : external_build $(PROJECT_TARGETS)
-	@echo "make: built targets of `pwd`"
-
-# entry point for extending the build
-external_build ::
-	@echo ""
-
-# main entry point for pre processing prior to the build
-pre_build :: $(PRE_BUILD_STEP) generate_sources
-	@echo ""
-
-# entry point for generating sources prior to the build
-generate_sources ::
-	@echo ""
-
-# main entry point for post processing after the build
-post_build :: $(POST_BUILD_STEP) deploy_output
-	@echo ""
-
-# entry point for deploying output after the build
-deploy_output ::
-	@echo ""
-
-clean :: external_clean $(CLEAN_STEP) _clean
-
-# entry point for extending the build clean
-external_clean ::
-	@echo ""
diff --git a/aos/externals/WPILib/WPILib/Scripts/updateBuiltInLibrary.cmd b/aos/externals/WPILib/WPILib/Scripts/updateBuiltInLibrary.cmd
deleted file mode 100644
index cf410c4..0000000
--- a/aos/externals/WPILib/WPILib/Scripts/updateBuiltInLibrary.cmd
+++ /dev/null
@@ -1,63 +0,0 @@
-cd C:\WindRiver\vxworks-6.3\target
-
-rd /s /q h\WPILib
-
-mkdir h\WPILib
-mkdir h\WPILib\Buttons
-mkdir h\WPILib\CAN
-mkdir h\WPILib\ChipObject
-mkdir h\WPILib\CInterfaces
-mkdir h\WPILib\Commands
-mkdir h\WPILib\NetworkCommunication
-mkdir h\WPILib\SmartDashboard
-mkdir h\WPILib\visa
-mkdir h\WPILib\Vision
-mkdir h\WPILib\Vision2009
-
-mkdir h\WPILib\LiveWindow
-mkdir h\WPILib\OSAL
-mkdir h\WPILib\networktables
-mkdir h\WPILib\tables
-mkdir h\WPILib\networktables2
-mkdir h\WPILib\networktables2\client
-mkdir h\WPILib\networktables2\connection
-mkdir h\WPILib\networktables2\server
-mkdir h\WPILib\networktables2\stream
-mkdir h\WPILib\networktables2\thread
-mkdir h\WPILib\networktables2\type
-mkdir h\WPILib\networktables2\util
-
-
-
-copy c:\WindRiver\workspace\WPILib\*.h h\WPILib
-copy c:\WindRiver\workspace\WPILib\Buttons\*.h h\WPILib\Buttons
-copy c:\WindRiver\workspace\WPILib\CAN\*.h h\WPILib\CAN
-copy c:\WindRiver\workspace\WPILib\ChipObject\*.h h\WPILib\ChipObject
-copy C:\WindRiver\workspace\WPILib\CInterfaces\*.h h\WPILib\CInterfaces
-copy C:\WindRiver\workspace\WPILib\Commands\*.h h\WPILib\Commands
-copy C:\WindRiver\workspace\WPILib\NetworkCommunication\*.h h\WPILib\NetworkCommunication
-copy C:\WindRiver\workspace\WPILib\SmartDashboard\*.h h\WPILib\SmartDashboard
-copy c:\WindRiver\workspace\WPILib\visa\*.h h\WPILib\visa
-copy c:\WindRiver\workspace\WPILib\Vision\*.h h\WPILib\Vision
-copy c:\WindRiver\workspace\WPILib\Vision2009\*.h h\WPILib\Vision2009
-
-copy C:\WindRiver\workspace\WPILib\LiveWindow\*.h h\WPILib\LiveWindow
-copy C:\WindRiver\workspace\WPILib\OSAL\*.h h\WPILib\OSAL
-copy C:\WindRiver\workspace\WPILib\networktables\*.h h\WPILib\networktables
-copy C:\WindRiver\workspace\WPILib\tables\*.h h\WPILib\tables
-copy C:\WindRiver\workspace\WPILib\networktables2\*.h h\WPILib\networktables2
-copy C:\WindRiver\workspace\WPILib\networktables2\client\*.h h\WPILib\networktables2\client
-copy C:\WindRiver\workspace\WPILib\networktables2\connection\*.h h\WPILib\networktables2\connection
-copy C:\WindRiver\workspace\WPILib\networktables2\server\*.h h\WPILib\networktables2\server
-copy C:\WindRiver\workspace\WPILib\networktables2\stream\*.h h\WPILib\networktables2\stream
-copy C:\WindRiver\workspace\WPILib\networktables2\thread\*.h h\WPILib\networktables2\thread
-copy C:\WindRiver\workspace\WPILib\networktables2\type\*.h h\WPILib\networktables2\type
-copy C:\WindRiver\workspace\WPILib\networktables2\util\*.h h\WPILib\networktables2\util
-
-
-
-copy C:\WindRiver\workspace\WPILib\PPC603gnu\WPILib\Debug\WPILib.a lib
-
-rem copy c:\WindRiver\workspace\WorkbenchUpdate\frc_20*.zip c:\WindRiver\WPILib\cRIO_Images
-
-cd \WindRiver\workspace\WPILib\Scripts
diff --git a/aos/externals/WPILib/WPILib/SensorBase.cpp b/aos/externals/WPILib/WPILib/SensorBase.cpp
deleted file mode 100644
index 82f15c4..0000000
--- a/aos/externals/WPILib/WPILib/SensorBase.cpp
+++ /dev/null
@@ -1,195 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "SensorBase.h"
-
-#include "NetworkCommunication/LoadOut.h"
-
-const uint32_t SensorBase::kSystemClockTicksPerMicrosecond;
-const uint32_t SensorBase::kDigitalChannels;
-const uint32_t SensorBase::kAnalogChannels;
-const uint32_t SensorBase::kAnalogModules;
-const uint32_t SensorBase::kDigitalModules;
-const uint32_t SensorBase::kSolenoidChannels;
-const uint32_t SensorBase::kSolenoidModules;
-const uint32_t SensorBase::kPwmChannels;
-const uint32_t SensorBase::kRelayChannels;
-SensorBase *SensorBase::m_singletonList = NULL;
-ReentrantSemaphore SensorBase::m_singletonListSemaphore;
-
-/**
- * Creates an instance of SensorBase.
- */
-SensorBase::SensorBase()
-{
-}
-
-/**
- * Frees the resources for a SensorBase.
- */
-SensorBase::~SensorBase()
-{
-}
-
-/**
- * @brief Add sensor to the singleton list.
- * Add this object to the list of singletons that need to be deleted when
- * the robot program exits. Each of the objects on this list are singletons,
- * that is they aren't allocated directly by user code, but instead are
- * allocated by (for example) a static GetInstance method. Because of this, they
- * need some way to be freed when the module is unloaded so that they can free
- * any resources that they are holding on to.
- * @see #DeleteSingletons()
- */
-void SensorBase::AddToSingletonList()
-{
-  Synchronized sync(m_singletonListSemaphore);
-	m_nextSingleton = m_singletonList;
-	m_singletonList = this;
-}
-
-/**
- * @brief Delete all the singleton objects on the list.
- * All the objects that were allocated as singletons need to be deleted so
- * their resources can be freed.
- * @see #AddToSingletonList()
- */
-void SensorBase::DeleteSingletons()
-{
-  Synchronized sync(m_singletonListSemaphore);
-	for (SensorBase *next = m_singletonList; next != NULL;)
-	{
-		SensorBase *tmp = next;
-		next = next->m_nextSingleton;
-		delete tmp;
-	}
-	m_singletonList = NULL;
-}
-
-/**
- * Check that the analog module number is valid.
- * 
- * @return Analog module is valid and present
- */
-bool SensorBase::CheckAnalogModule(uint8_t moduleNumber)
-{
-	if (nLoadOut::getModulePresence(nLoadOut::kModuleType_Analog, moduleNumber - 1))
-		return true;
-	return false;
-}
-
-/**
- * Check that the digital module number is valid.
- * 
- * @return Digital module is valid and present
- */
-bool SensorBase::CheckDigitalModule(uint8_t moduleNumber)
-{
-	if (nLoadOut::getModulePresence(nLoadOut::kModuleType_Digital, moduleNumber - 1))
-		return true;
-	return false;
-}
-
-/**
- * Check that the digital module number is valid.
- * 
- * @return Digital module is valid and present
- */
-bool SensorBase::CheckPWMModule(uint8_t moduleNumber)
-{
-	return CheckDigitalModule(moduleNumber);
-}
-
-/**
- * Check that the digital module number is valid.
- * 
- * @return Digital module is valid and present
- */
-bool SensorBase::CheckRelayModule(uint8_t moduleNumber)
-{
-	return CheckDigitalModule(moduleNumber);
-}
-
-/**
- * Check that the solenoid module number is valid.
- * 
- * @return Solenoid module is valid and present
- */
-bool SensorBase::CheckSolenoidModule(uint8_t moduleNumber)
-{
-	if (nLoadOut::getModulePresence(nLoadOut::kModuleType_Solenoid, moduleNumber - 1))
-		return true;
-	return false;
-}
-
-/**
- * Check that the digital channel number is valid.
- * Verify that the channel number is one of the legal channel numbers. Channel numbers are
- * 1-based.
- * 
- * @return Digital channel is valid
- */
-bool SensorBase::CheckDigitalChannel(uint32_t channel)
-{
-	if (channel > 0 && channel <= kDigitalChannels)
-		return true;
-	return false;
-}
-
-/**
- * Check that the digital channel number is valid.
- * Verify that the channel number is one of the legal channel numbers. Channel numbers are
- * 1-based.
- * 
- * @return Relay channel is valid
- */
-bool SensorBase::CheckRelayChannel(uint32_t channel)
-{
-	if (channel > 0 && channel <= kRelayChannels)
-		return true;
-	return false;
-}
-
-/**
- * Check that the digital channel number is valid.
- * Verify that the channel number is one of the legal channel numbers. Channel numbers are
- * 1-based.
- * 
- * @return PWM channel is valid
- */
-bool SensorBase::CheckPWMChannel(uint32_t channel)
-{
-	if (channel > 0 && channel <= kPwmChannels)
-		return true;
-	return false;
-}
-
-/**
- * Check that the analog channel number is value.
- * Verify that the analog channel number is one of the legal channel numbers. Channel numbers
- * are 1-based.
- * 
- * @return Analog channel is valid
- */
-bool SensorBase::CheckAnalogChannel(uint32_t channel)
-{
-	if (channel > 0 && channel <= kAnalogChannels)
-		return true;
-	return false;
-}
-
-/**
- * Verify that the solenoid channel number is within limits.
- * 
- * @return Solenoid channel is valid
- */
-bool SensorBase::CheckSolenoidChannel(uint32_t channel)
-{
-	if (channel > 0 && channel <= kSolenoidChannels)
-		return true;
-	return false;
-}
-
diff --git a/aos/externals/WPILib/WPILib/SensorBase.h b/aos/externals/WPILib/WPILib/SensorBase.h
deleted file mode 100644
index 58e3977..0000000
--- a/aos/externals/WPILib/WPILib/SensorBase.h
+++ /dev/null
@@ -1,66 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef SENSORBASE_H_
-#define SENSORBASE_H_
-
-#include "ErrorBase.h"
-#include <stdio.h>
-#include "Base.h"
-#include "Synchronized.h"
-
-/**
- * Base class for all sensors.
- * Stores most recent status information as well as containing utility functions for checking
- * channels.
- */
-class SensorBase: public ErrorBase {
-public:
-	SensorBase();
-	static void DeleteSingletons();
-	static uint32_t GetDefaultAnalogModule() { return 1; }
-	static uint32_t GetDefaultDigitalModule() { return 1; }
-	static uint32_t GetDefaultSolenoidModule() { return 1; }
-	static bool CheckAnalogModule(uint8_t moduleNumber);
-	static bool CheckDigitalModule(uint8_t moduleNumber);
-	static bool CheckPWMModule(uint8_t moduleNumber);
-	static bool CheckRelayModule(uint8_t moduleNumber);
-	static bool CheckSolenoidModule(uint8_t moduleNumber);
-	static bool CheckDigitalChannel(uint32_t channel);
-	static bool CheckRelayChannel(uint32_t channel);
-	static bool CheckPWMChannel(uint32_t channel);
-	static bool CheckAnalogChannel(uint32_t channel);
-	static bool CheckSolenoidChannel(uint32_t channel);
-
-  // NOT vxworks system clock ticks (returned by sysClkRateGet() from sysLib).
-  // TODO: Document what this actually is (has something to do with FPGA times).
-  // 40kHz clock?
-	static const uint32_t kSystemClockTicksPerMicrosecond = 40;
-	static const uint32_t kDigitalChannels = 14;
-	static const uint32_t kAnalogChannels = 8;
-	static const uint32_t kAnalogModules = 2;
-	static const uint32_t kDigitalModules = 2;
-	static const uint32_t kSolenoidChannels = 8;
-	static const uint32_t kSolenoidModules = 2;
-	static const uint32_t kPwmChannels = 10;
-	static const uint32_t kRelayChannels = 8;
-
-protected:
-	void AddToSingletonList();
-  // Subclasses that don't use the singleton list mechanism should make this
-  // public, but ones that do should keep it protected so that users can not
-  // delete the singleton instance(s).
-	virtual ~SensorBase();
-
-private:
-	DISALLOW_COPY_AND_ASSIGN(SensorBase);
-	static SensorBase *m_singletonList;
-	SensorBase *m_nextSingleton;
-  static ReentrantSemaphore m_singletonListSemaphore;
-};
-
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/SerialPort.cpp b/aos/externals/WPILib/WPILib/SerialPort.cpp
deleted file mode 100644
index f948f0a..0000000
--- a/aos/externals/WPILib/WPILib/SerialPort.cpp
+++ /dev/null
@@ -1,336 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "SerialPort.h"
-
-#include "NetworkCommunication/UsageReporting.h"
-#include "visa/visa.h"
-
-//static ViStatus _VI_FUNCH ioCompleteHandler (ViSession vi, ViEventType eventType, ViEvent event, ViAddr userHandle);
-
-/**
- * Create an instance of a Serial Port class.
- * 
- * @param baudRate The baud rate to configure the serial port.  The cRIO-9074 supports up to 230400 Baud.
- * @param dataBits The number of data bits per transfer.  Valid values are between 5 and 8 bits.
- * @param parity Select the type of parity checking to use.
- * @param stopBits The number of stop bits to use as defined by the enum StopBits.
- */
-SerialPort::SerialPort(uint32_t baudRate, uint8_t dataBits, SerialPort::Parity parity, SerialPort::StopBits stopBits)
-	: m_resourceManagerHandle (0)
-	, m_portHandle (0)
-	, m_consoleModeEnabled (false)
-{
-	ViStatus localStatus = VI_SUCCESS;
-	localStatus = viOpenDefaultRM((ViSession*)&m_resourceManagerHandle);
-	wpi_setError(localStatus);
-
-	localStatus = viOpen(m_resourceManagerHandle, const_cast<char*>("ASRL1::INSTR"), VI_NULL, VI_NULL, (ViSession*)&m_portHandle);
-	wpi_setError(localStatus);
-	if (localStatus != 0)
-	{
-		m_consoleModeEnabled = true;
-		return;
-	}
-
-	localStatus = viSetAttribute(m_portHandle, VI_ATTR_ASRL_BAUD, baudRate);
-	wpi_setError(localStatus);
-	localStatus = viSetAttribute(m_portHandle, VI_ATTR_ASRL_DATA_BITS, dataBits);
-	wpi_setError(localStatus);
-	localStatus = viSetAttribute(m_portHandle, VI_ATTR_ASRL_PARITY, parity);
-	wpi_setError(localStatus);
-	localStatus = viSetAttribute(m_portHandle, VI_ATTR_ASRL_STOP_BITS, stopBits);
-	wpi_setError(localStatus);
-
-	// Set the default timeout to 5 seconds.
-	SetTimeout(5.0f);
-
-	// Don't wait until the buffer is full to transmit.
-	SetWriteBufferMode(kFlushOnAccess);
-
-	EnableTermination();
-
-	//viInstallHandler(m_portHandle, VI_EVENT_IO_COMPLETION, ioCompleteHandler, this);
-	//viEnableEvent(m_portHandle, VI_EVENT_IO_COMPLETION, VI_HNDLR, VI_NULL);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_SerialPort, 0);
-}
-
-/**
- * Destructor.
- */
-SerialPort::~SerialPort()
-{
-	if (!m_consoleModeEnabled)
-	{
-		//viUninstallHandler(m_portHandle, VI_EVENT_IO_COMPLETION, ioCompleteHandler, this);
-		viClose(m_portHandle);
-	}
-	viClose(m_resourceManagerHandle);
-}
-
-/**
- * Set the type of flow control to enable on this port.
- * 
- * By default, flow control is disabled.
- */
-void SerialPort::SetFlowControl(SerialPort::FlowControl flowControl)
-{
-	if (!m_consoleModeEnabled)
-	{
-		ViStatus localStatus = viSetAttribute (m_portHandle, VI_ATTR_ASRL_FLOW_CNTRL, flowControl);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Enable termination and specify the termination character.
- * 
- * Termination is currently only implemented for receive.
- * When the the terminator is recieved, the Read() or Scanf() will return
- *   fewer bytes than requested, stopping after the terminator.
- * 
- * @param terminator The character to use for termination.
- */
-void SerialPort::EnableTermination(char terminator)
-{
-	if (!m_consoleModeEnabled)
-	{
-		viSetAttribute(m_portHandle, VI_ATTR_TERMCHAR_EN, VI_TRUE); 
-		viSetAttribute(m_portHandle, VI_ATTR_TERMCHAR, terminator);
-		viSetAttribute(m_portHandle, VI_ATTR_ASRL_END_IN, VI_ASRL_END_TERMCHAR);
-	}
-}
-
-/**
- * Disable termination behavior.
- */
-void SerialPort::DisableTermination()
-{
-	if (!m_consoleModeEnabled)
-	{
-		viSetAttribute(m_portHandle, VI_ATTR_TERMCHAR_EN, VI_FALSE); 
-		viSetAttribute(m_portHandle, VI_ATTR_ASRL_END_IN, VI_ASRL_END_NONE);
-	}
-}
-
-/**
- * Get the number of bytes currently available to read from the serial port.
- * 
- * @return The number of bytes available to read.
- */
-int32_t SerialPort::GetBytesReceived()
-{
-	int32_t bytes = 0;
-	if (!m_consoleModeEnabled)
-	{
-		ViStatus localStatus = viGetAttribute(m_portHandle, VI_ATTR_ASRL_AVAIL_NUM, &bytes);
-		wpi_setError(localStatus);
-	}
-	return bytes;
-}
-
-/**
- * Output formatted text to the serial port.
- * 
- * @bug All pointer-based parameters seem to return an error.
- * 
- * @param writeFmt A string that defines the format of the output.
- */
-void SerialPort::Printf(const char *writeFmt, ...)
-{
-	if (!m_consoleModeEnabled)
-	{
-		va_list args;
-		va_start (args, writeFmt);
-		ViStatus localStatus = viVPrintf(m_portHandle, (ViString)writeFmt, args);
-		va_end (args);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Input formatted text from the serial port.
- * 
- * @bug All pointer-based parameters seem to return an error.
- * 
- * @param readFmt A string that defines the format of the input.
- */
-void SerialPort::Scanf(const char *readFmt, ...)
-{
-	if (!m_consoleModeEnabled)
-	{
-		va_list args;
-		va_start (args, readFmt);
-		ViStatus localStatus = viVScanf(m_portHandle, (ViString)readFmt, args);
-		va_end (args);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Read raw bytes out of the buffer.
- * 
- * @param buffer Pointer to the buffer to store the bytes in.
- * @param count The maximum number of bytes to read.
- * @return The number of bytes actually read into the buffer.
- */ 
-uint32_t SerialPort::Read(char *buffer, int32_t count)
-{
-	uint32_t retCount = 0;
-	if (!m_consoleModeEnabled)
-	{
-		ViStatus localStatus = viRead(m_portHandle, (ViPBuf)buffer, count, (ViPUInt32)&retCount);
-		switch (localStatus)
-		{
-		case VI_SUCCESS_TERM_CHAR:
-		case VI_SUCCESS_MAX_CNT:
-		case VI_ERROR_TMO: // Timeout
-			break;
-		case VI_ERROR_IO:
-		case VI_ERROR_ASRL_OVERRUN:	
-			wpi_setError(localStatus);
-			Reset();
-			break;
-		default:
-			wpi_setError(localStatus);
-		}
-	}
-	return retCount;
-}
-
-/**
- * Write raw bytes to the buffer.
- * 
- * @param buffer Pointer to the buffer to read the bytes from.
- * @param count The maximum number of bytes to write.
- * @return The number of bytes actually written into the port.
- */ 
-uint32_t SerialPort::Write(const char *buffer, int32_t count)
-{
-	uint32_t retCount = 0;
-	if (!m_consoleModeEnabled)
-	{
-		ViStatus localStatus = viWrite(m_portHandle, (ViPBuf)buffer, count, (ViPUInt32)&retCount);
-		wpi_setError(localStatus);
-	}
-	return retCount;
-}
-
-/**
- * Configure the timeout of the serial port.
- * 
- * This defines the timeout for transactions with the hardware.
- * It will affect reads and very large writes.
- * 
- * @param timeout The number of seconds to to wait for I/O.
- */
-void SerialPort::SetTimeout(float timeout)
-{
-	if (!m_consoleModeEnabled)
-	{
-		ViStatus localStatus = viSetAttribute(m_portHandle, VI_ATTR_TMO_VALUE, (uint32_t)(timeout * 1e3));
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Specify the size of the input buffer.
- * 
- * Specify the amount of data that can be stored before data
- * from the device is returned to Read or Scanf.  If you want
- * data that is recieved to be returned immediately, set this to 1.
- * 
- * It the buffer is not filled before the read timeout expires, all
- * data that has been received so far will be returned.
- * 
- * @param size The read buffer size.
- */
-void SerialPort::SetReadBufferSize(uint32_t size)
-{
-	if (!m_consoleModeEnabled)
-	{
-		ViStatus localStatus = viSetBuf(m_portHandle, VI_READ_BUF, size);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Specify the size of the output buffer.
- * 
- * Specify the amount of data that can be stored before being
- * transmitted to the device.
- * 
- * @param size The write buffer size.
- */
-void SerialPort::SetWriteBufferSize(uint32_t size)
-{
-	if (!m_consoleModeEnabled)
-	{
-		ViStatus localStatus = viSetBuf(m_portHandle, VI_WRITE_BUF, size);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Specify the flushing behavior of the output buffer.
- * 
- * When set to kFlushOnAccess, data is synchronously written to the serial port
- *   after each call to either Printf() or Write().
- * 
- * When set to kFlushWhenFull, data will only be written to the serial port when
- *   the buffer is full or when Flush() is called.
- * 
- * @param mode The write buffer mode.
- */
-void SerialPort::SetWriteBufferMode(SerialPort::WriteBufferMode mode)
-{
-	if (!m_consoleModeEnabled)
-	{
-		ViStatus localStatus = viSetAttribute(m_portHandle, VI_ATTR_WR_BUF_OPER_MODE, mode);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Force the output buffer to be written to the port.
- * 
- * This is used when SetWriteBufferMode() is set to kFlushWhenFull to force a
- * flush before the buffer is full.
- */
-void SerialPort::Flush()
-{
-	if (!m_consoleModeEnabled)
-	{
-		ViStatus localStatus = viFlush(m_portHandle, VI_WRITE_BUF);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Reset the serial port driver to a known state.
- * 
- * Empty the transmit and receive buffers in the device and formatted I/O.
- */
-void SerialPort::Reset()
-{
-	if (!m_consoleModeEnabled)
-	{
-		ViStatus localStatus = viClear(m_portHandle);
-		wpi_setError(localStatus);
-	}
-}
-
-//void SerialPort::_internalHandler(uint32_t port, uint32_t eventType, uint32_t event)
-//{
-//}
-
-//ViStatus _VI_FUNCH ioCompleteHandler (ViSession vi, ViEventType eventType, ViEvent event, ViAddr userHandle)
-//{
-//	((SerialPort*) userHandle)->_internalHandler(vi, eventType, event);
-//	return VI_SUCCESS;
-//}
-
diff --git a/aos/externals/WPILib/WPILib/SerialPort.h b/aos/externals/WPILib/WPILib/SerialPort.h
deleted file mode 100644
index 64b7724..0000000
--- a/aos/externals/WPILib/WPILib/SerialPort.h
+++ /dev/null
@@ -1,61 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __SerialPort_h__
-#define __SerialPort_h__
-
-#include "ErrorBase.h"
-#include <vxWorks.h>
-
-/**
- * Driver for the RS-232 serial port on the cRIO.
- * 
- * The current implementation uses the VISA formatted I/O mode.  This means that
- *   all traffic goes through the fomatted buffers.  This allows the intermingled
- *   use of Printf(), Scanf(), and the raw buffer accessors Read() and Write().
- * 
- * More information can be found in the NI-VISA User Manual here:
- *   http://www.ni.com/pdf/manuals/370423a.pdf
- * and the NI-VISA Programmer's Reference Manual here:
- *   http://www.ni.com/pdf/manuals/370132c.pdf
- */
-class SerialPort : public ErrorBase
-{
-public:
-	typedef enum {kParity_None=0, kParity_Odd=1, kParity_Even=2, kParity_Mark=3, kParity_Space=4} Parity;
-	typedef enum {kStopBits_One=10, kStopBits_OnePointFive=15, kStopBits_Two=20} StopBits;
-	typedef enum {kFlowControl_None=0, kFlowControl_XonXoff=1, kFlowControl_RtsCts=2, kFlowControl_DtrDsr=4} FlowControl;
-	typedef enum {kFlushOnAccess=1, kFlushWhenFull=2} WriteBufferMode;
-
-	SerialPort(uint32_t baudRate, uint8_t dataBits = 8, Parity parity = kParity_None, StopBits stopBits = kStopBits_One);
-	~SerialPort();
-	void SetFlowControl(FlowControl flowControl);
-	void EnableTermination(char terminator = '\n');
-	void DisableTermination();
-	int32_t GetBytesReceived();
-	void Printf(const char *writeFmt, ...);
-	void Scanf(const char *readFmt, ...);
-	uint32_t Read(char *buffer, int32_t count);
-	uint32_t Write(const char *buffer, int32_t count);
-	void SetTimeout(float timeout);
-	void SetReadBufferSize(uint32_t size);
-	void SetWriteBufferSize(uint32_t size);
-	void SetWriteBufferMode(WriteBufferMode mode);
-	void Flush();
-	void Reset();
-
-	/*
-	 * Do not call me!
-	 */
-	//void _internalHandler(uint32_t port, uint32_t eventType, uint32_t event);
-private:
-	uint32_t m_resourceManagerHandle;
-	uint32_t m_portHandle;
-	bool m_consoleModeEnabled;
-	DISALLOW_COPY_AND_ASSIGN(SerialPort);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Servo.cpp b/aos/externals/WPILib/WPILib/Servo.cpp
deleted file mode 100644
index 865767e..0000000
--- a/aos/externals/WPILib/WPILib/Servo.cpp
+++ /dev/null
@@ -1,161 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Servo.h"
-
-#include "NetworkCommunication/UsageReporting.h"
-#include "LiveWindow/LiveWindow.h"
-
-constexpr float Servo::kMaxServoAngle;
-constexpr float Servo::kMinServoAngle;
-
-/**
- * Common initialization code called by all constructors.
- *
- * InitServo() assigns defaults for the period multiplier for the servo PWM control signal, as
- * well as the minimum and maximum PWM values supported by the servo.
- */
-void Servo::InitServo()
-{
-	m_table = NULL;
-	SetBounds(2.27, 1.513, 1.507, 1.5, .743);
-	SetPeriodMultiplier(kPeriodMultiplier_4X);
-
-
-	LiveWindow::GetInstance()->AddActuator("Servo", GetModuleNumber(), GetChannel(), this);
-	nUsageReporting::report(nUsageReporting::kResourceType_Servo, GetChannel(), GetModuleNumber() - 1);
-}
-
-/**
- * Constructor that assumes the default digital module.
- *
- * @param channel The PWM channel on the digital module to which the servo is attached.
- */
-Servo::Servo(uint32_t channel) : SafePWM(channel)
-{
-	InitServo();
-}
-
-/**
- * Constructor that specifies the digital module.
- *
- * @param moduleNumber The digital module (1 or 2).
- * @param channel The PWM channel on the digital module to which the servo is attached (1..10).
- */
-Servo::Servo(uint8_t moduleNumber, uint32_t channel) : SafePWM(moduleNumber, channel)
-{
-	InitServo();
-}
-
-Servo::~Servo()
-{
-}
-
-/**
- * Set the servo position.
- *
- * Servo values range from 0.0 to 1.0 corresponding to the range of full left to full right.
- *
- * @param value Position from 0.0 to 1.0.
- */
-void Servo::Set(float value)
-{
-	SetPosition(value);
-}
-
-/**
- * Set the servo to offline.
- * 
- * Set the servo raw value to 0 (undriven)
- */
-void Servo::SetOffline() {
-	SetRaw(0);
-}
-
-/**
- * Get the servo position.
- *
- * Servo values range from 0.0 to 1.0 corresponding to the range of full left to full right.
- *
- * @return Position from 0.0 to 1.0.
- */
-float Servo::Get()
-{
-	return GetPosition();
-}
-
-/**
- * Set the servo angle.
- *
- * Assume that the servo angle is linear with respect to the PWM value (big assumption, need to test).
- *
- * Servo angles that are out of the supported range of the servo simply "saturate" in that direction
- * In other words, if the servo has a range of (X degrees to Y degrees) than angles of less than X
- * result in an angle of X being set and angles of more than Y degrees result in an angle of Y being set.
- *
- * @param degrees The angle in degrees to set the servo.
- */
-void Servo::SetAngle(float degrees)
-{
-	if (degrees < kMinServoAngle)
-	{
-		degrees = kMinServoAngle;
-	}
-	else if (degrees > kMaxServoAngle)
-	{
-		degrees = kMaxServoAngle;
-	}
-
-	SetPosition(((float) (degrees - kMinServoAngle)) / GetServoAngleRange());
-}
-
-/**
- * Get the servo angle.
- *
- * Assume that the servo angle is linear with respect to the PWM value (big assumption, need to test).
- * @return The angle in degrees to which the servo is set.
- */
-float Servo::GetAngle()
-{
-	return (float)GetPosition() * GetServoAngleRange() + kMinServoAngle;
-}
-
-void Servo::ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew) {
-	Set(value.f);
-}
-
-void Servo::UpdateTable() {
-	if (m_table != NULL) {
-		m_table->PutNumber("Value", Get());
-	}
-}
-
-void Servo::StartLiveWindowMode() {
-	if (m_table != NULL) {
-		m_table->AddTableListener("Value", this, true);
-	}
-}
-
-void Servo::StopLiveWindowMode() {
-	if (m_table != NULL) {
-		m_table->RemoveTableListener(this);
-	}
-}
-
-std::string Servo::GetSmartDashboardType() {
-	return "Servo";
-}
-
-void Servo::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * Servo::GetTable() {
-	return m_table;
-}
-
-
diff --git a/aos/externals/WPILib/WPILib/Servo.h b/aos/externals/WPILib/WPILib/Servo.h
deleted file mode 100644
index 8f3f046..0000000
--- a/aos/externals/WPILib/WPILib/Servo.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef SERVO_H
-#define SERVO_H
-
-#include "SafePWM.h"
-#include "SpeedController.h"
-
-/**
- * Standard hobby style servo.
- * 
- * The range parameters default to the appropriate values for the Hitec HS-322HD servo provided
- * in the FIRST Kit of Parts in 2008.
- */
-class Servo : public SafePWM
-{
-public:
-	explicit Servo(uint32_t channel);
-	Servo(uint8_t moduleNumber, uint32_t channel);
-	virtual ~Servo();
-	void Set(float value);
-	void SetOffline();
-	float Get();
-	void SetAngle(float angle);
-	float GetAngle();
-	static float GetMaxAngle() { return kMaxServoAngle; };
-	static float GetMinAngle() { return kMinServoAngle; };
-	
-	void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-	
-	ITable *m_table;
-
-private:
-	void InitServo();
-	float GetServoAngleRange() {return kMaxServoAngle - kMinServoAngle;}
-
-	static constexpr float kMaxServoAngle = 170.0;
-	static constexpr float kMinServoAngle = 0.0;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/SimpleRobot.cpp b/aos/externals/WPILib/WPILib/SimpleRobot.cpp
deleted file mode 100644
index b111bff..0000000
--- a/aos/externals/WPILib/WPILib/SimpleRobot.cpp
+++ /dev/null
@@ -1,152 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "SimpleRobot.h"
-
-#include "DriverStation.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Timer.h"
-#include "SmartDashboard/SmartDashboard.h"
-#include "LiveWindow/LiveWindow.h"
-#include "networktables/NetworkTable.h"
-
-SimpleRobot::SimpleRobot()
-	: m_robotMainOverridden (true)
-{
-	m_watchdog.SetEnabled(false);
-}
-
-/**
- * Robot-wide initialization code should go here.
- * 
- * Programmers should override this method for default Robot-wide initialization which will
- * be called each time the robot enters the disabled state.
- */
-void SimpleRobot::RobotInit()
-{
-	printf("Default %s() method... Override me!\n", __FUNCTION__);
-}
-
-/**
- * Disabled should go here.
- * Programmers should override this method to run code that should run while the field is
- * disabled.
- */
-void SimpleRobot::Disabled()
-{
-	printf("Default %s() method... Override me!\n", __FUNCTION__);
-}
-
-/**
- * Autonomous should go here.
- * Programmers should override this method to run code that should run while the field is
- * in the autonomous period. This will be called once each time the robot enters the
- * autonomous state.
- */
-void SimpleRobot::Autonomous()
-{
-	printf("Default %s() method... Override me!\n", __FUNCTION__);
-}
-
-/**
- * Operator control (tele-operated) code should go here.
- * Programmers should override this method to run code that should run while the field is
- * in the Operator Control (tele-operated) period. This is called once each time the robot
- * enters the teleop state.
- */
-void SimpleRobot::OperatorControl()
-{
-	printf("Default %s() method... Override me!\n", __FUNCTION__);
-}
-
-/**
- * Test program should go here.
- * Programmers should override this method to run code that executes while the robot is
- * in test mode. This will be called once whenever the robot enters test mode
- */
-void SimpleRobot::Test()
-{
-	printf("Default %s() method... Override me!\n", __FUNCTION__);
-}
-
-/**
- * Robot main program for free-form programs.
- * 
- * This should be overridden by user subclasses if the intent is to not use the Autonomous() and
- * OperatorControl() methods. In that case, the program is responsible for sensing when to run
- * the autonomous and operator control functions in their program.
- * 
- * This method will be called immediately after the constructor is called. If it has not been
- * overridden by a user subclass (i.e. the default version runs), then the Autonomous() and
- * OperatorControl() methods will be called.
- */
-void SimpleRobot::RobotMain()
-{
-	m_robotMainOverridden = false;
-}
-
-/**
- * Start a competition.
- * This code needs to track the order of the field starting to ensure that everything happens
- * in the right order. Repeatedly run the correct method, either Autonomous or OperatorControl
- * or Test when the robot is enabled. After running the correct method, wait for some state to
- * change, either the other mode starts or the robot is disabled. Then go back and wait for the
- * robot to be enabled again.
- */
-void SimpleRobot::StartCompetition()
-{
-	LiveWindow *lw = LiveWindow::GetInstance();
-
-	nUsageReporting::report(nUsageReporting::kResourceType_Framework, nUsageReporting::kFramework_Simple);
-
-	SmartDashboard::init();
-	NetworkTable::GetTable("LiveWindow")->GetSubTable("~STATUS~")->PutBoolean("LW Enabled", false);
-
-	RobotMain();
-	
-	if (!m_robotMainOverridden)
-	{
-		// first and one-time initialization
-		
-		lw->SetEnabled(false);
-		
-		RobotInit();
-
-		while (true)
-		{
-			if (IsDisabled())
-			{
-				m_ds->InDisabled(true);
-				Disabled();
-				m_ds->InDisabled(false);
-				while (IsDisabled()) m_ds->WaitForData();
-			}
-			else if (IsAutonomous())
-			{
-				m_ds->InAutonomous(true);
-				Autonomous();
-				m_ds->InAutonomous(false);
-				while (IsAutonomous() && IsEnabled()) m_ds->WaitForData();
-			}
-            else if (IsTest())
-            {
-            	lw->SetEnabled(true);
-                m_ds->InTest(true);
-                Test();
-                m_ds->InTest(false);
-                while (IsTest() && IsEnabled()) m_ds->WaitForData();
-                lw->SetEnabled(false);
-            }
-			else
-			{
-				m_ds->InOperatorControl(true);
-				OperatorControl();
-				m_ds->InOperatorControl(false);
-				while (IsOperatorControl() && IsEnabled()) m_ds->WaitForData();
-			}
-		}
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/SimpleRobot.h b/aos/externals/WPILib/WPILib/SimpleRobot.h
deleted file mode 100644
index 88143a6..0000000
--- a/aos/externals/WPILib/WPILib/SimpleRobot.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef SIMPLE_ROBOT_H
-#define SIMPLE_ROBOT_H
-
-#include "RobotBase.h"
-
-/**
- * @todo If this is going to last until release, it needs a better name.
- * Overridden Autonomous() and OperatorControl() methods are called at the appropriate time
- * as the match proceeds. In the current implementation, the Autonomous code will run to
- * completion before the OperatorControl code could start. In the future the Autonomous code
- * might be spawned as a task, then killed at the end of the Autonomous period.
- */
-class SimpleRobot: public RobotBase
-{
-public:
-	SimpleRobot();
-	virtual ~SimpleRobot() {}
-	virtual void RobotInit();
-	virtual void Disabled();
-	virtual void Autonomous();
-    virtual void OperatorControl();
-    virtual void Test();
-	virtual void RobotMain();
-	void StartCompetition();
-
-private:
-	bool m_robotMainOverridden;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Skeleton.h b/aos/externals/WPILib/WPILib/Skeleton.h
deleted file mode 100644
index be15767..0000000
--- a/aos/externals/WPILib/WPILib/Skeleton.h
+++ /dev/null
@@ -1,81 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __SKELETON_H__
-#define __SKELETON_H__
-
-/**
- * Represents Skeleton data from a Kinect device connected to the 
- * Driver Station. See Getting Started with Microsoft Kinect for 
- * FRC and the Kinect for Windows SDK API reference for more information
- */
-class Skeleton
-{
-	friend class Kinect;
-public:
-	typedef enum
-	{
-		HipCenter = 0,
-		Spine = 1,
-		ShoulderCenter = 2,
-		Head = 3,
-		ShoulderLeft = 4,
-		ElbowLeft = 5,
-		WristLeft = 6,
-		HandLeft = 7,
-		ShoulderRight = 8,
-		ElbowRight = 9,
-		WristRight = 10,
-		HandRight = 11,
-		HipLeft = 12,
-		KneeLeft = 13,
-		AnkleLeft = 14,
-		FootLeft = 15,
-		HipRight = 16,
-		KneeRight = 17,
-		AnkleRight = 18,
-		FootRight = 19,
-		JointCount = 20
-	} JointTypes;
-
-	typedef enum {kNotTracked, kInferred, kTracked} JointTrackingState;
-
-	typedef struct
-	{
-		float x;
-		float y;
-		float z;
-		JointTrackingState trackingState;
-	} Joint;
-
-	Joint GetHandRight() { return m_joints[HandRight]; }
-	Joint GetHandLeft() { return m_joints[HandLeft]; }
-	Joint GetWristRight() { return m_joints[WristRight]; }
-	Joint GetWristLeft() { return m_joints[WristLeft]; }
-	Joint GetElbowLeft() { return m_joints[ElbowLeft]; }
-	Joint GetElbowRight() { return m_joints[ElbowRight]; }
-	Joint GetShoulderLeft() { return m_joints[ShoulderLeft]; }
-	Joint GetShoulderRight() { return m_joints[ShoulderRight]; }
-	Joint GetShoulderCenter() { return m_joints[ShoulderCenter]; }
-	Joint GetHead() { return m_joints[Head]; }
-	Joint GetSpine() { return m_joints[Spine]; }
-	Joint GetHipCenter() { return m_joints[HipCenter]; }
-	Joint GetHipRight() { return m_joints[HipRight]; }
-	Joint GetHipLeft() { return m_joints[HipLeft]; }
-	Joint GetKneeLeft() { return m_joints[KneeLeft]; }
-	Joint GetKneeRight() { return m_joints[KneeRight]; }
-	Joint GetAnkleLeft() { return m_joints[AnkleLeft]; }
-	Joint GetAnkleRight() { return m_joints[AnkleRight]; }
-	Joint GetFootLeft() { return m_joints[FootLeft]; }
-	Joint GetFootRight() { return m_joints[FootRight]; }
-	Joint GetJointValue(JointTypes index) { return m_joints[index]; }
-
-private:
-	Joint m_joints[20];
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/SmartDashboard/NamedSendable.h b/aos/externals/WPILib/WPILib/SmartDashboard/NamedSendable.h
deleted file mode 100644
index 8be059b..0000000
--- a/aos/externals/WPILib/WPILib/SmartDashboard/NamedSendable.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * NamedSendable.h
- *
- *  Created on: Oct 19, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NAMEDSENDABLE_H_
-#define NAMEDSENDABLE_H_
-
-
-#include <string>
-#include "SmartDashboard/Sendable.h"
-
-/**
- * The interface for sendable objects that gives the sendable a default name in the Smart Dashboard
- * 
- */
-class NamedSendable : public Sendable
-{
-public:
-
-    /**
-     * @return the name of the subtable of SmartDashboard that the Sendable object will use
-     */
-	virtual std::string GetName() = 0;
-};
-
-#endif /* NAMEDSENDABLE_H_ */
diff --git a/aos/externals/WPILib/WPILib/SmartDashboard/Sendable.h b/aos/externals/WPILib/WPILib/SmartDashboard/Sendable.h
deleted file mode 100644
index e5c8698..0000000
--- a/aos/externals/WPILib/WPILib/SmartDashboard/Sendable.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __SMART_DASHBOARD_DATA__
-#define __SMART_DASHBOARD_DATA__
-
-#include <string>
-#include "tables/ITable.h"
-
-class Sendable
-{
-public:
-	/**
-	 * Initializes a table for this sendable object.
-	 * @param subtable The table to put the values in.
-	 */
-	virtual void InitTable(ITable* subtable) = 0;
-
-	/**
-	 * @return the table that is currently associated with the sendable
-	 */
-	virtual ITable* GetTable() = 0;
-
-	/**
-	 * @return the string representation of the named data type that will be used by the smart dashboard for this sendable
-	 */
-	virtual std::string GetSmartDashboardType() = 0;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/SmartDashboard/SendableChooser.cpp b/aos/externals/WPILib/WPILib/SmartDashboard/SendableChooser.cpp
deleted file mode 100644
index 7c226dc..0000000
--- a/aos/externals/WPILib/WPILib/SmartDashboard/SendableChooser.cpp
+++ /dev/null
@@ -1,78 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "SmartDashboard/SendableChooser.h"
-#include "networktables2/type/StringArray.h"
-
-#include <stdio.h>
-
-static const char *kDefault = "default";
-static const char *kOptions = "options";
-static const char *kSelected = "selected";
-
-SendableChooser::SendableChooser()
-{
-	m_defaultChoice = "";
-}
-
-/**
- * Adds the given object to the list of options.  On the {@link SmartDashboard} on the desktop,
- * the object will appear as the given name.
- * @param name the name of the option
- * @param object the option
- */
-void SendableChooser::AddObject(const char *name, void *object)
-{
-	m_choices[name] = object;
-}
-
-/**
- * Add the given object to the list of options and marks it as the default.
- * Functionally, this is very close to {@link SendableChooser#AddObject(const char *name, void *object) AddObject(...)}
- * except that it will use this as the default option if none other is explicitly selected.
- * @param name the name of the option
- * @param object the option
- */
-void SendableChooser::AddDefault(const char *name, void *object)
-{
-	m_defaultChoice = name;
-	AddObject(name, object);
-}
-
-/**
- * Returns the selected option.  If there is none selected, it will return the default.  If there is none selected
- * and no default, then it will return {@code NULL}.
- * @return the option selected
- */
-void *SendableChooser::GetSelected()
-{
-	std::string selected = m_table->GetString(kSelected, m_defaultChoice);
-	if (selected == "")
-		return NULL;
-	else
-		return m_choices[selected];
-}
-
-void SendableChooser::InitTable(ITable* subtable) {
-	StringArray keys;
-	m_table = subtable;
-	if (m_table != NULL) {
-		std::map<std::string, void *>::iterator iter;
-		for (iter = m_choices.begin(); iter != m_choices.end(); iter++) {
-			keys.add(iter->first);
-		}
-		m_table->PutValue(kOptions, keys);
-		m_table->PutString(kDefault, m_defaultChoice);
-	}
-}
-
-ITable* SendableChooser::GetTable() {
-	return m_table;
-}
-
-std::string SendableChooser::GetSmartDashboardType() {
-	return "String Chooser";
-}
diff --git a/aos/externals/WPILib/WPILib/SmartDashboard/SendableChooser.h b/aos/externals/WPILib/WPILib/SmartDashboard/SendableChooser.h
deleted file mode 100644
index 7a119b4..0000000
--- a/aos/externals/WPILib/WPILib/SmartDashboard/SendableChooser.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __SENDABLE_CHOOSER_H__
-#define __SENDABLE_CHOOSER_H__
-
-#include "SmartDashboard/Sendable.h"
-#include "tables/ITable.h"
-#include <map>
-#include <string>
-
-/**
- * The {@link SendableChooser} class is a useful tool for presenting a selection of options
- * to the {@link SmartDashboard}.
- *
- * <p>For instance, you may wish to be able to select between multiple autonomous modes.
- * You can do this by putting every possible {@link Command} you want to run as an autonomous into
- * a {@link SendableChooser} and then put it into the {@link SmartDashboard} to have a list of options
- * appear on the laptop.  Once autonomous starts, simply ask the {@link SendableChooser} what the selected
- * value is.</p>
- *
- * @see SmartDashboard
- */
-class SendableChooser : public Sendable
-{
-public:
-	SendableChooser();
-	virtual ~SendableChooser() {};
-
-	void AddObject(const char *name, void *object);
-	void AddDefault(const char *name, void *object);
-	void *GetSelected();
-
-	virtual void InitTable(ITable* subtable);
-	virtual ITable* GetTable();
-	virtual std::string GetSmartDashboardType();
-
-private:
-	std::string m_defaultChoice;
-	std::map<std::string, void *> m_choices;
-	ITable *m_table;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/SmartDashboard/SmartDashboard.cpp b/aos/externals/WPILib/WPILib/SmartDashboard/SmartDashboard.cpp
deleted file mode 100644
index bfa3ee6..0000000
--- a/aos/externals/WPILib/WPILib/SmartDashboard/SmartDashboard.cpp
+++ /dev/null
@@ -1,179 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "SmartDashboard/SmartDashboard.h"
-
-#include "NetworkCommunication/UsageReporting.h"
-#include "NamedSendable.h"
-#include "WPIErrors.h"
-#include "networktables/NetworkTable.h"
-
-ITable* SmartDashboard::m_table = NULL;
-std::map<ITable *, Sendable *> SmartDashboard::m_tablesToData;
-
-void SmartDashboard::init(){
-	m_table = NetworkTable::GetTable("SmartDashboard");
-}
-
-//TODO usage reporting
-
-/**
- * Maps the specified key to the specified value in this table.
- * The key can not be NULL.
- * The value can be retrieved by calling the get method with a key that is equal to the original key.
- * @param keyName the key
- * @param value the value
- */
-void SmartDashboard::PutData(std::string key, Sendable *data)
-{
-	if (data == NULL)
-	{
-		//TODO wpi_setWPIErrorWithContext(NullParameter, "value");
-		return;
-	}
-    ITable* dataTable = m_table->GetSubTable(key);
-    dataTable->PutString("~TYPE~", data->GetSmartDashboardType());
-    data->InitTable(dataTable);
-    m_tablesToData[dataTable] = data;
-}
-
-/**
- * Maps the specified key (where the key is the name of the {@link SmartDashboardNamedData}
- * to the specified value in this table.
- * The value can be retrieved by calling the get method with a key that is equal to the original key.
- * @param value the value
- */
-void SmartDashboard::PutData(NamedSendable *value)
-{
-	if (value == NULL)
-	{
-		//TODO wpi_setWPIErrorWithContext(NullParameter, "value");
-		return;
-	}
-	PutData(value->GetName(), value);
-}
-
-/**
- * Returns the value at the specified key.
- * @param keyName the key
- * @return the value
- */
-//TODO Sendable *SmartDashboard::GetData(std::string key)
-/*{
-	ITable* subtable = m_table->GetSubTable(keyName);
-	Sendable *data = m_tablesToData[subtable];
-	if (data == NULL)
-	{
-		wpi_setWPIErrorWithContext(SmartDashboardMissingKey, keyName);
-		return NULL;
-	}
-    return data;
-}*/
-
-/**
- * Maps the specified key to the specified complex value (such as an array) in this table.
- * The key can not be NULL.
- * The value can be retrieved by calling the RetrieveValue method with a key that is equal to the original key.
- * @param keyName the key
- * @param value the value
- */
-void SmartDashboard::PutValue(std::string keyName, ComplexData& value)
-{
-	m_table->PutValue(keyName, value);
-}
-
-/**
- * Retrieves the complex value (such as an array) in this table into the complex data object
- * The key can not be NULL.
- * @param keyName the key
- * @param value the object to retrieve the value into
- */
-void SmartDashboard::RetrieveValue(std::string keyName, ComplexData& value)
-{
-	m_table->RetrieveValue(keyName, value);
-}
-
-/**
- * Maps the specified key to the specified value in this table.
- * The key can not be NULL.
- * The value can be retrieved by calling the get method with a key that is equal to the original key.
- * @param keyName the key
- * @param value the value
- */
-void SmartDashboard::PutBoolean(std::string keyName, bool value)
-{
-	m_table->PutBoolean(keyName, value);
-}
-
-/**
- * Returns the value at the specified key.
- * @param keyName the key
- * @return the value
- */
-bool SmartDashboard::GetBoolean(std::string keyName)
-{
-	return m_table->GetBoolean(keyName);
-}
-
-/**
- * Maps the specified key to the specified value in this table.
- * The key can not be NULL.
- * The value can be retrieved by calling the get method with a key that is equal to the original key.
- * @param keyName the key
- * @param value the value
- */
-void SmartDashboard::PutNumber(std::string keyName, double value){
-	m_table->PutNumber(keyName, value);
-}
-
-/**
- * Returns the value at the specified key.
- * @param keyName the key
- * @return the value
- */
-double SmartDashboard::GetNumber(std::string keyName)
-{
-	return m_table->GetNumber(keyName);
-}
-
-/**
- * Maps the specified key to the specified value in this table.
- * Neither the key nor the value can be NULL.
- * The value can be retrieved by calling the get method with a key that is equal to the original key.
- * @param keyName the key
- * @param value the value
- */
-void SmartDashboard::PutString(std::string keyName, std::string value)
-{
-	m_table->PutString(keyName, value);
-}
-
-/**
- * Returns the value at the specified key.
- * @param keyName the key
- * @param value the buffer to fill with the value
- * @param valueLen the size of the buffer pointed to by value
- * @return the length of the string
- */
-int SmartDashboard::GetString(std::string keyName, char *outBuffer, unsigned int bufferLen){
-	std::string value = m_table->GetString(keyName);
-	unsigned int i;
-	for(i = 0; i<bufferLen-1&&i<value.length(); ++i)
-		outBuffer[i] = (char)value.at(i);
-	outBuffer[i] = '\0';
-	return i;
-}
-
-
-/**
- * Returns the value at the specified key.
- * @param keyName the key
- * @return the value
- */
-std::string SmartDashboard::GetString(std::string keyName)
-{
-	return m_table->GetString(keyName);
-}
diff --git a/aos/externals/WPILib/WPILib/SmartDashboard/SmartDashboard.h b/aos/externals/WPILib/WPILib/SmartDashboard/SmartDashboard.h
deleted file mode 100644
index 3fae9d4..0000000
--- a/aos/externals/WPILib/WPILib/SmartDashboard/SmartDashboard.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2011. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __SMART_DASHBOARD_H__
-#define __SMART_DASHBOARD_H__
-
-#include "SensorBase.h"
-#include <map>
-#include <string>
-#include "SmartDashboard/Sendable.h"
-#include "SmartDashboard/NamedSendable.h"
-#include "tables/ITable.h"
-
-
-class SmartDashboard : public SensorBase
-{
-public:
-	static void init();
-	
-	static void PutData(std::string key, Sendable *data);
-	static void PutData(NamedSendable *value);
-	//static Sendable* GetData(std::string keyName);
-	
-	static void PutBoolean(std::string keyName, bool value);
-	static bool GetBoolean(std::string keyName);
-	
-	static void PutNumber(std::string keyName, double value);
-	static double GetNumber(std::string keyName);
-	
-	static void PutString(std::string keyName, std::string value);
-	static int GetString(std::string keyName, char *value, unsigned int valueLen);
-	static std::string GetString(std::string keyName);
-	
-	static void PutValue(std::string keyName, ComplexData& value);
-	static void RetrieveValue(std::string keyName, ComplexData& value);
-private:
-	SmartDashboard();
-	virtual ~SmartDashboard();
-	DISALLOW_COPY_AND_ASSIGN(SmartDashboard);
-
-	/** The {@link NetworkTable} used by {@link SmartDashboard} */
-	static ITable* m_table;
-	
-	/** 
-	 * A map linking tables in the SmartDashboard to the {@link SmartDashboardData} objects
-	 * they came from.
-	 */
-	static std::map<ITable *, Sendable *> m_tablesToData;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Solenoid.cpp b/aos/externals/WPILib/WPILib/Solenoid.cpp
deleted file mode 100644
index 20aab19..0000000
--- a/aos/externals/WPILib/WPILib/Solenoid.cpp
+++ /dev/null
@@ -1,145 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Solenoid.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "WPIErrors.h"
-#include "LiveWindow/LiveWindow.h"
-
-/**
- * Common function to implement constructor behavior.
- */
-void Solenoid::InitSolenoid()
-{
-	m_table = NULL;
-	char buf[64];
-	if (!CheckSolenoidModule(m_moduleNumber))
-	{
-		snprintf(buf, 64, "Solenoid Module %d", m_moduleNumber);
-		wpi_setWPIErrorWithContext(ModuleIndexOutOfRange, buf);
-		return;
-	}
-	if (!CheckSolenoidChannel(m_channel))
-	{
-		snprintf(buf, 64, "Solenoid Channel %d", m_channel);
-		wpi_setWPIErrorWithContext(ChannelIndexOutOfRange, buf);
-		return;
-	}
-	Resource::CreateResourceObject(&m_allocated, tSolenoid::kNumDO7_0Elements * kSolenoidChannels);
-
-	snprintf(buf, 64, "Solenoid %d (Module: %d)", m_channel, m_moduleNumber);
-	if (m_allocated->Allocate((m_moduleNumber - 1) * kSolenoidChannels
-                            + m_channel - 1,
-                            buf, this) == ~0ul)
-	{
-		return;
-	}
-
-	LiveWindow::GetInstance()->AddActuator("Solenoid", m_moduleNumber, m_channel, this);
-	nUsageReporting::report(nUsageReporting::kResourceType_Solenoid, m_channel, m_moduleNumber - 1);
-}
-
-/**
- * Constructor.
- * 
- * @param channel The channel on the solenoid module to control (1..8).
- */
-Solenoid::Solenoid(uint32_t channel)
-	: SolenoidBase (GetDefaultSolenoidModule())
-	, m_channel (channel)
-{
-	InitSolenoid();
-}
-
-/**
- * Constructor.
- * 
- * @param moduleNumber The solenoid module (1 or 2).
- * @param channel The channel on the solenoid module to control (1..8).
- */
-Solenoid::Solenoid(uint8_t moduleNumber, uint32_t channel)
-	: SolenoidBase (moduleNumber)
-	, m_channel (channel)
-{
-	InitSolenoid();
-}
-
-/**
- * Destructor.
- */
-Solenoid::~Solenoid()
-{
-	if (CheckSolenoidModule(m_moduleNumber))
-	{
-		m_allocated->Free((m_moduleNumber - 1) * kSolenoidChannels + m_channel - 1,
-                      this);
-	}
-}
-
-/**
- * Set the value of a solenoid.
- * 
- * @param on Turn the solenoid output off or on.
- */
-void Solenoid::Set(bool on)
-{
-	if (StatusIsFatal()) return;
-	uint8_t value = on ? 0xFF : 0x00;
-	uint8_t mask = 1 << (m_channel - 1);
-
-	SolenoidBase::Set(value, mask);
-}
-
-/**
- * Read the current value of the solenoid.
- * 
- * @return The current value of the solenoid.
- */
-bool Solenoid::Get()
-{
-	if (StatusIsFatal()) return false;
-	uint8_t value = GetAll() & ( 1 << (m_channel - 1));
-	return (value != 0);
-}
-
-
-void Solenoid::ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew) {
-	Set(value.b);
-}
-
-void Solenoid::UpdateTable() {
-	if (m_table != NULL) {
-		m_table->PutBoolean("Value", Get());
-	}
-}
-
-void Solenoid::StartLiveWindowMode() {
-	Set(false);
-	if (m_table != NULL) {
-		m_table->AddTableListener("Value", this, true);
-	}
-}
-
-void Solenoid::StopLiveWindowMode() {
-	Set(false);
-	if (m_table != NULL) {
-		m_table->RemoveTableListener(this);
-	}
-}
-
-std::string Solenoid::GetSmartDashboardType() {
-	return "Solenoid";
-}
-
-void Solenoid::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * Solenoid::GetTable() {
-	return m_table;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Solenoid.h b/aos/externals/WPILib/WPILib/Solenoid.h
deleted file mode 100644
index 5c30b15..0000000
--- a/aos/externals/WPILib/WPILib/Solenoid.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef SOLENOID_H_
-#define SOLENOID_H_
-
-#include "SolenoidBase.h"
-#include "LiveWindow/LiveWindowSendable.h"
-#include "tables/ITableListener.h"
-
-
-/**
- * Solenoid class for running high voltage Digital Output (9472 module).
- * 
- * The Solenoid class is typically used for pneumatics solenoids, but could be used
- * for any device within the current spec of the 9472 module.
- */
-class Solenoid : public SolenoidBase, public LiveWindowSendable, public ITableListener {
-public:
-	explicit Solenoid(uint32_t channel);
-	Solenoid(uint8_t moduleNumber, uint32_t channel);
-	virtual ~Solenoid();
-	virtual void Set(bool on);
-	virtual bool Get();
-	
-void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-
-
-private:
-	void InitSolenoid();
-
-	uint32_t m_channel; ///< The channel on the module to control.
-	
-	ITable *m_table;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/SolenoidBase.cpp b/aos/externals/WPILib/WPILib/SolenoidBase.cpp
deleted file mode 100644
index 58c0430..0000000
--- a/aos/externals/WPILib/WPILib/SolenoidBase.cpp
+++ /dev/null
@@ -1,89 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "SolenoidBase.h"
-
-// Needs to be global since the protected resource spans all Solenoid objects.
-ReentrantSemaphore SolenoidBase::m_semaphore;
-Resource *SolenoidBase::m_allocated = NULL;
-
-tSolenoid *SolenoidBase::m_fpgaSolenoidModule = NULL;
-uint32_t SolenoidBase::m_refCount = 0;
-
-
-/**
- * Constructor
- * 
- * @param moduleNumber The solenoid module (1 or 2).
- */
-SolenoidBase::SolenoidBase(uint8_t moduleNumber)
-	: m_moduleNumber (moduleNumber)
-{
-	Synchronized sync(m_semaphore);
-	m_refCount++;
-	if (m_refCount == 1)
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		m_fpgaSolenoidModule = tSolenoid::create(&localStatus);
-		wpi_setError(localStatus);
-	}
-}
-
-/**
- * Destructor.
- */
-SolenoidBase::~SolenoidBase()
-{
-	Synchronized sync(m_semaphore);
-	if (CheckSolenoidModule(m_moduleNumber))
-	{
-		if (m_refCount == 1)
-		{
-			delete m_fpgaSolenoidModule;
-			m_fpgaSolenoidModule = NULL;
-		}
-		m_refCount--;
-	}
-}
-
-/**
- * Set the value of 1 or more solenoids at the same time.
- * 
- * @param value The value you want to set on the module.
- * @param mask The channels you want to be affected.
- */
-void SolenoidBase::Set(uint8_t value, uint8_t mask)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	if (CheckSolenoidModule(m_moduleNumber))
-	{
-		Synchronized sync(m_semaphore);
-		uint8_t currentValue = m_fpgaSolenoidModule->readDO7_0(m_moduleNumber - 1, &localStatus);
-		// Zero out the values to change
-		currentValue &= ~mask;
-    // Actually set the values.
-		currentValue |= value & mask;
-		m_fpgaSolenoidModule->writeDO7_0(m_moduleNumber - 1, currentValue, &localStatus);
-	}
-	wpi_setError(localStatus);
-}
-
-/**
- * Read all 8 solenoids as a single byte
- * 
- * @return The current value of all 8 solenoids on the module.
- */
-uint8_t SolenoidBase::GetAll()
-{
-	if (CheckSolenoidModule(m_moduleNumber))
-	{
-		tRioStatusCode localStatus = NiFpga_Status_Success;
-		uint8_t solenoids = m_fpgaSolenoidModule->readDO7_0(m_moduleNumber - 1, &localStatus);
-		wpi_setError(localStatus);
-		return solenoids;
-	}
-	return 0;
-}
diff --git a/aos/externals/WPILib/WPILib/SolenoidBase.h b/aos/externals/WPILib/WPILib/SolenoidBase.h
deleted file mode 100644
index 3b1a5cb..0000000
--- a/aos/externals/WPILib/WPILib/SolenoidBase.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef SOLENOID_BASE_H_
-#define SOLENOID_BASE_H_
-
-#include "Resource.h"
-#include "SensorBase.h"
-#include "ChipObject.h"
-#include "Synchronized.h"
-
-/**
- * SolenoidBase class is the common base class for the Solenoid and
- * DoubleSolenoid classes.
- * It also supports getting and setting the values of all solenoids on a given
- * module at the same time directly.
- */
-class SolenoidBase : public SensorBase {
-public:
-	explicit SolenoidBase(uint8_t moduleNumber);
-	virtual ~SolenoidBase();
-
-	void Set(uint8_t value, uint8_t mask);
-
-	uint8_t GetAll();
-  /**
-   * Set the value of all of the solenoids at the same time.
-   *
-   * @param value The values you want to set all of the solenoids to.
-   */
-  void SetAll(uint8_t value) { Set(value, 0xFF); }
-
-protected:
-	uint32_t m_moduleNumber; ///< Slot number where the module is plugged into the chassis.
-	static Resource *m_allocated;
-
-private:
-	static tSolenoid *m_fpgaSolenoidModule; ///< FPGA Solenoid Module object.
-	static uint32_t m_refCount; ///< Reference count for the chip object.
-	static ReentrantSemaphore m_semaphore;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/SpeedController.h b/aos/externals/WPILib/WPILib/SpeedController.h
deleted file mode 100644
index 7f88646..0000000
--- a/aos/externals/WPILib/WPILib/SpeedController.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef SPEED_CONTROLLER_H
-#define SPEED_CONTROLLER_H
-
-#include <vxWorks.h>
-#include "PIDOutput.h"
-
-/**
- * Interface for speed controlling devices.
- */
-class SpeedController : public PIDOutput
-{
-public:
-	virtual ~SpeedController() {};
-	/**
-	 * Common interface for setting the speed of a speed controller.
-	 * 
-	 * @param speed The speed to set.  Value should be between -1.0 and 1.0.
-	 * @param syncGroup The update group to add this Set() to, pending UpdateSyncGroup().  If 0, update immediately.
-	 */
-	virtual void Set(float speed, uint8_t syncGroup=0) = 0;
-	/**
-	 * Common interface for getting the current set speed of a speed controller.
-	 * 
-	 * @return The current set speed.  Value is between -1.0 and 1.0.
-	 */
-	virtual float Get() = 0;
-	/**
-	 * Common interface for disabling a motor.
-	 */
-	virtual void Disable() = 0;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Synchronized.cpp b/aos/externals/WPILib/WPILib/Synchronized.cpp
deleted file mode 100644
index fd133b5..0000000
--- a/aos/externals/WPILib/WPILib/Synchronized.cpp
+++ /dev/null
@@ -1,35 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Synchronized.h"
-
-/**
- * Synchronized class deals with critical regions.
- * Declare a Synchronized object at the beginning of a block. That will take the semaphore.
- * When the code exits from the block it will call the destructor which will give the semaphore.
- * This ensures that no matter how the block is exited, the semaphore will always be released.
- * Use the CRITICAL_REGION(SEM_ID) and END_REGION macros to make the code look cleaner (see header file)
- * @param semaphore The semaphore controlling this critical region.
- */
-Synchronized::Synchronized(SEM_ID semaphore)
-{
-	m_semaphore = semaphore;
-	semTake(m_semaphore, WAIT_FOREVER);
-}
-
-Synchronized::Synchronized(const ReentrantSemaphore& semaphore)
-{
-	m_semaphore = semaphore.m_semaphore;
-	semTake(m_semaphore, WAIT_FOREVER);
-}
-
-/**
- * This destructor unlocks the semaphore.
- */
-Synchronized::~Synchronized()
-{
-	semGive(m_semaphore);
-}
diff --git a/aos/externals/WPILib/WPILib/Synchronized.h b/aos/externals/WPILib/WPILib/Synchronized.h
deleted file mode 100644
index 4e44b0e..0000000
--- a/aos/externals/WPILib/WPILib/Synchronized.h
+++ /dev/null
@@ -1,98 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef SYNCHRONIZED_H
-#define SYNCHRONIZED_H
-
-#include <semLib.h>
-
-#include "Base.h"
-
-#define CRITICAL_REGION(s) { Synchronized _sync(s);
-#define END_REGION }
-
-class Synchronized;
-
-/**
- * Wrap a vxWorks semaphore (SEM_ID) for easier use in C++. For a static
- * instance, the constructor runs at program load time before main() can spawn
- * any tasks. Use that to fix race conditions in setup code.
- *
- * This uses a semM semaphore which is "reentrant" in the sense that the owning
- * task can "take" the semaphore more than once. It will need to "give" the
- * semaphore the same number of times to unlock it.
- *
- * This class is safe to use in static variables because it does not depend on
- * any other C++ static constructors or destructors.
- *
- * The instance methods are marked const because using this class from multiple
- * threads at once is safe and they don't actually modify the value of any of
- * the instance variables.
- */
-class ReentrantSemaphore
-{
-public:
-	ReentrantSemaphore() {
-		m_semaphore = semMCreate(SEM_Q_PRIORITY | SEM_DELETE_SAFE);
-	}
-	~ReentrantSemaphore() {
-		semDelete(m_semaphore);
-	}
-
-	/**
-	 * Lock the semaphore, blocking until it's available.
-	 * @return 0 for success, -1 for error. If -1, the error will be in errno.
-	 */
-	int take() const {
-		return semTake(m_semaphore, WAIT_FOREVER);
-	}
-
-	/**
-	 * Unlock the semaphore.
-	 * @return 0 for success, -1 for error. If -1, the error will be in errno.
-	 */
-	int give() const {
-		return semGive(m_semaphore);
-	}
-
-private:
-	SEM_ID m_semaphore;
-
-	friend class Synchronized;
-	DISALLOW_COPY_AND_ASSIGN(ReentrantSemaphore);
-};
-
-/**
- * Provide easy support for critical regions.
- *
- * A critical region is an area of code that is always executed under mutual exclusion. Only
- * one task can be executing this code at any time. The idea is that code that manipulates data
- * that is shared between two or more tasks has to be prevented from executing at the same time
- * otherwise a race condition is possible when both tasks try to update the data. Typically
- * semaphores are used to ensure only single task access to the data.
- *
- * Synchronized objects are a simple wrapper around semaphores to help ensure
- * that semaphores are always unlocked (semGive) after locking (semTake).
- *
- * You allocate a Synchronized as a local variable, *not* on the heap. That
- * makes it a "stack object" whose destructor runs automatically when it goes
- * out of scope. E.g.
- *
- *   { Synchronized _sync(aReentrantSemaphore); ... critical region ... }
- */
-class Synchronized
-{
-public:
-	explicit Synchronized(SEM_ID);
-	explicit Synchronized(const ReentrantSemaphore&);
-	~Synchronized();
-private:
-	SEM_ID m_semaphore;
-
-	DISALLOW_COPY_AND_ASSIGN(Synchronized);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Talon.cpp b/aos/externals/WPILib/WPILib/Talon.cpp
deleted file mode 100644
index b1081d4..0000000
--- a/aos/externals/WPILib/WPILib/Talon.cpp
+++ /dev/null
@@ -1,102 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Talon.h"
-
-#include "DigitalModule.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "LiveWindow/LiveWindow.h"
-
-/**
- * Common initialization code called by all constructors.
- *
- * Note that the Talon uses the following bounds for PWM values. These values should work reasonably well for
- * most controllers, but if users experience issues such as asymmetric behavior around
- * the deadband or inability to saturate the controller in either direction, calibration is recommended.
- * The calibration procedure can be found in the Talon User Manual available from CTRE.
- * 
- *   - 211 = full "forward"
- *   - 133 = the "high end" of the deadband range
- *   - 129 = center of the deadband range (off)
- *   - 125 = the "low end" of the deadband range
- *   - 49 = full "reverse"
- */
-void Talon::InitTalon() {
-	SetBounds(2.037, 1.539, 1.513, 1.487, .989);
-	SetPeriodMultiplier(kPeriodMultiplier_2X);
-	SetRaw(m_centerPwm);
-
-	nUsageReporting::report(nUsageReporting::kResourceType_Talon, GetChannel(), GetModuleNumber() - 1);
-	LiveWindow::GetInstance()->AddActuator("Talon", GetModuleNumber(), GetChannel(), this);
-}
-
-/**
- * Constructor that assumes the default digital module.
- * 
- * @param channel The PWM channel on the digital module that the Talon is attached to.
- */
-Talon::Talon(uint32_t channel) : SafePWM(channel)
-{
-	InitTalon();
-}
-
-/**
- * Constructor that specifies the digital module.
- * 
- * @param moduleNumber The digital module (1 or 2).
- * @param channel The PWM channel on the digital module that the Talon is attached to (1..10).
- */
-Talon::Talon(uint8_t moduleNumber, uint32_t channel) : SafePWM(moduleNumber, channel)
-{
-	InitTalon();
-}
-
-Talon::~Talon()
-{
-}
-
-/**
- * Set the PWM value.  
- * 
- * The PWM value is set using a range of -1.0 to 1.0, appropriately
- * scaling the value for the FPGA.
- * 
- * @param speed The speed value between -1.0 and 1.0 to set.
- * @param syncGroup Unused interface.
- */
-void Talon::Set(float speed, uint8_t syncGroup)
-{
-	SetSpeed(speed);
-}
-
-/**
- * Get the recently set value of the PWM.
- * 
- * @return The most recently set value for the PWM between -1.0 and 1.0.
- */
-float Talon::Get()
-{
-	return GetSpeed();
-}
-
-/**
- * Common interface for disabling a motor.
- */
-void Talon::Disable()
-{
-	SetRaw(kPwmDisabled);
-}
-
-/**
- * Write out the PID value as seen in the PIDOutput base object.
- * 
- * @param output Write out the PWM value as was found in the PIDController
- */
-void Talon::PIDWrite(float output) 
-{
-	Set(output);
-}
-
diff --git a/aos/externals/WPILib/WPILib/Talon.h b/aos/externals/WPILib/WPILib/Talon.h
deleted file mode 100644
index 89c396c..0000000
--- a/aos/externals/WPILib/WPILib/Talon.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef Talon_H
-#define Talon_H
-
-#include "SafePWM.h"
-#include "SpeedController.h"
-#include "PIDOutput.h"
-
-/**
- * CTRE Talon Speed Controller
- */
-class Talon : public SafePWM, public SpeedController
-{
-public:
-	explicit Talon(uint32_t channel);
-	Talon(uint8_t moduleNumber, uint32_t channel);
-	virtual ~Talon();
-	virtual void Set(float value, uint8_t syncGroup=0);
-	virtual float Get();
-	virtual void Disable();
-
-	virtual void PIDWrite(float output);
-
-private:
-	void InitTalon();
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Task.cpp b/aos/externals/WPILib/WPILib/Task.cpp
deleted file mode 100644
index c159202..0000000
--- a/aos/externals/WPILib/WPILib/Task.cpp
+++ /dev/null
@@ -1,230 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Task.h"
-
-#include "NetworkCommunication/UsageReporting.h"
-#include "WPIErrors.h"
-#include <errnoLib.h>
-#include <string.h>
-#include <taskLib.h>
-#include <usrLib.h>
-
-const uint32_t Task::kDefaultPriority;
-const int32_t Task::kInvalidTaskID;
-
-/**
- * Create but don't launch a task.
- * Does not use any floating point registers.
- * @param name The name of the task.  "FRC_" will be prepended to the task name.
- * @param function The address of the function to run as the new task.
- * @param priority The VxWorks priority for the task.
- * @param stackSize The size of the stack for the task
- */
-Task::Task(const char* name, FUNCPTR function, int32_t priority, uint32_t stackSize)
-{
-	m_taskID = kInvalidTaskID;
-	m_function = function;
-	m_priority = priority;
-	m_stackSize = stackSize;
-	m_taskName = new char[strlen(name) + 5];
-	strcpy(m_taskName, "FRC_");
-	strcpy(m_taskName+4, name);
-
-	static int32_t instances = 0;
-	instances++;
-	nUsageReporting::report(nUsageReporting::kResourceType_Task, instances, 0, m_taskName);
-}
-
-/**
- * Does not use any floating point registers.
- */
-Task::~Task()
-{
-	if (m_taskID != kInvalidTaskID) Stop();
-	delete [] m_taskName;
-	m_taskName = NULL;
-}
-
-/**
- * Starts this task.
- * Does not use any floating point registers.
- * @return true on success
- */
-bool Task::Start(uint32_t arg0, uint32_t arg1, uint32_t arg2, uint32_t arg3, uint32_t arg4, 
-		uint32_t arg5, uint32_t arg6, uint32_t arg7, uint32_t arg8, uint32_t arg9)
-{
-  // Don't have to lock m_prioritySemaphore because this code isn't changing it.
-	m_taskID = taskSpawn(m_taskName,
-						m_priority,
-						VX_FP_TASK,							// options
-						m_stackSize,						// stack size
-						m_function,							// function to start
-						arg0, arg1, arg2, arg3, arg4,	// parameters to pass to m_function
-						arg5, arg6, arg7, arg8, arg9);// additional parameters
-	bool ok = HandleError(m_taskID);
-	if (!ok) m_taskID = kInvalidTaskID;
-	return ok;
-}
-
-/**
- * Restarts a running task.
- * @return true on success
- */
-bool Task::Restart()
-{
-	return HandleError(taskRestart(m_taskID));
-}
-
-/**
- * Makes sure that the task is not running.
- * @returns true on success
- */
-bool Task::Stop()
-{
-	bool ok = true;
-	if (Verify())
-	{
-    STATUS result = taskDelete(m_taskID);
-    // If it got deleted between the Verify() and the taskDelete then it's not
-    // an actual error.
-    if (errno != S_objLib_OBJ_DELETED) {
-		  ok = HandleError(result);
-    }
-	}
-	m_taskID = kInvalidTaskID;
-	return ok;
-}
-
-/**
- * Returns true if the task is ready to execute (i.e. not suspended, delayed, or blocked).
- * @return true if ready, false if not ready.
- */
-bool Task::IsReady()
-{
-	return taskIsReady(m_taskID);
-}
-
-/**
- * Returns true if the task was explicitly suspended by calling Suspend()
- * @return true if suspended, false if not suspended.
- */
-bool Task::IsSuspended()
-{
-	return taskIsSuspended(m_taskID);
-}
-
-/**
- * Pauses a running task.
- * Returns true on success
- */
-bool Task::Suspend()
-{
-	return HandleError(taskSuspend(m_taskID));
-}
-
-/**
- * Resumes a paused task.
- * Returns true on success
- */
-bool Task::Resume()
-{
-	return HandleError(taskResume(m_taskID));
-}
-
-/**
- * Verifies a task still exists.
- * @returns true on success.
- */
-bool Task::Verify()
-{
-  if (m_taskID == kInvalidTaskID) return false;
-	return taskIdVerify(m_taskID) == OK;
-}
-
-/**
- * Gets the priority of a task.
- * @returns task priority or 0 if an error occured
- */
-int32_t Task::GetPriority()
-{
-  Synchronized sync(m_prioritySemaphore);
-	if (HandleError(taskPriorityGet(m_taskID, &m_priority)))
-		return m_priority;
-	else
-		return 0;
-}
-
-/**
- * This routine changes a task's priority to a specified priority.
- * Priorities range from 0, the highest priority, to 255, the lowest priority.
- * Default task priority is 100.
- * @param priority The priority the task should run at.
- * @returns true on success.
- */
-bool Task::SetPriority(int32_t priority)
-{
-  Synchronized sync(m_prioritySemaphore);
-	m_priority = priority;
-	return HandleError(taskPrioritySet(m_taskID, m_priority));
-}
-
-/**
- * Returns the name of the task.
- * @returns Pointer to the name of the task or NULL if not allocated
- */
-const char* Task::GetName()
-{
-	return m_taskName;
-}
-
-/**
- * Get the ID of a task
- * @returns Task ID of this task.  Task::kInvalidTaskID (-1) if the task has not been started or has already exited.
- */
-int32_t Task::GetID()
-{
-	if (Verify())
-		return m_taskID;
-	return kInvalidTaskID;
-}
-
-/**
- * Handles errors generated by task related code.
- * @return Whether or not this result is considered successful.
- */
-bool Task::HandleError(STATUS results)
-{
-	if (results != ERROR) return true;
-	switch(errnoGet())
-	{
-	case S_objLib_OBJ_ID_ERROR:
-		wpi_setWPIErrorWithContext(TaskIDError, m_taskName);
-		break;
-		
-	case S_objLib_OBJ_DELETED:
-		wpi_setWPIErrorWithContext(TaskDeletedError, m_taskName);
-		break;
-		
-	case S_taskLib_ILLEGAL_OPTIONS:
-		wpi_setWPIErrorWithContext(TaskOptionsError, m_taskName);
-		break;
-		
-	case S_memLib_NOT_ENOUGH_MEMORY:
-		wpi_setWPIErrorWithContext(TaskMemoryError, m_taskName);
-		break;
-		
-	case S_taskLib_ILLEGAL_PRIORITY:
-		wpi_setWPIErrorWithContext(TaskPriorityError, m_taskName);
-		break;
-
-	default:
-		printErrno(errnoGet());
-		wpi_setWPIErrorWithContext(TaskError, m_taskName);
-	}
-	return false;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Task.h b/aos/externals/WPILib/WPILib/Task.h
deleted file mode 100644
index dbd9295..0000000
--- a/aos/externals/WPILib/WPILib/Task.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __TASK_H__
-#define __TASK_H__
-
-#include "ErrorBase.h"
-#include <vxWorks.h>
-#include "Synchronized.h"
-
-/**
- * WPI task is a wrapper for a native VxWorks task.
- *
- * Some functions (documented) are guaranteed not to use any floating point so
- * that it is safe to use them from tasks that do not have the VX_FP_TASK flag
- * set (like during startup).
- **/
-class Task : public ErrorBase
-{
-public:
-	static const uint32_t kDefaultPriority = 101;
-	static const int32_t kInvalidTaskID = -1;
-
-	Task(const char* name, FUNCPTR function, int32_t priority = kDefaultPriority, uint32_t stackSize = 20000);
-	virtual ~Task();
-
-	bool Start(uint32_t arg0 = 0, uint32_t arg1 = 0, uint32_t arg2 = 0, uint32_t arg3 = 0, uint32_t arg4 = 0, 
-			uint32_t arg5 = 0, uint32_t arg6 = 0, uint32_t arg7 = 0, uint32_t arg8 = 0, uint32_t arg9 = 0);
-	bool Restart();
-	bool Stop();
-
-	bool IsReady();
-	bool IsSuspended();
-
-	bool Suspend();
-	bool Resume();
-
-	bool Verify();
-
-	int32_t GetPriority();
-	bool SetPriority(int32_t priority);
-	const char* GetName();
-	int32_t GetID();
-
-private:
-	FUNCPTR m_function;
-	char* m_taskName;
-	int32_t m_taskID;
-	uint32_t m_stackSize;
-	int m_priority;
-  ReentrantSemaphore m_prioritySemaphore;
-	bool HandleError(STATUS results);
-	DISALLOW_COPY_AND_ASSIGN(Task);
-};
-
-#endif // __TASK_H__
diff --git a/aos/externals/WPILib/WPILib/Timer.cpp b/aos/externals/WPILib/WPILib/Timer.cpp
deleted file mode 100644
index 576858e..0000000
--- a/aos/externals/WPILib/WPILib/Timer.cpp
+++ /dev/null
@@ -1,204 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Timer.h"
-
-#include <sysLib.h> // for sysClkRateGet
-#include <time.h>
-#include <usrLib.h> // for taskDelay
-
-#include "Synchronized.h"
-#include "Utility.h"
-#include "Global.h"
-
-/**
- * Pause the task for a specified time.
- * 
- * Pause the execution of the program for a specified period of time given in seconds.
- * Motors will continue to run at their last assigned values, and sensors will continue to
- * update. Only the task containing the wait will pause until the wait time is expired.
- * 
- * @param seconds Length of time to pause, in seconds.
- */
-void Wait(double seconds)
-{
-	if (seconds < 0.0) return;
-	taskDelay((int32_t)((double)sysClkRateGet() * seconds));
-}
-
-/*
- * Return the FPGA system clock time in seconds.
- * This is deprecated and just forwards to Timer::GetFPGATimestamp().
- * @returns Robot running time in seconds.
- */
-double GetClock()
-{
-	return Timer::GetFPGATimestamp();
-}
-
-/**
- * @brief Gives real-time clock system time with nanosecond resolution
- * @return The time, just in case you want the robot to start autonomous at 8pm on Saturday.
-*/
-double GetTime()  
-{
-	struct timespec tp;
-	
-	clock_gettime(CLOCK_REALTIME,&tp);
-	double realTime = (double)tp.tv_sec + (double)((double)tp.tv_nsec*1e-9);
-	
-	return (realTime);
-}
-
-/**
- * Create a new timer object.
- * 
- * Create a new timer object and reset the time to zero. The timer is initially not running and
- * must be started.
- */
-Timer::Timer()
-	: m_startTime (0.0)
-	, m_accumulatedTime (0.0)
-	, m_running (false)
-	, m_semaphore (0)
-{
-	//Creates a semaphore to control access to critical regions.
-	//Initially 'open'
-	m_semaphore = semMCreate(SEM_Q_PRIORITY | SEM_DELETE_SAFE | SEM_INVERSION_SAFE);
-	Reset();
-}
-
-Timer::~Timer()
-{
-	semDelete(m_semaphore);
-}
-
-/**
- * Get the current time from the timer. If the clock is running it is derived from
- * the current system clock the start time stored in the timer class. If the clock
- * is not running, then return the time when it was last stopped.
- * 
- * @return unsigned Current time value for this timer in seconds
- */
-double Timer::Get()
-{
-	double result;
-	double currentTime = GetFPGATimestamp();
-
-	Synchronized sync(m_semaphore);
-	if(m_running)
-	{
-		// This math won't work if the timer rolled over (71 minutes after boot).
-		// TODO: Check for it and compensate.
-		result = (currentTime - m_startTime) + m_accumulatedTime;
-	}
-	else
-	{
-		result = m_accumulatedTime;
-	}
-
-	return result;
-}
-
-/**
- * Reset the timer by setting the time to 0.
- * 
- * Make the timer startTime the current time so new requests will be relative to now
- */
-void Timer::Reset()
-{
-	Synchronized sync(m_semaphore);
-	m_accumulatedTime = 0;
-	m_startTime = GetFPGATimestamp();
-}
-
-/**
- * Start the timer running.
- * Just set the running flag to true indicating that all time requests should be
- * relative to the system clock.
- */
-void Timer::Start()
-{
-	Synchronized sync(m_semaphore);
-	if (!m_running)
-	{
-		m_startTime = GetFPGATimestamp();
-		m_running = true;
-	}
-}
-
-/**
- * Stop the timer.
- * This computes the time as of now and clears the running flag, causing all
- * subsequent time requests to be read from the accumulated time rather than
- * looking at the system clock.
- */
-void Timer::Stop()
-{
-	double temp = Get();
-
-	Synchronized sync(m_semaphore);
-	if (m_running)
-	{
-		m_accumulatedTime = temp;	
-		m_running = false;
-	}
-}
-
-/**
- * Check if the period specified has passed and if it has, advance the start
- * time by that period. This is useful to decide if it's time to do periodic
- * work without drifting later by the time it took to get around to checking.
- *
- * @param period The period to check for (in seconds).
- * @return If the period has passed.
- */
-bool Timer::HasPeriodPassed(double period)
-{
-	if (Get() > period)
-	{
-		Synchronized sync(m_semaphore);
-		// Advance the start time by the period.
-		// Don't set it to the current time... we want to avoid drift.
-		m_startTime += period;
-		return true;
-	}
-	return false;
-}
-
-/*
- * Return the FPGA system clock time in seconds.
- * 
- * Return the time from the FPGA hardware clock in seconds since the FPGA
- * started.
- * Rolls over after 71 minutes.
- * @returns Robot running time in seconds.
- */
-double Timer::GetFPGATimestamp()
-{
-	// FPGA returns the timestamp in microseconds
-	// Call the helper GetFPGATime() in Utility.cpp
-	return Global::GetInstance()->GetFPGATime() * 1.0e-6;
-}
-
-// Internal function that reads the PPC timestamp counter.
-extern "C"
-{
-	uint32_t niTimestamp32(void);
-	uint64_t niTimestamp64(void);
-}
-
-/*
- * Return the PowerPC timestamp since boot in seconds.
- * 
- * This is lower overhead than GetFPGATimestamp() but not synchronized with other FPGA timestamps.
- * @returns Robot running time in seconds.
- */
-double Timer::GetPPCTimestamp()
-{
-	// PPC system clock is 33MHz
-	return niTimestamp64() / 33.0e6;
-}
diff --git a/aos/externals/WPILib/WPILib/Timer.h b/aos/externals/WPILib/WPILib/Timer.h
deleted file mode 100644
index c4cbf65..0000000
--- a/aos/externals/WPILib/WPILib/Timer.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef TIMER_H_
-#define TIMER_H_
-
-#include "semLib.h"
-#include "Base.h"
-
-typedef void (*TimerInterruptHandler)(void *param);
-
-void Wait(double seconds);
-double GetClock();
-double GetTime();
-
-
-/**
- * Timer objects measure accumulated time in seconds.
- * The timer object functions like a stopwatch. It can be started, stopped, and cleared. When the
- * timer is running its value counts up in seconds. When stopped, the timer holds the current
- * value. The implementation simply records the time when started and subtracts the current time
- * whenever the value is requested.
- */
-class Timer
-{
-public:
-	Timer();
-	virtual ~Timer();
-	double Get();
-	void Reset();
-	void Start();
-	void Stop();
-	bool HasPeriodPassed(double period);
-
-	static double GetFPGATimestamp();
-	static double GetPPCTimestamp();
-
-private:
-	double m_startTime;
-	double m_accumulatedTime;
-	bool m_running;
-	SEM_ID m_semaphore;
-	DISALLOW_COPY_AND_ASSIGN(Timer);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Ultrasonic.cpp b/aos/externals/WPILib/WPILib/Ultrasonic.cpp
deleted file mode 100644
index 19b773b..0000000
--- a/aos/externals/WPILib/WPILib/Ultrasonic.cpp
+++ /dev/null
@@ -1,361 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Ultrasonic.h"
-
-#include "Counter.h"
-#include "DigitalInput.h"
-#include "DigitalOutput.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "Timer.h"
-#include "Utility.h"
-#include "WPIErrors.h"
-#include "LiveWindow/LiveWindow.h"
-
-constexpr double Ultrasonic::kPingTime;	///< Time (sec) for the ping trigger pulse.
-const uint32_t Ultrasonic::kPriority;	///< Priority that the ultrasonic round robin task runs.
-constexpr double Ultrasonic::kMaxUltrasonicTime;	///< Max time (ms) between readings.
-constexpr double Ultrasonic::kSpeedOfSoundInchesPerSec;
-Task Ultrasonic::m_task("UltrasonicChecker", (FUNCPTR)UltrasonicChecker); // task doing the round-robin automatic sensing
-Ultrasonic *Ultrasonic::m_firstSensor = NULL; // head of the ultrasonic sensor list
-bool Ultrasonic::m_automaticEnabled = false; // automatic round robin mode
-SEM_ID Ultrasonic::m_semaphore = 0;
-
-/**
- * Background task that goes through the list of ultrasonic sensors and pings each one in turn. The counter
- * is configured to read the timing of the returned echo pulse.
- * 
- * DANGER WILL ROBINSON, DANGER WILL ROBINSON:
- * This code runs as a task and assumes that none of the ultrasonic sensors will change while it's
- * running. If one does, then this will certainly break. Make sure to disable automatic mode before changing
- * anything with the sensors!!
- */
-void Ultrasonic::UltrasonicChecker()
-{
-	Ultrasonic *u = NULL;
-	while (m_automaticEnabled)
-	{
-		if (u == NULL) u = m_firstSensor;
-		if (u == NULL) return;
-		if (u->IsEnabled())
-			u->m_pingChannel->Pulse(kPingTime);	// do the ping
-		u = u->m_nextSensor;
-		Wait(0.1);							// wait for ping to return
-	}
-}
-
-/**
- * Initialize the Ultrasonic Sensor.
- * This is the common code that initializes the ultrasonic sensor given that there
- * are two digital I/O channels allocated. If the system was running in automatic mode (round robin)
- * when the new sensor is added, it is stopped, the sensor is added, then automatic mode is
- * restored.
- */
-void Ultrasonic::Initialize()
-{
-	m_table = NULL;
-	bool originalMode = m_automaticEnabled;
-	if (m_semaphore == 0) m_semaphore = semBCreate(SEM_Q_PRIORITY, SEM_FULL);
-	SetAutomaticMode(false); // kill task when adding a new sensor
-	semTake(m_semaphore, WAIT_FOREVER); // link this instance on the list
-	{
-		m_nextSensor = m_firstSensor;
-		m_firstSensor = this;
-	}
-	semGive(m_semaphore);
-
-	m_counter = new Counter(m_echoChannel); // set up counter for this sensor
-	m_counter->SetMaxPeriod(1.0);
-	m_counter->SetSemiPeriodMode(true);
-	m_counter->Reset();
-	m_counter->Start();
-	m_enabled = true; // make it available for round robin scheduling
-	SetAutomaticMode(originalMode);
-
-	static int instances = 0;
-	instances++;
-	nUsageReporting::report(nUsageReporting::kResourceType_Ultrasonic, instances);
-	LiveWindow::GetInstance()->AddSensor("Ultrasonic", m_echoChannel->GetModuleForRouting(), m_echoChannel->GetChannel(), this);
-}
-
-/**
- * Create an instance of the Ultrasonic Sensor using the default module.
- * This is designed to supchannel the Daventech SRF04 and Vex ultrasonic sensors. This
- * constructor assumes that both digital I/O channels are in the default digital module.
- * @param pingChannel The digital output channel that sends the pulse to initiate the sensor sending
- * the ping.
- * @param echoChannel The digital input channel that receives the echo. The length of time that the
- * echo is high represents the round trip time of the ping, and the distance.
- * @param units The units returned in either kInches or kMilliMeters
- */
-Ultrasonic::Ultrasonic(uint32_t pingChannel, uint32_t echoChannel, DistanceUnit units)
-{
-	m_pingChannel = new DigitalOutput(pingChannel);
-	m_echoChannel = new DigitalInput(echoChannel);
-	m_allocatedChannels = true;
-	m_units = units;
-	Initialize();
-}
-
-/**
- * Create an instance of an Ultrasonic Sensor from a DigitalInput for the echo channel and a DigitalOutput
- * for the ping channel.
- * @param pingChannel The digital output object that starts the sensor doing a ping. Requires a 10uS pulse to start.
- * @param echoChannel The digital input object that times the return pulse to determine the range.
- * @param units The units returned in either kInches or kMilliMeters
- */
-Ultrasonic::Ultrasonic(DigitalOutput *pingChannel, DigitalInput *echoChannel, DistanceUnit units)
-{
-	if (pingChannel == NULL || echoChannel == NULL)
-	{
-		wpi_setWPIError(NullParameter);
-		return;
-	}
-	m_allocatedChannels = false;
-	m_pingChannel = pingChannel;
-	m_echoChannel = echoChannel;
-	m_units = units;
-	Initialize();
-}
-
-/**
- * Create an instance of an Ultrasonic Sensor from a DigitalInput for the echo channel and a DigitalOutput
- * for the ping channel.
- * @param pingChannel The digital output object that starts the sensor doing a ping. Requires a 10uS pulse to start.
- * @param echoChannel The digital input object that times the return pulse to determine the range.
- * @param units The units returned in either kInches or kMilliMeters
- */
-Ultrasonic::Ultrasonic(DigitalOutput &pingChannel, DigitalInput &echoChannel, DistanceUnit units)
-{
-	m_allocatedChannels = false;
-	m_pingChannel = &pingChannel;
-	m_echoChannel = &echoChannel;
-	m_units = units;
-	Initialize();
-}
-
-/**
- * Create an instance of the Ultrasonic sensor using specified modules.
- * This is designed to supchannel the Daventech SRF04 and Vex ultrasonic sensors. This
- * constructors takes the channel and module slot for each of the required digital I/O channels.
- * @param pingModuleNumber The digital module that the pingChannel is on.
- * @param pingChannel The digital output channel that sends the pulse to initiate the sensor
- * sending the ping.
- * @param echoModuleNumber The digital module that the echoChannel is on.
- * @param echoChannel The digital input channel that receives the echo. The length of time
- * that the echo is high represents the round trip time of the ping, and the distance.
- * @param units The units returned in either kInches or kMilliMeters
- */
-Ultrasonic::Ultrasonic(uint8_t pingModuleNumber, uint32_t pingChannel,
-		uint8_t echoModuleNumber, uint32_t echoChannel, DistanceUnit units)
-{
-	m_pingChannel = new DigitalOutput(pingModuleNumber, pingChannel);
-	m_echoChannel = new DigitalInput(echoModuleNumber, echoChannel);
-	m_allocatedChannels = true;
-	m_units = units;
-	Initialize();
-}
-
-/**
- * Destructor for the ultrasonic sensor.
- * Delete the instance of the ultrasonic sensor by freeing the allocated digital channels.
- * If the system was in automatic mode (round robin), then it is stopped, then started again
- * after this sensor is removed (provided this wasn't the last sensor).
- */
-Ultrasonic::~Ultrasonic()
-{
-	bool wasAutomaticMode = m_automaticEnabled;
-	SetAutomaticMode(false);
-	if (m_allocatedChannels)
-	{
-		delete m_pingChannel;
-		delete m_echoChannel;
-	}
-	wpi_assert(m_firstSensor != NULL);
-
-	semTake(m_semaphore, WAIT_FOREVER);
-	{
-		if (this == m_firstSensor)
-		{
-			m_firstSensor = m_nextSensor;
-			if (m_firstSensor == NULL)
-			{
-				SetAutomaticMode(false);
-			}
-		}
-		else
-		{
-			wpi_assert(m_firstSensor->m_nextSensor != NULL);
-			for (Ultrasonic *s = m_firstSensor; s != NULL; s = s->m_nextSensor)
-			{
-				if (this == s->m_nextSensor)
-				{
-					s->m_nextSensor = s->m_nextSensor->m_nextSensor;
-					break;
-				}
-			}
-		}
-	}
-	semGive(m_semaphore);
-	if (m_firstSensor != NULL && wasAutomaticMode)
-		SetAutomaticMode(true);
-}
-
-/**
- * Turn Automatic mode on/off.
- * When in Automatic mode, all sensors will fire in round robin, waiting a set
- * time between each sensor.
- * @param enabling Set to true if round robin scheduling should start for all the ultrasonic sensors. This
- * scheduling method assures that the sensors are non-interfering because no two sensors fire at the same time.
- * If another scheduling algorithm is preffered, it can be implemented by pinging the sensors manually and waiting
- * for the results to come back.
- */
-void Ultrasonic::SetAutomaticMode(bool enabling)
-{
-	if (enabling == m_automaticEnabled)
-		return; // ignore the case of no change
-
-	m_automaticEnabled = enabling;
-	if (enabling)
-	{
-		// enabling automatic mode.
-		// Clear all the counters so no data is valid
-		for (Ultrasonic *u = m_firstSensor; u != NULL; u = u->m_nextSensor)
-		{
-			u->m_counter->Reset();
-		}
-		// Start round robin task
-		wpi_assert(m_task.Verify() == false);	// should be false since was previously disabled
-		m_task.Start();
-	}
-	else
-	{
-		// disabling automatic mode. Wait for background task to stop running.
-		while (m_task.Verify())
-			Wait(0.15);	// just a little longer than the ping time for round-robin to stop
-
-		// clear all the counters (data now invalid) since automatic mode is stopped
-		for (Ultrasonic *u = m_firstSensor; u != NULL; u = u->m_nextSensor)
-		{
-			u->m_counter->Reset();
-		}
-		m_task.Stop();
-	}
-}
-
-/**
- * Single ping to ultrasonic sensor.
- * Send out a single ping to the ultrasonic sensor. This only works if automatic (round robin)
- * mode is disabled. A single ping is sent out, and the counter should count the semi-period
- * when it comes in. The counter is reset to make the current value invalid.
- */
-void Ultrasonic::Ping()
-{
-	// TODO: Either assert or disable, not both.
-	wpi_assert(!m_automaticEnabled);
-	SetAutomaticMode(false); // turn off automatic round robin if pinging single sensor
-	m_counter->Reset(); // reset the counter to zero (invalid data now)
-	m_pingChannel->Pulse(kPingTime); // do the ping to start getting a single range
-}
-
-/**
- * Check if there is a valid range measurement.
- * The ranges are accumulated in a counter that will increment on each edge of the echo (return)
- * signal. If the count is not at least 2, then the range has not yet been measured, and is invalid.
- */
-bool Ultrasonic::IsRangeValid()
-{
-	return m_counter->Get() > 1;
-}
-
-/**
- * Get the range in inches from the ultrasonic sensor.
- * @return double Range in inches of the target returned from the ultrasonic sensor. If there is
- * no valid value yet, i.e. at least one measurement hasn't completed, then return 0.
- */
-double Ultrasonic::GetRangeInches()
-{
-	if (IsRangeValid())
-		return m_counter->GetPeriod() * kSpeedOfSoundInchesPerSec / 2.0;
-	else
-		return 0;
-}
-
-/**
- * Get the range in millimeters from the ultrasonic sensor.
- * @return double Range in millimeters of the target returned by the ultrasonic sensor.
- * If there is no valid value yet, i.e. at least one measurement hasn't complted, then return 0.
- */
-double Ultrasonic::GetRangeMM()
-{
-	return GetRangeInches() * 25.4;
-}
-
-/**
- * Get the range in the current DistanceUnit for the PIDSource base object.
- * 
- * @return The range in DistanceUnit
- */
-double Ultrasonic::PIDGet()
-{
-	switch(m_units) 
-	{
-	case Ultrasonic::kInches:
-		return GetRangeInches();
-	case Ultrasonic::kMilliMeters:
-		return GetRangeMM();
-	default:
-		return 0.0;
-	}
-}
-
-/**
- * Set the current DistanceUnit that should be used for the PIDSource base object.
- * 
- * @param units The DistanceUnit that should be used.
- */
-void Ultrasonic::SetDistanceUnits(DistanceUnit units)
-{
-	m_units = units;
-}
-
-/**
- * Get the current DistanceUnit that is used for the PIDSource base object.
- * 
- * @return The type of DistanceUnit that is being used.
- */
-Ultrasonic::DistanceUnit Ultrasonic::GetDistanceUnits()
-{
-	return m_units;
-}
-
-void Ultrasonic::UpdateTable() {
-	if (m_table != NULL) {
-		m_table->PutNumber("Value", GetRangeInches());
-	}
-}
-
-void Ultrasonic::StartLiveWindowMode() {
-	
-}
-
-void Ultrasonic::StopLiveWindowMode() {
-	
-}
-
-std::string Ultrasonic::GetSmartDashboardType() {
-	return "Ultrasonic";
-}
-
-void Ultrasonic::InitTable(ITable *subTable) {
-	m_table = subTable;
-	UpdateTable();
-}
-
-ITable * Ultrasonic::GetTable() {
-	return m_table;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Ultrasonic.h b/aos/externals/WPILib/WPILib/Ultrasonic.h
deleted file mode 100644
index 3d7fba3..0000000
--- a/aos/externals/WPILib/WPILib/Ultrasonic.h
+++ /dev/null
@@ -1,90 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef ULTRASONIC_H_
-#define ULTRASONIC_H_
-
-#include "SensorBase.h"
-#include "Task.h"
-#include "PIDSource.h"
-#include "LiveWindow/LiveWindowSendable.h"
-
-class Counter;
-class DigitalInput;
-class DigitalOutput;
-
-/**
- * Ultrasonic rangefinder class.
- * The Ultrasonic rangefinder measures absolute distance based on the round-trip time
- * of a ping generated by the controller. These sensors use two transducers, a speaker and
- * a microphone both tuned to the ultrasonic range. A common ultrasonic sensor, the Daventech SRF04
- * requires a short pulse to be generated on a digital channel. This causes the chirp to be
- * emmitted. A second line becomes high as the ping is transmitted and goes low when
- * the echo is received. The time that the line is high determines the round trip distance
- * (time of flight).
- */
-class Ultrasonic: public SensorBase, public PIDSource, public LiveWindowSendable
-{
-public:
-	typedef enum {
-		kInches = 0,
-		kMilliMeters = 1
-	} DistanceUnit;
-	
-	Ultrasonic(DigitalOutput *pingChannel, DigitalInput *echoChannel, DistanceUnit units = kInches);
-	Ultrasonic(DigitalOutput &pingChannel, DigitalInput &echoChannel, DistanceUnit units = kInches);
-	Ultrasonic(uint32_t pingChannel, uint32_t echoChannel, DistanceUnit units = kInches);
-	Ultrasonic(uint8_t pingModuleNumber, uint32_t pingChannel,
-							uint8_t echoModuleNumber, uint32_t echoChannel, DistanceUnit units = kInches);
-	virtual ~Ultrasonic();
-
-	void Ping();
-	bool IsRangeValid();
-	static void SetAutomaticMode(bool enabling);
-	double GetRangeInches();
-	double GetRangeMM();
-	bool IsEnabled() { return m_enabled; }
-	void SetEnabled(bool enable) { m_enabled = enable; }
-	
-	double PIDGet();
-	void SetDistanceUnits(DistanceUnit units);
-	DistanceUnit GetDistanceUnits();
-
-	void UpdateTable();
-	void StartLiveWindowMode();
-	void StopLiveWindowMode();
-	std::string GetSmartDashboardType();
-	void InitTable(ITable *subTable);
-	ITable * GetTable();
-
-private:
-	void Initialize();
-
-	static void UltrasonicChecker();
-
-	static constexpr double kPingTime = 10 * 1e-6;	///< Time (sec) for the ping trigger pulse.
-	static const uint32_t kPriority = 90;	///< Priority that the ultrasonic round robin task runs.
-	static constexpr double kMaxUltrasonicTime = 0.1;	///< Max time (ms) between readings.
-	static constexpr double kSpeedOfSoundInchesPerSec = 1130.0 * 12.0;
-
-	static Task m_task; // task doing the round-robin automatic sensing
-	static Ultrasonic *m_firstSensor; // head of the ultrasonic sensor list
-	static bool m_automaticEnabled; // automatic round robin mode
-	static SEM_ID m_semaphore; // synchronize access to the list of sensors
-
-	DigitalInput *m_echoChannel;
-	DigitalOutput *m_pingChannel;
-	bool m_allocatedChannels;
-	bool m_enabled;
-	Counter *m_counter;
-	Ultrasonic *m_nextSensor;
-	DistanceUnit m_units;
-	
-	ITable *m_table;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Utility.cpp b/aos/externals/WPILib/WPILib/Utility.cpp
deleted file mode 100644
index 2ace5da..0000000
--- a/aos/externals/WPILib/WPILib/Utility.cpp
+++ /dev/null
@@ -1,309 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Utility.h"
-
-#include "NetworkCommunication/FRCComm.h"
-#include "Task.h"
-#include <dbgLib.h>
-#include <stdio.h>
-#include <taskLib.h>
-#include <sysSymTbl.h>
-#include "nivision.h"
-
-#define DBG_DEMANGLE_PRINT_LEN MAX_SYS_SYM_LEN  /* Num chars of demangled names to print */
-
-extern "C"
-{
-	extern char * cplusDemangle (char *source, char *dest, int32_t n);
-}
-
-void wpi_getLabel(UINT addr, char *label, int32_t *found)
-{
-	int pVal;
-	SYM_TYPE pType;
-	char name[MAX_SYS_SYM_LEN + 1];
-  static const size_t kLabelSize = DBG_DEMANGLE_PRINT_LEN + 1 + 11;
-	bzero(label, kLabelSize);
-
-	if (symFindByValue(sysSymTbl, addr, name, &pVal, &pType) == OK)
-	{
-		cplusDemangle(name, label, kLabelSize - 11);
-		if ((UINT)pVal != addr)
-		{
-			snprintf(label + strlen(label), kLabelSize - strlen(label), "+0x%04x", addr-pVal);
-			if (found) *found = 2;
-		}
-		else
-		{
-			if (found) *found = 1;
-		}
-	}
-	else
-	{
-		snprintf(label, kLabelSize, "0x%04x", addr);
-		if (found) *found = 0;
-	}
-}
-/*
-static void wpiTracePrint(INSTR *caller, int32_t func, int32_t nargs, int32_t *args, int32_t taskId, BOOL isKernelAdrs)
-{
-	char buf [MAX_SYS_SYM_LEN * 2];
-	int32_t ix;
-	int32_t len = 0;
-	len += snprintf (&buf [len], sizeof(buf) - len, "%s <%#010x>: ", wpi_getLabel((UINT)caller), (int32_t)caller);
-	len += snprintf (&buf [len], sizeof(buf) - len, "%s <%#010x> (", wpi_getLabel((UINT)func), func);
-	for (ix = 0; ix < nargs; ix++)
-	{
-		if (ix != 0) {
-			len += snprintf (&buf [len], sizeof(buf) - len, ", ");
-    }
-		len += snprintf (&buf [len], sizeof(buf) - len, "%#x", args [ix]);
-	}
-	len += snprintf (&buf [len], sizeof(buf) - len, ")\n");
-
-	printf(buf);
-}
-*/
-static void wpiCleanTracePrint(INSTR *caller, int32_t func, int32_t nargs, int32_t *args, int32_t taskId, BOOL isKernelAdrs)
-{
-	char buf [MAX_SYS_SYM_LEN];
-	int32_t ix;
-	int32_t len = 0;
-	int32_t nameFound = 0;
-	int32_t params = 0;
-	int32_t totalnargs = nargs;
-  char funcName[DBG_DEMANGLE_PRINT_LEN + 1 + 11];
-	wpi_getLabel((UINT)func, funcName, &nameFound);
-	// Ignore names that are not exact symbol address matches.
-	if (nameFound != 1) return;
-
-	// Ignore internal function name matches.
-	if (strncmp(funcName, "wpi_assert", 10) == 0) return;
-	if (strncmp(funcName, "wpi_fatal", 9) == 0) return;
-	if (strncmp(funcName, "wpi_selfTrace", 13) == 0) return;
-	if (strncmp(funcName, "Error::Set", 10) == 0) return;
-	if (strncmp(funcName, "ErrorBase::SetError", 19) == 0) return;
-	if (strncmp(funcName, "Error::Report", 13) == 0) return;
-
-	// Find the number of arguments in the name string.
-	char *start = strchr(funcName, '(');
-	char *end = strrchr(funcName, ')');
-	if (start + 1 != end && start != NULL)
-	{
-		do
-		{
-			params++;
-			if(strncmp(start+1, "bool", 4) == 0 || strncmp(start+2, "bool", 4) == 0)
-			{
-				totalnargs++;
-			}
-			start = strchr(start + 1, ',');
-		}
-		while(start < end && start != NULL);
-	}
-	char *funcNameEnd = strchr(funcName, '(');
-	*funcNameEnd = 0;
-	len += snprintf (buf + len, sizeof(buf) - len, funcName);
-
-	// If this is a member function, print out the this pointer value.
-	if (totalnargs - params == 1)
-	{
-		len += snprintf (&buf [len], sizeof(buf) - len, "<this=%#lx>", args [0]);
-	}
-
-	// Print out the argument values.
-	len += snprintf (buf + len, sizeof(buf) - len, "(");
-	for (ix = totalnargs - params; ix < nargs; ix++)
-	{
-		if (ix != totalnargs - params) {
-			len += snprintf (&buf [len], sizeof(buf) - len, ", ");
-    }
-		len += snprintf (&buf [len], sizeof(buf) - len, "%#lx", args [ix]);
-	}
-	len += snprintf (buf + len, sizeof(buf) - len, ")\n");
-
-	printf(buf);
-}
-
-extern "C"
-{
-	extern void trcStack(REG_SET* pRegs, FUNCPTR printRtn, int32_t tid);
-}
-
-static int32_t wpiStackTask(int32_t taskId)
-{
-  // Make sure it's suspended in spite of any scheduler weirdness or whatever.
-  while (!taskIsSuspended(taskId)) {
-	  taskDelay(1);
-  }
-
-	//tt(taskId);
-
-	REG_SET regs;
-	taskRegsGet(taskId, &regs);
-	trcStack(&regs, (FUNCPTR) wpiCleanTracePrint, taskId);
-	printf("\n");
-
-	// The task should be resumed because it had to be suspended to get the stack trace.
-	taskResume(taskId);
-	return 0;
-}
-
-void wpi_selfTrace()
-{
-	int priority=100;
-	taskPriorityGet(0, &priority);
-	// Lower priority than the calling task.
-	Task traceTask("StackTrace", (FUNCPTR)wpiStackTask, priority + 1);
-	traceTask.Start(taskIdSelf());
-
-	// Task to be traced must be suspended for the stack trace to work.
-	taskSuspend(0);
-}
-
-static bool stackTraceEnabled = false;
-static bool suspendOnAssertEnabled = false;
-
-/**
- * Enable Stack trace after asserts.
- */
-void wpi_stackTraceOnAssertEnable(bool enabled)
-{
-	stackTraceEnabled = enabled;
-}
-
-/**
- * Enable suspend on asssert.
- * If enabled, the user task will be suspended whenever an assert fails. This
- * will allow the user to attach to the task with the debugger and examine variables
- * around the failure.
- */
-void wpi_suspendOnAssertEnabled(bool enabled)
-{
-	suspendOnAssertEnabled = enabled;
-}
-
-static void wpi_handleTracing()
-{
-	if (stackTraceEnabled)
-	{
-		printf("\n-----------<Stack Trace>----------------\n");
-		wpi_selfTrace();
-	}
-	printf("\n");
-}
-
-/**
- * Assert implementation.
- * This allows breakpoints to be set on an assert.
- * The users don't call this, but instead use the wpi_assert macros in Utility.h.
- */
-bool wpi_assert_impl(bool conditionValue, 
-					 const char *conditionText,
-					 const char *message,
-					 const char *fileName,
-					 uint32_t lineNumber, 
-					 const char *funcName)
-{
-	if (!conditionValue)
-	{   
-		// Error string buffer
-		char error[256];
-				
-		// If an error message was specified, include it
-		// Build error string
-		if(message != NULL) {
-			snprintf(error, sizeof(error), "Assertion failed: \"%s\", \"%s\" failed in %s() in %s at line %ld\n",
-							 message, conditionText, funcName, fileName, lineNumber);
-		} else {
-			snprintf(error, sizeof(error), "Assertion failed: \"%s\" in %s() in %s at line %ld\n",
-							 conditionText, funcName, fileName, lineNumber);
-		}
-		
-		// Print to console and send to remote dashboard
-		printf("\n\n>>>>%s", error);
-		setErrorData(error, strlen(error), 100);
-		
-		wpi_handleTracing();
-		if (suspendOnAssertEnabled) taskSuspend(0);
-	}
-	return conditionValue;
-}
-
-/**
- * Common error routines for wpi_assertEqual_impl and wpi_assertNotEqual_impl
- * This should not be called directly; it should only be used by wpi_assertEqual_impl
- * and wpi_assertNotEqual_impl.
- */
-void wpi_assertEqual_common_impl(int valueA,
-					 	         int valueB,
-					 	         const char *equalityType,
-						         const char *message,
-						         const char *fileName,
-						         uint32_t lineNumber, 
-						         const char *funcName)
-{
-	// Error string buffer
-	char error[256];
-			
-	// If an error message was specified, include it
-	// Build error string
-	if(message != NULL) {
-		snprintf(error, sizeof(error), "Assertion failed: \"%s\", \"%d\" %s \"%d\" in %s() in %s at line %ld\n",
-						 message, valueA, equalityType, valueB, funcName, fileName, lineNumber);
-	} else {
-		snprintf(error, sizeof(error), "Assertion failed: \"%d\" %s \"%d\" in %s() in %s at line %ld\n",
-						 valueA, equalityType, valueB, funcName, fileName, lineNumber);
-	}
-	
-	// Print to console and send to remote dashboard
-	printf("\n\n>>>>%s", error);
-	setErrorData(error, strlen(error), 100);
-	
-	wpi_handleTracing();
-	if (suspendOnAssertEnabled) taskSuspend(0);
-}
-
-/**
- * Assert equal implementation.
- * This determines whether the two given integers are equal. If not,
- * the value of each is printed along with an optional message string.
- * The users don't call this, but instead use the wpi_assertEqual macros in Utility.h.
- */
-bool wpi_assertEqual_impl(int valueA,
-					 	  int valueB,
-						  const char *message,
-						  const char *fileName,
-						  uint32_t lineNumber, 
-						  const char *funcName)
-{
-	if(!(valueA == valueB))
-	{
-		wpi_assertEqual_common_impl(valueA, valueB, "!=", message, fileName, lineNumber, funcName);
-	}
-	return valueA == valueB;
-}
-
-/**
- * Assert not equal implementation.
- * This determines whether the two given integers are equal. If so,
- * the value of each is printed along with an optional message string.
- * The users don't call this, but instead use the wpi_assertNotEqual macros in Utility.h.
- */
-bool wpi_assertNotEqual_impl(int valueA,
-					 	     int valueB,
-						     const char *message,
-						     const char *fileName,
-						     uint32_t lineNumber, 
-						     const char *funcName)
-{
-	if(!(valueA != valueB))
-	{
-		wpi_assertEqual_common_impl(valueA, valueB, "==", message, fileName, lineNumber, funcName);
-	}
-	return valueA != valueB;
-}
diff --git a/aos/externals/WPILib/WPILib/Utility.h b/aos/externals/WPILib/WPILib/Utility.h
deleted file mode 100644
index bb6d0d0..0000000
--- a/aos/externals/WPILib/WPILib/Utility.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*---------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							 */
-/* Open Source Software - may be modified and shared by FRC teams. The code  */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
-/*---------------------------------------------------------------------------*/
-
-#ifndef UTILITY_H_
-#define UTILITY_H_
-
-#include <taskLib.h>
-
-#define wpi_assert(condition) wpi_assert_impl(condition, #condition, NULL, __FILE__, __LINE__, __FUNCTION__)
-#define wpi_assertWithMessage(condition, message) wpi_assert_impl(condition, #condition, message, __FILE__, __LINE__, __FUNCTION__)
-
-#define wpi_assertEqual(a, b) wpi_assertEqual_impl(a, b, NULL, __FILE__, __LINE__, __FUNCTION__)
-#define wpi_assertEqualWithMessage(a, b, message) wpi_assertEqual_impl(a, b, message, __FILE__, __LINE__, __FUNCTION__)
-
-#define wpi_assertNotEqual(a, b) wpi_assertNotEqual_impl(a, b, NULL, __FILE__, __LINE__, __FUNCTION__)
-#define wpi_assertNotEqualWithMessage(a, b, message) wpi_assertNotEqual_impl(a, b, message, __FILE__, __LINE__, __FUNCTION__)
-
-bool wpi_assert_impl(bool conditionValue, const char *conditionText, const char *message, const char *fileName, uint32_t lineNumber, const char *funcName);
-bool wpi_assertEqual_impl(int valueA, int valueB, const char *message, const char *fileName,uint32_t lineNumber, const char *funcName);
-bool wpi_assertNotEqual_impl(int valueA, int valueB, const char *message, const char *fileName,uint32_t lineNumber, const char *funcName);
-
-// Will use up to (DBG_DEMANGLE_PRINT_LEN + 1 + 11) of label.
-void wpi_getLabel(UINT addr, char *label, int32_t *found = NULL);
-void wpi_selfTrace();
-void wpi_suspendOnAssertEnabled(bool enabled);
-void wpi_stackTraceOnAssertEnable(bool enabled);
-
-#endif // UTILITY_H_
diff --git a/aos/externals/WPILib/WPILib/Victor.cpp b/aos/externals/WPILib/WPILib/Victor.cpp
deleted file mode 100644
index c8a0565..0000000
--- a/aos/externals/WPILib/WPILib/Victor.cpp
+++ /dev/null
@@ -1,104 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Victor.h"
-
-#include "DigitalModule.h"
-#include "NetworkCommunication/UsageReporting.h"
-#include "LiveWindow/LiveWindow.h"
-
-/**
- * Common initialization code called by all constructors.
- *
- * Note that the Victor uses the following bounds for PWM values.  These values were determined
- * empirically and optimized for the Victor 888. These values should work reasonably well for
- * Victor 884 controllers as well but if users experience issues such as asymmetric behavior around
- * the deadband or inability to saturate the controller in either direction, calibration is recommended.
- * The calibration procedure can be found in the Victor 884 User Manual available from IFI.
- * 
- *   - 206 = full "forward"
- *   - 131 = the "high end" of the deadband range
- *   - 128 = center of the deadband range (off)
- *   - 125 = the "low end" of the deadband range
- *   - 56 = full "reverse"
- */
-void Victor::InitVictor() {
-	SetBounds(2.027, 1.525, 1.507, 1.49, 1.026);
-	
-	SetPeriodMultiplier(kPeriodMultiplier_2X);
-	SetRaw(m_centerPwm);
-
-	LiveWindow::GetInstance()->AddActuator("Victor", GetModuleNumber(), GetChannel(), this);
-	nUsageReporting::report(nUsageReporting::kResourceType_Victor, GetChannel(), GetModuleNumber() - 1);
-}
-
-/**
- * Constructor that assumes the default digital module.
- * 
- * @param channel The PWM channel on the digital module that the Victor is attached to.
- */
-Victor::Victor(uint32_t channel) : SafePWM(channel)
-{
-	InitVictor();
-}
-
-/**
- * Constructor that specifies the digital module.
- * 
- * @param moduleNumber The digital module (1 or 2).
- * @param channel The PWM channel on the digital module that the Victor is attached to (1..10).
- */
-Victor::Victor(uint8_t moduleNumber, uint32_t channel) : SafePWM(moduleNumber, channel)
-{
-	InitVictor();
-}
-
-Victor::~Victor()
-{
-}
-
-/**
- * Set the PWM value.  
- * 
- * The PWM value is set using a range of -1.0 to 1.0, appropriately
- * scaling the value for the FPGA.
- * 
- * @param speed The speed value between -1.0 and 1.0 to set.
- * @param syncGroup Unused interface.
- */
-void Victor::Set(float speed, uint8_t syncGroup)
-{
-	SetSpeed(speed);
-}
-
-/**
- * Get the recently set value of the PWM.
- * 
- * @return The most recently set value for the PWM between -1.0 and 1.0.
- */
-float Victor::Get()
-{
-	return GetSpeed();
-}
-
-/**
- * Common interface for disabling a motor.
- */
-void Victor::Disable()
-{
-	SetRaw(kPwmDisabled);
-}
-
-/**
- * Write out the PID value as seen in the PIDOutput base object.
- * 
- * @param output Write out the PWM value as was found in the PIDController
- */
-void Victor::PIDWrite(float output) 
-{
-	Set(output);
-}
-
diff --git a/aos/externals/WPILib/WPILib/Victor.h b/aos/externals/WPILib/WPILib/Victor.h
deleted file mode 100644
index e140db3..0000000
--- a/aos/externals/WPILib/WPILib/Victor.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef VICTOR_H
-#define VICTOR_H
-
-#include "SafePWM.h"
-#include "SpeedController.h"
-#include "PIDOutput.h"
-
-/**
- * IFI Victor Speed Controller
- */
-class Victor : public SafePWM, public SpeedController
-{
-public:
-	explicit Victor(uint32_t channel);
-	Victor(uint8_t moduleNumber, uint32_t channel);
-	virtual ~Victor();
-	virtual void Set(float value, uint8_t syncGroup=0);
-	virtual float Get();
-	virtual void Disable();
-
-	virtual void PIDWrite(float output);
-
-private:
-	void InitVictor();
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Vision/AxisCamera.cpp b/aos/externals/WPILib/WPILib/Vision/AxisCamera.cpp
deleted file mode 100644
index ef8a57d..0000000
--- a/aos/externals/WPILib/WPILib/Vision/AxisCamera.cpp
+++ /dev/null
@@ -1,502 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Vision/AxisCamera.h"
-
-#include <string.h>
-#include "NetworkCommunication/UsageReporting.h"
-#include "Synchronized.h"
-#include "Vision/PCVideoServer.h"
-#include "WPIErrors.h"
-
-/** Private NI function to decode JPEG */
-IMAQ_FUNC int Priv_ReadJPEGString_C(Image* _image, const unsigned char* _string, uint32_t _stringLength);
-
-// Max packet without jumbo frames is 1500... add 36 because??
-#define kMaxPacketSize 1536
-#define kImageBufferAllocationIncrement 1000
-
-AxisCamera *AxisCamera::_instance = NULL;
-
-/**
- * AxisCamera constructor
- */
-AxisCamera::AxisCamera(const char *ipAddress)
-	: AxisCameraParams(ipAddress)
-	, m_cameraSocket(ERROR)
-	, m_protectedImageBuffer(NULL)
-	, m_protectedImageBufferLength(0)
-	, m_protectedImageSize(0)
-	, m_protectedImageSem(NULL)
-	, m_freshImage(false)
-	, m_imageStreamTask("cameraTask", (FUNCPTR)s_ImageStreamTaskFunction)
-	, m_videoServer(NULL)
-{
-	m_protectedImageSem = semMCreate(SEM_Q_PRIORITY | SEM_INVERSION_SAFE | SEM_DELETE_SAFE);
-
-#if JAVA_CAMERA_LIB != 1
-	nUsageReporting::report(nUsageReporting::kResourceType_AxisCamera, ipAddress == NULL ? 1 : 2);
-#endif
-
-	if (!StatusIsFatal())
-		m_imageStreamTask.Start((int)this); 
-}
-
-/**
- * Destructor
- */
-AxisCamera::~AxisCamera()
-{
-	delete m_videoServer;
-	m_videoServer = NULL;
-
-	m_imageStreamTask.Stop();
-	close(m_cameraSocket);
-
-	SemSet_t::iterator it = m_newImageSemSet.begin();
-	SemSet_t::iterator end = m_newImageSemSet.end();
-	for (;it != end; it++)
-	{
-		semDelete(*it);
-	}
-	m_newImageSemSet.clear();
-
-	semDelete(m_protectedImageSem);
-}
-
-/**
- * Get a pointer to the AxisCamera object, if the object does not exist, create it
- * To use the camera on port 2 of a cRIO-FRC, pass "192.168.0.90" to the first GetInstance call.
- * @return reference to AxisCamera object
- */
-AxisCamera &AxisCamera::GetInstance(const char *cameraIP)
-{
-	if (NULL == _instance)
-	{
-		_instance = new AxisCamera(cameraIP);
-
-		_instance->m_videoServer = new PCVideoServer();
-	}
-
-	return *_instance;
-}
-
-/**
- * Called by Java to delete the camera... how thoughtful
- */
-void AxisCamera::DeleteInstance()
-{
-	delete _instance;
-	_instance = NULL;
-}
-
-/**
- * Return true if the latest image from the camera has not been retrieved by calling GetImage() yet.
- * @return true if the image has not been retrieved yet.
- */
-bool AxisCamera::IsFreshImage()
-{
-	return m_freshImage;
-}
-
-/**
- * Get the semaphore to be used to synchronize image access with camera acquisition
- *
- * Call semTake on the returned semaphore to block until a new image is acquired.
- *
- * The semaphore is owned by the AxisCamera class and will be deleted when the class is destroyed.
- * @return A semaphore to notify when new image is received
- */
-SEM_ID AxisCamera::GetNewImageSem()
-{
-	SEM_ID sem = semBCreate (SEM_Q_PRIORITY, SEM_EMPTY);
-	m_newImageSemSet.insert(sem);
-	return sem;
-}
-
-/**
- * Get an image from the camera and store it in the provided image.
- * @param image The imaq image to store the result in. This must be an HSL or RGB image
- * This function is called by Java.
- * @return 1 upon success, zero on a failure
- */
-int AxisCamera::GetImage(Image* imaqImage)
-{
-	if (m_protectedImageBuffer == NULL)
-		return 0;
-	Synchronized sync(m_protectedImageSem);
-	Priv_ReadJPEGString_C(imaqImage,
-		(unsigned char*)m_protectedImageBuffer, m_protectedImageSize);
-	m_freshImage = false;
-	return 1;
-}
-
-#if JAVA_CAMERA_LIB != 1
-/**
- * Get an image from the camera and store it in the provided image.
- * @param image The image to store the result in. This must be an HSL or RGB image
- * @return 1 upon success, zero on a failure
- */
-int AxisCamera::GetImage(ColorImage* image)
-{
-	return GetImage(image->GetImaqImage());
-}
-
-/**
- * Instantiate a new image object and fill it with the latest image from the camera.
- *
- * The returned pointer is owned by the caller and is their responsibility to delete.
- * @return a pointer to an HSLImage object
- */
-HSLImage* AxisCamera::GetImage()
-{
-	HSLImage *image = new HSLImage();
-	GetImage(image);
-	return image;
-}
-#endif
-
-/**
- * Copy an image into an existing buffer.
- * This copies an image into an existing buffer rather than creating a new image
- * in memory. That way a new image is only allocated when the image being copied is
- * larger than the destination.
- * This method is called by the PCVideoServer class.
- * @param imageData The destination image.
- * @param numBytes The size of the destination image.
- * @return 0 if failed (no source image or no memory), 1 if success.
- */
-int AxisCamera::CopyJPEG(char **destImage, int &destImageSize, int &destImageBufferSize)
-{
-	Synchronized sync(m_protectedImageSem);
-	if (destImage == NULL)
-		wpi_setWPIErrorWithContext(NullParameter, "destImage must not be NULL");
-
-	if (m_protectedImageBuffer == NULL || m_protectedImageSize <= 0)
-		return 0; // if no source image
-
-	if (destImageBufferSize < m_protectedImageSize) // if current destination buffer too small
-	{
-		if (*destImage != NULL) delete [] *destImage;
-		destImageBufferSize = m_protectedImageSize + kImageBufferAllocationIncrement;
-		*destImage = new char[destImageBufferSize];
-		if (*destImage == NULL) return 0;
-	}
-	// copy this image into destination buffer
-	if (*destImage == NULL)
-	{
-		wpi_setWPIErrorWithContext(NullParameter, "*destImage must not be NULL");
-	}
-	// TODO: Is this copy realy necessary... perhaps we can simply transmit while holding the protected buffer
-	memcpy(*destImage, m_protectedImageBuffer, m_protectedImageSize);
-	destImageSize = m_protectedImageSize;
-	return 1;
-}
-
-/**
- * Static interface that will cause an instantiation if necessary.
- * This static stub is directly spawned as a task to read images from the camera.
- */
-int AxisCamera::s_ImageStreamTaskFunction(AxisCamera *thisPtr)
-{
-	return thisPtr->ImageStreamTaskFunction();
-}
-
-/**
- * Task spawned by AxisCamera constructor to receive images from cam
- * If setNewImageSem has been called, this function does a semGive on each new image
- * Images can be accessed by calling getImage()
- */
-int AxisCamera::ImageStreamTaskFunction()
-{
-	// Loop on trying to setup the camera connection. This happens in a background
-	// thread so it shouldn't effect the operation of user programs.
-	while (1)
-	{
-		const char *requestString = "GET /mjpg/video.mjpg HTTP/1.1\n\
-User-Agent: HTTPStreamClient\n\
-Connection: Keep-Alive\n\
-Cache-Control: no-cache\n\
-Authorization: Basic RlJDOkZSQw==\n\n";
-		semTake(m_socketPossessionSem, WAIT_FOREVER);
-		m_cameraSocket = CreateCameraSocket(requestString);
-		if (m_cameraSocket == ERROR)
-		{
-			// Don't hammer the camera if it isn't ready.
-			semGive(m_socketPossessionSem);
-			taskDelay(1000);
-		}
-		else
-		{
-			ReadImagesFromCamera();
-		}
-	}
-	return 0;
-}
-
-/**
- * This function actually reads the images from the camera.
- */
-int AxisCamera::ReadImagesFromCamera()
-{
-	char *imgBuffer = NULL;
-	int imgBufferLength = 0;
-	//Infinite loop, task deletion handled by taskDeleteHook
-	// Socket cleanup handled by destructor
-
-	// TODO: these recv calls must be non-blocking. Otherwise if the camera
-	// fails during a read, the code hangs and never retries when the camera comes
-	// back up.
-
-	int counter = 2;
-	while (1)
-	{
-		char initialReadBuffer[kMaxPacketSize] = "";
-		char intermediateBuffer[1];
-		char *trailingPtr = initialReadBuffer;
-		int trailingCounter = 0;
-		while (counter)
-		{
-			// TODO: fix me... this cannot be the most efficient way to approach this, reading one byte at a time.
-			if(recv(m_cameraSocket, intermediateBuffer, 1, 0) == ERROR)
-			{
-				wpi_setErrnoErrorWithContext("Failed to read image header");
-				close (m_cameraSocket);
-				return ERROR;
-			}
-			strncat(initialReadBuffer, intermediateBuffer, 1);
-			// trailingCounter ensures that we start looking for the 4 byte string after
-			// there is at least 4 bytes total. Kind of obscure.
-			// look for 2 blank lines (\r\n)
-			if (NULL != strstr(trailingPtr, "\r\n\r\n"))
-			{
-				--counter;
-			}
-			if (++trailingCounter >= 4)
-			{
-				trailingPtr++;
-			}
-		}
-		counter = 1;
-		char *contentLength = strstr(initialReadBuffer, "Content-Length: ");
-		if (contentLength == NULL)
-		{
-			wpi_setWPIErrorWithContext(IncompatibleMode, "No content-length token found in packet");
-			close(m_cameraSocket);
-			return ERROR;
-		}
-		contentLength = contentLength + 16; // skip past "content length"
-		int readLength = atol(contentLength); // get the image byte count
-
-		// Make sure buffer is large enough
-		if (imgBufferLength < readLength)
-		{
-			if (imgBuffer) delete[] imgBuffer;
-			imgBufferLength = readLength + kImageBufferAllocationIncrement;
-			imgBuffer = new char[imgBufferLength];
-			if (imgBuffer == NULL)
-			{
-				imgBufferLength = 0;
-				continue;
-			}
-		}
-
-		// Read the image data for "Content-Length" bytes
-		int bytesRead = 0;
-		int remaining = readLength;
-		while(bytesRead < readLength)
-		{
-			int bytesThisRecv = recv(m_cameraSocket, &imgBuffer[bytesRead], remaining, 0);
-			bytesRead += bytesThisRecv;
-			remaining -= bytesThisRecv;
-		}
-		// Update image
-		UpdatePublicImageFromCamera(imgBuffer, readLength);
-		if (semTake(m_paramChangedSem, NO_WAIT) == OK)
-		{
-			// params need to be updated: close the video stream; release the camera.
-			close(m_cameraSocket);
-			semGive(m_socketPossessionSem);
-			return 0;
-		}
-	}
-}
-
-/**
- * Copy the image from private buffer to shared buffer.
- * @param imgBuffer The buffer containing the image
- * @param bufLength The length of the image
- */
-void AxisCamera::UpdatePublicImageFromCamera(char *imgBuffer, int imgSize)
-{
-	{
-		Synchronized sync(m_protectedImageSem);
-
-		// Adjust the buffer size if current destination buffer is too small.
-		if (m_protectedImageBufferLength < imgSize)
-		{
-			if (m_protectedImageBuffer != NULL) delete [] m_protectedImageBuffer;
-			m_protectedImageBufferLength = imgSize + kImageBufferAllocationIncrement;
-			m_protectedImageBuffer = new char[m_protectedImageBufferLength];
-			if (m_protectedImageBuffer == NULL)
-			{
-				m_protectedImageBufferLength = 0;
-				return;
-			}
-		}
-
-		memcpy(m_protectedImageBuffer, imgBuffer, imgSize);
-		m_protectedImageSize = imgSize;
-	}
-
-	m_freshImage = true;
-	// Notify everyone who is interested.
-	SemSet_t::iterator it = m_newImageSemSet.begin();
-	SemSet_t::iterator end = m_newImageSemSet.end();
-	for (;it != end; it++)
-	{
-		semGive(*it);
-	}
-}
-
-/**
- * Implement the pure virtual interface so that when parameter changes require a restart, the image task can be bounced.
- */
-void AxisCamera::RestartCameraTask()
-{
-	m_imageStreamTask.Stop();
-	m_imageStreamTask.Start((int)this);
-}
-
-#if JAVA_CAMERA_LIB == 1
-
-// C bindings used by Java
-// These need to stay as is or Java has to change
-
-void AxisCameraStart(const char *IPAddress)
-{
-#ifdef SVN_REV
-	if (strlen(SVN_REV))
-	{
-		printf("JavaCameraLib was compiled from SVN revision %s\n", SVN_REV);
-	}
-	else
-	{
-		printf("JavaCameraLib was compiled from a location that is not source controlled.\n");
-	}
-#else
-	printf("JavaCameraLib was compiled without -D'SVN_REV=nnnn'\n");
-#endif
-	AxisCamera::GetInstance(IPAddress);
-}
-
-int AxisCameraGetImage (Image* image)
-{
-	return AxisCamera::GetInstance().GetImage(image);
-}
-
-void AxisCameraWriteBrightness(int brightness)
-{
-	AxisCamera::GetInstance().WriteBrightness(brightness);
-}
-
-int AxisCameraGetBrightness()
-{
-	return AxisCamera::GetInstance().GetBrightness();
-}
-
-void AxisCameraWriteWhiteBalance(AxisCameraParams::WhiteBalance_t whiteBalance)
-{
-	AxisCamera::GetInstance().WriteWhiteBalance(whiteBalance);
-}
-
-AxisCameraParams::WhiteBalance_t AxisCameraGetWhiteBalance()
-{
-	return AxisCamera::GetInstance().GetWhiteBalance();
-}
-
-void AxisCameraWriteColorLevel(int colorLevel)
-{
-	AxisCamera::GetInstance().WriteColorLevel(colorLevel);
-}
-
-int AxisCameraGetColorLevel()
-{
-	return AxisCamera::GetInstance().GetColorLevel();
-}
-
-void AxisCameraWriteExposureControl(AxisCameraParams::Exposure_t exposure)
-{
-	AxisCamera::GetInstance().WriteExposureControl(exposure);
-}
-
-AxisCameraParams::Exposure_t AxisCameraGetExposureControl()
-{
-	return AxisCamera::GetInstance().GetExposureControl();
-}
-
-void AxisCameraWriteExposurePriority(int exposure)
-{
-	AxisCamera::GetInstance().WriteExposurePriority(exposure);
-}
-
-int AxisCameraGetExposurePriority()
-{
-	return AxisCamera::GetInstance().GetExposurePriority();
-}
-
-void AxisCameraWriteMaxFPS(int maxFPS)
-{
-	AxisCamera::GetInstance().WriteMaxFPS(maxFPS);
-}
-
-int AxisCameraGetMaxFPS()
-{
-	return AxisCamera::GetInstance().GetMaxFPS();
-}
-
-void AxisCameraWriteResolution(AxisCameraParams::Resolution_t resolution)
-{
-	AxisCamera::GetInstance().WriteResolution(resolution);
-}
-
-AxisCameraParams::Resolution_t AxisCameraGetResolution()
-{
-	return AxisCamera::GetInstance().GetResolution();
-}
-
-void AxisCameraWriteCompression(int compression)
-{
-	AxisCamera::GetInstance().WriteCompression(compression);
-}
-
-int AxisCameraGetCompression()
-{
-	return AxisCamera::GetInstance().GetCompression();
-}
-
-void AxisCameraWriteRotation(AxisCameraParams::Rotation_t rotation)
-{
-	AxisCamera::GetInstance().WriteRotation(rotation);
-}
-
-AxisCameraParams::Rotation_t AxisCameraGetRotation()
-{
-	return AxisCamera::GetInstance().GetRotation();
-}
-
-void AxisCameraDeleteInstance()
-{
-	AxisCamera::DeleteInstance();
-}
-
-int AxisCameraFreshImage()
-{
-	return AxisCamera::GetInstance().IsFreshImage();
-}
-
-#endif // JAVA_CAMERA_LIB == 1
-
diff --git a/aos/externals/WPILib/WPILib/Vision/AxisCamera.h b/aos/externals/WPILib/WPILib/Vision/AxisCamera.h
deleted file mode 100644
index 0d96333..0000000
--- a/aos/externals/WPILib/WPILib/Vision/AxisCamera.h
+++ /dev/null
@@ -1,114 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __AXIS_CAMERA_H__
-#define __AXIS_CAMERA_H__
-
-#include <taskLib.h>
-#include <vxWorks.h> 
-#include <sockLib.h> 
-#include <inetLib.h>
-
-#include "Vision/AxisCameraParams.h"
-#if JAVA_CAMERA_LIB != 1
-#include "Vision/ColorImage.h"
-#include "Vision/HSLImage.h"
-#endif
-#include "nivision.h"
-#include <set>
-#include "Task.h"
-
-class PCVideoServer;
-
-/**
- * AxisCamera class.
- * This class handles everything about the Axis 206 FRC Camera.
- * It starts up 2 tasks each using a different connection to the camera:
- * - image reading task that reads images repeatedly from the camera
- * - parameter handler task in the base class that monitors for changes to
- *     parameters and updates the camera
- */
-class AxisCamera : public AxisCameraParams
-{
-private:
-	explicit AxisCamera(const char *cameraIP);
-public:
-	virtual ~AxisCamera();
-	static AxisCamera& GetInstance(const char *cameraIP = NULL);
-	static void DeleteInstance();
-
-	bool IsFreshImage();
-	SEM_ID GetNewImageSem();
-
-	int GetImage(Image *imaqImage);
-#if JAVA_CAMERA_LIB != 1
-	int GetImage(ColorImage *image);
-	HSLImage *GetImage();
-#endif
-
-	int CopyJPEG(char **destImage, int &destImageSize, int &destImageBufferSize);
-
-private:
-	static int s_ImageStreamTaskFunction(AxisCamera *thisPtr);
-	int ImageStreamTaskFunction();
-
-	int ReadImagesFromCamera();
-	void UpdatePublicImageFromCamera(char *imgBuffer, int imgSize);
-
-	virtual void RestartCameraTask();
-
-	static AxisCamera *_instance;
-	int m_cameraSocket;
-	typedef std::set<SEM_ID> SemSet_t;
-	SemSet_t m_newImageSemSet;
-
-	char* m_protectedImageBuffer;
-	int m_protectedImageBufferLength;
-	int m_protectedImageSize;
-	SEM_ID m_protectedImageSem;
-	bool m_freshImage;
-
-	Task m_imageStreamTask;
-
-	PCVideoServer *m_videoServer;
-};
-
-#if JAVA_CAMERA_LIB == 1
-#ifdef __cplusplus
-extern "C" {
-#endif
-	void AxisCameraStart(const char *IPAddress);
-	int AxisCameraGetImage(Image *image);
-	void AxisCameraDeleteInstance();
-	int AxisCameraFreshImage();
-
-	// Mid-stream gets & writes
-	void AxisCameraWriteBrightness(int brightness);
-	int AxisCameraGetBrightness();
-	void AxisCameraWriteWhiteBalance(AxisCameraParams::WhiteBalance_t whiteBalance);
-	AxisCameraParams::WhiteBalance_t AxisCameraGetWhiteBalance();
-	void AxisCameraWriteColorLevel(int colorLevel);
-	int AxisCameraGetColorLevel();
-	void AxisCameraWriteExposureControl(AxisCameraParams::Exposure_t exposure);
-	AxisCameraParams::Exposure_t AxisCameraGetExposureControl();
-	void AxisCameraWriteExposurePriority(int exposurePriority);
-	int AxisCameraGetExposurePriority();
-	void AxisCameraWriteMaxFPS(int maxFPS);
-	int AxisCameraGetMaxFPS();
-
-	// New-Stream gets & writes
-	void AxisCameraWriteResolution(AxisCameraParams::Resolution_t resolution);
-	AxisCameraParams::Resolution_t AxisCameraGetResolution();
-	void AxisCameraWriteCompression(int compression);
-	int AxisCameraGetCompression();
-	void AxisCameraWriteRotation(AxisCameraParams::Rotation_t rotation);
-	AxisCameraParams::Rotation_t AxisCameraGetRotation();
-#ifdef __cplusplus
-}
-#endif
-#endif // JAVA_CAMERA_LIB == 1
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Vision/AxisCameraParams.cpp b/aos/externals/WPILib/WPILib/Vision/AxisCameraParams.cpp
deleted file mode 100644
index 5cc2f8d..0000000
--- a/aos/externals/WPILib/WPILib/Vision/AxisCameraParams.cpp
+++ /dev/null
@@ -1,469 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Vision/AxisCameraParams.h"
-
-#include "Vision/AxisCamera.h"
-#include <inetLib.h>
-#include "pcre.h"
-#include <sockLib.h>
-#include <string.h>
-#include "Synchronized.h"
-#include "Timer.h"
-#include "Utility.h"
-#include "WPIErrors.h"
-
-#if JAVA_CAMERA_LIB != 1
-#include "DriverStation.h"
-#endif
-
-static const char *const kRotationChoices[] = {"0", "180"};
-static const char *const kResolutionChoices[] = {"640x480", "640x360", "320x240", "160x120"};
-static const char *const kExposureControlChoices[] = { "automatic", "hold", "flickerfree50", "flickerfree60" };
-static const char *const kWhiteBalanceChoices[] = { "auto", "holdwb", "fixed_outdoor1",
-		"fixed_outdoor2", "fixed_indoor", "fixed_fluor1", "fixed_fluor2" };
-
-/**
- * AxisCamera constructor
- */
-AxisCameraParams::AxisCameraParams(const char* ipAddress)
-	: m_paramTask("paramTask", (FUNCPTR) s_ParamTaskFunction)
-	, m_paramChangedSem (NULL)
-	, m_socketPossessionSem (NULL)
-	, m_brightnessParam (NULL)
-	, m_compressionParam (NULL)
-	, m_exposurePriorityParam (NULL)
-	, m_colorLevelParam (NULL)
-	, m_maxFPSParam (NULL)
-	, m_rotationParam (NULL)
-	, m_resolutionParam (NULL)
-	, m_exposureControlParam (NULL)
-	, m_whiteBalanceParam (NULL)
-{
-	if (ipAddress == NULL || strlen(ipAddress) == 0)
-	{
-#if JAVA_CAMERA_LIB == 1
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "IP Address must be specified");
-		return;
-#else
-		DriverStation *ds = DriverStation::GetInstance();
-		ds->WaitForData();
-		uint16_t teamNumber = ds->GetTeamNumber();
-		char cameraIP[16];
-		snprintf(cameraIP, 16, "10.%d.%d.11", teamNumber / 100, teamNumber % 100);
-		m_ipAddress = inet_addr(cameraIP);
-#endif
-	}
-	else
-	{
-		m_ipAddress = inet_addr((char*)ipAddress);
-	}
-
-	if (m_ipAddress == (u_long)ERROR)
-	{
-		wpi_setErrnoError();
-		return;
-	}
-
-	m_brightnessParam = new IntCameraParameter("ImageSource.I0.Sensor.Brightness=%i",
-			"root.ImageSource.I0.Sensor.Brightness=(.*)", false);
-	m_parameters.push_back(m_brightnessParam);
-	m_colorLevelParam = new IntCameraParameter("ImageSource.I0.Sensor.ColorLevel=%i",
-			"root.ImageSource.I0.Sensor.ColorLevel=(.*)", false);
-	m_parameters.push_back(m_colorLevelParam);
-	m_exposurePriorityParam = new IntCameraParameter("ImageSource.I0.Sensor.exposurePriority=%i",
-			"root.ImageSource.I0.Sensor.ExposurePriority=(.*)", false);
-	m_parameters.push_back(m_exposurePriorityParam);
-	m_compressionParam = new IntCameraParameter("Image.I0.Appearance.Compression=%i",
-			"root.Image.I0.Appearance.Compression=(.*)", true);
-	m_parameters.push_back(m_compressionParam);
-	m_maxFPSParam = new IntCameraParameter("Image.I0.Stream.FPS=%i",
-			"root.Image.I0.Stream.FPS=(.*)", false);
-	m_parameters.push_back(m_maxFPSParam);
-	m_rotationParam = new EnumCameraParameter("Image.I0.Appearance.Rotation=%s",
-			"root.Image.I0.Appearance.Rotation=(.*)", true, kRotationChoices, sizeof(kRotationChoices)/sizeof(kRotationChoices[0]));
-	m_parameters.push_back(m_rotationParam);
-	m_resolutionParam = new EnumCameraParameter("Image.I0.Appearance.Resolution=%s",
-			"root.Image.I0.Appearance.Resolution=(.*)", true, kResolutionChoices, sizeof(kResolutionChoices)/sizeof(kResolutionChoices[0]));
-	m_parameters.push_back(m_resolutionParam);
-	m_exposureControlParam = new EnumCameraParameter("ImageSource.I0.Sensor.Exposure=%s",
-			"root.ImageSource.I0.Sensor.Exposure=(.*)", false, kExposureControlChoices, sizeof(kExposureControlChoices)/sizeof(kExposureControlChoices[0]));
-	m_parameters.push_back(m_exposureControlParam);
-	m_whiteBalanceParam = new EnumCameraParameter("ImageSource.IO.Sensor.WhiteBalance=%s",
-			"root.ImageSource.I0.Sensor.WhiteBalance=(.*)", false, kWhiteBalanceChoices, sizeof(kWhiteBalanceChoices)/sizeof(kWhiteBalanceChoices[0]));
-	m_parameters.push_back(m_whiteBalanceParam);
-
-	m_paramChangedSem = semBCreate (SEM_Q_PRIORITY, SEM_EMPTY);
-	m_socketPossessionSem = semBCreate (SEM_Q_PRIORITY, SEM_FULL);
-
-	m_paramTask.Start((int)this);
-}
-
-/**
- * Destructor
- */
-AxisCameraParams::~AxisCameraParams()
-{
-	m_paramTask.Stop();
-
-	semDelete(m_socketPossessionSem);
-	semDelete(m_paramChangedSem);
-
-	delete m_whiteBalanceParam;
-	delete m_exposureControlParam;
-	delete m_resolutionParam;
-	delete m_rotationParam;
-	delete m_maxFPSParam;
-	delete m_compressionParam;
-	delete m_exposurePriorityParam;
-	delete m_colorLevelParam;
-	delete m_brightnessParam;
-}
-
-/**
- * Static function to start the parameter updating task
- */
-int AxisCameraParams::s_ParamTaskFunction(AxisCameraParams* thisPtr)
-{
-	return thisPtr->ParamTaskFunction();
-}
-
-/**
- * Main loop of the parameter task.
- * This loop runs continuously checking parameters from the camera for
- * posted changes and updating them if necessary.
- */
-// TODO: need to synchronize the actual setting of parameters (the assignment statement)
-int AxisCameraParams::ParamTaskFunction()
-{
-	static bool firstTime = true;
-
-	while (true)
-	{
-		semTake(m_socketPossessionSem, WAIT_FOREVER);
-		if (firstTime)
-		{
-			while (ReadCamParams() == 0);
-			firstTime = false;
-		}
-		bool restartRequired = false;
-
-		ParameterVector_t::iterator it = m_parameters.begin();
-		ParameterVector_t::iterator end = m_parameters.end();
-		for(; it != end; it++)
-		{
-			bool changed = false;
-			char param[150];
-			restartRequired |= (*it)->CheckChanged(changed, param);
-			if (changed)
-			{
-				UpdateCamParam(param);
-			}
-		}
-		if (restartRequired)
-		{
-			RestartCameraTask();
-		}
-		semGive(m_socketPossessionSem);
-	}
-	return 0;
-}
-
-/**
- * Write the brightness value to the camera.
- * @param brightness valid values 0 .. 100
- */
-void AxisCameraParams::WriteBrightness(int brightness)
-{
-	m_brightnessParam->SetValue(brightness);
-	semGive(m_paramChangedSem);
-}
-
-/**
- * Get the brightness value.
- * @return Brightness value from the camera.
- */
-int AxisCameraParams::GetBrightness()
-{
-	return m_brightnessParam->GetValue();
-}
-
-/**
- * Set the white balance value.
- * @param whiteBalance Valid values from the WhiteBalance_t enum.
- */
-void AxisCameraParams::WriteWhiteBalance(WhiteBalance_t whiteBalance)
-{
-	m_whiteBalanceParam->SetValue(whiteBalance);
-	semGive(m_paramChangedSem);
-}
-
-/**
- * Retrieve the current white balance parameter.
- * @return The white balance value.
- */
-AxisCameraParams::WhiteBalance_t AxisCameraParams::GetWhiteBalance()
-{
-	return (WhiteBalance_t) m_whiteBalanceParam->GetValue();
-}
-
-/**
- * Write the color level to the camera.
- * @param colorLevel valid values are 0 .. 100
- */
-void AxisCameraParams::WriteColorLevel(int colorLevel)
-{
-	m_colorLevelParam->SetValue(colorLevel);
-	semGive(m_paramChangedSem);
-}
-
-/**
- * Retrieve the color level from the camera.
- * @Returns the camera color level.
- */
-int AxisCameraParams::GetColorLevel()
-{
-	return m_colorLevelParam->GetValue();
-}
-
-/**
- * Write the exposure control value to the camera.
- * @param exposureControl A mode to write in the Exposure_t enum.
- */
-void AxisCameraParams::WriteExposureControl(Exposure_t exposureControl)
-{
-	m_exposureControlParam->SetValue(exposureControl);
-	semGive(m_paramChangedSem);
-}
-
-/**
- * Get the exposure value from the camera.
- * @returns the exposure value from the camera.
- */
-AxisCameraParams::Exposure_t AxisCameraParams::GetExposureControl()
-{
-	return (Exposure_t) m_exposureControlParam->GetValue();
-}
-
-/**
- * Write resolution value to camera.
- * @param resolution The camera resolution value to write to the camera.  Use the Resolution_t enum.
- */
-void AxisCameraParams::WriteResolution(Resolution_t resolution)
-{
-	m_resolutionParam->SetValue(resolution);
-	semGive(m_paramChangedSem);
-}
-
-/**
- * Get the resolution value from the camera.
- * @returns resultion value for the camera.
- */
-AxisCameraParams::Resolution_t AxisCameraParams::GetResolution()
-{
-	return (Resolution_t) m_resolutionParam->GetValue();
-}
-
-/**
- * Write the exposre priority value to the camera.
- * @param exposurePriority Valid values are 0, 50, 100.
- * 0 = Prioritize image quality
- * 50 = None
- * 100 = Prioritize frame rate
- */
-void AxisCameraParams::WriteExposurePriority(int exposurePriority)
-{
-	m_exposurePriorityParam->SetValue(exposurePriority);
-	semGive(m_paramChangedSem);
-}
-
-int AxisCameraParams::GetExposurePriority()
-{
-	return m_exposurePriorityParam->GetValue();
-}
-
-/**
- * Write the rotation value to the camera.
- * If you mount your camera upside down, use this to adjust the image for you.
- * @param rotation The image from the Rotation_t enum in AxisCameraParams (kRotation_0 or kRotation_180)
- */
-void AxisCameraParams::WriteRotation(Rotation_t rotation)
-{
-	m_rotationParam->SetValue(rotation);
-	semGive(m_paramChangedSem);
-}
-
-/**
- * Get the rotation value from the camera.
- * @return The rotation value from the camera (Rotation_t).
- */
-AxisCameraParams::Rotation_t AxisCameraParams::GetRotation()
-{
-	return (Rotation_t) m_rotationParam->GetValue();
-}
-
-/**
- * Write the compression value to the camera.
- * @param compression Values between 0 and 100.
- */
-
-void AxisCameraParams::WriteCompression(int compression)
-{
-	m_compressionParam->SetValue(compression);
-	semGive(m_paramChangedSem);
-}
-
-/**
- * Get the compression value from the camera.
- * @return The cached compression value from the camera.
- */
-int AxisCameraParams::GetCompression()
-{
-	return m_compressionParam->GetValue();
-}
-
-/**
- * Write the maximum frames per second that the camera should send
- * Write 0 to send as many as possible.
- * @param maxFPS The number of frames the camera should send in a second, exposure permitting.
- */
-void AxisCameraParams::WriteMaxFPS(int maxFPS)
-{
-	m_maxFPSParam->SetValue(maxFPS);
-	semGive(m_paramChangedSem);
-}
-
-/**
- * Get the max number of frames per second that the camera will send
- * @return Maximum frames per second.
- */
-int AxisCameraParams::GetMaxFPS()
-{
-	return m_maxFPSParam->GetValue();
-}
-
-/**
- * Update a camera parameter.
- * Write a camera parameter to the camera when it has bene changed.
- * @param param the string to insert into the http request.
- * @returns 0 if it failed, otherwise nonzero.
- */
-int AxisCameraParams::UpdateCamParam(const char* param)
-{
-	const char *requestString =
-		"GET /axis-cgi/admin/param.cgi?action=update&%s HTTP/1.1\n\
-User-Agent: HTTPStreamClient\n\
-Connection: Keep-Alive\n\
-Cache-Control: no-cache\n\
-Authorization: Basic RlJDOkZSQw==\n\n";
-	char completedRequest[1024];
-	sprintf(completedRequest, requestString, param);
-	// Send request
-	int camSocket = CreateCameraSocket(completedRequest);
-	if (camSocket == ERROR)
-	{
-		printf("UpdateCamParam failed: %s\n", param);
-		return 0;
-	}
-	close(camSocket);
-	return 1;
-}
-
-/**
- * Read the full param list from camera, use regular expressions to find the bits we care about
- * assign values to member variables.
- */
-int AxisCameraParams::ReadCamParams()
-{
-	const char * requestString =
-		"GET /axis-cgi/admin/param.cgi?action=list HTTP/1.1\n\
-User-Agent: HTTPStreamClient\n\
-Connection: Keep-Alive\n\
-Cache-Control: no-cache\n\
-Authorization: Basic RlJDOkZSQw==\n\n";
-
-	int camSocket = CreateCameraSocket(requestString);
-	if (camSocket == ERROR)
-	{
-		return 0;
-	}
-	// Allocate on the heap since it is very large and only needed once
-	char *readBuffer = new char[27000];
-	int totalRead = 0;
-	while (1)
-	{
-		wpi_assert(totalRead < 26000);
-		int bytesRead = recv(camSocket, &readBuffer[totalRead], 1000, 0);
-		if (bytesRead == ERROR)
-		{
-			wpi_setErrnoErrorWithContext("Failed to read image header");
-			close(camSocket);
-			return 0;
-		}
-		else if (bytesRead <= 0)
-		{
-			break;
-		}
-		totalRead += bytesRead;
-	}
-	readBuffer[totalRead] = '\0';
-
-	ParameterVector_t::iterator it = m_parameters.begin();
-	ParameterVector_t::iterator end = m_parameters.end();
-	for(; it != end; it++)
-	{
-		(*it)->GetParamFromString(readBuffer, totalRead);
-	}
-	close(camSocket);
-	delete [] readBuffer;
-	return 1;
-}
-
-/*
- * Create a socket connected to camera
- * Used to create a connection to the camera by both AxisCameraParams and AxisCamera.
- * @param requestString The initial request string to send upon successful connection.
- * @return ERROR if failed, socket handle if successful.
- */
-int AxisCameraParams::CreateCameraSocket(const char *requestString)
-{
-	int sockAddrSize;
-	struct sockaddr_in serverAddr;
-	int camSocket;
-	/* create socket */
-	if ((camSocket = socket(AF_INET, SOCK_STREAM, 0)) == ERROR)
-	{
-		wpi_setErrnoErrorWithContext("Failed to create the camera socket");
-		return ERROR;
-	}
-
-	sockAddrSize = sizeof(struct sockaddr_in);
-	bzero((char *) &serverAddr, sockAddrSize);
-	serverAddr.sin_family = AF_INET;
-	serverAddr.sin_len = (u_char) sockAddrSize;
-	serverAddr.sin_port = htons(80);
-
-	serverAddr.sin_addr.s_addr = m_ipAddress;
-
-	/* connect to server */
-	struct timeval connectTimeout;
-	connectTimeout.tv_sec = 5;
-	connectTimeout.tv_usec = 0;
-	if (connectWithTimeout(camSocket, (struct sockaddr *) &serverAddr, sockAddrSize, &connectTimeout) == ERROR)
-	{
-		wpi_setErrnoErrorWithContext("Failed to connect to the camera");
-		close(camSocket);
-		return ERROR;
-	}
-	int sent = send(camSocket, requestString, strlen(requestString), 0);
-	if (sent == ERROR)
-	{
-		wpi_setErrnoErrorWithContext("Failed to send a request to the camera");
-		close(camSocket);
-		return ERROR;
-	}
-	return camSocket;
-}
diff --git a/aos/externals/WPILib/WPILib/Vision/AxisCameraParams.h b/aos/externals/WPILib/WPILib/Vision/AxisCameraParams.h
deleted file mode 100644
index 4e1f35e..0000000
--- a/aos/externals/WPILib/WPILib/Vision/AxisCameraParams.h
+++ /dev/null
@@ -1,90 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __AXIS_CAMERA_PARAMS_H__
-#define __AXIS_CAMERA_PARAMS_H__
-
-#include "EnumCameraParameter.h"
-#include "ErrorBase.h"
-#include "IntCameraParameter.h"
-#include "Task.h"
-#include <vector>
-
-/**
- * AxisCameraParams class.
- * This class handles parameter configuration the Axis 206 Ethernet Camera.
- * It starts up a tasks with an independent connection to the camera that monitors
- * for changes to parameters and updates the camera.
- * It is only separate from AxisCamera to isolate the parameter code from the image streaming code.
- */
-class AxisCameraParams : public ErrorBase
-{
-public:
-	typedef enum Exposure_t {kExposure_Automatic, kExposure_Hold, kExposure_FlickerFree50Hz, kExposure_FlickerFree60Hz} Exposure;
-	typedef enum WhiteBalance_t {kWhiteBalance_Automatic, kWhiteBalance_Hold, kWhiteBalance_FixedOutdoor1, kWhiteBalance_FixedOutdoor2, kWhiteBalance_FixedIndoor, kWhiteBalance_FixedFlourescent1, kWhiteBalance_FixedFlourescent2} WhiteBalance;
-	typedef enum Resolution_t {kResolution_640x480, kResolution_640x360, kResolution_320x240, kResolution_160x120} Resolution;
-	typedef enum Rotation_t {kRotation_0, kRotation_180} Rotation;
-
-protected:
-	AxisCameraParams(const char* ipAddress);
-	virtual ~AxisCameraParams();
-
-public:
-	// Mid-stream gets & writes
-	void WriteBrightness(int);
-	int GetBrightness();
-	void WriteWhiteBalance(WhiteBalance_t whiteBalance);
-	WhiteBalance_t GetWhiteBalance();
-	void WriteColorLevel(int);
-	int GetColorLevel();
-	void WriteExposureControl(Exposure_t);
-	Exposure_t GetExposureControl();
-	void WriteExposurePriority(int);
-	int GetExposurePriority();
-	void WriteMaxFPS(int);
-	int GetMaxFPS();
-
-	// New-Stream gets & writes (i.e. require restart)
-	void WriteResolution(Resolution_t);
-	Resolution_t GetResolution();
-	void WriteCompression(int);
-	int GetCompression();
-	void WriteRotation(Rotation_t);
-	Rotation_t GetRotation();
-
-protected:
-	virtual void RestartCameraTask() = 0;
-	int CreateCameraSocket(const char *requestString);
-
-	static int s_ParamTaskFunction(AxisCameraParams* thisPtr);
-	int ParamTaskFunction();
-
-	int UpdateCamParam(const char *param);
-	int ReadCamParams();
-
-	Task m_paramTask;
-	uint32_t m_ipAddress; // IPv4
-	SEM_ID m_paramChangedSem;
-	SEM_ID m_socketPossessionSem;
-
-	//Camera Properties
-	IntCameraParameter *m_brightnessParam;
-	IntCameraParameter *m_compressionParam;
-	IntCameraParameter *m_exposurePriorityParam;
-	IntCameraParameter *m_colorLevelParam;
-	IntCameraParameter *m_maxFPSParam;
-	EnumCameraParameter *m_rotationParam;
-	EnumCameraParameter *m_resolutionParam;
-	EnumCameraParameter *m_exposureControlParam;
-	EnumCameraParameter *m_whiteBalanceParam;
-
-	// A vector to access all properties simply.
-	typedef std::vector<IntCameraParameter*> ParameterVector_t;
-	ParameterVector_t m_parameters;
-};
-
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Vision/BinaryImage.cpp b/aos/externals/WPILib/WPILib/Vision/BinaryImage.cpp
deleted file mode 100644
index f4cd1bb..0000000
--- a/aos/externals/WPILib/WPILib/Vision/BinaryImage.cpp
+++ /dev/null
@@ -1,223 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "BinaryImage.h"
-#include "WPIErrors.h"
-#include <cstring>
-
-/** Private NI function needed to write to the VxWorks target */
-IMAQ_FUNC int Priv_SetWriteFileAllowed(uint32_t enable); 
-
-BinaryImage::BinaryImage() : MonoImage()
-{
-}
-
-BinaryImage::~BinaryImage()
-{
-}
-
-/**
- * Get then number of particles for the image.
- * @returns the number of particles found for the image.
- */
-int BinaryImage::GetNumberParticles()
-{
-	int numParticles = 0;
-	int success = imaqCountParticles(m_imaqImage, 1, &numParticles);
-	wpi_setImaqErrorWithContext(success, "Error counting particles");
-	return numParticles;
-}
-
-/**
- * Get a single particle analysis report.
- * Get one (of possibly many) particle analysis reports for an image.
- * @param particleNumber Which particle analysis report to return.
- * @returns the selected particle analysis report
- */
-ParticleAnalysisReport BinaryImage::GetParticleAnalysisReport(int particleNumber)
-{
-	ParticleAnalysisReport par;
-	GetParticleAnalysisReport(particleNumber, &par);
-	return par;
-}
-
-/**
- * Get a single particle analysis report.
- * Get one (of possibly many) particle analysis reports for an image.
- * This version could be more efficient when copying many reports.
- * @param particleNumber Which particle analysis report to return.
- * @param par the selected particle analysis report
- */
-void BinaryImage::GetParticleAnalysisReport(int particleNumber, ParticleAnalysisReport *par)
-{
-	int success;
-	int numParticles = 0;
-
-	success = imaqGetImageSize(m_imaqImage, &par->imageWidth, &par->imageHeight);
-	wpi_setImaqErrorWithContext(success, "Error getting image size");
-	if (StatusIsFatal())
-		return;
-
-	success = imaqCountParticles(m_imaqImage, 1, &numParticles);
-	wpi_setImaqErrorWithContext(success, "Error counting particles");
-	if (StatusIsFatal())
-		return;
-
-	if (particleNumber >= numParticles)
-	{
-		wpi_setWPIErrorWithContext(ParameterOutOfRange, "particleNumber");
-		return;
-	}
-
-	par->particleIndex = particleNumber;
-	// Don't bother measuring the rest of the particle if one fails
-	bool good = ParticleMeasurement(particleNumber, IMAQ_MT_CENTER_OF_MASS_X, &par->center_mass_x);
-	good = good && ParticleMeasurement(particleNumber, IMAQ_MT_CENTER_OF_MASS_Y, &par->center_mass_y);
-	good = good && ParticleMeasurement(particleNumber, IMAQ_MT_AREA, &par->particleArea);
-	good = good && ParticleMeasurement(particleNumber, IMAQ_MT_BOUNDING_RECT_TOP, &par->boundingRect.top);
-	good = good && ParticleMeasurement(particleNumber, IMAQ_MT_BOUNDING_RECT_LEFT, &par->boundingRect.left);
-	good = good && ParticleMeasurement(particleNumber, IMAQ_MT_BOUNDING_RECT_HEIGHT, &par->boundingRect.height);
-	good = good && ParticleMeasurement(particleNumber, IMAQ_MT_BOUNDING_RECT_WIDTH, &par->boundingRect.width);
-	good = good && ParticleMeasurement(particleNumber, IMAQ_MT_AREA_BY_IMAGE_AREA, &par->particleToImagePercent);
-	good = good && ParticleMeasurement(particleNumber, IMAQ_MT_AREA_BY_PARTICLE_AND_HOLES_AREA, &par->particleQuality);
-
-	if (good)
-	{
-		/* normalized position (-1 to 1) */
-		par->center_mass_x_normalized = NormalizeFromRange(par->center_mass_x, par->imageWidth);
-		par->center_mass_y_normalized = NormalizeFromRange(par->center_mass_y, par->imageHeight);
-	}
-}
-
-
-/**
- * Get an ordered vector of particles for the image.
- * Create a vector of particle analysis reports sorted by size for an image.
- * The vector contains the actual report structures.
- * @returns a pointer to the vector of particle analysis reports. The caller must delete the
- * vector when finished using it.
- */
-vector<ParticleAnalysisReport>* BinaryImage::GetOrderedParticleAnalysisReports()
-{
-	vector<ParticleAnalysisReport>* particles = new vector<ParticleAnalysisReport>;
-	int particleCount = GetNumberParticles();
-	for(int particleIndex = 0; particleIndex < particleCount; particleIndex++)
-	{
-		particles->push_back(GetParticleAnalysisReport(particleIndex));
-	}
-	// TODO: This is pretty inefficient since each compare in the sort copies
-	//   both reports being compared... do it manually instead... while we're
-	//   at it, we should provide a version that allows a preallocated buffer of
-	//   ParticleAnalysisReport structures
-	sort(particles->begin(), particles->end(), CompareParticleSizes);
-	return particles;
-}
-
-/**
- * Write a binary image to flash.
- * Writes the binary image to flash on the cRIO for later inspection.
- * @param fileName the name of the image file written to the flash.
- */
-void BinaryImage::Write(const char *fileName)
-{
-	RGBValue colorTable[256];
-	Priv_SetWriteFileAllowed(1);
-	memset(colorTable, 0, sizeof(colorTable));
-	colorTable[0].R = 0;
-	colorTable[1].R = 255;
-	colorTable[0].G = colorTable[1].G = 0;
-	colorTable[0].B = colorTable[1].B = 0;
-	colorTable[0].alpha = colorTable[1].alpha = 0;
-	imaqWriteFile(m_imaqImage, fileName, colorTable);
-}
-
-/**
- * Measure a single parameter for an image.
- * Get the measurement for a single parameter about an image by calling the imaqMeasureParticle
- * function for the selected parameter.
- * @param particleNumber which particle in the set of particles
- * @param whatToMeasure the imaq MeasurementType (what to measure)
- * @param result the value of the measurement
- * @returns false on failure, true on success
- */
-bool BinaryImage::ParticleMeasurement(int particleNumber, MeasurementType whatToMeasure, int *result)
-{
-	double resultDouble;
-	bool success = ParticleMeasurement(particleNumber, whatToMeasure, &resultDouble);
-	*result = (int)resultDouble;
-	return success;
-}
-
-/**
- * Measure a single parameter for an image.
- * Get the measurement for a single parameter about an image by calling the imaqMeasureParticle
- * function for the selected parameter.
- * @param particleNumber which particle in the set of particles
- * @param whatToMeasure the imaq MeasurementType (what to measure)
- * @param result the value of the measurement
- * @returns true on failure, false on success
- */
-bool BinaryImage::ParticleMeasurement(int particleNumber, MeasurementType whatToMeasure, double *result)
-{
-	int success;
-	success = imaqMeasureParticle(m_imaqImage, particleNumber, 0, whatToMeasure, result);
-	wpi_setImaqErrorWithContext(success, "Error measuring particle");
-	return !StatusIsFatal();
-}
-
-//Normalizes to [-1,1]
-double BinaryImage::NormalizeFromRange(double position, int range)
-{
-	return (position * 2.0 / (double)range) - 1.0;
-}
-
-/**
- * The compare helper function for sort.
- * This function compares two particle analysis reports as a helper for the sort function.
- * @param particle1 The first particle to compare
- * @param particle2 the second particle to compare
- * @returns true if particle1 is greater than particle2
- */
-bool BinaryImage::CompareParticleSizes(ParticleAnalysisReport particle1, ParticleAnalysisReport particle2)
-{
-	//we want descending sort order
-	return particle1.particleToImagePercent > particle2.particleToImagePercent;
-}
-
-BinaryImage *BinaryImage::RemoveSmallObjects(bool connectivity8, int erosions)
-{
-	BinaryImage *result = new BinaryImage();
-	int success = imaqSizeFilter(result->GetImaqImage(), m_imaqImage, connectivity8, erosions, IMAQ_KEEP_LARGE, NULL);
-	wpi_setImaqErrorWithContext(success, "Error in RemoveSmallObjects");
-	return result;
-}
-
-BinaryImage *BinaryImage::RemoveLargeObjects(bool connectivity8, int erosions)
-{
-	BinaryImage *result = new BinaryImage();
-	int success = imaqSizeFilter(result->GetImaqImage(), m_imaqImage, connectivity8, erosions, IMAQ_KEEP_SMALL, NULL);
-	wpi_setImaqErrorWithContext(success, "Error in RemoveLargeObjects");
-	return result;
-}
-
-BinaryImage *BinaryImage::ConvexHull(bool connectivity8)
-{
-	BinaryImage *result = new BinaryImage();
-	int success = imaqConvexHull(result->GetImaqImage(), m_imaqImage, connectivity8);
-	wpi_setImaqErrorWithContext(success, "Error in convex hull operation");
-	return result;
-}
-
-BinaryImage *BinaryImage::ParticleFilter(ParticleFilterCriteria2 *criteria, int criteriaCount)
-{
-	BinaryImage *result = new BinaryImage();
-	int numParticles;
-	ParticleFilterOptions2 filterOptions = {0, 0, 0, 1};
-	int success = imaqParticleFilter4(result->GetImaqImage(), m_imaqImage, criteria, criteriaCount, &filterOptions, NULL, &numParticles);
-	wpi_setImaqErrorWithContext(success, "Error in particle filter operation");
-	return result;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Vision/BinaryImage.h b/aos/externals/WPILib/WPILib/Vision/BinaryImage.h
deleted file mode 100644
index 23a8557..0000000
--- a/aos/externals/WPILib/WPILib/Vision/BinaryImage.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __BINARY_IMAGE_H__
-#define __BINARY_IMAGE_H__
-
-#include "MonoImage.h"
-/**
- * Included for ParticleAnalysisReport definition
- * TODO: Eliminate this dependency! 
- */
-#include "Vision2009/VisionAPI.h"
-
-#include <vector>
-#include <algorithm>
-using namespace std;
-
-class BinaryImage : public MonoImage
-{
-public:
-	BinaryImage();
-	virtual ~BinaryImage();
-	int GetNumberParticles();
-	ParticleAnalysisReport GetParticleAnalysisReport(int particleNumber);
-	void GetParticleAnalysisReport(int particleNumber, ParticleAnalysisReport *par);
-	vector<ParticleAnalysisReport>* GetOrderedParticleAnalysisReports();
-	BinaryImage *RemoveSmallObjects(bool connectivity8, int erosions);
-	BinaryImage *RemoveLargeObjects(bool connectivity8, int erosions);
-	BinaryImage *ConvexHull(bool connectivity8);
-	BinaryImage *ParticleFilter(ParticleFilterCriteria2 *criteria, int criteriaCount);
-	virtual void Write(const char *fileName);
-private:
-	bool ParticleMeasurement(int particleNumber, MeasurementType whatToMeasure, int *result);
-	bool ParticleMeasurement(int particleNumber, MeasurementType whatToMeasure, double *result);
-	static double NormalizeFromRange(double position, int range);
-	static bool CompareParticleSizes(ParticleAnalysisReport particle1, ParticleAnalysisReport particle2);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Vision/ColorImage.cpp b/aos/externals/WPILib/WPILib/Vision/ColorImage.cpp
deleted file mode 100644
index 24c44f4..0000000
--- a/aos/externals/WPILib/WPILib/Vision/ColorImage.cpp
+++ /dev/null
@@ -1,465 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "ColorImage.h"
-
-#include "WPIErrors.h"
-
-ColorImage::ColorImage(ImageType type) : ImageBase(type)
-{
-}
-
-ColorImage::~ColorImage()
-{
-}
-
-/**
- * Perform a threshold operation on a ColorImage.
- * Perform a threshold operation on a ColorImage using the ColorMode supplied
- * as a parameter.
- * @param colorMode The type of colorspace this operation should be performed in
- * @returns a pointer to a binary image
- */
-BinaryImage *ColorImage::ComputeThreshold(ColorMode colorMode,
-		int low1, int high1,
-		int low2, int high2,
-		int low3, int high3)
-{
-	BinaryImage *result = new BinaryImage();
-	Range range1 = {low1, high1},
-		range2 = {low2, high2},
-		range3 = {low3, high3};
-	
-	int success = imaqColorThreshold(result->GetImaqImage(), m_imaqImage, 1, colorMode, &range1, &range2, &range3);
-	wpi_setImaqErrorWithContext(success, "ImaqThreshold error");
-	return result;
-}
-
-/**
- * Perform a threshold in RGB space.
- * @param redLow Red low value
- * @param redHigh Red high value
- * @param greenLow Green low value
- * @param greenHigh Green high value
- * @param blueLow Blue low value
- * @param blueHigh Blue high value
- * @returns A pointer to a BinaryImage that represents the result of the threshold operation.
- */
-BinaryImage *ColorImage::ThresholdRGB(int redLow, int redHigh, int greenLow, int greenHigh, int blueLow, int blueHigh)
-{
-	return ComputeThreshold(IMAQ_RGB, redLow, redHigh, greenLow, greenHigh, blueLow, blueHigh);
-}
-
-/**
- * Perform a threshold in RGB space.
- * @param threshold a reference to the Threshold object to use.
- * @returns A pointer to a BinaryImage that represents the result of the threshold operation.
- */
-BinaryImage *ColorImage::ThresholdRGB(Threshold &t)
-{
-	return ComputeThreshold(IMAQ_RGB, t.plane1Low, t.plane1High,
-								t.plane2Low, t.plane2High,
-								t.plane3Low, t.plane3High);
-}
-
-/**
- * Perform a threshold in HSL space.
- * @param hueLow Low value for hue
- * @param hueHigh High value for hue
- * @param saturationLow Low value for saturation
- * @param saturationHigh High value for saturation
- * @param luminenceLow Low value for luminence
- * @param luminenceHigh High value for luminence
- * @returns a pointer to a BinaryImage that represents the result of the threshold operation.
- */
-BinaryImage *ColorImage::ThresholdHSL(int hueLow, int hueHigh, int saturationLow, int saturationHigh, int luminenceLow, int luminenceHigh)
-{
-	return ComputeThreshold(IMAQ_HSL, hueLow, hueHigh, saturationLow, saturationHigh, luminenceLow, luminenceHigh);
-}
-
-/**
- * Perform a threshold in HSL space.
- * @param threshold a reference to the Threshold object to use.
- * @returns A pointer to a BinaryImage that represents the result of the threshold operation.
- */
-BinaryImage *ColorImage::ThresholdHSL(Threshold &t)
-{
-	return ComputeThreshold(IMAQ_HSL, t.plane1Low, t.plane1High,
-								t.plane2Low, t.plane2High,
-								t.plane3Low, t.plane3High);
-}
-
-/**
- * Perform a threshold in HSV space.
- * @param hueLow Low value for hue
- * @param hueHigh High value for hue
- * @param saturationLow Low value for saturation
- * @param saturationHigh High value for saturation
- * @param valueLow Low value
- * @param valueHigh High value
- * @returns a pointer to a BinaryImage that represents the result of the threshold operation.
- */
-BinaryImage *ColorImage::ThresholdHSV(int hueLow, int hueHigh, int saturationLow, int saturationHigh, int valueLow, int valueHigh)
-{
-	return ComputeThreshold(IMAQ_HSV, hueLow, hueHigh, saturationLow, saturationHigh, valueLow, valueHigh);
-}
-
-/**
- * Perform a threshold in HSV space.
- * @param threshold a reference to the Threshold object to use.
- * @returns A pointer to a BinaryImage that represents the result of the threshold operation.
- */
-BinaryImage *ColorImage::ThresholdHSV(Threshold &t)
-{
-	return ComputeThreshold(IMAQ_HSV, t.plane1Low, t.plane1High,
-								t.plane2Low, t.plane2High,
-								t.plane3Low, t.plane3High);
-}
-
-/**
- * Perform a threshold in HSI space.
- * @param hueLow Low value for hue
- * @param hueHigh High value for hue
- * @param saturationLow Low value for saturation
- * @param saturationHigh High value for saturation
- * @param valueLow Low intensity
- * @param valueHigh High intensity
- * @returns a pointer to a BinaryImage that represents the result of the threshold operation.
- */
-BinaryImage *ColorImage::ThresholdHSI(int hueLow, int hueHigh, int saturationLow, int saturationHigh, int intensityLow, int intensityHigh)
-{
-	return ComputeThreshold(IMAQ_HSI, hueLow, hueHigh, saturationLow, saturationHigh, intensityLow, intensityHigh);
-}
-
-/**
- * Perform a threshold in HSI space.
- * @param threshold a reference to the Threshold object to use.
- * @returns A pointer to a BinaryImage that represents the result of the threshold operation.
- */
-BinaryImage *ColorImage::ThresholdHSI(Threshold &t)
-{
-	return ComputeThreshold(IMAQ_HSI, t.plane1Low, t.plane1High,
-								t.plane2Low, t.plane2High,
-								t.plane3Low, t.plane3High);
-}
-
-/**
- * Extract a color plane from the image
- * @param mode The ColorMode to use for the plane extraction
- * @param planeNumber Which plane is to be extracted
- * @returns A pointer to a MonoImage that represents the extracted plane.
- */
-MonoImage *ColorImage::ExtractColorPlane(ColorMode mode, int planeNumber)
-{
-	MonoImage *result = new MonoImage();
-	if (m_imaqImage == NULL)
-		wpi_setWPIError(NullParameter);
-	int success = imaqExtractColorPlanes(m_imaqImage, 
-										 mode, 
-										 (planeNumber == 1) ? result->GetImaqImage() : NULL, 
-										 (planeNumber == 2) ? result->GetImaqImage() : NULL, 
-										 (planeNumber == 3) ? result->GetImaqImage() : NULL);
-	wpi_setImaqErrorWithContext(success, "Imaq ExtractColorPlanes failed");
-	return result;
-}
-
-/*
- * Extract the first color plane for an image.
- * @param mode The color mode in which to operate
- * @returns a pointer to a MonoImage that is the extracted plane.
- */
-MonoImage *ColorImage::ExtractFirstColorPlane(ColorMode mode)
-{
-	return ExtractColorPlane(mode, 1);
-}
-
-/*
- * Extract the second color plane for an image.
- * @param mode The color mode in which to operate
- * @returns a pointer to a MonoImage that is the extracted plane.
- */
-MonoImage *ColorImage::ExtractSecondColorPlane(ColorMode mode)
-{
-	return ExtractColorPlane(mode, 2);
-}
-
-/*
- * Extract the third color plane for an image.
- * @param mode The color mode in which to operate
- * @returns a pointer to a MonoImage that is the extracted plane.
- */
-MonoImage *ColorImage::ExtractThirdColorPlane(ColorMode mode)
-{
-	return ExtractColorPlane(mode, 3);
-}
-
-/*
- * Extract the red plane from an RGB image.
- * @returns a pointer to a MonoImage that is the extraced plane.
- */
-MonoImage *ColorImage::GetRedPlane()
-{
-	return ExtractFirstColorPlane(IMAQ_RGB);
-}
-
-/*
- * Extract the green plane from an RGB image.
- * @returns a pointer to a MonoImage that is the extraced plane.
- */
-MonoImage *ColorImage::GetGreenPlane()
-{
-    return ExtractSecondColorPlane(IMAQ_RGB);
-}
-
-/*
- * Extract the blue plane from an RGB image.
- * @returns a pointer to a MonoImage that is the extraced plane.
- */
-MonoImage *ColorImage::GetBluePlane()
-{
-    return ExtractThirdColorPlane(IMAQ_RGB);
-}
-
-/*
- * Extract the Hue plane from an HSL image.
- * @returns a pointer to a MonoImage that is the extraced plane.
- */
-MonoImage *ColorImage::GetHSLHuePlane()
-{
-	return ExtractFirstColorPlane(IMAQ_HSL);
-}
-
-/*
- * Extract the Hue plane from an HSV image.
- * @returns a pointer to a MonoImage that is the extraced plane.
- */
-MonoImage *ColorImage::GetHSVHuePlane()
-{
-	return ExtractFirstColorPlane(IMAQ_HSV);
-}
-
-/*
- * Extract the Hue plane from an HSI image.
- * @returns a pointer to a MonoImage that is the extraced plane.
- */
-MonoImage *ColorImage::GetHSIHuePlane()
-{
-	return ExtractFirstColorPlane(IMAQ_HSI);
-}
-
-/*
- * Extract the Luminance plane from an HSL image.
- * @returns a pointer to a MonoImage that is the extraced plane.
- */
-MonoImage *ColorImage::GetLuminancePlane()
-{
-	return ExtractThirdColorPlane(IMAQ_HSL);
-}
-
-/*
- * Extract the Value plane from an HSV image.
- * @returns a pointer to a MonoImage that is the extraced plane.
- */
-MonoImage *ColorImage::GetValuePlane()
-{
-	return ExtractThirdColorPlane(IMAQ_HSV);
-}
-
-/*
- * Extract the Intensity plane from an HSI image.
- * @returns a pointer to a MonoImage that is the extraced plane.
- */
-MonoImage *ColorImage::GetIntensityPlane()
-{
-	return ExtractThirdColorPlane(IMAQ_HSI);
-}
-
-/**
- * Replace a plane in the ColorImage with a MonoImage
- * Replaces a single plane in the image with a MonoImage
- * @param mode The ColorMode in which to operate
- * @param plane The pointer to the replacement plane as a MonoImage
- * @param planeNumber The plane number (1, 2, 3) to replace
- */
-void ColorImage::ReplacePlane(ColorMode mode, MonoImage *plane, int planeNumber) {
-	int success = imaqReplaceColorPlanes(m_imaqImage, 
-										 (const Image*) m_imaqImage, 
-									     mode, 
-									     (planeNumber == 1) ? plane->GetImaqImage() : NULL, 
-									     (planeNumber == 2) ? plane->GetImaqImage() : NULL, 
-									     (planeNumber == 3) ? plane->GetImaqImage() : NULL);
-	wpi_setImaqErrorWithContext(success, "Imaq ReplaceColorPlanes failed");
-}
-
-/**
- * Replace the first color plane with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceFirstColorPlane(ColorMode mode, MonoImage *plane)
-{
-	ReplacePlane(mode, plane, 1);
-}
-
-/**
- * Replace the second color plane with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceSecondColorPlane(ColorMode mode, MonoImage *plane)
-{
-	ReplacePlane(mode, plane, 2);
-}
-
-/**
- * Replace the third color plane with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceThirdColorPlane(ColorMode mode, MonoImage *plane)
-{ 
-	ReplacePlane(mode, plane, 3);
-}
-
-/**
- * Replace the red color plane with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceRedPlane(MonoImage *plane)
-{
-	ReplaceFirstColorPlane(IMAQ_RGB, plane);
-}
-
-/**
- * Replace the green color plane with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceGreenPlane(MonoImage *plane)
-{
-	ReplaceSecondColorPlane(IMAQ_RGB, plane);
-}
-
-/**
- * Replace the blue color plane with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceBluePlane(MonoImage *plane)
-{
-	ReplaceThirdColorPlane(IMAQ_RGB, plane);
-}
-
-
-/**
- * Replace the Hue color plane in a HSL image with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceHSLHuePlane(MonoImage *plane)
-{
-	return ReplaceFirstColorPlane(IMAQ_HSL, plane);
-}
-
-/**
- * Replace the Hue color plane in a HSV image with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceHSVHuePlane(MonoImage *plane)
-{
-	return ReplaceFirstColorPlane(IMAQ_HSV, plane);
-}
-
-/**
- * Replace the first Hue plane in a HSI image with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceHSIHuePlane(MonoImage *plane)
-{
-	return ReplaceFirstColorPlane(IMAQ_HSI, plane);
-}
-
-/**
- * Replace the Saturation color plane in an HSL image with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceHSLSaturationPlane(MonoImage *plane)
-{
-	return ReplaceSecondColorPlane(IMAQ_HSL, plane);
-}
-
-/**
- * Replace the Saturation color plane in a HSV image with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceHSVSaturationPlane(MonoImage *plane)
-{
-	return ReplaceSecondColorPlane(IMAQ_HSV, plane);
-}
-
-/**
- * Replace the Saturation color plane in a HSI image with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceHSISaturationPlane(MonoImage *plane)
-{
-	return ReplaceSecondColorPlane(IMAQ_HSI, plane);
-}
-
-/**
- * Replace the Luminance color plane in an HSL image with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceLuminancePlane(MonoImage *plane)
-{
-	return ReplaceThirdColorPlane(IMAQ_HSL, plane);
-}
-
-/**
- * Replace the Value color plane in an HSV with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceValuePlane(MonoImage *plane)
-{
-	return ReplaceThirdColorPlane(IMAQ_HSV, plane);
-}
-
-/**
- * Replace the Intensity color plane in a HSI image with a MonoImage.
- * @param mode The color mode in which to operate.
- * @param plane A pointer to a MonoImage that will replace the specified color plane.
- */
-void ColorImage::ReplaceIntensityPlane(MonoImage *plane)
-{
-	return ReplaceThirdColorPlane(IMAQ_HSI, plane);
-}
-
-//TODO: frcColorEqualize(Image* dest, const Image* source, int colorEqualization) needs to be modified
-//The colorEqualization parameter is discarded and is set to TRUE in the call to imaqColorEqualize.
-void ColorImage::Equalize(bool allPlanes)
-{
-	// Note that this call uses NI-defined TRUE and FALSE
-	int success = imaqColorEqualize(m_imaqImage, (const Image*) m_imaqImage, (allPlanes) ? TRUE : FALSE);
-	wpi_setImaqErrorWithContext(success, "Imaq ColorEqualize error");
-}
-
-void ColorImage::ColorEqualize()
-{
-	Equalize(true);
-}
-
-void ColorImage::LuminanceEqualize()
-{
-	Equalize(false);
-}
diff --git a/aos/externals/WPILib/WPILib/Vision/ColorImage.h b/aos/externals/WPILib/WPILib/Vision/ColorImage.h
deleted file mode 100644
index af71ce9..0000000
--- a/aos/externals/WPILib/WPILib/Vision/ColorImage.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __COLOR_IMAGE_H__
-#define __COLOR_IMAGE_H__
-
-#include "ImageBase.h"
-#include "BinaryImage.h"
-#include "Threshold.h"
-
-class ColorImage : public ImageBase
-{
-public:
-	ColorImage(ImageType type);
-	virtual ~ColorImage();
-	BinaryImage *ThresholdRGB(int redLow, int redHigh, int greenLow, int greenHigh, int blueLow, int blueHigh);
-	BinaryImage *ThresholdHSL(int hueLow, int hueHigh, int saturationLow, int saturationHigh, int luminenceLow, int luminenceHigh);
-	BinaryImage *ThresholdHSV(int hueLow, int hueHigh, int saturationLow, int saturationHigh, int valueHigh, int valueLow);
-	BinaryImage *ThresholdHSI(int hueLow, int hueHigh, int saturationLow, int saturationHigh, int intensityLow, int intensityHigh);
-	BinaryImage *ThresholdRGB(Threshold &threshold);
-	BinaryImage *ThresholdHSL(Threshold &threshold);
-	BinaryImage *ThresholdHSV(Threshold &threshold);
-	BinaryImage *ThresholdHSI(Threshold &threshold);
-	MonoImage *GetRedPlane();
-	MonoImage *GetGreenPlane();
-	MonoImage *GetBluePlane();
-	MonoImage *GetHSLHuePlane();
-	MonoImage *GetHSVHuePlane();
-	MonoImage *GetHSIHuePlane();
-	MonoImage *GetHSLSaturationPlane();
-	MonoImage *GetHSVSaturationPlane();
-	MonoImage *GetHSISaturationPlane();
-	MonoImage *GetLuminancePlane();
-	MonoImage *GetValuePlane();
-	MonoImage *GetIntensityPlane();
-	void ReplaceRedPlane(MonoImage *plane);
-	void ReplaceGreenPlane(MonoImage *plane);
-	void ReplaceBluePlane(MonoImage *plane);
-	void ReplaceHSLHuePlane(MonoImage *plane);
-	void ReplaceHSVHuePlane(MonoImage *plane);
-	void ReplaceHSIHuePlane(MonoImage *plane);
-	void ReplaceHSLSaturationPlane(MonoImage *plane);
-	void ReplaceHSVSaturationPlane(MonoImage *plane);
-	void ReplaceHSISaturationPlane(MonoImage *plane);
-	void ReplaceLuminancePlane(MonoImage *plane);
-	void ReplaceValuePlane(MonoImage *plane);
-	void ReplaceIntensityPlane(MonoImage *plane);
-	void ColorEqualize();
-	void LuminanceEqualize();
-	
-private:
-	BinaryImage *ComputeThreshold(ColorMode colorMode, int low1, int high1, int low2, int high2, int low3, int high3);
-	void Equalize(bool allPlanes);
-	MonoImage * ExtractColorPlane(ColorMode mode, int planeNumber);
-	MonoImage * ExtractFirstColorPlane(ColorMode mode);
-	MonoImage * ExtractSecondColorPlane(ColorMode mode);
-	MonoImage * ExtractThirdColorPlane(ColorMode mode);
-	void ReplacePlane(ColorMode mode, MonoImage *plane, int planeNumber);
-	void ReplaceFirstColorPlane(ColorMode mode, MonoImage *plane);
-	void ReplaceSecondColorPlane(ColorMode mode, MonoImage *plane);
-	void ReplaceThirdColorPlane(ColorMode mode, MonoImage *plane);
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Vision/EnumCameraParameter.cpp b/aos/externals/WPILib/WPILib/Vision/EnumCameraParameter.cpp
deleted file mode 100644
index 3801836..0000000
--- a/aos/externals/WPILib/WPILib/Vision/EnumCameraParameter.cpp
+++ /dev/null
@@ -1,67 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "EnumCameraParameter.h"
-#include <stdio.h>
-#include <string.h>
-
-/**
- * Constructor for an enumeration camera parameter.
- * Enumeration camera parameters have lists of value choices and strings that go
- * with them. There are also C++ enumerations to go along with them.
- * @param setString The string for an HTTP request to set the value.
- * @param getString The string for an HTTP request to get the value.
- * @param choices An array of strings of the parameter choices set in the http strings.
- * @param numChoices The number of choices in the enumeration set.
- */
-EnumCameraParameter::EnumCameraParameter(const char *setString, const char *getString, bool requiresRestart,
-													const char *const*choices, int numChoices)
-	: IntCameraParameter(setString, getString, requiresRestart)
-{
-	m_enumValues = choices;
-	m_numChoices = numChoices;
-}
-
-/*
- * Check if an enumeration camera parameter has changed.
- * Check if the parameter has changed and update the camera if it has. This is called
- * from a loop in the parameter checker task.
- * @returns true if the camera needs to restart
- */
-bool EnumCameraParameter::CheckChanged(bool &changed, char *param)
-{
-	changed = m_changed;
-	if (m_changed)
-	{
-		m_changed = false;
-		sprintf(param, m_setString, m_enumValues[m_value]);
-		return m_requiresRestart;
-	}
-	return false;
-}
-
-/**
- * Extract the parameter value from a string.
- * Extract the parameter value from the camera status message.
- * @param string The string returned from the camera.
- * @param length The length of the string from the camera.
- */
-void EnumCameraParameter::GetParamFromString(const char *string, int stringLength)
-{
-	char resultString[50];
-	if (SearchForParam(m_getString, string, stringLength, resultString) < 0) return;
-	for (int i = 0; i < m_numChoices; i++)
-	{
-		if (strcmp(resultString, m_enumValues[i]) == 0)
-		{
-			if (!m_changed)	  // don't change parameter that's been set in code
-			{
-				m_value = i;
-			}
-		}
-	}
-}
-
diff --git a/aos/externals/WPILib/WPILib/Vision/EnumCameraParameter.h b/aos/externals/WPILib/WPILib/Vision/EnumCameraParameter.h
deleted file mode 100644
index 543209f..0000000
--- a/aos/externals/WPILib/WPILib/Vision/EnumCameraParameter.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __ENUM_CAMERA_PARAMETER_H__
-#define __ENUM_CAMERA_PARAMETER_H__
-
-#include "IntCameraParameter.h"
-
-/**
- * Enumerated camera parameter.
- * This class represents a camera parameter that takes an enumerated type for a value.
- */
-class EnumCameraParameter: public IntCameraParameter
-{
-private:
-	const char *const*m_enumValues;
-	int m_numChoices;
-
-public:
-	EnumCameraParameter(const char *setString, const char *getString, bool requiresRestart, const char *const*choices, int numChoices);
-	virtual bool CheckChanged(bool &changed, char *param);
-	virtual void GetParamFromString(const char *string, int stringLength);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Vision/HSLImage.cpp b/aos/externals/WPILib/WPILib/Vision/HSLImage.cpp
deleted file mode 100644
index fec283a..0000000
--- a/aos/externals/WPILib/WPILib/Vision/HSLImage.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "HSLImage.h"
-
-/**
- * Create a new image that uses the Hue, Saturation, and Luminance planes.
- */
-HSLImage::HSLImage() : ColorImage(IMAQ_IMAGE_HSL)
-{
-}
-
-/**
- * Create a new image by loading a file.
- * @param fileName The path of the file to load.
- */
-HSLImage::HSLImage(const char *fileName) : ColorImage(IMAQ_IMAGE_HSL)
-{
-	int success = imaqReadFile(m_imaqImage, fileName, NULL, NULL);
-	wpi_setImaqErrorWithContext(success, "Imaq ReadFile error");
-}
-
-HSLImage::~HSLImage()
-{
-}
diff --git a/aos/externals/WPILib/WPILib/Vision/HSLImage.h b/aos/externals/WPILib/WPILib/Vision/HSLImage.h
deleted file mode 100644
index fb365ad..0000000
--- a/aos/externals/WPILib/WPILib/Vision/HSLImage.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __HSL_IMAGE_H__
-#define __HSL_IMAGE_H__
-
-#include "ColorImage.h"
-
-/**
- * A color image represented in HSL color space at 3 bytes per pixel.
- */
-class HSLImage : public ColorImage
-{
-public:
-    HSLImage();
-    HSLImage(const char *fileName);
-    virtual ~HSLImage();
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Vision/ImageBase.cpp b/aos/externals/WPILib/WPILib/Vision/ImageBase.cpp
deleted file mode 100644
index 769d2bc..0000000
--- a/aos/externals/WPILib/WPILib/Vision/ImageBase.cpp
+++ /dev/null
@@ -1,77 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "ImageBase.h"
-#include "nivision.h"
-
-/** Private NI function needed to write to the VxWorks target */
-IMAQ_FUNC int Priv_SetWriteFileAllowed(uint32_t enable); 
-
-/**
- * Create a new instance of an ImageBase.
- * Imagebase is the base of all the other image classes. The constructor
- * creates any type of image and stores the pointer to it in the class.
- * @param type The type of image to create
- */
-ImageBase::ImageBase(ImageType type)
-{
-	m_imaqImage = imaqCreateImage(type, DEFAULT_BORDER_SIZE);
-}
-
-/**
- * Frees memory associated with an ImageBase.
- * Destructor frees the imaq image allocated with the class.
- */
-ImageBase::~ImageBase()
-{
-	if(m_imaqImage)
-		imaqDispose(m_imaqImage);
-}
-
-/**
- * Writes an image to a file with the given filename.
- * Write the image to a file in the flash on the cRIO.
- * @param fileName The name of the file to write
- */
-void ImageBase::Write(const char *fileName)
-{
-	Priv_SetWriteFileAllowed(1);
-	int success = imaqWriteFile(m_imaqImage, fileName, NULL);
-	wpi_setImaqErrorWithContext(success, "Imaq Image writeFile error");
-}
-
-/**
- * Gets the height of an image.
- * @return The height of the image in pixels.
- */
-int ImageBase::GetHeight()
-{
-	int height;
-	imaqGetImageSize(m_imaqImage, NULL, &height);
-	return height;
-}
-
-/**
- * Gets the width of an image.
- * @return The width of the image in pixels.
- */
-int ImageBase::GetWidth()
-{
-	int width;
-	imaqGetImageSize(m_imaqImage, &width, NULL);
-	return width;
-}
-
-/**
- * Access the internal IMAQ Image data structure.
- * 
- * @return A pointer to the internal IMAQ Image data structure.
- */
-Image *ImageBase::GetImaqImage()
-{
-	return m_imaqImage;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Vision/ImageBase.h b/aos/externals/WPILib/WPILib/Vision/ImageBase.h
deleted file mode 100644
index 6a45ec1..0000000
--- a/aos/externals/WPILib/WPILib/Vision/ImageBase.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __IMAGE_BASE_H__
-#define __IMAGE_BASE_H__
-
-#include <stdio.h>
-#include "nivision.h"
-#include "ErrorBase.h"
-
-#define DEFAULT_BORDER_SIZE 3
-
-class ImageBase : public ErrorBase
-{
-public:
-	ImageBase(ImageType type);
-	virtual ~ImageBase();
-	virtual void Write(const char *fileName);
-	int GetHeight();
-	int GetWidth();
-	Image *GetImaqImage();
-protected:
-	Image *m_imaqImage;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Vision/IntCameraParameter.cpp b/aos/externals/WPILib/WPILib/Vision/IntCameraParameter.cpp
deleted file mode 100644
index af7ff2c..0000000
--- a/aos/externals/WPILib/WPILib/Vision/IntCameraParameter.cpp
+++ /dev/null
@@ -1,111 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "IntCameraParameter.h"
-#include "pcre.h"
-#include <stdio.h>
-#include <string.h>
-
-/**
- * Constructor for an integer camera parameter.
- * @param setString The string to set a value in the HTTP request
- * @param getString The string to retrieve a value in the HTTP request
- */
-IntCameraParameter::IntCameraParameter(const char *setString, const char *getString, bool requiresRestart)
-{
-	m_changed = false;
-	m_value = 0;
-	m_setString = setString;
-	m_getString = getString;
-	m_requiresRestart = requiresRestart;
-}
-
-/**
- * Get a value for a camera parameter.
- * @returns The camera parameter cached valued.
- */
-int IntCameraParameter::GetValue()
-{
-	return m_value;
-}
-
-/**
- * Set a value for a camera parameter.
- * Mark the value for change. The value will be updated in the parameter
- * change loop.
- */
-void IntCameraParameter::SetValue(int value)
-{
-	m_value = value;
-	m_changed = true;
-}
-
-/**
- * Check if a parameter has changed and update.
- * Check if a parameter has changed and send the update string if it
- * has changed. This is called from the loop in the parameter task loop.
- * @returns true if the camera needs to restart
- */
-bool IntCameraParameter::CheckChanged(bool &changed, char *param)
-{
-	changed = m_changed;
-	if (m_changed)
-	{
-		sprintf(param, m_setString, m_value);
-		m_changed = false;
-		return m_requiresRestart;
-	}
-	return false;
-}
-
-/**
- * Get a parameter value from the string.
- * Get a parameter value from the camera status string. If it has been changed
- * been changed by the program, then don't update it. Program values have
- * precedence over those written in the camera.
- */
-void IntCameraParameter::GetParamFromString(const char *string, int stringLength)
-{
-	char resultString[150];
-	if (SearchForParam(m_getString, string, stringLength, resultString) >= 0)
-	{	
-		if (!m_changed) m_value = atoi(resultString);
-	}
-}
-
-/**
- * @param pattern: the regular expression
- * @param searchString the text to search
- * @param searchStringLen the length of searchString
- * @param result buffer to put resulting text into, must be pre-allocated
- */
-int IntCameraParameter::SearchForParam(const char *pattern, const char *searchString, int searchStringLen, char *result)
-{
-	int vectorLen = 10;
-	int resultVector[vectorLen];
-	const char *error;
-	int erroffset;
-	pcre *compiledPattern = pcre_compile(
-			pattern, //"root.Image.I0.Appearance.Resolution=(.*)", 
-			PCRE_CASELESS, 
-			&error, // for error message 
-			&erroffset, // for error offset 
-			NULL); // use default character tables 
-	int rc;
-	rc = pcre_exec(compiledPattern, 
-					NULL, 
-					searchString, 
-					searchStringLen, 
-					0, 
-					0, 
-					resultVector,		//locations of submatches 
-					vectorLen);			//size of ovector
-	int length = resultVector[3] - resultVector[2];
-	memcpy(result, &searchString[resultVector[2]], length);
-	result[length] = '\0';
-	return rc;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Vision/IntCameraParameter.h b/aos/externals/WPILib/WPILib/Vision/IntCameraParameter.h
deleted file mode 100644
index f47ec53..0000000
--- a/aos/externals/WPILib/WPILib/Vision/IntCameraParameter.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __INT_CAMERA_PARAMETER_H__
-#define __INT_CAMERA_PARAMETER_H__
-
-#include <vxWorks.h>
-
-/**
- * Integer camera parameter.
- * This class represents a camera parameter that takes an integer value.
- */
-class IntCameraParameter
-{
-protected:
-	const char *m_setString;
-	const char *m_getString;
-	bool m_changed;
-	bool m_requiresRestart;
-	int m_value;			// parameter value
-
-	int SearchForParam(const char *pattern, const char *searchString, int searchStringLen, char *result);
-
-public:
-	IntCameraParameter(const char *setString, const char *getString, bool requiresRestart);
-	virtual ~IntCameraParameter(){}
-	int GetValue();
-	void SetValue(int value);
-	virtual bool CheckChanged(bool &changed, char *param);
-	virtual void GetParamFromString(const char *string, int stringLength);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Vision/MonoImage.cpp b/aos/externals/WPILib/WPILib/Vision/MonoImage.cpp
deleted file mode 100644
index f1e0022..0000000
--- a/aos/externals/WPILib/WPILib/Vision/MonoImage.cpp
+++ /dev/null
@@ -1,53 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "MonoImage.h"
-#include "nivision.h"
-
-MonoImage::MonoImage() : ImageBase(IMAQ_IMAGE_U8)
-{
-}
-
-MonoImage::~MonoImage()
-{
-}
-
-/**
- * Look for ellipses in an image.
- * Given some input parameters, look for any number of ellipses in an image.
- * @param ellipseDescriptor Ellipse descriptor
- * @param curveOptions Curve options
- * @param shapeDetectionOptions Shape detection options
- * @param roi Region of Interest
- * @returns a vector of EllipseMatch structures (0 length vector on no match)
- */
-vector<EllipseMatch> * MonoImage::DetectEllipses(
-		EllipseDescriptor *ellipseDescriptor, CurveOptions *curveOptions,
-		ShapeDetectionOptions *shapeDetectionOptions, ROI *roi)
-{
-	int numberOfMatches;
-	EllipseMatch *e = imaqDetectEllipses(m_imaqImage, ellipseDescriptor,
-										curveOptions, shapeDetectionOptions, roi, &numberOfMatches);
-	vector<EllipseMatch> *ellipses = new vector<EllipseMatch>;
-	if (e == NULL)
-	{
-		return ellipses;
-	}
-	for (int i = 0; i < numberOfMatches; i++)
-	{
-		ellipses->push_back(e[i]);
-	}
-	imaqDispose(e);
-	return ellipses;
-}
-
-vector<EllipseMatch> * MonoImage::DetectEllipses(
-		EllipseDescriptor *ellipseDescriptor)
-{
-	vector<EllipseMatch> *ellipses = DetectEllipses(ellipseDescriptor, NULL,
-			NULL, NULL);
-	return ellipses;
-}
diff --git a/aos/externals/WPILib/WPILib/Vision/MonoImage.h b/aos/externals/WPILib/WPILib/Vision/MonoImage.h
deleted file mode 100644
index 277ff3a..0000000
--- a/aos/externals/WPILib/WPILib/Vision/MonoImage.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __MONO_IMAGE_H__
-#define __MONO_IMAGE_H__
-
-#include "ImageBase.h"
-
-#include <vector>
-
-using namespace std;
-
-class MonoImage : public ImageBase
-{
-public:
-	MonoImage();
-	virtual ~MonoImage();
-
-	vector<EllipseMatch> * DetectEllipses(EllipseDescriptor *ellipseDescriptor,
-					CurveOptions *curveOptions,
-					ShapeDetectionOptions *shapeDetectionOptions,
-					ROI *roi);
-	vector<EllipseMatch> * DetectEllipses(EllipseDescriptor *ellipseDescriptor);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Vision/PCVideoServer.cpp b/aos/externals/WPILib/WPILib/Vision/PCVideoServer.cpp
deleted file mode 100644
index 8b754b3..0000000
--- a/aos/externals/WPILib/WPILib/Vision/PCVideoServer.cpp
+++ /dev/null
@@ -1,282 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include <vxWorks.h>
-
-#include "PCVideoServer.h"
-
-#include <errnoLib.h>
-#include <hostLib.h>
-#include <inetLib.h>
-#include <sockLib.h>
-#include <cstring>
-
-#include "NetworkCommunication/UsageReporting.h"
-#include "Task.h"
-#include "Timer.h"
-#include "Vision/AxisCamera.h"
-#include "WPIErrors.h"
-
-/**
- * @brief Implements an object that automatically does a close on a
- * camera socket on destruction.
- */
-class ScopedSocket {
-public:
-	ScopedSocket(int camSock)
-		: m_camSock(camSock)
-	{
-	}
-
-	~ScopedSocket() {
-		if (m_camSock != ERROR) {
-			close(m_camSock);
-		}
-	}
-	// Cast to int allows you to pass this to any function that
-	// takes the socket as an int.
-	operator int() const {
-		return m_camSock;
-	}
-
-private:
-	int m_camSock;
-};
-
-//============================================================================
-// PCVideoServer
-//============================================================================
-
-/**
- * @brief Constructor.
- */
-PCVideoServer::PCVideoServer()
-	: m_serverTask("PCVideoServer", (FUNCPTR)s_ServerTask)
-	, m_newImageSem (NULL)
-	, m_stopServer (false)
-{
-	AxisCamera &cam = AxisCamera::GetInstance();
-	m_newImageSem = cam.GetNewImageSem();
-	if (!cam.StatusIsFatal())
-	{
-		StartServerTask();
-	}
-	else
-	{
-		CloneError(&cam);
-	}
-}
-
-/**
- * @brief Destructor.
- * Stop serving images and destroy this class.
- */
-PCVideoServer::~PCVideoServer()
-{
-	// Stop the images to PC server.
-	Stop();
-	// Clear the error so that you can use this object to make a connection to
-	// the VIDEO_TO_PC_PORT to stop the ImageToPCServer if it is waiting to
-	// accept connections from a PC.
-	ClearError();
-	// Open a socket.
-	int camSock = socket(AF_INET, SOCK_STREAM, 0);
-	if (camSock == ERROR)
-	{
-		wpi_setErrnoError();
-		return;
-	}
-	ScopedSocket scopedCamSock(camSock);
-	// If successful
-	if (!StatusIsFatal())
-	{
-		//  Create a connection to the localhost.
-		struct sockaddr_in selfAddr;
-		int sockAddrSize = sizeof(selfAddr);
-		bzero ((char *) &selfAddr, sockAddrSize);
-		selfAddr.sin_family = AF_INET;
-		selfAddr.sin_len = (u_char) sockAddrSize;
-		selfAddr.sin_port = htons (VIDEO_TO_PC_PORT);
-
-		if (( (int)(selfAddr.sin_addr.s_addr = inet_addr (const_cast<char*>("localhost")) ) != ERROR) ||
-			( (int)(selfAddr.sin_addr.s_addr = hostGetByName (const_cast<char*>("localhost")) ) != ERROR))
-		{
-			struct timeval connectTimeout;
-			connectTimeout.tv_sec = 1;
-			connectTimeout.tv_usec = 0;
-			connectWithTimeout(camSock, (struct sockaddr *) &selfAddr, sockAddrSize, &connectTimeout);
-		}
-	}
-}
-
-/**
- * Start the task that is responsible for sending images to the PC.
- */
-int PCVideoServer::StartServerTask()
-{
-	if (StatusIsFatal())
-	{
-		return -1;
-	}
-	int id = 0;
-	m_stopServer = false;
-	// Check for prior copy of running task
-	int oldId = taskNameToId((char*)m_serverTask.GetName());
-	if(oldId != ERROR)
-	{
-		// TODO: Report error. You are in a bad state.
-		taskDelete(oldId);
-	}
-
-	// spawn video server task
-	// this is done to ensure that the task is spawned with the
-	// floating point context save parameter.
-	bool started = m_serverTask.Start((int)this);
-
-	id = m_serverTask.GetID();
-
-	if (!started)
-	{
-		wpi_setWPIError(TaskError);
-		return id;
-	}
-	taskDelay(1);
-	return id;
-}
-
-/**
- * @brief Start sending images to the PC.
- */
-void PCVideoServer::Start()
-{
-	StartServerTask();
-}
-
-/**
- * @brief Stop sending images to the PC.
- */
-void PCVideoServer::Stop()
-{
-	m_stopServer = true;
-}
-
-/**
- * Static stub for kicking off the server task
- */
-int PCVideoServer::s_ServerTask(PCVideoServer *thisPtr)
-{
-	return thisPtr->ServerTask();
-}
-
-/**
- * @brief Initialize the socket and serve images to the PC.
- * This is the task that serves images to the PC in a loop. This runs
- * as a separate task.
- */
-int PCVideoServer::ServerTask()
-{
-	/* Setup to PC sockets */
-	struct sockaddr_in serverAddr;
-	int sockAddrSize = sizeof(serverAddr);
-	int pcSock = ERROR;
-	bzero ((char *) &serverAddr, sockAddrSize);
-	serverAddr.sin_len = (u_char) sockAddrSize;
-	serverAddr.sin_family = AF_INET;
-	serverAddr.sin_port = htons (VIDEO_TO_PC_PORT);
-	serverAddr.sin_addr.s_addr = htonl (INADDR_ANY);
-
-	int success;
-	while (true)
-	{
-		taskSafe();
-		// Create the socket.
-		if ((pcSock = socket (AF_INET, SOCK_STREAM, 0)) == ERROR)
-		{
-			wpi_setErrnoErrorWithContext("Failed to create the PCVideoServer socket");
-			continue;
-		}
-		// Set the TCP socket so that it can be reused if it is in the wait state.
-		int reuseAddr = 1;
-		setsockopt(pcSock, SOL_SOCKET, SO_REUSEADDR, reinterpret_cast<char*>(&reuseAddr), sizeof(reuseAddr));
-		// Bind socket to local address.
-		if (bind (pcSock, (struct sockaddr *) &serverAddr, sockAddrSize) == ERROR)
-		{
-			wpi_setErrnoErrorWithContext("Failed to bind the PCVideoServer port");
-			close (pcSock);
-			continue;
-		}
-		// Create queue for client connection requests.
-		if (listen (pcSock, 1) == ERROR)
-		{
-			wpi_setErrnoErrorWithContext("Failed to listen on the PCVideoServer port");
-			close (pcSock);
-			continue;
-		}
-
-		struct sockaddr_in clientAddr;
-		int clientAddrSize;
-		int newPCSock = accept (pcSock, reinterpret_cast<sockaddr*>(&clientAddr), &clientAddrSize);
-		if (newPCSock  == ERROR)
-		{
-			close(pcSock);
-			continue;
-		}
-		//TODO: check camera error
-
-		// Report usage when there is actually a connection.
-		nUsageReporting::report(nUsageReporting::kResourceType_PCVideoServer, 0);
-
-		int numBytes = 0;
-		int imageDataSize = 0;
-		char* imageData = NULL;
-
-		while(!m_stopServer)
-		{
-			success = semTake(m_newImageSem, 1000);
-			if (success == ERROR)
-			{
-				// If the semTake timed out, there are no new images from the camera.
-				continue;
-			}
-			success = AxisCamera::GetInstance().CopyJPEG(&imageData, numBytes, imageDataSize);
-			if (!success)
-			{
-				// No point in running too fast -
-				Wait(1.0);
-				// If camera is not initialzed you will get failure and
-				// the timestamp is invalid. Reset this value and try again.
-				continue;
-			}
-
-			// Write header to PC
-			static const char header[4]={1,0,0,0};
-			int headerSend = write(newPCSock, const_cast<char*>(header), 4);
-
-			// Write image length to PC
-			int lengthSend = write(newPCSock, reinterpret_cast<char*>(&numBytes), 4);
-
-			// Write image to PC
-			int sent = write (newPCSock, imageData, numBytes);
-
-			// The PC probably closed connection. Get out of here
-			// and try listening again.
-			if (headerSend == ERROR || lengthSend == ERROR || sent == ERROR)
-			{
-				break;
-			}
-		}
-		// Clean up
-		delete [] imageData;
-		close (newPCSock);
-		newPCSock = ERROR;
-		close (pcSock);
-		pcSock = ERROR;
-		taskUnsafe();
-		Wait(0.1);
-	}
-	return (OK);
-}
-
diff --git a/aos/externals/WPILib/WPILib/Vision/PCVideoServer.h b/aos/externals/WPILib/WPILib/Vision/PCVideoServer.h
deleted file mode 100644
index 875adb8..0000000
--- a/aos/externals/WPILib/WPILib/Vision/PCVideoServer.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __PC_VIDEO_SERVER_H__
-#define __PC_VIDEO_SERVER_H__
-
-#include "Task.h"
-#include <semLib.h>
-
-/** port for sending video to laptop */
-#define VIDEO_TO_PC_PORT 1180
-
-/**
- * Class the serves images to the PC.
- */
-class PCVideoServer : public ErrorBase {
-
-public:
-	PCVideoServer();
-	~PCVideoServer();
-	unsigned int Release();
-	void Start();
-	void Stop();
-
-private:
-	static int s_ServerTask(PCVideoServer *thisPtr);
-	int ServerTask();
-	int StartServerTask();
-
-	Task m_serverTask;
-	SEM_ID m_newImageSem;
-	bool m_stopServer;
-};
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Vision/RGBImage.cpp b/aos/externals/WPILib/WPILib/Vision/RGBImage.cpp
deleted file mode 100644
index a5386a0..0000000
--- a/aos/externals/WPILib/WPILib/Vision/RGBImage.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "RGBImage.h"
-
-/**
- * Create a new image that uses Red, Green, and Blue planes.
- */
-RGBImage::RGBImage() : ColorImage(IMAQ_IMAGE_RGB)
-{
-}
-
-/**
- * Create a new image by loading a file.
- * @param fileName The path of the file to load.
- */
-RGBImage::RGBImage(const char *fileName) : ColorImage(IMAQ_IMAGE_RGB)
-{
-	int success = imaqReadFile(m_imaqImage, fileName, NULL, NULL);
-	wpi_setImaqErrorWithContext(success, "Imaq ReadFile error");
-}
-
-RGBImage::~RGBImage()
-{
-}
diff --git a/aos/externals/WPILib/WPILib/Vision/RGBImage.h b/aos/externals/WPILib/WPILib/Vision/RGBImage.h
deleted file mode 100644
index a92dc58..0000000
--- a/aos/externals/WPILib/WPILib/Vision/RGBImage.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __RGB_IMAGE_H__
-#define __RGB_IMAGE_H__
-
-#include "ColorImage.h"
-
-/**
- * A color image represented in RGB color space at 3 bytes per pixel.
- */
-class RGBImage : public ColorImage
-{
-public:
-    RGBImage();
-    RGBImage(const char *fileName);
-    virtual ~RGBImage();
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Vision/Threshold.cpp b/aos/externals/WPILib/WPILib/Vision/Threshold.cpp
deleted file mode 100644
index 8d428e4..0000000
--- a/aos/externals/WPILib/WPILib/Vision/Threshold.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Threshold.h"
-
-Threshold::Threshold(int new_plane1Low, int new_plane1High, int new_plane2Low,
-		int new_plane2High, int new_plane3Low, int new_plane3High)
-{
-	plane1Low = new_plane1Low;
-	plane1High = new_plane1High;
-	plane2Low = new_plane2Low;
-	plane2High = new_plane2High;
-	plane3Low = new_plane3Low;
-	plane3High = new_plane3High;
-}
diff --git a/aos/externals/WPILib/WPILib/Vision/Threshold.h b/aos/externals/WPILib/WPILib/Vision/Threshold.h
deleted file mode 100644
index c38d7ca..0000000
--- a/aos/externals/WPILib/WPILib/Vision/Threshold.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __THRESHOLD_H__
-#define __THRESHOLD_H__
-
-/**
- * Color threshold values.
- * This object represnts the threshold values for any type of color object
- * that is used in a threshhold operation. It simplifies passing values
- * around in a program for color detection.
- */
-class Threshold 
-{
-public:
-	int plane1Low;
-	int plane1High;
-	int plane2Low;
-	int plane2High;
-	int plane3Low;
-	int plane3High;
-	Threshold(int plane1Low, int plane1High,
-		int plane2Low, int plane2High,
-		int plane3Low, int plane3High);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/Vision2009/AxisCamera.cpp b/aos/externals/WPILib/WPILib/Vision2009/AxisCamera.cpp
deleted file mode 100644
index dbb337a..0000000
--- a/aos/externals/WPILib/WPILib/Vision2009/AxisCamera.cpp
+++ /dev/null
@@ -1,1028 +0,0 @@
-
-/********************************************************************************
-*  Project   		: FIRST Motor Controller
-*  File Name  		: AxisCamera.cpp        
-*  Contributors 	: TD, ELF, JDG, SVK
-*  Creation Date 	: July 29, 2008
-*  Revision History	: Source code & revision history maintained at sourceforge.WPI.edu    
-*  File Description	: Axis camera access for the FIRST Vision API
-*      The camera task runs as an independent thread 
-*/    
-/*----------------------------------------------------------------------------*/
-/*        Copyright (c) FIRST 2008.  All Rights Reserved.                     */
-/*  Open Source Software - may be modified and shared by FRC teams. The code  */
-/*  must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
-/*----------------------------------------------------------------------------*/                   
-
-
-#include "sockLib.h" 
-#include "vxWorks.h" 
-
-#include "errno.h"
-#include "fioLib.h"
-#include "hostLib.h" 
-#include "inetLib.h" 
-#include "signal.h"
-#include "sigLib.h"		// for signal
-#include <string>
-#include "time.h"
-#include "usrLib.h"
-
-#include "AxisCamera.h" 
-#include "BaeUtilities.h"
-#include "FrcError.h"
-#include "Task.h"
-#include "Timer.h"
-#include "VisionAPI.h"
-
-#include <cstring>
-#include <cstdio>
-
-/** packet size */
-#define DEFAULT_PACKET_SIZE 512
-
-/** Private NI function to decode JPEG */ 
-IMAQ_FUNC int Priv_ReadJPEGString_C(Image* _image, const unsigned char* _string, uint32_t _stringLength); 
-
-// To locally enable debug printing: set AxisCamera_debugFlag to a 1, to disable set to 0
-int AxisCamera_debugFlag = 0;
-#define DPRINTF if(AxisCamera_debugFlag)dprintf
-
-/** @brief Camera data to be accessed globally */
-struct {
-	int readerPID; // Set to taskID for signaling
-	int index; /* -1,0,1 */
-	int	acquire; /* 0:STOP CAMERA; 1:START CAMERA */
-	int cameraReady;  /* 0: CAMERA NOT INITIALIZED; 1: CAMERA INITIALIZED */
-	int	decode; /* 0:disable decoding; 1:enable decoding to HSL Image */
-	struct {
-		//
-		// To find the latest image timestamp, access:
-		// globalCamera.data[globalCamera.index].timestamp
-		//
-		double timestamp;       // when image was taken
-		char*	cameraImage;    // jpeg image string
-		int cameraImageSize;    // image size
-		Image* decodedImage;    // image decoded to NI Image object
-		int decodedImageSize;   // size of decoded image
-	}data[2];
-	int cameraMetrics[CAM_NUM_METRICS];
-}globalCamera;
-
-/* run flag */
-static short cont = 0;
-
-/**
- * @brief Get the most recent camera image.
- * Supports IMAQ_IMAGE_RGB and IMAQ_IMAGE_HSL.
- * @param image Image to return to; image must have been first created using frcCreateImage. 
- * When you are done, use frcDispose.
- * @param timestamp Timestamp to return; will record the time at which the image was stored.
- * @param lastImageTimestamp Input - timestamp of last image; prevents serving of stale images
- * @return 0 is failure, 1 is success
- * @sa frcCreateImage(), frcDispose()
- */
-int GetImageBlocking(Image* image, double *timestamp, double lastImageTimestamp)
-{
-	char funcName[]="GetImageBlocking";
-	int success;
-	double startTime = GetTime();
-	
-	while (1)
-	{
-		success = GetImage(image, timestamp);
-		if (!success) return (success);
-		
-		if (*timestamp > lastImageTimestamp)
-			return (1); // GOOD IMAGE RETURNED
-
-		if (GetTime() > (startTime + MAX_BLOCKING_TIME_SEC))
-		{
-			imaqSetError(ERR_CAMERA_BLOCKING_TIMEOUT, funcName);
-			globalCamera.cameraMetrics[CAM_BLOCKING_TIMEOUT]++;
-			return (0); // NO IMAGE AVAILABLE WITHIN specified time
-		}
-		globalCamera.cameraMetrics[CAM_BLOCKING_COUNT]++;
-		taskDelay (1);
-	}
-}
-
-/**
- * @brief Verifies that the camera is initialized
- * @return 0 for failure, 1 for success
- */
-int CameraInitialized()
-{
-	char funcName[]="CameraInitialized";
-	int success = 0;
-	/* check to see if camera is initialized */
-	if (!globalCamera.cameraReady)  {
-		imaqSetError(ERR_CAMERA_NOT_INITIALIZED, funcName);
-		DPRINTF (LOG_DEBUG, "Camera request before camera is initialized");
-		globalCamera.cameraMetrics[CAM_GETIMAGE_BEFORE_INIT]++;
-		globalCamera.cameraMetrics[CAM_GETIMAGE_FAILURE]++;
-		return success;
-	}
-	
-	if (globalCamera.index == -1){
-		imaqSetError(ERR_CAMERA_NO_BUFFER_AVAILABLE, funcName);
-		DPRINTF (LOG_DEBUG, "No camera image available");
-		globalCamera.cameraMetrics[CAM_GETIMAGE_BEFORE_AVAILABLE]++;
-		globalCamera.cameraMetrics[CAM_GETIMAGE_FAILURE]++;
-		return success;
-	}
-	return 1;
-}
-
-/**
- * @brief Gets the most recent camera image, as long as it is not stale.
- * Supported image types: IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL
- * @param image Image to return, must have first been created with frcCreateImage or imaqCreate. 
- * When you finish with the image, call frcDispose() to dispose of it.
- * @param timestamp Returned timestamp of when the image was taken from the camera
- * @return failure = 0, success = 1
- */
-int GetImage(Image* image, double *timestamp)
-{
-	char funcName[]="GetImage";
-	int success = 0;
-	int readIndex;
-	int	readCount = 10;
-	double currentTime = time(NULL);
-	double currentImageTimestamp;
-
-	/* check to see if camera is initialized */
-	
-	if (!CameraInitialized()) {return success;}
-	
-	/* try readCount times to get an image */
-	while (readCount) {
-		readIndex = globalCamera.index;
-		if (!imaqDuplicate(image, globalCamera.data[readIndex].decodedImage)) {
-			int errorCode = GetLastVisionError(); 
-			DPRINTF (LOG_DEBUG,"Error duplicating image= %i  %s ", errorCode, GetVisionErrorText(errorCode));			
-		}
-		// save the timestamp to check before returning
-		currentImageTimestamp = globalCamera.data[readIndex].timestamp;
-		
-		// make sure this buffer is not being written to now
-		if (readIndex == globalCamera.index) break;
-		readCount--;
-	}
-	
-	/* were we successful ? */
-	if (readCount){
-		success = 1;
-		if (timestamp != NULL)
-			  *timestamp = currentImageTimestamp; // Return image timestamp	  
-	} else{
-		globalCamera.cameraMetrics[CAM_GETIMAGE_FAILURE]++;
-	}
-	
-	/* Ensure the buffered image is not too old - set this "stale time" above */
-	if (currentTime > globalCamera.data[globalCamera.index].timestamp + CAMERA_IMAGE_STALE_TIME_SEC){
-		DPRINTF (LOG_CRITICAL, "STALE camera image (THIS COULD BE A BAD IMAGE)");
-		imaqSetError(ERR_CAMERA_STALE_IMAGE, funcName);
-		globalCamera.cameraMetrics[CAM_STALE_IMAGE]++;
-		globalCamera.cameraMetrics[CAM_GETIMAGE_FAILURE]++;
-		success = 0;
-	}
-	globalCamera.cameraMetrics[CAM_GETIMAGE_SUCCESS]++;
-	return success;
-}
-
-/**
- * @brief Method to get a raw image from the buffer
- * @param imageData returned image data
- * @param numBytes returned number of bytes in buffer
- * @param currentImageTimestamp returned buffer time of image data
- * @return 0 if failure; 1 if success
- */
-int GetImageData(char** imageData, int* numBytes, double* currentImageTimestamp)
-{
-	int success = 0;
-	int readIndex;
-	int	readCount = 10;
-	int cameraImageSize;
-	char *cameraImageString;
-
-	/* check to see if camera is initialized */
-			
-	if (!CameraInitialized()) {return success;}
-			
-	/* try readCount times to get an image */
-	while (readCount) {
-		readIndex = globalCamera.index;
-		cameraImageSize = globalCamera.data[readIndex].cameraImageSize;
-		//cameraImageString = (Image *) malloc(cameraImageSize);
-		cameraImageString = new char[cameraImageSize];
-		if (NULL == cameraImageString) {
-					DPRINTF (LOG_DEBUG, "Unable to allocate cameraImage");
-					globalCamera.cameraMetrics[CAM_GETIMAGE_FAILURE]++;
-					return success;
-		}
-		memcpy (cameraImageString, globalCamera.data[readIndex].cameraImage, cameraImageSize);
-		*currentImageTimestamp = globalCamera.data[readIndex].timestamp;
-		// make sure this buffer is not being written to now
-		if (readIndex == globalCamera.index) break;
-		free (cameraImageString);
-		readCount--;
-	}
-	if (readCount){
-		*imageData = cameraImageString;
-		*numBytes = cameraImageSize;
-		return 1;
-	}		
-	return (OK);
-}
-
-/**
- * @brief Blocking call to get images for PC.
- * This should be called from a separate task to maintain camera read performance. 
- * It is intended to be used for sending raw (undecoded) image data to the PC.
- * @param imageData image data to return
- * @param numBytes number of bytes in buffer
- * @param timestamp timestamp of buffer returned
- * @param lastImageTimestamp buffer time of last image data sent to PC
- * @return 0 if failure; 1 if success
- */
-int GetImageDataBlocking(char** imageData, int* numBytes, double* timestamp, double lastImageTimestamp)
-{
-
-	char funcName[]="GetImageDataBlocking";
-	int success;
-	double startTime = GetTime();
-	
-    *imageData = NULL;
-	while (1)
-	{
-		success = GetImageData(imageData, numBytes, timestamp);
-		if (!success) return (success);
-		
-		if (*timestamp > lastImageTimestamp)
-			return (1); // GOOD IMAGE DATA RETURNED
-
-        delete *imageData;
-        *imageData = NULL;
-
-		if (GetTime() > (startTime + MAX_BLOCKING_TIME_SEC))
-		{
-			imaqSetError(ERR_CAMERA_BLOCKING_TIMEOUT, funcName);
-			return (0); // NO IMAGE AVAILABLE WITHIN specified time
-		}
-		globalCamera.cameraMetrics[CAM_BLOCKING_COUNT]++;
-		taskDelay (1);
-	}
-}
-
-/**
- * @brief Accessor for camera instrumentation data
- * @param the counter queried
- * @return the counter value
- */
-int GetCameraMetric(FrcvCameraMetric metric)
-{	return globalCamera.cameraMetrics[metric];  }
-
-/**
- * @brief Close socket & report error
- * @param errstring String to print
- * @param socket Socket to close
- * @return error
- */
-int CameraCloseSocket(const char *errstring, int socket)
-{
-	DPRINTF (LOG_CRITICAL, "Closing socket - CAMERA ERROR: %s", errstring );
-	close (socket);
-	return (ERROR);
-}
-
-
-/**
- * @brief Reads one line from the TCP stream.
- * @param camSock         The socket.
- * @param buffer          A buffer with bufSize allocated for it. 
- *                        On return, bufSize-1 amount of data or data upto first line ending
- *                        whichever is smaller, null terminated.
- * @param bufSize         The size of buffer.
- * @param stripLineEnding If true, strips the line ending chacters from the buffer before return.
- * @return 0 if failure; 1 if success
-*/
-static int CameraReadLine(int camSock, char* buffer, int bufSize, bool stripLineEnding) {
-	char funcName[]="CameraReadLine";
-    // Need at least 3 bytes in the buffer to pull this off.
-	if (bufSize < 3) {
-		imaqSetError(ERR_CAMERA_FAILURE, funcName);
-		return 0;
-	}
-    //  Reduce size by 1 to allow for null terminator.
-    --bufSize;
-    //  Read upto bufSize characters.
-    for (int i=0;i < bufSize;++i, ++buffer) {
-        //  Read one character.
-        if (read (camSock, buffer, 1) <= 0) {
-    		imaqSetError(ERR_CAMERA_FAILURE, funcName);
-            return 0;
-        }
-        //  Line endings can be "\r\n" or just "\n". So always 
-        //  look for a "\n". If you got just a "\n" and 
-        //  stripLineEnding is false, then convert it into a \r\n
-        //  because callers expect a \r\n.
-        //  If the combination of the previous character and the current character
-        //  is "\r\n", the line ending
-        if (*buffer=='\n') {
-            //  If asked to strip the line ending, then set the buffer to the previous 
-            //  character.
-            if (stripLineEnding) {
-                if (i > 0 && *(buffer-1)=='\r') {
-                    --buffer;
-                }
-            }
-            else {
-                //  If the previous character was not a '\r', 
-                if (i == 0 || *(buffer-1)!='\r') {
-                    //  Make the current character a '\r'.
-                    *buffer = '\r';
-                    //  If space permits, add back the '\n'.
-                    if (i < bufSize-1) {
-                        ++buffer;
-                        *buffer = '\n';
-                    }
-                }
-                //  Set the buffer past the current character ('\n')
-                ++buffer;
-            }
-            break;
-        }
-    }
-    //  Null terminate.
-    *buffer = '\0';
-    return 1;
-}
-
-/**
-@brief Skips read data until the first empty line.
-
-@param camSock An open tcp socket to the camera to read the data from.
-@return sucess 0 if failure; 1 if success
-*/
-static int CameraSkipUntilEmptyLine(int camSock) {
-    char buffer[1024];
-    int success = 0;
-    while(1) {
-        success = CameraReadLine(camSock, buffer, sizeof(buffer), true);
-        if (*buffer == '\0') {
-            return success;
-        }
-    }
-    return success;
-}
-
-/**
-@brief Opens a socket.
-
-Issues the given http request with the required added information 
-and authentication. It  cycles through an array of predetermined 
-encrypted username, password combinations that we expect the users 
-to have at any point in time. If none of the username, password 
-combinations work, it outputs a "Unknown user or password" error.
-If the request succeeds, it returns the socket number.
-
-@param serverName The information about the host from which this request originates
-@param request   The request to send to the camera not including boilerplate or 
-                 authentication. This is usually in the form of "GET <string>"
-@return int - failure = ERROR; success = socket number;     
-*/
-static int CameraOpenSocketAndIssueAuthorizedRequest(const char* serverName, const char* request) 
-{
-    char funcName[]="cameraOpenSocketAndIssueAuthorizedRequest";
-	
-	struct sockaddr_in cameraAddr;
-	int sockAddrSize;  
-	int camSock = ERROR;    
-
-    // The camera is expected to have one of the following username, password combinations.
-    // This routine will return an error if it does not find one of these.
-    static const char* authenticationStrings[] = {
-        "RlJDOkZSQw==",     /* FRC, FRC */
-        "cm9vdDpwYXNz",     /* root, admin*/
-        "cm9vdDphZG1pbg=="  /* root, pass*/
-    };
-
-    static const int numAuthenticationStrings = sizeof(authenticationStrings)/sizeof(authenticationStrings[0]);
-	
-	static const char *requestTemplate = "%s "                              \
-                                         "HTTP/1.1\n"                       \
-                                         "User-Agent: HTTPStreamClient\n"   \
-                                         "Connection: Keep-Alive\n"         \
-                                         "Cache-Control: no-cache\n"        \
-                                         "Authorization: Basic %s\n\n";
-
-	int i = 0;
-    for (;i < numAuthenticationStrings;++i) {
-        char buffer[1024];
-
-        sprintf(buffer, requestTemplate, request, authenticationStrings[i]);
-
-        /* create camera socket */
-        //DPRINTF (LOG_DEBUG, "creating camSock" ); 
-        if ((camSock = socket (AF_INET, SOCK_STREAM, 0)) == ERROR) {
-    		imaqSetError(ERR_CAMERA_SOCKET_CREATE_FAILED, funcName);
-    		perror("Failed to create socket");
-    		return (ERROR);
-        }
-
-        sockAddrSize = sizeof (struct sockaddr_in);
-        bzero ((char *) &cameraAddr, sockAddrSize);
-        cameraAddr.sin_family = AF_INET;
-        cameraAddr.sin_len = (u_char) sockAddrSize;
-        cameraAddr.sin_port = htons (CAMERA_PORT);
-
-        if (( (int)(cameraAddr.sin_addr.s_addr = inet_addr (const_cast<char*>(serverName)) ) == ERROR) &&
-            ( (int)(cameraAddr.sin_addr.s_addr = hostGetByName (const_cast<char*>(serverName)) ) == ERROR)) 
-        {
-    		imaqSetError(ERR_CAMERA_CONNECT_FAILED, funcName);
-            return CameraCloseSocket("Failed to get IP, check hostname or IP", camSock);
-        }
-
-        //DPRINTF (LOG_INFO, "connecting camSock" ); 
-        if (connect (camSock, (struct sockaddr *) &cameraAddr, sockAddrSize) == ERROR) 	{
-    		imaqSetError(ERR_CAMERA_CONNECT_FAILED, funcName);
-            return CameraCloseSocket("Failed to connect to camera - check networ", camSock);
-        }
-
-        //DPRINTF (LOG_DEBUG, "writing GET request to camSock" ); 
-        if (write (camSock, buffer, strlen(buffer) ) == ERROR) {
-    		imaqSetError(ERR_CAMERA_CONNECT_FAILED, funcName);
-            return CameraCloseSocket("Failed to send GET request", camSock);
-        }
-
-        //  Read one line with the line ending removed.
-        if (!CameraReadLine(camSock, buffer, 1024, true)) {
-            return CameraCloseSocket("Bad response to GET request", camSock);
-        }
-
-        //  Check if the response is of the format HTTP/<version> 200 OK.
-        float discard;
-        if (sscanf(buffer, "HTTP/%f 200 OK", &discard) == 1) {
-            break;
-        }
-
-        //  We have to close the connection because in the case of failure
-        //  the server closes the connection.
-        close(camSock);
-    }
-    //  If none of the attempts were successful, then let the caller know.
-    if (numAuthenticationStrings == i) {
-		imaqSetError(ERR_CAMERA_AUTHORIZATION_FAILED, funcName);
-        fprintf(stderr, "Expected username/password combination not found on camera");
-        return ERROR;
-    }
-    return camSock;
-}
-
-
-/**
- * @brief Sends a configuration message to the camera
- * @param configString configuration message to the camera
- * @return success: 0=failure; 1=success
- */
-int ConfigureCamera(char *configString){
-	char funcName[]="ConfigureCamera";
-	const char *serverName = "192.168.0.90";		/* camera @ */
-	int success = 0;
-	int camSock = 0;    
-	
-	/* Generate camera configuration string */
-	const char * getStr1 =
-		"GET /axis-cgi/admin/param.cgi?action=update&ImageSource.I0.Sensor.";
-	
-	char cameraRequest[strlen(getStr1) + strlen(configString)];
-    sprintf (cameraRequest, "%s%s",	getStr1, configString);
-	DPRINTF(LOG_DEBUG, "camera configuration string: \n%s", cameraRequest);
-	camSock = CameraOpenSocketAndIssueAuthorizedRequest(serverName, cameraRequest);
-	DPRINTF(LOG_DEBUG, "camera socket# = %i", camSock);
-	
-    //read response
-    success = CameraSkipUntilEmptyLine(camSock);
-	//DPRINTF(LOG_DEBUG, "succcess from CameraSkipUntilEmptyLine: %i", success);
-    char buffer[3];	// set property - 3
-    success = CameraReadLine(camSock, buffer, 3, true);
-	//DPRINTF(LOG_DEBUG, "succcess from CameraReadLine: %i", success);
-	DPRINTF(LOG_DEBUG, "line read from camera \n%s", buffer);
-    if (strcmp(buffer, "OK") != 0) {
-		imaqSetError(ERR_CAMERA_COMMAND_FAILURE, funcName);
-		DPRINTF(LOG_DEBUG, "setting ERR_CAMERA_COMMAND_FAILURE - OK not found");
-    }
-	DPRINTF (LOG_INFO, "\nConfigureCamera ENDING  success = %i\n", success );	
-
-	/* clean up */
-	close (camSock);
-	return (1);
-}
-
-
-/**
- * @brief Sends a request message to the camera
- * @param configString request message to the camera
- * @param cameraResponse response from camera
- * @return success: 0=failure; 1=success
- */
-int GetCameraSetting(char *configString, char *cameraResponse){
-	const char *serverName = "192.168.0.90";		/* camera @ */
-	int success = 0;
-	int camSock = 0;    
-	
-	/* Generate camera request string */
-	const char * getStr1 =
-		"GET /axis-cgi/admin/param.cgi?action=list&group=ImageSource.I0.Sensor.";
-	char cameraRequest[strlen(getStr1) + strlen(configString)];
-    sprintf (cameraRequest, "%s%s",	getStr1, configString);
-	DPRINTF(LOG_DEBUG, "camera configuration string: \n%s", cameraRequest);
-	camSock = CameraOpenSocketAndIssueAuthorizedRequest(serverName, cameraRequest);
-	DPRINTF(LOG_DEBUG, "return from CameraOpenSocketAndIssueAuthorizedRequest %i", camSock);
-	
-    //read response
-    success = CameraSkipUntilEmptyLine(camSock);
-    success = CameraReadLine(camSock, cameraResponse, 1024, true);
-	DPRINTF(LOG_DEBUG, "succcess from CameraReadLine: %i", success);
-	DPRINTF(LOG_DEBUG, "line read from camera \n%s", cameraResponse);
-	DPRINTF (LOG_INFO, "\nGetCameraSetting ENDING  success = %i\n", success );	
-
-	/* clean up */
-	close (camSock);
-	return (1);
-}
-
-/**
- * @brief Sends a request message to the camera for image appearance property
- * (resolution, compression, rotation)
- * @param configString request message to the camera
- * @param cameraResponse response from camera
- * @return success: 0=failure; 1=success
- */
-int GetImageSetting(char *configString, char *cameraResponse){
-	const char *serverName = "192.168.0.90";		/* camera @ */
-	int success = 0;
-	int camSock = 0;    
-	
-	/* Generate camera request string */
-	const char *getStr1 = "GET /axis-cgi/admin/param.cgi?action=list&group=Image.I0.Appearance.";
-	char cameraRequest[strlen(getStr1) + strlen(configString)];
-    sprintf (cameraRequest, "%s%s",	getStr1, configString);
-	DPRINTF(LOG_DEBUG, "camera configuration string: \n%s", cameraRequest);
-	camSock = CameraOpenSocketAndIssueAuthorizedRequest(serverName, cameraRequest);
-	DPRINTF(LOG_DEBUG, "return from CameraOpenSocketAndIssueAuthorizedRequest %i", camSock);
-	
-    //read response
-    success = CameraSkipUntilEmptyLine(camSock);
-    success = CameraReadLine(camSock, cameraResponse, 1024, true);
-	DPRINTF(LOG_DEBUG, "succcess from CameraReadLine: %i", success);
-	DPRINTF(LOG_DEBUG, "line read from camera \n%s", cameraResponse);
-	DPRINTF (LOG_INFO, "\nGetCameraSetting ENDING  success = %i\n", success );	
-
-	/* clean up */
-	close (camSock);
-	return (1);
-}
-
-
-#define MEASURE_SOCKET_TIME 1   
-
-/**
- * @brief Manage access to the camera. Sets up sockets and reads images
- * @param frames Frames per second 
- * @param compression Camera image compression 
- * @param resolution Camera image size 
- * @param rotation Camera image rotation 
- * @return error
- */
-int cameraJPEGServer(int frames, int compression, ImageResolution resolution, ImageRotation rotation)
-{
-	char funcName[]="cameraJPEGServer";
-	char serverName[] = "192.168.0.90";		/* camera @ */
-	cont = 1;
-	int errorCode = 0;
-	int printCounter = 0;
-	int	writeIndex;
-	int authorizeCount = 0;
-	int authorizeConfirmed = 0;
-	static const int authenticationStringsCount = 3;
-    static const char* authenticationStrings[] = {
-    		"cm9vdDphZG1pbg==", /* root, admin*/
-    		"RlJDOkZSQw==",     /* FRC, FRC */
-    		"cm9vdDpwYXNz=="    /* root, pass*/
-    };
-
-	DPRINTF (LOG_DEBUG, "cameraJPEGServer" ); 
-	
-	struct sockaddr_in cameraAddr;
-	int sockAddrSize;  
-	int camSock = 0;    
-
-	char resStr[10];
-	switch (resolution) {
-		case k640x480: { sprintf(resStr,"640x480"); break; }
-		case k320x240: { sprintf(resStr,"320x240"); break; }
-		case k160x120: { sprintf(resStr,"160x120"); break; }
-		default: {DPRINTF (LOG_DEBUG, "code error - resolution input" ); break; }
-	}
-	
-	/* Generate camera initialization string */
-	/* changed resolution to 160x120 from 320x240 */
-	/* supported resolutions are: 640x480, 640x360, 320x240, 160x120 */	
-	const char * getStr1 =
-	"GET /axis-cgi/mjpg/video.cgi?showlength=1&camera=1&";	
-		
-	char insertStr[100];
-	sprintf (insertStr, "des_fps=%i&compression=%i&resolution=%s&rotation=%i", 
-			frames, compression, resStr, (int)rotation);	
-	
-	const char * getStr2 = " HTTP/1.1\n\
-User-Agent: HTTPStreamClient\n\
-Host: 192.150.1.100\n\
-Connection: Keep-Alive\n\
-Cache-Control: no-cache\n\
-Authorization: Basic %s;\n\n";
-
-	char getStr[strlen(getStr1) + strlen(insertStr) + strlen(getStr2)];      
-    sprintf (getStr, "%s:%s%s",	getStr1, insertStr, getStr2);
-
-	DPRINTF(LOG_DEBUG, "revised camera string: \n%s", getStr);
-	/* Allocation */
-	char tempBuffer[1024];
-    
-	RETRY:
-	Wait(0.1);  //bug fix - don't pester camera if it's booting
-	while (globalCamera.acquire == 0) Wait(0.1);
-
-	if (!authorizeConfirmed){
-	  if (authorizeCount < authenticationStringsCount){
-	    sprintf (tempBuffer, getStr, authenticationStrings[authorizeCount]);
-	  } else {
-		imaqSetError(ERR_CAMERA_AUTHORIZATION_FAILED, funcName);
-		fprintf(stderr, "Camera authorization failed ... Incorrect password on camera!!");
-		return (ERROR);
-	  }
-	}
-
-	while (1)
-	{
-	  globalCamera.cameraMetrics[CAM_SOCKET_INIT_ATTEMPTS]++;	  
-
-	  /* create camera socket */
-	  DPRINTF (LOG_DEBUG, "creating camSock" ); 
-	  if ((camSock = socket (AF_INET, SOCK_STREAM, 0)) == ERROR) {	
-		imaqSetError(ERR_CAMERA_SOCKET_CREATE_FAILED, funcName);
-		perror("Failed to create socket");
-		cont = 0;
-		return (ERROR);
-	  }
-
-	  sockAddrSize = sizeof (struct sockaddr_in);
-	  bzero ((char *) &cameraAddr, sockAddrSize);
-	  cameraAddr.sin_family = AF_INET;
-	  cameraAddr.sin_len = (u_char) sockAddrSize;
-	  cameraAddr.sin_port = htons (CAMERA_PORT);
-
-	  DPRINTF (LOG_DEBUG, "getting IP" );
-	  if (( (int)(cameraAddr.sin_addr.s_addr = inet_addr (serverName) ) == ERROR) &&
-		( (int)(cameraAddr.sin_addr.s_addr = hostGetByName (serverName) ) == ERROR))
-	  {	
-		  CameraCloseSocket("Failed to get IP, check hostname or IP", camSock);
-		continue;
-	  }
-	  
-	  DPRINTF (LOG_INFO, "Attempting to connect to camSock" ); 
-	  if (connect (camSock, (struct sockaddr *) &cameraAddr, sockAddrSize) == ERROR) 	{
-		imaqSetError(ERR_CAMERA_CONNECT_FAILED, funcName);
-		CameraCloseSocket("Failed to connect to camera - check network", camSock);
-		continue;
-	  }	  
-
-#if MEASURE_SOCKET_SETUP
-	  socketEndTime = GetTime(); 
-	  setupTime = socketEndTime - socketStartTime; 
-	  printf("\n***socket setup time = %g\n", setupTime );
-#endif	  
-	  
-	  globalCamera.cameraMetrics[CAM_SOCKET_OPEN]++;
-	  break;
-	} // end while (trying to connect to camera)
-
-	DPRINTF (LOG_DEBUG, "writing GET request to camSock" ); 
-	if (write (camSock, tempBuffer , strlen(tempBuffer) ) == ERROR) {
-		return CameraCloseSocket("Failed to send GET request", camSock);
-	}
-
-	//DPRINTF (LOG_DEBUG, "reading header" ); 
-	/* Find content-length, then read that many bytes */
-	int counter = 2;
-	const char* contentString = "Content-Length: ";
-	const char* authorizeString = "200 OK";
-	
-#define MEASURE_TIME 0
-#if MEASURE_TIME
-	//timing parameters - only measure one at the time
-	double loopStartTime = 0.0; // measuring speed of execution loop
-	double loopEndTime = 0.0;
-	double cameraStartTime = 0.0;
-	double cameraEndTime = 0.0;
-	double previousStartTime = 0.0;
-	int performanceLoopCounter = 0;
-	int maxCount = 30;
-#endif
-	
-	while (cont) {
-#if MEASURE_TIME
-		previousStartTime = loopStartTime;  // first time is bogus
-		loopStartTime = GetTime(); 
-#endif	
-		// If camera has been turned OFF, jump to RETRY
-		//if (globalCamera.acquire == 0) goto RETRY;
-		
-		/* Determine writer index */
-		if (globalCamera.index == 0)
-			writeIndex = 1;
-		else
-			writeIndex = 0;
-		
-		/* read header */
-		//TODO: check for error in header, increment ERR_CAMERA_HEADER_ERROR
-		char initialReadBuffer[DEFAULT_PACKET_SIZE] = "";
-		char intermediateBuffer[1];
-		char *trailingPtr = initialReadBuffer;
-		int trailingCounter = 0;
-		
-
-#if MEASURE_TIME
-		cameraStartTime = GetTime(); 
-#endif	
-
-		while (counter) {
-			if (read (camSock, intermediateBuffer, 1) <= 0) {
-				CameraCloseSocket("Failed to read image header", camSock);
-				globalCamera.cameraMetrics[ERR_CAMERA_HEADER_ERROR]++;
-				goto RETRY;
-			}
-
-			strncat(initialReadBuffer, intermediateBuffer, 1);
-			if (NULL != strstr(trailingPtr, "\r\n\r\n")) {
-
-				  if (!authorizeConfirmed){
-
-					  if (strstr(initialReadBuffer, authorizeString))
-					  {
-						  authorizeConfirmed = 1;
-						  /* set camera to initialized */
-						  globalCamera.cameraReady = 1; 
-					  }
-					  else
-					  {
-						  CameraCloseSocket("Not authorized to connect to camera", camSock);
-						  authorizeCount++;
-				  goto RETRY;
-					  }
-				}
-				--counter;
-			}
-			if (++trailingCounter >= 4) {
-				trailingPtr++;
-			}
-		}
-	
-		counter = 1;
-		char *contentLength = strstr(initialReadBuffer, contentString);
-		if (contentLength == NULL) {
-			globalCamera.cameraMetrics[ERR_CAMERA_HEADER_ERROR]++;
-			CameraCloseSocket("No content-length token found in packet", camSock);
-			goto RETRY;
-		}
-		/* get length of image content */
-		contentLength = contentLength + strlen(contentString);
-		globalCamera.data[writeIndex].cameraImageSize = atol (contentLength);
-		
-		if(globalCamera.data[writeIndex].cameraImage)
-			free(globalCamera.data[writeIndex].cameraImage);
-		//globalCamera.data[writeIndex].cameraImage = (Image *) malloc(globalCamera.data[writeIndex].cameraImageSize);
-		globalCamera.data[writeIndex].cameraImage = (char*)malloc(globalCamera.data[writeIndex].cameraImageSize);
-		if (NULL == globalCamera.data[writeIndex].cameraImage) {
-			return CameraCloseSocket("Failed to allocate space for imageString", camSock);
-		}
-		globalCamera.cameraMetrics[CAM_BUFFERS_WRITTEN]++;
-		
-		//
-		// This is a blocking camera read function, and will block if the camera
-		// has been disconnected from the cRIO.  If however the camera is
-		// POWERED OFF while connected to the cRIO, this function NEVER RETURNS
-		//
-		int bytesRead = fioRead (camSock, (char *)globalCamera.data[writeIndex].cameraImage,
-				globalCamera.data[writeIndex].cameraImageSize);
-
-#if MEASURE_TIME
-		cameraEndTime = GetTime(); 
-#endif	
-		
-		//DPRINTF (LOG_DEBUG, "Completed fioRead function - bytes read:%d", bytesRead);
-		if (bytesRead <= 0) {
-			CameraCloseSocket("Failed to read image data", camSock);
-			goto RETRY;
-		} else if (bytesRead != globalCamera.data[writeIndex].cameraImageSize){
-			fprintf(stderr, "ERROR: Failed to read entire image: readLength does not match bytes read");
-			globalCamera.cameraMetrics[CAM_BAD_IMAGE_SIZE]++;
-		}
-		// if decoding the JPEG to an HSL Image, do it here
-		if (globalCamera.decode) {
-			if(globalCamera.data[writeIndex].decodedImage)
-				frcDispose(globalCamera.data[writeIndex].decodedImage);
-			globalCamera.data[writeIndex].decodedImage = frcCreateImage(IMAQ_IMAGE_HSL);
-			if (! Priv_ReadJPEGString_C(globalCamera.data[writeIndex].decodedImage, 
-					(const unsigned char *)globalCamera.data[writeIndex].cameraImage, 
-					globalCamera.data[writeIndex].cameraImageSize) ) {
-				DPRINTF (LOG_DEBUG, "failure creating Image");			
-			}
-		}
-		
-		// TODO: React to partial image
-		globalCamera.data[writeIndex].timestamp = GetTime();
-		globalCamera.index = writeIndex;
-		
-		/* signal a listening task */
-		if (globalCamera.readerPID) {
-			if (taskKill (globalCamera.readerPID,SIGUSR1) == OK)
-			{
-				DPRINTF (LOG_DEBUG, "SIGNALING PID= %i", globalCamera.readerPID);
-			}
-			else
-			{
-				globalCamera.cameraMetrics[CAM_PID_SIGNAL_ERR]++;
-				DPRINTF (LOG_DEBUG, "ERROR SIGNALING PID= %i", globalCamera.readerPID);
-			}
-		}
-
-		globalCamera.cameraMetrics[CAM_NUM_IMAGE]++;	
-		printCounter ++;
-		if (printCounter == 1000) { 
-			DPRINTF (LOG_DEBUG, "imageCounter = %i", globalCamera.cameraMetrics[CAM_NUM_IMAGE]); 
-			printCounter=0; 
-		}
-		
-		taskDelay(1);  
-		
-#if MEASURE_TIME
-		loopEndTime = GetTime(); 
-		performanceLoopCounter++;
-		if (performanceLoopCounter <= maxCount) {
-			DPRINTF (LOG_DEBUG, "%i DONE!!!: loop = ,%g,  camera = ,%g,  difference = ,%g, loopRate= ,%g,",
-					performanceLoopCounter, loopEndTime-loopStartTime, cameraEndTime-cameraStartTime, 
-					(loopEndTime-loopStartTime) - (cameraEndTime-cameraStartTime),
-					loopStartTime-previousStartTime);						
-		}
-#endif	
-	}  /* end while (cont) */
-
-	/* clean up */
-	close (camSock);
-	cont = 0;
-	DPRINTF (LOG_INFO, "\nJPEG SERVER ENDING  errorCode = %i\n", errorCode );
-	
-	return (OK);
-}
-
-/**
- * @brief Start signaling a task when new images are available
- * @param taskID number for task to get the signal
- */
-void StartImageSignal(int taskId) // Start issuing a SIGUSR1 signal to the specified taskId
-{	globalCamera.readerPID = taskId; }
-
-/**
- * @brief Start serving images
- */
-void StartImageAcquisition()
-{	
-	globalCamera.cameraMetrics[CAM_STARTS]++;  
-	globalCamera.acquire = 1; 
-	DPRINTF(LOG_DEBUG, "starting acquisition");
-}
-
-
-/**
- * @brief Stop serving images
- */
-void StopImageAcquisition()
-{	globalCamera.cameraMetrics[CAM_STOPS]++;  globalCamera.acquire = 0; }
-
-
-/**
- * @brief This is the routine that is run when the task is spawned
- * It initializes the camera with the image settings passed in, and
- * starts image acquisition.
- * @param frames Frames per second 
- * @param compression Camera image compression 
- * @param resolution Camera image size 
- * @param rotation Camera image rotation 
- */
-static int initCamera(int frames, int compression, ImageResolution resolution, ImageRotation rotation) 
-{
-	//SetDebugFlag ( DEBUG_SCREEN_AND_FILE  ) ;
-	
-	DPRINTF(LOG_DEBUG, "\n+++++ camera task starting: rotation = %i", (int)rotation);
-	int errorCode;
-
-	/* Initialize globalCamera area 
-	 * Set decode to 1 - always want to decode images for processing 
-	 * If ONLY sending images to the dashboard, you could set it to 0 */
-	bzero ((char *)&globalCamera, sizeof(globalCamera));
-	globalCamera.index = -1;
-	globalCamera.decode = 1;
-	
-	/* allow writing to vxWorks target */
-	Priv_SetWriteFileAllowed(1); 
-	
-	/* start acquisition immediately */
-	StartImageAcquisition();
-	
-	/*  cameraJPEGServer runs until camera is stopped */
-	DPRINTF (LOG_DEBUG, "calling cameraJPEGServer" ); 
-	errorCode = cameraJPEGServer(frames, compression, resolution, rotation);	
-	DPRINTF (LOG_INFO, "errorCode from cameraJPEGServer = %i\n", errorCode ); 
-	return (OK);
-}
-
-Task g_axisCameraTask("Camera", (FUNCPTR)initCamera);
-
-/**
- * @brief Start the camera task
- * @param frames Frames per second 
- * @param compression Camera image compression 
- * @param resolution Camera image size 
- * @param rotation Camera image rotation (ROT_0 or ROT_180)
- * @return TaskID of camera task, or -1 if error.
- */
-int StartCameraTask()
-{
-	return StartCameraTask(10, 0, k160x120, ROT_0);
-}
-int StartCameraTask(int frames, int compression, ImageResolution resolution, ImageRotation rotation)
-{
-	char funcName[]="startCameraTask";
-	DPRINTF(LOG_DEBUG, "starting camera");
-
-	int cameraTaskID = 0;
-
-	//range check
-	if (frames < 1) frames = 1;
-	else if (frames > 30) frames = 30;
-	if (compression < 0) compression = 0;		
-	else if (compression > 100) compression = 100;
-
-	// stop any prior copy of running task
-	StopCameraTask(); 
-
-	// spawn camera task
-	bool started = g_axisCameraTask.Start(frames, compression, resolution, rotation);
-	cameraTaskID = g_axisCameraTask.GetID();
-	DPRINTF(LOG_DEBUG, "spawned task id %i", cameraTaskID);
-
-	if (!started)	{
-		DPRINTF(LOG_DEBUG, "camera task failed to start");
-		imaqSetError(ERR_CAMERA_TASK_SPAWN_FAILED, funcName);
-		return -1;
-	}
-	return cameraTaskID;
-}
-
-/**
- * @brief Stops the camera task
- * @return TaskID of camera task killed, or -1 if none was running.
- */
-int StopCameraTask()
-{
-    std::string taskName("FRC_Camera");    
-	// check for prior copy of running task
-	int oldTaskID = taskNameToId(const_cast<char*>(taskName.c_str()));
-	if(oldTaskID != ERROR) { taskDelete(oldTaskID);  }
-	return oldTaskID;
-}
-
-#if 0
-/* if you want to run this task by itself to debug  
- * enable this code and make RunProgram the entry point 
- */
-extern "C"
-{
-void RunProgram();
-int AxisCamera_StartupLibraryInit();
-}
-/** * @brief Start point of the program */
-void RunProgram()
-{	StartCameraTask();}
-
-/** * @brief This is the main program that is run by the debugger or the robot on boot. */
-int AxisCamera_StartupLibraryInit()
-	{		RunProgram();		return 0;	}
-
-#endif
-
-
-
diff --git a/aos/externals/WPILib/WPILib/Vision2009/AxisCamera.h b/aos/externals/WPILib/WPILib/Vision2009/AxisCamera.h
deleted file mode 100644
index 16815a8..0000000
--- a/aos/externals/WPILib/WPILib/Vision2009/AxisCamera.h
+++ /dev/null
@@ -1,92 +0,0 @@
-/********************************************************************************
-*  Project   		: FIRST Motor Controller
-*  File Name  		: AxisCamera.h          
-*  Contributors   	: ELF
-*  Creation Date 	: August 12, 2008
-*  Revision History	: Source code & revision history maintained at sourceforge.WPI.edu    
-*  File Description	: Globally defined values for the FRC Camera API
-* 
-*  API: Because nivision.h uses C++ style comments, any file including this
-*  must be a .cpp instead of .c.
-* 
-*/
-/*----------------------------------------------------------------------------*/
-/*        Copyright (c) FIRST 2008.  All Rights Reserved.                     */
-/*  Open Source Software - may be modified and shared by FRC teams. The code  */
-/*  must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __AXISCAMERA_H__
-#define __AXISCAMERA_H__
-
-#include "nivision.h"
-
-/** port for communicating with camera */
-#define CAMERA_PORT 80
-/** how old an image is before it's discarded */
-#define CAMERA_IMAGE_STALE_TIME_SEC 2.0  
-/** time to wait for a new image in blocking call */
-#define MAX_BLOCKING_TIME_SEC 0.5
-
-/*  Enumerated Types */
-/** @brief Counters for camera metrics */
-enum FrcvCameraMetric {CAM_STARTS, CAM_STOPS, 
-	CAM_NUM_IMAGE, CAM_BUFFERS_WRITTEN, CAM_BLOCKING_COUNT,
-	
-	CAM_SOCKET_OPEN, CAM_SOCKET_INIT_ATTEMPTS, CAM_BLOCKING_TIMEOUT,
-	CAM_GETIMAGE_SUCCESS, CAM_GETIMAGE_FAILURE, 
-	
-	CAM_STALE_IMAGE, CAM_GETIMAGE_BEFORE_INIT, CAM_GETIMAGE_BEFORE_AVAILABLE,
-	CAM_READ_JPEG_FAILURE, CAM_PID_SIGNAL_ERR, 
-	
-	CAM_BAD_IMAGE_SIZE, CAM_HEADER_ERROR};
-
-#define CAM_NUM_METRICS 17
-
-/** Private NI function needed to write to the VxWorks target */
-IMAQ_FUNC int Priv_SetWriteFileAllowed(uint32_t enable); 
-
-/**
-@brief Possible image sizes that you can set on the camera.
-*/
-enum ImageResolution { k640x480, k320x240, k160x120 };
-
-/**
-@brief Possible rotation values that you can set on the camera.
-*/
-enum ImageRotation { ROT_0 = 0, ROT_180 = 180 };
-
-
-
-int StartCameraTask();
-
-extern "C" {
-/*  Image Acquisition functions */
-/* obtains an image from the camera server */
-int GetImage(Image* cameraImage, double *timestamp);
-int GetImageBlocking(Image* cameraImage, double *timestamp, double lastImageTimestamp);
-/* obtains raw image string to send to PC */
-int GetImageData(char** imageData, int* numBytes, double* currentImageTimestamp);
-int GetImageDataBlocking(char** imageData, int* numBytes, double* timestamp, double lastImageTimestamp);
-
-/* start the camera server */
-void StartImageAcquisition();
-void StopImageAcquisition();
-void StartImageSignal(int taskId);
-
-/* status & metrics */
-int frcCameraInitialized();
-int GetCameraMetric(FrcvCameraMetric metric);
-
-/* camera configuration */
-int ConfigureCamera(char *configString);
-int GetCameraSetting(char *configString, char *cameraResponse);
-int GetImageSetting(char *configString, char *cameraResponse);
-
-/* camera task control */
-
-int StartCameraTask(int frames, int compression, ImageResolution resolution, ImageRotation rotation);
-int StopCameraTask();
-}
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Vision2009/BaeUtilities.cpp b/aos/externals/WPILib/WPILib/Vision2009/BaeUtilities.cpp
deleted file mode 100644
index 4be8275..0000000
--- a/aos/externals/WPILib/WPILib/Vision2009/BaeUtilities.cpp
+++ /dev/null
@@ -1,392 +0,0 @@
-/********************************************************************************
-*  Project   		: FIRST Motor Controller
-*  File Name  		: BaeUtilities.cpp        
-*  Contributors   	: JDG, ELF, EMF
-*  Creation Date 	: July 20, 2008
-*  Revision History	: Source code & revision history maintained at sourceforge.WPI.edu    
-*  File Description	: Open source utility extensions for FIRST Vision API.
-*/                            
-/*----------------------------------------------------------------------------*/
-/*        Copyright (c) FIRST 2008.  All Rights Reserved.                     */
-/*  Open Source Software - may be modified and shared by FRC teams. The code  */
-/*  must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
-/*----------------------------------------------------------------------------*/
-#include <stdio.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <unistd.h>
-#include <string.h>
-#include <math.h>
-#include <stdioLib.h> 
- 
-#include "BaeUtilities.h"
-#include "Servo.h"
-#include "Timer.h"
-
-/**
- *   Utility functions 
- */
-
-/**
- * debug output flag options:
- * DEBUG_OFF, DEBUG_MOSTLY_OFF, DEBUG_SCREEN_ONLY, DEBUG_FILE_ONLY, DEBUG_SCREEN_AND_FILE
- */
-static DebugOutputType	dprintfFlag = DEBUG_OFF;  
-
-/**
- * Set the debug flag to print to screen, file on cRIO, both or neither
- * @param tempString The format string.
- */
-void SetDebugFlag ( DebugOutputType flag  )  
-{ dprintfFlag = flag; }
-
-/**
- * Debug print to a file and/or a terminal window.
- * Call like you would call printf.
- * Set functionName in the function if you want the correct function name to print out.
- * The file line number will also be printed.
- * @param tempString The format string.
- */
-void dprintf ( const char * tempString, ...  )  /* Variable argument list */
-{
-  va_list		args;			  /* Input argument list */
-  int			line_number;      /* Line number passed in argument */
-  int			type;
-  const char	*functionName;    /* Format passed in argument */
-  const char	*fmt;             /* Format passed in argument */
-  char			text[512];   	  /* Text string */
-  char			outtext[512];     /* Text string */
-  FILE			*outfile_fd;      /* Output file pointer */
-  char			filepath[128];    /* Text string */
-  int			fatalFlag=0;
-  const char	*filename;
-  int			index;
-  int			tempStringLen;
-
-  if (dprintfFlag == DEBUG_OFF) { return; }
-  
-  va_start (args, tempString);
-  
-  tempStringLen = strlen(tempString);
-  filename = tempString;
-  for (index=0;index<tempStringLen;index++){
-	  if (tempString[index] == ' ') {
-		  printf( "ERROR in dprintf: malformed calling sequence (%s)\n",tempString);return;
-	  	}
-	  if (tempString[index] == '\\' || tempString[index] == '/')
-		  filename = tempString + index + 1;
-  }
-  
-  /* Extract function name */
-  functionName = va_arg (args, const char *);
- 
- /* Extract line number from argument list */
-  line_number = va_arg (args, int);
-
- /* Extract information type from argument list */
-  type = va_arg (args, int);
-
- /* Extract format from argument list */
-  fmt = va_arg (args, const char *);
-
-  vsprintf (text, fmt, args);
-
-  va_end (args);
-
-  /* Format output statement */
-  switch (type)
-   {
-   case DEBUG_TYPE:
-     sprintf (outtext, "[%s:%s@%04d] DEBUG %s\n",
-              filename, functionName, line_number, text);
-     break;
-   case INFO_TYPE:
-     sprintf (outtext, "[%s:%s@%04d] INFO %s\n",
-              filename, functionName, line_number, text);
-     break;
-   case ERROR_TYPE:
-     sprintf (outtext, "[%s:%s@%04d] ERROR %s\n",
-              filename, functionName, line_number, text);
-     break;
-   case CRITICAL_TYPE:
-     sprintf (outtext, "[%s:%s@%04d] CRITICAL %s\n",
-              filename, functionName, line_number, text);
-     break;
-   case FATAL_TYPE:
-     fatalFlag = 1;
-     sprintf (outtext, "[%s:%s@%04d] FATAL %s\n",
-              filename, functionName, line_number, text);
-     break;
-   default:
-     printf( "ERROR in dprintf: malformed calling sequence\n");
-     return;
-     break;
-   }
-
-  sprintf (filepath, "%s.debug", filename);
-
-  /* Write output statement */
-  switch (dprintfFlag)
-  {
-  default:
-  case DEBUG_OFF: 
-  	break;
-  case DEBUG_MOSTLY_OFF: 
-  	if (fatalFlag)	{
-	  if ((outfile_fd = fopen (filepath, "a+")) != NULL)	  {
-	    fwrite (outtext, sizeof (char), strlen (outtext), outfile_fd);
-	    fclose (outfile_fd);
-	  }
-	}
-  	break;
-  case DEBUG_SCREEN_ONLY: 
-  	printf ("%s", outtext);
-  	break;
-  case DEBUG_FILE_ONLY: 
-	if ((outfile_fd = fopen (filepath, "a+")) != NULL)	{
-	  fwrite (outtext, sizeof (char), strlen (outtext), outfile_fd);
-	  fclose (outfile_fd);
-	}
-  	break;
-  case DEBUG_SCREEN_AND_FILE: // BOTH
-  	printf ("%s", outtext);
-	if ((outfile_fd = fopen (filepath, "a+")) != NULL)	{
-	  fwrite (outtext, sizeof (char), strlen (outtext), outfile_fd);
-	  fclose (outfile_fd);
-	}
-  	break;
-  }
-}
-
-/**
- * @brief Normalizes a value in a range, used for drive input
- * @param position The position in the range, starting at 0
- * @param range The size of the range that position is in
- * @return The normalized position from -1 to +1
- */
-double RangeToNormalized(double position, int range){
-	return(((position*2.0)/(double)range)-1.0);
-}
-
-/**
- * @brief Convert a normalized value to the corresponding value in a range.
- * This is used to convert normalized values to the servo command range.
- * @param normalizedValue The normalized value (in the -1 to +1 range)
- * @param minRange The minimum of the range (0 is default)
- * @param maxRange The maximum of the range (1 is default)
- * @return The value in the range corresponding to the input normalized value
- */
-float NormalizeToRange(float normalizedValue, float minRange, float maxRange) {
-	float range = maxRange-minRange;
-	float temp = (float)((normalizedValue / 2.0)+ 0.5)*range;
-	return (temp + minRange);
-}	
-float NormalizeToRange(float normalizedValue) {
-	return (float)((normalizedValue / 2.0) + 0.5);
-}	
-
-/**
- * @brief Displays an activity indicator to console. 
- * Call this function like you would call printf.
- * @param fmt The format string
-*/
-void ShowActivity (char *fmt, ...)
-{
-  static char   activity_indication_string[] = "|/-\\";
-  static int    ai = 3;
-  va_list       args;
-  char          text[1024];
-
-  va_start (args, fmt);
-
-  vsprintf (text, fmt, args);
-
-  ai = ai == 3 ? 0 : ai + 1;
-
-  printf ("%c %s \r", activity_indication_string[ai], text);
-  fflush (stdout);
-
-  va_end (args);
-}
-
-#define PI 3.14159265358979
-/**
- * @brief Calculate sine wave increments (-1.0 to 1.0). 
- * The first time this is called, it sets up the time increment. Subsequent calls
- * will give values along the sine wave depending on current time. If the wave is
- * stopped and restarted, it must be reinitialized with a new "first call".
- * 
- * @param period length of time to complete a complete wave
- * @param sinStart Where to start the sine wave (0.0 = 2 pi, pi/2 = 1.0, etc.)
- */
-double SinPosition (double *period, double sinStart)
-{
-  double rtnVal;
-  static double sinePeriod=0.0;
-  static double timestamp;
-  double sinArg;
-
-  //1st call
-  if (period != NULL) {
-    sinePeriod = *period;
-	timestamp = GetTime();
-	return 0.0;
-  }
-
-  //Multiplying by 2*pi to the time difference makes sinePeriod work if it's measured in seconds.
-  //Adding sinStart to the part multiplied by PI, but not by 2, allows it to work as described in the comments.
-  sinArg = PI *((2.0 * (GetTime() - timestamp)) + sinStart) / sinePeriod;
-  rtnVal = sin (sinArg);  
-  return (rtnVal);
-}
-
-
-/**
- * @brief Find the elapsed time since a specified time.
- * @param startTime The starting time
- * @return How long it has been since the starting time
- */
-double ElapsedTime ( double startTime )  
-{
-	double realTime = GetTime();	
-	return (realTime-startTime);
-}
-
-/**
- * @brief Initialize pan parameters
- * @param period The number of seconds to complete one pan
- */
-void panInit()	{
-	double period = 3.0;  	// number of seconds for one complete pan
-	SinPosition(&period, 0.0);	// initial call to set up time
-}
-
-void panInit(double period)	{
-	if (period < 0.0) period=3.0;
-	SinPosition(&period, 0.0);	// initial call to set up time
-}
-
-/**
- * @brief Move the horizontal servo back and forth.
- * @param panServo The servo object to move
- * @param sinStart The position on the sine wave to begin the pan
- */
-void panForTarget(Servo *panServo)	{ panForTarget(panServo, 0.0); }
-
-void panForTarget(Servo *panServo, double sinStart)	{
-	float normalizedSinPosition = (float)SinPosition(NULL, sinStart);
-	float newServoPosition = NormalizeToRange(normalizedSinPosition);
-	panServo->Set( newServoPosition );
-	//ShowActivity ("pan x: normalized %f newServoPosition = %f" , 
-	//		normalizedSinPosition, newServoPosition );
-}
-
-
-/** @brief Read a file and return non-comment output string 
-
-Call the first time with 0 lineNumber to get the number of lines to read
-Then call with each lineNumber to get one camera parameter. There should
-be one property=value entry on each line, i.e. "exposure=auto"
-
- * @param inputFile filename to read
- * @param outputString one string
- * @param lineNumber if 0, return number of lines; else return that line number
- * @return int number of lines or -1 if error
- **/
-int processFile(char *inputFile, char *outputString, int lineNumber)
-{
-	FILE *infile;
-	int stringSize = 80;		// max size of one line in file 
-	char inputStr[stringSize];
-	int lineCount=0;
-	  
-	if (lineNumber < 0)
-		  return (-1);
-
-	if ((infile = fopen (inputFile, "r")) == NULL) {
-	    printf ("Fatal error opening file %s\n",inputFile);
-	    return (0);
-	}
-
-  while (!feof(infile)) {
-    if (fgets (inputStr, stringSize, infile) != NULL) {
-      // Skip empty lines
-      if (emptyString(inputStr))
-        continue;
-      // Skip comment lines
-      if (inputStr[0] == '#' || inputStr[0] == '!')
-        continue;
-
-      lineCount++;
-      if (lineNumber == 0)
-        continue;
-      else
-      {
-    	  if (lineCount == lineNumber)
-    		  break;
-      }
-    }
-  }
-
-  // close file 
-  fclose (infile);
-  // if number lines requested return the count
-  if (lineNumber == 0)
-	  return (lineCount);
-  // check for input out of range
-  if (lineNumber > lineCount)
-	  return (-1);
-  // return the line selected
-  if (lineCount) {
-    stripString(inputStr);
-    strcpy(outputString, inputStr);
-    return(lineCount);
-  } 
-  else {
-    return(-1);
-  }
-}
-
-/** Ignore empty string 
- * @param string to check if empty
- **/
-int emptyString(char *string)
-{
-  int i,len;
-
-  if(string == NULL)
-    return(1);
-
-  len = strlen(string);
-  for(i=0; i<len; i++) {
-    // Ignore the following characters
-    if (string[i] == '\n' || string[i] == '\r' ||
-        string[i] == '\t' || string[i] == ' ')
-      continue;
-    return(0);
-  }
-  return(1);
-}
-
-/** Remove special characters from string 
- * @param string to process
- **/
-void stripString(char *string)
-{
-  int i,j,len;
-
-  if(string == NULL)
-    return;
-
-  len = strlen(string);
-  for(i=0,j=0; i<len; i++) {
-    // Remove the following characters from the string
-    if (string[i] == '\n' || string[i] == '\r' || string[i] == '\"')
-      continue;
-    // Copy anything else
-    string[j++] = string[i];
-  }
-  string[j] = '\0'; 
-}
-
-
diff --git a/aos/externals/WPILib/WPILib/Vision2009/BaeUtilities.h b/aos/externals/WPILib/WPILib/Vision2009/BaeUtilities.h
deleted file mode 100644
index 318fcb6..0000000
--- a/aos/externals/WPILib/WPILib/Vision2009/BaeUtilities.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/********************************************************************************
-*  Project   		: FIRST Motor Controller
-*  File Name  		: BaeUtilities.h          
-*  Contributors   	: JDG, ELF
-*  Creation Date 	: August 12, 2008
-*  Revision History	: Source code & revision history maintained at sourceforge.WPI.edu      
-*  File Description	: Globally defined values for utilities
-*/
-/*----------------------------------------------------------------------------*/
-/*        Copyright (c) FIRST 2008.  All Rights Reserved.                     */
-/*     Open Source Software - may be modified and shared by FRC teams.        */
-/*   Must be accompanied by the BSD license file in $(WIND_BASE)/WPILib.      */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __BAEUTILITIES_H__
-#define __BAEUTILITIES_H__
-
-/*  Constants */
-#define LOG_DEBUG    __FILE__,__FUNCTION__,__LINE__,DEBUG_TYPE
-#define LOG_INFO     __FILE__,__FUNCTION__,__LINE__,INFO_TYPE
-#define LOG_ERROR    __FILE__,__FUNCTION__,__LINE__,ERROR_TYPE
-#define LOG_CRITICAL __FILE__,__FUNCTION__,__LINE__,CRITICAL_TYPE
-#define LOG_FATAL    __FILE__,__FUNCTION__,__LINE__,FATAL_TYPE
-#define LOG_DEBUG    __FILE__,__FUNCTION__,__LINE__,DEBUG_TYPE
-
-/*   Enumerated Types */
-
-/** debug levels */
-enum dprint_type {DEBUG_TYPE, INFO_TYPE, ERROR_TYPE, CRITICAL_TYPE, FATAL_TYPE};
-
-/** debug output setting */
-typedef enum DebugOutputType_enum { 
-	DEBUG_OFF, DEBUG_MOSTLY_OFF, DEBUG_SCREEN_ONLY, DEBUG_FILE_ONLY, DEBUG_SCREEN_AND_FILE
-}DebugOutputType;
-
-/*  Enumerated Types */
-
-/* Utility functions */
-
-/* debug */
-void SetDebugFlag ( DebugOutputType flag  ); 
-void dprintf ( const char * tempString, ...  );  /* Variable argument list */
-
-/* set FRC ranges for drive */
-double RangeToNormalized(double pixel, int range);
-/* change normalized value to any range - used for servo */
-float NormalizeToRange(float normalizedValue, float minRange, float maxRange);
-float NormalizeToRange(float normalizedValue);
-
-/* system utilities */
-void ShowActivity (char *fmt, ...);
-double ElapsedTime (double startTime);
-
-/* servo panning utilities */
-class Servo;
-double SinPosition (double *period, double sinStart);
-void panInit();
-void panInit(double period);
-void panForTarget(Servo *panServo);
-void panForTarget(Servo *panServo, double sinStart);
-
-/* config file read utilities */
-int processFile(char *inputFile, char *outputString, int lineNumber);
-int emptyString(char *string);
-void stripString(char *string);
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Vision2009/FrcError.cpp b/aos/externals/WPILib/WPILib/Vision2009/FrcError.cpp
deleted file mode 100644
index 2addfd1..0000000
--- a/aos/externals/WPILib/WPILib/Vision2009/FrcError.cpp
+++ /dev/null
@@ -1,1235 +0,0 @@
-/********************************************************************************
-*  Project   		: FIRST Motor Controller
-*  File Name  		: FrcError.cpp        
-*  Contributors   	: JDG, ELF
-*  Creation Date 	: July 20, 2008
-*  Revision History	: Source code & revision history maintained at sourceforge.WPI.edu    
-*  File Description	: Error handling functionality for C routines
-*/                            
-/*----------------------------------------------------------------------------*/
-/*        Copyright (c) FIRST 2008.  All Rights Reserved.                     */
-/*  Open Source Software - may be modified and shared by FRC teams. The code  */
-/*  must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
-/*----------------------------------------------------------------------------*/
- 
-#include "nivision.h" 
-#include "FrcError.h" 
-
-/**
- * Get the error code returned from the NI Vision library
- * @return The last error code.
- */
-int GetLastVisionError()
-{
-	//int errorCode = imaqGetLastVisionError();     // error code: 0 = no error	
-	//char* errorText = GetVisionErrorText(errorCode);
-	//dprintf (LOG_DEBUG, "Error = %i  %s ", errorCode, errorText);
-	return imaqGetLastError();
-}
-	
-/**
-* Get the error text for an NI Vision error code.
-* Note: imaqGetErrorText() is not supported on real time system, so
-* so relevant strings are hardcoded here - the maintained version is
-* in the LabWindows/CVI help file.
-* @param errorCode The error code to find the text for.
-* @return The error text
-*/
-const char* GetVisionErrorText(int errorCode)
-{
-	const char* errorText;
-
-	switch (errorCode)
-	{
-		default:
-			{ errorText = "UNKNOWN_ERROR";break;}
-		case -1074395138:
-			{ errorText = "ERR_OCR_REGION_TOO_SMALL";break;}
-		case -1074395139:
-			{ errorText = "ERR_IMAQ_QR_DIMENSION_INVALID";break;}
-		case -1074395140:
-			{ errorText = "ERR_OCR_CHAR_REPORT_CORRUPTED";break;}
-		case -1074395141:
-			{ errorText = "ERR_OCR_NO_TEXT_FOUND";break;}
-		case -1074395142:
-			{ errorText = "ERR_QR_DETECTION_MODELTYPE";break;}
-		case -1074395143:
-			{ errorText = "ERR_QR_DETECTION_MODE";break;}
-		case -1074395144:
-			{ errorText = "ERR_QR_INVALID_BARCODE";break;}
-		case -1074395145:
-			{ errorText = "ERR_QR_INVALID_READ";break;}
-		case -1074395146:
-			{ errorText = "ERR_QR_DETECTION_VERSION";break;}
-		case -1074395147:
-			{ errorText = "ERR_BARCODE_RSSLIMITED";break;}
-		case -1074395148:
-			{ errorText = "ERR_OVERLAY_GROUP_NOT_FOUND";break;}
-		case -1074395149:
-			{ errorText = "ERR_DUPLICATE_TRANSFORM_TYPE";break;}
-		case -1074395151:
-			{ errorText = "ERR_OCR_CORRECTION_FAILED";break;}
-		case -1074395155:
-			{ errorText = "ERR_OCR_ORIENT_DETECT_FAILED";break;}
-		case -1074395156:
-			{ errorText = "ERR_OCR_SKEW_DETECT_FAILED";break;}
-		case -1074395158:
-			{ errorText = "ERR_OCR_INVALID_CONTRASTMODE";break;}
-		case -1074395159:
-			{ errorText = "ERR_OCR_INVALID_TOLERANCE";break;}
-		case -1074395160:
-			{ errorText = "ERR_OCR_INVALID_MAXPOINTSIZE";break;}
-		case -1074395161:
-			{ errorText = "ERR_OCR_INVALID_CORRECTIONLEVEL";break;}
-		case -1074395162:
-			{ errorText = "ERR_OCR_INVALID_CORRECTIONMODE";break;}
-		case -1074395163:
-			{ errorText = "ERR_OCR_INVALID_CHARACTERPREFERENCE";break;}
-		case -1074395164:
-			{ errorText = "ERR_OCR_ADD_WORD_FAILED";break;}
-		case -1074395165:
-			{ errorText = "ERR_OCR_WTS_DIR_NOT_FOUND";break;}
-		case -1074395166:
-			{ errorText = "ERR_OCR_BIN_DIR_NOT_FOUND";break;}
-		case -1074395167:
-			{ errorText = "ERR_OCR_INVALID_OUTPUTDELIMITER";break;}
-		case -1074395168:
-			{ errorText = "ERR_OCR_INVALID_AUTOCORRECTIONMODE";break;}
-		case -1074395169:
-			{ errorText = "ERR_OCR_INVALID_RECOGNITIONMODE";break;}
-		case -1074395170:
-			{ errorText = "ERR_OCR_INVALID_CHARACTERTYPE";break;}
-		case -1074395171:
-			{ errorText = "ERR_OCR_INI_FILE_NOT_FOUND";break;}
-		case -1074395172:
-			{ errorText = "ERR_OCR_INVALID_CHARACTERSET";break;}
-		case -1074395173:
-			{ errorText = "ERR_OCR_INVALID_LANGUAGE";break;}
-		case -1074395174:
-			{ errorText = "ERR_OCR_INVALID_AUTOORIENTMODE";break;}
-		case -1074395175:
-			{ errorText = "ERR_OCR_BAD_USER_DICTIONARY";break;}
-		case -1074395178:
-			{ errorText = "ERR_OCR_RECOGNITION_FAILED";break;}
-		case -1074395179:
-			{ errorText = "ERR_OCR_PREPROCESSING_FAILED";break;}
-		case -1074395200:
-			{ errorText = "ERR_OCR_INVALID_PARAMETER";break;}
-		case -1074395201:
-			{ errorText = "ERR_OCR_LOAD_LIBRARY";break;}
-		case -1074395203:
-			{ errorText = "ERR_OCR_LIB_INIT";break;}
-		case -1074395210:
-			{ errorText = "ERR_OCR_CANNOT_MATCH_TEXT_TEMPLATE";break;}
-		case -1074395211:
-			{ errorText = "ERR_OCR_BAD_TEXT_TEMPLATE";break;}
-		case -1074395212:
-			{ errorText = "ERR_OCR_TEMPLATE_WRONG_SIZE";break;}
-		case -1074395233:
-			{ errorText = "ERR_TEMPLATE_IMAGE_TOO_LARGE";break;}
-		case -1074395234:
-			{ errorText = "ERR_TEMPLATE_IMAGE_TOO_SMALL";break;}
-		case -1074395235:
-			{ errorText = "ERR_TEMPLATE_IMAGE_CONTRAST_TOO_LOW";break;}
-		case -1074395237:
-			{ errorText = "ERR_TEMPLATE_DESCRIPTOR_SHIFT_1";break;}
-		case -1074395238:
-			{ errorText = "ERR_TEMPLATE_DESCRIPTOR_NOSHIFT";break;}
-		case -1074395239:
-			{ errorText = "ERR_TEMPLATE_DESCRIPTOR_SHIFT";break;}
-		case -1074395240:
-			{ errorText = "ERR_TEMPLATE_DESCRIPTOR_ROTATION_1";break;}
-		case -1074395241:
-			{ errorText = "ERR_TEMPLATE_DESCRIPTOR_NOROTATION";break;}
-		case -1074395242:
-			{ errorText = "ERR_TEMPLATE_DESCRIPTOR_ROTATION";break;}
-		case -1074395243:
-			{ errorText = "ERR_TEMPLATE_DESCRIPTOR_4";break;}
-		case -1074395244:
-			{ errorText = "ERR_TEMPLATE_DESCRIPTOR_3";break;}
-		case -1074395245:
-			{ errorText = "ERR_TEMPLATE_DESCRIPTOR_2";break;}
-		case -1074395246:
-			{ errorText = "ERR_TEMPLATE_DESCRIPTOR_1";break;}
-		case -1074395247:
-			{ errorText = "ERR_TEMPLATE_DESCRIPTOR";break;}
-		case -1074395248:
-			{ errorText = "ERR_TOO_MANY_ROTATION_ANGLE_RANGES";break;}
-		case -1074395249:
-			{ errorText = "ERR_ROTATION_ANGLE_RANGE_TOO_LARGE";break;}
-		case -1074395250:
-			{ errorText = "ERR_MATCH_SETUP_DATA";break;}
-		case -1074395251:
-			{ errorText = "ERR_INVALID_MATCH_MODE";break;}
-		case -1074395252:
-			{ errorText = "ERR_LEARN_SETUP_DATA";break;}
-		case -1074395253:
-			{ errorText = "ERR_INVALID_LEARN_MODE";break;}
-		case -1074395256:
-			{ errorText = "ERR_EVEN_WINDOW_SIZE";break;}
-		case -1074395257:
-			{ errorText = "ERR_INVALID_EDGE_DIR";break;}
-		case -1074395258:
-			{ errorText = "ERR_BAD_FILTER_WIDTH";break;}
-		case -1074395260:
-			{ errorText = "ERR_HEAP_TRASHED";break;}
-		case -1074395261:
-			{ errorText = "ERR_GIP_RANGE";break;}
-		case -1074395262:
-			{ errorText = "ERR_LCD_BAD_MATCH";break;}
-		case -1074395263:
-			{ errorText = "ERR_LCD_NO_SEGMENTS";break;}
-		case -1074395265:
-			{ errorText = "ERR_BARCODE";break;}
-		case -1074395267:
-			{ errorText = "ERR_COMPLEX_ROOT";break;}
-		case -1074395268:
-			{ errorText = "ERR_LINEAR_COEFF";break;}
-		case -1074395269:
-			{ errorText = "ERR_NULL_POINTER";break;}
-		case -1074395270:
-			{ errorText = "ERR_DIV_BY_ZERO";break;}
-		case -1074395275:
-			{ errorText = "ERR_INVALID_BROWSER_IMAGE";break;}
-		case -1074395276:
-			{ errorText = "ERR_LINES_PARALLEL";break;}
-		case -1074395277:
-			{ errorText = "ERR_BARCODE_CHECKSUM";break;}
-		case -1074395278:
-			{ errorText = "ERR_LCD_NOT_NUMERIC";break;}
-		case -1074395279:
-			{ errorText = "ERR_ROI_NOT_POLYGON";break;}
-		case -1074395280:
-			{ errorText = "ERR_ROI_NOT_RECT";break;}
-		case -1074395281:
-			{ errorText = "ERR_IMAGE_SMALLER_THAN_BORDER";break;}
-		case -1074395282:
-			{ errorText = "ERR_CANT_DRAW_INTO_VIEWER";break;}
-		case -1074395283:
-			{ errorText = "ERR_INVALID_RAKE_DIRECTION";break;}
-		case -1074395284:
-			{ errorText = "ERR_INVALID_EDGE_PROCESS";break;}
-		case -1074395285:
-			{ errorText = "ERR_INVALID_SPOKE_DIRECTION";break;}
-		case -1074395286:
-			{ errorText = "ERR_INVALID_CONCENTRIC_RAKE_DIRECTION";break;}
-		case -1074395287:
-			{ errorText = "ERR_INVALID_LINE";break;}
-		case -1074395290:
-			{ errorText = "ERR_SHAPEMATCH_BADTEMPLATE";break;}
-		case -1074395291:
-			{ errorText = "ERR_SHAPEMATCH_BADIMAGEDATA";break;}
-		case -1074395292:
-			{ errorText = "ERR_POINTS_ARE_COLLINEAR";break;}
-		case -1074395293:
-			{ errorText = "ERR_CONTOURID_NOT_FOUND";break;}
-		case -1074395294:
-			{ errorText = "ERR_CONTOUR_INDEX_OUT_OF_RANGE";break;}
-		case -1074395295:
-			{ errorText = "ERR_INVALID_INTERPOLATIONMETHOD_INTERPOLATEPOINTS";break;}
-		case -1074395296:
-			{ errorText = "ERR_INVALID_BARCODETYPE";break;}
-		case -1074395297:
-			{ errorText = "ERR_INVALID_PARTICLEINFOMODE";break;}
-		case -1074395298:
-			{ errorText = "ERR_COMPLEXPLANE_NOT_REAL_OR_IMAGINARY";break;}
-		case -1074395299:
-			{ errorText = "ERR_INVALID_COMPLEXPLANE";break;}
-		case -1074395300:
-			{ errorText = "ERR_INVALID_METERARCMODE";break;}
-		case -1074395301:
-			{ errorText = "ERR_ROI_NOT_2_LINES";break;}
-		case -1074395302:
-			{ errorText = "ERR_INVALID_THRESHOLDMETHOD";break;}
-		case -1074395303:
-			{ errorText = "ERR_INVALID_NUM_OF_CLASSES";break;}
-		case -1074395304:
-			{ errorText = "ERR_INVALID_MATHTRANSFORMMETHOD";break;}
-		case -1074395305:
-			{ errorText = "ERR_INVALID_REFERENCEMODE";break;}
-		case -1074395306:
-			{ errorText = "ERR_INVALID_TOOL";break;}
-		case -1074395307:
-			{ errorText = "ERR_PRECISION_NOT_GTR_THAN_0";break;}
-		case -1074395308:
-			{ errorText = "ERR_INVALID_COLORSENSITIVITY";break;}
-		case -1074395309:
-			{ errorText = "ERR_INVALID_WINDOW_THREAD_POLICY";break;}
-		case -1074395310:
-			{ errorText = "ERR_INVALID_PALETTE_TYPE";break;}
-		case -1074395311:
-			{ errorText = "ERR_INVALID_COLOR_SPECTRUM";break;}
-		case -1074395312:
-			{ errorText = "ERR_LCD_CALIBRATE";break;}
-		case -1074395313:
-			{ errorText = "ERR_WRITE_FILE_NOT_SUPPORTED";break;}
-		case -1074395316:
-			{ errorText = "ERR_INVALID_KERNEL_CODE";break;}
-		case -1074395317:
-			{ errorText = "ERR_UNDEF_POINT";break;}
-		case -1074395318:
-			{ errorText = "ERR_INSF_POINTS";break;}
-		case -1074395319:
-			{ errorText = "ERR_INVALID_SUBPIX_TYPE";break;}
-		case -1074395320:
-			{ errorText = "ERR_TEMPLATE_EMPTY";break;}
-		case -1074395321:
-			{ errorText = "ERR_INVALID_MORPHOLOGYMETHOD";break;}
-		case -1074395322:
-			{ errorText = "ERR_INVALID_TEXTALIGNMENT";break;}
-		case -1074395323:
-			{ errorText = "ERR_INVALID_FONTCOLOR";break;}
-		case -1074395324:
-			{ errorText = "ERR_INVALID_SHAPEMODE";break;}
-		case -1074395325:
-			{ errorText = "ERR_INVALID_DRAWMODE";break;}
-		case -1074395326:
-			{ errorText = "ERR_INVALID_DRAWMODE_FOR_LINE";break;}
-		case -1074395327:
-			{ errorText = "ERR_INVALID_SCALINGMODE";break;}
-		case -1074395328:
-			{ errorText = "ERR_INVALID_INTERPOLATIONMETHOD";break;}
-		case -1074395329:
-			{ errorText = "ERR_INVALID_OUTLINEMETHOD";break;}
-		case -1074395330:
-			{ errorText = "ERR_INVALID_BORDER_SIZE";break;}
-		case -1074395331:
-			{ errorText = "ERR_INVALID_BORDERMETHOD";break;}
-		case -1074395332:
-			{ errorText = "ERR_INVALID_COMPAREFUNCTION";break;}
-		case -1074395333:
-			{ errorText = "ERR_INVALID_VERTICAL_TEXT_ALIGNMENT";break;}
-		case -1074395334:
-			{ errorText = "ERR_INVALID_CONVERSIONSTYLE";break;}
-		case -1074395335:
-			{ errorText = "ERR_DISPATCH_STATUS_CONFLICT";break;}
-		case -1074395336:
-			{ errorText = "ERR_UNKNOWN_ALGORITHM";break;}
-		case -1074395340:
-			{ errorText = "ERR_INVALID_SIZETYPE";break;}
-		case -1074395343:
-			{ errorText = "ERR_FILE_FILENAME_NULL";break;}
-		case -1074395345:
-			{ errorText = "ERR_INVALID_FLIPAXIS";break;}
-		case -1074395346:
-			{ errorText = "ERR_INVALID_INTERPOLATIONMETHOD_FOR_ROTATE";break;}
-		case -1074395347:
-			{ errorText = "ERR_INVALID_3DDIRECTION";break;}
-		case -1074395348:
-			{ errorText = "ERR_INVALID_3DPLANE";break;}
-		case -1074395349:
-			{ errorText = "ERR_INVALID_SKELETONMETHOD";break;}
-		case -1074395350:
-			{ errorText = "ERR_INVALID_VISION_INFO";break;}
-		case -1074395351:
-			{ errorText = "ERR_INVALID_RECT";break;}
-		case -1074395352:
-			{ errorText = "ERR_INVALID_FEATURE_MODE";break;}
-		case -1074395353:
-			{ errorText = "ERR_INVALID_SEARCH_STRATEGY";break;}
-		case -1074395354:
-			{ errorText = "ERR_INVALID_COLOR_WEIGHT";break;}
-		case -1074395355:
-			{ errorText = "ERR_INVALID_NUM_MATCHES_REQUESTED";break;}
-		case -1074395356:
-			{ errorText = "ERR_INVALID_MIN_MATCH_SCORE";break;}
-		case -1074395357:
-			{ errorText = "ERR_INVALID_COLOR_IGNORE_MODE";break;}
-		case -1074395360:
-			{ errorText = "ERR_COMPLEX_PLANE";break;}
-		case -1074395361:
-			{ errorText = "ERR_INVALID_STEEPNESS";break;}
-		case -1074395362:
-			{ errorText = "ERR_INVALID_WIDTH";break;}
-		case -1074395363:
-			{ errorText = "ERR_INVALID_SUBSAMPLING_RATIO";break;}
-		case -1074395364:
-			{ errorText = "ERR_IGNORE_COLOR_SPECTRUM_SET";break;}
-		case -1074395365:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_NOSPECTRUM";break;}
-		case -1074395366:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_NOSHAPE";break;}
-		case -1074395367:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_ROTATION_5";break;}
-		case -1074395368:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_ROTATION_4";break;}
-		case -1074395369:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_ROTATION_3";break;}
-		case -1074395370:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_ROTATION_2";break;}
-		case -1074395371:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_ROTATION_1";break;}
-		case -1074395372:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_NOROTATION";break;}
-		case -1074395373:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_ROTATION";break;}
-		case -1074395374:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_SHIFT_2";break;}
-		case -1074395375:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_SHIFT_1";break;}
-		case -1074395376:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_NOSHIFT";break;}
-		case -1074395377:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_SHIFT";break;}
-		case -1074395378:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_6";break;}
-		case -1074395379:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_5";break;}
-		case -1074395380:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_4";break;}
-		case -1074395381:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_3";break;}
-		case -1074395382:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_2";break;}
-		case -1074395383:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR_1";break;}
-		case -1074395384:
-			{ errorText = "ERR_COLOR_TEMPLATE_DESCRIPTOR";break;}
-		case -1074395385:
-			{ errorText = "ERR_COLOR_ROTATION_REQUIRES_SHAPE_FEATURE";break;}
-		case -1074395386:
-			{ errorText = "ERR_COLOR_MATCH_SETUP_DATA_SHAPE";break;}
-		case -1074395387:
-			{ errorText = "ERR_COLOR_MATCH_SETUP_DATA";break;}
-		case -1074395388:
-			{ errorText = "ERR_COLOR_LEARN_SETUP_DATA_SHAPE";break;}
-		case -1074395389:
-			{ errorText = "ERR_COLOR_LEARN_SETUP_DATA";break;}
-		case -1074395390:
-			{ errorText = "ERR_COLOR_TEMPLATE_IMAGE_LUMINANCE_CONTRAST_TOO_LOW";break;}
-		case -1074395391:
-			{ errorText = "ERR_COLOR_TEMPLATE_IMAGE_HUE_CONTRAST_TOO_LOW";break;}
-		case -1074395392:
-			{ errorText = "ERR_COLOR_TEMPLATE_IMAGE_TOO_LARGE";break;}
-		case -1074395393:
-			{ errorText = "ERR_COLOR_TEMPLATE_IMAGE_TOO_SMALL";break;}
-		case -1074395394:
-			{ errorText = "ERR_COLOR_SPECTRUM_MASK";break;}
-		case -1074395395:
-			{ errorText = "ERR_COLOR_IMAGE_REQUIRED";break;}
-		case -1074395397:
-			{ errorText = "ERR_COMPLEX_IMAGE_REQUIRED";break;}
-		case -1074395399:
-			{ errorText = "ERR_MULTICORE_INVALID_ARGUMENT";break;}
-		case -1074395400:
-			{ errorText = "ERR_MULTICORE_OPERATION";break;}
-		case -1074395401:
-			{ errorText = "ERR_INVALID_MATCHFACTOR";break;}
-		case -1074395402:
-			{ errorText = "ERR_INVALID_MAXPOINTS";break;}
-		case -1074395403:
-			{ errorText = "ERR_EXTRAINFO_VERSION";break;}
-		case -1074395404:
-			{ errorText = "ERR_INVALID_INTERPOLATIONMETHOD_FOR_UNWRAP";break;}
-		case -1074395405:
-			{ errorText = "ERR_INVALID_TEXTORIENTATION";break;}
-		case -1074395406:
-			{ errorText = "ERR_COORDSYS_NOT_FOUND";break;}
-		case -1074395407:
-			{ errorText = "ERR_INVALID_CONTRAST";break;}
-		case -1074395408:
-			{ errorText = "ERR_INVALID_DETECTION_MODE";break;}
-		case -1074395409:
-			{ errorText = "ERR_INVALID_SUBPIXEL_DIVISIONS";break;}
-		case -1074395410:
-			{ errorText = "ERR_INVALID_ICONS_PER_LINE";break;}
-		case -1074395549:
-			{ errorText = "ERR_NIOCR_INVALID_NUMBER_OF_OBJECTS_TO_VERIFY";break;}
-		case -1074395550:
-			{ errorText = "ERR_NIOCR_INVALID_CHARACTER_VALUE";break;}
-		case -1074395551:
-			{ errorText = "ERR_NIOCR_RENAME_REFCHAR";break;}
-		case -1074395552:
-			{ errorText = "ERR_NIOCR_NOT_A_VALID_CHARACTER_SET";break;}
-		case -1074395553:
-			{ errorText = "ERR_NIOCR_INVALID_MIN_BOUNDING_RECT_HEIGHT";break;}
-		case -1074395554:
-			{ errorText = "ERR_NIOCR_INVALID_READ_RESOLUTION";break;}
-		case -1074395555:
-			{ errorText = "ERR_NIOCR_INVALID_SPACING_RANGE";break;}
-		case -1074395556:
-			{ errorText = "ERR_NIOCR_INVALID_BOUNDING_RECT_HEIGHT_RANGE";break;}
-		case -1074395557:
-			{ errorText = "ERR_NIOCR_INVALID_BOUNDING_RECT_WIDTH_RANGE";break;}
-		case -1074395558:
-			{ errorText = "ERR_NIOCR_INVALID_CHARACTER_SIZE_RANGE";break;}
-		case -1074395559:
-			{ errorText = "ERR_NIOCR_INVALID_READ_OPTION";break;}
-		case -1074395560:
-			{ errorText = "ERR_NIOCR_INVALID_OBJECT_INDEX";break;}
-		case -1074395561:
-			{ errorText = "ERR_NIOCR_INVALID_NUMBER_OF_CHARACTERS";break;}
-		case -1074395562:
-			{ errorText = "ERR_NIOCR_BOOLEAN_VALUE_FOR_STRING_ATTRIBUTE";break;}
-		case -1074395563:
-			{ errorText = "ERR_NIOCR_UNLICENSED";break;}
-		case -1074395564:
-			{ errorText = "ERR_NIOCR_INVALID_PREDEFINED_CHARACTER";break;}
-		case -1074395565:
-			{ errorText = "ERR_NIOCR_MUST_BE_SINGLE_CHARACTER";break;}
-		case -1074395566:
-			{ errorText = "ERR_NIOCR_BOOLEAN_VALUE_FOR_INTEGER_ATTRIBUTE";break;}
-		case -1074395567:
-			{ errorText = "ERR_NIOCR_STRING_VALUE_FOR_BOOLEAN_ATTRIBUTE";break;}
-		case -1074395568:
-			{ errorText = "ERR_NIOCR_STRING_VALUE_FOR_INTEGER_ATTRIBUTE";break;}
-		case -1074395569:
-			{ errorText = "ERR_NIOCR_INVALID_ATTRIBUTE";break;}
-		case -1074395570:
-			{ errorText = "ERR_NIOCR_INTEGER_VALUE_FOR_BOOLEAN_ATTRIBUTE";break;}
-		case -1074395571:
-			{ errorText = "ERR_NIOCR_GET_ONLY_ATTRIBUTE";break;}
-		case -1074395572:
-			{ errorText = "ERR_NIOCR_INTEGER_VALUE_FOR_STRING_ATTRIBUTE";break;}
-		case -1074395573:
-			{ errorText = "ERR_NIOCR_INVALID_CHARACTER_SET_FILE_VERSION";break;}
-		case -1074395574:
-			{ errorText = "ERR_NIOCR_CHARACTER_SET_DESCRIPTION_TOO_LONG";break;}
-		case -1074395575:
-			{ errorText = "ERR_NIOCR_INVALID_NUMBER_OF_EROSIONS";break;}
-		case -1074395576:
-			{ errorText = "ERR_NIOCR_CHARACTER_VALUE_TOO_LONG";break;}
-		case -1074395577:
-			{ errorText = "ERR_NIOCR_CHARACTER_VALUE_CANNOT_BE_EMPTYSTRING";break;}
-		case -1074395578:
-			{ errorText = "ERR_NIOCR_INVALID_CHARACTER_SET_FILE";break;}
-		case -1074395579:
-			{ errorText = "ERR_NIOCR_INVALID_ASPECT_RATIO";break;}
-		case -1074395580:
-			{ errorText = "ERR_NIOCR_INVALID_MIN_BOUNDING_RECT_WIDTH";break;}
-		case -1074395581:
-			{ errorText = "ERR_NIOCR_INVALID_MAX_VERT_ELEMENT_SPACING";break;}
-		case -1074395582:
-			{ errorText = "ERR_NIOCR_INVALID_MAX_HORIZ_ELEMENT_SPACING";break;}
-		case -1074395583:
-			{ errorText = "ERR_NIOCR_INVALID_MIN_CHAR_SPACING";break;}
-		case -1074395584:
-			{ errorText = "ERR_NIOCR_INVALID_THRESHOLD_LIMITS";break;}
-		case -1074395585:
-			{ errorText = "ERR_NIOCR_INVALID_UPPER_THRESHOLD_LIMIT";break;}
-		case -1074395586:
-			{ errorText = "ERR_NIOCR_INVALID_LOWER_THRESHOLD_LIMIT";break;}
-		case -1074395587:
-			{ errorText = "ERR_NIOCR_INVALID_THRESHOLD_RANGE";break;}
-		case -1074395588:
-			{ errorText = "ERR_NIOCR_INVALID_HIGH_THRESHOLD_VALUE";break;}
-		case -1074395589:
-			{ errorText = "ERR_NIOCR_INVALID_LOW_THRESHOLD_VALUE";break;}
-		case -1074395590:
-			{ errorText = "ERR_NIOCR_INVALID_NUMBER_OF_VALID_CHARACTER_POSITIONS";break;}
-		case -1074395591:
-			{ errorText = "ERR_NIOCR_INVALID_CHARACTER_INDEX";break;}
-		case -1074395592:
-			{ errorText = "ERR_NIOCR_INVALID_READ_STRATEGY";break;}
-		case -1074395593:
-			{ errorText = "ERR_NIOCR_INVALID_NUMBER_OF_BLOCKS";break;}
-		case -1074395594:
-			{ errorText = "ERR_NIOCR_INVALID_SUBSTITUTION_CHARACTER";break;}
-		case -1074395595:
-			{ errorText = "ERR_NIOCR_INVALID_THRESHOLD_MODE";break;}
-		case -1074395596:
-			{ errorText = "ERR_NIOCR_INVALID_CHARACTER_SIZE";break;}
-		case -1074395597:
-			{ errorText = "ERR_NIOCR_NOT_A_VALID_SESSION";break;}
-		case -1074395598:
-			{ errorText = "ERR_NIOCR_INVALID_ACCEPTANCE_LEVEL";break;}
-		case -1074395600:
-			{ errorText = "ERR_INFO_NOT_FOUND";break;}
-		case -1074395601:
-			{ errorText = "ERR_INVALID_EDGE_THRESHOLD";break;}
-		case -1074395602:
-			{ errorText = "ERR_INVALID_MINIMUM_CURVE_LENGTH";break;}
-		case -1074395603:
-			{ errorText = "ERR_INVALID_ROW_STEP";break;}
-		case -1074395604:
-			{ errorText = "ERR_INVALID_COLUMN_STEP";break;}
-		case -1074395605:
-			{ errorText = "ERR_INVALID_MAXIMUM_END_POINT_GAP";break;}
-		case -1074395606:
-			{ errorText = "ERR_INVALID_MINIMUM_FEATURES_TO_MATCH";break;}
-		case -1074395607:
-			{ errorText = "ERR_INVALID_MAXIMUM_FEATURES_PER_MATCH";break;}
-		case -1074395608:
-			{ errorText = "ERR_INVALID_SUBPIXEL_ITERATIONS";break;}
-		case -1074395609:
-			{ errorText = "ERR_INVALID_SUBPIXEL_TOLERANCE";break;}
-		case -1074395610:
-			{ errorText = "ERR_INVALID_INITIAL_MATCH_LIST_LENGTH";break;}
-		case -1074395611:
-			{ errorText = "ERR_INVALID_MINIMUM_RECTANGLE_DIMENSION";break;}
-		case -1074395612:
-			{ errorText = "ERR_INVALID_MINIMUM_FEATURE_RADIUS";break;}
-		case -1074395613:
-			{ errorText = "ERR_INVALID_MINIMUM_FEATURE_LENGTH";break;}
-		case -1074395614:
-			{ errorText = "ERR_INVALID_MINIMUM_FEATURE_ASPECT_RATIO";break;}
-		case -1074395615:
-			{ errorText = "ERR_INVALID_MINIMUM_FEATURE_STRENGTH";break;}
-		case -1074395616:
-			{ errorText = "ERR_INVALID_EDGE_FILTER_SIZE";break;}
-		case -1074395617:
-			{ errorText = "ERR_INVALID_NUMBER_OF_FEATURES_RANGE";break;}
-		case -1074395618:
-			{ errorText = "ERR_TOO_MANY_SCALE_RANGES";break;}
-		case -1074395619:
-			{ errorText = "ERR_TOO_MANY_OCCLUSION_RANGES";break;}
-		case -1074395620:
-			{ errorText = "ERR_INVALID_CURVE_EXTRACTION_MODE";break;}
-		case -1074395621:
-			{ errorText = "ERR_INVALID_LEARN_GEOMETRIC_PATTERN_SETUP_DATA";break;}
-		case -1074395622:
-			{ errorText = "ERR_INVALID_MATCH_GEOMETRIC_PATTERN_SETUP_DATA";break;}
-		case -1074395623:
-			{ errorText = "ERR_INVALID_SCALE_RANGE";break;}
-		case -1074395624:
-			{ errorText = "ERR_INVALID_OCCLUSION_RANGE";break;}
-		case -1074395625:
-			{ errorText = "ERR_INVALID_MATCH_CONSTRAINT_TYPE";break;}
-		case -1074395626:
-			{ errorText = "ERR_NOT_ENOUGH_TEMPLATE_FEATURES";break;}
-		case -1074395627:
-			{ errorText = "ERR_NOT_ENOUGH_TEMPLATE_FEATURES_1";break;}
-		case -1074395628:
-			{ errorText = "ERR_INVALID_GEOMETRIC_MATCHING_TEMPLATE";break;}
-		case -1074395629:
-			{ errorText = "ERR_INVALID_MAXIMUM_PIXEL_DISTANCE_FROM_LINE";break;}
-		case -1074395630:
-			{ errorText = "ERR_INVALID_MAXIMUM_FEATURES_LEARNED";break;}
-		case -1074395631:
-			{ errorText = "ERR_INVALID_MIN_MATCH_SEPARATION_DISTANCE";break;}
-		case -1074395632:
-			{ errorText = "ERR_INVALID_MIN_MATCH_SEPARATION_ANGLE";break;}
-		case -1074395633:
-			{ errorText = "ERR_INVALID_MIN_MATCH_SEPARATION_SCALE";break;}
-		case -1074395634:
-			{ errorText = "ERR_INVALID_MAX_MATCH_OVERLAP";break;}
-		case -1074395635:
-			{ errorText = "ERR_INVALID_SHAPE_DESCRIPTOR";break;}
-		case -1074395636:
-			{ errorText = "ERR_DIRECTX_NOT_FOUND";break;}
-		case -1074395637:
-			{ errorText = "ERR_HARDWARE_DOESNT_SUPPORT_NONTEARING";break;}
-		case -1074395638:
-			{ errorText = "ERR_INVALID_FILL_STYLE";break;}
-		case -1074395639:
-			{ errorText = "ERR_INVALID_HATCH_STYLE";break;}
-		case -1074395640:
-			{ errorText = "ERR_TOO_MANY_ZONES";break;}
-		case -1074395641:
-			{ errorText = "ERR_DUPLICATE_LABEL";break;}
-		case -1074395642:
-			{ errorText = "ERR_LABEL_NOT_FOUND";break;}
-		case -1074395643:
-			{ errorText = "ERR_INVALID_NUMBER_OF_MATCH_OPTIONS";break;}
-		case -1074395644:
-			{ errorText = "ERR_LABEL_TOO_LONG";break;}
-		case -1074395645:
-			{ errorText = "ERR_INVALID_NUMBER_OF_LABELS";break;}
-		case -1074395646:
-			{ errorText = "ERR_NO_TEMPLATE_TO_LEARN";break;}
-		case -1074395647:
-			{ errorText = "ERR_INVALID_MULTIPLE_GEOMETRIC_TEMPLATE";break;}
-		case -1074395648:
-			{ errorText = "ERR_TEMPLATE_NOT_LEARNED";break;}
-		case -1074395649:
-			{ errorText = "ERR_INVALID_GEOMETRIC_FEATURE_TYPE";break;}
-		case -1074395650:
-			{ errorText = "ERR_CURVE_EXTRACTION_MODE_MUST_BE_SAME";break;}
-		case -1074395651:
-			{ errorText = "ERR_EDGE_FILTER_SIZE_MUST_BE_SAME";break;}
-		case -1074395652:
-			{ errorText = "ERR_OPENING_NEWER_GEOMETRIC_MATCHING_TEMPLATE";break;}
-		case -1074395653:
-			{ errorText = "ERR_OPENING_NEWER_MULTIPLE_GEOMETRIC_TEMPLATE";break;}
-		case -1074395654:
-			{ errorText = "ERR_GRADING_INFORMATION_NOT_FOUND";break;}
-		case -1074395655:
-			{ errorText = "ERR_ENABLE_CALIBRATION_SUPPORT_MUST_BE_SAME";break;}
-		case -1074395656:
-			{ errorText = "ERR_SMOOTH_CONTOURS_MUST_BE_SAME";break;}
-		case -1074395700:
-			{ errorText = "ERR_REQUIRES_WIN2000_OR_NEWER";break;}
-		case -1074395701:
-			{ errorText = "ERR_INVALID_MATRIX_SIZE_RANGE";break;}
-		case -1074395702:
-			{ errorText = "ERR_INVALID_LENGTH";break;}
-		case -1074395703:
-			{ errorText = "ERR_INVALID_TYPE_OF_FLATTEN";break;}
-		case -1074395704:
-			{ errorText = "ERR_INVALID_COMPRESSION_TYPE";break;}
-		case -1074395705:
-			{ errorText = "ERR_DATA_CORRUPTED";break;}
-		case -1074395706:
-			{ errorText = "ERR_AVI_SESSION_ALREADY_OPEN";break;}
-		case -1074395707:
-			{ errorText = "ERR_AVI_WRITE_SESSION_REQUIRED";break;}
-		case -1074395708:
-			{ errorText = "ERR_AVI_READ_SESSION_REQUIRED";break;}
-		case -1074395709:
-			{ errorText = "ERR_AVI_UNOPENED_SESSION";break;}
-		case -1074395710:
-			{ errorText = "ERR_TOO_MANY_PARTICLES";break;}
-		case -1074395711:
-			{ errorText = "ERR_NOT_ENOUGH_REGIONS";break;}
-		case -1074395712:
-			{ errorText = "ERR_WRONG_REGION_TYPE";break;}
-		case -1074395713:
-			{ errorText = "ERR_VALUE_NOT_IN_ENUM";break;}
-		case -1074395714:
-			{ errorText = "ERR_INVALID_AXIS_ORIENTATION";break;}
-		case -1074395715:
-			{ errorText = "ERR_INVALID_CALIBRATION_UNIT";break;}
-		case -1074395716:
-			{ errorText = "ERR_INVALID_SCALING_METHOD";break;}
-		case -1074395717:
-			{ errorText = "ERR_INVALID_RANGE";break;}
-		case -1074395718:
-			{ errorText = "ERR_LAB_VERSION";break;}
-		case -1074395719:
-			{ errorText = "ERR_BAD_ROI_BOX";break;}
-		case -1074395720:
-			{ errorText = "ERR_BAD_ROI";break;}
-		case -1074395721:
-			{ errorText = "ERR_INVALID_BIT_DEPTH";break;}
-		case -1074395722:
-			{ errorText = "ERR_CLASSIFIER_CLASSIFY_IMAGE_WITH_CUSTOM_SESSION";break;}
-		case -1074395723:
-			{ errorText = "ERR_CUSTOMDATA_KEY_NOT_FOUND";break;}
-		case -1074395724:
-			{ errorText = "ERR_CUSTOMDATA_INVALID_SIZE";break;}
-		case -1074395725:
-			{ errorText = "ERR_DATA_VERSION";break;}
-		case -1074395726:
-			{ errorText = "ERR_MATCHFACTOR_OBSOLETE";break;}
-		case -1074395727:
-			{ errorText = "ERR_UNSUPPORTED_2D_BARCODE_SEARCH_MODE";break;}
-		case -1074395728:
-			{ errorText = "ERR_INVALID_2D_BARCODE_SEARCH_MODE";break;}
-		case -1074395754:
-			{ errorText = "ERR_TRIG_TIMEOUT";break;}
-		case -1074395756:
-			{ errorText = "ERR_DLL_FUNCTION_NOT_FOUND";break;}
-		case -1074395757:
-			{ errorText = "ERR_DLL_NOT_FOUND";break;}
-		case -1074395758:
-			{ errorText = "ERR_BOARD_NOT_OPEN";break;}
-		case -1074395760:
-			{ errorText = "ERR_BOARD_NOT_FOUND";break;}
-		case -1074395762:
-			{ errorText = "ERR_INVALID_NIBLACK_DEVIATION_FACTOR";break;}
-		case -1074395763:
-			{ errorText = "ERR_INVALID_NORMALIZATION_METHOD";break;}
-		case -1074395766:
-			{ errorText = "ERR_DEPRECATED_FUNCTION";break;}
-		case -1074395767:
-			{ errorText = "ERR_INVALID_ALIGNMENT";break;}
-		case -1074395768:
-			{ errorText = "ERR_INVALID_SCALE";break;}
-		case -1074395769:
-			{ errorText = "ERR_INVALID_EDGE_THICKNESS";break;}
-		case -1074395770:
-			{ errorText = "ERR_INVALID_INSPECTION_TEMPLATE";break;}
-		case -1074395771:
-			{ errorText = "ERR_OPENING_NEWER_INSPECTION_TEMPLATE";break;}
-		case -1074395772:
-			{ errorText = "ERR_INVALID_REGISTRATION_METHOD";break;}
-		case -1074395773:
-			{ errorText = "ERR_NO_DEST_IMAGE";break;}
-		case -1074395774:
-			{ errorText = "ERR_NO_LABEL";break;}
-		case -1074395775:
-			{ errorText = "ERR_ROI_HAS_OPEN_CONTOURS";break;}
-		case -1074395776:
-			{ errorText = "ERR_INVALID_USE_OF_COMPACT_SESSION_FILE";break;}
-		case -1074395777:
-			{ errorText = "ERR_INCOMPATIBLE_CLASSIFIER_TYPES";break;}
-		case -1074395778:
-			{ errorText = "ERR_INVALID_KERNEL_SIZE";break;}
-		case -1074395779:
-			{ errorText = "ERR_CANNOT_COMPACT_UNTRAINED";break;}
-		case -1074395780:
-			{ errorText = "ERR_INVALID_PARTICLE_TYPE";break;}
-		case -1074395781:
-			{ errorText = "ERR_CLASSIFIER_INVALID_ENGINE_TYPE";break;}
-		case -1074395782:
-			{ errorText = "ERR_DESCRIPTION_TOO_LONG";break;}
-		case -1074395783:
-			{ errorText = "ERR_BAD_SAMPLE_INDEX";break;}
-		case -1074395784:
-			{ errorText = "ERR_INVALID_LIMITS";break;}
-		case -1074395785:
-			{ errorText = "ERR_NO_PARTICLE";break;}
-		case -1074395786:
-			{ errorText = "ERR_INVALID_PARTICLE_OPTIONS";break;}
-		case -1074395787:
-			{ errorText = "ERR_INVALID_CLASSIFIER_TYPE";break;}
-		case -1074395788:
-			{ errorText = "ERR_NO_SAMPLES";break;}
-		case -1074395789:
-			{ errorText = "ERR_OPENING_NEWER_CLASSIFIER_SESSION";break;}
-		case -1074395790:
-			{ errorText = "ERR_INVALID_DISTANCE_METRIC";break;}
-		case -1074395791:
-			{ errorText = "ERR_CLASSIFIER_INVALID_SESSION_TYPE";break;}
-		case -1074395792:
-			{ errorText = "ERR_CLASSIFIER_SESSION_NOT_TRAINED";break;}
-		case -1074395793:
-			{ errorText = "ERR_INVALID_OPERATION_ON_COMPACT_SESSION_ATTEMPTED";break;}
-		case -1074395794:
-			{ errorText = "ERR_K_TOO_HIGH";break;}
-		case -1074395795:
-			{ errorText = "ERR_K_TOO_LOW";break;}
-		case -1074395796:
-			{ errorText = "ERR_INVALID_KNN_METHOD";break;}
-		case -1074395797:
-			{ errorText = "ERR_INVALID_CLASSIFIER_SESSION";break;}
-		case -1074395798:
-			{ errorText = "ERR_INVALID_CUSTOM_SAMPLE";break;}
-		case -1074395799:
-			{ errorText = "ERR_INTERNAL";break;}
-		case -1074395800:
-			{ errorText = "ERR_PROTECTION";break;}
-		case -1074395801:
-			{ errorText = "ERR_TOO_MANY_CONTOURS";break;}
-		case -1074395837:
-			{ errorText = "ERR_INVALID_COMPRESSION_RATIO";break;}
-		case -1074395840:
-			{ errorText = "ERR_BAD_INDEX";break;}
-		case -1074395875:
-			{ errorText = "ERR_BARCODE_PHARMACODE";break;}
-		case -1074395876:
-			{ errorText = "ERR_UNSUPPORTED_COLOR_MODE";break;}
-		case -1074395877:
-			{ errorText = "ERR_COLORMODE_REQUIRES_CHANGECOLORSPACE2";break;}
-		case -1074395878:
-			{ errorText = "ERR_PROP_NODE_WRITE_NOT_SUPPORTED";break;}
-		case -1074395879:
-			{ errorText = "ERR_BAD_MEASURE";break;}
-		case -1074395880:
-			{ errorText = "ERR_PARTICLE";break;}
-		case -1074395920:
-			{ errorText = "ERR_NUMBER_CLASS";break;}
-		case -1074395953:
-			{ errorText = "ERR_INVALID_WAVELET_TRANSFORM_MODE";break;}
-		case -1074395954:
-			{ errorText = "ERR_INVALID_QUANTIZATION_STEP_SIZE";break;}
-		case -1074395955:
-			{ errorText = "ERR_INVALID_MAX_WAVELET_TRANSFORM_LEVEL";break;}
-		case -1074395956:
-			{ errorText = "ERR_INVALID_QUALITY";break;}
-		case -1074395957:
-			{ errorText = "ERR_ARRAY_SIZE_MISMATCH";break;}
-		case -1074395958:
-			{ errorText = "ERR_WINDOW_ID";break;}
-		case -1074395959:
-			{ errorText = "ERR_CREATE_WINDOW";break;}
-		case -1074395960:
-			{ errorText = "ERR_INIT";break;}
-		case -1074395971:
-			{ errorText = "ERR_INVALID_OFFSET";break;}
-		case -1074395972:
-			{ errorText = "ERR_DIRECTX_ENUMERATE_FILTERS";break;}
-		case -1074395973:
-			{ errorText = "ERR_JPEG2000_UNSUPPORTED_MULTIPLE_LAYERS";break;}
-		case -1074395974:
-			{ errorText = "ERR_UNSUPPORTED_JPEG2000_COLORSPACE_METHOD";break;}
-		case -1074395975:
-			{ errorText = "ERR_AVI_TIMEOUT";break;}
-		case -1074395976:
-			{ errorText = "ERR_NUMBER_OF_PALETTE_COLORS";break;}
-		case -1074395977:
-			{ errorText = "ERR_AVI_VERSION";break;}
-		case -1074395978:
-			{ errorText = "ERR_INVALID_PARTICLE_NUMBER";break;}
-		case -1074395979:
-			{ errorText = "ERR_INVALID_PARTICLE_INFO";break;}
-		case -1074395980:
-			{ errorText = "ERR_COM_INITIALIZE";break;}
-		case -1074395981:
-			{ errorText = "ERR_INSUFFICIENT_BUFFER_SIZE";break;}
-		case -1074395982:
-			{ errorText = "ERR_INVALID_FRAMES_PER_SECOND";break;}
-		case -1074395983:
-			{ errorText = "ERR_FILE_NO_SPACE";break;}
-		case -1074395984:
-			{ errorText = "ERR_FILE_INVALID_DATA_TYPE";break;}
-		case -1074395985:
-			{ errorText = "ERR_FILE_OPERATION";break;}
-		case -1074395986:
-			{ errorText = "ERR_FILE_FORMAT";break;}
-		case -1074395987:
-			{ errorText = "ERR_FILE_EOF";break;}
-		case -1074395988:
-			{ errorText = "ERR_FILE_WRITE";break;}
-		case -1074395989:
-			{ errorText = "ERR_FILE_READ";break;}
-		case -1074395990:
-			{ errorText = "ERR_FILE_GET_INFO";break;}
-		case -1074395991:
-			{ errorText = "ERR_FILE_INVALID_TYPE";break;}
-		case -1074395992:
-			{ errorText = "ERR_FILE_PERMISSION";break;}
-		case -1074395993:
-			{ errorText = "ERR_FILE_IO_ERR";break;}
-		case -1074395994:
-			{ errorText = "ERR_FILE_TOO_MANY_OPEN";break;}
-		case -1074395995:
-			{ errorText = "ERR_FILE_NOT_FOUND";break;}
-		case -1074395996:
-			{ errorText = "ERR_FILE_OPEN";break;}
-		case -1074395997:
-			{ errorText = "ERR_FILE_ARGERR";break;}
-		case -1074395998:
-			{ errorText = "ERR_FILE_COLOR_TABLE";break;}
-		case -1074395999:
-			{ errorText = "ERR_FILE_FILE_TYPE";break;}
-		case -1074396000:
-			{ errorText = "ERR_FILE_FILE_HEADER";break;}
-		case -1074396001:
-			{ errorText = "ERR_TOO_MANY_AVI_SESSIONS";break;}
-		case -1074396002:
-			{ errorText = "ERR_INVALID_LINEGAUGEMETHOD";break;}
-		case -1074396003:
-			{ errorText = "ERR_AVI_DATA_EXCEEDS_BUFFER_SIZE";break;}
-		case -1074396004:
-			{ errorText = "ERR_DIRECTX_CERTIFICATION_FAILURE";break;}
-		case -1074396005:
-			{ errorText = "ERR_INVALID_AVI_SESSION";break;}
-		case -1074396006:
-			{ errorText = "ERR_DIRECTX_UNKNOWN_COMPRESSION_FILTER";break;}
-		case -1074396007:
-			{ errorText = "ERR_DIRECTX_INCOMPATIBLE_COMPRESSION_FILTER";break;}
-		case -1074396008:
-			{ errorText = "ERR_DIRECTX_NO_FILTER";break;}
-		case -1074396009:
-			{ errorText = "ERR_DIRECTX";break;}
-		case -1074396010:
-			{ errorText = "ERR_INVALID_FRAME_NUMBER";break;}
-		case -1074396011:
-			{ errorText = "ERR_RPC_BIND";break;}
-		case -1074396012:
-			{ errorText = "ERR_RPC_EXECUTE";break;}
-		case -1074396013:
-			{ errorText = "ERR_INVALID_VIDEO_MODE";break;}
-		case -1074396014:
-			{ errorText = "ERR_INVALID_VIDEO_BLIT";break;}
-		case -1074396015:
-			{ errorText = "ERR_RPC_EXECUTE_IVB";break;}
-		case -1074396016:
-			{ errorText = "ERR_NO_VIDEO_DRIVER";break;}
-		case -1074396017:
-			{ errorText = "ERR_OPENING_NEWER_AIM_GRADING_DATA";break;}
-		case -1074396018:
-			{ errorText = "ERR_INVALID_EDGE_POLARITY_SEARCH_MODE";break;}
-		case -1074396019:
-			{ errorText = "ERR_INVALID_THRESHOLD_PERCENTAGE";break;}
-		case -1074396020:
-			{ errorText = "ERR_INVALID_GRADING_MODE";break;}
-		case -1074396021:
-			{ errorText = "ERR_INVALID_KERNEL_SIZE_FOR_EDGE_DETECTION";break;}
-		case -1074396022:
-			{ errorText = "ERR_INVALID_SEARCH_MODE_FOR_STRAIGHT_EDGE";break;}
-		case -1074396023:
-			{ errorText = "ERR_INVALID_ANGLE_TOL_FOR_STRAIGHT_EDGE";break;}
-		case -1074396024:
-			{ errorText = "ERR_INVALID_MIN_COVERAGE_FOR_STRAIGHT_EDGE";break;}
-		case -1074396025:
-			{ errorText = "ERR_INVALID_ANGLE_RANGE_FOR_STRAIGHT_EDGE";break;}
-		case -1074396026:
-			{ errorText = "ERR_INVALID_PROCESS_TYPE_FOR_EDGE_DETECTION";break;}
-		case -1074396032:
-			{ errorText = "ERR_TEMPLATEDESCRIPTOR_ROTATION_SEARCHSTRATEGY";break;}
-		case -1074396033:
-			{ errorText = "ERR_TEMPLATEDESCRIPTOR_LEARNSETUPDATA";break;}
-		case -1074396034:
-			{ errorText = "ERR_TEMPLATEIMAGE_EDGEINFO";break;}
-		case -1074396035:
-			{ errorText = "ERR_TEMPLATEIMAGE_NOCIRCLE";break;}
-		case -1074396036:
-			{ errorText = "ERR_INVALID_SKELETONMODE";break;}
-		case -1074396037:
-			{ errorText = "ERR_TIMEOUT";break;}
-		case -1074396038:
-			{ errorText = "ERR_FIND_COORDSYS_MORE_THAN_ONE_EDGE";break;}
-		case -1074396039:
-			{ errorText = "ERR_IO_ERROR";break;}
-		case -1074396040:
-			{ errorText = "ERR_DRIVER";break;}
-		case -1074396041:
-			{ errorText = "ERR_INVALID_2D_BARCODE_TYPE";break;}
-		case -1074396042:
-			{ errorText = "ERR_INVALID_2D_BARCODE_CONTRAST";break;}
-		case -1074396043:
-			{ errorText = "ERR_INVALID_2D_BARCODE_CELL_SHAPE";break;}
-		case -1074396044:
-			{ errorText = "ERR_INVALID_2D_BARCODE_SHAPE";break;}
-		case -1074396045:
-			{ errorText = "ERR_INVALID_2D_BARCODE_SUBTYPE";break;}
-		case -1074396046:
-			{ errorText = "ERR_INVALID_2D_BARCODE_CONTRAST_FOR_ROI";break;}
-		case -1074396047:
-			{ errorText = "ERR_INVALID_LINEAR_AVERAGE_MODE";break;}
-		case -1074396048:
-			{ errorText = "ERR_INVALID_CELL_SAMPLE_SIZE";break;}
-		case -1074396049:
-			{ errorText = "ERR_INVALID_MATRIX_POLARITY";break;}
-		case -1074396050:
-			{ errorText = "ERR_INVALID_ECC_TYPE";break;}
-		case -1074396051:
-			{ errorText = "ERR_INVALID_CELL_FILTER_MODE";break;}
-		case -1074396052:
-			{ errorText = "ERR_INVALID_DEMODULATION_MODE";break;}
-		case -1074396053:
-			{ errorText = "ERR_INVALID_BORDER_INTEGRITY";break;}
-		case -1074396054:
-			{ errorText = "ERR_INVALID_CELL_FILL_TYPE";break;}
-		case -1074396055:
-			{ errorText = "ERR_INVALID_ASPECT_RATIO";break;}
-		case -1074396056:
-			{ errorText = "ERR_INVALID_MATRIX_MIRROR_MODE";break;}
-		case -1074396057:
-			{ errorText = "ERR_INVALID_SEARCH_VECTOR_WIDTH";break;}
-		case -1074396058:
-			{ errorText = "ERR_INVALID_ROTATION_MODE";break;}
-		case -1074396059:
-			{ errorText = "ERR_INVALID_MAX_ITERATIONS";break;}
-		case -1074396060:
-			{ errorText = "ERR_JPEG2000_LOSSLESS_WITH_FLOATING_POINT";break;}
-		case -1074396061:
-			{ errorText = "ERR_INVALID_WINDOW_SIZE";break;}
-		case -1074396062:
-			{ errorText = "ERR_INVALID_TOLERANCE";break;}
-		case -1074396063:
-			{ errorText = "ERR_EXTERNAL_ALIGNMENT";break;}
-		case -1074396064:
-			{ errorText = "ERR_EXTERNAL_NOT_SUPPORTED";break;}
-		case -1074396065:
-			{ errorText = "ERR_CANT_RESIZE_EXTERNAL";break;}
-		case -1074396066:
-			{ errorText = "ERR_INVALID_POINTSYMBOL";break;}
-		case -1074396067:
-			{ errorText = "ERR_IMAGES_NOT_DIFF";break;}
-		case -1074396068:
-			{ errorText = "ERR_INVALID_ACTION";break;}
-		case -1074396069:
-			{ errorText = "ERR_INVALID_COLOR_MODE";break;}
-		case -1074396070:
-			{ errorText = "ERR_INVALID_FUNCTION";break;}
-		case -1074396071:
-			{ errorText = "ERR_INVALID_SCAN_DIRECTION";break;}
-		case -1074396072:
-			{ errorText = "ERR_INVALID_BORDER";break;}
-		case -1074396073:
-			{ errorText = "ERR_MASK_OUTSIDE_IMAGE";break;}
-		case -1074396074:
-			{ errorText = "ERR_INCOMP_SIZE";break;}
-		case -1074396075:
-			{ errorText = "ERR_COORD_SYS_SECOND_AXIS";break;}
-		case -1074396076:
-			{ errorText = "ERR_COORD_SYS_FIRST_AXIS";break;}
-		case -1074396077:
-			{ errorText = "ERR_INCOMP_TYPE";break;}
-		case -1074396079:
-			{ errorText = "ERR_INVALID_METAFILE_HANDLE";break;}
-		case -1074396080:
-			{ errorText = "ERR_INVALID_IMAGE_TYPE";break;}
-		case -1074396081:
-			{ errorText = "ERR_BAD_PASSWORD";break;}
-		case -1074396082:
-			{ errorText = "ERR_PALETTE_NOT_SUPPORTED";break;}
-		case -1074396083:
-			{ errorText = "ERR_ROLLBACK_TIMEOUT";break;}
-		case -1074396084:
-			{ errorText = "ERR_ROLLBACK_DELETE_TIMER";break;}
-		case -1074396085:
-			{ errorText = "ERR_ROLLBACK_INIT_TIMER";break;}
-		case -1074396086:
-			{ errorText = "ERR_ROLLBACK_START_TIMER";break;}
-		case -1074396087:
-			{ errorText = "ERR_ROLLBACK_STOP_TIMER";break;}
-		case -1074396088:
-			{ errorText = "ERR_ROLLBACK_RESIZE";break;}
-		case -1074396089:
-			{ errorText = "ERR_ROLLBACK_RESOURCE_REINITIALIZE";break;}
-		case -1074396090:
-			{ errorText = "ERR_ROLLBACK_RESOURCE_ENABLED";break;}
-		case -1074396091:
-			{ errorText = "ERR_ROLLBACK_RESOURCE_UNINITIALIZED_ENABLE";break;}
-		case -1074396092:
-			{ errorText = "ERR_ROLLBACK_RESOURCE_NON_EMPTY_INITIALIZE";break;}
-		case -1074396093:
-			{ errorText = "ERR_ROLLBACK_RESOURCE_LOCKED";break;}
-		case -1074396094:
-			{ errorText = "ERR_ROLLBACK_RESOURCE_CANNOT_UNLOCK";break;}
-		case -1074396095:
-			{ errorText = "ERR_CALIBRATION_DUPLICATE_REFERENCE_POINT";break;}
-		case -1074396096:
-			{ errorText = "ERR_NOT_AN_OBJECT";break;}
-		case -1074396097:
-			{ errorText = "ERR_INVALID_PARTICLE_PARAMETER_VALUE";break;}
-		case -1074396098:
-			{ errorText = "ERR_RESERVED_MUST_BE_NULL";break;}
-		case -1074396099:
-			{ errorText = "ERR_CALIBRATION_INFO_SIMPLE_TRANSFORM";break;}
-		case -1074396100:
-			{ errorText = "ERR_CALIBRATION_INFO_PERSPECTIVE_PROJECTION";break;}
-		case -1074396101:
-			{ errorText = "ERR_CALIBRATION_INFO_MICRO_PLANE";break;}
-		case -1074396102:
-			{ errorText = "ERR_CALIBRATION_INFO_6";break;}
-		case -1074396103:
-			{ errorText = "ERR_CALIBRATION_INFO_5";break;}
-		case -1074396104:
-			{ errorText = "ERR_CALIBRATION_INFO_4";break;}
-		case -1074396105:
-			{ errorText = "ERR_CALIBRATION_INFO_3";break;}
-		case -1074396106:
-			{ errorText = "ERR_CALIBRATION_INFO_2";break;}
-		case -1074396107:
-			{ errorText = "ERR_CALIBRATION_INFO_1";break;}
-		case -1074396108:
-			{ errorText = "ERR_CALIBRATION_ERRORMAP";break;}
-		case -1074396109:
-			{ errorText = "ERR_CALIBRATION_INVALID_SCALING_FACTOR";break;}
-		case -1074396110:
-			{ errorText = "ERR_CALIBRATION_INFO_VERSION";break;}
-		case -1074396111:
-			{ errorText = "ERR_CALIBRATION_FAILED_TO_FIND_GRID";break;}
-		case -1074396112:
-			{ errorText = "ERR_INCOMP_MATRIX_SIZE";break;}
-		case -1074396113:
-			{ errorText = "ERR_CALIBRATION_IMAGE_UNCALIBRATED";break;}
-		case -1074396114:
-			{ errorText = "ERR_CALIBRATION_INVALID_ROI";break;}
-		case -1074396115:
-			{ errorText = "ERR_CALIBRATION_IMAGE_CORRECTED";break;}
-		case -1074396116:
-			{ errorText = "ERR_CALIBRATION_INSF_POINTS";break;}
-		case -1074396117:
-			{ errorText = "ERR_MATRIX_SIZE";break;}
-		case -1074396118:
-			{ errorText = "ERR_INVALID_STEP_SIZE";break;}
-		case -1074396119:
-			{ errorText = "ERR_CUSTOMDATA_INVALID_KEY";break;}
-		case -1074396120:
-			{ errorText = "ERR_NOT_IMAGE";break;}
-		case -1074396121:
-			{ errorText = "ERR_SATURATION_THRESHOLD_OUT_OF_RANGE";break;}
-		case -1074396122:
-			{ errorText = "ERR_DRAWTEXT_COLOR_MUST_BE_GRAYSCALE";break;}
-		case -1074396123:
-			{ errorText = "ERR_INVALID_CALIBRATION_MODE";break;}
-		case -1074396124:
-			{ errorText = "ERR_INVALID_CALIBRATION_ROI_MODE";break;}
-		case -1074396125:
-			{ errorText = "ERR_INVALID_CONTRAST_THRESHOLD";break;}
-		case -1074396126:
-			{ errorText = "ERR_ROLLBACK_RESOURCE_CONFLICT_1";break;}
-		case -1074396127:
-			{ errorText = "ERR_ROLLBACK_RESOURCE_CONFLICT_2";break;}
-		case -1074396128:
-			{ errorText = "ERR_ROLLBACK_RESOURCE_CONFLICT_3";break;}
-		case -1074396129:
-			{ errorText = "ERR_ROLLBACK_UNBOUNDED_INTERFACE";break;}
-		case -1074396130:
-			{ errorText = "ERR_NOT_RECT_OR_ROTATED_RECT";break;}
-		case -1074396132:
-			{ errorText = "ERR_MASK_NOT_TEMPLATE_SIZE";break;}
-		case -1074396133:
-			{ errorText = "ERR_THREAD_COULD_NOT_INITIALIZE";break;}
-		case -1074396134:
-			{ errorText = "ERR_THREAD_INITIALIZING";break;}
-		case -1074396135:
-			{ errorText = "ERR_INVALID_BUTTON_LABEL";break;}
-		case -1074396136:
-			{ errorText = "ERR_DIRECTX_INVALID_FILTER_QUALITY";break;}
-		case -1074396137:
-			{ errorText = "ERR_DIRECTX_DLL_NOT_FOUND";break;}
-		case -1074396138:
-			{ errorText = "ERR_ROLLBACK_NOT_SUPPORTED";break;}
-		case -1074396139:
-			{ errorText = "ERR_ROLLBACK_RESOURCE_OUT_OF_MEMORY";break;}
-		case -1074396140:
-			{ errorText = "ERR_BARCODE_CODE128_SET";break;}
-		case -1074396141:
-			{ errorText = "ERR_BARCODE_CODE128_FNC";break;}
-		case -1074396142:
-			{ errorText = "ERR_BARCODE_INVALID";break;}
-		case -1074396143:
-			{ errorText = "ERR_BARCODE_TYPE";break;}
-		case -1074396144:
-			{ errorText = "ERR_BARCODE_CODE93_SHIFT";break;}
-		case -1074396145:
-			{ errorText = "ERR_BARCODE_UPCA";break;}
-		case -1074396146:
-			{ errorText = "ERR_BARCODE_MSI";break;}
-		case -1074396147:
-			{ errorText = "ERR_BARCODE_I25";break;}
-		case -1074396148:
-			{ errorText = "ERR_BARCODE_EAN13";break;}
-		case -1074396149:
-			{ errorText = "ERR_BARCODE_EAN8";break;}
-		case -1074396150:
-			{ errorText = "ERR_BARCODE_CODE128";break;}
-		case -1074396151:
-			{ errorText = "ERR_BARCODE_CODE93";break;}
-		case -1074396152:
-			{ errorText = "ERR_BARCODE_CODE39";break;}
-		case -1074396153:
-			{ errorText = "ERR_BARCODE_CODABAR";break;}
-		case -1074396154:
-			{ errorText = "ERR_IMAGE_TOO_SMALL";break;}
-		case -1074396155:
-			{ errorText = "ERR_UNINIT";break;}
-		case -1074396156:
-			{ errorText = "ERR_NEED_FULL_VERSION";break;}
-		case -1074396157:
-			{ errorText = "ERR_UNREGISTERED";break;}
-		case -1074396158:
-			{ errorText = "ERR_MEMORY_ERROR";break;}
-		case -1074396159:
-			{ errorText = "ERR_OUT_OF_MEMORY";break;}
-		case -1074396160:
-			{ errorText = "ERR_SYSTEM_ERROR";break;}
-		case 0:
-			{ errorText = "ERR_SUCCESS";break;}
-		// end National Instruments defined errors
-			
-		// begin BAE defined errors
-		case ERR_VISION_GENERAL_ERROR:
-			{ errorText = "ERR_VISION_GENERAL_ERROR";break;}
-		case ERR_COLOR_NOT_FOUND:
-			{ errorText = "ERR_COLOR_NOT_FOUND";break;}
-		case ERR_PARTICLE_TOO_SMALL:
-			{ errorText = "ERR_PARTICLE_TOO_SMALL";break;}
-		case ERR_CAMERA_FAILURE:
-			{ errorText = "ERR_CAMERA_FAILURE";break;}
-		case ERR_CAMERA_SOCKET_CREATE_FAILED:
-			{ errorText = "ERR_CAMERA_SOCKET_CREATE_FAILED";break;}
-		case ERR_CAMERA_CONNECT_FAILED:
-			{ errorText = "ERR_CAMERA_CONNECT_FAILED";break;}
-		case ERR_CAMERA_STALE_IMAGE:
-			{ errorText = "ERR_CAMERA_STALE_IMAGE";break;}
-		case ERR_CAMERA_NOT_INITIALIZED:
-			{ errorText = "ERR_CAMERA_NOT_INITIALIZED";break;}
-		case ERR_CAMERA_NO_BUFFER_AVAILABLE:
-			{ errorText = "ERR_CAMERA_NO_BUFFER_AVAILABLE";break;}
-		case ERR_CAMERA_HEADER_ERROR:
-			{ errorText = "ERR_CAMERA_HEADER_ERROR";break;}
-		case ERR_CAMERA_BLOCKING_TIMEOUT:
-			{ errorText = "ERR_CAMERA_BLOCKING_TIMEOUT";break;}
-		case ERR_CAMERA_AUTHORIZATION_FAILED:
-			{ errorText = "ERR_CAMERA_AUTHORIZATION_FAILED";break;}
-		case ERR_CAMERA_TASK_SPAWN_FAILED:
-			{ errorText = "ERR_CAMERA_TASK_SPAWN_FAILED";break;}
-		case ERR_CAMERA_TASK_INPUT_OUT_OF_RANGE:
-			{ errorText = "ERR_CAMERA_TASK_INPUT_OUT_OF_RANGE";break;}
-		case ERR_CAMERA_COMMAND_FAILURE:
-			{ errorText = "ERR_CAMERA_COMMAND_FAILURE";break;}
-	}
-	
-	return errorText;
-}
-
-
-
diff --git a/aos/externals/WPILib/WPILib/Vision2009/FrcError.h b/aos/externals/WPILib/WPILib/Vision2009/FrcError.h
deleted file mode 100644
index 34b0b01..0000000
--- a/aos/externals/WPILib/WPILib/Vision2009/FrcError.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/********************************************************************************
-*  Project   		: FIRST Motor Controller
-*  File Name  		: FrcError.h          
-*  Contributors   	: JDG, ELF
-*  Creation Date 	: August 12, 2008
-*  Revision History	: Source code & revision history maintained at sourceforge.WPI.edu      
-*  File Description	: Error handling values for C routines
-*/
-/*----------------------------------------------------------------------------*/
-/*        Copyright (c) FIRST 2008.  All Rights Reserved.                     */
-/*     Open Source Software - may be modified and shared by FRC teams.        */
-/*   Must be accompanied by the BSD license file in $(WIND_BASE)/WPILib.      */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __FRCERROR_H__
-#define __FRCERROR_H__
-
-/* Error Codes */
-#define ERR_VISION_GENERAL_ERROR			166000	// 
-#define ERR_COLOR_NOT_FOUND					166100	// TrackAPI.cpp
-#define ERR_PARTICLE_TOO_SMALL				166101	// TrackAPI.cpp
-
-#define ERR_CAMERA_FAILURE					166200	// AxisCamera.cpp
-#define ERR_CAMERA_SOCKET_CREATE_FAILED		166201	// AxisCamera.cpp
-#define ERR_CAMERA_CONNECT_FAILED			166202	// AxisCamera.cpp
-#define ERR_CAMERA_STALE_IMAGE				166203	// AxisCamera.cpp
-#define ERR_CAMERA_NOT_INITIALIZED			166204	// AxisCamera.cpp
-#define ERR_CAMERA_NO_BUFFER_AVAILABLE		166205	// AxisCamera.cpp
-#define ERR_CAMERA_HEADER_ERROR				166206	// AxisCamera.cpp
-#define ERR_CAMERA_BLOCKING_TIMEOUT			166207	// AxisCamera.cpp
-#define ERR_CAMERA_AUTHORIZATION_FAILED		166208	// AxisCamera.cpp
-#define ERR_CAMERA_TASK_SPAWN_FAILED		166209	// AxisCamera.cpp
-#define ERR_CAMERA_TASK_INPUT_OUT_OF_RANGE	166210	// AxisCamera.cpp
-#define ERR_CAMERA_COMMAND_FAILURE			166211	// AxisCamera.cpp
-
-/* error handling functions */
-int GetLastVisionError();
-const char* GetVisionErrorText(int errorCode);
-
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Vision2009/TrackAPI.cpp b/aos/externals/WPILib/WPILib/Vision2009/TrackAPI.cpp
deleted file mode 100644
index 1bc594a..0000000
--- a/aos/externals/WPILib/WPILib/Vision2009/TrackAPI.cpp
+++ /dev/null
@@ -1,481 +0,0 @@
-/********************************************************************************
-*  Project   		: FIRST Motor Controller
-*  File Name  		: TrackAPI.cpp        
-*  Contributors   	: ELF, DWD
-*  Creation Date 	: August 10, 2008
-*  Revision History	: Source code & revision history maintained at sourceforge.WPI.edu   
-*  File Description	: Tracking Routines for FIRST Vision API
-*/ 
-/*----------------------------------------------------------------------------*/
-/*        Copyright (c) FIRST 2008.  All Rights Reserved.                     */
-/*  Open Source Software - may be modified and shared by FRC teams. The code  */
-/*  must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
-/*----------------------------------------------------------------------------*/
-
-#include "string.h"
-#include "vxWorks.h" 
-
-#include "AxisCamera.h" 
-#include "FrcError.h"
-#include "TrackAPI.h" 
-#include "VisionAPI.h" 
-
-int TrackAPI_debugFlag = 0;
-#define DPRINTF if(TrackAPI_debugFlag)dprintf
-
-/**
-* @brief Find the largest particle that meets a criteria 
-* @param binaryImage Image to inspect
-* @param rect area to search
-* @return 0 = error
-*/
-bool InArea(Image* binaryImage, int particleIndex, Rect rect)
-{ 
-	double position;
-	
-	imaqMeasureParticle(binaryImage, particleIndex, 0, 
-			IMAQ_MT_BOUNDING_RECT_LEFT, &position);
-	if ( position < (rect.left             ) ) return false; // outside left of rectangle?
-	
-	imaqMeasureParticle(binaryImage, particleIndex, 0, 
-			IMAQ_MT_BOUNDING_RECT_TOP, &position);
-	if ( position < (rect.top              ) ) return false; // outside top of rectangle ?
-
-	imaqMeasureParticle(binaryImage, particleIndex, 0, 
-			IMAQ_MT_BOUNDING_RECT_RIGHT, &position);
-	if (position > (rect.left + rect.width) ) return false;	// outside right of rectangle ?
-	
-	imaqMeasureParticle(binaryImage, particleIndex, 0, 
-			IMAQ_MT_BOUNDING_RECT_BOTTOM, &position);
-	if (position > (rect.top + rect.height) ) return false; // outside bottom of rectangle ?	
-
-	DPRINTF(LOG_INFO, "particle %i is in (%i %i) height %i width %i\n", 
-			particleIndex, rect.left, rect.top, rect.height, rect.width);
-	return true; 
-}
-
-/**
-* @brief Find the largest particle that meets a criteria 
-* @param binaryImage Image to inspect
-* @param largestParticleIndex Index of the largest particle 
-* @param rect area to search
-* @return 0 = error
-*/
-int GetLargestParticle(Image* binaryImage, int* largestParticleIndex)
-{ return GetLargestParticle(binaryImage, largestParticleIndex, IMAQ_NO_RECT); }
-
-int GetLargestParticle(Image* binaryImage, int* largestParticleIndex, Rect rect)
-{
-	*largestParticleIndex = 0; // points to caller-provided variable
-	
-	/* determine number of particles in thresholded image */	
-	int numParticles;
-	int success = frcCountParticles(binaryImage, &numParticles);
-	if ( !success )	{  return success; 	}			
-	
-	/* if no particles found we can quit here */
-	if (numParticles == 0)  {  return 0; 	}  // unsuccessful if zero particles found
-	
-	// find the largest particle
-	double largestParticleArea = 0;
-	double particleArea;
-	for (int i = 0; i < numParticles; ++i) {		
-		success = imaqMeasureParticle(binaryImage, i, 0, IMAQ_MT_AREA, &particleArea);
-		if ( !success )	{ return success; }		
-		if (particleArea > largestParticleArea) 	{
-			// see if is in the right area
-			if ( InArea(binaryImage, i, rect) ) {
-				largestParticleArea = particleArea;
-				*largestParticleIndex = i;  // return index to caller
-			}
-		}
-	}
-	
-	return success;
-}
-
-/**
-* @brief Search for a color. Supports IMAQ_IMAGE_HSL. 
-* @param color Definition for the hue range 
-* @param trackReport Values for tracking: center of particle, particle size, color
-* @return 0 = error
-*/
-int FindColor(FrcHue color, ParticleAnalysisReport* trackReport)
-{
-	int success = 0;		// return: 0 = error
-	
-	/* track color */
-	// use ACTIVE_LIGHT or WHITE_LIGHT for brightly lit objects
-	TrackingThreshold td = GetTrackingData(color, PASSIVE_LIGHT);
-
-	success = FindColor(IMAQ_HSL, &td.hue, &td.saturation, &td.luminance, trackReport); 
-	if ( !success )	{ 
-		DPRINTF (LOG_INFO, "did not find color - errorCode= %i",GetLastVisionError());	
-		return success;
-	}
-
-	//PrintReport(par);
-	
-	/* set an image quality restriction */
-	if (trackReport->particleToImagePercent < PARTICLE_TO_IMAGE_PERCENT) {
-		imaqSetError(ERR_PARTICLE_TOO_SMALL, __FUNCTION__);
-		success = 0;
-	}	
-	return success;
-}
-
-/**
-* @brief Search for a color. Supports IMAQ_IMAGE_HSL. 
-* @param hueRange The range for the first plane
-* @param trackReport Values for tracking: center of particle, particle size, color
-* @return 0 = error
-*/
-int FindColor(const Range* hueRange, ParticleAnalysisReport *trackReport)
-{ return FindColor(hueRange, DEFAULT_SATURATION_THRESHOLD, trackReport); }
-
-/**
-* @brief Search for a color. Supports IMAQ_IMAGE_HSL. 
-* @param hueRange The range for the first plane
-* @param minSaturation The lower range saturation
-* @param trackReport Values for tracking: center of particle, particle size, color
-* @return 0 = error
-*/
-int FindColor(const Range* hueRange, int minSaturation, ParticleAnalysisReport *trackReport)
-{
-	Range satRange;
-	satRange.minValue = minSaturation;
-	satRange.maxValue = 255;
-	Range lumRange;
-	lumRange.minValue = 0;
-	lumRange.maxValue = 255;
-	ColorMode cmode = IMAQ_HSL;
-	return FindColor(cmode, hueRange, &satRange, &lumRange, trackReport);
-}
-
-/**
-* @brief Search for a color. Supports IMAQ_IMAGE_HSL and IMAQ_IMAGE_RGB. 
-* @param mode Color mode, either IMAQ_HSL or IMAQ_RGB
-* @param plane1Range The range for the first plane (hue or red)
-* @param plane2Range The range for the second plane (saturation or green)
-* @param plane3Range The range for the third plane (luminance or blue)
-* @param trackReport Values for tracking: center of particle, particle size, etc
-* @return 0 = error
-*/
-int FindColor(ColorMode mode, const Range* plane1Range, const Range* plane2Range, 
-		const Range* plane3Range, ParticleAnalysisReport *trackReport)
-{
-	return FindColor(mode, plane1Range, plane2Range, plane3Range, trackReport, NULL);
-}
-
-/**
-* @brief Search for a color. Supports IMAQ_IMAGE_HSL and IMAQ_IMAGE_RGB. 
-* @param mode Color mode, either IMAQ_HSL or IMAQ_RGB
-* @param plane1Range The range for the first plane (hue or red)
-* @param plane2Range The range for the second plane (saturation or green)
-* @param plane3Range The range for the third plane (luminance or blue)
-* @param trackReport Values for tracking: center of particle, particle size, etc
-* @param colorReport Color charactaristics of the particle
-* @return 0 = error
-*/
-int FindColor(ColorMode mode, const Range* plane1Range, const Range* plane2Range, 
-		const Range* plane3Range, ParticleAnalysisReport *trackReport, 
-		ColorReport *colorReport)
-{
-	return FindColor(mode, plane1Range, plane2Range, plane3Range, trackReport, 
-			NULL, IMAQ_NO_RECT);
-}
-
-/**
-* @brief Search for a color. Supports IMAQ_IMAGE_HSL and IMAQ_IMAGE_RGB. 
-* @param mode Color mode, either IMAQ_HSL or IMAQ_RGB
-* @param plane1Range The range for the first plane (hue or red)
-* @param plane2Range The range for the second plane (saturation or green)
-* @param plane3Range The range for the third plane (luminance or blue)
-* @param trackReport Values for tracking: center of particle, particle size, etc
-* @param colorReport Color charactaristics of the particle
-* @param rect Rectangle to confine search to
-* @return 0 = error
-*/
-int FindColor(ColorMode mode, const Range* plane1Range, const Range* plane2Range, 
-		const Range* plane3Range, ParticleAnalysisReport *trackReport, 
-		ColorReport *colorReport, Rect rect)
-{
-	int errorCode = 0;
-	int success = 0;
-	
-	/* create an image object */
-	Image* cameraImage = frcCreateImage(IMAQ_IMAGE_HSL);
-	if (!cameraImage)  { return success; }
-	
-	/* get image from camera - if the camera has not finished initializing,
-	 * this will fail 
-	 */
-	double imageTime;
-	success = GetImage(cameraImage, &imageTime);
-	if (!success){
-		DPRINTF(LOG_INFO, "No camera Image available Error = %i %s", 
-				errorCode, GetVisionErrorText(errorCode));
-		frcDispose(cameraImage); 
-		imaqSetError(errorCode, __FUNCTION__);	//reset error code for the caller	
-		return success;		
-	}	
-	
-	/* save a copy of the image to another image for color thresholding later */
-	Image* histImage = frcCreateImage(IMAQ_IMAGE_HSL);
-	if (!histImage)  { frcDispose(cameraImage); return success; }
-	success = frcCopyImage(histImage,cameraImage);
-	if ( !success )	{ 
-		errorCode = GetLastVisionError(); 
-		frcDispose(__FUNCTION__,cameraImage,histImage,NULL); 
-		return success; 
-	}	
-	
-	/* Color threshold the image */
-	success = frcColorThreshold(cameraImage, cameraImage, mode, plane1Range, plane2Range, plane3Range);
-	if ( !success )	{ 
-		errorCode = GetLastVisionError(); 
-		DPRINTF (LOG_DEBUG, "Error = %i  %s ", errorCode, GetVisionErrorText(errorCode));
-		frcDispose(__FUNCTION__,cameraImage,histImage,NULL); 
-		return success; 
-	}	
-
-	int largestParticleIndex = 0;
-	success = GetLargestParticle(cameraImage, &largestParticleIndex, rect );
-	if ( !success )	{
-		errorCode = GetLastVisionError(); 
-		DPRINTF (LOG_DEBUG, "Error after GetLargestParticle = %i  %s ", errorCode, GetVisionErrorText(errorCode));
-		frcDispose(__FUNCTION__,cameraImage,histImage,NULL); 
-		imaqSetError(ERR_COLOR_NOT_FOUND, __FUNCTION__);
-		return success; 
-	}
-	DPRINTF(LOG_INFO, "largestParticleIndex = %i\n", largestParticleIndex);
-
-	/* Particles were found  */
-		/* 
-		 * Fill in report information for largest particle found
-		 */
-		success = frcParticleAnalysis(cameraImage, largestParticleIndex, trackReport);
-		trackReport->imageTimestamp = imageTime;
-		
-		/* clean up */
-		if (!success) {frcDispose(__FUNCTION__,cameraImage,histImage,NULL); return success;}
-		
-		/* particle color statistics */
-		/* only if a color report requested */
-		if (colorReport != NULL)
-		{
-			/* first filter out the other particles */
-			ParticleFilterCriteria2 criteria;
-			ParticleFilterOptions* options = NULL;
-			Rect rect;
-			int numParticles;
-			success = frcParticleFilter(cameraImage, cameraImage, &criteria, 1, options, 
-					rect, &numParticles);
-			if ( !success )	{ 
-				DPRINTF(LOG_INFO, "frcParticleFilter errorCode %i", GetLastVisionError()); 
-			}	
-					
-			/* histogram the original image using the thresholded image as a mask */
-			int numClasses = 10; //how many classes?
-			ColorHistogramReport* chrep = imaqColorHistogram2(histImage, numClasses, IMAQ_HSL, 
-						NULL, cameraImage);
-			if (chrep == NULL) { 
-				DPRINTF(LOG_INFO, "NULL Color Histogram");
-				errorCode = GetLastVisionError(); 
-			} else {
-				colorReport->particleHueMax = chrep->plane1.max;
-				colorReport->particleHueMin = chrep->plane1.min;
-				colorReport->particleHueMean = chrep->plane1.mean;
-				colorReport->particleSatMax = chrep->plane2.max;
-				colorReport->particleSatMin  = chrep->plane2.min;
-				colorReport->particleSatMean = chrep->plane2.mean;
-				colorReport->particleLumMax = chrep->plane3.max;
-				colorReport->particleLumMin = chrep->plane3.min;
-				colorReport->particleLumMean = chrep->plane3.mean;
-				colorReport->numberParticlesFound = numParticles;
-				frcDispose(chrep); 
-			}
-		}
-
-	/* clean up */
-	frcDispose(__FUNCTION__,cameraImage,histImage,NULL); 
-	
-	return success;	
-}
-
-
-/**
- *   Data functions for tracking
- */
-
-
-/**
- * @brief Get default HSL tracking parameters
- * Note these parameters are not fully characterized at this point
- * Get these default values and modify them as needed for your environment
- * @param hue tasked color
- * @param light saturation/luminance
- */
-TrackingThreshold GetTrackingData(FrcHue hue, FrcLight light)
-{
-	TrackingThreshold trackingData;	
-	
-	//set saturation & luminance	
-	switch (light) {
-		default:
-		case FLUORESCENT:
-			trackingData.saturation.minValue = 100;
-			trackingData.saturation.maxValue = 255;
-			trackingData.luminance.minValue = 40;
-			trackingData.luminance.maxValue = 255;
-			if (hue == GREEN) trackingData.luminance.minValue = 100;
-			if (hue == PINK) trackingData.saturation.minValue = 80;
-			if (hue == PINK) trackingData.luminance.minValue = 60;
-			if (hue == PINK) trackingData.luminance.maxValue = 155;
-			break;
-		case PASSIVE_LIGHT:
-			trackingData.saturation.minValue = 50;
-			trackingData.saturation.maxValue = 255;
-			trackingData.luminance.minValue = 20;
-			trackingData.luminance.maxValue = 255;
-			break;
-		case BRIGHT_LIGHT:
-			trackingData.saturation.minValue = 0;
-			trackingData.saturation.maxValue = 100;
-			trackingData.luminance.minValue = 100;
-			trackingData.luminance.maxValue = 255;
-			break;
-		case ACTIVE_LIGHT:
-			trackingData.saturation.minValue = 0;
-			trackingData.saturation.maxValue = 50;
-			trackingData.luminance.minValue = 150;
-			trackingData.luminance.maxValue = 255;
-			break;
-		case WHITE_LIGHT:
-			trackingData.saturation.minValue = 0;
-			trackingData.saturation.maxValue = 20;
-			trackingData.luminance.minValue = 200;
-			trackingData.luminance.maxValue = 255;
-			break;
-	}
-	
-	//set hue
-	switch (hue){
-	default:
-	case WHITE:
-		strcpy (trackingData.name, "WHITE");
-		trackingData.hue.minValue = 0;
-		trackingData.hue.maxValue = 255;
-		break;
-	case ORANGE:
-		strcpy (trackingData.name, "ORANGE");
-		trackingData.hue.minValue = 5;
-		trackingData.hue.maxValue = 25;
-		break;
-	case YELLOW:
-		strcpy (trackingData.name, "YELLOW");
-		trackingData.hue.minValue = 30;
-		trackingData.hue.maxValue = 50;
-		break;
-	case GREEN:
-		strcpy (trackingData.name, "GREEN");
-		if (light == FLUORESCENT) {
-			trackingData.hue.minValue = 60;
-			trackingData.hue.maxValue = 110;
-		} else {
-			trackingData.hue.minValue = 90;
-			trackingData.hue.maxValue = 125;			
-		}
-		break;
-	case BLUE:
-		strcpy (trackingData.name, "BLUE");
-		trackingData.hue.minValue = 140;
-		trackingData.hue.maxValue = 170;
-		break;
-	case PURPLE:
-		strcpy (trackingData.name, "PURPLE");
-		trackingData.hue.minValue = 180;
-		trackingData.hue.maxValue = 200;
-		break;
-	case PINK:
-		strcpy (trackingData.name, "PINK");
-		trackingData.hue.minValue = 210;
-		trackingData.hue.maxValue = 250;
-		break;
-	case RED:
-		strcpy (trackingData.name, "RED");
-		trackingData.hue.minValue = 240;
-		trackingData.hue.maxValue = 255;
-		break;
-	}
-  return(trackingData);
-}
-
-
-/**
- * Print particle analysis report
- * @param myReport Report to print
- */
-void PrintReport(ParticleAnalysisReport* myReport)
-{
-	dprintf(LOG_INFO, "particle analysis:\n    %s%i  %s%i\n    %s%lf\n    %s%i  %s%i\n    %s%g  %s%g\n    %s%g\n    %s%i  %s%i\n    %s%i  %s%i\n",
-			"imageHeight = ", myReport->imageHeight, 
-			"imageWidth = ", myReport->imageWidth, 
-			"imageTimestamp = ", myReport->imageTimestamp, 
-			"center_mass_x = ", myReport->center_mass_x, 
-			"center_mass_y = ", myReport->center_mass_y, 
-			"center_mass_x_normalized = ", myReport->center_mass_x_normalized, 
-			"center_mass_y_normalized = ", myReport->center_mass_y_normalized, 
-			"particleArea = ", myReport->particleArea, 
-			"boundingRectangleTop = ", myReport->boundingRect.top, 
-			"boundingRectangleLeft = ", myReport->boundingRect.left,
-			"boundingRectangleHeight = ", myReport->boundingRect.height, 
-			"boundingRectangleWidth = ", myReport->boundingRect.width);
-
-	dprintf(LOG_INFO, "quality statistics:  \n    %s%g %s%g \n",
-			"particleToImagePercent = ", myReport->particleToImagePercent, 
-			"particleQuality = ", myReport->particleQuality);
-}
-
-/**
- * Print color report
- * @param myReport Report to print
- */
-void PrintReport(ColorReport* myReport)
-{
-	dprintf(LOG_INFO, "particle ranges for %i particles:     ",
-			"numberParticlesFound = ", myReport->numberParticlesFound);
-	;
-	dprintf(LOG_INFO, "\n    %s%f  %s%f  %s%f\n    %s%f %s%f  %s%f\n    %s%f  %s%f  %s%f\n -------",
-			"particleHueMax = ", myReport->particleHueMax, 
-			"particleHueMin = ", myReport->particleHueMin, 
-			"particleHueMean = ", myReport->particleHueMean,
-			"particleSatMax = ", myReport->particleSatMax, 
-			"particleSatMin = ", myReport->particleSatMin, 
-			"particleSatMean = ", myReport->particleSatMean,
-			"particleLumMax = ", myReport->particleLumMax, 
-			"particleLumMin = ", myReport->particleLumMin, 
-			"particleLumMean = ", myReport->particleLumMean);
-
-}
-
-/**
- * Print color report
- * @param myReport Report to print
- */
-void PrintReport(TrackingThreshold* myReport)
-{
-	dprintf(LOG_INFO, "name of color: %s", myReport->name);
-
-	dprintf(LOG_INFO, "\n    %s%i  %s%i\n    %s%i %s%i\n    %s%i  %s%i\n -------",
-			"hueMin = ", myReport->hue.minValue, 
-			"hueMax = ", myReport->hue.maxValue, 
-			"satMin = ", myReport->saturation.minValue, 
-			"satMax = ", myReport->saturation.maxValue, 
-			"lumMin = ", myReport->luminance.minValue, 
-			"lumMax = ", myReport->luminance.maxValue );
-
-}
-
-
-
diff --git a/aos/externals/WPILib/WPILib/Vision2009/TrackAPI.h b/aos/externals/WPILib/WPILib/Vision2009/TrackAPI.h
deleted file mode 100644
index 2f72d66..0000000
--- a/aos/externals/WPILib/WPILib/Vision2009/TrackAPI.h
+++ /dev/null
@@ -1,74 +0,0 @@
-/********************************************************************************
-*  Project   		: FIRST Motor Controller
-*  File Name  		: TrackAPI.h          
-*  Contributors   	: ELF
-*  Creation Date 	: August 12, 2008
-*  Revision History	: Source code & revision history maintained at sourceforge.WPI.edu    
-*  File Description	: Globally defined values for the FIRST Vision API
-*/
-/*----------------------------------------------------------------------------*/
-/*        Copyright (c) FIRST 2008.  All Rights Reserved.                     */
-/*  Open Source Software - may be modified and shared by FRC teams. The code  */
-/*  must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __TRACKAPI_H__
-#define __TRACKAPI_H__
-
-#include "VisionAPI.h"
-#include "BaeUtilities.h"
-
-/*  Constants */
-/** image quality requirement: particle must be this % of pixels 
- * For instance, a 320x240 image has 76800 pixels. With this 
- * tolerance at .01, the image must be 768 pixels.
- * Use a percentage instead of a fixed # of pixels so different
- * image sizes will work the same way */
-#define PARTICLE_TO_IMAGE_PERCENT 0.01
-
-/*  Structures */
-typedef struct TrackingThreshold_struct {
-	char name[64];
-	Range hue;
-	Range saturation;
-	Range luminance;
-} TrackingThreshold;
-		
-/*  Enumerated Types */
-
-/** Predefined hues */
-typedef enum FrcHue_enum { 
-	// Basic colors
-	RED, GREEN, BLUE, YELLOW, ORANGE, PURPLE, WHITE, PINK
-}FrcHue;
-
-/** Predefined saturation / luminance settings */
-typedef enum FrcLight_enum { 
-	PASSIVE_LIGHT, BRIGHT_LIGHT, ACTIVE_LIGHT, WHITE_LIGHT, FLUORESCENT
-}FrcLight;
-	
-/* color tracking support functions */
-TrackingThreshold GetTrackingData(FrcHue hue, FrcLight light);
-
-void PrintReport(ParticleAnalysisReport* myReport);
-void PrintReport(ColorReport* myReport);
-void PrintReport(TrackingThreshold* myReport);
-
-/*  Tracking functions */
-
-/* find a color in current camera image */
-bool InArea(Image* binaryImage, int particleIndex, Rect rect);
-int GetLargestParticle(Image* binaryImage, int* particleNum);
-int GetLargestParticle(Image* binaryImage, int* particleNum, Rect rect);
-int FindColor(FrcHue color, ParticleAnalysisReport* trackReport);
-int FindColor(const Range* hueRange, ParticleAnalysisReport *trackReport);
-int FindColor(const Range* hueRange, int minSaturation, ParticleAnalysisReport *trackReport);
-int FindColor(ColorMode mode, const Range* plane1Range, const Range* plane2Range, 
-		const Range* plane3Range, ParticleAnalysisReport *trackReport);
-int FindColor(ColorMode mode, const Range* plane1Range, const Range* plane2Range, 
-		const Range* plane3Range, ParticleAnalysisReport *trackReport, ColorReport *colorReport);
-int FindColor(ColorMode mode, const Range* plane1Range, const Range* plane2Range, 
-		const Range* plane3Range, ParticleAnalysisReport *trackReport, 
-		ColorReport *colorReport, Rect rect);
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/Vision2009/VisionAPI.cpp b/aos/externals/WPILib/WPILib/Vision2009/VisionAPI.cpp
deleted file mode 100644
index f511b39..0000000
--- a/aos/externals/WPILib/WPILib/Vision2009/VisionAPI.cpp
+++ /dev/null
@@ -1,676 +0,0 @@
-/********************************************************************************
-*  Project   		: FIRST Motor Controller
-*  File Name  		: VisionAPI.cpp        
-*  Contributors   	: ELF, EMF
-*  Creation Date 	: June 26, 2008
-*  Revision History	: Source code & revision history maintained at sourceforge.WPI.edu   
-*  File Description	: C Routines for FIRST Vision API. Open source API developed 
-*    by BAE Systems to interface with the National Instruments vision C library
-*    in the nivision.out module. The published interface to nivision.out is in
-*    the header file nivision.h and documented in the NIVisionCVI.chm help file.
-*/ 
-/*----------------------------------------------------------------------------*/
-/*        Copyright (c) FIRST 2008.  All Rights Reserved.                     */
-/*  Open Source Software - may be modified and shared by FRC teams. The code  */
-/*  must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
-/*----------------------------------------------------------------------------*/
-
-#include "stdioLib.h" 
-#include "vxWorks.h" 
-
-#include "BaeUtilities.h"
-#include "FrcError.h"
-#include "VisionAPI.h" 
-
-int VisionAPI_debugFlag = 1;
-#define DPRINTF if(VisionAPI_debugFlag)dprintf
-
-/*   Image Management functions    */
-
-/**
-* @brief Create an image object
-* Supports IMAQ_IMAGE_U8, IMAQ_IMAGE_I16, IMAQ_IMAGE_SGL, IMAQ_IMAGE_COMPLEX, IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL, IMAQ_IMAGE_RGB_U64          
-* The border size is defaulted to 3 so that convolutional algorithms work at the edges. 
-* When you are finished with the created image, dispose of it by calling frcDispose(). 
-* To get extended error information, call GetLastError().   
-*           
-* @param type Type of image to create
-* @return Image* On success, this function returns the created image. On failure, it returns NULL.
-*/
-Image* frcCreateImage(ImageType type) { return imaqCreateImage(type, DEFAULT_BORDER_SIZE); }
-
-/**
-* @brief Dispose of one object. Supports any object created on the heap.
-* 
-* @param object object to dispose of
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-*/
-int frcDispose(void* object)  { return imaqDispose(object);	}
-/**
-* @brief Dispose of a list of objects. Supports any object created on the heap.
-* 
-* @param functionName The name of the function
-* @param ... A list of pointers to structures that need to be disposed of. 
-* The last pointer in the list should always be set to NULL.
-* 
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-*/
-int frcDispose( const char* functionName, ... ) /* Variable argument list */
-{
-    va_list disposalPtrList;   /* Input argument list */
-    void* disposalPtr;         /* For iteration */
-    int success, returnValue = 1;
-    
-    va_start( disposalPtrList, functionName );  /* start of variable list */
-    disposalPtr = va_arg( disposalPtrList, void* );
-    while( disposalPtr != NULL )     {
-    	success = imaqDispose(disposalPtr);
-        if (!success) {returnValue = 0;}
-        disposalPtr = va_arg( disposalPtrList, void* );
-    }
-    return returnValue;
-}
-
-/**
-* @brief Copy an image object. 
-* Supports IMAQ_IMAGE_U8, IMAQ_IMAGE_I16, IMAQ_IMAGE_SGL, IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL.          
-* 
-* @param dest Copy of image. On failure, dest is NULL. Must have already been created using frcCreateImage().
-* When you are finished with the created image, dispose of it by calling frcDispose().
-* @param source Image to copy      
-* 
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-*/
-int frcCopyImage(Image* dest, const Image* source) { return imaqDuplicate(dest, source);  }
-
-/**
-* @brief Crop image without changing the scale. 
-* Supports IMAQ_IMAGE_U8, IMAQ_IMAGE_I16, IMAQ_IMAGE_SGL, IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL.
-* 
-* @param dest Modified image
-* @param source Image to crop
-* @param rect region to process, or IMAQ_NO_RECT
-* 
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-*/
-int frcCrop(Image* dest, const Image* source, Rect rect)
-{	
-	return imaqScale(dest, source, 1, 1, IMAQ_SCALE_LARGER, rect);
-}
-
-
-/**
-* @brief Scales the entire image larger or smaller. 
-* Supports IMAQ_IMAGE_U8, IMAQ_IMAGE_I16, IMAQ_IMAGE_SGL, IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL.
-*     
-* @param dest Modified image
-* @param source Image to scale
-* @param xScale the horizontal reduction ratio
-* @param yScale the vertical reduction ratio 
-* @param scaleMode IMAQ_SCALE_LARGER or IMAQ_SCALE_SMALLER  
-* 
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-*/
-int frcScale(Image* dest, const Image* source, int xScale, int yScale, ScalingMode scaleMode)
-{	
-	Rect rect = IMAQ_NO_RECT;
-	return imaqScale(dest, source, xScale, yScale, scaleMode, rect);	
-}
-  
-/**
- * @brief Creates image object from the information in a file. The file can be in one of the following formats: 
- * PNG, JPEG, JPEG2000, TIFF, AIPD, or BMP. 
- * Supports IMAQ_IMAGE_U8, IMAQ_IMAGE_I16, IMAQ_IMAGE_SGL, IMAQ_IMAGE_COMPLEX, IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL, IMAQ_IMAGE_RGB_U64.
- * 
- * @param image Image read in
- * @param fileName File to read. Cannot be NULL
- * 
- * @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
- */
- int frcReadImage(Image* image, const char* fileName)
- {
-	 return imaqReadFile(image, fileName, NULL, NULL);
- }
-
-
- /**
- * @brief Write image to a file. 
- * Supports IMAQ_IMAGE_U8, IMAQ_IMAGE_I16, IMAQ_IMAGE_SGL, IMAQ_IMAGE_COMPLEX, IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL, IMAQ_IMAGE_RGB_U64.
- * 
- * The file type is determined by the extension, as follows:
- *
- *		Extension 					File Type 
- *		aipd or .apd 				AIPD 
- *		.bmp 						BMP 
- *		.jpg or .jpeg 				JPEG 
- *		.jp2 						JPEG2000 
- *		.png 						PNG 
- *		.tif or .tiff 				TIFF 
- * 
- * 
- *The following are the supported image types for each file type:
- *
- *		File Types 					Image Types 
- *		AIPD 						all image types 
- *		BMP, JPEG 					8-bit, RGB 
- *		PNG, TIFF, JPEG2000 		8-bit, 16-bit, RGB, RGBU64 		
- * 			    
- * @param image Image to write
- * @param fileName File to read. Cannot be NULL. The extension determines the file format that is written.
- * 
- * @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
- */
-int frcWriteImage(const Image* image, const char* fileName)
-{	
-	RGBValue* colorTable = NULL;
-	return imaqWriteFile(image, fileName, colorTable);
-}
-
-
-/*  Measure Intensity functions */
-
-/**
-* @brief Measures the pixel intensities in a rectangle of an image. 
-* Outputs intensity based statistics about an image such as Max, Min, Mean and Std Dev of pixel value. 
-* Supports IMAQ_IMAGE_U8, IMAQ_IMAGE_I16, IMAQ_IMAGE_SGL.
-*
-*  Parameter Discussion	: 
-*		Relevant parameters of the HistogramReport include:
-* 			min, max, mean and stdDev      
-*		min/max —Setting both min and max to 0 causes the function to set min to 0 
-* 			and the max to 255 for 8-bit images and to the actual minimum value and
-* 			maximum value of the image for all other image types.
-*		max—Setting both min and max to 0 causes the function to set max to 255 
-* 			for 8-bit images and to the actual maximum value of the image for 
-* 			all other image types.
-*
-* @param image Image whose histogram the function calculates.
-* @param numClasses The number of classes into which the function separates the pixels. 
-* Determines the number of elements in the histogram array returned
-* @param min The minimum pixel value to consider for the histogram. 
-* The function does not count pixels with values less than min.
-* @param max The maximum pixel value to consider for the histogram. 
-* The function does not count pixels with values greater than max.
-* @param rect Region of interest in the image. If not included, the entire image is used. 
-* @return On success, this function returns a report describing the pixel value classification.    
-* When you are finished with the report, dispose of it by calling frcDispose(). 
-* On failure, this function returns NULL. To get extended error information, call GetLastError().            
-* 
-*/
-HistogramReport* frcHistogram(const Image* image, int numClasses, float min, float max)
-{
-	Rect rect = IMAQ_NO_RECT;
-	return frcHistogram(image, numClasses, min, max, rect);		
-}
-HistogramReport* frcHistogram(const Image* image, int numClasses, float min, float max, Rect rect)
-{
-	int success; 
-	int fillValue = 1;
-	
-	/* create the region of interest */
-	ROI* pRoi = imaqCreateROI();
-	success = imaqAddRectContour(pRoi, rect); 
-	if ( !success )	{ GetLastVisionError(); return NULL; }	
-
-	/* make a mask from the ROI */
-	Image* pMask = frcCreateImage(IMAQ_IMAGE_U8);
-	success = imaqROIToMask(pMask, pRoi, fillValue, NULL, NULL);
-	if ( !success )	{ 
-		GetLastVisionError(); 
-		frcDispose(__FUNCTION__, pRoi, NULL); 
-		return NULL; 
-	}	
-	
-	/* get a histogram report */
-	HistogramReport* pHr = NULL;
-	pHr = imaqHistogram(image, numClasses, min, max, pMask); 
-	
-	/* clean up */
-	frcDispose(__FUNCTION__, pRoi, pMask, NULL); 
-	
-	return pHr;
-}
-
-/**
-* @brief Calculates the histogram, or pixel distribution, of a color image. 
-* Supports IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL.
-*            
-* @param image Image whose histogram the function calculates.
-* @param numClasses The number of classes into which the function separates the pixels. 
-* Determines the number of elements in the histogram array returned
-* @param mode The color space in which to perform the histogram. Possible values include IMAQ_RGB and IMAQ_HSL. 
-* @param mask An optional mask image. This image must be an IMAQ_IMAGE_U8 image. 
-* The function calculates the histogram using only those pixels in the image whose 
-* corresponding pixels in the mask are non-zero. Set this parameter to NULL to calculate 
-* the histogram of the entire image, or use the simplified call.
-* 
-* @return On success, this function returns a report describing the classification  
-* of each plane in a HistogramReport. 
-* When you are finished with the report, dispose of it by calling frcDispose(). 
-* On failure, this function returns NULL.  
-* To get extended error information, call imaqGetLastError(). 
-*/
-ColorHistogramReport* frcColorHistogram(const Image* image, int numClasses, ColorMode mode)
-{	
-	return frcColorHistogram(image, numClasses, mode, NULL);
-}
-
-ColorHistogramReport* frcColorHistogram(const Image* image, int numClasses, ColorMode mode, Image* mask)
-{
-	return imaqColorHistogram2((Image*)image, numClasses, mode, NULL, mask);
-}
-
-
-/**
-* @brief Measures the pixel intensities in a rectangle of an image. 
-* Outputs intensity based statistics about an image such as Max, Min, Mean and Std Dev of pixel value. 
-* Supports IMAQ_IMAGE_U8 (grayscale) IMAQ_IMAGE_RGB (color) IMAQ_IMAGE_HSL (color-HSL).
-* 
-* @param image The image whose pixel value the function queries
-* @param pixel The coordinates of the pixel that the function queries
-* @param value On return, the value of the specified image pixel. This parameter cannot be NULL.
-* This data structure contains either grayscale, RGB, HSL, Complex or RGBU64Value depending on the type of image.
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-*/
-int frcGetPixelValue(const Image* image, Point pixel, PixelValue* value)
-{	
-	return imaqGetPixel(image, pixel, value);
-}
-
-
-/*   Particle Analysis functions */
-
-/**
-* @brief Filters particles out of an image based on their measurements. 
-* Supports IMAQ_IMAGE_U8, IMAQ_IMAGE_I16, IMAQ_IMAGE_SGL.
-* 
-* @param dest The destination image. If dest is used, it must be the same size as the Source image. It will contain only the filtered particles.
-* @param source The image containing the particles to filter. 
-* @param criteria An array of criteria to apply to the particles in the source image. This array cannot be NULL.
-* See the NIVisionCVI.chm help file for definitions of criteria. 
-* @param criteriaCount The number of elements in the criteria array.
-* @param options Binary filter options, including rejectMatches, rejectBorder, and connectivity8.
-* @param rect Area of image to filter. If omitted, the default is entire image.
-* @param numParticles On return, the number of particles left in the image
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-*/
-int frcParticleFilter(Image* dest, Image* source, const ParticleFilterCriteria2* criteria, 
-		int criteriaCount, const ParticleFilterOptions* options, int* numParticles)
-{
-	Rect rect = IMAQ_NO_RECT;
-	return frcParticleFilter(dest, source, criteria, criteriaCount, options, rect, numParticles);
-}
-
-int frcParticleFilter(Image* dest, Image* source, const ParticleFilterCriteria2* criteria, 
-		int criteriaCount, const ParticleFilterOptions* options, Rect rect, int* numParticles)
-{
-	ROI* roi = imaqCreateROI();
-	imaqAddRectContour(roi, rect);
-	return imaqParticleFilter3(dest, source, criteria, criteriaCount, options, roi, numParticles);
-}
-
-
-/**
-* @brief Performs morphological transformations on binary images. 
-* Supports IMAQ_IMAGE_U8. 
-*
-* @param dest The destination image. The border size of the destination image is not important.
-* @param source The image on which the function performs the morphological operations. The calculation 
-* modifies the border of the source image. The border must be at least half as large as the larger 
-* dimension  of the structuring element.  The connected source image for a morphological transformation 
-* must have been created with a border capable of supporting the size of the structuring element. 
-* A 3 by 3 structuring element requires a minimal border of 1, a 5 by 5 structuring element requires a minimal border of 2, and so on.
-* @param method The morphological transform to apply. 
-* @param structuringElement The structuring element used in the operation. Omit this parameter if you do not want a custom structuring element. 
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError(). 
-*/
-int frcMorphology(Image* dest, Image* source, MorphologyMethod method)
-{	
-	return imaqMorphology(dest, source, method, NULL);
-}
-
-int frcMorphology(Image* dest, Image* source, MorphologyMethod method, const StructuringElement* structuringElement)
-{	
-	return imaqMorphology(dest, source, method, structuringElement); 
-}
-
-/**
-* @brief Eliminates particles that touch the border of the image. 
-* Supports IMAQ_IMAGE_U8.
-*
-* @param dest The destination image.
-* @param source The source image. If the image has a border, the function sets all border pixel values to 0.
-* @param connectivity8 specifies the type of connectivity used by the algorithm for particle detection. 
-* The connectivity mode directly determines whether an adjacent pixel belongs to the same particle or a 
-* different particle. Set to TRUE to use connectivity-8 to determine whether particles are touching 
-* Set to FALSE to use connectivity-4 to determine whether particles are touching. 
-* The default setting for the simplified call is TRUE
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-*/
-int frcRejectBorder(Image* dest, Image* source)
-{	return imaqRejectBorder(dest, source, TRUE); }
-
-int frcRejectBorder(Image* dest, Image* source, int connectivity8)
-{	
-	return imaqRejectBorder(dest, source, connectivity8);
-}
-
-
-/**
-* @brief Counts the number of particles in a binary image. 
-* Supports IMAQ_IMAGE_U8, IMAQ_IMAGE_I16, IMAQ_IMAGE_SGL.
-* @param image binary (thresholded) image 	
-* @param numParticles On return, the number of particles.
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().    
-*/
-int frcCountParticles(Image* image, int* numParticles)				
-{	
-	return imaqCountParticles(image, 1, numParticles);
-}
-
-
-/**
-* @brief Conduct measurements for a single particle in an images. 
-* Supports IMAQ_IMAGE_U8, IMAQ_IMAGE_I16, IMAQ_IMAGE_SGL.
-* 
-* @param image image with the particle to analyze. This function modifies the source image. 
-* If you need the original image, create a copy of the image using frcCopy() before using this function.
-* @param particleNumber The number of the particle to get information on
-* @param par on return, a particle analysis report containing information about the particle. This structure must be created by the caller.
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-*/
-int frcParticleAnalysis(Image* image, int particleNumber, ParticleAnalysisReport* par)				
-{
-	int success = 0;
-
-	/* image information */
-	int height, width;
-	if ( ! imaqGetImageSize(image, &width, &height) ) 	{ return success; }	
-	par->imageWidth = width;	
-	par->imageHeight = height;	
-	par->particleIndex = particleNumber;		
-
-	/* center of mass point of the largest particle	*/
-	double returnDouble;
-	success = imaqMeasureParticle(image, particleNumber, 0, IMAQ_MT_CENTER_OF_MASS_X, &returnDouble);
-	if ( !success )	{ return success; }
-	par->center_mass_x = (int)returnDouble;						// pixel	
-
-	success = imaqMeasureParticle(image, particleNumber, 0, IMAQ_MT_CENTER_OF_MASS_Y, &returnDouble);	
-	if ( !success )	{ return success; }
-	par->center_mass_y = (int)returnDouble;						// pixel		
-	
-	/* particle size statistics */ 
-	success = imaqMeasureParticle(image, particleNumber, 0, IMAQ_MT_AREA, &returnDouble);	
-	if ( !success )	{ return success; }
-	par->particleArea = returnDouble;	
-	
-	success = imaqMeasureParticle(image, particleNumber, 0, IMAQ_MT_BOUNDING_RECT_TOP, &returnDouble);	
-	if ( !success )	{ return success; }
-	par->boundingRect.top = (int)returnDouble;
-	
-	success = imaqMeasureParticle(image, particleNumber, 0, IMAQ_MT_BOUNDING_RECT_LEFT, &returnDouble);	
-	if ( !success )	{ return success; }
-	par->boundingRect.left = (int)returnDouble;
-	
-	success = imaqMeasureParticle(image, particleNumber, 0, IMAQ_MT_BOUNDING_RECT_HEIGHT, &returnDouble);	
-	if ( !success )	{ return success; }
-	par->boundingRect.height = (int)returnDouble;	
-
-	success = imaqMeasureParticle(image, particleNumber, 0, IMAQ_MT_BOUNDING_RECT_WIDTH, &returnDouble);	
-	if ( !success )	{ return success; }
-	par->boundingRect.width = (int)returnDouble;	
-	
-	/* particle quality statistics */ 
-	success = imaqMeasureParticle(image, particleNumber, 0, IMAQ_MT_AREA_BY_IMAGE_AREA, &returnDouble);	
-	if ( !success )	{ return success; }
-	par->particleToImagePercent = returnDouble;
-
-	success = imaqMeasureParticle(image, particleNumber, 0, IMAQ_MT_AREA_BY_PARTICLE_AND_HOLES_AREA, &returnDouble);	
-	if ( !success )	{ return success; }
-	par->particleQuality = returnDouble;
-		
-	/* normalized position (-1 to 1) */
-	par->center_mass_x_normalized = RangeToNormalized(par->center_mass_x, width);
-	par->center_mass_y_normalized = RangeToNormalized(par->center_mass_y, height);	
-	
-	return success;
-}
-
-
-/*   Image Enhancement functions */
-
-/**
-* @brief Improves contrast on a grayscale image. 
-* Supports IMAQ_IMAGE_U8, IMAQ_IMAGE_I16.
-* @param dest The destination image.
-* @param source The image to equalize 
-* @param min the smallest value used for processing. After processing, all pixel values that are less than or equal to the Minimum in the original image are set to 0 for an 8-bit image. In 16-bit and floating-point images, these pixel values are set to the smallest pixel value found in the original image. 
-* @param max the largest value used for processing. After processing, all pixel values that are greater than or equal to the Maximum in the original image are set to 255 for an 8-bit image. In 16-bit and floating-point images, these pixel values are set to the largest pixel value found in the original image. 
-* @param mask an 8-bit image that specifies the region of the small image that will be copied. Only those pixels in the Image Src (Small) image that correspond to an equivalent non-zero pixel in the mask image are copied. All other pixels keep their original values. The entire image is processed if Image Mask is NULL or this parameter is omitted.
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-*
-*  option defaults:
-*       searchRect = IMAQ_NO_RECT
-* 		minMatchScore = DEFAULT_MINMAX_SCORE (800)  
-*/
-int frcEqualize(Image* dest, const Image* source, float min, float max)
-{	return frcEqualize(dest, source, min, max, NULL);  }
-
-int frcEqualize(Image* dest, const Image* source, float min, float max, const Image* mask)
-{
-	return imaqEqualize(dest, source, min, max, mask);
-}
-
-/**
-* @brief Improves contrast on a color image. 
-* Supports IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL
-* 
-* option defaults: colorEqualization = TRUE to equalize all three planes of the image         
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().    
-* @param dest The destination image.
-* @param source The image to equalize 
-* @param colorEqualization Set this parameter to TRUE to equalize all three planes of the image (the default). Set this parameter to FALSE to equalize only the luminance plane.
-*/
-int frcColorEqualize(Image* dest, const Image* source)
-{
-	return imaqColorEqualize(dest, source, TRUE);
-}
-
-int frcColorEqualize(Image* dest, const Image* source, int colorEqualization)
-{
-	return imaqColorEqualize(dest, source, TRUE);
-}
-
-/*   Image Conversion functions */
-
-/**
-* @brief Automatically thresholds a grayscale image into a binary image for Particle Analysis based on a smart threshold. 
-* Supports IMAQ_IMAGE_RGB, IMAQ_IMAGE_I16
-* @param dest The destination image.
-* @param source The image to threshold 
-* @param windowWidth The width of the rectangular window around the pixel on which the function
-*  performs the local threshold. This number must be at least 3 and cannot be larger than the width of source
-* @param windowHeight The height of the rectangular window around the pixel on which the function 
-* performs the local threshold. This number must be at least 3 and cannot be larger than the height of source
-* @param method Specifies the local thresholding method the function uses. Value can be IMAQ_NIBLACK 
-* (which computes thresholds for each pixel based on its local statistics using the Niblack local thresholding
-* algorithm.), or IMAQ_BACKGROUND_CORRECTION (which does background correction first to eliminate non-uniform 
-* lighting effects, then performs thresholding using the Otsu thresholding algorithm)
-* @param deviationWeight Specifies the k constant used in the Niblack local thresholding algorithm, which 
-* determines the weight applied to the variance calculation. Valid k constants range from 0 to 1. Setting 
-* this value to 0 will increase the performance of the function because the function will not calculate the 
-* variance for any of the pixels. The function ignores this value if method is not set to IMAQ_NIBLACK
-* @param type Specifies the type of objects for which you want to look. Values can be IMAQ_BRIGHT_OBJECTS 
-* or IMAQ_DARK_OBJECTS.
-* @param replaceValue Specifies the replacement value the function uses for the pixels of the kept objects 
-* in the destination image.
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-*/
-int frcSmartThreshold(Image* dest, const Image* source, 
-		unsigned int windowWidth, unsigned int windowHeight, LocalThresholdMethod method, 
-		double deviationWeight, ObjectType type)
-{
-	float replaceValue = 1.0;
-	return imaqLocalThreshold(dest, source, windowWidth, windowHeight, method, 
-			deviationWeight, type, replaceValue);
-}
-
-int frcSmartThreshold(Image* dest, const Image* source, 
-		unsigned int windowWidth, unsigned int windowHeight, LocalThresholdMethod method, 
-		double deviationWeight, ObjectType type, float replaceValue)
-{
-	return imaqLocalThreshold(dest, source, windowWidth, windowHeight, method, 
-			deviationWeight, type, replaceValue);
-}
-
-/**
-* @brief Converts a grayscale image to a binary image for Particle Analysis based on a fixed threshold. 
-* The function sets pixels values outside of the given range to 0. The function sets pixel values 
-* within the range to a given value or leaves the values unchanged. 
-* Use the simplified call to leave pixel values unchanged.
-* Supports IMAQ_IMAGE_RGB, IMAQ_IMAGE_I16.
-* 
-* @param dest The destination image.
-* @param source The image to threshold 
-* @param rangeMin The lower boundary of the range of pixel values to keep
-* @param rangeMax The upper boundary of the range of pixel values to keep.
-* 
-* @return int - error code: 0 = error. To get extended error information, call GetLastError().
-*/
-int frcSimpleThreshold(Image* dest, const Image* source, float rangeMin, float rangeMax)
-{
-	int newValue = 255;
-	return frcSimpleThreshold(dest, source, rangeMin, rangeMax, newValue);
-}
-
-/**
-* @brief Converts a grayscale image to a binary image for Particle Analysis based on a fixed threshold. 
-* The function sets pixels values outside of the given range to 0. The function sets 
-* pixel values within the range to the given value. 
-* Supports IMAQ_IMAGE_RGB, IMAQ_IMAGE_I16.
-* 
-* @param dest The destination image.
-* @param source The image to threshold 
-* @param rangeMin The lower boundary of the range of pixel values to keep
-* @param rangeMax The upper boundary of the range of pixel values to keep.
-* @param newValue The replacement value for pixels within the range. Use the simplified call to leave the pixel values unchanged 
-* 
-* @return int - error code: 0 = error. To get extended error information, call GetLastError().
-*/
-int frcSimpleThreshold(Image* dest, const Image* source, float rangeMin, float rangeMax, float newValue)
-{
-	int useNewValue = TRUE;
-	return imaqThreshold(dest, source, rangeMin, rangeMax, useNewValue, newValue);
-}
-
-/**
-* @brief Applies a threshold to the Red, Green, and Blue values of a RGB image or the Hue, 
-* Saturation, Luminance values for a HSL image. 
-* Supports IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL.
-* This simpler version filters based on a hue range in the HSL mode.
-* 
-* @param dest The destination image. This must be a IMAQ_IMAGE_U8 image.
-* @param source The image to threshold 
-* @param mode The color space to perform the threshold in. valid values are: IMAQ_RGB, IMAQ_HSL.
-* @param plane1Range The selection range for the first plane of the image. Set this parameter to NULL to use a selection range from 0 to 255.
-* @param plane2Range The selection range for the second plane of the image. Set this parameter to NULL to use a selection range from 0 to 255.
-* @param plane3Range The selection range for the third plane of the image. Set this parameter to NULL to use a selection range from 0 to 255.
-* 
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-* */
-int frcColorThreshold(Image* dest, const Image* source, ColorMode mode, 
-		const Range* plane1Range, const Range* plane2Range, const Range* plane3Range)
-{
-	int replaceValue = 1;
-	return imaqColorThreshold(dest, source, replaceValue, mode, plane1Range, plane2Range, plane3Range);
-}
-
-/**
-* @brief Applies a threshold to the Red, Green, and Blue values of a RGB image or the Hue, 
-* Saturation, Luminance values for a HSL image. 
-* Supports IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL.
-* The simpler version filters based on a hue range in the HSL mode.
-* 
-* @param dest The destination image. This must be a IMAQ_IMAGE_U8 image.
-* @param source The image to threshold 
-* @param replaceValue Value to assign to selected pixels. Defaults to 1 if simplified call is used.
-* @param mode The color space to perform the threshold in. valid values are: IMAQ_RGB, IMAQ_HSL.
-* @param plane1Range The selection range for the first plane of the image. Set this parameter to NULL to use a selection range from 0 to 255.
-* @param plane2Range The selection range for the second plane of the image. Set this parameter to NULL to use a selection range from 0 to 255.
-* @param plane3Range The selection range for the third plane of the image. Set this parameter to NULL to use a selection range from 0 to 255.
-* 
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-*/
-int frcColorThreshold(Image* dest, const Image* source, int replaceValue, ColorMode mode, 
-		const Range* plane1Range, const Range* plane2Range, const Range* plane3Range)
-{	return imaqColorThreshold(dest, source, replaceValue, mode, plane1Range, plane2Range, plane3Range);}
-
-
-/**
-* @brief A simpler version of ColorThreshold that thresholds hue range in the HSL mode. Supports IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL.
-* @param dest The destination image.
-* @param source The image to threshold 
-* @param hueRange The selection range for the hue (color). 
-* @param minSaturation The minimum saturation value (1-255).  If not used, DEFAULT_SATURATION_THRESHOLD is the default.
-* 
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().
-*/
-int frcHueThreshold(Image* dest, const Image* source, const Range* hueRange)
-{ return frcHueThreshold(dest, source, hueRange, DEFAULT_SATURATION_THRESHOLD); }
-
-int frcHueThreshold(Image* dest, const Image* source, const Range* hueRange, int minSaturation)
-{
-	// assume HSL mode
-	ColorMode mode = IMAQ_HSL;  
-	// Set saturation 100 - 255
-	Range satRange;  satRange.minValue = minSaturation; satRange.maxValue = 255;
-	// Set luminance 100 - 255
-	Range lumRange;  lumRange.minValue = 100; lumRange.maxValue = 255;
-	// Replace pixels with 1 if pass threshold filter
-	int replaceValue = 1;
-	return imaqColorThreshold(dest, source, replaceValue, mode, hueRange, &satRange, &lumRange);
-}
-
-/**
-* @brief Extracts the Red, Green, Blue, or Hue, Saturation or Luminance information from a color image. 
-* Supports IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL, IMAQ_IMAGE_RGB_U64.
-* 
-* @param image The source image that the function extracts the planes from.
-* @param mode The color space that the function extracts the planes from. Valid values are IMAQ_RGB, IMAQ_HSL, IMAQ_HSV, IMAQ_HSI.
-* @param plane1 On return, the first extracted plane. Set this parameter to NULL if you do not need this information. RGB-Red, HSL/HSV/HSI-Hue.
-* @param plane2 On return, the second extracted plane. Set this parameter to NULL if you do not need this information. RGB-Green, HSL/HSV/HSI-Saturation.
-* @param plane3 On return, the third extracted plane. Set this parameter to NULL if you do not need this information. RGB-Blue, HSL-Luminance, HSV-Value, HSI-Intensity.
-*
-* @return error code: 0 = error. To get extended error information, call GetLastError().
-*/
-int frcExtractColorPlanes(const Image* image, ColorMode mode, 
-		Image* plane1, Image* plane2, Image* plane3)
-{	return imaqExtractColorPlanes(image, mode, plane1, plane2, plane3); }
-
-/**
-* @brief Extracts the Hue information from a color image. Supports IMAQ_IMAGE_RGB, IMAQ_IMAGE_HSL, IMAQ_IMAGE_RGB_U64 
-* 
-* @param image The source image that the function extracts the plane from.
-* @param huePlane On return, the extracted hue plane. 
-* @param minSaturation the minimum saturation level required 0-255 (try 50)  
-*          
-* @return On success: 1. On failure: 0. To get extended error information, call GetLastError().     
-*/
-int frcExtractHuePlane(const Image* image, Image* huePlane)
-{
-	return frcExtractHuePlane(image, huePlane, DEFAULT_SATURATION_THRESHOLD);
-}
-
-int frcExtractHuePlane(const Image* image, Image* huePlane, int minSaturation)
-{
-	return frcExtractColorPlanes(image, IMAQ_HSL, huePlane, NULL, NULL);
-}
-
-
-
-
-
-
-
-
diff --git a/aos/externals/WPILib/WPILib/Vision2009/VisionAPI.h b/aos/externals/WPILib/WPILib/Vision2009/VisionAPI.h
deleted file mode 100644
index 31663f8..0000000
--- a/aos/externals/WPILib/WPILib/Vision2009/VisionAPI.h
+++ /dev/null
@@ -1,163 +0,0 @@
-/********************************************************************************
-*  Project   		: FIRST Motor Controller
-*  File Name  		: VisionAPI.h          
-*  Contributors   	: ELF, JDG, ARK, EMF
-*  Creation Date 	: June 22, 2008
-*  Revision History	: Source code & revision history maintained at sourceforge.WPI.edu    
-*  File Description	: Globally defined values for the FIRST Vision API
-* 
-*  API: Because nivision.h uses C++ style comments, any file including this
-*  must be a .cpp (not .c).
-*/
-/*----------------------------------------------------------------------------*/
-/*        Copyright (c) FIRST 2008.  All Rights Reserved.                     */
-/*  Open Source Software - may be modified and shared by FRC teams. The code  */
-/*  must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __VISIONAPI_H__
-#define __VISIONAPI_H__
-
-#include "nivision.h" 
-
-/*   Constants */
-
-#define DEFAULT_BORDER_SIZE				3		//VisionAPI.frcCreateImage
-#define DEFAULT_SATURATION_THRESHOLD	40		//TrackAPI.FindColor
-
-/*   Forward Declare Data Structures */
-typedef struct FindEdgeOptions_struct FindEdgeOptions;
-typedef struct CircularEdgeReport_struct CircularEdgeReport;
-
-/*   Data Structures */
-
-/**  frcParticleAnalysis returns this structure */
-typedef struct ParticleAnalysisReport_struct {
-	int 	imageHeight;
-	int 	imageWidth;
-	double 	imageTimestamp;				
-	int		particleIndex;				// the particle index analyzed
-	/* X-coordinate of the point representing the average position of the 
-	 * total particle mass, assuming every point in the particle has a constant density */
-	int 	center_mass_x;  			// MeasurementType: IMAQ_MT_CENTER_OF_MASS_X 
-	/* Y-coordinate of the point representing the average position of the 
-	 * total particle mass, assuming every point in the particle has a constant density */
-	int 	center_mass_y;  			// MeasurementType: IMAQ_MT_CENTER_OF_MASS_Y 
-	double 	center_mass_x_normalized;  	//Center of mass x value normalized to -1.0 to +1.0 range
-	double 	center_mass_y_normalized;  	//Center of mass y value normalized to -1.0 to +1.0 range
-	/* Area of the particle */
-	double 	particleArea;				// MeasurementType: IMAQ_MT_AREA
-	/* Bounding Rectangle */
-	Rect 	boundingRect;				// left/top/width/height
-	/* Percentage of the particle Area covering the Image Area. */
-	double 	particleToImagePercent;		// MeasurementType: IMAQ_MT_AREA_BY_IMAGE_AREA
-	/* Percentage of the particle Area in relation to its Particle and Holes Area */
-	double 	particleQuality;			// MeasurementType: IMAQ_MT_AREA_BY_PARTICLE_AND_HOLES_AREA
-} ParticleAnalysisReport;
-
-/** Tracking functions return this structure */
-typedef struct ColorReport_struct {
-	int		numberParticlesFound;				// Number of particles found for this color
-	int 	largestParticleNumber;				// The particle index of the largest particle
-	/* Color information */
-	float 	particleHueMax;				// HistogramReport: hue max
-	float 	particleHueMin;				// HistogramReport: hue max
-	float 	particleHueMean;			// HistogramReport: hue mean
-	float 	particleSatMax;				// HistogramReport: saturation max
-	float 	particleSatMin;				// HistogramReport: saturation max
-	float 	particleSatMean;			// HistogramReport: saturation mean
-	float 	particleLumMax;				// HistogramReport: luminance max
-	float 	particleLumMin;				// HistogramReport: luminance  max
-	float 	particleLumMean;			// HistogramReport: luminance mean
-} ColorReport;
-
-
-/*   Image Management functions */
-
-/* Create: calls imaqCreateImage. Border size is set to some default value */
-Image* frcCreateImage( ImageType type );
-
-/* Dispose: calls imaqDispose */
-int frcDispose( void* object );
-int frcDispose( const char* filename, ... ) ;
-
-/* Copy: calls imaqDuplicateImage */
-int frcCopyImage( Image* dest, const Image* source );
-
-/* Image Extraction: Crop: calls imaqScale */
-int frcCrop( Image* dest, const Image* source, Rect rect );
-
-/* Image Extraction: Scale: calls imaqScale.  Scales entire image */
-int frcScale(Image* dest, const Image* source, int xScale, int yScale, ScalingMode scaleMode );
-
-/* Read Image : calls imaqReadFile */
-int frcReadImage( Image* image, const char* fileName );
-/* Write Image : calls imaqWriteFile */
-int frcWriteImage( const Image* image, const char* fileName);
-
-/*   Measure Intensity functions */
-
-/* Histogram: calls imaqHistogram */
-HistogramReport* frcHistogram( const Image* image, int numClasses, float min, float max, Rect rect );
-/* Color Histogram: calls imaqColorHistogram2 */
-ColorHistogramReport* frcColorHistogram(const Image* image, int numClasses, ColorMode mode, Image* mask);
-
-/* Get Pixel Value: calls imaqGetPixel */
-int frcGetPixelValue( const Image* image, Point pixel, PixelValue* value );
-
-/*   Particle Analysis functions */
-
-/* Particle Filter: calls imaqParticleFilter3 */
-int frcParticleFilter(Image* dest, Image* source, const ParticleFilterCriteria2* criteria, 
-		int criteriaCount, const ParticleFilterOptions* options, Rect rect, int* numParticles);
-int frcParticleFilter(Image* dest, Image* source, const ParticleFilterCriteria2* criteria, 
-		int criteriaCount, const ParticleFilterOptions* options, int* numParticles);
-/* Morphology: calls imaqMorphology */
-int frcMorphology(Image* dest, Image* source, MorphologyMethod method);
-int frcMorphology(Image* dest, Image* source, MorphologyMethod method, const StructuringElement* structuringElement);
-/* Reject Border: calls imaqRejectBorder */
-int frcRejectBorder(Image* dest, Image* source);
-int frcRejectBorder(Image* dest, Image* source, int connectivity8);
-/* Count Particles: calls imaqCountParticles */
-int frcCountParticles(Image* image, int* numParticles);
-/* Particle Analysis Report: calls imaqMeasureParticle */
-int frcParticleAnalysis(Image* image, int particleNumber, ParticleAnalysisReport* par);
-
-/*   Image Enhancement functions */
-
-/* Equalize: calls imaqEqualize */
-int frcEqualize(Image* dest, const Image* source, float min, float max);
-int frcEqualize(Image* dest, const Image* source, float min, float max, const Image* mask);
-
-/* Color Equalize: calls imaqColorEqualize */
-int frcColorEqualize(Image* dest, const Image* source);
-int frcColorEqualize(Image* dest, const Image* source, int colorEqualization);
-
-/*   Image Thresholding & Conversion functions */
-
-/* Smart Threshold: calls imaqLocalThreshold */
-int frcSmartThreshold(Image* dest, const Image* source, unsigned int windowWidth, unsigned int windowHeight, 
-		LocalThresholdMethod method, double deviationWeight, ObjectType type);
-int frcSmartThreshold(Image* dest, const Image* source, unsigned int windowWidth, unsigned int windowHeight, 
-		LocalThresholdMethod method, double deviationWeight, ObjectType type, float replaceValue);
-
-/* Simple Threshold: calls imaqThreshold */
-int frcSimpleThreshold(Image* dest, const Image* source, float rangeMin, float rangeMax, float newValue);
-int frcSimpleThreshold(Image* dest, const Image* source, float rangeMin, float rangeMax);
-
-/* Color/Hue Threshold: calls imaqColorThreshold */
-int frcColorThreshold(Image* dest, const Image* source, ColorMode mode, 
-		const Range* plane1Range, const Range* plane2Range, const Range* plane3Range);
-int frcColorThreshold(Image* dest, const Image* source, int replaceValue, ColorMode mode, 
-		const Range* plane1Range, const Range* plane2Range, const Range* plane3Range);
-int frcHueThreshold(Image* dest, const Image* source, const Range* hueRange);
-int frcHueThreshold(Image* dest, const Image* source, const Range* hueRange, int minSaturation);
-
-/* Extract ColorHue Plane: calls imaqExtractColorPlanes */
-int frcExtractColorPlanes(const Image* image, ColorMode mode, Image* plane1, Image* plane2, Image* plane3);
-int frcExtractHuePlane(const Image* image, Image* huePlane);
-int frcExtractHuePlane(const Image* image, Image* huePlane, int minSaturation);
-
-#endif
-
-
diff --git a/aos/externals/WPILib/WPILib/WPIErrors.h b/aos/externals/WPILib/WPILib/WPIErrors.h
deleted file mode 100644
index f7e59f5..0000000
--- a/aos/externals/WPILib/WPILib/WPIErrors.h
+++ /dev/null
@@ -1,78 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef __WPI_ERRORS_H__
-#define __WPI_ERRORS_H__
-
-#ifdef WPI_ERRORS_DEFINE_STRINGS
-#define S(label, offset, message) const char *wpi_error_s_##label = message ;
-#else
-#define S(label, offset, message) extern const char *wpi_error_s_##label;
-#endif
-
-/*
- * Fatal errors
- */
-S(ModuleIndexOutOfRange, -1, "Allocating module that is out of range or not found");
-S(ChannelIndexOutOfRange, -1, "Allocating channel that is out of range");
-S(NotAllocated, -2, "Attempting to free unallocated resource");
-S(ResourceAlreadyAllocated, -3, "Attempted to reuse an allocated resource");
-S(NoAvailableResources, -4, "No available resources to allocate");
-S(NullParameter, -5, "A pointer parameter to a method is NULL");
-S(Timeout, -6, "A timeout has been exceeded");
-S(CompassManufacturerError, -7, "Compass manufacturer doesn't match HiTechnic");
-S(CompassTypeError, -8, "Compass type doesn't match expected type for HiTechnic compass");
-S(IncompatibleMode, -9, "The object is in an incompatible mode");
-S(AnalogTriggerLimitOrderError, -10, "AnalogTrigger limits error.  Lower limit > Upper Limit");
-S(AnalogTriggerPulseOutputError, -11, "Attempted to read AnalogTrigger pulse output.");
-S(TaskError, -12, "Task can't be started");
-S(TaskIDError, -13, "Task error: Invalid ID.");
-S(TaskDeletedError, -14, "Task error: Task already deleted.");
-S(TaskOptionsError, -15, "Task error: Invalid options.");
-S(TaskMemoryError, -16, "Task can't be started due to insufficient memory.");
-S(TaskPriorityError, -17, "Task error: Invalid priority [1-255].");
-S(DriveUninitialized, -18, "RobotDrive not initialized for the C interface");
-S(CompressorNonMatching, -19, "Compressor slot/channel doesn't match previous instance");
-S(CompressorAlreadyDefined, -20, "Creating a second compressor instance");
-S(CompressorUndefined, -21, "Using compressor functions without defining compressor");
-S(InconsistentArrayValueAdded, -22, "When packing data into an array to the dashboard, not all values added were of the same type.");
-S(MismatchedComplexTypeClose, -23, "When packing data to the dashboard, a Close for a complex type was called without a matching Open.");
-S(DashboardDataOverflow, -24, "When packing data to the dashboard, too much data was packed and the buffer overflowed.");
-S(DashboardDataCollision, -25, "The same buffer was used for packing data and for printing.");
-S(EnhancedIOMissing, -26, "IO is not attached or Enhanced IO is not enabled.");
-S(LineNotOutput, -27, "Cannot SetDigitalOutput for a line not configured for output.");
-S(ParameterOutOfRange, -28, "A parameter is out of range.");
-S(SPIClockRateTooLow, -29, "SPI clock rate was below the minimum supported");
-S(JaguarVersionError, -30, "Jaguar firmware version error");
-S(NetworkTablesReadError, -40, "Error reading NetworkTables socket");
-S(NetworkTablesBufferFull, -41, "Buffer full writing to NetworkTables socket");
-S(NetworkTablesWrongType, -42, "The wrong type was read from the NetworkTables entry");
-S(NetworkTablesCorrupt, -43, "NetworkTables data stream is corrupt");
-S(SmartDashboardMissingKey, -43, "SmartDashboard data does not exist");
-S(CommandIllegalUse, -50, "Illegal use of Command");
-
-/*
- * Warnings
- */
-S(SampleRateTooHigh, 1, "Analog module sample rate is too high");
-S(VoltageOutOfRange, 2, "Voltage to convert to raw value is out of range [-10; 10]");
-S(CompressorTaskError, 3, "Compressor task won't start");
-S(LoopTimingError, 4, "Digital module loop timing is not the expected value");
-S(NonBinaryDigitalValue, 5, "Digital output value is not 0 or 1");
-S(IncorrectBatteryChannel, 6, "Battery measurement channel is not correct value");
-S(BadJoystickIndex, 7, "Joystick index is out of range, should be 1-4");
-S(BadJoystickAxis, 8, "Joystick axis is out of range");
-S(InvalidMotorIndex, 9, "Motor index is out of range, should be 0-3");
-S(DriverStationTaskError, 10, "Driver Station task won't start");
-S(EnhancedIOPWMPeriodOutOfRange, 11, "Driver Station Enhanced IO PWM Output period out of range.");
-S(SPIWriteNoMOSI, 12, "Cannot write to SPI port with no MOSI output");
-S(SPIReadNoMISO, 13, "Cannot read from SPI port with no MISO input");
-S(SPIReadNoData, 14, "No data available to read from SPI");
-S(IncompatibleState, 15, "Incompatible State: The operation cannot be completed");
-
-#undef S
-
-#endif // __WPI_ERRORS_H__
diff --git a/aos/externals/WPILib/WPILib/WPILib.h b/aos/externals/WPILib/WPILib/WPILib.h
deleted file mode 100644
index 9091063..0000000
--- a/aos/externals/WPILib/WPILib/WPILib.h
+++ /dev/null
@@ -1,92 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef WPILIB_H_
-#define WPILIB_H_
-
-#include "string.h"
-#include <iostream>
-
-#include "Accelerometer.h"
-#include "ADXL345_I2C.h"
-#include "ADXL345_SPI.h"
-#include "AnalogChannel.h"
-#include "AnalogModule.h"
-#include "AnalogTrigger.h"
-#include "AnalogTriggerOutput.h"
-#include "Buttons/AnalogIOButton.h"
-#include "Buttons/DigitalIOButton.h"
-#include "Buttons/InternalButton.h"
-#include "Buttons/JoystickButton.h"
-#include "Buttons/NetworkButton.h"
-#include "CANJaguar.h"
-#include "Commands/Command.h"
-#include "Commands/CommandGroup.h"
-#include "Commands/PIDCommand.h"
-#include "Commands/PIDSubsystem.h"
-#include "Commands/PrintCommand.h"
-#include "Commands/Scheduler.h"
-#include "Commands/StartCommand.h"
-#include "Commands/Subsystem.h"
-#include "Commands/WaitCommand.h"
-#include "Commands/WaitForChildren.h"
-#include "Commands/WaitUntilCommand.h"
-#include "Compressor.h"
-#include "Counter.h"
-#include "Dashboard.h"
-#include "DigitalInput.h"
-#include "DigitalModule.h"
-#include "DigitalOutput.h"
-#include "DigitalSource.h"
-#include "DoubleSolenoid.h"
-#include "DriverStation.h"
-#include "DriverStationEnhancedIO.h"
-#include "DriverStationLCD.h"
-#include "Encoder.h"
-#include "ErrorBase.h"
-#include "GearTooth.h"
-#include "GenericHID.h"
-#include "Gyro.h"
-#include "HiTechnicCompass.h"
-#include "HiTechnicColorSensor.h"
-#include "I2C.h"
-#include "IterativeRobot.h"
-#include "InterruptableSensorBase.h"
-#include "Jaguar.h"
-#include "Joystick.h"
-#include "Kinect.h"
-#include "KinectStick.h"
-#include "Notifier.h"
-#include "PIDController.h"
-#include "PIDOutput.h"
-#include "PIDSource.h"
-#include "Preferences.h"
-#include "PWM.h"
-#include "Relay.h"
-#include "Resource.h"
-#include "RobotBase.h"
-#include "RobotDrive.h"
-#include "SensorBase.h"
-#include "SerialPort.h"
-#include "Servo.h"
-#include "SimpleRobot.h"
-#include "SmartDashboard/SendableChooser.h"
-#include "SmartDashboard/SmartDashboard.h"
-#include "Solenoid.h"
-#include "SpeedController.h"
-#include "SPI.h"
-#include "Synchronized.h"
-#include "Talon.h"
-#include "Task.h"
-#include "Timer.h"
-#include "Ultrasonic.h"
-#include "Utility.h"
-#include "Victor.h"
-#include "Vision/AxisCamera.h"
-#include "Watchdog.h"
-#include "WPIErrors.h"
-
-#endif /*WPILIB_H_*/
diff --git a/aos/externals/WPILib/WPILib/Watchdog.cpp b/aos/externals/WPILib/WPILib/Watchdog.cpp
deleted file mode 100644
index e88e00e..0000000
--- a/aos/externals/WPILib/WPILib/Watchdog.cpp
+++ /dev/null
@@ -1,170 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#include "Watchdog.h"
-
-constexpr double Watchdog::kDefaultWatchdogExpiration;
-
-/**
- * The Watchdog is born.
- */
-Watchdog::Watchdog()
-	:	m_fpgaWatchDog(NULL)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_fpgaWatchDog = tWatchdog::create(&localStatus);
-	wpi_setError(localStatus);
-	SetExpiration(kDefaultWatchdogExpiration);
-	SetEnabled(true);
-}
-
-/**
- * Time to bury him in the back yard.
- */
-Watchdog::~Watchdog()
-{
-	SetEnabled(false);
-	delete m_fpgaWatchDog;
-	m_fpgaWatchDog = NULL;
-}
-
-/**
- * Throw the dog a bone.
- * 
- * When everything is going well, you feed your dog when you get home.
- * Let's hope you don't drive your car off a bridge on the way home...
- * Your dog won't get fed and he will starve to death.
- * 
- * By the way, it's not cool to ask the neighbor (some random task) to
- * feed your dog for you.  He's your responsibility!
- * 
- * @returns Returns the previous state of the watchdog before feeding it.
- */
-bool Watchdog::Feed()
-{
-	bool previous = GetEnabled();
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_fpgaWatchDog->strobeFeed(&localStatus);
-	wpi_setError(localStatus);
-	return previous;
-}
-
-/**
- * Put the watchdog out of its misery.
- * 
- * Don't wait for your dying robot to starve when there is a problem.
- * Kill it quickly, cleanly, and humanely.
- */
-void Watchdog::Kill()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_fpgaWatchDog->strobeKill(&localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Read how long it has been since the watchdog was last fed.
- * 
- * @return The number of seconds since last meal.
- */
-double Watchdog::GetTimer()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t timer = m_fpgaWatchDog->readTimer(&localStatus);
-	wpi_setError(localStatus);
-	return timer / (kSystemClockTicksPerMicrosecond * 1e6);
-}
-
-/**
- * Read what the current expiration is.
- * 
- * @return The number of seconds before starvation following a meal (watchdog starves if it doesn't eat this often).
- */
-double Watchdog::GetExpiration()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	uint32_t expiration = m_fpgaWatchDog->readExpiration(&localStatus);
-	wpi_setError(localStatus);
-	return expiration / (kSystemClockTicksPerMicrosecond * 1e6);
-}
-
-/**
- * Configure how many seconds your watchdog can be neglected before it starves to death.
- * 
- * @param expiration The number of seconds before starvation following a meal (watchdog starves if it doesn't eat this often).
- */
-void Watchdog::SetExpiration(double expiration)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_fpgaWatchDog->writeExpiration((uint32_t)(expiration * (kSystemClockTicksPerMicrosecond * 1e6)), &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Find out if the watchdog is currently enabled or disabled (mortal or immortal).
- * 
- * @return Enabled or disabled.
- */
-bool Watchdog::GetEnabled()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	bool enabled = !m_fpgaWatchDog->readImmortal(&localStatus);
-	wpi_setError(localStatus);
-	return enabled;
-}
-
-/**
- * Enable or disable the watchdog timer.
- * 
- * When enabled, you must keep feeding the watchdog timer to
- * keep the watchdog active, and hence the dangerous parts 
- * (motor outputs, etc.) can keep functioning.
- * When disabled, the watchdog is immortal and will remain active
- * even without being fed.  It will also ignore any kill commands
- * while disabled.
- * 
- * @param enabled Enable or disable the watchdog.
- */
-void Watchdog::SetEnabled(bool enabled)
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	m_fpgaWatchDog->writeImmortal(!enabled, &localStatus);
-	wpi_setError(localStatus);
-}
-
-/**
- * Check in on the watchdog and make sure he's still kicking.
- * 
- * This indicates that your watchdog is allowing the system to operate.
- * It is still possible that the network communications is not allowing the
- * system to run, but you can check this to make sure it's not your fault.
- * Check IsSystemActive() for overall system status.
- * 
- * If the watchdog is disabled, then your watchdog is immortal.
- * 
- * @return Is the watchdog still alive?
- */
-bool Watchdog::IsAlive()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	bool alive = m_fpgaWatchDog->readStatus_Alive(&localStatus);
-	wpi_setError(localStatus);
-	return alive;
-}
-
-/**
- * Check on the overall status of the system.
- * 
- * @return Is the system active (i.e. PWM motor outputs, etc. enabled)?
- */
-bool Watchdog::IsSystemActive()
-{
-	tRioStatusCode localStatus = NiFpga_Status_Success;
-	bool alive = m_fpgaWatchDog->readStatus_SystemActive(&localStatus);
-	wpi_setError(localStatus);
-	return alive;
-}
-
diff --git a/aos/externals/WPILib/WPILib/Watchdog.h b/aos/externals/WPILib/WPILib/Watchdog.h
deleted file mode 100644
index 6af6a01..0000000
--- a/aos/externals/WPILib/WPILib/Watchdog.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*----------------------------------------------------------------------------*/
-/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
-/* Open Source Software - may be modified and shared by FRC teams. The code   */
-/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
-/*----------------------------------------------------------------------------*/
-
-#ifndef WATCHDOG_H
-#define WATCHDOG_H
-
-#include "ChipObject.h"
-#include "SensorBase.h"
-#include "Base.h"
-
-/**
- * Watchdog timer class.
- * The watchdog timer is designed to keep the robots safe. The idea is that the robot program must
- * constantly "feed" the watchdog otherwise it will shut down all the motor outputs. That way if a
- * program breaks, rather than having the robot continue to operate at the last known speed, the
- * motors will be shut down.
- * 
- * This is serious business.  Don't just disable the watchdog.  You can't afford it!
- * 
- * http://thedailywtf.com/Articles/_0x2f__0x2f_TODO_0x3a__Uncomment_Later.aspx
- */
-class Watchdog : public SensorBase
-{
-public:
-	static constexpr double kDefaultWatchdogExpiration = 0.5;
-
-	Watchdog();
-	virtual ~Watchdog();
-	bool Feed();
-	void Kill();
-	double GetTimer();
-	double GetExpiration();
-	void SetExpiration(double expiration);
-	bool GetEnabled();
-	void SetEnabled(bool enabled);
-	bool IsAlive();
-	bool IsSystemActive();
-
-private:
-	tWatchdog *m_fpgaWatchDog;
-	DISALLOW_COPY_AND_ASSIGN(Watchdog);
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTable.cpp b/aos/externals/WPILib/WPILib/networktables/NetworkTable.cpp
deleted file mode 100644
index e9b4c89..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTable.cpp
+++ /dev/null
@@ -1,340 +0,0 @@
-#include <map>
-#include "networktables/NetworkTable.h"
-#include <string>
-#include "networktables2/thread/NTThreadManager.h"
-#include "networktables2/thread/DefaultThreadManager.h"
-#include "networktables2/NetworkTableEntry.h"
-#include "networktables2/util/StringCache.h"
-#include "networktables/NetworkTableProvider.h"
-#include "networktables/NetworkTableMode.h"
-#include "OSAL/Synchronized.h"
-#include "tables/TableKeyNotDefinedException.h"
-#include "networktables2/type/DefaultEntryTypes.h"
-#include "tables/ITableListener.h"
-#include "networktables/NetworkTableConnectionListenerAdapter.h"
-#include "networktables/NetworkTableKeyListenerAdapter.h"
-#include "networktables/NetworkTableListenerAdapter.h"
-#include "networktables/NetworkTableSubListenerAdapter.h"
-
-
-const char NetworkTable::PATH_SEPARATOR_CHAR = '/';
-const std::string NetworkTable::PATH_SEPARATOR("/");
-const int NetworkTable::DEFAULT_PORT = 1735;
-
-DefaultThreadManager NetworkTable::threadManager;
-NetworkTableProvider* NetworkTable::staticProvider = NULL;
-NetworkTableNode* NetworkTable::staticNode = NULL;
-void* NetworkTable::streamFactory = NULL;
-NetworkTableEntryTypeManager* NetworkTable::typeManager = NULL;
-StreamDeleter streamDeleter = NULL;
-NetworkTableMode* NetworkTable::mode = &NetworkTableMode::Server;
-int NetworkTable::port = DEFAULT_PORT;
-std::string NetworkTable::ipAddress;
-NTReentrantSemaphore NetworkTable::STATIC_LOCK;
-
-
-
-
-
-
-void NetworkTable::CheckInit(){
-	printf("[NT] NetworkTable::CheckInit()...\n");
-	{
-		NTSynchronized sync(STATIC_LOCK);
-		if(staticProvider!=NULL)
-			throw new IllegalStateException("Network tables has already been initialized");
-	}
-}
-
-void NetworkTable::Initialize() {
-	CheckInit();
-	printf("[NT] NetworkTable::Initialize()...\n");
-	staticProvider = new NetworkTableProvider(*(staticNode = mode->CreateNode(ipAddress.c_str(), port, threadManager, streamFactory, streamDeleter, typeManager)));
-	printf("[NT] ...NetworkTable::Initialize().\n");
-}
-
-void NetworkTable::Shutdown() 
-{
-	if (staticProvider!=NULL)
-	{
-		delete staticProvider;
-		staticProvider=NULL;
-	}
-	if (staticNode!=NULL)
-	{
-		delete staticNode;
-		staticNode=NULL;
-	}
-	if (streamDeleter!=NULL && streamFactory!=NULL)
-	{
-	        streamDeleter(streamFactory);
-	        streamFactory=NULL;
-		streamDeleter=NULL;
-	}
-	if (typeManager!=NULL)
-	{
-		delete typeManager;
-		typeManager=NULL;
-	}
-}
-
-void NetworkTable::SetTableProvider(NetworkTableProvider* provider){
-	CheckInit();
-	staticProvider = provider;
-}
-
-void NetworkTable::SetClientMode(){
-	CheckInit();
-	mode = &NetworkTableMode::Client;
-}
-
-void NetworkTable::SetServerMode(){
-	CheckInit();
-	mode = &NetworkTableMode::Server;
-}
-
-void NetworkTable::SetTeam(int team){
-	char tmp[30];
-	sprintf(tmp, "%d.%d.%d.%d\n", 10, team/100, team%100, 2);
-	SetIPAddress(tmp);
-}
-
-void NetworkTable::SetIPAddress(const char* address){
-	CheckInit();
-	ipAddress = address;
-}
-
-NetworkTable* NetworkTable::GetTable(std::string key) {
-	printf("[NT] NetworkTable::GetTable()...\n");
-	if(staticProvider==NULL){
-		printf("[NT] \tInitializing...\n");
-		Initialize();
-	}
-	std::string tmp(PATH_SEPARATOR);
-	tmp+=key;
-	printf("[NT] ...Ready to get Table.\n");
-	return (NetworkTable*)staticProvider->GetTable(tmp);
-}
-
-
-
-NetworkTable::NetworkTable(std::string _path, NetworkTableProvider& _provider) :
-		path(_path), entryCache(_path), absoluteKeyCache(_path), provider(_provider), node(provider.GetNode()) {
-}
-NetworkTable::~NetworkTable(){
-}
-
-bool NetworkTable::IsConnected() {
-	return node.IsConnected();
-}
-
-bool NetworkTable::IsServer() {
-	return node.IsServer();
-}
-
-
-void NetworkTable::AddConnectionListener(IRemoteConnectionListener* listener, bool immediateNotify) {
-	map<IRemoteConnectionListener*, NetworkTableConnectionListenerAdapter*>::iterator itr = connectionListenerMap.find(listener);
-	if(itr != connectionListenerMap.end()){
-		throw IllegalStateException("Cannot add the same listener twice");
-	}
-	else{
-		NetworkTableConnectionListenerAdapter* adapter = new NetworkTableConnectionListenerAdapter(this, listener);
-		connectionListenerMap[listener] = adapter;
-		node.AddConnectionListener(adapter, immediateNotify);
-	}
-}
-
-void NetworkTable::RemoveConnectionListener(IRemoteConnectionListener* listener) {
-	map<IRemoteConnectionListener*, NetworkTableConnectionListenerAdapter*>::iterator itr = connectionListenerMap.find(listener);
-	if(itr != connectionListenerMap.end()){
-		node.RemoveConnectionListener(itr->second);
-		delete itr->second;
-		connectionListenerMap.erase(itr);
-	}
-}
-
-
-void NetworkTable::AddTableListener(ITableListener* listener) {
-	AddTableListener(listener, false);
-}
-
-void NetworkTable::AddTableListener(ITableListener* listener, bool immediateNotify) {
-	std::string tmp(path);
-	tmp+=PATH_SEPARATOR;
-	NetworkTableListenerAdapter* adapter = new NetworkTableListenerAdapter(tmp, this, listener);
-	listenerMap.insert ( pair<ITableListener*,ITableListener*>(listener, adapter) );
-	node.AddTableListener(adapter, immediateNotify);
-}
-void NetworkTable::AddTableListener(std::string key, ITableListener* listener, bool immediateNotify) {
-	NetworkTableKeyListenerAdapter* adapter = new NetworkTableKeyListenerAdapter(key, absoluteKeyCache.Get(key), this, listener);
-	listenerMap.insert ( pair<ITableListener*,ITableListener*>(listener, adapter) );
-	node.AddTableListener(adapter, immediateNotify);
-}
-void NetworkTable::AddSubTableListener(ITableListener* listener) {
-	NetworkTableSubListenerAdapter* adapter = new NetworkTableSubListenerAdapter(path, this, listener);
-	listenerMap.insert ( pair<ITableListener*,ITableListener*>(listener, adapter) );
-	node.AddTableListener(adapter, true);
-}
-
-void NetworkTable::RemoveTableListener(ITableListener* listener) {
-	multimap<ITableListener*,ITableListener*>::iterator itr;
-	pair<multimap<ITableListener*,ITableListener*>::iterator,multimap<ITableListener*,ITableListener*>::iterator> itrs = listenerMap.equal_range(listener);
-	for (itr=itrs.first; itr!=itrs.second; ++itr){
-		node.RemoveTableListener(itr->second);
-		delete itr->second;
-	}
-	listenerMap.erase(itrs.first, itrs.second);
-}
-
-NetworkTableEntry* NetworkTable::GetEntry(std::string key){
-	{ 
-		NTSynchronized sync(LOCK);
-		return entryCache.Get(key);
-	}
-}
-
-
-NetworkTable* NetworkTable::GetSubTable(std::string key) {
-	{ 
-		NTSynchronized sync(LOCK);
-		return (NetworkTable*)provider.GetTable(absoluteKeyCache.Get(key));
-	}
-}
-
-
-bool NetworkTable::ContainsKey(std::string key) {
-	return node.ContainsKey(absoluteKeyCache.Get(key));
-}
-	
-bool NetworkTable::ContainsSubTable(std::string key){
-        std::string subtablePrefix(absoluteKeyCache.Get(key));
-        subtablePrefix+=PATH_SEPARATOR;
-	std::vector<std::string>* keys = node.GetEntryStore().keys();
-	for(unsigned int i = 0; i<keys->size(); ++i){
-		if(keys->at(i).compare(0, subtablePrefix.size(), subtablePrefix)==0){
-			delete keys;
-			return true;
-		}
-	}
-	delete keys;
-	return false;
-}
-
-
-void NetworkTable::PutNumber(std::string key, double value) {
-	EntryValue eValue;
-	eValue.f = value;
-	PutValue(key, &DefaultEntryTypes::DOUBLE, eValue);
-}
-
-
-double NetworkTable::GetNumber(std::string key) {
-	return node.GetDouble(absoluteKeyCache.Get(key));
-}
-
-
-double NetworkTable::GetNumber(std::string key, double defaultValue) {
-	try {
-		return node.GetDouble(absoluteKeyCache.Get(key));
-	} catch (TableKeyNotDefinedException& e) {
-		return defaultValue;
-	}
-}
-
-
-void NetworkTable::PutString(std::string key, std::string value) {
-	EntryValue eValue;
-	eValue.ptr = &value;
-	PutValue(key, &DefaultEntryTypes::STRING, eValue);
-}
-
-
-std::string NetworkTable::GetString(std::string key) {
-	return node.GetString(absoluteKeyCache.Get(key));
-}
-
-
-std::string NetworkTable::GetString(std::string key, std::string defaultValue) {
-	try {
-		return node.GetString(absoluteKeyCache.Get(key));
-	} catch (TableKeyNotDefinedException& e) {
-		return defaultValue;
-	}
-}
-
-
-void NetworkTable::PutBoolean(std::string key, bool value) {
-	EntryValue eValue;
-	eValue.b = value;
-	PutValue(key, &DefaultEntryTypes::BOOLEAN, eValue);
-}
-
-
-bool NetworkTable::GetBoolean(std::string key) {
-	return node.GetBoolean(absoluteKeyCache.Get(key));
-}
-
-
-bool NetworkTable::GetBoolean(std::string key, bool defaultValue) {
-	try {
-		return node.GetBoolean(absoluteKeyCache.Get(key));
-	} catch (TableKeyNotDefinedException& e) {
-		return defaultValue;
-	}
-}
-
-void NetworkTable::PutValue(std::string key, NetworkTableEntryType* type, EntryValue value){
-	NetworkTableEntry* entry = entryCache.Get(key);
-	if(entry!=NULL)
-		node.PutValue(entry, value);//TODO pass type along or do some kind of type check
-	else
-		node.PutValue(absoluteKeyCache.Get(key), type, value);
-}
-
-void NetworkTable::RetrieveValue(std::string key, ComplexData& externalValue) {
-	node.retrieveValue(absoluteKeyCache.Get(key), externalValue);
-}
-
-
-void NetworkTable::PutValue(std::string key, ComplexData& value){
-	EntryValue eValue;
-	eValue.ptr = &value;
-	PutValue(key, &value.GetType(), eValue);
-}
-
-
-EntryValue NetworkTable::GetValue(std::string key) {
-	return node.GetValue(absoluteKeyCache.Get(key));
-}
-
-EntryValue NetworkTable::GetValue(std::string key, EntryValue defaultValue) {
-	try {
-		return node.GetValue(absoluteKeyCache.Get(key));
-	} catch(TableKeyNotDefinedException& e){
-		return defaultValue;
-	}
-}
-
-
-
-
-
-
-//NetworkTableKeyCache
-NetworkTableKeyCache::NetworkTableKeyCache(std::string _path):path(_path){}
-NetworkTableKeyCache::~NetworkTableKeyCache(){}
-std::string NetworkTableKeyCache::Calc(const std::string& key){
-  std::string tmp(path);
-  tmp+=NetworkTable::PATH_SEPARATOR;
-  tmp+=key;
-  return tmp;
-}
-//Entry Cache
-EntryCache::EntryCache(std::string& _path):path(_path){}
-EntryCache::~EntryCache(){}
-
-NetworkTableEntry* EntryCache::Get(std::string& key){
-	return cache[key];
-}
-
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTable.h b/aos/externals/WPILib/WPILib/networktables/NetworkTable.h
deleted file mode 100644
index 8c49e3f..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTable.h
+++ /dev/null
@@ -1,341 +0,0 @@
-#ifndef _NETWORKTABLE_H_
-#define _NETWORKTABLE_H_
-
-class NetworkTable;
-class NetworkTableKeyCache;
-class EntryCache;
-
-#include <map>
-#include <string>
-#include "tables/ITable.h"
-#include "tables/IRemote.h"
-#include "networktables2/thread/NTThreadManager.h"
-#include "networktables2/NetworkTableEntry.h"
-#include "networktables2/util/StringCache.h"
-#include "networktables/NetworkTableProvider.h"
-#include "networktables/NetworkTableMode.h"
-#include "networktables2/thread/DefaultThreadManager.h"
-#include "networktables/NetworkTableConnectionListenerAdapter.h"
-#include "networktables/NetworkTableListenerAdapter.h"
-#include "tables/IRemoteConnectionListener.h"
-
-
-
-using namespace std;
-
-
-
-class NetworkTableKeyCache: public StringCache{
-private:
-	const std::string path;
-
-public: 
-	NetworkTableKeyCache(std::string path);
-	~NetworkTableKeyCache();
-
-	std::string Calc(const std::string& key);
-};
-
-
-class EntryCache {
-private:
-	map<std::string, NetworkTableEntry*> cache;
-	std::string& path;
-public:
-	EntryCache(std::string& path);
-	~EntryCache();
-	
-	NetworkTableEntry* Get(std::string& key);
-};
-
-
-
-class NetworkTable : public ITable, IRemote {
-	
-private:
-	static DefaultThreadManager threadManager;
-	static NetworkTableProvider* staticProvider;
-	static NetworkTableNode* staticNode;
-	static void* streamFactory;
-	static NetworkTableEntryTypeManager* typeManager;
-	static NetworkTableMode* mode;
-	static int port;
-	static std::string ipAddress;
-	static NTReentrantSemaphore STATIC_LOCK;
-	
-	
-	
-	std::string path;
-	EntryCache entryCache;
-	NetworkTableKeyCache absoluteKeyCache;
-	NetworkTableProvider& provider;
-	NetworkTableNode& node;
-	NTReentrantSemaphore LOCK;
-	
-	
-	map<IRemoteConnectionListener*, NetworkTableConnectionListenerAdapter*> connectionListenerMap;
-	multimap<ITableListener*, ITableListener*> listenerMap;
-	
-	static void CheckInit();
-	
-	NetworkTableEntry* GetEntry(std::string key);
-	
-public:
-
-	static const char PATH_SEPARATOR_CHAR;
-	/**
-	 * The path separator for sub-tables and keys
-	 * 
-	 */
-	static const std::string PATH_SEPARATOR;
-	/**
-	 * The default port that network tables operates on
-	 */
-	static const int DEFAULT_PORT;
-	
-	/**
-	 * @throws IOException
-	 */
-	static void Initialize();
-	static void Shutdown();
-
-	/**
-	 * set the table provider for static network tables methods
-	 * This must be called before getTable
-	 */
-	static void SetTableProvider(NetworkTableProvider* provider);
-	
-	/**
-	 * set that network tables should be a client
-	 * This must be called before initalize or GetTable
-	 */
-	static void SetClientMode();
-	
-	/**
-	 * set that network tables should be a server
-	 * This must be called before initalize or GetTable
-	 */
-	static void SetServerMode();
-	
-	/**
-	 * set the team the robot is configured for (this will set the ip address that network tables will connect to in client mode)
-	 * This must be called before initalize or GetTable
-	 * @param team the team number
-	 */
-	static void SetTeam(int team);
-	/**
-	 * @param address the adress that network tables will connect to in client mode
-	 */
-	static void SetIPAddress(const char* address);
-	/**
-	 * Gets the table with the specified key. If the table does not exist, a new table will be created.<br>
-	 * This will automatically initialize network tables if it has not been already
-	 * 
-	 * @param key
-	 *            the key name
-	 * @return the network table requested
-	 */
-	static NetworkTable* GetTable(std::string key);
-	
-
-	NetworkTable(std::string path, NetworkTableProvider& provider);
-	virtual ~NetworkTable();
-	
-	bool IsConnected();
-
-	bool IsServer();
-	
-	
-	
-	
-	
-	
-	
-	void AddConnectionListener(IRemoteConnectionListener* listener, bool immediateNotify);
-
-	void RemoveConnectionListener(IRemoteConnectionListener* listener);
-	
-
-	void AddTableListener(ITableListener* listener);
-
-	
-	void AddTableListener(ITableListener* listener, bool immediateNotify);
-	void AddTableListener(std::string key, ITableListener* listener, bool immediateNotify);
-	void AddSubTableListener(ITableListener* listener);
-
-	void RemoveTableListener(ITableListener* listener);
-	
-	
-
-	/**
-	 * Returns the table at the specified key. If there is no table at the
-	 * specified key, it will create a new table
-	 * 
-	 * @param key
-	 *            the key name
-	 * @return the networktable to be returned
-	 */
-	NetworkTable* GetSubTable(std::string key);
-
-
-	/**
-	 * Checks the table and tells if it contains the specified key
-	 * 
-	 * @param key
-	 *            the key to be checked
-	 */
-	bool ContainsKey(std::string key);
-        
-	bool ContainsSubTable(std::string key);
-
-	/**
-	 * Maps the specified key to the specified value in this table. The key can
-	 * not be null. The value can be retrieved by calling the get method with a
-	 * key that is equal to the original key.
-	 * 
-	 * @param key
-	 *            the key
-	 * @param value
-	 *            the value
-	 */
-	void PutNumber(std::string key, double value);
-
-	/**
-	 * Returns the key that the name maps to.
-	 * 
-	 * @param key
-	 *            the key name
-	 * @return the key
-	 * @throws TableKeyNotDefinedException
-	 *             if the specified key is null
-	 */
-	double GetNumber(std::string key);
-
-	/**
-	 * Returns the key that the name maps to. If the key is null, it will return
-	 * the default value
-	 * 
-	 * @param key
-	 *            the key name
-	 * @param defaultValue
-	 *            the default value if the key is null
-	 * @return the key
-	 */
-	double GetNumber(std::string key, double defaultValue);
-
-	/**
-	 * Maps the specified key to the specified value in this table. The key can
-	 * not be null. The value can be retrieved by calling the get method with a
-	 * key that is equal to the original key.
-	 * 
-	 * @param key
-	 *            the key
-	 * @param value
-	 *            the value
-	 */
-	void PutString(std::string key, std::string value);
-
-	/**
-	 * Returns the key that the name maps to.
-	 * 
-	 * @param key
-	 *            the key name
-	 * @return the key
-	 * @throws TableKeyNotDefinedException
-	 *             if the specified key is null
-	 */
-	std::string GetString(std::string key);
-
-	/**
-	 * Returns the key that the name maps to. If the key is null, it will return
-	 * the default value
-	 * 
-	 * @param key
-	 *            the key name
-	 * @param defaultValue
-	 *            the default value if the key is null
-	 * @return the key
-	 */
-	std::string GetString(std::string key, std::string defaultValue);
-
-	/**
-	 * Maps the specified key to the specified value in this table. The key can
-	 * not be null. The value can be retrieved by calling the get method with a
-	 * key that is equal to the original key.
-	 * 
-	 * @param key
-	 *            the key
-	 * @param value
-	 *            the value
-	 */
-	void PutBoolean(std::string key, bool value);
-
-	/**
-	 * Returns the key that the name maps to.
-	 * 
-	 * @param key
-	 *            the key name
-	 * @return the key
-	 * @throws TableKeyNotDefinedException
-	 *             if the specified key is null
-	 */
-	bool GetBoolean(std::string key);
-
-	/**
-	 * Returns the key that the name maps to. If the key is null, it will return
-	 * the default value
-	 * 
-	 * @param key
-	 *            the key name
-	 * @param defaultValue
-	 *            the default value if the key is null
-	 * @return the key
-	 */
-	bool GetBoolean(std::string key, bool defaultValue);
-	
-
-	void PutValue(std::string key, NetworkTableEntryType* type, EntryValue value);
-	
-
-    void RetrieveValue(std::string key, ComplexData& externalValue);
-        
-	/**
-	 * Maps the specified key to the specified value in this table. The key can
-	 * not be null. The value can be retrieved by calling the get method with a
-	 * key that is equal to the original key.
-	 * 
-	 * @param key the key name
-	 * @param value the value to be put
-	 */
-	void PutValue(std::string key, ComplexData& value);
-	
-	/**
-	 * Returns the key that the name maps to.
-	 * NOTE: If the value is a double, it will return a Double object,
-	 * not a primitive.  To get the primitive, use GetDouble
-	 * 
-	 * @param key
-	 *            the key name
-	 * @return the key
-	 * @throws TableKeyNotDefinedException
-	 *             if the specified key is null
-	 */
-	EntryValue GetValue(std::string key);
-	
-	/**
-	 * Returns the key that the name maps to. If the key is null, it will return
-	 * the default value
-	 * NOTE: If the value is a double, it will return a Double object,
-	 * not a primitive.  To get the primitive, use GetDouble
-	 * 
-	 * @param key
-	 *            the key name
-	 * @param defaultValue
-	 *            the default value if the key is null
-	 * @return the key
-	 */
-	 EntryValue GetValue(std::string key, EntryValue defaultValue);
-
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTableConnectionListenerAdapter.cpp b/aos/externals/WPILib/WPILib/networktables/NetworkTableConnectionListenerAdapter.cpp
deleted file mode 100644
index 879d0e8..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTableConnectionListenerAdapter.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * NetworkTableConnectionListenerAdapter.cpp
- *
- *  Created on: Oct 17, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables/NetworkTableConnectionListenerAdapter.h"
-
-
-NetworkTableConnectionListenerAdapter::NetworkTableConnectionListenerAdapter(IRemote* _targetSource, IRemoteConnectionListener* _targetListener):
-			targetSource(_targetSource), targetListener(_targetListener){}
-NetworkTableConnectionListenerAdapter::~NetworkTableConnectionListenerAdapter(){}
-
-void NetworkTableConnectionListenerAdapter::Connected(IRemote* remote) {
-	targetListener->Connected(targetSource);
-}
-
-void NetworkTableConnectionListenerAdapter::Disconnected(IRemote* remote) {
-	targetListener->Disconnected(targetSource);
-}
-
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTableConnectionListenerAdapter.h b/aos/externals/WPILib/WPILib/networktables/NetworkTableConnectionListenerAdapter.h
deleted file mode 100644
index 8b9ef9d..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTableConnectionListenerAdapter.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * NetworkTableConnectionListenerAdapter.h
- *
- *  Created on: Oct 17, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NETWORKTABLECONNECTIONLISTENERADAPTER_H_
-#define NETWORKTABLECONNECTIONLISTENERADAPTER_H_
-
-
-class NetworkTableConnectionListenerAdapter;
-
-#include "tables/IRemote.h"
-#include "tables/IRemoteConnectionListener.h"
-
-
-class NetworkTableConnectionListenerAdapter : public IRemoteConnectionListener{
-private:
-	IRemote* targetSource;
-	IRemoteConnectionListener* targetListener;
-
-public:
-	NetworkTableConnectionListenerAdapter(IRemote* targetSource, IRemoteConnectionListener* targetListener);
-	virtual ~NetworkTableConnectionListenerAdapter();
-	void Connected(IRemote* remote);
-	void Disconnected(IRemote* remote);
-};
-
-
-#endif /* NETWORKTABLECONNECTIONLISTENERADAPTER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTableKeyListenerAdapter.cpp b/aos/externals/WPILib/WPILib/networktables/NetworkTableKeyListenerAdapter.cpp
deleted file mode 100644
index f472571..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTableKeyListenerAdapter.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * NetworkTableKeyListenerAdapter.cpp
- *
- *  Created on: Oct 17, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables/NetworkTableKeyListenerAdapter.h"
-
-
-
-NetworkTableKeyListenerAdapter::NetworkTableKeyListenerAdapter(std::string _relativeKey, std::string _fullKey, NetworkTable* _targetSource, ITableListener* _targetListener):
-		relativeKey(_relativeKey), fullKey(_fullKey), targetSource(_targetSource), targetListener(_targetListener){}
-
-NetworkTableKeyListenerAdapter::~NetworkTableKeyListenerAdapter(){}
-
-void NetworkTableKeyListenerAdapter::ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew) {
-	if(key==fullKey){
-		targetListener->ValueChanged(targetSource, relativeKey, value, isNew);
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTableKeyListenerAdapter.h b/aos/externals/WPILib/WPILib/networktables/NetworkTableKeyListenerAdapter.h
deleted file mode 100644
index a7a332f..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTableKeyListenerAdapter.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * NetworkTableKeyListenerAdapter.h
- *
- *  Created on: Oct 17, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NETWORKTABLEKEYLISTENERADAPTER_H_
-#define NETWORKTABLEKEYLISTENERADAPTER_H_
-
-
-class NetworkTableKeyListenerAdapter;
-
-#include "tables/ITableListener.h"
-#include "tables/ITable.h"
-#include <string>
-#include "networktables/NetworkTable.h"
-
-
-
-class NetworkTableKeyListenerAdapter : public ITableListener{
-private:
-	std::string relativeKey;
-	std::string fullKey;
-	NetworkTable* targetSource;
-	ITableListener* targetListener;
-public:
-	NetworkTableKeyListenerAdapter(std::string relativeKey, std::string fullKey, NetworkTable* targetSource, ITableListener* targetListener);
-	virtual ~NetworkTableKeyListenerAdapter();
-    void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-};
-
-
-#endif /* NETWORKTABLEKEYLISTENERADAPTER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTableListenerAdapter.cpp b/aos/externals/WPILib/WPILib/networktables/NetworkTableListenerAdapter.cpp
deleted file mode 100644
index 9964e95..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTableListenerAdapter.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * NetworkTableListenerAdapter.cpp
- *
- *  Created on: Oct 17, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables/NetworkTableListenerAdapter.h"
-#include "networktables/NetworkTable.h"
-
-
-
-NetworkTableListenerAdapter::NetworkTableListenerAdapter(std::string _prefix, ITable* _targetSource, ITableListener* _targetListener) :
-	prefix(_prefix), targetSource(_targetSource), targetListener(_targetListener){}
-
-NetworkTableListenerAdapter::~NetworkTableListenerAdapter(){}
-
-void NetworkTableListenerAdapter::ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew) {//TODO use string cache
-	if(key.compare(0,prefix.size(),prefix)==0){
-		std::string relativeKey = key.substr(prefix.length());
-		if(std::string::npos != relativeKey.find(NetworkTable::PATH_SEPARATOR_CHAR))
-			return;
-		targetListener->ValueChanged(targetSource, relativeKey, value, isNew);
-	}
-}
-
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTableListenerAdapter.h b/aos/externals/WPILib/WPILib/networktables/NetworkTableListenerAdapter.h
deleted file mode 100644
index 5b0fd70..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTableListenerAdapter.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * NetworkTableListenerAdapter.h
- *
- *  Created on: Oct 17, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NETWORKTABLELISTENERADAPTER_H_
-#define NETWORKTABLELISTENERADAPTER_H_
-
-class NetworkTableListenerAdapter;
-
-#include "tables/ITableListener.h"
-#include "tables/ITable.h"
-#include <string>
-
-
-class NetworkTableListenerAdapter : public ITableListener{
-private:
-	std::string prefix;
-	ITable* targetSource;
-	ITableListener* targetListener;
-public:
-	NetworkTableListenerAdapter(std::string prefix, ITable* targetSource, ITableListener* targetListener);
-	virtual ~NetworkTableListenerAdapter();
-    void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-};
-
-
-#endif /* NETWORKTABLELISTENERADAPTER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTableMode.cpp b/aos/externals/WPILib/WPILib/networktables/NetworkTableMode.cpp
deleted file mode 100644
index 95fa1e7..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTableMode.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * NetworkTableMode.cpp
- *
- *  Created on: Oct 16, 2012
- *      Author: Mitchell Wills
- */
-
-#include <string>
-#include "networktables2/thread/NTThreadManager.h"
-#include "networktables2/NetworkTableNode.h"
-#include "networktables2/server/NetworkTableServer.h"
-#include "networktables2/client/NetworkTableClient.h"
-#include "networktables2/stream/SocketServerStreamProvider.h"
-#include "networktables2/stream/SocketStreamFactory.h"
-#include "networktables/NetworkTableMode.h"
-
-
-NetworkTableServerMode NetworkTableMode::Server;
-NetworkTableClientMode NetworkTableMode::Client;
-
-NetworkTableServerMode::NetworkTableServerMode(){}
-NetworkTableClientMode::NetworkTableClientMode(){}
-
-static void deleteIOStreamProvider(void* ptr){
-  delete (IOStreamProvider*)ptr;
-}
-static void deleteIOStreamFactory(void* ptr){
-  delete (IOStreamFactory*)ptr;
-}
-
-NetworkTableNode* NetworkTableServerMode::CreateNode(const char* ipAddress, int port, NTThreadManager& threadManager, void*& streamFactory_out, StreamDeleter& streamDeleter_out, NetworkTableEntryTypeManager*& typeManager_out){
-	IOStreamProvider* streamProvider = new SocketServerStreamProvider(port);
-	streamFactory_out = streamProvider;
-	typeManager_out = new NetworkTableEntryTypeManager();
-	streamDeleter_out = deleteIOStreamFactory;
-	return new NetworkTableServer(*streamProvider, *typeManager_out, threadManager);
-}
-NetworkTableNode* NetworkTableClientMode::CreateNode(const char* ipAddress, int port, NTThreadManager& threadManager, void*& streamFactory_out, StreamDeleter& streamDeleter_out, NetworkTableEntryTypeManager*& typeManager_out){
-	IOStreamFactory* streamFactory = new SocketStreamFactory(ipAddress, port);
-	streamFactory_out = streamFactory;
-	typeManager_out = new NetworkTableEntryTypeManager();
-	streamDeleter_out = deleteIOStreamProvider;
-	return new NetworkTableClient(*streamFactory, *typeManager_out, threadManager);
-}
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTableMode.h b/aos/externals/WPILib/WPILib/networktables/NetworkTableMode.h
deleted file mode 100644
index bf3e4c1..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTableMode.h
+++ /dev/null
@@ -1,50 +0,0 @@
-#ifndef _NETWORKTABLEMODE_H_
-#define _NETWORKTABLEMODE_H_
-
-
-class NetworkTableMode;
-class NetworkTableServerMode;
-class NetworkTableClientMode;
-
-#include <string>
-#include "networktables2/NetworkTableNode.h"
-#include "networktables2/thread/NTThreadManager.h"
-
-typedef void (*StreamDeleter)(void*);
-/**
- * 
- * Represents a different modes that network tables can be configured in
- * 
- * @author Mitchell
- *
- */
-class NetworkTableMode {
-public:
-	
-	/**
-	 * @param ipAddress the IP address configured by the user
-	 * @param port the port configured by the user
-	 * @param threadManager the thread manager that should be used for threads in the node
-	 * @return a new node that can back a network table
-	 * @throws IOException
-	 */
-	virtual NetworkTableNode* CreateNode(const char* ipAddress, int port, NTThreadManager& threadManager, void*& streamFactory_out, StreamDeleter& streamDeleter_out, NetworkTableEntryTypeManager*& typeManager_out) = 0;
-	
-	static NetworkTableServerMode Server;
-	static NetworkTableClientMode Client;
-};
-
-class NetworkTableServerMode : public NetworkTableMode{
-public:
-	NetworkTableServerMode();
-	virtual NetworkTableNode* CreateNode(const char* ipAddress, int port, NTThreadManager& threadManager, void*& streamFactory_out, StreamDeleter& streamDeleter_out, NetworkTableEntryTypeManager*& typeManager_out);
-};
-
-class NetworkTableClientMode : public NetworkTableMode{
-public:
-	NetworkTableClientMode();
-	virtual NetworkTableNode* CreateNode(const char* ipAddress, int port, NTThreadManager& threadManager, void*& streamFactory_out, StreamDeleter& streamDeleter_out, NetworkTableEntryTypeManager*& typeManager_out);
-};
-
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTableProvider.cpp b/aos/externals/WPILib/WPILib/networktables/NetworkTableProvider.cpp
deleted file mode 100644
index b7e94a3..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTableProvider.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-#include <map>
-#include <string>
-
-#include "tables/ITableProvider.h"
-#include "networktables2/NetworkTableNode.h"
-#include "networktables/NetworkTable.h"
-
-
-#include "networktables/NetworkTableProvider.h"
-
-
-
-using namespace std;
-
-		
-
-NetworkTableProvider::NetworkTableProvider(NetworkTableNode& _node) : node(_node){}
-NetworkTableProvider::~NetworkTableProvider(){
-  while(tables.size()>0){
-    map<std::string, NetworkTable*>::iterator it = tables.begin();
-    delete it->second;
-    tables.erase(it);
-  }
-}
-
-ITable* NetworkTableProvider::GetRootTable(){
-	return GetTable("");
-}
-
-ITable* NetworkTableProvider::GetTable(std::string key){
-	if(tables.find(key) != tables.end())
-	{
-		return tables[key];
-	}
-	else
-	{
-		NetworkTable* table = new NetworkTable(key, *this);
-		tables[key] = table;
-		return table;
-	}
-}
-
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTableProvider.h b/aos/externals/WPILib/WPILib/networktables/NetworkTableProvider.h
deleted file mode 100644
index efb5615..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTableProvider.h
+++ /dev/null
@@ -1,48 +0,0 @@
-#ifndef _NETWORKTABLEPROVIDER_H_
-#define _NETWORKTABLEPROVIDER_H_
-
-
-class NetworkTableProvider;
-
-#include <string>
-
-#include "tables/ITableProvider.h"
-#include "networktables2/NetworkTableNode.h"
-#include "networktables/NetworkTable.h"
-
-using namespace std;
-
-class NetworkTableProvider : public ITableProvider
-{
-private:
-	NetworkTableNode& node;
-	map<std::string, NetworkTable*> tables;
-
-	/**
-	 * Create a new NetworkTableProvider for a given NetworkTableNode
-	 * @param node the node that handles the actual network table 
-	 */
-public:
-	NetworkTableProvider(NetworkTableNode& node);
-	virtual ~NetworkTableProvider();
-	
-	ITable* GetRootTable();
-
-	ITable* GetTable(std::string key);
-
-	/**
-	 * @return the Network Table node that backs the Tables returned by this provider
-	 */
-	NetworkTableNode& GetNode() {
-		return node;
-	};
-
-	/**
-	 * close the backing network table node
-	 */
-	void Close() {
-		node.Close();
-	};
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTableSubListenerAdapter.cpp b/aos/externals/WPILib/WPILib/networktables/NetworkTableSubListenerAdapter.cpp
deleted file mode 100644
index a2c97dd..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTableSubListenerAdapter.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * NetworkTableSubListenerAdapter.cpp
- *
- *  Created on: Oct 17, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables/NetworkTableSubListenerAdapter.h"
-
-
-
-	/**
-	 * Create a new adapter
-	 * @param prefix the prefix of the current table
-	 * @param targetSource the source that events passed to the target listener will appear to come from
-	 * @param targetListener the listener where events are forwarded to
-	 */
-NetworkTableSubListenerAdapter::NetworkTableSubListenerAdapter(std::string& _prefix, NetworkTable* _targetSource, ITableListener* _targetListener):
-	prefix(_prefix), targetSource(_targetSource), targetListener(_targetListener){}
-
-NetworkTableSubListenerAdapter::~NetworkTableSubListenerAdapter(){}
-
-	void NetworkTableSubListenerAdapter::ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew) {//TODO use string cache
-            if(key.compare(0,prefix.size(),prefix)==0){
-                std::string relativeKey = key.substr(prefix.length()+1);
-                int endSubTable = -1;//TODO implement sub table listening better
-                for(unsigned int i = 0; i<relativeKey.length(); ++i){
-                    if(relativeKey.at(i)==NetworkTable::PATH_SEPARATOR_CHAR){//is sub table
-                        endSubTable = i;
-                        break;
-                    }
-                }
-                if(endSubTable!=-1){
-                    std::string subTableKey = relativeKey.substr(0, endSubTable);
-                    if(notifiedTables.find(subTableKey)==notifiedTables.end()){
-                        notifiedTables.insert(subTableKey);
-                        EntryValue eValue;
-                        eValue.ptr = targetSource->GetSubTable(subTableKey);
-                        targetListener->ValueChanged(targetSource, subTableKey, eValue, true);
-                    }
-                }
-            }
-	}
diff --git a/aos/externals/WPILib/WPILib/networktables/NetworkTableSubListenerAdapter.h b/aos/externals/WPILib/WPILib/networktables/NetworkTableSubListenerAdapter.h
deleted file mode 100644
index 4796606..0000000
--- a/aos/externals/WPILib/WPILib/networktables/NetworkTableSubListenerAdapter.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * NetworkTableSubListenerAdapter.h
- *
- *  Created on: Oct 17, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NETWORKTABLESUBLISTENERADAPTER_H_
-#define NETWORKTABLESUBLISTENERADAPTER_H_
-
-
-class NetworkTableSubListenerAdapter;
-
-#include "tables/ITableListener.h"
-#include "tables/ITable.h"
-#include <string>
-#include <set>
-#include "networktables/NetworkTable.h"
-
-
-using namespace std;
-
-class NetworkTableSubListenerAdapter : public ITableListener{
-private:
-	std::string& prefix;
-	NetworkTable* targetSource;
-	ITableListener* targetListener;
-	set<std::string> notifiedTables;
-
-public:
-	NetworkTableSubListenerAdapter(std::string& prefix, NetworkTable* targetSource, ITableListener* targetListener);
-	virtual ~NetworkTableSubListenerAdapter();
-    void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew);
-};
-
-
-
-#endif /* NETWORKTABLESUBLISTENERADAPTER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/AbstractNetworkTableEntryStore.cpp b/aos/externals/WPILib/WPILib/networktables2/AbstractNetworkTableEntryStore.cpp
deleted file mode 100644
index 8d268b2..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/AbstractNetworkTableEntryStore.cpp
+++ /dev/null
@@ -1,214 +0,0 @@
-/*
- * AbstractNetworkTableEntryStore.cpp
- *
- *  Created on: Sep 16, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/AbstractNetworkTableEntryStore.h"
-#include "networktables2/TableKeyExistsWithDifferentTypeException.h"
-#include <map>
-#include <vector>
-#include <iostream>
-#include <stdio.h>
-
-	AbstractNetworkTableEntryStore::AbstractNetworkTableEntryStore(TableListenerManager& lstnManager): 
-			listenerManager(lstnManager){
-	}
-	
-	AbstractNetworkTableEntryStore::~AbstractNetworkTableEntryStore(){
-		LOCK.take();
-		std::map<std::string, NetworkTableEntry*>::iterator itr;
-		for(itr = namedEntries.begin(); itr != namedEntries.end();){
-		    delete itr->second;
-		    namedEntries.erase(itr++);
-		}
-	}
-	
-	/**
-	 * Get an entry based on it's name
-	 * @param name the name of the entry to look for
-	 * @return the entry or null if the entry does not exist
-	 */
-	NetworkTableEntry* AbstractNetworkTableEntryStore::GetEntry(std::string& name){
-		{ 
-			NTSynchronized sync(block_namedEntries);
-			std::map<std::string, NetworkTableEntry*>::iterator value_itr = namedEntries.find(name);
-			if(value_itr != namedEntries.end()) {
-				return value_itr->second;
-			}
-			return NULL;
-		}
-	}
-	
-	NetworkTableEntry* AbstractNetworkTableEntryStore::GetEntry(EntryId entryId){
-		{ 
-			NTSynchronized sync(block_namedEntries);
-			
-			std::map<EntryId, NetworkTableEntry*>::iterator value_itr = idEntries.find(entryId);
-			if(value_itr != idEntries.end()) {
-				return value_itr->second;
-			}
-			return NULL;
-		}
-	}
-	
-	std::vector<std::string>* AbstractNetworkTableEntryStore::keys(){
-		{ 
-			NTSynchronized sync(block_namedEntries);
-			std::vector<std::string>* keys = new std::vector<std::string>();
-			std::map<std::string, NetworkTableEntry*>::iterator itr;
-			
-			for(itr = namedEntries.begin(); itr != namedEntries.end(); itr++)
-			{
-				std::string key = (*itr).first;
-				keys->push_back(key);
-			}
-			
-			return (keys);
-		}
-		
-	}
-	
-	/**
-	 * Remove all entries
-         * NOTE: This method should not be used with applications which cache entries which would lead to unknown results
-         * This method is for use in testing only
-	 */
-	void AbstractNetworkTableEntryStore::clearEntries(){
-		{ 
-			NTSynchronized sync(block_namedEntries);
-			namedEntries.clear();
-			idEntries.clear();
-		}
-	}
-	
-	/**
-	 * clear the id's of all entries
-	 */
-	void AbstractNetworkTableEntryStore::clearIds(){
-		{ 
-			NTSynchronized sync(block_namedEntries);
-			std::map<std::string, NetworkTableEntry*>::iterator itr;
-			idEntries.clear();
-			
-			for(itr = namedEntries.begin(); itr != namedEntries.end(); itr++)
-			{
-				((NetworkTableEntry*)(*itr).second)->ClearId();
-			}
-		}
-	}
-	
-	void AbstractNetworkTableEntryStore::SetOutgoingReceiver(OutgoingEntryReceiver* receiver){
-		outgoingReceiver = receiver;
-	}
-	
-	void AbstractNetworkTableEntryStore::SetIncomingReceiver(OutgoingEntryReceiver* receiver){
-		incomingReceiver = receiver;
-	}
-	
-	/**
-	 * Stores the given value under the given name and queues it for 
-	 * transmission to the server.
-	 * 
-	 * @param name The name under which to store the given value.
-	 * @param type The type of the given value.
-	 * @param value The value to store.
-	 * @throws TableKeyExistsWithDifferentTypeException Thrown if an 
-	 *  entry already exists with the given name and is of a different type.
-	 */
-	void AbstractNetworkTableEntryStore::PutOutgoing(std::string& name, NetworkTableEntryType* type, EntryValue value){
-		{ 
-			NTSynchronized sync(block_namedEntries);
-			std::map<std::string, NetworkTableEntry*>::iterator index = namedEntries.find(name);
-			NetworkTableEntry* tableEntry;
-			if(index == namedEntries.end())//if the name does not exist in the current entries
-			  {
-				tableEntry = new NetworkTableEntry(name, type, value);
-				if(addEntry(tableEntry))
-				{
-					tableEntry->FireListener(listenerManager);
-					outgoingReceiver->offerOutgoingAssignment(tableEntry);
-				}
-			}
-			else
-			{
-				tableEntry = index->second;
-				if(tableEntry->GetType()->id != type->id){
-					throw TableKeyExistsWithDifferentTypeException(name, tableEntry->GetType());
-				}
-				
-				EntryValue oldValue = tableEntry->GetValue();
-				if(!type->areEqual(value, oldValue)){
-				  if(updateEntry(tableEntry, (SequenceNumber)(tableEntry->GetSequenceNumber() + 1), value)){
-				    outgoingReceiver->offerOutgoingUpdate(tableEntry);
-				  }
-				
-				  tableEntry->FireListener(listenerManager);
-				}
-			}
-		}
-	}
-	
-	void AbstractNetworkTableEntryStore::PutOutgoing(NetworkTableEntry* tableEntry, EntryValue value){
-		{ 
-			NTSynchronized sync(LOCK);
-			NetworkTableEntryType* type = tableEntry->GetType();
-			EntryValue oldValue = tableEntry->GetValue();
-			if(!type->areEqual(value, oldValue)){
-			  if(updateEntry(tableEntry, (SequenceNumber)(tableEntry->GetSequenceNumber() + 1), value)){
-			    outgoingReceiver->offerOutgoingUpdate(tableEntry);
-			  }
-			
-			  tableEntry->FireListener(listenerManager);
-			}
-		}
-	}
-	
-	void AbstractNetworkTableEntryStore::offerIncomingAssignment(NetworkTableEntry* entry){
-		{ 
-			NTSynchronized sync(block_namedEntries);
-			std::map<std::string, NetworkTableEntry*>::iterator itr = namedEntries.find(entry->name);
-			NetworkTableEntry* tableEntry;
-			if(addEntry(entry)){
-				if(itr != namedEntries.end()){
-					tableEntry = itr->second;
-				}
-				else{
-					tableEntry = entry;
-				}
-				
-				tableEntry->FireListener(listenerManager);//if we didnt have a pointer, then the copy of the version in the list would call this method, however with the pointer we are updating the version in the list
-				incomingReceiver->offerOutgoingAssignment(tableEntry);
-			}
-			else
-			  delete entry;
-		}
-	}
-	
-	void AbstractNetworkTableEntryStore::offerIncomingUpdate(NetworkTableEntry* entry, SequenceNumber squenceNumber, EntryValue value){
-		{ 
-			NTSynchronized sync(LOCK);
-			if(updateEntry(entry, squenceNumber, value)){
-				entry->FireListener(listenerManager);
-				incomingReceiver->offerOutgoingUpdate(entry);
-			}
-		}
-	}
-	
-	/**
-	 * Called to say that a listener should notify the listener manager of all of the entries
-	 * @param listener
-	 * @param table 
-	 */
-	void AbstractNetworkTableEntryStore::notifyEntries(ITable* table, ITableListener* listener){
-		{ 
-			NTSynchronized sync(block_namedEntries);
-			std::map<std::string, NetworkTableEntry*>::iterator itr;
-			for(itr = namedEntries.begin(); itr != namedEntries.end(); itr++)
-			{
-				NetworkTableEntry* entry = itr->second;
-				listener->ValueChanged(table, itr->first, entry->GetValue(), true);
-			}
-		}
-	}
diff --git a/aos/externals/WPILib/WPILib/networktables2/AbstractNetworkTableEntryStore.h b/aos/externals/WPILib/WPILib/networktables2/AbstractNetworkTableEntryStore.h
deleted file mode 100644
index 7d6903f..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/AbstractNetworkTableEntryStore.h
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * AbstractNetworkTableEntryStore.h
- *
- *  Created on: Sep 16, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef ABSTRACTNETWORKTABLEENTRYSTORE_H_
-#define ABSTRACTNETWORKTABLEENTRYSTORE_H_
-
-
-
-class TableListenerManager;
-class AbstractNetworkTableEntryStore;
-
-
-#include "OSAL/Synchronized.h"
-#include <string>
-#include "networktables2/NetworkTableEntry.h"
-#include "networktables2/IncomingEntryReceiver.h"
-#include "networktables2/OutgoingEntryReceiver.h"
-#include "networktables2/type/NetworkTableEntryType.h"
-#include "tables/ITable.h"
-#include "tables/ITableListener.h"
-#include <map>
-#include <vector>
-
-
-
-class TableListenerManager{
-public:
-	virtual ~TableListenerManager(){}
-	virtual void FireTableListeners(std::string& name, EntryValue value, bool isNew) = 0;
-};
-
-class AbstractNetworkTableEntryStore : public IncomingEntryReceiver{
-protected:
-	std::map<EntryId,NetworkTableEntry*> idEntries;
-	NTReentrantSemaphore block_namedEntries;
-	std::map<std::string,NetworkTableEntry*> namedEntries;
-	TableListenerManager& listenerManager;
-
-	AbstractNetworkTableEntryStore(TableListenerManager& lstnManager);
-
-	OutgoingEntryReceiver* outgoingReceiver;
-	OutgoingEntryReceiver* incomingReceiver;
-
-
-	
-	virtual bool addEntry(NetworkTableEntry* entry) = 0;
-	virtual bool updateEntry(NetworkTableEntry* entry, SequenceNumber sequenceNumber, EntryValue value) = 0;
-	
-public:
-	virtual ~AbstractNetworkTableEntryStore();
-
-	NTReentrantSemaphore LOCK;
-	NetworkTableEntry* GetEntry(EntryId entryId);
-	NetworkTableEntry* GetEntry(std::string& name);
-
-	std::vector<std::string>* keys();
-    void clearEntries();
-	void clearIds();
-
-	void SetOutgoingReceiver(OutgoingEntryReceiver* receiver);
-	void SetIncomingReceiver(OutgoingEntryReceiver* receiver);
-	
-	void PutOutgoing(std::string& name, NetworkTableEntryType* type, EntryValue value);
-	void PutOutgoing(NetworkTableEntry* tableEntry, EntryValue value);
-	
-
-	void offerIncomingAssignment(NetworkTableEntry* entry);
-	void offerIncomingUpdate(NetworkTableEntry* entry, EntryId sequenceNumber, EntryValue value);
-	
-	void notifyEntries(ITable* table, ITableListener* listener);
-
-};
-
-
-#endif /* ABSTRACTNETWORKTABLEENTRYSTORE_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/FlushableOutgoingEntryReceiver.h b/aos/externals/WPILib/WPILib/networktables2/FlushableOutgoingEntryReceiver.h
deleted file mode 100644
index f87e905..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/FlushableOutgoingEntryReceiver.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * FlushableOutgoingEntryReceiver.h
- *
- *  Created on: Sep 22, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef FLUSHABLEOUTGOINGENTRYRECEIVER_H_
-#define FLUSHABLEOUTGOINGENTRYRECEIVER_H_
-
-class FlushableOutgoingEntryReceiver;
-
-#include "networktables2/OutgoingEntryReceiver.h"
-
-class FlushableOutgoingEntryReceiver : public OutgoingEntryReceiver
-{
-public:
-	virtual ~FlushableOutgoingEntryReceiver()
-	{
-	}
-	virtual void flush() = 0;
-	virtual void ensureAlive() = 0;
-};
-
-#endif /* FLUSHABLEOUTGOINGENTRYRECEIVER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/IncomingEntryReceiver.h b/aos/externals/WPILib/WPILib/networktables2/IncomingEntryReceiver.h
deleted file mode 100644
index 7ee60df..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/IncomingEntryReceiver.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * IncomingEntryReceiver.h
- *
- *  Created on: Sep 19, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef INCOMINGENTRYRECEIVER_H_
-#define INCOMINGENTRYRECEIVER_H_
-
-#include "networktables2/NetworkTableEntry.h"
-#include "tables/ITable.h"
-
-class IncomingEntryReceiver
-{
-public:
-	virtual ~IncomingEntryReceiver()
-	{
-	}
-	virtual void offerIncomingAssignment(NetworkTableEntry* entry) = 0;
-	virtual void offerIncomingUpdate(NetworkTableEntry* entry, SequenceNumber entrySequenceNumber, EntryValue value) = 0;
-};
-
-#endif /* INCOMINGENTRYRECEIVER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/NetworkTableEntry.cpp b/aos/externals/WPILib/WPILib/networktables2/NetworkTableEntry.cpp
deleted file mode 100644
index 658c7c7..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/NetworkTableEntry.cpp
+++ /dev/null
@@ -1,134 +0,0 @@
-#include "networktables2/NetworkTableEntry.h"
-#include "networktables2/AbstractNetworkTableEntryStore.h"
-
-
-NetworkTableEntry::NetworkTableEntry(std::string& _name, NetworkTableEntryType* _type, EntryValue _value)
-  : name(_name), type(_type){
-	id = UNKNOWN_ID;
-	sequenceNumber = 0;
-	value = type->copyValue(_value);
-	m_isNew = true;
-	m_isDirty = false;
-}
-
-NetworkTableEntry::NetworkTableEntry(EntryId _id, std::string& _name, SequenceNumber _sequenceNumber, NetworkTableEntryType* _type, EntryValue _value)
- :name(_name), type(_type){
-	id = _id;
-	sequenceNumber = _sequenceNumber;
-	value = type->copyValue(_value);
-	m_isNew = true;
-	m_isDirty = false;
-}
-
-NetworkTableEntry::NetworkTableEntry(const NetworkTableEntry &other) :
-	name(other.name),
-	id(other.id),
-	sequenceNumber(other.sequenceNumber),
-	type(other.type),
-	m_isNew(other.m_isNew),
-	m_isDirty(other.m_isDirty)
-{
-	value = type->copyValue(other.value);
-}
-
-NetworkTableEntry::~NetworkTableEntry(){
-  type->deleteValue(value);
-}
-
-EntryId NetworkTableEntry::GetId() {
-	return id;
-}
-
-EntryValue NetworkTableEntry::GetValue(){
-	return value;
-}
-
-NetworkTableEntryType* NetworkTableEntry::GetType(){
-	return type;
-}
-
-bool NetworkTableEntry::PutValue(SequenceNumber newSequenceNumber, EntryValue newValue) {
-	if( (sequenceNumber < newSequenceNumber && newSequenceNumber - sequenceNumber < HALF_OF_SEQUENCE_NUMBERS)
-			|| (sequenceNumber > newSequenceNumber && sequenceNumber - newSequenceNumber > HALF_OF_SEQUENCE_NUMBERS) ){
-	  EntryValue newValueCopy = type->copyValue(newValue);
-	  type->deleteValue(value);
-	  value = newValueCopy;
-	  sequenceNumber = newSequenceNumber;
-	  return true;
-	}
-	return false;
-}
-/**
- * force a value and new sequence number upon an entry
- * @param newSequenceNumber
- * @param newValue
- */
-void NetworkTableEntry::ForcePut(SequenceNumber newSequenceNumber, EntryValue newValue) {
-  EntryValue newValueCopy = type->copyValue(newValue);
-  type->deleteValue(value);
-  value = newValueCopy;
-  sequenceNumber = newSequenceNumber;
-}
-/**
- * force a value and new sequence number upon an entry, Will also set the type of the entry
- * @param newSequenceNumber
- * @param type
- * @param newValue
- */
-void NetworkTableEntry::ForcePut(SequenceNumber newSequenceNumber, NetworkTableEntryType* newType, EntryValue newValue) {
-        type->deleteValue(value);
-	type = newType;
-        value = newType->copyValue(newValue);
-	sequenceNumber = newSequenceNumber;
-}
-
-
-void NetworkTableEntry::MakeDirty() {
-	m_isDirty = true;
-}
-void NetworkTableEntry::MakeClean() {
-	m_isDirty = false;
-}
-bool NetworkTableEntry::IsDirty(){
-	return m_isDirty;
-}
-
-/**
- * Send the value of the entry over the output stream
- * @param os
- * @throws IOException
- */
-void NetworkTableEntry::SendValue(DataIOStream& iostream){
-	type->sendValue(value, iostream);
-}
-
-/**
- * @return the current sequence number of the entry
- */
-SequenceNumber NetworkTableEntry::GetSequenceNumber() {
-	return sequenceNumber;
-}
-/**
- * Sets the id of the entry
- * @param id the id of the entry
- * @throws IllegalStateException if the entry already has a known id
- */
-void NetworkTableEntry::SetId(EntryId _id){
-	if(id!=UNKNOWN_ID)
-		throw IllegalStateException("Cannot set the Id of a table entry that already has a valid id");
-	id = _id;
-}
-/**
- * clear the id of the entry to unknown
- */
-void NetworkTableEntry::ClearId() {
-	id = UNKNOWN_ID;
-}
-
-void NetworkTableEntry::Send(NetworkTableConnection& connection) {
-	connection.sendEntryAssignment(*this);
-}
-void NetworkTableEntry::FireListener(TableListenerManager& listenerManager) {
-	listenerManager.FireTableListeners(name, value, m_isNew);
-	m_isNew = false;
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/NetworkTableEntry.h b/aos/externals/WPILib/WPILib/networktables2/NetworkTableEntry.h
deleted file mode 100644
index 27223e4..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/NetworkTableEntry.h
+++ /dev/null
@@ -1,82 +0,0 @@
-#ifndef NETWORKTABLEENTRY_H_
-#define NETWORKTABLEENTRY_H_
-
-#include <stdlib.h>
-#include <stdio.h>
-#ifndef _WRS_KERNEL
-#include <stdint.h>
-#endif
-
-typedef uint16_t EntryId;
-typedef uint16_t SequenceNumber;
-class NetworkTableEntry;
-class TableListenerManager;
-
-
-#include "networktables2/connection/DataIOStream.h"
-#include "networktables2/connection/NetworkTableConnection.h"
-#include "networktables2/type/NetworkTableEntryType.h"
-#include "networktables2/util/IllegalStateException.h"
-#include <string>
-#include "tables/ITable.h"
-
-
-/**
- * An entry in a network table
- * 
- * @author mwills
- *
- */
-class NetworkTableEntry {
-	
-
-public:
-	/**
-	 * the id that represents that an id is unknown for an entry
-	 */
-	static const EntryId UNKNOWN_ID = 0xFFFF;
-	/**
-	 * the name of the entry
-	 */
-	std::string name;
-	
-	NetworkTableEntry(std::string& name, NetworkTableEntryType* type, EntryValue value);
-	NetworkTableEntry(EntryId id, std::string& name, SequenceNumber sequenceNumber, NetworkTableEntryType* type, EntryValue value);
-	NetworkTableEntry(const NetworkTableEntry &);
-	virtual ~NetworkTableEntry();
-
-	EntryId GetId();
-	EntryValue GetValue();
-	NetworkTableEntryType* GetType();
-	bool PutValue(SequenceNumber newSequenceNumber, EntryValue newValue);
-	void ForcePut(SequenceNumber newSequenceNumber, EntryValue newValue);
-	void ForcePut(SequenceNumber newSequenceNumber, NetworkTableEntryType* type, EntryValue newValue);
-	void MakeDirty();
-	void MakeClean();
-	bool IsDirty();
-	void SendValue(DataIOStream& iostream);
-	SequenceNumber GetSequenceNumber();
-	void SetId(EntryId id);
-	void ClearId();
-	void Send(NetworkTableConnection& connection);
-	void FireListener(TableListenerManager& listenerManager);
-	
-private:
-	EntryId id;
-	SequenceNumber sequenceNumber;
-	/**
-	 * the type of the entry
-	 */
-	NetworkTableEntryType* type;
-	EntryValue value;
-	volatile bool m_isNew;
-	volatile bool m_isDirty;
-
-	static const SequenceNumber HALF_OF_SEQUENCE_NUMBERS = 32768;
-
-	NetworkTableEntry& operator=(const NetworkTableEntry& other);
-};
-
-
-
-#endif /* NETWORKTABLEENTRY_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/NetworkTableMessageType.h b/aos/externals/WPILib/WPILib/networktables2/NetworkTableMessageType.h
deleted file mode 100644
index 1b4e90f..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/NetworkTableMessageType.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * NetworkTableMessageType.h
- *
- *  Created on: Sep 22, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NETWORKTABLEMESSAGETYPE_H_
-#define NETWORKTABLEMESSAGETYPE_H_
-
-
-
-/**
- * The definitions of all of the protocol message types
- * 
- * @author mwills
- *
- */
-enum NetworkTableMessageType{
-	/**
-	 * A keep alive message that the client sends
-	 */
-	KEEP_ALIVE = 0x00,
-	/**
-	 * a client hello message that a client sends
-	 */
-	CLIENT_HELLO = 0x01,
-	/**
-	 * a protocol version unsupported message that the server sends to a client
-	 */
-	PROTOCOL_VERSION_UNSUPPORTED = 0x02,
-	SERVER_HELLO_COMPLETE = 0x03,
-	/**
-	 * an entry assignment message
-	 */
-	ENTRY_ASSIGNMENT = 0x10,
-	/**
-	 * a field update message
-	 */
-	FIELD_UPDATE = 0x11
-};
-
-#endif /* NETWORKTABLEMESSAGETYPE_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/NetworkTableNode.cpp b/aos/externals/WPILib/WPILib/networktables2/NetworkTableNode.cpp
deleted file mode 100644
index 6631ba3..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/NetworkTableNode.cpp
+++ /dev/null
@@ -1,171 +0,0 @@
-/*
- * NetworkTableNode.cpp
- *
- *  Created on: Sep 24, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/NetworkTableNode.h"
-#include "networktables2/TableKeyExistsWithDifferentTypeException.h"
-#include "networktables2/type/DefaultEntryTypes.h"
-#include "tables/TableKeyNotDefinedException.h"
-#include <algorithm>
-
-
-
-NetworkTableNode::NetworkTableNode(AbstractNetworkTableEntryStore& _entryStore):
-	entryStore(_entryStore){
-}
-
-NetworkTableNode::~NetworkTableNode(){}
-
-AbstractNetworkTableEntryStore& NetworkTableNode::GetEntryStore(){
-	return entryStore;
-}
-
-
-
-void NetworkTableNode::PutBoolean(std::string& name, bool value){
-	EntryValue eValue;
-	eValue.b = value;
-	PutValue(name, &DefaultEntryTypes::BOOLEAN, eValue);
-}
-bool NetworkTableNode::GetBoolean(std::string& name){
-	NetworkTableEntry* entry = entryStore.GetEntry(name);
-	if(entry==NULL)
-		throw TableKeyNotDefinedException(name);
-	return entry->GetValue().b;
-}
-
-void NetworkTableNode::PutDouble(std::string& name, double value){
-	EntryValue eValue;
-	eValue.f = value;
-	PutValue(name, &DefaultEntryTypes::DOUBLE, eValue);
-}
-double NetworkTableNode::GetDouble(std::string& name){
-	NetworkTableEntry* entry = entryStore.GetEntry(name);
-	if(entry==NULL)
-		throw TableKeyNotDefinedException(name);
-	return entry->GetValue().f;
-}
-
-void NetworkTableNode::PutString(std::string& name, std::string& value){
-	EntryValue eValue;
-	eValue.ptr = &value;
-	PutValue(name, &DefaultEntryTypes::STRING, eValue);
-}
-std::string& NetworkTableNode::GetString(std::string& name) {
-	NetworkTableEntry* entry = entryStore.GetEntry(name);
-	if(entry==NULL)
-		throw TableKeyNotDefinedException(name);
-	return *(std::string*)(entry->GetValue().ptr);
-}
-	
-void NetworkTableNode::PutComplex(std::string& name, ComplexData& value){
-	EntryValue eValue;
-	eValue.ptr = &value;
-	PutValue(name, &value.GetType(), eValue);
-}
-	
-void NetworkTableNode::retrieveValue(std::string& name, ComplexData& externalData){
-	{ 
-		NTSynchronized sync(entryStore.LOCK);
-		NetworkTableEntry* entry = entryStore.GetEntry(name);
-		if(entry==NULL)
-			throw TableKeyNotDefinedException(name);
-		NetworkTableEntryType* entryType = entry->GetType();
-		if(!entryType->isComplex())
-			throw TableKeyExistsWithDifferentTypeException(name, entryType, "Is not a complex data type");
-		ComplexEntryType* complexType = (ComplexEntryType*)entryType;
-		complexType->exportValue(name, entry->GetValue(), externalData);
-	}
-}
-
-
-void NetworkTableNode::PutValue(std::string& name, NetworkTableEntryType* type, EntryValue value){
-	if(type->isComplex()){
-		{ 
-			NTSynchronized sync(entryStore.LOCK);
-			ComplexData* complexData = (ComplexData*)value.ptr;
-			ComplexEntryType* entryType = (ComplexEntryType*)type;
-			NetworkTableEntry* entry = entryStore.GetEntry(name);
-			if(entry!=NULL)
-				entryStore.PutOutgoing(entry, entryType->internalizeValue(entry->name, *complexData, entry->GetValue()));
-			else{
-				EntryValue nullValue = {0};
-				EntryValue entryValue = entryType->internalizeValue(name, *complexData, nullValue);
-				entryStore.PutOutgoing(name, type, entryValue);//TODO the entry gets copied when creating the entry should make lifecycle cleaner
-				type->deleteValue(entryValue);
-			}
-		}
-	}
-	else
-		entryStore.PutOutgoing(name, type, value);
-}
-
-void NetworkTableNode::PutValue(NetworkTableEntry* entry, EntryValue value){
-	if(entry->GetType()->isComplex()){
-		{ 
-			NTSynchronized sync(entryStore.LOCK);
-			ComplexEntryType* entryType = (ComplexEntryType*)entry->GetType();
-			
-			entryStore.PutOutgoing(entry, entryType->internalizeValue(entry->name, *(ComplexData*)value.ptr, entry->GetValue()));
-		}
-	}
-	else
-		entryStore.PutOutgoing(entry, value);
-}
-
-EntryValue NetworkTableNode::GetValue(std::string& name){//TODO don't allow get of complex types
-	{ 
-		NTSynchronized sync(entryStore.LOCK);
-		NetworkTableEntry* entry = entryStore.GetEntry(name);
-		if(entry==NULL)
-			throw TableKeyNotDefinedException(name);
-		return entry->GetValue();
-	}
-}
-
-
-bool NetworkTableNode::ContainsKey(std::string& key){
-	return entryStore.GetEntry(key)!=NULL;
-}
-
-void NetworkTableNode::AddConnectionListener(IRemoteConnectionListener* listener, bool immediateNotify) {
-	remoteListeners.push_back(listener);
-	if(IsConnected())
-		listener->Connected(this);
-	else
-		listener->Disconnected(this);
-}
-void NetworkTableNode::RemoveConnectionListener(IRemoteConnectionListener* listener) {
-	std::vector<IRemoteConnectionListener*>::iterator listenerPosition = std::find(remoteListeners.begin(), remoteListeners.end(), listener);
-	if(listenerPosition!=remoteListeners.end())
-		remoteListeners.erase(listenerPosition);
-}
-void NetworkTableNode::FireConnectedEvent(){
-	for(unsigned int i = 0; i<remoteListeners.size(); ++i)
-		remoteListeners.at(i)->Connected(this);
-}
-void NetworkTableNode::FireDisconnectedEvent(){
-	for(unsigned int i = 0; i<remoteListeners.size(); ++i)
-		remoteListeners.at(i)->Disconnected(this);
-}
-
-
-void NetworkTableNode::AddTableListener(ITableListener* listener, bool immediateNotify) {
-	tableListeners.push_back(listener);
-	if(immediateNotify)
-		entryStore.notifyEntries(NULL, listener);
-}
-void NetworkTableNode::RemoveTableListener(ITableListener* listener) {
-	std::vector<ITableListener*>::iterator listenerPosition = std::find(tableListeners.begin(), tableListeners.end(), listener);
-	if(listenerPosition!=tableListeners.end())
-		tableListeners.erase(listenerPosition);
-}
-void NetworkTableNode::FireTableListeners(std::string& key, EntryValue value, bool isNew){
-	for(unsigned int i = 0; i<tableListeners.size(); ++i)
-		tableListeners.at(i)->ValueChanged(NULL, key, value, isNew);
-}
-
-
diff --git a/aos/externals/WPILib/WPILib/networktables2/NetworkTableNode.h b/aos/externals/WPILib/WPILib/networktables2/NetworkTableNode.h
deleted file mode 100644
index 1a23bd6..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/NetworkTableNode.h
+++ /dev/null
@@ -1,103 +0,0 @@
-/*
- * NetworkTableNode.h
- *
- *  Created on: Sep 24, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NETWORKTABLENODE_H_
-#define NETWORKTABLENODE_H_
-
-
-class NetworkTableNode;
-
-#include "networktables2/AbstractNetworkTableEntryStore.h"
-#include "networktables2/client/ClientConnectionListenerManager.h"
-#include "networktables2/type/NetworkTableEntryType.h"
-#include "networktables2/type/ComplexData.h"
-#include "networktables2/type/ComplexEntryType.h"
-#include "tables/IRemote.h"
-#include <string>
-#include <vector>
-
-
-/**
- * represents a node (either a client or a server) in a network tables 2.0
- * <br>
- * implementers of the class must ensure that they call {@link #init(NetworkTableTransactionPool, AbstractNetworkTableEntryStore)} before calling any other methods on this class
- * 
- * @author Mitchell
- *
- */
-class NetworkTableNode : public TableListenerManager, public ClientConnectionListenerManager, public IRemote{
-
-protected:
-	AbstractNetworkTableEntryStore& entryStore;
-	NetworkTableNode(AbstractNetworkTableEntryStore& entryStore);
-	
-public:
-	/**
-	 * @return the entry store used by this node
-	 */
-	AbstractNetworkTableEntryStore& GetEntryStore();
-	virtual ~NetworkTableNode();
-
-	
-	
-	void PutBoolean(std::string& name, bool value);
-	bool GetBoolean(std::string& name);
-
-	void PutDouble(std::string& name, double value);
-	double GetDouble(std::string& name);
-
-	void PutString(std::string& name, std::string& value);
-	std::string& GetString(std::string& name);
-        
-    void PutComplex(std::string& name, ComplexData& value);
-        
-	void retrieveValue(std::string& name, ComplexData& externalData);
-	
-	/**
-	 * Put a value with a specific network table type
-	 * @param name the name of the entry to associate with the given value
-	 * @param type the type of the entry
-	 * @param value the actual value of the entry
-	 */
-	void PutValue(std::string& name, NetworkTableEntryType* type, EntryValue value);
-	void PutValue(NetworkTableEntry* entry, EntryValue value);
-	
-	EntryValue GetValue(std::string& name);
-	
-	
-	/**
-	 * @param key the key to check for existence
-	 * @return true if the table has the given key
-	 */
-	bool ContainsKey(std::string& key);
-
-	/**
-	 * close all networking activity related to this node
-	 */
-	virtual void Close() = 0;
-	
-private:
-	std::vector<IRemoteConnectionListener*> remoteListeners;
-public:
-	void AddConnectionListener(IRemoteConnectionListener* listener, bool immediateNotify);
-	void RemoveConnectionListener(IRemoteConnectionListener* listener);
-	void FireConnectedEvent();
-	void FireDisconnectedEvent();
-	
-
-private:
-	std::vector<ITableListener*> tableListeners;
-public:
-	void AddTableListener(ITableListener* listener, bool immediateNotify);
-	void RemoveTableListener(ITableListener* listener);
-	void FireTableListeners(std::string& key, EntryValue value, bool isNew);
-};
-
-
-
-
-#endif /* NETWORKTABLENODE_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/OutgoingEntryReceiver.h b/aos/externals/WPILib/WPILib/networktables2/OutgoingEntryReceiver.h
deleted file mode 100644
index a88f7ec..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/OutgoingEntryReceiver.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * OutgoingEntryReceiver.h
- *
- *  Created on: Sep 19, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef OUTGOINGENTRYRECEIVER_H_
-#define OUTGOINGENTRYRECEIVER_H_
-
-class OutgoingEntryReceiver;
-
-#include "networktables2/NetworkTableEntry.h"
-
-class NetworkTableEntry;
-
-class OutgoingEntryReceiver
-{
-public:
-	virtual ~OutgoingEntryReceiver()
-	{
-	}
-	virtual void offerOutgoingAssignment(NetworkTableEntry* entry) = 0;
-	virtual void offerOutgoingUpdate(NetworkTableEntry* entry) = 0;
-};
-class OutgoingEntryReceiver_NULL_t : public OutgoingEntryReceiver {
-public:
-	void offerOutgoingAssignment(NetworkTableEntry* entry);
-	void offerOutgoingUpdate(NetworkTableEntry* entry);
-};
-
-extern OutgoingEntryReceiver_NULL_t OutgoingEntryReceiver_NULL;
-
-#endif /* OUTGOINGENTRYRECEIVER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/OutgoingEntryReciever.cpp b/aos/externals/WPILib/WPILib/networktables2/OutgoingEntryReciever.cpp
deleted file mode 100644
index ae78363..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/OutgoingEntryReciever.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-/*
- * OutgoingEntryReciever.cpp
- *
- *  Created on: Nov 3, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/OutgoingEntryReceiver.h"
-
-OutgoingEntryReceiver_NULL_t OutgoingEntryReceiver_NULL;
-
-void OutgoingEntryReceiver_NULL_t::offerOutgoingAssignment(NetworkTableEntry* entry){}
-void OutgoingEntryReceiver_NULL_t::offerOutgoingUpdate(NetworkTableEntry* entry){}
diff --git a/aos/externals/WPILib/WPILib/networktables2/TableKeyExistsWithDifferentTypeException.cpp b/aos/externals/WPILib/WPILib/networktables2/TableKeyExistsWithDifferentTypeException.cpp
deleted file mode 100644
index f1ea5a8..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/TableKeyExistsWithDifferentTypeException.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * TableKeyExistsWithDifferentKeyException.cpp
- *
- *  Created on: Sep 22, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/TableKeyExistsWithDifferentTypeException.h"
-
-
-
-TableKeyExistsWithDifferentTypeException::TableKeyExistsWithDifferentTypeException(const std::string, NetworkTableEntryType* existingType) {
-	//TODO construct string this(existingKey, existingType, "");
-}
-
-TableKeyExistsWithDifferentTypeException::TableKeyExistsWithDifferentTypeException(const std::string, NetworkTableEntryType* existingType, const char* message) {
-	//TODO construct string super("Illegal put - key '" + existingKey + "' exists with type '" + existingType + "'. "+message);
-}
-
-TableKeyExistsWithDifferentTypeException::~TableKeyExistsWithDifferentTypeException() throw (){
-	//TODO delete message
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/TableKeyExistsWithDifferentTypeException.h b/aos/externals/WPILib/WPILib/networktables2/TableKeyExistsWithDifferentTypeException.h
deleted file mode 100644
index 334ed16..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/TableKeyExistsWithDifferentTypeException.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * TableKeyExistsWithDifferentTypeException.h
- *
- *  Created on: Sep 22, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef TABLEKEYEXISTSWITHDIFFERENTTYPEEXCEPTION_H_
-#define TABLEKEYEXISTSWITHDIFFERENTTYPEEXCEPTION_H_
-
-
-class TableKeyExistsWithDifferentTypeException;
-
-
-#include <exception>
-#include "networktables2/type/NetworkTableEntryType.h"
-
-
-
-
-/**
- * Throw to indicate that an attempt to put data to a table is illegal because
- * the specified key exists with a different data type than the put data type.
- * 
- * @author Paul Malmsten <pmalmsten@gmail.com>
- */
-class TableKeyExistsWithDifferentTypeException : public std::exception {
-public:
-    /**
-     * Creates a new TableKeyExistsWithDifferentTypeException
-     * 
-     * @param existingKey The name of the key which exists.
-     * @param existingType The type of the key which exists.
-     */
-    TableKeyExistsWithDifferentTypeException(const std::string existingKey, NetworkTableEntryType* existingType);
-    
-    TableKeyExistsWithDifferentTypeException(const std::string existingKey, NetworkTableEntryType* existingType, const char* message);
-
-    const char* what(){return "TableKeyExistsWithDifferentTypeException";};
-
-    virtual ~TableKeyExistsWithDifferentTypeException() throw ();
-};
-
-
-
-#endif /* TABLEKEYEXISTSWITHDIFFERENTTYPEEXCEPTION_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/TransactionDirtier.cpp b/aos/externals/WPILib/WPILib/networktables2/TransactionDirtier.cpp
deleted file mode 100644
index 40ba0c7..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/TransactionDirtier.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * TransactionDirtier.cpp
- *
- *  Created on: Sep 24, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/TransactionDirtier.h"
-
-
-
-	TransactionDirtier::TransactionDirtier(OutgoingEntryReceiver& _continuingReceiver) : continuingReceiver(_continuingReceiver){
-	}
-
-
-
-	void TransactionDirtier::offerOutgoingAssignment(NetworkTableEntry* entry) {
-		if(entry->IsDirty())
-			return;
-		entry->MakeDirty();
-		continuingReceiver.offerOutgoingAssignment(entry);
-	}
-
-
-
-
-	void TransactionDirtier::offerOutgoingUpdate(NetworkTableEntry* entry) {
-		if(entry->IsDirty())
-			return;
-		entry->MakeDirty();
-		continuingReceiver.offerOutgoingUpdate(entry);
-	}
-
diff --git a/aos/externals/WPILib/WPILib/networktables2/TransactionDirtier.h b/aos/externals/WPILib/WPILib/networktables2/TransactionDirtier.h
deleted file mode 100644
index 76cd1db..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/TransactionDirtier.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * TransactionDirtier.h
- *
- *  Created on: Sep 24, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef TRANSACTIONDIRTIER_H_
-#define TRANSACTIONDIRTIER_H_
-
-
-class TransactionDirtier;
-
-
-#include "networktables2/OutgoingEntryReceiver.h"
-
-
-
-/**
- * A transaction receiver that marks all Table entries as dirty in the entry store. Entries will not be passed to the continuing receiver if they are already dirty
- * 
- * @author Mitchell
- *
- */
-class TransactionDirtier : public OutgoingEntryReceiver {
-private:
-	OutgoingEntryReceiver& continuingReceiver;
-	
-public:
-	TransactionDirtier(OutgoingEntryReceiver& continuingReceiver);
-	void offerOutgoingAssignment(NetworkTableEntry* entry);
-	void offerOutgoingUpdate(NetworkTableEntry* entry);
-
-};
-
-#endif /* TRANSACTIONDIRTIER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/WriteManager.cpp b/aos/externals/WPILib/WPILib/networktables2/WriteManager.cpp
deleted file mode 100644
index 64688e3..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/WriteManager.cpp
+++ /dev/null
@@ -1,154 +0,0 @@
-/*
- * WriteManager.cpp
- *
- *  Created on: Sep 25, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/WriteManager.h"
-#include "networktables2/util/System.h"
-#include "networktables2/AbstractNetworkTableEntryStore.h"
-#include <iostream>
-
-
-
-WriteManager::WriteManager(FlushableOutgoingEntryReceiver& _receiver, NTThreadManager& _threadManager, AbstractNetworkTableEntryStore& _entryStore, unsigned long _keepAliveDelay)
-	: receiver(_receiver), threadManager(_threadManager), entryStore(_entryStore), keepAliveDelay(_keepAliveDelay){
-	
-	thread = NULL;
-	lastWrite = 0;
-	
-	incomingAssignmentQueue = new std::queue<NetworkTableEntry*>();
-	incomingUpdateQueue = new std::queue<NetworkTableEntry*>();
-	outgoingAssignmentQueue = new std::queue<NetworkTableEntry*>();
-	outgoingUpdateQueue = new std::queue<NetworkTableEntry*>();
-}
-
-WriteManager::~WriteManager(){
-	stop();
-
-	//Note: this must occur after stop() to avoid deadlock
-	transactionsLock.take();
-	
-	delete incomingAssignmentQueue;
-	delete incomingUpdateQueue;
-	delete outgoingAssignmentQueue;
-	delete outgoingUpdateQueue;
-}
-
-void WriteManager::start(){
-	if(thread!=NULL)
-		stop();
-	lastWrite = currentTimeMillis();
-	thread = threadManager.newBlockingPeriodicThread(this, "Write Manager Thread");
-}
-
-void WriteManager::stop(){
-  if(thread!=NULL){
-    thread->stop();
-    delete thread;
-    thread = NULL;
-  }
-}
-
-
-void WriteManager::offerOutgoingAssignment(NetworkTableEntry* entry) {
-	{ 
-		bool test_queue_overflow=false;
-		{
-			NTSynchronized sync(transactionsLock);
-			((std::queue<NetworkTableEntry*>*)incomingAssignmentQueue)->push(entry);
-
-			test_queue_overflow=(((std::queue<NetworkTableEntry*>*)incomingAssignmentQueue)->size()>=queueSize);
-		}
-		if (test_queue_overflow)
-		{
-			run();
-			writeWarning("assignment queue overflowed. decrease the rate at which you create new entries or increase the write buffer size");
-		}
-	}
-}
-
-
-void WriteManager::offerOutgoingUpdate(NetworkTableEntry* entry) {
-	{ 
-		bool test_queue_overflow=false;
-		{
-			NTSynchronized sync(transactionsLock);
-			((std::queue<NetworkTableEntry*>*)incomingUpdateQueue)->push(entry);
-			test_queue_overflow=(((std::queue<NetworkTableEntry*>*)incomingUpdateQueue)->size()>=queueSize);
-
-		}
-		if (test_queue_overflow)
-		{
-			run();
-			writeWarning("update queue overflowed. decrease the rate at which you update entries or increase the write buffer size");
-		}
-	}
-}
-
-
-void WriteManager::run() {
-	{
-		NTSynchronized sync(transactionsLock);
-		//swap the assignment and update queue
-		volatile std::queue<NetworkTableEntry*>* tmp = incomingAssignmentQueue;
-		incomingAssignmentQueue = outgoingAssignmentQueue;
-		outgoingAssignmentQueue = tmp;
-		
-		tmp = incomingUpdateQueue;
-		incomingUpdateQueue = outgoingUpdateQueue;
-		outgoingUpdateQueue = tmp;
-	}
-	
-	bool wrote = false;
-	NetworkTableEntry* entry;
-	
-	while(!((std::queue<NetworkTableEntry*>*)outgoingAssignmentQueue)->empty()){
-		entry = ((std::queue<NetworkTableEntry*>*)outgoingAssignmentQueue)->front();
-		((std::queue<NetworkTableEntry*>*)outgoingAssignmentQueue)->pop();
-		{
-			NetworkTableEntry * entryCopy;
-
-			{
-				NTSynchronized sync(entryStore.LOCK);
-				entry->MakeClean();
-				wrote = true;
-				entryCopy = new NetworkTableEntry(*entry);
-			}
-
-			receiver.offerOutgoingAssignment(entryCopy);
-			delete entryCopy;
-		}
-	}
-	
-	while(!((std::queue<NetworkTableEntry*>*)outgoingUpdateQueue)->empty()){
-		entry = ((std::queue<NetworkTableEntry*>*)outgoingUpdateQueue)->front();
-		((std::queue<NetworkTableEntry*>*)outgoingUpdateQueue)->pop();
-		{ 
-			NetworkTableEntry * entryCopy;
-
-			{
-				NTSynchronized sync(entryStore.LOCK);
-				entry->MakeClean();
-				wrote = true;
-				entryCopy = new NetworkTableEntry(*entry);
-			}
-
-			receiver.offerOutgoingUpdate(entryCopy);
-			delete entryCopy;
-		}
-	}
-	
-	
-	
-	if(wrote){
-		receiver.flush();
-		lastWrite = currentTimeMillis();
-	}
-	else if(currentTimeMillis()-lastWrite>keepAliveDelay)
-		receiver.ensureAlive();
-	
-	sleep_ms(20);
-}
-
diff --git a/aos/externals/WPILib/WPILib/networktables2/WriteManager.h b/aos/externals/WPILib/WPILib/networktables2/WriteManager.h
deleted file mode 100644
index c376b8c..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/WriteManager.h
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
- * WriteManager.h
- *
- *  Created on: Sep 25, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef WRITEMANAGER_H_
-#define WRITEMANAGER_H_
-
-class AbstractNetworkTableEntryStore;
-class WriteManager;
-
-
-#include "networktables2/thread/PeriodicRunnable.h"
-#include "networktables2/OutgoingEntryReceiver.h"
-#include "networktables2/thread/NTThread.h"
-#include "networktables2/thread/NTThreadManager.h"
-#include "networktables2/FlushableOutgoingEntryReceiver.h"
-#include "networktables2/NetworkTableEntry.h"
-#include <queue>
-#include "OSAL/Synchronized.h"
-
-
-
-/**
- * A write manager is a {@link IncomingEntryReceiver} that buffers transactions and then and then dispatches them to a flushable transaction receiver that is periodically offered all queued transaction and then flushed
- * 
- * @author Mitchell
- *
- */
-class WriteManager : public OutgoingEntryReceiver, public PeriodicRunnable{
-private:
-	const static size_t queueSize = 500;
-	
-	NTReentrantSemaphore transactionsLock;
-	
-	NTThread* thread;
-	
-	FlushableOutgoingEntryReceiver& receiver;
-	NTThreadManager& threadManager;
-	AbstractNetworkTableEntryStore& entryStore;
-
-	unsigned long keepAliveDelay;
-	
-	volatile std::queue<NetworkTableEntry*>* incomingAssignmentQueue;
-	volatile std::queue<NetworkTableEntry*>* incomingUpdateQueue;
-	volatile std::queue<NetworkTableEntry*>* outgoingAssignmentQueue;
-	volatile std::queue<NetworkTableEntry*>* outgoingUpdateQueue;
-	
-	unsigned long lastWrite;
-
-
-public:
-	/**
-	 * Create a new Write manager
-	 * @param receiver
-	 * @param threadManager
-	 * @param transactionPool
-	 * @param entryStore
-	 */
-	WriteManager(FlushableOutgoingEntryReceiver& receiver, NTThreadManager& threadManager, AbstractNetworkTableEntryStore& entryStore, unsigned long keepAliveDelay);
-	virtual ~WriteManager();
-	/**
-	 * start the write thread
-	 */
-	void start();
-	/**
-	 * stop the write thread
-	 */
-	void stop();
-
-
-	void offerOutgoingAssignment(NetworkTableEntry* entry);
-
-
-	void offerOutgoingUpdate(NetworkTableEntry* entry);
-
-	
-	/**
-	 * the periodic method that sends all buffered transactions
-	 */
-	void run();
-
-};
-
-#endif /* WRITEMANAGER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionAdapter.cpp b/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionAdapter.cpp
deleted file mode 100644
index 9510c04..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionAdapter.cpp
+++ /dev/null
@@ -1,257 +0,0 @@
-/*
- * ClientConnectionAdapter.cpp
- *
- *  Created on: Nov 2, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/client/ClientConnectionAdapter.h"
-#include "networktables2/util/System.h"
-
-void ClientConnectionAdapter::gotoState(ClientConnectionState* newState){
-	{
-		NTSynchronized sync(LOCK);
-		if(connectionState!=newState){
-		        fprintf(stdout, "[NT] %p entered connection state: %s\n", (void*)this, newState->toString());
-			fflush(stdout);
-			if(newState==&ClientConnectionState::IN_SYNC_WITH_SERVER)
-				connectionListenerManager.FireConnectedEvent();
-			if(connectionState==&ClientConnectionState::IN_SYNC_WITH_SERVER)
-				connectionListenerManager.FireDisconnectedEvent();
-			//TODO find better way to manage memory leak
-			ClientConnectionState_Error *temp=dynamic_cast<ClientConnectionState_Error *>(connectionState);
-			connectionState = newState;
-			if (temp)
-				delete temp;
-		}
-	}
-}
-/**
- * @return the state of the connection
- */
-ClientConnectionState* ClientConnectionAdapter::getConnectionState(){
-	return connectionState;
-}
-/**
- * @return if the client is connected to the server
- */
-bool ClientConnectionAdapter::isConnected() {
-	return getConnectionState()==&ClientConnectionState::IN_SYNC_WITH_SERVER;
-}
-
-/**
- * Create a new ClientConnectionAdapter
- * @param entryStore
- * @param threadManager
- * @param streamFactory
- * @param transactionPool
- * @param connectionListenerManager
- */
-ClientConnectionAdapter::ClientConnectionAdapter(ClientNetworkTableEntryStore& _entryStore, NTThreadManager& _threadManager, IOStreamFactory& _streamFactory, ClientConnectionListenerManager& _connectionListenerManager, NetworkTableEntryTypeManager& _typeManager):
-	entryStore(_entryStore),
-	streamFactory(_streamFactory),
-	threadManager(_threadManager),
-	connectionListenerManager(_connectionListenerManager),
-	typeManager(_typeManager),
-	readThread(NULL),
-	monitor(NULL),
-	connection(NULL){
-	connectionState = &ClientConnectionState::DISCONNECTED_FROM_SERVER;
-}
-ClientConnectionAdapter::~ClientConnectionAdapter()
-{
-	if(readThread!=NULL)
-		readThread->stop();
-	if (connection)
-		connection->close();
-	if(readThread!=NULL)
-	{
-	    delete readThread;
-		readThread = NULL;
-	}
-	if(monitor!=NULL)
-	{
-	        delete monitor;
-		monitor = NULL;
-	}	
-	close();
-	if(connection!=NULL){
-		delete connection;
-		connection = NULL;
-	}	
-
-	//TODO find better way to manage memory leak
-	ClientConnectionState_Error *temp=dynamic_cast<ClientConnectionState_Error *>(connectionState);
-	if (temp)
-	{
-		delete temp;
-		connectionState=NULL;
-	}
-}
-
-
-/*
- * Connection management
- */
-/**
- * Reconnect the client to the server (even if the client is not currently connected)
- */
-void ClientConnectionAdapter::reconnect() {
-	//This is in reconnect so that the entry store doesn't have to be valid when this object is deleted
-	//Note:  clearIds() cannot be in a LOCK critical section
-	entryStore.clearIds();
-	{
-		NTSynchronized sync(LOCK);
-		close();//close the existing stream and monitor thread if needed
-		try{
-			IOStream* stream = streamFactory.createStream();
-			if(stream==NULL)
-				return;
-			if (!connection)
-				connection = new NetworkTableConnection(stream, typeManager);
-			else
-				connection->SetIOStream(stream);
-			m_IsConnectionClosed=false;
-			if (!monitor)
-				monitor = new ConnectionMonitorThread(*this, *connection);
-			if (!readThread)
-				readThread = threadManager.newBlockingPeriodicThread(monitor, "Client Connection Reader Thread");
-			connection->sendClientHello();
-			gotoState(&ClientConnectionState::CONNECTED_TO_SERVER);
-		} catch(IOException& e){
-			close();//make sure to clean everything up if we fail to connect
-		}
-	}
-}
-
-/**
- * Close the client connection
- */
-void ClientConnectionAdapter::close() {
-	close(&ClientConnectionState::DISCONNECTED_FROM_SERVER);
-}
-/**
- * Close the connection to the server and enter the given state
- * @param newState
- */
-void ClientConnectionAdapter::close(ClientConnectionState* newState) {
-	{
-		NTSynchronized sync(LOCK);
-		gotoState(newState);
-		//Disconnect the socket
-		if(connection!=NULL)
-		{
-			connection->close();
-			connection->SetIOStream(NULL);  //disconnect the table connection from the IO stream
-		}
-		m_IsConnectionClosed=true;
-	}
-}
-
-
-
-void ClientConnectionAdapter::badMessage(BadMessageException& e) {
-	close(new ClientConnectionState_Error(e));
-	sleep_ms(33);  //avoid busy wait
-}
-
-void ClientConnectionAdapter::ioException(IOException& e) {
-	if(connectionState!=&ClientConnectionState::DISCONNECTED_FROM_SERVER)//will get io exception when on read thread connection is closed
-	{
-		reconnect();
-		sleep_ms(500);
-	}
-	else
-	{
-		sleep_ms(33);  //avoid busy wait
-	}
-}
-
-NetworkTableEntry* ClientConnectionAdapter::GetEntry(EntryId id) {
-	return entryStore.GetEntry(id);
-}
-
-
-bool ClientConnectionAdapter::keepAlive() {
-	return true;
-}
-
-void ClientConnectionAdapter::clientHello(ProtocolVersion protocolRevision) {
-	throw BadMessageException("A client should not receive a client hello message");
-}
-
-void ClientConnectionAdapter::protocolVersionUnsupported(ProtocolVersion protocolRevision) {
-	close();
-	gotoState(new ClientConnectionState_ProtocolUnsuppotedByServer(protocolRevision));
-}
-
-void ClientConnectionAdapter::serverHelloComplete() {
-	if (connectionState==&ClientConnectionState::CONNECTED_TO_SERVER) {
-		try {
-			gotoState(&ClientConnectionState::IN_SYNC_WITH_SERVER);
-			entryStore.sendUnknownEntries(*connection);
-		} catch (IOException& e) {
-			ioException(e);
-		}
-	}
-	else
-		throw BadMessageException("A client should only receive a server hello complete once and only after it has connected to the server");
-}
-
-
-void ClientConnectionAdapter::offerIncomingAssignment(NetworkTableEntry* entry) {
-	entryStore.offerIncomingAssignment(entry);
-}
-void ClientConnectionAdapter::offerIncomingUpdate(NetworkTableEntry* entry, SequenceNumber sequenceNumber, EntryValue value) {
-	entryStore.offerIncomingUpdate(entry, sequenceNumber, value);
-}
-
-void ClientConnectionAdapter::offerOutgoingAssignment(NetworkTableEntry* entry) {
-	try {
-		{
-			NTSynchronized sync(LOCK);
-			if(connection!=NULL && connectionState==&ClientConnectionState::IN_SYNC_WITH_SERVER)
-				connection->sendEntryAssignment(*entry);
-		}
-	} catch(IOException& e){
-		ioException(e);
-	}
-}
-
-void ClientConnectionAdapter::offerOutgoingUpdate(NetworkTableEntry* entry) {
-	try {
-		{
-			NTSynchronized sync(LOCK);
-			if(connection!=NULL && connectionState==&ClientConnectionState::IN_SYNC_WITH_SERVER)
-				connection->sendEntryUpdate(*entry);
-		}
-	} catch(IOException& e){
-		ioException(e);
-	}
-}
-void ClientConnectionAdapter::flush() {
-	{
-		NTSynchronized sync(LOCK);
-		if(connection!=NULL) {
-			try {
-				connection->flush();
-			} catch (IOException& e) {
-				ioException(e);
-			}
-		}
-	}
-}
-void ClientConnectionAdapter::ensureAlive() {
-	{
-		NTSynchronized sync(LOCK);
-		if ((connection!=NULL)&&(!m_IsConnectionClosed)) {
-			try {
-			  connection->sendKeepAlive();
-			} catch (IOException& e) {
-				ioException(e);
-			}
-		}
-		else
-			reconnect();//try to reconnect if not connected
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionAdapter.h b/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionAdapter.h
deleted file mode 100644
index c718083..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionAdapter.h
+++ /dev/null
@@ -1,117 +0,0 @@
-/*
- * ClientConnectionAdapter.h
- *
- *  Created on: Nov 2, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef CLIENTCONNECTIONADAPTER_H_
-#define CLIENTCONNECTIONADAPTER_H_
-
-class ClientConnectionAdapter;
-
-#include "networktables2/connection/ConnectionAdapter.h"
-#include "networktables2/IncomingEntryReceiver.h"
-#include "networktables2/FlushableOutgoingEntryReceiver.h"
-#include "networktables2/client/ClientNetworkTableEntryStore.h"
-#include "networktables2/stream/IOStreamFactory.h"
-#include "networktables2/thread/NTThreadManager.h"
-#include "networktables2/thread/NTThread.h"
-#include "networktables2/client/ClientConnectionState.h"
-#include "networktables2/client/ClientConnectionListenerManager.h"
-#include "networktables2/connection/ConnectionMonitorThread.h"
-
-
-/**
- * Object that adapts messages from a server
- * 
- * @author Mitchell
- *
- */
-class ClientConnectionAdapter : public ConnectionAdapter, public IncomingEntryReceiver, public FlushableOutgoingEntryReceiver{
-private:
-	ClientNetworkTableEntryStore& entryStore;
-	IOStreamFactory& streamFactory;
-	NTThreadManager& threadManager;
-	
-	ClientConnectionState* connectionState;
-	ClientConnectionListenerManager& connectionListenerManager;
-	NTReentrantSemaphore LOCK;
-	NetworkTableEntryTypeManager& typeManager;
-	NTThread* readThread;
-	ConnectionMonitorThread* monitor;
-	NetworkTableConnection* connection;
-
-	void gotoState(ClientConnectionState* newState);
-	bool m_IsConnectionClosed;  //Keep track of when this is closed to issue reconnect
-public:
-	/**
-	 * @return the state of the connection
-	 */
-	ClientConnectionState* getConnectionState();
-	/**
-	 * @return if the client is connected to the server
-	 */
-	bool isConnected();
-
-	/**
-	 * Create a new ClientConnectionAdapter
-	 * @param entryStore
-	 * @param threadManager
-	 * @param streamFactory
-	 * @param transactionPool
-	 * @param connectionListenerManager
-	 */
-	ClientConnectionAdapter(ClientNetworkTableEntryStore& entryStore, NTThreadManager& threadManager, IOStreamFactory& streamFactory, ClientConnectionListenerManager& connectionListenerManager, NetworkTableEntryTypeManager& typeManager);
-	virtual ~ClientConnectionAdapter();
-	
-	
-	/*
-	 * Connection management
-	 */
-	/**
-	 * Reconnect the client to the server (even if the client is not currently connected)
-	 */
-	void reconnect();
-	
-	/**
-	 * Close the client connection
-	 */
-	void close();
-	/**
-	 * Close the connection to the server and enter the given state
-	 * @param newState
-	 */
-	void close(ClientConnectionState* newState);
-	
-	
-
-	void badMessage(BadMessageException& e);
-
-	void ioException(IOException& e);
-	
-	NetworkTableEntry* GetEntry(EntryId id);
-	
-	
-	bool keepAlive();
-
-	void clientHello(ProtocolVersion protocolRevision);
-
-	void protocolVersionUnsupported(ProtocolVersion protocolRevision);
-
-	void serverHelloComplete();
-
-
-	void offerIncomingAssignment(NetworkTableEntry* entry);
-	void offerIncomingUpdate(NetworkTableEntry* entry, SequenceNumber sequenceNumber, EntryValue value);
-
-	void offerOutgoingAssignment(NetworkTableEntry* entry);
-
-	void offerOutgoingUpdate(NetworkTableEntry* entry);
-	void flush();
-	void ensureAlive();
-
-};
-
-
-#endif /* CLIENTCONNECTIONADAPTER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionListenerManager.h b/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionListenerManager.h
deleted file mode 100644
index 7530594..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionListenerManager.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * ClientConnectionListenerManager.h
- *
- *  Created on: Sep 24, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef CLIENTCONNECTIONLISTENERMANAGER_H_
-#define CLIENTCONNECTIONLISTENERMANAGER_H_
-
-/**
- * An object that manages connection listeners and fires events for other listeners
- * 
- * @author Mitchell
- *
- */
-class ClientConnectionListenerManager
-{
-public:
-	virtual ~ClientConnectionListenerManager()
-	{
-	}
-	/**
-	 * called when something is connected
-	 */
-	virtual void FireConnectedEvent() = 0;
-	/**
-	 * called when something is disconnected
-	 */
-	virtual void FireDisconnectedEvent() = 0;
-};
-
-#endif /* CLIENTCONNECTIONLISTENERMANAGER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionState.cpp b/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionState.cpp
deleted file mode 100644
index 9012856..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionState.cpp
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * ClientConnectionState.cpp
- *
- *  Created on: Nov 2, 2012
- *      Author: Mitchell Wills
- */
-#include "networktables2/client/ClientConnectionState.h"
-#ifndef _WRS_KERNEL
-#include <stdint.h>
-#endif
-
-#include <stdlib.h>
-#include <memory>
-#include <cstring>
-
-/**
- * indicates that the client is disconnected from the server
- */
-ClientConnectionState ClientConnectionState::DISCONNECTED_FROM_SERVER("DISCONNECTED_FROM_SERVER");
-/**
- * indicates that the client is connected to the server but has not yet begun communication
- */
-ClientConnectionState ClientConnectionState::CONNECTED_TO_SERVER("CONNECTED_TO_SERVER");
-/**
- * represents that the client has sent the hello to the server and is waiting for a response
- */
-ClientConnectionState ClientConnectionState::SENT_HELLO_TO_SERVER("SENT_HELLO_TO_SERVER");
-/**
- * represents that the client is now in sync with the server
- */
-ClientConnectionState ClientConnectionState::IN_SYNC_WITH_SERVER("IN_SYNC_WITH_SERVER");
-
-
-	/**
-	 * Create a new protocol unsupported state
-	 * @param serverVersion
-	 */
-ClientConnectionState_ProtocolUnsuppotedByServer::ClientConnectionState_ProtocolUnsuppotedByServer(ProtocolVersion _serverVersion):
-		ClientConnectionState("PROTOCOL_UNSUPPORTED_BY_SERVER"),
-	serverVersion(_serverVersion){}
-/**
- * @return the protocol version that the server reported it supports
- */
-ProtocolVersion ClientConnectionState_ProtocolUnsuppotedByServer::getServerVersion(){
-	return serverVersion;
-}
-const char* ClientConnectionState_ProtocolUnsuppotedByServer::toString(){
-	return "PROTOCOL_UNSUPPORTED_BY_SERVER";
-	//return "PROTOCOL_UNSUPPORTED_BY_SERVER: Server Version: 0x"+Integer.toHexString(serverVersion);
-}
-
-/**
- * Create a new error state
- * @param e
- */
-ClientConnectionState_Error::ClientConnectionState_Error(std::exception& _e):ClientConnectionState("CLIENT_ERROR"),e(_e){
-  strcpy(msg, "CLIENT_ERROR: ");
-  strcat(msg, e.what());
-}
-/**
- * @return the exception that caused the client to enter an error state
- */
-std::exception& ClientConnectionState_Error::getException(){
-	return e;
-}
-const char* ClientConnectionState_Error::toString(){
-  return msg;
-  //return "CLIENT_ERROR";
-	//return "CLIENT_ERROR: "+e.getClass()+": "+e.getMessage();
-}
-
-ClientConnectionState::ClientConnectionState(const char* _name){
-	name = _name;
-}
-const char* ClientConnectionState::toString(){
-	return name;
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionState.h b/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionState.h
deleted file mode 100644
index fdb8e3e..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/client/ClientConnectionState.h
+++ /dev/null
@@ -1,99 +0,0 @@
-/*
- * ClientConnectionState.h
- *
- *  Created on: Nov 2, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef CLIENTCONNECTIONSTATE_H_
-#define CLIENTCONNECTIONSTATE_H_
-
-
-class ClientConnectionState;
-class ClientConnectionState_Error;
-class ClientConnectionState_ProtocolUnsuppotedByServer;
-
-#include <exception>
-#include "networktables2/connection/NetworkTableConnection.h"
-
-/**
- * Represents a state that the client is in
- * 
- * @author Mitchell
- *
- */
-class ClientConnectionState {
-public:
-	/**
-	 * indicates that the client is disconnected from the server
-	 */
-	static ClientConnectionState DISCONNECTED_FROM_SERVER;
-	/**
-	 * indicates that the client is connected to the server but has not yet begun communication
-	 */
-	static ClientConnectionState CONNECTED_TO_SERVER;
-	/**
-	 * represents that the client has sent the hello to the server and is waiting for a response
-	 */
-	static ClientConnectionState SENT_HELLO_TO_SERVER;
-	/**
-	 * represents that the client is now in sync with the server
-	 */
-	static ClientConnectionState IN_SYNC_WITH_SERVER;
-	
-	
-private:
-	const char* name;
-protected:
-	ClientConnectionState(const char* name);
-public:
-	virtual const char* toString();
-};
-
-
-
-/**
- * Represents that a client received a message from the server indicating that the client's protocol revision is not supported by the server
- * @author Mitchell
- *
- */
-class ClientConnectionState_ProtocolUnsuppotedByServer : public ClientConnectionState{
-private:
-	const ProtocolVersion serverVersion;
-public:
-	/**
-	 * Create a new protocol unsupported state
-	 * @param serverVersion
-	 */
-	ClientConnectionState_ProtocolUnsuppotedByServer(ProtocolVersion serverVersion);
-	/**
-	 * @return the protocol version that the server reported it supports
-	 */
-	ProtocolVersion getServerVersion();
-	const char* toString();
-};
-/**
- * Represents that the client is in an error state
- * 
- * @author Mitchell
- *
- */
-class ClientConnectionState_Error : public ClientConnectionState{
-private:
-	std::exception& e;
-	char msg[100];
-public:
-	/**
-	 * Create a new error state
-	 * @param e
-	 */
-	ClientConnectionState_Error(std::exception& e);
-	/**
-	 * @return the exception that caused the client to enter an error state
-	 */
-	std::exception& getException();
-	virtual const char* toString();
-};
-
-
-#endif /* CLIENTCONNECTIONSTATE_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/client/ClientNetworkTableEntryStore.cpp b/aos/externals/WPILib/WPILib/networktables2/client/ClientNetworkTableEntryStore.cpp
deleted file mode 100644
index 15c0e1f..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/client/ClientNetworkTableEntryStore.cpp
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * ClientNetworkTableEntryStore.cpp
- *
- *  Created on: Nov 2, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/client/ClientNetworkTableEntryStore.h"
-
-/**
- * Create a new ClientNetworkTableEntryStore
- * @param transactionPool
- * @param listenerManager
- */
-ClientNetworkTableEntryStore::ClientNetworkTableEntryStore(TableListenerManager& listenerManager): AbstractNetworkTableEntryStore(listenerManager) {}
-ClientNetworkTableEntryStore::~ClientNetworkTableEntryStore(){}
-
-bool ClientNetworkTableEntryStore::addEntry(NetworkTableEntry* newEntry){
-	{
-		NTSynchronized sync(block_namedEntries);
-		NetworkTableEntry* entry = (NetworkTableEntry*)namedEntries[newEntry->name];
-
-		if(entry!=NULL){
-			if(entry->GetId()!=newEntry->GetId()){
-				idEntries.erase(entry->GetId());
-				if(newEntry->GetId()!=NetworkTableEntry::UNKNOWN_ID){
-					entry->SetId(newEntry->GetId());
-					idEntries[newEntry->GetId()] = entry;
-				}
-			}
-			
-			entry->ForcePut(newEntry->GetSequenceNumber(), newEntry->GetType(), newEntry->GetValue());
-		}
-		else{
-			if(newEntry->GetId()!=NetworkTableEntry::UNKNOWN_ID)
-				idEntries[newEntry->GetId()] = newEntry;
-			namedEntries[newEntry->name] = newEntry;
-		}
-	}
-	return true;
-}
-
-bool ClientNetworkTableEntryStore::updateEntry(NetworkTableEntry* entry, SequenceNumber sequenceNumber, EntryValue value) {
-	{ 
-		NTSynchronized sync(LOCK);
-		entry->ForcePut(sequenceNumber, value);
-		if(entry->GetId()==NetworkTableEntry::UNKNOWN_ID){
-			return false;
-		}
-		return true;
-	}
-}
-
-/**
- * Send all unknown entries in the entry store to the given connection
- * @param connection
- * @throws IOException
- */
-void ClientNetworkTableEntryStore::sendUnknownEntries(NetworkTableConnection& connection) {
-	{ 
-		NTSynchronized sync(LOCK);
-		std::map<std::string, NetworkTableEntry*>::iterator itr;
-		for(itr = namedEntries.begin(); itr != namedEntries.end(); itr++)
-		{
-			NetworkTableEntry* entry = (*itr).second;
-			if(entry->GetId()==NetworkTableEntry::UNKNOWN_ID)
-				connection.sendEntryAssignment(*entry);
-		}
-		connection.flush();
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/client/ClientNetworkTableEntryStore.h b/aos/externals/WPILib/WPILib/networktables2/client/ClientNetworkTableEntryStore.h
deleted file mode 100644
index 8dd171c..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/client/ClientNetworkTableEntryStore.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * ClientNetworkTableEntryStore.h
- *
- *  Created on: Nov 2, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef CLIENTNETWORKTABLEENTRYSTORE_H_
-#define CLIENTNETWORKTABLEENTRYSTORE_H_
-
-
-class ClientNetworkTableEntryStore;
-
-
-#include "networktables2/AbstractNetworkTableEntryStore.h"
-#include "networktables2/NetworkTableEntry.h"
-#include "OSAL/Synchronized.h"
-
-/**
- * The entry store for a {@link NetworkTableClient}
- * 
- * @author Mitchell
- *
- */
-class ClientNetworkTableEntryStore : public AbstractNetworkTableEntryStore{
-
-public:
-	/**
-	 * Create a new ClientNetworkTableEntryStore
-	 * @param transactionPool
-	 * @param listenerManager
-	 */
-	ClientNetworkTableEntryStore(TableListenerManager& listenerManager);
-	virtual ~ClientNetworkTableEntryStore();
-	
-protected:
-	bool addEntry(NetworkTableEntry* newEntry);
-	bool updateEntry(NetworkTableEntry* entry, SequenceNumber sequenceNumber, EntryValue value);
-
-public:
-	/**
-	 * Send all unknown entries in the entry store to the given connection
-	 * @param connection
-	 * @throws IOException
-	 */
-	void sendUnknownEntries(NetworkTableConnection& connection);
-};
-
-
-
-#endif /* CLIENTNETWORKTABLEENTRYSTORE_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/client/NetworkTableClient.cpp b/aos/externals/WPILib/WPILib/networktables2/client/NetworkTableClient.cpp
deleted file mode 100644
index 08bbf4b..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/client/NetworkTableClient.cpp
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * NetworkTableClient.cpp
- *
- *  Created on: Nov 3, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/client/NetworkTableClient.h"
-
-/**
- * Create a new NetworkTable Client
- * @param streamFactory
- * @param threadManager
- * @param transactionPool
- */
-NetworkTableClient::NetworkTableClient(IOStreamFactory& streamFactory, NetworkTableEntryTypeManager& typeManager, NTThreadManager& threadManager):
-	NetworkTableNode(*new ClientNetworkTableEntryStore(*this)),
-	adapter(*new ClientConnectionAdapter((ClientNetworkTableEntryStore&)entryStore, threadManager, streamFactory, *this, typeManager)),
-	writeManager(*new WriteManager(adapter, threadManager, GetEntryStore(), 1000)),
-	dirtier(new TransactionDirtier(writeManager)){
-	
-	GetEntryStore().SetOutgoingReceiver(dirtier);
-	GetEntryStore().SetIncomingReceiver(&OutgoingEntryReceiver_NULL);
-	writeManager.start();
-}
-NetworkTableClient::~NetworkTableClient(){
-	//Closing this now will cause a reconnect from the write manager -James
-	//Close();
-	delete &writeManager;
-	delete &adapter;
-	delete &entryStore;
-	delete dirtier;
-}
-
-/**
- * force the client to disconnect and reconnect to the server again. Will connect if the client is currently disconnected
- */
-void NetworkTableClient::reconnect() {
-	adapter.reconnect();
-}
-
-void NetworkTableClient::Close() {
-	adapter.close();
-}
-
-void NetworkTableClient::stop() {
-	writeManager.stop();
-	Close();
-}
-
-bool NetworkTableClient::IsConnected() {
-	return adapter.isConnected();
-}
-
-bool NetworkTableClient::IsServer() {
-	return false;
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/client/NetworkTableClient.h b/aos/externals/WPILib/WPILib/networktables2/client/NetworkTableClient.h
deleted file mode 100644
index 0dbe2f0..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/client/NetworkTableClient.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * NetworkTableClient.h
- *
- *  Created on: Nov 3, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NETWORKTABLECLIENT_H_
-#define NETWORKTABLECLIENT_H_
-
-class NetworkTableClient;
-
-#include "networktables2/NetworkTableNode.h"
-#include "networktables2/client/ClientConnectionAdapter.h"
-#include "networktables2/WriteManager.h"
-#include "networktables2/TransactionDirtier.h"
-
-/**
- * A client node in NetworkTables 2.0
- * 
- * @author Mitchell
- *
- */
-class NetworkTableClient : public NetworkTableNode{
-private:
-	ClientConnectionAdapter& adapter;
-	WriteManager& writeManager;
-        TransactionDirtier* dirtier;
-
-public:
-	/**
-	 * Create a new NetworkTable Client
-	 * @param streamFactory
-	 * @param threadManager
-	 * @param transactionPool
-	 */
-	NetworkTableClient(IOStreamFactory& streamFactory, NetworkTableEntryTypeManager& typeManager, NTThreadManager& threadManager);
-	~NetworkTableClient();
-
-	/**
-	 * force the client to disconnect and reconnect to the server again. Will connect if the client is currently disconnected
-	 */
-	void reconnect();
-
-	void Close();
-	
-	void stop();
-
-	bool IsConnected();
-
-	bool IsServer();
-
-};
-
-
-#endif /* NETWORKTABLECLIENT_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/connection/BadMessageException.cpp b/aos/externals/WPILib/WPILib/networktables2/connection/BadMessageException.cpp
deleted file mode 100644
index bba6e09..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/connection/BadMessageException.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * BadMessageException.cpp
- *
- *  Created on: Sep 16, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/connection/BadMessageException.h"
-
-BadMessageException::BadMessageException(const char* msg)
-	: message(msg)
-{
-
-}
-
-BadMessageException::~BadMessageException() throw ()
-{
-}
-
-const char* BadMessageException::what()
-{
-	return message.c_str();
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/connection/BadMessageException.h b/aos/externals/WPILib/WPILib/networktables2/connection/BadMessageException.h
deleted file mode 100644
index 5c5585a..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/connection/BadMessageException.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * BadMessageException.h
- *
- *  Created on: Sep 16, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef BADMESSAGEEXCEPTION_H_
-#define BADMESSAGEEXCEPTION_H_
-
-#include <exception>
-#include <string>
-
-class BadMessageException : public std::exception
-{
-public:
-	BadMessageException(const char* message);
-	~BadMessageException() throw ();
-	const char* what();
-private:
-	std::string message;
-};
-
-#endif /* BADMESSAGEEXCEPTION_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/connection/ConnectionAdapter.h b/aos/externals/WPILib/WPILib/networktables2/connection/ConnectionAdapter.h
deleted file mode 100644
index 277c011..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/connection/ConnectionAdapter.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * ConnectionAdapter.h
- *
- *  Created on: Sep 16, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef CONNECTIONADAPTER_H_
-#define CONNECTIONADAPTER_H_
-
-class ConnectionAdapter;
-
-#include "networktables2/NetworkTableEntry.h"
-#include "networktables2/connection/BadMessageException.h"
-#include "networktables2/util/IOException.h"
-#include "tables/ITable.h"
-
-class ConnectionAdapter
-{
-public:
-	virtual ~ConnectionAdapter()
-	{
-	}
-	//returns true if the connection should still be alive
-	virtual bool keepAlive() = 0;
-	virtual void clientHello(ProtocolVersion protocolRevision) = 0;
-	virtual void serverHelloComplete() = 0;
-	virtual void protocolVersionUnsupported(ProtocolVersion protocolRevision) = 0;
-	virtual void offerIncomingAssignment(NetworkTableEntry* newEntry) = 0;
-	virtual void offerIncomingUpdate(NetworkTableEntry* newEntry, SequenceNumber sequenceNumber, EntryValue value) = 0;
-	virtual NetworkTableEntry* GetEntry(EntryId) = 0;
-
-	/**
-	 * called if a bad message exception is thrown
-	 * @param e
-	 */
-	virtual void badMessage(BadMessageException& e) = 0;
-
-	/**
-	 * called if an io exception is thrown
-	 * @param e
-	 */
-	virtual void ioException(IOException& e) = 0;
-};
-
-#endif /* CONNECTIONADAPTER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/connection/ConnectionMonitorThread.cpp b/aos/externals/WPILib/WPILib/networktables2/connection/ConnectionMonitorThread.cpp
deleted file mode 100644
index 1cd4a02..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/connection/ConnectionMonitorThread.cpp
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * ConnectionMonitorThread.cpp
- *
- *  Created on: Sep 22, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/connection/ConnectionMonitorThread.h"
-#include "networktables2/connection/BadMessageException.h"
-#include "networktables2/util/System.h"
-
-ConnectionMonitorThread::ConnectionMonitorThread(ConnectionAdapter& _adapter, NetworkTableConnection& _connection) :
-	adapter(_adapter), connection(_connection) {
-}
-
-void ConnectionMonitorThread::run() {
-  
-	if (adapter.keepAlive())
-	{
-		try{
-			connection.read(adapter);
-		} catch(BadMessageException& e){
-			adapter.badMessage(e);
-		} catch(IOException& e){
-			adapter.ioException(e);
-		}
-	}
-	else
-	{
-		sleep_ms(10);  //avoid busy-wait
-		//Test to see this working properly
-		//printf("--ConnectionMonitorThread::run Waiting to close\n");
-	}
-}
-
diff --git a/aos/externals/WPILib/WPILib/networktables2/connection/ConnectionMonitorThread.h b/aos/externals/WPILib/WPILib/networktables2/connection/ConnectionMonitorThread.h
deleted file mode 100644
index 64c96b5..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/connection/ConnectionMonitorThread.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * ConnectionMonitorThread.h
- *
- *  Created on: Sep 22, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef CONNECTIONMONITORTHREAD_H_
-#define CONNECTIONMONITORTHREAD_H_
-
-
-class ConnectionMonitorThread;
-
-#include "networktables2/connection/ConnectionAdapter.h"
-#include "networktables2/connection/NetworkTableConnection.h"
-#include "networktables2/thread/PeriodicRunnable.h"
-
-
-
-
-/**
- * A periodic thread that repeatedly reads from a connection
- * @author Mitchell
- *
- */
-class ConnectionMonitorThread : public PeriodicRunnable{
-private:
-	ConnectionAdapter& adapter;
-	NetworkTableConnection& connection;
-
-public:
-	/**
-	 * create a new monitor thread
-	 * @param adapter
-	 * @param connection
-	 */
-	ConnectionMonitorThread(ConnectionAdapter& adapter, NetworkTableConnection& connection);
-	//This can be used it identify which connection adapter instance the thread procedure is running (read-only)
-	const NetworkTableConnection *GetNetworkTableConnection() const {return &connection;}
-
-	void run();
-};
-
-
-#endif /* CONNECTIONMONITORTHREAD_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/connection/DataIOStream.cpp b/aos/externals/WPILib/WPILib/networktables2/connection/DataIOStream.cpp
deleted file mode 100644
index f9e1b63..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/connection/DataIOStream.cpp
+++ /dev/null
@@ -1,86 +0,0 @@
-#include "networktables2/connection/DataIOStream.h"
-
-//TODO remove this when alloca is solved
-#ifdef WIN32
-#include <malloc.h>
-#endif
-
-///This is used in case NULL is passed so all logic calls to IOstream can continue to assume there is never a null pointer
-class InertStream : public IOStream
-{
-protected:
-	virtual int read(void* ptr, int numbytes) {return numbytes;}  //return success
-	virtual int write(const void* ptr, int numbytes) {return numbytes;}
-	virtual void flush() {}
-	virtual void close() {}
-};
-
-static InertStream s_InertStream;
-
-DataIOStream::DataIOStream(IOStream* _iostream) :
-	iostream(_iostream)
-{
-}
-DataIOStream::~DataIOStream()
-{
-	close();
-	if (iostream!=&s_InertStream)
-		delete iostream;
-}
-
-void DataIOStream::SetIOStream(IOStream* stream)
-{
-	IOStream *temp=iostream;
-	iostream=stream ? stream : &s_InertStream;  //We'll never assign NULL
-	if (temp!=&s_InertStream)
-		delete temp;
-}
-
-void DataIOStream::close()
-{
-	iostream->close();
-}
-
-void DataIOStream::writeByte(uint8_t b)
-{
-	iostream->write(&b, 1);
-}
-void DataIOStream::write2BytesBE(uint16_t s)
-{
-	writeByte((uint8_t)(s >> 8));
-	writeByte((uint8_t)s);
-}
-void DataIOStream::writeString(std::string& str)
-{
-	write2BytesBE(str.length());
-	iostream->write(str.c_str(), str.length());
-}
-void DataIOStream::flush()
-{
-	iostream->flush();
-}
-uint8_t DataIOStream::readByte()
-{
-	uint8_t value;
-	iostream->read(&value, 1);
-	return value;
-}
-uint16_t DataIOStream::read2BytesBE()
-{
-	uint16_t value;
-	value = readByte()<<8 | readByte();
-	return value;
-}
-std::string* DataIOStream::readString()
-{
-	
-	unsigned int byteLength = read2BytesBE();
-#ifndef WIN32
-	uint8_t bytes[byteLength+1];//FIXME figure out why this doesn't work on windows
-#else
-	uint8_t* bytes = (uint8_t*)alloca(byteLength+1);
-#endif
-	iostream->read(bytes, byteLength);
-	bytes[byteLength] = 0;
-	return new std::string((char*)bytes);//FIXME implement UTF-8 aware version
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/connection/DataIOStream.h b/aos/externals/WPILib/WPILib/networktables2/connection/DataIOStream.h
deleted file mode 100644
index a653892..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/connection/DataIOStream.h
+++ /dev/null
@@ -1,51 +0,0 @@
-#ifndef DATAIOSTREAM_H_
-#define DATAIOSTREAM_H_
-
-#include <stdlib.h>
-#include "networktables2/stream/IOStream.h"
-#include <exception>
-#include <string>
-
-#ifndef _WRS_KERNEL
-#include <stdint.h>
-#endif
-
-#include <stdlib.h>
-#include <memory>
-
-//WindRiver is 3.4 GCC. Recent GCC can  do 0b01010101 style format, WR cannot
-
-#define TO_HEX__(n) 0x##n##LU // LU for unsigned long
-#define BINARY_LITERAL_VIA_HEX__(n) (((n & 0x00000001LU) ? 1 : 0)\
-	+ ((n & 0x00000010LU) ? 2 : 0) \
-	+ ((n & 0x00000100LU) ? 4 : 0) \
-	+ ((n & 0x00001000LU) ? 8 : 0) \
-	+ ((n & 0x00010000LU) ? 16 : 0) \
-	+ ((n & 0x00100000LU) ? 32 : 0) \
-	+ ((n & 0x01000000LU) ? 64 : 0) \
-	+ ((n & 0x10000000LU) ? 128 : 0))
-	
-#define b(n) ((unsigned char)BINARY_LITERAL_VIA_HEX__(TO_HEX__(n)))
-
-class DataIOStream{
-public:
-	DataIOStream(IOStream* stream);
-	virtual ~DataIOStream();
-	void writeByte(uint8_t b);
-	void write2BytesBE(uint16_t s);
-	void writeString(std::string& str);
-	void flush();
-	
-	uint8_t readByte();
-	uint16_t read2BytesBE();
-	std::string* readString();
-	
-	void close();
-	void SetIOStream(IOStream* stream);
-
-//private:
-	IOStream *iostream;
-};
-
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/networktables2/connection/NetworkTableConnection.cpp b/aos/externals/WPILib/WPILib/networktables2/connection/NetworkTableConnection.cpp
deleted file mode 100644
index 13c61fc..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/connection/NetworkTableConnection.cpp
+++ /dev/null
@@ -1,162 +0,0 @@
-/**
- * An abstraction for the NetworkTable protocol
- * 
- * @author mwills
- *
- */
-
-#include "networktables2/connection/NetworkTableConnection.h"
-#include "networktables2/connection/BadMessageException.h"
-
-
-NetworkTableConnection::NetworkTableConnection(IOStream* _ioStream, NetworkTableEntryTypeManager& _typeManager) :
-	ioStream(new DataIOStream(_ioStream)), typeManager(_typeManager) {
-	isValid = true;
-}
-NetworkTableConnection::~NetworkTableConnection(){
-	delete ioStream;
-}
-
-void NetworkTableConnection::SetIOStream(IOStream* stream)
-{
-	isValid=(stream!=NULL);
-	ioStream->SetIOStream(stream);  //just passing through
-}
-
-void NetworkTableConnection::close() {
-	{
-		NTSynchronized sync(WRITE_LOCK);
-		if (isValid) {
-			isValid = false;
-			ioStream->close();
-		}
-	}
-}
-void NetworkTableConnection::flush() {
-	{
-		NTSynchronized sync(WRITE_LOCK);
-		ioStream->flush();
-	}
-}
-
-void NetworkTableConnection::sendMessageHeader(
-		NetworkTableMessageType messageType) {
-	{
-		NTSynchronized sync(WRITE_LOCK);
-		ioStream->writeByte((uint8_t) messageType);
-	}
-}
-
-void NetworkTableConnection::sendKeepAlive() {
-	{
-		NTSynchronized sync(WRITE_LOCK);
-		sendMessageHeader(KEEP_ALIVE);
-		flush();
-	}
-}
-
-void NetworkTableConnection::sendClientHello() {
-	{
-		NTSynchronized sync(WRITE_LOCK);
-		sendMessageHeader(CLIENT_HELLO);
-		ioStream->write2BytesBE(PROTOCOL_REVISION);
-		flush();
-	}
-}
-void NetworkTableConnection::sendServerHelloComplete() {
-	{
-		NTSynchronized sync(WRITE_LOCK);
-		sendMessageHeader(SERVER_HELLO_COMPLETE);
-		flush();
-	}
-}
-
-void NetworkTableConnection::sendProtocolVersionUnsupported() {
-	{
-		NTSynchronized sync(WRITE_LOCK);
-		sendMessageHeader(PROTOCOL_VERSION_UNSUPPORTED);
-		ioStream->write2BytesBE(PROTOCOL_REVISION);
-		flush();
-	}
-}
-
-void NetworkTableConnection::sendEntryAssignment(NetworkTableEntry& entry) {
-	{
-		NTSynchronized sync(WRITE_LOCK);
-		sendMessageHeader(ENTRY_ASSIGNMENT);
-		ioStream->writeString(entry.name);
-		ioStream->writeByte(entry.GetType()->id);
-		ioStream->write2BytesBE(entry.GetId());
-		ioStream->write2BytesBE(entry.GetSequenceNumber());
-		entry.SendValue(*ioStream);
-	}
-}
-
-void NetworkTableConnection::sendEntryUpdate(NetworkTableEntry& entry) {
-	{
-		NTSynchronized sync(WRITE_LOCK);
-		sendMessageHeader(FIELD_UPDATE);
-		ioStream->write2BytesBE(entry.GetId());
-		ioStream->write2BytesBE(entry.GetSequenceNumber());
-		entry.SendValue(*ioStream);
-	}
-}
-
-void NetworkTableConnection::read(ConnectionAdapter& adapter) {
-	int messageType = (isValid)?ioStream->readByte():KEEP_ALIVE;
-	switch (messageType) {
-	case KEEP_ALIVE:
-		adapter.keepAlive();
-		return;
-	case CLIENT_HELLO: {
-		uint16_t protocolRevision = ioStream->read2BytesBE();
-		adapter.clientHello(protocolRevision);
-		return;
-	}
-	case SERVER_HELLO_COMPLETE: {
-		adapter.serverHelloComplete();
-		return;
-	}
-	case PROTOCOL_VERSION_UNSUPPORTED: {
-		uint16_t protocolRevision = ioStream->read2BytesBE();
-		adapter.protocolVersionUnsupported(protocolRevision);
-		return;
-	}
-	case ENTRY_ASSIGNMENT: {
-		std::string* entryName = ioStream->readString();
-		TypeId typeId = ioStream->readByte();
-		NetworkTableEntryType* entryType = typeManager.GetType(typeId);
-		if (!entryType){
-			char exceptionMessageBuffer[50];
-			sprintf (exceptionMessageBuffer, "Unknown data type: %#x", typeId);
-			throw BadMessageException(exceptionMessageBuffer);
-		}
-		EntryId entryId = ioStream->read2BytesBE();
-		SequenceNumber entrySequenceNumber = ioStream->read2BytesBE();
-		EntryValue value = entryType->readValue(*ioStream);
-		adapter.offerIncomingAssignment(new NetworkTableEntry(entryId, *entryName, entrySequenceNumber, entryType, value));
-		entryType->deleteValue(value);
-		delete entryName;
-		return;
-	}
-	case FIELD_UPDATE: {
-		EntryId entryId = ioStream->read2BytesBE();
-		SequenceNumber entrySequenceNumber = ioStream->read2BytesBE();
-		NetworkTableEntry* entry = adapter.GetEntry(entryId);
-		if (!entry){
-			char exceptionMessageBuffer[50];
-			sprintf (exceptionMessageBuffer, "Received update for unknown entry id: %d", entryId);
-			throw BadMessageException(exceptionMessageBuffer);
-		}
-		EntryValue value = entry->GetType()->readValue(*ioStream);
-
-		adapter.offerIncomingUpdate(entry, entrySequenceNumber, value);
-		entry->GetType()->deleteValue(value);
-		return;
-	}
-	default:
-		char exceptionMessageBuffer[50];
-		sprintf (exceptionMessageBuffer, "Unknown Network Table Message Type: %d", messageType);
-		throw BadMessageException(exceptionMessageBuffer);
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/connection/NetworkTableConnection.h b/aos/externals/WPILib/WPILib/networktables2/connection/NetworkTableConnection.h
deleted file mode 100644
index e73a835..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/connection/NetworkTableConnection.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/**
- * An abstraction for the NetworkTable protocol
- * 
- * @author mwills
- *
- */
-
-
-#ifndef NETWORK_TABLE_CONNECTION_H_
-#define NETWORK_TABLE_CONNECTION_H_
-
-#include <stdio.h>
-#include <stdlib.h>
-#include "OSAL/Synchronized.h"
-#ifndef _WRS_KERNEL
-#include <stdint.h>
-#endif
-
-class NetworkTableConnection;
-typedef uint16_t ProtocolVersion;
-
-#include "networktables2/connection/DataIOStream.h"
-#include "networktables2/NetworkTableEntry.h"
-#include "networktables2/type/NetworkTableEntryType.h"
-#include "networktables2/type/NetworkTableEntryTypeManager.h"
-#include "networktables2/connection/ConnectionAdapter.h"
-#include "networktables2/NetworkTableMessageType.h"
-
-
-class NetworkTableConnection{
-public:
-	static const ProtocolVersion PROTOCOL_REVISION = 0x0200;
-
-	NetworkTableConnection(IOStream* stream, NetworkTableEntryTypeManager& typeManager);
-	~NetworkTableConnection();
-	void close();
-	void flush();
-	void sendKeepAlive();
-	void sendClientHello();
-	void sendServerHelloComplete();
-	void sendProtocolVersionUnsupported();
-	void sendEntryAssignment(NetworkTableEntry& entry);
-	void sendEntryUpdate(NetworkTableEntry& entry);
-	void read(ConnectionAdapter& adapter);
-	void SetIOStream(IOStream* stream);
-private:
-	NTReentrantSemaphore WRITE_LOCK;
-	DataIOStream* const ioStream;
-	NetworkTableEntryTypeManager& typeManager;
-	bool isValid;
-
-	void sendMessageHeader(NetworkTableMessageType messageType);
-};
-
-
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/NetworkTableServer.cpp b/aos/externals/WPILib/WPILib/networktables2/server/NetworkTableServer.cpp
deleted file mode 100644
index a0f3677..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/NetworkTableServer.cpp
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * NetworkTableServer.cpp
- *
- *  Created on: Sep 27, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/server/NetworkTableServer.h"
-#include "networktables2/server/ServerNetworkTableEntryStore.h"
-#include <iostream>
-#include <limits.h>
-
-NetworkTableServer::NetworkTableServer(IOStreamProvider& _streamProvider, NetworkTableEntryTypeManager& typeManager, NTThreadManager& threadManager):
-		NetworkTableNode(*new ServerNetworkTableEntryStore(*this)),
-		streamProvider(_streamProvider),
-		incomingStreamMonitor(streamProvider, (ServerNetworkTableEntryStore&)entryStore, *this, connectionList, typeManager, threadManager),
-		connectionList(&incomingStreamMonitor),
-		writeManager(connectionList, threadManager, GetEntryStore(), ULONG_MAX),
-                continuingReceiver(writeManager){
-	
-	GetEntryStore().SetIncomingReceiver(&continuingReceiver);
-	GetEntryStore().SetOutgoingReceiver(&continuingReceiver);
-	
-	incomingStreamMonitor.start();
-	writeManager.start();
-}
-//TODO implement simplified NetworkTableServer constructor
-/*NetworkTableServer::NetworkTableServer(IOStreamProvider& streamProvider){
-	this(streamProvider, new NetworkTableEntryTypeManager(), new DefaultThreadManager());
-}*/
-NetworkTableServer::~NetworkTableServer(){
-	Close();
-	delete &entryStore;
-}
-
-void NetworkTableServer::Close(){
-	try{
-		//Note: streamProvider must come before the incomingStreamMonitor so the that task can complete first for the thread to close 
-		//  [9/1/2013 Terminator] 
-		streamProvider.close(); 
-		incomingStreamMonitor.stop();
-		writeManager.stop();
-		connectionList.closeAll();
-	} catch (const std::exception& ex) {
-	    //TODO print stack trace?
-	}
-}
-
-void NetworkTableServer::OnNewConnection(ServerConnectionAdapter& connectionAdapter) {
-	connectionList.add(connectionAdapter);
-}
-
-
-bool NetworkTableServer::IsConnected() {
-	return true;
-}
-
-
-bool NetworkTableServer::IsServer() {
-	return true;
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/NetworkTableServer.h b/aos/externals/WPILib/WPILib/networktables2/server/NetworkTableServer.h
deleted file mode 100644
index d38e44f..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/NetworkTableServer.h
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * NetworkTableServer.h
- *
- *  Created on: Sep 27, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NETWORKTABLESERVER_H_
-#define NETWORKTABLESERVER_H_
-
-
-class NetworkTableServer;
-
-#include "networktables2/TransactionDirtier.h"
-#include "networktables2/NetworkTableNode.h"
-#include "networktables2/server/ServerIncomingStreamMonitor.h"
-#include "networktables2/server/ServerIncomingConnectionListener.h"
-#include "networktables2/WriteManager.h"
-#include "networktables2/stream/IOStreamProvider.h"
-#include "networktables2/server/ServerConnectionList.h"
-
-/**
- * A server node in NetworkTables 2.0
- * 
- * @author Mitchell
- *
- */
-class NetworkTableServer : public NetworkTableNode, public ServerIncomingConnectionListener{
-private:
-	IOStreamProvider& streamProvider;
-	ServerIncomingStreamMonitor incomingStreamMonitor;
-	ServerConnectionList connectionList;
-	WriteManager writeManager;
-	TransactionDirtier continuingReceiver;
-
-  public:
-	/**
-	 * Create a NetworkTable Server
-	 * 
-	 * @param streamProvider
-	 * @param threadManager
-	 * @param transactionPool
-	 */
-	NetworkTableServer(IOStreamProvider& streamProvider, NetworkTableEntryTypeManager& typeManager, NTThreadManager& threadManager);
-	~NetworkTableServer();
-	/**
-	 * Create a NetworkTable Server
-	 * 
-	 * @param streamProvider
-	 */
-	NetworkTableServer(IOStreamProvider& streamProvider);
-	
-	void Close();
-
-	void OnNewConnection(ServerConnectionAdapter& connectionAdapter);
-
-	
-	bool IsConnected();
-
-	
-	bool IsServer();
-
-};
-
-
-
-#endif /* NETWORKTABLESERVER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/ServerAdapterManager.h b/aos/externals/WPILib/WPILib/networktables2/server/ServerAdapterManager.h
deleted file mode 100644
index bc15254..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/ServerAdapterManager.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * ServerAdapterManager.h
- *
- *  Created on: Sep 26, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef SERVERADAPTERMANAGER_H_
-#define SERVERADAPTERMANAGER_H_
-
-class ServerAdapterManager;
-
-#include "networktables2/server/ServerConnectionAdapter.h"
-
-/**
- * A class that manages connections to a server
- * 
- * @author Mitchell
- *
- */
-class ServerAdapterManager
-{
-public:
-	virtual ~ServerAdapterManager()
-	{
-	}
-	/**
-	 * Called when a connection adapter has been closed
-	 * @param connectionAdapter the adapter that was closed
-	 */
-	virtual void close(ServerConnectionAdapter& connectionAdapter, bool closeStream) = 0;
-};
-
-#endif /* SERVERADAPTERMANAGER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionAdapter.cpp b/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionAdapter.cpp
deleted file mode 100644
index 62323d8..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionAdapter.cpp
+++ /dev/null
@@ -1,141 +0,0 @@
-/*
- * ServerConnectionAdapter.cpp
- *
- *  Created on: Sep 26, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/server/ServerConnectionAdapter.h"
-#include <stdio.h>
-
-
-void ServerConnectionAdapter::gotoState(ServerConnectionState* newState){
-	if(connectionState!=newState){
-	  fprintf(stdout, "[NT] %p entered connection state: %s\n", (void*)this, newState->toString());
-	  fflush(stdout);
-		connectionState = newState;
-	}
-}
-
-ServerConnectionAdapter::ServerConnectionAdapter(IOStream* stream, ServerNetworkTableEntryStore& _entryStore, IncomingEntryReceiver& _transactionReceiver, ServerAdapterManager& _adapterListener, NetworkTableEntryTypeManager& typeManager, NTThreadManager& threadManager) :
-	entryStore(_entryStore), transactionReceiver(_transactionReceiver), adapterListener(_adapterListener),
-	connection(stream, typeManager), monitorThread(*this, connection), m_IsAdapterListenerClosed(false) {
-        connectionState = &ServerConnectionState::CLIENT_DISCONNECTED;
-	gotoState(&ServerConnectionState::GOT_CONNECTION_FROM_CLIENT);
-	readThread = threadManager.newBlockingPeriodicThread(&monitorThread, "Server Connection Reader Thread");
-}
-
-ServerConnectionAdapter::~ServerConnectionAdapter(){
-  delete readThread;
-}
-
-
-void ServerConnectionAdapter::badMessage(BadMessageException& e) {
-  fprintf(stdout, "[NT] Bad message: %s\n", e.what());
-  fflush(stdout);
-	gotoState(new ServerConnectionState_Error(e));
-	adapterListener.close(*this, true);
-	m_IsAdapterListenerClosed=true;
-	if (readThread)    {
-	  readThread->stop();
-	}
-}
-
-void ServerConnectionAdapter::ioException(IOException& e) {
-  fprintf(stdout, "[NT] IOException message: %s\n", e.what());
-  fflush(stdout);
-	if(e.isEOF())
-		gotoState(&ServerConnectionState::CLIENT_DISCONNECTED);
-	else
-		gotoState(new ServerConnectionState_Error(e));
-	adapterListener.close(*this, false);
-	m_IsAdapterListenerClosed=true;
-	if (readThread)    {
-	  readThread->stop();
-	}
-}
-
-
-void ServerConnectionAdapter::shutdown(bool closeStream) {
-	readThread->stop();
-	if(closeStream)
-		connection.close();
-}
-
-bool ServerConnectionAdapter::keepAlive() {
-	return !m_IsAdapterListenerClosed;  //returns true as long as the adapter listener has not been flagged for closing
-}
-
-void ServerConnectionAdapter::clientHello(ProtocolVersion protocolRevision) {
-	if(connectionState!=&ServerConnectionState::GOT_CONNECTION_FROM_CLIENT)
-		throw BadMessageException("A server should not receive a client hello after it has already connected/entered an error state");
-    if(protocolRevision!=NetworkTableConnection::PROTOCOL_REVISION){
-        connection.sendProtocolVersionUnsupported();
-        throw BadMessageException("Client Connected with bad protocol revision");
-    }
-    else{
-		entryStore.sendServerHello(connection);
-		gotoState(&ServerConnectionState::CONNECTED_TO_CLIENT);
-    }
-}
-
-void ServerConnectionAdapter::protocolVersionUnsupported(ProtocolVersion protocolRevision) {
-	throw BadMessageException("A server should not receive a protocol version unsupported message");
-}
-
-void ServerConnectionAdapter::serverHelloComplete() {
-	throw BadMessageException("A server should not receive a server hello complete message");
-}
-
-void ServerConnectionAdapter::offerIncomingAssignment(NetworkTableEntry* entry) {
-	transactionReceiver.offerIncomingAssignment(entry);
-}
-
-void ServerConnectionAdapter::offerIncomingUpdate(NetworkTableEntry* entry, SequenceNumber sequenceNumber, EntryValue value) {
-	transactionReceiver.offerIncomingUpdate(entry, sequenceNumber, value);
-}
-
-NetworkTableEntry* ServerConnectionAdapter::GetEntry(EntryId id) {
-	return entryStore.GetEntry(id);
-}
-
-void ServerConnectionAdapter::offerOutgoingAssignment(NetworkTableEntry* entry) {
-	try {
-		if(connectionState==&ServerConnectionState::CONNECTED_TO_CLIENT)
-			connection.sendEntryAssignment(*entry);
-	} catch (IOException& e) {
-		ioException(e);
-	}
-}
-void ServerConnectionAdapter::offerOutgoingUpdate(NetworkTableEntry* entry) {
-	try {
-		if(connectionState==&ServerConnectionState::CONNECTED_TO_CLIENT)
-			connection.sendEntryUpdate(*entry);
-	} catch (IOException& e) {
-		ioException(e);
-	}
-}
-
-
-void ServerConnectionAdapter::flush() {
-	try {
-		connection.flush();
-	} catch (IOException& e) {
-		ioException(e);
-	}
-}
-
-/**
- * @return the state of the connection
- */
-ServerConnectionState* ServerConnectionAdapter::getConnectionState() {
-	return connectionState;
-}
-
-void ServerConnectionAdapter::ensureAlive() {
-	try {
-		connection.sendKeepAlive();
-	} catch (IOException& e) {
-		ioException(e);
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionAdapter.h b/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionAdapter.h
deleted file mode 100644
index f1a268c..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionAdapter.h
+++ /dev/null
@@ -1,102 +0,0 @@
-/*
- * ServerConnectionAdapter.h
- *
- *  Created on: Sep 26, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef SERVERCONNECTIONADAPTER_H_
-#define SERVERCONNECTIONADAPTER_H_
-
-class ServerConnectionAdapter;
-
-#include "networktables2/connection/ConnectionMonitorThread.h"
-#include "networktables2/NetworkTableEntry.h"
-#include "networktables2/connection/ConnectionAdapter.h"
-#include "networktables2/stream/IOStream.h"
-#include "networktables2/IncomingEntryReceiver.h"
-#include "networktables2/FlushableOutgoingEntryReceiver.h"
-#include "networktables2/server/ServerNetworkTableEntryStore.h"
-#include "networktables2/server/ServerAdapterManager.h"
-#include "networktables2/server/ServerConnectionState.h"
-#include "networktables2/thread/NTThread.h"
-#include "networktables2/thread/NTThreadManager.h"
-
-
-
-/**
- * Object that adapts messages from a client to the server
- * 
- * @author Mitchell
- *
- */
-class ServerConnectionAdapter : public ConnectionAdapter, public IncomingEntryReceiver, public FlushableOutgoingEntryReceiver{
-private:
-	ServerNetworkTableEntryStore& entryStore;
-	IncomingEntryReceiver& transactionReceiver;
-	ServerAdapterManager& adapterListener;
-public:
-	/**
-	 * the connection this adapter uses
-	 */
-	NetworkTableConnection connection;
-private:
-	NTThread* readThread;
-	ConnectionMonitorThread monitorThread;
-private:
-
-	ServerConnectionState* connectionState;
-
-	void gotoState(ServerConnectionState* newState);
-	bool m_IsAdapterListenerClosed;
-public:
-	/**
-	 * Create a server connection adapter for a given stream
-	 * 
-	 * @param stream
-	 * @param transactionPool
-	 * @param entryStore
-	 * @param transactionReceiver
-	 * @param adapterListener
-	 * @param threadManager
-	 */
-	ServerConnectionAdapter(IOStream* stream, ServerNetworkTableEntryStore& entryStore, IncomingEntryReceiver& transactionReceiver, ServerAdapterManager& adapterListener, NetworkTableEntryTypeManager& typeManager, NTThreadManager& threadManager);
-	virtual ~ServerConnectionAdapter();
-
-	/**
-	* stop the read thread and close the stream
-	*/
-	void shutdown(bool closeStream);
-
-	void offerOutgoingAssignment(NetworkTableEntry* entry);
-
-	void offerOutgoingUpdate(NetworkTableEntry* entry);
-
-
-	void flush();
-
-	/**
-	* @return the state of the connection
-	*/
-	ServerConnectionState* getConnectionState();
-
-	void ensureAlive();
-
-	//return true once the close has been issued
-	bool IsAdapterListenerClosed() const {return m_IsAdapterListenerClosed;}
-	ConnectionAdapter &AsConnectionAdapter() {return *this;}
-protected:  //from ConnectionAdapter
-
-	bool keepAlive();
-	void badMessage(BadMessageException& e);
-	void ioException(IOException& e);
-	void clientHello(ProtocolVersion protocolRevision);
-	void protocolVersionUnsupported(ProtocolVersion protocolRevision);
-	void serverHelloComplete();
-	void offerIncomingAssignment(NetworkTableEntry* entry);
-	void offerIncomingUpdate(NetworkTableEntry* entry, SequenceNumber sequenceNumber, EntryValue value);
-	NetworkTableEntry* GetEntry(EntryId id);
-};
-
-
-#endif /* SERVERCONNECTIONADAPTER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionList.cpp b/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionList.cpp
deleted file mode 100644
index 731333f..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionList.cpp
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * ServerConnectionList.cpp
- *
- *  Created on: Sep 26, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/server/ServerConnectionList.h"
-#include "networktables2/server/ServerIncomingStreamMonitor.h"
-#include <algorithm>
-#include <stdio.h>
-
-
-
-ServerConnectionList::ServerConnectionList(ServerIncomingStreamMonitor *Factory) : m_Factory(Factory)
-{
-}
-ServerConnectionList::~ServerConnectionList()
-{
-	connectionsLock.take();
-	closeAll();
-}
-
-void ServerConnectionList::add(ServerConnectionAdapter& connection)
-{ 
-	NTSynchronized sync(connectionsLock);
-	connections.push_back(&connection);
-}
-
-void ServerConnectionList::close(ServerConnectionAdapter& connectionAdapter, bool closeStream)
-{ 
-	NTSynchronized sync(connectionsLock);
-	std::vector<ServerConnectionAdapter*>::iterator connectionPosition = std::find(connections.begin(), connections.end(), &connectionAdapter);
-	if (connectionPosition != connections.end() && (*connectionPosition)==&connectionAdapter)
-	{
-	        fprintf(stdout, "[NT] Close: %p\n", (void*)&connectionAdapter);
-		fflush(stdout);
-		connections.erase(connectionPosition);
-		m_Factory->close(&connectionAdapter);
-		//connectionAdapter.shutdown(closeStream);
-		//delete &connectionAdapter;
-	}
-}
-
-void ServerConnectionList::closeAll()
-{ 
-	NTSynchronized sync(connectionsLock);
-	while(connections.size() > 0)
-	{
-		close(*connections[0], true);
-	}
-}
-
-void ServerConnectionList::offerOutgoingAssignment(NetworkTableEntry* entry)
-{ 
-	NTSynchronized sync(connectionsLock);
-	for(unsigned int i = 0; i < connections.size(); ++i)
-	{
-		connections[i]->offerOutgoingAssignment(entry);
-	}
-}
-void ServerConnectionList::offerOutgoingUpdate(NetworkTableEntry* entry)
-{ 
-	NTSynchronized sync(connectionsLock);
-	for(unsigned int i = 0; i < connections.size(); ++i)
-	{
-		connections[i]->offerOutgoingUpdate(entry);
-	}
-}
-void ServerConnectionList::flush()
-{ 
-	NTSynchronized sync(connectionsLock);
-	for(unsigned int i = 0; i < connections.size(); ++i)
-	{
-		connections[i]->flush();
-	}
-}
-void ServerConnectionList::ensureAlive()
-{ 
-	NTSynchronized sync(connectionsLock);
-	for(unsigned int i = 0; i < connections.size(); ++i)
-	{
-		connections[i]->ensureAlive();
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionList.h b/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionList.h
deleted file mode 100644
index 8b3211e..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionList.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * ServerConnectionList.h
- *
- *  Created on: Sep 26, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef SERVERCONNECTIONLIST_H_
-#define SERVERCONNECTIONLIST_H_
-
-
-
-class ServerConnectionList;
-class ServerIncomingStreamMonitor;
-
-#include "networktables2/FlushableOutgoingEntryReceiver.h"
-#include "networktables2/NetworkTableEntry.h"
-#include "networktables2/server/ServerAdapterManager.h"
-#include "networktables2/server/ServerConnectionAdapter.h"
-#include <vector>
-
-
-
-/**
- * A list of connections that the server currently has
- * 
- * @author Mitchell
- *
- */
-class ServerConnectionList : public FlushableOutgoingEntryReceiver, public ServerAdapterManager{
-private:
-	NTReentrantSemaphore connectionsLock;
-	std::vector<ServerConnectionAdapter*> connections;
-	ServerIncomingStreamMonitor * const m_Factory; //make call to close connection
-public:
-	ServerConnectionList(ServerIncomingStreamMonitor *Factory);
-	virtual ~ServerConnectionList();
-	/**
-	 * Add a connection to the list
-	 * @param connection
-	 */
-	void add(ServerConnectionAdapter& connection);
-	
-	
-	void close(ServerConnectionAdapter& connectionAdapter, bool closeStream);
-	/**
-	 * close all connections and remove them
-	 */
-	void closeAll();
-	
-	void offerOutgoingAssignment(NetworkTableEntry* entry);
-	void offerOutgoingUpdate(NetworkTableEntry* entry);
-	void flush();
-	void ensureAlive();
-};
-
-
-
-#endif /* SERVERCONNECTIONLIST_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionState.cpp b/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionState.cpp
deleted file mode 100644
index 2e48450..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionState.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * ServerConnectionState.cpp
- *
- *  Created on: Sep 27, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/server/ServerConnectionState.h"
-
-ServerConnectionState ServerConnectionState::GOT_CONNECTION_FROM_CLIENT("GOT_CONNECTION_FROM_CLIENT");
-
-ServerConnectionState ServerConnectionState::CONNECTED_TO_CLIENT("CONNECTED_TO_CLIENT");
-
-ServerConnectionState ServerConnectionState::CLIENT_DISCONNECTED("CLIENT_DISCONNECTED");
-	
-
-ServerConnectionState::ServerConnectionState(const char* _name):name(_name){
-}
-const char* ServerConnectionState::toString(){
-	return name;
-}
-
-ServerConnectionState_Error::ServerConnectionState_Error(std::exception& _e):ServerConnectionState("SERVER_ERROR"),e(_e){
-}
-const char* ServerConnectionState_Error::toString(){
-	return "SERVER_ERROR";
-	//TODO return "SERVER_ERROR: "+e.getClass()+": "+e.what();
-}
-std::exception& ServerConnectionState_Error::getException(){
-	return e;
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionState.h b/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionState.h
deleted file mode 100644
index 438ce32..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/ServerConnectionState.h
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * ServerConnectionState.h
- *
- *  Created on: Sep 26, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef SERVERCONNECTIONSTATE_H_
-#define SERVERCONNECTIONSTATE_H_
-
-class ServerConnectionState;
-class ServerConnectionState_Error;
-
-#include <exception>
-
-
-
-/**
- * Represents the state of a connection to the server
- * 
- * @author Mitchell
- *
- */
-class ServerConnectionState
-{
-public:
-	/**
-	 * represents that the server has received the connection from the client but has not yet received the client hello
-	 */
-	static ServerConnectionState GOT_CONNECTION_FROM_CLIENT;
-	/**
-	 * represents that the client is in a connected non-error state
-	 */
-	static ServerConnectionState CONNECTED_TO_CLIENT;
-	/**
-	 * represents that the client has disconnected from the server
-	 */
-	static ServerConnectionState CLIENT_DISCONNECTED;
-
-private:
-	const char* name;
-protected:
-	ServerConnectionState(const char* name);
-public:
-	virtual const char* toString();
-	virtual ~ServerConnectionState()
-	{
-	}
-};
-
-/**
- * Represents that the client is in an error state
- * 
- * @author Mitchell
- *
- */
-class ServerConnectionState_Error : public ServerConnectionState
-{
-private:
-	std::exception& e;
-public:
-	/**
-	 * Create a new error state
-	 * @param e
-	 */
-	ServerConnectionState_Error(std::exception& e);
-
-	virtual const char* toString();
-	/**
-	 * @return the exception that caused the client connection to enter an error state
-	 */
-	std::exception& getException();
-};
-
-#endif /* SERVERCONNECTIONSTATE_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/ServerIncomingConnectionListener.h b/aos/externals/WPILib/WPILib/networktables2/server/ServerIncomingConnectionListener.h
deleted file mode 100644
index 82ec0d1..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/ServerIncomingConnectionListener.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * ServerIncomingConnectionListener.h
- *
- *  Created on: Sep 26, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef SERVERINCOMINGCONNECTIONLISTENER_H_
-#define SERVERINCOMINGCONNECTIONLISTENER_H_
-
-#include "networktables2/server/ServerConnectionAdapter.h"
-
-/**
- * Listener for new incoming server connections
- * @author Mitchell
- *
- */
-class ServerIncomingConnectionListener
-{
-public:
-	virtual ~ServerIncomingConnectionListener()
-	{
-	}
-	/**
-	 * 
-	 * Called on create of a new connection
-	 * @param connectionAdapter the server connection adapter
-	 */
-	virtual void OnNewConnection(ServerConnectionAdapter& connectionAdapter) = 0;
-};
-
-#endif /* SERVERINCOMINGCONNECTIONLISTENER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/ServerIncomingStreamMonitor.cpp b/aos/externals/WPILib/WPILib/networktables2/server/ServerIncomingStreamMonitor.cpp
deleted file mode 100644
index 44bf367..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/ServerIncomingStreamMonitor.cpp
+++ /dev/null
@@ -1,86 +0,0 @@
-/*
- * ServerIncomingStreamMonitor.cpp
- *
- *  Created on: Sep 26, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/server/ServerIncomingStreamMonitor.h"
-#include "networktables2/stream/IOStream.h"
-#include "networktables2/util/System.h"
-
-ServerIncomingStreamMonitor::ServerIncomingStreamMonitor(IOStreamProvider& _streamProvider, ServerNetworkTableEntryStore& _entryStore,
-		ServerIncomingConnectionListener& _incomingListener, ServerAdapterManager& _adapterListener, NetworkTableEntryTypeManager& _typeManager,
-		NTThreadManager& _threadManager) :
-	streamProvider(_streamProvider), entryStore(_entryStore), incomingListener(_incomingListener), adapterListener(_adapterListener),
-			typeManager(_typeManager), threadManager(_threadManager), monitorThread(NULL)
-{
-}
-
-ServerIncomingStreamMonitor::~ServerIncomingStreamMonitor()
-{
-  stop();
-}
-
-/**
- * Start the monitor thread
- */
-void ServerIncomingStreamMonitor::start()
-{
-	if (monitorThread != NULL)
-		stop();
-	monitorThread = threadManager.newBlockingPeriodicThread(this, "Server Incoming Stream Monitor Thread");
-}
-/**
- * Stop the monitor thread
- */
-void ServerIncomingStreamMonitor::stop()
-{
-	if (monitorThread != NULL)
-	{
-		streamProvider.close();  //This would get called on deletion too
-		NTThread *temp=monitorThread;
-		monitorThread = NULL;  //call this before stop for the check below to ensure a new server connection adapter will not happen
-		temp->stop();
-		delete temp;
-	}
-}
-
-void ServerIncomingStreamMonitor::run()
-{
-	try
-	{
-		while (monitorThread!=NULL)
-		{
-			IOStream* newStream = streamProvider.accept();
-			{
-				NTSynchronized sync(BlockDeletionList);
-				for (size_t i=0;i<m_DeletionList.size();i++)
-				{
-					ServerConnectionAdapter *Element=m_DeletionList[i];
-					Element->shutdown(true);  //TODO assume to always close stream
-					delete Element;
-				}
-				m_DeletionList.clear();
-			}
-			//Note: monitorThread must be checked to avoid crash on exit
-			//  [8/31/2013 Terminator]
-			if ((monitorThread!=NULL)&&(newStream != NULL))
-			{
-				ServerConnectionAdapter* connectionAdapter = new ServerConnectionAdapter(newStream, entryStore, entryStore, adapterListener, typeManager, threadManager);
-				incomingListener.OnNewConnection(*connectionAdapter);
-			}
-			sleep_ms(100); //avoid busy wait
-		}
-	}
-	catch (IOException& e)
-	{
-		//could not get a new stream for some reason. ignore and continue
-	}
-}
-
-void ServerIncomingStreamMonitor::close(ServerConnectionAdapter *Adapter)
-{
-	NTSynchronized sync(BlockDeletionList);
-	m_DeletionList.push_back(Adapter);
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/ServerIncomingStreamMonitor.h b/aos/externals/WPILib/WPILib/networktables2/server/ServerIncomingStreamMonitor.h
deleted file mode 100644
index 7b2ba5a..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/ServerIncomingStreamMonitor.h
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * ServerIncomingStreamMonitor.h
- *
- *  Created on: Sep 26, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef SERVERINCOMINGSTREAMMONITOR_H_
-#define SERVERINCOMINGSTREAMMONITOR_H_
-
-
-class ServerIncomingStreamMonitor;
-
-
-#include "networktables2/thread/PeriodicRunnable.h"
-#include "networktables2/thread/NTThreadManager.h"
-#include "networktables2/thread/NTThread.h"
-#include "networktables2/stream/IOStreamProvider.h"
-#include "networktables2/server/ServerIncomingConnectionListener.h"
-#include "networktables2/server/ServerNetworkTableEntryStore.h"
-#include "networktables2/server/ServerAdapterManager.h"
-#include "networktables2/server/ServerConnectionAdapter.h"
-
-
-
-/**
- * Thread that monitors for incoming connections
- * 
- * @author Mitchell
- *
- */
-class ServerIncomingStreamMonitor : PeriodicRunnable{
-private:
-	IOStreamProvider& streamProvider;
-	ServerNetworkTableEntryStore& entryStore;
-	ServerIncomingConnectionListener& incomingListener;
-
-	ServerAdapterManager& adapterListener;
-	NetworkTableEntryTypeManager& typeManager;
-	NTThreadManager& threadManager;
-	NTThread* monitorThread;
-	
-	NTReentrantSemaphore BlockDeletionList;
-	std::vector<ServerConnectionAdapter *> m_DeletionList;
-public:
-	/**
-	 * Create a new incoming stream monitor
-	 * @param streamProvider the stream provider to retrieve streams from
-	 * @param entryStore the entry store for the server
-	 * @param transactionPool transaction pool for the server
-	 * @param incomingListener the listener that is notified of new connections
-	 * @param adapterListener the listener that will listen to adapter events
-	 * @param threadManager the thread manager used to create the incoming thread and provided to the Connection Adapters
-	 */
-	ServerIncomingStreamMonitor(IOStreamProvider& streamProvider, ServerNetworkTableEntryStore& entryStore,
-			ServerIncomingConnectionListener& incomingListener,
-			ServerAdapterManager& adapterListener,
-			NetworkTableEntryTypeManager& typeManager, NTThreadManager& threadManager);
-	
-	~ServerIncomingStreamMonitor();
-	/**
-	 * Start the monitor thread
-	 */
-	void start();
-	/**
-	 * Stop the monitor thread
-	 */
-	void stop();
-	
-	void run();
-	
-	void close(ServerConnectionAdapter *Adapter);
-	
-};
-
-
-
-
-#endif /* SERVERINCOMINGSTREAMMONITOR_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/ServerNetworkTableEntryStore.cpp b/aos/externals/WPILib/WPILib/networktables2/server/ServerNetworkTableEntryStore.cpp
deleted file mode 100644
index b49bbf5..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/ServerNetworkTableEntryStore.cpp
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * ServerNetworkTableEntryStore.cpp
- *
- *  Created on: Sep 26, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/server/ServerNetworkTableEntryStore.h"
-
-ServerNetworkTableEntryStore::ServerNetworkTableEntryStore(TableListenerManager& _listenerManager) :
-	AbstractNetworkTableEntryStore(_listenerManager)
-{
-	nextId = (EntryId)0;
-}
-ServerNetworkTableEntryStore::~ServerNetworkTableEntryStore()
-{
-}
-
-bool ServerNetworkTableEntryStore::addEntry(NetworkTableEntry* newEntry)
-{
-	NTSynchronized sync(block_namedEntries);
-	NetworkTableEntry* entry = namedEntries[newEntry->name];
-	
-	if (entry == NULL)
-	{
-		newEntry->SetId(nextId++);
-		idEntries[newEntry->GetId()] = newEntry;
-		namedEntries[newEntry->name] = newEntry;
-		return true;
-	}
-	return false;
-}
-
-bool ServerNetworkTableEntryStore::updateEntry(NetworkTableEntry* entry, SequenceNumber sequenceNumber, EntryValue value)
-{
-	NTSynchronized sync(LOCK);
-	return entry->PutValue(sequenceNumber, value);
-}
-
-/**
- * Send all entries in the entry store as entry assignments in a single transaction
- * @param connection
- * @throws IOException
- */
-void ServerNetworkTableEntryStore::sendServerHello(NetworkTableConnection& connection)
-{
-	std::vector<NetworkTableEntry *> entry_list;
-	{
-		NTSynchronized sync(block_namedEntries);
-		std::map<std::string, NetworkTableEntry*>::iterator itr;
-		for (itr = namedEntries.begin(); itr != namedEntries.end(); itr++)
-		{
-			NetworkTableEntry* entry = itr->second;
-			entry_list.push_back(entry);
-		}
-	}
-
-	for (size_t i=0;i<entry_list.size();i++)
-		connection.sendEntryAssignment(*(entry_list[i]));
-
-	connection.sendServerHelloComplete();
-	connection.flush();
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/server/ServerNetworkTableEntryStore.h b/aos/externals/WPILib/WPILib/networktables2/server/ServerNetworkTableEntryStore.h
deleted file mode 100644
index f9c4621..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/server/ServerNetworkTableEntryStore.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * ServerNetworkTableEntryStore.h
- *
- *  Created on: Sep 26, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef SERVERNETWORKTABLEENTRYSTORE_H_
-#define SERVERNETWORKTABLEENTRYSTORE_H_
-
-
-class ServerNetworkTableEntryStore;
-
-
-#include "networktables2/AbstractNetworkTableEntryStore.h"
-#include "networktables2/NetworkTableEntry.h"
-#include "OSAL/Synchronized.h"
-
-
-
-/**
- * The entry store for a {@link NetworkTableServer}
- * 
- * @author Mitchell
- *
- */
-class ServerNetworkTableEntryStore : public AbstractNetworkTableEntryStore{
-private:
-	EntryId nextId;
-public:
-	/**
-	 * Create a new Server entry store
-	 * @param transactionPool the transaction pool
-	 * @param listenerManager the listener manager that fires events from this entry store
-	 */
-	ServerNetworkTableEntryStore(TableListenerManager& listenerManager);
-	virtual ~ServerNetworkTableEntryStore();
-	
-protected:
-	bool addEntry(NetworkTableEntry* newEntry);
-
-	bool updateEntry(NetworkTableEntry* entry, SequenceNumber sequenceNumber, EntryValue value);
-	
-public:
-	/**
-	 * Send all entries in the entry store as entry assignments in a single transaction
-	 * @param connection
-	 * @throws IOException
-	 */
-	void sendServerHello(NetworkTableConnection& connection);
-};
-
-
-
-#endif /* SERVERNETWORKTABLEENTRYSTORE_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/stream/FDIOStream.cpp b/aos/externals/WPILib/WPILib/networktables2/stream/FDIOStream.cpp
deleted file mode 100644
index 55e2ac2..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/stream/FDIOStream.cpp
+++ /dev/null
@@ -1,112 +0,0 @@
-/*
- * FDIOStream.cpp
- *
- *  Created on: Sep 27, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/stream/FDIOStream.h"
-#include "networktables2/util/IOException.h"
-#include "networktables2/util/EOFException.h"
-
-#include <errno.h>
-#include <stdlib.h>
-#include <ioLib.h>
-#include <selectLib.h>
-#include <string.h>
-#include <stdio.h>
-
-
-FDIOStream::FDIOStream(int _fd){
-  fd = _fd;
-  //	f = fdopen(_fd, "rbwb");
-  //	if(f==NULL)
-  //		throw IOException("Could not open stream from file descriptor", errno);
-  // Set the TCP socket to be non-blocking
-  int on = 1;
-  if (ioctl(fd, FIONBIO, (int)&on) < 0)
-  {
-    ::close(fd);
-    throw IOException("Could not set socket to non-blocking mode");
-  }
-}
-FDIOStream::~FDIOStream(){
-	close();
-}
-
-int FDIOStream::read(void* ptr, int numbytes){
-	if(numbytes==0)
-		return 0;
-	char* bufferPointer = (char*)ptr;
-	int totalRead = 0;
-
-	struct timeval timeout;
-	fd_set fdSet;
-	
-	while (totalRead < numbytes) {
-		FD_ZERO(&fdSet);
-		FD_SET(fd, &fdSet);
-		timeout.tv_sec = 1;
-		timeout.tv_usec = 0;
-		int select_result = select(FD_SETSIZE, &fdSet, NULL, NULL, &timeout);
-		if ( select_result < 0)
-		  throw IOException("Select returned an error on read");
-
-		int numRead = 0;
-		if (FD_ISSET(fd, &fdSet)) {
-		  numRead = ::read(fd, bufferPointer, numbytes-totalRead);
-
-		  if(numRead == 0){
-		    throw EOFException();
-		  }
-		  else if (numRead < 0) {
-		    perror("read error: ");
-		    fflush(stderr);
-		    throw IOException("Error on FDIO read");
-		  }
-		  bufferPointer += numRead;
-		  totalRead += numRead;
-		}
-	}
-	return totalRead;
-}
-int FDIOStream::write(const void* ptr, int numbytes){
-	int numWrote = ::write(fd, (char*)ptr, numbytes);
-	if(numWrote==numbytes)
-		return numWrote;
-
-	if (numWrote == -1 && (errno == EWOULDBLOCK || errno == EAGAIN))
-	{
-		// see if write timeout expires
-		struct timeval timeout;
-		fd_set fdSet;
-
-		FD_ZERO(&fdSet);
-		FD_SET(fd, &fdSet);
-		timeout.tv_sec = 1;		// wait 1 second for the other side to connect
-		timeout.tv_usec = 0;
-
-		int select_result = select(FD_SETSIZE, NULL, &fdSet, NULL, &timeout);
-		if ( select_result < 0)
-			throw IOException("Select returned an error on write");
-
-		if (FD_ISSET(fd, &fdSet)) {
-			numWrote = ::write(fd, (char*)ptr, numbytes);
-			if(numWrote==numbytes)
-				return numWrote;
-		}
-	}
- 	
-	perror("write error: ");
-	fflush(stderr);
-	throw IOException("Could not write all bytes to fd stream");
-}
-void FDIOStream::flush(){
-  //if(fflush(f)==EOF)
-  //  throw EOFException();
-}
-void FDIOStream::close(){
-  //fclose(f);//ignore any errors closing
-  ::close(fd);
-}
-
diff --git a/aos/externals/WPILib/WPILib/networktables2/stream/FDIOStream.h b/aos/externals/WPILib/WPILib/networktables2/stream/FDIOStream.h
deleted file mode 100644
index 574bbc6..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/stream/FDIOStream.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * FDIOStream.h
- *
- *  Created on: Sep 27, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef FDIOSTREAM_H_
-#define FDIOSTREAM_H_
-
-
-
-class FDIOStream;
-
-
-#include "networktables2/stream/IOStream.h"
-#include <stdio.h>
-
-
-
-class FDIOStream : public IOStream{
-private:
-    //FILE* f;
-    int fd;
-public:
-	FDIOStream(int fd);
-	virtual ~FDIOStream();
-	int read(void* ptr, int numbytes);
-	int write(const void* ptr, int numbytes);
-	void flush();
-	void close();
-};
-
-
-
-#endif /* FDIOSTREAM_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/stream/IOStream.h b/aos/externals/WPILib/WPILib/networktables2/stream/IOStream.h
deleted file mode 100644
index 7f08b54..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/stream/IOStream.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * IOStream.h
- *
- *  Created on: Sep 27, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef IOSTREAM_H_
-#define IOSTREAM_H_
-
-class IOStream;
-
-class IOStream
-{
-public:
-	virtual ~IOStream()
-	{
-	}
-	virtual int read(void* ptr, int numbytes) = 0;
-	virtual int write(const void* ptr, int numbytes) = 0;
-	virtual void flush() = 0;
-	virtual void close() = 0;
-};
-
-#endif /* IOSTREAM_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/stream/IOStreamFactory.h b/aos/externals/WPILib/WPILib/networktables2/stream/IOStreamFactory.h
deleted file mode 100644
index 79a3920..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/stream/IOStreamFactory.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * IOStreamFactory.h
- *
- *  Created on: Sep 22, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef IOSTREAMFACTORY_H_
-#define IOSTREAMFACTORY_H_
-
-#include "networktables2/stream/IOStream.h"
-
-/**
- * A factory that will create the same IOStream. A stream returned by this factory should be closed before calling createStream again
- * 
- * @author Mitchell
- *
- */
-class IOStreamFactory
-{
-public:
-	virtual ~IOStreamFactory()
-	{
-	}
-	/**
-	 * @return create a new stream
-	 * @throws IOException
-	 */
-	virtual IOStream* createStream() = 0;
-};
-
-#endif /* IOSTREAMFACTORY_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/stream/IOStreamProvider.h b/aos/externals/WPILib/WPILib/networktables2/stream/IOStreamProvider.h
deleted file mode 100644
index 77f2bf8..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/stream/IOStreamProvider.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * IOStreamProvider.h
- *
- *  Created on: Sep 22, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef IOSTREAMPROVIDER_H_
-#define IOSTREAMPROVIDER_H_
-
-#include "networktables2/stream/IOStream.h"
-
-/**
- * An object that will provide the IOStream of clients to a NetworkTable Server
- * 
- * @author mwills
- *
- */
-class IOStreamProvider
-{
-public:
-	virtual ~IOStreamProvider()
-	{
-	}
-	/**
-	 * 
-	 * @return a new IOStream normally from a server
-	 * @throws IOException
-	 */
-	virtual IOStream* accept() = 0;
-	/**
-	 * Close the source of the IOStreams. {@link #accept()} should not be called after this is called
-	 * @throws IOException
-	 */
-	virtual void close() = 0;
-};
-
-#endif /* IOSTREAMPROVIDER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/stream/SocketServerStreamProvider.cpp b/aos/externals/WPILib/WPILib/networktables2/stream/SocketServerStreamProvider.cpp
deleted file mode 100644
index cf1175c..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/stream/SocketServerStreamProvider.cpp
+++ /dev/null
@@ -1,127 +0,0 @@
-/*
- * SocketServerStreamProvider.cpp
- *
- *  Created on: Sep 27, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/stream/SocketServerStreamProvider.h"
-#include "networktables2/stream/FDIOStream.h"
-#include "networktables2/util/IOException.h"
-
-#include <strings.h>
-#include <cstring>
-#include <errno.h>
-#ifdef _WRS_KERNEL
-#include <inetLib.h>
-#include <selectLib.h>
-#include <sockLib.h>
-#include <taskLib.h>
-#include <usrLib.h>
-#include <ioLib.h>
-#include <netinet/in.h>
-#include <netinet/tcp.h>
-#else
-#include <stdlib.h>
-#include <stdio.h>
-#include <sys/types.h>
-#include <unistd.h>
-#ifdef WIN32
-#include <windows.h>
-#include <winsock.h>
-#include <winsock2.h>
-#include <wininet.h>
-#include <ws2tcpip.h>
-#else
-#include <sys/socket.h>
-#include <sys/un.h>
-#include <netinet/in.h>
-#include <netinet/tcp.h>
-#endif
-#endif
-
-#ifndef _WRS_KERNEL
-#define ERROR -1
-#endif
-
-#if defined(WIN32) || defined(_WRS_KERNEL)
-typedef int addrlen_t;
-#else
-typedef socklen_t addrlen_t;
-#endif
-
-
-SocketServerStreamProvider::SocketServerStreamProvider(int port){
-	struct sockaddr_in serverAddr;
-	int sockAddrSize = sizeof(serverAddr);
-	memset(&serverAddr, 0, sockAddrSize);
-
-#ifdef _WRS_KERNEL
-	serverAddr.sin_len = (u_char)sockAddrSize;
-#endif
-	serverAddr.sin_family = AF_INET;
-	serverAddr.sin_port = htons(port);
-	serverAddr.sin_addr.s_addr = htonl(INADDR_ANY);
-
-	if ((serverSocket = socket(AF_INET, SOCK_STREAM, 0)) == ERROR)
-	{
-		throw IOException("Error creating server socket", errno);
-	}
-
-	// Set the TCP socket so that it can be reused if it is in the wait state.
-	int reuseAddr = 1;
-	setsockopt(serverSocket, SOL_SOCKET, SO_REUSEADDR, (char *)&reuseAddr, sizeof(reuseAddr));
-
-	// Bind socket to local address.
-	if (bind(serverSocket, (struct sockaddr *)&serverAddr, sockAddrSize) == ERROR)
-	{
-		::close(serverSocket);
-		throw IOException("Could not bind server socket", errno);
-	}
-
-	if (listen(serverSocket, 1) == ERROR)
-	{
-		::close(serverSocket);
-		throw IOException("Could not listen on server socket", errno);
-	}
-}
-SocketServerStreamProvider::~SocketServerStreamProvider(){
-	close();
-}
-
-
-IOStream* SocketServerStreamProvider::accept(){
-	struct timeval timeout;
-	// Check for a shutdown once per second
-	while (true)
-	{
-		fd_set fdSet;
-
-		FD_ZERO(&fdSet);
-		FD_SET(serverSocket, &fdSet);
-		timeout.tv_sec = 1;
-		timeout.tv_usec = 0;
-		int select_result = select(FD_SETSIZE, &fdSet, NULL, NULL, &timeout);
-		if ( select_result < 0)
-		  return NULL;
-
-		if (FD_ISSET(serverSocket, &fdSet))
-		  {
-		    struct sockaddr clientAddr;
-		    memset(&clientAddr, 0, sizeof(struct sockaddr));
-		    addrlen_t clientAddrSize = sizeof(clientAddr);
-		    int connectedSocket = ::accept(serverSocket, &clientAddr, &clientAddrSize);
-		    if (connectedSocket == ERROR)
-		      return NULL;
-				
-		    return new FDIOStream(connectedSocket);
-		  }
-
-		
-	}
-	return NULL;
-}
-
-void SocketServerStreamProvider::close(){
-	::close(serverSocket);
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/stream/SocketServerStreamProvider.h b/aos/externals/WPILib/WPILib/networktables2/stream/SocketServerStreamProvider.h
deleted file mode 100644
index 8813e2e..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/stream/SocketServerStreamProvider.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * SocketServerStreamProvider.h
- *
- *  Created on: Sep 27, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef SOCKETSERVERSTREAMPROVIDER_H_
-#define SOCKETSERVERSTREAMPROVIDER_H_
-
-
-class SocketServerStreamProvider;
-
-#include "networktables2/stream/IOStream.h"
-#include "networktables2/stream/IOStreamProvider.h"
-
-
-
-
-class SocketServerStreamProvider : public IOStreamProvider{
-private:
-	int serverSocket;
-public:
-	SocketServerStreamProvider(int port);
-	virtual ~SocketServerStreamProvider();
-	IOStream* accept();
-	void close();
-};
-
-
-
-
-#endif /* SOCKETSERVERSTREAMPROVIDER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/stream/SocketStreamFactory.cpp b/aos/externals/WPILib/WPILib/networktables2/stream/SocketStreamFactory.cpp
deleted file mode 100644
index 1033998..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/stream/SocketStreamFactory.cpp
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * SocketStreamFactory.cpp
- *
- *  Created on: Nov 3, 2012
- *      Author: Mitchell Wills
- */
-
-
-#include <cstring>
-#ifdef _WRS_KERNEL
-#else
-	#include <stdlib.h>
-	#include <stdio.h>
-	#include <sys/types.h>
-	#include <unistd.h>
-	#ifdef WIN32
-	   #include <winsock.h>
-	   #include <winsock2.h>
-	#else
-		#include <sys/socket.h>
-		#include <sys/un.h>
-                #include <netdb.h>
-		#include <netinet/in.h>
-		#include <netinet/tcp.h>
-	#endif
-#endif
-#include "networktables2/stream/FDIOStream.h"
-#include "networktables2/stream/SocketStreamFactory.h"
-
-
-SocketStreamFactory::SocketStreamFactory(const char* _host, int _port):host(_host), port(_port){}
-
-SocketStreamFactory::~SocketStreamFactory(){}
-
-IOStream* SocketStreamFactory::createStream(){
-#ifdef _WRS_KERNEL
-	//crio client not supported
-	return NULL;
-#else
-    struct sockaddr_in serv_addr;
-    struct hostent *server;
-
-    int sockfd = socket(AF_INET, SOCK_STREAM, 0);
-    if (sockfd < 0){
-        //error("ERROR opening socket");
-        return NULL;
-    }
-    server = gethostbyname(host);
-    if (server == NULL) {
-        //fprintf(stderr,"ERROR, no such host\n");
-        return NULL;
-    }
-	memset(&serv_addr, 0, sizeof(serv_addr));
-    serv_addr.sin_family = AF_INET;
-    memcpy(&serv_addr.sin_addr.s_addr, server->h_addr, server->h_length);
-    serv_addr.sin_port = htons(port);
-    if (connect(sockfd,(struct sockaddr *) &serv_addr,sizeof(serv_addr)) < 0) {
-        //error("ERROR connecting");
-    	return NULL;
-    }//TODO close fd if an error occured
-
-	//int on = 1;
-	//setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY, (char *)&on, sizeof(on));
-
-	return new FDIOStream(sockfd);
-#endif
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/stream/SocketStreamFactory.h b/aos/externals/WPILib/WPILib/networktables2/stream/SocketStreamFactory.h
deleted file mode 100644
index 756a69c..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/stream/SocketStreamFactory.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * SocketStreamFactory.h
- *
- *  Created on: Nov 3, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef SOCKETSTREAMFACTORY_H_
-#define SOCKETSTREAMFACTORY_H_
-
-class SocketStreamFactory;
-
-#include "networktables2/stream/IOStreamFactory.h"
-#include <string>
-
-/**
- * 
- * @author mwills
- *
- */
-class SocketStreamFactory : public IOStreamFactory{
-private:
-	const char* host;
-	const int port;
-
-public:
-	SocketStreamFactory(const char* host, int port);
-	virtual ~SocketStreamFactory();
-
-	IOStream* createStream();
-
-};
-
-
-
-#endif /* SOCKETSTREAMFACTORY_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/stream/SocketStreams.cpp b/aos/externals/WPILib/WPILib/networktables2/stream/SocketStreams.cpp
deleted file mode 100644
index 6eaf65a..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/stream/SocketStreams.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * SocketStreams.cpp
- *
- *  Created on: Sep 27, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/stream/SocketStreams.h"
-#include "networktables2/stream/SocketStreamFactory.h"
-#include "networktables2/stream/SocketServerStreamProvider.h"
-
-
-
-IOStreamFactory& SocketStreams::newStreamFactory(const char* host, int port){
-	return *new SocketStreamFactory(host, port);
-}
-
-IOStreamProvider& SocketStreams::newStreamProvider(int port){
-	return *new SocketServerStreamProvider(port);
-}
-
diff --git a/aos/externals/WPILib/WPILib/networktables2/stream/SocketStreams.h b/aos/externals/WPILib/WPILib/networktables2/stream/SocketStreams.h
deleted file mode 100644
index 8887197..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/stream/SocketStreams.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * SocketStreams.h
- *
- *  Created on: Sep 27, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef SOCKETSTREAMS_H_
-#define SOCKETSTREAMS_H_
-
-
-class SocketStreams;
-
-
-#include "networktables2/stream/IOStreamFactory.h"
-#include "networktables2/stream/IOStreamProvider.h"
-
-
-
-/**
- * Static factory for socket stream factories and providers
- * 
- * @author Mitchell
- *
- */
-class SocketStreams {
-public:
-	/**
-	 * Create a new IOStream factory 
-	 * @param host
-	 * @param port
-	 * @return a IOStreamFactory that will create Socket Connections on the given host and port
-	 * @throws IOException
-	 */
-	static IOStreamFactory& newStreamFactory(const char* host, int port);
-
-	/**
-	 * Create a new IOStream provider
-	 * @param port
-	 * @return an IOStreamProvider for a socket server on the given port
-	 * @throws IOException
-	 */
-	static IOStreamProvider& newStreamProvider(int port);
-};
-
-
-
-#endif /* SOCKETSTREAMS_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/thread/DefaultThreadManager.h b/aos/externals/WPILib/WPILib/networktables2/thread/DefaultThreadManager.h
deleted file mode 100644
index 9519a7a..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/thread/DefaultThreadManager.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * DefaultThreadManager.h
- * Desktop
- *
- *  Created on: Sep 21, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef DEFAULTTHREADMANAGER_H_
-#define DEFAULTTHREADMANAGER_H_
-
-
-class DefaultThreadManager;
-class PeriodicNTThread;
-
-#include "networktables2/thread/PeriodicRunnable.h"
-#include "networktables2/thread/NTThreadManager.h"
-#include "networktables2/thread/NTThread.h"
-
-#if (defined __vxworks || defined WIN32)
-#include "OSAL/Task.h"
-#else
-#include <pthread.h>
-#endif
-
-class DefaultThreadManager : public NTThreadManager{
-public:
-	virtual NTThread* newBlockingPeriodicThread(PeriodicRunnable* r, const char* name);
-};
-
-class PeriodicNTThread : public NTThread {
-private:
-#if (defined __vxworks || defined WIN32)
-	const char* name;
-	NTTask* thread;
-#else
-	pthread_t thread;
-#endif
-	PeriodicRunnable* r;
-	bool run;
-#if (defined __vxworks || defined WIN32)
-	int _taskMain();
-	static int taskMain(PeriodicNTThread* o);
-#else//TODO make return int for pthread as well
-	void _taskMain();
-	static void* taskMain(PeriodicNTThread* o);
-#endif
-public:
-	PeriodicNTThread(PeriodicRunnable* r, const char* name);
-	virtual ~PeriodicNTThread();
-	virtual void stop();
-	virtual bool isRunning();
-};
-
-#endif /* DEFAULTTHREADMANAGER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/thread/DefaultThreadManger.cpp b/aos/externals/WPILib/WPILib/networktables2/thread/DefaultThreadManger.cpp
deleted file mode 100644
index ebc5edf..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/thread/DefaultThreadManger.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * DefaultThreadManger.cpp
- *
- *  Created on: Sep 21, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/thread/DefaultThreadManager.h"
-#include <stdio.h>
-
-
-PeriodicNTThread::PeriodicNTThread(PeriodicRunnable* _r, const char* _name) : 
-			name(_name), thread(new NTTask(name, (FUNCPTR)PeriodicNTThread::taskMain)), r(_r), run(true){
-	fprintf(stdout, "Starting task: %s\n", name);
-	fflush(stdout);
-	thread->Start((UINT32)this);
-}
-
-PeriodicNTThread::~PeriodicNTThread(){
-	//TODO somehow do this async
-	//delete thread;
-}
-int PeriodicNTThread::taskMain(PeriodicNTThread* o){//static wrapper
-	return o->_taskMain();
-}
-int PeriodicNTThread::_taskMain(){
-	try {
-		while(run){
-			r->run();
-		}
-	} catch (...) {
-		fprintf(stdout, "NTTask exited with uncaught exception %s\n", name);
-		fflush(stdout);
-		return 1;
-	}
-	fprintf(stdout, "NTTask exited normally: %s\n", name);
-	fflush(stdout);
-	return 0;
-}
-void PeriodicNTThread::stop() {
-	run = false;
-}
-bool PeriodicNTThread::isRunning() {
-	return thread->IsReady();
-}
-
-NTThread* DefaultThreadManager::newBlockingPeriodicThread(PeriodicRunnable* r, const char* name) {
-	return new PeriodicNTThread(r, name);
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/thread/NTThread.h b/aos/externals/WPILib/WPILib/networktables2/thread/NTThread.h
deleted file mode 100644
index 3b6e018..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/thread/NTThread.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * NTThread.h
- *
- *  Created on: Sep 21, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NTTHREAD_H_
-#define NTTHREAD_H_
-
-/**
- * Represents a thread in the network tables system
- * @author mwills
- *
- */
-class NTThread
-{
-public:
-	virtual ~NTThread()
-	{
-	}
-	;
-	/**
-	 * stop the thread
-	 */
-	virtual void stop() = 0;
-
-	/**
-	 * @return true if the thread is running
-	 */
-	virtual bool isRunning() = 0;
-};
-
-#endif /* NTTHREAD_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/thread/NTThreadManager.h b/aos/externals/WPILib/WPILib/networktables2/thread/NTThreadManager.h
deleted file mode 100644
index a376cb7..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/thread/NTThreadManager.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * NTThreadManager.h
- *
- *  Created on: Sep 21, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NTTHREADMANAGER_H_
-#define NTTHREADMANAGER_H_
-
-class NTThreadManager;
-
-#include "networktables2/thread/NTThread.h"
-#include "networktables2/thread/PeriodicRunnable.h"
-
-/**
- * A thread manager that can be used to obtain new threads
- * 
- * @author Mitchell
- *
- */
-class NTThreadManager
-{
-public:
-	virtual ~NTThreadManager()
-	{
-	}
-	/**
-	 * @param r
-	 * @param name the name of the thread
-	 * @return a thread that will run the provided runnable repeatedly with the assumption that the runnable will block
-	 */
-	virtual NTThread* newBlockingPeriodicThread(PeriodicRunnable* r, const char* name) = 0;
-};
-
-#endif /* NTTHREADMANAGER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/thread/PeriodicRunnable.h b/aos/externals/WPILib/WPILib/networktables2/thread/PeriodicRunnable.h
deleted file mode 100644
index fadb8c2..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/thread/PeriodicRunnable.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * PeriodicRunnable.h
- *
- *  Created on: Sep 21, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef PERIODICRUNNABLE_H_
-#define PERIODICRUNNABLE_H_
-
-/**
- * A runnable where the run method will be called periodically 
- * 
- * @author Mitchell
- *
- */
-class PeriodicRunnable
-{
-public:
-	virtual ~PeriodicRunnable()
-	{
-	}
-	/**
-	 * the method that will be called periodically on a thread
-	 * 
-	 * @throws InterruptedException thrown when the thread is supposed to be interrupted and stop (implementers should always let this exception fall through)
-	 */
-	virtual void run() = 0;
-};
-
-#endif /* PERIODICRUNNABLE_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/ArrayData.cpp b/aos/externals/WPILib/WPILib/networktables2/type/ArrayData.cpp
deleted file mode 100644
index 3d0f84a..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/ArrayData.cpp
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * ArrayData.cpp
- *
- *  Created on: Nov 14, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/type/ArrayData.h"
-#ifndef _WRS_KERNEL
-#include <stdint.h>
-#endif
-
-#include <cstring>
-#include <stdlib.h>
-#include <memory>
-
-ArrayData::ArrayData(ArrayEntryType& type) : ComplexData(type), m_data_type(type){
-	m_size = 0;
-	data = NULL;
-}
-ArrayData::~ArrayData(){
-        free(data);
-}
-
-EntryValue ArrayData::_get(unsigned int index){//TODO bounds checking
-	return data[index];
-}
-
-void ArrayData::_set(unsigned int index, EntryValue value){//TODO bounds checking
-	m_data_type.deleteElement(data[index]);
-	data[index] = m_data_type.copyElement(value);
-}
-
-void ArrayData::_add(EntryValue value){
-	setSize(size()+1);
-	data[size()-1] = m_data_type.copyElement(value);
-}
-
-void ArrayData::remove(unsigned int index){
-	//if(index<0 || index>=size())
-	//	throw IndexOutOfBoundsException();//TODO bounds check
-	m_data_type.deleteElement(data[index]);
-	EntryValue nullValue = {0};
-	data[index] = nullValue;
-	if(index < size()-1){
-		memcpy(data+index, data+index+1, (size()-index-1) * sizeof(EntryValue));
-	}
-	setSize(size()-1);
-}
-void ArrayData::setSize(unsigned int newSize){
-	if(newSize==m_size)//TODO bound check greater than max size
-		return;
-	EntryValue* newArray = (EntryValue*)malloc(newSize*sizeof(EntryValue));//TODO cache arrays
-	if(newSize<m_size){
-		memcpy(newArray, data, newSize * sizeof(EntryValue));
-		for(unsigned int i = newSize; i<m_size; ++i)
-			m_data_type.deleteElement(data[i]);
-	}
-	else{
-	  if(data!=NULL)
-		memcpy(newArray, data, m_size * sizeof(EntryValue));
-	  else
-	    m_size = 0;//ensure that the current size is actually 0 otherwise will end up with uninitialized values in the array
-	  EntryValue nullValue = {0};
-	  for(unsigned int i = m_size; i<newSize; ++i)
-	    newArray[i] = nullValue;
-	}
-	if(data!=NULL)
-		free(data);
-	data = newArray;
-	m_size = newSize;
-}
-unsigned int ArrayData::size(){
-	return m_size;
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/ArrayData.h b/aos/externals/WPILib/WPILib/networktables2/type/ArrayData.h
deleted file mode 100644
index ffd2daa..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/ArrayData.h
+++ /dev/null
@@ -1,88 +0,0 @@
-/*
- * ArrayData.h
- *
- *  Created on: Nov 14, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef ARRAYDATA_H_
-#define ARRAYDATA_H_
-
-class ArrayData;
-
-#include "networktables2/type/ArrayEntryType.h"
-#include "networktables2/type/ComplexData.h"
-#include "networktables2/NetworkTableEntry.h"
-
-/**
- * Defines the internal representation for an array. 
- */
-class ArrayData : public ComplexData{
-private:
-    ArrayEntryType& m_data_type;
-    unsigned int m_size;
-    EntryValue* data;
-public:
-    /**
-     * Creates a new ArrayData of the given type.
-     * 
-     * @param type The ArrayEntryType representing the type
-     * 	information that this ArrayData should satisfy.
-     */
-    ArrayData(ArrayEntryType& type);
-    virtual ~ArrayData();
-protected:
-    /**
-     * Gets the value stored at the specified index.
-     * 
-     * @param index The array index to retrieve.
-     */
-    EntryValue _get(unsigned int index);
-    
-    /**
-     * Updates the value stored at the specified index.
-     * 
-     * The value currently stored at the given index is deleted.
-     * 
-     * @param index The array index to update.
-     * @param value The value to store. This value must have
-     * 	the same type as the ArrayEntryType indicates.
-     */
-    void _set(unsigned int index, EntryValue value);
-    
-    /**
-     * Appends the given value to the end of this array.
-     * 
-     * @param value The value to store. This value must have
-     * 	the same type as the ArrayEntryType indicates.
-     */
-    void _add(EntryValue value);
-    
-public:
-    /**
-     * Removes and deletes the value stored at the specified index.
-     * 
-     * @param index The index of the value to remove.
-     */
-    void remove(unsigned int index);
-    
-    /**
-     * Sets the new size of this array data structure.
-     * 
-     * @param size The new size that this array should assume.
-     */
-    void setSize(unsigned int size);
-    
-    /**
-     * Gets the current size of this array data structure.
-     * 
-     * @return The current number of elements that this array may contain.
-     */
-    unsigned int size();
-
-    friend class ArrayEntryType;
-};
-
-
-
-#endif /* ARRAYDATA_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/ArrayEntryType.cpp b/aos/externals/WPILib/WPILib/networktables2/type/ArrayEntryType.cpp
deleted file mode 100644
index ab433fe..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/ArrayEntryType.cpp
+++ /dev/null
@@ -1,133 +0,0 @@
-/*
- * ArrayEntryType.cpp
- *
- *  Created on: Nov 14, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/type/ArrayEntryType.h"
-
-ArrayEntryType::ArrayEntryType(TypeId id, NetworkTableEntryType& elementType)
-	: ComplexEntryType(id, "Array"), m_elementType(elementType){ //TODO super(id, "Array of [" + elementType.name + "]");
-}
-
-EntryValue ArrayEntryType::copyElement(EntryValue value){
-  return m_elementType.copyValue(value);
-}
-void ArrayEntryType::deleteElement(EntryValue value){
-  m_elementType.deleteValue(value);
-}
-bool ArrayEntryType::areElementsEqual(EntryValue v1, EntryValue v2){
-  return m_elementType.areEqual(v1, v2);
-}
-
-
-void ArrayEntryType::sendValue(EntryValue value, DataIOStream& os) {
-	ArrayEntryData* dataArray = (ArrayEntryData*) value.ptr;
-	/*if (dataArray->length > 255) {//TODO throw better exception
-		throw IOException("Cannot write " + value + " as " + name + ". Arrays have a max length of 255 values");
-	}*/
-	os.writeByte(dataArray->length);
-	for (int i = 0; i < dataArray->length; ++i) {
-		m_elementType.sendValue(dataArray->array[i], os);
-	}
-}
-
-EntryValue ArrayEntryType::readValue(DataIOStream& is) {
-	uint8_t length = is.readByte();
-	EntryValue* array = (EntryValue*)malloc(length*sizeof(EntryValue));//TODO cache object arrays
-	for (int i = 0; i < length; ++i) {
-		array[i] = m_elementType.readValue(is);
-	}
-	
-	ArrayEntryData* dataArray = (ArrayEntryData*)malloc(sizeof(ArrayEntryData));
-	dataArray->length = length;
-	dataArray->array = array;
-	
-	EntryValue eValue;
-	eValue.ptr = dataArray;
-	return eValue;
-}
-
-EntryValue ArrayEntryType::copyValue(EntryValue value){
-	ArrayEntryData* otherDataArray = (ArrayEntryData*) value.ptr;
-
-	EntryValue* array = (EntryValue*)malloc(otherDataArray->length*sizeof(EntryValue));
-	for (int i = 0; i < otherDataArray->length; ++i) {
-		array[i] = copyElement(otherDataArray->array[i]);
-	}
-	
-	ArrayEntryData* dataArray = (ArrayEntryData*)malloc(sizeof(ArrayEntryData));
-	dataArray->length = otherDataArray->length;
-	dataArray->array = array;
-	
-	EntryValue eValue;
-	eValue.ptr = dataArray;
-	return eValue;
-}
-void ArrayEntryType::deleteValue(EntryValue value){
-	ArrayEntryData* dataArray = (ArrayEntryData*) value.ptr;
-	if(dataArray!=NULL){
-	  for (int i = 0; i < dataArray->length; ++i) {
-	    deleteElement(dataArray->array[i]);
-	  }
-	  if(dataArray->array != NULL)
-	    free(dataArray->array);
-
-	  free(dataArray);
-	}
-}
-bool ArrayEntryType::areEqual(EntryValue v1, EntryValue v2) {
-  ArrayEntryData* a1 = (ArrayEntryData*) v1.ptr;
-  ArrayEntryData* a2 = (ArrayEntryData*) v2.ptr;
-  if(a1->length != a2->length)
-    return false;
-  for (int i = 0; i < a1->length; ++i) {
-    if(!areElementsEqual(a1->array[i], a2->array[i]))
-      return false;
-  }
-  return true;
-}
-
-EntryValue ArrayEntryType::internalizeValue(std::string& key, ComplexData& externalRepresentation, EntryValue currentInteralValue) {
-	// TODO: Argument 'key' appears unused.
-	ArrayData& externalArrayData = (ArrayData&)externalRepresentation;
-
-	EntryValue eValue = currentInteralValue;
-	ArrayEntryData* internalArray = (ArrayEntryData*) currentInteralValue.ptr;
-	if(internalArray == NULL){
-		internalArray = (ArrayEntryData*)malloc(sizeof(ArrayEntryData));
-		internalArray->length = 0;
-		internalArray->array = NULL;
-		eValue.ptr = internalArray;
-	}
-
-	if(internalArray->length==externalArrayData.size()){
-		for(int i = 0; i<internalArray->length; ++i){
-			deleteElement(internalArray->array[i]);
-			internalArray->array[i] = copyElement(externalArrayData._get(i));
-		}
-	}
-	else{
-	        if(internalArray->array != NULL)
-	                free(internalArray->array);
-		internalArray->length = externalArrayData.size();
-		if(internalArray->length == 0)
-		  internalArray->array = NULL;
-		else
-		  internalArray->array = (EntryValue*)malloc(externalArrayData.size()*sizeof(EntryValue));
-		for (int i = 0; i < internalArray->length; ++i) {
-			internalArray->array[i] = copyElement(externalArrayData._get(i));
-		}
-	}
-	return eValue;
-}
-
-void ArrayEntryType::exportValue(std::string& key, EntryValue internalData, ComplexData& externalRepresentation) {
-	ArrayEntryData* internalArray = (ArrayEntryData*) internalData.ptr;
-	ArrayData& externalArrayData = (ArrayData&)externalRepresentation;
-	externalArrayData.setSize(internalArray->length);
-	for(int i = 0; i<internalArray->length; ++i){
-		externalArrayData._set(i, copyElement(internalArray->array[i]));
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/ArrayEntryType.h b/aos/externals/WPILib/WPILib/networktables2/type/ArrayEntryType.h
deleted file mode 100644
index 1556b82..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/ArrayEntryType.h
+++ /dev/null
@@ -1,113 +0,0 @@
-/*
- * ArrayEntryType.h
- *
- *  Created on: Nov 14, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef ARRAYENTRYTYPE_H_
-#define ARRAYENTRYTYPE_H_
-
-#include <stdlib.h>
-#include <stdio.h>
-#ifndef _WRS_KERNEL
-#include <stdint.h>
-#endif
-
-class ArrayEntryType;
-
-#include "networktables2/type/ArrayData.h"
-#include "networktables2/type/ComplexEntryType.h"
-
-struct ArrayEntryData{
-	uint8_t length;
-	EntryValue* array;
-};
-/**
- * Represents the size and contents of an array.
- */
-typedef struct ArrayEntryData ArrayEntryData;
-
-/**
- * Represents the type of an array entry value.
- */
-class ArrayEntryType : public ComplexEntryType {//TODO allow for array of complex type
-private:
-    NetworkTableEntryType& m_elementType;
-    
-public:
-    /**
-     * Creates a new ArrayEntryType.
-     * 
-     * @param id The ID which identifies this type to other nodes on
-     * 	across the network.
-     * @param elementType The type of the elements this array contains.
-     */
-    ArrayEntryType(TypeId id, NetworkTableEntryType& elementType);
-
-    /**
-     * Creates a copy of an value which is of the type contained by
-     * this array.
-     * 
-     * @param value The element, of this array's contained type, to
-     * 	copy.
-     * @return A copy of the given value.
-     */
-	EntryValue copyElement(EntryValue value);
-	
-	/**
-	 * Deletes a entry value which is of the type contained by
-	 * this array.
-	 * 
-	 * After calling this method, the given entry value is
-	 * no longer valid.
-	 * 
-	 * @param value The value to delete.
-	 */
-	void deleteElement(EntryValue value);
-
-	/**
-	 * Compares two elements of the type of the array
-	 * 
-	 * @return true if the elements are equal
-	 */
-	bool areElementsEqual(EntryValue v1, EntryValue v2);
-	
-	/**
-	 * See {@link NetworkTableEntryType}::sendValue
-	 */
-	void sendValue(EntryValue value, DataIOStream& os);
-
-	/**
-	 * See {@link NetworkTableEntryType}::readValue
-	 */
-	EntryValue readValue(DataIOStream& is);
-	
-	/**
-	 * See {@link NetworkTableEntryType}::copyValue
-	 */    
-	EntryValue copyValue(EntryValue value);
-	
-	/**
-	 * See {@link NetworkTableEntryType}::deleteValue
-	 */
-	void deleteValue(EntryValue value);
-
-
-	bool areEqual(EntryValue v1, EntryValue v2);
-	
-	/**
-	 * See {@link ComplexEntryType}::internalizeValue
-	 */
-	EntryValue internalizeValue(std::string& key, ComplexData& externalRepresentation, EntryValue currentInteralValue);
-
-	/**
-	 * See {@link ComplexEntryType}::exportValue
-	 */
-	void exportValue(std::string& key, EntryValue internalData, ComplexData& externalRepresentation);
-    
-    
-    
-};
-
-#endif /* ARRAYENTRYTYPE_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/BooleanArray.cpp b/aos/externals/WPILib/WPILib/networktables2/type/BooleanArray.cpp
deleted file mode 100644
index 1cac713..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/BooleanArray.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * BooleanArray.cpp
- *
- *  Created on: Nov 16, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/type/BooleanArray.h"
-#include "networktables2/type/DefaultEntryTypes.h"
-
-
-const TypeId BooleanArray::BOOLEAN_ARRAY_RAW_ID = 0x10;
-ArrayEntryType BooleanArray::TYPE(BOOLEAN_ARRAY_RAW_ID, DefaultEntryTypes::BOOLEAN);
-
-BooleanArray::BooleanArray() : ArrayData(TYPE) {
-}
-
-bool BooleanArray::get(int index){
-	return _get(index).b;
-}
-
-void BooleanArray::set(int index, bool value){
-	EntryValue eValue;
-	eValue.b = value;
-	_set(index, eValue);
-}
-
-void BooleanArray::add(bool value){
-	EntryValue eValue;
-	eValue.b = value;
-	_add(eValue);
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/BooleanArray.h b/aos/externals/WPILib/WPILib/networktables2/type/BooleanArray.h
deleted file mode 100644
index 2f078c8..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/BooleanArray.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * BooleanArray.h
- *
- *  Created on: Nov 16, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef BOOLEANARRAY_H_
-#define BOOLEANARRAY_H_
-
-#include "networktables2/type/ArrayData.h"
-#include "networktables2/type/ArrayEntryType.h"
-
-//TODO: BooleanArray appears unused; replace with namespace?
-class BooleanArray : public ArrayData{
-
-public:
-	static const TypeId BOOLEAN_ARRAY_RAW_ID;
-    static ArrayEntryType TYPE;
-
-
-    BooleanArray();
-
-    bool get(int index);
-    void set(int index, bool value);
-    void add(bool value);
-};
-
-
-
-#endif /* BOOLEANARRAY_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/ComplexData.cpp b/aos/externals/WPILib/WPILib/networktables2/type/ComplexData.cpp
deleted file mode 100644
index 5473362..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/ComplexData.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
- * ComplexData.cpp
- *
- *  Created on: Sep 24, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/type/ComplexData.h"
-
-
-ComplexData::ComplexData(ComplexEntryType& _type) : type(_type){}
-	
-ComplexEntryType& ComplexData::GetType() {
-	return type;
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/ComplexData.h b/aos/externals/WPILib/WPILib/networktables2/type/ComplexData.h
deleted file mode 100644
index 54ef618..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/ComplexData.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * ComplexData.h
- *
- *  Created on: Sep 24, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef COMPLEXDATA_H_
-#define COMPLEXDATA_H_
-
-
-class ComplexData;
-
-
-//#include "networktables2/type/ComplexEntryType.h" can't do this cause it causes order of definition issues
-class ComplexEntryType;
-
-/**
- * Base class for non-primitive data structures.
- */
-class ComplexData{
-private:
-	ComplexEntryType& type;
-public:
-	/**
-	 * Creates a new ComplexData of the given type.
-	 * 
-	 * @param type The type of this data structure.
-	 */
-	ComplexData(ComplexEntryType& type);
-	    
-	/**
-	 * Gets the type of this data structure.
-	 * 
-	 * @return The type of this data structure.
-	 */
-	ComplexEntryType& GetType();
-	virtual ~ComplexData(){};
-
-};
-
-
-#endif /* COMPLEXDATA_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/ComplexEntryType.cpp b/aos/externals/WPILib/WPILib/networktables2/type/ComplexEntryType.cpp
deleted file mode 100644
index 0d78a1b..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/ComplexEntryType.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
- * ComplexEntryType.cpp
- *
- *  Created on: Sep 24, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/type/ComplexEntryType.h"
-
-
-ComplexEntryType::ComplexEntryType(TypeId id, const char* name) : NetworkTableEntryType(id, name){}
-
-bool ComplexEntryType::isComplex(){
-	return true;
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/ComplexEntryType.h b/aos/externals/WPILib/WPILib/networktables2/type/ComplexEntryType.h
deleted file mode 100644
index 0955c91..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/ComplexEntryType.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * ComplexEntryType.h
- *
- *  Created on: Sep 24, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef COMPLEXENTRYTYPE_H_
-#define COMPLEXENTRYTYPE_H_
-
-class ComplexEntryType;
-
-#include "networktables2/type/NetworkTableEntryType.h"
-
-/**
- * Represents a non-primitive data type (i.e. not a string, double, 
- * or boolean).
- */
-class ComplexEntryType : public NetworkTableEntryType
-{
-protected:
-	ComplexEntryType(TypeId id, const char* name);
-public:
-	virtual ~ComplexEntryType()
-	{
-	}
-	
-	/**
-	 * See {@link NetworkTableEntryType}::isComplex.
-	 */
-	virtual bool isComplex();
-	
-	/**
-	 * Updates the internal representation for an entry of this type with the
-	 * given value.
-	 * 
-	 * @param key The name of the field to update.
-	 * @param externalRepresentation The existing data structure to update.
-	 * @param currentInternalValue The value to update the external representation with.
-	 */
-	virtual EntryValue internalizeValue(std::string& key, ComplexData& externalRepresentation, EntryValue currentInteralValue) = 0;
-	
-	/**
-	 * Updates the given external representation for an entry of this type with
-	 * the given internal value.
-	 * 
-	 * @param key The name of the field to export.
-	 * @param internalData The current value to reference.
-	 * @param externalRepresentation The external representation to update.
-	 */
-	virtual void exportValue(std::string& key, EntryValue internalData, ComplexData& externalRepresentation) = 0;
-};
-
-#endif /* COMPLEXENTRYTYPE_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/DefaultEntryTypes.cpp b/aos/externals/WPILib/WPILib/networktables2/type/DefaultEntryTypes.cpp
deleted file mode 100644
index 93db397..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/DefaultEntryTypes.cpp
+++ /dev/null
@@ -1,96 +0,0 @@
-/*
- * DefaultEntryTypes.cpp
- *
- *  Created on: Sep 24, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/type/DefaultEntryTypes.h"
-#include "networktables2/type/NetworkTableEntryType.h"
-#include "networktables2/connection/DataIOStream.h"
-#include "networktables2/type/BooleanArray.h"
-#include "networktables2/type/NumberArray.h"
-#include "networktables2/type/StringArray.h"
-
-
-DefaultEntryTypes::BOOLEAN_t DefaultEntryTypes::BOOLEAN;
-DefaultEntryTypes::DOUBLE_t DefaultEntryTypes::DOUBLE;
-DefaultEntryTypes::STRING_t DefaultEntryTypes::STRING;
-
-DefaultEntryTypes::BOOLEAN_t::BOOLEAN_t() : NetworkTableEntryType(BOOLEAN_RAW_ID, "Boolean"){}
-void DefaultEntryTypes::BOOLEAN_t::sendValue(EntryValue value, DataIOStream& os) {
-	os.writeByte(value.b);
-}
-EntryValue DefaultEntryTypes::BOOLEAN_t::readValue(DataIOStream& is) {
-	EntryValue value;
-	value.b = (is.readByte()!=0);
-	return value;
-}
-bool DefaultEntryTypes::BOOLEAN_t::areEqual(EntryValue v1, EntryValue v2) {
-  return v1.b == v2.b;
-}
-	
-DefaultEntryTypes::DOUBLE_t::DOUBLE_t() : NetworkTableEntryType(DOUBLE_RAW_ID, "Double"){}
-void DefaultEntryTypes::DOUBLE_t::sendValue(EntryValue eValue, DataIOStream& os) {
-	uint64_t value = *reinterpret_cast<uint64_t*>(&eValue.f);
-	for(int i = 0; i<8; ++i){
-		os.writeByte((value>>56)&0xFF);
-		value<<=8;
-	}
-}
-EntryValue DefaultEntryTypes::DOUBLE_t::readValue(DataIOStream& is) {
-	uint64_t value = 0;
-	
-	for(int i = 0; i<8; ++i){
-		value<<=8;
-		value |= (is.readByte()&0xFF);
-	}
-	
-	EntryValue eValue;
-	eValue.f = *reinterpret_cast<double*>(&value);
-	return eValue;
-}
-bool DefaultEntryTypes::DOUBLE_t::areEqual(EntryValue v1, EntryValue v2) {
-  return v1.f == v2.f;
-}
-	
-DefaultEntryTypes::STRING_t::STRING_t() : NetworkTableEntryType(STRING_RAW_ID, "String"){}
-void DefaultEntryTypes::STRING_t::sendValue(EntryValue value, DataIOStream& os) {
-	os.writeString(*(std::string*)value.ptr);
-}
-EntryValue DefaultEntryTypes::STRING_t::readValue(DataIOStream& is) {
-	EntryValue value;
-	value.ptr = is.readString();
-	return value;
-}
-EntryValue DefaultEntryTypes::STRING_t::copyValue(EntryValue value){
-  if(value.ptr==NULL)
-    return value;
-	EntryValue newValue;
-	newValue.ptr = new std::string(*((std::string*)value.ptr));
-	return newValue;
-}
-void DefaultEntryTypes::STRING_t::deleteValue(EntryValue value){
-  if(value.ptr!=NULL)
-    delete (std::string*)value.ptr;
-}
-bool DefaultEntryTypes::STRING_t::areEqual(EntryValue v1, EntryValue v2) {
-  std::string* str1 = (std::string*)v1.ptr;
-  std::string* str2 = (std::string*)v2.ptr;
-  return str1->compare(*str2)==0;
-}
-
-
-
-void DefaultEntryTypes::registerTypes(NetworkTableEntryTypeManager* manager){
-	manager->RegisterType(BOOLEAN);
-	manager->RegisterType(DOUBLE);
-	manager->RegisterType(STRING);
-	manager->RegisterType(BooleanArray::TYPE);
-	manager->RegisterType(NumberArray::TYPE);
-	manager->RegisterType(StringArray::TYPE);
-}
-
-
-
-
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/DefaultEntryTypes.h b/aos/externals/WPILib/WPILib/networktables2/type/DefaultEntryTypes.h
deleted file mode 100644
index 576537b..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/DefaultEntryTypes.h
+++ /dev/null
@@ -1,106 +0,0 @@
-/*
- * DefaultEntryTypes.h
- *
- *  Created on: Sep 24, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef DEFAULTENTRYTYPES_H_
-#define DEFAULTENTRYTYPES_H_
-
-class DefaultEntryTypes;
-
-#include "networktables2/type/NetworkTableEntryTypeManager.h"
-
-
-
-static const TypeId BOOLEAN_RAW_ID = 0x00;
-static const TypeId DOUBLE_RAW_ID = 0x01;
-static const TypeId STRING_RAW_ID = 0x02;
-
-class DefaultEntryTypes{
-private:
-	/**
-	 * a boolean entry type
-	 */
-	class BOOLEAN_t : public NetworkTableEntryType{
-	public:
-		BOOLEAN_t();
-		/**
-		 * See {@link NetworkTableEntryType}::sendValue
-		 */
-		virtual void sendValue(EntryValue value, DataIOStream& os);
-		
-		/**
-		 * See {@link NetworkTableEntryType}::readValue
-		 */
-		virtual EntryValue readValue(DataIOStream& is);
-
-		virtual bool areEqual(EntryValue v1, EntryValue v2);
-	};
-	/**
-	 * a double floating point entry type
-	 */
-	class DOUBLE_t : public NetworkTableEntryType{
-	public:
-		DOUBLE_t();
-		
-		/**
-		 * See {@link NetworkTableEntryType}::sendValue
-		 */
-		virtual void sendValue(EntryValue value, DataIOStream& os);
-		
-		/**
-		 * See {@link NetworkTableEntryType}::sendValue
-		 */
-		virtual EntryValue readValue(DataIOStream& is);
-
-		virtual bool areEqual(EntryValue v1, EntryValue v2);
-	};
-	/**
-	 * a string entry type
-	 */
-	class STRING_t : public NetworkTableEntryType{
-	public:
-		STRING_t();
-		
-		/**
-		 * See {@link NetworkTableEntryType}::sendValue
-		 */
-		virtual void sendValue(EntryValue value, DataIOStream& os);
-		
-		/**
-		 * See {@link NetworkTableEntryType}::sendValue
-		 */
-		virtual EntryValue readValue(DataIOStream& is);
-		
-		/**
-		 * See {@link NetworkTableEntryType}::copyValue
-		 */
-		virtual EntryValue copyValue(EntryValue value);
-		
-		/**
-		 * See {@link NetworkTableEntryType}::deleteValue
-		 */
-		virtual void deleteValue(EntryValue value);
-
-		virtual bool areEqual(EntryValue v1, EntryValue v2);
-	};
-public:
-	/**
-	 * Registers the set of default entry types with the given 
-	 * entry type manager.
-	 * 
-	 * @param typeManager The entry type manager to update. Pointer must not be null.
-	 */
-	static void registerTypes(NetworkTableEntryTypeManager* typeManager);
-	
-	static BOOLEAN_t BOOLEAN;
-	static DOUBLE_t DOUBLE;
-	static STRING_t STRING;
-};
-
-
-
-
-#endif /* DEFAULTENTRYTYPES_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/NetworkTableEntryType.cpp b/aos/externals/WPILib/WPILib/networktables2/type/NetworkTableEntryType.cpp
deleted file mode 100644
index 15a027c..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/NetworkTableEntryType.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * NetworkTableEntryType.cpp
- *
- *  Created on: Sep 16, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/type/NetworkTableEntryType.h"
-
-
-NetworkTableEntryType::NetworkTableEntryType(TypeId _id, const char* _name) : id(_id), name(_name){
-}
-NetworkTableEntryType::~NetworkTableEntryType(){
-}
-
-  EntryValue NetworkTableEntryType::copyValue(EntryValue value){
-    return value;
-  }  
-  void NetworkTableEntryType::deleteValue(EntryValue value){
-  }
-
-
-bool NetworkTableEntryType::isComplex(){
-	return false;
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/NetworkTableEntryType.h b/aos/externals/WPILib/WPILib/networktables2/type/NetworkTableEntryType.h
deleted file mode 100644
index b6dc94e..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/NetworkTableEntryType.h
+++ /dev/null
@@ -1,102 +0,0 @@
-/*
- * NetworkTableEntryType.h
- *
- *  Created on: Sep 16, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NETWORKTABLEENTRYTYPE_H_
-#define NETWORKTABLEENTRYTYPE_H_
-
-#include <stdlib.h>
-#include <stdio.h>
-#ifndef _WRS_KERNEL
-#include <stdint.h>
-#endif
-
-/**
- * An ID which identifies a type to other nodes on the network.
- */
-typedef uint8_t TypeId;
-class NetworkTableEntryType;
-
-#define MAX_NUM_TABLE_ENTRY_TYPES 256
-
-#include <string>
-#include "networktables2/connection/DataIOStream.h"
-#include "networktables2/NetworkTableEntry.h"
-#include "tables/ITable.h"
-
-/**
- * Represents the type associated with a network tables value.
- */
-class NetworkTableEntryType{
-public:
-	const TypeId id;
-	const char* name;
-	
-	/**
-	 * Determines whether this data type is complex (i.e. it does not
-	 * represent a number, string, or boolean).
-	 * 
-	 * @return True of this type is complex. False otherwise.
-	 */
-	virtual bool isComplex();
-	
-	/**
-	 * Serializes the given value on the given output stream.
-	 * 
-	 * @param value The value to serialize.
-	 * @param os The output stream to use.
-	 */
-	virtual void sendValue(EntryValue value, DataIOStream& os) = 0;
-	
-	/**
-	 * Unserializes the a value of this type from the given
-	 * input stream.
-	 * 
-	 * @param is The input stream to read from.
-	 * @return The unserialized value.
-	 */
-	virtual EntryValue readValue(DataIOStream& is) = 0;
-	
-	/**
-	 * Creates a copy of the given value of this type.
-	 * 
-	 * @param value The value to copy.
-	 * @return A copy of the given value of this type.
-	 */
-	virtual EntryValue copyValue(EntryValue value);
-
-	/**
-	 * Compares two values to determine if they are equal
-	 * and should not push an update to other nodes
-	 * 
-	 * @param v1
-	 * @param v2
-	 * @return true if the two values are equal
-	 */
-	virtual bool areEqual(EntryValue v1, EntryValue v2) = 0;
-	
-	/**
-	 * Deletes a value of this type.
-	 * 
-	 * After calling this function, the given value is
-	 * no longer valid.
-	 * 
-	 * @param value The value to delete.
-	 */
-	virtual void deleteValue(EntryValue value);
-	virtual ~NetworkTableEntryType();
-protected:
-	/**
-	 * Creates a new NetworkTablesEntryType.
-	 * 
-	 * @param id The numeric ID associated with this type. This ID
-	 * 	represents this data type to other nodes on the network.
-	 * @param name The string name associated with this type.
-	 */
-	NetworkTableEntryType(TypeId id, const char* name);
-};
-
-#endif /* NETWORKTABLEENTRYTYPE_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/NetworkTableEntryTypeManager.cpp b/aos/externals/WPILib/WPILib/networktables2/type/NetworkTableEntryTypeManager.cpp
deleted file mode 100644
index f214541..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/NetworkTableEntryTypeManager.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * NetworkTableEntryTypeManager.cpp
- *
- *  Created on: Sep 16, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/type/NetworkTableEntryTypeManager.h"
-#include "networktables2/type/DefaultEntryTypes.h"
-
-
-NetworkTableEntryType* NetworkTableEntryTypeManager::GetType(TypeId id){
-	return entryTypes[id];
-}
-
-void NetworkTableEntryTypeManager::RegisterType(NetworkTableEntryType& type){
-	entryTypes[type.id] = &type;
-}
-
-NetworkTableEntryTypeManager::NetworkTableEntryTypeManager(){
-	for(int i = 0; i<MAX_NUM_TABLE_ENTRY_TYPES; ++i)
-		entryTypes[i] = NULL;
-	
-	DefaultEntryTypes::registerTypes(this);
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/NetworkTableEntryTypeManager.h b/aos/externals/WPILib/WPILib/networktables2/type/NetworkTableEntryTypeManager.h
deleted file mode 100644
index 8269f8c..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/NetworkTableEntryTypeManager.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * NetworkTableEntryTypeManager.h
- *
- *  Created on: Sep 16, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NETWORKTABLEENTRYTYPEMANAGER_H_
-#define NETWORKTABLEENTRYTYPEMANAGER_H_
-
-class NetworkTableEntryTypeManager;
-
-#include "networktables2/type/NetworkTableEntryType.h"
-
-class NetworkTableEntryTypeManager
-{
-private:
-	NetworkTableEntryType* entryTypes[MAX_NUM_TABLE_ENTRY_TYPES];
-public:
-	/**
-	 * Creates a new NetworkTableEntryTypeManager, with the default
-	 * types registered under their respective TypeID's, and all other
-	 * TypeID's null.
-	 */
-	NetworkTableEntryTypeManager();
-	
-	/**
-	 * Retrieves the entry type associated with the given
-	 * type id, if one exists.
-	 * 
-	 * @param type The identifier by which to retrieve a type.
-	 * @return The NetworkTableEntryType associated with the given
-	 * 	type identifier, if one exists. Otherwise, null.
-	 */
-	NetworkTableEntryType* GetType(TypeId type);
-	
-	/**
-	 * Registers the given NetworkTableEntryType with this type
-	 * manager, such that is is returned by subsequent calls
-	 * to GetType with the appropriate ID.
-	 * 
-	 * @param type The type to register.
-	 */
-	void RegisterType(NetworkTableEntryType& type);
-};
-
-#endif /* NETWORKTABLEENTRYTYPEMANAGER_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/NumberArray.cpp b/aos/externals/WPILib/WPILib/networktables2/type/NumberArray.cpp
deleted file mode 100644
index 5ff4517..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/NumberArray.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * NumberArray.cpp
- *
- *  Created on: Nov 16, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/type/NumberArray.h"
-#include "networktables2/type/DefaultEntryTypes.h"
-
-
-const TypeId NumberArray::NUMBER_ARRAY_RAW_ID = 0x11;
-ArrayEntryType NumberArray::TYPE(NUMBER_ARRAY_RAW_ID, DefaultEntryTypes::DOUBLE);
-
-NumberArray::NumberArray() : ArrayData(TYPE) {
-}
-
-double NumberArray::get(int index){
-	return _get(index).f;
-}
-
-void NumberArray::set(int index, double value){
-	EntryValue eValue;
-	eValue.f = value;
-	_set(index, eValue);
-}
-
-void NumberArray::add(double value){
-	EntryValue eValue;
-	eValue.f = value;
-	_add(eValue);
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/NumberArray.h b/aos/externals/WPILib/WPILib/networktables2/type/NumberArray.h
deleted file mode 100644
index de735de..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/NumberArray.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * NumberArray.h
- *
- *  Created on: Nov 16, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef NUMBERARRAY_H_
-#define NUMBERARRAY_H_
-
-#include "networktables2/type/ArrayData.h"
-#include "networktables2/type/ArrayEntryType.h"
-
-//TODO: NumberArray appears unused; replace with namespace?
-class NumberArray : public ArrayData{
-
-public:
-	static const TypeId NUMBER_ARRAY_RAW_ID;
-    static ArrayEntryType TYPE;
-
-
-    NumberArray();
-    
-    double get(int index);
-    void set(int index, double value);
-    void add(double value);
-};
-
-
-
-#endif /* NUMBERARRAY_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/StringArray.cpp b/aos/externals/WPILib/WPILib/networktables2/type/StringArray.cpp
deleted file mode 100644
index 954906c..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/StringArray.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * StringArray
- *
- *  Created on: Nov 16, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/type/StringArray.h"
-#include "networktables2/type/DefaultEntryTypes.h"
-
-
-const TypeId StringArray::STRING_ARRAY_RAW_ID = 0x12;
-ArrayEntryType StringArray::TYPE(STRING_ARRAY_RAW_ID, DefaultEntryTypes::STRING);
-
-StringArray::StringArray() : ArrayData(TYPE) {
-}
-
-std::string StringArray::get(int index){
-	return *(std::string*)_get(index).ptr;
-}
-
-void StringArray::set(int index, std::string value){
-	EntryValue eValue;
-	eValue.ptr = &value;
-	_set(index, eValue);
-}
-
-void StringArray::add(std::string value){
-	EntryValue eValue;
-	eValue.ptr = &value;
-	_add(eValue);
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/type/StringArray.h b/aos/externals/WPILib/WPILib/networktables2/type/StringArray.h
deleted file mode 100644
index 97c5e95..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/type/StringArray.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * StringArray.h
- *
- *  Created on: Nov 16, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef STRINGARRAY_H_
-#define STRINGARRAY_H_
-
-
-#include "networktables2/type/ArrayData.h"
-#include "networktables2/type/ArrayEntryType.h"
-
-//TODO: StringArray appears unused; replace with namespace?
-class StringArray : public ArrayData{
-
-public:
-	static const TypeId STRING_ARRAY_RAW_ID;
-    static ArrayEntryType TYPE;
-
-
-    StringArray();
-    
-    std::string get(int index);
-    void set(int index, std::string value);
-    void add(std::string value);
-};
-
-#endif /* STRINGARRAY_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/util/EOFException.cpp b/aos/externals/WPILib/WPILib/networktables2/util/EOFException.cpp
deleted file mode 100644
index 71eefc6..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/util/EOFException.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * EOFException.cpp
- *
- *  Created on: Oct 1, 2012
- *      Author: Mitchell Wills
- */
-#include "networktables2/util/EOFException.h"
-
-EOFException::EOFException() : IOException("End of File"){}
-EOFException::~EOFException() throw(){}
-
-bool EOFException::isEOF(){
-	return true;
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/util/EOFException.h b/aos/externals/WPILib/WPILib/networktables2/util/EOFException.h
deleted file mode 100644
index 22e136e..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/util/EOFException.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * EOFException.h
- *
- *  Created on: Oct 1, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef EOFEXCEPTION_H_
-#define EOFEXCEPTION_H_
-
-#include "networktables2/util/IOException.h"
-
-
-/**
- * Indicates that an EOF was encountered during an I/O operation,
- * and therefore the operation could not be completed. 
- */
-class EOFException : public IOException{
-public:
-	/**
-	 * Creates an EOFException.
-	 */
-	EOFException();
-	virtual ~EOFException() throw ();
-	
-	/**
-	 * Implements {@link IOException}::isEOF() 
-	 */
-	virtual bool isEOF();
-};
-
-
-
-
-#endif /* EOFEXCEPTION_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/util/IOException.cpp b/aos/externals/WPILib/WPILib/networktables2/util/IOException.cpp
deleted file mode 100644
index e44b581..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/util/IOException.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * IOException.cpp
- *
- *  Created on: Oct 1, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/util/IOException.h"
-#include <stdlib.h>
-#include <string.h>
-
-
-IOException::IOException(const char* msg) : message(strdup(msg)), errorValue(0){}
-IOException::IOException(const char* msg, int _errorValue) : message(strdup(msg)), errorValue(_errorValue){}
-
-const char* IOException::what(){
-	return message;
-}
-
-bool IOException::isEOF(){return false;}
-
-IOException::~IOException() throw (){
-	free((void*)message);
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/util/IOException.h b/aos/externals/WPILib/WPILib/networktables2/util/IOException.h
deleted file mode 100644
index 001f329..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/util/IOException.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * IOException.h
- *
- *  Created on: Oct 1, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef IOEXCEPTION_H_
-#define IOEXCEPTION_H_
-
-#include <exception>
-
-/**
- * Inidcates that an unrecoverable I/O failure occured.
- */
-class IOException : public std::exception{
-public:
-	/**
-	 * Creates a new IOException with the given message.
-	 * 
-	 * @param message The message to associate with this exception.
-	 */
-	IOException(const char* message);
-	
-	/**
-	 * Creates a new IOException with the given message and
-	 * error value.
-	 * 
-	 * @param message The message to associate with this exception.
-	 * @param errorValue The integer code to associate with this exception.
-	 */
-	IOException(const char* message, int errorValue);
-	
-	/**
-	 * Gets the message associated with this exception.
-	 * 
-	 * @return The message associated with this exception.
-	 */
-	const char* what();
-	
-	/**
-	 * Determines whether this exception indicates that an EOF
-	 * was encountered.
-	 * 
-	 * @return True if this exception indicates that an EOF was encountered.
-	 * 	False otherwise.
-	 */
-	virtual bool isEOF();
-	virtual ~IOException() throw ();
-private:
-	const char* message;
-	int errorValue;
-};
-
-
-#endif /* IOEXCEPTION_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/util/IllegalStateException.cpp b/aos/externals/WPILib/WPILib/networktables2/util/IllegalStateException.cpp
deleted file mode 100644
index fd2ad6e..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/util/IllegalStateException.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * IllegalStateException.cpp
- *
- *  Created on: Sep 16, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/util/IllegalStateException.h"
-
-IllegalStateException::IllegalStateException(const char* msg) 
-	: message(msg)
-{
-}
-IllegalStateException::~IllegalStateException() throw ()
-{	
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/util/IllegalStateException.h b/aos/externals/WPILib/WPILib/networktables2/util/IllegalStateException.h
deleted file mode 100644
index 44136e6..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/util/IllegalStateException.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * IllegalStateException.h
- *
- *  Created on: Sep 16, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef ILLEGALSTATEEXCEPTION_H_
-#define ILLEGALSTATEEXCEPTION_H_
-
-#include <exception>
-#include <string>
-
-class IllegalStateException : public std::exception{
-public:
-	IllegalStateException(const char* message);
-	const char* what(){return message.c_str();};
-	~IllegalStateException() throw ();
-private:
-	std::string message;
-};
-
-#endif /* ILLEGALSTATEEXCEPTION_H_ */
diff --git a/aos/externals/WPILib/WPILib/networktables2/util/StringCache.cpp b/aos/externals/WPILib/WPILib/networktables2/util/StringCache.cpp
deleted file mode 100644
index be66609..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/util/StringCache.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * StringCache.cpp
- *
- *  Created on: Oct 16, 2012
- *      Author: Mitchell Wills
- */
-
-#include <map>
-#include "networktables2/util/StringCache.h"
-
-using namespace std;
-
-StringCache::StringCache(){
-}
-StringCache::~StringCache(){
-}
-
-std::string& StringCache::Get(const std::string& input){
-	map<std::string, std::string>::iterator itr = cache.find(input);
-	if(itr != cache.end()){
-	   return itr->second;
-	}
-	else{
-		cache[input] = Calc(input);
-		return cache[input];
-	}
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/util/StringCache.h b/aos/externals/WPILib/WPILib/networktables2/util/StringCache.h
deleted file mode 100644
index 4406e5d..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/util/StringCache.h
+++ /dev/null
@@ -1,39 +0,0 @@
-#ifndef _STRINGCACHE_H_
-#define _STRINGCACHE_H_
-
-#include <map>
-#include <string>
-
-using namespace std;
-
-/**
- * A simple cache that allows for caching the mapping of one string to another calculated one
- * 
- * @author Mitchell
- *
- */
-class StringCache {
-private:
-	map<std::string, std::string> cache;
-
-	
-	/**
-	 * @param input
-	 * @return the value for a given input
-	 */
-public:
-	StringCache();
-	virtual ~StringCache();
-	
-	
-	std::string& Get(const std::string& input);
-	
-	/**
-	 * Will only be called if a value has not already been calculated
-	 * @param input
-	 * @return the calculated value for a given input
-	 */
-	virtual std::string Calc(const std::string& input) = 0;
-};
-
-#endif
diff --git a/aos/externals/WPILib/WPILib/networktables2/util/System.cpp b/aos/externals/WPILib/WPILib/networktables2/util/System.cpp
deleted file mode 100644
index 30b3c90..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/util/System.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * System.cpp
- *
- *  Created on: Sep 26, 2012
- *      Author: Mitchell Wills
- */
-
-#include "networktables2/util/System.h"
-#include "semLib.h"
-#include <stdio.h>
-#include <sysLib.h> // for sysClkRateGet
-#include <usrLib.h> // for taskDelay
-
-void sleep_ms(unsigned long ms){
-	taskDelay((INT32)((double)sysClkRateGet() * ms / 1000));
-}
-unsigned long currentTimeMillis(){
-	struct timespec tp;
-	clock_gettime(CLOCK_REALTIME,&tp);
-	return tp.tv_sec*1000 + tp.tv_nsec/1000;
-}
-void writeWarning(const char* message){
-	fprintf(stderr, "%s\n", message);
-	fflush(stderr);
-	//TODO implement write warning with wpilib error stuff
-}
diff --git a/aos/externals/WPILib/WPILib/networktables2/util/System.h b/aos/externals/WPILib/WPILib/networktables2/util/System.h
deleted file mode 100644
index 50cd788..0000000
--- a/aos/externals/WPILib/WPILib/networktables2/util/System.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * System.h
- * 
- * For some platform specific code related to the system
- *
- *  Created on: Sep 25, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef TIME_H_
-#define TIME_H_
-
-/**
- * Causes the current thread to sleep at least the
- * given number of milliseconds.
- * 
- * @param ms The number of milliseconds to sleep.
- */
-void sleep_ms(unsigned long ms);
-
-/**
- * Retrieves the current time in milliseconds.
- * 
- * @return The current time in milliseconds.
- */
-unsigned long currentTimeMillis();
-
-/**
- * Writes a warning message to the standard error
- * stream.
- * 
- * @param message The string message to write.
- */
-void writeWarning(const char* message);
-
-
-#endif /* TIME_H_ */
diff --git a/aos/externals/WPILib/WPILib/nivision.h b/aos/externals/WPILib/WPILib/nivision.h
deleted file mode 100644
index 14de95d..0000000
--- a/aos/externals/WPILib/WPILib/nivision.h
+++ /dev/null
@@ -1,5343 +0,0 @@
-/*============================================================================*/
-/*                        IMAQ Vision                                         */
-/*----------------------------------------------------------------------------*/
-/*    Copyright (c) National Instruments 2001.  All Rights Reserved.          */
-/*----------------------------------------------------------------------------*/
-/*                                                                            */
-/* Title:       NIVision.h                                                    */
-/*                                                                            */
-/*============================================================================*/
-#if !defined(NiVision_h)
-#define NiVision_h
-
-//============================================================================
-//  Includes
-//============================================================================
-#include <stddef.h>
-
-
-//============================================================================
-//  Control Defines
-//============================================================================
-#if !defined(IMAQ_IMPORT)
-	#ifndef __GNUC__
-		#define IMAQ_IMPORT __declspec(dllimport)
-	#else
-		#define IMAQ_IMPORT
-	#endif
-#endif
-
-#if !defined(IMAQ_FUNC)
-    #if !defined(__cplusplus)
-        #define IMAQ_FUNC IMAQ_IMPORT
-    #else
-        #define IMAQ_FUNC extern "C" IMAQ_IMPORT
-    #endif
-#endif
-
-#if !defined(IMAQ_STDCALL)
-	#ifndef __GNUC__
-		#define IMAQ_STDCALL __stdcall
-	#else
-		#define IMAQ_STDCALL 
-	#endif
-#endif
-
-#ifdef _CVI_
-#pragma EnableLibraryRuntimeChecking
-#include <ansi_c.h>
-#endif
-
-#define IMAQ_CALLBACK __cdecl
-
-//============================================================================
-//  Manifest Constants
-//============================================================================
-#ifndef NULL
-    #ifdef __cplusplus
-        #define NULL    0
-    #else
-        #define NULL    ((void *)0)
-    #endif
-#endif
-
-#ifndef FALSE
-    #define FALSE               0
-#endif
-
-#ifndef TRUE
-    #define TRUE                1
-#endif
-
-#define IMAQ_DEFAULT_SHOW_COORDINATES TRUE
-#define IMAQ_DEFAULT_MAX_ICONS_PER_LINE 4
-#define IMAQ_DEFAULT_LEARNING_MODE IMAQ_LEARN_SHIFT_INFORMATION
-#define IMAQ_DEFAULT_BMP_COMPRESS FALSE
-#define IMAQ_DEFAULT_PNG_QUALITY 750
-#define IMAQ_DEFAULT_JPEG_QUALITY 750
-#define IMAQ_ALL_CONTOURS -1
-#define IMAQ_ALL_WINDOWS -1
-#define IMAQ_SHIFT      1
-#define IMAQ_ALT        2
-#define IMAQ_CTRL       4
-#define IMAQ_CAPS_LOCK  8
-#define IMAQ_MODAL_DIALOG -1
-#define IMAQ_INIT_RGB_TRANSPARENT {   0,   0,   0, 1 }
-#define IMAQ_INIT_RGB_RED         {   0,   0, 255, 0 }
-#define IMAQ_INIT_RGB_BLUE        { 255,   0,   0, 0 }
-#define IMAQ_INIT_RGB_GREEN       {   0, 255,   0, 0 }
-#define IMAQ_INIT_RGB_YELLOW      {   0, 255, 255, 0 }
-#define IMAQ_INIT_RGB_WHITE       { 255, 255, 255, 0 }
-#define IMAQ_INIT_RGB_BLACK       {   0,   0,   0, 0 }
-#define IMAQ_USE_DEFAULT_QUALITY  -1
-#define IMAQ_ALL_SAMPLES          -1
-#define IMAQ_ALL_OBJECTS          -1
-#define IMAQ_ALL_CHARACTERS       -1
-
-//============================================================================
-//  Predefined Valid Characters
-//============================================================================
-#define IMAQ_ANY_CHARACTER          ""                                                                  //Any Character
-#define IMAQ_ALPHABETIC             "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"              //Alphabetic
-#define IMAQ_ALPHANUMERIC           "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"    //Alphanumeric
-#define IMAQ_UPPERCASE_LETTERS      "ABCDEFGHIJKLMNOPQRSTUVWXYZ"                                        //Uppercase Letters
-#define IMAQ_LOWERCASE_LETTERS      "abcdefghijklmnopqrstuvwxyz"                                        //Lowercase Letters
-#define IMAQ_DECIMAL_DIGITS         "0123456789"                                                        //Decimal Digits
-#define IMAQ_HEXADECIMAL_DIGITS     "0123456789ABCDEFabcdef"                                            //Hexadecimal Digits
-#define IMAQ_PATTERN                "\xFF"                                                              //Pattern (A single character string with the character value set to 255)
-#define IMAQ_FORCE_SPACE            " "                                                                 //Force Space
-
-//============================================================================
-//  Macros
-//============================================================================
-#define IMAQ_NO_RECT imaqMakeRect( 0, 0, 0x7FFFFFFF, 0x7FFFFFFF)
-#define IMAQ_NO_ROTATED_RECT imaqMakeRotatedRect( 0, 0, 0x7FFFFFFF, 0x7FFFFFFF, 0)
-#define IMAQ_NO_POINT imaqMakePoint( -1, -1)
-#define IMAQ_NO_POINT_FLOAT imaqMakePointFloat( -1.0, -1.0 )
-#define IMAQ_NO_OFFSET imaqMakePointFloat( 0.0, 0.0 )
-
-
-
-//============================================================================
-//  When in Borland, some functions must be mapped to different names.
-//  This accomplishes said task.
-//============================================================================
-#if defined(__BORLANDC__) || (defined(_CVI_) && defined(_NI_BC_))
-    #define imaqMakePoint imaqMakePoint_BC
-    #define imaqMakePointFloat imaqMakePointFloat_BC
-#endif
-
-
-//============================================================================
-//  When in Watcom, some functions must be mapped to different names.
-//  This accomplishes said task.
-//============================================================================
-#if defined(__WATCOMC__) || (defined(_CVI_) && defined(_NI_WC_))
-    #define imaqMakePoint imaqMakePoint_BC
-    #define imaqMakePointFloat imaqMakePointFloat_BC
-#endif
-
-//============================================================================
-//  If using Visual C++, force startup & shutdown code to run.
-//============================================================================
-#if defined(_MSC_VER) && !defined(_CVI_) && !defined(__BORLANDC__)
-    #pragma comment(linker, "/INCLUDE:_nivision_startup_shutdown")
-    #pragma comment(linker, "/DEFAULTLIB:nivision.lib")
-#endif
-
-//============================================================================
-//  Error Codes
-//============================================================================
-#define ERR_SUCCESS                                                  0 // No error.
-#define ERR_SYSTEM_ERROR                                             -1074396160 // System error.
-#define ERR_OUT_OF_MEMORY                                            -1074396159 // Not enough memory for requested operation.
-#define ERR_MEMORY_ERROR                                             -1074396158 // Memory error.
-#define ERR_UNREGISTERED                                             -1074396157 // Unlicensed copy of NI Vision.
-#define ERR_NEED_FULL_VERSION                                        -1074396156 // The function requires an NI Vision 5.0 Advanced license.
-#define ERR_UNINIT                                                   -1074396155 // NI Vision did not initialize properly.
-#define ERR_IMAGE_TOO_SMALL                                          -1074396154 // The image is not large enough for the operation.
-#define ERR_BARCODE_CODABAR                                          -1074396153 // The barcode is not a valid Codabar barcode.
-#define ERR_BARCODE_CODE39                                           -1074396152 // The barcode is not a valid Code 3 of 9 barcode.
-#define ERR_BARCODE_CODE93                                           -1074396151 // The barcode is not a valid Code93 barcode.
-#define ERR_BARCODE_CODE128                                          -1074396150 // The barcode is not a valid Code128 barcode.
-#define ERR_BARCODE_EAN8                                             -1074396149 // The barcode is not a valid EAN8 barcode.
-#define ERR_BARCODE_EAN13                                            -1074396148 // The barcode is not a valid EAN13 barcode.
-#define ERR_BARCODE_I25                                              -1074396147 // The barcode is not a valid Interleaved 2 of 5 barcode.
-#define ERR_BARCODE_MSI                                              -1074396146 // The barcode is not a valid MSI barcode.
-#define ERR_BARCODE_UPCA                                             -1074396145 // The barcode is not a valid UPCA barcode.
-#define ERR_BARCODE_CODE93_SHIFT                                     -1074396144 // The Code93 barcode contains invalid shift encoding.
-#define ERR_BARCODE_TYPE                                             -1074396143 // The barcode type is invalid.
-#define ERR_BARCODE_INVALID                                          -1074396142 // The image does not represent a valid linear barcode.
-#define ERR_BARCODE_CODE128_FNC                                      -1074396141 // The FNC value in the Code128 barcode is not located before the first data value.
-#define ERR_BARCODE_CODE128_SET                                      -1074396140 // The starting code set in the Code128 barcode is not valid.
-#define ERR_ROLLBACK_RESOURCE_OUT_OF_MEMORY                          -1074396139 // Not enough reserved memory in the timed environment for the requested operation.
-#define ERR_ROLLBACK_NOT_SUPPORTED                                   -1074396138 // The function is not supported when a time limit is active.
-#define ERR_DIRECTX_DLL_NOT_FOUND                                    -1074396137 // Quartz.dll not found.  Install DirectX 8.1 or later.
-#define ERR_DIRECTX_INVALID_FILTER_QUALITY                           -1074396136 // The filter quality you provided is invalid. Valid quality values range from -1 to 1000.
-#define ERR_INVALID_BUTTON_LABEL                                     -1074396135 // Invalid button label.
-#define ERR_THREAD_INITIALIZING                                      -1074396134 // Could not execute the function in the separate thread because the thread has not completed initialization.
-#define ERR_THREAD_COULD_NOT_INITIALIZE                              -1074396133 // Could not execute the function in the separate thread because the thread could not initialize.
-#define ERR_MASK_NOT_TEMPLATE_SIZE                                   -1074396132 // The mask must be the same size as the template.
-#define ERR_NOT_RECT_OR_ROTATED_RECT                                 -1074396130 // The ROI must only have either a single Rectangle contour or a single Rotated Rectangle contour.
-#define ERR_ROLLBACK_UNBOUNDED_INTERFACE                             -1074396129 // During timed execution, you must use the preallocated version of this operation.
-#define ERR_ROLLBACK_RESOURCE_CONFLICT_3                             -1074396128 // An image being modified by one process cannot be requested by another process while a time limit is active.
-#define ERR_ROLLBACK_RESOURCE_CONFLICT_2                             -1074396127 // An image with pattern matching, calibration, or overlay information cannot be manipulated while a time limit is active.
-#define ERR_ROLLBACK_RESOURCE_CONFLICT_1                             -1074396126 // An image created before a time limit is started cannot be resized while a time limit is active.
-#define ERR_INVALID_CONTRAST_THRESHOLD                               -1074396125 // Invalid contrast threshold. The threshold value must be greater than 0. 
-#define ERR_INVALID_CALIBRATION_ROI_MODE                             -1074396124 // NI Vision does not support the calibration ROI mode you supplied.
-#define ERR_INVALID_CALIBRATION_MODE                                 -1074396123 // NI Vision does not support the calibration mode you supplied.
-#define ERR_DRAWTEXT_COLOR_MUST_BE_GRAYSCALE                         -1074396122 // Set the foreground and background text colors to grayscale to draw on a U8 image.
-#define ERR_SATURATION_THRESHOLD_OUT_OF_RANGE                        -1074396121 // The value of the saturation threshold must be from 0 to 255.
-#define ERR_NOT_IMAGE                                                -1074396120 // Not an image.
-#define ERR_CUSTOMDATA_INVALID_KEY                                   -1074396119 // They custom data key you supplied is invalid. The only valid character values are decimal 32-126 and 161-255. There must also be no repeated, leading, or trailing spaces.
-#define ERR_INVALID_STEP_SIZE                                        -1074396118 // Step size must be greater than zero and less than Image size
-#define ERR_MATRIX_SIZE                                              -1074396117 // Invalid matrix size in the structuring element.
-#define ERR_CALIBRATION_INSF_POINTS                                  -1074396116 // Insufficient number of calibration feature points.
-#define ERR_CALIBRATION_IMAGE_CORRECTED                              -1074396115 // The operation is invalid in a corrected image.
-#define ERR_CALIBRATION_INVALID_ROI                                  -1074396114 // The ROI contains an invalid contour type or is not contained in the ROI learned for calibration.
-#define ERR_CALIBRATION_IMAGE_UNCALIBRATED                           -1074396113 // The source/input image has not been calibrated.
-#define ERR_INCOMP_MATRIX_SIZE                                       -1074396112 // The number of pixel and real-world coordinates must be equal.
-#define ERR_CALIBRATION_FAILED_TO_FIND_GRID                          -1074396111 // Unable to automatically detect grid because the image is too distorted.
-#define ERR_CALIBRATION_INFO_VERSION                                 -1074396110 // Invalid calibration information version.
-#define ERR_CALIBRATION_INVALID_SCALING_FACTOR                       -1074396109 // Invalid calibration scaling factor.
-#define ERR_CALIBRATION_ERRORMAP                                     -1074396108 // The calibration error map cannot be computed.
-#define ERR_CALIBRATION_INFO_1                                       -1074396107 // Invalid calibration template image.
-#define ERR_CALIBRATION_INFO_2                                       -1074396106 // Invalid calibration template image.
-#define ERR_CALIBRATION_INFO_3                                       -1074396105 // Invalid calibration template image.
-#define ERR_CALIBRATION_INFO_4                                       -1074396104 // Invalid calibration template image.
-#define ERR_CALIBRATION_INFO_5                                       -1074396103 // Invalid calibration template image.
-#define ERR_CALIBRATION_INFO_6                                       -1074396102 // Invalid calibration template image.
-#define ERR_CALIBRATION_INFO_MICRO_PLANE                             -1074396101 // Invalid calibration template image.
-#define ERR_CALIBRATION_INFO_PERSPECTIVE_PROJECTION                  -1074396100 // Invalid calibration template image.
-#define ERR_CALIBRATION_INFO_SIMPLE_TRANSFORM                        -1074396099 // Invalid calibration template image.
-#define ERR_RESERVED_MUST_BE_NULL                                    -1074396098 // You must pass NULL for the reserved parameter.
-#define ERR_INVALID_PARTICLE_PARAMETER_VALUE                         -1074396097 // You entered an invalid selection in the particle parameter.
-#define ERR_NOT_AN_OBJECT                                            -1074396096 // Not an object.
-#define ERR_CALIBRATION_DUPLICATE_REFERENCE_POINT                    -1074396095 // The reference points passed are inconsistent.  At least two similar pixel coordinates correspond to different real-world coordinates.
-#define ERR_ROLLBACK_RESOURCE_CANNOT_UNLOCK                          -1074396094 // A resource conflict occurred in the timed environment. Two processes cannot manage the same resource and be time bounded.
-#define ERR_ROLLBACK_RESOURCE_LOCKED                                 -1074396093 // A resource conflict occurred in the timed environment. Two processes cannot access the same resource and be time bounded.
-#define ERR_ROLLBACK_RESOURCE_NON_EMPTY_INITIALIZE                   -1074396092 // Multiple timed environments are not supported.
-#define ERR_ROLLBACK_RESOURCE_UNINITIALIZED_ENABLE                   -1074396091 // A time limit cannot be started until the timed environment is initialized.
-#define ERR_ROLLBACK_RESOURCE_ENABLED                                -1074396090 // Multiple timed environments are not supported.
-#define ERR_ROLLBACK_RESOURCE_REINITIALIZE                           -1074396089 // The timed environment is already initialized.
-#define ERR_ROLLBACK_RESIZE                                          -1074396088 // The results of the operation exceeded the size limits on the output data arrays.
-#define ERR_ROLLBACK_STOP_TIMER                                      -1074396087 // No time limit is available to stop.
-#define ERR_ROLLBACK_START_TIMER                                     -1074396086 // A time limit could not be set.
-#define ERR_ROLLBACK_INIT_TIMER                                      -1074396085 // The timed environment could not be initialized.
-#define ERR_ROLLBACK_DELETE_TIMER                                    -1074396084 // No initialized timed environment is available to close.
-#define ERR_ROLLBACK_TIMEOUT                                         -1074396083 // The time limit has expired.
-#define ERR_PALETTE_NOT_SUPPORTED                                    -1074396082 // Only 8-bit images support the use of palettes.  Either do not use a palette, or convert your image to an 8-bit image before using a palette.
-#define ERR_BAD_PASSWORD                                             -1074396081 // Incorrect password.
-#define ERR_INVALID_IMAGE_TYPE                                       -1074396080 // Invalid image type.
-#define ERR_INVALID_METAFILE_HANDLE                                  -1074396079 // Invalid metafile handle.
-#define ERR_INCOMP_TYPE                                              -1074396077 // Incompatible image type.
-#define ERR_COORD_SYS_FIRST_AXIS                                     -1074396076 // Unable to fit a line for the primary axis.
-#define ERR_COORD_SYS_SECOND_AXIS                                    -1074396075 // Unable to fit a line for the secondary axis.
-#define ERR_INCOMP_SIZE                                              -1074396074 // Incompatible image size.
-#define ERR_MASK_OUTSIDE_IMAGE                                       -1074396073 // When the mask's offset was applied, the mask was entirely outside of the image.
-#define ERR_INVALID_BORDER                                           -1074396072 // Invalid image border.
-#define ERR_INVALID_SCAN_DIRECTION                                   -1074396071 // Invalid scan direction.
-#define ERR_INVALID_FUNCTION                                         -1074396070 // Unsupported function.
-#define ERR_INVALID_COLOR_MODE                                       -1074396069 // NI Vision does not support the color mode you specified.
-#define ERR_INVALID_ACTION                                           -1074396068 // The function does not support the requested action.
-#define ERR_IMAGES_NOT_DIFF                                          -1074396067 // The source image and destination image must be different.
-#define ERR_INVALID_POINTSYMBOL                                      -1074396066 // Invalid point symbol.
-#define ERR_CANT_RESIZE_EXTERNAL                                     -1074396065 // Cannot resize an image in an acquisition buffer.
-#define ERR_EXTERNAL_NOT_SUPPORTED                                   -1074396064 // This operation is not supported for images in an acquisition buffer.
-#define ERR_EXTERNAL_ALIGNMENT                                       -1074396063 // The external buffer must be aligned on a 4-byte boundary. The line width and border pixels must be 4-byte aligned, as well.
-#define ERR_INVALID_TOLERANCE                                        -1074396062 // The tolerance parameter must be greater than or equal to 0.
-#define ERR_INVALID_WINDOW_SIZE                                      -1074396061 // The size of each dimension of the window must be greater than 2 and less than or equal to the size of the image in the corresponding dimension.
-#define ERR_JPEG2000_LOSSLESS_WITH_FLOATING_POINT                    -1074396060 // Lossless compression cannot be used with the floating point wavelet transform mode. Either set the wavelet transform mode to integer, or use lossy compression.
-#define ERR_INVALID_MAX_ITERATIONS                                   -1074396059 // Invalid maximum number of iterations. Maximum number of iterations must be greater than zero.
-#define ERR_INVALID_ROTATION_MODE                                    -1074396058 // Invalid rotation mode.
-#define ERR_INVALID_SEARCH_VECTOR_WIDTH                              -1074396057 // Invalid search vector width. The width must be an odd number greater than zero.
-#define ERR_INVALID_MATRIX_MIRROR_MODE                               -1074396056 // Invalid matrix mirror mode.
-#define ERR_INVALID_ASPECT_RATIO                                     -1074396055 // Invalid aspect ratio. Valid aspect ratios must be greater than or equal to zero.
-#define ERR_INVALID_CELL_FILL_TYPE                                   -1074396054 // Invalid cell fill type.
-#define ERR_INVALID_BORDER_INTEGRITY                                 -1074396053 // Invalid border integrity. Valid values range from 0 to 100.
-#define ERR_INVALID_DEMODULATION_MODE                                -1074396052 // Invalid demodulation mode.
-#define ERR_INVALID_CELL_FILTER_MODE                                 -1074396051 // Invalid cell filter mode.
-#define ERR_INVALID_ECC_TYPE                                         -1074396050 // Invalid ECC type.
-#define ERR_INVALID_MATRIX_POLARITY                                  -1074396049 // Invalid matrix polarity.
-#define ERR_INVALID_CELL_SAMPLE_SIZE                                 -1074396048 // Invalid cell sample size.
-#define ERR_INVALID_LINEAR_AVERAGE_MODE                              -1074396047 // Invalid linear average mode.
-#define ERR_INVALID_2D_BARCODE_CONTRAST_FOR_ROI                      -1074396046 // When using a region of interest that is not a rectangle, you must specify the contrast mode of the barcode as either black on white or white on black.
-#define ERR_INVALID_2D_BARCODE_SUBTYPE                               -1074396045 // Invalid 2-D barcode Data Matrix subtype.
-#define ERR_INVALID_2D_BARCODE_SHAPE                                 -1074396044 // Invalid 2-D barcode shape.
-#define ERR_INVALID_2D_BARCODE_CELL_SHAPE                            -1074396043 // Invalid 2-D barcode cell shape.
-#define ERR_INVALID_2D_BARCODE_CONTRAST                              -1074396042 // Invalid 2-D barcode contrast.
-#define ERR_INVALID_2D_BARCODE_TYPE                                  -1074396041 // Invalid 2-D barcode type.
-#define ERR_DRIVER                                                   -1074396040 // Cannot access NI-IMAQ driver.
-#define ERR_IO_ERROR                                                 -1074396039 // I/O error.
-#define ERR_FIND_COORDSYS_MORE_THAN_ONE_EDGE                         -1074396038 // When searching for a coordinate system, the number of lines to fit must be 1.
-#define ERR_TIMEOUT                                                  -1074396037 // Trigger timeout.
-#define ERR_INVALID_SKELETONMODE                                     -1074396036 // The Skeleton mode you specified is invalid.
-#define ERR_TEMPLATEIMAGE_NOCIRCLE                                   -1074396035 // The template image does not contain enough information for learning the aggressive search strategy.
-#define ERR_TEMPLATEIMAGE_EDGEINFO                                   -1074396034 // The template image does not contain enough edge information for the sample size(s) requested.
-#define ERR_TEMPLATEDESCRIPTOR_LEARNSETUPDATA                        -1074396033 // Invalid template descriptor.
-#define ERR_TEMPLATEDESCRIPTOR_ROTATION_SEARCHSTRATEGY               -1074396032 // The template descriptor does not contain data required for the requested search strategy in rotation-invariant matching.
-#define ERR_INVALID_TETRAGON                                         -1074396031 // The input tetragon must have four points. The points are specified clockwise starting with the top left point. 
-#define ERR_TOO_MANY_CLASSIFICATION_SESSIONS                         -1074396030 // There are too many classification sessions open.  You must close a session before you can open another one.
-#define ERR_TIME_BOUNDED_EXECUTION_NOT_SUPPORTED                     -1074396028 // NI Vision no longer supports time-bounded execution.
-#define ERR_INVALID_COLOR_RESOLUTION                                 -1074396027 // Invalid Color Resolution for the Color Classifier
-#define ERR_INVALID_PROCESS_TYPE_FOR_EDGE_DETECTION                  -1074396026 // Invalid process type for edge detection.
-#define ERR_INVALID_ANGLE_RANGE_FOR_STRAIGHT_EDGE                    -1074396025 // Angle range value should be equal to or greater than zero.
-#define ERR_INVALID_MIN_COVERAGE_FOR_STRAIGHT_EDGE                   -1074396024 // Minimum coverage value should be greater than zero.
-#define ERR_INVALID_ANGLE_TOL_FOR_STRAIGHT_EDGE                      -1074396023 // The angle tolerance should be equal to or greater than 0.001.
-#define ERR_INVALID_SEARCH_MODE_FOR_STRAIGHT_EDGE                    -1074396022 // Invalid search mode for detecting straight edges
-#define ERR_INVALID_KERNEL_SIZE_FOR_EDGE_DETECTION                   -1074396021 // Invalid kernel size for edge detection. The minimum kernel size is 3, the maximum kernel size is 1073741823 and the kernel size must be odd.
-#define ERR_INVALID_GRADING_MODE                                     -1074396020 // Invalid grading mode.
-#define ERR_INVALID_THRESHOLD_PERCENTAGE                             -1074396019 // Invalid threshold percentage. Valid values range from 0 to 100.
-#define ERR_INVALID_EDGE_POLARITY_SEARCH_MODE                        -1074396018 // Invalid edge polarity search mode.
-#define ERR_OPENING_NEWER_AIM_GRADING_DATA                           -1074396017 // The AIM grading data attached to the image you tried to open was created with a newer version of NI Vision. Upgrade to the latest version of NI Vision to read this file.
-#define ERR_NO_VIDEO_DRIVER                                          -1074396016 // No video driver is installed.
-#define ERR_RPC_EXECUTE_IVB                                          -1074396015 // Unable to establish network connection with remote system.
-#define ERR_INVALID_VIDEO_BLIT                                       -1074396014 // RT Video Out does not support displaying the supplied image type at the selected color depth.
-#define ERR_INVALID_VIDEO_MODE                                       -1074396013 // Invalid video mode.
-#define ERR_RPC_EXECUTE                                              -1074396012 // Unable to display remote image on network connection.
-#define ERR_RPC_BIND                                                 -1074396011 // Unable to establish network connection.
-#define ERR_INVALID_FRAME_NUMBER                                     -1074396010 // Invalid frame number.
-#define ERR_DIRECTX                                                  -1074396009 // An internal DirectX error has occurred.  Try upgrading to the latest version of DirectX.
-#define ERR_DIRECTX_NO_FILTER                                        -1074396008 // An appropriate DirectX filter to process this file could not be found.  Install the filter that was used to create this AVI. Upgrading to the latest version of DirectX may correct this error.  NI Vision requires DirectX 8.1 or higher.
-#define ERR_DIRECTX_INCOMPATIBLE_COMPRESSION_FILTER                  -1074396007 // Incompatible compression filter.
-#define ERR_DIRECTX_UNKNOWN_COMPRESSION_FILTER                       -1074396006 // Unknown compression filter.
-#define ERR_INVALID_AVI_SESSION                                      -1074396005 // Invalid AVI session.
-#define ERR_DIRECTX_CERTIFICATION_FAILURE                            -1074396004 // A software key is restricting the use of this compression filter.
-#define ERR_AVI_DATA_EXCEEDS_BUFFER_SIZE                             -1074396003 // The data for this frame exceeds the data buffer size specified when creating the AVI file.
-#define ERR_INVALID_LINEGAUGEMETHOD                                  -1074396002 // Invalid line gauge method.
-#define ERR_TOO_MANY_AVI_SESSIONS                                    -1074396001 // There are too many AVI sessions open.  You must close a session before you can open another one.
-#define ERR_FILE_FILE_HEADER                                         -1074396000 // Invalid file header.
-#define ERR_FILE_FILE_TYPE                                           -1074395999 // Invalid file type.
-#define ERR_FILE_COLOR_TABLE                                         -1074395998 // Invalid color table.
-#define ERR_FILE_ARGERR                                              -1074395997 // Invalid parameter.
-#define ERR_FILE_OPEN                                                -1074395996 // File is already open for writing.
-#define ERR_FILE_NOT_FOUND                                           -1074395995 // File not found.
-#define ERR_FILE_TOO_MANY_OPEN                                       -1074395994 // Too many files open.
-#define ERR_FILE_IO_ERR                                              -1074395993 // File I/O error.
-#define ERR_FILE_PERMISSION                                          -1074395992 // File access denied.
-#define ERR_FILE_INVALID_TYPE                                        -1074395991 // NI Vision does not support the file type you specified.
-#define ERR_FILE_GET_INFO                                            -1074395990 // Could not read Vision info from file.
-#define ERR_FILE_READ                                                -1074395989 // Unable to read data.
-#define ERR_FILE_WRITE                                               -1074395988 // Unable to write data.
-#define ERR_FILE_EOF                                                 -1074395987 // Premature end of file.
-#define ERR_FILE_FORMAT                                              -1074395986 // Invalid file format.
-#define ERR_FILE_OPERATION                                           -1074395985 // Invalid file operation.
-#define ERR_FILE_INVALID_DATA_TYPE                                   -1074395984 // NI Vision does not support the file data type you specified.
-#define ERR_FILE_NO_SPACE                                            -1074395983 // Disk full.
-#define ERR_INVALID_FRAMES_PER_SECOND                                -1074395982 // The frames per second in an AVI must be greater than zero.
-#define ERR_INSUFFICIENT_BUFFER_SIZE                                 -1074395981 // The buffer that was passed in is not big enough to hold all of the data.
-#define ERR_COM_INITIALIZE                                           -1074395980 // Error initializing COM.
-#define ERR_INVALID_PARTICLE_INFO                                    -1074395979 // The image has invalid particle information.  Call imaqCountParticles on the image to create particle information.
-#define ERR_INVALID_PARTICLE_NUMBER                                  -1074395978 // Invalid particle number.
-#define ERR_AVI_VERSION                                              -1074395977 // The AVI file was created in a newer version of NI Vision. Upgrade to the latest version of NI Vision to read this AVI file.
-#define ERR_NUMBER_OF_PALETTE_COLORS                                 -1074395976 // The color palette must have exactly 0 or 256 entries.
-#define ERR_AVI_TIMEOUT                                              -1074395975 // DirectX has timed out reading or writing the AVI file.  When closing an AVI file, try adding an additional delay.  When reading an AVI file, try reducing CPU and disk load.
-#define ERR_UNSUPPORTED_JPEG2000_COLORSPACE_METHOD                   -1074395974 // NI Vision does not support reading JPEG2000 files with this colorspace method.
-#define ERR_JPEG2000_UNSUPPORTED_MULTIPLE_LAYERS                     -1074395973 // NI Vision does not support reading JPEG2000 files with more than one layer.
-#define ERR_DIRECTX_ENUMERATE_FILTERS                                -1074395972 // DirectX is unable to enumerate the compression filters. This is caused by a third-party compression filter that is either improperly installed or is preventing itself from being enumerated. Remove any recently installed compression filters and try again.
-#define ERR_INVALID_OFFSET                                           -1074395971 // The offset you specified must be size 2.
-#define ERR_INIT                                                     -1074395960 // Initialization error.
-#define ERR_CREATE_WINDOW                                            -1074395959 // Unable to create window.
-#define ERR_WINDOW_ID                                                -1074395958 // Invalid window ID.
-#define ERR_ARRAY_SIZE_MISMATCH                                      -1074395957 // The array sizes are not compatible.
-#define ERR_INVALID_QUALITY                                          -1074395956 // The quality you provided is invalid. Valid quality values range from -1 to 1000.
-#define ERR_INVALID_MAX_WAVELET_TRANSFORM_LEVEL                      -1074395955 // Invalid maximum wavelet transform level.  Valid values range from 0 to 255.
-#define ERR_INVALID_QUANTIZATION_STEP_SIZE                           -1074395954 // The quantization step size must be greater than or equal to 0.
-#define ERR_INVALID_WAVELET_TRANSFORM_MODE                           -1074395953 // Invalid wavelet transform mode.
-#define ERR_ROI_NOT_POINT                                            -1074395952 // The ROI must only have a single Point contour.
-#define ERR_ROI_NOT_POINTS                                           -1074395951 // The ROI must only have Point contours.
-#define ERR_ROI_NOT_LINE                                             -1074395950 // The ROI must only have a single Line contour.
-#define ERR_ROI_NOT_ANNULUS                                          -1074395949 // The ROI must only have a single Annulus contour.
-#define ERR_INVALID_MEASURE_PARTICLES_CALIBRATION_MODE               -1074395948 // Invalid measure particles calibration mode.
-#define ERR_INVALID_PARTICLE_CLASSIFIER_THRESHOLD_TYPE               -1074395947 // Invalid particle classifier threshold type.
-#define ERR_INVALID_DISTANCE                                         -1074395946 // Invalid Color Segmentation Distance
-#define ERR_INVALID_PARTICLE_AREA                                    -1074395945 // Invalid Color Segmenation Particle Area
-#define ERR_CLASS_NAME_NOT_FOUND                                     -1074395944 // Required Class name is not found in trained labels/Class names
-#define ERR_NUMBER_LABEL_LIMIT_EXCEEDED                              -1074395943 // Number of Labels exceeded limit of label Image type
-#define ERR_INVALID_DISTANCE_LEVEL                                   -1074395942 // Invalid Color Segmentation distance level
-#define ERR_INVALID_SVM_TYPE                                         -1074395941 // Invalid SVM model type
-#define ERR_INVALID_SVM_KERNEL                                       -1074395940 // Invalid SVM kernel type
-#define ERR_NO_SUPPORT_VECTOR_FOUND                                  -1074395939 // No Support Vector is found at SVM training
-#define ERR_COST_LABEL_NOT_FOUND                                     -1074395938 // Label name is not found in added samples
-#define ERR_EXCEEDED_SVM_MAX_ITERATION                               -1074395937 // SVM training exceeded maximim Iteration limit
-#define ERR_INVALID_SVM_PARAMETER                                    -1074395936 // Invalid SVM Parameter
-#define ERR_INVALID_IDENTIFICATION_SCORE                             -1074395935 // Invalid Identification score. Must be between 0-1000.
-#define ERR_INVALID_TEXTURE_FEATURE                                  -1074395934 // Requested for invalid texture feature
-#define ERR_INVALID_COOCCURRENCE_LEVEL                               -1074395933 // The coOccurrence Level must lie between 1 and the maximum pixel value of an image (255 for U8 image)
-#define ERR_INVALID_WAVELET_SUBBAND                                  -1074395932 // Request for invalid wavelet subBand
-#define ERR_INVALID_FINAL_STEP_SIZE                                  -1074395931 // The final step size must be lesser than the initial step size
-#define ERR_INVALID_ENERGY                                           -1074395930 // Minimum Energy should lie between 0 and 100
-#define ERR_INVALID_TEXTURE_LABEL                                    -1074395929 // The classification label must be texture or defect for texture defect classifier
-#define ERR_INVALID_WAVELET_TYPE                                     -1074395928 // The wavelet type is invalid
-#define ERR_SAME_WAVELET_BANDS_SELECTED                              -1074395927 // Same Wavelet band is selected multiple times
-#define ERR_IMAGE_SIZE_MISMATCH                                      -1074395926 // The two input image sizes are different 
-#define ERR_NUMBER_CLASS                                             -1074395920 // Invalid number of classes.
-#define ERR_INVALID_LUCAS_KANADE_WINDOW_SIZE                         -1074395888 // Both dimensions of the window size should be odd, greater than 2 and less than 16.
-#define ERR_INVALID_MATRIX_TYPE                                      -1074395887 // The type of matrix supplied to the function is not supported.
-#define ERR_INVALID_OPTICAL_FLOW_TERMINATION_CRITERIA_TYPE           -1074395886 // An invalid termination criteria was specified for the optical flow computation.
-#define ERR_LKP_NULL_PYRAMID                                         -1074395885 // The pyramid levels where not properly allocated.
-#define ERR_INVALID_PYRAMID_LEVEL                                    -1074395884 // The pyramid level specified cannot be negative
-#define ERR_INVALID_LKP_KERNEL                                       -1074395883 // The kernel must be symmetric  with non-zero coefficients and of odd size
-#define ERR_INVALID_HORN_SCHUNCK_LAMBDA                              -1074395882 // Invalid smoothing parameter in Horn Schunck operation.
-#define ERR_INVALID_HORN_SCHUNCK_TYPE                                -1074395881 // Invalid stopping criteria type for Horn Schunck optical flow.
-#define ERR_PARTICLE                                                 -1074395880 // Invalid particle.
-#define ERR_BAD_MEASURE                                              -1074395879 // Invalid measure number.
-#define ERR_PROP_NODE_WRITE_NOT_SUPPORTED                            -1074395878 // The Image Display control does not support writing this property node.
-#define ERR_COLORMODE_REQUIRES_CHANGECOLORSPACE2                     -1074395877 // The specified color mode requires the use of imaqChangeColorSpace2.
-#define ERR_UNSUPPORTED_COLOR_MODE                                   -1074395876 // This function does not currently support the color mode you specified.
-#define ERR_BARCODE_PHARMACODE                                       -1074395875 // The barcode is not a valid Pharmacode symbol
-#define ERR_BAD_INDEX                                                -1074395840 // Invalid handle table index.
-#define ERR_INVALID_COMPRESSION_RATIO                                -1074395837 // The compression ratio must be greater than or equal to 1.
-#define ERR_TOO_MANY_CONTOURS                                        -1074395801 // The ROI contains too many contours.
-#define ERR_PROTECTION                                               -1074395800 // Protection error.
-#define ERR_INTERNAL                                                 -1074395799 // Internal error.
-#define ERR_INVALID_CUSTOM_SAMPLE                                    -1074395798 // The size of the feature vector in the custom sample must match the size of those you have already added.
-#define ERR_INVALID_CLASSIFIER_SESSION                               -1074395797 // Not a valid classifier session.
-#define ERR_INVALID_KNN_METHOD                                       -1074395796 // You requested an invalid Nearest Neighbor classifier method.
-#define ERR_K_TOO_LOW                                                -1074395795 // The k parameter must be greater than two.
-#define ERR_K_TOO_HIGH                                               -1074395794 // The k parameter must be <= the number of samples in each class.
-#define ERR_INVALID_OPERATION_ON_COMPACT_SESSION_ATTEMPTED           -1074395793 // This classifier session is compact. Only the Classify and Dispose functions may be called on a compact classifier session.
-#define ERR_CLASSIFIER_SESSION_NOT_TRAINED                           -1074395792 // This classifier session is not trained. You may only call this function on a trained classifier session.
-#define ERR_CLASSIFIER_INVALID_SESSION_TYPE                          -1074395791 // This classifier function cannot be called on this type of classifier session.
-#define ERR_INVALID_DISTANCE_METRIC                                  -1074395790 // You requested an invalid distance metric.
-#define ERR_OPENING_NEWER_CLASSIFIER_SESSION                         -1074395789 // The classifier session you tried to open was created with a newer version of NI Vision. Upgrade to the latest version of NI Vision to read this file.
-#define ERR_NO_SAMPLES                                               -1074395788 // This operation cannot be performed because you have not added any samples.
-#define ERR_INVALID_CLASSIFIER_TYPE                                  -1074395787 // You requested an invalid classifier type.
-#define ERR_INVALID_PARTICLE_OPTIONS                                 -1074395786 // The sum of Scale Dependence and Symmetry Dependence must be less than 1000.
-#define ERR_NO_PARTICLE                                              -1074395785 // The image yielded no particles.
-#define ERR_INVALID_LIMITS                                           -1074395784 // The limits you supplied are not valid.
-#define ERR_BAD_SAMPLE_INDEX                                         -1074395783 // The Sample Index fell outside the range of Samples.
-#define ERR_DESCRIPTION_TOO_LONG                                     -1074395782 // The description must be <= 255 characters.
-#define ERR_CLASSIFIER_INVALID_ENGINE_TYPE                           -1074395781 // The engine for this classifier session does not support this operation.
-#define ERR_INVALID_PARTICLE_TYPE                                    -1074395780 // You requested an invalid particle type.
-#define ERR_CANNOT_COMPACT_UNTRAINED                                 -1074395779 // You may only save a session in compact form if it is trained.
-#define ERR_INVALID_KERNEL_SIZE                                      -1074395778 // The Kernel size must be smaller than the image size.
-#define ERR_INCOMPATIBLE_CLASSIFIER_TYPES                            -1074395777 // The session you read from file must be the same type as the session you passed in.
-#define ERR_INVALID_USE_OF_COMPACT_SESSION_FILE                      -1074395776 // You can not use a compact classification file with read options other than Read All.
-#define ERR_ROI_HAS_OPEN_CONTOURS                                    -1074395775 // The ROI you passed in may only contain closed contours.
-#define ERR_NO_LABEL                                                 -1074395774 // You must pass in a label.
-#define ERR_NO_DEST_IMAGE                                            -1074395773 // You must provide a destination image.
-#define ERR_INVALID_REGISTRATION_METHOD                              -1074395772 // You provided an invalid registration method.
-#define ERR_OPENING_NEWER_INSPECTION_TEMPLATE                        -1074395771 // The golden template you tried to open was created with a newer version of NI Vision. Upgrade to the latest version of NI Vision to read this file.
-#define ERR_INVALID_INSPECTION_TEMPLATE                              -1074395770 // Invalid golden template.
-#define ERR_INVALID_EDGE_THICKNESS                                   -1074395769 // Edge Thickness to Ignore must be greater than zero.
-#define ERR_INVALID_SCALE                                            -1074395768 // Scale must be greater than zero.
-#define ERR_INVALID_ALIGNMENT                                        -1074395767 // The supplied scale is invalid for your template.
-#define ERR_DEPRECATED_FUNCTION                                      -1074395766 // This backwards-compatibility function can not be used with this session. Use newer, supported functions instead.
-#define ERR_INVALID_NORMALIZATION_METHOD                             -1074395763 // You must provide a valid normalization method.
-#define ERR_INVALID_NIBLACK_DEVIATION_FACTOR                         -1074395762 // The deviation factor for Niblack local threshold must be between 0 and 1.
-#define ERR_BOARD_NOT_FOUND                                          -1074395760 // Board not found.
-#define ERR_BOARD_NOT_OPEN                                           -1074395758 // Board not opened.
-#define ERR_DLL_NOT_FOUND                                            -1074395757 // DLL not found.
-#define ERR_DLL_FUNCTION_NOT_FOUND                                   -1074395756 // DLL function not found.
-#define ERR_TRIG_TIMEOUT                                             -1074395754 // Trigger timeout.
-#define ERR_CONTOUR_INVALID_REFINEMENTS                              -1074395746 // Invalid number specified for maximum contour refinements.
-#define ERR_TOO_MANY_CURVES                                          -1074395745 // Too many curves extracted from image. Raise the edge threshold or reduce the ROI.
-#define ERR_CONTOUR_INVALID_KERNEL_FOR_SMOOTHING                     -1074395744 // Invalid kernel for contour smoothing. Zero indicates no smoothing, otherwise value must be odd. 
-#define ERR_CONTOUR_LINE_INVALID                                     -1074395743 // The contour line fit is invalid. Line segment start and stop must differ.
-#define ERR_CONTOUR_TEMPLATE_IMAGE_INVALID                           -1074395742 // The template image must be trained with IMAQ Learn Contour Pattern or be the same size as the target image.
-#define ERR_CONTOUR_GPM_FAIL                                         -1074395741 // Matching failed to align the template and target contours.
-#define ERR_CONTOUR_OPENING_NEWER_VERSION                            -1074395740 // The contour you tried to open was created with a newer version of NI Vision. Upgrade to the latest version of NI Vision to read this file. 
-#define ERR_CONTOUR_CONNECT_DUPLICATE                                -1074395739 // Only one range is allowed per curve connection constraint type. 
-#define ERR_CONTOUR_CONNECT_TYPE                                     -1074395738 // Invalid contour connection constraint type. 
-#define ERR_CONTOUR_MATCH_STR_NOT_APPLICABLE                         -1074395737 // In order to use contour matching, you must provide a template image that has been trained with IMAQ Learn Contour Pattern
-#define ERR_CONTOUR_CURVATURE_KERNEL                                 -1074395736 // Invalid kernel width for curvature calculation. Must be an odd value greater than 1. 
-#define ERR_CONTOUR_EXTRACT_SELECTION                                -1074395735 // Invalid Contour Selection method for contour extraction. 
-#define ERR_CONTOUR_EXTRACT_DIRECTION                                -1074395734 // Invalid Search Direction for contour extraction. 
-#define ERR_CONTOUR_EXTRACT_ROI                                      -1074395733 // Invalid ROI for contour extraction. The ROI must contain an annulus, rectangle or rotated rectangle. 
-#define ERR_CONTOUR_NO_CURVES                                        -1074395732 // No curves were found in the image.
-#define ERR_CONTOUR_COMPARE_KERNEL                                   -1074395731 // Invalid Smoothing Kernel width for contour comparison. Must be zero or an odd positive integer. 
-#define ERR_CONTOUR_COMPARE_SINGLE_IMAGE                             -1074395730 // If no template image is provided, the target image must contain both a contour with extracted points and a fitted equation.
-#define ERR_CONTOUR_INVALID                                          -1074395729 // Invalid contour image.
-#define ERR_INVALID_2D_BARCODE_SEARCH_MODE                           -1074395728 // NI Vision does not support the search mode you provided.
-#define ERR_UNSUPPORTED_2D_BARCODE_SEARCH_MODE                       -1074395727 // NI Vision does not support the search mode you provided for the type of 2D barcode for which you are searching.
-#define ERR_MATCHFACTOR_OBSOLETE                                     -1074395726 // matchFactor has been obsoleted. Instead, set the initialMatchListLength and matchListReductionFactor in the MatchPatternAdvancedOptions structure.
-#define ERR_DATA_VERSION                                             -1074395725 // The data was stored with a newer version of NI Vision. Upgrade to the latest version of NI Vision to read this data.
-#define ERR_CUSTOMDATA_INVALID_SIZE                                  -1074395724 // The size you specified is out of the valid range.
-#define ERR_CUSTOMDATA_KEY_NOT_FOUND                                 -1074395723 // The key you specified cannot be found in the image.
-#define ERR_CLASSIFIER_CLASSIFY_IMAGE_WITH_CUSTOM_SESSION            -1074395722 // Custom classifier sessions only classify feature vectors. They do not support classifying images.
-#define ERR_INVALID_BIT_DEPTH                                        -1074395721 // NI Vision does not support the bit depth you supplied for the image you supplied.
-#define ERR_BAD_ROI                                                  -1074395720 // Invalid ROI.
-#define ERR_BAD_ROI_BOX                                              -1074395719 // Invalid ROI global rectangle.
-#define ERR_LAB_VERSION                                              -1074395718 // The version of LabVIEW or BridgeVIEW you are running does not support this operation.
-#define ERR_INVALID_RANGE                                            -1074395717 // The range you supplied is invalid.
-#define ERR_INVALID_SCALING_METHOD                                   -1074395716 // NI Vision does not support the scaling method you provided.
-#define ERR_INVALID_CALIBRATION_UNIT                                 -1074395715 // NI Vision does not support the calibration unit you supplied.
-#define ERR_INVALID_AXIS_ORIENTATION                                 -1074395714 // NI Vision does not support the axis orientation you supplied.
-#define ERR_VALUE_NOT_IN_ENUM                                        -1074395713 // Value not in enumeration.
-#define ERR_WRONG_REGION_TYPE                                        -1074395712 // You selected a region that is not of the right type.
-#define ERR_NOT_ENOUGH_REGIONS                                       -1074395711 // You specified a viewer that does not contain enough regions.
-#define ERR_TOO_MANY_PARTICLES                                       -1074395710 // The image has too many particles for this process.
-#define ERR_AVI_UNOPENED_SESSION                                     -1074395709 // The AVI session has not been opened.
-#define ERR_AVI_READ_SESSION_REQUIRED                                -1074395708 // The AVI session is a write session, but this operation requires a read session.
-#define ERR_AVI_WRITE_SESSION_REQUIRED                               -1074395707 // The AVI session is a read session, but this operation requires a write session.
-#define ERR_AVI_SESSION_ALREADY_OPEN                                 -1074395706 // This AVI session is already open. You must close it before calling the Create or Open functions.
-#define ERR_DATA_CORRUPTED                                           -1074395705 // The data is corrupted and cannot be read.
-#define ERR_INVALID_COMPRESSION_TYPE                                 -1074395704 // Invalid compression type.
-#define ERR_INVALID_TYPE_OF_FLATTEN                                  -1074395703 // Invalid type of flatten.
-#define ERR_INVALID_LENGTH                                           -1074395702 // The length of the edge detection line must be greater than zero.
-#define ERR_INVALID_MATRIX_SIZE_RANGE                                -1074395701 // The maximum Data Matrix barcode size must be equal to or greater than the minimum Data Matrix barcode size.
-#define ERR_REQUIRES_WIN2000_OR_NEWER                                -1074395700 // The function requires the operating system to be Microsoft Windows 2000 or newer.
-#define ERR_INVALID_CALIBRATION_METHOD                               -1074395662 // Invalid calibration method requested
-#define ERR_INVALID_OPERATION_ON_COMPACT_CALIBRATION_ATTEMPTED       -1074395661 // This calibration is compact. Re-Learning calibration and retrieving thumbnails are not possible with this calibration
-#define ERR_INVALID_POLYNOMIAL_MODEL_K_COUNT                         -1074395660 // Invalid number of K values 
-#define ERR_INVALID_DISTORTION_MODEL                                 -1074395659 // Invalid distortion model type
-#define ERR_CAMERA_MODEL_NOT_AVAILABLE                               -1074395658 // Camera Model is not learned
-#define ERR_INVALID_THUMBNAIL_INDEX                                  -1074395657 // Supplied thumbnail index is invalid
-#define ERR_SMOOTH_CONTOURS_MUST_BE_SAME                             -1074395656 // You must specify the same value for the smooth contours advanced match option for all templates you want to match.
-#define ERR_ENABLE_CALIBRATION_SUPPORT_MUST_BE_SAME                  -1074395655 // You must specify the same value for the enable calibration support advanced match option for all templates you want to match.
-#define ERR_GRADING_INFORMATION_NOT_FOUND                            -1074395654 // The source image does not contain grading information. You must prepare the source image for grading when reading the Data Matrix, and you cannot change the contents of the source image between reading and grading the Data Matrix.
-#define ERR_OPENING_NEWER_MULTIPLE_GEOMETRIC_TEMPLATE                -1074395653 // The multiple geometric matching template you tried to open was created with a newer version of NI Vision. Upgrade to the latest version of NI Vision to read this file.
-#define ERR_OPENING_NEWER_GEOMETRIC_MATCHING_TEMPLATE                -1074395652 // The geometric matching template you tried to open was created with a newer version of NI Vision. Upgrade to the latest version of NI Vision to read this file.
-#define ERR_EDGE_FILTER_SIZE_MUST_BE_SAME                            -1074395651 // You must specify the same edge filter size for all the templates you want to match.
-#define ERR_CURVE_EXTRACTION_MODE_MUST_BE_SAME                       -1074395650 // You must specify the same curve extraction mode for all the templates you want to match.
-#define ERR_INVALID_GEOMETRIC_FEATURE_TYPE                           -1074395649 // The geometric feature type specified is invalid.
-#define ERR_TEMPLATE_NOT_LEARNED                                     -1074395648 // You supplied a template that was not learned.
-#define ERR_INVALID_MULTIPLE_GEOMETRIC_TEMPLATE                      -1074395647 // Invalid multiple geometric template.
-#define ERR_NO_TEMPLATE_TO_LEARN                                     -1074395646 // Need at least one template to learn.
-#define ERR_INVALID_NUMBER_OF_LABELS                                 -1074395645 // You supplied an invalid number of labels.
-#define ERR_LABEL_TOO_LONG                                           -1074395644 // Labels must be <= 255 characters.
-#define ERR_INVALID_NUMBER_OF_MATCH_OPTIONS                          -1074395643 // You supplied an invalid number of match options.
-#define ERR_LABEL_NOT_FOUND                                          -1074395642 // Cannot find a label that matches the one you specified.
-#define ERR_DUPLICATE_LABEL                                          -1074395641 // Duplicate labels are not allowed.
-#define ERR_TOO_MANY_ZONES                                           -1074395640 // The number of zones found exceeded the capacity of the algorithm.
-#define ERR_INVALID_HATCH_STYLE                                      -1074395639 // The hatch style for the window background is invalid.
-#define ERR_INVALID_FILL_STYLE                                       -1074395638 // The fill style for the window background is invalid.
-#define ERR_HARDWARE_DOESNT_SUPPORT_NONTEARING                       -1074395637 // Your hardware is not supported by DirectX and cannot be put into NonTearing mode.
-#define ERR_DIRECTX_NOT_FOUND                                        -1074395636 // DirectX is required for this feature.  Please install the latest version..
-#define ERR_INVALID_SHAPE_DESCRIPTOR                                 -1074395635 // The passed shape descriptor is invalid.
-#define ERR_INVALID_MAX_MATCH_OVERLAP                                -1074395634 // Invalid max match overlap.  Values must be between -1 and 100.
-#define ERR_INVALID_MIN_MATCH_SEPARATION_SCALE                       -1074395633 // Invalid minimum match separation scale.  Values must be greater than or equal to -1.
-#define ERR_INVALID_MIN_MATCH_SEPARATION_ANGLE                       -1074395632 // Invalid minimum match separation angle.  Values must be between -1 and 360.
-#define ERR_INVALID_MIN_MATCH_SEPARATION_DISTANCE                    -1074395631 // Invalid minimum match separation distance.  Values must be greater than or equal to -1.
-#define ERR_INVALID_MAXIMUM_FEATURES_LEARNED                         -1074395630 // Invalid maximum number of features learn. Values must be integers greater than zero.
-#define ERR_INVALID_MAXIMUM_PIXEL_DISTANCE_FROM_LINE                 -1074395629 // Invalid maximum pixel distance from line. Values must be positive real numbers.
-#define ERR_INVALID_GEOMETRIC_MATCHING_TEMPLATE                      -1074395628 // Invalid geometric matching template image.
-#define ERR_NOT_ENOUGH_TEMPLATE_FEATURES_1                           -1074395627 // The template does not contain enough features for geometric matching.
-#define ERR_NOT_ENOUGH_TEMPLATE_FEATURES                             -1074395626 // The template does not contain enough features for geometric matching.
-#define ERR_INVALID_MATCH_CONSTRAINT_TYPE                            -1074395625 // You specified an invalid value for the match constraint value of the  range settings.
-#define ERR_INVALID_OCCLUSION_RANGE                                  -1074395624 // Invalid occlusion range. Valid values for the bounds range from 0 to 100 and the upper bound must be greater than or equal to the lower bound.
-#define ERR_INVALID_SCALE_RANGE                                      -1074395623 // Invalid scale range. Values for the lower bound must be a positive real numbers and the upper bound must be greater than or equal to the lower bound.
-#define ERR_INVALID_MATCH_GEOMETRIC_PATTERN_SETUP_DATA               -1074395622 // Invalid match geometric pattern setup data.
-#define ERR_INVALID_LEARN_GEOMETRIC_PATTERN_SETUP_DATA               -1074395621 // Invalid learn geometric pattern setup data.
-#define ERR_INVALID_CURVE_EXTRACTION_MODE                            -1074395620 // Invalid curve extraction mode.
-#define ERR_TOO_MANY_OCCLUSION_RANGES                                -1074395619 // You can specify only one occlusion range.
-#define ERR_TOO_MANY_SCALE_RANGES                                    -1074395618 // You can specify only one scale range.
-#define ERR_INVALID_NUMBER_OF_FEATURES_RANGE                         -1074395617 // The minimum number of features must be less than or equal to the maximum number of features.
-#define ERR_INVALID_EDGE_FILTER_SIZE                                 -1074395616 // Invalid edge filter size.
-#define ERR_INVALID_MINIMUM_FEATURE_STRENGTH                         -1074395615 // Invalid minimum strength for features. Values must be positive real numbers.
-#define ERR_INVALID_MINIMUM_FEATURE_ASPECT_RATIO                     -1074395614 // Invalid aspect ratio for rectangular features. Values must be positive real numbers in the range 0.01 to 1.0.
-#define ERR_INVALID_MINIMUM_FEATURE_LENGTH                           -1074395613 // Invalid minimum length for linear features. Values must be integers greater than 0.
-#define ERR_INVALID_MINIMUM_FEATURE_RADIUS                           -1074395612 // Invalid minimum radius for circular features. Values must be integers greater than 0.
-#define ERR_INVALID_MINIMUM_RECTANGLE_DIMENSION                      -1074395611 // Invalid minimum rectangle dimension. Values must be integers greater than 0.
-#define ERR_INVALID_INITIAL_MATCH_LIST_LENGTH                        -1074395610 // Invalid initial match list length. Values must be integers greater than 5.
-#define ERR_INVALID_SUBPIXEL_TOLERANCE                               -1074395609 // Invalid subpixel tolerance. Values must be positive real numbers.
-#define ERR_INVALID_SUBPIXEL_ITERATIONS                              -1074395608 // Invalid number of subpixel iterations. Values must be integers greater 10.
-#define ERR_INVALID_MAXIMUM_FEATURES_PER_MATCH                       -1074395607 // Invalid maximum number of features used per match. Values must be integers greater than or equal to zero.
-#define ERR_INVALID_MINIMUM_FEATURES_TO_MATCH                        -1074395606 // Invalid minimum number of features used for matching. Values must be integers greater than zero.
-#define ERR_INVALID_MAXIMUM_END_POINT_GAP                            -1074395605 // Invalid maximum end point gap. Valid values range from 0 to 32767.
-#define ERR_INVALID_COLUMN_STEP                                      -1074395604 // Invalid column step. Valid range is 1 to 255.
-#define ERR_INVALID_ROW_STEP                                         -1074395603 // Invalid row step. Valid range is 1 to 255.
-#define ERR_INVALID_MINIMUM_CURVE_LENGTH                             -1074395602 // Invalid minimum length. Valid values must be greater than or equal to zero.
-#define ERR_INVALID_EDGE_THRESHOLD                                   -1074395601 // Invalid edge threshold. Valid values range from 1 to 360.
-#define ERR_INFO_NOT_FOUND                                           -1074395600 // You must provide information about the subimage within the browser.
-#define ERR_NIOCR_INVALID_ACCEPTANCE_LEVEL                           -1074395598 // The acceptance level is outside the valid range of  0 to 1000.
-#define ERR_NIOCR_NOT_A_VALID_SESSION                                -1074395597 // Not a valid OCR session.
-#define ERR_NIOCR_INVALID_CHARACTER_SIZE                             -1074395596 // Invalid character size. Character size must be >= 1.
-#define ERR_NIOCR_INVALID_THRESHOLD_MODE                             -1074395595 // Invalid threshold mode value.
-#define ERR_NIOCR_INVALID_SUBSTITUTION_CHARACTER                     -1074395594 // Invalid substitution character. Valid substitution characters are ASCII values that range from 1 to 254.
-#define ERR_NIOCR_INVALID_NUMBER_OF_BLOCKS                           -1074395593 // Invalid number of blocks. Number of blocks must be >= 4 and <= 50.
-#define ERR_NIOCR_INVALID_READ_STRATEGY                              -1074395592 // Invalid read strategy.
-#define ERR_NIOCR_INVALID_CHARACTER_INDEX                            -1074395591 // Invalid character index.
-#define ERR_NIOCR_INVALID_NUMBER_OF_VALID_CHARACTER_POSITIONS        -1074395590 // Invalid number of character positions. Valid values range from 0 to 255.
-#define ERR_NIOCR_INVALID_LOW_THRESHOLD_VALUE                        -1074395589 // Invalid low threshold value. Valid threshold values range from 0 to 255.
-#define ERR_NIOCR_INVALID_HIGH_THRESHOLD_VALUE                       -1074395588 // Invalid high threshold value. Valid threshold values range from 0 to 255.
-#define ERR_NIOCR_INVALID_THRESHOLD_RANGE                            -1074395587 // The low threshold must be less than the high threshold.
-#define ERR_NIOCR_INVALID_LOWER_THRESHOLD_LIMIT                      -1074395586 // Invalid lower threshold limit. Valid lower threshold limits range from 0 to 255.
-#define ERR_NIOCR_INVALID_UPPER_THRESHOLD_LIMIT                      -1074395585 // Invalid upper threshold limit. Valid upper threshold limits range from 0 to 255.
-#define ERR_NIOCR_INVALID_THRESHOLD_LIMITS                           -1074395584 // The lower threshold limit must be less than the upper threshold limit.
-#define ERR_NIOCR_INVALID_MIN_CHAR_SPACING                           -1074395583 // Invalid minimum character spacing value. Character spacing must be >= 1 pixel.
-#define ERR_NIOCR_INVALID_MAX_HORIZ_ELEMENT_SPACING                  -1074395582 // Invalid maximum horizontal element spacing value. Maximum horizontal element spacing must be >= 0.
-#define ERR_NIOCR_INVALID_MAX_VERT_ELEMENT_SPACING                   -1074395581 // Invalid maximum vertical element spacing value. Maximum vertical element spacing must be >= 0.
-#define ERR_NIOCR_INVALID_MIN_BOUNDING_RECT_WIDTH                    -1074395580 // Invalid minimum bounding rectangle width. Minimum bounding rectangle width must be >= 1.
-#define ERR_NIOCR_INVALID_ASPECT_RATIO                               -1074395579 // Invalid aspect ratio value. The aspect ratio must be zero or >= 100.
-#define ERR_NIOCR_INVALID_CHARACTER_SET_FILE                         -1074395578 // Invalid or corrupt character set file.
-#define ERR_NIOCR_CHARACTER_VALUE_CANNOT_BE_EMPTYSTRING              -1074395577 // The character value must not be an empty string.
-#define ERR_NIOCR_CHARACTER_VALUE_TOO_LONG                           -1074395576 // Character values must be <=255 characters.
-#define ERR_NIOCR_INVALID_NUMBER_OF_EROSIONS                         -1074395575 // Invalid number of erosions. The number of erosions must be >= 0.
-#define ERR_NIOCR_CHARACTER_SET_DESCRIPTION_TOO_LONG                 -1074395574 // The character set description must be <=255 characters.
-#define ERR_NIOCR_INVALID_CHARACTER_SET_FILE_VERSION                 -1074395573 // The character set file was created by a newer version of NI Vision. Upgrade to the latest version of NI Vision to read the character set file.
-#define ERR_NIOCR_INTEGER_VALUE_FOR_STRING_ATTRIBUTE                 -1074395572 // You must specify characters for a string. A string cannot contain integers.
-#define ERR_NIOCR_GET_ONLY_ATTRIBUTE                                 -1074395571 // This attribute is read-only.
-#define ERR_NIOCR_INTEGER_VALUE_FOR_BOOLEAN_ATTRIBUTE                -1074395570 // This attribute requires a Boolean value.
-#define ERR_NIOCR_INVALID_ATTRIBUTE                                  -1074395569 // Invalid attribute.
-#define ERR_NIOCR_STRING_VALUE_FOR_INTEGER_ATTRIBUTE                 -1074395568 // This attribute requires integer values.
-#define ERR_NIOCR_STRING_VALUE_FOR_BOOLEAN_ATTRIBUTE                 -1074395567 // String values are invalid for this attribute. Enter a boolean value.
-#define ERR_NIOCR_BOOLEAN_VALUE_FOR_INTEGER_ATTRIBUTE                -1074395566 // Boolean values are not valid for this attribute. Enter an integer value.
-#define ERR_NIOCR_MUST_BE_SINGLE_CHARACTER                           -1074395565 // Requires a single-character string.
-#define ERR_NIOCR_INVALID_PREDEFINED_CHARACTER                       -1074395564 // Invalid predefined character value.
-#define ERR_NIOCR_UNLICENSED                                         -1074395563 // This copy of NI OCR is unlicensed.
-#define ERR_NIOCR_BOOLEAN_VALUE_FOR_STRING_ATTRIBUTE                 -1074395562 // String values are not valid for this attribute. Enter a Boolean value.
-#define ERR_NIOCR_INVALID_NUMBER_OF_CHARACTERS                       -1074395561 // The number of characters in the character value must match the number of objects in the image.
-#define ERR_NIOCR_INVALID_OBJECT_INDEX                               -1074395560 // Invalid object index.
-#define ERR_NIOCR_INVALID_READ_OPTION                                -1074395559 // Invalid read option.
-#define ERR_NIOCR_INVALID_CHARACTER_SIZE_RANGE                       -1074395558 // The minimum character size must be less than the maximum character size.
-#define ERR_NIOCR_INVALID_BOUNDING_RECT_WIDTH_RANGE                  -1074395557 // The minimum character bounding rectangle width must be less than the maximum character bounding rectangle width.
-#define ERR_NIOCR_INVALID_BOUNDING_RECT_HEIGHT_RANGE                 -1074395556 // The minimum character bounding rectangle height must be less than the maximum character bounding rectangle height.
-#define ERR_NIOCR_INVALID_SPACING_RANGE                              -1074395555 // The maximum horizontal element spacing value must not exceed the minimum character spacing value.
-#define ERR_NIOCR_INVALID_READ_RESOLUTION                            -1074395554 // Invalid read resolution.
-#define ERR_NIOCR_INVALID_MIN_BOUNDING_RECT_HEIGHT                   -1074395553 // Invalid minimum bounding rectangle height. The minimum bounding rectangle height must be >= 1.
-#define ERR_NIOCR_NOT_A_VALID_CHARACTER_SET                          -1074395552 // Not a valid character set.
-#define ERR_NIOCR_RENAME_REFCHAR                                     -1074395551 // A trained OCR character cannot be renamed while it is a reference character.
-#define ERR_NIOCR_INVALID_CHARACTER_VALUE                            -1074395550 // A character cannot have an ASCII value of 255.
-#define ERR_NIOCR_INVALID_NUMBER_OF_OBJECTS_TO_VERIFY                -1074395549 // The number of objects found does not match the number of expected characters or patterns to verify.
-#define ERR_INVALID_STEREO_BLOCKMATCHING_PREFILTER_CAP               -1074395421 // The specified value for the filter cap for block matching is invalid.
-#define ERR_INVALID_STEREO_BLOCKMATCHING_PREFILTER_SIZE              -1074395420 // The specified prefilter size for block matching is invalid.
-#define ERR_INVALID_STEREO_BLOCKMATCHING_PREFILTER_TYPE              -1074395419 // The specified prefilter type for block matching is invalid.
-#define ERR_INVALID_STEREO_BLOCKMATCHING_NUMDISPARITIES              -1074395418 // The specifed value for number of disparities is invalid.
-#define ERR_INVALID_STEREO_BLOCKMATCHING_WINDOW_SIZE                 -1074395417 // The specified window size for block matching is invalid.
-#define ERR_3DVISION_INVALID_SESSION_TYPE                            -1074395416 // This 3D vision function cannot be called on this type of 3d vision session.
-#define ERR_TOO_MANY_3DVISION_SESSIONS                               -1074395415 // There are too many 3D vision sessions open.  You must close a session before you can open another one.
-#define ERR_OPENING_NEWER_3DVISION_SESSION                           -1074395414 // The 3D vision session you tried to open was created with a newer version of NI Vision. Upgrade to the latest version of NI Vision to read this file.
-#define ERR_INVALID_STEREO_BLOCKMATCHING_FILTERTYPE                  -1074395413 // You have specified an invalid filter type for block matching.
-#define ERR_INVALID_STEREO_CAMERA_POSITION                           -1074395412 // You have requested results at an invalid camera position in the stereo setup.
-#define ERR_INVALID_3DVISION_SESSION                                 -1074395411 // Not a valid 3D Vision session.
-#define ERR_INVALID_ICONS_PER_LINE                                   -1074395410 // NI Vision does not support less than one icon per line.
-#define ERR_INVALID_SUBPIXEL_DIVISIONS                               -1074395409 // Invalid subpixel divisions.
-#define ERR_INVALID_DETECTION_MODE                                   -1074395408 // Invalid detection mode.
-#define ERR_INVALID_CONTRAST                                         -1074395407 // Invalid contrast value. Valid contrast values range from 0 to 255.
-#define ERR_COORDSYS_NOT_FOUND                                       -1074395406 // The coordinate system could not be found on this image.
-#define ERR_INVALID_TEXTORIENTATION                                  -1074395405 // NI Vision does not support the text orientation value you supplied.
-#define ERR_INVALID_INTERPOLATIONMETHOD_FOR_UNWRAP                   -1074395404 // UnwrapImage does not support the interpolation method value you supplied.  Valid interpolation methods are zero order and bilinear. 
-#define ERR_EXTRAINFO_VERSION                                        -1074395403 // The image was created in a newer version of NI Vision. Upgrade to the latest version of NI Vision to use this image.
-#define ERR_INVALID_MAXPOINTS                                        -1074395402 // The function does not support the maximum number of points that you specified.
-#define ERR_INVALID_MATCHFACTOR                                      -1074395401 // The function does not support the matchFactor that you specified.
-#define ERR_MULTICORE_OPERATION                                      -1074395400 // The operation you have given Multicore Options is invalid. Please see the available enumeration values for Multicore Operation.
-#define ERR_MULTICORE_INVALID_ARGUMENT                               -1074395399 // You have given Multicore Options an invalid argument.
-#define ERR_COMPLEX_IMAGE_REQUIRED                                   -1074395397 // A complex image is required.
-#define ERR_COLOR_IMAGE_REQUIRED                                     -1074395395 // The input image must be a color image.
-#define ERR_COLOR_SPECTRUM_MASK                                      -1074395394 // The color mask removes too much color information.
-#define ERR_COLOR_TEMPLATE_IMAGE_TOO_SMALL                           -1074395393 // The color template image is too small.
-#define ERR_COLOR_TEMPLATE_IMAGE_TOO_LARGE                           -1074395392 // The color template image is too large.
-#define ERR_COLOR_TEMPLATE_IMAGE_HUE_CONTRAST_TOO_LOW                -1074395391 // The contrast in the hue plane of the image is too low for learning shape features.
-#define ERR_COLOR_TEMPLATE_IMAGE_LUMINANCE_CONTRAST_TOO_LOW          -1074395390 // The contrast in the luminance plane of the image is too low to learn shape features.
-#define ERR_COLOR_LEARN_SETUP_DATA                                   -1074395389 // Invalid color learn setup data.
-#define ERR_COLOR_LEARN_SETUP_DATA_SHAPE                             -1074395388 // Invalid color learn setup data.
-#define ERR_COLOR_MATCH_SETUP_DATA                                   -1074395387 // Invalid color match setup data.
-#define ERR_COLOR_MATCH_SETUP_DATA_SHAPE                             -1074395386 // Invalid color match setup data.
-#define ERR_COLOR_ROTATION_REQUIRES_SHAPE_FEATURE                    -1074395385 // Rotation-invariant color pattern matching requires a feature mode including shape.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR                                -1074395384 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_1                              -1074395383 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_2                              -1074395382 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_3                              -1074395381 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_4                              -1074395380 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_5                              -1074395379 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_6                              -1074395378 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_SHIFT                          -1074395377 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_NOSHIFT                        -1074395376 // The color template image does not contain data required for shift-invariant color matching.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_SHIFT_1                        -1074395375 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_SHIFT_2                        -1074395374 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_ROTATION                       -1074395373 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_NOROTATION                     -1074395372 // The color template image does not contain data required for rotation-invariant color matching.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_ROTATION_1                     -1074395371 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_ROTATION_2                     -1074395370 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_ROTATION_3                     -1074395369 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_ROTATION_4                     -1074395368 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_ROTATION_5                     -1074395367 // Invalid color template image.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_NOSHAPE                        -1074395366 // The color template image does not contain data required for color matching in shape feature mode.
-#define ERR_COLOR_TEMPLATE_DESCRIPTOR_NOSPECTRUM                     -1074395365 // The color template image does not contain data required for color matching in color feature mode.
-#define ERR_IGNORE_COLOR_SPECTRUM_SET                                -1074395364 // The ignore color spectra array is invalid.
-#define ERR_INVALID_SUBSAMPLING_RATIO                                -1074395363 // Invalid subsampling ratio.
-#define ERR_INVALID_WIDTH                                            -1074395362 // Invalid pixel width.
-#define ERR_INVALID_STEEPNESS                                        -1074395361 // Invalid steepness.
-#define ERR_COMPLEX_PLANE                                            -1074395360 // Invalid complex plane.
-#define ERR_INVALID_COLOR_IGNORE_MODE                                -1074395357 // Invalid color ignore mode.
-#define ERR_INVALID_MIN_MATCH_SCORE                                  -1074395356 // Invalid minimum match score. Acceptable values range from 0 to 1000.
-#define ERR_INVALID_NUM_MATCHES_REQUESTED                            -1074395355 // Invalid number of matches requested. You must request a minimum of one match.
-#define ERR_INVALID_COLOR_WEIGHT                                     -1074395354 // Invalid color weight. Acceptable values range from 0 to 1000.
-#define ERR_INVALID_SEARCH_STRATEGY                                  -1074395353 // Invalid search strategy.
-#define ERR_INVALID_FEATURE_MODE                                     -1074395352 // Invalid feature mode.
-#define ERR_INVALID_RECT                                             -1074395351 // NI Vision does not support rectangles with negative widths or negative heights.
-#define ERR_INVALID_VISION_INFO                                      -1074395350 // NI Vision does not support the vision information type you supplied.
-#define ERR_INVALID_SKELETONMETHOD                                   -1074395349 // NI Vision does not support the SkeletonMethod value you supplied.
-#define ERR_INVALID_3DPLANE                                          -1074395348 // NI Vision does not support the 3DPlane value you supplied.
-#define ERR_INVALID_3DDIRECTION                                      -1074395347 // NI Vision does not support the 3DDirection value you supplied.
-#define ERR_INVALID_INTERPOLATIONMETHOD_FOR_ROTATE                   -1074395346 // imaqRotate does not support the InterpolationMethod value you supplied.
-#define ERR_INVALID_FLIPAXIS                                         -1074395345 // NI Vision does not support the axis of symmetry you supplied.
-#define ERR_FILE_FILENAME_NULL                                       -1074395343 // You must pass a valid file name. Do not pass in NULL.
-#define ERR_INVALID_SIZETYPE                                         -1074395340 // NI Vision does not support the SizeType value you supplied.
-#define ERR_UNKNOWN_ALGORITHM                                        -1074395336 // You specified the dispatch status of an unknown algorithm.
-#define ERR_DISPATCH_STATUS_CONFLICT                                 -1074395335 // You are attempting to set the same algorithm to dispatch and to not dispatch. Remove one of the conflicting settings.
-#define ERR_INVALID_CONVERSIONSTYLE                                  -1074395334 // NI Vision does not support the Conversion Method value you supplied.
-#define ERR_INVALID_VERTICAL_TEXT_ALIGNMENT                          -1074395333 // NI Vision does not support the VerticalTextAlignment value you supplied.
-#define ERR_INVALID_COMPAREFUNCTION                                  -1074395332 // NI Vision does not support the CompareFunction value you supplied.
-#define ERR_INVALID_BORDERMETHOD                                     -1074395331 // NI Vision does not support the BorderMethod value you supplied.
-#define ERR_INVALID_BORDER_SIZE                                      -1074395330 // Invalid border size. Acceptable values range from 0 to 50.
-#define ERR_INVALID_OUTLINEMETHOD                                    -1074395329 // NI Vision does not support the OutlineMethod value you supplied.
-#define ERR_INVALID_INTERPOLATIONMETHOD                              -1074395328 // NI Vision does not support the InterpolationMethod value you supplied.
-#define ERR_INVALID_SCALINGMODE                                      -1074395327 // NI Vision does not support the ScalingMode value you supplied.
-#define ERR_INVALID_DRAWMODE_FOR_LINE                                -1074395326 // imaqDrawLineOnImage does not support the DrawMode value you supplied.
-#define ERR_INVALID_DRAWMODE                                         -1074395325 // NI Vision does not support the DrawMode value you supplied.
-#define ERR_INVALID_SHAPEMODE                                        -1074395324 // NI Vision does not support the ShapeMode value you supplied.
-#define ERR_INVALID_FONTCOLOR                                        -1074395323 // NI Vision does not support the FontColor value you supplied.
-#define ERR_INVALID_TEXTALIGNMENT                                    -1074395322 // NI Vision does not support the TextAlignment value you supplied.
-#define ERR_INVALID_MORPHOLOGYMETHOD                                 -1074395321 // NI Vision does not support the MorphologyMethod value you supplied.
-#define ERR_TEMPLATE_EMPTY                                           -1074395320 // The template image is empty.
-#define ERR_INVALID_SUBPIX_TYPE                                      -1074395319 // NI Vision does not support the interpolation type you supplied.
-#define ERR_INSF_POINTS                                              -1074395318 // You supplied an insufficient number of points to perform this operation.
-#define ERR_UNDEF_POINT                                              -1074395317 // You specified a point that lies outside the image.
-#define ERR_INVALID_KERNEL_CODE                                      -1074395316 // Invalid kernel code.
-#define ERR_INEFFICIENT_POINTS                                       -1074395315 // You supplied an inefficient set of points to match the minimum score.
-#define ERR_WRITE_FILE_NOT_SUPPORTED                                 -1074395313 // Writing files is not supported on this device.
-#define ERR_LCD_CALIBRATE                                            -1074395312 // The input image does not seem to be a valid LCD or LED calibration image.
-#define ERR_INVALID_COLOR_SPECTRUM                                   -1074395311 // The color spectrum array you provided has an invalid number of elements or contains an element set to not-a-number (NaN).
-#define ERR_INVALID_PALETTE_TYPE                                     -1074395310 // NI Vision does not support the PaletteType value you supplied.
-#define ERR_INVALID_WINDOW_THREAD_POLICY                             -1074395309 // NI Vision does not support the WindowThreadPolicy value you supplied.
-#define ERR_INVALID_COLORSENSITIVITY                                 -1074395308 // NI Vision does not support the ColorSensitivity value you supplied.
-#define ERR_PRECISION_NOT_GTR_THAN_0                                 -1074395307 // The precision parameter must be greater than 0.
-#define ERR_INVALID_TOOL                                             -1074395306 // NI Vision does not support the Tool value you supplied.
-#define ERR_INVALID_REFERENCEMODE                                    -1074395305 // NI Vision does not support the ReferenceMode value you supplied.
-#define ERR_INVALID_MATHTRANSFORMMETHOD                              -1074395304 // NI Vision does not support the MathTransformMethod value you supplied.
-#define ERR_INVALID_NUM_OF_CLASSES                                   -1074395303 // Invalid number of classes for auto threshold. Acceptable values range from 2 to 256.
-#define ERR_INVALID_THRESHOLDMETHOD                                  -1074395302 // NI Vision does not support the threshold method value you supplied.
-#define ERR_ROI_NOT_2_LINES                                          -1074395301 // The ROI you passed into imaqGetMeterArc must consist of two lines.
-#define ERR_INVALID_METERARCMODE                                     -1074395300 // NI Vision does not support the MeterArcMode value you supplied.
-#define ERR_INVALID_COMPLEXPLANE                                     -1074395299 // NI Vision does not support the ComplexPlane value you supplied.
-#define ERR_COMPLEXPLANE_NOT_REAL_OR_IMAGINARY                       -1074395298 // You can perform this operation on a real or an imaginary ComplexPlane only.
-#define ERR_INVALID_PARTICLEINFOMODE                                 -1074395297 // NI Vision does not support the ParticleInfoMode value you supplied.
-#define ERR_INVALID_BARCODETYPE                                      -1074395296 // NI Vision does not support the BarcodeType value you supplied.
-#define ERR_INVALID_INTERPOLATIONMETHOD_INTERPOLATEPOINTS            -1074395295 // imaqInterpolatePoints does not support the InterpolationMethod value you supplied.
-#define ERR_CONTOUR_INDEX_OUT_OF_RANGE                               -1074395294 // The contour index you supplied is larger than the number of contours in the ROI.
-#define ERR_CONTOURID_NOT_FOUND                                      -1074395293 // The supplied ContourID did not correlate to a contour inside the ROI.
-#define ERR_POINTS_ARE_COLLINEAR                                     -1074395292 // Do not supply collinear points for this operation.
-#define ERR_SHAPEMATCH_BADIMAGEDATA                                  -1074395291 // Shape Match requires the image to contain only pixel values of 0 or 1.
-#define ERR_SHAPEMATCH_BADTEMPLATE                                   -1074395290 // The template you supplied for ShapeMatch contains no shape information.
-#define ERR_CONTAINER_CAPACITY_EXCEEDED_UINT_MAX                     -1074395289 // The operation would have exceeded the capacity of an internal container, which is limited to 4294967296 unique elements.
-#define ERR_CONTAINER_CAPACITY_EXCEEDED_INT_MAX                      -1074395288 // The operation would have exceeded the capacity of an internal container, which is limited to 2147483648 unique elements.
-#define ERR_INVALID_LINE                                             -1074395287 // The line you provided contains two identical points, or one of the coordinate locations for the line is not a number (NaN).
-#define ERR_INVALID_CONCENTRIC_RAKE_DIRECTION                        -1074395286 // Invalid concentric rake direction.
-#define ERR_INVALID_SPOKE_DIRECTION                                  -1074395285 // Invalid spoke direction.
-#define ERR_INVALID_EDGE_PROCESS                                     -1074395284 // Invalid edge process.
-#define ERR_INVALID_RAKE_DIRECTION                                   -1074395283 // Invalid rake direction.
-#define ERR_CANT_DRAW_INTO_VIEWER                                    -1074395282 // Unable to draw to viewer. You must have the latest version of the control.
-#define ERR_IMAGE_SMALLER_THAN_BORDER                                -1074395281 // Your image must be larger than its border size for this operation.
-#define ERR_ROI_NOT_RECT                                             -1074395280 // The ROI must only have a single Rectangle contour.
-#define ERR_ROI_NOT_POLYGON                                          -1074395279 // ROI is not a polygon.
-#define ERR_LCD_NOT_NUMERIC                                          -1074395278 // LCD image is not a number.
-#define ERR_BARCODE_CHECKSUM                                         -1074395277 // The decoded barcode information did not pass the checksum test.
-#define ERR_LINES_PARALLEL                                           -1074395276 // You specified parallel lines for the meter ROI.
-#define ERR_INVALID_BROWSER_IMAGE                                    -1074395275 // Invalid browser image.
-#define ERR_DIV_BY_ZERO                                              -1074395270 // Cannot divide by zero.
-#define ERR_NULL_POINTER                                             -1074395269 // Null pointer.
-#define ERR_LINEAR_COEFF                                             -1074395268 // The linear equations are not independent.
-#define ERR_COMPLEX_ROOT                                             -1074395267 // The roots of the equation are complex.
-#define ERR_BARCODE                                                  -1074395265 // The barcode does not match the type you specified.
-#define ERR_LCD_NO_SEGMENTS                                          -1074395263 // No lit segment.
-#define ERR_LCD_BAD_MATCH                                            -1074395262 // The LCD does not form a known digit.
-#define ERR_GIP_RANGE                                                -1074395261 // An internal error occurred while attempting to access an invalid coordinate on an image.
-#define ERR_HEAP_TRASHED                                             -1074395260 // An internal memory error occurred.
-#define ERR_BAD_FILTER_WIDTH                                         -1074395258 // The filter width must be odd for the Canny operator.
-#define ERR_INVALID_EDGE_DIR                                         -1074395257 // You supplied an invalid edge direction in the Canny operator.
-#define ERR_EVEN_WINDOW_SIZE                                         -1074395256 // The window size must be odd for the Canny operator.
-#define ERR_INVALID_LEARN_MODE                                       -1074395253 // Invalid learn mode.
-#define ERR_LEARN_SETUP_DATA                                         -1074395252 // Invalid learn setup data.
-#define ERR_INVALID_MATCH_MODE                                       -1074395251 // Invalid match mode.
-#define ERR_MATCH_SETUP_DATA                                         -1074395250 // Invalid match setup data.
-#define ERR_ROTATION_ANGLE_RANGE_TOO_LARGE                           -1074395249 // At least one range in the array of rotation angle ranges exceeds 360 degrees.
-#define ERR_TOO_MANY_ROTATION_ANGLE_RANGES                           -1074395248 // The array of rotation angle ranges contains too many ranges.
-#define ERR_TEMPLATE_DESCRIPTOR                                      -1074395247 // Invalid template descriptor.
-#define ERR_TEMPLATE_DESCRIPTOR_1                                    -1074395246 // Invalid template descriptor.
-#define ERR_TEMPLATE_DESCRIPTOR_2                                    -1074395245 // Invalid template descriptor.
-#define ERR_TEMPLATE_DESCRIPTOR_3                                    -1074395244 // Invalid template descriptor.
-#define ERR_TEMPLATE_DESCRIPTOR_4                                    -1074395243 // The template descriptor was created with a newer version of NI Vision. Upgrade to the latest version of NI Vision to use this template.
-#define ERR_TEMPLATE_DESCRIPTOR_ROTATION                             -1074395242 // Invalid template descriptor.
-#define ERR_TEMPLATE_DESCRIPTOR_NOROTATION                           -1074395241 // The template descriptor does not contain data required for rotation-invariant matching.
-#define ERR_TEMPLATE_DESCRIPTOR_ROTATION_1                           -1074395240 // Invalid template descriptor.
-#define ERR_TEMPLATE_DESCRIPTOR_SHIFT                                -1074395239 // Invalid template descriptor.
-#define ERR_TEMPLATE_DESCRIPTOR_NOSHIFT                              -1074395238 // The template descriptor does not contain data required for shift-invariant matching.
-#define ERR_TEMPLATE_DESCRIPTOR_SHIFT_1                              -1074395237 // Invalid template descriptor.
-#define ERR_TEMPLATE_DESCRIPTOR_NOSCALE                              -1074395236 // The template descriptor does not contain data required for scale-invariant matching.
-#define ERR_TEMPLATE_IMAGE_CONTRAST_TOO_LOW                          -1074395235 // The template image does not contain enough contrast.
-#define ERR_TEMPLATE_IMAGE_TOO_SMALL                                 -1074395234 // The template image is too small.
-#define ERR_TEMPLATE_IMAGE_TOO_LARGE                                 -1074395233 // The template image is too large.
-#define ERR_TOO_MANY_OCR_SESSIONS                                    -1074395214 // There are too many OCR sessions open.  You must close a session before you can open another one.
-#define ERR_OCR_TEMPLATE_WRONG_SIZE                                  -1074395212 // The size of the template string must match the size of the string you are trying to correct.
-#define ERR_OCR_BAD_TEXT_TEMPLATE                                    -1074395211 // The supplied text template contains nonstandard characters that cannot be generated by OCR.
-#define ERR_OCR_CANNOT_MATCH_TEXT_TEMPLATE                           -1074395210 // At least one character in the text template was of a lexical class that did not match the supplied character reports.
-#define ERR_OCR_LIB_INIT                                             -1074395203 // The OCR library cannot be initialized correctly.
-#define ERR_OCR_LOAD_LIBRARY                                         -1074395201 // There was a failure when loading one of the internal OCR engine or LabView libraries.
-#define ERR_OCR_INVALID_PARAMETER                                    -1074395200 // One of the parameters supplied to the OCR function that generated this error is invalid.
-#define ERR_MARKER_INFORMATION_NOT_SUPPLIED                          -1074395199 // Marker image and points are not supplied
-#define ERR_INCOMPATIBLE_MARKER_IMAGE_SIZE                           -1074395198 // Source Image and Marker Image should be of same size.
-#define ERR_BOTH_MARKER_INPUTS_SUPPLIED                              -1074395197 // Both Marker Image and Points are supplied.
-#define ERR_INVALID_MORPHOLOGICAL_OPERATION                          -1074395196 // Invalid Morphological Operation.
-#define ERR_IMAGE_CONTAINS_NAN_VALUES                                -1074395195 // Float image contains NaN values
-#define ERR_OVERLAY_EXTRAINFO_OPENING_NEW_VERSION                    -1074395194 // The overlay information you tried to open was created with a newer version of NI Vision. Upgrade to the latest version of NI Vision to read this file.
-#define ERR_NO_CLAMP_FOUND                                           -1074395193 // No valid clamp was found with the current configuration
-#define ERR_NO_CLAMP_WITHIN_ANGLE_RANGE                              -1074395192 // Supplied angle range for clamp is insufficient
-#define ERR_GHT_INVALID_USE_ALL_CURVES_VALUE                         -1074395188 // The use all curves advanced option specified during learn is not supported
-#define ERR_INVALID_GAUSS_SIGMA_VALUE                                -1074395187 // The sigma value specified for the Gaussian filter is too small.
-#define ERR_INVALID_GAUSS_FILTER_TYPE                                -1074395186 // The specified Gaussian filter type is not supported.
-#define ERR_INVALID_CONTRAST_REVERSAL_MODE                           -1074395185 // The contrast reversal mode specified during matching is invalid.
-#define ERR_INVALID_ROTATION_RANGE                                   -1074395184 // Invalid roation angle range. The upper bound must be greater than or equal to the lower bound.
-#define ERR_GHT_INVALID_MINIMUM_LEARN_ANGLE_VALUE                    -1074395183 // The minimum rotation angle value specifed during learning of the template is not supported.
-#define ERR_GHT_INVALID_MAXIMUM_LEARN_ANGLE_VALUE                    -1074395182 // The maximum rotation angle value specifed during learning of the template is not supported.
-#define ERR_GHT_INVALID_MAXIMUM_LEARN_SCALE_FACTOR                   -1074395181 // The maximum scale factor specifed during learning of the template is not supported.
-#define ERR_GHT_INVALID_MINIMUM_LEARN_SCALE_FACTOR                   -1074395180 // The minimum scale factor specifed during learning of the template is not supported.
-#define ERR_OCR_PREPROCESSING_FAILED                                 -1074395179 // The OCR engine failed during the preprocessing stage.
-#define ERR_OCR_RECOGNITION_FAILED                                   -1074395178 // The OCR engine failed during the recognition stage.
-#define ERR_OCR_BAD_USER_DICTIONARY                                  -1074395175 // The provided filename is not valid user dictionary filename.
-#define ERR_OCR_INVALID_AUTOORIENTMODE                               -1074395174 // NI Vision does not support the AutoOrientMode value you supplied.
-#define ERR_OCR_INVALID_LANGUAGE                                     -1074395173 // NI Vision does not support the Language value you supplied.
-#define ERR_OCR_INVALID_CHARACTERSET                                 -1074395172 // NI Vision does not support the CharacterSet value you supplied.
-#define ERR_OCR_INI_FILE_NOT_FOUND                                   -1074395171 // The system could not locate the initialization file required for OCR initialization.
-#define ERR_OCR_INVALID_CHARACTERTYPE                                -1074395170 // NI Vision does not support the CharacterType value you supplied.
-#define ERR_OCR_INVALID_RECOGNITIONMODE                              -1074395169 // NI Vision does not support the RecognitionMode value you supplied.
-#define ERR_OCR_INVALID_AUTOCORRECTIONMODE                           -1074395168 // NI Vision does not support the AutoCorrectionMode value you supplied.
-#define ERR_OCR_INVALID_OUTPUTDELIMITER                              -1074395167 // NI Vision does not support the OutputDelimiter value you supplied.
-#define ERR_OCR_BIN_DIR_NOT_FOUND                                    -1074395166 // The system could not locate the OCR binary directory required for OCR initialization.
-#define ERR_OCR_WTS_DIR_NOT_FOUND                                    -1074395165 // The system could not locate the OCR weights directory required for OCR initialization.
-#define ERR_OCR_ADD_WORD_FAILED                                      -1074395164 // The supplied word could not be added to the user dictionary.
-#define ERR_OCR_INVALID_CHARACTERPREFERENCE                          -1074395163 // NI Vision does not support the CharacterPreference value you supplied.
-#define ERR_OCR_INVALID_CORRECTIONMODE                               -1074395162 // NI Vision does not support the CorrectionMethod value you supplied.
-#define ERR_OCR_INVALID_CORRECTIONLEVEL                              -1074395161 // NI Vision does not support the CorrectionLevel value you supplied.
-#define ERR_OCR_INVALID_MAXPOINTSIZE                                 -1074395160 // NI Vision does not support the maximum point size you supplied.  Valid values range from 4 to 72.
-#define ERR_OCR_INVALID_TOLERANCE                                    -1074395159 // NI Vision does not support the tolerance value you supplied.  Valid values are non-negative.
-#define ERR_OCR_INVALID_CONTRASTMODE                                 -1074395158 // NI Vision does not support the ContrastMode value you supplied.
-#define ERR_OCR_SKEW_DETECT_FAILED                                   -1074395156 // The OCR attempted to detected the text skew and failed.
-#define ERR_OCR_ORIENT_DETECT_FAILED                                 -1074395155 // The OCR attempted to detected the text orientation and failed.
-#define ERR_FONT_FILE_FORMAT                                         -1074395153 // Invalid font file format.
-#define ERR_FONT_FILE_NOT_FOUND                                      -1074395152 // Font file not found.
-#define ERR_OCR_CORRECTION_FAILED                                    -1074395151 // The OCR engine failed during the correction stage.
-#define ERR_INVALID_ROUNDING_MODE                                    -1074395150 // NI Vision does not support the RoundingMode value you supplied.
-#define ERR_DUPLICATE_TRANSFORM_TYPE                                 -1074395149 // Found a duplicate transform type in the properties array. Each properties array may only contain one behavior for each transform type.
-#define ERR_OVERLAY_GROUP_NOT_FOUND                                  -1074395148 // Overlay Group Not Found.
-#define ERR_BARCODE_RSSLIMITED                                       -1074395147 // The barcode is not a valid RSS Limited symbol
-#define ERR_QR_DETECTION_VERSION                                     -1074395146 // Couldn't determine the correct version of the QR code.
-#define ERR_QR_INVALID_READ                                          -1074395145 // Invalid read of the QR code.
-#define ERR_QR_INVALID_BARCODE                                       -1074395144 // The barcode that was read contains invalid parameters.
-#define ERR_QR_DETECTION_MODE                                        -1074395143 // The data stream that was demodulated could not be read because the mode was not detected.
-#define ERR_QR_DETECTION_MODELTYPE                                   -1074395142 // Couldn't determine the correct model of the QR code.
-#define ERR_OCR_NO_TEXT_FOUND                                        -1074395141 // The OCR engine could not find any text in the supplied region.
-#define ERR_OCR_CHAR_REPORT_CORRUPTED                                -1074395140 // One of the character reports is no longer usable by the system.
-#define ERR_IMAQ_QR_DIMENSION_INVALID                                -1074395139 // Invalid Dimensions.
-#define ERR_OCR_REGION_TOO_SMALL                                     -1074395138 // The OCR region provided was too small to have contained any characters.
-#define _FIRST_ERR  ERR_SYSTEM_ERROR
-#define _LAST_ERR   ERR_OCR_REGION_TOO_SMALL
-
-//============================================================================
-//  Enumerated Types
-//============================================================================
-typedef enum PointSymbol_enum {
-    IMAQ_POINT_AS_PIXEL          = 0,           //A single pixel represents a point in the overlay.
-    IMAQ_POINT_AS_CROSS          = 1,           //A cross represents a point in the overlay.
-    IMAQ_POINT_USER_DEFINED      = 2,           //The pattern supplied by the user represents a point in the overlay.
-    IMAQ_POINT_SYMBOL_SIZE_GUARD = 0xFFFFFFFF   
-} PointSymbol;
-
-typedef enum MeasurementValue_enum {
-    IMAQ_AREA                         = 0,           //Surface area of the particle in pixels.
-    IMAQ_AREA_CALIBRATED              = 1,           //Surface area of the particle in calibrated units.
-    IMAQ_NUM_HOLES                    = 2,           //Number of holes in the particle.
-    IMAQ_AREA_OF_HOLES                = 3,           //Surface area of the holes in calibrated units.
-    IMAQ_TOTAL_AREA                   = 4,           //Total surface area (holes and particle) in calibrated units.
-    IMAQ_IMAGE_AREA                   = 5,           //Surface area of the entire image in calibrated units.
-    IMAQ_PARTICLE_TO_IMAGE            = 6,           //Ratio, expressed as a percentage, of the surface area of a particle in relation to the total area of the particle.
-    IMAQ_PARTICLE_TO_TOTAL            = 7,           //Ratio, expressed as a percentage, of the surface area of a particle in relation to the total area of the particle.
-    IMAQ_CENTER_MASS_X                = 8,           //X-coordinate of the center of mass.
-    IMAQ_CENTER_MASS_Y                = 9,           //Y-coordinate of the center of mass.
-    IMAQ_LEFT_COLUMN                  = 10,          //Left edge of the bounding rectangle.
-    IMAQ_TOP_ROW                      = 11,          //Top edge of the bounding rectangle.
-    IMAQ_RIGHT_COLUMN                 = 12,          //Right edge of the bounding rectangle.
-    IMAQ_BOTTOM_ROW                   = 13,          //Bottom edge of bounding rectangle.
-    IMAQ_WIDTH                        = 14,          //Width of bounding rectangle in calibrated units.
-    IMAQ_HEIGHT                       = 15,          //Height of bounding rectangle in calibrated units.
-    IMAQ_MAX_SEGMENT_LENGTH           = 16,          //Length of longest horizontal line segment.
-    IMAQ_MAX_SEGMENT_LEFT_COLUMN      = 17,          //Leftmost x-coordinate of longest horizontal line segment.
-    IMAQ_MAX_SEGMENT_TOP_ROW          = 18,          //Y-coordinate of longest horizontal line segment.
-    IMAQ_PERIMETER                    = 19,          //Outer perimeter of the particle.
-    IMAQ_PERIMETER_OF_HOLES           = 20,          //Perimeter of all holes within the particle.
-    IMAQ_SIGMA_X                      = 21,          //Sum of the particle pixels on the x-axis.
-    IMAQ_SIGMA_Y                      = 22,          //Sum of the particle pixels on the y-axis.
-    IMAQ_SIGMA_XX                     = 23,          //Sum of the particle pixels on the x-axis squared.
-    IMAQ_SIGMA_YY                     = 24,          //Sum of the particle pixels on the y-axis squared.
-    IMAQ_SIGMA_XY                     = 25,          //Sum of the particle pixels on the x-axis and y-axis.
-    IMAQ_PROJ_X                       = 26,          //Projection corrected in X.
-    IMAQ_PROJ_Y                       = 27,          //Projection corrected in Y.
-    IMAQ_INERTIA_XX                   = 28,          //Inertia matrix coefficient in XX.
-    IMAQ_INERTIA_YY                   = 29,          //Inertia matrix coefficient in YY.
-    IMAQ_INERTIA_XY                   = 30,          //Inertia matrix coefficient in XY.
-    IMAQ_MEAN_H                       = 31,          //Mean length of horizontal segments.
-    IMAQ_MEAN_V                       = 32,          //Mean length of vertical segments.
-    IMAQ_MAX_INTERCEPT                = 33,          //Length of longest segment of the convex hull.
-    IMAQ_MEAN_INTERCEPT               = 34,          //Mean length of the chords in an object perpendicular to its max intercept.
-    IMAQ_ORIENTATION                  = 35,          //The orientation based on the inertia of the pixels in the particle.
-    IMAQ_EQUIV_ELLIPSE_MINOR          = 36,          //Total length of the axis of the ellipse having the same area as the particle and a major axis equal to half the max intercept.
-    IMAQ_ELLIPSE_MAJOR                = 37,          //Total length of major axis having the same area and perimeter as the particle in calibrated units.
-    IMAQ_ELLIPSE_MINOR                = 38,          //Total length of minor axis having the same area and perimeter as the particle in calibrated units.
-    IMAQ_ELLIPSE_RATIO                = 39,          //Fraction of major axis to minor axis.
-    IMAQ_RECT_LONG_SIDE               = 40,          //Length of the long side of a rectangle having the same area and perimeter as the particle in calibrated units.
-    IMAQ_RECT_SHORT_SIDE              = 41,          //Length of the short side of a rectangle having the same area and perimeter as the particle in calibrated units.
-    IMAQ_RECT_RATIO                   = 42,          //Ratio of rectangle long side to rectangle short side.
-    IMAQ_ELONGATION                   = 43,          //Max intercept/mean perpendicular intercept.
-    IMAQ_COMPACTNESS                  = 44,          //Particle area/(height x width).
-    IMAQ_HEYWOOD                      = 45,          //Particle perimeter/perimeter of the circle having the same area as the particle.
-    IMAQ_TYPE_FACTOR                  = 46,          //A complex factor relating the surface area to the moment of inertia.
-    IMAQ_HYDRAULIC                    = 47,          //Particle area/particle perimeter.
-    IMAQ_WADDLE_DISK                  = 48,          //Diameter of the disk having the same area as the particle in user units.
-    IMAQ_DIAGONAL                     = 49,          //Diagonal of an equivalent rectangle in user units.
-    IMAQ_MEASUREMENT_VALUE_SIZE_GUARD = 0xFFFFFFFF   
-} MeasurementValue;
-
-typedef enum ScalingMode_enum {
-    IMAQ_SCALE_LARGER            = 0,           //The function duplicates pixels to make the image larger.
-    IMAQ_SCALE_SMALLER           = 1,           //The function subsamples pixels to make the image smaller.
-    IMAQ_SCALING_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} ScalingMode;
-
-typedef enum ScalingMethod_enum {
-    IMAQ_SCALE_TO_PRESERVE_AREA    = 0,           //Correction functions scale the image such that the features in the corrected image have the same area as the features in the input image.
-    IMAQ_SCALE_TO_FIT              = 1,           //Correction functions scale the image such that the corrected image is the same size as the input image.
-    IMAQ_SCALING_METHOD_SIZE_GUARD = 0xFFFFFFFF   
-} ScalingMethod;
-
-typedef enum ReferenceMode_enum {
-    IMAQ_COORD_X_Y                 = 0,           //This method requires three elements in the points array.
-    IMAQ_COORD_ORIGIN_X            = 1,           //This method requires two elements in the points array.
-    IMAQ_REFERENCE_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} ReferenceMode;
-
-typedef enum RectOrientation_enum {
-    IMAQ_BASE_INSIDE                 = 0,           //Specifies that the base of the rectangular image lies along the inside edge of the annulus.
-    IMAQ_BASE_OUTSIDE                = 1,           //Specifies that the base of the rectangular image lies along the outside edge of the annulus.
-    IMAQ_TEXT_ORIENTATION_SIZE_GUARD = 0xFFFFFFFF   
-} RectOrientation;
-
-typedef enum ShapeMode_enum {
-    IMAQ_SHAPE_RECT            = 1,           //The function draws a rectangle.
-    IMAQ_SHAPE_OVAL            = 2,           //The function draws an oval.
-    IMAQ_SHAPE_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} ShapeMode;
-
-typedef enum PolarityType_enum {
-    IMAQ_EDGE_RISING              = 1,           //The edge is a rising edge.
-    IMAQ_EDGE_FALLING             = -1,          //The edge is a falling edge.
-    IMAQ_POLARITY_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} PolarityType;
-
-typedef enum SizeType_enum {
-    IMAQ_KEEP_LARGE           = 0,           //The function keeps large particles remaining after the erosion.
-    IMAQ_KEEP_SMALL           = 1,           //The function keeps small particles eliminated by the erosion.
-    IMAQ_SIZE_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} SizeType;
-
-typedef enum Plane3D_enum {
-    IMAQ_3D_REAL             = 0,           //The function shows the real part of complex images.
-    IMAQ_3D_IMAGINARY        = 1,           //The function shows the imaginary part of complex images.
-    IMAQ_3D_MAGNITUDE        = 2,           //The function shows the magnitude part of complex images.
-    IMAQ_3D_PHASE            = 3,           //The function shows the phase part of complex images.
-    IMAQ_PLANE_3D_SIZE_GUARD = 0xFFFFFFFF   
-} Plane3D;
-
-typedef enum PhotometricMode_enum {
-    IMAQ_WHITE_IS_ZERO               = 0,           //The function interprets zero-value pixels as white.
-    IMAQ_BLACK_IS_ZERO               = 1,           //The function interprets zero-value pixels as black.
-    IMAQ_PHOTOMETRIC_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} PhotometricMode;
-
-typedef enum ParticleInfoMode_enum {
-    IMAQ_BASIC_INFO                    = 0,           //The function returns only the following elements of each report: area, calibratedArea, boundingRect.
-    IMAQ_ALL_INFO                      = 1,           //The function returns all the information about each particle.
-    IMAQ_PARTICLE_INFO_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} ParticleInfoMode;
-
-typedef enum OutlineMethod_enum {
-    IMAQ_EDGE_DIFFERENCE           = 0,           //The function uses a method that produces continuous contours by highlighting each pixel where an intensity variation occurs between itself and its three upper-left neighbors.
-    IMAQ_EDGE_GRADIENT             = 1,           //The function uses a method that outlines contours where an intensity variation occurs along the vertical axis.
-    IMAQ_EDGE_PREWITT              = 2,           //The function uses a method that extracts the outer contours of objects.
-    IMAQ_EDGE_ROBERTS              = 3,           //The function uses a method that outlines the contours that highlight pixels where an intensity variation occurs along the diagonal axes.
-    IMAQ_EDGE_SIGMA                = 4,           //The function uses a method that outlines contours and details by setting pixels to the mean value found in their neighborhood, if their deviation from this value is not significant.
-    IMAQ_EDGE_SOBEL                = 5,           //The function uses a method that extracts the outer contours of objects.
-    IMAQ_OUTLINE_METHOD_SIZE_GUARD = 0xFFFFFFFF   
-} OutlineMethod;
-
-typedef enum MorphologyMethod_enum {
-    IMAQ_AUTOM                        = 0,           //The function uses a transformation that generates simpler particles that contain fewer details.
-    IMAQ_CLOSE                        = 1,           //The function uses a transformation that fills tiny holes and smooths boundaries.
-    IMAQ_DILATE                       = 2,           //The function uses a transformation that eliminates tiny holes isolated in particles and expands the contour of the particles according to the template defined by the structuring element.
-    IMAQ_ERODE                        = 3,           //The function uses a transformation that eliminates pixels isolated in the background and erodes the contour of particles according to the template defined by the structuring element.
-    IMAQ_GRADIENT                     = 4,           //The function uses a transformation that leaves only the pixels that would be added by the dilation process or eliminated by the erosion process.
-    IMAQ_GRADIENTOUT                  = 5,           //The function uses a transformation that leaves only the pixels that would be added by the dilation process.
-    IMAQ_GRADIENTIN                   = 6,           //The function uses a transformation that leaves only the pixels that would be eliminated by the erosion process.
-    IMAQ_HITMISS                      = 7,           //The function uses a transformation that extracts each pixel located in a neighborhood exactly matching the template defined by the structuring element.
-    IMAQ_OPEN                         = 8,           //The function uses a transformation that removes small particles and smooths boundaries.
-    IMAQ_PCLOSE                       = 9,           //The function uses a transformation that fills tiny holes and smooths the inner contour of particles according to the template defined by the structuring element.
-    IMAQ_POPEN                        = 10,          //The function uses a transformation that removes small particles and smooths the contour of particles according to the template defined by the structuring element.
-    IMAQ_THICK                        = 11,          //The function uses a transformation that adds to an image those pixels located in a neighborhood that matches a template specified by the structuring element.
-    IMAQ_THIN                         = 12,          //The function uses a transformation that eliminates pixels that are located in a neighborhood matching a template specified by the structuring element.
-    IMAQ_MORPHOLOGY_METHOD_SIZE_GUARD = 0xFFFFFFFF   
-} MorphologyMethod;
-
-typedef enum MeterArcMode_enum {
-    IMAQ_METER_ARC_ROI             = 0,           //The function uses the roi parameter and ignores the base, start, and end parameters.
-    IMAQ_METER_ARC_POINTS          = 1,           //The function uses the base,start, and end parameters and ignores the roi parameter.
-    IMAQ_METER_ARC_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} MeterArcMode;
-
-typedef enum RakeDirection_enum {
-    IMAQ_LEFT_TO_RIGHT             = 0,           //The function searches from the left side of the search area to the right side of the search area.
-    IMAQ_RIGHT_TO_LEFT             = 1,           //The function searches from the right side of the search area to the left side of the search area.
-    IMAQ_TOP_TO_BOTTOM             = 2,           //The function searches from the top side of the search area to the bottom side of the search area.
-    IMAQ_BOTTOM_TO_TOP             = 3,           //The function searches from the bottom side of the search area to the top side of the search area.
-    IMAQ_RAKE_DIRECTION_SIZE_GUARD = 0xFFFFFFFF   
-} RakeDirection;
-
-typedef enum TruncateMode_enum {
-    IMAQ_TRUNCATE_LOW             = 0,           //The function truncates low frequencies.
-    IMAQ_TRUNCATE_HIGH            = 1,           //The function truncates high frequencies.
-    IMAQ_TRUNCATE_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} TruncateMode;
-
-typedef enum AttenuateMode_enum {
-    IMAQ_ATTENUATE_LOW             = 0,           //The function attenuates low frequencies.
-    IMAQ_ATTENUATE_HIGH            = 1,           //The function attenuates high frequencies.
-    IMAQ_ATTENUATE_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} AttenuateMode;
-
-typedef enum WindowThreadPolicy_enum {
-    IMAQ_CALLING_THREAD                  = 0,           //Using this policy, NI Vision creates windows in the thread that makes the first display function call for a given window number.
-    IMAQ_SEPARATE_THREAD                 = 1,           //Using this policy, NI Vision creates windows in a separate thread and processes messages for the windows automatically.
-    IMAQ_WINDOW_THREAD_POLICY_SIZE_GUARD = 0xFFFFFFFF   
-} WindowThreadPolicy;
-
-typedef enum WindowOptions_enum {
-    IMAQ_WIND_RESIZABLE            = 1,           //When present, the user may resize the window interactively.
-    IMAQ_WIND_TITLEBAR             = 2,           //When present, the title bar on the window is visible.
-    IMAQ_WIND_CLOSEABLE            = 4,           //When present, the close box is available.
-    IMAQ_WIND_TOPMOST              = 8,           //When present, the window is always on top.
-    IMAQ_WINDOW_OPTIONS_SIZE_GUARD = 0xFFFFFFFF   
-} WindowOptions;
-
-typedef enum WindowEventType_enum {
-    IMAQ_NO_EVENT                     = 0,           //No event occurred since the last call to imaqGetLastEvent().
-    IMAQ_CLICK_EVENT                  = 1,           //The user clicked on a window.
-    IMAQ_DRAW_EVENT                   = 2,           //The user drew an ROI in a window.
-    IMAQ_MOVE_EVENT                   = 3,           //The user moved a window.
-    IMAQ_SIZE_EVENT                   = 4,           //The user sized a window.
-    IMAQ_SCROLL_EVENT                 = 5,           //The user scrolled a window.
-    IMAQ_ACTIVATE_EVENT               = 6,           //The user activated a window.
-    IMAQ_CLOSE_EVENT                  = 7,           //The user closed a window.
-    IMAQ_DOUBLE_CLICK_EVENT           = 8,           //The user double-clicked in a window.
-    IMAQ_WINDOW_EVENT_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} WindowEventType;
-
-typedef enum VisionInfoType_enum {
-    IMAQ_ANY_VISION_INFO             = 0,           //The function checks if any extra vision information is associated with the image.
-    IMAQ_PATTERN_MATCHING_INFO       = 1,           //The function checks if any pattern matching template information is associated with the image.
-    IMAQ_CALIBRATION_INFO            = 2,           //The function checks if any calibration information is associated with the image.
-    IMAQ_OVERLAY_INFO                = 3,           //The function checks if any overlay information is associated with the image.
-    IMAQ_VISION_INFO_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} VisionInfoType;
-
-typedef enum SearchStrategy_enum {
-    IMAQ_CONSERVATIVE               = 1,           //Instructs the pattern matching algorithm to use the largest possible amount of information from the image at the expense of slowing down the speed of the algorithm.
-    IMAQ_BALANCED                   = 2,           //Instructs the pattern matching algorithm to balance the amount of information from the image it uses with the speed of the algorithm.
-    IMAQ_AGGRESSIVE                 = 3,           //Instructs the pattern matching algorithm to use a lower amount of information from the image, which allows the algorithm to run quickly but at the expense of accuracy.
-    IMAQ_VERY_AGGRESSIVE            = 4,           //Instructs the pattern matching algorithm to use the smallest possible amount of information from the image, which allows the algorithm to run at the highest speed possible but at the expense of accuracy.
-    IMAQ_SEARCH_STRATEGY_SIZE_GUARD = 0xFFFFFFFF   
-} SearchStrategy;
-
-typedef enum TwoEdgePolarityType_enum {
-    IMAQ_NONE                              = 0,           //The function ignores the polarity of the edges.
-    IMAQ_RISING_FALLING                    = 1,           //The polarity of the first edge is rising (dark to light) and the polarity of the second edge is falling (light to dark).
-    IMAQ_FALLING_RISING                    = 2,           //The polarity of the first edge is falling (light to dark) and the polarity of the second edge is rising (dark to light).
-    IMAQ_RISING_RISING                     = 3,           //The polarity of the first edge is rising (dark to light) and the polarity of the second edge is rising (dark to light).
-    IMAQ_FALLING_FALLING                   = 4,           //The polarity of the first edge is falling (light to dark) and the polarity of the second edge is falling (light to dark).
-    IMAQ_TWO_EDGE_POLARITY_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} TwoEdgePolarityType;
-
-typedef enum ObjectType_enum {
-    IMAQ_BRIGHT_OBJECTS         = 0,           //The function detects bright objects.
-    IMAQ_DARK_OBJECTS           = 1,           //The function detects dark objects.
-    IMAQ_OBJECT_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} ObjectType;
-
-typedef enum Tool_enum {
-    IMAQ_NO_TOOL              = -1,          //No tool is in the selected state.
-    IMAQ_SELECTION_TOOL       = 0,           //The selection tool selects an existing ROI in an image.
-    IMAQ_POINT_TOOL           = 1,           //The point tool draws a point on the image.
-    IMAQ_LINE_TOOL            = 2,           //The line tool draws a line on the image.
-    IMAQ_RECTANGLE_TOOL       = 3,           //The rectangle tool draws a rectangle on the image.
-    IMAQ_OVAL_TOOL            = 4,           //The oval tool draws an oval on the image.
-    IMAQ_POLYGON_TOOL         = 5,           //The polygon tool draws a polygon on the image.
-    IMAQ_CLOSED_FREEHAND_TOOL = 6,           //The closed freehand tool draws closed freehand shapes on the image.
-    IMAQ_ANNULUS_TOOL         = 7,           //The annulus tool draws annuluses on the image.
-    IMAQ_ZOOM_TOOL            = 8,           //The zoom tool controls the zoom of an image.
-    IMAQ_PAN_TOOL             = 9,           //The pan tool shifts the view of the image.
-    IMAQ_POLYLINE_TOOL        = 10,          //The polyline tool draws a series of connected straight lines on the image.
-    IMAQ_FREEHAND_TOOL        = 11,          //The freehand tool draws freehand lines on the image.
-    IMAQ_ROTATED_RECT_TOOL    = 12,          //The rotated rectangle tool draws rotated rectangles on the image.
-    IMAQ_ZOOM_OUT_TOOL        = 13,          //The zoom out tool controls the zoom of an image.
-    IMAQ_TOOL_SIZE_GUARD      = 0xFFFFFFFF   
-} Tool;
-
-typedef enum TIFFCompressionType_enum {
-    IMAQ_NO_COMPRESSION                   = 0,           //The function does not compress the TIFF file.
-    IMAQ_JPEG                             = 1,           //The function uses the JPEG compression algorithm to compress the TIFF file.
-    IMAQ_RUN_LENGTH                       = 2,           //The function uses a run length compression algorithm to compress the TIFF file.
-    IMAQ_ZIP                              = 3,           //The function uses the ZIP compression algorithm to compress the TIFF file.
-    IMAQ_TIFF_COMPRESSION_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} TIFFCompressionType;
-
-typedef enum ThresholdMethod_enum {
-    IMAQ_THRESH_CLUSTERING           = 0,           //The function uses a method that sorts the histogram of the image within a discrete number of classes corresponding to the number of phases perceived in an image.
-    IMAQ_THRESH_ENTROPY              = 1,           //The function uses a method that is best for detecting particles that are present in minuscule proportions on the image.
-    IMAQ_THRESH_METRIC               = 2,           //The function uses a method that is well-suited for images in which classes are not too disproportionate.
-    IMAQ_THRESH_MOMENTS              = 3,           //The function uses a method that is suited for images that have poor contrast.
-    IMAQ_THRESH_INTERCLASS           = 4,           //The function uses a method that is well-suited for images in which classes have well separated pixel value distributions.
-    IMAQ_THRESHOLD_METHOD_SIZE_GUARD = 0xFFFFFFFF   
-} ThresholdMethod;
-
-typedef enum TextAlignment_enum {
-    IMAQ_LEFT                      = 0,           //Left aligns the text at the reference point.
-    IMAQ_CENTER                    = 1,           //Centers the text around the reference point.
-    IMAQ_RIGHT                     = 2,           //Right aligns the text at the reference point.
-    IMAQ_TEXT_ALIGNMENT_SIZE_GUARD = 0xFFFFFFFF   
-} TextAlignment;
-
-typedef enum SpokeDirection_enum {
-    IMAQ_OUTSIDE_TO_INSIDE          = 0,           //The function searches from the outside of the search area to the inside of the search area.
-    IMAQ_INSIDE_TO_OUTSIDE          = 1,           //The function searches from the inside of the search area to the outside of the search area.
-    IMAQ_SPOKE_DIRECTION_SIZE_GUARD = 0xFFFFFFFF   
-} SpokeDirection;
-
-typedef enum SkeletonMethod_enum {
-    IMAQ_SKELETON_L                 = 0,           //Uses an L-shaped structuring element in the skeleton function.
-    IMAQ_SKELETON_M                 = 1,           //Uses an M-shaped structuring element in the skeleton function.
-    IMAQ_SKELETON_INVERSE           = 2,           //Uses an L-shaped structuring element on an inverse of the image in the skeleton function.
-    IMAQ_SKELETON_METHOD_SIZE_GUARD = 0xFFFFFFFF   
-} SkeletonMethod;
-
-typedef enum VerticalTextAlignment_enum {
-    IMAQ_BOTTOM                             = 0,           //Aligns the bottom of the text at the reference point.
-    IMAQ_TOP                                = 1,           //Aligns the top of the text at the reference point.
-    IMAQ_BASELINE                           = 2,           //Aligns the baseline of the text at the reference point.
-    IMAQ_VERTICAL_TEXT_ALIGNMENT_SIZE_GUARD = 0xFFFFFFFF   
-} VerticalTextAlignment;
-
-typedef enum CalibrationROI_enum {
-    IMAQ_FULL_IMAGE                 = 0,           //The correction function corrects the whole image, regardless of the user-defined or calibration-defined ROIs.
-    IMAQ_CALIBRATION_ROI            = 1,           //The correction function corrects the area defined by the calibration ROI.
-    IMAQ_USER_ROI                   = 2,           //The correction function corrects the area defined by the user-defined ROI.
-    IMAQ_CALIBRATION_AND_USER_ROI   = 3,           //The correction function corrects the area defined by the intersection of the user-defined ROI and the calibration ROI.
-    IMAQ_CALIBRATION_OR_USER_ROI    = 4,           //The correction function corrects the area defined by the union of the user-defined ROI and the calibration ROI.
-    IMAQ_CALIBRATION_ROI_SIZE_GUARD = 0xFFFFFFFF   
-} CalibrationROI;
-
-typedef enum ContourType_enum {
-    IMAQ_EMPTY_CONTOUR           = 0,           //The contour is empty.
-    IMAQ_POINT                   = 1,           //The contour represents a point.
-    IMAQ_LINE                    = 2,           //The contour represents a line.
-    IMAQ_RECT                    = 3,           //The contour represents a rectangle.
-    IMAQ_OVAL                    = 4,           //The contour represents an oval.
-    IMAQ_CLOSED_CONTOUR          = 5,           //The contour represents a series of connected points where the last point connects to the first.
-    IMAQ_OPEN_CONTOUR            = 6,           //The contour represents a series of connected points where the last point does not connect to the first.
-    IMAQ_ANNULUS                 = 7,           //The contour represents an annulus.
-    IMAQ_ROTATED_RECT            = 8,           //The contour represents a rotated rectangle.
-    IMAQ_CONTOUR_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} ContourType;
-
-typedef enum MathTransformMethod_enum {
-    IMAQ_TRANSFORM_LINEAR                 = 0,           //The function uses linear remapping.
-    IMAQ_TRANSFORM_LOG                    = 1,           //The function uses logarithmic remapping.
-    IMAQ_TRANSFORM_EXP                    = 2,           //The function uses exponential remapping.
-    IMAQ_TRANSFORM_SQR                    = 3,           //The function uses square remapping.
-    IMAQ_TRANSFORM_SQRT                   = 4,           //The function uses square root remapping.
-    IMAQ_TRANSFORM_POWX                   = 5,           //The function uses power X remapping.
-    IMAQ_TRANSFORM_POW1X                  = 6,           //The function uses power 1/X remapping.
-    IMAQ_MATH_TRANSFORM_METHOD_SIZE_GUARD = 0xFFFFFFFF   
-} MathTransformMethod;
-
-typedef enum ComplexPlane_enum {
-    IMAQ_REAL                     = 0,           //The function operates on the real plane of the complex image.
-    IMAQ_IMAGINARY                = 1,           //The function operates on the imaginary plane of the complex image.
-    IMAQ_MAGNITUDE                = 2,           //The function operates on the magnitude plane of the complex image.
-    IMAQ_PHASE                    = 3,           //The function operates on the phase plane of the complex image.
-    IMAQ_COMPLEX_PLANE_SIZE_GUARD = 0xFFFFFFFF   
-} ComplexPlane;
-
-typedef enum PaletteType_enum {
-    IMAQ_PALETTE_GRAY            = 0,           //The function uses a palette that has a gradual gray-level variation from black to white.
-    IMAQ_PALETTE_BINARY          = 1,           //The function uses a palette of 16 cycles of 16 different colors that is useful with binary images.
-    IMAQ_PALETTE_GRADIENT        = 2,           //The function uses a palette that has a gradation from red to white with a prominent range of light blue in the upper value range.
-    IMAQ_PALETTE_RAINBOW         = 3,           //The function uses a palette that has a gradation from blue to red with a prominent range of greens in the middle value range.
-    IMAQ_PALETTE_TEMPERATURE     = 4,           //The function uses a palette that has a gradation from light brown to dark brown.
-    IMAQ_PALETTE_USER            = 5,           //The function uses a palette defined by the user.
-    IMAQ_PALETTE_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} PaletteType;
-
-typedef enum ColorSensitivity_enum {
-    IMAQ_SENSITIVITY_LOW              = 0,           //Instructs the algorithm to divide the hue plane into a low number of sectors, allowing for simple color analysis.
-    IMAQ_SENSITIVITY_MED              = 1,           //Instructs the algorithm to divide the hue plane into a medium number of sectors, allowing for color analysis that balances sensitivity and complexity.
-    IMAQ_SENSITIVITY_HIGH             = 2,           //Instructs the algorithm to divide the hue plane into a high number of sectors, allowing for complex, sensitive color analysis.
-    IMAQ_COLOR_SENSITIVITY_SIZE_GUARD = 0xFFFFFFFF   
-} ColorSensitivity;
-
-typedef enum ColorMode_enum {
-    IMAQ_RGB                   = 0,           //The function operates in the RGB (Red, Blue, Green) color space.
-    IMAQ_HSL                   = 1,           //The function operates in the HSL (Hue, Saturation, Luminance) color space.
-    IMAQ_HSV                   = 2,           //The function operates in the HSV (Hue, Saturation, Value) color space.
-    IMAQ_HSI                   = 3,           //The function operates in the HSI (Hue, Saturation, Intensity) color space.
-    IMAQ_CIE                   = 4,           //The function operates in the CIE L*a*b* color space.
-    IMAQ_CIEXYZ                = 5,           //The function operates in the CIE XYZ color space.
-    IMAQ_COLOR_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} ColorMode;
-
-typedef enum DetectionMode_enum {
-    IMAQ_DETECT_PEAKS              = 0,           //The function detects peaks.
-    IMAQ_DETECT_VALLEYS            = 1,           //The function detects valleys.
-    IMAQ_DETECTION_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} DetectionMode;
-
-typedef enum CalibrationUnit_enum {
-    IMAQ_UNDEFINED                   = 0,           //The image does not have a defined unit of measurement.
-    IMAQ_ANGSTROM                    = 1,           //The unit of measure for the image is angstroms.
-    IMAQ_MICROMETER                  = 2,           //The unit of measure for the image is micrometers.
-    IMAQ_MILLIMETER                  = 3,           //The unit of measure for the image is millimeters.
-    IMAQ_CENTIMETER                  = 4,           //The unit of measure for the image is centimeters.
-    IMAQ_METER                       = 5,           //The unit of measure for the image is meters.
-    IMAQ_KILOMETER                   = 6,           //The unit of measure for the image is kilometers.
-    IMAQ_MICROINCH                   = 7,           //The unit of measure for the image is microinches.
-    IMAQ_INCH                        = 8,           //The unit of measure for the image is inches.
-    IMAQ_FOOT                        = 9,           //The unit of measure for the image is feet.
-    IMAQ_NAUTICMILE                  = 10,          //The unit of measure for the image is nautical miles.
-    IMAQ_GROUNDMILE                  = 11,          //The unit of measure for the image is ground miles.
-    IMAQ_STEP                        = 12,          //The unit of measure for the image is steps.
-    IMAQ_CALIBRATION_UNIT_SIZE_GUARD = 0xFFFFFFFF   
-} CalibrationUnit;
-
-typedef enum ConcentricRakeDirection_enum {
-    IMAQ_COUNTER_CLOCKWISE                    = 0,           //The function searches the search area in a counter-clockwise direction.
-    IMAQ_CLOCKWISE                            = 1,           //The function searches the search area in a clockwise direction.
-    IMAQ_CONCENTRIC_RAKE_DIRECTION_SIZE_GUARD = 0xFFFFFFFF   
-} ConcentricRakeDirection;
-
-typedef enum CalibrationMode_enum {
-    IMAQ_PERSPECTIVE                 = 0,           //Functions correct for distortion caused by the camera's perspective.
-    IMAQ_NONLINEAR                   = 1,           //Functions correct for distortion caused by the camera's lens.
-    IMAQ_SIMPLE_CALIBRATION          = 2,           //Functions do not correct for distortion.
-    IMAQ_CORRECTED_IMAGE             = 3,           //The image is already corrected.
-    IMAQ_CALIBRATION_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} CalibrationMode;
-
-typedef enum BrowserLocation_enum {
-    IMAQ_INSERT_FIRST_FREE           = 0,           //Inserts the thumbnail in the first available cell.
-    IMAQ_INSERT_END                  = 1,           //Inserts the thumbnail after the last occupied cell.
-    IMAQ_BROWSER_LOCATION_SIZE_GUARD = 0xFFFFFFFF   
-} BrowserLocation;
-
-typedef enum BrowserFrameStyle_enum {
-    IMAQ_RAISED_FRAME                   = 0,           //Each thumbnail has a raised frame.
-    IMAQ_BEVELLED_FRAME                 = 1,           //Each thumbnail has a beveled frame.
-    IMAQ_OUTLINE_FRAME                  = 2,           //Each thumbnail has an outlined frame.
-    IMAQ_HIDDEN_FRAME                   = 3,           //Each thumbnail has a hidden frame.
-    IMAQ_STEP_FRAME                     = 4,           //Each thumbnail has a stepped frame.
-    IMAQ_RAISED_OUTLINE_FRAME           = 5,           //Each thumbnail has a raised, outlined frame.
-    IMAQ_BROWSER_FRAME_STYLE_SIZE_GUARD = 0xFFFFFFFF   
-} BrowserFrameStyle;
-
-typedef enum BorderMethod_enum {
-    IMAQ_BORDER_MIRROR            = 0,           //Symmetrically copies pixel values from the image into the border.
-    IMAQ_BORDER_COPY              = 1,           //Copies the value of the pixel closest to the edge of the image into the border.
-    IMAQ_BORDER_CLEAR             = 2,           //Sets all pixels in the border to 0.
-    IMAQ_BORDER_METHOD_SIZE_GUARD = 0xFFFFFFFF   
-} BorderMethod;
-
-typedef enum BarcodeType_enum {
-    IMAQ_INVALID                 = -1,          //The barcode is not of a type known by NI Vision.
-    IMAQ_CODABAR                 = 1,           //The barcode is of type Codabar.
-    IMAQ_CODE39                  = 2,           //The barcode is of type Code 39.
-    IMAQ_CODE93                  = 4,           //The barcode is of type Code 93.
-    IMAQ_CODE128                 = 8,           //The barcode is of type Code 128.
-    IMAQ_EAN8                    = 16,          //The barcode is of type EAN 8.
-    IMAQ_EAN13                   = 32,          //The barcode is of type EAN 13.
-    IMAQ_I2_OF_5                 = 64,          //The barcode is of type Code 25.
-    IMAQ_MSI                     = 128,         //The barcode is of type MSI code.
-    IMAQ_UPCA                    = 256,         //The barcode is of type UPC A.
-    IMAQ_PHARMACODE              = 512,         //The barcode is of type Pharmacode.
-    IMAQ_RSS_LIMITED             = 1024,        //The barcode is of type RSS Limited.
-    IMAQ_BARCODE_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} BarcodeType;
-
-typedef enum AxisOrientation_enum {
-    IMAQ_DIRECT                      = 0,           //The y-axis direction corresponds to the y-axis direction of the Cartesian coordinate system.
-    IMAQ_INDIRECT                    = 1,           //The y-axis direction corresponds to the y-axis direction of an image.
-    IMAQ_AXIS_ORIENTATION_SIZE_GUARD = 0xFFFFFFFF   
-} AxisOrientation;
-
-typedef enum ColorIgnoreMode_enum {
-    IMAQ_IGNORE_NONE                        = 0,           //Specifies that the function does not ignore any pixels.
-    IMAQ_IGNORE_BLACK                       = 1,           //Specifies that the function ignores black pixels.
-    IMAQ_IGNORE_WHITE                       = 2,           //Specifies that the function ignores white pixels.
-    IMAQ_IGNORE_BLACK_AND_WHITE             = 3,           //Specifies that the function ignores black pixels and white pixels.
-    IMAQ_BLACK_WHITE_IGNORE_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} ColorIgnoreMode;
-
-typedef enum LevelType_enum {
-    IMAQ_ABSOLUTE              = 0,           //The function evaluates the threshold and hysteresis values as absolute values.
-    IMAQ_RELATIVE              = 1,           //The function evaluates the threshold and hysteresis values relative to the dynamic range of the given path.
-    IMAQ_LEVEL_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} LevelType;
-
-typedef enum MatchingMode_enum {
-    IMAQ_MATCH_SHIFT_INVARIANT    = 1,           //Searches for occurrences of the template image anywhere in the searchRect, assuming that the pattern is not rotated more than plus or minus 4 degrees.
-    IMAQ_MATCH_ROTATION_INVARIANT = 2,           //Searches for occurrences of the pattern in the image with no restriction on the rotation of the pattern.
-    IMAQ_MATCHING_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} MatchingMode;
-
-typedef enum MappingMethod_enum {
-    IMAQ_FULL_DYNAMIC              = 0,           //(Obsolete) When the image bit depth is 0, the function maps the full dynamic range of the 16-bit image to an 8-bit scale.
-    IMAQ_DOWNSHIFT                 = 1,           //(Obsolete) When the image bit depth is 0, the function shifts the 16-bit image pixels to the right the number of times specified by the shiftCount element of the DisplayMapping structure.
-    IMAQ_RANGE                     = 2,           //(Obsolete) When the image bit depth is 0, the function maps the pixel values in the range specified by the minimumValue and maximumValue elements of the DisplayMapping structure to an 8-bit scale.
-    IMAQ_90_PCT_DYNAMIC            = 3,           //(Obsolete) When the image bit depth to 0, the function maps the dynamic range containing the middle 90 percent of the cumulated histogram of the image to an 8-bit (256 grayscale values) scale.
-    IMAQ_PERCENT_RANGE             = 4,           //(Obsolete) When the image bit depth is 0, the function maps the pixel values in the relative percentage range (0 to 100) of the cumulated histogram specified by minimumValue and maximumValue to an 8-bit scale.
-    IMAQ_DEFAULT_MAPPING           = 10,          //If the bit depth is 0, the function maps the 16-bit image to 8 bits by following the IMAQ_FULL_DYNAMIC_ALWAYS behavior; otherwise, the function shifts the image data to the right according to the IMAQ_MOST_SIGNIFICANT behavior.
-    IMAQ_MOST_SIGNIFICANT          = 11,          //The function shifts the 16-bit image pixels to the right until the 8 most significant bits of the image data are remaining.
-    IMAQ_FULL_DYNAMIC_ALWAYS       = 12,          //The function maps the full dynamic range of the 16-bit image to an 8-bit scale.
-    IMAQ_DOWNSHIFT_ALWAYS          = 13,          //The function shifts the 16-bit image pixels to the right the number of times specified by the shiftCount element of the DisplayMapping structure.
-    IMAQ_RANGE_ALWAYS              = 14,          //The function maps the pixel values in the range specified by the minimumValue and maximumValue elements of the DisplayMapping structure to an 8-bit scale.
-    IMAQ_90_PCT_DYNAMIC_ALWAYS     = 15,          //The function maps the dynamic range containing the middle 90 percent of the cumulated histogram of the image to an 8-bit (256 grayscale values) scale.
-    IMAQ_PERCENT_RANGE_ALWAYS      = 16,          //The function maps the pixel values in the relative percentage range (0 to 100) of the cumulated histogram specified by minimumValue and maximumValue to an 8-bit scale.
-    IMAQ_MAPPING_METHOD_SIZE_GUARD = 0xFFFFFFFF   
-} MappingMethod;
-
-typedef enum ComparisonFunction_enum {
-    IMAQ_CLEAR_LESS                  = 0,           //The comparison is true if the source pixel value is less than the comparison image pixel value.
-    IMAQ_CLEAR_LESS_OR_EQUAL         = 1,           //The comparison is true if the source pixel value is less than or equal to the comparison image pixel value.
-    IMAQ_CLEAR_EQUAL                 = 2,           //The comparison is true if the source pixel value is equal to the comparison image pixel value.
-    IMAQ_CLEAR_GREATER_OR_EQUAL      = 3,           //The comparison is true if the source pixel value is greater than or equal to the comparison image pixel value.
-    IMAQ_CLEAR_GREATER               = 4,           //The comparison is true if the source pixel value is greater than the comparison image pixel value.
-    IMAQ_COMPARE_FUNCTION_SIZE_GUARD = 0xFFFFFFFF   
-} ComparisonFunction;
-
-typedef enum LineGaugeMethod_enum {
-    IMAQ_EDGE_TO_EDGE                 = 0,           //Measures from the first edge on the line to the last edge on the line.
-    IMAQ_EDGE_TO_POINT                = 1,           //Measures from the first edge on the line to the end point of the line.
-    IMAQ_POINT_TO_EDGE                = 2,           //Measures from the start point of the line to the first edge on the line.
-    IMAQ_POINT_TO_POINT               = 3,           //Measures from the start point of the line to the end point of the line.
-    IMAQ_LINE_GAUGE_METHOD_SIZE_GUARD = 0xFFFFFFFF   
-} LineGaugeMethod;
-
-typedef enum Direction3D_enum {
-    IMAQ_3D_NW                   = 0,           //The viewing angle for the 3D image is from the northwest.
-    IMAQ_3D_SW                   = 1,           //The viewing angle for the 3D image is from the southwest.
-    IMAQ_3D_SE                   = 2,           //The viewing angle for the 3D image is from the southeast.
-    IMAQ_3D_NE                   = 3,           //The viewing angle for the 3D image is from the northeast.
-    IMAQ_DIRECTION_3D_SIZE_GUARD = 0xFFFFFFFF   
-} Direction3D;
-
-typedef enum LearningMode_enum {
-    IMAQ_LEARN_ALL                  = 0,           //The function extracts information for shift- and rotation-invariant matching.
-    IMAQ_LEARN_SHIFT_INFORMATION    = 1,           //The function extracts information for shift-invariant matching.
-    IMAQ_LEARN_ROTATION_INFORMATION = 2,           //The function extracts information for rotation-invariant matching.
-    IMAQ_LEARNING_MODE_SIZE_GUARD   = 0xFFFFFFFF   
-} LearningMode;
-
-typedef enum KernelFamily_enum {
-    IMAQ_GRADIENT_FAMILY          = 0,           //The kernel is in the gradient family.
-    IMAQ_LAPLACIAN_FAMILY         = 1,           //The kernel is in the Laplacian family.
-    IMAQ_SMOOTHING_FAMILY         = 2,           //The kernel is in the smoothing family.
-    IMAQ_GAUSSIAN_FAMILY          = 3,           //The kernel is in the Gaussian family.
-    IMAQ_KERNEL_FAMILY_SIZE_GUARD = 0xFFFFFFFF   
-} KernelFamily;
-
-typedef enum InterpolationMethod_enum {
-    IMAQ_ZERO_ORDER                      = 0,           //The function uses an interpolation method that interpolates new pixel values using the nearest valid neighboring pixel.
-    IMAQ_BILINEAR                        = 1,           //The function uses an interpolation method that interpolates new pixel values using a bidirectional average of the neighboring pixels.
-    IMAQ_QUADRATIC                       = 2,           //The function uses an interpolation method that interpolates new pixel values using a quadratic approximating polynomial.
-    IMAQ_CUBIC_SPLINE                    = 3,           //The function uses an interpolation method that interpolates new pixel values by fitting them to a cubic spline curve, where the curve is based on known pixel values from the image.
-    IMAQ_BILINEAR_FIXED                  = 4,           //The function uses an interpolation method that interpolates new pixel values using a bidirectional average of the neighboring pixels.
-    IMAQ_INTERPOLATION_METHOD_SIZE_GUARD = 0xFFFFFFFF   
-} InterpolationMethod;
-
-typedef enum ImageType_enum {
-    IMAQ_IMAGE_U8              = 0,           //The image type is 8-bit unsigned integer grayscale.
-    IMAQ_IMAGE_U16             = 7,           //The image type is 16-bit unsigned integer grayscale.
-    IMAQ_IMAGE_I16             = 1,           //The image type is 16-bit signed integer grayscale.
-    IMAQ_IMAGE_SGL             = 2,           //The image type is 32-bit floating-point grayscale.
-    IMAQ_IMAGE_COMPLEX         = 3,           //The image type is complex.
-    IMAQ_IMAGE_RGB             = 4,           //The image type is RGB color.
-    IMAQ_IMAGE_HSL             = 5,           //The image type is HSL color.
-    IMAQ_IMAGE_RGB_U64         = 6,           //The image type is 64-bit unsigned RGB color.
-    IMAQ_IMAGE_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} ImageType;
-
-typedef enum ImageFeatureMode_enum {
-    IMAQ_COLOR_AND_SHAPE_FEATURES = 0,           //Instructs the function to use the color and the shape features of the color pattern.
-    IMAQ_COLOR_FEATURES           = 1,           //Instructs the function to use the color features of the color pattern.
-    IMAQ_SHAPE_FEATURES           = 2,           //Instructs the function to use the shape features of the color pattern.
-    IMAQ_FEATURE_MODE_SIZE_GUARD  = 0xFFFFFFFF   
-} ImageFeatureMode;
-
-typedef enum FontColor_enum {
-    IMAQ_WHITE                 = 0,           //Draws text in white.
-    IMAQ_BLACK                 = 1,           //Draws text in black.
-    IMAQ_INVERT                = 2,           //Inverts the text pixels.
-    IMAQ_BLACK_ON_WHITE        = 3,           //Draws text in black with a white background.
-    IMAQ_WHITE_ON_BLACK        = 4,           //Draws text in white with a black background.
-    IMAQ_FONT_COLOR_SIZE_GUARD = 0xFFFFFFFF   
-} FontColor;
-
-typedef enum FlipAxis_enum {
-    IMAQ_HORIZONTAL_AXIS      = 0,           //Flips the image over the central horizontal axis.
-    IMAQ_VERTICAL_AXIS        = 1,           //Flips the image over the central vertical axis.
-    IMAQ_CENTER_AXIS          = 2,           //Flips the image over both the central vertical and horizontal axes.
-    IMAQ_DIAG_L_TO_R_AXIS     = 3,           //Flips the image over an axis from the upper left corner to lower right corner.
-    IMAQ_DIAG_R_TO_L_AXIS     = 4,           //Flips the image over an axis from the upper right corner to lower left corner.
-    IMAQ_FLIP_AXIS_SIZE_GUARD = 0xFFFFFFFF   
-} FlipAxis;
-
-typedef enum EdgeProcess_enum {
-    IMAQ_FIRST                   = 0,           //The function looks for the first edge.
-    IMAQ_FIRST_AND_LAST          = 1,           //The function looks for the first and last edge.
-    IMAQ_ALL                     = 2,           //The function looks for all edges.
-    IMAQ_BEST                    = 3,           //The function looks for the best edge.
-    IMAQ_EDGE_PROCESS_SIZE_GUARD = 0xFFFFFFFF   
-} EdgeProcess;
-
-typedef enum DrawMode_enum {
-    IMAQ_DRAW_VALUE           = 0,           //Draws the boundary of the object with the specified pixel value.
-    IMAQ_DRAW_INVERT          = 2,           //Inverts the pixel values of the boundary of the object.
-    IMAQ_PAINT_VALUE          = 1,           //Fills the object with the given pixel value.
-    IMAQ_PAINT_INVERT         = 3,           //Inverts the pixel values of the object.
-    IMAQ_HIGHLIGHT_VALUE      = 4,           //The function fills the object by highlighting the enclosed pixels with the color of the object.
-    IMAQ_DRAW_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} DrawMode;
-
-typedef enum NearestNeighborMetric_enum {
-    IMAQ_METRIC_MAXIMUM                     = 0,           //The maximum metric.
-    IMAQ_METRIC_SUM                         = 1,           //The sum metric.
-    IMAQ_METRIC_EUCLIDEAN                   = 2,           //The Euclidean metric.
-    IMAQ_NEAREST_NEIGHBOR_METRIC_SIZE_GUARD = 0xFFFFFFFF   
-} NearestNeighborMetric;
-
-typedef enum ReadResolution_enum {
-    IMAQ_LOW_RESOLUTION             = 0,           //Configures NI Vision to use low resolution during the read process.
-    IMAQ_MEDIUM_RESOLUTION          = 1,           //Configures NI Vision to use medium resolution during the read process.
-    IMAQ_HIGH_RESOLUTION            = 2,           //Configures NI Vision to use high resolution during the read process.
-    IMAQ_READ_RESOLUTION_SIZE_GUARD = 0xFFFFFFFF   
-} ReadResolution;
-
-typedef enum ThresholdMode_enum {
-    IMAQ_FIXED_RANGE               = 0,           //Performs thresholding using the values you provide in the lowThreshold and highThreshold elements of OCRProcessingOptions.
-    IMAQ_COMPUTED_UNIFORM          = 1,           //Calculates a single threshold value for the entire ROI.
-    IMAQ_COMPUTED_LINEAR           = 2,           //Calculates a value on the left side of the ROI, calculates a value on the right side of the ROI, and linearly fills the middle values from left to right.
-    IMAQ_COMPUTED_NONLINEAR        = 3,           //Divides the ROI into the number of blocks specified by the blockCount element of OCRProcessingOptions and calculates a threshold value for each block.
-    IMAQ_THRESHOLD_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} ThresholdMode;
-
-typedef enum ReadStrategy_enum {
-    IMAQ_READ_AGGRESSIVE          = 0,           //Configures NI Vision to perform fewer checks when analyzing objects to determine if they match trained characters.
-    IMAQ_READ_CONSERVATIVE        = 1,           //Configures NI Vision to perform more checks to determine if an object matches a trained character.
-    IMAQ_READ_STRATEGY_SIZE_GUARD = 0xFFFFFFFF   
-} ReadStrategy;
-
-typedef enum MeasurementType_enum {
-    IMAQ_MT_CENTER_OF_MASS_X                    = 0,           //X-coordinate of the point representing the average position of the total particle mass, assuming every point in the particle has a constant density.
-    IMAQ_MT_CENTER_OF_MASS_Y                    = 1,           //Y-coordinate of the point representing the average position of the total particle mass, assuming every point in the particle has a constant density.
-    IMAQ_MT_FIRST_PIXEL_X                       = 2,           //X-coordinate of the highest, leftmost particle pixel.
-    IMAQ_MT_FIRST_PIXEL_Y                       = 3,           //Y-coordinate of the highest, leftmost particle pixel.
-    IMAQ_MT_BOUNDING_RECT_LEFT                  = 4,           //X-coordinate of the leftmost particle point.
-    IMAQ_MT_BOUNDING_RECT_TOP                   = 5,           //Y-coordinate of highest particle point.
-    IMAQ_MT_BOUNDING_RECT_RIGHT                 = 6,           //X-coordinate of the rightmost particle point.
-    IMAQ_MT_BOUNDING_RECT_BOTTOM                = 7,           //Y-coordinate of the lowest particle point.
-    IMAQ_MT_MAX_FERET_DIAMETER_START_X          = 8,           //X-coordinate of the start of the line segment connecting the two perimeter points that are the furthest apart.
-    IMAQ_MT_MAX_FERET_DIAMETER_START_Y          = 9,           //Y-coordinate of the start of the line segment connecting the two perimeter points that are the furthest apart.
-    IMAQ_MT_MAX_FERET_DIAMETER_END_X            = 10,          //X-coordinate of the end of the line segment connecting the two perimeter points that are the furthest apart.
-    IMAQ_MT_MAX_FERET_DIAMETER_END_Y            = 11,          //Y-coordinate of the end of the line segment connecting the two perimeter points that are the furthest apart.
-    IMAQ_MT_MAX_HORIZ_SEGMENT_LENGTH_LEFT       = 12,          //X-coordinate of the leftmost pixel in the longest row of contiguous pixels in the particle.
-    IMAQ_MT_MAX_HORIZ_SEGMENT_LENGTH_RIGHT      = 13,          //X-coordinate of the rightmost pixel in the longest row of contiguous pixels in the particle.
-    IMAQ_MT_MAX_HORIZ_SEGMENT_LENGTH_ROW        = 14,          //Y-coordinate of all of the pixels in the longest row of contiguous pixels in the particle.
-    IMAQ_MT_BOUNDING_RECT_WIDTH                 = 16,          //Distance between the x-coordinate of the leftmost particle point and the x-coordinate of the rightmost particle point.
-    IMAQ_MT_BOUNDING_RECT_HEIGHT                = 17,          //Distance between the y-coordinate of highest particle point and the y-coordinate of the lowest particle point.
-    IMAQ_MT_BOUNDING_RECT_DIAGONAL              = 18,          //Distance between opposite corners of the bounding rectangle.
-    IMAQ_MT_PERIMETER                           = 19,          //Length of the outer boundary of the particle.
-    IMAQ_MT_CONVEX_HULL_PERIMETER               = 20,          //Perimeter of the smallest convex polygon containing all points in the particle.
-    IMAQ_MT_HOLES_PERIMETER                     = 21,          //Sum of the perimeters of each hole in the particle.
-    IMAQ_MT_MAX_FERET_DIAMETER                  = 22,          //Distance between the start and end of the line segment connecting the two perimeter points that are the furthest apart.
-    IMAQ_MT_EQUIVALENT_ELLIPSE_MAJOR_AXIS       = 23,          //Length of the major axis of the ellipse with the same perimeter and area as the particle.
-    IMAQ_MT_EQUIVALENT_ELLIPSE_MINOR_AXIS       = 24,          //Length of the minor axis of the ellipse with the same perimeter and area as the particle.
-    IMAQ_MT_EQUIVALENT_ELLIPSE_MINOR_AXIS_FERET = 25,          //Length of the minor axis of the ellipse with the same area as the particle, and Major Axis equal in length to the Max Feret Diameter.
-    IMAQ_MT_EQUIVALENT_RECT_LONG_SIDE           = 26,          //Longest side of the rectangle with the same perimeter and area as the particle.
-    IMAQ_MT_EQUIVALENT_RECT_SHORT_SIDE          = 27,          //Shortest side of the rectangle with the same perimeter and area as the particle.
-    IMAQ_MT_EQUIVALENT_RECT_DIAGONAL            = 28,          //Distance between opposite corners of the rectangle with the same perimeter and area as the particle.
-    IMAQ_MT_EQUIVALENT_RECT_SHORT_SIDE_FERET    = 29,          //Shortest side of the rectangle with the same area as the particle, and longest side equal in length to the Max Feret Diameter.
-    IMAQ_MT_AVERAGE_HORIZ_SEGMENT_LENGTH        = 30,          //Average length of a horizontal segment in the particle.
-    IMAQ_MT_AVERAGE_VERT_SEGMENT_LENGTH         = 31,          //Average length of a vertical segment in the particle.
-    IMAQ_MT_HYDRAULIC_RADIUS                    = 32,          //The particle area divided by the particle perimeter.
-    IMAQ_MT_WADDEL_DISK_DIAMETER                = 33,          //Diameter of a disk with the same area as the particle.
-    IMAQ_MT_AREA                                = 35,          //Area of the particle.
-    IMAQ_MT_HOLES_AREA                          = 36,          //Sum of the areas of each hole in the particle.
-    IMAQ_MT_PARTICLE_AND_HOLES_AREA             = 37,          //Area of a particle that completely covers the image.
-    IMAQ_MT_CONVEX_HULL_AREA                    = 38,          //Area of the smallest convex polygon containing all points in the particle.
-    IMAQ_MT_IMAGE_AREA                          = 39,          //Area of the image.
-    IMAQ_MT_NUMBER_OF_HOLES                     = 41,          //Number of holes in the particle.
-    IMAQ_MT_NUMBER_OF_HORIZ_SEGMENTS            = 42,          //Number of horizontal segments in the particle.
-    IMAQ_MT_NUMBER_OF_VERT_SEGMENTS             = 43,          //Number of vertical segments in the particle.
-    IMAQ_MT_ORIENTATION                         = 45,          //The angle of the line that passes through the particle Center of Mass about which the particle has the lowest moment of inertia.
-    IMAQ_MT_MAX_FERET_DIAMETER_ORIENTATION      = 46,          //The angle of the line segment connecting the two perimeter points that are the furthest apart.
-    IMAQ_MT_AREA_BY_IMAGE_AREA                  = 48,          //Percentage of the particle Area covering the Image Area.
-    IMAQ_MT_AREA_BY_PARTICLE_AND_HOLES_AREA     = 49,          //Percentage of the particle Area in relation to its Particle and Holes Area.
-    IMAQ_MT_RATIO_OF_EQUIVALENT_ELLIPSE_AXES    = 50,          //Equivalent Ellipse Major Axis divided by Equivalent Ellipse Minor Axis.
-    IMAQ_MT_RATIO_OF_EQUIVALENT_RECT_SIDES      = 51,          //Equivalent Rect Long Side divided by Equivalent Rect Short Side.
-    IMAQ_MT_ELONGATION_FACTOR                   = 53,          //Max Feret Diameter divided by Equivalent Rect Short Side (Feret).
-    IMAQ_MT_COMPACTNESS_FACTOR                  = 54,          //Area divided by the product of Bounding Rect Width and Bounding Rect Height.
-    IMAQ_MT_HEYWOOD_CIRCULARITY_FACTOR          = 55,          //Perimeter divided by the circumference of a circle with the same area.
-    IMAQ_MT_TYPE_FACTOR                         = 56,          //Factor relating area to moment of inertia.
-    IMAQ_MT_SUM_X                               = 58,          //The sum of all x-coordinates in the particle.
-    IMAQ_MT_SUM_Y                               = 59,          //The sum of all y-coordinates in the particle.
-    IMAQ_MT_SUM_XX                              = 60,          //The sum of all x-coordinates squared in the particle.
-    IMAQ_MT_SUM_XY                              = 61,          //The sum of all x-coordinates times y-coordinates in the particle.
-    IMAQ_MT_SUM_YY                              = 62,          //The sum of all y-coordinates squared in the particle.
-    IMAQ_MT_SUM_XXX                             = 63,          //The sum of all x-coordinates cubed in the particle.
-    IMAQ_MT_SUM_XXY                             = 64,          //The sum of all x-coordinates squared times y-coordinates in the particle.
-    IMAQ_MT_SUM_XYY                             = 65,          //The sum of all x-coordinates times y-coordinates squared in the particle.
-    IMAQ_MT_SUM_YYY                             = 66,          //The sum of all y-coordinates cubed in the particle.
-    IMAQ_MT_MOMENT_OF_INERTIA_XX                = 68,          //The moment of inertia in the x-direction twice.
-    IMAQ_MT_MOMENT_OF_INERTIA_XY                = 69,          //The moment of inertia in the x and y directions.
-    IMAQ_MT_MOMENT_OF_INERTIA_YY                = 70,          //The moment of inertia in the y-direction twice.
-    IMAQ_MT_MOMENT_OF_INERTIA_XXX               = 71,          //The moment of inertia in the x-direction three times.
-    IMAQ_MT_MOMENT_OF_INERTIA_XXY               = 72,          //The moment of inertia in the x-direction twice and the y-direction once.
-    IMAQ_MT_MOMENT_OF_INERTIA_XYY               = 73,          //The moment of inertia in the x-direction once and the y-direction twice.
-    IMAQ_MT_MOMENT_OF_INERTIA_YYY               = 74,          //The moment of inertia in the y-direction three times.
-    IMAQ_MT_NORM_MOMENT_OF_INERTIA_XX           = 75,          //The normalized moment of inertia in the x-direction twice.
-    IMAQ_MT_NORM_MOMENT_OF_INERTIA_XY           = 76,          //The normalized moment of inertia in the x- and y-directions.
-    IMAQ_MT_NORM_MOMENT_OF_INERTIA_YY           = 77,          //The normalized moment of inertia in the y-direction twice.
-    IMAQ_MT_NORM_MOMENT_OF_INERTIA_XXX          = 78,          //The normalized moment of inertia in the x-direction three times.
-    IMAQ_MT_NORM_MOMENT_OF_INERTIA_XXY          = 79,          //The normalized moment of inertia in the x-direction twice and the y-direction once.
-    IMAQ_MT_NORM_MOMENT_OF_INERTIA_XYY          = 80,          //The normalized moment of inertia in the x-direction once and the y-direction twice.
-    IMAQ_MT_NORM_MOMENT_OF_INERTIA_YYY          = 81,          //The normalized moment of inertia in the y-direction three times.
-    IMAQ_MT_HU_MOMENT_1                         = 82,          //The first Hu moment.
-    IMAQ_MT_HU_MOMENT_2                         = 83,          //The second Hu moment.
-    IMAQ_MT_HU_MOMENT_3                         = 84,          //The third Hu moment.
-    IMAQ_MT_HU_MOMENT_4                         = 85,          //The fourth Hu moment.
-    IMAQ_MT_HU_MOMENT_5                         = 86,          //The fifth Hu moment.
-    IMAQ_MT_HU_MOMENT_6                         = 87,          //The sixth Hu moment.
-    IMAQ_MT_HU_MOMENT_7                         = 88,          //The seventh Hu moment.
-    IMAQ_MEASUREMENT_TYPE_SIZE_GUARD            = 0xFFFFFFFF   
-} MeasurementType;
-
-typedef enum GeometricMatchingMode_enum {
-    IMAQ_GEOMETRIC_MATCH_SHIFT_INVARIANT     = 0,           //Searches for occurrences of the pattern in the image, assuming that the pattern is not rotated more than plus or minus 5 degrees.
-    IMAQ_GEOMETRIC_MATCH_ROTATION_INVARIANT  = 1,           //Searches for occurrences of the pattern in the image with reduced restriction on the rotation of the pattern.
-    IMAQ_GEOMETRIC_MATCH_SCALE_INVARIANT     = 2,           //Searches for occurrences of the pattern in the image with reduced restriction on the size of the pattern.
-    IMAQ_GEOMETRIC_MATCH_OCCLUSION_INVARIANT = 4,           //Searches for occurrences of the pattern in the image, allowing for a specified percentage of the pattern to be occluded.
-    IMAQ_GEOMETRIC_MATCHING_MODE_SIZE_GUARD  = 0xFFFFFFFF   
-} GeometricMatchingMode;
-
-typedef enum ButtonLabel_enum {
-    IMAQ_BUTTON_OK               = 0,           //The label "OK".
-    IMAQ_BUTTON_SAVE             = 1,           //The label "Save".
-    IMAQ_BUTTON_SELECT           = 2,           //The label "Select".
-    IMAQ_BUTTON_LOAD             = 3,           //The label "Load".
-    IMAQ_BUTTON_LABEL_SIZE_GUARD = 0xFFFFFFFF   
-} ButtonLabel;
-
-typedef enum NearestNeighborMethod_enum {
-    IMAQ_MINIMUM_MEAN_DISTANCE              = 0,           //The minimum mean distance method.
-    IMAQ_K_NEAREST_NEIGHBOR                 = 1,           //The k-nearest neighbor method.
-    IMAQ_NEAREST_PROTOTYPE                  = 2,           //The nearest prototype method.
-    IMAQ_NEAREST_NEIGHBOR_METHOD_SIZE_GUARD = 0xFFFFFFFF   
-} NearestNeighborMethod;
-
-typedef enum QRMirrorMode_enum {
-    IMAQ_QR_MIRROR_MODE_AUTO_DETECT = -2,          //The function should determine if the QR code is mirrored.
-    IMAQ_QR_MIRROR_MODE_MIRRORED    = 1,           //The function should expect the QR code to appear mirrored.
-    IMAQ_QR_MIRROR_MODE_NORMAL      = 0,           //The function should expect the QR code to appear normal.
-    IMAQ_QR_MIRROR_MODE_SIZE_GUARD  = 0xFFFFFFFF   
-} QRMirrorMode;
-
-typedef enum ColumnProcessingMode_enum {
-    IMAQ_AVERAGE_COLUMNS                   = 0,           //Averages the data extracted for edge detection.
-    IMAQ_MEDIAN_COLUMNS                    = 1,           //Takes the median of the data extracted for edge detection.
-    IMAQ_COLUMN_PROCESSING_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} ColumnProcessingMode;
-
-typedef enum FindReferenceDirection_enum {
-    IMAQ_LEFT_TO_RIGHT_DIRECT          = 0,           //Searches from the left side of the search area to the right side of the search area for a direct axis.
-    IMAQ_LEFT_TO_RIGHT_INDIRECT        = 1,           //Searches from the left side of the search area to the right side of the search area for an indirect axis.
-    IMAQ_TOP_TO_BOTTOM_DIRECT          = 2,           //Searches from the top of the search area to the bottom of the search area for a direct axis.
-    IMAQ_TOP_TO_BOTTOM_INDIRECT        = 3,           //Searches from the top of the search area to the bottom of the search area for an indirect axis.
-    IMAQ_RIGHT_TO_LEFT_DIRECT          = 4,           //Searches from the right side of the search area to the left side of the search area for a direct axis.
-    IMAQ_RIGHT_TO_LEFT_INDIRECT        = 5,           //Searches from the right side of the search area to the left side of the search area for an indirect axis.
-    IMAQ_BOTTOM_TO_TOP_DIRECT          = 6,           //Searches from the bottom of the search area to the top of the search area for a direct axis.
-    IMAQ_BOTTOM_TO_TOP_INDIRECT        = 7,           //Searches from the bottom of the search area to the top of the search area for an indirect axis.
-    IMAQ_FIND_COORD_SYS_DIR_SIZE_GUARD = 0xFFFFFFFF   
-} FindReferenceDirection;
-
-typedef enum MulticoreOperation_enum {
-    IMAQ_GET_CORES                      = 0,           //The number of processor cores NI Vision is currently using.
-    IMAQ_SET_CORES                      = 1,           //The number of processor cores for NI Vision to use.
-    IMAQ_USE_MAX_AVAILABLE              = 2,           //Use the maximum number of available processor cores.
-    IMAQ_MULTICORE_OPERATION_SIZE_GUARD = 0xFFFFFFFF   
-} MulticoreOperation;
-
-typedef enum GroupBehavior_enum {
-    IMAQ_GROUP_CLEAR               = 0,           //Sets the behavior of the overlay group to clear the current settings when an image is transformed.
-    IMAQ_GROUP_KEEP                = 1,           //Sets the behavior of the overlay group to keep the current settings when an image is transformed.
-    IMAQ_GROUP_TRANSFORM           = 2,           //Sets the behavior of the overlay group to transform with the image.
-    IMAQ_GROUP_BEHAVIOR_SIZE_GUARD = 0xFFFFFFFF   
-} GroupBehavior;
-
-typedef enum QRDimensions_enum {
-    IMAQ_QR_DIMENSIONS_AUTO_DETECT = 0,           //The function will automatically determine the dimensions of the QR code.
-    IMAQ_QR_DIMENSIONS_11x11       = 11,          //Specifies the dimensions of the QR code as 11 x 11.
-    IMAQ_QR_DIMENSIONS_13x13       = 13,          //Specifies the dimensions of the QR code as 13 x 13.
-    IMAQ_QR_DIMENSIONS_15x15       = 15,          //Specifies the dimensions of the QR code as 15 x 15.
-    IMAQ_QR_DIMENSIONS_17x17       = 17,          //Specifies the dimensions of the QR code as 17 x 17.
-    IMAQ_QR_DIMENSIONS_21x21       = 21,          //Specifies the dimensions of the QR code as 21 x 21.
-    IMAQ_QR_DIMENSIONS_25x25       = 25,          //Specifies the dimensions of the QR code as 25 x 25.
-    IMAQ_QR_DIMENSIONS_29x29       = 29,          //Specifies the dimensions of the QR code as 29 x 29.
-    IMAQ_QR_DIMENSIONS_33x33       = 33,          //Specifies the dimensions of the QR code as 33 x 33.
-    IMAQ_QR_DIMENSIONS_37x37       = 37,          //Specifies the dimensions of the QR code as 37 x 37.
-    IMAQ_QR_DIMENSIONS_41x41       = 41,          //Specifies the dimensions of the QR code as 41 x 41.
-    IMAQ_QR_DIMENSIONS_45x45       = 45,          //Specifies the dimensions of the QR code as 45 x 45.
-    IMAQ_QR_DIMENSIONS_49x49       = 49,          //Specifies the dimensions of the QR code as 49 x 49.
-    IMAQ_QR_DIMENSIONS_53x53       = 53,          //Specifies the dimensions of the QR code as 53 x 53.
-    IMAQ_QR_DIMENSIONS_57x57       = 57,          //Specifies the dimensions of the QR code as 57 x 57.
-    IMAQ_QR_DIMENSIONS_61x61       = 61,          //Specifies the dimensions of the QR code as 61 x 61.
-    IMAQ_QR_DIMENSIONS_65x65       = 65,          //Specifies the dimensions of the QR code as 65 x 65.
-    IMAQ_QR_DIMENSIONS_69x69       = 69,          //Specifies the dimensions of the QR code as 69 x 69.
-    IMAQ_QR_DIMENSIONS_73x73       = 73,          //Specifies the dimensions of the QR code as 73 x 73.
-    IMAQ_QR_DIMENSIONS_77x77       = 77,          //Specifies the dimensions of the QR code as 77 x 77.
-    IMAQ_QR_DIMENSIONS_81x81       = 81,          //Specifies the dimensions of the QR code as 81 x 81.
-    IMAQ_QR_DIMENSIONS_85x85       = 85,          //Specifies the dimensions of the QR code as 85 x 85.
-    IMAQ_QR_DIMENSIONS_89x89       = 89,          //Specifies the dimensions of the QR code as 89 x 89.
-    IMAQ_QR_DIMENSIONS_93x93       = 93,          //Specifies the dimensions of the QR code as 93 x 93.
-    IMAQ_QR_DIMENSIONS_97x97       = 97,          //Specifies the dimensions of the QR code as 97 x 97.
-    IMAQ_QR_DIMENSIONS_101x101     = 101,         //Specifies the dimensions of the QR code as 101 x 101.
-    IMAQ_QR_DIMENSIONS_105x105     = 105,         //Specifies the dimensions of the QR code as 105 x 105.
-    IMAQ_QR_DIMENSIONS_109x109     = 109,         //Specifies the dimensions of the QR code as 109 x 109.
-    IMAQ_QR_DIMENSIONS_113x113     = 113,         //Specifies the dimensions of the QR code as 113 x 113.
-    IMAQ_QR_DIMENSIONS_117x117     = 117,         //Specifies the dimensions of the QR code as 117 x 117.
-    IMAQ_QR_DIMENSIONS_121x121     = 121,         //Specifies the dimensions of the QR code as 121 x 121.
-    IMAQ_QR_DIMENSIONS_125x125     = 125,         //Specifies the dimensions of the QR code as 125 x 125.
-    IMAQ_QR_DIMENSIONS_129x129     = 129,         //Specifies the dimensions of the QR code as 129 x 129.
-    IMAQ_QR_DIMENSIONS_133x133     = 133,         //Specifies the dimensions of the QR code as 133 x 133.
-    IMAQ_QR_DIMENSIONS_137x137     = 137,         //Specifies the dimensions of the QR code as 137 x 137.
-    IMAQ_QR_DIMENSIONS_141x141     = 141,         //Specifies the dimensions of the QR code as 141 x 141.
-    IMAQ_QR_DIMENSIONS_145x145     = 145,         //Specifies the dimensions of the QR code as 145 x 145.
-    IMAQ_QR_DIMENSIONS_149x149     = 149,         //Specifies the dimensions of the QR code as 149 x 149.
-    IMAQ_QR_DIMENSIONS_153x153     = 153,         //Specifies the dimensions of the QR code as 153 x 153.
-    IMAQ_QR_DIMENSIONS_157x157     = 157,         //Specifies the dimensions of the QR code as 157 x 1537.
-    IMAQ_QR_DIMENSIONS_161x161     = 161,         //Specifies the dimensions of the QR code as 161 x 161.
-    IMAQ_QR_DIMENSIONS_165x165     = 165,         //Specifies the dimensions of the QR code as 165 x 165.
-    IMAQ_QR_DIMENSIONS_169x169     = 169,         //Specifies the dimensions of the QR code as 169 x 169.
-    IMAQ_QR_DIMENSIONS_173x173     = 173,         //Specifies the dimensions of the QR code as 173 x 173.
-    IMAQ_QR_DIMENSIONS_177x177     = 177,         //Specifies the dimensions of the QR code as 177 x 177.
-    IMAQ_QR_DIMENSIONS_SIZE_GUARD  = 0xFFFFFFFF   
-} QRDimensions;
-
-typedef enum QRCellFilterMode_enum {
-    IMAQ_QR_CELL_FILTER_MODE_AUTO_DETECT       = -2,          //The function will try all filter modes and uses the one that decodes the QR code within the fewest iterations and utilizing the least amount of error correction.
-    IMAQ_QR_CELL_FILTER_MODE_AVERAGE           = 0,           //The function sets the pixel value for the cell to the average of the sampled pixels.
-    IMAQ_QR_CELL_FILTER_MODE_MEDIAN            = 1,           //The function sets the pixel value for the cell to the median of the sampled pixels.
-    IMAQ_QR_CELL_FILTER_MODE_CENTRAL_AVERAGE   = 2,           //The function sets the pixel value for the cell to the average of the pixels in the center of the cell sample.
-    IMAQ_QR_CELL_FILTER_MODE_HIGH_AVERAGE      = 3,           //The function sets the pixel value for the cell to the average value of the half of the sampled pixels with the highest pixel values.
-    IMAQ_QR_CELL_FILTER_MODE_LOW_AVERAGE       = 4,           //The function sets the pixel value for the cell to the average value of the half of the sampled pixels with the lowest pixel values.
-    IMAQ_QR_CELL_FILTER_MODE_VERY_HIGH_AVERAGE = 5,           //The function sets the pixel value for the cell to the average value of the ninth of the sampled pixels with the highest pixel values.
-    IMAQ_QR_CELL_FILTER_MODE_VERY_LOW_AVERAGE  = 6,           //The function sets the pixel value for the cell to the average value of the ninth of the sampled pixels with the lowest pixel values.
-    IMAQ_QR_CELL_FILTER_MODE_ALL               = 8,           //The function tries each filter mode, starting with IMAQ_QR_CELL_FILTER_MODE_AVERAGE and ending with IMAQ_QR_CELL_FILTER_MODE_VERY_LOW_AVERAGE, stopping once a filter mode decodes correctly.
-    IMAQ_QR_CELL_FILTER_MODE_SIZE_GUARD        = 0xFFFFFFFF   
-} QRCellFilterMode;
-
-typedef enum RoundingMode_enum {
-    IMAQ_ROUNDING_MODE_OPTIMIZE   = 0,           //Rounds the result of a division using the best available method.
-    IMAQ_ROUNDING_MODE_TRUNCATE   = 1,           //Truncates the result of a division.
-    IMAQ_ROUNDING_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} RoundingMode;
-
-typedef enum QRDemodulationMode_enum {
-    IMAQ_QR_DEMODULATION_MODE_AUTO_DETECT    = -2,          //The function will try each demodulation mode and use the one which decodes the QR code within the fewest iterations and utilizing the least amount of error correction.
-    IMAQ_QR_DEMODULATION_MODE_HISTOGRAM      = 0,           //The function uses a histogram of all of the QR cells to calculate a threshold.
-    IMAQ_QR_DEMODULATION_MODE_LOCAL_CONTRAST = 1,           //The function examines each of the cell's neighbors to determine if the cell is on or off.
-    IMAQ_QR_DEMODULATION_MODE_COMBINED       = 2,           //The function uses the histogram of the QR code to calculate a threshold.
-    IMAQ_QR_DEMODULATION_MODE_ALL            = 3,           //The function tries IMAQ_QR_DEMODULATION_MODE_HISTOGRAM, then IMAQ_QR_DEMODULATION_MODE_LOCAL_CONTRAST and then IMAQ_QR_DEMODULATION_MODE_COMBINED, stopping once one mode is successful.
-    IMAQ_QR_DEMODULATION_MODE_SIZE_GUARD     = 0xFFFFFFFF   
-} QRDemodulationMode;
-
-typedef enum ContrastMode_enum {
-    IMAQ_ORIGINAL_CONTRAST = 0,  //Instructs the geometric matching algorithm to find matches with the same contrast as the template.
-    IMAQ_REVERSED_CONTRAST = 1,  //Instructs the geometric matching algorithm to find matches with the inverted contrast of the template.
-    IMAQ_BOTH_CONTRASTS    = 2,  //Instructs the geometric matching algorithm to find matches with the same and inverted contrast of the template.
-} ContrastMode;
-
-typedef enum QRPolarities_enum {
-    IMAQ_QR_POLARITY_AUTO_DETECT     = -2,          //The function should determine the polarity of the QR code.
-    IMAQ_QR_POLARITY_BLACK_ON_WHITE  = 0,           //The function should search for a QR code with dark data on a bright background.
-    IMAQ_QR_POLARITY_WHITE_ON_BLACK  = 1,           //The function should search for a QR code with bright data on a dark background.
-    IMAQ_QR_POLARITY_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} QRPolarities;
-
-typedef enum QRRotationMode_enum {
-    IMAQ_QR_ROTATION_MODE_UNLIMITED   = 0,           //The function allows for unlimited rotation.
-    IMAQ_QR_ROTATION_MODE_0_DEGREES   = 1,           //The function allows for ??? 5 degrees of rotation.
-    IMAQ_QR_ROTATION_MODE_90_DEGREES  = 2,           //The function allows for between 85 and 95 degrees of rotation.
-    IMAQ_QR_ROTATION_MODE_180_DEGREES = 3,           //The function allows for between 175 and 185 degrees of rotation.
-    IMAQ_QR_ROTATION_MODE_270_DEGREES = 4,           //The function allows for between 265 and 275 degrees of rotation.
-    IMAQ_QR_ROTATION_MODE_SIZE_GUARD  = 0xFFFFFFFF   
-} QRRotationMode;
-
-typedef enum QRGradingMode_enum {
-    IMAQ_QR_NO_GRADING              = 0,           //The function does not make any preparatory calculations.
-    IMAQ_QR_GRADING_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} QRGradingMode;
-
-typedef enum StraightEdgeSearchMode_enum {
-    IMAQ_USE_FIRST_RAKE_EDGES            = 0,           //Fits a straight edge on the first points detected using a rake.
-    IMAQ_USE_BEST_RAKE_EDGES             = 1,           //Fits a straight edge on the best points detected using a rake.
-    IMAQ_USE_BEST_HOUGH_LINE             = 2,           //Finds the strongest straight edge using all points detected on a rake.
-    IMAQ_USE_FIRST_PROJECTION_EDGE       = 3,           //Uses the location of the first projected edge as the straight edge.
-    IMAQ_USE_BEST_PROJECTION_EDGE        = 4,           //Finds the strongest projected edge location to determine the straight edge.
-    IMAQ_STRAIGHT_EDGE_SEARCH_SIZE_GUARD = 0xFFFFFFFF   
-} StraightEdgeSearchMode;
-
-typedef enum SearchDirection_enum {
-    IMAQ_SEARCH_DIRECTION_LEFT_TO_RIGHT = 0,           //Searches from the left side of the search area to the right side of the search area.
-    IMAQ_SEARCH_DIRECTION_RIGHT_TO_LEFT = 1,           //Searches from the right side of the search area to the left side of the search area.
-    IMAQ_SEARCH_DIRECTION_TOP_TO_BOTTOM = 2,           //Searches from the top side of the search area to the bottom side of the search area.
-    IMAQ_SEARCH_DIRECTION_BOTTOM_TO_TOP = 3,           //Searches from the bottom side of the search area to the top side of the search area.
-    IMAQ_SEARCH_DIRECTION_SIZE_GUARD    = 0xFFFFFFFF   
-} SearchDirection;
-
-typedef enum QRStreamMode_enum {
-    IMAQ_QR_MODE_NUMERIC      = 0,           //Specifies that the data was encoded using numeric mode.
-    IMAQ_QR_MODE_ALPHANUMERIC = 1,           //Specifies that the data was encoded using alpha-numeric mode.
-    IMAQ_QR_MODE_RAW_BYTE     = 2,           //Specifies that the data was not encoded but is only raw binary bytes, or encoded in JIS-8.
-    IMAQ_QR_MODE_EAN128_TOKEN = 3,           //Specifies that the data has a special meaning represented by the application ID.
-    IMAQ_QR_MODE_EAN128_DATA  = 4,           //Specifies that the data has a special meaning represented by the application ID.
-    IMAQ_QR_MODE_ECI          = 5,           //Specifies that the data was meant to be read using the language represented in the language ID.
-    IMAQ_QR_MODE_KANJI        = 6,           //Specifies that the data was encoded in Shift-JIS16 Japanese.
-    IMAQ_QR_MODE_SIZE_GUARD   = 0xFFFFFFFF   
-} QRStreamMode;
-
-typedef enum ParticleClassifierType_enum {
-    IMAQ_PARTICLE_LARGEST                    = 0,           //Use only the largest particle in the image.
-    IMAQ_PARTICLE_ALL                        = 1,           //Use all particles in the image.
-    IMAQ_PARTICLE_CLASSIFIER_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} ParticleClassifierType;
-
-typedef enum QRCellSampleSize_enum {
-    IMAQ_QR_CELL_SAMPLE_SIZE_AUTO_DETECT = -2,          //The function will try each sample size and use the one which decodes the QR code within the fewest iterations and utilizing the least amount of error correction.
-    IMAQ_QR_CELL_SAMPLE_SIZE1X1          = 1,           //The function will use a 1x1 sized sample from each cell.
-    IMAQ_QR_CELL_SAMPLE_SIZE2X2          = 2,           //The function will use a 2x2 sized sample from each cell.
-    IMAQ_QR_CELL_SAMPLE_SIZE3X3          = 3,           //The function will use a 3x3 sized sample from each cell.
-    IMAQ_QR_CELL_SAMPLE_SIZE4X4          = 4,           //The function will use a 4x4 sized sample from each cell.
-    IMAQ_QR_CELL_SAMPLE_SIZE5X5          = 5,           //The function will use a 5x5 sized sample from each cell.
-    IMAQ_QR_CELL_SAMPLE_SIZE6X6          = 6,           //The function will use a 6x6 sized sample from each cell.
-    IMAQ_QR_CELL_SAMPLE_SIZE7X7          = 7,           //The function will use a 7x7 sized sample from each cell.
-    IMAQ_QR_CELL_SAMPLE_TYPE_SIZE_GUARD  = 0xFFFFFFFF   
-} QRCellSampleSize;
-
-typedef enum RakeProcessType_enum {
-    IMAQ_GET_FIRST_EDGES              = 0,           
-    IMAQ_GET_FIRST_AND_LAST_EDGES     = 1,           
-    IMAQ_GET_ALL_EDGES                = 2,           
-    IMAQ_GET_BEST_EDGES               = 3,           
-    IMAQ_RAKE_PROCESS_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} RakeProcessType;
-
-typedef enum GeometricSetupDataItem_enum {
-    IMAQ_CURVE_EXTRACTION_MODE             = 0,   //Specifies how the function identifies curves in the image.
-    IMAQ_CURVE_EDGE_THRSHOLD               = 1,   //Specifies the minimum contrast an edge pixel must have for it to be considered part of a curve.
-    IMAQ_CURVE_EDGE_FILTER                 = 2,   //Specifies the width of the edge filter that the function uses to identify curves in the image.
-    IMAQ_MINIMUM_CURVE_LENGTH              = 3,   //Specifies the length, in pixels, of the smallest curve that you want the function to identify.
-    IMAQ_CURVE_ROW_SEARCH_STEP_SIZE        = 4,   //Specifies the distance, in the y direction, between the image rows that the algorithm inspects for curve seed points.
-    IMAQ_CURVE_COL_SEARCH_STEP_SIZE        = 5,   //Specifies the distance, in the x direction, between the image columns that the algorithm inspects for curve seed points.
-    IMAQ_CURVE_MAX_END_POINT_GAP           = 6,   //Specifies the maximum gap, in pixels, between the endpoints of a curve that the function identifies as a closed curve.
-    IMAQ_EXTRACT_CLOSED_CURVES             = 7,   //Specifies whether to identify only closed curves in the image.
-    IMAQ_ENABLE_SUBPIXEL_CURVE_EXTRACTION  = 8,   //The function ignores this option.
-    IMAQ_ENABLE_CORRELATION_SCORE          = 9,   //Specifies that the function should calculate the Correlation Score and return it for each match result.
-    IMAQ_ENABLE_SUBPIXEL_ACCURACY          = 10,  //Determines whether to return the match results with subpixel accuracy.
-    IMAQ_SUBPIXEL_ITERATIONS               = 11,  //Specifies the maximum number of incremental improvements used to refine matches using subpixel information.
-    IMAQ_SUBPIXEL_TOLERANCE                = 12,  //Specifies the maximum amount of change, in pixels, between consecutive incremental improvements in the match position before the function stops refining the match position.
-    IMAQ_INITIAL_MATCH_LIST_LENGTH         = 13,  //Specifies the maximum size of the match list.
-    IMAQ_ENABLE_TARGET_TEMPLATE_CURVESCORE = 14,  //Specifies whether the function should calculate the match curve to template curve score and return it for each match result.
-    IMAQ_MINIMUM_MATCH_SEPARATION_DISTANCE = 15,  //Specifies the minimum separation distance, in pixels, between the origins of two matches that have unique positions.
-    IMAQ_MINIMUM_MATCH_SEPARATION_ANGLE    = 16,  //Specifies the minimum angular difference, in degrees, between two matches that have unique angles.
-    IMAQ_MINIMUM_MATCH_SEPARATION_SCALE    = 17,  //Specifies the minimum difference in scale, expressed as a percentage, between two matches that have unique scales.
-    IMAQ_MAXIMUM_MATCH_OVERLAP             = 18,  //Specifies whether you want the algorithm to spend less time accurately estimating the location of a match.
-    IMAQ_ENABLE_COARSE_RESULT              = 19,  //Specifies whether you want the algorithm to spend less time accurately estimating the location of a match.
-    IMAQ_ENABLE_CALIBRATION_SUPPORT        = 20,  //Specifies whether or not the algorithm treat the inspection image as a calibrated image.
-    IMAQ_ENABLE_CONTRAST_REVERSAL          = 21,  //Specifies the contrast of the matches to search for.
-    IMAQ_SEARCH_STRATEGY                   = 22,  //Specifies the aggressiveness of the strategy used to find matches in the image.
-    IMAQ_REFINEMENT_MATCH_FACTOR           = 23,  //Specifies the factor applied to the number of matches requested to determine how many matches are refined in the pyramid stage.
-    IMAQ_SUBPIXEL_MATCH_FACTOR             = 24,  //Specifies the factor applied to the number for matches requested to determine how many matches are used for the final (subpixel) stage.
-    IMAQ_MAX_REFINEMENT_ITERATIONS         = 25,  //Specifies maximum refinement iteration.
-} GeometricSetupDataItem;
-
-typedef enum DistortionModel_enum {
-    IMAQ_POLYNOMIAL_MODEL    = 0,   //Polynomial model.
-    IMAQ_DIVISION_MODEL      = 1,   //Division Model.
-    IMAQ_NO_DISTORTION_MODEL = -1,  //Not a distortion model.
-} DistortionModel;
-
-typedef enum CalibrationThumbnailType_enum {
-    IMAQ_CAMARA_MODEL_TYPE                     = 0,           //Camara model thumbnail type.
-    IMAQ_PERSPECTIVE_TYPE                      = 1,           //Perspective thumbnail type.
-    IMAQ_MICRO_PLANE_TYPE                      = 2,           //Micro Plane thumbnail type.
-    IMAQ_CALIBRATION_THUMBNAIL_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} CalibrationThumbnailType;
-
-typedef enum SettingType_enum {
-    IMAQ_ROTATION_ANGLE_RANGE    = 0,           //Set a range for this option to specify the angles at which you expect the Function to find template matches in the inspection image.
-    IMAQ_SCALE_RANGE             = 1,           //Set a range for this option to specify the sizes at which you expect the Function to find template matches in the inspection image.
-    IMAQ_OCCLUSION_RANGE         = 2,           //Set a range for this option to specify the amount of occlusion you expect for a match in the inspection image.
-    IMAQ_SETTING_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} SettingType;
-
-typedef enum SegmentationDistanceLevel_enum {
-    IMAQ_SEGMENTATION_LEVEL_CONSERVATIVE = 0,           //Uses extensive criteria to determine the Maximum Distance.
-    IMAQ_SEGMENTATION_LEVEL_AGGRESSIVE   = 1,           //Uses few criteria to determine the Maximum Distance.
-    IMAQ_SEGMENTATION_LEVEL_SIZE_GUARD   = 0xFFFFFFFF   
-} SegmentationDistanceLevel;
-
-typedef enum ExtractContourSelection_enum {
-    IMAQ_CLOSEST                              = 0,           //Selects the curve closest to the ROI.
-    IMAQ_LONGEST                              = 1,           //Selects the longest curve.
-    IMAQ_STRONGEST                            = 2,           //Selects the curve with the highest edge strength averaged from each point on the curve.
-    IMAQ_EXTRACT_CONTOUR_SELECTION_SIZE_GUARD = 0xFFFFFFFF   
-} ExtractContourSelection;
-
-typedef enum FindTransformMode_enum {
-    IMAQ_FIND_REFERENCE                 = 0,           //Update both parts of the coordinate system.
-    IMAQ_UPDATE_TRANSFORM               = 1,           //Update only the new reference system.
-    IMAQ_FIND_TRANSFORM_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} FindTransformMode;
-
-typedef enum ExtractContourDirection_enum {
-    IMAQ_RECT_LEFT_RIGHT                      = 0,           //Searches the ROI from left to right.
-    IMAQ_RECT_RIGHT_LEFT                      = 1,           //Searches the ROI from right to left.
-    IMAQ_RECT_TOP_BOTTOM                      = 2,           //Searches the ROI from top to bottom.
-    IMAQ_RECT_BOTTOM_TOP                      = 3,           //Searches the ROI from bottom to top.
-    IMAQ_ANNULUS_INNER_OUTER                  = 4,           //Searches the ROI from the inner radius to the outer radius.
-    IMAQ_ANNULUS_OUTER_INNER                  = 5,           //Searches the ROI from the outer radius to the inner radius.
-    IMAQ_ANNULUS_START_STOP                   = 6,           //Searches the ROI from start angle to end angle.
-    IMAQ_ANNULUS_STOP_START                   = 7,           //Searches the ROI from end angle to start angle.
-    IMAQ_EXTRACT_CONTOUR_DIRECTION_SIZE_GUARD = 0xFFFFFFFF   
-} ExtractContourDirection;
-
-typedef enum EdgePolaritySearchMode_enum {
-    IMAQ_SEARCH_FOR_ALL_EDGES          = 0,           //Searches for all edges.
-    IMAQ_SEARCH_FOR_RISING_EDGES       = 1,           //Searches for rising edges only.
-    IMAQ_SEARCH_FOR_FALLING_EDGES      = 2,           //Searches for falling edges only.
-    IMAQ_EDGE_POLARITY_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} EdgePolaritySearchMode;
-
-typedef enum Connectivity_enum {
-    IMAQ_FOUR_CONNECTED          = 0,           //Morphological reconstruction is performed in connectivity mode 4.
-    IMAQ_EIGHT_CONNECTED         = 1,           //Morphological reconstruction is performed in connectivity mode 8.
-    IMAQ_CONNECTIVITY_SIZE_GUARD = 0xFFFFFFFF   
-} Connectivity;
-
-typedef enum MorphologyReconstructOperation_enum {
-    IMAQ_DILATE_RECONSTRUCT                          = 0,           //Performs Reconstruction by dilation.
-    IMAQ_ERODE_RECONSTRUCT                           = 1,           //Performs Reconstruction by erosion.
-    IMAQ_MORPHOLOGY_RECONSTRUCT_OPERATION_SIZE_GUARD = 0xFFFFFFFF   
-} MorphologyReconstructOperation;
-
-typedef enum WaveletType_enum {
-    IMAQ_DB02                 = 0,           
-    IMAQ_DB03                 = 1,           
-    IMAQ_DB04                 = 2,           //Specifies the Wavelet Type as DB02.
-    IMAQ_DB05                 = 3,           
-    IMAQ_DB06                 = 4,           
-    IMAQ_DB07                 = 5,           
-    IMAQ_DB08                 = 6,           
-    IMAQ_DB09                 = 7,           
-    IMAQ_DB10                 = 8,           
-    IMAQ_DB11                 = 9,           
-    IMAQ_DB12                 = 10,          
-    IMAQ_DB13                 = 11,          
-    IMAQ_DB14                 = 12,          
-    IMAQ_HAAR                 = 13,          
-    IMAQ_BIOR1_3              = 14,          
-    IMAQ_BIOR1_5              = 15,          
-    IMAQ_BIOR2_2              = 16,          
-    IMAQ_BIOR2_4              = 17,          
-    IMAQ_BIOR2_6              = 18,          
-    IMAQ_BIOR2_8              = 19,          
-    IMAQ_BIOR3_1              = 20,          
-    IMAQ_BIOR3_3              = 21,          
-    IMAQ_BIOR3_5              = 22,          
-    IMAQ_BIOR3_7              = 23,          
-    IMAQ_BIOR3_9              = 24,          
-    IMAQ_BIOR4_4              = 25,          
-    IMAQ_COIF1                = 26,          
-    IMAQ_COIF2                = 27,          
-    IMAQ_COIF3                = 28,          
-    IMAQ_COIF4                = 29,          
-    IMAQ_COIF5                = 30,          
-    IMAQ_SYM2                 = 31,          
-    IMAQ_SYM3                 = 32,          
-    IMAQ_SYM4                 = 33,          
-    IMAQ_SYM5                 = 34,          
-    IMAQ_SYM6                 = 35,          
-    IMAQ_SYM7                 = 36,          
-    IMAQ_SYM8                 = 37,          
-    IMAQ_BIOR5_5              = 38,          
-    IMAQ_BIOR6_8              = 39,          
-    IMAQ_WAVE_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} WaveletType;
-
-typedef enum ParticleClassifierThresholdType_enum {
-    IMAQ_THRESHOLD_MANUAL = 0,  //The classifier performs a manual threshold on the image during preprocessing.
-    IMAQ_THRESHOLD_AUTO   = 1,  //The classifier performs an auto threshold on the image during preprocessing.
-    IMAQ_THRESHOLD_LOCAL  = 2,  //The classifier performs a local threshold on the image during preprocessing.
-} ParticleClassifierThresholdType;
-
-typedef enum MeasureParticlesCalibrationMode_enum {
-    IMAQ_CALIBRATION_MODE_PIXEL                        = 0,           //The function takes only pixel measurements on the particles in the image.
-    IMAQ_CALIBRATION_MODE_CALIBRATED                   = 1,           //The function takes only calibrated measurements on the particles in the image.
-    IMAQ_CALIBRATION_MODE_BOTH                         = 2,           //The function takes both pixel and calibrated measurements on the particles in the image.
-    IMAQ_MEASURE_PARTICLES_CALIBRATION_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} MeasureParticlesCalibrationMode;
-
-typedef enum GeometricMatchingSearchStrategy_enum {
-    IMAQ_GEOMETRIC_MATCHING_CONSERVATIVE               = 0,           //Instructs the pattern matching algorithm to use the largest possible amount of information from the image at the expense of slowing down the speed of the algorithm.
-    IMAQ_GEOMETRIC_MATCHING_BALANCED                   = 1,           //Instructs the pattern matching algorithm to balance the amount of information from the image it uses with the speed of the algorithm.
-    IMAQ_GEOMETRIC_MATCHING_AGGRESSIVE                 = 2,           //Instructs the pattern matching algorithm to use a lower amount of information from the image, which allows the algorithm to run quickly but at the expense of accuracy.
-    IMAQ_GEOMETRIC_MATCHING_SEARCH_STRATEGY_SIZE_GUARD = 0xFFFFFFFF   
-} GeometricMatchingSearchStrategy;
-
-typedef enum ColorClassificationResolution_enum {
-    IMAQ_CLASSIFIER_LOW_RESOLUTION        = 0,           //Low resolution version of the color classifier.
-    IMAQ_CLASSIFIER_MEDIUM_RESOLUTION     = 1,           //Medium resolution version of the color classifier.
-    IMAQ_CLASSIFIER_HIGH_RESOLUTION       = 2,           //High resolution version of the color classifier.
-    IMAQ_CLASSIFIER_RESOLUTION_SIZE_GUARD = 0xFFFFFFFF   
-} ColorClassificationResolution;
-
-typedef enum ConnectionConstraintType_enum {
-    IMAQ_DISTANCE_CONSTRAINT              = 0,           //Specifies the distance, in pixels, within which the end points of two curves must lie in order to be considered part of a contour.
-    IMAQ_ANGLE_CONSTRAINT                 = 1,           //Specifies the range, in degrees, within which the difference between the angle of two curves, measured at the end points, must lie in order for the two curves to be considered part of a contour.
-    IMAQ_CONNECTIVITY_CONSTRAINT          = 2,           //Specifies the distance, in pixels, within which a line extended from the end point of a curve must pass the end point of another curve in order for the two curves to be considered part of a contour.
-    IMAQ_GRADIENT_CONSTRAINT              = 3,           //Specifies the range, in degrees, within which the gradient angles of two curves, measured at the end points, must lie in order for the two curves to be considered part of a contour.
-    IMAQ_NUM_CONNECTION_CONSTRAINT_TYPES  = 4,           //.
-    IMAQ_CONNECTION_CONSTRAINT_SIZE_GUARD = 0xFFFFFFFF   
-} ConnectionConstraintType;
-
-typedef enum Barcode2DContrast_enum {
-    IMAQ_ALL_BARCODE_2D_CONTRASTS       = 0,           //The function searches for barcodes of each contrast type.
-    IMAQ_BLACK_ON_WHITE_BARCODE_2D      = 1,           //The function searches for 2D barcodes containing black data on a white background.
-    IMAQ_WHITE_ON_BLACK_BARCODE_2D      = 2,           //The function searches for 2D barcodes containing white data on a black background.
-    IMAQ_BARCODE_2D_CONTRAST_SIZE_GUARD = 0xFFFFFFFF   
-} Barcode2DContrast;
-
-typedef enum QRModelType_enum {
-    IMAQ_QR_MODELTYPE_AUTO_DETECT = 0,           //Specifies that the function will auto-detect the type of QR code.
-    IMAQ_QR_MODELTYPE_MICRO       = 1,           //Specifies the QR code is of a micro type.
-    IMAQ_QR_MODELTYPE_MODEL1      = 2,           //Specifies the QR code is of a model1 type.
-    IMAQ_QR_MODELTYPE_MODEL2      = 3,           //Specifies the QR code is of a model2 type.
-    IMAQ_QR_MODEL_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} QRModelType;
-
-typedef enum WindowBackgroundFillStyle_enum {
-    IMAQ_FILL_STYLE_SOLID      = 0,           //Fill the display window with a solid color.
-    IMAQ_FILL_STYLE_HATCH      = 2,           //Fill the display window with a pattern defined by WindowBackgroundHatchStyle.
-    IMAQ_FILL_STYLE_DEFAULT    = 3,           //Fill the display window with the NI Vision default pattern.
-    IMAQ_FILL_STYLE_SIZE_GUARD = 0xFFFFFFFF   
-} WindowBackgroundFillStyle;
-
-typedef enum ExtractionMode_enum {
-    IMAQ_NORMAL_IMAGE               = 0,           //Specifies that the function makes no assumptions about the uniformity of objects in the image or the image background.
-    IMAQ_UNIFORM_REGIONS            = 1,           //Specifies that the function assumes that either the objects in the image or the image background consists of uniform pixel values.
-    IMAQ_EXTRACTION_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} ExtractionMode;
-
-typedef enum EdgeFilterSize_enum {
-    IMAQ_FINE                        = 0,           //Specifies that the function uses a fine (narrow) edge filter.
-    IMAQ_NORMAL                      = 1,           //Specifies that the function uses a normal edge filter.
-    IMAQ_CONTOUR_TRACING             = 2,           //Sets the Edge Filter Size to contour tracing, which provides the best results for contour extraction but increases the time required to process the image.
-    IMAQ_EDGE_FILTER_SIZE_SIZE_GUARD = 0xFFFFFFFF   
-} EdgeFilterSize;
-
-typedef enum Barcode2DSearchMode_enum {
-    IMAQ_SEARCH_MULTIPLE                   = 0,           //The function searches for multiple 2D barcodes.
-    IMAQ_SEARCH_SINGLE_CONSERVATIVE        = 1,           //The function searches for 2D barcodes using the same searching algorithm as IMAQ_SEARCH_MULTIPLE but stops searching after locating one valid barcode.
-    IMAQ_SEARCH_SINGLE_AGGRESSIVE          = 2,           //The function searches for a single 2D barcode using a method that assumes the barcode occupies a majority of the search region.
-    IMAQ_BARCODE_2D_SEARCH_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} Barcode2DSearchMode;
-
-typedef enum DataMatrixSubtype_enum {
-    IMAQ_ALL_DATA_MATRIX_SUBTYPES             = 0,           //The function searches for Data Matrix barcodes of all subtypes.
-    IMAQ_DATA_MATRIX_SUBTYPES_ECC_000_ECC_140 = 1,           //The function searches for Data Matrix barcodes of subtypes ECC 000, ECC 050, ECC 080, ECC 100 and ECC 140.
-    IMAQ_DATA_MATRIX_SUBTYPE_ECC_200          = 2,           //The function searches for Data Matrix ECC 200 barcodes.
-    IMAQ_DATA_MATRIX_SUBTYPE_SIZE_GUARD       = 0xFFFFFFFF   
-} DataMatrixSubtype;
-
-typedef enum FeatureType_enum {
-    IMAQ_NOT_FOUND_FEATURE                   = 0,           //Specifies the feature is not found.
-    IMAQ_CIRCLE_FEATURE                      = 1,           //Specifies the feature is a circle.
-    IMAQ_ELLIPSE_FEATURE                     = 2,           //Specifies the feature is an ellipse.
-    IMAQ_CONST_CURVE_FEATURE                 = 3,           //Specifies the features is a constant curve.
-    IMAQ_RECTANGLE_FEATURE                   = 4,           //Specifies the feature is a rectangle.
-    IMAQ_LEG_FEATURE                         = 5,           //Specifies the feature is a leg.
-    IMAQ_CORNER_FEATURE                      = 6,           //Specifies the feature is a corner.
-    IMAQ_PARALLEL_LINE_PAIR_FEATURE          = 7,           //Specifies the feature is a parallel line pair.
-    IMAQ_PAIR_OF_PARALLEL_LINE_PAIRS_FEATURE = 8,           //Specifies the feature is a pair of parallel line pairs.
-    IMAQ_LINE_FEATURE                        = 9,           //Specifies the feature is a line.
-    IMAQ_CLOSED_CURVE_FEATURE                = 10,          //Specifies the feature is a closed curve.
-    IMAQ_FEATURE_TYPE_SIZE_GUARD             = 0xFFFFFFFF   
-} FeatureType;
-
-typedef enum Barcode2DCellShape_enum {
-    IMAQ_SQUARE_CELLS                     = 0,           //The function uses an algorithm for decoding the 2D barcode that works with square data cells.
-    IMAQ_ROUND_CELLS                      = 1,           //The function uses an algorithm for decoding the 2D barcode that works with round data cells.
-    IMAQ_BARCODE_2D_CELL_SHAPE_SIZE_GUARD = 0xFFFFFFFF   
-} Barcode2DCellShape;
-
-typedef enum LocalThresholdMethod_enum {
-    IMAQ_NIBLACK                           = 0,           //The function computes thresholds for each pixel based on its local statistics using the Niblack local thresholding algorithm.
-    IMAQ_BACKGROUND_CORRECTION             = 1,           //The function performs background correction first to eliminate non-uniform lighting effects, then performs thresholding using the Otsu thresholding algorithm.
-    IMAQ_LOCAL_THRESHOLD_METHOD_SIZE_GUARD = 0xFFFFFFFF   
-} LocalThresholdMethod;
-
-typedef enum Barcode2DType_enum {
-    IMAQ_PDF417                     = 0,           //The 2D barcode is of type PDF417.
-    IMAQ_DATA_MATRIX_ECC_000        = 1,           //The 2D barcode is of type Data Matrix ECC 000.
-    IMAQ_DATA_MATRIX_ECC_050        = 2,           //The 2D barcode is of type Data Matrix ECC 050.
-    IMAQ_DATA_MATRIX_ECC_080        = 3,           //The 2D barcode is of type Data Matrix ECC 080.
-    IMAQ_DATA_MATRIX_ECC_100        = 4,           //The 2D barcode is of type Data Matrix ECC 100.
-    IMAQ_DATA_MATRIX_ECC_140        = 5,           //The 2D barcode is of type Data Matrix ECC 140.
-    IMAQ_DATA_MATRIX_ECC_200        = 6,           //The 2D barcode is of type Data Matrix ECC 200.
-    IMAQ_BARCODE_2D_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} Barcode2DType;
-
-typedef enum ClassifierEngineType_enum {
-    IMAQ_ENGINE_NONE                       = 0,           //No engine has been set on this classifier session.
-    IMAQ_ENGINE_NEAREST_NEIGHBOR           = 1,           //Nearest neighbor engine.
-    IMAQ_ENGINE_SUPPORT_VECTOR_MACHINE     = 2,           
-    IMAQ_CLASSIFIER_ENGINE_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} ClassifierEngineType;
-
-typedef enum ClassifierType_enum {
-    IMAQ_CLASSIFIER_CUSTOM          = 0,           //The classifier session classifies vectors of doubles.
-    IMAQ_CLASSIFIER_PARTICLE        = 1,           //The classifier session classifies particles in binary images.
-    IMAQ_CLASSIFIER_COLOR           = 2,           //The classifier session classifies an image based on its color.
-    IMAQ_CLASSIFIER_TEXTURE         = 3,           //The classifier session classifies an image based on its texture.
-    IMAQ_CLASSIFIER_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} ClassifierType;
-
-typedef enum ParticleType_enum {
-    IMAQ_PARTICLE_BRIGHT          = 0,           //Bright particles.
-    IMAQ_PARTICLE_DARK            = 1,           //Dark particles.
-    IMAQ_PARTICLE_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} ParticleType;
-
-typedef enum VisionInfoType2_enum {
-    IMAQ_VISIONINFO_CALIBRATION        = 0x01,        //Used to indicate interaction with the Calibration information in an image.
-    IMAQ_VISIONINFO_OVERLAY            = 0x02,        //Used to indicate interaction with the Overlay information in an image.
-    IMAQ_VISIONINFO_GRAYTEMPLATE       = 0x04,        //Used to indicate interaction with the grayscale template information in an image.
-    IMAQ_VISIONINFO_COLORTEMPLATE      = 0x08,        //Used to indicate interaction with the color template information in an image.
-    IMAQ_VISIONINFO_GEOMETRICTEMPLATE  = 0x10,        //Used to indicate interaction with the geometric template information in an image.
-    IMAQ_VISIONINFO_CUSTOMDATA         = 0x20,        //Used to indicate interaction with the binary or text Custom Data in an image.
-    IMAQ_VISIONINFO_GOLDENTEMPLATE     = 0x40,        //Used to indicate interaction with the golden template information in an image.
-    IMAQ_VISIONINFO_GEOMETRICTEMPLATE2 = 0x80,        //Used to indicate interaction with the geometric template 2 information in an image.
-    IMAQ_VISIONINFO_ALL                = 0xFFFFFFFF,  //Removes, checks for, or indicates the presence of all types of extra information in an image.
-} VisionInfoType2;
-
-typedef enum ReadClassifierFileMode_enum {
-    IMAQ_CLASSIFIER_READ_ALL                   = 0,           //Read all information from the classifier file.
-    IMAQ_CLASSIFIER_READ_SAMPLES               = 1,           //Read only the samples from the classifier file.
-    IMAQ_CLASSIFIER_READ_PROPERTIES            = 2,           //Read only the properties from the classifier file.
-    IMAQ_READ_CLASSIFIER_FILE_MODES_SIZE_GUARD = 0xFFFFFFFF   
-} ReadClassifierFileMode;
-
-typedef enum WriteClassifierFileMode_enum {
-    IMAQ_CLASSIFIER_WRITE_ALL                   = 0,           //Writes all information to the classifier file.
-    IMAQ_CLASSIFIER_WRITE_CLASSIFY_ONLY         = 1,           //Write only the information needed to classify to the classifier file.
-    IMAQ_WRITE_CLASSIFIER_FILE_MODES_SIZE_GUARD = 0xFFFFFFFF   
-} WriteClassifierFileMode;
-
-typedef enum Barcode2DShape_enum {
-    IMAQ_SQUARE_BARCODE_2D           = 0,           //The function searches for square 2D barcodes.
-    IMAQ_RECTANGULAR_BARCODE_2D      = 1,           //The function searches for rectangular 2D barcodes.
-    IMAQ_BARCODE_2D_SHAPE_SIZE_GUARD = 0xFFFFFFFF   
-} Barcode2DShape;
-
-typedef enum DataMatrixRotationMode_enum {
-    IMAQ_UNLIMITED_ROTATION                   = 0,           //The function allows for unlimited rotation.
-    IMAQ_0_DEGREES                            = 1,           //The function allows for between -5 and 5 degrees of rotation.
-    IMAQ_90_DEGREES                           = 2,           //The function allows for between 85 and 95 degrees of rotation.
-    IMAQ_180_DEGREES                          = 3,           //The function allows for between 175 and 185 degrees of rotation.
-    IMAQ_270_DEGREES                          = 4,           //The function allows for between 265 and 275 degrees of rotation.
-    IMAQ_DATA_MATRIX_ROTATION_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} DataMatrixRotationMode;
-
-typedef enum AIMGrade_enum {
-    IMAQ_AIM_GRADE_F                      = 0,           //The Data Matrix barcode received a grade of F.
-    IMAQ_AIM_GRADE_D                      = 1,           //The Data Matrix barcode received a grade of D.
-    IMAQ_AIM_GRADE_C                      = 2,           //The Data Matrix barcode received a grade of C.
-    IMAQ_AIM_GRADE_B                      = 3,           //The Data Matrix barcode received a grade of B.
-    IMAQ_AIM_GRADE_A                      = 4,           //The Data Matrix barcode received a grade of A.
-    IMAQ_DATA_MATRIX_AIM_GRADE_SIZE_GUARD = 0xFFFFFFFF   
-} AIMGrade;
-
-typedef enum DataMatrixCellFillMode_enum {
-    IMAQ_AUTO_DETECT_CELL_FILL_MODE            = -2,          //Sets the function to determine the Data Matrix barcode cell fill percentage automatically.
-    IMAQ_LOW_FILL                              = 0,           //Sets the function to read Data Matrix barcodes with a cell fill percentage of less than 30 percent.
-    IMAQ_NORMAL_FILL                           = 1,           //Sets the function to read Data Matrix barcodes with a cell fill percentage greater than or equal to 30 percent.
-    IMAQ_DATA_MATRIX_CELL_FILL_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} DataMatrixCellFillMode;
-
-typedef enum DataMatrixDemodulationMode_enum {
-    IMAQ_AUTO_DETECT_DEMODULATION_MODE            = -2,          //The function will try each demodulation mode and use the one which decodes the Data Matrix barcode within the fewest iterations and utilizing the least amount of error correction.
-    IMAQ_HISTOGRAM                                = 0,           //The function uses a histogram of all of the Data Matrix cells to calculate a threshold.
-    IMAQ_LOCAL_CONTRAST                           = 1,           //The function examines each of the cell's neighbors to determine if the cell is on or off.
-    IMAQ_COMBINED                                 = 2,           //The function uses the histogram of the Data Matrix barcode to calculate a threshold.
-    IMAQ_ALL_DEMODULATION_MODES                   = 3,           //The function tries IMAQ_HISTOGRAM, then IMAQ_LOCAL_CONTRAST and then IMAQ_COMBINATION, stopping once one mode is successful.
-    IMAQ_DATA_MATRIX_DEMODULATION_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} DataMatrixDemodulationMode;
-
-typedef enum DataMatrixECC_enum {
-    IMAQ_AUTO_DETECT_ECC            = -2,          //Sets the function to determine the Data Matrix barcode ECC automatically.
-    IMAQ_ECC_000                    = 0,           //Sets the function to read Data Matrix barcodes of ECC 000 only.
-    IMAQ_ECC_050                    = 50,          //Sets the function to read Data Matrix barcodes of ECC 050 only.
-    IMAQ_ECC_080                    = 80,          //Sets the function to read Data Matrix barcodes of ECC 080 only.
-    IMAQ_ECC_100                    = 100,         //Sets the function to read Data Matrix barcodes of ECC 100 only.
-    IMAQ_ECC_140                    = 140,         //Sets the function to read Data Matrix barcodes of ECC 140 only.
-    IMAQ_ECC_000_140                = 190,         //Sets the function to read Data Matrix barcodes of ECC 000, ECC 050, ECC 080, ECC 100, and ECC 140 only.
-    IMAQ_ECC_200                    = 200,         //Sets the function to read Data Matrix barcodes of ECC 200 only.
-    IMAQ_DATA_MATRIX_ECC_SIZE_GUARD = 0xFFFFFFFF   
-} DataMatrixECC;
-
-typedef enum DataMatrixPolarity_enum {
-    IMAQ_AUTO_DETECT_POLARITY            = -2,          //Sets the function to determine the Data Matrix barcode polarity automatically.
-    IMAQ_BLACK_DATA_ON_WHITE_BACKGROUND  = 0,           //Sets the function to read Data Matrix barcodes with dark data on a bright background.
-    IMAQ_WHITE_DATA_ON_BLACK_BACKGROUND  = 1,           //Sets the function to read Data Matrix barcodes with bright data on a dark background.
-    IMAQ_DATA_MATRIX_POLARITY_SIZE_GUARD = 0xFFFFFFFF   
-} DataMatrixPolarity;
-
-typedef enum DataMatrixCellFilterMode_enum {
-    IMAQ_AUTO_DETECT_CELL_FILTER_MODE            = -2,          //The function will try all filter modes and uses the one that decodes the Data Matrix barcode within the fewest iterations and utilizing the least amount of error correction.
-    IMAQ_AVERAGE_FILTER                          = 0,           //The function sets the pixel value for the cell to the average of the sampled pixels.
-    IMAQ_MEDIAN_FILTER                           = 1,           //The function sets the pixel value for the cell to the median of the sampled pixels.
-    IMAQ_CENTRAL_AVERAGE_FILTER                  = 2,           //The function sets the pixel value for the cell to the average of the pixels in the center of the cell sample.
-    IMAQ_HIGH_AVERAGE_FILTER                     = 3,           //The function sets the pixel value for the cell to the average value of the half of the sampled pixels with the highest pixel values.
-    IMAQ_LOW_AVERAGE_FILTER                      = 4,           //The function sets the pixel value for the cell to the average value of the half of the sampled pixels with the lowest pixel values.
-    IMAQ_VERY_HIGH_AVERAGE_FILTER                = 5,           //The function sets the pixel value for the cell to the average value of the ninth of the sampled pixels with the highest pixel values.
-    IMAQ_VERY_LOW_AVERAGE_FILTER                 = 6,           //The function sets the pixel value for the cell to the average value of the ninth of the sampled pixels with the lowest pixel values.
-    IMAQ_ALL_CELL_FILTERS                        = 8,           //The function tries each filter mode, starting with IMAQ_AVERAGE_FILTER and ending with IMAQ_VERY_LOW_AVERAGE_FILTER, stopping once a filter mode decodes correctly.
-    IMAQ_DATA_MATRIX_CELL_FILTER_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} DataMatrixCellFilterMode;
-
-typedef enum WindowBackgroundHatchStyle_enum {
-    IMAQ_HATCH_STYLE_HORIZONTAL        = 0,           //The background of the display window will be horizontal bars.
-    IMAQ_HATCH_STYLE_VERTICAL          = 1,           //The background of the display window will be vertical bars.
-    IMAQ_HATCH_STYLE_FORWARD_DIAGONAL  = 2,           //The background of the display window will be diagonal bars.
-    IMAQ_HATCH_STYLE_BACKWARD_DIAGONAL = 3,           //The background of the display window will be diagonal bars.
-    IMAQ_HATCH_STYLE_CROSS             = 4,           //The background of the display window will be intersecting horizontal and vertical bars.
-    IMAQ_HATCH_STYLE_CROSS_HATCH       = 5,           //The background of the display window will be intersecting forward and backward diagonal bars.
-    IMAQ_HATCH_STYLE_SIZE_GUARD        = 0xFFFFFFFF   
-} WindowBackgroundHatchStyle;
-
-typedef enum DataMatrixMirrorMode_enum {
-    IMAQ_AUTO_DETECT_MIRROR                 = -2,          //Specifies that the function should determine if the Data Matrix barcode is mirrored.
-    IMAQ_APPEARS_NORMAL                     = 0,           //Specifies that the function should expect the Data Matrix barcode to appear normal.
-    IMAQ_APPEARS_MIRRORED                   = 1,           //Specifies that the function should expect the Data Matrix barcode to appear mirrored.
-    IMAQ_DATA_MATRIX_MIRROR_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} DataMatrixMirrorMode;
-
-typedef enum CalibrationMode2_enum {
-    IMAQ_PERSPECTIVE_MODE             = 0,           //Functions correct for distortion caused by the camera's perspective.
-    IMAQ_MICROPLANE_MODE              = 1,           //Functions correct for distortion caused by the camera's lens.
-    IMAQ_SIMPLE_CALIBRATION_MODE      = 2,           //Functions do not correct for distortion.
-    IMAQ_CORRECTED_IMAGE_MODE         = 3,           //The image is already corrected.
-    IMAQ_NO_CALIBRATION_MODE          = 4,           //Image with No calibration.
-    IMAQ_CALIBRATION_MODE2_SIZE_GUARD = 0xFFFFFFFF   
-} CalibrationMode2;
-
-typedef enum DataMatrixGradingMode_enum {
-    IMAQ_NO_GRADING                          = 0,           //The function does not make any preparatory calculations.
-    IMAQ_PREPARE_FOR_AIM                     = 1,           //The function prepares the image for grading using the AIM Print Quality metrics.
-    IMAQ_DATA_MATRIX_GRADING_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} DataMatrixGradingMode;
-
-typedef enum WaveletTransformMode_enum {
-    IMAQ_WAVELET_TRANSFORM_INTEGER         = 0,           //Uses a 5-3 reversible integer transform.
-    IMAQ_WAVELET_TRANSFORM_FLOATING_POINT  = 1,           //Performs a 9-7 irreversible floating-point transform.
-    IMAQ_WAVELET_TRANSFORM_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} WaveletTransformMode;
-
-typedef enum NormalizationMethod_enum {
-    IMAQ_NORMALIZATION_NONE               = 0,           //No normalization.
-    IMAQ_NORMALIZATION_HISTOGRAM_MATCHING = 1,           //Adjust image so its histogram is similar to the golden template's histogram.
-    IMAQ_NORMALIZATION_AVERAGE_MATCHING   = 2,           //Adjust image so its mean pixel value equals the golden template's mean pixel value.
-    IMAQ_NORMALIZATION_SIZE_GUARD         = 0xFFFFFFFF   
-} NormalizationMethod;
-
-typedef enum RegistrationMethod_enum {
-    IMAQ_REGISTRATION_NONE        = 0,           //No registration.
-    IMAQ_REGISTRATION_PERSPECTIVE = 1,           //Adjust image to correct for minor variations in alignment or perspective.
-    IMAQ_REGISTRATION_SIZE_GUARD  = 0xFFFFFFFF   
-} RegistrationMethod;
-
-typedef enum LinearAveragesMode_enum {
-    IMAQ_COLUMN_AVERAGES                 = 1,           //Specifies that the function calculates the mean pixel value of each column.
-    IMAQ_ROW_AVERAGES                    = 2,           //Specifies that the function calculates the mean pixel value of each row.
-    IMAQ_RISING_DIAGONAL_AVERAGES        = 4,           //Specifies that the function calculates the mean pixel value of each diagonal running from the lower left to the upper right of the inspected area of the image.
-    IMAQ_FALLING_DIAGONAL_AVERAGES       = 8,           //Specifies that the function calculates the mean pixel value of each diagonal running from the upper left to the lower right of the inspected area of the image.
-    IMAQ_ALL_LINEAR_AVERAGES             = 15,          //Specifies that the function calculates all four linear mean pixel values.
-    IMAQ_LINEAR_AVERAGES_MODE_SIZE_GUARD = 0xFFFFFFFF   
-} LinearAveragesMode;
-
-typedef enum CompressionType_enum {
-    IMAQ_COMPRESSION_NONE            = 0,           //Specifies that the function should not compress the image.
-    IMAQ_COMPRESSION_JPEG            = 1,           //Specifies that the function should use lossy JPEG compression on the image.
-    IMAQ_COMPRESSION_PACKED_BINARY   = 2,           //Specifies that the function should use lossless binary packing on the image.
-    IMAQ_COMPRESSION_TYPE_SIZE_GUARD = 0xFFFFFFFF   
-} CompressionType;
-
-typedef enum FlattenType_enum {
-    IMAQ_FLATTEN_IMAGE                 = 0,           //Flattens just the image data.
-    IMAQ_FLATTEN_IMAGE_AND_VISION_INFO = 1,           //Flattens the image data and any Vision information associated with the image.
-    IMAQ_FLATTEN_TYPE_SIZE_GUARD       = 0xFFFFFFFF   
-} FlattenType;
-
-typedef enum DataMatrixCellSampleSize_enum {
-    IMAQ_AUTO_DETECT_CELL_SAMPLE_SIZE            = -2,          //The function will try each sample size and use the one which decodes the Data Matrix barcode within the fewest iterations and utilizing the least amount of error correction.
-    IMAQ_1x1                                     = 1,           //The function will use a 1x1 sized sample from each cell.
-    IMAQ_2x2                                     = 2,           //The function will use a 2x2 sized sample from each cell.
-    IMAQ_3x3                                     = 3,           //The function will use a 3x3 sized sample from each cell.
-    IMAQ_4x4                                     = 4,           //The function will use a 4x4 sized sample from each cell.
-    IMAQ_5x5                                     = 5,           //The function will use a 5x5 sized sample from each cell.
-    IMAQ_6x6                                     = 6,           //The function will use a 6x6 sized sample from each cell.
-    IMAQ_7x7                                     = 7,           //The function will use a 7x7 sized sample from each cell.
-    IMAQ_DATA_MATRIX_CELL_SAMPLE_SIZE_SIZE_GUARD = 0xFFFFFFFF   
-} DataMatrixCellSampleSize;
-
-
-//============================================================================
-//  Forward Declare Data Structures
-//============================================================================
-typedef struct Image_struct Image;
-typedef struct ROI_struct ROI;
-typedef struct Overlay_struct Overlay;
-typedef struct ClassifierSession_struct ClassifierSession;
-typedef struct MultipleGeometricPattern_struct MultipleGeometricPattern;
-typedef int ContourID;
-typedef unsigned long SESSION_ID;
-typedef int	AVISession;
-typedef char* FilterName;
-typedef char String255[256];
-typedef struct CharSet_struct CharSet;
-typedef struct OCRSpacingOptions_struct OCRSpacingOptions;
-typedef struct OCRProcessingOptions_struct OCRProcessingOptions;
-typedef struct ReadTextOptions_struct ReadTextOptions;
-typedef struct CharInfo_struct CharInfo;
-typedef struct CharReport_struct CharReport;
-typedef struct ReadTextReport_struct ReadTextReport;
-typedef struct DivisionModel_struct DivisionModel;
-typedef struct FocalLength_struct FocalLength;
-typedef struct PolyModel_struct PolyModel;
-typedef struct DistortionModelParams_struct DistortionModelParams;
-typedef struct PointFloat_struct PointFloat;
-typedef struct InternalParameters_struct InternalParameters;
-typedef struct MaxGridSize_struct MaxGridSize;
-typedef struct ImageSize_struct ImageSize;
-typedef struct CalibrationReferencePoints_struct CalibrationReferencePoints;
-typedef struct GetCameraParametersReport_struct GetCameraParametersReport;
-typedef struct CalibrationAxisInfo_struct CalibrationAxisInfo;
-typedef struct CalibrationLearnSetupInfo_struct CalibrationLearnSetupInfo;
-typedef struct GridDescriptor_struct GridDescriptor;
-typedef struct ErrorStatistics_struct ErrorStatistics;
-typedef struct GetCalibrationInfoReport_struct GetCalibrationInfoReport;
-typedef struct EdgePolarity_struct EdgePolarity;
-typedef struct ClampSettings_struct ClampSettings;
-typedef struct PointDouble_struct PointDouble;
-typedef struct PointDoublePair_struct PointDoublePair;
-typedef struct ClampResults_struct ClampResults;
-typedef struct ClampPoints_struct ClampPoints;
-typedef struct RGBValue_struct RGBValue;
-typedef struct ClampOverlaySettings_struct ClampOverlaySettings;
-typedef struct ClampMax2Report_struct ClampMax2Report;
-typedef struct ContourFitSplineReport_struct ContourFitSplineReport;
-typedef struct LineFloat_struct LineFloat;
-typedef struct LineEquation_struct LineEquation;
-typedef struct ContourFitLineReport_struct ContourFitLineReport;
-typedef struct ContourFitPolynomialReport_struct ContourFitPolynomialReport;
-typedef struct PartialCircle_struct PartialCircle;
-typedef struct PartialEllipse_struct PartialEllipse;
-typedef struct SetupMatchPatternData_struct SetupMatchPatternData;
-typedef struct RangeSettingDouble_struct RangeSettingDouble;
-typedef struct GeometricAdvancedSetupDataOption_struct GeometricAdvancedSetupDataOption;
-typedef struct ContourInfoReport_struct ContourInfoReport;
-typedef struct ROILabel_struct ROILabel;
-typedef struct SupervisedColorSegmentationReport_struct SupervisedColorSegmentationReport;
-typedef struct LabelToROIReport_struct LabelToROIReport;
-typedef struct ColorSegmenationOptions_struct ColorSegmenationOptions;
-typedef struct ClassifiedCurve_struct ClassifiedCurve;
-typedef struct RangeDouble_struct RangeDouble;
-typedef struct RangeLabel_struct RangeLabel;
-typedef struct CurvatureAnalysisReport_struct CurvatureAnalysisReport;
-typedef struct Disparity_struct Disparity;
-typedef struct ComputeDistancesReport_struct ComputeDistancesReport;
-typedef struct MatchMode_struct MatchMode;
-typedef struct ClassifiedDisparity_struct ClassifiedDisparity;
-typedef struct ClassifyDistancesReport_struct ClassifyDistancesReport;
-typedef struct ContourComputeCurvatureReport_struct ContourComputeCurvatureReport;
-typedef struct ContourOverlaySettings_struct ContourOverlaySettings;
-typedef struct CurveParameters_struct CurveParameters;
-typedef struct ExtractContourReport_struct ExtractContourReport;
-typedef struct ConnectionConstraint_struct ConnectionConstraint;
-typedef struct ExtractTextureFeaturesReport_struct ExtractTextureFeaturesReport;
-typedef struct WaveletBandsReport_struct WaveletBandsReport;
-typedef struct CircleFitOptions_struct CircleFitOptions;
-typedef struct EdgeOptions2_struct EdgeOptions2;
-typedef struct FindCircularEdgeOptions_struct FindCircularEdgeOptions;
-typedef struct FindConcentricEdgeOptions_struct FindConcentricEdgeOptions;
-typedef struct ConcentricEdgeFitOptions_struct ConcentricEdgeFitOptions;
-typedef struct FindConcentricEdgeReport_struct FindConcentricEdgeReport;
-typedef struct FindCircularEdgeReport_struct FindCircularEdgeReport;
-typedef struct WindowSize_struct WindowSize;
-typedef struct DisplacementVector_struct DisplacementVector;
-typedef struct WaveletOptions_struct WaveletOptions;
-typedef struct CooccurrenceOptions_struct CooccurrenceOptions;
-typedef struct ParticleClassifierLocalThresholdOptions_struct ParticleClassifierLocalThresholdOptions;
-typedef struct RangeFloat_struct RangeFloat;
-typedef struct ParticleClassifierAutoThresholdOptions_struct ParticleClassifierAutoThresholdOptions;
-typedef struct ParticleClassifierPreprocessingOptions2_struct ParticleClassifierPreprocessingOptions2;
-typedef struct MeasureParticlesReport_struct MeasureParticlesReport;
-typedef struct GeometricPatternMatch3_struct GeometricPatternMatch3;
-typedef struct MatchGeometricPatternAdvancedOptions3_struct MatchGeometricPatternAdvancedOptions3;
-typedef struct ColorOptions_struct ColorOptions;
-typedef struct SampleScore_struct SampleScore;
-typedef struct ClassifierReportAdvanced_struct ClassifierReportAdvanced;
-typedef struct LearnGeometricPatternAdvancedOptions2_struct LearnGeometricPatternAdvancedOptions2;
-typedef struct ParticleFilterOptions2_struct ParticleFilterOptions2;
-typedef struct FindEdgeOptions2_struct FindEdgeOptions2;
-typedef struct FindEdgeReport_struct FindEdgeReport;
-typedef struct FindTransformRectOptions2_struct FindTransformRectOptions2;
-typedef struct FindTransformRectsOptions2_struct FindTransformRectsOptions2;
-typedef struct ReadTextReport3_struct ReadTextReport3;
-typedef struct CharacterStatistics_struct CharacterStatistics;
-typedef struct CharReport3_struct CharReport3;
-typedef struct ArcInfo2_struct ArcInfo2;
-typedef struct EdgeReport2_struct EdgeReport2;
-typedef struct SearchArcInfo_struct SearchArcInfo;
-typedef struct ConcentricRakeReport2_struct ConcentricRakeReport2;
-typedef struct SpokeReport2_struct SpokeReport2;
-typedef struct EdgeInfo_struct EdgeInfo;
-typedef struct SearchLineInfo_struct SearchLineInfo;
-typedef struct RakeReport2_struct RakeReport2;
-typedef struct TransformBehaviors_struct TransformBehaviors;
-typedef struct QRCodeDataToken_struct QRCodeDataToken;
-typedef struct ParticleFilterOptions_struct ParticleFilterOptions;
-typedef struct StraightEdgeReport2_struct StraightEdgeReport2;
-typedef struct StraightEdgeOptions_struct StraightEdgeOptions;
-typedef struct StraightEdge_struct StraightEdge;
-typedef struct QRCodeSearchOptions_struct QRCodeSearchOptions;
-typedef struct QRCodeSizeOptions_struct QRCodeSizeOptions;
-typedef struct QRCodeDescriptionOptions_struct QRCodeDescriptionOptions;
-typedef struct QRCodeReport_struct QRCodeReport;
-typedef struct AIMGradeReport_struct AIMGradeReport;
-typedef struct DataMatrixSizeOptions_struct DataMatrixSizeOptions;
-typedef struct DataMatrixDescriptionOptions_struct DataMatrixDescriptionOptions;
-typedef struct DataMatrixSearchOptions_struct DataMatrixSearchOptions;
-typedef struct DataMatrixReport_struct DataMatrixReport;
-typedef struct JPEG2000FileAdvancedOptions_struct JPEG2000FileAdvancedOptions;
-typedef struct MatchGeometricPatternAdvancedOptions2_struct MatchGeometricPatternAdvancedOptions2;
-typedef struct InspectionAlignment_struct InspectionAlignment;
-typedef struct InspectionOptions_struct InspectionOptions;
-typedef struct CharReport2_struct CharReport2;
-typedef struct CharInfo2_struct CharInfo2;
-typedef struct ReadTextReport2_struct ReadTextReport2;
-typedef struct EllipseFeature_struct EllipseFeature;
-typedef struct CircleFeature_struct CircleFeature;
-typedef struct ConstCurveFeature_struct ConstCurveFeature;
-typedef struct RectangleFeature_struct RectangleFeature;
-typedef struct LegFeature_struct LegFeature;
-typedef struct CornerFeature_struct CornerFeature;
-typedef struct LineFeature_struct LineFeature;
-typedef struct ParallelLinePairFeature_struct ParallelLinePairFeature;
-typedef struct PairOfParallelLinePairsFeature_struct PairOfParallelLinePairsFeature;
-typedef union GeometricFeature_union GeometricFeature;
-typedef struct FeatureData_struct FeatureData;
-typedef struct GeometricPatternMatch2_struct GeometricPatternMatch2;
-typedef struct ClosedCurveFeature_struct ClosedCurveFeature;
-typedef struct LineMatch_struct LineMatch;
-typedef struct LineDescriptor_struct LineDescriptor;
-typedef struct RectangleDescriptor_struct RectangleDescriptor;
-typedef struct RectangleMatch_struct RectangleMatch;
-typedef struct EllipseDescriptor_struct EllipseDescriptor;
-typedef struct EllipseMatch_struct EllipseMatch;
-typedef struct CircleMatch_struct CircleMatch;
-typedef struct CircleDescriptor_struct CircleDescriptor;
-typedef struct ShapeDetectionOptions_struct ShapeDetectionOptions;
-typedef struct Curve_struct Curve;
-typedef struct CurveOptions_struct CurveOptions;
-typedef struct Barcode2DInfo_struct Barcode2DInfo;
-typedef struct DataMatrixOptions_struct DataMatrixOptions;
-typedef struct ClassifierAccuracyReport_struct ClassifierAccuracyReport;
-typedef struct NearestNeighborClassResult_struct NearestNeighborClassResult;
-typedef struct NearestNeighborTrainingReport_struct NearestNeighborTrainingReport;
-typedef struct ParticleClassifierPreprocessingOptions_struct ParticleClassifierPreprocessingOptions;
-typedef struct ClassifierSampleInfo_struct ClassifierSampleInfo;
-typedef struct ClassScore_struct ClassScore;
-typedef struct ClassifierReport_struct ClassifierReport;
-typedef struct NearestNeighborOptions_struct NearestNeighborOptions;
-typedef struct ParticleClassifierOptions_struct ParticleClassifierOptions;
-typedef struct RGBU64Value_struct RGBU64Value;
-typedef struct GeometricPatternMatch_struct GeometricPatternMatch;
-typedef struct MatchGeometricPatternAdvancedOptions_struct MatchGeometricPatternAdvancedOptions;
-typedef struct MatchGeometricPatternOptions_struct MatchGeometricPatternOptions;
-typedef struct LearnGeometricPatternAdvancedOptions_struct LearnGeometricPatternAdvancedOptions;
-typedef struct FitEllipseOptions_struct FitEllipseOptions;
-typedef struct FitCircleOptions_struct FitCircleOptions;
-typedef struct ConstructROIOptions2_struct ConstructROIOptions2;
-typedef struct HSLValue_struct HSLValue;
-typedef struct HSVValue_struct HSVValue;
-typedef struct HSIValue_struct HSIValue;
-typedef struct CIELabValue_struct CIELabValue;
-typedef struct CIEXYZValue_struct CIEXYZValue;
-typedef union Color2_union Color2;
-typedef struct BestEllipse2_struct BestEllipse2;
-typedef struct LearnPatternAdvancedOptions_struct LearnPatternAdvancedOptions;
-typedef struct AVIInfo_struct AVIInfo;
-typedef struct LearnPatternAdvancedShiftOptions_struct LearnPatternAdvancedShiftOptions;
-typedef struct LearnPatternAdvancedRotationOptions_struct LearnPatternAdvancedRotationOptions;
-typedef struct MatchPatternAdvancedOptions_struct MatchPatternAdvancedOptions;
-typedef struct ParticleFilterCriteria2_struct ParticleFilterCriteria2;
-typedef struct BestCircle2_struct BestCircle2;
-typedef struct OCRSpacingOptions_struct OCRSpacingOptions;
-typedef struct OCRProcessingOptions_struct OCRProcessingOptions;
-typedef struct ReadTextOptions_struct ReadTextOptions;
-typedef struct CharInfo_struct CharInfo;
-#if !defined(USERINT_HEADER) && !defined(_CVI_RECT_DEFINED)
-typedef struct Rect_struct Rect;
-#endif
-typedef struct CharReport_struct CharReport;
-typedef struct ReadTextReport_struct ReadTextReport;
-#if !defined(USERINT_HEADER) && !defined(_CVI_POINT_DEFINED)
-typedef struct Point_struct Point;
-#endif
-typedef struct Annulus_struct Annulus;
-typedef struct EdgeLocationReport_struct EdgeLocationReport;
-typedef struct EdgeOptions_struct EdgeOptions;
-typedef struct EdgeReport_struct EdgeReport;
-typedef struct ExtremeReport_struct ExtremeReport;
-typedef struct FitLineOptions_struct FitLineOptions;
-typedef struct DisplayMapping_struct DisplayMapping;
-typedef struct DetectExtremesOptions_struct DetectExtremesOptions;
-typedef struct ImageInfo_struct ImageInfo;
-typedef struct LCDOptions_struct LCDOptions;
-typedef struct LCDReport_struct LCDReport;
-typedef struct LCDSegments_struct LCDSegments;
-typedef struct LearnCalibrationOptions_struct LearnCalibrationOptions;
-typedef struct LearnColorPatternOptions_struct LearnColorPatternOptions;
-typedef struct Line_struct Line;
-typedef struct LinearAverages_struct LinearAverages;
-typedef struct LineProfile_struct LineProfile;
-typedef struct MatchColorPatternOptions_struct MatchColorPatternOptions;
-typedef struct HistogramReport_struct HistogramReport;
-typedef struct ArcInfo_struct ArcInfo;
-typedef struct AxisReport_struct AxisReport;
-typedef struct BarcodeInfo_struct BarcodeInfo;
-typedef struct BCGOptions_struct BCGOptions;
-typedef struct BestCircle_struct BestCircle;
-typedef struct BestEllipse_struct BestEllipse;
-typedef struct BestLine_struct BestLine;
-typedef struct BrowserOptions_struct BrowserOptions;
-typedef struct CoordinateSystem_struct CoordinateSystem;
-typedef struct CalibrationInfo_struct CalibrationInfo;
-typedef struct CalibrationPoints_struct CalibrationPoints;
-typedef struct CaliperOptions_struct CaliperOptions;
-typedef struct CaliperReport_struct CaliperReport;
-typedef struct DrawTextOptions_struct DrawTextOptions;
-typedef struct CircleReport_struct CircleReport;
-typedef struct ClosedContour_struct ClosedContour;
-typedef struct ColorHistogramReport_struct ColorHistogramReport;
-typedef struct ColorInformation_struct ColorInformation;
-typedef struct Complex_struct Complex;
-typedef struct ConcentricRakeReport_struct ConcentricRakeReport;
-typedef struct ConstructROIOptions_struct ConstructROIOptions;
-typedef struct ContourInfo_struct ContourInfo;
-typedef union ContourUnion_union ContourUnion;
-typedef struct ContourInfo2_struct ContourInfo2;
-typedef struct ContourPoint_struct ContourPoint;
-typedef struct CoordinateTransform_struct CoordinateTransform;
-typedef struct CoordinateTransform2_struct CoordinateTransform2;
-typedef struct CannyOptions_struct CannyOptions;
-typedef struct Range_struct Range;
-typedef struct UserPointSymbol_struct UserPointSymbol;
-typedef struct View3DOptions_struct View3DOptions;
-typedef struct MatchPatternOptions_struct MatchPatternOptions;
-typedef struct TIFFFileOptions_struct TIFFFileOptions;
-typedef union Color_union Color;
-typedef union PixelValue_union PixelValue;
-typedef struct OpenContour_struct OpenContour;
-typedef struct OverlayTextOptions_struct OverlayTextOptions;
-typedef struct ParticleFilterCriteria_struct ParticleFilterCriteria;
-typedef struct ParticleReport_struct ParticleReport;
-typedef struct PatternMatch_struct PatternMatch;
-typedef struct QuantifyData_struct QuantifyData;
-typedef struct QuantifyReport_struct QuantifyReport;
-typedef struct RakeOptions_struct RakeOptions;
-typedef struct RakeReport_struct RakeReport;
-typedef struct TransformReport_struct TransformReport;
-typedef struct ShapeReport_struct ShapeReport;
-typedef struct MeterArc_struct MeterArc;
-typedef struct ThresholdData_struct ThresholdData;
-typedef struct StructuringElement_struct StructuringElement;
-typedef struct SpokeReport_struct SpokeReport;
-typedef struct SimpleEdgeOptions_struct SimpleEdgeOptions;
-typedef struct SelectParticleCriteria_struct SelectParticleCriteria;
-typedef struct SegmentInfo_struct SegmentInfo;
-typedef struct RotationAngleRange_struct RotationAngleRange;
-typedef struct RotatedRect_struct RotatedRect;
-typedef struct ROIProfile_struct ROIProfile;
-typedef struct ToolWindowOptions_struct ToolWindowOptions;
-typedef struct SpokeOptions_struct SpokeOptions;
-
-//============================================================================
-// Data Structures
-//============================================================================
-#if !defined __GNUC__ && !defined _M_X64
-#pragma pack(push,1)
-#endif
-typedef struct DivisionModel_struct {
-    float kappa; //The learned kappa coefficient of division model.
-} DivisionModel;
-
-typedef struct FocalLength_struct {
-    float fx; //Focal length in X direction.
-    float fy; //Focal length in Y direction.
-} FocalLength;
-
-typedef struct PolyModel_struct {
-    float*       kCoeffs;    //The learned radial coefficients of polynomial model.
-    unsigned int numKCoeffs; //Number of K coefficients.
-    float        p1;         //The P1(learned tangential coefficients of polynomial model).
-    float        p2;         //The P2(learned tangential coefficients of polynomial model).
-} PolyModel;
-
-typedef struct DistortionModelParams_struct {
-    DistortionModel distortionModel; //Type of learned distortion model.
-    PolyModel       polyModel;       //The learned coefficients of polynomial model.
-    DivisionModel   divisionModel;   //The learned coefficient of division model.
-} DistortionModelParams;
-
-typedef struct PointFloat_struct {
-    float x; //The x-coordinate of the point.
-    float y; //The y-coordinate of the point.
-} PointFloat;
-
-typedef struct InternalParameters_struct {
-    char        isInsufficientData; 
-    FocalLength focalLength;        
-    PointFloat  opticalCenter;      
-} InternalParameters;
-
-typedef struct MaxGridSize_struct {
-    unsigned int xMax; //Maximum x limit for the grid size.
-    unsigned int yMax; //Maximum y limit for the grid size.
-} MaxGridSize;
-
-typedef struct ImageSize_struct {
-    unsigned int xRes; //X resolution of the image.
-    unsigned int yRes; //Y resolution of the image.
-} ImageSize;
-
-typedef struct CalibrationReferencePoints_struct {
-    PointDouble*    pixelCoords;    //Specifies the coordinates of the pixel reference points.
-    unsigned int    numPixelCoords; //Number of pixel coordinates.
-    PointDouble*    realCoords;     //Specifies the measuring unit associated with the image.
-    unsigned int    numRealCoords;  //Number of real coordinates.
-    CalibrationUnit units;          //Specifies the units of X Step and Y Step.
-    ImageSize       imageSize;      //Specifies the size of calibration template image.
-} CalibrationReferencePoints;
-
-typedef struct GetCameraParametersReport_struct {
-    double*               projectionMatrix;     //The projection(homography) matrix of working plane.
-    unsigned int          projectionMatrixRows; //Number of rows in projection matrix.
-    unsigned int          projectionMatrixCols; //Number of columns in projection matrix.
-    DistortionModelParams distortion;           //Distortion model Coefficients.
-    InternalParameters    internalParams;       //The learned internal paramters of camera model such as focal length and optical center.
-} GetCameraParametersReport;
-
-typedef struct CalibrationAxisInfo_struct {
-    PointFloat      center;        //The origin of the reference coordinate system, expressed in pixel units.
-    float           rotationAngle; //The angle of the x-axis of the real-world coordinate system, in relation to the horizontal.
-    AxisOrientation axisDirection; //Specifies the direction of the calibraiton axis which is either Direct or Indirect.
-} CalibrationAxisInfo;
-
-typedef struct CalibrationLearnSetupInfo_struct {
-    CalibrationMode2 calibrationMethod;    //Type of calibration method used.
-    DistortionModel  distortionModel;      //Type of learned distortion model.
-    ScalingMethod    scaleMode;            //The aspect scaling to use when correcting an image.
-    CalibrationROI   roiMode;              //The ROI to use when correcting an image.
-    char             learnCorrectionTable; //Set this input to true value if you want the correction table to be determined and stored.
-} CalibrationLearnSetupInfo;
-
-typedef struct GridDescriptor_struct {
-    float           xStep; //The distance in the x direction between two adjacent pixels in units specified by unit.
-    float           yStep; //The distance in the y direction between two adjacent pixels in units specified by unit.
-    CalibrationUnit unit;  //The unit of measure for the image.
-} GridDescriptor;
-
-typedef struct ErrorStatistics_struct {
-    double mean;              //Mean error statistics value.
-    double maximum;           //Maximum value of error.
-    double standardDeviation; //The standard deviation error statistiscs value.
-    double distortion;        //The distortion error statistics value.
-} ErrorStatistics;
-
-typedef struct GetCalibrationInfoReport_struct {
-    ROI*                      userRoi;         //Specifies the ROI the user provided when learning the calibration.
-    ROI*                      calibrationRoi;  //Specifies the ROI that corresponds to the region of the image where the calibration information is accurate.
-    CalibrationAxisInfo       axisInfo;        //Reference Coordinate System for the real-world coordinates.
-    CalibrationLearnSetupInfo learnSetupInfo;  //Calibration learn setup information.
-    GridDescriptor            gridDescriptor;  //Specifies scaling constants used to calibrate the image.
-    float*                    errorMap;        //The the error map of calibration template image.
-    unsigned int              errorMapRows;    //Number of rows in error map.
-    unsigned int              errorMapCols;    //Number of Columns in error map.
-    ErrorStatistics           errorStatistics; //Error statistics of the calibration.
-} GetCalibrationInfoReport;
-
-typedef struct EdgePolarity_struct {
-    EdgePolaritySearchMode start; 
-    EdgePolaritySearchMode end;   
-} EdgePolarity;
-
-typedef struct ClampSettings_struct {
-    double       angleRange;   //Specifies the angle range.
-    EdgePolarity edgePolarity; //Specifies the edge polarity.
-} ClampSettings;
-
-typedef struct PointDouble_struct {
-    double x; //The x-coordinate of the point.
-    double y; //The y-coordinate of the point.
-} PointDouble;
-
-typedef struct PointDoublePair_struct {
-    PointDouble start; //The Start co-ordinate of the pair.
-    PointDouble end;   //The End co-ordinate of the pair.
-} PointDoublePair;
-
-typedef struct ClampResults_struct {
-    double distancePix;       //Defines the Pixel world distance.
-    double distanceRealWorld; //Defines the real world distance.
-    double angleAbs;          //Defines the absolute angle.
-    double angleRelative;     //Defines the relative angle.
-} ClampResults;
-
-typedef struct ClampPoints_struct {
-    PointDoublePair pixel;     //Specifies the pixel world point pair for clamp.
-    PointDoublePair realWorld; //Specifies the real world point pair for clamp.
-} ClampPoints;
-
-typedef struct RGBValue_struct {
-    unsigned char B;     //The blue value of the color.
-    unsigned char G;     //The green value of the color.
-    unsigned char R;     //The red value of the color.
-    unsigned char alpha; //The alpha value of the color, which represents extra information about a color image, such as gamma correction.
-} RGBValue;
-
-typedef struct ClampOverlaySettings_struct {
-    int      showSearchArea;      //If TRUE, the function overlays the search area on the image.
-    int      showCurves;          //If TRUE, the function overlays the curves on the image.
-    int      showClampLocation;   //If TRUE, the function overlays the clamp location on the image.
-    int      showResult;          //If TRUE, the function overlays the hit lines to the object and the edge used to generate the hit line on the result image.
-    RGBValue searchAreaColor;     //Specifies the RGB color value to use to overlay the search area.
-    RGBValue curvesColor;         //Specifies the RGB color value to use to overlay the curves.
-    RGBValue clampLocationsColor; //Specifies the RGB color value to use to overlay the clamp locations.
-    RGBValue resultColor;         //Specifies the RGB color value to use to overlay the results.
-    char*    overlayGroupName;    //Specifies the group overlay name for the step overlays.
-} ClampOverlaySettings;
-
-typedef struct ClampMax2Report_struct {
-    ClampResults clampResults;     //Specifies the Clamp results information returned by the function.
-    ClampPoints  clampPoints;      //Specifies the clamp points information returned by the function.
-    unsigned int calibrationValid; //Specifies if the calibration information is valid or not.
-} ClampMax2Report;
-
-typedef struct ContourFitSplineReport_struct {
-    PointDouble* points;         //It returns the points of the best-fit B-spline curve.
-    int          numberOfPoints; //Number of Best fit points returned.
-} ContourFitSplineReport;
-
-typedef struct LineFloat_struct {
-    PointFloat start; //The coordinate location of the start of the line.
-    PointFloat end;   //The coordinate location of the end of the line.
-} LineFloat;
-
-typedef struct LineEquation_struct {
-    double a; //The a coefficient of the line equation.
-    double b; //The b coefficient of the line equation.
-    double c; //The c coefficient of the line equation.
-} LineEquation;
-
-typedef struct ContourFitLineReport_struct {
-    LineFloat    lineSegment;  //Line Segment represents the intersection of the line equation and the contour.
-    LineEquation lineEquation; //Line Equation is a structure of three coefficients A, B, and C of the equation in the normal form (Ax + By + C=0) of the best fit line.
-} ContourFitLineReport;
-
-typedef struct ContourFitPolynomialReport_struct {
-    PointDouble* bestFit;                //It returns the points of the best-fit polynomial.
-    int          numberOfPoints;         //Number of Best fit points returned.
-    double*      polynomialCoefficients; //Polynomial Coefficients returns the coefficients of the polynomial equation.
-    int          numberOfCoefficients;   //Number of Coefficients returned in the polynomial coefficients array.
-} ContourFitPolynomialReport;
-
-typedef struct PartialCircle_struct {
-    PointFloat center;     //Center of the circle.
-    double     radius;     //Radius of the circle.
-    double     startAngle; //Start angle of the fitted structure.
-    double     endAngle;   //End angle of the fitted structure.
-} PartialCircle;
-
-typedef struct PartialEllipse_struct {
-    PointFloat center;      //Center of the Ellipse.
-    double     angle;       //Angle of the ellipse.
-    double     majorRadius; //The length of the semi-major axis of the ellipse.
-    double     minorRadius; //The length of the semi-minor axis of the ellipse.
-    double     startAngle;  //Start angle of the fitted structure.
-    double     endAngle;    //End angle of the fitted structure.
-} PartialEllipse;
-
-typedef struct SetupMatchPatternData_struct {
-    unsigned char* matchSetupData;    //String containing the match setup data.
-    int            numMatchSetupData; //Number of match setup data.
-} SetupMatchPatternData;
-
-typedef struct RangeSettingDouble_struct {
-    SettingType settingType; //Match Constraints specifies the match option whose values you want to constrain by the given range.
-    double      min;         //Min is the minimum value of the range for a given Match Constraint.
-    double      max;         //Max is the maximum value of the range for a given Match Constraint.
-} RangeSettingDouble;
-
-typedef struct GeometricAdvancedSetupDataOption_struct {
-    GeometricSetupDataItem type;  //It determines the option you want to use during the matching phase.
-    double                 value; //Value is the value for the option you want to use during the matching phase.
-} GeometricAdvancedSetupDataOption;
-
-typedef struct ContourInfoReport_struct {
-    PointDouble* pointsPixel;       //Points (pixel) specifies the location of every point detected on the curve, in pixels.
-    unsigned int numPointsPixel;    //Number of points pixel elements.
-    PointDouble* pointsReal;        //Points (real) specifies the location of every point detected on the curve, in calibrated units.
-    unsigned int numPointsReal;     //Number of points real elements.
-    double*      curvaturePixel;    //Curvature Pixel displays the curvature profile for the selected contour, in pixels.
-    unsigned int numCurvaturePixel; //Number of curvature pixels.
-    double*      curvatureReal;     //Curvature Real displays the curvature profile for the selected contour, in calibrated units.
-    unsigned int numCurvatureReal;  //Number of curvature Real elements.
-    double       length;            //Length (pixel) specifies the length, in pixels, of the curves in the image.
-    double       lengthReal;        //Length (real) specifies the length, in calibrated units, of the curves within the curvature range.
-    unsigned int hasEquation;       //Has Equation specifies whether the contour has a fitted equation.
-} ContourInfoReport;
-
-typedef struct ROILabel_struct {
-    char*        className; //Specifies the classname you want to segment.
-    unsigned int label;     //Label is the label number associated with the Class Name.
-} ROILabel;
-
-typedef struct SupervisedColorSegmentationReport_struct {
-    ROILabel*    labelOut;    //The Roi labels array.
-    unsigned int numLabelOut; //The number of elements in labelOut array.
-} SupervisedColorSegmentationReport;
-
-typedef struct LabelToROIReport_struct {
-    ROI**         roiArray;                  //Array of ROIs.
-    unsigned int  numOfROIs;                 //Number of ROIs in the roiArray.
-    unsigned int* labelsOutArray;            //Array of labels.
-    unsigned int  numOfLabels;               //Number of labels.
-    int*          isTooManyVectorsArray;     //isTooManyVectorsArray array.
-    unsigned int  isTooManyVectorsArraySize; //Number of elements in isTooManyVectorsArray.
-} LabelToROIReport;
-
-typedef struct ColorSegmenationOptions_struct {
-    unsigned int windowX;         //X is the window size in x direction.
-    unsigned int windowY;         //Y is the window size in y direction.
-    unsigned int stepSize;        //Step Size is the distance between two windows.
-    unsigned int minParticleArea; //Min Particle Area is the minimum number of allowed pixels.
-    unsigned int maxParticleArea; //Max Particle Area is the maximum number of allowed pixels.
-    short        isFineSegment;   //When enabled, the step processes the boundary pixels of each segmentation cluster using a step size of 1.
-} ColorSegmenationOptions;
-
-typedef struct ClassifiedCurve_struct {
-    double       length;           //Specifies the length, in pixels, of the curves within the curvature range.
-    double       lengthReal;       //specifies the length, in calibrated units, of the curves within the curvature range.
-    double       maxCurvature;     //specifies the maximum curvature, in pixels, for the selected curvature range.
-    double       maxCurvatureReal; //specifies the maximum curvature, in calibrated units, for the selected curvature range.
-    unsigned int label;            //specifies the class to which the the sample belongs.
-    PointDouble* curvePoints;      //Curve Points is a point-coordinate cluster that defines the points of the curve.
-    unsigned int numCurvePoints;   //Number of curve points.
-} ClassifiedCurve;
-
-typedef struct RangeDouble_struct {
-    double minValue; //The minimum value of the range.
-    double maxValue; //The maximum value of the range.
-} RangeDouble;
-
-typedef struct RangeLabel_struct {
-    RangeDouble  range; //Specifies the range of curvature values.
-    unsigned int label; //Class Label specifies the class to which the the sample belongs.
-} RangeLabel;
-
-typedef struct CurvatureAnalysisReport_struct {
-    ClassifiedCurve* curves;    
-    unsigned int     numCurves; 
-} CurvatureAnalysisReport;
-
-typedef struct Disparity_struct {
-    PointDouble current;   //Current is a array of points that defines the target contour.
-    PointDouble reference; //reference is a array of points that defines the template contour.
-    double      distance;  //Specifies the distance, in pixels, between the template contour point and the target contour point.
-} Disparity;
-
-typedef struct ComputeDistancesReport_struct {
-    Disparity*   distances;        //Distances is an array containing the computed distances.
-    unsigned int numDistances;     //Number elements in the distances array.
-    Disparity*   distancesReal;    //Distances Real is an array containing the computed distances in calibrated units.
-    unsigned int numDistancesReal; //Number of elements in real distances array.
-} ComputeDistancesReport;
-
-typedef struct MatchMode_struct {
-    unsigned int rotation;  //Rotation When enabled, the Function searches for occurrences of the template in the inspection image, allowing for template matches to be rotated.
-    unsigned int scale;     //Rotation When enabled, the Function searches for occurrences of the template in the inspection image, allowing for template matches to be rotated.
-    unsigned int occlusion; //Occlusion specifies whether or not to search for occluded versions of the shape.
-} MatchMode;
-
-typedef struct ClassifiedDisparity_struct {
-    double       length;                //Length (pixel) specifies the length, in pixels, of the curves within the curvature range.
-    double       lengthReal;            //Length (real) specifies the length, in calibrated units, of the curves within the curvature range.
-    double       maxDistance;           //Maximum Distance (pixel) specifies the maximum distance, in pixels, between points along the selected contour and the template contour.
-    double       maxDistanceReal;       //Maximum Distance (real) specifies the maximum distance, in calibrated units, between points along the selected contour and the template contour.
-    unsigned int label;                 //Class Label specifies the class to which the the sample belongs.
-    PointDouble* templateSubsection;    //Template subsection points is an array of points that defines the boundary of the template.
-    unsigned int numTemplateSubsection; //Number of reference points.
-    PointDouble* targetSubsection;      //Current Points(Target subsection points) is an array of points that defines the boundary of the target.
-    unsigned int numTargetSubsection;   //Number of current points.
-} ClassifiedDisparity;
-
-typedef struct ClassifyDistancesReport_struct {
-    ClassifiedDisparity* classifiedDistances;    //Disparity array containing the classified distances.
-    unsigned int         numClassifiedDistances; //Number of elements in the disparity array.
-} ClassifyDistancesReport;
-
-typedef struct ContourComputeCurvatureReport_struct {
-    double*      curvaturePixel;    //Curvature Pixel displays the curvature profile for the selected contour, in pixels.
-    unsigned int numCurvaturePixel; //Number of curvature pixels.
-    double*      curvatureReal;     //Curvature Real displays the curvature profile for the selected contour, in calibrated units.
-    unsigned int numCurvatureReal;  //Number of curvature Real elements.
-} ContourComputeCurvatureReport;
-
-typedef struct ContourOverlaySettings_struct {
-    unsigned int overlay;       //Overlay specifies whether to display the overlay on the image.
-    RGBValue     color;         //Color is the color of the overlay.
-    unsigned int width;         //Width specifies the width of the overlay in pixels.
-    unsigned int maintainWidth; //Maintain Width? specifies whether you want the overlay measured in screen pixels or image pixels.
-} ContourOverlaySettings;
-
-typedef struct CurveParameters_struct {
-    ExtractionMode extractionMode; //Specifies the method the function uses to identify curves in the image.
-    int            threshold;      //Specifies the minimum contrast a seed point must have in order to begin a curve.
-    EdgeFilterSize filterSize;     //Specifies the width of the edge filter the function uses to identify curves in the image.
-    int            minLength;      //Specifies the length, in pixels, of the smallest curve the function will extract.
-    int            searchStep;     //Search Step Size specifies the distance, in the y direction, between the image rows that the algorithm inspects for curve seed points.
-    int            maxEndPointGap; //Specifies the maximum gap, in pixels, between the endpoints of a curve that the function identifies as a closed curve.
-    int            subpixel;       //Subpixel specifies whether to detect curve points with subpixel accuracy.
-} CurveParameters;
-
-typedef struct ExtractContourReport_struct {
-    PointDouble* contourPoints;    //Contour Points specifies every point found on the contour.
-    int          numContourPoints; //Number of contour points.
-    PointDouble* sourcePoints;     //Source Image Points specifies every point found on the contour in the source image.
-    int          numSourcePoints;  //Number of source points.
-} ExtractContourReport;
-
-typedef struct ConnectionConstraint_struct {
-    ConnectionConstraintType constraintType; //Constraint Type specifies what criteria to use to consider two curves part of a contour.
-    RangeDouble              range;          //Specifies range for a given Match Constraint.
-} ConnectionConstraint;
-
-typedef struct ExtractTextureFeaturesReport_struct {
-    int*     waveletBands;        //The array having all the Wavelet Banks used for extraction.
-    int      numWaveletBands;     //Number of wavelet banks in the Array.
-    double** textureFeatures;     //2-D array to store all the Texture features extracted.
-    int      textureFeaturesRows; //Number of Rows in the Texture Features array.
-    int      textureFeaturesCols; //Number of Cols in Texture Features array.
-} ExtractTextureFeaturesReport;
-
-typedef struct WaveletBandsReport_struct {
-    float** LLBand;  //2-D array for LL Band.
-    float** LHBand;  //2-D array for LH Band.
-    float** HLBand;  //2-D array for HL Band.
-    float** HHBand;  //2-D array for HH Band.
-    float** LLLBand; //2-D array for LLL Band.
-    float** LLHBand; //2-D array for LLH Band.
-    float   LHLBand; //2-D array for LHL Band.
-    float** LHHBand; //2-D array for LHH Band.
-    int     rows;    //Number of Rows for each of the 2-D arrays.
-    int     cols;    //Number of Columns for each of the 2-D arrays.
-} WaveletBandsReport;
-
-typedef struct CircleFitOptions_struct {
-    int             maxRadius;   //Specifies the acceptable distance, in pixels, that a point determined to belong to the circle can be from the perimeter of the circle.
-    double          stepSize;    //Step Size is the angle, in degrees, between each radial line in the annular region.
-    RakeProcessType processType; //Method used to process the data extracted for edge detection.
-} CircleFitOptions;
-
-typedef struct EdgeOptions2_struct {
-    EdgePolaritySearchMode polarity;             //Specifies the polarity of the edges to be found.
-    unsigned int           kernelSize;           //Specifies the size of the edge detection kernel.
-    unsigned int           width;                //Specifies the number of pixels averaged perpendicular to the search direction to compute the edge profile strength at each point along the search ROI.
-    float                  minThreshold;         //Specifies the minimum edge strength (gradient magnitude) required for a detected edge.
-    InterpolationMethod    interpolationType;    //Specifies the interpolation method used to locate the edge position.
-    ColumnProcessingMode   columnProcessingMode; //Specifies the method used to find the straight edge.
-} EdgeOptions2;
-
-typedef struct FindCircularEdgeOptions_struct {
-    SpokeDirection direction;        //Specifies the Spoke direction to search in the ROI.
-    int            showSearchArea;   //If TRUE, the function overlays the search area on the image.
-    int            showSearchLines;  //If TRUE, the function overlays the search lines used to locate the edges on the image.
-    int            showEdgesFound;   //If TRUE, the function overlays the locations of the edges found on the image.
-    int            showResult;       //If TRUE, the function overlays the hit lines to the object and the edge used to generate the hit line on the result image.
-    RGBValue       searchAreaColor;  //Specifies the RGB color value to use to overlay the search area.
-    RGBValue       searchLinesColor; //Specifies the RGB color value to use to overlay the search lines.
-    RGBValue       searchEdgesColor; //Specifies the RGB color value to use to overlay the search edges.
-    RGBValue       resultColor;      //Specifies the RGB color value to use to overlay the results.
-    char*          overlayGroupName; //Specifies the overlay group name to assign to the overlays.
-    EdgeOptions2   edgeOptions;      //Specifies the edge detection options along a single search line.
-} FindCircularEdgeOptions;
-
-typedef struct FindConcentricEdgeOptions_struct {
-    ConcentricRakeDirection direction;        //Specifies the Concentric Rake direction.
-    int                     showSearchArea;   //If TRUE, the function overlays the search area on the image.
-    int                     showSearchLines;  //If TRUE, the function overlays the search lines used to locate the edges on the image.
-    int                     showEdgesFound;   //If TRUE, the function overlays the locations of the edges found on the image.
-    int                     showResult;       //If TRUE, the function overlays the hit lines to the object and the edge used to generate the hit line on the result image.
-    RGBValue                searchAreaColor;  //Specifies the RGB color value to use to overlay the search area.
-    RGBValue                searchLinesColor; //Specifies the RGB color value to use to overlay the search lines.
-    RGBValue                searchEdgesColor; //Specifies the RGB color value to use to overlay the search edges.
-    RGBValue                resultColor;      //Specifies the RGB color value to use to overlay the results.
-    char*                   overlayGroupName; //Specifies the overlay group name to assign to the overlays.
-    EdgeOptions2            edgeOptions;      //Specifies the edge detection options along a single search line.
-} FindConcentricEdgeOptions;
-
-typedef struct ConcentricEdgeFitOptions_struct {
-    int             maxRadius;   //Specifies the acceptable distance, in pixels, that a point determined to belong to the circle can be from the perimeter of the circle.
-    double          stepSize;    //The sampling factor that determines the gap between the rake lines.
-    RakeProcessType processType; //Method used to process the data extracted for edge detection.
-} ConcentricEdgeFitOptions;
-
-typedef struct FindConcentricEdgeReport_struct {
-    PointFloat startPt;           //Pixel Coordinates for starting point of the edge.
-    PointFloat endPt;             //Pixel Coordinates for end point of the edge.
-    PointFloat startPtCalibrated; //Real world Coordinates for starting point of the edge.
-    PointFloat endPtCalibrated;   //Real world Coordinates for end point of the edge.
-    double     angle;             //Angle of the edge found.
-    double     angleCalibrated;   //Calibrated angle of the edge found.
-    double     straightness;      //The straightness value of the detected straight edge.
-    double     avgStrength;       //Average strength of the egde found.
-    double     avgSNR;            //Average SNR(Signal to Noise Ratio) for the edge found.
-    int        lineFound;         //If the edge is found or not.
-} FindConcentricEdgeReport;
-
-typedef struct FindCircularEdgeReport_struct {
-    PointFloat centerCalibrated; //Real world Coordinates of the Center.
-    double     radiusCalibrated; //Real world radius of the Circular Edge found.
-    PointFloat center;           //Pixel Coordinates of the Center.
-    double     radius;           //Radius in pixels of the Circular Edge found.
-    double     roundness;        //The roundness of the calculated circular edge.
-    double     avgStrength;      //Average strength of the egde found.
-    double     avgSNR;           //Average SNR(Signal to Noise Ratio) for the edge found.
-    int        circleFound;      //If the circlular edge is found or not.
-} FindCircularEdgeReport;
-
-typedef struct WindowSize_struct {
-    int x;        //Window lenght on X direction.
-    int y;        //Window lenght on Y direction.
-    int stepSize; //Distance between windows.
-} WindowSize;
-
-typedef struct DisplacementVector_struct {
-    int x; //length on X direction.
-    int y; //length on Y direction.
-} DisplacementVector;
-
-typedef struct WaveletOptions_struct {
-    WaveletType typeOfWavelet; //Type of wavelet(db, bior.
-    float       minEnergy;     //Minimum Energy in the bands to consider for texture defect detection.
-} WaveletOptions;
-
-typedef struct CooccurrenceOptions_struct {
-    int                level;        //Level/size of matrix.
-    DisplacementVector displacement; //Displacemnet between pixels to accumulate the matrix.
-} CooccurrenceOptions;
-
-typedef struct ParticleClassifierLocalThresholdOptions_struct {
-    LocalThresholdMethod method;          //Specifies the local thresholding method the function uses.
-    ParticleType         particleType;    //Specifies what kind of particles to look for.
-    unsigned int         windowWidth;     //The width of the rectangular window around the pixel on which the function performs the local threshold.
-    unsigned int         windowHeight;    //The height of the rectangular window around the pixel on which the function performs the local threshold.
-    double               deviationWeight; //Specifies the k constant used in the Niblack local thresholding algorithm, which determines the weight applied to the variance calculation.
-} ParticleClassifierLocalThresholdOptions;
-
-typedef struct RangeFloat_struct {
-    float minValue; //The minimum value of the range.
-    float maxValue; //The maximum value of the range.
-} RangeFloat;
-
-typedef struct ParticleClassifierAutoThresholdOptions_struct {
-    ThresholdMethod method;       //The method for binary thresholding, which specifies how to calculate the classes.
-    ParticleType    particleType; //Specifies what kind of particles to look for.
-    RangeFloat      limits;       //The limits on the automatic threshold range.
-} ParticleClassifierAutoThresholdOptions;
-
-typedef struct ParticleClassifierPreprocessingOptions2_struct {
-    ParticleClassifierThresholdType         thresholdType;         //The type of threshold to perform on the image.
-    RangeFloat                              manualThresholdRange;  //The range of pixels to keep if manually thresholding the image.
-    ParticleClassifierAutoThresholdOptions  autoThresholdOptions;  //The options used to auto threshold the image.
-    ParticleClassifierLocalThresholdOptions localThresholdOptions; //The options used to local threshold the image.
-    int                                     rejectBorder;          //Set this element to TRUE to reject border particles.
-    int                                     numErosions;           //The number of erosions to perform.
-} ParticleClassifierPreprocessingOptions2;
-
-typedef struct MeasureParticlesReport_struct {
-    double** pixelMeasurements;      //The measurements on the particles in the image, in pixel coordinates.
-    double** calibratedMeasurements; //The measurements on the particles in the image, in real-world coordinates.
-    size_t   numParticles;           //The number of particles on which measurements were taken.
-    size_t   numMeasurements;        //The number of measurements taken.
-} MeasureParticlesReport;
-
-typedef struct GeometricPatternMatch3_struct {
-    PointFloat position;                //The location of the origin of the template in the match.
-    float      rotation;                //The rotation of the match relative to the template image, in degrees.
-    float      scale;                   //The size of the match relative to the size of the template image, expressed as a percentage.
-    float      score;                   //The accuracy of the match.
-    PointFloat corner[4];               //An array of four points describing the rectangle surrounding the template image.
-    int        inverse;                 //This element is TRUE if the match is an inverse of the template image.
-    float      occlusion;               //The percentage of the match that is occluded.
-    float      templateMatchCurveScore; //The accuracy of the match obtained by comparing the template curves to the curves in the match region.
-    float      matchTemplateCurveScore; //The accuracy of the match obtained by comparing the curves in the match region to the template curves.
-    float      correlationScore;        //The accuracy of the match obtained by comparing the template image to the match region using a correlation metric that compares the two regions as a function of their pixel values.
-    PointFloat calibratedPosition;      //The location of the origin of the template in the match.
-    float      calibratedRotation;      //The rotation of the match relative to the template image, in degrees.
-    PointFloat calibratedCorner[4];     //An array of four points describing the rectangle surrounding the template image.
-} GeometricPatternMatch3;
-
-typedef struct MatchGeometricPatternAdvancedOptions3_struct {
-    unsigned int                    subpixelIterations;         //Specifies the maximum number of incremental improvements used to refine matches with subpixel information.
-    double                          subpixelTolerance;          //Specifies the maximum amount of change, in pixels, between consecutive incremental improvements in the match position before the function stops refining the match position.
-    unsigned int                    initialMatchListLength;     //Specifies the maximum size of the match list.
-    int                             targetTemplateCurveScore;   //Set this element to TRUE to specify that the function should calculate the match curve to template curve score and return it for each match result.
-    int                             correlationScore;           //Set this element to TRUE to specify that the function should calculate the correlation score and return it for each match result.
-    double                          minMatchSeparationDistance; //Specifies the minimum separation distance, in pixels, between the origins of two matches that have unique positions.
-    double                          minMatchSeparationAngle;    //Specifies the minimum angular difference, in degrees, between two matches that have unique angles.
-    double                          minMatchSeparationScale;    //Specifies the minimum difference in scale, expressed as a percentage, between two matches that have unique scales.
-    double                          maxMatchOverlap;            //Specifies the maximum amount of overlap, expressed as a percentage, allowed between the bounding rectangles of two unique matches.
-    int                             coarseResult;               //Specifies whether you want the function to spend less time accurately estimating the location of a match.
-    int                             enableCalibrationSupport;   //Set this element to TRUE to specify the algorithm treat the inspection image as a calibrated image.
-    ContrastMode                    enableContrastReversal;     //Use this element to specify the contrast of the matches to search for in the image.
-    GeometricMatchingSearchStrategy matchStrategy;              //Specifies the aggressiveness of the search strategy.
-    unsigned int                    refineMatchFactor;          //Specifies the factor that is applied to the number of matches requested by the user to determine the number of matches that are refined at the initial matching stage.
-    unsigned int                    subpixelMatchFactor;        //Specifies the factor that is applied to the number of matches requested by the user to determine the number of matches that are evaluated at the final subpixel matching stage.
-} MatchGeometricPatternAdvancedOptions3;
-
-typedef struct ColorOptions_struct {
-    ColorClassificationResolution colorClassificationResolution; //Specifies the color resolution of the classifier.
-    unsigned int                  useLuminance;                  //Specifies if the luminance band is going to be used in the feature vector.
-    ColorMode                     colorMode;                     //Specifies the color mode of the classifier.
-} ColorOptions;
-
-typedef struct SampleScore_struct {
-    char*        className; //The name of the class.
-    float        distance;  //The distance from the item to this class.
-    unsigned int index;     //index of this sample.
-} SampleScore;
-
-typedef struct ClassifierReportAdvanced_struct {
-    char*        bestClassName;       //The name of the best class for the sample.
-    float        classificationScore; //The similarity of the sample and the two closest classes in the classifier.
-    float        identificationScore; //The similarity of the sample and the assigned class.
-    ClassScore*  allScores;           //All classes and their scores.
-    int          allScoresSize;       //The number of entries in allScores.
-    SampleScore* sampleScores;        //All samples and their scores.
-    int          sampleScoresSize;    //The number of entries in sampleScores.
-} ClassifierReportAdvanced;
-
-typedef struct LearnGeometricPatternAdvancedOptions2_struct {
-    double       minScaleFactor;        //Specifies the minimum scale factor that the template is learned for.
-    double       maxScaleFactor;        //Specifies the maximum scale factor the template is learned for.
-    double       minRotationAngleValue; //Specifies the minimum rotation angle the template is learned for.
-    double       maxRotationAngleValue; //Specifies the maximum rotation angle the template is learned for.
-    unsigned int imageSamplingFactor;   //Specifies the factor that is used to subsample the template and the image for the initial matching phase.
-} LearnGeometricPatternAdvancedOptions2;
-
-typedef struct ParticleFilterOptions2_struct {
-    int rejectMatches; //Set this parameter to TRUE to transfer only those particles that do not meet all the criteria.
-    int rejectBorder;  //Set this element to TRUE to reject border particles.
-    int fillHoles;     //Set this element to TRUE to fill holes in particles.
-    int connectivity8; //Set this parameter to TRUE to use connectivity-8 to determine whether particles are touching.
-} ParticleFilterOptions2;
-
-typedef struct FindEdgeOptions2_struct {
-    RakeDirection direction;        //The direction to search in the ROI.
-    int           showSearchArea;   //If TRUE, the function overlays the search area on the image.
-    int           showSearchLines;  //If TRUE, the function overlays the search lines used to locate the edges on the image.
-    int           showEdgesFound;   //If TRUE, the function overlays the locations of the edges found on the image.
-    int           showResult;       //If TRUE, the function overlays the hit lines to the object and the edge used to generate the hit line on the result image.
-    RGBValue      searchAreaColor;  //Specifies the RGB color value to use to overlay the search area.
-    RGBValue      searchLinesColor; //Specifies the RGB color value to use to overlay the search lines.
-    RGBValue      searchEdgesColor; //Specifies the RGB color value to use to overlay the search edges.
-    RGBValue      resultColor;      //Specifies the RGB color value to use to overlay the results.
-    char*         overlayGroupName; //Specifies the overlay group name to assign to the overlays.
-    EdgeOptions2  edgeOptions;      //Specifies the edge detection options along a single search line.
-} FindEdgeOptions2;
-
-typedef struct FindEdgeReport_struct {
-    StraightEdge* straightEdges;    //An array of straight edges detected.
-    unsigned int  numStraightEdges; //Indicates the number of straight edges found.
-} FindEdgeReport;
-
-typedef struct FindTransformRectOptions2_struct {
-    FindReferenceDirection direction;        //Specifies the direction and orientation in which the function searches for the primary axis.
-    int                    showSearchArea;   //If TRUE, the function overlays the search area on the image.
-    int                    showSearchLines;  //If TRUE, the function overlays the search lines used to locate the edges on the image.
-    int                    showEdgesFound;   //If TRUE, the function overlays the locations of the edges found on the image.
-    int                    showResult;       //If TRUE, the function overlays the hit lines to the object and the edge used to generate the hit line on the result image.
-    RGBValue               searchAreaColor;  //Specifies the RGB color value to use to overlay the search area.
-    RGBValue               searchLinesColor; //Specifies the RGB color value to use to overlay the search lines.
-    RGBValue               searchEdgesColor; //Specifies the RGB color value to use to overlay the search edges.
-    RGBValue               resultColor;      //Specifies the RGB color value to use to overlay the results.
-    char*                  overlayGroupName; //Specifies the overlay group name to assign to the overlays.
-    EdgeOptions2           edgeOptions;      //Specifies the edge detection options along a single search line.
-} FindTransformRectOptions2;
-
-typedef struct FindTransformRectsOptions2_struct {
-    FindReferenceDirection direction;            //Specifies the direction and orientation in which the function searches for the primary axis.
-    int                    showSearchArea;       //If TRUE, the function overlays the search area on the image.
-    int                    showSearchLines;      //If TRUE, the function overlays the search lines used to locate the edges on the image.
-    int                    showEdgesFound;       //If TRUE, the function overlays the locations of the edges found on the image.
-    int                    showResult;           //If TRUE, the function overlays the hit lines to the object and the edge used to generate the hit line on the result image.
-    RGBValue               searchAreaColor;      //Specifies the RGB color value to use to overlay the search area.
-    RGBValue               searchLinesColor;     //Specifies the RGB color value to use to overlay the search lines.
-    RGBValue               searchEdgesColor;     //Specifies the RGB color value to use to overlay the search edges.
-    RGBValue               resultColor;          //Specifies the RGB color value to use to overlay the results.
-    char*                  overlayGroupName;     //Specifies the overlay group name to assign to the overlays.
-    EdgeOptions2           primaryEdgeOptions;   //Specifies the parameters used to compute the edge gradient information and detect the edges for the primary ROI.
-    EdgeOptions2           secondaryEdgeOptions; //Specifies the parameters used to compute the edge gradient information and detect the edges for the secondary ROI.
-} FindTransformRectsOptions2;
-
-typedef struct ReadTextReport3_struct {
-    const char*  readString;            //The read string.
-    CharReport3* characterReport;       //An array of reports describing the properties of each identified character.
-    int          numCharacterReports;   //The number of identified characters.
-    ROI*         roiBoundingCharacters; //An array specifying the coordinates of the character bounding ROI.
-} ReadTextReport3;
-
-typedef struct CharacterStatistics_struct {
-    int left;          //The left offset of the character bounding rectangles in the current ROI.
-    int top;           //The top offset of the character bounding rectangles in the current ROI.
-    int width;         //The width of each of the characters you trained in the current ROI.
-    int height;        //The height of each trained character in the current ROI.
-    int characterSize; //The size of the character in pixels.
-} CharacterStatistics;
-
-typedef struct CharReport3_struct {
-    const char*         character;           //The character value.
-    int                 classificationScore; //The degree to which the assigned character class represents the object better than the other character classes in the character set.
-    int                 verificationScore;   //The similarity of the character and the reference character for the character class.
-    int                 verified;            //This element is TRUE if a reference character was found for the character class and FALSE if a reference character was not found.
-    int                 lowThreshold;        //The minimum value of the threshold range used for this character.
-    int                 highThreshold;       //The maximum value of the threshold range used for this character.
-    CharacterStatistics characterStats;      //Describes the characters segmented in the ROI.
-} CharReport3;
-
-typedef struct ArcInfo2_struct {
-    PointFloat center;     //The center point of the arc.
-    double     radius;     //The radius of the arc.
-    double     startAngle; //The starting angle of the arc, specified counter-clockwise from the x-axis.
-    double     endAngle;   //The ending angle of the arc, specified counter-clockwise from the x-axis.
-} ArcInfo2;
-
-typedef struct EdgeReport2_struct {
-    EdgeInfo*    edges;            //An array of edges detected.
-    unsigned int numEdges;         //Indicates the number of edges detected.
-    double*      gradientInfo;     //An array that contains the calculated edge strengths along the user-defined search area.
-    unsigned int numGradientInfo;  //Indicates the number of elements contained in gradientInfo.
-    int          calibrationValid; //Indicates if the calibration data corresponding to the location of the edges is correct.
-} EdgeReport2;
-
-typedef struct SearchArcInfo_struct {
-    ArcInfo2    arcCoordinates; //Describes the arc used for edge detection.
-    EdgeReport2 edgeReport;     //Describes the edges found in this search line.
-} SearchArcInfo;
-
-typedef struct ConcentricRakeReport2_struct {
-    EdgeInfo*      firstEdges;    //The first edge point detected along each search line in the ROI.
-    unsigned int   numFirstEdges; //The number of points in the firstEdges array.
-    EdgeInfo*      lastEdges;     //The last edge point detected along each search line in the ROI.
-    unsigned int   numLastEdges;  //The number of points in the lastEdges array.
-    SearchArcInfo* searchArcs;    //Contains the arcs used for edge detection and the edge information for each arc.
-    unsigned int   numSearchArcs; //The number of arcs in the searchArcs array.
-} ConcentricRakeReport2;
-
-typedef struct SpokeReport2_struct {
-    EdgeInfo*       firstEdges;     //The first edge point detected along each search line in the ROI.
-    unsigned int    numFirstEdges;  //The number of points in the firstEdges array.
-    EdgeInfo*       lastEdges;      //The last edge point detected along each search line in the ROI.
-    unsigned int    numLastEdges;   //The number of points in the lastEdges array.
-    SearchLineInfo* searchLines;    //The search lines used for edge detection.
-    unsigned int    numSearchLines; //The number of search lines used in the edge detection.
-} SpokeReport2;
-
-typedef struct EdgeInfo_struct {
-    PointFloat position;           //The location of the edge in the image.
-    PointFloat calibratedPosition; //The position of the edge in the image in real-world coordinates.
-    double     distance;           //The location of the edge from the first point along the boundary of the input ROI.
-    double     calibratedDistance; //The location of the edge from the first point along the boundary of the input ROI in real-world coordinates.
-    double     magnitude;          //The intensity contrast at the edge.
-    double     noisePeak;          //The strength of the noise associated with the current edge.
-    int        rising;             //Indicates the polarity of the edge.
-} EdgeInfo;
-
-typedef struct SearchLineInfo_struct {
-    LineFloat   lineCoordinates; //The endpoints of the search line.
-    EdgeReport2 edgeReport;      //Describes the edges found in this search line.
-} SearchLineInfo;
-
-typedef struct RakeReport2_struct {
-    EdgeInfo*       firstEdges;     //The first edge point detected along each search line in the ROI.
-    unsigned int    numFirstEdges;  //The number of points in the firstEdges array.
-    EdgeInfo*       lastEdges;      //The last edge point detected along each search line in the ROI.
-    unsigned int    numLastEdges;   //The number of points in the lastEdges array.
-    SearchLineInfo* searchLines;    //The search lines used for edge detection.
-    unsigned int    numSearchLines; //The number of search lines used in the edge detection.
-} RakeReport2;
-
-typedef struct TransformBehaviors_struct {
-    GroupBehavior ShiftBehavior;    //Specifies the behavior of an overlay group when a shift operation is applied to an image.
-    GroupBehavior ScaleBehavior;    //Specifies the behavior of an overlay group when a scale operation is applied to an image.
-    GroupBehavior RotateBehavior;   //Specifies the behavior of an overlay group when a rotate operation is applied to an image.
-    GroupBehavior SymmetryBehavior; //Specifies the behavior of an overlay group when a symmetry operation is applied to an image.
-} TransformBehaviors;
-
-typedef struct QRCodeDataToken_struct {
-    QRStreamMode   mode;       //Specifies the stream mode or the format of the data that is encoded in the QR code.
-    unsigned int   modeData;   //Indicates specifiers used by the user to postprocess the data if it requires it.
-    unsigned char* data;       //Shows the encoded data in the QR code.
-    unsigned int   dataLength; //Specifies the length of the data found in the QR code.
-} QRCodeDataToken;
-
-typedef struct ParticleFilterOptions_struct {
-    int rejectMatches; //Set this parameter to TRUE to transfer only those particles that do not meet all the criteria.
-    int rejectBorder;  //Set this element to TRUE to reject border particles.
-    int connectivity8; //Set this parameter to TRUE to use connectivity-8 to determine whether particles are touching.
-} ParticleFilterOptions;
-
-typedef struct StraightEdgeReport2_struct {
-    StraightEdge*   straightEdges;    //Contains an array of found straight edges.
-    unsigned int    numStraightEdges; //Indicates the number of straight edges found.
-    SearchLineInfo* searchLines;      //Contains an array of all search lines used in the detection.
-    unsigned int    numSearchLines;   //The number of search lines used in the edge detection.
-} StraightEdgeReport2;
-
-typedef struct StraightEdgeOptions_struct {
-    unsigned int           numLines;              //Specifies the number of straight edges to find.
-    StraightEdgeSearchMode searchMode;            //Specifies the method used to find the straight edge.
-    double                 minScore;              //Specifies the minimum score of a detected straight edge.
-    double                 maxScore;              //Specifies the maximum score of a detected edge.
-    double                 orientation;           //Specifies the angle at which the straight edge is expected to be found.
-    double                 angleRange;            //Specifies the +/- range around the orientation within which the straight edge is expected to be found.
-    double                 angleTolerance;        //Specifies the expected angular accuracy of the straight edge.
-    unsigned int           stepSize;              //Specifies the gap in pixels between the search lines used with the rake-based methods.
-    double                 minSignalToNoiseRatio; //Specifies the minimum signal to noise ratio (SNR) of the edge points used to fit the straight edge.
-    double                 minCoverage;           //Specifies the minimum number of points as a percentage of the number of search lines that need to be included in the detected straight edge.
-    unsigned int           houghIterations;       //Specifies the number of iterations used in the Hough-based method.
-} StraightEdgeOptions;
-
-typedef struct StraightEdge_struct {
-    LineFloat    straightEdgeCoordinates;           //End points of the detected straight edge in pixel coordinates.
-    LineFloat    calibratedStraightEdgeCoordinates; //End points of the detected straight edge in real-world coordinates.
-    double       angle;                             //Angle of the found edge using the pixel coordinates.
-    double       calibratedAngle;                   //Angle of the found edge using the real-world coordinates.
-    double       score;                             //Describes the score of the detected edge.
-    double       straightness;                      //The straightness value of the detected straight edge.
-    double       averageSignalToNoiseRatio;         //Describes the average signal to noise ratio (SNR) of the detected edge.
-    int          calibrationValid;                  //Indicates if the calibration data for the straight edge is valid.
-    EdgeInfo*    usedEdges;                         //An array of edges that were used to determine this straight line.
-    unsigned int numUsedEdges;                      //Indicates the number of edges in the usedEdges array.
-} StraightEdge;
-
-typedef struct QRCodeSearchOptions_struct {
-    QRRotationMode     rotationMode;       //Specifies the amount of QR code rotation the function should allow for.
-    unsigned int       skipLocation;       //If set to TRUE, specifies that the function should assume that the QR code occupies the entire image (or the entire search region).
-    unsigned int       edgeThreshold;      //The strength of the weakest edge the function uses to find the coarse location of the QR code in the image.
-    QRDemodulationMode demodulationMode;   //The demodulation mode the function uses to locate the QR code.
-    QRCellSampleSize   cellSampleSize;     //The cell sample size the function uses to locate the QR code.
-    QRCellFilterMode   cellFilterMode;     //The cell filter mode the function uses to locate the QR code.
-    unsigned int       skewDegreesAllowed; //Specifies the amount of skew in the QR code the function should allow for.
-} QRCodeSearchOptions;
-
-typedef struct QRCodeSizeOptions_struct {
-    unsigned int minSize; //Specifies the minimum size (in pixels) of the QR code in the image.
-    unsigned int maxSize; //Specifies the maximum size (in pixels) of the QR code in the image.
-} QRCodeSizeOptions;
-
-typedef struct QRCodeDescriptionOptions_struct {
-    QRDimensions dimensions; //The number of rows and columns that are populated for the QR code, measured in cells.
-    QRPolarities polarity;   //The polarity of the QR code.
-    QRMirrorMode mirror;     //This element is TRUE if the QR code appears mirrored in the image and FALSE if the QR code appears normally in the image.
-    QRModelType  modelType;  //This option allows you to specify the type of QR code.
-} QRCodeDescriptionOptions;
-
-typedef struct QRCodeReport_struct {
-    unsigned int       found;                    //This element is TRUE if the function located and decoded a QR code and FALSE if the function failed to locate and decode a QR code.
-    unsigned char*     data;                     //The data encoded in the QR code.
-    unsigned int       dataLength;               //The length of the data array.
-    PointFloat         boundingBox[4];           //An array of four points describing the rectangle surrounding the QR code.
-    QRCodeDataToken*   tokenizedData;            //Contains the data tokenized in exactly the way it was encoded in the code.
-    unsigned int       sizeOfTokenizedData;      //Size of the tokenized data.
-    unsigned int       numErrorsCorrected;       //The number of errors the function corrected when decoding the QR code.
-    unsigned int       dimensions;               //The number of rows and columns that are populated for the QR code, measured in cells.
-    unsigned int       version;                  //The version of the QR code.
-    QRModelType        modelType;                //This option allows you to specify what type of QR code this is.
-    QRStreamMode       streamMode;               //The format of the data encoded in the stream.
-    QRPolarities       matrixPolarity;           //The polarity of the QR code.
-    unsigned int       mirrored;                 //This element is TRUE if the QR code appears mirrored in the image and FALSE if the QR code appears normally in the image.
-    unsigned int       positionInAppendStream;   //Indicates what position the QR code is in with respect to the stream of data in all codes.
-    unsigned int       sizeOfAppendStream;       //Specifies how many QR codes are part of a larger array of codes.
-    int                firstEAN128ApplicationID; //The first EAN-128 Application ID encountered in the stream.
-    int                firstECIDesignator;       //The first Regional Language Designator encountered in the stream.
-    unsigned int       appendStreamIdentifier;   //Specifies what stream the QR code is in relation to when the code is part of a larger array of codes.
-    unsigned int       minimumEdgeStrength;      //The strength of the weakest edge the function used to find the coarse location of the QR code in the image.
-    QRDemodulationMode demodulationMode;         //The demodulation mode the function used to locate the QR code.
-    QRCellSampleSize   cellSampleSize;           //The cell sample size the function used to locate the QR code.
-    QRCellFilterMode   cellFilterMode;           //The cell filter mode the function used to locate the QR code.
-} QRCodeReport;
-
-typedef struct AIMGradeReport_struct {
-    AIMGrade overallGrade;               //The overall letter grade, which is equal to the lowest of the other five letter grades.
-    AIMGrade decodingGrade;              //The letter grade assigned to a Data Matrix barcode based on the success of the function in decoding the Data Matrix barcode.
-    AIMGrade symbolContrastGrade;        //The letter grade assigned to a Data Matrix barcode based on the symbol contrast raw score.
-    float    symbolContrast;             //The symbol contrast raw score representing the percentage difference between the mean of the reflectance of the darkest 10 percent and lightest 10 percent of the Data Matrix barcode.
-    AIMGrade printGrowthGrade;           //The print growth letter grade for the Data Matrix barcode.
-    float    printGrowth;                //The print growth raw score for the barcode, which is based on the extent to which dark or light markings appropriately fill their module boundaries.
-    AIMGrade axialNonuniformityGrade;    //The axial nonuniformity grade for the Data Matrix barcode.
-    float    axialNonuniformity;         //The axial nonuniformity raw score for the barcode, which is based on how much the sampling point spacing differs from one axis to another.
-    AIMGrade unusedErrorCorrectionGrade; //The unused error correction letter grade for the Data Matrix barcode.
-    float    unusedErrorCorrection;      //The unused error correction raw score for the Data Matrix barcode, which is based on the extent to which regional or spot damage in the Data Matrix barcode has eroded the reading safety margin provided by the error correction.
-} AIMGradeReport;
-
-typedef struct DataMatrixSizeOptions_struct {
-    unsigned int minSize;        //Specifies the minimum size (in pixels) of the Data Matrix barcode in the image.
-    unsigned int maxSize;        //Specifies the maximum size (in pixels) of the Data Matrix barcode in the image.
-    unsigned int quietZoneWidth; //Specifies the expected minimum size of the quiet zone, in pixels.
-} DataMatrixSizeOptions;
-
-typedef struct DataMatrixDescriptionOptions_struct {
-    float                  aspectRatio;        //Specifies the ratio of the width of each Data Matrix barcode cell (in pixels) to the height of the Data Matrix barcode (in pixels).
-    unsigned int           rows;               //Specifies the number of rows in the Data Matrix barcode.
-    unsigned int           columns;            //Specifies the number of columns in the Data Matrix barcode.
-    int                    rectangle;          //Set this element to TRUE to specify that the Data Matrix barcode is rectangular.
-    DataMatrixECC          ecc;                //Specifies the ECC used for this Data Matrix barcode.
-    DataMatrixPolarity     polarity;           //Specifies the data-to-background contrast for the Data Matrix barcode.
-    DataMatrixCellFillMode cellFill;           //Specifies the fill percentage for a cell of the Data Matrix barcode that is in the "ON" state.
-    float                  minBorderIntegrity; //Specifies the minimum percentage of the border (locator pattern and timing pattern) the function should expect in the Data Matrix barcode.
-    DataMatrixMirrorMode   mirrorMode;         //Specifies if the Data Matrix barcode appears normally in the image or if the barcode appears mirrored in the image.
-} DataMatrixDescriptionOptions;
-
-typedef struct DataMatrixSearchOptions_struct {
-    DataMatrixRotationMode     rotationMode;             //Specifies the amount of Data Matrix barcode rotation the function should allow for.
-    int                        skipLocation;             //If set to TRUE, specifies that the function should assume that the Data Matrix barcode occupies the entire image (or the entire search region).
-    unsigned int               edgeThreshold;            //Specifies the minimum contrast a pixel must have in order to be considered part of a matrix cell edge.
-    DataMatrixDemodulationMode demodulationMode;         //Specifies the mode the function should use to demodulate (determine which cells are on and which cells are off) the Data Matrix barcode.
-    DataMatrixCellSampleSize   cellSampleSize;           //Specifies the sample size, in pixels, the function should take to determine if each cell is on or off.
-    DataMatrixCellFilterMode   cellFilterMode;           //Specifies the mode the function uses to determine the pixel value for each cell.
-    unsigned int               skewDegreesAllowed;       //Specifies the amount of skew in the Data Matrix barcode the function should allow for.
-    unsigned int               maxIterations;            //Specifies the maximum number of iterations before the function stops looking for the Data Matrix barcode.
-    unsigned int               initialSearchVectorWidth; //Specifies the number of pixels the function should average together to determine the location of an edge.
-} DataMatrixSearchOptions;
-
-typedef struct DataMatrixReport_struct {
-    int                        found;                //This element is TRUE if the function located and decoded a Data Matrix barcode and FALSE if the function failed to locate and decode a Data Matrix barcode.
-    int                        binary;               //This element is TRUE if the Data Matrix barcode contains binary data and FALSE if the Data Matrix barcode contains text data.
-    unsigned char*             data;                 //The data encoded in the Data Matrix barcode.
-    unsigned int               dataLength;           //The length of the data array.
-    PointFloat                 boundingBox[4];       //An array of four points describing the rectangle surrounding the Data Matrix barcode.
-    unsigned int               numErrorsCorrected;   //The number of errors the function corrected when decoding the Data Matrix barcode.
-    unsigned int               numErasuresCorrected; //The number of erasures the function corrected when decoding the Data Matrix barcode.
-    float                      aspectRatio;          //Specifies the aspect ratio of the Data Matrix barcode in the image, which equals the ratio of the width of a Data Matrix barcode cell (in pixels) to the height of a Data Matrix barcode cell (in pixels).
-    unsigned int               rows;                 //The number of rows in the Data Matrix barcode.
-    unsigned int               columns;              //The number of columns in the Data Matrix barcode.
-    DataMatrixECC              ecc;                  //The Error Correction Code (ECC) used by the Data Matrix barcode.
-    DataMatrixPolarity         polarity;             //The polarity of the Data Matrix barcode.
-    DataMatrixCellFillMode     cellFill;             //The cell fill percentage of the Data Matrix barcode.
-    float                      borderIntegrity;      //The percentage of the Data Matrix barcode border that appears correctly in the image.
-    int                        mirrored;             //This element is TRUE if the Data Matrix barcode appears mirrored in the image and FALSE if the Data Matrix barcode appears normally in the image.
-    unsigned int               minimumEdgeStrength;  //The strength of the weakest edge the function used to find the coarse location of the Data Matrix barcode in the image.
-    DataMatrixDemodulationMode demodulationMode;     //The demodulation mode the function used to locate the Data Matrix barcode.
-    DataMatrixCellSampleSize   cellSampleSize;       //The cell sample size the function used to locate the Data Matrix barcode.
-    DataMatrixCellFilterMode   cellFilterMode;       //The cell filter mode the function used to locate the Data Matrix barcode.
-    unsigned int               iterations;           //The number of iterations the function took in attempting to locate the Data Matrix barcode.
-} DataMatrixReport;
-
-typedef struct JPEG2000FileAdvancedOptions_struct {
-    WaveletTransformMode waveletMode;                //Determines which wavelet transform to use when writing the file.
-    int                  useMultiComponentTransform; //Set this parameter to TRUE to use an additional transform on RGB images.
-    unsigned int         maxWaveletTransformLevel;   //Specifies the maximum allowed level of wavelet transform.
-    float                quantizationStepSize;       //Specifies the absolute base quantization step size for derived quantization mode.
-} JPEG2000FileAdvancedOptions;
-
-typedef struct MatchGeometricPatternAdvancedOptions2_struct {
-    int    minFeaturesUsed;            //Specifies the minimum number of features the function uses when matching.
-    int    maxFeaturesUsed;            //Specifies the maximum number of features the function uses when matching.
-    int    subpixelIterations;         //Specifies the maximum number of incremental improvements used to refine matches with subpixel information.
-    double subpixelTolerance;          //Specifies the maximum amount of change, in pixels, between consecutive incremental improvements in the match position before the function stops refining the match position.
-    int    initialMatchListLength;     //Specifies the maximum size of the match list.
-    float  matchTemplateCurveScore;    //Set this element to TRUE to specify that the function should calculate the match curve to template curve score and return it for each match result.
-    int    correlationScore;           //Set this element to TRUE to specify that the function should calculate the correlation score and return it for each match result.
-    double minMatchSeparationDistance; //Specifies the minimum separation distance, in pixels, between the origins of two matches that have unique positions.
-    double minMatchSeparationAngle;    //Specifies the minimum angular difference, in degrees, between two matches that have unique angles.
-    double minMatchSeparationScale;    //Specifies the minimum difference in scale, expressed as a percentage, between two matches that have unique scales.
-    double maxMatchOverlap;            //Specifies the maximum amount of overlap, expressed as a percentage, allowed between the bounding rectangles of two unique matches.
-    int    coarseResult;               //Specifies whether you want the function to spend less time accurately estimating the location of a match.
-    int    smoothContours;             //Set this element to TRUE to specify smoothing be done on the contours of the inspection image before feature extraction.
-    int    enableCalibrationSupport;   //Set this element to TRUE to specify the algorithm treat the inspection image as a calibrated image.
-} MatchGeometricPatternAdvancedOptions2;
-
-typedef struct InspectionAlignment_struct {
-    PointFloat position; //The location of the center of the golden template in the image under inspection.
-    float      rotation; //The rotation of the golden template in the image under inspection, in degrees.
-    float      scale;    //The percentage of the size of the area under inspection compared to the size of the golden template.
-} InspectionAlignment;
-
-typedef struct InspectionOptions_struct {
-    RegistrationMethod  registrationMethod;    //Specifies how the function registers the golden template and the target image.
-    NormalizationMethod normalizationMethod;   //Specifies how the function normalizes the golden template to the target image.
-    int                 edgeThicknessToIgnore; //Specifies desired thickness of edges to be ignored.
-    float               brightThreshold;       //Specifies the threshold for areas where the target image is brighter than the golden template.
-    float               darkThreshold;         //Specifies the threshold for areas where the target image is darker than the golden template.
-    int                 binary;                //Specifies whether the function should return a binary image giving the location of defects, or a grayscale image giving the intensity of defects.
-} InspectionOptions;
-
-typedef struct CharReport2_struct {
-    const char* character;           //The character value.
-    PointFloat  corner[4];           //An array of four points that describes the rectangle that surrounds the character.
-    int         lowThreshold;        //The minimum value of the threshold range used for this character.
-    int         highThreshold;       //The maximum value of the threshold range used for this character.
-    int         classificationScore; //The degree to which the assigned character class represents the object better than the other character classes in the character set.
-    int         verificationScore;   //The similarity of the character and the reference character for the character class.
-    int         verified;            //This element is TRUE if a reference character was found for the character class and FALSE if a reference character was not found.
-} CharReport2;
-
-typedef struct CharInfo2_struct {
-    const char*  charValue;       //Retrieves the character value of the corresponding character in the character set.
-    const Image* charImage;       //The image you used to train this character.
-    const Image* internalImage;   //The internal representation that NI Vision uses to match objects to this character.
-    int          isReferenceChar; //This element is TRUE if the character is the reference character for the character class.
-} CharInfo2;
-
-typedef struct ReadTextReport2_struct {
-    const char*  readString;          //The read string.
-    CharReport2* characterReport;     //An array of reports describing the properties of each identified character.
-    int          numCharacterReports; //The number of identified characters.
-} ReadTextReport2;
-
-typedef struct EllipseFeature_struct {
-    PointFloat position;    //The location of the center of the ellipse.
-    double     rotation;    //The orientation of the semi-major axis of the ellipse with respect to the horizontal.
-    double     minorRadius; //The length of the semi-minor axis of the ellipse.
-    double     majorRadius; //The length of the semi-major axis of the ellipse.
-} EllipseFeature;
-
-typedef struct CircleFeature_struct {
-    PointFloat position; //The location of the center of the circle.
-    double     radius;   //The radius of the circle.
-} CircleFeature;
-
-typedef struct ConstCurveFeature_struct {
-    PointFloat position;   //The center of the circle that this constant curve lies upon.
-    double     radius;     //The radius of the circle that this constant curve lies upon.
-    double     startAngle; //When traveling along the constant curve from one endpoint to the next in a counterclockwise manner, this is the angular component of the vector originating at the center of the constant curve and pointing towards the first endpoint of the constant curve.
-    double     endAngle;   //When traveling along the constant curve from one endpoint to the next in a counterclockwise manner, this is the angular component of the vector originating at the center of the constant curve and pointing towards the second endpoint of the constant curve.
-} ConstCurveFeature;
-
-typedef struct RectangleFeature_struct {
-    PointFloat position;  //The center of the rectangle.
-    PointFloat corner[4]; //The four corners of the rectangle.
-    double     rotation;  //The orientation of the rectangle with respect to the horizontal.
-    double     width;     //The width of the rectangle.
-    double     height;    //The height of the rectangle.
-} RectangleFeature;
-
-typedef struct LegFeature_struct {
-    PointFloat position;  //The location of the leg feature.
-    PointFloat corner[4]; //The four corners of the leg feature.
-    double     rotation;  //The orientation of the leg with respect to the horizontal.
-    double     width;     //The width of the leg.
-    double     height;    //The height of the leg.
-} LegFeature;
-
-typedef struct CornerFeature_struct {
-    PointFloat position;      //The location of the corner feature.
-    double     rotation;      //The angular component of the vector bisecting the corner from position.
-    double     enclosedAngle; //The measure of the enclosed angle of the corner.
-    int        isVirtual;     
-} CornerFeature;
-
-typedef struct LineFeature_struct {
-    PointFloat startPoint; //The starting point of the line.
-    PointFloat endPoint;   //The ending point of the line.
-    double     length;     //The length of the line measured in pixels from the start point to the end point.
-    double     rotation;   //The orientation of the line with respect to the horizontal.
-} LineFeature;
-
-typedef struct ParallelLinePairFeature_struct {
-    PointFloat firstStartPoint;  //The starting point of the first line of the pair.
-    PointFloat firstEndPoint;    //The ending point of the first line of the pair.
-    PointFloat secondStartPoint; //The starting point of the second line of the pair.
-    PointFloat secondEndPoint;   //The ending point of the second line of the pair.
-    double     rotation;         //The orientation of the feature with respect to the horizontal.
-    double     distance;         //The distance from the first line to the second line.
-} ParallelLinePairFeature;
-
-typedef struct PairOfParallelLinePairsFeature_struct {
-    ParallelLinePairFeature firstParallelLinePair;  //The first parallel line pair.
-    ParallelLinePairFeature secondParallelLinePair; //The second parallel line pair.
-    double                  rotation;               //The orientation of the feature with respect to the horizontal.
-    double                  distance;               //The distance from the midline of the first parallel line pair to the midline of the second parallel line pair.
-} PairOfParallelLinePairsFeature;
-
-typedef union GeometricFeature_union {
-    CircleFeature*                  circle;                  //A pointer to a CircleFeature.
-    EllipseFeature*                 ellipse;                 //A pointer to an EllipseFeature.
-    ConstCurveFeature*              constCurve;              //A pointer to a ConstCurveFeature.
-    RectangleFeature*               rectangle;               //A pointer to a RectangleFeature.
-    LegFeature*                     leg;                     //A pointer to a LegFeature.
-    CornerFeature*                  corner;                  //A pointer to a CornerFeature.
-    ParallelLinePairFeature*        parallelLinePair;        //A pointer to a ParallelLinePairFeature.
-    PairOfParallelLinePairsFeature* pairOfParallelLinePairs; //A pointer to a PairOfParallelLinePairsFeature.
-    LineFeature*                    line;                    //A pointer to a LineFeature.
-    ClosedCurveFeature*             closedCurve;             //A pointer to a ClosedCurveFeature.
-} GeometricFeature;
-
-typedef struct FeatureData_struct {
-    FeatureType      type;             //An enumeration representing the type of the feature.
-    PointFloat*      contourPoints;    //A set of points describing the contour of the feature.
-    int              numContourPoints; //The number of points in the contourPoints array.
-    GeometricFeature feature;          //The feature data specific to this type of feature.
-} FeatureData;
-
-typedef struct GeometricPatternMatch2_struct {
-    PointFloat   position;                //The location of the origin of the template in the match.
-    float        rotation;                //The rotation of the match relative to the template image, in degrees.
-    float        scale;                   //The size of the match relative to the size of the template image, expressed as a percentage.
-    float        score;                   //The accuracy of the match.
-    PointFloat   corner[4];               //An array of four points describing the rectangle surrounding the template image.
-    int          inverse;                 //This element is TRUE if the match is an inverse of the template image.
-    float        occlusion;               //The percentage of the match that is occluded.
-    float        templateMatchCurveScore; //The accuracy of the match obtained by comparing the template curves to the curves in the match region.
-    float        matchTemplateCurveScore; //The accuracy of the match obtained by comparing the curves in the match region to the template curves.
-    float        correlationScore;        //The accuracy of the match obtained by comparing the template image to the match region using a correlation metric that compares the two regions as a function of their pixel values.
-    String255    label;                   //The label corresponding to this match when the match is returned by imaqMatchMultipleGeometricPatterns().
-    FeatureData* featureData;             //The features used in this match.
-    int          numFeatureData;          //The size of the featureData array.
-    PointFloat   calibratedPosition;      //The location of the origin of the template in the match.
-    float        calibratedRotation;      //The rotation of the match relative to the template image, in degrees.
-    PointFloat   calibratedCorner[4];     //An array of four points describing the rectangle surrounding the template image.
-} GeometricPatternMatch2;
-
-typedef struct ClosedCurveFeature_struct {
-    PointFloat position;  //The center of the closed curve feature.
-    double     arcLength; //The arc length of the closed curve feature.
-} ClosedCurveFeature;
-
-typedef struct LineMatch_struct {
-    PointFloat startPoint; //The starting point of the matched line.
-    PointFloat endPoint;   //The ending point of the matched line.
-    double     length;     //The length of the line measured in pixels from the start point to the end point.
-    double     rotation;   //The orientation of the matched line.
-    double     score;      //The score of the matched line.
-} LineMatch;
-
-typedef struct LineDescriptor_struct {
-    double minLength; //Specifies the minimum length of a line the function will return.
-    double maxLength; //Specifies the maximum length of a line the function will return.
-} LineDescriptor;
-
-typedef struct RectangleDescriptor_struct {
-    double minWidth;  //Specifies the minimum width of a rectangle the algorithm will return.
-    double maxWidth;  //Specifies the maximum width of a rectangle the algorithm will return.
-    double minHeight; //Specifies the minimum height of a rectangle the algorithm will return.
-    double maxHeight; //Specifies the maximum height of a rectangle the algorithm will return.
-} RectangleDescriptor;
-
-typedef struct RectangleMatch_struct {
-    PointFloat corner[4]; //The corners of the matched rectangle.
-    double     rotation;  //The orientation of the matched rectangle.
-    double     width;     //The width of the matched rectangle.
-    double     height;    //The height of the matched rectangle.
-    double     score;     //The score of the matched rectangle.
-} RectangleMatch;
-
-typedef struct EllipseDescriptor_struct {
-    double minMajorRadius; //Specifies the minimum length of the semi-major axis of an ellipse the function will return.
-    double maxMajorRadius; //Specifies the maximum length of the semi-major axis of an ellipse the function will return.
-    double minMinorRadius; //Specifies the minimum length of the semi-minor axis of an ellipse the function will return.
-    double maxMinorRadius; //Specifies the maximum length of the semi-minor axis of an ellipse the function will return.
-} EllipseDescriptor;
-
-typedef struct EllipseMatch_struct {
-    PointFloat position;    //The location of the center of the matched ellipse.
-    double     rotation;    //The orientation of the matched ellipse.
-    double     majorRadius; //The length of the semi-major axis of the matched ellipse.
-    double     minorRadius; //The length of the semi-minor axis of the matched ellipse.
-    double     score;       //The score of the matched ellipse.
-} EllipseMatch;
-
-typedef struct CircleMatch_struct {
-    PointFloat position; //The location of the center of the matched circle.
-    double     radius;   //The radius of the matched circle.
-    double     score;    //The score of the matched circle.
-} CircleMatch;
-
-typedef struct CircleDescriptor_struct {
-    double minRadius; //Specifies the minimum radius of a circle the function will return.
-    double maxRadius; //Specifies the maximum radius of a circle the function will return.
-} CircleDescriptor;
-
-typedef struct ShapeDetectionOptions_struct {
-    unsigned int mode;           //Specifies the method used when looking for the shape in the image.
-    RangeFloat*  angleRanges;    //An array of angle ranges, in degrees, where each range specifies how much you expect the shape to be rotated in the image.
-    int          numAngleRanges; //The size of the orientationRanges array.
-    RangeFloat   scaleRange;     //A range that specifies the sizes of the shapes you expect to be in the image, expressed as a ratio percentage representing the size of the pattern in the image divided by size of the original pattern multiplied by 100.
-    double       minMatchScore;  
-} ShapeDetectionOptions;
-
-typedef struct Curve_struct {
-    PointFloat*  points;              //The points on the curve.
-    unsigned int numPoints;           //The number of points in the curve.
-    int          closed;              //This element is TRUE if the curve is closed and FALSE if the curve is open.
-    double       curveLength;         //The length of the curve.
-    double       minEdgeStrength;     //The lowest edge strength detected on the curve.
-    double       maxEdgeStrength;     //The highest edge strength detected on the curve.
-    double       averageEdgeStrength; //The average of all edge strengths detected on the curve.
-} Curve;
-
-typedef struct CurveOptions_struct {
-    ExtractionMode extractionMode;   //Specifies the method the function uses to identify curves in the image.
-    int            threshold;        //Specifies the minimum contrast a seed point must have in order to begin a curve.
-    EdgeFilterSize filterSize;       //Specifies the width of the edge filter the function uses to identify curves in the image.
-    int            minLength;        //Specifies the length, in pixels, of the smallest curve the function will extract.
-    int            rowStepSize;      //Specifies the distance, in the y direction, between lines the function inspects for curve seed points.
-    int            columnStepSize;   //Specifies the distance, in the x direction, between columns the function inspects for curve seed points.
-    int            maxEndPointGap;   //Specifies the maximum gap, in pixels, between the endpoints of a curve that the function identifies as a closed curve.
-    int            onlyClosed;       //Set this element to TRUE to specify that the function should only identify closed curves in the image.
-    int            subpixelAccuracy; //Set this element to TRUE to specify that the function identifies the location of curves with subpixel accuracy by interpolating between points to find the crossing of threshold.
-} CurveOptions;
-
-typedef struct Barcode2DInfo_struct {
-    Barcode2DType  type;                 //The type of the 2D barcode.
-    int            binary;               //This element is TRUE if the 2D barcode contains binary data and FALSE if the 2D barcode contains text data.
-    unsigned char* data;                 //The data encoded in the 2D barcode.
-    unsigned int   dataLength;           //The length of the data array.
-    PointFloat     boundingBox[4];       //An array of four points describing the rectangle surrounding the 2D barcode.
-    unsigned int   numErrorsCorrected;   //The number of errors the function corrected when decoding the 2D barcode.
-    unsigned int   numErasuresCorrected; //The number of erasures the function corrected when decoding the 2D barcode.
-    unsigned int   rows;                 //The number of rows in the 2D barcode.
-    unsigned int   columns;              //The number of columns in the 2D barcode.
-} Barcode2DInfo;
-
-typedef struct DataMatrixOptions_struct {
-    Barcode2DSearchMode searchMode;   //Specifies the mode the function uses to search for barcodes.
-    Barcode2DContrast   contrast;     //Specifies the contrast of the barcodes that the function searches for.
-    Barcode2DCellShape  cellShape;    //Specifies the shape of the barcode data cells, which affects how the function decodes the barcode.
-    Barcode2DShape      barcodeShape; //Specifies the shape of the barcodes that the function searches for.
-    DataMatrixSubtype   subtype;      //Specifies the Data Matrix subtypes of the barcodes that the function searches for.
-} DataMatrixOptions;
-
-typedef struct ClassifierAccuracyReport_struct {
-    int     size;                       //The size of the arrays in this structure.
-    float   accuracy;                   //The overall accuracy of the classifier, from 0 to 1000.
-    char**  classNames;                 //The names of the classes of this classifier.
-    double* classAccuracy;              //An array of size elements that contains accuracy information for each class.
-    double* classPredictiveValue;       //An array containing size elements that contains the predictive values of each class.
-    int**   classificationDistribution; //A two-dimensional array containing information about how the classifier classifies its samples.
-} ClassifierAccuracyReport;
-
-typedef struct NearestNeighborClassResult_struct {
-    char* className;         //The name of the class.
-    float standardDeviation; //The standard deviation of the members of this class.
-    int   count;             //The number of samples in this class.
-} NearestNeighborClassResult;
-
-typedef struct NearestNeighborTrainingReport_struct {
-    float**                     classDistancesTable; //The confidence in the training.
-    NearestNeighborClassResult* allScores;           //All classes and their scores.
-    int                         allScoresSize;       //The number of entries in allScores.
-} NearestNeighborTrainingReport;
-
-typedef struct ParticleClassifierPreprocessingOptions_struct {
-    int             manualThreshold;      //Set this element to TRUE to specify the threshold range manually.
-    RangeFloat      manualThresholdRange; //If a manual threshold is being done, the range of pixels to keep.
-    ThresholdMethod autoThresholdMethod;  //If an automatic threshold is being done, the method used to calculate the threshold range.
-    RangeFloat      limits;               //The limits on the automatic threshold range.
-    ParticleType    particleType;         //Specifies what kind of particles to look for.
-    int             rejectBorder;         //Set this element to TRUE to reject border particles.
-    int             numErosions;          //The number of erosions to perform.
-} ParticleClassifierPreprocessingOptions;
-
-typedef struct ClassifierSampleInfo_struct {
-    char*   className;         //The name of the class this sample is in.
-    double* featureVector;     //The feature vector of this sample, or NULL if this is not a custom classifier session.
-    int     featureVectorSize; //The number of elements in the feature vector.
-    Image*  thumbnail;         //A thumbnail image of this sample, or NULL if no image was specified.
-} ClassifierSampleInfo;
-
-typedef struct ClassScore_struct {
-    char* className; //The name of the class.
-    float distance;  //The distance from the item to this class.
-} ClassScore;
-
-typedef struct ClassifierReport_struct {
-    char*       bestClassName;       //The name of the best class for the sample.
-    float       classificationScore; //The similarity of the sample and the two closest classes in the classifier.
-    float       identificationScore; //The similarity of the sample and the assigned class.
-    ClassScore* allScores;           //All classes and their scores.
-    int         allScoresSize;       //The number of entries in allScores.
-} ClassifierReport;
-
-typedef struct NearestNeighborOptions_struct {
-    NearestNeighborMethod method; //The method to use.
-    NearestNeighborMetric metric; //The metric to use.
-    int                   k;      //The value of k, if the IMAQ_K_NEAREST_NEIGHBOR method is used.
-} NearestNeighborOptions;
-
-typedef struct ParticleClassifierOptions_struct {
-    float scaleDependence;  //The relative importance of scale when classifying particles.
-    float mirrorDependence; //The relative importance of mirror symmetry when classifying particles.
-} ParticleClassifierOptions;
-
-typedef struct RGBU64Value_struct {
-    unsigned short B;     //The blue value of the color.
-    unsigned short G;     //The green value of the color.
-    unsigned short R;     //The red value of the color.
-    unsigned short alpha; //The alpha value of the color, which represents extra information about a color image, such as gamma correction.
-} RGBU64Value;
-
-typedef struct GeometricPatternMatch_struct {
-    PointFloat position;                //The location of the origin of the template in the match.
-    float      rotation;                //The rotation of the match relative to the template image, in degrees.
-    float      scale;                   //The size of the match relative to the size of the template image, expressed as a percentage.
-    float      score;                   //The accuracy of the match.
-    PointFloat corner[4];               //An array of four points describing the rectangle surrounding the template image.
-    int        inverse;                 //This element is TRUE if the match is an inverse of the template image.
-    float      occlusion;               //The percentage of the match that is occluded.
-    float      templateMatchCurveScore; //The accuracy of the match obtained by comparing the template curves to the curves in the match region.
-    float      matchTemplateCurveScore; //The accuracy of the match obtained by comparing the curves in the match region to the template curves.
-    float      correlationScore;        //The accuracy of the match obtained by comparing the template image to the match region using a correlation metric that compares the two regions as a function of their pixel values.
-} GeometricPatternMatch;
-
-typedef struct MatchGeometricPatternAdvancedOptions_struct {
-    int    minFeaturesUsed;            //Specifies the minimum number of features the function uses when matching.
-    int    maxFeaturesUsed;            //Specifies the maximum number of features the function uses when matching.
-    int    subpixelIterations;         //Specifies the maximum number of incremental improvements used to refine matches with subpixel information.
-    double subpixelTolerance;          //Specifies the maximum amount of change, in pixels, between consecutive incremental improvements in the match position before the function stops refining the match position.
-    int    initialMatchListLength;     //Specifies the maximum size of the match list.
-    int    matchTemplateCurveScore;    //Set this element to TRUE to specify that the function should calculate the match curve to template curve score and return it for each match result.
-    int    correlationScore;           //Set this element to TRUE to specify that the function should calculate the correlation score and return it for each match result.
-    double minMatchSeparationDistance; //Specifies the minimum separation distance, in pixels, between the origins of two matches that have unique positions.
-    double minMatchSeparationAngle;    //Specifies the minimum angular difference, in degrees, between two matches that have unique angles.
-    double minMatchSeparationScale;    //Specifies the minimum difference in scale, expressed as a percentage, between two matches that have unique scales.
-    double maxMatchOverlap;            //Specifies the maximum amount of overlap, expressed as a percentage, allowed between the bounding rectangles of two unique matches.
-    int    coarseResult;               //Specifies whether you want the function to spend less time accurately estimating the location of a match.
-} MatchGeometricPatternAdvancedOptions;
-
-typedef struct MatchGeometricPatternOptions_struct {
-    unsigned int mode;                //Specifies the method imaqMatchGeometricPattern() uses when looking for the pattern in the image.
-    int          subpixelAccuracy;    //Set this element to TRUE to specify that the function should calculate match locations with subpixel accuracy.
-    RangeFloat*  angleRanges;         //An array of angle ranges, in degrees, where each range specifies how much you expect the template to be rotated in the image.
-    int          numAngleRanges;      //Number of angle ranges in the angleRanges array.
-    RangeFloat   scaleRange;          //A range that specifies the sizes of the pattern you expect to be in the image, expressed as a ratio percentage representing the size of the pattern in the image divided by size of the original pattern multiplied by 100.
-    RangeFloat   occlusionRange;      //A range that specifies the percentage of the pattern you expect to be occluded in the image.
-    int          numMatchesRequested; //Number of valid matches expected.
-    float        minMatchScore;       //The minimum score a match can have for the function to consider the match valid.
-} MatchGeometricPatternOptions;
-
-typedef struct LearnGeometricPatternAdvancedOptions_struct {
-    int    minRectLength;            //Specifies the minimum length for each side of a rectangular feature.
-    double minRectAspectRatio;       //Specifies the minimum aspect ratio of a rectangular feature.
-    int    minRadius;                //Specifies the minimum radius for a circular feature.
-    int    minLineLength;            //Specifies the minimum length for a linear feature.
-    double minFeatureStrength;       //Specifies the minimum strength for a feature.
-    int    maxFeaturesUsed;          //Specifies the maximum number of features the function uses when learning.
-    int    maxPixelDistanceFromLine; //Specifies the maximum number of pixels between an edge pixel and a linear feature for the function to consider that edge pixel as part of the linear feature.
-} LearnGeometricPatternAdvancedOptions;
-
-typedef struct FitEllipseOptions_struct {
-    int    rejectOutliers; //Whether to use every given point or only a subset of the points to fit the ellipse.
-    double minScore;       //Specifies the required quality of the fitted ellipse.
-    double pixelRadius;    //The acceptable distance, in pixels, that a point determined to belong to the ellipse can be from the circumference of the ellipse.
-    int    maxIterations;  //Specifies the number of refinement iterations you allow the function to perform on the initial subset of points.
-} FitEllipseOptions;
-
-typedef struct FitCircleOptions_struct {
-    int    rejectOutliers; //Whether to use every given point or only a subset of the points to fit the circle.
-    double minScore;       //Specifies the required quality of the fitted circle.
-    double pixelRadius;    //The acceptable distance, in pixels, that a point determined to belong to the circle can be from the circumference of the circle.
-    int    maxIterations;  //Specifies the number of refinement iterations you allow the function to perform on the initial subset of points.
-} FitCircleOptions;
-
-typedef struct ConstructROIOptions2_struct {
-    int          windowNumber; //The window number of the image window.
-    const char*  windowTitle;  //Specifies the message string that the function displays in the title bar of the window.
-    PaletteType  type;         //The palette type to use.
-    RGBValue*    palette;      //If type is IMAQ_PALETTE_USER, this array is the palette of colors to use with the window.
-    int          numColors;    //If type is IMAQ_PALETTE_USER, this element is the number of colors in the palette array.
-    unsigned int maxContours;  //The maximum number of contours the user will be able to select.
-} ConstructROIOptions2;
-
-typedef struct HSLValue_struct {
-    unsigned char L;     //The color luminance.
-    unsigned char S;     //The color saturation.
-    unsigned char H;     //The color hue.
-    unsigned char alpha; //The alpha value of the color, which represents extra information about a color image, such as gamma correction.
-} HSLValue;
-
-typedef struct HSVValue_struct {
-    unsigned char V;     //The color value.
-    unsigned char S;     //The color saturation.
-    unsigned char H;     //The color hue.
-    unsigned char alpha; //The alpha value of the color, which represents extra information about a color image, such as gamma correction.
-} HSVValue;
-
-typedef struct HSIValue_struct {
-    unsigned char I;     //The color intensity.
-    unsigned char S;     //The color saturation.
-    unsigned char H;     //The color hue.
-    unsigned char alpha; //The alpha value of the color, which represents extra information about a color image, such as gamma correction.
-} HSIValue;
-
-typedef struct CIELabValue_struct {
-    double        b;     //The yellow/blue information of the color.
-    double        a;     //The red/green information of the color.
-    double        L;     //The color lightness.
-    unsigned char alpha; //The alpha value of the color, which represents extra information about a color image, such as gamma correction.
-} CIELabValue;
-
-typedef struct CIEXYZValue_struct {
-    double        Z;     //The Z color information.
-    double        Y;     //The color luminance.
-    double        X;     //The X color information.
-    unsigned char alpha; //The alpha value of the color, which represents extra information about a color image, such as gamma correction.
-} CIEXYZValue;
-
-typedef union Color2_union {
-    RGBValue    rgb;      //The information needed to describe a color in the RGB (Red, Green, and Blue) color space.
-    HSLValue    hsl;      //The information needed to describe a color in the HSL (Hue, Saturation, and Luminance) color space.
-    HSVValue    hsv;      //The information needed to describe a color in the HSI (Hue, Saturation, and Value) color space.
-    HSIValue    hsi;      //The information needed to describe a color in the HSI (Hue, Saturation, and Intensity) color space.
-    CIELabValue cieLab;   //The information needed to describe a color in the CIE L*a*b* (L, a, b) color space.
-    CIEXYZValue cieXYZ;   //The information needed to describe a color in the CIE XYZ (X, Y, Z) color space.
-    int         rawValue; //The integer value for the data in the color union.
-} Color2;
-
-typedef struct BestEllipse2_struct {
-    PointFloat center;         //The coordinate location of the center of the ellipse.
-    PointFloat majorAxisStart; //The coordinate location of the start of the major axis of the ellipse.
-    PointFloat majorAxisEnd;   //The coordinate location of the end of the major axis of the ellipse.
-    PointFloat minorAxisStart; //The coordinate location of the start of the minor axis of the ellipse.
-    PointFloat minorAxisEnd;   //The coordinate location of the end of the minor axis of the ellipse.
-    double     area;           //The area of the ellipse.
-    double     perimeter;      //The length of the perimeter of the ellipse.
-    double     error;          //Represents the least square error of the fitted ellipse to the entire set of points.
-    int        valid;          //This element is TRUE if the function achieved the minimum score within the number of allowed refinement iterations and FALSE if the function did not achieve the minimum score.
-    int*       pointsUsed;     //An array of the indexes for the points array indicating which points the function used to fit the ellipse.
-    int        numPointsUsed;  //The number of points the function used to fit the ellipse.
-} BestEllipse2;
-
-typedef struct LearnPatternAdvancedOptions_struct {
-    LearnPatternAdvancedShiftOptions*    shiftOptions;    //Use this element to control the behavior of imaqLearnPattern2() during the shift-invariant learning phase.
-    LearnPatternAdvancedRotationOptions* rotationOptions; //Use this element to control the behavior of imaqLearnPattern2()during the rotation-invariant learning phase.
-} LearnPatternAdvancedOptions;
-
-typedef struct AVIInfo_struct {
-    unsigned int width;           //The width of each frame.
-    unsigned int height;          //The height of each frame.
-    ImageType    imageType;       //The type of images this AVI contains.
-    unsigned int numFrames;       //The number of frames in the AVI.
-    unsigned int framesPerSecond; //The number of frames per second this AVI should be shown at.
-    char*        filterName;      //The name of the compression filter used to create this AVI.
-    int          hasData;         //Specifies whether this AVI has data attached to each frame or not.
-    unsigned int maxDataSize;     //If this AVI has data, the maximum size of the data in each frame.
-} AVIInfo;
-
-typedef struct LearnPatternAdvancedShiftOptions_struct {
-    int    initialStepSize;          //The largest number of image pixels to shift the sample across the inspection image during the initial phase of shift-invariant matching.
-    int    initialSampleSize;        //Specifies the number of template pixels that you want to include in a sample for the initial phase of shift-invariant matching.
-    double initialSampleSizeFactor;  //Specifies the size of the sample for the initial phase of shift-invariant matching as a percent of the template size, in pixels.
-    int    finalSampleSize;          //Specifies the number of template pixels you want to add to initialSampleSize for the final phase of shift-invariant matching.
-    double finalSampleSizeFactor;    //Specifies the size of the sample for the final phase of shift-invariant matching as a percent of the edge points in the template, in pixels.
-    int    subpixelSampleSize;       //Specifies the number of template pixels that you want to include in a sample for the subpixel phase of shift-invariant matching.
-    double subpixelSampleSizeFactor; //Specifies the size of the sample for the subpixel phase of shift-invariant matching as a percent of the template size, in pixels.
-} LearnPatternAdvancedShiftOptions;
-
-typedef struct LearnPatternAdvancedRotationOptions_struct {
-    SearchStrategy searchStrategySupport;    //Specifies the aggressiveness of the rotation search strategy available during the matching phase.
-    int            initialStepSize;          //The largest number of image pixels to shift the sample across the inspection image during the initial phase of matching.
-    int            initialSampleSize;        //Specifies the number of template pixels that you want to include in a sample for the initial phase of rotation-invariant matching.
-    double         initialSampleSizeFactor;  //Specifies the size of the sample for the initial phase of rotation-invariant matching as a percent of the template size, in pixels.
-    int            initialAngularAccuracy;   //Sets the angle accuracy, in degrees, to use during the initial phase of rotation-invariant matching.
-    int            finalSampleSize;          //Specifies the number of template pixels you want to add to initialSampleSize for the final phase of rotation-invariant matching.
-    double         finalSampleSizeFactor;    //Specifies the size of the sample for the final phase of rotation-invariant matching as a percent of the edge points in the template, in pixels.
-    int            finalAngularAccuracy;     //Sets the angle accuracy, in degrees, to use during the final phase of the rotation-invariant matching.
-    int            subpixelSampleSize;       //Specifies the number of template pixels that you want to include in a sample for the subpixel phase of rotation-invariant matching.
-    double         subpixelSampleSizeFactor; //Specifies the size of the sample for the subpixel phase of rotation-invariant matching as a percent of the template size, in pixels.
-} LearnPatternAdvancedRotationOptions;
-
-typedef struct MatchPatternAdvancedOptions_struct {
-    int            subpixelIterations;          //Defines the maximum number of incremental improvements used to refine matching using subpixel information.
-    double         subpixelTolerance;           //Defines the maximum amount of change, in pixels, between consecutive incremental improvements in the match position that you want to trigger the end of the refinement process.
-    int            initialMatchListLength;      //Specifies the maximum size of the match list.
-    int            matchListReductionFactor;    //Specifies the reduction of the match list as matches are refined.
-    int            initialStepSize;             //Specifies the number of pixels to shift the sample across the inspection image during the initial phase of shift-invariant matching.
-    SearchStrategy searchStrategy;              //Specifies the aggressiveness of the rotation search strategy.
-    int            intermediateAngularAccuracy; //Specifies the accuracy to use during the intermediate phase of rotation-invariant matching.
-} MatchPatternAdvancedOptions;
-
-typedef struct ParticleFilterCriteria2_struct {
-    MeasurementType parameter;  //The morphological measurement that the function uses for filtering.
-    float           lower;      //The lower bound of the criteria range.
-    float           upper;      //The upper bound of the criteria range.
-    int             calibrated; //Set this element to TRUE to take calibrated measurements.
-    int             exclude;    //Set this element to TRUE to indicate that a match occurs when the measurement is outside the criteria range.
-} ParticleFilterCriteria2;
-
-typedef struct BestCircle2_struct {
-    PointFloat center;        //The coordinate location of the center of the circle.
-    double     radius;        //The radius of the circle.
-    double     area;          //The area of the circle.
-    double     perimeter;     //The length of the perimeter of the circle.
-    double     error;         //Represents the least square error of the fitted circle to the entire set of points.
-    int        valid;         //This element is TRUE if the function achieved the minimum score within the number of allowed refinement iterations and FALSE if the function did not achieve the minimum score.
-    int*       pointsUsed;    //An array of the indexes for the points array indicating which points the function used to fit the circle.
-    int        numPointsUsed; //The number of points the function used to fit the circle.
-} BestCircle2;
-
-typedef struct OCRSpacingOptions_struct {
-    int minCharSpacing;              //The minimum number of pixels that must be between two characters for NI Vision to train or read the characters separately.
-    int minCharSize;                 //The minimum number of pixels required for an object to be a potentially identifiable character.
-    int maxCharSize;                 //The maximum number of pixels required for an object to be a potentially identifiable character.
-    int maxHorizontalElementSpacing; //The maximum horizontal spacing, in pixels, allowed between character elements to train or read the character elements as a single character.
-    int maxVerticalElementSpacing;   //The maximum vertical element spacing in pixels.
-    int minBoundingRectWidth;        //The minimum possible width, in pixels, for a character bounding rectangle.
-    int maxBoundingRectWidth;        //The maximum possible width, in pixels, for a character bounding rectangle.
-    int minBoundingRectHeight;       //The minimum possible height, in pixels, for a character bounding rectangle.
-    int maxBoundingRectHeight;       //The maximum possible height, in pixels, for a character bounding rectangle.
-    int autoSplit;                   //Set this element to TRUE to automatically adjust the location of the character bounding rectangle when characters overlap vertically.
-} OCRSpacingOptions;
-
-typedef struct OCRProcessingOptions_struct {
-    ThresholdMode mode;                       //The thresholding mode.
-    int           lowThreshold;               //The low threshold value when you set mode to IMAQ_FIXED_RANGE.
-    int           highThreshold;              //The high threshold value when you set mode to IMAQ_FIXED_RANGE.
-    int           blockCount;                 //The number of blocks for threshold calculation algorithms that require blocks.
-    int           fastThreshold;              //Set this element to TRUE to use a faster, less accurate threshold calculation algorithm.
-    int           biModalCalculation;         //Set this element to TRUE to calculate both the low and high threshold values when using the fast thresholding method.
-    int           darkCharacters;             //Set this element to TRUE to read or train dark characters on a light background.
-    int           removeParticlesTouchingROI; //Set this element to TRUE to remove the particles touching the ROI.
-    int           erosionCount;               //The number of erosions to perform.
-} OCRProcessingOptions;
-
-typedef struct ReadTextOptions_struct {
-    String255      validChars[255];  //An array of strings that specifies the valid characters.
-    int            numValidChars;    //The number of strings in the validChars array that you have initialized.
-    char           substitutionChar; //The character to substitute for objects that the function cannot match with any of the trained characters.
-    ReadStrategy   readStrategy;     //The read strategy, which determines how closely the function analyzes images in the reading process to match objects with trained characters.
-    int            acceptanceLevel;  //The minimum acceptance level at which an object is considered a trained character.
-    int            aspectRatio;      //The maximum aspect ratio variance percentage for valid characters.
-    ReadResolution readResolution;   //The read resolution, which determines how much of the trained character data the function uses to match objects to trained characters.
-} ReadTextOptions;
-
-typedef struct CharInfo_struct {
-    const char*  charValue;     //Retrieves the character value of the corresponding character in the character set.
-    const Image* charImage;     //The image you used to train this character.
-    const Image* internalImage; //The internal representation that NI Vision uses to match objects to this character.
-} CharInfo;
-
-#if !defined(USERINT_HEADER) && !defined(_CVI_RECT_DEFINED)
-typedef struct Rect_struct {
-    int top;    //Location of the top edge of the rectangle.
-    int left;   //Location of the left edge of the rectangle.
-    int height; //Height of the rectangle.
-    int width;  //Width of the rectangle.
-} Rect;
-#define _CVI_RECT_DEFINED
-#endif
-
-typedef struct CharReport_struct {
-    const char* character;     //The character value.
-    PointFloat  corner[4];     //An array of four points that describes the rectangle that surrounds the character.
-    int         reserved;      //This element is reserved.
-    int         lowThreshold;  //The minimum value of the threshold range used for this character.
-    int         highThreshold; //The maximum value of the threshold range used for this character.
-} CharReport;
-
-typedef struct ReadTextReport_struct {
-    const char*       readString;          //The read string.
-    const CharReport* characterReport;     //An array of reports describing the properties of each identified character.
-    int               numCharacterReports; //The number of identified characters.
-} ReadTextReport;
-
-#if !defined(USERINT_HEADER) && !defined(_CVI_POINT_DEFINED)
-typedef struct Point_struct {
-    int x; //The x-coordinate of the point.
-    int y; //The y-coordinate of the point.
-} Point;
-#define _CVI_POINT_DEFINED
-#endif
-
-typedef struct Annulus_struct {
-    Point  center;      //The coordinate location of the center of the annulus.
-    int    innerRadius; //The internal radius of the annulus.
-    int    outerRadius; //The external radius of the annulus.
-    double startAngle;  //The start angle, in degrees, of the annulus.
-    double endAngle;    //The end angle, in degrees, of the annulus.
-} Annulus;
-
-typedef struct EdgeLocationReport_struct {
-    PointFloat* edges;    //The coordinate location of all edges detected by the search line.
-    int         numEdges; //The number of points in the edges array.
-} EdgeLocationReport;
-
-typedef struct EdgeOptions_struct {
-    unsigned            threshold;         //Specifies the threshold value for the contrast of the edge.
-    unsigned            width;             //The number of pixels that the function averages to find the contrast at either side of the edge.
-    unsigned            steepness;         //The span, in pixels, of the slope of the edge projected along the path specified by the input points.
-    InterpolationMethod subpixelType;      //The method for interpolating.
-    unsigned            subpixelDivisions; //The number of samples the function obtains from a pixel.
-} EdgeOptions;
-
-typedef struct EdgeReport_struct {
-    float        location;   //The location of the edge from the first point in the points array.
-    float        contrast;   //The contrast at the edge.
-    PolarityType polarity;   //The polarity of the edge.
-    float        reserved;   //This element is reserved.
-    PointFloat   coordinate; //The coordinates of the edge.
-} EdgeReport;
-
-typedef struct ExtremeReport_struct {
-    double location;         //The locations of the extreme.
-    double amplitude;        //The amplitude of the extreme.
-    double secondDerivative; //The second derivative of the extreme.
-} ExtremeReport;
-
-typedef struct FitLineOptions_struct {
-    float minScore;       //Specifies the required quality of the fitted line.
-    float pixelRadius;    //Specifies the neighborhood pixel relationship for the initial subset of points being used.
-    int   numRefinements; //Specifies the number of refinement iterations you allow the function to perform on the initial subset of points.
-} FitLineOptions;
-
-typedef struct DisplayMapping_struct {
-    MappingMethod method;       //Describes the method for converting 16-bit pixels to 8-bit pixels.
-    int           minimumValue; //When method is IMAQ_RANGE, minimumValue represents the value that is mapped to 0.
-    int           maximumValue; //When method is IMAQ_RANGE, maximumValue represents the value that is mapped to 255.
-    int           shiftCount;   //When method is IMAQ_DOWNSHIFT, shiftCount represents the number of bits the function right-shifts the 16-bit pixel values.
-} DisplayMapping;
-
-typedef struct DetectExtremesOptions_struct {
-    double threshold; //Defines which extremes are too small.
-    int    width;     //Specifies the number of consecutive data points the function uses in the quadratic least-squares fit.
-} DetectExtremesOptions;
-
-typedef struct ImageInfo_struct {
-    CalibrationUnit imageUnit;     //If you set calibration information with imaqSetSimpleCalibrationInfo(), imageUnit is the calibration unit.
-    float           stepX;         //If you set calibration information with imaqSetCalibrationInfo(), stepX is the distance in the calibration unit between two pixels in the x direction.
-    float           stepY;         //If you set calibration information with imaqSetCalibrationInfo(), stepY is the distance in the calibration unit between two pixels in the y direction.
-    ImageType       imageType;     //The type of the image.
-    int             xRes;          //The number of columns in the image.
-    int             yRes;          //The number of rows in the image.
-    int             xOffset;       //If you set mask offset information with imaqSetMaskOffset(), xOffset is the offset of the mask origin in the x direction.
-    int             yOffset;       //If you set mask offset information with imaqSetMaskOffset(), yOffset is the offset of the mask origin in the y direction.
-    int             border;        //The number of border pixels around the image.
-    int             pixelsPerLine; //The number of pixels stored for each line of the image.
-    void*           reserved0;     //This element is reserved.
-    void*           reserved1;     //This element is reserved.
-    void*           imageStart;    //A pointer to pixel (0,0).
-} ImageInfo;
-
-typedef struct LCDOptions_struct {
-    int   litSegments;  //Set this parameter to TRUE if the segments are brighter than the background.
-    float threshold;    //Determines whether a segment is ON or OFF.
-    int   sign;         //Indicates whether the function must read the sign of the indicator.
-    int   decimalPoint; //Determines whether to look for a decimal separator after each digit.
-} LCDOptions;
-
-typedef struct LCDReport_struct {
-    const char*  text;          //A string of the characters of the LCD.
-    LCDSegments* segmentInfo;   //An array of LCDSegment structures describing which segments of each digit are on.
-    int          numCharacters; //The number of characters that the function reads.
-    int          reserved;      //This element is reserved.
-} LCDReport;
-
-typedef struct LCDSegments_struct {
-    unsigned a:1;         //True if the a segment is on.
-    unsigned b:1;         //True if the b segment is on.
-    unsigned c:1;         //True if the c segment is on.
-    unsigned d:1;         //True if the d segment is on.
-    unsigned e:1;         //True if the e segment is on.
-    unsigned f:1;         //True if the f segment is on.
-    unsigned g:1;         //True if the g segment is on.
-    unsigned reserved:25; //This element is reserved.
-} LCDSegments;
-
-typedef struct LearnCalibrationOptions_struct {
-    CalibrationMode mode;       //Specifies the type of algorithm you want to use to reduce distortion in your image.
-    ScalingMethod   method;     //Defines the scaling method correction functions use to correct the image.
-    CalibrationROI  roi;        //Specifies the ROI correction functions use when correcting an image.
-    int             learnMap;   //Set this element to TRUE if you want the function to calculate and store an error map during the learning process.
-    int             learnTable; //Set this element to TRUE if you want the function to calculate and store the correction table.
-} LearnCalibrationOptions;
-
-typedef struct LearnColorPatternOptions_struct {
-    LearningMode      learnMode;         //Specifies the invariance mode the function uses when learning the pattern.
-    ImageFeatureMode  featureMode;       //Specifies the features the function uses when learning the color pattern.
-    int               threshold;         //Specifies the saturation threshold the function uses to distinguish between two colors that have the same hue values.
-    ColorIgnoreMode   ignoreMode;        //Specifies whether the function excludes certain colors from the color features of the template image.
-    ColorInformation* colorsToIgnore;    //An array of ColorInformation structures providing a set of colors to exclude from the color features of the template image.
-    int               numColorsToIgnore; //The number of ColorInformation structures in the colorsToIgnore array.
-} LearnColorPatternOptions;
-
-typedef struct Line_struct {
-    Point start; //The coordinate location of the start of the line.
-    Point end;   //The coordinate location of the end of the line.
-} Line;
-
-typedef struct LinearAverages_struct {
-    float* columnAverages;      //An array containing the mean pixel value of each column.
-    int    columnCount;         //The number of elements in the columnAverages array.
-    float* rowAverages;         //An array containing the mean pixel value of each row.
-    int    rowCount;            //The number of elements in the rowAverages array.
-    float* risingDiagAverages;  //An array containing the mean pixel value of each diagonal running from the lower left to the upper right of the inspected area of the image.
-    int    risingDiagCount;     //The number of elements in the risingDiagAverages array.
-    float* fallingDiagAverages; //An array containing the mean pixel value of each diagonal running from the upper left to the lower right of the inspected area of the image.
-    int    fallingDiagCount;    //The number of elements in the fallingDiagAverages array.
-} LinearAverages;
-
-typedef struct LineProfile_struct {
-    float* profileData; //An array containing the value of each pixel in the line.
-    Rect   boundingBox; //The bounding rectangle of the line.
-    float  min;         //The smallest pixel value in the line profile.
-    float  max;         //The largest pixel value in the line profile.
-    float  mean;        //The mean value of the pixels in the line profile.
-    float  stdDev;      //The standard deviation of the line profile.
-    int    dataCount;   //The size of the profileData array.
-} LineProfile;
-
-typedef struct MatchColorPatternOptions_struct {
-    MatchingMode        matchMode;           //Specifies the method to use when looking for the color pattern in the image.
-    ImageFeatureMode    featureMode;         //Specifies the features to use when looking for the color pattern in the image.
-    int                 minContrast;         //Specifies the minimum contrast expected in the image.
-    int                 subpixelAccuracy;    //Set this parameter to TRUE to return areas in the image that match the pattern area with subpixel accuracy.
-    RotationAngleRange* angleRanges;         //An array of angle ranges, in degrees, where each range specifies how much you expect the pattern to be rotated in the image.
-    int                 numRanges;           //Number of angle ranges in the angleRanges array.
-    double              colorWeight;         //Determines the percent contribution of the color score to the final color pattern matching score.
-    ColorSensitivity    sensitivity;         //Specifies the sensitivity of the color information in the image.
-    SearchStrategy      strategy;            //Specifies how the color features of the image are used during the search phase.
-    int                 numMatchesRequested; //Number of valid matches expected.
-    float               minMatchScore;       //The minimum score a match can have for the function to consider the match valid.
-} MatchColorPatternOptions;
-
-typedef struct HistogramReport_struct {
-    int*  histogram;      //An array describing the number of pixels that fell into each class.
-    int   histogramCount; //The number of elements in the histogram array.
-    float min;            //The smallest pixel value that the function classified.
-    float max;            //The largest pixel value that the function classified.
-    float start;          //The smallest pixel value that fell into the first class.
-    float width;          //The size of each class.
-    float mean;           //The mean value of the pixels that the function classified.
-    float stdDev;         //The standard deviation of the pixels that the function classified.
-    int   numPixels;      //The number of pixels that the function classified.
-} HistogramReport;
-
-typedef struct ArcInfo_struct {
-    Rect   boundingBox; //The coordinate location of the bounding box of the arc.
-    double startAngle;  //The counterclockwise angle from the x-axis in degrees to the start of the arc.
-    double endAngle;    //The counterclockwise angle from the x-axis in degrees to the end of the arc.
-} ArcInfo;
-
-typedef struct AxisReport_struct {
-    PointFloat origin;           //The origin of the coordinate system, which is the intersection of the two axes of the coordinate system.
-    PointFloat mainAxisEnd;      //The end of the main axis, which is the result of the computation of the intersection of the main axis with the rectangular search area.
-    PointFloat secondaryAxisEnd; //The end of the secondary axis, which is the result of the computation of the intersection of the secondary axis with the rectangular search area.
-} AxisReport;
-
-typedef struct BarcodeInfo_struct {
-    const char* outputString;    //A string containing the decoded barcode data.
-    int         size;            //The size of the output string.
-    char        outputChar1;     //The contents of this character depend on the barcode type.
-    char        outputChar2;     //The contents of this character depend on the barcode type.
-    double      confidenceLevel; //A quality measure of the decoded barcode ranging from 0 to 100, with 100 being the best.
-    BarcodeType type;            //The type of barcode.
-} BarcodeInfo;
-
-typedef struct BCGOptions_struct {
-    float brightness; //Adjusts the brightness of the image.
-    float contrast;   //Adjusts the contrast of the image.
-    float gamma;      //Performs gamma correction.
-} BCGOptions;
-
-typedef struct BestCircle_struct {
-    PointFloat center;    //The coordinate location of the center of the circle.
-    double     radius;    //The radius of the circle.
-    double     area;      //The area of the circle.
-    double     perimeter; //The length of the perimeter of the circle.
-    double     error;     //Represents the least square error of the fitted circle to the entire set of points.
-} BestCircle;
-
-typedef struct BestEllipse_struct {
-    PointFloat center;         //The coordinate location of the center of the ellipse.
-    PointFloat majorAxisStart; //The coordinate location of the start of the major axis of the ellipse.
-    PointFloat majorAxisEnd;   //The coordinate location of the end of the major axis of the ellipse.
-    PointFloat minorAxisStart; //The coordinate location of the start of the minor axis of the ellipse.
-    PointFloat minorAxisEnd;   //The coordinate location of the end of the minor axis of the ellipse.
-    double     area;           //The area of the ellipse.
-    double     perimeter;      //The length of the perimeter of the ellipse.
-} BestEllipse;
-
-typedef struct BestLine_struct {
-    PointFloat   start;         //The coordinate location of the start of the line.
-    PointFloat   end;           //The coordinate location of the end of the line.
-    LineEquation equation;      //Defines the three coefficients of the equation of the best fit line.
-    int          valid;         //This element is TRUE if the function achieved the minimum score within the number of allowed refinement iterations and FALSE if the function did not achieve the minimum score.
-    double       error;         //Represents the least square error of the fitted line to the entire set of points.
-    int*         pointsUsed;    //An array of the indexes for the points array indicating which points the function used to fit the line.
-    int          numPointsUsed; //The number of points the function used to fit the line.
-} BestLine;
-
-typedef struct BrowserOptions_struct {
-    int               width;           //The width to make the browser.
-    int               height;          //The height to make the browser image.
-    int               imagesPerLine;   //The number of images to place on a single line.
-    RGBValue          backgroundColor; //The background color of the browser.
-    int               frameSize;       //Specifies the number of pixels with which to border each thumbnail.
-    BrowserFrameStyle style;           //The style for the frame around each thumbnail.
-    float             ratio;           //Specifies the width to height ratio of each thumbnail.
-    RGBValue          focusColor;      //The color to use to display focused cells.
-} BrowserOptions;
-
-typedef struct CoordinateSystem_struct {
-    PointFloat      origin;          //The origin of the coordinate system.
-    float           angle;           //The angle, in degrees, of the x-axis of the coordinate system relative to the image x-axis.
-    AxisOrientation axisOrientation; //The direction of the y-axis of the coordinate reference system.
-} CoordinateSystem;
-
-typedef struct CalibrationInfo_struct {
-    float*                  errorMap;       //The error map for the calibration.
-    int                     mapColumns;     //The number of columns in the error map.
-    int                     mapRows;        //The number of rows in the error map.
-    ROI*                    userRoi;        //Specifies the ROI the user provided when learning the calibration.
-    ROI*                    calibrationRoi; //Specifies the ROI that corresponds to the region of the image where the calibration information is accurate.
-    LearnCalibrationOptions options;        //Specifies the calibration options the user provided when learning the calibration.
-    GridDescriptor          grid;           //Specifies the scaling constants for the image.
-    CoordinateSystem        system;         //Specifies the coordinate system for the real world coordinates.
-    RangeFloat              range;          //The range of the grayscale the function used to represent the circles in the grid image.
-    float                   quality;        //The quality score of the learning process, which is a value between 0-1000.
-} CalibrationInfo;
-
-typedef struct CalibrationPoints_struct {
-    PointFloat* pixelCoordinates;     //The array of pixel coordinates.
-    PointFloat* realWorldCoordinates; //The array of corresponding real-world coordinates.
-    int         numCoordinates;       //The number of coordinates in both of the arrays.
-} CalibrationPoints;
-
-typedef struct CaliperOptions_struct {
-    TwoEdgePolarityType polarity;            //Specifies the edge polarity of the edge pairs.
-    float               separation;          //The distance between edge pairs.
-    float               separationDeviation; //Sets the range around the separation value.
-} CaliperOptions;
-
-typedef struct CaliperReport_struct {
-    float      edge1Contrast; //The contrast of the first edge.
-    PointFloat edge1Coord;    //The coordinates of the first edge.
-    float      edge2Contrast; //The contrast of the second edge.
-    PointFloat edge2Coord;    //The coordinates of the second edge.
-    float      separation;    //The distance between the two edges.
-    float      reserved;      //This element is reserved.
-} CaliperReport;
-
-typedef struct DrawTextOptions_struct {
-    char          fontName[32];  //The font name to use.
-    int           fontSize;      //The size of the font.
-    int           bold;          //Set this parameter to TRUE to bold text.
-    int           italic;        //Set this parameter to TRUE to italicize text.
-    int           underline;     //Set this parameter to TRUE to underline text.
-    int           strikeout;     //Set this parameter to TRUE to strikeout text.
-    TextAlignment textAlignment; //Sets the alignment of text.
-    FontColor     fontColor;     //Sets the font color.
-} DrawTextOptions;
-
-typedef struct CircleReport_struct {
-    Point center; //The coordinate point of the center of the circle.
-    int   radius; //The radius of the circle, in pixels.
-    int   area;   //The area of the circle, in pixels.
-} CircleReport;
-
-typedef struct ClosedContour_struct {
-    Point* points;    //The points that make up the closed contour.
-    int    numPoints; //The number of points in the array.
-} ClosedContour;
-
-typedef struct ColorHistogramReport_struct {
-    HistogramReport plane1; //The histogram report of the first color plane.
-    HistogramReport plane2; //The histogram report of the second plane.
-    HistogramReport plane3; //The histogram report of the third plane.
-} ColorHistogramReport;
-
-typedef struct ColorInformation_struct {
-    int     infoCount;  //The size of the info array.
-    int     saturation; //The saturation level the function uses to learn the color information.
-    double* info;       //An array of color information that represents the color spectrum analysis of a region of an image in a compact form.
-} ColorInformation;
-
-typedef struct Complex_struct {
-    float r; //The real part of the value.
-    float i; //The imaginary part of the value.
-} Complex;
-
-typedef struct ConcentricRakeReport_struct {
-    ArcInfo*            rakeArcs;          //An array containing the location of each concentric arc line used for edge detection.
-    int                 numArcs;           //The number of arc lines in the rakeArcs array.
-    PointFloat*         firstEdges;        //The coordinate location of all edges detected as first edges.
-    int                 numFirstEdges;     //The number of points in the first edges array.
-    PointFloat*         lastEdges;         //The coordinate location of all edges detected as last edges.
-    int                 numLastEdges;      //The number of points in the last edges array.
-    EdgeLocationReport* allEdges;          //An array of reports describing the location of the edges located by each concentric rake arc line.
-    int*                linesWithEdges;    //An array of indices into the rakeArcs array indicating the concentric rake arc lines on which the function detected at least one edge.
-    int                 numLinesWithEdges; //The number of concentric rake arc lines along which the function detected edges.
-} ConcentricRakeReport;
-
-typedef struct ConstructROIOptions_struct {
-    int         windowNumber; //The window number of the image window.
-    const char* windowTitle;  //Specifies the message string that the function displays in the title bar of the window.
-    PaletteType type;         //The palette type to use.
-    RGBValue*   palette;      //If type is IMAQ_PALETTE_USER, this array is the palette of colors to use with the window.
-    int         numColors;    //If type is IMAQ_PALETTE_USER, this element is the number of colors in the palette array.
-} ConstructROIOptions;
-
-typedef struct ContourInfo_struct {
-    ContourType type;         //The contour type.
-    unsigned    numPoints;    //The number of points that make up the contour.
-    Point*      points;       //The points describing the contour.
-    RGBValue    contourColor; //The contour color.
-} ContourInfo;
-
-typedef union ContourUnion_union {
-    Point*         point;           //Use this member when the contour is of type IMAQ_POINT.
-    Line*          line;            //Use this member when the contour is of type IMAQ_LINE.
-    Rect*          rect;            //Use this member when the contour is of type IMAQ_RECT.
-    Rect*          ovalBoundingBox; //Use this member when the contour is of type IMAQ_OVAL.
-    ClosedContour* closedContour;   //Use this member when the contour is of type IMAQ_CLOSED_CONTOUR.
-    OpenContour*   openContour;     //Use this member when the contour is of type IMAQ_OPEN_CONTOUR.
-    Annulus*       annulus;         //Use this member when the contour is of type IMAQ_ANNULUS.
-    RotatedRect*   rotatedRect;     //Use this member when the contour is of type IMAQ_ROTATED_RECT.
-} ContourUnion;
-
-typedef struct ContourInfo2_struct {
-    ContourType  type;      //The contour type.
-    RGBValue     color;     //The contour color.
-    ContourUnion structure; //The information necessary to describe the contour in coordinate space.
-} ContourInfo2;
-
-typedef struct ContourPoint_struct {
-    double x;             //The x-coordinate value in the image.
-    double y;             //The y-coordinate value in the image.
-    double curvature;     //The change in slope at this edge point of the segment.
-    double xDisplacement; //The x displacement of the current edge pixel from a cubic spline fit of the current edge segment.
-    double yDisplacement; //The y displacement of the current edge pixel from a cubic spline fit of the current edge segment.
-} ContourPoint;
-
-typedef struct CoordinateTransform_struct {
-    Point initialOrigin; //The origin of the initial coordinate system.
-    float initialAngle;  //The angle, in degrees, of the x-axis of the initial coordinate system relative to the image x-axis.
-    Point finalOrigin;   //The origin of the final coordinate system.
-    float finalAngle;    //The angle, in degrees, of the x-axis of the final coordinate system relative to the image x-axis.
-} CoordinateTransform;
-
-typedef struct CoordinateTransform2_struct {
-    CoordinateSystem referenceSystem;   //Defines the coordinate system for input coordinates.
-    CoordinateSystem measurementSystem; //Defines the coordinate system in which the function should perform measurements.
-} CoordinateTransform2;
-
-typedef struct CannyOptions_struct {
-    float sigma;          //The sigma of the Gaussian smoothing filter that the function applies to the image before edge detection.
-    float upperThreshold; //The upper fraction of pixel values in the image from which the function chooses a seed or starting point of an edge segment.
-    float lowerThreshold; //The function multiplies this value by upperThreshold to determine the lower threshold for all the pixels in an edge segment.
-    int   windowSize;     //The window size of the Gaussian filter that the function applies to the image.
-} CannyOptions;
-
-typedef struct Range_struct {
-    int minValue; //The minimum value of the range.
-    int maxValue; //The maximum value of the range.
-} Range;
-
-typedef struct UserPointSymbol_struct {
-    int  cols;   //Number of columns in the symbol.
-    int  rows;   //Number of rows in the symbol.
-    int* pixels; //The pixels of the symbol.
-} UserPointSymbol;
-
-typedef struct View3DOptions_struct {
-    int         sizeReduction; //A divisor the function uses when determining the final height and width of the 3D image.
-    int         maxHeight;     //Defines the maximum height of a pixel from the image source drawn in 3D.
-    Direction3D direction;     //Defines the 3D orientation.
-    float       alpha;         //Determines the angle between the horizontal and the baseline.
-    float       beta;          //Determines the angle between the horizontal and the second baseline.
-    int         border;        //Defines the border size.
-    int         background;    //Defines the background color.
-    Plane3D     plane;         //Indicates the view a function uses to show complex images.
-} View3DOptions;
-
-typedef struct MatchPatternOptions_struct {
-    MatchingMode        mode;                //Specifies the method to use when looking for the pattern in the image.
-    int                 minContrast;         //Specifies the minimum contrast expected in the image.
-    int                 subpixelAccuracy;    //Set this element to TRUE to return areas in the image that match the pattern area with subpixel accuracy.
-    RotationAngleRange* angleRanges;         //An array of angle ranges, in degrees, where each range specifies how much you expect the pattern to be rotated in the image.
-    int                 numRanges;           //Number of angle ranges in the angleRanges array.
-    int                 numMatchesRequested; //Number of valid matches expected.
-    int                 matchFactor;         //Controls the number of potential matches that the function examines.
-    float               minMatchScore;       //The minimum score a match can have for the function to consider the match valid.
-} MatchPatternOptions;
-
-typedef struct TIFFFileOptions_struct {
-    int                 rowsPerStrip;    //Indicates the number of rows that the function writes per strip.
-    PhotometricMode     photoInterp;     //Designates which photometric interpretation to use.
-    TIFFCompressionType compressionType; //Indicates the type of compression to use on the TIFF file.
-} TIFFFileOptions;
-
-typedef union Color_union {
-    RGBValue rgb;      //The information needed to describe a color in the RGB (Red, Green, and Blue) color space.
-    HSLValue hsl;      //The information needed to describe a color in the HSL (Hue, Saturation, and Luminance) color space.
-    HSVValue hsv;      //The information needed to describe a color in the HSI (Hue, Saturation, and Value) color space.
-    HSIValue hsi;      //The information needed to describe a color in the HSI (Hue, Saturation, and Intensity) color space.
-    int      rawValue; //The integer value for the data in the color union.
-} Color;
-
-typedef union PixelValue_union {
-    float       grayscale; //A grayscale pixel value.
-    RGBValue    rgb;       //A RGB pixel value.
-    HSLValue    hsl;       //A HSL pixel value.
-    Complex     complex;   //A complex pixel value.
-    RGBU64Value rgbu64;    //An unsigned 64-bit RGB pixel value.
-} PixelValue;
-
-typedef struct OpenContour_struct {
-    Point* points;    //The points that make up the open contour.
-    int    numPoints; //The number of points in the array.
-} OpenContour;
-
-typedef struct OverlayTextOptions_struct {
-    const char*           fontName;                //The name of the font to use.
-    int                   fontSize;                //The size of the font.
-    int                   bold;                    //Set this element to TRUE to bold the text.
-    int                   italic;                  //Set this element to TRUE to italicize the text.
-    int                   underline;               //Set this element to TRUE to underline the text.
-    int                   strikeout;               //Set this element to TRUE to strikeout the text.
-    TextAlignment         horizontalTextAlignment; //Sets the alignment of the text.
-    VerticalTextAlignment verticalTextAlignment;   //Sets the vertical alignment for the text.
-    RGBValue              backgroundColor;         //Sets the color for the text background pixels.
-    double                angle;                   //The counterclockwise angle, in degrees, of the text relative to the x-axis.
-} OverlayTextOptions;
-
-typedef struct ParticleFilterCriteria_struct {
-    MeasurementValue parameter; //The morphological measurement that the function uses for filtering.
-    float            lower;     //The lower bound of the criteria range.
-    float            upper;     //The upper bound of the criteria range.
-    int              exclude;   //Set this element to TRUE to indicate that a match occurs when the value is outside the criteria range.
-} ParticleFilterCriteria;
-
-typedef struct ParticleReport_struct {
-    int   area;             //The number of pixels in the particle.
-    float calibratedArea;   //The size of the particle, calibrated to the calibration information of the image.
-    float perimeter;        //The length of the perimeter, calibrated to the calibration information of the image.
-    int   numHoles;         //The number of holes in the particle.
-    int   areaOfHoles;      //The total surface area, in pixels, of all the holes in a particle.
-    float perimeterOfHoles; //The length of the perimeter of all the holes in the particle calibrated to the calibration information of the image.
-    Rect  boundingBox;      //The smallest rectangle that encloses the particle.
-    float sigmaX;           //The sum of the particle pixels on the x-axis.
-    float sigmaY;           //The sum of the particle pixels on the y-axis.
-    float sigmaXX;          //The sum of the particle pixels on the x-axis, squared.
-    float sigmaYY;          //The sum of the particle pixels on the y-axis, squared.
-    float sigmaXY;          //The sum of the particle pixels on the x-axis and y-axis.
-    int   longestLength;    //The length of the longest horizontal line segment.
-    Point longestPoint;     //The location of the leftmost pixel of the longest segment in the particle.
-    int   projectionX;      //The length of the particle when projected onto the x-axis.
-    int   projectionY;      //The length of the particle when projected onto the y-axis.
-    int   connect8;         //This element is TRUE if the function used connectivity-8 to determine if particles are touching.
-} ParticleReport;
-
-typedef struct PatternMatch_struct {
-    PointFloat position;  //The location of the center of the match.
-    float      rotation;  //The rotation of the match relative to the template image, in degrees.
-    float      scale;     //The size of the match relative to the size of the template image, expressed as a percentage.
-    float      score;     //The accuracy of the match.
-    PointFloat corner[4]; //An array of four points describing the rectangle surrounding the template image.
-} PatternMatch;
-
-typedef struct QuantifyData_struct {
-    float mean;           //The mean value of the pixel values.
-    float stdDev;         //The standard deviation of the pixel values.
-    float min;            //The smallest pixel value.
-    float max;            //The largest pixel value.
-    float calibratedArea; //The area, calibrated to the calibration information of the image.
-    int   pixelArea;      //The area, in number of pixels.
-    float relativeSize;   //The proportion, expressed as a percentage, of the associated region relative to the whole image.
-} QuantifyData;
-
-typedef struct QuantifyReport_struct {
-    QuantifyData  global;      //Statistical data of the whole image.
-    QuantifyData* regions;     //An array of QuantifyData structures containing statistical data of each region of the image.
-    int           regionCount; //The number of regions.
-} QuantifyReport;
-
-typedef struct RakeOptions_struct {
-    int                 threshold;         //Specifies the threshold value for the contrast of the edge.
-    int                 width;             //The number of pixels that the function averages to find the contrast at either side of the edge.
-    int                 steepness;         //The span, in pixels, of the slope of the edge projected along the path specified by the input points.
-    int                 subsamplingRatio;  //Specifies the number of pixels that separate two consecutive search lines.
-    InterpolationMethod subpixelType;      //The method for interpolating.
-    int                 subpixelDivisions; //The number of samples the function obtains from a pixel.
-} RakeOptions;
-
-typedef struct RakeReport_struct {
-    LineFloat*          rakeLines;         //The coordinate location of each of the rake lines used by the function.
-    int                 numRakeLines;      //The number of lines in the rakeLines array.
-    PointFloat*         firstEdges;        //The coordinate location of all edges detected as first edges.
-    unsigned int        numFirstEdges;     //The number of points in the firstEdges array.
-    PointFloat*         lastEdges;         //The coordinate location of all edges detected as last edges.
-    unsigned int        numLastEdges;      //The number of points in the lastEdges array.
-    EdgeLocationReport* allEdges;          //An array of reports describing the location of the edges located by each rake line.
-    int*                linesWithEdges;    //An array of indices into the rakeLines array indicating the rake lines on which the function detected at least one edge.
-    int                 numLinesWithEdges; //The number of rake lines along which the function detected edges.
-} RakeReport;
-
-typedef struct TransformReport_struct {
-    PointFloat* points;      //An array of transformed coordinates.
-    int*        validPoints; //An array of values that describe the validity of each of the coordinates according to the region of interest you calibrated using either imaqLearnCalibrationGrid() or imaqLearnCalibrationPoints().
-    int         numPoints;   //The length of both the points array and the validPoints array.
-} TransformReport;
-
-typedef struct ShapeReport_struct {
-    Rect   coordinates; //The bounding rectangle of the object.
-    Point  centroid;    //The coordinate location of the centroid of the object.
-    int    size;        //The size, in pixels, of the object.
-    double score;       //A value ranging between 1 and 1,000 that specifies how similar the object in the image is to the template.
-} ShapeReport;
-
-typedef struct MeterArc_struct {
-    PointFloat  needleBase;          //The coordinate location of the base of the meter needle.
-    PointFloat* arcCoordPoints;      //An array of points describing the coordinate location of the meter arc.
-    int         numOfArcCoordPoints; //The number of points in the arcCoordPoints array.
-    int         needleColor;         //This element is TRUE when the meter has a light-colored needle on a dark background.
-} MeterArc;
-
-typedef struct ThresholdData_struct {
-    float rangeMin;    //The lower boundary of the range to keep.
-    float rangeMax;    //The upper boundary of the range to keep.
-    float newValue;    //If useNewValue is TRUE, newValue is the replacement value for pixels within the range.
-    int   useNewValue; //If TRUE, the function sets pixel values within [rangeMin, rangeMax] to the value specified in newValue.
-} ThresholdData;
-
-typedef struct StructuringElement_struct {
-    int  matrixCols; //Number of columns in the matrix.
-    int  matrixRows; //Number of rows in the matrix.
-    int  hexa;       //Set this element to TRUE if you specify a hexagonal structuring element in kernel.
-    int* kernel;     //The values of the structuring element.
-} StructuringElement;
-
-typedef struct SpokeReport_struct {
-    LineFloat*          spokeLines;        //The coordinate location of each of the spoke lines used by the function.
-    int                 numSpokeLines;     //The number of lines in the spokeLines array.
-    PointFloat*         firstEdges;        //The coordinate location of all edges detected as first edges.
-    int                 numFirstEdges;     //The number of points in the firstEdges array.
-    PointFloat*         lastEdges;         //The coordinate location of all edges detected as last edges.
-    int                 numLastEdges;      //The number of points in the lastEdges array.
-    EdgeLocationReport* allEdges;          //An array of reports describing the location of the edges located by each spoke line.
-    int*                linesWithEdges;    //An array of indices into the spokeLines array indicating the rake lines on which the function detected at least one edge.
-    int                 numLinesWithEdges; //The number of spoke lines along which the function detects edges.
-} SpokeReport;
-
-typedef struct SimpleEdgeOptions_struct {
-    LevelType   type;       //Determines how the function evaluates the threshold and hysteresis values.
-    int         threshold;  //The pixel value at which an edge occurs.
-    int         hysteresis; //A value that helps determine edges in noisy images.
-    EdgeProcess process;    //Determines which edges the function looks for.
-    int         subpixel;   //Set this element to TRUE to find edges with subpixel accuracy by interpolating between points to find the crossing of the given threshold.
-} SimpleEdgeOptions;
-
-typedef struct SelectParticleCriteria_struct {
-    MeasurementValue parameter; //The morphological measurement that the function uses for filtering.
-    float            lower;     //The lower boundary of the criteria range.
-    float            upper;     //The upper boundary of the criteria range.
-} SelectParticleCriteria;
-
-typedef struct SegmentInfo_struct {
-    int           numberOfPoints; //The number of points in the segment.
-    int           isOpen;         //If TRUE, the contour is open.
-    double        weight;         //The significance of the edge in terms of the gray values that constitute the edge.
-    ContourPoint* points;         //The points of the segment.
-} SegmentInfo;
-
-typedef struct RotationAngleRange_struct {
-    float lower; //The lowest amount of rotation, in degrees, a valid pattern can have.
-    float upper; //The highest amount of rotation, in degrees, a valid pattern can have.
-} RotationAngleRange;
-
-typedef struct RotatedRect_struct {
-    int    top;    //Location of the top edge of the rectangle before rotation.
-    int    left;   //Location of the left edge of the rectangle before rotation.
-    int    height; //Height of the rectangle.
-    int    width;  //Width of the rectangle.
-    double angle;  //The rotation, in degrees, of the rectangle.
-} RotatedRect;
-
-typedef struct ROIProfile_struct {
-    LineProfile report; //Quantifying information about the points along the edge of each contour in the ROI.
-    Point*      pixels; //An array of the points along the edge of each contour in the ROI.
-} ROIProfile;
-
-typedef struct ToolWindowOptions_struct {
-    int showSelectionTool;        //If TRUE, the selection tool becomes visible.
-    int showZoomTool;             //If TRUE, the zoom tool becomes visible.
-    int showPointTool;            //If TRUE, the point tool becomes visible.
-    int showLineTool;             //If TRUE, the line tool becomes visible.
-    int showRectangleTool;        //If TRUE, the rectangle tool becomes visible.
-    int showOvalTool;             //If TRUE, the oval tool becomes visible.
-    int showPolygonTool;          //If TRUE, the polygon tool becomes visible.
-    int showClosedFreehandTool;   //If TRUE, the closed freehand tool becomes visible.
-    int showPolyLineTool;         //If TRUE, the polyline tool becomes visible.
-    int showFreehandTool;         //If TRUE, the freehand tool becomes visible.
-    int showAnnulusTool;          //If TRUE, the annulus becomes visible.
-    int showRotatedRectangleTool; //If TRUE, the rotated rectangle tool becomes visible.
-    int showPanTool;              //If TRUE, the pan tool becomes visible.
-    int showZoomOutTool;          //If TRUE, the zoom out tool becomes visible.
-    int reserved2;                //This element is reserved and should be set to FALSE.
-    int reserved3;                //This element is reserved and should be set to FALSE.
-    int reserved4;                //This element is reserved and should be set to FALSE.
-} ToolWindowOptions;
-
-typedef struct SpokeOptions_struct {
-    int                 threshold;         //Specifies the threshold value for the contrast of the edge.
-    int                 width;             //The number of pixels that the function averages to find the contrast at either side of the edge.
-    int                 steepness;         //The span, in pixels, of the slope of the edge projected along the path specified by the input points.
-    double              subsamplingRatio;  //The angle, in degrees, between each radial search line in the spoke.
-    InterpolationMethod subpixelType;      //The method for interpolating.
-    int                 subpixelDivisions; //The number of samples the function obtains from a pixel.
-} SpokeOptions;
-
-#if !defined __GNUC__ && !defined _M_X64
-#pragma pack(pop)
-#endif
-
-//============================================================================
-// Callback Function Type
-//============================================================================
-#ifndef __GNUC__
-typedef void (IMAQ_CALLBACK* EventCallback)(WindowEventType event, int windowNumber, Tool tool, Rect rect);
-#endif
-
-//============================================================================
-//  Globals
-//============================================================================
-#ifndef __GNUC__
-#pragma const_seg("IMAQVisionColorConstants")
-#endif
-static const RGBValue IMAQ_RGB_TRANSPARENT = {   0,   0,   0, 1 };
-static const RGBValue IMAQ_RGB_RED         = {   0,   0, 255, 0 };
-static const RGBValue IMAQ_RGB_BLUE        = { 255,   0,   0, 0 };
-static const RGBValue IMAQ_RGB_GREEN       = {   0, 255,   0, 0 };
-static const RGBValue IMAQ_RGB_YELLOW      = {   0, 255, 255, 0 };
-static const RGBValue IMAQ_RGB_WHITE       = { 255, 255, 255, 0 };
-static const RGBValue IMAQ_RGB_BLACK       = {   0,   0,   0, 0 };
-#ifndef __GNUC__
-#pragma const_seg()
-#endif
-
-//============================================================================
-//  Backwards Compatibility
-//============================================================================
-typedef ColorSensitivity 		ColorComplexity;
-#define IMAQ_COMPLEXITY_LOW 		IMAQ_SENSITIVITY_LOW
-#define IMAQ_COMPLEXITY_MED 		IMAQ_SENSITIVITY_MED     
-#define IMAQ_COMPLEXITY_HIGH 		IMAQ_SENSITIVITY_HIGH
-#define ERR_INVALID_COLORCOMPLEXITY 	ERR_INVALID_COLORSENSITIVITY
-
-//============================================================================
-//  Logical functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqAnd(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqAndConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int IMAQ_STDCALL imaqCompare(Image* dest, const Image* source, const Image* compareImage, ComparisonFunction compare);
-IMAQ_FUNC int IMAQ_STDCALL imaqCompareConstant(Image* dest, const Image* source, PixelValue value, ComparisonFunction compare);
-IMAQ_FUNC int IMAQ_STDCALL imaqLogicalDifference(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqLogicalDifferenceConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int IMAQ_STDCALL imaqNand(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqNandConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int IMAQ_STDCALL imaqNor(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqNorConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int IMAQ_STDCALL imaqOr(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqOrConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int IMAQ_STDCALL imaqXnor(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqXnorConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int IMAQ_STDCALL imaqXor(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqXorConstant(Image* dest, const Image* source, PixelValue value);
-
-//============================================================================
-//  Particle Analysis functions
-//============================================================================
-IMAQ_FUNC int                     IMAQ_STDCALL imaqCountParticles(Image* image, int connectivity8, int* numParticles);
-IMAQ_FUNC int                     IMAQ_STDCALL imaqMeasureParticle(Image* image, int particleNumber, int calibrated, MeasurementType measurement, double* value);
-IMAQ_FUNC MeasureParticlesReport* IMAQ_STDCALL imaqMeasureParticles(Image* image, MeasureParticlesCalibrationMode calibrationMode, const MeasurementType* measurements, size_t numMeasurements);
-IMAQ_FUNC int                     IMAQ_STDCALL imaqParticleFilter4(Image* dest, Image* source, const ParticleFilterCriteria2* criteria, int criteriaCount, const ParticleFilterOptions2* options, const ROI* roi, int* numParticles);
-
-//============================================================================
-//  Morphology functions
-//============================================================================
-IMAQ_FUNC int           IMAQ_STDCALL imaqConvexHull(Image* dest, Image* source, int connectivity8);
-IMAQ_FUNC int           IMAQ_STDCALL imaqDanielssonDistance(Image* dest, Image* source);
-IMAQ_FUNC int           IMAQ_STDCALL imaqFillHoles(Image* dest, const Image* source, int connectivity8);
-IMAQ_FUNC CircleReport* IMAQ_STDCALL imaqFindCircles(Image* dest, Image* source, float minRadius, float maxRadius, int* numCircles);
-IMAQ_FUNC int           IMAQ_STDCALL imaqLabel2(Image* dest, Image* source, int connectivity8, int* particleCount);
-IMAQ_FUNC int           IMAQ_STDCALL imaqMorphology(Image* dest, Image* source, MorphologyMethod method, const StructuringElement* structuringElement);
-IMAQ_FUNC int           IMAQ_STDCALL imaqRejectBorder(Image* dest, Image* source, int connectivity8);
-IMAQ_FUNC int           IMAQ_STDCALL imaqSegmentation(Image* dest, Image* source);
-IMAQ_FUNC int           IMAQ_STDCALL imaqSeparation(Image* dest, Image* source, int erosions, const StructuringElement* structuringElement);
-IMAQ_FUNC int           IMAQ_STDCALL imaqSimpleDistance(Image* dest, Image* source, const StructuringElement* structuringElement);
-IMAQ_FUNC int           IMAQ_STDCALL imaqSizeFilter(Image* dest, Image* source, int connectivity8, int erosions, SizeType keepSize, const StructuringElement* structuringElement);
-IMAQ_FUNC int           IMAQ_STDCALL imaqSkeleton(Image* dest, Image* source, SkeletonMethod method);
-
-
-//============================================================================
-//  Acquisition functions
-//============================================================================
-IMAQ_FUNC Image* IMAQ_STDCALL imaqCopyFromRing(SESSION_ID sessionID, Image* image, int imageToCopy, int* imageNumber, Rect rect);
-IMAQ_FUNC Image* IMAQ_STDCALL imaqEasyAcquire(const char* interfaceName);
-IMAQ_FUNC Image* IMAQ_STDCALL imaqExtractFromRing(SESSION_ID sessionID, int imageToExtract, int* imageNumber);
-IMAQ_FUNC Image* IMAQ_STDCALL imaqGrab(SESSION_ID sessionID, Image* image, int immediate);
-IMAQ_FUNC int    IMAQ_STDCALL imaqReleaseImage(SESSION_ID sessionID);
-IMAQ_FUNC int    IMAQ_STDCALL imaqSetupGrab(SESSION_ID sessionID, Rect rect);
-IMAQ_FUNC int    IMAQ_STDCALL imaqSetupRing(SESSION_ID sessionID, Image** images, int numImages, int skipCount, Rect rect);
-IMAQ_FUNC int    IMAQ_STDCALL imaqSetupSequence(SESSION_ID sessionID, Image** images, int numImages, int skipCount, Rect rect);
-IMAQ_FUNC Image* IMAQ_STDCALL imaqSnap(SESSION_ID sessionID, Image* image, Rect rect);
-IMAQ_FUNC int    IMAQ_STDCALL imaqStartAcquisition(SESSION_ID sessionID);
-IMAQ_FUNC int    IMAQ_STDCALL imaqStopAcquisition(SESSION_ID sessionID);
-
-//============================================================================
-//  Arithmetic functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqAbsoluteDifference(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqAbsoluteDifferenceConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int IMAQ_STDCALL imaqAdd(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqAddConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int IMAQ_STDCALL imaqAverage(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqAverageConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int IMAQ_STDCALL imaqDivide2(Image* dest, const Image* sourceA, const Image* sourceB, RoundingMode roundingMode);
-IMAQ_FUNC int IMAQ_STDCALL imaqDivideConstant2(Image* dest, const Image* source, PixelValue value, RoundingMode roundingMode);
-IMAQ_FUNC int IMAQ_STDCALL imaqMax(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqMaxConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int IMAQ_STDCALL imaqMin(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqMinConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int IMAQ_STDCALL imaqModulo(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqModuloConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int IMAQ_STDCALL imaqMulDiv(Image* dest, const Image* sourceA, const Image* sourceB, float value);
-IMAQ_FUNC int IMAQ_STDCALL imaqMultiply(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqMultiplyConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int IMAQ_STDCALL imaqSubtract(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC int IMAQ_STDCALL imaqSubtractConstant(Image* dest, const Image* source, PixelValue value);
-
-//============================================================================
-//  Caliper functions
-//============================================================================
-IMAQ_FUNC CaliperReport*         IMAQ_STDCALL imaqCaliperTool(const Image* image, const Point* points, int numPoints, const EdgeOptions* edgeOptions, const CaliperOptions* caliperOptions, int* numEdgePairs);
-IMAQ_FUNC ConcentricRakeReport2* IMAQ_STDCALL imaqConcentricRake2(Image* image, ROI* roi, ConcentricRakeDirection direction, EdgeProcess process, int stepSize, EdgeOptions2* edgeOptions);
-IMAQ_FUNC ExtremeReport*         IMAQ_STDCALL imaqDetectExtremes(const double* pixels, int numPixels, DetectionMode mode, const DetectExtremesOptions* options, int* numExtremes);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqDetectRotation(const Image* referenceImage, const Image* testImage, PointFloat referenceCenter, PointFloat testCenter, int radius, float precision, double* angle);
-IMAQ_FUNC EdgeReport2*           IMAQ_STDCALL imaqEdgeTool4(Image* image, ROI* roi, EdgeProcess processType, EdgeOptions2* edgeOptions, const unsigned int reverseDirection);
-IMAQ_FUNC FindEdgeReport*        IMAQ_STDCALL imaqFindEdge2(Image* image, const ROI* roi, const CoordinateSystem* baseSystem, const CoordinateSystem* newSystem, const FindEdgeOptions2* findEdgeOptions, const StraightEdgeOptions* straightEdgeOptions);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqFindTransformRect2(Image* image, const ROI* roi, FindTransformMode mode, CoordinateSystem* baseSystem, CoordinateSystem* newSystem, const FindTransformRectOptions2* findTransformOptions, const StraightEdgeOptions* straightEdgeOptions, AxisReport* axisReport);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqFindTransformRects2(Image* image, const ROI* primaryROI, const ROI* secondaryROI, FindTransformMode mode, CoordinateSystem* baseSystem, CoordinateSystem* newSystem, const FindTransformRectsOptions2* findTransformOptions, const StraightEdgeOptions* primaryStraightEdgeOptions, const StraightEdgeOptions* secondaryStraightEdgeOptions, AxisReport* axisReport);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqLineGaugeTool2(const Image* image, Point start, Point end, LineGaugeMethod method, const EdgeOptions* edgeOptions, const CoordinateTransform2* transform, float* distance);
-IMAQ_FUNC RakeReport2*           IMAQ_STDCALL imaqRake2(Image* image, ROI* roi, RakeDirection direction, EdgeProcess process, int stepSize, EdgeOptions2* edgeOptions);
-IMAQ_FUNC PointFloat*            IMAQ_STDCALL imaqSimpleEdge(const Image* image, const Point* points, int numPoints, const SimpleEdgeOptions* options, int* numEdges);
-IMAQ_FUNC SpokeReport2*          IMAQ_STDCALL imaqSpoke2(Image* image, ROI* roi, SpokeDirection direction, EdgeProcess process, int stepSize, EdgeOptions2* edgeOptions);
-IMAQ_FUNC StraightEdgeReport2*   IMAQ_STDCALL imaqStraightEdge(const Image* image, const ROI* roi, SearchDirection searchDirection, const EdgeOptions2* edgeOptions, const StraightEdgeOptions* straightEdgeOptions);
-IMAQ_FUNC StraightEdgeReport2*   IMAQ_STDCALL imaqStraightEdge2(const Image* image, const ROI* roi, SearchDirection searchDirection, const EdgeOptions2* edgeOptions, const StraightEdgeOptions* straightEdgeOptions, unsigned int optimizedMode);
-
-//============================================================================
-//  Spatial Filters functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqCannyEdgeFilter(Image* dest, const Image* source, const CannyOptions* options);
-IMAQ_FUNC int IMAQ_STDCALL imaqConvolve2(Image* dest, Image* source, float* kernel, int matrixRows, int matrixCols, float normalize, Image* mask, RoundingMode roundingMode);
-IMAQ_FUNC int IMAQ_STDCALL imaqCorrelate(Image* dest, Image* source, const Image* templateImage, Rect rect);
-IMAQ_FUNC int IMAQ_STDCALL imaqEdgeFilter(Image* dest, Image* source, OutlineMethod method, const Image* mask);
-IMAQ_FUNC int IMAQ_STDCALL imaqLowPass(Image* dest, Image* source, int width, int height, float tolerance, const Image* mask);
-IMAQ_FUNC int IMAQ_STDCALL imaqMedianFilter(Image* dest, Image* source, int width, int height, const Image* mask);
-IMAQ_FUNC int IMAQ_STDCALL imaqNthOrderFilter(Image* dest, Image* source, int width, int height, int n, const Image* mask);
-
-//============================================================================
-//  Drawing functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqDrawLineOnImage(Image* dest, const Image* source, DrawMode mode, Point start, Point end, float newPixelValue);
-IMAQ_FUNC int IMAQ_STDCALL imaqDrawShapeOnImage(Image* dest, const Image* source, Rect rect, DrawMode mode, ShapeMode shape, float newPixelValue);
-IMAQ_FUNC int IMAQ_STDCALL imaqDrawTextOnImage(Image* dest, const Image* source, Point coord, const char* text, const DrawTextOptions* options, int* fontNameUsed);
-
-//============================================================================
-//  Interlacing functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqInterlaceCombine(Image* frame, const Image* odd, const Image* even);
-IMAQ_FUNC int IMAQ_STDCALL imaqInterlaceSeparate(const Image* frame, Image* odd, Image* even);
-
-//============================================================================
-//  Image Information functions
-//============================================================================
-IMAQ_FUNC char** IMAQ_STDCALL imaqEnumerateCustomKeys(const Image* image, unsigned int* size);
-IMAQ_FUNC int    IMAQ_STDCALL imaqGetBitDepth(const Image* image, unsigned int* bitDepth);
-IMAQ_FUNC int    IMAQ_STDCALL imaqGetBytesPerPixel(const Image* image, int* byteCount);
-IMAQ_FUNC int    IMAQ_STDCALL imaqGetImageInfo(const Image* image, ImageInfo* info);
-IMAQ_FUNC int    IMAQ_STDCALL imaqGetImageSize(const Image* image, int* width, int* height);
-IMAQ_FUNC int    IMAQ_STDCALL imaqGetImageType(const Image* image, ImageType* type);
-IMAQ_FUNC int    IMAQ_STDCALL imaqGetMaskOffset(const Image* image, Point* offset);
-IMAQ_FUNC void*  IMAQ_STDCALL imaqGetPixelAddress(const Image* image, Point pixel);
-IMAQ_FUNC int    IMAQ_STDCALL imaqGetVisionInfoTypes(const Image* image, unsigned int* present);
-IMAQ_FUNC int    IMAQ_STDCALL imaqIsImageEmpty(const Image* image, int* empty);
-IMAQ_FUNC void*  IMAQ_STDCALL imaqReadCustomData(const Image* image, const char* key, unsigned int* size);
-IMAQ_FUNC int    IMAQ_STDCALL imaqRemoveCustomData(Image* image, const char* key);
-IMAQ_FUNC int    IMAQ_STDCALL imaqRemoveVisionInfo2(const Image* image, unsigned int info);
-IMAQ_FUNC int    IMAQ_STDCALL imaqSetBitDepth(Image* image, unsigned int bitDepth);
-IMAQ_FUNC int    IMAQ_STDCALL imaqSetImageSize(Image* image, int width, int height);
-IMAQ_FUNC int    IMAQ_STDCALL imaqSetMaskOffset(Image* image, Point offset);
-IMAQ_FUNC int    IMAQ_STDCALL imaqWriteCustomData(Image* image, const char* key, const void* data, unsigned int size);
-
-//============================================================================
-//  Display functions
-//============================================================================
-IMAQ_FUNC int   IMAQ_STDCALL imaqAreToolsContextSensitive(int* sensitive);
-IMAQ_FUNC int   IMAQ_STDCALL imaqCloseWindow(int windowNumber);
-IMAQ_FUNC int   IMAQ_STDCALL imaqDisplayImage(const Image* image, int windowNumber, int resize);
-IMAQ_FUNC int   IMAQ_STDCALL imaqGetLastKey(char* keyPressed, int* windowNumber, int* modifiers);
-IMAQ_FUNC void* IMAQ_STDCALL imaqGetSystemWindowHandle(int windowNumber);
-IMAQ_FUNC int   IMAQ_STDCALL imaqGetWindowCenterPos(int windowNumber, Point* centerPosition);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetToolContextSensitivity(int sensitive);
-IMAQ_FUNC int   IMAQ_STDCALL imaqShowWindow(int windowNumber, int visible);
-
-//============================================================================
-//  Image Manipulation functions
-//============================================================================
-IMAQ_FUNC int   IMAQ_STDCALL imaqCast(Image* dest, const Image* source, ImageType type, const float* lookup, int shift);
-IMAQ_FUNC int   IMAQ_STDCALL imaqCopyRect(Image* dest, const Image* source, Rect rect, Point destLoc);
-IMAQ_FUNC int   IMAQ_STDCALL imaqDuplicate(Image* dest, const Image* source);
-IMAQ_FUNC void* IMAQ_STDCALL imaqFlatten(const Image* image, FlattenType type, CompressionType compression, int quality, unsigned int* size);
-IMAQ_FUNC int   IMAQ_STDCALL imaqFlip(Image* dest, const Image* source, FlipAxis axis);
-IMAQ_FUNC int   IMAQ_STDCALL imaqMask(Image* dest, const Image* source, const Image* mask);
-IMAQ_FUNC int   IMAQ_STDCALL imaqResample(Image* dest, const Image* source, int newWidth, int newHeight, InterpolationMethod method, Rect rect);
-IMAQ_FUNC int   IMAQ_STDCALL imaqRotate2(Image* dest, const Image* source, float angle, PixelValue fill, InterpolationMethod method, int maintainSize);
-IMAQ_FUNC int   IMAQ_STDCALL imaqScale(Image* dest, const Image* source, int xScale, int yScale, ScalingMode scaleMode, Rect rect);
-IMAQ_FUNC int   IMAQ_STDCALL imaqShift(Image* dest, const Image* source, int shiftX, int shiftY, PixelValue fill);
-IMAQ_FUNC int   IMAQ_STDCALL imaqTranspose(Image* dest, const Image* source);
-IMAQ_FUNC int   IMAQ_STDCALL imaqUnflatten(Image* image, const void* data, unsigned int size);
-IMAQ_FUNC int   IMAQ_STDCALL imaqUnwrapImage(Image* dest, const Image* source, Annulus annulus, RectOrientation orientation, InterpolationMethod method);
-IMAQ_FUNC int   IMAQ_STDCALL imaqView3D(Image* dest, Image* source, const View3DOptions* options);
-
-//============================================================================
-//  File I/O functions
-//============================================================================
-IMAQ_FUNC int         IMAQ_STDCALL imaqCloseAVI(AVISession session);
-IMAQ_FUNC AVISession  IMAQ_STDCALL imaqCreateAVI(const char* fileName, const char* compressionFilter, int quality, unsigned int framesPerSecond, unsigned int maxDataSize);
-IMAQ_FUNC int         IMAQ_STDCALL imaqGetAVIInfo(AVISession session, AVIInfo* info);
-IMAQ_FUNC int         IMAQ_STDCALL imaqGetFileInfo(const char* fileName, CalibrationUnit* calibrationUnit, float* calibrationX, float* calibrationY, int* width, int* height, ImageType* imageType);
-IMAQ_FUNC FilterName* IMAQ_STDCALL imaqGetFilterNames(int* numFilters);
-IMAQ_FUNC char**      IMAQ_STDCALL imaqLoadImagePopup(const char* defaultDirectory, const char* defaultFileSpec, const char* fileTypeList, const char* title, int allowMultiplePaths, ButtonLabel buttonLabel, int restrictDirectory, int restrictExtension, int allowCancel, int allowMakeDirectory, int* cancelled, int* numPaths);
-IMAQ_FUNC AVISession  IMAQ_STDCALL imaqOpenAVI(const char* fileName);
-IMAQ_FUNC int         IMAQ_STDCALL imaqReadAVIFrame(Image* image, AVISession session, unsigned int frameNum, void* data, unsigned int* dataSize);
-IMAQ_FUNC int         IMAQ_STDCALL imaqReadFile(Image* image, const char* fileName, RGBValue* colorTable, int* numColors);
-IMAQ_FUNC int         IMAQ_STDCALL imaqReadVisionFile(Image* image, const char* fileName, RGBValue* colorTable, int* numColors);
-IMAQ_FUNC int         IMAQ_STDCALL imaqWriteAVIFrame(Image* image, AVISession session, const void* data, unsigned int dataLength);
-IMAQ_FUNC int         IMAQ_STDCALL imaqWriteBMPFile(const Image* image, const char* fileName, int compress, const RGBValue* colorTable);
-IMAQ_FUNC int         IMAQ_STDCALL imaqWriteFile(const Image* image, const char* fileName, const RGBValue* colorTable);
-IMAQ_FUNC int         IMAQ_STDCALL imaqWriteJPEGFile(const Image* image, const char* fileName, unsigned int quality, void* colorTable);
-IMAQ_FUNC int         IMAQ_STDCALL imaqWriteJPEG2000File(const Image* image, const char* fileName, int lossless, float compressionRatio, const JPEG2000FileAdvancedOptions* advancedOptions, const RGBValue* colorTable);
-IMAQ_FUNC int         IMAQ_STDCALL imaqWritePNGFile2(const Image* image, const char* fileName, unsigned int compressionSpeed, const RGBValue* colorTable, int useBitDepth);
-IMAQ_FUNC int         IMAQ_STDCALL imaqWriteTIFFFile(const Image* image, const char* fileName, const TIFFFileOptions* options, const RGBValue* colorTable);
-IMAQ_FUNC int         IMAQ_STDCALL imaqWriteVisionFile(const Image* image, const char* fileName, const RGBValue* colorTable);
-
-
-//============================================================================
-//  Analytic Geometry functions
-//============================================================================
-IMAQ_FUNC int           IMAQ_STDCALL imaqBuildCoordinateSystem(const Point* points, ReferenceMode mode, AxisOrientation orientation, CoordinateSystem* system);
-IMAQ_FUNC BestCircle2*  IMAQ_STDCALL imaqFitCircle2(const PointFloat* points, int numPoints, const FitCircleOptions* options);
-IMAQ_FUNC BestEllipse2* IMAQ_STDCALL imaqFitEllipse2(const PointFloat* points, int numPoints, const FitEllipseOptions* options);
-IMAQ_FUNC BestLine*     IMAQ_STDCALL imaqFitLine(const PointFloat* points, int numPoints, const FitLineOptions* options);
-IMAQ_FUNC int           IMAQ_STDCALL imaqGetAngle(PointFloat start1, PointFloat end1, PointFloat start2, PointFloat end2, float* angle);
-IMAQ_FUNC int           IMAQ_STDCALL imaqGetBisectingLine(PointFloat start1, PointFloat end1, PointFloat start2, PointFloat end2, PointFloat* bisectStart, PointFloat* bisectEnd);
-IMAQ_FUNC int           IMAQ_STDCALL imaqGetDistance(PointFloat point1, PointFloat point2, float* distance);
-IMAQ_FUNC int           IMAQ_STDCALL imaqGetIntersection(PointFloat start1, PointFloat end1, PointFloat start2, PointFloat end2, PointFloat* intersection);
-IMAQ_FUNC int           IMAQ_STDCALL imaqGetMidLine(PointFloat refLineStart, PointFloat refLineEnd, PointFloat point, PointFloat* midLineStart, PointFloat* midLineEnd);
-IMAQ_FUNC int           IMAQ_STDCALL imaqGetPerpendicularLine(PointFloat refLineStart, PointFloat refLineEnd, PointFloat point, PointFloat* perpLineStart, PointFloat* perpLineEnd, double* distance);
-IMAQ_FUNC SegmentInfo*  IMAQ_STDCALL imaqGetPointsOnContour(const Image* image, int* numSegments);
-IMAQ_FUNC Point*        IMAQ_STDCALL imaqGetPointsOnLine(Point start, Point end, int* numPoints);
-IMAQ_FUNC int           IMAQ_STDCALL imaqGetPolygonArea(const PointFloat* points, int numPoints, float* area);
-IMAQ_FUNC float*        IMAQ_STDCALL imaqInterpolatePoints(const Image* image, const Point* points, int numPoints, InterpolationMethod method, int subpixel, int* interpCount);
-
-//============================================================================
-//  Clipboard functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqClipboardToImage(Image* dest, RGBValue* palette);
-IMAQ_FUNC int IMAQ_STDCALL imaqImageToClipboard(const Image* image, const RGBValue* palette);
-
-//============================================================================
-//  Border functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqFillBorder(Image* image, BorderMethod method);
-IMAQ_FUNC int IMAQ_STDCALL imaqGetBorderSize(const Image* image, int* borderSize);
-IMAQ_FUNC int IMAQ_STDCALL imaqSetBorderSize(Image* image, int size);
-
-//============================================================================
-//  Image Management functions
-//============================================================================
-IMAQ_FUNC int    IMAQ_STDCALL imaqArrayToImage(Image* image, const void* array, int numCols, int numRows);
-IMAQ_FUNC Image* IMAQ_STDCALL imaqCreateImage(ImageType type, int borderSize);
-IMAQ_FUNC void*  IMAQ_STDCALL imaqImageToArray(const Image* image, Rect rect, int* columns, int* rows);
-
-//============================================================================
-//  Color Processing functions
-//============================================================================
-IMAQ_FUNC Color2                             IMAQ_STDCALL imaqChangeColorSpace2(const Color2* sourceColor, ColorMode sourceSpace, ColorMode destSpace, double offset, const CIEXYZValue* whiteReference);
-IMAQ_FUNC int                                IMAQ_STDCALL imaqColorBCGTransform(Image* dest, const Image* source, const BCGOptions* redOptions, const BCGOptions* greenOptions, const BCGOptions* blueOptions, const Image* mask);
-IMAQ_FUNC int                                IMAQ_STDCALL imaqColorEqualize(Image* dest, const Image* source, int colorEqualization);
-IMAQ_FUNC ColorHistogramReport*              IMAQ_STDCALL imaqColorHistogram2(Image* image, int numClasses, ColorMode mode, const CIEXYZValue* whiteReference, Image* mask);
-IMAQ_FUNC int                                IMAQ_STDCALL imaqColorLookup(Image* dest, const Image* source, ColorMode mode, const Image* mask, const short* plane1, const short* plane2, const short* plane3);
-IMAQ_FUNC int                                IMAQ_STDCALL imaqColorThreshold(Image* dest, const Image* source, int replaceValue, ColorMode mode, const Range* plane1Range, const Range* plane2Range, const Range* plane3Range);
-IMAQ_FUNC SupervisedColorSegmentationReport* IMAQ_STDCALL imaqSupervisedColorSegmentation(ClassifierSession* session, Image* labelImage, const Image* srcImage, const ROI* roi, const ROILabel* labelIn, unsigned int numLabelIn, int maxDistance, int minIdentificationScore, const ColorSegmenationOptions* segmentOptions);
-IMAQ_FUNC int                                IMAQ_STDCALL imaqGetColorSegmentationMaxDistance(ClassifierSession* session, const ColorSegmenationOptions* segmentOptions, SegmentationDistanceLevel distLevel, int* maxDistance);
-
-//============================================================================
-//  Transform functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqBCGTransform(Image* dest, const Image* source, const BCGOptions* options, const Image* mask);
-IMAQ_FUNC int IMAQ_STDCALL imaqEqualize(Image* dest, const Image* source, float min, float max, const Image* mask);
-IMAQ_FUNC int IMAQ_STDCALL imaqInverse(Image* dest, const Image* source, const Image* mask);
-IMAQ_FUNC int IMAQ_STDCALL imaqMathTransform(Image* dest, const Image* source, MathTransformMethod method, float rangeMin, float rangeMax, float power, const Image* mask);
-IMAQ_FUNC int IMAQ_STDCALL imaqWatershedTransform(Image* dest, const Image* source, int connectivity8, int* zoneCount);
-IMAQ_FUNC int IMAQ_STDCALL imaqLookup2(Image* dest, const Image* source, const int* table, const Image* mask);
-
-
-//============================================================================
-//  Window Management functions
-//============================================================================
-IMAQ_FUNC int   IMAQ_STDCALL imaqAreScrollbarsVisible(int windowNumber, int* visible);
-IMAQ_FUNC int   IMAQ_STDCALL imaqBringWindowToTop(int windowNumber);
-IMAQ_FUNC int   IMAQ_STDCALL imaqGetMousePos(Point* position, int* windowNumber);
-IMAQ_FUNC int   IMAQ_STDCALL imaqGetWindowBackground(int windowNumber, WindowBackgroundFillStyle* fillStyle, WindowBackgroundHatchStyle* hatchStyle, RGBValue* fillColor, RGBValue* backgroundColor);
-IMAQ_FUNC int   IMAQ_STDCALL imaqGetWindowDisplayMapping(int windowNum, DisplayMapping* mapping);
-IMAQ_FUNC int   IMAQ_STDCALL imaqGetWindowGrid(int windowNumber, int* xResolution, int* yResolution);
-IMAQ_FUNC int   IMAQ_STDCALL imaqGetWindowHandle(int* handle);
-IMAQ_FUNC int   IMAQ_STDCALL imaqGetWindowPos(int windowNumber, Point* position);
-IMAQ_FUNC int   IMAQ_STDCALL imaqGetWindowSize(int windowNumber, int* width, int* height);
-IMAQ_FUNC char* IMAQ_STDCALL imaqGetWindowTitle(int windowNumber);
-IMAQ_FUNC int   IMAQ_STDCALL imaqGetWindowZoom2(int windowNumber, float* xZoom, float* yZoom);
-IMAQ_FUNC int   IMAQ_STDCALL imaqIsWindowNonTearing(int windowNumber, int* nonTearing);
-IMAQ_FUNC int   IMAQ_STDCALL imaqIsWindowVisible(int windowNumber, int* visible);
-IMAQ_FUNC int   IMAQ_STDCALL imaqMoveWindow(int windowNumber, Point position);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetupWindow(int windowNumber, int configuration);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetWindowBackground(int windowNumber, WindowBackgroundFillStyle fillStyle, WindowBackgroundHatchStyle hatchStyle, const RGBValue* fillColor, const RGBValue* backgroundColor);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetWindowDisplayMapping(int windowNumber, const DisplayMapping* mapping);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetWindowGrid(int windowNumber, int xResolution, int yResolution);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetWindowMaxContourCount(int windowNumber, unsigned int maxContourCount);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetWindowNonTearing(int windowNumber, int nonTearing);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetWindowPalette(int windowNumber, PaletteType type, const RGBValue* palette, int numColors);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetWindowSize(int windowNumber, int width, int height);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetWindowThreadPolicy(WindowThreadPolicy policy);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetWindowTitle(int windowNumber, const char* title);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetWindowZoomToFit(int windowNumber, int zoomToFit);
-IMAQ_FUNC int   IMAQ_STDCALL imaqShowScrollbars(int windowNumber, int visible);
-IMAQ_FUNC int   IMAQ_STDCALL imaqZoomWindow2(int windowNumber, float xZoom, float yZoom, Point center);
-
-//============================================================================
-//  Utilities functions
-//============================================================================
-IMAQ_FUNC const float* IMAQ_STDCALL imaqGetKernel(KernelFamily family, int size, int number);
-IMAQ_FUNC Annulus      IMAQ_STDCALL imaqMakeAnnulus(Point center, int innerRadius, int outerRadius, double startAngle, double endAngle);
-IMAQ_FUNC Point        IMAQ_STDCALL imaqMakePoint(int xCoordinate, int yCoordinate);
-IMAQ_FUNC PointFloat   IMAQ_STDCALL imaqMakePointFloat(float xCoordinate, float yCoordinate);
-IMAQ_FUNC Rect         IMAQ_STDCALL imaqMakeRect(int top, int left, int height, int width);
-IMAQ_FUNC Rect         IMAQ_STDCALL imaqMakeRectFromRotatedRect(RotatedRect rotatedRect);
-IMAQ_FUNC RotatedRect  IMAQ_STDCALL imaqMakeRotatedRect(int top, int left, int height, int width, double angle);
-IMAQ_FUNC RotatedRect  IMAQ_STDCALL imaqMakeRotatedRectFromRect(Rect rect);
-IMAQ_FUNC int          IMAQ_STDCALL imaqMulticoreOptions(MulticoreOperation operation, unsigned int* customNumCores);
-
-//============================================================================
-//  Tool Window functions
-//============================================================================
-IMAQ_FUNC int   IMAQ_STDCALL imaqCloseToolWindow(void);
-IMAQ_FUNC int   IMAQ_STDCALL imaqGetCurrentTool(Tool* currentTool);
-IMAQ_FUNC int   IMAQ_STDCALL imaqGetLastEvent(WindowEventType* type, int* windowNumber, Tool* tool, Rect* rect);
-IMAQ_FUNC void* IMAQ_STDCALL imaqGetToolWindowHandle(void);
-IMAQ_FUNC int   IMAQ_STDCALL imaqGetToolWindowPos(Point* position);
-IMAQ_FUNC int   IMAQ_STDCALL imaqIsToolWindowVisible(int* visible);
-IMAQ_FUNC int   IMAQ_STDCALL imaqMoveToolWindow(Point position);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetCurrentTool(Tool currentTool);
-#ifndef __GNUC__
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetEventCallback(EventCallback callback, int synchronous);
-#endif
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetToolColor(const RGBValue* color);
-IMAQ_FUNC int   IMAQ_STDCALL imaqSetupToolWindow(int showCoordinates, int maxIconsPerLine, const ToolWindowOptions* options);
-IMAQ_FUNC int   IMAQ_STDCALL imaqShowToolWindow(int visible);
-
-//============================================================================
-//  Meter functions
-//============================================================================
-IMAQ_FUNC MeterArc* IMAQ_STDCALL imaqGetMeterArc(int lightNeedle, MeterArcMode mode, const ROI* roi, PointFloat base, PointFloat start, PointFloat end);
-IMAQ_FUNC int       IMAQ_STDCALL imaqReadMeter(const Image* image, const MeterArc* arcInfo, double* percentage, PointFloat* endOfNeedle);
-
-//============================================================================
-//  Calibration functions
-//============================================================================
-IMAQ_FUNC int                        IMAQ_STDCALL imaqCopyCalibrationInfo2(Image* dest, Image* source, Point offset);
-IMAQ_FUNC int                        IMAQ_STDCALL imaqCorrectCalibratedImage(Image* dest, const Image* source, PixelValue fill, InterpolationMethod method, const ROI* roi);
-IMAQ_FUNC CalibrationInfo*           IMAQ_STDCALL imaqGetCalibrationInfo2(const Image* image);
-IMAQ_FUNC CalibrationInfo*           IMAQ_STDCALL imaqGetCalibrationInfo3(Image* image, unsigned int isGetErrorMap);
-IMAQ_FUNC int                        IMAQ_STDCALL imaqLearnCalibrationGrid(Image* image, const ROI* roi, const LearnCalibrationOptions* options, const GridDescriptor* grid, const CoordinateSystem* system, const RangeFloat* range, float* quality);
-IMAQ_FUNC int                        IMAQ_STDCALL imaqLearnCalibrationPoints(Image* image, const CalibrationPoints* points, const ROI* roi, const LearnCalibrationOptions* options, const GridDescriptor* grid, const CoordinateSystem* system, float* quality);
-IMAQ_FUNC int                        IMAQ_STDCALL imaqSetCoordinateSystem(Image* image, const CoordinateSystem* system);
-IMAQ_FUNC int                        IMAQ_STDCALL imaqSetSimpleCalibration(Image* image, ScalingMethod method, int learnTable, const GridDescriptor* grid, const CoordinateSystem* system);
-IMAQ_FUNC TransformReport*           IMAQ_STDCALL imaqTransformPixelToRealWorld(const Image* image, const PointFloat* pixelCoordinates, int numCoordinates);
-IMAQ_FUNC TransformReport*           IMAQ_STDCALL imaqTransformRealWorldToPixel(const Image* image, const PointFloat* realWorldCoordinates, int numCoordinates);
-IMAQ_FUNC int                        IMAQ_STDCALL imaqSetSimpleCalibration2(Image* image, const GridDescriptor* gridDescriptor);
-IMAQ_FUNC int                        IMAQ_STDCALL imaqCalibrationSetAxisInfo(Image* image, CoordinateSystem* axisInfo);
-IMAQ_FUNC int                        IMAQ_STDCALL imaqCalibrationGetThumbnailImage(Image* templateImage, Image* image, CalibrationThumbnailType type, unsigned int index);
-IMAQ_FUNC GetCalibrationInfoReport*  IMAQ_STDCALL imaqCalibrationGetCalibrationInfo(Image* image, unsigned int isGetErrorMap);
-IMAQ_FUNC GetCameraParametersReport* IMAQ_STDCALL imaqCalibrationGetCameraParameters(Image* templateImage);
-IMAQ_FUNC int                        IMAQ_STDCALL imaqCalibrationCompactInformation(Image* image);
-
-//============================================================================
-//  Pixel Manipulation functions
-//============================================================================
-IMAQ_FUNC int    IMAQ_STDCALL imaqArrayToComplexPlane(Image* dest, const Image* source, const float* newPixels, ComplexPlane plane);
-IMAQ_FUNC float* IMAQ_STDCALL imaqComplexPlaneToArray(const Image* image, ComplexPlane plane, Rect rect, int* rows, int* columns);
-IMAQ_FUNC int    IMAQ_STDCALL imaqExtractColorPlanes(const Image* image, ColorMode mode, Image* plane1, Image* plane2, Image* plane3);
-IMAQ_FUNC int    IMAQ_STDCALL imaqExtractComplexPlane(Image* dest, const Image* source, ComplexPlane plane);
-IMAQ_FUNC int    IMAQ_STDCALL imaqFillImage(Image* image, PixelValue value, const Image* mask);
-IMAQ_FUNC void*  IMAQ_STDCALL imaqGetLine(const Image* image, Point start, Point end, int* numPoints);
-IMAQ_FUNC int    IMAQ_STDCALL imaqGetPixel(const Image* image, Point pixel, PixelValue* value);
-IMAQ_FUNC int    IMAQ_STDCALL imaqReplaceColorPlanes(Image* dest, const Image* source, ColorMode mode, const Image* plane1, const Image* plane2, const Image* plane3);
-IMAQ_FUNC int    IMAQ_STDCALL imaqReplaceComplexPlane(Image* dest, const Image* source, const Image* newValues, ComplexPlane plane);
-IMAQ_FUNC int    IMAQ_STDCALL imaqSetLine(Image* image, const void* array, int arraySize, Point start, Point end);
-IMAQ_FUNC int    IMAQ_STDCALL imaqSetPixel(Image* image, Point coord, PixelValue value);
-
-//============================================================================
-//  Color Matching functions
-//============================================================================
-IMAQ_FUNC ColorInformation* IMAQ_STDCALL imaqLearnColor(const Image* image, const ROI* roi, ColorSensitivity sensitivity, int saturation);
-IMAQ_FUNC int*              IMAQ_STDCALL imaqMatchColor(const Image* image, const ColorInformation* info, const ROI* roi, int* numScores);
-
-//============================================================================
-//  Frequency Domain Analysis functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqAttenuate(Image* dest, const Image* source, AttenuateMode highlow);
-IMAQ_FUNC int IMAQ_STDCALL imaqConjugate(Image* dest, const Image* source);
-IMAQ_FUNC int IMAQ_STDCALL imaqFFT(Image* dest, const Image* source);
-IMAQ_FUNC int IMAQ_STDCALL imaqFlipFrequencies(Image* dest, const Image* source);
-IMAQ_FUNC int IMAQ_STDCALL imaqInverseFFT(Image* dest, const Image* source);
-IMAQ_FUNC int IMAQ_STDCALL imaqTruncate(Image* dest, const Image* source, TruncateMode highlow, float ratioToKeep);
-
-//============================================================================
-//  Barcode I/O functions
-//============================================================================
-IMAQ_FUNC int               IMAQ_STDCALL imaqGradeDataMatrixBarcodeAIM(const Image* image, AIMGradeReport* report);
-IMAQ_FUNC BarcodeInfo*      IMAQ_STDCALL imaqReadBarcode(const Image* image, BarcodeType type, const ROI* roi, int validate);
-IMAQ_FUNC DataMatrixReport* IMAQ_STDCALL imaqReadDataMatrixBarcode2(Image* image, const ROI* roi, DataMatrixGradingMode prepareForGrading, const DataMatrixDescriptionOptions* descriptionOptions, const DataMatrixSizeOptions* sizeOptions, const DataMatrixSearchOptions* searchOptions);
-IMAQ_FUNC Barcode2DInfo*    IMAQ_STDCALL imaqReadPDF417Barcode(const Image* image, const ROI* roi, Barcode2DSearchMode searchMode, unsigned int* numBarcodes);
-IMAQ_FUNC QRCodeReport*     IMAQ_STDCALL imaqReadQRCode(Image* image, const ROI* roi, QRGradingMode reserved, const QRCodeDescriptionOptions* descriptionOptions, const QRCodeSizeOptions* sizeOptions, const QRCodeSearchOptions* searchOptions);
-
-//============================================================================
-//  LCD functions
-//============================================================================
-IMAQ_FUNC int        IMAQ_STDCALL imaqFindLCDSegments(ROI* roi, const Image* image, const LCDOptions* options);
-IMAQ_FUNC LCDReport* IMAQ_STDCALL imaqReadLCD(const Image* image, const ROI* roi, const LCDOptions* options);
-
-//============================================================================
-//  Shape Matching functions
-//============================================================================
-IMAQ_FUNC ShapeReport* IMAQ_STDCALL imaqMatchShape(Image* dest, Image* source, const Image* templateImage, int scaleInvariant, int connectivity8, double tolerance, int* numMatches);
-
-//============================================================================
-//  Contours functions
-//============================================================================
-IMAQ_FUNC ContourID     IMAQ_STDCALL imaqAddAnnulusContour(ROI* roi, Annulus annulus);
-IMAQ_FUNC ContourID     IMAQ_STDCALL imaqAddClosedContour(ROI* roi, const Point* points, int numPoints);
-IMAQ_FUNC ContourID     IMAQ_STDCALL imaqAddLineContour(ROI* roi, Point start, Point end);
-IMAQ_FUNC ContourID     IMAQ_STDCALL imaqAddOpenContour(ROI* roi, const Point* points, int numPoints);
-IMAQ_FUNC ContourID     IMAQ_STDCALL imaqAddOvalContour(ROI* roi, Rect boundingBox);
-IMAQ_FUNC ContourID     IMAQ_STDCALL imaqAddPointContour(ROI* roi, Point point);
-IMAQ_FUNC ContourID     IMAQ_STDCALL imaqAddRectContour(ROI* roi, Rect rect);
-IMAQ_FUNC ContourID     IMAQ_STDCALL imaqAddRotatedRectContour2(ROI* roi, RotatedRect rect);
-IMAQ_FUNC ContourID     IMAQ_STDCALL imaqCopyContour(ROI* destRoi, const ROI* sourceRoi, ContourID id);
-IMAQ_FUNC ContourID     IMAQ_STDCALL imaqGetContour(const ROI* roi, unsigned int index);
-IMAQ_FUNC int           IMAQ_STDCALL imaqGetContourColor(const ROI* roi, ContourID id, RGBValue* contourColor);
-IMAQ_FUNC int           IMAQ_STDCALL imaqGetContourCount(const ROI* roi);
-IMAQ_FUNC ContourInfo2* IMAQ_STDCALL imaqGetContourInfo2(const ROI* roi, ContourID id);
-IMAQ_FUNC int           IMAQ_STDCALL imaqMoveContour(ROI* roi, ContourID id, int deltaX, int deltaY);
-IMAQ_FUNC int           IMAQ_STDCALL imaqRemoveContour(ROI* roi, ContourID id);
-IMAQ_FUNC int           IMAQ_STDCALL imaqSetContourColor(ROI* roi, ContourID id, const RGBValue* color);
-
-//============================================================================
-//  Regions of Interest functions
-//============================================================================
-IMAQ_FUNC int  IMAQ_STDCALL imaqConstructROI2(const Image* image, ROI* roi, Tool initialTool, const ToolWindowOptions* tools, const ConstructROIOptions2* options, int* okay);
-IMAQ_FUNC ROI* IMAQ_STDCALL imaqCreateROI(void);
-IMAQ_FUNC int  IMAQ_STDCALL imaqGetROIBoundingBox(const ROI* roi, Rect* boundingBox);
-IMAQ_FUNC int  IMAQ_STDCALL imaqGetROIColor(const ROI* roi, RGBValue* roiColor);
-IMAQ_FUNC ROI* IMAQ_STDCALL imaqGetWindowROI(int windowNumber);
-IMAQ_FUNC int  IMAQ_STDCALL imaqSetROIColor(ROI* roi, const RGBValue* color);
-IMAQ_FUNC int  IMAQ_STDCALL imaqSetWindowROI(int windowNumber, const ROI* roi);
-
-//============================================================================
-//  Image Analysis functions
-//============================================================================
-IMAQ_FUNC int              IMAQ_STDCALL imaqCentroid(const Image* image, PointFloat* centroid, const Image* mask);
-IMAQ_FUNC Curve*           IMAQ_STDCALL imaqExtractCurves(const Image* image, const ROI* roi, const CurveOptions* curveOptions, unsigned int* numCurves);
-IMAQ_FUNC HistogramReport* IMAQ_STDCALL imaqHistogram(const Image* image, int numClasses, float min, float max, const Image* mask);
-IMAQ_FUNC LinearAverages*  IMAQ_STDCALL imaqLinearAverages2(Image* image, LinearAveragesMode mode, Rect rect);
-IMAQ_FUNC LineProfile*     IMAQ_STDCALL imaqLineProfile(const Image* image, Point start, Point end);
-IMAQ_FUNC QuantifyReport*  IMAQ_STDCALL imaqQuantify(const Image* image, const Image* mask);
-
-//============================================================================
-//  Error Management functions
-//============================================================================
-IMAQ_FUNC int         IMAQ_STDCALL imaqClearError(void);
-IMAQ_FUNC char*       IMAQ_STDCALL imaqGetErrorText(int errorCode);
-IMAQ_FUNC int         IMAQ_STDCALL imaqGetLastError(void);
-IMAQ_FUNC const char* IMAQ_STDCALL imaqGetLastErrorFunc(void);
-IMAQ_FUNC int         IMAQ_STDCALL imaqSetError(int errorCode, const char* function);
-
-//============================================================================
-//  Threshold functions
-//============================================================================
-IMAQ_FUNC ThresholdData* IMAQ_STDCALL imaqAutoThreshold2(Image* dest, const Image* source, int numClasses, ThresholdMethod method, const Image* mask);
-IMAQ_FUNC int            IMAQ_STDCALL imaqLocalThreshold(Image* dest, const Image* source, unsigned int windowWidth, unsigned int windowHeight, LocalThresholdMethod method, double deviationWeight, ObjectType type, float replaceValue);
-IMAQ_FUNC int            IMAQ_STDCALL imaqMagicWand(Image* dest, const Image* source, Point coord, float tolerance, int connectivity8, float replaceValue);
-IMAQ_FUNC int            IMAQ_STDCALL imaqMultithreshold(Image* dest, const Image* source, const ThresholdData* ranges, int numRanges);
-IMAQ_FUNC int            IMAQ_STDCALL imaqThreshold(Image* dest, const Image* source, float rangeMin, float rangeMax, int useNewValue, float newValue);
-
-//============================================================================
-//  Memory Management functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqDispose(void* object);
-
-//============================================================================
-//  Pattern Matching functions
-//============================================================================
-IMAQ_FUNC CircleMatch*              IMAQ_STDCALL imaqDetectCircles(const Image* image, const CircleDescriptor* circleDescriptor, const CurveOptions* curveOptions, const ShapeDetectionOptions* shapeDetectionOptions, const ROI* roi, int* numMatchesReturned);
-IMAQ_FUNC EllipseMatch*             IMAQ_STDCALL imaqDetectEllipses(const Image* image, const EllipseDescriptor* ellipseDescriptor, const CurveOptions* curveOptions, const ShapeDetectionOptions* shapeDetectionOptions, const ROI* roi, int* numMatchesReturned);
-IMAQ_FUNC LineMatch*                IMAQ_STDCALL imaqDetectLines(const Image* image, const LineDescriptor* lineDescriptor, const CurveOptions* curveOptions, const ShapeDetectionOptions* shapeDetectionOptions, const ROI* roi, int* numMatchesReturned);
-IMAQ_FUNC RectangleMatch*           IMAQ_STDCALL imaqDetectRectangles(const Image* image, const RectangleDescriptor* rectangleDescriptor, const CurveOptions* curveOptions, const ShapeDetectionOptions* shapeDetectionOptions, const ROI* roi, int* numMatchesReturned);
-IMAQ_FUNC FeatureData*              IMAQ_STDCALL imaqGetGeometricFeaturesFromCurves(const Curve* curves, unsigned int numCurves, const FeatureType* featureTypes, unsigned int numFeatureTypes, unsigned int* numFeatures);
-IMAQ_FUNC FeatureData*              IMAQ_STDCALL imaqGetGeometricTemplateFeatureInfo(const Image* pattern, unsigned int* numFeatures);
-IMAQ_FUNC int                       IMAQ_STDCALL imaqLearnColorPattern(Image* image, const LearnColorPatternOptions* options);
-IMAQ_FUNC int                       IMAQ_STDCALL imaqLearnGeometricPattern(Image* image, PointFloat originOffset, const CurveOptions* curveOptions, const LearnGeometricPatternAdvancedOptions* advancedLearnOptions, const Image* mask);
-IMAQ_FUNC MultipleGeometricPattern* IMAQ_STDCALL imaqLearnMultipleGeometricPatterns(const Image** patterns, unsigned int numberOfPatterns, const String255* labels);
-IMAQ_FUNC int                       IMAQ_STDCALL imaqLearnPattern3(Image* image, LearningMode learningMode, LearnPatternAdvancedOptions* advancedOptions, const Image* mask);
-IMAQ_FUNC PatternMatch*             IMAQ_STDCALL imaqMatchColorPattern(const Image* image, Image* pattern, const MatchColorPatternOptions* options, Rect searchRect, int* numMatches);
-IMAQ_FUNC GeometricPatternMatch2*   IMAQ_STDCALL imaqMatchGeometricPattern2(const Image* image, const Image* pattern, const CurveOptions* curveOptions, const MatchGeometricPatternOptions* matchOptions, const MatchGeometricPatternAdvancedOptions2* advancedMatchOptions, const ROI* roi, int* numMatches);
-IMAQ_FUNC GeometricPatternMatch2*   IMAQ_STDCALL imaqMatchMultipleGeometricPatterns(const Image* image, const MultipleGeometricPattern* multiplePattern, const ROI* roi, int* numMatches);
-IMAQ_FUNC MultipleGeometricPattern* IMAQ_STDCALL imaqReadMultipleGeometricPatternFile(const char* fileName, String255 description);
-IMAQ_FUNC PatternMatch*             IMAQ_STDCALL imaqRefineMatches(const Image* image, const Image* pattern, const PatternMatch* candidatesIn, int numCandidatesIn, MatchPatternOptions* options, MatchPatternAdvancedOptions* advancedOptions, int* numCandidatesOut);
-IMAQ_FUNC int                       IMAQ_STDCALL imaqSetMultipleGeometricPatternsOptions(MultipleGeometricPattern* multiplePattern, const char* label, const CurveOptions* curveOptions, const MatchGeometricPatternOptions* matchOptions, const MatchGeometricPatternAdvancedOptions2* advancedMatchOptions);
-IMAQ_FUNC int                       IMAQ_STDCALL imaqWriteMultipleGeometricPatternFile(const MultipleGeometricPattern* multiplePattern, const char* fileName, const char* description);
-IMAQ_FUNC GeometricPatternMatch3*   IMAQ_STDCALL imaqMatchGeometricPattern3(const Image* image, const Image* pattern, const CurveOptions* curveOptions, const MatchGeometricPatternOptions* matchOptions, const MatchGeometricPatternAdvancedOptions3* advancedMatchOptions, const ROI* roi, size_t* numMatches);
-IMAQ_FUNC int                       IMAQ_STDCALL imaqLearnGeometricPattern2(Image* image, PointFloat originOffset, double angleOffset, const CurveOptions* curveOptions, const LearnGeometricPatternAdvancedOptions2* advancedLearnOptions, const Image* mask);
-IMAQ_FUNC PatternMatch*             IMAQ_STDCALL imaqMatchPattern3(const Image* image, const Image* pattern, const MatchPatternOptions* options, const MatchPatternAdvancedOptions* advancedOptions, const ROI* roi, int* numMatches);
-
-//============================================================================
-//  Overlay functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqClearOverlay(Image* image, const char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqCopyOverlay(Image* dest, const Image* source, const char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqGetOverlayProperties(const Image* image, const char* group, TransformBehaviors* transformBehaviors);
-IMAQ_FUNC int IMAQ_STDCALL imaqMergeOverlay(Image* dest, const Image* source, const RGBValue* palette, unsigned int numColors, const char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqOverlayArc(Image* image, const ArcInfo* arc, const RGBValue* color, DrawMode drawMode, const char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqOverlayBitmap(Image* image, Point destLoc, const RGBValue* bitmap, unsigned int numCols, unsigned int numRows, const char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqOverlayClosedContour(Image* image, const Point* points, int numPoints, const RGBValue* color, DrawMode drawMode, const char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqOverlayLine(Image* image, Point start, Point end, const RGBValue* color, const char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqOverlayMetafile(Image* image, const void* metafile, Rect rect, const char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqOverlayOpenContour(Image* image, const Point* points, int numPoints, const RGBValue* color, const char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqOverlayOval(Image* image, Rect boundingBox, const RGBValue* color, DrawMode drawMode, char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqOverlayPoints(Image* image, const Point* points, int numPoints, const RGBValue* colors, int numColors, PointSymbol symbol, const UserPointSymbol* userSymbol, const char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqOverlayRect(Image* image, Rect rect, const RGBValue* color, DrawMode drawMode, const char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqOverlayROI(Image* image, const ROI* roi, PointSymbol symbol, const UserPointSymbol* userSymbol, const char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqOverlayText(Image* image, Point origin, const char* text, const RGBValue* color, const OverlayTextOptions* options, const char* group);
-IMAQ_FUNC int IMAQ_STDCALL imaqSetOverlayProperties(Image* image, const char* group, TransformBehaviors* transformBehaviors);
-
-//============================================================================
-//  OCR functions
-//============================================================================
-IMAQ_FUNC CharSet*         IMAQ_STDCALL imaqCreateCharSet(void);
-IMAQ_FUNC int              IMAQ_STDCALL imaqDeleteChar(CharSet* set, int index);
-IMAQ_FUNC int              IMAQ_STDCALL imaqGetCharCount(const CharSet* set);
-IMAQ_FUNC CharInfo2*       IMAQ_STDCALL imaqGetCharInfo2(const CharSet* set, int index);
-IMAQ_FUNC int              IMAQ_STDCALL imaqReadOCRFile(const char* fileName, CharSet* set, String255 setDescription, ReadTextOptions* readOptions, OCRProcessingOptions* processingOptions, OCRSpacingOptions* spacingOptions);
-IMAQ_FUNC ReadTextReport3* IMAQ_STDCALL imaqReadText3(const Image* image, const CharSet* set, const ROI* roi, const ReadTextOptions* readOptions, const OCRProcessingOptions* processingOptions, const OCRSpacingOptions* spacingOptions);
-IMAQ_FUNC int              IMAQ_STDCALL imaqRenameChar(CharSet* set, int index, const char* newCharValue);
-IMAQ_FUNC int              IMAQ_STDCALL imaqSetReferenceChar(const CharSet* set, int index, int isReferenceChar);
-IMAQ_FUNC int              IMAQ_STDCALL imaqTrainChars(const Image* image, CharSet* set, int index, const char* charValue, const ROI* roi, const OCRProcessingOptions* processingOptions, const OCRSpacingOptions* spacingOptions);
-IMAQ_FUNC int*             IMAQ_STDCALL imaqVerifyPatterns(const Image* image, const CharSet* set, const String255* expectedPatterns, int patternCount, const ROI* roi, int* numScores);
-IMAQ_FUNC int*             IMAQ_STDCALL imaqVerifyText(const Image* image, const CharSet* set, const char* expectedString, const ROI* roi, int* numScores);
-IMAQ_FUNC int              IMAQ_STDCALL imaqWriteOCRFile(const char* fileName, const CharSet* set, const char* setDescription, const ReadTextOptions* readOptions, const OCRProcessingOptions* processingOptions, const OCRSpacingOptions* spacingOptions);
-
-//============================================================================
-//  Geometric Matching functions
-//============================================================================
-IMAQ_FUNC ExtractContourReport*          IMAQ_STDCALL imaqExtractContour(Image* image, const ROI* roi, ExtractContourDirection direction, CurveParameters* curveParams, const ConnectionConstraint* connectionConstraintParams, unsigned int numOfConstraints, ExtractContourSelection selection, Image* contourImage);
-IMAQ_FUNC int                            IMAQ_STDCALL imaqContourOverlay(Image* image, const Image* contourImage, const ContourOverlaySettings* pointsSettings, const ContourOverlaySettings* eqnSettings, const char* groupName);
-IMAQ_FUNC ContourComputeCurvatureReport* IMAQ_STDCALL imaqContourComputeCurvature(const Image* contourImage, unsigned int kernel);
-IMAQ_FUNC CurvatureAnalysisReport*       IMAQ_STDCALL imaqContourClassifyCurvature(const Image* contourImage, unsigned int kernel, RangeLabel* curvatureClasses, unsigned int numCurvatureClasses);
-IMAQ_FUNC ComputeDistancesReport*        IMAQ_STDCALL imaqContourComputeDistances(const Image* targetImage, const Image* templateImage, const SetupMatchPatternData* matchSetupData, unsigned int smoothingKernel);
-IMAQ_FUNC ClassifyDistancesReport*       IMAQ_STDCALL imaqContourClassifyDistances(const Image* targetImage, const Image* templateImage, const SetupMatchPatternData* matchSetupData, unsigned int smoothingKernel, const RangeLabel* distanceRanges, unsigned int numDistanceRanges);
-IMAQ_FUNC ContourInfoReport*             IMAQ_STDCALL imaqContourInfo(const Image* contourImage);
-IMAQ_FUNC SetupMatchPatternData*         IMAQ_STDCALL imaqContourSetupMatchPattern(MatchMode* matchMode, unsigned int enableSubPixelAccuracy, CurveParameters* curveParams, unsigned int useLearnCurveParameters, const RangeSettingDouble* rangeSettings, unsigned int numRangeSettings);
-IMAQ_FUNC int                            IMAQ_STDCALL imaqContourAdvancedSetupMatchPattern(SetupMatchPatternData* matchSetupData, GeometricAdvancedSetupDataOption* geometricOptions, unsigned int numGeometricOptions);
-IMAQ_FUNC ContourFitLineReport*          IMAQ_STDCALL imaqContourFitLine(Image* image, double pixelRadius);
-IMAQ_FUNC PartialCircle*                 IMAQ_STDCALL imaqContourFitCircle(Image* image, double pixelRadius, int rejectOutliers);
-IMAQ_FUNC PartialEllipse*                IMAQ_STDCALL imaqContourFitEllipse(Image* image, double pixelRadius, int rejectOutliers);
-IMAQ_FUNC ContourFitSplineReport*        IMAQ_STDCALL imaqContourFitSpline(Image* image, int degree, int numberOfControlPoints);
-IMAQ_FUNC ContourFitPolynomialReport*    IMAQ_STDCALL imaqContourFitPolynomial(Image* image, int order);
-
-//============================================================================
-//  Edge Detection functions
-//============================================================================
-IMAQ_FUNC FindCircularEdgeReport*   IMAQ_STDCALL imaqFindCircularEdge2(Image* image, const ROI* roi, const CoordinateSystem* baseSystem, const CoordinateSystem* newSystem, const FindCircularEdgeOptions* edgeOptions, const CircleFitOptions* circleFitOptions);
-IMAQ_FUNC FindConcentricEdgeReport* IMAQ_STDCALL imaqFindConcentricEdge2(Image* image, const ROI* roi, const CoordinateSystem* baseSystem, const CoordinateSystem* newSystem, const FindConcentricEdgeOptions* edgeOptions, const ConcentricEdgeFitOptions* concentricEdgeFitOptions);
-
-//============================================================================
-//  Morphology Reconstruction functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqGrayMorphologyReconstruct(Image* dstImage, Image* srcImage, const Image* markerImage, PointFloat* points, int numOfPoints, MorphologyReconstructOperation operation, const StructuringElement* structuringElement, const ROI* roi);
-IMAQ_FUNC int IMAQ_STDCALL imaqMorphologyReconstruct(Image* dstImage, Image* srcImage, const Image* markerImage, PointFloat* points, int numOfPoints, MorphologyReconstructOperation operation, Connectivity connectivity, const ROI* roi);
-
-//============================================================================
-//  Texture functions
-//============================================================================
-IMAQ_FUNC int                           IMAQ_STDCALL imaqDetectTextureDefect(ClassifierSession* session, Image* destImage, const Image* srcImage, const ROI* roi, int initialStepSize, int finalStepSize, unsigned char defectPixelValue, double minClassificationScore);
-IMAQ_FUNC int                           IMAQ_STDCALL imaqClassificationTextureDefectOptions(ClassifierSession* session, WindowSize* windowOptions, WaveletOptions* waveletOptions, void** bandsUsed, int* numBandsUsed, CooccurrenceOptions* cooccurrenceOptions, unsigned char setOperation);
-IMAQ_FUNC int                           IMAQ_STDCALL imaqCooccurrenceMatrix(const Image* srcImage, const ROI* roi, int levelPixel, const DisplacementVector* displacementVec, void* featureOptionArray, unsigned int featureOptionArraySize, void** cooccurrenceMatrixArray, int* coocurrenceMatrixRows, int* coocurrenceMatrixCols, void** featureVectorArray, int* featureVectorArraySize);
-IMAQ_FUNC ExtractTextureFeaturesReport* IMAQ_STDCALL imaqExtractTextureFeatures(const Image* srcImage, const ROI* roi, const WindowSize* windowOptions, const WaveletOptions* waveletOptions, void* waveletBands, unsigned int numWaveletBands, const CooccurrenceOptions* cooccurrenceOptions, unsigned char useWindow);
-IMAQ_FUNC WaveletBandsReport*           IMAQ_STDCALL imaqExtractWaveletBands(const Image* srcImage, const WaveletOptions* waveletOptions, void* waveletBands, unsigned int numWaveletBands);
-
-//============================================================================
-//  Regions of Interest Manipulation functions
-//============================================================================
-IMAQ_FUNC ROI*              IMAQ_STDCALL imaqMaskToROI(const Image* mask, int* withinLimit);
-IMAQ_FUNC ROIProfile*       IMAQ_STDCALL imaqROIProfile(const Image* image, const ROI* roi);
-IMAQ_FUNC int               IMAQ_STDCALL imaqROIToMask(Image* mask, const ROI* roi, int fillValue, const Image* imageModel, int* inSpace);
-IMAQ_FUNC int               IMAQ_STDCALL imaqTransformROI2(ROI* roi, const CoordinateSystem* baseSystem, const CoordinateSystem* newSystem);
-IMAQ_FUNC LabelToROIReport* IMAQ_STDCALL imaqLabelToROI(const Image* image, const unsigned int* labelsIn, unsigned int numLabelsIn, int maxNumVectors, int isExternelEdges);
-
-//============================================================================
-//  Morphology functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqGrayMorphology(Image* dest, Image* source, MorphologyMethod method, const StructuringElement* structuringElement);
-
-//============================================================================
-//  Classification functions
-//============================================================================
-IMAQ_FUNC int                            IMAQ_STDCALL imaqAddClassifierSample(Image* image, ClassifierSession* session, const ROI* roi, const char* sampleClass, double* featureVector, unsigned int vectorSize);
-IMAQ_FUNC ClassifierReportAdvanced*      IMAQ_STDCALL imaqAdvanceClassify(Image* image, const ClassifierSession* session, const ROI* roi, double* featureVector, unsigned int vectorSize);
-IMAQ_FUNC ClassifierReport*              IMAQ_STDCALL imaqClassify(Image* image, const ClassifierSession* session, const ROI* roi, double* featureVector, unsigned int vectorSize);
-IMAQ_FUNC ClassifierSession*             IMAQ_STDCALL imaqCreateClassifier(ClassifierType type);
-IMAQ_FUNC int                            IMAQ_STDCALL imaqDeleteClassifierSample(ClassifierSession* session, int index);
-IMAQ_FUNC ClassifierAccuracyReport*      IMAQ_STDCALL imaqGetClassifierAccuracy(const ClassifierSession* session);
-IMAQ_FUNC ClassifierSampleInfo*          IMAQ_STDCALL imaqGetClassifierSampleInfo(const ClassifierSession* session, int index, int* numSamples);
-IMAQ_FUNC int                            IMAQ_STDCALL imaqGetColorClassifierOptions(const ClassifierSession* session, ColorOptions* options);
-IMAQ_FUNC int                            IMAQ_STDCALL imaqGetNearestNeighborOptions(const ClassifierSession* session, NearestNeighborOptions* options);
-IMAQ_FUNC int                            IMAQ_STDCALL imaqGetParticleClassifierOptions2(const ClassifierSession* session, ParticleClassifierPreprocessingOptions2* preprocessingOptions, ParticleClassifierOptions* options);
-IMAQ_FUNC ClassifierSession*             IMAQ_STDCALL imaqReadClassifierFile(ClassifierSession* session, const char* fileName, ReadClassifierFileMode mode, ClassifierType* type, ClassifierEngineType* engine, String255 description);
-IMAQ_FUNC int                            IMAQ_STDCALL imaqRelabelClassifierSample(ClassifierSession* session, int index, const char* newClass);
-IMAQ_FUNC int                            IMAQ_STDCALL imaqSetParticleClassifierOptions2(ClassifierSession* session, const ParticleClassifierPreprocessingOptions2* preprocessingOptions, const ParticleClassifierOptions* options);
-IMAQ_FUNC int                            IMAQ_STDCALL imaqSetColorClassifierOptions(ClassifierSession* session, const ColorOptions* options);
-IMAQ_FUNC NearestNeighborTrainingReport* IMAQ_STDCALL imaqTrainNearestNeighborClassifier(ClassifierSession* session, const NearestNeighborOptions* options);
-IMAQ_FUNC int                            IMAQ_STDCALL imaqWriteClassifierFile(const ClassifierSession* session, const char* fileName, WriteClassifierFileMode mode, const String255 description);
-
-//============================================================================
-//  Measure Distances functions
-//============================================================================
-IMAQ_FUNC ClampMax2Report* IMAQ_STDCALL imaqClampMax2(Image* image, const ROI* roi, const CoordinateSystem* baseSystem, const CoordinateSystem* newSystem, const CurveOptions* curveSettings, const ClampSettings* clampSettings, const ClampOverlaySettings* clampOverlaySettings);
-
-//============================================================================
-//  Inspection functions
-//============================================================================
-IMAQ_FUNC int IMAQ_STDCALL imaqCompareGoldenTemplate(const Image* image, const Image* goldenTemplate, Image* brightDefects, Image* darkDefects, const InspectionAlignment* alignment, const InspectionOptions* options);
-IMAQ_FUNC int IMAQ_STDCALL imaqLearnGoldenTemplate(Image* goldenTemplate, PointFloat originOffset, const Image* mask);
-//============================================================================
-//  Obsolete functions
-//============================================================================
-IMAQ_FUNC int                    IMAQ_STDCALL imaqRotate(Image* dest, const Image* source, float angle, PixelValue fill, InterpolationMethod method);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqWritePNGFile(const Image* image, const char* fileName, unsigned int compressionSpeed, const RGBValue* colorTable);
-IMAQ_FUNC ParticleReport*        IMAQ_STDCALL imaqSelectParticles(const Image* image, const ParticleReport* reports, int reportCount, int rejectBorder, const SelectParticleCriteria* criteria, int criteriaCount, int* selectedCount);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqParticleFilter(Image* dest, Image* source, const ParticleFilterCriteria* criteria, int criteriaCount, int rejectMatches, int connectivity8);
-IMAQ_FUNC ParticleReport*        IMAQ_STDCALL imaqGetParticleInfo(Image* image, int connectivity8, ParticleInfoMode mode, int* reportCount);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqCalcCoeff(const Image* image, const ParticleReport* report, MeasurementValue parameter, float* coefficient);
-IMAQ_FUNC EdgeReport*            IMAQ_STDCALL imaqEdgeTool(const Image* image, const Point* points, int numPoints, const EdgeOptions* options, int* numEdges);
-IMAQ_FUNC CircleReport*          IMAQ_STDCALL imaqCircles(Image* dest, const Image* source, float minRadius, float maxRadius, int* numCircles);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqLabel(Image* dest, Image* source, int connectivity8, int* particleCount);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqFitEllipse(const PointFloat* points, int numPoints, BestEllipse* ellipse);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqFitCircle(const PointFloat* points, int numPoints, BestCircle* circle);
-IMAQ_FUNC Color                  IMAQ_STDCALL imaqChangeColorSpace(const Color* sourceColor, ColorMode sourceSpace, ColorMode destSpace);
-IMAQ_FUNC PatternMatch*          IMAQ_STDCALL imaqMatchPattern(const Image* image, Image* pattern, const MatchPatternOptions* options, Rect searchRect, int* numMatches);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqConvex(Image* dest, const Image* source);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqIsVisionInfoPresent(const Image* image, VisionInfoType type, int* present);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqLineGaugeTool(const Image* image, Point start, Point end, LineGaugeMethod method, const EdgeOptions* edgeOptions, const CoordinateTransform* reference, float* distance);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqBestCircle(const PointFloat* points, int numPoints, PointFloat* center, double* radius);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqSavePattern(const Image* pattern, const char* fileName);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqLoadPattern(Image* pattern, const char* fileName);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqTransformROI(ROI* roi, Point originStart, float angleStart, Point originFinal, float angleFinal);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqCoordinateReference(const Point* points, ReferenceMode mode, Point* origin, float* angle);
-IMAQ_FUNC ContourInfo*           IMAQ_STDCALL imaqGetContourInfo(const ROI* roi, ContourID id);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqSetWindowOverlay(int windowNumber, const Overlay* overlay);
-IMAQ_FUNC Overlay*               IMAQ_STDCALL imaqCreateOverlayFromROI(const ROI* roi);
-IMAQ_FUNC Overlay*               IMAQ_STDCALL imaqCreateOverlayFromMetafile(const void* metafile);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqSetCalibrationInfo(Image* image, CalibrationUnit unit, float xDistance, float yDistance);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqGetCalibrationInfo(const Image* image, CalibrationUnit* unit, float* xDistance, float* yDistance);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqConstructROI(const Image* image, ROI* roi, Tool initialTool, const ToolWindowOptions* tools, const ConstructROIOptions* options, int* okay);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqGetParticleClassifierOptions(const ClassifierSession* session, ParticleClassifierPreprocessingOptions* preprocessingOptions, ParticleClassifierOptions* options);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqZoomWindow(int windowNumber, int xZoom, int yZoom, Point center);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqGetWindowZoom(int windowNumber, int* xZoom, int* yZoom);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqParticleFilter3(Image* dest, Image* source, const ParticleFilterCriteria2* criteria, int criteriaCount, const ParticleFilterOptions* options, const ROI* roi, int* numParticles);
-IMAQ_FUNC ReadTextReport2*       IMAQ_STDCALL imaqReadText2(const Image* image, const CharSet* set, const ROI* roi, const ReadTextOptions* readOptions, const OCRProcessingOptions* processingOptions, const OCRSpacingOptions* spacingOptions);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqLearnPattern2(Image* image, LearningMode learningMode, LearnPatternAdvancedOptions* advancedOptions);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqConvolve(Image* dest, Image* source, const float* kernel, int matrixRows, int matrixCols, float normalize, const Image* mask);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqDivideConstant(Image* dest, const Image* source, PixelValue value);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqDivide(Image* dest, const Image* sourceA, const Image* sourceB);
-IMAQ_FUNC EdgeReport2*           IMAQ_STDCALL imaqEdgeTool3(const Image* image, const ROI* roi, EdgeProcess processType, const EdgeOptions2* edgeOptions);
-IMAQ_FUNC ConcentricRakeReport*  IMAQ_STDCALL imaqConcentricRake(const Image* image, const ROI* roi, ConcentricRakeDirection direction, EdgeProcess process, const RakeOptions* options);
-IMAQ_FUNC SpokeReport*           IMAQ_STDCALL imaqSpoke(const Image* image, const ROI* roi, SpokeDirection direction, EdgeProcess process, const SpokeOptions* options);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqLearnPattern(Image* image, LearningMode learningMode);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqLookup(Image* dest, const Image* source, const short* table, const Image* mask);
-IMAQ_FUNC PatternMatch*          IMAQ_STDCALL imaqMatchPattern2(const Image* image, const Image* pattern, const MatchPatternOptions* options, const MatchPatternAdvancedOptions* advancedOptions, Rect searchRect, int* numMatches);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqSetParticleClassifierOptions(ClassifierSession* session, const ParticleClassifierPreprocessingOptions* preprocessingOptions, const ParticleClassifierOptions* options);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqCopyCalibrationInfo(Image* dest, const Image* source);
-IMAQ_FUNC int                    IMAQ_STDCALL imaqParticleFilter2(Image* dest, Image* source, const ParticleFilterCriteria2* criteria, int criteriaCount, int rejectMatches, int connectivity8, int* numParticles);
-IMAQ_FUNC EdgeReport*            IMAQ_STDCALL imaqEdgeTool2(const Image* image, const Point* points, int numPoints, EdgeProcess process, const EdgeOptions* options, int* numEdges);
-IMAQ_FUNC ContourID              IMAQ_STDCALL imaqAddRotatedRectContour(ROI* roi, RotatedRect rect);
-IMAQ_FUNC Barcode2DInfo*         IMAQ_STDCALL imaqReadDataMatrixBarcode(const Image* image, const ROI* roi, const DataMatrixOptions* options, unsigned int* numBarcodes);
-IMAQ_FUNC LinearAverages*        IMAQ_STDCALL imaqLinearAverages(const Image* image, Rect rect);
-IMAQ_FUNC GeometricPatternMatch* IMAQ_STDCALL imaqMatchGeometricPattern(const Image* image, const Image* pattern, const CurveOptions* curveOptions, const MatchGeometricPatternOptions* matchOptions, const MatchGeometricPatternAdvancedOptions* advancedMatchOptions, const ROI* roi, int* numMatches);
-IMAQ_FUNC CharInfo*              IMAQ_STDCALL imaqGetCharInfo(const CharSet* set, int index);
-IMAQ_FUNC ReadTextReport*        IMAQ_STDCALL imaqReadText(const Image* image, const CharSet* set, const ROI* roi, const ReadTextOptions* readOptions, const OCRProcessingOptions* processingOptions, const OCRSpacingOptions* spacingOptions);
-IMAQ_FUNC ThresholdData*         IMAQ_STDCALL imaqAutoThreshold(Image* dest, Image* source, int numClasses, ThresholdMethod method);
-IMAQ_FUNC ColorHistogramReport*  IMAQ_STDCALL imaqColorHistogram(Image* image, int numClasses, ColorMode mode, const Image* mask);
-IMAQ_FUNC RakeReport*            IMAQ_STDCALL imaqRake(const Image* image, const ROI* roi, RakeDirection direction, EdgeProcess process, const RakeOptions* options);
-#endif
-
diff --git a/aos/externals/WPILib/WPILib/pcre.h b/aos/externals/WPILib/WPILib/pcre.h
deleted file mode 100644
index f8ddcbf..0000000
--- a/aos/externals/WPILib/WPILib/pcre.h
+++ /dev/null
@@ -1,338 +0,0 @@
-/*************************************************
-*       Perl-Compatible Regular Expressions      *
-*************************************************/
-
-/* This is the public header file for the PCRE library, to be #included by
-applications that call the PCRE functions.
-
-           Copyright (c) 1997-2008 University of Cambridge
-
------------------------------------------------------------------------------
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-    * Redistributions of source code must retain the above copyright notice,
-      this list of conditions and the following disclaimer.
-
-    * Redistributions in binary form must reproduce the above copyright
-      notice, this list of conditions and the following disclaimer in the
-      documentation and/or other materials provided with the distribution.
-
-    * Neither the name of the University of Cambridge nor the names of its
-      contributors may be used to endorse or promote products derived from
-      this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-*/
-
-#ifndef _PCRE_H
-#define _PCRE_H
-
-/* The current PCRE version information. */
-
-#define PCRE_MAJOR          7
-#define PCRE_MINOR          8
-#define PCRE_PRERELEASE     
-#define PCRE_DATE           2008-09-05
-
-/* When an application links to a PCRE DLL in Windows, the symbols that are
-imported have to be identified as such. When building PCRE, the appropriate
-export setting is defined in pcre_internal.h, which includes this file. So we
-don't change existing definitions of PCRE_EXP_DECL and PCRECPP_EXP_DECL. */
-
-/**
- * NI CHANGE
- *
- * We don't build the DLL version. We only build the static lib version.
- * Since we don't want to have to #define PCRE_STATIC in every component that
- * includes pcre.h, we're just going to go ahead and define it here.
- *
- * Adam Kemp, 12/15/2008
-*/
-#define PCRE_STATIC
-
-#if defined(_WIN32) && !defined(PCRE_STATIC)
-#  ifndef PCRE_EXP_DECL
-#    define PCRE_EXP_DECL  extern __declspec(dllimport)
-#  endif
-#  ifdef __cplusplus
-#    ifndef PCRECPP_EXP_DECL
-#      define PCRECPP_EXP_DECL  extern __declspec(dllimport)
-#    endif
-#    ifndef PCRECPP_EXP_DEFN
-#      define PCRECPP_EXP_DEFN  __declspec(dllimport)
-#    endif
-#  endif
-#endif
-
-/* By default, we use the standard "extern" declarations. */
-
-#ifndef PCRE_EXP_DECL
-#  ifdef __cplusplus
-#    define PCRE_EXP_DECL  extern "C"
-#  else
-#    define PCRE_EXP_DECL  extern
-#  endif
-#endif
-
-#ifdef __cplusplus
-#  ifndef PCRECPP_EXP_DECL
-#    define PCRECPP_EXP_DECL  extern
-#  endif
-#  ifndef PCRECPP_EXP_DEFN
-#    define PCRECPP_EXP_DEFN
-#  endif
-#endif
-
-/**
- * NI CHANGE
- *
- * We use __cdecl on win32 and the default calling convention elsewhere.
- *
- * Originall this macro did not appear in this file, but it was used in
- * internal headers. I consider it an oversight on the part of the pcre
- * developers that * it was not used in this file. If these functions use
- * specific calling conventions then their prototypes should include that
- * calling convention in case some other project uses a different default.
- *
- * Adam Kemp 12/15/2008
-*/
-#ifndef PCRE_CALL_CONVENTION
-#  if defined(_WIN32) /* 32-bit and 64-bit */
-#    define PCRE_CALL_CONVENTION __cdecl
-#  else
-#    define PCRE_CALL_CONVENTION
-#  endif
-#else
-#  define PCRE_CALL_CONVENTION
-#endif
-
-/* Have to include stdlib.h in order to ensure that size_t is defined;
-it is needed here for malloc. */
-
-#include <stdlib.h>
-
-/* Allow for C++ users */
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/* Options */
-
-#define PCRE_CASELESS           0x00000001
-#define PCRE_MULTILINE          0x00000002
-#define PCRE_DOTALL             0x00000004
-#define PCRE_EXTENDED           0x00000008
-#define PCRE_ANCHORED           0x00000010
-#define PCRE_DOLLAR_ENDONLY     0x00000020
-#define PCRE_EXTRA              0x00000040
-#define PCRE_NOTBOL             0x00000080
-#define PCRE_NOTEOL             0x00000100
-#define PCRE_UNGREEDY           0x00000200
-#define PCRE_NOTEMPTY           0x00000400
-#define PCRE_UTF8               0x00000800
-#define PCRE_NO_AUTO_CAPTURE    0x00001000
-#define PCRE_NO_UTF8_CHECK      0x00002000
-#define PCRE_AUTO_CALLOUT       0x00004000
-#define PCRE_PARTIAL            0x00008000
-#define PCRE_DFA_SHORTEST       0x00010000
-#define PCRE_DFA_RESTART        0x00020000
-#define PCRE_FIRSTLINE          0x00040000
-#define PCRE_DUPNAMES           0x00080000
-#define PCRE_NEWLINE_CR         0x00100000
-#define PCRE_NEWLINE_LF         0x00200000
-#define PCRE_NEWLINE_CRLF       0x00300000
-#define PCRE_NEWLINE_ANY        0x00400000
-#define PCRE_NEWLINE_ANYCRLF    0x00500000
-#define PCRE_BSR_ANYCRLF        0x00800000
-#define PCRE_BSR_UNICODE        0x01000000
-#define PCRE_JAVASCRIPT_COMPAT  0x02000000
-
-/* Exec-time and get/set-time error codes */
-
-#define PCRE_ERROR_NOMATCH         (-1)
-#define PCRE_ERROR_NULL            (-2)
-#define PCRE_ERROR_BADOPTION       (-3)
-#define PCRE_ERROR_BADMAGIC        (-4)
-#define PCRE_ERROR_UNKNOWN_OPCODE  (-5)
-#define PCRE_ERROR_UNKNOWN_NODE    (-5)  /* For backward compatibility */
-#define PCRE_ERROR_NOMEMORY        (-6)
-#define PCRE_ERROR_NOSUBSTRING     (-7)
-#define PCRE_ERROR_MATCHLIMIT      (-8)
-#define PCRE_ERROR_CALLOUT         (-9)  /* Never used by PCRE itself */
-#define PCRE_ERROR_BADUTF8        (-10)
-#define PCRE_ERROR_BADUTF8_OFFSET (-11)
-#define PCRE_ERROR_PARTIAL        (-12)
-#define PCRE_ERROR_BADPARTIAL     (-13)
-#define PCRE_ERROR_INTERNAL       (-14)
-#define PCRE_ERROR_BADCOUNT       (-15)
-#define PCRE_ERROR_DFA_UITEM      (-16)
-#define PCRE_ERROR_DFA_UCOND      (-17)
-#define PCRE_ERROR_DFA_UMLIMIT    (-18)
-#define PCRE_ERROR_DFA_WSSIZE     (-19)
-#define PCRE_ERROR_DFA_RECURSE    (-20)
-#define PCRE_ERROR_RECURSIONLIMIT (-21)
-#define PCRE_ERROR_NULLWSLIMIT    (-22)  /* No longer actually used */
-#define PCRE_ERROR_BADNEWLINE     (-23)
-
-/* Request types for pcre_fullinfo() */
-
-#define PCRE_INFO_OPTIONS            0
-#define PCRE_INFO_SIZE               1
-#define PCRE_INFO_CAPTURECOUNT       2
-#define PCRE_INFO_BACKREFMAX         3
-#define PCRE_INFO_FIRSTBYTE          4
-#define PCRE_INFO_FIRSTCHAR          4  /* For backwards compatibility */
-#define PCRE_INFO_FIRSTTABLE         5
-#define PCRE_INFO_LASTLITERAL        6
-#define PCRE_INFO_NAMEENTRYSIZE      7
-#define PCRE_INFO_NAMECOUNT          8
-#define PCRE_INFO_NAMETABLE          9
-#define PCRE_INFO_STUDYSIZE         10
-#define PCRE_INFO_DEFAULT_TABLES    11
-#define PCRE_INFO_OKPARTIAL         12
-#define PCRE_INFO_JCHANGED          13
-#define PCRE_INFO_HASCRORLF         14
-
-/* Request types for pcre_config(). Do not re-arrange, in order to remain
-compatible. */
-
-#define PCRE_CONFIG_UTF8                    0
-#define PCRE_CONFIG_NEWLINE                 1
-#define PCRE_CONFIG_LINK_SIZE               2
-#define PCRE_CONFIG_POSIX_MALLOC_THRESHOLD  3
-#define PCRE_CONFIG_MATCH_LIMIT             4
-#define PCRE_CONFIG_STACKRECURSE            5
-#define PCRE_CONFIG_UNICODE_PROPERTIES      6
-#define PCRE_CONFIG_MATCH_LIMIT_RECURSION   7
-#define PCRE_CONFIG_BSR                     8
-
-/* Bit flags for the pcre_extra structure. Do not re-arrange or redefine
-these bits, just add new ones on the end, in order to remain compatible. */
-
-#define PCRE_EXTRA_STUDY_DATA             0x0001
-#define PCRE_EXTRA_MATCH_LIMIT            0x0002
-#define PCRE_EXTRA_CALLOUT_DATA           0x0004
-#define PCRE_EXTRA_TABLES                 0x0008
-#define PCRE_EXTRA_MATCH_LIMIT_RECURSION  0x0010
-
-/* Types */
-
-struct real_pcre;                 /* declaration; the definition is private  */
-typedef struct real_pcre pcre;
-
-/* When PCRE is compiled as a C++ library, the subject pointer type can be
-replaced with a custom type. For conventional use, the public interface is a
-const char *. */
-
-#ifndef PCRE_SPTR
-#define PCRE_SPTR const char *
-#endif
-
-/* The structure for passing additional data to pcre_exec(). This is defined in
-such as way as to be extensible. Always add new fields at the end, in order to
-remain compatible. */
-
-typedef struct pcre_extra {
-  unsigned long int flags;        /* Bits for which fields are set */
-  void *study_data;               /* Opaque data from pcre_study() */
-  unsigned long int match_limit;  /* Maximum number of calls to match() */
-  void *callout_data;             /* Data passed back in callouts */
-  const unsigned char *tables;    /* Pointer to character tables */
-  unsigned long int match_limit_recursion; /* Max recursive calls to match() */
-} pcre_extra;
-
-/* The structure for passing out data via the pcre_callout_function. We use a
-structure so that new fields can be added on the end in future versions,
-without changing the API of the function, thereby allowing old clients to work
-without modification. */
-
-typedef struct pcre_callout_block {
-  int          version;           /* Identifies version of block */
-  /* ------------------------ Version 0 ------------------------------- */
-  int          callout_number;    /* Number compiled into pattern */
-  int         *offset_vector;     /* The offset vector */
-  PCRE_SPTR    subject;           /* The subject being matched */
-  int          subject_length;    /* The length of the subject */
-  int          start_match;       /* Offset to start of this match attempt */
-  int          current_position;  /* Where we currently are in the subject */
-  int          capture_top;       /* Max current capture */
-  int          capture_last;      /* Most recently closed capture */
-  void        *callout_data;      /* Data passed in with the call */
-  /* ------------------- Added for Version 1 -------------------------- */
-  int          pattern_position;  /* Offset to next item in the pattern */
-  int          next_item_length;  /* Length of next item in the pattern */
-  /* ------------------------------------------------------------------ */
-} pcre_callout_block;
-
-/* Indirection for store get and free functions. These can be set to
-alternative malloc/free functions if required. Special ones are used in the
-non-recursive case for "frames". There is also an optional callout function
-that is triggered by the (?) regex item. For Virtual Pascal, these definitions
-have to take another form. */
-
-#ifndef VPCOMPAT
-PCRE_EXP_DECL void* (PCRE_CALL_CONVENTION *pcre_malloc)(size_t);
-PCRE_EXP_DECL void  (PCRE_CALL_CONVENTION *pcre_free)(void *);
-PCRE_EXP_DECL void* (PCRE_CALL_CONVENTION *pcre_stack_malloc)(size_t);
-PCRE_EXP_DECL void  (PCRE_CALL_CONVENTION *pcre_stack_free)(void *);
-PCRE_EXP_DECL int   (PCRE_CALL_CONVENTION *pcre_callout)(pcre_callout_block *);
-#else   /* VPCOMPAT */
-PCRE_EXP_DECL void* PCRE_CALL_CONVENTION pcre_malloc(size_t);
-PCRE_EXP_DECL void  PCRE_CALL_CONVENTION pcre_free(void *);
-PCRE_EXP_DECL void* PCRE_CALL_CONVENTION pcre_stack_malloc(size_t);
-PCRE_EXP_DECL void  PCRE_CALL_CONVENTION pcre_stack_free(void *);
-PCRE_EXP_DECL int   PCRE_CALL_CONVENTION pcre_callout(pcre_callout_block *);
-#endif  /* VPCOMPAT */
-
-/* Exported PCRE functions */
-
-PCRE_EXP_DECL pcre* PCRE_CALL_CONVENTION pcre_compile(const char *, int, const char **, int *,
-                  const unsigned char *);
-PCRE_EXP_DECL pcre* PCRE_CALL_CONVENTION pcre_compile2(const char *, int, int *, const char **,
-                  int *, const unsigned char *);
-PCRE_EXP_DECL int  PCRE_CALL_CONVENTION pcre_config(int, void *);
-PCRE_EXP_DECL int  PCRE_CALL_CONVENTION pcre_copy_named_substring(const pcre *, const char *,
-                  int *, int, const char *, char *, int);
-PCRE_EXP_DECL int  PCRE_CALL_CONVENTION pcre_copy_substring(const char *, int *, int, int, char *,
-                  int);
-PCRE_EXP_DECL int  PCRE_CALL_CONVENTION pcre_dfa_exec(const pcre *, const pcre_extra *,
-                  const char *, int, int, int, int *, int , int *, int);
-PCRE_EXP_DECL int  PCRE_CALL_CONVENTION pcre_exec(const pcre *, const pcre_extra *, PCRE_SPTR,
-                   int, int, int, int *, int);
-PCRE_EXP_DECL void PCRE_CALL_CONVENTION pcre_free_substring(const char *);
-PCRE_EXP_DECL void PCRE_CALL_CONVENTION pcre_free_substring_list(const char **);
-PCRE_EXP_DECL int  PCRE_CALL_CONVENTION pcre_fullinfo(const pcre *, const pcre_extra *, int,
-                  void *);
-PCRE_EXP_DECL int  PCRE_CALL_CONVENTION pcre_get_named_substring(const pcre *, const char *,
-                  int *, int, const char *, const char **);
-PCRE_EXP_DECL int  PCRE_CALL_CONVENTION pcre_get_stringnumber(const pcre *, const char *);
-PCRE_EXP_DECL int  PCRE_CALL_CONVENTION pcre_get_stringtable_entries(const pcre *, const char *,
-                  char **, char **);
-PCRE_EXP_DECL int  PCRE_CALL_CONVENTION pcre_get_substring(const char *, int *, int, int,
-                  const char **);
-PCRE_EXP_DECL int  PCRE_CALL_CONVENTION pcre_get_substring_list(const char *, int *, int,
-                  const char ***);
-PCRE_EXP_DECL int  PCRE_CALL_CONVENTION pcre_info(const pcre *, int *, int *);
-PCRE_EXP_DECL const unsigned char* PCRE_CALL_CONVENTION pcre_maketables(void);
-PCRE_EXP_DECL int  PCRE_CALL_CONVENTION pcre_refcount(pcre *, int);
-PCRE_EXP_DECL pcre_extra* PCRE_CALL_CONVENTION pcre_study(const pcre *, int, const char **);
-PCRE_EXP_DECL const char* PCRE_CALL_CONVENTION pcre_version(void);
-
-#ifdef __cplusplus
-}  /* extern "C" */
-#endif
-
-#endif /* End of pcre.h */
diff --git a/aos/externals/WPILib/WPILib/tables/IRemote.h b/aos/externals/WPILib/WPILib/tables/IRemote.h
deleted file mode 100644
index ea5e98f..0000000
--- a/aos/externals/WPILib/WPILib/tables/IRemote.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * IRemote.h
- *
- *  Created on: Sep 22, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef IREMOTE_H_
-#define IREMOTE_H_
-
-class IRemote;
-
-
-#include "tables/IRemoteConnectionListener.h"
-
-
-
-/**
- * Represents an object that has a remote connection
- * 
- * @author Mitchell
- *
- */
-class IRemote {
-public:
-	/**
-	 * Register an object to listen for connection and disconnection events
-	 * 
-	 * @param listener the listener to be register
-	 * @param immediateNotify if the listener object should be notified of the current connection state
-	 */
-	virtual void AddConnectionListener(IRemoteConnectionListener* listener, bool immediateNotify) = 0;
-
-	/**
-	 * Unregister a listener from connection events
-	 * 
-	 * @param listener the listener to be unregistered
-	 */
-	virtual void RemoveConnectionListener(IRemoteConnectionListener* listener) = 0;
-	
-	/**
-	 * Get the current state of the objects connection
-	 * @return the current connection state
-	 */
-	virtual bool IsConnected() = 0;
-	
-	/**
-	 * If the object is acting as a server
-	 * @return if the object is a server
-	 */
-	virtual bool IsServer() = 0;
-};
-
-
-#endif /* IREMOTE_H_ */
diff --git a/aos/externals/WPILib/WPILib/tables/IRemoteConnectionListener.h b/aos/externals/WPILib/WPILib/tables/IRemoteConnectionListener.h
deleted file mode 100644
index cf7c583..0000000
--- a/aos/externals/WPILib/WPILib/tables/IRemoteConnectionListener.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * IRemoteConnectionListener.h
- *
- *  Created on: Sep 22, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef IREMOTECONNECTIONLISTENER_H_
-#define IREMOTECONNECTIONLISTENER_H_
-
-
-class IRemoteConnectionListener;
-
-#include "tables/IRemote.h"
-
-
-
-/**
- * A listener that listens for connection changes in a {@link IRemote} object
- * 
- * @author Mitchell
- *
- */
-class IRemoteConnectionListener {
-public:
-	/**
-	 * Called when an IRemote is connected
-	 * @param remote the object that connected
-	 */
-	virtual void Connected(IRemote* remote) = 0;
-	/**
-	 * Called when an IRemote is disconnected
-	 * @param remote the object that disconnected
-	 */
-	virtual void Disconnected(IRemote* remote) = 0;
-};
-
-
-
-#endif /* IREMOTECONNECTIONLISTENER_H_ */
diff --git a/aos/externals/WPILib/WPILib/tables/ITable.h b/aos/externals/WPILib/WPILib/tables/ITable.h
deleted file mode 100644
index 93cb4b4..0000000
--- a/aos/externals/WPILib/WPILib/tables/ITable.h
+++ /dev/null
@@ -1,194 +0,0 @@
-/*
- * ITable.h
- *
- *  Created on: Sep 19, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef ITABLE_H_
-#define ITABLE_H_
-
-
-class ITable;
-union EntryValue{
-	void* ptr;
-	bool b;
-	double f;
-};
-typedef union EntryValue EntryValue;
-
-
-#include <string>
-#include "networktables2/type/ComplexData.h"
-#include "tables/ITableListener.h"
-
-
-class ITable {
-public:
-
-	/**
-	 * Determines whether the given key is in this table.
-	 * 
-	 * @param key the key to search for
-	 * @return true if the table as a value assigned to the given key
-	 */
-	virtual bool ContainsKey(std::string key) = 0;
-
-	/**
-	 * Determines whether there exists a non-empty subtable for this key
-	 * in this table.
-	 * 
-	 * @param key the key to search for
-	 * @return true if there is a subtable with the key which contains at least one key/subtable of its own
-	 */
-	virtual bool ContainsSubTable(std::string key) = 0;
-	
-    /**
-     * Gets the subtable in this table for the given name.
-     * 
-     * @param key the name of the table relative to this one
-     * @return a sub table relative to this one
-     */
-	virtual ITable* GetSubTable(std::string key) = 0;
-	
-    
-	/**
-	 * Gets the value associated with a key as an object
-	 * 
-	 * @param key the key of the value to look up
-	 * @return the value associated with the given key
-	 * @throws TableKeyNotDefinedException if there is no value associated with the given key
-	 */
-    virtual EntryValue GetValue(std::string key) = 0;
-	/**
-	 * Put a value in the table
-	 * 
-	 * @param key the key to be assigned to
-	 * @param value the value that will be assigned
-	 * @throws IllegalArgumentException when the value is not supported by the table
-	 */
-	virtual void PutValue(std::string key, ComplexData& value) = 0;
-        
-	virtual void RetrieveValue(std::string key, ComplexData& externalValue) = 0;
-	
-	
-
-	/**
-	 * Put a number in the table
-	 * 
-	 * @param key the key to be assigned to
-	 * @param value the value that will be assigned
-	 */
-    virtual void PutNumber(std::string key, double value) = 0;
-	/**
-	 * Gets the number associated with the given name.
-	 * 
-	 * @param key the key to look up
-	 * @return the value associated with the given key 
-	 * @throws TableKeyNotDefinedException if there is no value associated with the given key
-	 */
-	virtual double GetNumber(std::string key) = 0;
-	/**
-	 * Gets the number associated with the given name.
-	 * 
-	 * @param key the key to look up
-	 * @param defaultValue the value to be returned if no value is found
-	 * @return the value associated with the given key or the given default value if there is no value associated with the key
-	 */
-	virtual double GetNumber(std::string key, double defaultValue) = 0;
-
-	/**
-	 * Put a std::string& in the table
-	 * 
-	 * @param key the key to be assigned to
-	 * @param value the value that will be assigned
-	 */
-	virtual void PutString(std::string key, std::string value) = 0;
-	
-	/**
-	 * Gets the string associated with the given name.
-	 * 
-	 * @param key the key to look up
-	 * @return the value associated with the given key 
-	 * @throws TableKeyNotDefinedException if there is no value associated with the given key
-	 */
-	virtual std::string GetString(std::string key) = 0;
-	
-	/**
-	 * Gets the string associated with the given name.
-	 * 
-	 * @param key the key to look up
-	 * @param defaultValue the value to be returned if no value is found
-	 * @return the value associated with the given key or the given default value if there is no value associated with the key
-	 */
-	virtual std::string GetString(std::string key, std::string defaultValue) = 0;
-
-	/**
-	 * Put a boolean in the table
-	 * 
-	 * @param key the key to be assigned to
-	 * @param value the value that will be assigned
-	 */
-	virtual void PutBoolean(std::string key, bool value) = 0;
-	
-	/**
-	 * Gets the boolean associated with the given name.
-	 * 
-	 * @param key the key to look up
-	 * @return the value associated with the given key 
-	 * @throws TableKeyNotDefinedException if there is no value associated with the given key
-	 */
-	virtual bool GetBoolean(std::string key) = 0;
-	
-	/**
-	 * Gets the boolean associated with the given name.
-	 * 
-	 * @param key the key to look up
-	 * @param defaultValue the value to be returned if no value is found
-	 * @return the value associated with the given key or the given default value if there is no value associated with the key
-	 */
-	virtual bool GetBoolean(std::string key, bool defaultValue) = 0;
-	
-	/**
-	 * Add a listener for changes to the table
-	 * 
-	 * @param listener the listener to add
-	 */
-	virtual void AddTableListener(ITableListener* listener) = 0;
-	
-	/**
-	 * Add a listener for changes to the table
-	 * 
-	 * @param listener the listener to add
-	 * @param immediateNotify if true then this listener will be notified of all current entries (marked as new)
-	 */
-	virtual void AddTableListener(ITableListener* listener, bool immediateNotify) = 0;
-	
-	/**
-	 * Add a listener for changes to a specific key the table
-	 * 
-	 * @param key the key to listen for
-	 * @param listener the listener to add
-	 * @param immediateNotify if true then this listener will be notified of all current entries (marked as new)
-	 */
-	virtual void AddTableListener(std::string key, ITableListener* listener, bool immediateNotify) = 0;
-	
-	/**
-	 * This will immediately notify the listener of all current sub tables
-	 * 
-	 * @param listener
-	 */
-	virtual void AddSubTableListener(ITableListener* listener) = 0;
-	
-	/**
-	 * Remove a listener from receiving table events
-	 * 
-	 * @param listener the listener to be removed
-	 */
-	virtual void RemoveTableListener(ITableListener* listener) = 0;
-        
-
-};
-
-
-#endif /* ITABLE_H_ */
diff --git a/aos/externals/WPILib/WPILib/tables/ITableListener.h b/aos/externals/WPILib/WPILib/tables/ITableListener.h
deleted file mode 100644
index af114c3..0000000
--- a/aos/externals/WPILib/WPILib/tables/ITableListener.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * ITableListener.h
- *
- *  Created on: Sep 19, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef ITABLELISTENER_H_
-#define ITABLELISTENER_H_
-
-
-class ITableListener;
-
-
-#include "tables/ITable.h"
-
-
-
-
-/**
- * A listener that listens to changes in values in a {@link ITable}
- * 
- * @author Mitchell
- *
- */
-class ITableListener {
- public:
-  virtual ~ITableListener(){};
-    /**
-     * Called when a key-value pair is changed in a {@link ITable}
-     * WARNING: If a new key-value is put in this method value changed will immediatly be called which could lead to recursive code
-     * @param source the table the key-value pair exists in
-     * @param key the key associated with the value that changed
-     * @param value the new value
-     * @param isNew true if the key did not previously exist in the table, otherwise it is false
-     */
-    virtual void ValueChanged(ITable* source, const std::string& key, EntryValue value, bool isNew) = 0;
-};
-
-
-
-#endif /* ITABLELISTENER_H_ */
diff --git a/aos/externals/WPILib/WPILib/tables/ITableProvider.h b/aos/externals/WPILib/WPILib/tables/ITableProvider.h
deleted file mode 100644
index 1f979d3..0000000
--- a/aos/externals/WPILib/WPILib/tables/ITableProvider.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * ITableProvider.h
- *
- *  Created on: Sep 22, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef ITABLEPROVIDER_H_
-#define ITABLEPROVIDER_H_
-
-
-class ITableProvider;
-
-#include "tables/ITable.h"
-
-
-/**
- * A simple interface to provide tables
- * 
- * @author Mitchell
- *
- */
-class ITableProvider {
-public:
-	/**
-	 * Get a table by name
-	 * @param name the name of the table
-	 * @return a Table with the given name
-	 */
-	virtual ITable* GetTable(std::string name) = 0;
-};
-
-#endif /* ITABLEPROVIDER_H_ */
diff --git a/aos/externals/WPILib/WPILib/tables/TableKeyNotDefinedException.cpp b/aos/externals/WPILib/WPILib/tables/TableKeyNotDefinedException.cpp
deleted file mode 100644
index 2a8ffcc..0000000
--- a/aos/externals/WPILib/WPILib/tables/TableKeyNotDefinedException.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * TableKeyNotDefinedException.cpp
- *
- *  Created on: Sep 22, 2012
- *      Author: Mitchell Wills
- */
-
-#include "tables/TableKeyNotDefinedException.h"
-#include <stdlib.h>
-#include <cstring>
-
-
-#define MESSAGE_PREFIX "Unkown Table Key: "
-TableKeyNotDefinedException::TableKeyNotDefinedException(const std::string key):
-msg(MESSAGE_PREFIX + key){
-
-}
-
-const char* TableKeyNotDefinedException::what(){
-	return msg.c_str();
-}
-
-TableKeyNotDefinedException::~TableKeyNotDefinedException() throw(){
-}
diff --git a/aos/externals/WPILib/WPILib/tables/TableKeyNotDefinedException.h b/aos/externals/WPILib/WPILib/tables/TableKeyNotDefinedException.h
deleted file mode 100644
index 510cd8d..0000000
--- a/aos/externals/WPILib/WPILib/tables/TableKeyNotDefinedException.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * TableKeyNotDefinedException.h
- *
- *  Created on: Sep 22, 2012
- *      Author: Mitchell Wills
- */
-
-#ifndef TABLEKEYNOTDEFINEDEXCEPTION_H_
-#define TABLEKEYNOTDEFINEDEXCEPTION_H_
-
-
-class TableKeyNotDefinedException;
-
-
-#include <exception>
-#include <string>
-
-
-/**
- * An exception throw when the lookup a a key-value fails in a {@link ITable}
- * 
- * @author Mitchell
- *
- */
-class TableKeyNotDefinedException : public std::exception {
-public:
-	/**
-	 * @param key the key that was not defined in the table
-	 */
-	TableKeyNotDefinedException(const std::string key);
-	~TableKeyNotDefinedException() throw();
-	const char* what();
-private:
-	const std::string msg;
-};
-
-
-
-
-#endif /* TABLEKEYNOTDEFINEDEXCEPTION_H_ */
diff --git a/aos/externals/WPILib/WPILib/visa/Makefile b/aos/externals/WPILib/WPILib/visa/Makefile
deleted file mode 100644
index bc19164..0000000
--- a/aos/externals/WPILib/WPILib/visa/Makefile
+++ /dev/null
@@ -1,2184 +0,0 @@
-# Wind River Workbench generated Makefile.
-# Do not edit!!!
-#
-# The file ".wrmakefile" is the template used by the Wind River Workbench to
-# generate the makefiles of this project. Add user-specific build targets and
-# make rules only(!) in this project's ".wrmakefile" file. These will then be
-# automatically dumped into the makefiles.
-
-WIND_HOME := $(subst \,/,$(WIND_HOME))
-WIND_BASE := $(subst \,/,$(WIND_BASE))
-WIND_USR := $(subst \,/,$(WIND_USR))
-
-all : pre_build main_all post_build
-
-_clean ::
-	@echo "make: removing targets and objects of `pwd`"
-
-TRACE=0
-TRACEON=$(TRACE:0=@)
-TRACE_FLAG=$(TRACEON:1=)
-
-MAKEFILE := Makefile
-
-BUILD_SPEC = PPC603gnu
-DEBUG_MODE = 1
-SRC_DIR := .
-BUILD_ROOT_DIR := 
-PRJ_ROOT_DIR := C:/windriver/workspace/WPILib
-WS_ROOT_DIR := C:/windriver/workspace
-
-ALL_BUILD_SPECS := PPC32diab PPC32gnu PPC32sfdiab PPC32sfgnu \
-	 PPC403diab PPC403gnu PPC405diab PPC405gnu \
-	 PPC405sfdiab PPC405sfgnu PPC440diab PPC440gnu \
-	 PPC440sfdiab PPC440sfgnu PPC603diab PPC603gnu \
-	 PPC604diab PPC604gnu PPC85XXdiab PPC85XXgnu \
-	 PPC85XXsfdiab PPC85XXsfgnu PPC860sfdiab PPC860sfgnu \
-	 SIMLINUXdiab SIMLINUXgnu SIMNTdiab SIMNTgnu \
-	 SIMSPARCSOLARISdiab SIMSPARCSOLARISgnu
-ENABLED_BUILD_SPECS := PPC603gnu
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32diab_DEBUG
-else
-OBJ_DIR := PPC32diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32gnu_DEBUG
-else
-OBJ_DIR := PPC32gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32sfdiab_DEBUG
-else
-OBJ_DIR := PPC32sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC32sfgnu_DEBUG
-else
-OBJ_DIR := PPC32sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC403diab_DEBUG
-else
-OBJ_DIR := PPC403diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC403gnu_DEBUG
-else
-OBJ_DIR := PPC403gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405diab_DEBUG
-else
-OBJ_DIR := PPC405diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405gnu_DEBUG
-else
-OBJ_DIR := PPC405gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405sfdiab_DEBUG
-else
-OBJ_DIR := PPC405sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC405sfgnu_DEBUG
-else
-OBJ_DIR := PPC405sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440diab_DEBUG
-else
-OBJ_DIR := PPC440diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440gnu_DEBUG
-else
-OBJ_DIR := PPC440gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440sfdiab_DEBUG
-else
-OBJ_DIR := PPC440sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC440sfgnu_DEBUG
-else
-OBJ_DIR := PPC440sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC603diab_DEBUG
-else
-OBJ_DIR := PPC603diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC603gnu_DEBUG
-else
-OBJ_DIR := PPC603gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC604diab_DEBUG
-else
-OBJ_DIR := PPC604diab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC604gnu_DEBUG
-else
-OBJ_DIR := PPC604gnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXdiab_DEBUG
-else
-OBJ_DIR := PPC85XXdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXgnu_DEBUG
-else
-OBJ_DIR := PPC85XXgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXsfdiab_DEBUG
-else
-OBJ_DIR := PPC85XXsfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC85XXsfgnu_DEBUG
-else
-OBJ_DIR := PPC85XXsfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC860sfdiab_DEBUG
-else
-OBJ_DIR := PPC860sfdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := PPC860sfgnu_DEBUG
-else
-OBJ_DIR := PPC860sfgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMLINUXdiab_DEBUG
-else
-OBJ_DIR := SIMLINUXdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMLINUXgnu_DEBUG
-else
-OBJ_DIR := SIMLINUXgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMNTdiab_DEBUG
-else
-OBJ_DIR := SIMNTdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMNTgnu_DEBUG
-else
-OBJ_DIR := SIMNTgnu
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMSPARCSOLARISdiab_DEBUG
-else
-OBJ_DIR := SIMSPARCSOLARISdiab
-endif
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-OBJ_DIR := SIMSPARCSOLARISgnu_DEBUG
-else
-OBJ_DIR := SIMSPARCSOLARISgnu
-endif
-endif
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-SUBDIRS :=
-OBJECTS :=
-
-PROJECT_TARGETS := $(OBJECTS)
-
-SUB_OBJECTS :=
-SUB_TARGETS :=
-endif
-
-PROJECT_TYPE = DKM
-DEFINES = 
-EXPAND_DBG = 0
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCFH:vxworks63 -Xstmw-slow -DPPC32_fp60x
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC32gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mhard-float -mstrict-align -mno-implicit-fp -DPPC32_fp60x
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCFS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC32
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -msoft-float -mstrict-align
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC403diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC403
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC403FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC403gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC403
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=403 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC405FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=405 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC405FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC405
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=405 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC440FH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=440 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC440FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC440
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=440 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC603diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC603
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC603FH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC603gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC603
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=603 -mstrict-align -mno-implicit-fp -mlongcall
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I.. -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC604diab)
-VX_CPU_FAMILY = ppc
-CPU = PPC604
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC604FH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC604gnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC604
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=604 -mstrict-align -mno-implicit-fp
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCE500FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=8540 -mstrict-align -msoft-float -mabi=no-spe
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPCE500FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC85XX
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=8540 -mstrict-align -msoft-float -mabi=no-spe
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-VX_CPU_FAMILY = ppc
-CPU = PPC860
-TOOL_FAMILY = diab
-TOOL = sfdiab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tPPC860FS:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-VX_CPU_FAMILY = ppc
-CPU = PPC860
-TOOL_FAMILY = gnu
-TOOL = sfgnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mcpu=860 -mstrict-align -msoft-float
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-VX_CPU_FAMILY = simlinux
-CPU = SIMLINUX
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tX86LH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-VX_CPU_FAMILY = simlinux
-CPU = SIMLINUX
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mtune=i486 -march=i486
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-VX_CPU_FAMILY = simpc
-CPU = SIMNT
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tX86LH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-VX_CPU_FAMILY = simpc
-CPU = SIMNT
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = -mtune=i486 -march=i486
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-VX_CPU_FAMILY = simso
-CPU = SIMSPARCSOLARIS
-TOOL_FAMILY = diab
-TOOL = diab
-TOOL_PATH = 
-CC_ARCH_SPEC = -tSPARCFH:vxworks63
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-VX_CPU_FAMILY = simso
-CPU = SIMSPARCSOLARIS
-TOOL_FAMILY = gnu
-TOOL = gnu
-TOOL_PATH = 
-CC_ARCH_SPEC = 
-LIBPATH = 
-LIBS = 
-
-IDE_INCLUDES = -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip 
-
-IDE_LIBRARIES = 
-endif
-
-
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C-Compiler = -g
-else
-DEBUGFLAGS_C-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -ansi  -Wall  -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG) $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL -D'SVN_REV="$(shell svnversion -n ..)"' $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations  -Xmake-dependency=0xd $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_C++-Compiler = -g
-else
-DEBUGFLAGS_C++-Compiler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.C
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cxx
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cc
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_C++-Compiler) $(CC_ARCH_SPEC) -ansi -Wall  -MD -MP $(ADDED_C++FLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xstsw-slow -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC32sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC403gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC405sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC440sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC603gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604diab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC604gnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC85XXsfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),PPC860sfgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccppc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space -Wa,-Xmnem-mit -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMLINUXgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space -Wa,-Xmnem-mit -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMNTgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -nostdlib -fno-builtin -fno-defer-pop
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccpentium $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISdiab)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -XO -Xsize-opt
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xpreprocess-assembly -Xcpp-no-space  -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-ifeq ($(BUILD_SPEC),SIMSPARCSOLARISgnu)
-ifeq ($(DEBUG_MODE),1)
-DEBUGFLAGS_Assembler = -g
-else
-DEBUGFLAGS_Assembler = -O2 -fstrength-reduce -fno-builtin
-endif
-$(OBJ_DIR)/%.o : $(SRC_DIR)/%.s
-	$(TRACE_FLAG)echo "building $@"; $(TOOL_PATH)ccsparc $(DEBUGFLAGS_Assembler) $(CC_ARCH_SPEC) -ansi   -xassembler-with-cpp -MD -MP $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL   $(DEFINES) -o "$@" -c "$<"
-
-endif
-
-
-
-
-
--include $(PRJ_ROOT_DIR)/*.makefile
-
--include *.makefile
-
-main_all : external_build $(PROJECT_TARGETS)
-	@echo "make: built targets of `pwd`"
-
-# entry point for extending the build
-external_build ::
-	@echo ""
-
-# main entry point for pre processing prior to the build
-pre_build :: $(PRE_BUILD_STEP) generate_sources
-	@echo ""
-
-# entry point for generating sources prior to the build
-generate_sources ::
-	@echo ""
-
-# main entry point for post processing after the build
-post_build :: $(POST_BUILD_STEP) deploy_output
-	@echo ""
-
-# entry point for deploying output after the build
-deploy_output ::
-	@echo ""
-
-clean :: external_clean $(CLEAN_STEP) _clean
-
-# entry point for extending the build clean
-external_clean ::
-	@echo ""
diff --git a/aos/externals/WPILib/WPILib/visa/visa.h b/aos/externals/WPILib/WPILib/visa/visa.h
deleted file mode 100644
index 3c6ad30..0000000
--- a/aos/externals/WPILib/WPILib/visa/visa.h
+++ /dev/null
@@ -1,1064 +0,0 @@
-/*---------------------------------------------------------------------------*/
-/* Distributed by IVI Foundation Inc.                                        */
-/* Contains National Instruments extensions.                                 */
-/* Do not modify the contents of this file.                                  */
-/*---------------------------------------------------------------------------*/
-/*                                                                           */
-/* Title   : VISA.H                                                          */
-/* Date    : 10-09-2006                                                      */
-/* Purpose : Include file for the VISA Library 4.0 specification             */
-/*                                                                           */
-/*---------------------------------------------------------------------------*/
-/* When using NI-VISA extensions, you must link with the VISA library that   */
-/* comes with NI-VISA.  Currently, the extensions provided by NI-VISA are:   */
-/*                                                                           */
-/* PXI (Compact PCI eXtensions for Instrumentation) and PCI support.  To use */
-/* this, you must define the macro NIVISA_PXI before including this header.  */
-/* You must also create an INF file with the VISA Driver Development Wizard. */
-/*                                                                           */
-/* A fast set of macros for viPeekXX/viPokeXX that guarantees binary         */
-/* compatibility with other implementations of VISA.  To use this, you must  */
-/* define the macro NIVISA_PEEKPOKE before including this header.            */
-/*                                                                           */
-/* Support for USB devices that do not conform to a specific class.  To use  */
-/* this, you must define the macro NIVISA_USB before including this header.  */
-/* You must also create an INF file with the VISA Driver Development Wizard. */
-/*---------------------------------------------------------------------------*/
-
-#ifndef __VISA_HEADER__
-#define __VISA_HEADER__
-
-#include <stdarg.h>
-
-#if !defined(__VISATYPE_HEADER__)
-#include "visatype.h"
-#endif
-
-#define VI_SPEC_VERSION     (0x00400000UL)
-
-#if defined(__cplusplus) || defined(__cplusplus__)
-   extern "C" {
-#endif
-
-#if defined(_CVI_)
-#pragma EnableLibraryRuntimeChecking
-#endif
-
-/*- VISA Types --------------------------------------------------------------*/
-
-typedef ViObject             ViEvent;
-typedef ViEvent      _VI_PTR ViPEvent;
-typedef ViObject             ViFindList;
-typedef ViFindList   _VI_PTR ViPFindList;
-
-#if defined(_VI_INT64_UINT64_DEFINED) && defined(_VISA_ENV_IS_64_BIT)
-typedef ViUInt64             ViBusAddress;
-typedef ViUInt64             ViBusSize;
-typedef ViUInt64             ViAttrState;
-#else
-typedef ViUInt32             ViBusAddress;
-typedef ViUInt32             ViBusSize;
-typedef ViUInt32             ViAttrState;
-#endif
-
-#if defined(_VI_INT64_UINT64_DEFINED)
-typedef ViUInt64             ViBusAddress64;
-typedef ViBusAddress64 _VI_PTR ViPBusAddress64;
-#endif
-
-typedef ViUInt32             ViEventType;
-typedef ViEventType  _VI_PTR ViPEventType;
-typedef ViEventType  _VI_PTR ViAEventType;
-typedef void         _VI_PTR ViPAttrState;
-typedef ViAttr       _VI_PTR ViPAttr;
-typedef ViAttr       _VI_PTR ViAAttr;
-
-typedef ViString             ViKeyId;
-typedef ViPString            ViPKeyId;
-typedef ViUInt32             ViJobId;
-typedef ViJobId      _VI_PTR ViPJobId;
-typedef ViUInt32             ViAccessMode;
-typedef ViAccessMode _VI_PTR ViPAccessMode;
-typedef ViBusAddress _VI_PTR ViPBusAddress;
-typedef ViUInt32             ViEventFilter;
-
-typedef va_list              ViVAList;
-
-typedef ViStatus (_VI_FUNCH _VI_PTR ViHndlr)
-   (ViSession vi, ViEventType eventType, ViEvent event, ViAddr userHandle);
-
-/*- Resource Manager Functions and Operations -------------------------------*/
-
-ViStatus _VI_FUNC  viOpenDefaultRM (ViPSession vi);
-ViStatus _VI_FUNC  viFindRsrc      (ViSession sesn, ViString expr, ViPFindList vi,
-                                    ViPUInt32 retCnt, ViChar _VI_FAR desc[]);
-ViStatus _VI_FUNC  viFindNext      (ViFindList vi, ViChar _VI_FAR desc[]);
-ViStatus _VI_FUNC  viParseRsrc     (ViSession rmSesn, ViRsrc rsrcName,
-                                    ViPUInt16 intfType, ViPUInt16 intfNum);
-ViStatus _VI_FUNC  viParseRsrcEx   (ViSession rmSesn, ViRsrc rsrcName, ViPUInt16 intfType,
-                                    ViPUInt16 intfNum, ViChar _VI_FAR rsrcClass[],
-                                    ViChar _VI_FAR expandedUnaliasedName[],
-                                    ViChar _VI_FAR aliasIfExists[]);
-ViStatus _VI_FUNC  viOpen          (ViSession sesn, ViRsrc name, ViAccessMode mode,
-                                    ViUInt32 timeout, ViPSession vi);
-
-/*- Resource Template Operations --------------------------------------------*/
-
-ViStatus _VI_FUNC  viClose         (ViObject vi);
-ViStatus _VI_FUNC  viSetAttribute  (ViObject vi, ViAttr attrName, ViAttrState attrValue);
-ViStatus _VI_FUNC  viGetAttribute  (ViObject vi, ViAttr attrName, void _VI_PTR attrValue);
-ViStatus _VI_FUNC  viStatusDesc    (ViObject vi, ViStatus status, ViChar _VI_FAR desc[]);
-ViStatus _VI_FUNC  viTerminate     (ViObject vi, ViUInt16 degree, ViJobId jobId);
-
-ViStatus _VI_FUNC  viLock          (ViSession vi, ViAccessMode lockType, ViUInt32 timeout,
-                                    ViKeyId requestedKey, ViChar _VI_FAR accessKey[]);
-ViStatus _VI_FUNC  viUnlock        (ViSession vi);
-ViStatus _VI_FUNC  viEnableEvent   (ViSession vi, ViEventType eventType, ViUInt16 mechanism,
-                                    ViEventFilter context);
-ViStatus _VI_FUNC  viDisableEvent  (ViSession vi, ViEventType eventType, ViUInt16 mechanism);
-ViStatus _VI_FUNC  viDiscardEvents (ViSession vi, ViEventType eventType, ViUInt16 mechanism);
-ViStatus _VI_FUNC  viWaitOnEvent   (ViSession vi, ViEventType inEventType, ViUInt32 timeout,
-                                    ViPEventType outEventType, ViPEvent outContext);
-ViStatus _VI_FUNC  viInstallHandler(ViSession vi, ViEventType eventType, ViHndlr handler,
-                                    ViAddr userHandle);
-ViStatus _VI_FUNC  viUninstallHandler(ViSession vi, ViEventType eventType, ViHndlr handler,
-                                      ViAddr userHandle);
-
-/*- Basic I/O Operations ----------------------------------------------------*/
-
-ViStatus _VI_FUNC  viRead          (ViSession vi, ViPBuf buf, ViUInt32 cnt, ViPUInt32 retCnt);
-ViStatus _VI_FUNC  viReadAsync     (ViSession vi, ViPBuf buf, ViUInt32 cnt, ViPJobId  jobId);
-ViStatus _VI_FUNC  viReadToFile    (ViSession vi, ViConstString filename, ViUInt32 cnt,
-                                    ViPUInt32 retCnt);
-ViStatus _VI_FUNC  viWrite         (ViSession vi, ViBuf  buf, ViUInt32 cnt, ViPUInt32 retCnt);
-ViStatus _VI_FUNC  viWriteAsync    (ViSession vi, ViBuf  buf, ViUInt32 cnt, ViPJobId  jobId);
-ViStatus _VI_FUNC  viWriteFromFile (ViSession vi, ViConstString filename, ViUInt32 cnt,
-                                    ViPUInt32 retCnt);
-ViStatus _VI_FUNC  viAssertTrigger (ViSession vi, ViUInt16 protocol);
-ViStatus _VI_FUNC  viReadSTB       (ViSession vi, ViPUInt16 status);
-ViStatus _VI_FUNC  viClear         (ViSession vi);
-
-/*- Formatted and Buffered I/O Operations -----------------------------------*/
-
-ViStatus _VI_FUNC  viSetBuf        (ViSession vi, ViUInt16 mask, ViUInt32 size);
-ViStatus _VI_FUNC  viFlush         (ViSession vi, ViUInt16 mask);
-
-ViStatus _VI_FUNC  viBufWrite      (ViSession vi, ViBuf  buf, ViUInt32 cnt, ViPUInt32 retCnt);
-ViStatus _VI_FUNC  viBufRead       (ViSession vi, ViPBuf buf, ViUInt32 cnt, ViPUInt32 retCnt);
-
-ViStatus _VI_FUNCC viPrintf        (ViSession vi, ViString writeFmt, ...);
-ViStatus _VI_FUNC  viVPrintf       (ViSession vi, ViString writeFmt, ViVAList params);
-ViStatus _VI_FUNCC viSPrintf       (ViSession vi, ViPBuf buf, ViString writeFmt, ...);
-ViStatus _VI_FUNC  viVSPrintf      (ViSession vi, ViPBuf buf, ViString writeFmt,
-                                    ViVAList parms);
-
-ViStatus _VI_FUNCC viScanf         (ViSession vi, ViString readFmt, ...);
-ViStatus _VI_FUNC  viVScanf        (ViSession vi, ViString readFmt, ViVAList params);
-ViStatus _VI_FUNCC viSScanf        (ViSession vi, ViBuf buf, ViString readFmt, ...);
-ViStatus _VI_FUNC  viVSScanf       (ViSession vi, ViBuf buf, ViString readFmt,
-                                    ViVAList parms);
-
-ViStatus _VI_FUNCC viQueryf        (ViSession vi, ViString writeFmt, ViString readFmt, ...);
-ViStatus _VI_FUNC  viVQueryf       (ViSession vi, ViString writeFmt, ViString readFmt, 
-                                    ViVAList params);
-
-/*- Memory I/O Operations ---------------------------------------------------*/
-
-ViStatus _VI_FUNC  viIn8           (ViSession vi, ViUInt16 space,
-                                    ViBusAddress offset, ViPUInt8  val8);
-ViStatus _VI_FUNC  viOut8          (ViSession vi, ViUInt16 space,
-                                    ViBusAddress offset, ViUInt8   val8);
-ViStatus _VI_FUNC  viIn16          (ViSession vi, ViUInt16 space,
-                                    ViBusAddress offset, ViPUInt16 val16);
-ViStatus _VI_FUNC  viOut16         (ViSession vi, ViUInt16 space,
-                                    ViBusAddress offset, ViUInt16  val16);
-ViStatus _VI_FUNC  viIn32          (ViSession vi, ViUInt16 space,
-                                    ViBusAddress offset, ViPUInt32 val32);
-ViStatus _VI_FUNC  viOut32         (ViSession vi, ViUInt16 space,
-                                    ViBusAddress offset, ViUInt32  val32);
-
-#if defined(_VI_INT64_UINT64_DEFINED)
-ViStatus _VI_FUNC  viIn64          (ViSession vi, ViUInt16 space,
-                                    ViBusAddress offset, ViPUInt64 val64);
-ViStatus _VI_FUNC  viOut64         (ViSession vi, ViUInt16 space,
-                                    ViBusAddress offset, ViUInt64  val64);
-
-ViStatus _VI_FUNC  viIn8Ex         (ViSession vi, ViUInt16 space,
-                                    ViBusAddress64 offset, ViPUInt8  val8);
-ViStatus _VI_FUNC  viOut8Ex        (ViSession vi, ViUInt16 space,
-                                    ViBusAddress64 offset, ViUInt8   val8);
-ViStatus _VI_FUNC  viIn16Ex        (ViSession vi, ViUInt16 space,
-                                    ViBusAddress64 offset, ViPUInt16 val16);
-ViStatus _VI_FUNC  viOut16Ex       (ViSession vi, ViUInt16 space,
-                                    ViBusAddress64 offset, ViUInt16  val16);
-ViStatus _VI_FUNC  viIn32Ex        (ViSession vi, ViUInt16 space,
-                                    ViBusAddress64 offset, ViPUInt32 val32);
-ViStatus _VI_FUNC  viOut32Ex       (ViSession vi, ViUInt16 space,
-                                    ViBusAddress64 offset, ViUInt32  val32);
-ViStatus _VI_FUNC  viIn64Ex        (ViSession vi, ViUInt16 space,
-                                    ViBusAddress64 offset, ViPUInt64 val64);
-ViStatus _VI_FUNC  viOut64Ex       (ViSession vi, ViUInt16 space,
-                                    ViBusAddress64 offset, ViUInt64  val64);
-#endif
-
-ViStatus _VI_FUNC  viMoveIn8       (ViSession vi, ViUInt16 space, ViBusAddress offset,
-                                    ViBusSize length, ViAUInt8  buf8);
-ViStatus _VI_FUNC  viMoveOut8      (ViSession vi, ViUInt16 space, ViBusAddress offset,
-                                    ViBusSize length, ViAUInt8  buf8);
-ViStatus _VI_FUNC  viMoveIn16      (ViSession vi, ViUInt16 space, ViBusAddress offset,
-                                    ViBusSize length, ViAUInt16 buf16);
-ViStatus _VI_FUNC  viMoveOut16     (ViSession vi, ViUInt16 space, ViBusAddress offset,
-                                    ViBusSize length, ViAUInt16 buf16);
-ViStatus _VI_FUNC  viMoveIn32      (ViSession vi, ViUInt16 space, ViBusAddress offset,
-                                    ViBusSize length, ViAUInt32 buf32);
-ViStatus _VI_FUNC  viMoveOut32     (ViSession vi, ViUInt16 space, ViBusAddress offset,
-                                    ViBusSize length, ViAUInt32 buf32);
-
-#if defined(_VI_INT64_UINT64_DEFINED)
-ViStatus _VI_FUNC  viMoveIn64      (ViSession vi, ViUInt16 space, ViBusAddress offset,
-                                    ViBusSize length, ViAUInt64 buf64);
-ViStatus _VI_FUNC  viMoveOut64     (ViSession vi, ViUInt16 space, ViBusAddress offset,
-                                    ViBusSize length, ViAUInt64 buf64);
-
-ViStatus _VI_FUNC  viMoveIn8Ex     (ViSession vi, ViUInt16 space, ViBusAddress64 offset,
-                                    ViBusSize length, ViAUInt8  buf8);
-ViStatus _VI_FUNC  viMoveOut8Ex    (ViSession vi, ViUInt16 space, ViBusAddress64 offset,
-                                    ViBusSize length, ViAUInt8  buf8);
-ViStatus _VI_FUNC  viMoveIn16Ex    (ViSession vi, ViUInt16 space, ViBusAddress64 offset,
-                                    ViBusSize length, ViAUInt16 buf16);
-ViStatus _VI_FUNC  viMoveOut16Ex   (ViSession vi, ViUInt16 space, ViBusAddress64 offset,
-                                    ViBusSize length, ViAUInt16 buf16);
-ViStatus _VI_FUNC  viMoveIn32Ex    (ViSession vi, ViUInt16 space, ViBusAddress64 offset,
-                                    ViBusSize length, ViAUInt32 buf32);
-ViStatus _VI_FUNC  viMoveOut32Ex   (ViSession vi, ViUInt16 space, ViBusAddress64 offset,
-                                    ViBusSize length, ViAUInt32 buf32);
-ViStatus _VI_FUNC  viMoveIn64Ex    (ViSession vi, ViUInt16 space, ViBusAddress64 offset,
-                                    ViBusSize length, ViAUInt64 buf64);
-ViStatus _VI_FUNC  viMoveOut64Ex   (ViSession vi, ViUInt16 space, ViBusAddress64 offset,
-                                    ViBusSize length, ViAUInt64 buf64);
-#endif
-
-ViStatus _VI_FUNC  viMove          (ViSession vi, ViUInt16 srcSpace, ViBusAddress srcOffset,
-                                    ViUInt16 srcWidth, ViUInt16 destSpace, 
-                                    ViBusAddress destOffset, ViUInt16 destWidth, 
-                                    ViBusSize srcLength); 
-ViStatus _VI_FUNC  viMoveAsync     (ViSession vi, ViUInt16 srcSpace, ViBusAddress srcOffset,
-                                    ViUInt16 srcWidth, ViUInt16 destSpace, 
-                                    ViBusAddress destOffset, ViUInt16 destWidth, 
-                                    ViBusSize srcLength, ViPJobId jobId);
-
-#if defined(_VI_INT64_UINT64_DEFINED)
-ViStatus _VI_FUNC  viMoveEx        (ViSession vi, ViUInt16 srcSpace, ViBusAddress64 srcOffset,
-                                    ViUInt16 srcWidth, ViUInt16 destSpace, 
-                                    ViBusAddress64 destOffset, ViUInt16 destWidth, 
-                                    ViBusSize srcLength); 
-ViStatus _VI_FUNC  viMoveAsyncEx   (ViSession vi, ViUInt16 srcSpace, ViBusAddress64 srcOffset,
-                                    ViUInt16 srcWidth, ViUInt16 destSpace, 
-                                    ViBusAddress64 destOffset, ViUInt16 destWidth, 
-                                    ViBusSize srcLength, ViPJobId jobId);
-#endif
-
-ViStatus _VI_FUNC  viMapAddress    (ViSession vi, ViUInt16 mapSpace, ViBusAddress mapOffset,
-                                    ViBusSize mapSize, ViBoolean access,
-                                    ViAddr suggested, ViPAddr address);
-ViStatus _VI_FUNC  viUnmapAddress  (ViSession vi);
-
-#if defined(_VI_INT64_UINT64_DEFINED)
-ViStatus _VI_FUNC  viMapAddressEx  (ViSession vi, ViUInt16 mapSpace, ViBusAddress64 mapOffset,
-                                    ViBusSize mapSize, ViBoolean access,
-                                    ViAddr suggested, ViPAddr address);
-#endif
-
-void     _VI_FUNC  viPeek8         (ViSession vi, ViAddr address, ViPUInt8  val8);
-void     _VI_FUNC  viPoke8         (ViSession vi, ViAddr address, ViUInt8   val8);
-void     _VI_FUNC  viPeek16        (ViSession vi, ViAddr address, ViPUInt16 val16);
-void     _VI_FUNC  viPoke16        (ViSession vi, ViAddr address, ViUInt16  val16);
-void     _VI_FUNC  viPeek32        (ViSession vi, ViAddr address, ViPUInt32 val32);
-void     _VI_FUNC  viPoke32        (ViSession vi, ViAddr address, ViUInt32  val32);
-
-#if defined(_VI_INT64_UINT64_DEFINED)
-void     _VI_FUNC  viPeek64        (ViSession vi, ViAddr address, ViPUInt64 val64);
-void     _VI_FUNC  viPoke64        (ViSession vi, ViAddr address, ViUInt64  val64);
-#endif
-
-/*- Shared Memory Operations ------------------------------------------------*/
-
-ViStatus _VI_FUNC  viMemAlloc      (ViSession vi, ViBusSize size, ViPBusAddress offset);
-ViStatus _VI_FUNC  viMemFree       (ViSession vi, ViBusAddress offset);
-
-#if defined(_VI_INT64_UINT64_DEFINED)
-ViStatus _VI_FUNC  viMemAllocEx    (ViSession vi, ViBusSize size, ViPBusAddress64 offset);
-ViStatus _VI_FUNC  viMemFreeEx     (ViSession vi, ViBusAddress64 offset);
-#endif
-
-/*- Interface Specific Operations -------------------------------------------*/
-
-ViStatus _VI_FUNC  viGpibControlREN(ViSession vi, ViUInt16 mode);
-ViStatus _VI_FUNC  viGpibControlATN(ViSession vi, ViUInt16 mode);
-ViStatus _VI_FUNC  viGpibSendIFC   (ViSession vi);
-ViStatus _VI_FUNC  viGpibCommand   (ViSession vi, ViBuf cmd, ViUInt32 cnt, ViPUInt32 retCnt);
-ViStatus _VI_FUNC  viGpibPassControl(ViSession vi, ViUInt16 primAddr, ViUInt16 secAddr);
-
-ViStatus _VI_FUNC  viVxiCommandQuery(ViSession vi, ViUInt16 mode, ViUInt32 cmd,
-                                     ViPUInt32 response);
-ViStatus _VI_FUNC  viAssertUtilSignal(ViSession vi, ViUInt16 line);
-ViStatus _VI_FUNC  viAssertIntrSignal(ViSession vi, ViInt16 mode, ViUInt32 statusID);
-ViStatus _VI_FUNC  viMapTrigger    (ViSession vi, ViInt16 trigSrc, ViInt16 trigDest, 
-                                    ViUInt16 mode);
-ViStatus _VI_FUNC  viUnmapTrigger  (ViSession vi, ViInt16 trigSrc, ViInt16 trigDest);
-ViStatus _VI_FUNC  viUsbControlOut (ViSession vi, ViInt16 bmRequestType, ViInt16 bRequest,
-                                    ViUInt16 wValue, ViUInt16 wIndex, ViUInt16 wLength,
-                                    ViBuf buf);
-ViStatus _VI_FUNC  viUsbControlIn  (ViSession vi, ViInt16 bmRequestType, ViInt16 bRequest,
-                                    ViUInt16 wValue, ViUInt16 wIndex, ViUInt16 wLength,
-                                    ViPBuf buf, ViPUInt16 retCnt);
-
-/*- Attributes (platform independent size) ----------------------------------*/
-
-#define VI_ATTR_RSRC_CLASS          (0xBFFF0001UL)
-#define VI_ATTR_RSRC_NAME           (0xBFFF0002UL)
-#define VI_ATTR_RSRC_IMPL_VERSION   (0x3FFF0003UL)
-#define VI_ATTR_RSRC_LOCK_STATE     (0x3FFF0004UL)
-#define VI_ATTR_MAX_QUEUE_LENGTH    (0x3FFF0005UL)
-#define VI_ATTR_USER_DATA_32        (0x3FFF0007UL)
-#define VI_ATTR_FDC_CHNL            (0x3FFF000DUL)
-#define VI_ATTR_FDC_MODE            (0x3FFF000FUL)
-#define VI_ATTR_FDC_GEN_SIGNAL_EN   (0x3FFF0011UL)
-#define VI_ATTR_FDC_USE_PAIR        (0x3FFF0013UL)
-#define VI_ATTR_SEND_END_EN         (0x3FFF0016UL)
-#define VI_ATTR_TERMCHAR            (0x3FFF0018UL)
-#define VI_ATTR_TMO_VALUE           (0x3FFF001AUL)
-#define VI_ATTR_GPIB_READDR_EN      (0x3FFF001BUL)
-#define VI_ATTR_IO_PROT             (0x3FFF001CUL)
-#define VI_ATTR_DMA_ALLOW_EN        (0x3FFF001EUL)
-#define VI_ATTR_ASRL_BAUD           (0x3FFF0021UL)
-#define VI_ATTR_ASRL_DATA_BITS      (0x3FFF0022UL)
-#define VI_ATTR_ASRL_PARITY         (0x3FFF0023UL)
-#define VI_ATTR_ASRL_STOP_BITS      (0x3FFF0024UL)
-#define VI_ATTR_ASRL_FLOW_CNTRL     (0x3FFF0025UL)
-#define VI_ATTR_RD_BUF_OPER_MODE    (0x3FFF002AUL)
-#define VI_ATTR_RD_BUF_SIZE         (0x3FFF002BUL)
-#define VI_ATTR_WR_BUF_OPER_MODE    (0x3FFF002DUL)
-#define VI_ATTR_WR_BUF_SIZE         (0x3FFF002EUL)
-#define VI_ATTR_SUPPRESS_END_EN     (0x3FFF0036UL)
-#define VI_ATTR_TERMCHAR_EN         (0x3FFF0038UL)
-#define VI_ATTR_DEST_ACCESS_PRIV    (0x3FFF0039UL)
-#define VI_ATTR_DEST_BYTE_ORDER     (0x3FFF003AUL)
-#define VI_ATTR_SRC_ACCESS_PRIV     (0x3FFF003CUL)
-#define VI_ATTR_SRC_BYTE_ORDER      (0x3FFF003DUL)
-#define VI_ATTR_SRC_INCREMENT       (0x3FFF0040UL)
-#define VI_ATTR_DEST_INCREMENT      (0x3FFF0041UL)
-#define VI_ATTR_WIN_ACCESS_PRIV     (0x3FFF0045UL)
-#define VI_ATTR_WIN_BYTE_ORDER      (0x3FFF0047UL)
-#define VI_ATTR_GPIB_ATN_STATE      (0x3FFF0057UL)
-#define VI_ATTR_GPIB_ADDR_STATE     (0x3FFF005CUL)
-#define VI_ATTR_GPIB_CIC_STATE      (0x3FFF005EUL)
-#define VI_ATTR_GPIB_NDAC_STATE     (0x3FFF0062UL)
-#define VI_ATTR_GPIB_SRQ_STATE      (0x3FFF0067UL)
-#define VI_ATTR_GPIB_SYS_CNTRL_STATE (0x3FFF0068UL)
-#define VI_ATTR_GPIB_HS488_CBL_LEN  (0x3FFF0069UL)
-#define VI_ATTR_CMDR_LA             (0x3FFF006BUL)
-#define VI_ATTR_VXI_DEV_CLASS       (0x3FFF006CUL)
-#define VI_ATTR_MAINFRAME_LA        (0x3FFF0070UL)
-#define VI_ATTR_MANF_NAME           (0xBFFF0072UL)
-#define VI_ATTR_MODEL_NAME          (0xBFFF0077UL)
-#define VI_ATTR_VXI_VME_INTR_STATUS (0x3FFF008BUL)
-#define VI_ATTR_VXI_TRIG_STATUS     (0x3FFF008DUL)
-#define VI_ATTR_VXI_VME_SYSFAIL_STATE (0x3FFF0094UL)
-#define VI_ATTR_WIN_BASE_ADDR_32    (0x3FFF0098UL)
-#define VI_ATTR_WIN_SIZE_32         (0x3FFF009AUL)
-#define VI_ATTR_ASRL_AVAIL_NUM      (0x3FFF00ACUL)
-#define VI_ATTR_MEM_BASE_32         (0x3FFF00ADUL)
-#define VI_ATTR_ASRL_CTS_STATE      (0x3FFF00AEUL)
-#define VI_ATTR_ASRL_DCD_STATE      (0x3FFF00AFUL)
-#define VI_ATTR_ASRL_DSR_STATE      (0x3FFF00B1UL)
-#define VI_ATTR_ASRL_DTR_STATE      (0x3FFF00B2UL)
-#define VI_ATTR_ASRL_END_IN         (0x3FFF00B3UL)
-#define VI_ATTR_ASRL_END_OUT        (0x3FFF00B4UL)
-#define VI_ATTR_ASRL_REPLACE_CHAR   (0x3FFF00BEUL)
-#define VI_ATTR_ASRL_RI_STATE       (0x3FFF00BFUL)
-#define VI_ATTR_ASRL_RTS_STATE      (0x3FFF00C0UL)
-#define VI_ATTR_ASRL_XON_CHAR       (0x3FFF00C1UL)
-#define VI_ATTR_ASRL_XOFF_CHAR      (0x3FFF00C2UL)
-#define VI_ATTR_WIN_ACCESS          (0x3FFF00C3UL)
-#define VI_ATTR_RM_SESSION          (0x3FFF00C4UL)
-#define VI_ATTR_VXI_LA              (0x3FFF00D5UL)
-#define VI_ATTR_MANF_ID             (0x3FFF00D9UL)
-#define VI_ATTR_MEM_SIZE_32         (0x3FFF00DDUL)
-#define VI_ATTR_MEM_SPACE           (0x3FFF00DEUL)
-#define VI_ATTR_MODEL_CODE          (0x3FFF00DFUL)
-#define VI_ATTR_SLOT                (0x3FFF00E8UL)
-#define VI_ATTR_INTF_INST_NAME      (0xBFFF00E9UL)
-#define VI_ATTR_IMMEDIATE_SERV      (0x3FFF0100UL)
-#define VI_ATTR_INTF_PARENT_NUM     (0x3FFF0101UL)
-#define VI_ATTR_RSRC_SPEC_VERSION   (0x3FFF0170UL)
-#define VI_ATTR_INTF_TYPE           (0x3FFF0171UL)
-#define VI_ATTR_GPIB_PRIMARY_ADDR   (0x3FFF0172UL)
-#define VI_ATTR_GPIB_SECONDARY_ADDR (0x3FFF0173UL)
-#define VI_ATTR_RSRC_MANF_NAME      (0xBFFF0174UL)
-#define VI_ATTR_RSRC_MANF_ID        (0x3FFF0175UL)
-#define VI_ATTR_INTF_NUM            (0x3FFF0176UL)
-#define VI_ATTR_TRIG_ID             (0x3FFF0177UL)
-#define VI_ATTR_GPIB_REN_STATE      (0x3FFF0181UL)
-#define VI_ATTR_GPIB_UNADDR_EN      (0x3FFF0184UL)
-#define VI_ATTR_DEV_STATUS_BYTE     (0x3FFF0189UL)
-#define VI_ATTR_FILE_APPEND_EN      (0x3FFF0192UL)
-#define VI_ATTR_VXI_TRIG_SUPPORT    (0x3FFF0194UL)
-#define VI_ATTR_TCPIP_ADDR          (0xBFFF0195UL)
-#define VI_ATTR_TCPIP_HOSTNAME      (0xBFFF0196UL)
-#define VI_ATTR_TCPIP_PORT          (0x3FFF0197UL)
-#define VI_ATTR_TCPIP_DEVICE_NAME   (0xBFFF0199UL)
-#define VI_ATTR_TCPIP_NODELAY       (0x3FFF019AUL)
-#define VI_ATTR_TCPIP_KEEPALIVE     (0x3FFF019BUL)
-#define VI_ATTR_4882_COMPLIANT      (0x3FFF019FUL)
-#define VI_ATTR_USB_SERIAL_NUM      (0xBFFF01A0UL)
-#define VI_ATTR_USB_INTFC_NUM       (0x3FFF01A1UL)
-#define VI_ATTR_USB_PROTOCOL        (0x3FFF01A7UL)
-#define VI_ATTR_USB_MAX_INTR_SIZE   (0x3FFF01AFUL)
-#define VI_ATTR_PXI_DEV_NUM         (0x3FFF0201UL)
-#define VI_ATTR_PXI_FUNC_NUM        (0x3FFF0202UL)
-#define VI_ATTR_PXI_BUS_NUM         (0x3FFF0205UL)
-#define VI_ATTR_PXI_CHASSIS         (0x3FFF0206UL)
-#define VI_ATTR_PXI_SLOTPATH        (0xBFFF0207UL)
-#define VI_ATTR_PXI_SLOT_LBUS_LEFT  (0x3FFF0208UL)
-#define VI_ATTR_PXI_SLOT_LBUS_RIGHT (0x3FFF0209UL)
-#define VI_ATTR_PXI_TRIG_BUS        (0x3FFF020AUL)
-#define VI_ATTR_PXI_STAR_TRIG_BUS   (0x3FFF020BUL)
-#define VI_ATTR_PXI_STAR_TRIG_LINE  (0x3FFF020CUL)
-#define VI_ATTR_PXI_MEM_TYPE_BAR0   (0x3FFF0211UL)
-#define VI_ATTR_PXI_MEM_TYPE_BAR1   (0x3FFF0212UL)
-#define VI_ATTR_PXI_MEM_TYPE_BAR2   (0x3FFF0213UL)
-#define VI_ATTR_PXI_MEM_TYPE_BAR3   (0x3FFF0214UL)
-#define VI_ATTR_PXI_MEM_TYPE_BAR4   (0x3FFF0215UL)
-#define VI_ATTR_PXI_MEM_TYPE_BAR5   (0x3FFF0216UL)
-#define VI_ATTR_PXI_MEM_BASE_BAR0   (0x3FFF0221UL)
-#define VI_ATTR_PXI_MEM_BASE_BAR1   (0x3FFF0222UL)
-#define VI_ATTR_PXI_MEM_BASE_BAR2   (0x3FFF0223UL)
-#define VI_ATTR_PXI_MEM_BASE_BAR3   (0x3FFF0224UL)
-#define VI_ATTR_PXI_MEM_BASE_BAR4   (0x3FFF0225UL)
-#define VI_ATTR_PXI_MEM_BASE_BAR5   (0x3FFF0226UL)
-#define VI_ATTR_PXI_MEM_SIZE_BAR0   (0x3FFF0231UL)
-#define VI_ATTR_PXI_MEM_SIZE_BAR1   (0x3FFF0232UL)
-#define VI_ATTR_PXI_MEM_SIZE_BAR2   (0x3FFF0233UL)
-#define VI_ATTR_PXI_MEM_SIZE_BAR3   (0x3FFF0234UL)
-#define VI_ATTR_PXI_MEM_SIZE_BAR4   (0x3FFF0235UL)
-#define VI_ATTR_PXI_MEM_SIZE_BAR5   (0x3FFF0236UL)
-#define VI_ATTR_PXI_IS_EXPRESS      (0x3FFF0240UL)
-#define VI_ATTR_PXI_SLOT_LWIDTH     (0x3FFF0241UL)
-#define VI_ATTR_PXI_MAX_LWIDTH      (0x3FFF0242UL)
-#define VI_ATTR_PXI_ACTUAL_LWIDTH   (0x3FFF0243UL)
-#define VI_ATTR_PXI_DSTAR_BUS       (0x3FFF0244UL)
-#define VI_ATTR_PXI_DSTAR_SET       (0x3FFF0245UL)
-
-#define VI_ATTR_JOB_ID              (0x3FFF4006UL)
-#define VI_ATTR_EVENT_TYPE          (0x3FFF4010UL)
-#define VI_ATTR_SIGP_STATUS_ID      (0x3FFF4011UL)
-#define VI_ATTR_RECV_TRIG_ID        (0x3FFF4012UL)
-#define VI_ATTR_INTR_STATUS_ID      (0x3FFF4023UL)
-#define VI_ATTR_STATUS              (0x3FFF4025UL)
-#define VI_ATTR_RET_COUNT_32        (0x3FFF4026UL)
-#define VI_ATTR_BUFFER              (0x3FFF4027UL)
-#define VI_ATTR_RECV_INTR_LEVEL     (0x3FFF4041UL)
-#define VI_ATTR_OPER_NAME           (0xBFFF4042UL)
-#define VI_ATTR_GPIB_RECV_CIC_STATE (0x3FFF4193UL)
-#define VI_ATTR_RECV_TCPIP_ADDR     (0xBFFF4198UL)
-#define VI_ATTR_USB_RECV_INTR_SIZE  (0x3FFF41B0UL)
-#define VI_ATTR_USB_RECV_INTR_DATA  (0xBFFF41B1UL)
-
-/*- Attributes (platform dependent size) ------------------------------------*/
-
-#if defined(_VI_INT64_UINT64_DEFINED) && defined(_VISA_ENV_IS_64_BIT)
-#define VI_ATTR_USER_DATA_64        (0x3FFF000AUL)
-#define VI_ATTR_RET_COUNT_64        (0x3FFF4028UL)
-#define VI_ATTR_USER_DATA           (VI_ATTR_USER_DATA_64)
-#define VI_ATTR_RET_COUNT           (VI_ATTR_RET_COUNT_64)
-#else
-#define VI_ATTR_USER_DATA           (VI_ATTR_USER_DATA_32)
-#define VI_ATTR_RET_COUNT           (VI_ATTR_RET_COUNT_32)
-#endif
-
-#if defined(_VI_INT64_UINT64_DEFINED)
-#define VI_ATTR_WIN_BASE_ADDR_64    (0x3FFF009BUL)
-#define VI_ATTR_WIN_SIZE_64         (0x3FFF009CUL)
-#define VI_ATTR_MEM_BASE_64         (0x3FFF00D0UL)
-#define VI_ATTR_MEM_SIZE_64         (0x3FFF00D1UL)
-#endif
-#if defined(_VI_INT64_UINT64_DEFINED) && defined(_VISA_ENV_IS_64_BIT)
-#define VI_ATTR_WIN_BASE_ADDR       (VI_ATTR_WIN_BASE_ADDR_64)
-#define VI_ATTR_WIN_SIZE            (VI_ATTR_WIN_SIZE_64)
-#define VI_ATTR_MEM_BASE            (VI_ATTR_MEM_BASE_64)
-#define VI_ATTR_MEM_SIZE            (VI_ATTR_MEM_SIZE_64)
-#else
-#define VI_ATTR_WIN_BASE_ADDR       (VI_ATTR_WIN_BASE_ADDR_32)
-#define VI_ATTR_WIN_SIZE            (VI_ATTR_WIN_SIZE_32)
-#define VI_ATTR_MEM_BASE            (VI_ATTR_MEM_BASE_32)
-#define VI_ATTR_MEM_SIZE            (VI_ATTR_MEM_SIZE_32)
-#endif
-
-/*- Event Types -------------------------------------------------------------*/
-
-#define VI_EVENT_IO_COMPLETION      (0x3FFF2009UL)
-#define VI_EVENT_TRIG               (0xBFFF200AUL)
-#define VI_EVENT_SERVICE_REQ        (0x3FFF200BUL)
-#define VI_EVENT_CLEAR              (0x3FFF200DUL)
-#define VI_EVENT_EXCEPTION          (0xBFFF200EUL)
-#define VI_EVENT_GPIB_CIC           (0x3FFF2012UL)
-#define VI_EVENT_GPIB_TALK          (0x3FFF2013UL)
-#define VI_EVENT_GPIB_LISTEN        (0x3FFF2014UL)
-#define VI_EVENT_VXI_VME_SYSFAIL    (0x3FFF201DUL)
-#define VI_EVENT_VXI_VME_SYSRESET   (0x3FFF201EUL)
-#define VI_EVENT_VXI_SIGP           (0x3FFF2020UL)
-#define VI_EVENT_VXI_VME_INTR       (0xBFFF2021UL)
-#define VI_EVENT_PXI_INTR           (0x3FFF2022UL)
-#define VI_EVENT_TCPIP_CONNECT      (0x3FFF2036UL)
-#define VI_EVENT_USB_INTR           (0x3FFF2037UL)
-
-#define VI_ALL_ENABLED_EVENTS       (0x3FFF7FFFUL)
-
-/*- Completion and Error Codes ----------------------------------------------*/
-
-#define VI_SUCCESS_EVENT_EN                   (0x3FFF0002L) /* 3FFF0002,  1073676290 */
-#define VI_SUCCESS_EVENT_DIS                  (0x3FFF0003L) /* 3FFF0003,  1073676291 */
-#define VI_SUCCESS_QUEUE_EMPTY                (0x3FFF0004L) /* 3FFF0004,  1073676292 */
-#define VI_SUCCESS_TERM_CHAR                  (0x3FFF0005L) /* 3FFF0005,  1073676293 */
-#define VI_SUCCESS_MAX_CNT                    (0x3FFF0006L) /* 3FFF0006,  1073676294 */
-#define VI_SUCCESS_DEV_NPRESENT               (0x3FFF007DL) /* 3FFF007D,  1073676413 */
-#define VI_SUCCESS_TRIG_MAPPED                (0x3FFF007EL) /* 3FFF007E,  1073676414 */
-#define VI_SUCCESS_QUEUE_NEMPTY               (0x3FFF0080L) /* 3FFF0080,  1073676416 */
-#define VI_SUCCESS_NCHAIN                     (0x3FFF0098L) /* 3FFF0098,  1073676440 */
-#define VI_SUCCESS_NESTED_SHARED              (0x3FFF0099L) /* 3FFF0099,  1073676441 */
-#define VI_SUCCESS_NESTED_EXCLUSIVE           (0x3FFF009AL) /* 3FFF009A,  1073676442 */
-#define VI_SUCCESS_SYNC                       (0x3FFF009BL) /* 3FFF009B,  1073676443 */
-
-#define VI_WARN_QUEUE_OVERFLOW                (0x3FFF000CL) /* 3FFF000C,  1073676300 */
-#define VI_WARN_CONFIG_NLOADED                (0x3FFF0077L) /* 3FFF0077,  1073676407 */
-#define VI_WARN_NULL_OBJECT                   (0x3FFF0082L) /* 3FFF0082,  1073676418 */
-#define VI_WARN_NSUP_ATTR_STATE               (0x3FFF0084L) /* 3FFF0084,  1073676420 */
-#define VI_WARN_UNKNOWN_STATUS                (0x3FFF0085L) /* 3FFF0085,  1073676421 */
-#define VI_WARN_NSUP_BUF                      (0x3FFF0088L) /* 3FFF0088,  1073676424 */
-#define VI_WARN_EXT_FUNC_NIMPL                (0x3FFF00A9L) /* 3FFF00A9,  1073676457 */
-
-#define VI_ERROR_SYSTEM_ERROR       (_VI_ERROR+0x3FFF0000L) /* BFFF0000, -1073807360 */
-#define VI_ERROR_INV_OBJECT         (_VI_ERROR+0x3FFF000EL) /* BFFF000E, -1073807346 */
-#define VI_ERROR_RSRC_LOCKED        (_VI_ERROR+0x3FFF000FL) /* BFFF000F, -1073807345 */
-#define VI_ERROR_INV_EXPR           (_VI_ERROR+0x3FFF0010L) /* BFFF0010, -1073807344 */
-#define VI_ERROR_RSRC_NFOUND        (_VI_ERROR+0x3FFF0011L) /* BFFF0011, -1073807343 */
-#define VI_ERROR_INV_RSRC_NAME      (_VI_ERROR+0x3FFF0012L) /* BFFF0012, -1073807342 */
-#define VI_ERROR_INV_ACC_MODE       (_VI_ERROR+0x3FFF0013L) /* BFFF0013, -1073807341 */
-#define VI_ERROR_TMO                (_VI_ERROR+0x3FFF0015L) /* BFFF0015, -1073807339 */
-#define VI_ERROR_CLOSING_FAILED     (_VI_ERROR+0x3FFF0016L) /* BFFF0016, -1073807338 */
-#define VI_ERROR_INV_DEGREE         (_VI_ERROR+0x3FFF001BL) /* BFFF001B, -1073807333 */
-#define VI_ERROR_INV_JOB_ID         (_VI_ERROR+0x3FFF001CL) /* BFFF001C, -1073807332 */
-#define VI_ERROR_NSUP_ATTR          (_VI_ERROR+0x3FFF001DL) /* BFFF001D, -1073807331 */
-#define VI_ERROR_NSUP_ATTR_STATE    (_VI_ERROR+0x3FFF001EL) /* BFFF001E, -1073807330 */
-#define VI_ERROR_ATTR_READONLY      (_VI_ERROR+0x3FFF001FL) /* BFFF001F, -1073807329 */
-#define VI_ERROR_INV_LOCK_TYPE      (_VI_ERROR+0x3FFF0020L) /* BFFF0020, -1073807328 */
-#define VI_ERROR_INV_ACCESS_KEY     (_VI_ERROR+0x3FFF0021L) /* BFFF0021, -1073807327 */
-#define VI_ERROR_INV_EVENT          (_VI_ERROR+0x3FFF0026L) /* BFFF0026, -1073807322 */
-#define VI_ERROR_INV_MECH           (_VI_ERROR+0x3FFF0027L) /* BFFF0027, -1073807321 */
-#define VI_ERROR_HNDLR_NINSTALLED   (_VI_ERROR+0x3FFF0028L) /* BFFF0028, -1073807320 */
-#define VI_ERROR_INV_HNDLR_REF      (_VI_ERROR+0x3FFF0029L) /* BFFF0029, -1073807319 */
-#define VI_ERROR_INV_CONTEXT        (_VI_ERROR+0x3FFF002AL) /* BFFF002A, -1073807318 */
-#define VI_ERROR_QUEUE_OVERFLOW     (_VI_ERROR+0x3FFF002DL) /* BFFF002D, -1073807315 */
-#define VI_ERROR_NENABLED           (_VI_ERROR+0x3FFF002FL) /* BFFF002F, -1073807313 */
-#define VI_ERROR_ABORT              (_VI_ERROR+0x3FFF0030L) /* BFFF0030, -1073807312 */
-#define VI_ERROR_RAW_WR_PROT_VIOL   (_VI_ERROR+0x3FFF0034L) /* BFFF0034, -1073807308 */
-#define VI_ERROR_RAW_RD_PROT_VIOL   (_VI_ERROR+0x3FFF0035L) /* BFFF0035, -1073807307 */
-#define VI_ERROR_OUTP_PROT_VIOL     (_VI_ERROR+0x3FFF0036L) /* BFFF0036, -1073807306 */
-#define VI_ERROR_INP_PROT_VIOL      (_VI_ERROR+0x3FFF0037L) /* BFFF0037, -1073807305 */
-#define VI_ERROR_BERR               (_VI_ERROR+0x3FFF0038L) /* BFFF0038, -1073807304 */
-#define VI_ERROR_IN_PROGRESS        (_VI_ERROR+0x3FFF0039L) /* BFFF0039, -1073807303 */
-#define VI_ERROR_INV_SETUP          (_VI_ERROR+0x3FFF003AL) /* BFFF003A, -1073807302 */
-#define VI_ERROR_QUEUE_ERROR        (_VI_ERROR+0x3FFF003BL) /* BFFF003B, -1073807301 */
-#define VI_ERROR_ALLOC              (_VI_ERROR+0x3FFF003CL) /* BFFF003C, -1073807300 */
-#define VI_ERROR_INV_MASK           (_VI_ERROR+0x3FFF003DL) /* BFFF003D, -1073807299 */
-#define VI_ERROR_IO                 (_VI_ERROR+0x3FFF003EL) /* BFFF003E, -1073807298 */
-#define VI_ERROR_INV_FMT            (_VI_ERROR+0x3FFF003FL) /* BFFF003F, -1073807297 */
-#define VI_ERROR_NSUP_FMT           (_VI_ERROR+0x3FFF0041L) /* BFFF0041, -1073807295 */
-#define VI_ERROR_LINE_IN_USE        (_VI_ERROR+0x3FFF0042L) /* BFFF0042, -1073807294 */
-#define VI_ERROR_NSUP_MODE          (_VI_ERROR+0x3FFF0046L) /* BFFF0046, -1073807290 */
-#define VI_ERROR_SRQ_NOCCURRED      (_VI_ERROR+0x3FFF004AL) /* BFFF004A, -1073807286 */
-#define VI_ERROR_INV_SPACE          (_VI_ERROR+0x3FFF004EL) /* BFFF004E, -1073807282 */
-#define VI_ERROR_INV_OFFSET         (_VI_ERROR+0x3FFF0051L) /* BFFF0051, -1073807279 */
-#define VI_ERROR_INV_WIDTH          (_VI_ERROR+0x3FFF0052L) /* BFFF0052, -1073807278 */
-#define VI_ERROR_NSUP_OFFSET        (_VI_ERROR+0x3FFF0054L) /* BFFF0054, -1073807276 */
-#define VI_ERROR_NSUP_VAR_WIDTH     (_VI_ERROR+0x3FFF0055L) /* BFFF0055, -1073807275 */
-#define VI_ERROR_WINDOW_NMAPPED     (_VI_ERROR+0x3FFF0057L) /* BFFF0057, -1073807273 */
-#define VI_ERROR_RESP_PENDING       (_VI_ERROR+0x3FFF0059L) /* BFFF0059, -1073807271 */
-#define VI_ERROR_NLISTENERS         (_VI_ERROR+0x3FFF005FL) /* BFFF005F, -1073807265 */
-#define VI_ERROR_NCIC               (_VI_ERROR+0x3FFF0060L) /* BFFF0060, -1073807264 */
-#define VI_ERROR_NSYS_CNTLR         (_VI_ERROR+0x3FFF0061L) /* BFFF0061, -1073807263 */
-#define VI_ERROR_NSUP_OPER          (_VI_ERROR+0x3FFF0067L) /* BFFF0067, -1073807257 */
-#define VI_ERROR_INTR_PENDING       (_VI_ERROR+0x3FFF0068L) /* BFFF0068, -1073807256 */
-#define VI_ERROR_ASRL_PARITY        (_VI_ERROR+0x3FFF006AL) /* BFFF006A, -1073807254 */
-#define VI_ERROR_ASRL_FRAMING       (_VI_ERROR+0x3FFF006BL) /* BFFF006B, -1073807253 */
-#define VI_ERROR_ASRL_OVERRUN       (_VI_ERROR+0x3FFF006CL) /* BFFF006C, -1073807252 */
-#define VI_ERROR_TRIG_NMAPPED       (_VI_ERROR+0x3FFF006EL) /* BFFF006E, -1073807250 */
-#define VI_ERROR_NSUP_ALIGN_OFFSET  (_VI_ERROR+0x3FFF0070L) /* BFFF0070, -1073807248 */
-#define VI_ERROR_USER_BUF           (_VI_ERROR+0x3FFF0071L) /* BFFF0071, -1073807247 */
-#define VI_ERROR_RSRC_BUSY          (_VI_ERROR+0x3FFF0072L) /* BFFF0072, -1073807246 */
-#define VI_ERROR_NSUP_WIDTH         (_VI_ERROR+0x3FFF0076L) /* BFFF0076, -1073807242 */
-#define VI_ERROR_INV_PARAMETER      (_VI_ERROR+0x3FFF0078L) /* BFFF0078, -1073807240 */
-#define VI_ERROR_INV_PROT           (_VI_ERROR+0x3FFF0079L) /* BFFF0079, -1073807239 */
-#define VI_ERROR_INV_SIZE           (_VI_ERROR+0x3FFF007BL) /* BFFF007B, -1073807237 */
-#define VI_ERROR_WINDOW_MAPPED      (_VI_ERROR+0x3FFF0080L) /* BFFF0080, -1073807232 */
-#define VI_ERROR_NIMPL_OPER         (_VI_ERROR+0x3FFF0081L) /* BFFF0081, -1073807231 */
-#define VI_ERROR_INV_LENGTH         (_VI_ERROR+0x3FFF0083L) /* BFFF0083, -1073807229 */
-#define VI_ERROR_INV_MODE           (_VI_ERROR+0x3FFF0091L) /* BFFF0091, -1073807215 */
-#define VI_ERROR_SESN_NLOCKED       (_VI_ERROR+0x3FFF009CL) /* BFFF009C, -1073807204 */
-#define VI_ERROR_MEM_NSHARED        (_VI_ERROR+0x3FFF009DL) /* BFFF009D, -1073807203 */
-#define VI_ERROR_LIBRARY_NFOUND     (_VI_ERROR+0x3FFF009EL) /* BFFF009E, -1073807202 */
-#define VI_ERROR_NSUP_INTR          (_VI_ERROR+0x3FFF009FL) /* BFFF009F, -1073807201 */
-#define VI_ERROR_INV_LINE           (_VI_ERROR+0x3FFF00A0L) /* BFFF00A0, -1073807200 */
-#define VI_ERROR_FILE_ACCESS        (_VI_ERROR+0x3FFF00A1L) /* BFFF00A1, -1073807199 */
-#define VI_ERROR_FILE_IO            (_VI_ERROR+0x3FFF00A2L) /* BFFF00A2, -1073807198 */
-#define VI_ERROR_NSUP_LINE          (_VI_ERROR+0x3FFF00A3L) /* BFFF00A3, -1073807197 */
-#define VI_ERROR_NSUP_MECH          (_VI_ERROR+0x3FFF00A4L) /* BFFF00A4, -1073807196 */
-#define VI_ERROR_INTF_NUM_NCONFIG   (_VI_ERROR+0x3FFF00A5L) /* BFFF00A5, -1073807195 */
-#define VI_ERROR_CONN_LOST          (_VI_ERROR+0x3FFF00A6L) /* BFFF00A6, -1073807194 */
-#define VI_ERROR_MACHINE_NAVAIL     (_VI_ERROR+0x3FFF00A7L) /* BFFF00A7, -1073807193 */
-#define VI_ERROR_NPERMISSION        (_VI_ERROR+0x3FFF00A8L) /* BFFF00A8, -1073807192 */
-
-/*- Other VISA Definitions --------------------------------------------------*/
-
-#define VI_VERSION_MAJOR(ver)       ((((ViVersion)ver) & 0xFFF00000UL) >> 20)
-#define VI_VERSION_MINOR(ver)       ((((ViVersion)ver) & 0x000FFF00UL) >>  8)
-#define VI_VERSION_SUBMINOR(ver)    ((((ViVersion)ver) & 0x000000FFUL)      )
-
-#define VI_FIND_BUFLEN              (256)
-
-#define VI_INTF_GPIB                (1)
-#define VI_INTF_VXI                 (2)
-#define VI_INTF_GPIB_VXI            (3)
-#define VI_INTF_ASRL                (4)
-#define VI_INTF_PXI                 (5)
-#define VI_INTF_TCPIP               (6)
-#define VI_INTF_USB                 (7)
-
-#define VI_PROT_NORMAL              (1)
-#define VI_PROT_FDC                 (2)
-#define VI_PROT_HS488               (3)
-#define VI_PROT_4882_STRS           (4)
-#define VI_PROT_USBTMC_VENDOR       (5)
-
-#define VI_FDC_NORMAL               (1)
-#define VI_FDC_STREAM               (2)
-
-#define VI_LOCAL_SPACE              (0)
-#define VI_A16_SPACE                (1)
-#define VI_A24_SPACE                (2)
-#define VI_A32_SPACE                (3)
-#define VI_A64_SPACE                (4)
-#define VI_PXI_ALLOC_SPACE          (9)
-#define VI_PXI_CFG_SPACE            (10)
-#define VI_PXI_BAR0_SPACE           (11)
-#define VI_PXI_BAR1_SPACE           (12)
-#define VI_PXI_BAR2_SPACE           (13)
-#define VI_PXI_BAR3_SPACE           (14)
-#define VI_PXI_BAR4_SPACE           (15)
-#define VI_PXI_BAR5_SPACE           (16)
-#define VI_OPAQUE_SPACE             (0xFFFF)
-
-#define VI_UNKNOWN_LA               (-1)
-#define VI_UNKNOWN_SLOT             (-1)
-#define VI_UNKNOWN_LEVEL            (-1)
-#define VI_UNKNOWN_CHASSIS          (-1)
-
-#define VI_QUEUE                    (1)
-#define VI_HNDLR                    (2)
-#define VI_SUSPEND_HNDLR            (4)
-#define VI_ALL_MECH                 (0xFFFF)
-
-#define VI_ANY_HNDLR                (0)
-
-#define VI_TRIG_ALL                 (-2)
-#define VI_TRIG_SW                  (-1)
-#define VI_TRIG_TTL0                (0)
-#define VI_TRIG_TTL1                (1)
-#define VI_TRIG_TTL2                (2)
-#define VI_TRIG_TTL3                (3)
-#define VI_TRIG_TTL4                (4)
-#define VI_TRIG_TTL5                (5)
-#define VI_TRIG_TTL6                (6)
-#define VI_TRIG_TTL7                (7)
-#define VI_TRIG_ECL0                (8)
-#define VI_TRIG_ECL1                (9)
-#define VI_TRIG_PANEL_IN            (27)
-#define VI_TRIG_PANEL_OUT           (28)
-
-#define VI_TRIG_PROT_DEFAULT        (0)
-#define VI_TRIG_PROT_ON             (1)
-#define VI_TRIG_PROT_OFF            (2)
-#define VI_TRIG_PROT_SYNC           (5)
-#define VI_TRIG_PROT_RESERVE        (6)
-#define VI_TRIG_PROT_UNRESERVE      (7)
-
-#define VI_READ_BUF                 (1)
-#define VI_WRITE_BUF                (2)
-#define VI_READ_BUF_DISCARD         (4)
-#define VI_WRITE_BUF_DISCARD        (8)
-#define VI_IO_IN_BUF                (16)
-#define VI_IO_OUT_BUF               (32)
-#define VI_IO_IN_BUF_DISCARD        (64)
-#define VI_IO_OUT_BUF_DISCARD       (128)
-
-#define VI_FLUSH_ON_ACCESS          (1)
-#define VI_FLUSH_WHEN_FULL          (2)
-#define VI_FLUSH_DISABLE            (3)
-
-#define VI_NMAPPED                  (1)
-#define VI_USE_OPERS                (2)
-#define VI_DEREF_ADDR               (3)
-#define VI_DEREF_ADDR_BYTE_SWAP     (4)
-
-#define VI_TMO_IMMEDIATE            (0L)
-#define VI_TMO_INFINITE             (0xFFFFFFFFUL)
-
-#define VI_NO_LOCK                  (0)
-#define VI_EXCLUSIVE_LOCK           (1)
-#define VI_SHARED_LOCK              (2)
-#define VI_LOAD_CONFIG              (4)
-
-#define VI_NO_SEC_ADDR              (0xFFFF)
-
-#define VI_ASRL_PAR_NONE            (0)
-#define VI_ASRL_PAR_ODD             (1)
-#define VI_ASRL_PAR_EVEN            (2)
-#define VI_ASRL_PAR_MARK            (3)
-#define VI_ASRL_PAR_SPACE           (4)
-
-#define VI_ASRL_STOP_ONE            (10)
-#define VI_ASRL_STOP_ONE5           (15)
-#define VI_ASRL_STOP_TWO            (20)
-
-#define VI_ASRL_FLOW_NONE           (0)
-#define VI_ASRL_FLOW_XON_XOFF       (1)
-#define VI_ASRL_FLOW_RTS_CTS        (2)
-#define VI_ASRL_FLOW_DTR_DSR        (4)
-
-#define VI_ASRL_END_NONE            (0)
-#define VI_ASRL_END_LAST_BIT        (1)
-#define VI_ASRL_END_TERMCHAR        (2)
-#define VI_ASRL_END_BREAK           (3)
-
-#define VI_STATE_ASSERTED           (1)
-#define VI_STATE_UNASSERTED         (0)
-#define VI_STATE_UNKNOWN            (-1)
-
-#define VI_BIG_ENDIAN               (0)
-#define VI_LITTLE_ENDIAN            (1)
-
-#define VI_DATA_PRIV                (0)
-#define VI_DATA_NPRIV               (1)
-#define VI_PROG_PRIV                (2)
-#define VI_PROG_NPRIV               (3)
-#define VI_BLCK_PRIV                (4)
-#define VI_BLCK_NPRIV               (5)
-#define VI_D64_PRIV                 (6)
-#define VI_D64_NPRIV                (7)
-
-#define VI_WIDTH_8                  (1)
-#define VI_WIDTH_16                 (2)
-#define VI_WIDTH_32                 (4)
-#define VI_WIDTH_64                 (8)
-
-#define VI_GPIB_REN_DEASSERT        (0)
-#define VI_GPIB_REN_ASSERT          (1)
-#define VI_GPIB_REN_DEASSERT_GTL    (2)
-#define VI_GPIB_REN_ASSERT_ADDRESS  (3)
-#define VI_GPIB_REN_ASSERT_LLO      (4)
-#define VI_GPIB_REN_ASSERT_ADDRESS_LLO (5)
-#define VI_GPIB_REN_ADDRESS_GTL     (6)
-
-#define VI_GPIB_ATN_DEASSERT        (0)
-#define VI_GPIB_ATN_ASSERT          (1)
-#define VI_GPIB_ATN_DEASSERT_HANDSHAKE (2)
-#define VI_GPIB_ATN_ASSERT_IMMEDIATE (3)
-
-#define VI_GPIB_HS488_DISABLED      (0)
-#define VI_GPIB_HS488_NIMPL         (-1)
-
-#define VI_GPIB_UNADDRESSED         (0)
-#define VI_GPIB_TALKER              (1)
-#define VI_GPIB_LISTENER            (2)
-
-#define VI_VXI_CMD16                (0x0200)
-#define VI_VXI_CMD16_RESP16         (0x0202)
-#define VI_VXI_RESP16               (0x0002)
-#define VI_VXI_CMD32                (0x0400)
-#define VI_VXI_CMD32_RESP16         (0x0402)
-#define VI_VXI_CMD32_RESP32         (0x0404)
-#define VI_VXI_RESP32               (0x0004)
-
-#define VI_ASSERT_SIGNAL            (-1)
-#define VI_ASSERT_USE_ASSIGNED      (0)
-#define VI_ASSERT_IRQ1              (1)
-#define VI_ASSERT_IRQ2              (2)
-#define VI_ASSERT_IRQ3              (3)
-#define VI_ASSERT_IRQ4              (4)
-#define VI_ASSERT_IRQ5              (5)
-#define VI_ASSERT_IRQ6              (6)
-#define VI_ASSERT_IRQ7              (7)
-
-#define VI_UTIL_ASSERT_SYSRESET     (1)
-#define VI_UTIL_ASSERT_SYSFAIL      (2)
-#define VI_UTIL_DEASSERT_SYSFAIL    (3)
-
-#define VI_VXI_CLASS_MEMORY         (0)
-#define VI_VXI_CLASS_EXTENDED       (1)
-#define VI_VXI_CLASS_MESSAGE        (2)
-#define VI_VXI_CLASS_REGISTER       (3)
-#define VI_VXI_CLASS_OTHER          (4)
-
-#define VI_PXI_ADDR_NONE            (0)
-#define VI_PXI_ADDR_MEM             (1)
-#define VI_PXI_ADDR_IO              (2)
-#define VI_PXI_ADDR_CFG             (3)
-
-#define VI_TRIG_UNKNOWN             (-1)
-
-#define VI_PXI_LBUS_UNKNOWN         (-1)
-#define VI_PXI_LBUS_NONE            (0)
-#define VI_PXI_LBUS_STAR_TRIG_BUS_0 (1000)
-#define VI_PXI_LBUS_STAR_TRIG_BUS_1 (1001)
-#define VI_PXI_LBUS_STAR_TRIG_BUS_2 (1002)
-#define VI_PXI_LBUS_STAR_TRIG_BUS_3 (1003)
-#define VI_PXI_LBUS_STAR_TRIG_BUS_4 (1004)
-#define VI_PXI_LBUS_STAR_TRIG_BUS_5 (1005)
-#define VI_PXI_LBUS_STAR_TRIG_BUS_6 (1006)
-#define VI_PXI_LBUS_STAR_TRIG_BUS_7 (1007)
-#define VI_PXI_LBUS_STAR_TRIG_BUS_8 (1008)
-#define VI_PXI_LBUS_STAR_TRIG_BUS_9 (1009)
-#define VI_PXI_STAR_TRIG_CONTROLLER (1413)
-
-/*- Backward Compatibility Macros -------------------------------------------*/
-
-#define viGetDefaultRM(vi)          viOpenDefaultRM(vi)
-#define VI_ERROR_INV_SESSION        (VI_ERROR_INV_OBJECT)
-#define VI_INFINITE                 (VI_TMO_INFINITE)
-#define VI_NORMAL                   (VI_PROT_NORMAL)
-#define VI_FDC                      (VI_PROT_FDC)
-#define VI_HS488                    (VI_PROT_HS488)
-#define VI_ASRL488                  (VI_PROT_4882_STRS)
-#define VI_ASRL_IN_BUF              (VI_IO_IN_BUF)
-#define VI_ASRL_OUT_BUF             (VI_IO_OUT_BUF)
-#define VI_ASRL_IN_BUF_DISCARD      (VI_IO_IN_BUF_DISCARD)
-#define VI_ASRL_OUT_BUF_DISCARD     (VI_IO_OUT_BUF_DISCARD)
-
-/*- National Instruments ----------------------------------------------------*/
-
-#define VI_INTF_RIO                 (8)
-#define VI_INTF_FIREWIRE            (9) 
-
-#define VI_ATTR_SYNC_MXI_ALLOW_EN   (0x3FFF0161UL) /* ViBoolean, read/write */
-
-/* This is for VXI SERVANT resources */
-
-#define VI_EVENT_VXI_DEV_CMD        (0xBFFF200FUL)
-#define VI_ATTR_VXI_DEV_CMD_TYPE    (0x3FFF4037UL) /* ViInt16, read-only */
-#define VI_ATTR_VXI_DEV_CMD_VALUE   (0x3FFF4038UL) /* ViUInt32, read-only */
-
-#define VI_VXI_DEV_CMD_TYPE_16      (16)
-#define VI_VXI_DEV_CMD_TYPE_32      (32)
-
-ViStatus _VI_FUNC viVxiServantResponse(ViSession vi, ViInt16 mode, ViUInt32 resp);
-/* mode values include VI_VXI_RESP16, VI_VXI_RESP32, and the next 2 values */
-#define VI_VXI_RESP_NONE            (0)
-#define VI_VXI_RESP_PROT_ERROR      (-1)
-
-/* This allows extended Serial support on Win32 and on NI ENET Serial products */
-
-#define VI_ATTR_ASRL_DISCARD_NULL   (0x3FFF00B0UL)
-#define VI_ATTR_ASRL_CONNECTED      (0x3FFF01BBUL)
-#define VI_ATTR_ASRL_BREAK_STATE    (0x3FFF01BCUL)
-#define VI_ATTR_ASRL_BREAK_LEN      (0x3FFF01BDUL)
-#define VI_ATTR_ASRL_ALLOW_TRANSMIT (0x3FFF01BEUL)
-#define VI_ATTR_ASRL_WIRE_MODE      (0x3FFF01BFUL)
-
-#define VI_ASRL_WIRE_485_4          (0)
-#define VI_ASRL_WIRE_485_2_DTR_ECHO (1)
-#define VI_ASRL_WIRE_485_2_DTR_CTRL (2)
-#define VI_ASRL_WIRE_485_2_AUTO     (3)
-#define VI_ASRL_WIRE_232_DTE        (128)
-#define VI_ASRL_WIRE_232_DCE        (129)
-#define VI_ASRL_WIRE_232_AUTO       (130)
-
-#define VI_EVENT_ASRL_BREAK         (0x3FFF2023UL)
-#define VI_EVENT_ASRL_CTS           (0x3FFF2029UL)
-#define VI_EVENT_ASRL_DSR           (0x3FFF202AUL)
-#define VI_EVENT_ASRL_DCD           (0x3FFF202CUL)
-#define VI_EVENT_ASRL_RI            (0x3FFF202EUL)
-#define VI_EVENT_ASRL_CHAR          (0x3FFF2035UL)
-#define VI_EVENT_ASRL_TERMCHAR      (0x3FFF2024UL)
-
-/* This is for fast viPeek/viPoke macros */
-
-#if defined(NIVISA_PEEKPOKE)
-
-#if defined(NIVISA_PEEKPOKE_SUPP)
-#undef NIVISA_PEEKPOKE_SUPP
-#endif
-
-#if (defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)) && !defined(_NI_mswin16_)
-/* This macro is supported for all Win32 compilers, including CVI. */
-#define NIVISA_PEEKPOKE_SUPP
-#elif (defined(_WINDOWS) || defined(_Windows)) && !defined(_CVI_) && !defined(_NI_mswin16_)
-/* This macro is supported for Borland and Microsoft compilers on Win16, but not CVI. */
-#define NIVISA_PEEKPOKE_SUPP
-#elif defined(_CVI_) && defined(_NI_sparc_)
-/* This macro is supported for Solaris 1 and 2, from CVI only. */
-#define NIVISA_PEEKPOKE_SUPP
-#else
-/* This macro is not supported on other platforms. */
-#endif
-
-#if defined(NIVISA_PEEKPOKE_SUPP)
-
-extern ViBoolean NI_viImplVISA1;
-ViStatus _VI_FUNC NI_viOpenDefaultRM (ViPSession vi);
-#define viOpenDefaultRM(vi) NI_viOpenDefaultRM(vi)
-
-#define viPeek8(vi,addr,val)                                                \
-   {                                                                        \
-      if ((NI_viImplVISA1) && (*((ViPUInt32)(vi))))                         \
-      {                                                                     \
-         do (*((ViPUInt8)(val)) = *((volatile ViUInt8 _VI_PTR)(addr)));     \
-         while (**((volatile ViUInt8 _VI_PTR _VI_PTR)(vi)) & 0x10);         \
-      }                                                                     \
-      else                                                                  \
-      {                                                                     \
-         (viPeek8)((vi),(addr),(val));                                      \
-      }                                                                     \
-   }
-
-#define viPoke8(vi,addr,val)                                                \
-   {                                                                        \
-      if ((NI_viImplVISA1) && (*((ViPUInt32)(vi))))                         \
-      {                                                                     \
-         do (*((volatile ViUInt8 _VI_PTR)(addr)) = ((ViUInt8)(val)));       \
-         while (**((volatile ViUInt8 _VI_PTR _VI_PTR)(vi)) & 0x10);         \
-      }                                                                     \
-      else                                                                  \
-      {                                                                     \
-         (viPoke8)((vi),(addr),(val));                                      \
-      }                                                                     \
-   }
-
-#define viPeek16(vi,addr,val)                                               \
-   {                                                                        \
-      if ((NI_viImplVISA1) && (*((ViPUInt32)(vi))))                         \
-      {                                                                     \
-         do (*((ViPUInt16)(val)) = *((volatile ViUInt16 _VI_PTR)(addr)));   \
-         while (**((volatile ViUInt8 _VI_PTR _VI_PTR)(vi)) & 0x10);         \
-      }                                                                     \
-      else                                                                  \
-      {                                                                     \
-         (viPeek16)((vi),(addr),(val));                                     \
-      }                                                                     \
-   }
-
-#define viPoke16(vi,addr,val)                                               \
-   {                                                                        \
-      if ((NI_viImplVISA1) && (*((ViPUInt32)(vi))))                         \
-      {                                                                     \
-         do (*((volatile ViUInt16 _VI_PTR)(addr)) = ((ViUInt16)(val)));     \
-         while (**((volatile ViUInt8 _VI_PTR _VI_PTR)(vi)) & 0x10);         \
-      }                                                                     \
-      else                                                                  \
-      {                                                                     \
-         (viPoke16)((vi),(addr),(val));                                     \
-      }                                                                     \
-   }
-
-#define viPeek32(vi,addr,val)                                               \
-   {                                                                        \
-      if ((NI_viImplVISA1) && (*((ViPUInt32)(vi))))                         \
-      {                                                                     \
-         do (*((ViPUInt32)(val)) = *((volatile ViUInt32 _VI_PTR)(addr)));   \
-         while (**((volatile ViUInt8 _VI_PTR _VI_PTR)(vi)) & 0x10);         \
-      }                                                                     \
-      else                                                                  \
-      {                                                                     \
-         (viPeek32)((vi),(addr),(val));                                     \
-      }                                                                     \
-   }
-
-#define viPoke32(vi,addr,val)                                               \
-   {                                                                        \
-      if ((NI_viImplVISA1) && (*((ViPUInt32)(vi))))                         \
-      {                                                                     \
-         do (*((volatile ViUInt32 _VI_PTR)(addr)) = ((ViUInt32)(val)));     \
-         while (**((volatile ViUInt8 _VI_PTR _VI_PTR)(vi)) & 0x10);         \
-      }                                                                     \
-      else                                                                  \
-      {                                                                     \
-         (viPoke32)((vi),(addr),(val));                                     \
-      }                                                                     \
-   }
-
-#endif
-
-#endif
-
-#if defined(NIVISA_PXI) || defined(PXISAVISA_PXI)
-
-#if 0
-/* The following 2 attributes were incorrectly implemented in earlier
-   versions of NI-VISA.  You should now query VI_ATTR_MANF_ID or
-   VI_ATTR_MODEL_CODE.  Those attributes contain sub-vendor information
-   when it exists.  To get both the actual primary and subvendor codes
-   from the device, you should call viIn16 using VI_PXI_CFG_SPACE. */
-#define VI_ATTR_PXI_SUB_MANF_ID     (0x3FFF0203UL)
-#define VI_ATTR_PXI_SUB_MODEL_CODE  (0x3FFF0204UL)
-#endif
-
-#define VI_ATTR_PXI_SRC_TRIG_BUS    (0x3FFF020DUL)
-#define VI_ATTR_PXI_DEST_TRIG_BUS   (0x3FFF020EUL)
-
-#define VI_ATTR_PXI_RECV_INTR_SEQ   (0x3FFF4240UL)
-#define VI_ATTR_PXI_RECV_INTR_DATA  (0x3FFF4241UL)
-
-#endif
-
-#if defined(NIVISA_USB)
-
-#define VI_ATTR_USB_BULK_OUT_PIPE   (0x3FFF01A2UL)
-#define VI_ATTR_USB_BULK_IN_PIPE    (0x3FFF01A3UL)
-#define VI_ATTR_USB_INTR_IN_PIPE    (0x3FFF01A4UL)
-#define VI_ATTR_USB_CLASS           (0x3FFF01A5UL)
-#define VI_ATTR_USB_SUBCLASS        (0x3FFF01A6UL)
-#define VI_ATTR_USB_ALT_SETTING     (0x3FFF01A8UL)
-#define VI_ATTR_USB_END_IN          (0x3FFF01A9UL)
-#define VI_ATTR_USB_NUM_INTFCS      (0x3FFF01AAUL)
-#define VI_ATTR_USB_NUM_PIPES       (0x3FFF01ABUL)
-#define VI_ATTR_USB_BULK_OUT_STATUS (0x3FFF01ACUL)
-#define VI_ATTR_USB_BULK_IN_STATUS  (0x3FFF01ADUL)
-#define VI_ATTR_USB_INTR_IN_STATUS  (0x3FFF01AEUL)
-#define VI_ATTR_USB_CTRL_PIPE       (0x3FFF01B0UL)
-
-#define VI_USB_PIPE_STATE_UNKNOWN   (-1)
-#define VI_USB_PIPE_READY           (0)
-#define VI_USB_PIPE_STALLED         (1)
-
-#define VI_USB_END_NONE             (0)
-#define VI_USB_END_SHORT            (4)
-#define VI_USB_END_SHORT_OR_COUNT   (5)
-
-#endif
-
-#define VI_ATTR_FIREWIRE_DEST_UPPER_OFFSET (0x3FFF01F0UL)
-#define VI_ATTR_FIREWIRE_SRC_UPPER_OFFSET  (0x3FFF01F1UL)
-#define VI_ATTR_FIREWIRE_WIN_UPPER_OFFSET  (0x3FFF01F2UL)
-#define VI_ATTR_FIREWIRE_VENDOR_ID         (0x3FFF01F3UL)
-#define VI_ATTR_FIREWIRE_LOWER_CHIP_ID     (0x3FFF01F4UL)
-#define VI_ATTR_FIREWIRE_UPPER_CHIP_ID     (0x3FFF01F5UL)
-
-#define VI_FIREWIRE_DFLT_SPACE           (5)
-
-#if defined(__cplusplus) || defined(__cplusplus__)
-   }
-#endif
-
-#endif
-
-/*- The End -----------------------------------------------------------------*/
diff --git a/aos/externals/WPILib/WPILib/visa/visatype.h b/aos/externals/WPILib/WPILib/visa/visatype.h
deleted file mode 100644
index ef089dd..0000000
--- a/aos/externals/WPILib/WPILib/visa/visatype.h
+++ /dev/null
@@ -1,201 +0,0 @@
-/*---------------------------------------------------------------------------*/
-/* Distributed by IVI Foundation Inc.                                        */
-/*                                                                           */
-/* Do not modify the contents of this file.                                  */
-/*---------------------------------------------------------------------------*/
-/*                                                                           */
-/* Title   : VISATYPE.H                                                      */
-/* Date    : 04-14-2006                                                      */
-/* Purpose : Fundamental VISA data types and macro definitions               */
-/*                                                                           */
-/*---------------------------------------------------------------------------*/
-
-#ifndef __VISATYPE_HEADER__
-#define __VISATYPE_HEADER__
-
-#if defined(_WIN64)
-#define _VI_FAR
-#define _VI_FUNC            __fastcall
-#define _VI_FUNCC           __fastcall
-#define _VI_FUNCH           __fastcall
-#define _VI_SIGNED          signed
-#elif (defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)) && !defined(_NI_mswin16_)
-#define _VI_FAR
-#define _VI_FUNC            __stdcall
-#define _VI_FUNCC           __cdecl
-#define _VI_FUNCH           __stdcall
-#define _VI_SIGNED          signed
-#elif defined(_CVI_) && defined(_NI_i386_)
-#define _VI_FAR
-#define _VI_FUNC            _pascal
-#define _VI_FUNCC
-#define _VI_FUNCH           _pascal
-#define _VI_SIGNED          signed
-#elif (defined(_WINDOWS) || defined(_Windows)) && !defined(_NI_mswin16_)
-#define _VI_FAR             _far
-#define _VI_FUNC            _far _pascal _export
-#define _VI_FUNCC           _far _cdecl  _export
-#define _VI_FUNCH           _far _pascal
-#define _VI_SIGNED          signed
-#elif (defined(hpux) || defined(__hpux)) && (defined(__cplusplus) || defined(__cplusplus__))
-#define _VI_FAR
-#define _VI_FUNC
-#define _VI_FUNCC
-#define _VI_FUNCH
-#define _VI_SIGNED
-#else
-#define _VI_FAR
-#define _VI_FUNC
-#define _VI_FUNCC
-#define _VI_FUNCH
-#define _VI_SIGNED          signed
-#endif
-
-#define _VI_ERROR           (-2147483647L-1)  /* 0x80000000 */
-#define _VI_PTR             _VI_FAR *
-
-/*- VISA Types --------------------------------------------------------------*/
-
-#ifndef _VI_INT64_UINT64_DEFINED
-#if defined(_WIN64) || ((defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)) && !defined(_NI_mswin16_))
-#if (defined(_MSC_VER) && (_MSC_VER >= 1200)) || (defined(_CVI_) && (_CVI_ >= 700)) || (defined(__BORLANDC__) && (__BORLANDC__ >= 0x0520))
-typedef unsigned   __int64  ViUInt64;
-typedef _VI_SIGNED __int64  ViInt64;
-#define _VI_INT64_UINT64_DEFINED
-#if defined(_WIN64)
-#define _VISA_ENV_IS_64_BIT
-#else
-/* This is a 32-bit OS, not a 64-bit OS */
-#endif
-#endif
-#elif defined(__GNUC__) && (__GNUC__ >= 3)
-#include <limits.h>
-#include <sys/types.h>
-typedef u_int64_t           ViUInt64;
-typedef int64_t             ViInt64;
-#define _VI_INT64_UINT64_DEFINED
-#if defined(LONG_MAX) && (LONG_MAX > 0x7FFFFFFFL)
-#define _VISA_ENV_IS_64_BIT
-#else
-/* This is a 32-bit OS, not a 64-bit OS */
-#endif
-#else
-/* This platform does not support 64-bit types */
-#endif
-#endif
-
-#if defined(_VI_INT64_UINT64_DEFINED)
-typedef ViUInt64    _VI_PTR ViPUInt64;
-typedef ViUInt64    _VI_PTR ViAUInt64;
-typedef ViInt64     _VI_PTR ViPInt64;
-typedef ViInt64     _VI_PTR ViAInt64;
-#endif
-
-#if defined(LONG_MAX) && (LONG_MAX > 0x7FFFFFFFL)
-typedef unsigned int        ViUInt32;
-typedef _VI_SIGNED int      ViInt32;
-#else
-typedef unsigned long       ViUInt32;
-typedef _VI_SIGNED long     ViInt32;
-#endif
-
-typedef ViUInt32    _VI_PTR ViPUInt32;
-typedef ViUInt32    _VI_PTR ViAUInt32;
-typedef ViInt32     _VI_PTR ViPInt32;
-typedef ViInt32     _VI_PTR ViAInt32;
-
-typedef unsigned short      ViUInt16;
-typedef ViUInt16    _VI_PTR ViPUInt16;
-typedef ViUInt16    _VI_PTR ViAUInt16;
-
-typedef _VI_SIGNED short    ViInt16;
-typedef ViInt16     _VI_PTR ViPInt16;
-typedef ViInt16     _VI_PTR ViAInt16;
-
-typedef unsigned char       ViUInt8;
-typedef ViUInt8     _VI_PTR ViPUInt8;
-typedef ViUInt8     _VI_PTR ViAUInt8;
-
-typedef _VI_SIGNED char     ViInt8;
-typedef ViInt8      _VI_PTR ViPInt8;
-typedef ViInt8      _VI_PTR ViAInt8;
-
-typedef char                ViChar;
-typedef ViChar      _VI_PTR ViPChar;
-typedef ViChar      _VI_PTR ViAChar;
-
-typedef unsigned char       ViByte;
-typedef ViByte      _VI_PTR ViPByte;
-typedef ViByte      _VI_PTR ViAByte;
-
-typedef void        _VI_PTR ViAddr;
-typedef ViAddr      _VI_PTR ViPAddr;
-typedef ViAddr      _VI_PTR ViAAddr;
-
-typedef float               ViReal32;
-typedef ViReal32    _VI_PTR ViPReal32;
-typedef ViReal32    _VI_PTR ViAReal32;
-
-typedef double              ViReal64;
-typedef ViReal64    _VI_PTR ViPReal64;
-typedef ViReal64    _VI_PTR ViAReal64;
-
-typedef ViPByte             ViBuf;
-typedef ViPByte             ViPBuf;
-typedef ViPByte     _VI_PTR ViABuf;
-
-typedef ViPChar             ViString;
-typedef ViPChar             ViPString;
-typedef ViPChar     _VI_PTR ViAString;
-
-typedef ViString            ViRsrc;
-typedef ViString            ViPRsrc;
-typedef ViString    _VI_PTR ViARsrc;
-
-typedef ViUInt16            ViBoolean;
-typedef ViBoolean   _VI_PTR ViPBoolean;
-typedef ViBoolean   _VI_PTR ViABoolean;
-
-typedef ViInt32             ViStatus;
-typedef ViStatus    _VI_PTR ViPStatus;
-typedef ViStatus    _VI_PTR ViAStatus;
-
-typedef ViUInt32            ViVersion;
-typedef ViVersion   _VI_PTR ViPVersion;
-typedef ViVersion   _VI_PTR ViAVersion;
-
-typedef ViUInt32            ViObject;
-typedef ViObject    _VI_PTR ViPObject;
-typedef ViObject    _VI_PTR ViAObject;
-
-typedef ViObject            ViSession;
-typedef ViSession   _VI_PTR ViPSession;
-typedef ViSession   _VI_PTR ViASession;
-
-typedef ViUInt32             ViAttr;
-
-#ifndef _VI_CONST_STRING_DEFINED
-typedef const ViChar * ViConstString;
-#define _VI_CONST_STRING_DEFINED
-#endif  
-
-/*- Completion and Error Codes ----------------------------------------------*/
-
-#define VI_SUCCESS          (0L)
-
-/*- Other VISA Definitions --------------------------------------------------*/
-
-#define VI_NULL             (0)
-
-#define VI_TRUE             (1)
-#define VI_FALSE            (0)
-
-/*- Backward Compatibility Macros -------------------------------------------*/
-
-#define VISAFN              _VI_FUNC
-#define ViPtr               _VI_PTR
-
-#endif
-
-/*- The End -----------------------------------------------------------------*/
-
diff --git a/aos/externals/WPILib/make.rb b/aos/externals/WPILib/make.rb
deleted file mode 100644
index a22969d..0000000
--- a/aos/externals/WPILib/make.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-
-$excludes = [/Vision2009/,/CInterfaces/,/NetworkTables/,/SmartDashboard/,/Commands/,/Buttons/,/Preferences/,/swp$/]
-
-files = `find WPILib`.split(/\n/).collect do |file|
-	if(file =~ /.*\.cpp/)
-		file.gsub!(/cpp\Z/,"o")
-		$excludes.each do |exclude|
-			if(file && file =~ exclude)
-				file = nil
-			end
-		end
-		file
-	end
-end.compact
-
-make = "make -f ../module.mk"
-defines = "DEFINES=-D\'SVN_REV=\\\"2262\\\"\'"
-added_includes = "ADDED_INCLUDES=-I./WPILib/"
-outfile = "wpilib.out PROJECT_TARGET=wpilib.out"
-objects = "PROJECT_OBJECTS=\"#{files.join(" ")}\""
-
-cmd = "#{make} #{outfile} #{added_includes} #{defines} #{objects}"
-system cmd
diff --git a/aos/linux_code/README.txt b/aos/linux_code/README.txt
index 143cefb..65feb21 100644
--- a/aos/linux_code/README.txt
+++ b/aos/linux_code/README.txt
@@ -1,9 +1,9 @@
-see ../README.txt for stuff affecting crio and linux code
+see ../README.txt for stuff affecting all code
 
 The folder is called linux_code because it mainly deals with code that uses the queue system, which only works under GNU/Linux for a variety of reasons, some fundamental (futexes) and some because nobody bothers to fix them.
 The layout is designed with multiple linux boxes in mind.
 
-The code for the linux box that talks the cRIO etc is in ../prime/.
+The code for the linux box that sends motor outputs etc is in ../prime/.
 
 [NOTES]
 Any code should call aos::Init() (or aos::InitNRT() for processes that don't need to be realtime) before making any calls to any of the aos functions.
diff --git a/aos/linux_code/starter/netconsole.cc b/aos/linux_code/starter/netconsole.cc
deleted file mode 100644
index c4ca5b9..0000000
--- a/aos/linux_code/starter/netconsole.cc
+++ /dev/null
@@ -1,233 +0,0 @@
-#include <stdio.h>
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <netinet/in.h>
-#include <arpa/inet.h>
-#include <unistd.h>
-#include <fcntl.h>
-#include <pthread.h>
-#include <sys/stat.h>
-
-#include "aos/common/logging/logging_impl.h"
-#include "aos/common/util/inet_addr.h"
-#include "aos/linux_code/configuration.h"
-#include "aos/common/network_port.h"
-#include "aos/linux_code/init.h"
-#include "aos/common/byteorder.h"
-
-namespace aos {
-namespace {
-
-struct FDsToCopy {
-  const int input;
-  const int output;
-
-  const struct sockaddr_in *const interface_address;
-  const struct sockaddr_in *const source_address;
-};
-
-void *FDCopyThread(void *to_copy_in) {
-  FDsToCopy *to_copy = static_cast<FDsToCopy *>(to_copy_in);
-
-  char buffer[32768];
-  ssize_t position = 0;
-  while (true) {
-    CHECK_GE(position, 0);
-    CHECK_LE(position, static_cast<ssize_t>(sizeof(buffer)));
-    if (position != sizeof(buffer)) {
-      ssize_t read_bytes;
-      bool good_data = true;
-      if (to_copy->interface_address != nullptr ||
-          to_copy->source_address != nullptr) {
-        char control_buffer[0x100];
-        struct msghdr header;
-        memset(static_cast<void *>(&header), 0, sizeof(header));
-        header.msg_control = control_buffer;
-        header.msg_controllen = sizeof(control_buffer);
-        struct iovec iovecs[1];
-        iovecs[0].iov_base = buffer + position;
-        iovecs[0].iov_len = sizeof(buffer) - position;
-        header.msg_iov = iovecs;
-        header.msg_iovlen = sizeof(iovecs) / sizeof(iovecs[0]);
-        struct sockaddr_in sender_address;
-        header.msg_name = &sender_address;
-        header.msg_namelen = sizeof(sender_address);
-
-        read_bytes = recvmsg(to_copy->input, &header, 0);
-        if (read_bytes != -1) {
-          if (to_copy->interface_address != nullptr) {
-            for (struct cmsghdr *cmsg = CMSG_FIRSTHDR(&header);
-                 cmsg != NULL;
-                 cmsg = CMSG_NXTHDR(&header, cmsg)) {
-              if (cmsg->cmsg_level == IPPROTO_IP &&
-                  cmsg->cmsg_type == IP_PKTINFO) {
-                unsigned char *data = CMSG_DATA(cmsg);
-                struct in_pktinfo *pktinfo;
-                memcpy(&pktinfo, &data, sizeof(void *));
-                if (pktinfo->ipi_spec_dst.s_addr !=
-                    to_copy->interface_address->sin_addr.s_addr) {
-                  good_data = false;
-                }
-              }
-            }
-          }
-          if (to_copy->source_address != nullptr) {
-            CHECK_GE(header.msg_namelen, sizeof(struct sockaddr_in));
-            if (to_copy->source_address->sin_port != hton<uint16_t>(0)) {
-              if (sender_address.sin_port !=
-                  to_copy->source_address->sin_port) {
-                good_data = false;
-              }
-            }
-            if (sender_address.sin_addr.s_addr !=
-                to_copy->source_address->sin_addr.s_addr) {
-              good_data = false;
-            }
-          }
-        }
-      } else {
-        read_bytes = read(to_copy->input,
-                          buffer + position, sizeof(buffer) - position);
-      }
-      if (read_bytes == -1) {
-        if (errno != EINTR) {
-          PLOG(FATAL, "read(%d, %p, %zd) failed",
-               to_copy->input, buffer + position, position - sizeof(buffer));
-        }
-      } else if (read_bytes == 0 && to_copy->interface_address == NULL) {
-        // read(2) says that this means EOF
-        return NULL;
-      }
-      if (good_data) {
-        position += read_bytes;
-      }
-    }
-
-    CHECK_GE(position, 0);
-    CHECK_LE(position, static_cast<ssize_t>(sizeof(buffer)));
-    if (position > 0) {
-      ssize_t sent_bytes = write(to_copy->output, buffer, position);
-      if (sent_bytes == -1) {
-        if (errno != EINTR) {
-          PLOG(FATAL, "write(%d, %p, %zd) failed",
-               to_copy->output, buffer, position);
-        }
-      } else if (sent_bytes != 0) {
-        if (sent_bytes == position) {
-          position = 0;
-        } else {
-          memmove(buffer, buffer + sent_bytes, position - sent_bytes);
-          position -= sent_bytes;
-        }
-      }
-    }
-  }
-}
-
-int NetconsoleMain(int argc, char **argv) {
-  WriteCoreDumps();
-  logging::Init();
-  logging::AddImplementation(new logging::StreamLogImplementation(stdout));
-
-  int input, output;
-  if (argc > 1) {
-    output = open(argv[1], O_APPEND | O_CREAT | O_WRONLY | O_TRUNC, 0666);
-    if (output == -1) {
-      if (errno == EACCES || errno == ELOOP || errno == ENOSPC ||
-          errno == ENOTDIR || errno == EROFS || errno == ETXTBSY) {
-        PLOG(FATAL, "opening output file '%s' failed", argv[1]);
-      }
-      PLOG(FATAL, "open('%s', stuff, 0644) failed", argv[1]);
-    }
-    fprintf(stderr, "Writing output to '%s'.\n", argv[1]);
-    input = -1;
-    fprintf(stderr, "Not taking any input.\n");
-  } else {
-    output = STDOUT_FILENO;
-    fprintf(stderr, "Writing output to stdout.\n");
-    input = STDIN_FILENO;
-    fprintf(stderr, "Reading stdin.\n");
-  }
-
-  int on = 1;
-
-  int from_crio = socket(AF_INET, SOCK_DGRAM, 0);
-  if (from_crio == -1) {
-    PLOG(FATAL, "socket(AF_INET, SOCK_DGRAM, 0) failed");
-  }
-  if (setsockopt(from_crio, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1) {
-    PLOG(FATAL, "SOL_SOCKET::SO_REUSEADDR=%d(%d) failed", on, from_crio);
-  }
-  if (setsockopt(from_crio, SOL_SOCKET, SO_BROADCAST, &on, sizeof(on)) == -1) {
-    PLOG(FATAL, "SOL_SOCKET::SO_BROADCAST=%d(%d) failed", on, from_crio);
-  }
-  if (setsockopt(from_crio, IPPROTO_IP, IP_PKTINFO, &on, sizeof(on)) == -1) {
-    PLOG(FATAL, "IPROTO_IP::IP_PKTINFO=%d(%d) failed", on, from_crio);
-  }
-  union {
-    struct sockaddr_in in;
-    struct sockaddr addr;
-  } address, crio_address;
-
-  address.in.sin_family = AF_INET;
-  address.in.sin_port = hton<uint16_t>(6666);
-  address.in.sin_addr.s_addr = INADDR_ANY;
-
-  crio_address.in.sin_family = AF_INET;
-  crio_address.in.sin_port = hton<uint16_t>(0);
-  crio_address.in.sin_addr = ::aos::configuration::GetOwnIPAddress();
-  ::aos::util::SetLastSegment(&crio_address.in.sin_addr,
-                              ::aos::NetworkAddress::kCRIO);
-
-  if (bind(from_crio, &address.addr, sizeof(address)) == -1) {
-    PLOG(FATAL, "bind(%d, %p, %zu) failed",
-         from_crio, &address.addr, sizeof(address));
-  }
-
-  pthread_t input_thread, output_thread;
-
-  address.in.sin_addr = ::aos::configuration::GetOwnIPAddress();
-  ::aos::util::SetLastSegment(&address.in.sin_addr, NetworkAddress::kCRIO);
-  fprintf(stderr, "Using cRIO IP %s.\n",
-          inet_ntoa(address.in.sin_addr));
-
-  if (input != -1) {
-    int to_crio = socket(AF_INET, SOCK_DGRAM, 0);
-    if (to_crio == -1) {
-      PLOG(FATAL, "socket(AF_INET, SOCK_DGRAM, 0) failed");
-    }
-    if (setsockopt(to_crio, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1) {
-      PLOG(FATAL, "SOL_SOCKET::SO_REUSEADDR=%d(%d) failed", on, to_crio);
-    }
-    address.in.sin_port = hton<uint16_t>(6668);
-    if (connect(to_crio, &address.addr, sizeof(address)) == -1) {
-      PLOG(FATAL, "connect(%d, %p, %zu) failed",
-           to_crio, &address.addr, sizeof(address));
-    }
-    FDsToCopy input_fds{input, to_crio, nullptr, nullptr};
-    if (pthread_create(&input_thread, NULL, FDCopyThread, &input_fds) == -1) {
-      PLOG(FATAL, "pthread_create(%p, NULL, %p, %p) failed",
-           &input_thread, FDCopyThread, &input_fds);
-    }
-  }
-
-  address.in.sin_addr = ::aos::configuration::GetOwnIPAddress();
-  FDsToCopy output_fds{from_crio, output, &address.in, &crio_address.in};
-  if (pthread_create(&output_thread, NULL, FDCopyThread, &output_fds) == -1) {
-    PLOG(FATAL, "pthread_create(%p, NULL, %p, %p) failed",
-         &output_thread, FDCopyThread, &output_fds);
-  }
-
-  // input_thread will finish when stdin gets an EOF
-  if (pthread_join((input == -1) ? output_thread : input_thread, NULL) == -1) {
-    PLOG(FATAL, "pthread_join(a_thread, NULL) failed");
-  }
-  exit(EXIT_SUCCESS);
-}
-
-}  // namespace
-}  // namespace aos
-
-int main(int argc, char **argv) {
-  return ::aos::NetconsoleMain(argc, argv);
-}
diff --git a/aos/linux_code/starter/starter.gyp b/aos/linux_code/starter/starter.gyp
index ee8c9ab..9a16647 100644
--- a/aos/linux_code/starter/starter.gyp
+++ b/aos/linux_code/starter/starter.gyp
@@ -1,19 +1,6 @@
 {
   'targets': [
     {
-      'target_name': 'netconsole',
-      'type': 'executable',
-      'sources': [
-        'netconsole.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/linux_code/linux_code.gyp:configuration',
-        '<(AOS)/common/util/util.gyp:inet_addr',
-        '<(AOS)/linux_code/linux_code.gyp:init',
-      ],
-    },
-    {
       'target_name': 'starter_exe',
       'type': 'executable',
       'sources': [
@@ -32,19 +19,8 @@
         {
           'destination': '<(rsync_dir)',
           'files': [
-            'starter_loop.sh',
+            'starter.sh',
           ],
-          'conditions': [
-            ['FULL_COMPILER=="gcc_frc"', {
-              'files': [
-                'starter_roborio.sh',
-              ],
-            }, {
-              'files': [
-                'starter.sh',
-              ],
-            }
-          ]],
         },
       ],
     },
diff --git a/aos/linux_code/starter/starter.sh b/aos/linux_code/starter/starter.sh
index 7bdf606..d2a0ae1 100755
--- a/aos/linux_code/starter/starter.sh
+++ b/aos/linux_code/starter/starter.sh
@@ -1,36 +1,7 @@
 #!/bin/bash
 
-echo '/home/driver/tmp/robot_logs/%e-%s-%p-%t.coredump' > /proc/sys/kernel/core_pattern
+# NI already has a core pattern, so we probably shouldn't change it.
+#echo '/home/driver/tmp/robot_logs/%e-%s-%p-%t.coredump' > /proc/sys/kernel/core_pattern
 
-chrt -o 0 bash -c "export PATH=$PATH:/home/driver/robot_code/bin; starter_loop.sh $*" &
-STARTER_LOOP_PID=$!
-echo Starter is ${STARTER_LOOP_PID}.
-#chrt -o 0 bash -c "while true; do cd /home/driver/mjpg-streamer2; ./server.sh; sleep 5; done" &
-
-# Log everything from the serial port...
-#SERIAL_LOG_FILE=$(date "/home/driver/tmp/robot_logs/serial_log.%F_%H-%M-%S")
-#chrt -o 0 bash -c "( stty -echo -echoe -echok 9600; cat > ${SERIAL_LOG_FILE} ) < /dev/ttyUSB0" &
-
-# Wireshark _everything_ we can see...
-#DUMPCAP_LOG_FILE=$(date "/home/driver/tmp/robot_logs/dumpcap.%F_%H-%M-%S")
-#DUMPCAP_STDOUT_FILE=$(date "/home/driver/tmp/robot_logs/stdout_dumpcap.%F_%H-%M-%S")
-#chrt -o 0 bash -c "dumpcap -i eth0 -w ${DUMPCAP_LOG_FILE} -f 'not port 8080 and not net 10.9.71.13' > ${DUMPCAP_STDOUT_FILE}" &
-
-# Run netconsole to record what the cRIO sends.
-chrt -o 0 bash -c '
-NETCONSOLE_BASE=/home/driver/tmp/robot_logs/netconsole-
-existing=$(ls ${NETCONSOLE_BASE}*)
-if [[ $? -eq 0 ]]; then
-	i=$(echo ${existing} | sed "s,${NETCONSOLE_BASE},,g; s/ /\n/g" | sort -g | tail -n1)
-else
-	i=0
-fi
-while true; do
-	/home/driver/robot_code/bin/netconsole ${NETCONSOLE_BASE}$((++i))
-	sleep 1
-done
-' &
-NETCONSOLE_PID=$!
-echo Netconsole is ${NETCONSOLE_PID}.
-
-echo $$ > /tmp/starter.pid
+export PATH=$PATH:/home/admin/robot_code
+exec starter_loop.sh "$@"
diff --git a/aos/linux_code/starter/starter_loop.sh b/aos/linux_code/starter/starter_loop.sh
deleted file mode 100755
index 83d34cc..0000000
--- a/aos/linux_code/starter/starter_loop.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-
-for ((i=1; 1; i++)); do
-	starter_exe $* 1>/tmp/starter${i}_stdout 2>/tmp/starter${i}_stderr
-	sleep 2
-done
diff --git a/aos/linux_code/starter/starter_roborio.sh b/aos/linux_code/starter/starter_roborio.sh
deleted file mode 100755
index d2a0ae1..0000000
--- a/aos/linux_code/starter/starter_roborio.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-# NI already has a core pattern, so we probably shouldn't change it.
-#echo '/home/driver/tmp/robot_logs/%e-%s-%p-%t.coredump' > /proc/sys/kernel/core_pattern
-
-export PATH=$PATH:/home/admin/robot_code
-exec starter_loop.sh "$@"
diff --git a/aos/prime/input/input.gyp b/aos/prime/input/input.gyp
index 09cfbf6..25ba45d 100644
--- a/aos/prime/input/input.gyp
+++ b/aos/prime/input/input.gyp
@@ -10,7 +10,6 @@
         '<(AOS)/common/input/input.gyp:driver_station_data',
         '<(AOS)/common/messages/messages.gyp:robot_state',
         '<(AOS)/common/network/network.gyp:socket',
-        '<(EXTERNALS):WPILib-NetworkRobotValues',
         '<(AOS)/build/aos.gyp:logging',
         '<(AOS)/common/logging/logging.gyp:queue_logging',
       ],
@@ -18,16 +17,5 @@
         '<(AOS)/common/input/input.gyp:driver_station_data',
       ],
     },
-    {
-      'target_name': 'joystick_proxy',
-      'type': 'executable',
-      'sources': [
-        'joystick_proxy.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/prime/input/input.gyp:joystick_input',
-        '<(AOS)/linux_code/linux_code.gyp:init',
-      ],
-    },
   ],
 }
diff --git a/aos/prime/input/joystick_input.cc b/aos/prime/input/joystick_input.cc
index c9b890a..08441c2 100644
--- a/aos/prime/input/joystick_input.cc
+++ b/aos/prime/input/joystick_input.cc
@@ -2,10 +2,6 @@
 
 #include <string.h>
 
-#include "aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobotValues.h"
-
-#include "aos/common/network_port.h"
-#include "aos/common/network/receive_socket.h"
 #include "aos/common/messages/robot_state.q.h"
 #include "aos/common/logging/logging.h"
 #include "aos/common/logging/queue_logging.h"
@@ -13,59 +9,6 @@
 namespace aos {
 namespace input {
 
-void JoystickProxy::Run() {
-  network::ReceiveSocket sock(NetworkPort::kDS);
-  // If true, this code won't try to read anything from the network and instead
-  // feed all 0s to the joystick code.
-  // The RobotState messages will be marked as fake so anything that outputs
-  // values won't while this is enabled.
-  static const bool kFakeJoysticks = false;
-
-  NetworkRobotJoysticks joysticks;
-  char buffer[sizeof(joysticks) + ::buffers::kOverhead];
-
-  while (true) {
-    if (kFakeJoysticks) {
-      ::aos::time::SleepFor(::aos::time::Time::InSeconds(0.02));
-      memset(&joysticks, 0, sizeof(joysticks));
-    } else {
-      int received = sock.Receive(buffer, sizeof(buffer));
-      if (received == -1) {
-        PLOG(WARNING, "socket receive failed")
-        continue;
-      }
-
-      if (!joysticks.DeserializeFrom(buffer, received)) {
-        LOG(WARNING, "deserializing data from %d bytes failed\n", received);
-        continue;
-      }
-    }
-
-    auto new_state = robot_state.MakeMessage();
-    new_state->test_mode = joysticks.control.test_mode();
-    new_state->fms_attached = joysticks.control.fms_attached();
-    new_state->enabled = joysticks.control.enabled();
-    new_state->autonomous = joysticks.control.autonomous();
-    new_state->team_id = joysticks.team_number;
-    new_state->fake = kFakeJoysticks;
-
-    for (int i = 0; i < 4; ++i) {
-      new_state->joysticks[i].buttons = joysticks.joysticks[i].buttons;
-      for (int j = 0; j < 4; ++j) {
-        // TODO(brians): check this math against what our joysticks report as
-        // their logical minimums and maximums
-        new_state->joysticks[i].axis[j] = joysticks.joysticks[i].axes[j] / 127.0;
-      }
-    }
-
-    LOG_STRUCT(DEBUG, "sending", *new_state);
-
-    if (!new_state.Send()) {
-      LOG(WARNING, "sending robot_state failed\n");
-    }
-  }
-}
-
 void JoystickInput::Run() {
   driver_station::Data data;
   while (true) {
diff --git a/aos/prime/input/joystick_proxy.cc b/aos/prime/input/joystick_proxy.cc
deleted file mode 100644
index fe23f4a..0000000
--- a/aos/prime/input/joystick_proxy.cc
+++ /dev/null
@@ -1,9 +0,0 @@
-#include "aos/linux_code/init.h"
-#include "aos/prime/input/joystick_input.h"
-
-int main() {
-  ::aos::Init();
-  ::aos::input::JoystickProxy proxy;
-  proxy.Run();
-  ::aos::Cleanup();
-}
diff --git a/aos/prime/output/motor_output.cc b/aos/prime/output/motor_output.cc
deleted file mode 100644
index b6d59e2..0000000
--- a/aos/prime/output/motor_output.cc
+++ /dev/null
@@ -1,125 +0,0 @@
-#include "aos/prime/output/motor_output.h"
-
-#include <math.h>
-
-#include "aos/common/util/phased_loop.h"
-#include "aos/common/logging/logging.h"
-#include "aos/common/network_port.h"
-#include "aos/common/messages/robot_state.q.h"
-
-namespace aos {
-
-// 255 = 2.5ms, 0 = 0.5ms (or something close to that)
-// got 211->210 as first transition that made a speed difference and 53->54 on
-//   the other side
-// going 2 to each side to make sure we get the full range
-const MotorOutput::MotorControllerBounds MotorOutput::kTalonBounds
-    {213, 135, 132, 129, 50};
-const MotorOutput::MotorControllerBounds MotorOutput::kVictorBounds
-    {210, 138, 132, 126, 56};
-
-uint8_t MotorOutput::MotorControllerBounds::Map(double value) const {
-  if (value == 0.0) return kCenter;
-  if (value > 12.0) return Map(12.0);
-  if (value < -12.0) return Map(-12.0);
-  uint8_t r;
-  if (value > 0.0) {
-    r = static_cast<uint8_t>(kDeadbandMax + (value * (kMax - kDeadbandMax)) +
-                             0.5);
-  } else {
-    r = static_cast<uint8_t>(kDeadbandMin + (value * (kDeadbandMin - kMin)) +
-                             0.5);
-  }
-  if (r < kMin) return kMin;
-  if (r > kMax) return kMax;
-  return r;
-}
-
-MotorOutput::MotorOutput()
-  : socket_(NetworkPort::kMotors, ::aos::NetworkAddress::kCRIO) {
-  if (socket_.LastStatus() != 0) {
-    LOG(FATAL, "opening output socket failed (returned %d)\n",
-        socket_.LastStatus());
-  }
-  values_.solenoid_values = 0;
-}
-
-void MotorOutput::Run() {
-  ::aos::time::Time::EnableMockTime();
-  while (true) {
-    ::aos::time::Time::UpdateMockTime();
-    time::PhasedLoopXMS(5, 1000);
-    ::aos::time::Time::UpdateMockTime();
-
-    no_robot_state_.Print();
-    fake_robot_state_.Print();
-    sending_failed_.Print();
-
-    values_.digital_module = -1;
-    // 0 means output disabled.
-    memset(&values_.pwm_outputs, 0x00, sizeof(values_.pwm_outputs));
-    values_.digital_output_enables = 0;
-    values_.digital_output_values = 0;
-    values_.pressure_switch_channel = 0;
-    values_.compressor_channel = 0;
-    values_.solenoid_module = -1;
-
-    RunIteration();
-
-    ::aos::robot_state.FetchLatest();
-    if (!::aos::robot_state.get()) {
-      LOG_INTERVAL(no_robot_state_);
-      continue;
-    }
-    if (::aos::robot_state->fake) {
-      LOG_INTERVAL(fake_robot_state_);
-      continue;
-    }
-
-    char buffer[sizeof(values_) + ::buffers::kOverhead];
-    ssize_t size = values_.SerializeTo(buffer, sizeof(buffer));
-    if (size <= 0) {
-      LOG(WARNING, "serializing outputs failed\n");
-      continue;
-    }
-    if (socket_.Send(buffer, size) != size) {
-      LOG_INTERVAL(sending_failed_);
-      continue;
-    } else {
-      LOG(DEBUG, "sent outputs\n");
-    }
-  }
-}
-
-void MotorOutput::SetSolenoid(uint8_t channel, bool set) {
-  if (set) {
-    values_.solenoid_values |= 1 << (channel - 1);
-  } else {
-    values_.solenoid_values &= ~(1 << (channel - 1));
-  }
-}
-
-void MotorOutput::SetPWMOutput(uint8_t channel, double value,
-                               const MotorControllerBounds &bounds) {
-  values_.pwm_outputs[channel - 1] = bounds.Map(value);
-}
-
-void MotorOutput::SetRawPWMOutput(uint8_t channel, uint8_t value) {
-  values_.pwm_outputs[channel - 1] = value;
-}
-
-void MotorOutput::DisablePWMOutput(uint8_t channel) {
-  values_.pwm_outputs[channel - 1] = 0;
-}
-
-void MotorOutput::SetDigitalOutput(uint8_t channel, bool value) {
-  const uint8_t shift_amount = 15 - channel;
-  values_.digital_output_enables |= 1 << shift_amount;
-  if (value) {
-    values_.digital_output_values |= 1 << shift_amount;
-  } else {
-    values_.digital_output_values &= ~(1 << shift_amount);
-  }
-}
-
-}  // namespace aos
diff --git a/aos/prime/output/motor_output.h b/aos/prime/output/motor_output.h
deleted file mode 100644
index 7d856bc..0000000
--- a/aos/prime/output/motor_output.h
+++ /dev/null
@@ -1,83 +0,0 @@
-#ifndef AOS_LINUX_CODE_OUTPUT_MOTOR_OUTPUT_H_
-#define AOS_LINUX_CODE_OUTPUT_MOTOR_OUTPUT_H_
-
-#include <stdint.h>
-#include <string.h>
-#include <algorithm>
-#include <string>
-
-#include "aos/externals/WPILib/WPILib/NetworkRobot/NetworkRobotValues.h"
-#include "aos/common/network/send_socket.h"
-#include "aos/common/byteorder.h"
-#include "aos/common/type_traits.h"
-#include "aos/common/util/log_interval.h"
-
-namespace aos {
-
-// A class for sending output values to a cRIO.
-// values_ gets completely reset each time through, so RunIteration() needs to
-// set everything each time (except solenoids).
-class MotorOutput {
- public:
-  MotorOutput();
-  void Run();
-
-  // A container for holding the constants that WPILib uses for each type of
-  // motor controller to map floating point values to 1-byte PWM values to
-  // actually use.
-  struct MotorControllerBounds {
-    // What 1.0 maps to.
-    const uint8_t kMax;
-    // The smallest value to map a positive speed to.
-    const uint8_t kDeadbandMax;
-    // What 0.0 maps to.
-    const uint8_t kCenter;
-    // The biggest value to map a negative speed to.
-    const uint8_t kDeadbandMin;
-    // What -1.0 maps to.
-    const uint8_t kMin;
-
-    // Applies the mapping.
-    uint8_t Map(double value) const;
-  };
-
- protected:
-  // Brian got the values here by trying values with hardware on 11/23/12.
-  static const MotorControllerBounds kTalonBounds;
-  // Taken from WPILib.
-  static const MotorControllerBounds kVictorBounds;
-
-  // Helper methods for filling out values_.
-  // All channels are the 1-indexed numbers that usually go into WPILib.
-  void SetSolenoid(uint8_t channel, bool set);
-  void SetPWMOutput(uint8_t channel, double value,
-                    const MotorControllerBounds &bounds);
-  void SetRawPWMOutput(uint8_t channel, uint8_t value);
-  void DisablePWMOutput(uint8_t channel);
-  void SetDigitalOutput(uint8_t channel, bool value);
-
-  // The data that's going to get sent over.
-  // Gets reset (everything set so that it won't do anything) each time through
-  // except for solenoids.
-  NetworkRobotMotors values_;
-
- private:
-  // Subclasses need to actually fill out values_ here.
-  virtual void RunIteration() = 0;
-
-  network::SendSocket socket_;
-
-  util::SimpleLogInterval no_robot_state_ =
-      util::SimpleLogInterval(::aos::time::Time::InSeconds(0.5), INFO,
-                        "no robot state -> not outputting");
-  util::SimpleLogInterval fake_robot_state_ =
-      util::SimpleLogInterval(::aos::time::Time::InSeconds(0.5), DEBUG,
-                        "fake robot state -> not outputting");
-  util::SimpleLogInterval sending_failed_ =
-      util::SimpleLogInterval(::aos::time::Time::InSeconds(0.1), WARNING,
-                        "sending outputs failed");
-};
-
-}  // namespace aos
-
-#endif
diff --git a/aos/prime/output/motor_output_test.cc b/aos/prime/output/motor_output_test.cc
deleted file mode 100644
index 52a5091..0000000
--- a/aos/prime/output/motor_output_test.cc
+++ /dev/null
@@ -1,21 +0,0 @@
-#include "aos/prime/output/motor_output.h"
-
-#include "gtest/gtest.h"
-
-namespace aos {
-namespace testing {
-
-TEST(MotorControllerBoundsTest, Limits) {
-  MotorOutput::MotorControllerBounds test_bounds
-      {200, 135, 128, 126, 110};
-  EXPECT_EQ(test_bounds.Map(1.0), test_bounds.kMax);
-  EXPECT_EQ(test_bounds.Map(-1.0), test_bounds.kMin);
-  EXPECT_EQ(test_bounds.Map(0.0), test_bounds.kCenter);
-  EXPECT_EQ(test_bounds.Map(0.55), 171);
-  EXPECT_EQ(test_bounds.Map(0.5), 168);
-  EXPECT_EQ(test_bounds.Map(0.45), 164);
-  EXPECT_EQ(test_bounds.Map(-0.5), 118);
-}
-
-}  // namespace testing
-}  // namespace aos
diff --git a/aos/prime/output/output.gyp b/aos/prime/output/output.gyp
deleted file mode 100644
index 1fadff0..0000000
--- a/aos/prime/output/output.gyp
+++ /dev/null
@@ -1,35 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'motor_output',
-      'type': 'static_library',
-      'sources': [
-        'motor_output.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/common/network/network.gyp:socket',
-        '<(AOS)/common/util/util.gyp:phased_loop',
-        '<(EXTERNALS):WPILib-NetworkRobotValues',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/common/messages/messages.gyp:robot_state',
-        '<(AOS)/common/util/util.gyp:log_interval',
-      ],
-      'export_dependent_settings': [
-        '<(AOS)/common/network/network.gyp:socket',
-        '<(EXTERNALS):WPILib-NetworkRobotValues',
-        '<(AOS)/common/util/util.gyp:log_interval',
-      ],
-    },
-    {
-      'target_name': 'motor_output_test',
-      'type': 'executable',
-      'sources': [
-        'motor_output_test.cc',
-      ],
-      'dependencies': [
-        'motor_output',
-        '<(EXTERNALS):gtest',
-      ],
-    },
-  ],
-}
diff --git a/bbb_cape/schematic/.gitignore b/bbb_cape/schematic/.gitignore
deleted file mode 100644
index 89e5079..0000000
--- a/bbb_cape/schematic/.gitignore
+++ /dev/null
@@ -1,7 +0,0 @@
-\#*.sch#
-*.sch~
-*.sym~
-*.pcb-
-*.net
-*.fp-
-*.pcb.bak*
diff --git a/bbb_cape/schematic/adc_buffer.sch b/bbb_cape/schematic/adc_buffer.sch
deleted file mode 100644
index e3f7f98..0000000
--- a/bbb_cape/schematic/adc_buffer.sch
+++ /dev/null
@@ -1,433 +0,0 @@
-v 20110115 2
-C 41600 49800 1 0 0 quad_opamp-2.sym
-{
-T 42200 50400 5 10 0 0 0 0 1
-device=QUAD_OPAMP
-T 41800 50700 5 10 1 1 0 0 1
-refdes=U2
-T 44000 52100 5 10 0 0 0 0 1
-footprint=SO14
-T 41800 52300 5 10 0 0 0 0 1
-symversion=0.1
-T 41600 49800 5 10 0 0 0 0 1
-slot=1
-T 41600 49800 5 10 0 0 0 0 1
-pn=MCP604-E/SL
-}
-C 41600 47300 1 0 0 quad_opamp-2.sym
-{
-T 42200 47900 5 10 0 0 0 0 1
-device=QUAD_OPAMP
-T 41800 48200 5 10 1 1 0 0 1
-refdes=U2
-T 44000 49600 5 10 0 0 0 0 1
-footprint=SO14
-T 41800 49800 5 10 0 0 0 0 1
-symversion=0.1
-T 41600 47300 5 10 0 0 0 0 1
-slot=2
-T 41600 47300 5 10 0 0 0 0 1
-pn=MCP604-E/SL
-}
-C 41600 44700 1 0 0 quad_opamp-2.sym
-{
-T 42200 45300 5 10 0 0 0 0 1
-device=QUAD_OPAMP
-T 41800 45600 5 10 1 1 0 0 1
-refdes=U2
-T 44000 47000 5 10 0 0 0 0 1
-footprint=SO14
-T 41800 47200 5 10 0 0 0 0 1
-symversion=0.1
-T 41600 44700 5 10 0 0 0 0 1
-slot=3
-T 41600 44700 5 10 0 0 0 0 1
-pn=MCP604-E/SL
-}
-C 41600 42000 1 0 0 quad_opamp-2.sym
-{
-T 42200 42600 5 10 0 0 0 0 1
-device=QUAD_OPAMP
-T 41800 42900 5 10 1 1 0 0 1
-refdes=U2
-T 44000 44300 5 10 0 0 0 0 1
-footprint=SO14
-T 41800 44500 5 10 0 0 0 0 1
-symversion=0.1
-T 41600 42000 5 10 0 0 0 0 1
-slot=4
-T 41600 42000 5 10 0 0 0 0 1
-pn=MCP604-E/SL
-}
-N 41600 50400 41500 50400 4
-N 41500 50400 41500 51000 4
-N 41500 51000 42800 51000 4
-N 42800 51000 42800 50200 4
-N 41600 47900 41500 47900 4
-N 41500 47900 41500 48500 4
-N 41500 48500 42800 48500 4
-N 42800 48500 42800 47700 4
-N 41600 45300 41500 45300 4
-N 41500 45300 41500 45900 4
-N 41500 45900 42800 45900 4
-N 42800 45900 42800 45100 4
-N 41500 42600 41600 42600 4
-N 41500 42600 41500 43200 4
-N 41500 43200 42800 43200 4
-N 42800 43200 42800 42400 4
-C 40600 49900 1 0 0 in-1.sym
-{
-T 40600 50200 5 10 0 0 0 0 1
-device=INPUT
-T 40600 50200 5 10 1 1 0 0 1
-refdes=IN1
-}
-C 40600 42100 1 0 0 in-1.sym
-{
-T 40600 42400 5 10 0 0 0 0 1
-device=INPUT
-T 40600 42400 5 10 1 1 0 0 1
-refdes=IN4
-}
-C 40600 44800 1 0 0 in-1.sym
-{
-T 40600 45100 5 10 0 0 0 0 1
-device=INPUT
-T 40600 45100 5 10 1 1 0 0 1
-refdes=IN3
-}
-C 40600 47400 1 0 0 in-1.sym
-{
-T 40600 47700 5 10 0 0 0 0 1
-device=INPUT
-T 40600 47700 5 10 1 1 0 0 1
-refdes=IN2
-}
-C 42000 52000 1 270 0 in-1.sym
-{
-T 42300 52000 5 10 0 0 270 0 1
-device=INPUT
-T 42200 51900 5 10 1 1 270 0 1
-refdes=VCC
-}
-C 42200 40400 1 90 0 in-1.sym
-{
-T 41900 40400 5 10 0 0 90 0 1
-device=INPUT
-T 42000 40300 5 10 1 1 90 0 1
-refdes=GND
-}
-C 45700 50100 1 0 0 out-1.sym
-{
-T 45700 50400 5 10 0 0 0 0 1
-device=OUTPUT
-T 45700 50300 5 10 1 1 0 0 1
-refdes=OUT1
-}
-C 45700 47600 1 0 0 out-1.sym
-{
-T 45700 47900 5 10 0 0 0 0 1
-device=OUTPUT
-T 45700 47800 5 10 1 1 0 0 1
-refdes=OUT2
-}
-C 45700 45000 1 0 0 out-1.sym
-{
-T 45700 45300 5 10 0 0 0 0 1
-device=OUTPUT
-T 45700 45200 5 10 1 1 0 0 1
-refdes=OUT3
-}
-C 45700 42300 1 0 0 out-1.sym
-{
-T 45700 42600 5 10 0 0 0 0 1
-device=OUTPUT
-T 45700 42500 5 10 1 1 0 0 1
-refdes=OUT4
-}
-N 41600 50000 41200 50000 4
-N 41600 47500 41200 47500 4
-N 41600 44900 41200 44900 4
-N 41600 42200 41200 42200 4
-N 42100 41000 42100 42000 4
-N 42100 51400 42100 50600 4
-C 47400 49700 1 90 0 capacitor-1.sym
-{
-T 46700 49900 5 10 0 0 90 0 1
-device=CAPACITOR
-T 47000 50000 5 10 1 1 90 0 1
-refdes=C5
-T 46500 49900 5 10 0 0 90 0 1
-symversion=0.1
-T 47400 50300 5 10 1 1 270 0 1
-value=0.1 uF
-T 47400 49700 5 10 0 0 270 0 1
-footprint=0603
-T 47400 49700 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-N 42100 51300 47200 51300 4
-N 47200 51300 47200 50600 4
-N 47200 49700 47200 41200 4
-C 44300 49200 1 90 0 capacitor-1.sym
-{
-T 43600 49400 5 10 0 0 90 0 1
-device=CAPACITOR
-T 43900 49500 5 10 1 1 90 0 1
-refdes=C1
-T 43400 49400 5 10 0 0 90 0 1
-symversion=0.1
-T 44300 49800 5 10 1 1 270 0 1
-value=0.1 uF
-T 44300 49200 5 10 0 0 270 0 1
-footprint=0603
-T 44300 49200 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 43100 50100 1 0 0 resistor-1.sym
-{
-T 43400 50500 5 10 0 0 0 0 1
-device=RESISTOR
-T 43300 50400 5 10 1 1 0 0 1
-refdes=R1
-T 43100 50100 5 10 0 0 0 0 1
-footprint=0603
-T 43100 49900 5 10 1 1 0 0 1
-value=5 kohms
-T 43100 50100 5 10 0 1 0 0 1
-pn=CRCW06034K99FKEAHP
-}
-N 42600 50200 43100 50200 4
-N 44000 50200 45700 50200 4
-N 44100 50200 44100 50100 4
-N 42100 49800 42100 49000 4
-N 42100 49000 47200 49000 4
-N 44100 49000 44100 49200 4
-C 43100 47600 1 0 0 resistor-1.sym
-{
-T 43400 48000 5 10 0 0 0 0 1
-device=RESISTOR
-T 43300 47900 5 10 1 1 0 0 1
-refdes=R2
-T 43100 47600 5 10 0 0 0 0 1
-footprint=0603
-T 43100 47400 5 10 1 1 0 0 1
-value=5 kohms
-T 43100 47600 5 10 0 1 0 0 1
-pn=CRCW06034K99FKEAHP
-}
-N 44100 47700 44100 47600 4
-N 44100 46500 44100 46700 4
-C 44300 46700 1 90 0 capacitor-1.sym
-{
-T 43900 47000 5 10 1 1 90 0 1
-refdes=C2
-T 43600 46900 5 10 0 0 90 0 1
-device=CAPACITOR
-T 43400 46900 5 10 0 0 90 0 1
-symversion=0.1
-T 44300 47300 5 10 1 1 270 0 1
-value=0.1 uF
-T 44300 46700 5 10 0 0 270 0 1
-footprint=0603
-T 44300 46700 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-N 42600 47700 43100 47700 4
-N 44000 47700 45700 47700 4
-N 42100 46500 47200 46500 4
-N 42100 46500 42100 47300 4
-C 43100 45000 1 0 0 resistor-1.sym
-{
-T 43400 45400 5 10 0 0 0 0 1
-device=RESISTOR
-T 43300 45300 5 10 1 1 0 0 1
-refdes=R3
-T 43100 45000 5 10 0 0 0 0 1
-footprint=0603
-T 43100 44800 5 10 1 1 0 0 1
-value=5 kohms
-T 43100 45000 5 10 0 1 0 0 1
-pn=CRCW06034K99FKEAHP
-}
-N 44100 45100 44100 45000 4
-N 44100 43900 44100 44100 4
-C 44300 44100 1 90 0 capacitor-1.sym
-{
-T 43900 44400 5 10 1 1 90 0 1
-refdes=C3
-T 43600 44300 5 10 0 0 90 0 1
-device=CAPACITOR
-T 43400 44300 5 10 0 0 90 0 1
-symversion=0.1
-T 44300 44700 5 10 1 1 270 0 1
-value=0.1 uF
-T 44300 44100 5 10 0 0 270 0 1
-footprint=0603
-T 44300 44100 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-N 42600 45100 43100 45100 4
-N 44000 45100 45700 45100 4
-N 42100 43900 47200 43900 4
-N 42100 43900 42100 44700 4
-C 43100 42300 1 0 0 resistor-1.sym
-{
-T 43400 42700 5 10 0 0 0 0 1
-device=RESISTOR
-T 43300 42600 5 10 1 1 0 0 1
-refdes=R4
-T 43100 42300 5 10 0 0 0 0 1
-footprint=0603
-T 43100 42100 5 10 1 1 0 0 1
-value=5 kohms
-T 43100 42300 5 10 0 1 0 0 1
-pn=CRCW06034K99FKEAHP
-}
-N 44100 42400 44100 42300 4
-N 44100 41200 44100 41400 4
-C 44300 41400 1 90 0 capacitor-1.sym
-{
-T 43900 41700 5 10 1 1 90 0 1
-refdes=C4
-T 43600 41600 5 10 0 0 90 0 1
-device=CAPACITOR
-T 43400 41600 5 10 0 0 90 0 1
-symversion=0.1
-T 44300 42000 5 10 1 1 270 0 1
-value=0.1 uF
-T 44300 41400 5 10 0 0 270 0 1
-footprint=0603
-T 44300 41400 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-N 42600 42400 43100 42400 4
-N 44000 42400 45700 42400 4
-C 45200 50300 1 90 0 resistor-1.sym
-{
-T 44800 50600 5 10 0 0 90 0 1
-device=RESISTOR
-T 44900 50500 5 10 1 1 90 0 1
-refdes=R5
-T 45200 50300 5 10 0 0 90 0 1
-footprint=0603
-T 45400 50300 5 10 1 1 90 0 1
-value=6.65 kohms
-T 45200 50300 5 10 0 1 90 0 1
-pn=CRCW06036K65FKEA
-}
-C 45200 49200 1 90 0 resistor-1.sym
-{
-T 44800 49500 5 10 0 0 90 0 1
-device=RESISTOR
-T 44900 49400 5 10 1 1 90 0 1
-refdes=R6
-T 45200 49200 5 10 0 0 90 0 1
-footprint=0603
-T 45400 49200 5 10 1 1 90 0 1
-value=6.65 kohms
-T 45200 49200 5 10 0 1 90 0 1
-pn=CRCW06036K65FKEA
-}
-C 45200 47800 1 90 0 resistor-1.sym
-{
-T 44800 48100 5 10 0 0 90 0 1
-device=RESISTOR
-T 44900 48000 5 10 1 1 90 0 1
-refdes=R7
-T 45200 47800 5 10 0 0 90 0 1
-footprint=0603
-T 45400 47800 5 10 1 1 90 0 1
-value=6.65 kohms
-T 45200 47800 5 10 0 1 90 0 1
-pn=CRCW06036K65FKEA
-}
-C 45200 46700 1 90 0 resistor-1.sym
-{
-T 44800 47000 5 10 0 0 90 0 1
-device=RESISTOR
-T 44900 46900 5 10 1 1 90 0 1
-refdes=R8
-T 45200 46700 5 10 0 0 90 0 1
-footprint=0603
-T 45400 46700 5 10 1 1 90 0 1
-value=6.65 kohms
-T 45200 46700 5 10 0 1 90 0 1
-pn=CRCW06036K65FKEA
-}
-C 45200 45200 1 90 0 resistor-1.sym
-{
-T 44800 45500 5 10 0 0 90 0 1
-device=RESISTOR
-T 44900 45400 5 10 1 1 90 0 1
-refdes=R9
-T 45200 45200 5 10 0 0 90 0 1
-footprint=0603
-T 45400 45200 5 10 1 1 90 0 1
-value=6.65 kohms
-T 45200 45200 5 10 0 1 90 0 1
-pn=CRCW06036K65FKEA
-}
-C 45200 44100 1 90 0 resistor-1.sym
-{
-T 44800 44400 5 10 0 0 90 0 1
-device=RESISTOR
-T 44900 44300 5 10 1 1 90 0 1
-refdes=R10
-T 45200 44100 5 10 0 0 90 0 1
-footprint=0603
-T 45400 44100 5 10 1 1 90 0 1
-value=6.65 kohms
-T 45200 44100 5 10 0 1 90 0 1
-pn=CRCW06036K65FKEA
-}
-C 45200 42500 1 90 0 resistor-1.sym
-{
-T 44800 42800 5 10 0 0 90 0 1
-device=RESISTOR
-T 44900 42700 5 10 1 1 90 0 1
-refdes=R11
-T 45200 42500 5 10 0 0 90 0 1
-footprint=0603
-T 45400 42500 5 10 1 1 90 0 1
-value=6.65 kohms
-T 45200 42500 5 10 0 1 90 0 1
-pn=CRCW06036K65FKEA
-}
-C 45200 41400 1 90 0 resistor-1.sym
-{
-T 44800 41700 5 10 0 0 90 0 1
-device=RESISTOR
-T 44900 41600 5 10 1 1 90 0 1
-refdes=R12
-T 45200 41400 5 10 0 0 90 0 1
-footprint=0603
-T 45400 41400 5 10 1 1 90 0 1
-value=6.65 kohms
-T 45200 41400 5 10 0 1 90 0 1
-pn=CRCW06036K65FKEA
-}
-N 45100 51200 45100 51300 4
-N 45100 50300 45100 50200 4
-N 45100 50200 45100 50100 4
-N 45100 49200 45100 49000 4
-N 45100 47800 45100 47700 4
-N 45100 47700 45100 47600 4
-N 45100 48700 45100 48800 4
-N 42100 48800 46700 48800 4
-N 42100 48800 42100 48100 4
-N 47200 41200 42100 41200 4
-N 45100 46700 45100 46500 4
-N 45100 44100 45100 43900 4
-N 45100 45200 45100 45100 4
-N 45100 45100 45100 45000 4
-N 45100 46100 45100 46200 4
-N 42100 46200 46700 46200 4
-N 42100 46200 42100 45500 4
-N 45100 41400 45100 41200 4
-N 45100 42500 45100 42400 4
-N 45100 42400 45100 42300 4
-N 45100 43400 45100 43500 4
-N 42100 43500 46700 43500 4
-N 42100 43500 42100 42800 4
-N 46700 43500 46700 51300 4
diff --git a/bbb_cape/schematic/attribs b/bbb_cape/schematic/attribs
deleted file mode 100644
index a536a01..0000000
--- a/bbb_cape/schematic/attribs
+++ /dev/null
@@ -1,3 +0,0 @@
-pn
-value
-footprint
diff --git a/bbb_cape/schematic/cape-main.sch b/bbb_cape/schematic/cape-main.sch
deleted file mode 100644
index 578ec20..0000000
--- a/bbb_cape/schematic/cape-main.sch
+++ /dev/null
@@ -1,1535 +0,0 @@
-v 20110115 2
-C 41800 40100 1 0 0 STM32F2-1.sym
-{
-T 54900 51800 5 10 0 1 0 0 1
-device=STM32F2
-T 52200 53000 5 10 0 1 0 0 1
-footprint=LQFP64_10
-T 43500 52200 5 10 1 1 0 0 1
-refdes=U6
-T 41800 40100 5 10 0 1 0 0 1
-pn=STM32F205RGT6
-}
-C 50500 53100 1 180 0 digital-input-x4-1.sym
-{
-T 49200 51600 5 10 0 1 180 0 1
-device=digital-input-x4
-T 50100 51500 5 10 1 1 180 0 1
-source=encoder inputs x2.sch
-T 48500 51200 5 10 1 1 180 0 1
-refdes=X2
-}
-C 50500 45000 1 180 0 digital-input-x4-1.sym
-{
-T 49200 43500 5 10 0 1 180 0 1
-device=digital-input-x4
-T 50100 43400 5 10 1 1 180 0 1
-source=encoder inputs x2.sch
-T 48500 43100 5 10 1 1 180 0 1
-refdes=X4
-}
-N 45300 52600 47900 52600 4
-N 45300 52200 47900 52200 4
-N 47900 52200 47900 52300 4
-N 45300 51800 46800 51800 4
-N 46800 51800 46800 52000 4
-N 46800 52000 47900 52000 4
-N 45300 51400 47000 51400 4
-N 47000 51400 47000 51700 4
-N 47000 51700 47900 51700 4
-C 50500 47600 1 180 0 digital-input-x4-1.sym
-{
-T 49200 46100 5 10 0 1 180 0 1
-device=digital-input-x4
-T 50100 46000 5 10 1 1 180 0 1
-source=encoder inputs x2.sch
-T 48500 45700 5 10 1 1 180 0 1
-refdes=X3
-}
-N 45300 43400 47000 43400 4
-N 47000 43400 47000 43600 4
-N 47000 43600 47900 43600 4
-N 47900 43900 46800 43900 4
-N 46800 43900 46800 43800 4
-N 46800 43800 45300 43800 4
-N 45300 44200 47900 44200 4
-N 45300 49400 47000 49400 4
-N 47000 49400 47000 47100 4
-N 47000 47100 47900 47100 4
-N 47900 46800 46800 46800 4
-N 46800 46200 46800 46800 4
-N 46800 46200 45300 46200 4
-N 47900 46200 47000 46200 4
-N 47000 46200 47000 45000 4
-N 47000 45000 45300 45000 4
-C 37000 51200 1 0 0 digital-input-x4-1.sym
-{
-T 38300 52700 5 10 0 1 0 0 1
-device=digital-input-x4
-T 37400 52800 5 10 1 1 0 0 1
-source=encoder inputs x2.sch
-T 39000 53100 5 10 1 1 0 0 1
-refdes=X1
-}
-N 39600 52600 41800 52600 4
-N 41800 52200 40500 52200 4
-N 40500 52200 40500 52300 4
-N 40500 52300 39600 52300 4
-N 41800 50200 40700 50200 4
-N 40700 50200 40700 52000 4
-N 40700 52000 39600 52000 4
-N 39600 51700 40500 51700 4
-N 40500 51700 40500 49800 4
-N 40500 49800 41800 49800 4
-C 16100 54800 1 0 0 regulator-1.sym
-{
-T 15000 55500 5 10 0 1 0 0 1
-device=regulator
-T 16900 56100 5 10 1 1 0 0 1
-refdes=X14
-T 16100 55900 5 10 1 1 0 0 1
-source=simple switcher 5V.sch
-}
-C 33400 54500 1 0 0 regulator-1.sym
-{
-T 32300 55200 5 10 0 1 0 0 1
-device=regulator
-T 34200 55800 5 10 1 1 0 0 1
-refdes=X16
-T 33400 55600 5 10 1 1 0 0 1
-source=simple switcher 5V.sch
-}
-C 18300 35800 1 0 0 beaglebone-1.sym
-{
-T 26700 54800 5 10 1 1 0 6 1
-refdes=U8
-T 22500 45650 5 10 0 0 0 0 1
-device=BEAGLEBOND BLACK CAPE
-T 22500 45850 5 10 0 0 0 0 1
-footprint=beaglebone
-T 22000 54100 5 10 0 1 0 0 1
-pn=PRPC023DAAN-RC x2; SSQ-105-03-G-S
-}
-N 33900 48400 33900 54700 4
-N 33900 52600 37000 52600 4
-N 34900 48100 34900 54700 4
-N 34900 52300 37000 52300 4
-C 36800 51300 1 90 0 3.3V-plus-1.sym
-C 36500 52100 1 270 0 gnd-1.sym
-N 36800 52000 37000 52000 4
-N 37000 51700 36800 51700 4
-N 36800 51700 36800 51500 4
-N 50500 52000 52000 52000 4
-N 52000 41600 52000 54000 4
-{
-T 51500 41600 5 10 1 1 0 0 1
-netname=SVCC
-}
-N 52000 54000 35600 54000 4
-N 35600 54000 35600 53700 4
-N 35600 53700 34900 53700 4
-N 50500 51700 52200 51700 4
-N 52200 41300 52200 54200 4
-{
-T 52200 41600 5 10 1 1 0 0 1
-netname=SGND
-}
-N 52200 54200 35400 54200 4
-N 35400 54200 35400 53900 4
-N 35400 53900 33900 53900 4
-N 50500 46500 52000 46500 4
-N 52000 43400 58800 43400 4
-N 50500 46200 52200 46200 4
-N 50500 43600 52200 43600 4
-C 50700 53000 1 270 0 3.3V-plus-1.sym
-C 51000 52200 1 90 0 gnd-1.sym
-N 50700 52800 50500 52800 4
-N 50500 52800 50500 52600 4
-N 50700 52300 50500 52300 4
-C 50700 47500 1 270 0 3.3V-plus-1.sym
-C 51000 46700 1 90 0 gnd-1.sym
-N 50700 47300 50500 47300 4
-N 50500 47300 50500 47100 4
-N 50700 46800 50500 46800 4
-C 50700 44900 1 270 0 3.3V-plus-1.sym
-C 51000 44100 1 90 0 gnd-1.sym
-N 50700 44700 50500 44700 4
-N 50500 44700 50500 44500 4
-N 50700 44200 50500 44200 4
-N 49200 45000 51800 45000 4
-N 51800 42800 51800 53800 4
-{
-T 51300 42800 5 10 1 1 0 0 1
-netname=DIFFA
-}
-N 51800 53800 35800 53800 4
-N 34400 51200 38300 51200 4
-N 49200 47600 49200 47700 4
-N 49200 47700 51800 47700 4
-N 49200 53100 49200 53800 4
-C 34500 51400 1 90 0 resistor-1.sym
-{
-T 34100 51700 5 10 0 0 90 0 1
-device=RESISTOR
-T 34200 51600 5 10 1 1 90 0 1
-refdes=R10
-T 34500 51400 5 10 0 0 90 0 1
-footprint=0603
-T 34700 51400 5 10 1 1 90 0 1
-value=500 ohms
-T 34500 51400 5 10 0 1 0 0 1
-pn=ERJ-3EKF4990V
-}
-C 35500 51400 1 90 0 resistor-1.sym
-{
-T 35100 51700 5 10 0 0 90 0 1
-device=RESISTOR
-T 35200 51600 5 10 1 1 90 0 1
-refdes=R12
-T 35500 51400 5 10 0 0 90 0 1
-footprint=0603
-T 35700 51400 5 10 1 1 90 0 1
-value=500 ohms
-T 35500 51400 5 10 0 1 0 0 1
-pn=ERJ-3EKF4990V
-}
-N 35800 53800 35800 51200 4
-N 34400 52300 34400 52600 4
-N 34400 51400 34400 51200 4
-N 35400 51400 35400 51200 4
-C 50500 50800 1 180 0 digital-input-x4-1.sym
-{
-T 49200 49300 5 10 0 1 180 0 1
-device=digital-input-x4
-T 50100 49200 5 10 1 1 180 0 1
-source=digital inputs x4.sch
-T 48500 48900 5 10 1 1 180 0 1
-refdes=X5
-}
-N 45300 49800 47000 49800 4
-N 47000 49800 47000 50000 4
-N 47000 50000 47900 50000 4
-N 45300 48200 47200 48200 4
-N 47200 48200 47200 49700 4
-N 47200 49700 47900 49700 4
-N 47900 49400 47400 49400 4
-N 47400 47800 47400 49400 4
-N 47400 47800 45300 47800 4
-C 50500 42700 1 180 0 digital-input-x4-1.sym
-{
-T 49200 41200 5 10 0 1 180 0 1
-device=digital-input-x4
-T 50100 41100 5 10 1 1 180 0 1
-source=digital inputs x4.sch
-T 48500 40800 5 10 1 1 180 0 1
-refdes=X7
-}
-N 47900 41600 46800 41600 4
-N 46800 41600 46800 42200 4
-N 46800 42200 45300 42200 4
-N 45300 42600 47000 42600 4
-N 47000 42600 47000 41900 4
-N 47000 41900 47900 41900 4
-N 47900 42200 47200 42200 4
-N 47200 42200 47200 43000 4
-N 47200 43000 45300 43000 4
-N 41800 46600 34500 46600 4
-N 34500 46600 34500 39100 4
-N 34500 39100 47200 39100 4
-N 47200 39100 47200 41300 4
-N 47200 41300 47900 41300 4
-C 37000 47000 1 0 0 digital-input-x4-1.sym
-{
-T 38300 48500 5 10 0 1 0 0 1
-device=digital-input-x4
-T 37400 48600 5 10 1 1 0 0 1
-source=digital inputs x4.sch
-T 39000 48900 5 10 1 1 0 0 1
-refdes=X6
-}
-N 41800 51000 40900 51000 4
-N 40900 51000 40900 48400 4
-N 40900 48400 39600 48400 4
-N 41800 50600 41100 50600 4
-N 41100 50600 41100 48000 4
-N 41100 48000 39600 48000 4
-N 39600 47400 40900 47400 4
-N 40900 47400 40900 47000 4
-N 40900 47000 41800 47000 4
-N 41800 47400 41100 47400 4
-N 41100 47400 41100 47600 4
-N 41100 47600 39600 47600 4
-N 38300 47000 35800 47000 4
-N 35800 47000 35800 51200 4
-C 36800 47100 1 90 0 3.3V-plus-1.sym
-C 36500 47900 1 270 0 gnd-1.sym
-N 36800 47800 37000 47800 4
-N 37000 47500 36800 47500 4
-N 36800 47500 36800 47300 4
-N 37000 48100 34900 48100 4
-N 37000 48400 33900 48400 4
-C 50700 50700 1 270 0 3.3V-plus-1.sym
-C 51000 49900 1 90 0 gnd-1.sym
-N 50700 50500 50500 50500 4
-N 50500 50500 50500 50300 4
-N 50700 50000 50500 50000 4
-C 50700 42600 1 270 0 3.3V-plus-1.sym
-C 51000 41800 1 90 0 gnd-1.sym
-N 50700 42400 50500 42400 4
-N 50500 42400 50500 42200 4
-N 50700 41900 50500 41900 4
-N 50500 41300 52200 41300 4
-N 50500 41600 52000 41600 4
-N 50500 49400 52200 49400 4
-N 50500 49700 52000 49700 4
-N 49200 50800 49200 50900 4
-N 49200 50900 51800 50900 4
-N 49200 42700 49200 42800 4
-N 49200 42800 51800 42800 4
-N 17600 52300 17600 55000 4
-N 17600 52700 18400 52700 4
-N 18400 52300 17600 52300 4
-N 16600 53900 16600 55000 4
-N 16600 54300 18400 54300 4
-N 18400 53900 16600 53900 4
-C 16500 53600 1 0 0 gnd-1.sym
-C 27400 54900 1 180 0 gnd-1.sym
-N 27300 53900 27300 54600 4
-N 27300 54300 27000 54300 4
-N 27300 53900 27000 53900 4
-N 13100 50700 18400 50700 4
-C 37700 45900 1 0 0 capacitor-1.sym
-{
-T 37900 46600 5 10 0 0 0 0 1
-device=CAPACITOR
-T 37900 46400 5 10 1 1 0 0 1
-refdes=C4
-T 37900 46800 5 10 0 0 0 0 1
-symversion=0.1
-T 37700 45900 5 10 0 0 0 0 1
-footprint=0603
-T 37900 45700 5 10 1 1 0 0 1
-value=18 pF
-T 37700 45900 5 10 0 1 0 0 1
-pn=VJ0603A180JXACW1BC
-}
-C 37700 44700 1 0 0 capacitor-1.sym
-{
-T 37900 45400 5 10 0 0 0 0 1
-device=CAPACITOR
-T 37900 45200 5 10 1 1 0 0 1
-refdes=C5
-T 37900 45600 5 10 0 0 0 0 1
-symversion=0.1
-T 37700 44700 5 10 0 0 0 0 1
-footprint=0603
-T 37900 44500 5 10 1 1 0 0 1
-value=18 pF
-T 37700 44700 5 10 0 1 0 0 1
-pn=VJ0603A180JXACW1BC
-}
-N 41800 45800 39400 45800 4
-N 39400 45800 39400 46100 4
-N 38600 46100 39400 46100 4
-N 38900 46100 38900 45900 4
-N 38900 45000 38900 44900 4
-N 38600 44900 39500 44900 4
-N 39500 44900 39500 45400 4
-N 39500 45400 41800 45400 4
-C 37500 44400 1 0 0 gnd-1.sym
-N 37700 46100 37600 46100 4
-N 37600 44700 37600 46100 4
-N 37600 44900 37700 44900 4
-C 38500 46400 1 270 0 crystal.sym
-{
-T 39000 46200 5 10 0 0 270 0 1
-device=CRYSTAL
-T 39200 45600 5 10 1 1 270 0 1
-refdes=U9
-T 39200 46200 5 10 0 0 270 0 1
-symversion=0.1
-T 38500 46400 5 10 0 0 0 0 1
-footprint=ABMM2
-T 38500 46400 5 10 0 1 0 0 1
-pn=ABMM-8.000MHZ-B2-T
-}
-N 38700 45000 38500 45000 4
-N 38500 45000 38500 45900 4
-N 37600 45500 38500 45500 4
-N 38500 45900 38700 45900 4
-C 42200 56300 1 0 0 ADXRS453-1.sym
-{
-T 42800 58100 5 10 0 1 0 0 1
-footprint=SO16W
-T 43200 59500 5 10 0 1 0 0 1
-device=ADXRS453
-T 43700 58900 5 10 1 1 0 0 1
-refdes=U2
-T 42200 56300 5 10 0 1 0 0 1
-pn=ADXRS453
-}
-C 45600 56700 1 0 0 inductor-1.sym
-{
-T 45800 57200 5 10 0 0 0 0 1
-device=INDUCTOR
-T 45800 57000 5 10 1 1 0 0 1
-refdes=L2
-T 45800 57400 5 10 0 0 0 0 1
-symversion=0.1
-T 45600 56700 5 10 0 0 0 0 1
-footprint=1812
-T 45700 56600 5 10 1 1 0 0 1
-value=470 uH
-T 45600 56700 5 10 0 1 0 0 1
-pn=LQH43MN471J03L
-}
-C 42000 58200 1 180 0 capacitor-1.sym
-{
-T 41800 57500 5 10 0 0 180 0 1
-device=CAPACITOR
-T 41700 57800 5 10 1 1 180 0 1
-refdes=C2
-T 41800 57300 5 10 0 0 180 0 1
-symversion=0.1
-T 41400 58200 5 10 1 1 0 0 1
-value=1 uF
-T 42000 58200 5 10 0 0 0 0 1
-footprint=0603
-T 42000 58200 5 10 0 1 0 0 1
-pn=VJ0603V105MXQPW1BC
-}
-C 36700 56600 1 0 0 TC1262-1.sym
-{
-T 28700 60900 5 10 0 1 0 0 1
-footprint=SOT223
-T 38200 57500 5 10 0 1 0 0 1
-device=TC1262
-T 38100 57400 5 10 1 1 0 0 1
-refdes=U4
-T 36700 56600 5 10 0 1 0 0 1
-pn=TC1262-3.3VDB
-}
-N 36000 56200 36000 57500 4
-N 36000 57100 36700 57100 4
-C 36100 56700 1 0 0 3.3V-plus-1.sym
-N 36300 56700 36300 56500 4
-N 36300 56500 36500 56500 4
-N 36500 56500 36500 56800 4
-N 36500 56800 36700 56800 4
-C 38800 56400 1 0 0 gnd-1.sym
-N 38800 57100 38900 57100 4
-N 38900 56700 38900 57100 4
-N 38800 56800 38900 56800 4
-N 44300 56800 45600 56800 4
-N 45500 56800 45500 56500 4
-N 45500 56500 45400 56500 4
-N 44500 56500 44300 56500 4
-C 42000 56100 1 0 0 gnd-1.sym
-C 44300 55000 1 0 0 gnd-1.sym
-C 40800 57100 1 0 0 gnd-1.sym
-C 44700 56900 1 0 0 gnd-1.sym
-N 42100 56400 42100 57700 4
-N 42100 56500 42200 56500 4
-N 42100 56800 42200 56800 4
-N 42000 58000 42200 58000 4
-N 41100 58000 40900 58000 4
-N 40900 57400 40900 58900 4
-N 42200 58300 41900 58300 4
-N 41900 58300 41900 58400 4
-N 41900 58400 40900 58400 4
-N 42200 57700 42100 57700 4
-N 42200 57400 42100 57400 4
-N 42100 56800 42100 57100 4
-N 42100 57100 42200 57100 4
-C 42000 59100 1 180 0 capacitor-1.sym
-{
-T 41800 58400 5 10 0 0 180 0 1
-device=CAPACITOR
-T 41700 58700 5 10 1 1 180 0 1
-refdes=C3
-T 41800 58200 5 10 0 0 180 0 1
-symversion=0.1
-T 41400 59100 5 10 1 1 0 0 1
-value=1 uF
-T 42000 59100 5 10 0 0 0 0 1
-footprint=0603
-T 42000 59100 5 10 0 1 0 0 1
-pn=VJ0603V105MXQPW1BC
-}
-N 41100 58900 40900 58900 4
-N 42000 58900 42100 58900 4
-N 42100 58900 42100 58600 4
-N 42100 58600 42200 58600 4
-N 44300 57400 46600 57400 4
-N 46600 57400 46600 56800 4
-N 46500 56800 49500 56800 4
-N 44300 57100 44600 57100 4
-N 44600 57100 44600 57300 4
-N 44600 57300 44800 57300 4
-N 44800 57200 44800 57300 4
-N 44300 57700 45100 57700 4
-N 44300 58000 44900 58000 4
-N 44300 58300 44700 58300 4
-N 44300 58600 44500 58600 4
-C 44600 55500 1 90 0 capacitor-1.sym
-{
-T 43900 55700 5 10 0 0 90 0 1
-device=CAPACITOR
-T 44200 55800 5 10 1 1 90 0 1
-refdes=C6
-T 43700 55700 5 10 0 0 90 0 1
-symversion=0.1
-T 44600 56100 5 10 1 1 270 0 1
-value=1 uF
-T 44600 55500 5 10 0 0 270 0 1
-footprint=0603
-T 44600 55500 5 10 0 1 0 0 1
-pn=VJ0603V105MXQPW1BC
-}
-N 44400 56500 44400 56400 4
-N 44400 55500 44400 55300 4
-C 49500 56600 1 0 0 TC1262-1.sym
-{
-T 41500 60900 5 10 0 1 0 0 1
-footprint=SOT223
-T 51000 57500 5 10 0 1 0 0 1
-device=TC1262
-T 50900 57400 5 10 1 1 0 0 1
-refdes=U3
-T 49500 56600 5 10 0 1 0 0 1
-pn=TC1262-3.3VDB
-}
-C 51600 56400 1 0 0 gnd-1.sym
-N 51600 57100 51700 57100 4
-N 51700 56700 51700 57100 4
-N 51600 56800 51700 56800 4
-N 49500 57100 49300 57100 4
-N 49300 56200 49300 57500 4
-C 47100 55600 1 90 0 capacitor-1.sym
-{
-T 46400 55800 5 10 0 0 90 0 1
-device=CAPACITOR
-T 46700 55900 5 10 1 1 90 0 1
-refdes=C8
-T 46200 55800 5 10 0 0 90 0 1
-symversion=0.1
-T 47100 56200 5 10 1 1 270 0 1
-value=1 uF
-T 47100 55600 5 10 0 0 270 0 1
-footprint=0603
-T 47100 55600 5 10 0 1 0 0 1
-pn=VJ0603V105MXQPW1BC
-}
-C 48600 55600 1 90 0 capacitor-1.sym
-{
-T 47900 55800 5 10 0 0 90 0 1
-device=CAPACITOR
-T 48200 55900 5 10 1 1 90 0 1
-refdes=C7
-T 47700 55800 5 10 0 0 90 0 1
-symversion=0.1
-T 48600 56200 5 10 1 1 270 0 1
-value=10 uF
-T 48600 55600 5 10 0 0 270 0 1
-footprint=0805
-T 48600 55600 5 10 0 1 0 0 1
-pn=08056D106MAT2A
-}
-C 47900 55600 1 90 0 capacitor-1.sym
-{
-T 47200 55800 5 10 0 0 90 0 1
-device=CAPACITOR
-T 47500 55900 5 10 1 1 90 0 1
-refdes=C9
-T 47000 55800 5 10 0 0 90 0 1
-symversion=0.1
-T 47900 56200 5 10 1 1 270 0 1
-value=1 uF
-T 47900 55600 5 10 0 0 270 0 1
-footprint=0603
-T 47900 55600 5 10 0 1 0 0 1
-pn=VJ0603V105MXQPW1BC
-}
-C 50100 55100 1 90 0 capacitor-1.sym
-{
-T 49400 55300 5 10 0 0 90 0 1
-device=CAPACITOR
-T 49700 55400 5 10 1 1 90 0 1
-refdes=C10
-T 49200 55300 5 10 0 0 90 0 1
-symversion=0.1
-T 50100 55700 5 10 1 1 270 0 1
-value=10 uF
-T 50100 55100 5 10 0 0 270 0 1
-footprint=0805
-T 50100 55100 5 10 0 1 0 0 1
-pn=08056D106MAT2A
-}
-N 46900 56500 46900 56800 4
-N 47700 56500 47700 56800 4
-N 48400 56500 48400 56800 4
-C 46800 55000 1 0 0 gnd-1.sym
-C 47600 55000 1 0 0 gnd-1.sym
-C 48300 55000 1 0 0 gnd-1.sym
-N 46900 55600 46900 55300 4
-N 47700 55600 47700 55300 4
-N 48400 55600 48400 55300 4
-C 49800 54500 1 0 0 gnd-1.sym
-N 49900 54800 49900 55100 4
-N 49900 56000 49900 56200 4
-C 45400 56700 1 180 0 diode-sot23.sym
-{
-T 45000 56100 5 10 0 0 180 0 1
-device=DIODE
-T 45100 56200 5 10 1 1 180 0 1
-refdes=D4
-T 45205 56000 5 10 0 1 180 0 1
-footprint=SOT23
-T 45400 56700 5 10 0 1 0 0 1
-pn=PMBD914,215
-}
-N 49900 56200 49300 56200 4
-C 37000 55200 1 90 0 capacitor-1.sym
-{
-T 36300 55400 5 10 0 0 90 0 1
-device=CAPACITOR
-T 36600 55500 5 10 1 1 90 0 1
-refdes=C11
-T 36100 55400 5 10 0 0 90 0 1
-symversion=0.1
-T 37000 55800 5 10 1 1 270 0 1
-value=10 uF
-T 37000 55200 5 10 0 0 270 0 1
-footprint=0805
-T 37000 55200 5 10 0 1 0 0 1
-pn=08056D106MAT2A
-}
-C 36700 54600 1 0 0 gnd-1.sym
-N 36800 54900 36800 55200 4
-C 38200 55100 1 90 0 capacitor-1.sym
-{
-T 37500 55300 5 10 0 0 90 0 1
-device=CAPACITOR
-T 37800 55400 5 10 1 1 90 0 1
-refdes=C12
-T 37300 55300 5 10 0 0 90 0 1
-symversion=0.1
-T 38200 55700 5 10 1 1 270 0 1
-value=10 uF
-T 38200 55100 5 10 0 0 270 0 1
-footprint=0805
-T 38200 55100 5 10 0 1 0 0 1
-pn=08056D106MAT2A
-}
-C 37900 54600 1 0 0 gnd-1.sym
-N 38000 54900 38000 55100 4
-C 37800 56200 1 0 0 3.3V-plus-1.sym
-N 36800 56100 36800 56200 4
-N 36800 56200 36000 56200 4
-N 38000 56200 38000 56000 4
-C 40700 43500 1 0 0 3.3V-plus-1.sym
-N 40900 43500 40900 43400 4
-N 40900 43400 41800 43400 4
-N 41800 43000 41600 43000 4
-N 41800 42600 41600 42600 4
-N 41800 42200 41600 42200 4
-N 41800 41800 41600 41800 4
-N 41000 41400 41800 41400 4
-N 41800 41000 41600 41000 4
-N 41000 40600 41800 40600 4
-N 41600 43400 41600 41800 4
-C 40800 40600 1 0 0 3.3V-plus-1.sym
-C 40900 41100 1 0 0 gnd-1.sym
-N 41600 41400 41600 41000 4
-C 41500 39700 1 0 0 gnd-1.sym
-N 41800 40200 41600 40200 4
-N 41600 40200 41600 40000 4
-C 39200 42800 1 90 0 capacitor-1.sym
-{
-T 38500 43000 5 10 0 0 90 0 1
-device=CAPACITOR
-T 38800 43100 5 10 1 1 90 0 1
-refdes=C13
-T 38300 43000 5 10 0 0 90 0 1
-symversion=0.1
-T 39200 43400 5 10 1 1 270 0 1
-value=2.2 uF
-T 39200 42800 5 10 0 0 270 0 1
-footprint=0805
-T 39200 42800 5 10 0 1 0 0 1
-pn=VJ0805G225KXYTW1BC
-}
-C 40200 42800 1 90 0 capacitor-1.sym
-{
-T 39500 43000 5 10 0 0 90 0 1
-device=CAPACITOR
-T 39800 43100 5 10 1 1 90 0 1
-refdes=C14
-T 39300 43000 5 10 0 0 90 0 1
-symversion=0.1
-T 40200 43400 5 10 1 1 270 0 1
-value=2.2 uF
-T 40200 42800 5 10 0 0 270 0 1
-footprint=0805
-T 40200 42800 5 10 0 1 0 0 1
-pn=VJ0805G225KXYTW1BC
-}
-C 38900 42300 1 0 0 gnd-1.sym
-C 39900 42300 1 0 0 gnd-1.sym
-N 41800 44200 39000 44200 4
-N 39000 44200 39000 43700 4
-N 39000 42800 39000 42600 4
-N 40000 42800 40000 42600 4
-N 40000 43700 40000 44000 4
-N 40000 44000 41500 44000 4
-N 41500 44000 41500 43800 4
-N 41500 43800 41800 43800 4
-C 38100 42800 1 90 0 capacitor-1.sym
-{
-T 37400 43000 5 10 0 0 90 0 1
-device=CAPACITOR
-T 37700 43100 5 10 1 1 90 0 1
-refdes=C15
-T 37200 43000 5 10 0 0 90 0 1
-symversion=0.1
-T 38100 43400 5 10 1 1 270 0 1
-value=0.1 uF
-T 38100 42800 5 10 0 0 270 0 1
-footprint=0603
-T 38100 42800 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 37800 42300 1 0 0 gnd-1.sym
-N 37900 42800 37900 42600 4
-N 37900 43700 37900 44400 4
-N 37900 44400 38500 44400 4
-N 38500 44400 38500 44700 4
-N 38500 44700 39700 44700 4
-N 39700 44700 39700 45000 4
-N 39700 45000 41800 45000 4
-N 44500 58600 44500 59400 4
-N 44500 59400 40500 59400 4
-N 40500 59400 40500 54700 4
-N 40500 54700 46600 54700 4
-N 46600 54700 46600 51000 4
-N 46600 51000 45300 51000 4
-N 44700 58300 44700 59600 4
-N 44700 59600 40300 59600 4
-N 40300 59600 40300 48600 4
-N 40300 48600 41800 48600 4
-N 44900 58000 44900 59800 4
-N 44900 59800 40100 59800 4
-N 40100 59800 40100 48200 4
-N 40100 48200 41800 48200 4
-N 45100 57700 45100 60000 4
-N 45100 60000 39900 60000 4
-N 39900 60000 39900 47800 4
-N 39600 48000 39600 48100 4
-N 39600 47600 39600 47800 4
-N 39600 47400 39600 47500 4
-N 39900 47800 41800 47800 4
-C 50400 39000 1 180 0 MCP3008-ISL-1.sym
-{
-T 47300 38200 5 10 0 1 180 0 1
-footprint=SO16
-T 47400 38100 5 10 0 1 180 0 1
-device=MCP3008-ISL
-T 49300 36800 5 10 1 1 180 0 1
-refdes=U1
-T 50400 39000 5 10 0 1 0 0 1
-pn=MCP3008-ISL
-}
-N 45300 41400 46600 41400 4
-N 46600 41400 46600 38300 4
-N 46600 38300 47900 38300 4
-N 45300 41000 46400 41000 4
-N 46400 38000 46400 41000 4
-N 46400 38000 47900 38000 4
-N 45300 40600 47000 40600 4
-N 47000 40600 47000 38900 4
-N 47000 38900 47900 38900 4
-N 45300 40200 46800 40200 4
-N 46800 40200 46800 38600 4
-N 46800 38600 47900 38600 4
-C 54700 39500 1 180 0 adc_buffer-1.sym
-{
-T 52000 38000 5 10 0 1 180 0 1
-device=ADC buffer
-T 53000 38100 5 10 1 1 180 0 1
-refdes=X8
-}
-C 54700 37400 1 180 0 adc_buffer-1.sym
-{
-T 52000 35900 5 10 0 1 180 0 1
-device=ADC buffer
-T 53000 36000 5 10 1 1 180 0 1
-refdes=X9
-}
-N 53300 37900 53300 37800 4
-N 52000 37800 53300 37800 4
-N 53600 37900 53600 37600 4
-N 53600 37600 51800 37600 4
-N 51800 35500 51800 37600 4
-N 53300 35800 53300 35700 4
-N 53300 35700 52000 35700 4
-N 53600 35800 53600 35500 4
-N 51500 35500 53600 35500 4
-N 52300 36300 50600 36300 4
-N 50600 36300 50600 36800 4
-N 50600 36800 50400 36800 4
-N 52300 36600 50800 36600 4
-N 50800 36600 50800 37100 4
-N 50800 37100 50400 37100 4
-N 52300 36900 51000 36900 4
-N 51000 36900 51000 37400 4
-N 51000 37400 50400 37400 4
-N 52300 37200 51200 37200 4
-N 51200 37200 51200 37700 4
-N 51200 37700 50400 37700 4
-N 52300 39300 50600 39300 4
-N 50600 39300 50600 38900 4
-N 50600 38900 50400 38900 4
-N 52300 39000 50800 39000 4
-N 50800 39000 50800 38600 4
-N 50800 38600 50400 38600 4
-N 52300 38700 51000 38700 4
-N 51000 38700 51000 38300 4
-N 51000 38300 50400 38300 4
-N 52300 38400 51200 38400 4
-N 51200 38400 51200 38000 4
-N 51200 38000 50400 38000 4
-N 47900 36800 47700 36800 4
-N 47700 36100 47700 37400 4
-N 47700 36100 52000 36100 4
-N 47900 37100 47500 37100 4
-N 47500 35900 47500 37700 4
-N 47500 35900 51800 35900 4
-N 47900 37400 47700 37400 4
-N 47900 37700 47500 37700 4
-N 17700 45100 18400 45100 4
-N 18400 44300 17500 44300 4
-N 17500 44300 17500 35200 4
-N 17500 35200 46200 35200 4
-N 46200 35200 46200 49000 4
-N 46200 49000 45300 49000 4
-N 45300 48600 46000 48600 4
-N 46000 35400 46000 48600 4
-N 46000 35400 17700 35400 4
-N 17700 35400 17700 45100 4
-N 27000 51500 33700 51500 4
-N 33700 51500 33700 51000 4
-N 33700 51000 38800 51000 4
-N 38800 51000 38800 51300 4
-N 38800 51300 40900 51300 4
-N 40900 51300 40900 51800 4
-N 40900 51800 41800 51800 4
-N 41800 44600 39900 44600 4
-N 39900 44600 39900 46800 4
-N 28700 46800 39900 46800 4
-N 28700 46800 28700 51900 4
-N 28700 51900 27000 51900 4
-N 27000 51100 28500 51100 4
-N 28500 44100 28500 51100 4
-N 28500 44100 37900 44100 4
-C 48200 34700 1 90 0 capacitor-1.sym
-{
-T 47500 34900 5 10 0 0 90 0 1
-device=CAPACITOR
-T 47800 35000 5 10 1 1 90 0 1
-refdes=C16
-T 47300 34900 5 10 0 0 90 0 1
-symversion=0.1
-T 48200 35300 5 10 1 1 270 0 1
-value=0.1 uF
-T 48200 34700 5 10 0 0 270 0 1
-footprint=0603
-T 48200 34700 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 49300 34700 1 90 0 capacitor-1.sym
-{
-T 48600 34900 5 10 0 0 90 0 1
-device=CAPACITOR
-T 48900 35000 5 10 1 1 90 0 1
-refdes=C17
-T 48400 34900 5 10 0 0 90 0 1
-symversion=0.1
-T 49300 35300 5 10 1 1 270 0 1
-value=0.1 uF
-T 49300 34700 5 10 0 0 270 0 1
-footprint=0603
-T 49300 34700 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-N 48000 36100 48000 35600 4
-N 49100 36100 49100 35600 4
-N 48500 35900 48500 34400 4
-N 48000 34400 49100 34400 4
-N 49100 34400 49100 34700 4
-N 48000 34400 48000 34700 4
-C 15800 54600 1 180 0 connector3-1.sym
-{
-T 14000 53700 5 10 0 0 180 0 1
-device=CONNECTOR_3
-T 15800 53500 5 10 1 1 180 0 1
-refdes=CONN12
-T 15800 54600 5 10 0 0 180 0 1
-footprint=22-23-2031
-T 15800 54600 5 10 0 1 0 0 1
-pn=22-23-2031
-}
-C 13900 53400 1 0 0 gnd-1.sym
-N 14100 53800 14000 53800 4
-N 14000 53800 14000 53700 4
-C 16600 54500 1 0 0 12V-plus-1.sym
-C 13500 54200 1 0 0 12V-plus-1.sym
-N 13700 54200 13700 54100 4
-N 13700 54100 14100 54100 4
-N 17100 55000 17100 54500 4
-N 17100 54500 16800 54500 4
-C 33900 54400 1 0 0 12V-plus-1.sym
-N 34100 54400 34100 54300 4
-N 34100 54300 34400 54300 4
-N 34400 54300 34400 54700 4
-C 61000 38900 1 180 0 connector3-1.sym
-{
-T 59200 38000 5 10 0 0 180 0 1
-device=CONNECTOR_3
-T 61000 37800 5 10 1 1 180 0 1
-refdes=CONN5
-T 61000 38900 5 10 0 0 180 0 1
-footprint=22-23-2031
-T 61000 38900 5 10 0 1 0 0 1
-pn=22-23-2031
-}
-C 58900 30900 1 0 0 gnd-1.sym
-C 61000 40400 1 180 0 connector3-1.sym
-{
-T 59200 39500 5 10 0 0 180 0 1
-device=CONNECTOR_3
-T 61000 39300 5 10 1 1 180 0 1
-refdes=CONN4
-T 61000 40400 5 10 0 0 180 0 1
-footprint=22-23-2031
-T 61000 40400 5 10 0 1 0 0 1
-pn=22-23-2031
-}
-C 61000 41900 1 180 0 connector3-1.sym
-{
-T 59200 41000 5 10 0 0 180 0 1
-device=CONNECTOR_3
-T 61000 40800 5 10 1 1 180 0 1
-refdes=CONN3
-T 61000 41900 5 10 0 0 180 0 1
-footprint=22-23-2031
-T 61000 41900 5 10 0 1 0 0 1
-pn=22-23-2031
-}
-C 61000 43400 1 180 0 connector3-1.sym
-{
-T 59200 42500 5 10 0 0 180 0 1
-device=CONNECTOR_3
-T 61000 42300 5 10 1 1 180 0 1
-refdes=CONN2
-T 61000 43400 5 10 0 0 180 0 1
-footprint=22-23-2031
-T 61000 43400 5 10 0 1 0 0 1
-pn=22-23-2031
-}
-C 61000 37400 1 180 0 connector3-1.sym
-{
-T 59200 36500 5 10 0 0 180 0 1
-device=CONNECTOR_3
-T 61000 36300 5 10 1 1 180 0 1
-refdes=CONN6
-T 61000 37400 5 10 0 0 180 0 1
-footprint=22-23-2031
-T 61000 37400 5 10 0 1 0 0 1
-pn=22-23-2031
-}
-C 61000 35900 1 180 0 connector3-1.sym
-{
-T 59200 35000 5 10 0 0 180 0 1
-device=CONNECTOR_3
-T 61000 34800 5 10 1 1 180 0 1
-refdes=CONN7
-T 61000 35900 5 10 0 0 180 0 1
-footprint=22-23-2031
-T 61000 35900 5 10 0 1 0 0 1
-pn=22-23-2031
-}
-C 61000 34400 1 180 0 connector3-1.sym
-{
-T 59200 33500 5 10 0 0 180 0 1
-device=CONNECTOR_3
-T 61000 33300 5 10 1 1 180 0 1
-refdes=CONN8
-T 61000 34400 5 10 0 0 180 0 1
-footprint=22-23-2031
-T 61000 34400 5 10 0 1 0 0 1
-pn=22-23-2031
-}
-C 61000 32900 1 180 0 connector3-1.sym
-{
-T 59200 32000 5 10 0 0 180 0 1
-device=CONNECTOR_3
-T 61000 31800 5 10 1 1 180 0 1
-refdes=CONN9
-T 61000 32900 5 10 0 0 180 0 1
-footprint=22-23-2031
-T 61000 32900 5 10 0 1 0 0 1
-pn=22-23-2031
-}
-N 59300 42600 59000 42600 4
-N 59000 31200 59000 42600 4
-N 59000 41100 59300 41100 4
-N 59000 39600 59300 39600 4
-N 59000 38100 59300 38100 4
-N 59000 36600 59300 36600 4
-N 59000 35100 59300 35100 4
-N 59000 33600 59300 33600 4
-N 59300 32100 59000 32100 4
-N 58800 42900 59300 42900 4
-N 58800 32400 58800 43400 4
-N 58800 41400 59300 41400 4
-N 58800 39900 59300 39900 4
-N 58800 38400 59300 38400 4
-N 58800 36900 59300 36900 4
-N 58800 35400 59300 35400 4
-N 58800 33900 59300 33900 4
-N 58800 32400 59300 32400 4
-N 59300 43200 56900 43200 4
-N 56900 39300 56900 43200 4
-N 56900 39300 54700 39300 4
-N 59300 41700 57200 41700 4
-N 57200 39000 57200 41700 4
-N 57200 39000 54700 39000 4
-N 59300 40200 57500 40200 4
-N 57500 40200 57500 38700 4
-N 57500 38700 54700 38700 4
-N 59300 38700 57800 38700 4
-N 57800 38700 57800 38400 4
-N 57800 38400 54700 38400 4
-N 54700 37200 59300 37200 4
-N 59300 35700 57600 35700 4
-N 57600 35700 57600 36900 4
-N 57600 36900 54700 36900 4
-N 59300 34200 57300 34200 4
-N 57300 34200 57300 36600 4
-N 57300 36600 54700 36600 4
-N 59300 32700 57000 32700 4
-N 57000 32700 57000 36300 4
-N 57000 36300 54700 36300 4
-C 18000 54800 1 0 0 5V-plus-1.sym
-N 18200 54800 18200 54600 4
-N 18200 54600 17600 54600 4
-C 35800 57500 1 0 0 5V-plus-1.sym
-C 49100 57500 1 0 0 5V-plus-1.sym
-C 51800 38000 1 0 0 5V-plus-1.sym
-N 52000 35700 52000 38000 4
-C 51400 34700 1 0 0 gnd-1.sym
-N 51500 35500 51500 35000 4
-C 58300 41900 1 90 0 capacitor-1.sym
-{
-T 57600 42100 5 10 0 0 90 0 1
-device=CAPACITOR
-T 57900 42200 5 10 1 1 90 0 1
-refdes=C18
-T 57400 42100 5 10 0 0 90 0 1
-symversion=0.1
-T 58300 42500 5 10 1 1 270 0 1
-value=0.1 uF
-T 58300 41900 5 10 0 0 270 0 1
-footprint=0603
-T 58300 41900 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 58300 40400 1 90 0 capacitor-1.sym
-{
-T 57600 40600 5 10 0 0 90 0 1
-device=CAPACITOR
-T 57900 40700 5 10 1 1 90 0 1
-refdes=C19
-T 57400 40600 5 10 0 0 90 0 1
-symversion=0.1
-T 58300 41000 5 10 1 1 270 0 1
-value=0.1 uF
-T 58300 40400 5 10 0 0 270 0 1
-footprint=0603
-T 58300 40400 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 58300 38900 1 90 0 capacitor-1.sym
-{
-T 57600 39100 5 10 0 0 90 0 1
-device=CAPACITOR
-T 57900 39200 5 10 1 1 90 0 1
-refdes=C20
-T 57400 39100 5 10 0 0 90 0 1
-symversion=0.1
-T 58300 39500 5 10 1 1 270 0 1
-value=0.1 uF
-T 58300 38900 5 10 0 0 270 0 1
-footprint=0603
-T 58300 38900 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 58300 37400 1 90 0 capacitor-1.sym
-{
-T 57600 37600 5 10 0 0 90 0 1
-device=CAPACITOR
-T 57900 37700 5 10 1 1 90 0 1
-refdes=C21
-T 57400 37600 5 10 0 0 90 0 1
-symversion=0.1
-T 58300 38000 5 10 1 1 270 0 1
-value=0.1 uF
-T 58300 37400 5 10 0 0 270 0 1
-footprint=0603
-T 58300 37400 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 58300 35900 1 90 0 capacitor-1.sym
-{
-T 57600 36100 5 10 0 0 90 0 1
-device=CAPACITOR
-T 57900 36200 5 10 1 1 90 0 1
-refdes=C22
-T 57400 36100 5 10 0 0 90 0 1
-symversion=0.1
-T 58300 36500 5 10 1 1 270 0 1
-value=0.1 uF
-T 58300 35900 5 10 0 0 270 0 1
-footprint=0603
-T 58300 35900 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 58300 34400 1 90 0 capacitor-1.sym
-{
-T 57600 34600 5 10 0 0 90 0 1
-device=CAPACITOR
-T 57900 34700 5 10 1 1 90 0 1
-refdes=C23
-T 57400 34600 5 10 0 0 90 0 1
-symversion=0.1
-T 58300 35000 5 10 1 1 270 0 1
-value=0.1 uF
-T 58300 34400 5 10 0 0 270 0 1
-footprint=0603
-T 58300 34400 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 58300 32900 1 90 0 capacitor-1.sym
-{
-T 57600 33100 5 10 0 0 90 0 1
-device=CAPACITOR
-T 57900 33200 5 10 1 1 90 0 1
-refdes=C24
-T 57400 33100 5 10 0 0 90 0 1
-symversion=0.1
-T 58300 33500 5 10 1 1 270 0 1
-value=0.1 uF
-T 58300 32900 5 10 0 0 270 0 1
-footprint=0603
-T 58300 32900 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-N 58100 42800 58100 43000 4
-N 58100 41900 58100 41800 4
-N 58100 41800 59000 41800 4
-N 58100 41300 58100 41500 4
-N 59000 40300 58100 40300 4
-N 58100 40300 58100 40400 4
-N 58100 39800 58100 40000 4
-N 58100 38900 58100 38800 4
-N 58100 38800 59000 38800 4
-N 58100 38300 58100 38500 4
-N 59000 37300 58100 37300 4
-N 58100 37300 58100 37400 4
-N 58100 36800 58100 37000 4
-N 59000 35800 58100 35800 4
-N 58100 35800 58100 35900 4
-N 58100 35300 58100 35500 4
-N 58100 34400 58100 34300 4
-N 58100 34300 59000 34300 4
-N 58100 33800 58100 34000 4
-N 58100 32900 58100 32800 4
-N 58100 32800 59000 32800 4
-C 58300 31400 1 90 0 capacitor-1.sym
-{
-T 57600 31600 5 10 0 0 90 0 1
-device=CAPACITOR
-T 57900 31700 5 10 1 1 90 0 1
-refdes=C25
-T 57400 31600 5 10 0 0 90 0 1
-symversion=0.1
-T 58300 32000 5 10 1 1 270 0 1
-value=0.1 uF
-T 58300 31400 5 10 0 0 270 0 1
-footprint=0603
-T 58300 31400 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-N 58100 32300 58100 32500 4
-N 58100 31400 58100 31300 4
-N 58100 31300 59000 31300 4
-C 40100 40500 1 90 0 capacitor-1.sym
-{
-T 39400 40700 5 10 0 0 90 0 1
-device=CAPACITOR
-T 39700 40800 5 10 1 1 90 0 1
-refdes=C26
-T 39200 40700 5 10 0 0 90 0 1
-symversion=0.1
-T 40100 41100 5 10 1 1 270 0 1
-value=0.1 uF
-T 40100 40500 5 10 0 0 270 0 1
-footprint=0603
-T 40100 40500 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 39300 40500 1 90 0 capacitor-1.sym
-{
-T 38600 40700 5 10 0 0 90 0 1
-device=CAPACITOR
-T 38900 40800 5 10 1 1 90 0 1
-refdes=C27
-T 38400 40700 5 10 0 0 90 0 1
-symversion=0.1
-T 39300 41100 5 10 1 1 270 0 1
-value=0.1 uF
-T 39300 40500 5 10 0 0 270 0 1
-footprint=0603
-T 39300 40500 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 38400 40500 1 90 0 capacitor-1.sym
-{
-T 37700 40700 5 10 0 0 90 0 1
-device=CAPACITOR
-T 38000 40800 5 10 1 1 90 0 1
-refdes=C28
-T 37500 40700 5 10 0 0 90 0 1
-symversion=0.1
-T 38400 41100 5 10 1 1 270 0 1
-value=0.1 uF
-T 38400 40500 5 10 0 0 270 0 1
-footprint=0603
-T 38400 40500 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 37600 40500 1 90 0 capacitor-1.sym
-{
-T 36900 40700 5 10 0 0 90 0 1
-device=CAPACITOR
-T 37200 40800 5 10 1 1 90 0 1
-refdes=C29
-T 36700 40700 5 10 0 0 90 0 1
-symversion=0.1
-T 37600 41100 5 10 1 1 270 0 1
-value=0.1 uF
-T 37600 40500 5 10 0 0 270 0 1
-footprint=0603
-T 37600 40500 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 36800 40500 1 90 0 capacitor-1.sym
-{
-T 36100 40700 5 10 0 0 90 0 1
-device=CAPACITOR
-T 36400 40800 5 10 1 1 90 0 1
-refdes=C30
-T 35900 40700 5 10 0 0 90 0 1
-symversion=0.1
-T 36800 41100 5 10 1 1 270 0 1
-value=0.1 uF
-T 36800 40500 5 10 0 0 270 0 1
-footprint=0603
-T 36800 40500 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-C 38100 40000 1 0 0 gnd-1.sym
-C 38000 41600 1 0 0 3.3V-plus-1.sym
-N 36600 40500 36600 40400 4
-N 35800 40400 39900 40400 4
-N 39900 40400 39900 40500 4
-N 39100 40500 39100 40400 4
-N 38200 40500 38200 40400 4
-N 38200 40400 38200 40300 4
-N 37400 40500 37400 40400 4
-N 36600 41400 36600 41500 4
-N 35800 41500 39900 41500 4
-N 39900 41500 39900 41400 4
-N 39100 41400 39100 41500 4
-N 38200 41500 38200 41600 4
-N 38200 41500 38200 41400 4
-N 37400 41400 37400 41500 4
-C 39000 55100 1 90 0 capacitor-1.sym
-{
-T 38300 55300 5 10 0 0 90 0 1
-device=CAPACITOR
-T 38600 55400 5 10 1 1 90 0 1
-refdes=C32
-T 38100 55300 5 10 0 0 90 0 1
-symversion=0.1
-T 39000 55700 5 10 1 1 270 0 1
-value=0.1 uF
-T 39000 55100 5 10 0 0 270 0 1
-footprint=0603
-T 39000 55100 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-N 38000 56100 38800 56100 4
-N 38800 56100 38800 56000 4
-N 38800 55100 38800 55000 4
-N 38800 55000 38000 55000 4
-C 36000 40500 1 90 0 capacitor-1.sym
-{
-T 35300 40700 5 10 0 0 90 0 1
-device=CAPACITOR
-T 35600 40800 5 10 1 1 90 0 1
-refdes=C31
-T 35100 40700 5 10 0 0 90 0 1
-symversion=0.1
-T 36000 41100 5 10 1 1 270 0 1
-value=0.1 uF
-T 36000 40500 5 10 0 0 270 0 1
-footprint=0603
-T 36000 40500 5 10 0 1 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-N 35800 41500 35800 41400 4
-N 35800 40500 35800 40400 4
-C 55100 46000 1 0 0 led-3.sym
-{
-T 56050 46650 5 10 0 0 0 0 1
-device=LED
-T 55550 46550 5 10 1 1 0 0 1
-refdes=D2
-T 55100 46000 5 10 0 0 0 0 1
-footprint=0805
-T 55300 45900 5 10 1 1 0 0 1
-value=yellow
-T 55100 46000 5 10 0 1 0 0 1
-pn=LY R971-HL-1
-}
-C 55100 45100 1 0 0 led-3.sym
-{
-T 56050 45750 5 10 0 0 0 0 1
-device=LED
-T 55550 45650 5 10 1 1 0 0 1
-refdes=D5
-T 55100 45100 5 10 0 0 0 0 1
-footprint=0805
-T 55300 45000 5 10 1 1 0 0 1
-value=green
-T 55100 45100 5 10 0 1 0 0 1
-pn=LG R971-KN-1
-}
-C 55100 44300 1 0 0 led-3.sym
-{
-T 56050 44950 5 10 0 0 0 0 1
-device=LED
-T 55550 44850 5 10 1 1 0 0 1
-refdes=D6
-T 55100 44300 5 10 0 0 0 0 1
-footprint=0805
-T 55300 44200 5 10 1 1 0 0 1
-value=red
-T 55100 44300 5 10 0 1 0 0 1
-pn=LH R974-LP-1
-}
-C 57100 46300 1 180 0 resistor-1.sym
-{
-T 56800 45900 5 10 0 0 180 0 1
-device=RESISTOR
-T 56900 46000 5 10 1 1 180 0 1
-refdes=R13
-T 57100 46300 5 10 0 0 180 0 1
-footprint=0603
-T 57100 46500 5 10 1 1 180 0 1
-value=130 ohms
-T 57100 46300 5 10 0 1 0 0 1
-pn=ERJ-3GEYJ131V
-}
-C 57100 45400 1 180 0 resistor-1.sym
-{
-T 56800 45000 5 10 0 0 180 0 1
-device=RESISTOR
-T 56900 45100 5 10 1 1 180 0 1
-refdes=R14
-T 57100 45400 5 10 0 0 180 0 1
-footprint=0603
-T 57100 45600 5 10 1 1 180 0 1
-value=130 ohms
-T 57100 45400 5 10 0 1 0 0 1
-pn=ERJ-3GEYJ131V
-}
-C 57100 44600 1 180 0 resistor-1.sym
-{
-T 56800 44200 5 10 0 0 180 0 1
-device=RESISTOR
-T 56900 44300 5 10 1 1 180 0 1
-refdes=R15
-T 57100 44600 5 10 0 0 180 0 1
-footprint=0603
-T 57100 44800 5 10 1 1 180 0 1
-value=130 ohms
-T 57100 44600 5 10 0 1 0 0 1
-pn=ERJ-3GEYJ131V
-}
-N 56000 46200 56200 46200 4
-N 56200 45300 56000 45300 4
-N 56200 44500 56000 44500 4
-C 57200 46500 1 0 0 3.3V-plus-1.sym
-N 57400 43800 57400 46500 4
-N 57400 46200 57100 46200 4
-N 57400 45300 57100 45300 4
-N 57400 44500 57100 44500 4
-N 45300 45800 47900 45800 4
-N 47900 45800 47900 45400 4
-N 47900 45400 53900 45400 4
-N 47900 46500 46400 46500 4
-N 46400 46500 46400 50600 4
-N 46400 50600 45300 50600 4
-N 47900 44500 46600 44500 4
-N 46600 44500 46600 50200 4
-N 46600 50200 45300 50200 4
-N 45300 45400 45800 45400 4
-N 45800 45400 45800 50400 4
-N 45800 50400 46800 50400 4
-N 46800 50400 46800 50300 4
-N 46800 50300 47900 50300 4
-N 50500 43900 52000 43900 4
-N 55100 46200 53900 46200 4
-N 53900 46200 53900 45400 4
-N 45300 44600 46400 44600 4
-N 46400 44600 46400 44800 4
-N 46400 44800 47200 44800 4
-N 47200 44800 47200 45200 4
-N 47200 45200 54100 45200 4
-N 54100 45200 54100 45300 4
-N 54100 45300 55100 45300 4
-N 55100 44500 54100 44500 4
-N 54100 44500 54100 40500 4
-N 54100 40500 47400 40500 4
-N 47400 40500 47400 41100 4
-N 47400 41100 46800 41100 4
-N 46800 41100 46800 41200 4
-N 46800 41200 45800 41200 4
-N 45800 41200 45800 41800 4
-N 45800 41800 45300 41800 4
-C 53600 47500 1 270 0 gnd-1.sym
-N 54300 47700 53200 47700 4
-N 53200 47700 53200 47900 4
-N 53200 47900 47800 47900 4
-N 47800 47400 47800 47900 4
-N 47800 47400 45300 47400 4
-N 54300 48000 53400 48000 4
-N 53400 48000 53400 48100 4
-N 53400 48100 47600 48100 4
-N 45300 47000 46800 47000 4
-N 46800 47000 46800 47600 4
-N 46800 47600 47600 47600 4
-N 47600 47600 47600 48100 4
-C 54000 48300 1 90 0 generic-power.sym
-{
-T 53750 48500 5 10 1 1 90 3 1
-net=NRST:1
-}
-C 37100 43700 1 180 0 generic-power.sym
-{
-T 36900 43450 5 10 1 1 180 3 1
-net=NRST:1
-}
-N 36900 43700 36900 44100 4
-C 56000 48500 1 180 0 connector4-1.sym
-{
-T 54200 47600 5 10 0 0 180 0 1
-device=CONNECTOR_4
-T 56000 47100 5 10 1 1 180 0 1
-refdes=CONN1
-T 56000 48500 5 10 0 0 0 0 1
-footprint=22-23-2041
-T 56000 48500 5 10 0 1 0 0 1
-pn=22-23-2041
-}
-N 53900 47400 54300 47400 4
-N 54000 48500 54000 48300 4
-N 54000 48300 54300 48300 4
-N 41800 49400 28900 49400 4
-N 28900 49400 28900 57000 4
-N 28900 57000 13100 57000 4
-N 13100 57000 13100 50700 4
-N 58100 32500 58800 32500 4
-N 58100 43000 58800 43000 4
-N 58100 41500 58800 41500 4
-N 58100 40000 58800 40000 4
-N 58100 38500 58800 38500 4
-N 58100 37000 58800 37000 4
-N 58100 35500 58800 35500 4
-N 58100 34000 58800 34000 4
-C 14300 48100 1 90 0 led-3.sym
-{
-T 13650 49050 5 10 0 0 90 0 1
-device=LED
-T 13750 48550 5 10 1 1 90 0 1
-refdes=D7
-T 14300 48100 5 10 0 0 90 0 1
-footprint=0805
-T 14400 48300 5 10 1 1 90 0 1
-value=green
-T 14300 48100 5 10 0 1 0 0 1
-pn=LG R971-KN-1
-}
-C 14000 50000 1 270 0 resistor-1.sym
-{
-T 14400 49700 5 10 0 0 270 0 1
-device=RESISTOR
-T 14300 49800 5 10 1 1 270 0 1
-refdes=R17
-T 14000 50000 5 10 0 0 270 0 1
-footprint=0603
-T 13800 50000 5 10 1 1 270 0 1
-value=1 kohms
-T 14000 50000 5 10 0 1 0 0 1
-pn=SG73S1JTTD102J
-}
-C 14000 47700 1 0 0 gnd-1.sym
-C 13900 50100 1 0 0 12V-plus-1.sym
-N 14100 50100 14100 50000 4
-N 14100 49000 14100 49100 4
-N 14100 48000 14100 48100 4
-C 55100 43600 1 0 0 led-3.sym
-{
-T 56050 44250 5 10 0 0 0 0 1
-device=LED
-T 55550 44050 5 10 1 1 0 0 1
-refdes=D1
-T 55100 43600 5 10 0 0 0 0 1
-footprint=0805
-T 55300 43500 5 10 1 1 0 0 1
-value=green
-T 55100 43600 5 10 0 1 0 0 1
-pn=LG R971-KN-1
-}
-C 57100 43900 1 180 0 resistor-1.sym
-{
-T 56800 43500 5 10 0 0 180 0 1
-device=RESISTOR
-T 56900 43600 5 10 1 1 180 0 1
-refdes=R1
-T 57100 43900 5 10 0 0 180 0 1
-footprint=0603
-T 57100 44100 5 10 1 1 180 0 1
-value=130 ohms
-T 57100 43900 5 10 0 1 0 0 1
-pn=ERJ-3GEYJ131V
-}
-N 56200 43800 56000 43800 4
-N 57400 43800 57100 43800 4
-N 41800 51400 41100 51400 4
-N 41100 51400 41100 53400 4
-N 41100 53400 52800 53400 4
-N 52800 53400 52800 43800 4
-N 52800 43800 55100 43800 4
diff --git a/bbb_cape/schematic/cape.gsch2pcb b/bbb_cape/schematic/cape.gsch2pcb
deleted file mode 100644
index e8ff08e..0000000
--- a/bbb_cape/schematic/cape.gsch2pcb
+++ /dev/null
@@ -1,2 +0,0 @@
-schematics cape-main.sch
-output-name cape
diff --git a/bbb_cape/schematic/cape.pcb b/bbb_cape/schematic/cape.pcb
deleted file mode 100644
index c9667a5..0000000
--- a/bbb_cape/schematic/cape.pcb
+++ /dev/null
@@ -1,7504 +0,0 @@
-# release: pcb 20110918
-
-# To read pcb files, the pcb version (or the git source date) must be >= the file version
-FileVersion[20070407]
-
-PCB["971 BBB Cape" 500000 400000]
-
-Grid[500.0 441 0 0]
-Cursor[267441 75500 0.000000]
-PolyArea[3100.006200]
-Thermal[0.500000]
-DRC[800 1000 800 10 1000 500]
-Flags("showdrc,rubberband,autodrc,clearnew,snappin,hidenames")
-Groups("1,c:3:2:4,s:5")
-Styles["Signal,800,2000,1000,800:Power,2500,6000,3500,1000:Fat,4000,6000,3500,1000:Skinny,600,2402,1181,600"]
-
-Symbol[' ' 1800]
-(
-)
-Symbol['!' 1200]
-(
-	SymbolLine[0 4500 0 5000 800]
-	SymbolLine[0 1000 0 3500 800]
-)
-Symbol['"' 1200]
-(
-	SymbolLine[0 1000 0 2000 800]
-	SymbolLine[1000 1000 1000 2000 800]
-)
-Symbol['#' 1200]
-(
-	SymbolLine[0 3500 2000 3500 800]
-	SymbolLine[0 2500 2000 2500 800]
-	SymbolLine[1500 2000 1500 4000 800]
-	SymbolLine[500 2000 500 4000 800]
-)
-Symbol['$' 1200]
-(
-	SymbolLine[1500 1500 2000 2000 800]
-	SymbolLine[500 1500 1500 1500 800]
-	SymbolLine[0 2000 500 1500 800]
-	SymbolLine[0 2000 0 2500 800]
-	SymbolLine[0 2500 500 3000 800]
-	SymbolLine[500 3000 1500 3000 800]
-	SymbolLine[1500 3000 2000 3500 800]
-	SymbolLine[2000 3500 2000 4000 800]
-	SymbolLine[1500 4500 2000 4000 800]
-	SymbolLine[500 4500 1500 4500 800]
-	SymbolLine[0 4000 500 4500 800]
-	SymbolLine[1000 1000 1000 5000 800]
-)
-Symbol['%' 1200]
-(
-	SymbolLine[0 1500 0 2000 800]
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[500 1000 1000 1000 800]
-	SymbolLine[1000 1000 1500 1500 800]
-	SymbolLine[1500 1500 1500 2000 800]
-	SymbolLine[1000 2500 1500 2000 800]
-	SymbolLine[500 2500 1000 2500 800]
-	SymbolLine[0 2000 500 2500 800]
-	SymbolLine[0 5000 4000 1000 800]
-	SymbolLine[3500 5000 4000 4500 800]
-	SymbolLine[4000 4000 4000 4500 800]
-	SymbolLine[3500 3500 4000 4000 800]
-	SymbolLine[3000 3500 3500 3500 800]
-	SymbolLine[2500 4000 3000 3500 800]
-	SymbolLine[2500 4000 2500 4500 800]
-	SymbolLine[2500 4500 3000 5000 800]
-	SymbolLine[3000 5000 3500 5000 800]
-)
-Symbol['&' 1200]
-(
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[0 1500 0 2500 800]
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[0 3500 1500 2000 800]
-	SymbolLine[500 5000 1000 5000 800]
-	SymbolLine[1000 5000 2000 4000 800]
-	SymbolLine[0 2500 2500 5000 800]
-	SymbolLine[500 1000 1000 1000 800]
-	SymbolLine[1000 1000 1500 1500 800]
-	SymbolLine[1500 1500 1500 2000 800]
-	SymbolLine[0 3500 0 4500 800]
-)
-Symbol[''' 1200]
-(
-	SymbolLine[0 2000 1000 1000 800]
-)
-Symbol['(' 1200]
-(
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[0 1500 0 4500 800]
-)
-Symbol[')' 1200]
-(
-	SymbolLine[0 1000 500 1500 800]
-	SymbolLine[500 1500 500 4500 800]
-	SymbolLine[0 5000 500 4500 800]
-)
-Symbol['*' 1200]
-(
-	SymbolLine[0 2000 2000 4000 800]
-	SymbolLine[0 4000 2000 2000 800]
-	SymbolLine[0 3000 2000 3000 800]
-	SymbolLine[1000 2000 1000 4000 800]
-)
-Symbol['+' 1200]
-(
-	SymbolLine[0 3000 2000 3000 800]
-	SymbolLine[1000 2000 1000 4000 800]
-)
-Symbol[',' 1200]
-(
-	SymbolLine[0 6000 1000 5000 800]
-)
-Symbol['-' 1200]
-(
-	SymbolLine[0 3000 2000 3000 800]
-)
-Symbol['.' 1200]
-(
-	SymbolLine[0 5000 500 5000 800]
-)
-Symbol['/' 1200]
-(
-	SymbolLine[0 4500 3000 1500 800]
-)
-Symbol['0' 1200]
-(
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[0 1500 0 4500 800]
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[500 1000 1500 1000 800]
-	SymbolLine[1500 1000 2000 1500 800]
-	SymbolLine[2000 1500 2000 4500 800]
-	SymbolLine[1500 5000 2000 4500 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[0 4000 2000 2000 800]
-)
-Symbol['1' 1200]
-(
-	SymbolLine[0 1800 800 1000 800]
-	SymbolLine[800 1000 800 5000 800]
-	SymbolLine[0 5000 1500 5000 800]
-)
-Symbol['2' 1200]
-(
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[500 1000 2000 1000 800]
-	SymbolLine[2000 1000 2500 1500 800]
-	SymbolLine[2500 1500 2500 2500 800]
-	SymbolLine[0 5000 2500 2500 800]
-	SymbolLine[0 5000 2500 5000 800]
-)
-Symbol['3' 1200]
-(
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[500 1000 1500 1000 800]
-	SymbolLine[1500 1000 2000 1500 800]
-	SymbolLine[1500 5000 2000 4500 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[500 2800 1500 2800 800]
-	SymbolLine[2000 1500 2000 2300 800]
-	SymbolLine[2000 3300 2000 4500 800]
-	SymbolLine[2000 3300 1500 2800 800]
-	SymbolLine[2000 2300 1500 2800 800]
-)
-Symbol['4' 1200]
-(
-	SymbolLine[0 3500 2000 1000 800]
-	SymbolLine[0 3500 2500 3500 800]
-	SymbolLine[2000 1000 2000 5000 800]
-)
-Symbol['5' 1200]
-(
-	SymbolLine[0 1000 2000 1000 800]
-	SymbolLine[0 1000 0 3000 800]
-	SymbolLine[0 3000 500 2500 800]
-	SymbolLine[500 2500 1500 2500 800]
-	SymbolLine[1500 2500 2000 3000 800]
-	SymbolLine[2000 3000 2000 4500 800]
-	SymbolLine[1500 5000 2000 4500 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[0 4500 500 5000 800]
-)
-Symbol['6' 1200]
-(
-	SymbolLine[1500 1000 2000 1500 800]
-	SymbolLine[500 1000 1500 1000 800]
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[0 1500 0 4500 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[1500 2800 2000 3300 800]
-	SymbolLine[0 2800 1500 2800 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[1500 5000 2000 4500 800]
-	SymbolLine[2000 3300 2000 4500 800]
-)
-Symbol['7' 1200]
-(
-	SymbolLine[500 5000 2500 1000 800]
-	SymbolLine[0 1000 2500 1000 800]
-)
-Symbol['8' 1200]
-(
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[0 3700 0 4500 800]
-	SymbolLine[0 3700 700 3000 800]
-	SymbolLine[700 3000 1300 3000 800]
-	SymbolLine[1300 3000 2000 3700 800]
-	SymbolLine[2000 3700 2000 4500 800]
-	SymbolLine[1500 5000 2000 4500 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[0 2300 700 3000 800]
-	SymbolLine[0 1500 0 2300 800]
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[500 1000 1500 1000 800]
-	SymbolLine[1500 1000 2000 1500 800]
-	SymbolLine[2000 1500 2000 2300 800]
-	SymbolLine[1300 3000 2000 2300 800]
-)
-Symbol['9' 1200]
-(
-	SymbolLine[500 5000 2000 3000 800]
-	SymbolLine[2000 1500 2000 3000 800]
-	SymbolLine[1500 1000 2000 1500 800]
-	SymbolLine[500 1000 1500 1000 800]
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[0 1500 0 2500 800]
-	SymbolLine[0 2500 500 3000 800]
-	SymbolLine[500 3000 2000 3000 800]
-)
-Symbol[':' 1200]
-(
-	SymbolLine[0 2500 500 2500 800]
-	SymbolLine[0 3500 500 3500 800]
-)
-Symbol[';' 1200]
-(
-	SymbolLine[0 5000 1000 4000 800]
-	SymbolLine[1000 2500 1000 3000 800]
-)
-Symbol['<' 1200]
-(
-	SymbolLine[0 3000 1000 2000 800]
-	SymbolLine[0 3000 1000 4000 800]
-)
-Symbol['=' 1200]
-(
-	SymbolLine[0 2500 2000 2500 800]
-	SymbolLine[0 3500 2000 3500 800]
-)
-Symbol['>' 1200]
-(
-	SymbolLine[0 2000 1000 3000 800]
-	SymbolLine[0 4000 1000 3000 800]
-)
-Symbol['?' 1200]
-(
-	SymbolLine[1000 3000 1000 3500 800]
-	SymbolLine[1000 4500 1000 5000 800]
-	SymbolLine[0 1500 0 2000 800]
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[500 1000 1500 1000 800]
-	SymbolLine[1500 1000 2000 1500 800]
-	SymbolLine[2000 1500 2000 2000 800]
-	SymbolLine[1000 3000 2000 2000 800]
-)
-Symbol['@' 1200]
-(
-	SymbolLine[0 1000 0 4000 800]
-	SymbolLine[0 4000 1000 5000 800]
-	SymbolLine[1000 5000 4000 5000 800]
-	SymbolLine[5000 3500 5000 1000 800]
-	SymbolLine[5000 1000 4000 0 800]
-	SymbolLine[4000 0 1000 0 800]
-	SymbolLine[1000 0 0 1000 800]
-	SymbolLine[1500 2000 1500 3000 800]
-	SymbolLine[1500 3000 2000 3500 800]
-	SymbolLine[2000 3500 3000 3500 800]
-	SymbolLine[3000 3500 3500 3000 800]
-	SymbolLine[3500 3000 4000 3500 800]
-	SymbolLine[3500 3000 3500 1500 800]
-	SymbolLine[3500 2000 3000 1500 800]
-	SymbolLine[2000 1500 3000 1500 800]
-	SymbolLine[2000 1500 1500 2000 800]
-	SymbolLine[4000 3500 5000 3500 800]
-)
-Symbol['A' 1200]
-(
-	SymbolLine[0 2000 0 5000 800]
-	SymbolLine[0 2000 700 1000 800]
-	SymbolLine[700 1000 1800 1000 800]
-	SymbolLine[1800 1000 2500 2000 800]
-	SymbolLine[2500 2000 2500 5000 800]
-	SymbolLine[0 3000 2500 3000 800]
-)
-Symbol['B' 1200]
-(
-	SymbolLine[0 5000 2000 5000 800]
-	SymbolLine[2000 5000 2500 4500 800]
-	SymbolLine[2500 3300 2500 4500 800]
-	SymbolLine[2000 2800 2500 3300 800]
-	SymbolLine[500 2800 2000 2800 800]
-	SymbolLine[500 1000 500 5000 800]
-	SymbolLine[0 1000 2000 1000 800]
-	SymbolLine[2000 1000 2500 1500 800]
-	SymbolLine[2500 1500 2500 2300 800]
-	SymbolLine[2000 2800 2500 2300 800]
-)
-Symbol['C' 1200]
-(
-	SymbolLine[700 5000 2000 5000 800]
-	SymbolLine[0 4300 700 5000 800]
-	SymbolLine[0 1700 0 4300 800]
-	SymbolLine[0 1700 700 1000 800]
-	SymbolLine[700 1000 2000 1000 800]
-)
-Symbol['D' 1200]
-(
-	SymbolLine[500 1000 500 5000 800]
-	SymbolLine[1800 1000 2500 1700 800]
-	SymbolLine[2500 1700 2500 4300 800]
-	SymbolLine[1800 5000 2500 4300 800]
-	SymbolLine[0 5000 1800 5000 800]
-	SymbolLine[0 1000 1800 1000 800]
-)
-Symbol['E' 1200]
-(
-	SymbolLine[0 2800 1500 2800 800]
-	SymbolLine[0 5000 2000 5000 800]
-	SymbolLine[0 1000 0 5000 800]
-	SymbolLine[0 1000 2000 1000 800]
-)
-Symbol['F' 1200]
-(
-	SymbolLine[0 1000 0 5000 800]
-	SymbolLine[0 1000 2000 1000 800]
-	SymbolLine[0 2800 1500 2800 800]
-)
-Symbol['G' 1200]
-(
-	SymbolLine[2000 1000 2500 1500 800]
-	SymbolLine[500 1000 2000 1000 800]
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[0 1500 0 4500 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[500 5000 2000 5000 800]
-	SymbolLine[2000 5000 2500 4500 800]
-	SymbolLine[2500 3500 2500 4500 800]
-	SymbolLine[2000 3000 2500 3500 800]
-	SymbolLine[1000 3000 2000 3000 800]
-)
-Symbol['H' 1200]
-(
-	SymbolLine[0 1000 0 5000 800]
-	SymbolLine[2500 1000 2500 5000 800]
-	SymbolLine[0 3000 2500 3000 800]
-)
-Symbol['I' 1200]
-(
-	SymbolLine[0 1000 1000 1000 800]
-	SymbolLine[500 1000 500 5000 800]
-	SymbolLine[0 5000 1000 5000 800]
-)
-Symbol['J' 1200]
-(
-	SymbolLine[700 1000 1500 1000 800]
-	SymbolLine[1500 1000 1500 4500 800]
-	SymbolLine[1000 5000 1500 4500 800]
-	SymbolLine[500 5000 1000 5000 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[0 4500 0 4000 800]
-)
-Symbol['K' 1200]
-(
-	SymbolLine[0 1000 0 5000 800]
-	SymbolLine[0 3000 2000 1000 800]
-	SymbolLine[0 3000 2000 5000 800]
-)
-Symbol['L' 1200]
-(
-	SymbolLine[0 1000 0 5000 800]
-	SymbolLine[0 5000 2000 5000 800]
-)
-Symbol['M' 1200]
-(
-	SymbolLine[0 1000 0 5000 800]
-	SymbolLine[0 1000 1500 3000 800]
-	SymbolLine[1500 3000 3000 1000 800]
-	SymbolLine[3000 1000 3000 5000 800]
-)
-Symbol['N' 1200]
-(
-	SymbolLine[0 1000 0 5000 800]
-	SymbolLine[0 1000 2500 5000 800]
-	SymbolLine[2500 1000 2500 5000 800]
-)
-Symbol['O' 1200]
-(
-	SymbolLine[0 1500 0 4500 800]
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[500 1000 1500 1000 800]
-	SymbolLine[1500 1000 2000 1500 800]
-	SymbolLine[2000 1500 2000 4500 800]
-	SymbolLine[1500 5000 2000 4500 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[0 4500 500 5000 800]
-)
-Symbol['P' 1200]
-(
-	SymbolLine[500 1000 500 5000 800]
-	SymbolLine[0 1000 2000 1000 800]
-	SymbolLine[2000 1000 2500 1500 800]
-	SymbolLine[2500 1500 2500 2500 800]
-	SymbolLine[2000 3000 2500 2500 800]
-	SymbolLine[500 3000 2000 3000 800]
-)
-Symbol['Q' 1200]
-(
-	SymbolLine[0 1500 0 4500 800]
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[500 1000 1500 1000 800]
-	SymbolLine[1500 1000 2000 1500 800]
-	SymbolLine[2000 1500 2000 4000 800]
-	SymbolLine[1000 5000 2000 4000 800]
-	SymbolLine[500 5000 1000 5000 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[1000 3500 2000 5000 800]
-)
-Symbol['R' 1200]
-(
-	SymbolLine[0 1000 2000 1000 800]
-	SymbolLine[2000 1000 2500 1500 800]
-	SymbolLine[2500 1500 2500 2500 800]
-	SymbolLine[2000 3000 2500 2500 800]
-	SymbolLine[500 3000 2000 3000 800]
-	SymbolLine[500 1000 500 5000 800]
-	SymbolLine[1300 3000 2500 5000 800]
-)
-Symbol['S' 1200]
-(
-	SymbolLine[2000 1000 2500 1500 800]
-	SymbolLine[500 1000 2000 1000 800]
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[0 1500 0 2500 800]
-	SymbolLine[0 2500 500 3000 800]
-	SymbolLine[500 3000 2000 3000 800]
-	SymbolLine[2000 3000 2500 3500 800]
-	SymbolLine[2500 3500 2500 4500 800]
-	SymbolLine[2000 5000 2500 4500 800]
-	SymbolLine[500 5000 2000 5000 800]
-	SymbolLine[0 4500 500 5000 800]
-)
-Symbol['T' 1200]
-(
-	SymbolLine[0 1000 2000 1000 800]
-	SymbolLine[1000 1000 1000 5000 800]
-)
-Symbol['U' 1200]
-(
-	SymbolLine[0 1000 0 4500 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[1500 5000 2000 4500 800]
-	SymbolLine[2000 1000 2000 4500 800]
-)
-Symbol['V' 1200]
-(
-	SymbolLine[0 1000 1000 5000 800]
-	SymbolLine[1000 5000 2000 1000 800]
-)
-Symbol['W' 1200]
-(
-	SymbolLine[0 1000 0 3000 800]
-	SymbolLine[0 3000 500 5000 800]
-	SymbolLine[500 5000 1500 3000 800]
-	SymbolLine[1500 3000 2500 5000 800]
-	SymbolLine[2500 5000 3000 3000 800]
-	SymbolLine[3000 3000 3000 1000 800]
-)
-Symbol['X' 1200]
-(
-	SymbolLine[0 5000 2500 1000 800]
-	SymbolLine[0 1000 2500 5000 800]
-)
-Symbol['Y' 1200]
-(
-	SymbolLine[0 1000 1000 3000 800]
-	SymbolLine[1000 3000 2000 1000 800]
-	SymbolLine[1000 3000 1000 5000 800]
-)
-Symbol['Z' 1200]
-(
-	SymbolLine[0 1000 2500 1000 800]
-	SymbolLine[0 5000 2500 1000 800]
-	SymbolLine[0 5000 2500 5000 800]
-)
-Symbol['[' 1200]
-(
-	SymbolLine[0 1000 500 1000 800]
-	SymbolLine[0 1000 0 5000 800]
-	SymbolLine[0 5000 500 5000 800]
-)
-Symbol['\' 1200]
-(
-	SymbolLine[0 1500 3000 4500 800]
-)
-Symbol[']' 1200]
-(
-	SymbolLine[0 1000 500 1000 800]
-	SymbolLine[500 1000 500 5000 800]
-	SymbolLine[0 5000 500 5000 800]
-)
-Symbol['^' 1200]
-(
-	SymbolLine[0 1500 500 1000 800]
-	SymbolLine[500 1000 1000 1500 800]
-)
-Symbol['_' 1200]
-(
-	SymbolLine[0 5000 2000 5000 800]
-)
-Symbol['a' 1200]
-(
-	SymbolLine[1500 3000 2000 3500 800]
-	SymbolLine[500 3000 1500 3000 800]
-	SymbolLine[0 3500 500 3000 800]
-	SymbolLine[0 3500 0 4500 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[2000 3000 2000 4500 800]
-	SymbolLine[2000 4500 2500 5000 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[1500 5000 2000 4500 800]
-)
-Symbol['b' 1200]
-(
-	SymbolLine[0 1000 0 5000 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[1500 5000 2000 4500 800]
-	SymbolLine[2000 3500 2000 4500 800]
-	SymbolLine[1500 3000 2000 3500 800]
-	SymbolLine[500 3000 1500 3000 800]
-	SymbolLine[0 3500 500 3000 800]
-)
-Symbol['c' 1200]
-(
-	SymbolLine[500 3000 2000 3000 800]
-	SymbolLine[0 3500 500 3000 800]
-	SymbolLine[0 3500 0 4500 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[500 5000 2000 5000 800]
-)
-Symbol['d' 1200]
-(
-	SymbolLine[2000 1000 2000 5000 800]
-	SymbolLine[1500 5000 2000 4500 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[0 3500 0 4500 800]
-	SymbolLine[0 3500 500 3000 800]
-	SymbolLine[500 3000 1500 3000 800]
-	SymbolLine[1500 3000 2000 3500 800]
-)
-Symbol['e' 1200]
-(
-	SymbolLine[500 5000 2000 5000 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[0 3500 0 4500 800]
-	SymbolLine[0 3500 500 3000 800]
-	SymbolLine[500 3000 1500 3000 800]
-	SymbolLine[1500 3000 2000 3500 800]
-	SymbolLine[0 4000 2000 4000 800]
-	SymbolLine[2000 4000 2000 3500 800]
-)
-Symbol['f' 1000]
-(
-	SymbolLine[500 1500 500 5000 800]
-	SymbolLine[500 1500 1000 1000 800]
-	SymbolLine[1000 1000 1500 1000 800]
-	SymbolLine[0 3000 1000 3000 800]
-)
-Symbol['g' 1200]
-(
-	SymbolLine[1500 3000 2000 3500 800]
-	SymbolLine[500 3000 1500 3000 800]
-	SymbolLine[0 3500 500 3000 800]
-	SymbolLine[0 3500 0 4500 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[1500 5000 2000 4500 800]
-	SymbolLine[0 6000 500 6500 800]
-	SymbolLine[500 6500 1500 6500 800]
-	SymbolLine[1500 6500 2000 6000 800]
-	SymbolLine[2000 3000 2000 6000 800]
-)
-Symbol['h' 1200]
-(
-	SymbolLine[0 1000 0 5000 800]
-	SymbolLine[0 3500 500 3000 800]
-	SymbolLine[500 3000 1500 3000 800]
-	SymbolLine[1500 3000 2000 3500 800]
-	SymbolLine[2000 3500 2000 5000 800]
-)
-Symbol['i' 1000]
-(
-	SymbolLine[0 2000 0 2100 1000]
-	SymbolLine[0 3500 0 5000 800]
-)
-Symbol['j' 1000]
-(
-	SymbolLine[500 2000 500 2100 1000]
-	SymbolLine[500 3500 500 6000 800]
-	SymbolLine[0 6500 500 6000 800]
-)
-Symbol['k' 1200]
-(
-	SymbolLine[0 1000 0 5000 800]
-	SymbolLine[0 3500 1500 5000 800]
-	SymbolLine[0 3500 1000 2500 800]
-)
-Symbol['l' 1000]
-(
-	SymbolLine[0 1000 0 4500 800]
-	SymbolLine[0 4500 500 5000 800]
-)
-Symbol['m' 1200]
-(
-	SymbolLine[500 3500 500 5000 800]
-	SymbolLine[500 3500 1000 3000 800]
-	SymbolLine[1000 3000 1500 3000 800]
-	SymbolLine[1500 3000 2000 3500 800]
-	SymbolLine[2000 3500 2000 5000 800]
-	SymbolLine[2000 3500 2500 3000 800]
-	SymbolLine[2500 3000 3000 3000 800]
-	SymbolLine[3000 3000 3500 3500 800]
-	SymbolLine[3500 3500 3500 5000 800]
-	SymbolLine[0 3000 500 3500 800]
-)
-Symbol['n' 1200]
-(
-	SymbolLine[500 3500 500 5000 800]
-	SymbolLine[500 3500 1000 3000 800]
-	SymbolLine[1000 3000 1500 3000 800]
-	SymbolLine[1500 3000 2000 3500 800]
-	SymbolLine[2000 3500 2000 5000 800]
-	SymbolLine[0 3000 500 3500 800]
-)
-Symbol['o' 1200]
-(
-	SymbolLine[0 3500 0 4500 800]
-	SymbolLine[0 3500 500 3000 800]
-	SymbolLine[500 3000 1500 3000 800]
-	SymbolLine[1500 3000 2000 3500 800]
-	SymbolLine[2000 3500 2000 4500 800]
-	SymbolLine[1500 5000 2000 4500 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[0 4500 500 5000 800]
-)
-Symbol['p' 1200]
-(
-	SymbolLine[500 3500 500 6500 800]
-	SymbolLine[0 3000 500 3500 800]
-	SymbolLine[500 3500 1000 3000 800]
-	SymbolLine[1000 3000 2000 3000 800]
-	SymbolLine[2000 3000 2500 3500 800]
-	SymbolLine[2500 3500 2500 4500 800]
-	SymbolLine[2000 5000 2500 4500 800]
-	SymbolLine[1000 5000 2000 5000 800]
-	SymbolLine[500 4500 1000 5000 800]
-)
-Symbol['q' 1200]
-(
-	SymbolLine[2000 3500 2000 6500 800]
-	SymbolLine[1500 3000 2000 3500 800]
-	SymbolLine[500 3000 1500 3000 800]
-	SymbolLine[0 3500 500 3000 800]
-	SymbolLine[0 3500 0 4500 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[1500 5000 2000 4500 800]
-)
-Symbol['r' 1200]
-(
-	SymbolLine[500 3500 500 5000 800]
-	SymbolLine[500 3500 1000 3000 800]
-	SymbolLine[1000 3000 2000 3000 800]
-	SymbolLine[0 3000 500 3500 800]
-)
-Symbol['s' 1200]
-(
-	SymbolLine[500 5000 2000 5000 800]
-	SymbolLine[2000 5000 2500 4500 800]
-	SymbolLine[2000 4000 2500 4500 800]
-	SymbolLine[500 4000 2000 4000 800]
-	SymbolLine[0 3500 500 4000 800]
-	SymbolLine[0 3500 500 3000 800]
-	SymbolLine[500 3000 2000 3000 800]
-	SymbolLine[2000 3000 2500 3500 800]
-	SymbolLine[0 4500 500 5000 800]
-)
-Symbol['t' 1000]
-(
-	SymbolLine[500 1000 500 4500 800]
-	SymbolLine[500 4500 1000 5000 800]
-	SymbolLine[0 2500 1000 2500 800]
-)
-Symbol['u' 1200]
-(
-	SymbolLine[0 3000 0 4500 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[1500 5000 2000 4500 800]
-	SymbolLine[2000 3000 2000 4500 800]
-)
-Symbol['v' 1200]
-(
-	SymbolLine[0 3000 1000 5000 800]
-	SymbolLine[2000 3000 1000 5000 800]
-)
-Symbol['w' 1200]
-(
-	SymbolLine[0 3000 0 4500 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[500 5000 1000 5000 800]
-	SymbolLine[1000 5000 1500 4500 800]
-	SymbolLine[1500 3000 1500 4500 800]
-	SymbolLine[1500 4500 2000 5000 800]
-	SymbolLine[2000 5000 2500 5000 800]
-	SymbolLine[2500 5000 3000 4500 800]
-	SymbolLine[3000 3000 3000 4500 800]
-)
-Symbol['x' 1200]
-(
-	SymbolLine[0 3000 2000 5000 800]
-	SymbolLine[0 5000 2000 3000 800]
-)
-Symbol['y' 1200]
-(
-	SymbolLine[0 3000 0 4500 800]
-	SymbolLine[0 4500 500 5000 800]
-	SymbolLine[2000 3000 2000 6000 800]
-	SymbolLine[1500 6500 2000 6000 800]
-	SymbolLine[500 6500 1500 6500 800]
-	SymbolLine[0 6000 500 6500 800]
-	SymbolLine[500 5000 1500 5000 800]
-	SymbolLine[1500 5000 2000 4500 800]
-)
-Symbol['z' 1200]
-(
-	SymbolLine[0 3000 2000 3000 800]
-	SymbolLine[0 5000 2000 3000 800]
-	SymbolLine[0 5000 2000 5000 800]
-)
-Symbol['{' 1200]
-(
-	SymbolLine[500 1500 1000 1000 800]
-	SymbolLine[500 1500 500 2500 800]
-	SymbolLine[0 3000 500 2500 800]
-	SymbolLine[0 3000 500 3500 800]
-	SymbolLine[500 3500 500 4500 800]
-	SymbolLine[500 4500 1000 5000 800]
-)
-Symbol['|' 1200]
-(
-	SymbolLine[0 1000 0 5000 800]
-)
-Symbol['}' 1200]
-(
-	SymbolLine[0 1000 500 1500 800]
-	SymbolLine[500 1500 500 2500 800]
-	SymbolLine[500 2500 1000 3000 800]
-	SymbolLine[500 3500 1000 3000 800]
-	SymbolLine[500 3500 500 4500 800]
-	SymbolLine[0 5000 500 4500 800]
-)
-Symbol['~' 1200]
-(
-	SymbolLine[0 3500 500 3000 800]
-	SymbolLine[500 3000 1000 3000 800]
-	SymbolLine[1000 3000 1500 3500 800]
-	SymbolLine[1500 3500 2000 3500 800]
-	SymbolLine[2000 3500 2500 3000 800]
-)
-Attribute("import::src0" "/home/austin/local/robotics/git.frc971/bbb_cape/schematic/cape-main.sch")
-Attribute("PCB::grid::unit" "mil")
-Via[432324 289000 3600 2000 0 2000 "" ""]
-Via[386441 237000 3600 2000 0 2000 "" ""]
-Via[387441 74000 3600 2000 0 2000 "" ""]
-Via[393441 45000 3600 2000 0 2000 "" ""]
-Via[386720 118000 3600 2000 0 2000 "" ""]
-Via[400441 206000 3600 2000 0 2000 "" ""]
-Via[389441 216000 3600 2000 0 2000 "" ""]
-Via[400441 211000 3600 2000 0 2000 "" ""]
-Via[393441 192000 3600 2000 0 2000 "" ""]
-Via[393441 73000 3600 2000 0 2000 "" ""]
-Via[385941 45500 3600 2000 0 2000 "" ""]
-Via[375441 165000 3600 2000 0 2000 "" ""]
-Via[384162 212000 3600 2000 0 2000 "" ""]
-Via[387070 165000 3600 2000 0 2000 "" ""]
-Via[384162 94000 3600 2000 0 2000 "" ""]
-Via[458441 25000 3600 2000 0 2000 "" ""]
-Via[458441 55000 3600 2000 0 2000 "" ""]
-Via[458441 85000 3600 2000 0 2000 "" ""]
-Via[458441 115000 3600 2000 0 2000 "" ""]
-Via[458441 146000 3600 2000 0 2000 "" ""]
-Via[458441 175000 3600 2000 0 2000 "" ""]
-Via[458441 205000 3600 2000 0 2000 "" ""]
-Via[458441 236000 3600 2000 0 2000 "" ""]
-Via[446441 298000 3600 2000 0 2000 "" ""]
-Via[434882 325000 3600 2000 0 2000 "" ""]
-Via[423441 325000 3600 2000 0 2000 "" ""]
-Via[372441 229614 3600 2000 0 2000 "" ""]
-Via[398441 152000 3600 2000 0 2000 "" ""]
-Via[398441 147000 3600 2000 0 2000 "" ""]
-Via[384512 142000 3600 2000 0 2000 "" ""]
-Via[398441 86000 3600 2000 0 2000 "" ""]
-Via[398441 91000 3600 2000 0 2000 "" ""]
-Via[372441 109311 3600 2000 0 2000 "" ""]
-Via[372441 48811 3600 2000 0 2000 "" ""]
-Via[383662 21500 3600 2000 0 2000 "" ""]
-Via[397441 27000 3600 2000 0 2000 "" ""]
-Via[397941 32559 3600 2000 0 2000 "" ""]
-Via[307716 124925 2500 1600 0 1000 "" ""]
-Via[308992 128029 2500 1600 0 1000 "" ""]
-Via[308872 133478 2500 1600 0 1000 "" ""]
-Via[245557 120492 2500 1600 0 1000 "" ""]
-Via[266413 103406 2500 1600 0 1000 "" ""]
-Via[263240 104671 2500 1600 0 1000 "" ""]
-Via[262740 108171 2500 1600 0 1000 "" ""]
-Via[254740 101671 2500 1600 0 1000 "" ""]
-Via[287917 92171 2500 1600 0 1000 "" ""]
-Via[269653 101369 2500 1600 0 1000 "" ""]
-Via[273229 101418 2500 1600 0 1000 "" ""]
-Via[278225 120398 2500 1600 0 1000 "" ""]
-Via[262750 131228 2500 1600 0 1000 "" ""]
-Via[293902 117737 2500 1600 0 1000 "" ""]
-Via[260341 115751 2500 1600 0 1000 "" ""]
-Via[296779 95037 2500 1600 0 1000 "" ""]
-Via[253101 138164 2500 1600 0 1000 "" ""]
-Via[239302 137765 2500 1600 0 1000 "" ""]
-Via[295937 156372 2500 1600 0 1000 "" ""]
-Via[278207 101388 2500 1600 0 1000 "" ""]
-Via[277174 91781 2500 1600 0 1000 "" ""]
-Via[242456 106457 2500 1600 0 1000 "" ""]
-Via[242168 101200 2500 1600 0 1000 "" ""]
-Via[312157 99844 2500 1600 0 1000 "" ""]
-Via[312122 104962 2500 1600 0 1000 "" ""]
-Via[277449 52500 2500 1600 0 1000 "" ""]
-Via[303365 70000 2500 1600 0 1000 "" ""]
-Via[285430 75000 2500 1600 0 1000 "" ""]
-Via[302941 59993 2500 1600 0 1000 "" ""]
-Via[371602 139772 2000 1600 0 1000 "" ""]
-Via[396441 165000 2000 1600 0 1000 "" ""]
-Via[385941 34000 2000 1600 0 1000 "" ""]
-Via[398441 109000 2000 1600 0 1000 "" ""]
-Via[386023 242187 2000 1600 0 1000 "" ""]
-Via[398441 227000 2000 1600 0 1000 "" ""]
-Via[440941 277000 6000 2000 0 3500 "" ""]
-Via[434449 343500 2000 1600 0 1000 "" ""]
-Via[440449 343500 2000 1600 0 1000 "" ""]
-Via[163941 272500 2000 1600 0 1000 "" ""]
-Via[193390 272500 2000 1600 0 1000 "" ""]
-Via[112222 272660 2000 1600 0 1000 "" ""]
-Via[245441 272500 2000 1600 0 1000 "" ""]
-Via[114441 278500 2000 1600 0 1000 "" ""]
-Via[115441 267500 2000 1600 0 1000 "" ""]
-Via[152441 278500 2000 1600 0 1000 "" ""]
-Via[151941 268000 2000 1600 0 1000 "" ""]
-Via[127941 252000 2000 1600 0 1000 "" ""]
-Via[141441 252000 2000 1600 0 1000 "" ""]
-Via[198441 277500 2000 1600 0 1000 "" ""]
-Via[195441 267000 2000 1600 0 1000 "" ""]
-Via[208941 252000 2000 1600 0 1000 "" ""]
-Via[223941 252000 2000 1600 0 1000 "" ""]
-Via[234441 277500 2000 1600 0 1000 "" ""]
-Via[235941 267000 2000 1600 0 1000 "" ""]
-Via[128941 125500 2000 1600 0 1000 "" ""]
-Via[128941 131500 2000 1600 0 1000 "" ""]
-Via[128941 137500 2000 1600 0 1000 "" ""]
-Via[128941 145000 2000 1600 0 1000 "" ""]
-Via[128941 151500 2000 1600 0 1000 "" ""]
-Via[128941 157500 2000 1600 0 1000 "" ""]
-Via[162441 157500 2000 1600 0 1000 "" ""]
-Via[162441 151500 2000 1600 0 1000 "" ""]
-Via[161941 145000 2000 1600 0 1000 "" ""]
-Via[162441 137500 2000 1600 0 1000 "" ""]
-Via[162941 131500 2000 1600 0 1000 "" ""]
-Via[162941 125500 2000 1600 0 1000 "" ""]
-Via[165941 169000 2000 1600 0 1000 "" ""]
-Via[165941 173500 2000 1600 0 1000 "" ""]
-Via[165941 179500 2000 1600 0 1000 "" ""]
-Via[169441 186000 2000 1600 0 1000 "" ""]
-Via[169441 191500 2000 1600 0 1000 "" ""]
-Via[169441 198500 2000 1600 0 1000 "" ""]
-Via[141307 99117 2000 1600 0 1000 "" ""]
-Via[158441 76171 2000 1600 0 1000 "" ""]
-Via[158441 71171 2000 1600 0 1000 "" ""]
-Via[158441 73500 2000 1600 0 1000 "" ""]
-Via[197441 85500 2000 1600 0 1000 "" ""]
-Via[195441 88500 2000 1600 0 1000 "" ""]
-Via[197441 91500 2000 1600 0 1000 "" ""]
-Via[124831 97615 2000 1600 0 1000 "" ""]
-Via[135441 61500 2000 1600 0 1000 "" ""]
-Via[135441 65000 2000 1600 0 1000 "" ""]
-Via[139941 62000 2000 1600 0 1000 "" ""]
-Via[153941 62000 2000 1600 0 1000 "" ""]
-Via[111941 66000 2000 1600 0 1000 "" ""]
-Via[117941 66000 2000 1600 0 1000 "" ""]
-Via[126441 66000 2000 1600 0 1000 "" ""]
-Via[126441 59500 2000 1600 0 1000 "" ""]
-Via[111941 59000 2000 1600 0 1000 "" ""]
-Via[111941 42500 2000 1600 0 1000 "" ""]
-Via[142441 42500 2000 1600 0 1000 "" ""]
-Via[142441 50500 2000 1600 0 1000 "" ""]
-Via[154941 54500 2000 1600 0 1000 "" ""]
-Via[149441 50500 2000 1600 0 1000 "" ""]
-Via[121941 42500 2000 1600 0 1000 "" ""]
-Via[130941 42500 2000 1600 0 1000 "" ""]
-Via[309441 258432 2000 1600 0 1000 "" ""]
-Via[309441 263550 2000 1600 0 1000 "" ""]
-Via[310941 284060 2000 1600 0 1000 "" ""]
-Via[305696 292500 2000 1600 0 1000 "" ""]
-Via[263441 80000 2000 1600 0 1000 "" ""]
-Via[304584 192517 2000 1600 0 1000 "" ""]
-Via[304706 189417 2000 1600 0 1000 "" ""]
-Via[305280 195617 2000 1600 0 1000 "" ""]
-Via[246941 162000 2000 1600 0 1000 "" ""]
-Via[242441 170500 2000 1600 0 1000 "" ""]
-Via[246441 170500 2000 1600 0 1000 "" ""]
-Via[250941 170500 2000 1600 0 1000 "" ""]
-Via[221884 146000 2000 1600 0 1000 "" ""]
-Via[224441 148000 2000 1600 0 1000 "" ""]
-Via[356441 167000 2000 1600 0 1000 "" ""]
-Via[338441 175808 2000 1600 0 1000 "" ""]
-Via[338441 169876 2000 1600 0 1000 "" ""]
-Via[225441 151000 2000 1600 0 1000 "" ""]
-Via[219441 127500 2000 1600 0 1000 "" ""]
-Via[220729 134420 2000 1600 0 1000 "" ""]
-Via[217441 121000 2000 1600 0 1000 "" ""]
-Via[260568 83003 2000 1600 0 1000 "" ""]
-Via[240391 121436 2000 1600 0 1000 "" ""]
-Via[230441 107000 2000 1600 0 1000 "" ""]
-Via[264034 117069 2500 1600 0 1000 "" ""]
-Via[279441 115000 2000 1600 0 1000 "" ""]
-Via[246731 96969 2000 1600 0 1000 "" ""]
-Via[270441 64000 2000 1600 0 1000 "" ""]
-Via[270441 57500 2000 1600 0 1000 "" ""]
-Via[270441 50500 2000 1600 0 1000 "" ""]
-Via[392188 161000 2000 1600 0 1000 "" ""]
-Via[388207 152720 2000 1600 0 1000 "" ""]
-Via[191363 55551 2000 1600 0 1000 "" ""]
-Via[178887 57182 2000 1600 0 1000 "" ""]
-Via[168732 49167 2000 1600 0 1000 "" ""]
-Via[296727 143773 2500 1600 0 1000 "" ""]
-Via[339837 58173 2000 1600 0 1000 "" ""]
-Via[353390 60479 2000 1600 0 1000 "" ""]
-Via[337441 237000 2000 1600 0 1000 "" ""]
-Via[377347 237822 2000 1600 0 1000 "" ""]
-Via[230441 153000 2000 1600 0 1000 "" ""]
-Via[358941 191500 2000 1600 0 1000 "" ""]
-Via[220441 140500 2000 1600 0 1000 "" ""]
-Via[218441 138500 2000 1600 0 1000 "" ""]
-Via[198441 137500 2000 1600 0 1000 "" ""]
-Via[198441 130500 2000 1600 0 1000 "" ""]
-Via[205441 123000 2000 1600 0 1000 "" ""]
-Via[185441 172000 2000 1600 0 1000 "" ""]
-Via[177441 172000 2000 1600 0 1000 "" ""]
-Via[177441 182500 2000 1600 0 1000 "" ""]
-Via[185441 182500 2000 1600 0 1000 "" ""]
-Via[193941 187500 2000 1600 0 1000 "" ""]
-Via[202441 187500 2000 1600 0 1000 "" ""]
-Via[210441 187500 2000 1600 0 1000 "" ""]
-Via[220441 185000 2000 1600 0 1000 "" ""]
-Via[224941 179500 2000 1600 0 1000 "" ""]
-Via[225441 173500 2000 1600 0 1000 "" ""]
-Via[224941 164500 2000 1600 0 1000 "" ""]
-Via[224441 156000 2000 1600 0 1000 "" ""]
-Via[212941 162000 2000 1600 0 1000 "" ""]
-Via[203941 162500 2000 1600 0 1000 "" ""]
-Via[193941 163000 2000 1600 0 1000 "" ""]
-Via[236441 164500 2000 1600 0 1000 "" ""]
-Via[181941 141500 2000 1600 0 1000 "" ""]
-Via[104441 195500 2000 1600 0 1000 "" ""]
-Via[100941 195500 2000 1600 0 1000 "" ""]
-Via[260941 208500 2000 1600 0 1000 "" ""]
-Via[269441 201500 2000 1600 0 1000 "" ""]
-Via[269941 168500 2000 1600 0 1000 "" ""]
-Via[251941 189500 2000 1600 0 1000 "" ""]
-Via[243941 198000 2000 1600 0 1000 "" ""]
-Via[245863 208476 2000 1600 0 1000 "" ""]
-Via[261502 92633 2000 1600 0 1000 "" ""]
-Via[268941 86000 2500 1600 0 1000 "" ""]
-Via[249101 71207 2000 1600 0 1000 "" ""]
-Via[229818 45012 2000 1600 0 1000 "" ""]
-Via[270441 43000 2000 1600 0 1000 "" ""]
-Via[138925 193887 2000 1600 0 1000 "" ""]
-Via[138872 197970 2000 1600 0 1000 "" ""]
-Via[138925 202159 2000 1600 0 1000 "" ""]
-Via[138925 207302 2000 1600 0 1000 "" ""]
-Via[161941 201000 2000 1600 0 1000 "" ""]
-Via[161941 207000 2000 1600 0 1000 "" ""]
-Via[166941 207000 2000 1600 0 1000 "" ""]
-Via[166941 202500 2000 1600 0 1000 "" ""]
-Via[354941 306501 2000 1600 0 1000 "" ""]
-Via[354941 302001 2000 1600 0 1000 "" ""]
-Via[354941 296001 2000 1600 0 1000 "" ""]
-Via[354941 290001 2000 1600 0 1000 "" ""]
-Via[354941 284001 2000 1600 0 1000 "" ""]
-Via[354941 278001 2000 1600 0 1000 "" ""]
-Via[354941 272001 2000 1600 0 1000 "" ""]
-Via[387941 272001 2000 1600 0 1000 "" ""]
-Via[387941 278001 2000 1600 0 1000 "" ""]
-Via[387941 284001 2000 1600 0 1000 "" ""]
-Via[387941 290001 2000 1600 0 1000 "" ""]
-Via[387941 302001 2000 1600 0 1000 "" ""]
-Via[387941 306501 2000 1600 0 1000 "" ""]
-Via[387941 296001 2000 1600 0 1000 "" ""]
-Via[391441 315501 2000 1600 0 1000 "" ""]
-Via[391441 320001 2000 1600 0 1000 "" ""]
-Via[391941 325501 2000 1600 0 1000 "" ""]
-Via[395441 333001 2000 1600 0 1000 "" ""]
-Via[394441 340001 2000 1600 0 1000 "" ""]
-Via[392941 346501 2000 1600 0 1000 "" ""]
-Via[368941 351500 2000 1600 0 1000 "" ""]
-Via[368941 356500 2000 1600 0 1000 "" ""]
-Via[374941 356500 2000 1600 0 1000 "" ""]
-Via[374941 353000 2000 1600 0 1000 "" ""]
-Via[106441 251500 2000 1600 0 1000 "" ""]
-Via[101941 295500 2000 1600 0 1000 "" ""]
-Via[149941 251000 2000 1600 0 1000 "" ""]
-Via[166441 296000 2000 1600 0 1000 "" ""]
-Via[183941 296000 2000 1600 0 1000 "" ""]
-Via[253441 297500 2000 1600 0 1000 "" ""]
-Via[231441 252000 2000 1600 0 1000 "" ""]
-
-Element["lock" "22-23-2031" "X6/X1/CONN12" "unknown" 463500 16000 21000 -12200 3 100 ""]
-(
-	Pin[-10000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[10000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	ElementLine [-15000 -12200 -15000 12800 1000]
-	ElementLine [15000 -12200 15000 12800 1000]
-	ElementLine [-15000 -12200 15000 -12200 1000]
-	ElementLine [-15000 -5700 15000 -5700 1000]
-	ElementLine [-5000 -5700 -5000 12800 1000]
-	ElementLine [5000 -5700 5000 12800 1000]
-	ElementLine [-15000 12800 15000 12800 1000]
-	ElementLine [-15000 12800 -5000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2031" "X6/X3/CONN12" "unknown" 463500 76000 21000 -12200 3 100 ""]
-(
-	Pin[-10000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[10000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	ElementLine [-15000 -12200 -15000 12800 1000]
-	ElementLine [15000 -12200 15000 12800 1000]
-	ElementLine [15000 -12200 -15000 -12200 1000]
-	ElementLine [-15000 -5700 15000 -5700 1000]
-	ElementLine [-5000 12800 -5000 -5700 1000]
-	ElementLine [5000 12800 5000 -5700 1000]
-	ElementLine [-15000 12800 15000 12800 1000]
-	ElementLine [-15000 12800 -5000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2031" "X6/X4/CONN12" "unknown" 463500 106000 21000 -12200 3 100 ""]
-(
-	Pin[-10000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[10000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	ElementLine [-15000 -12200 -15000 12800 1000]
-	ElementLine [15000 -12200 15000 12800 1000]
-	ElementLine [15000 -12200 -15000 -12200 1000]
-	ElementLine [-15000 -5700 15000 -5700 1000]
-	ElementLine [-5000 12800 -5000 -5700 1000]
-	ElementLine [5000 12800 5000 -5700 1000]
-	ElementLine [-15000 12800 15000 12800 1000]
-	ElementLine [-15000 12800 -5000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2031" "X7/X1/CONN12" "unknown" 463500 136000 21000 -12200 3 100 ""]
-(
-	Pin[-10000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[10000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	ElementLine [-15000 -12200 -15000 12800 1000]
-	ElementLine [15000 -12200 15000 12800 1000]
-	ElementLine [15000 -12200 -15000 -12200 1000]
-	ElementLine [-15000 -5700 15000 -5700 1000]
-	ElementLine [-5000 12800 -5000 -5700 1000]
-	ElementLine [5000 12800 5000 -5700 1000]
-	ElementLine [-15000 12800 15000 12800 1000]
-	ElementLine [-15000 12800 -5000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2031" "X7/X2/CONN12" "unknown" 463500 166000 21000 -12200 3 100 ""]
-(
-	Pin[-10000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[10000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	ElementLine [-15000 -12200 -15000 12800 1000]
-	ElementLine [15000 -12200 15000 12800 1000]
-	ElementLine [-15000 -12200 15000 -12200 1000]
-	ElementLine [-15000 -5700 15000 -5700 1000]
-	ElementLine [-5000 -5700 -5000 12800 1000]
-	ElementLine [5000 -5700 5000 12800 1000]
-	ElementLine [-15000 12800 15000 12800 1000]
-	ElementLine [-15000 12800 -5000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2031" "X7/X3/CONN12" "unknown" 463500 196000 21000 -12200 3 100 "selected"]
-(
-	Pin[-10000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[10000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	ElementLine [-15000 -12200 -15000 12800 1000]
-	ElementLine [15000 -12200 15000 12800 1000]
-	ElementLine [15000 -12200 -15000 -12200 1000]
-	ElementLine [-15000 -5700 15000 -5700 1000]
-	ElementLine [-5000 12800 -5000 -5700 1000]
-	ElementLine [5000 12800 5000 -5700 1000]
-	ElementLine [-15000 12800 15000 12800 1000]
-	ElementLine [-15000 12800 -5000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2031" "X7/X4/CONN12" "unknown" 463500 226000 21000 -12200 3 100 "selected"]
-(
-	Pin[-10000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[10000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	ElementLine [-15000 -12200 -15000 12800 1000]
-	ElementLine [15000 -12200 15000 12800 1000]
-	ElementLine [15000 -12200 -15000 -12200 1000]
-	ElementLine [-15000 -5700 15000 -5700 1000]
-	ElementLine [-5000 12800 -5000 -5700 1000]
-	ElementLine [5000 12800 5000 -5700 1000]
-	ElementLine [-15000 12800 15000 12800 1000]
-	ElementLine [-15000 12800 -5000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2031" "X5/X1/CONN12" "unknown" 463500 256000 21000 -12200 3 100 ""]
-(
-	Pin[-10000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[10000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	ElementLine [-15000 -12200 -15000 12800 1000]
-	ElementLine [15000 -12200 15000 12800 1000]
-	ElementLine [15000 -12200 -15000 -12200 1000]
-	ElementLine [-15000 -5700 15000 -5700 1000]
-	ElementLine [-5000 12800 -5000 -5700 1000]
-	ElementLine [5000 12800 5000 -5700 1000]
-	ElementLine [-15000 12800 15000 12800 1000]
-	ElementLine [-15000 12800 -5000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2031" "X5/X2/CONN12" "unknown" 463500 286000 21000 -12200 3 100 ""]
-(
-	Pin[-10000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[10000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	ElementLine [-15000 -12200 -15000 12800 1000]
-	ElementLine [15000 -12200 15000 12800 1000]
-	ElementLine [15000 -12200 -15000 -12200 1000]
-	ElementLine [-15000 -5700 15000 -5700 1000]
-	ElementLine [-5000 12800 -5000 -5700 1000]
-	ElementLine [5000 12800 5000 -5700 1000]
-	ElementLine [-15000 12800 15000 12800 1000]
-	ElementLine [-15000 12800 -5000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2031" "X5/X3/CONN12" "unknown" 463500 316000 21000 -12200 3 100 ""]
-(
-	Pin[-10000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[10000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	ElementLine [-15000 -12200 -15000 12800 1000]
-	ElementLine [15000 -12200 15000 12800 1000]
-	ElementLine [15000 -12200 -15000 -12200 1000]
-	ElementLine [-15000 -5700 15000 -5700 1000]
-	ElementLine [-5000 12800 -5000 -5700 1000]
-	ElementLine [5000 12800 5000 -5700 1000]
-	ElementLine [-15000 12800 15000 12800 1000]
-	ElementLine [-15000 12800 -5000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2031" "X5/X4/CONN12" "unknown" 463500 346000 21000 -12200 3 100 ""]
-(
-	Pin[-10000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[10000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	ElementLine [-15000 -12200 -15000 12800 1000]
-	ElementLine [15000 -12200 15000 12800 1000]
-	ElementLine [15000 -12200 -15000 -12200 1000]
-	ElementLine [-15000 -5700 15000 -5700 1000]
-	ElementLine [-5000 12800 -5000 -5700 1000]
-	ElementLine [5000 12800 5000 -5700 1000]
-	ElementLine [-15000 12800 15000 12800 1000]
-	ElementLine [-15000 12800 -5000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2041" "X1/X2/CONN4" "unknown" 422000 16000 16000 -12200 3 100 ""]
-(
-	Pin[-15000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[-5000 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[5000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	Pin[15000 0 6500 3000 7100 4000 "4" "4" "lock,edge2"]
-	ElementLine [-20000 -12200 -20000 12800 1000]
-	ElementLine [20000 -12200 20000 12800 1000]
-	ElementLine [20000 -12200 -20000 -12200 1000]
-	ElementLine [-20000 -5700 20000 -5700 1000]
-	ElementLine [-10000 12800 -10000 -5700 1000]
-	ElementLine [0 12800 0 -5700 1000]
-	ElementLine [10000 12800 10000 -5700 1000]
-	ElementLine [-20000 12800 20000 12800 1000]
-	ElementLine [-20000 12800 -10000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2041" "X4/X4/CONN4" "unknown" 422000 226000 16000 -12200 3 100 "selected"]
-(
-	Pin[-15000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[-5000 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[5000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	Pin[15000 0 6500 3000 7100 4000 "4" "4" "lock,edge2"]
-	ElementLine [-20000 -12200 -20000 12800 1000]
-	ElementLine [20000 -12200 20000 12800 1000]
-	ElementLine [20000 -12200 -20000 -12200 1000]
-	ElementLine [-20000 -5700 20000 -5700 1000]
-	ElementLine [-10000 12800 -10000 -5700 1000]
-	ElementLine [0 12800 0 -5700 1000]
-	ElementLine [10000 12800 10000 -5700 1000]
-	ElementLine [-20000 12800 20000 12800 1000]
-	ElementLine [-20000 12800 -10000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2041" "X4/X2/CONN4" "unknown" 422000 196000 16000 -12200 3 100 ""]
-(
-	Pin[-15000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[-5000 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[5000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	Pin[15000 0 6500 3000 7100 4000 "4" "4" "lock,edge2"]
-	ElementLine [-20000 -12200 -20000 12800 1000]
-	ElementLine [20000 -12200 20000 12800 1000]
-	ElementLine [20000 -12200 -20000 -12200 1000]
-	ElementLine [-20000 -5700 20000 -5700 1000]
-	ElementLine [-10000 12800 -10000 -5700 1000]
-	ElementLine [0 12800 0 -5700 1000]
-	ElementLine [10000 12800 10000 -5700 1000]
-	ElementLine [-20000 12800 20000 12800 1000]
-	ElementLine [-20000 12800 -10000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2041" "X3/X4/CONN4" "unknown" 422000 166000 16000 -12200 3 100 ""]
-(
-	Pin[-15000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[-5000 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[5000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	Pin[15000 0 6500 3000 7100 4000 "4" "4" "lock,edge2"]
-	ElementLine [-20000 -12200 -20000 12800 1000]
-	ElementLine [20000 -12200 20000 12800 1000]
-	ElementLine [20000 -12200 -20000 -12200 1000]
-	ElementLine [-20000 -5700 20000 -5700 1000]
-	ElementLine [-10000 12800 -10000 -5700 1000]
-	ElementLine [0 12800 0 -5700 1000]
-	ElementLine [10000 12800 10000 -5700 1000]
-	ElementLine [-20000 12800 20000 12800 1000]
-	ElementLine [-20000 12800 -10000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2041" "X3/X2/CONN4" "unknown" 422000 136000 16000 -12200 3 100 ""]
-(
-	Pin[-15000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[-5000 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[5000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	Pin[15000 0 6500 3000 7100 4000 "4" "4" "lock,edge2"]
-	ElementLine [-20000 -12200 -20000 12800 1000]
-	ElementLine [20000 -12200 20000 12800 1000]
-	ElementLine [-20000 -12200 20000 -12200 1000]
-	ElementLine [-20000 -5700 20000 -5700 1000]
-	ElementLine [-10000 -5700 -10000 12800 1000]
-	ElementLine [0 -5700 0 12800 1000]
-	ElementLine [10000 -5700 10000 12800 1000]
-	ElementLine [-20000 12800 20000 12800 1000]
-	ElementLine [-20000 12800 -10000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2041" "X2/X4/CONN4" "unknown" 422000 106000 16000 -12200 3 100 ""]
-(
-	Pin[-15000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[-5000 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[5000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	Pin[15000 0 6500 3000 7100 4000 "4" "4" "lock,edge2"]
-	ElementLine [-20000 -12200 -20000 12800 1000]
-	ElementLine [20000 -12200 20000 12800 1000]
-	ElementLine [20000 -12200 -20000 -12200 1000]
-	ElementLine [-20000 -5700 20000 -5700 1000]
-	ElementLine [-10000 12800 -10000 -5700 1000]
-	ElementLine [0 12800 0 -5700 1000]
-	ElementLine [10000 12800 10000 -5700 1000]
-	ElementLine [-20000 12800 20000 12800 1000]
-	ElementLine [-20000 12800 -10000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2041" "X2/X2/CONN4" "unknown" 422000 76000 16000 -12200 3 100 ""]
-(
-	Pin[-15000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[-5000 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[5000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	Pin[15000 0 6500 3000 7100 4000 "4" "4" "lock,edge2"]
-	ElementLine [-20000 -12200 -20000 12800 1000]
-	ElementLine [20000 -12200 20000 12800 1000]
-	ElementLine [-20000 -12200 20000 -12200 1000]
-	ElementLine [-20000 -5700 20000 -5700 1000]
-	ElementLine [-10000 -5700 -10000 12800 1000]
-	ElementLine [0 -5700 0 12800 1000]
-	ElementLine [10000 -5700 10000 12800 1000]
-	ElementLine [-20000 12800 20000 12800 1000]
-	ElementLine [-20000 12800 -10000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2031" "X6/X2/CONN12" "unknown" 463500 46000 21000 -12200 3 100 ""]
-(
-	Pin[-10000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[10000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	ElementLine [-15000 -12200 -15000 12800 1000]
-	ElementLine [15000 -12200 15000 12800 1000]
-	ElementLine [15000 -12200 -15000 -12200 1000]
-	ElementLine [-15000 -5700 15000 -5700 1000]
-	ElementLine [-5000 12800 -5000 -5700 1000]
-	ElementLine [5000 12800 5000 -5700 1000]
-	ElementLine [-15000 12800 15000 12800 1000]
-	ElementLine [-15000 12800 -5000 12800 1000]
-
-	)
-
-Element["lock" "22-23-2041" "X1/X4/CONN4" "unknown" 422000 46000 16000 -12200 3 100 ""]
-(
-	Pin[-15000 0 6500 3000 7100 4000 "1" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[-5000 0 6500 3000 7100 4000 "2" "2" "lock,edge2,thermal(1X)"]
-	Pin[5000 0 6500 3000 7100 4000 "3" "3" "lock,edge2"]
-	Pin[15000 0 6500 3000 7100 4000 "4" "4" "lock,edge2"]
-	ElementLine [-20000 -12200 -20000 12800 1000]
-	ElementLine [20000 -12200 20000 12800 1000]
-	ElementLine [20000 -12200 -20000 -12200 1000]
-	ElementLine [-20000 -5700 20000 -5700 1000]
-	ElementLine [-10000 12800 -10000 -5700 1000]
-	ElementLine [0 12800 0 -5700 1000]
-	ElementLine [10000 12800 10000 -5700 1000]
-	ElementLine [-20000 12800 20000 12800 1000]
-	ElementLine [-20000 12800 -10000 12800 1000]
-
-	)
-
-Element["" "0603" "X4/C1" "0.1_uF" 395441 209000 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["onsolder" "TSSOP16" "X4/U4" "unknown" 385441 218000 6000 2000 3 100 "auto"]
-(
-	Pad[8956 9311 8956 13917 1299 1000 2299 "1B" "1" "onsolder,square,edge2"]
-	Pad[6397 9311 6397 13917 1299 1000 2299 "1A" "2" "onsolder,square,edge2"]
-	Pad[3838 9311 3838 13917 1299 1000 2299 "1Y" "3" "onsolder,square,edge2"]
-	Pad[1279 9311 1279 13917 1299 1000 2299 "ENABLE" "4" "onsolder,square,edge2"]
-	Pad[-1279 9311 -1279 13917 1299 1000 2299 "2Y" "5" "onsolder,square,edge2"]
-	Pad[-3838 9311 -3838 13917 1299 1000 2299 "2A" "6" "onsolder,square,edge2"]
-	Pad[-6397 9311 -6397 13917 1299 1000 2299 "2B" "7" "onsolder,square,edge2"]
-	Pad[-8956 9311 -8956 13917 1299 1000 2299 "GND" "8" "onsolder,square,edge2"]
-	Pad[-8956 -13917 -8956 -9311 1299 1000 2299 "3B" "9" "onsolder,square"]
-	Pad[-6397 -13917 -6397 -9311 1299 1000 2299 "3A" "10" "onsolder,square"]
-	Pad[-3838 -13917 -3838 -9311 1299 1000 2299 "3Y" "11" "onsolder,square"]
-	Pad[-1279 -13917 -1279 -9311 1299 1000 2299 "_ENABLE_" "12" "onsolder,square"]
-	Pad[1279 -13917 1279 -9311 1299 1000 2299 "4Y" "13" "onsolder,square"]
-	Pad[3838 -13917 3838 -9311 1299 1000 2299 "4A" "14" "onsolder,square"]
-	Pad[6397 -13917 6397 -9311 1299 1000 2299 "4B" "15" "onsolder,square"]
-	Pad[8956 -13917 8956 -9311 1299 1000 2299 "VCC" "16" "onsolder,square"]
-	ElementLine [-10606 15566 10606 15566 1000]
-	ElementLine [-10606 -15566 -10606 15566 1000]
-	ElementLine [-10606 -15566 10606 -15566 1000]
-	ElementLine [10606 2500 10606 15566 1000]
-	ElementLine [10606 -15566 10606 -2500 1000]
-	ElementArc [10606 0 2500 2500 270 180 1000]
-
-	)
-
-Element["onsolder" "0603" "X6/C1" "0.1_uF" 398441 78000 -3150 -3150 1 100 "auto"]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["" "0603" "X5/C1" "0.1_uF" 429441 330000 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["onsolder" "TSSOP16" "X5/U4" "unknown" 433603 307614 -6000 -2000 1 100 "auto"]
-(
-	Pad[-8956 -13917 -8956 -9311 1299 1000 2299 "1B" "1" "onsolder,square"]
-	Pad[-6397 -13917 -6397 -9311 1299 1000 2299 "1A" "2" "onsolder,square"]
-	Pad[-3838 -13917 -3838 -9311 1299 1000 2299 "1Y" "3" "onsolder,square"]
-	Pad[-1279 -13917 -1279 -9311 1299 1000 2299 "ENABLE" "4" "onsolder,square"]
-	Pad[1279 -13917 1279 -9311 1299 1000 2299 "2Y" "5" "onsolder,square"]
-	Pad[3838 -13917 3838 -9311 1299 1000 2299 "2A" "6" "onsolder,square"]
-	Pad[6397 -13917 6397 -9311 1299 1000 2299 "2B" "7" "onsolder,square"]
-	Pad[8956 -13917 8956 -9311 1299 1000 2299 "GND" "8" "onsolder,square"]
-	Pad[8956 9311 8956 13917 1299 1000 2299 "3B" "9" "onsolder,square,edge2"]
-	Pad[6397 9311 6397 13917 1299 1000 2299 "3A" "10" "onsolder,square,edge2"]
-	Pad[3838 9311 3838 13917 1799 1000 2799 "3Y" "11" "onsolder,square,edge2"]
-	Pad[1279 9311 1279 13917 1299 1000 2299 "_ENABLE_" "12" "onsolder,square,edge2"]
-	Pad[-1279 9311 -1279 13917 1299 1000 2299 "4Y" "13" "onsolder,square,edge2"]
-	Pad[-3838 9311 -3838 13917 1299 1000 2299 "4A" "14" "onsolder,square,edge2"]
-	Pad[-6397 9311 -6397 13917 1299 1000 2299 "4B" "15" "onsolder,square,edge2"]
-	Pad[-8956 9311 -8956 13917 1299 1000 2299 "VCC" "16" "onsolder,square,edge2"]
-	ElementLine [-10606 -15566 10606 -15566 1000]
-	ElementLine [10606 -15566 10606 15566 1000]
-	ElementLine [-10606 15566 10606 15566 1000]
-	ElementLine [-10606 -15566 -10606 -2500 1000]
-	ElementLine [-10606 2500 -10606 15566 1000]
-	ElementArc [-10606 0 2500 2500 90 180 1000]
-
-	)
-
-Element["" "0603" "X3/C1" "0.1_uF" 393135 150385 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X1/C1" "0.1_uF" 393441 31500 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X2/C1" "0.1_uF" 393441 91441 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["onsolder" "0603" "X1/X2/R9" "10_kohms" 424441 8000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X5/X1/C2" "0.1_uF" 458441 247000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X5/X4/C2" "0.1_uF" 458500 337000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X5/X2/C2" "0.1_uF" 458441 277000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X7/X3/C2" "0.1_uF" 458441 187000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X7/X2/C2" "0.1_uF" 458441 157000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X6/X1/C2" "0.1_uF" 458441 7000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X6/X2/C2" "0.1_uF" 458500 37000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X6/X3/C2" "0.1_uF" 458441 67000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X6/X1/R6" "500_ohms" 470941 23500 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X6/X3/R6" "500_ohms" 470941 83500 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X6/X4/R6" "500_ohms" 470941 113500 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X7/X1/R6" "500_ohms" 470941 144000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X7/X2/R6" "500_ohms" 470941 173500 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X7/X3/R6" "500_ohms" 470941 203500 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X7/X4/R6" "500_ohms" 470941 234000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X1/X4/R9" "10_kohms" 424441 38000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X1/X4/R10" "10_kohms" 434441 38000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X1/X4/R6" "500_ohms" 424382 53500 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X1/X4/C2" "0.1_uF" 411941 37000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X1/X4/R8" "500_ohms" 436941 55941 -3150 -3150 1 100 "auto"]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X2/X2/R6" "500_ohms" 424382 83500 -10291 74850 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X2/X2/R8" "500_ohms" 436941 86059 9079 45850 1 100 "auto"]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X2/X2/C2" "0.1_uF" 411941 67000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X2/X2/R9" "10_kohms" 424441 68000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X2/X2/R10" "10_kohms" 434441 68000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X2/X4/R9" "10_kohms" 424441 98000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X2/X4/R10" "10_kohms" 434441 98000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X2/X4/R6" "500_ohms" 424382 113500 -64291 40850 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X2/X4/R8" "500_ohms" 437000 116000 21850 98850 1 100 "auto"]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X2/X4/C2" "0.1_uF" 411941 97000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X3/X2/R9" "10_kohms" 424441 128000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X3/X2/R10" "10_kohms" 434441 128000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X3/X2/R6" "500_ohms" 424382 143500 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X3/X2/R8" "500_ohms" 437000 146000 -3150 -3150 1 100 "auto"]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X3/X2/C2" "0.1_uF" 412000 127000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X3/X4/R9" "10_kohms" 424441 158000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X3/X4/R10" "10_kohms" 434441 158000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X3/X4/R6" "500_ohms" 424500 173500 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X3/X4/R8" "500_ohms" 437000 176000 -3150 -3150 1 100 "auto"]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X3/X4/C2" "0.1_uF" 412000 157000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X4/X2/R9" "10_kohms" 424441 188000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X4/X2/R10" "10_kohms" 434441 188000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X4/X2/R6" "500_ohms" 424382 204000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X4/X2/C2" "0.1_uF" 411941 187000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X4/X4/R10" "10_kohms" 434441 218000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X4/X4/R9" "10_kohms" 424441 218000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X4/X4/R6" "500_ohms" 424382 233500 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X4/X4/R8" "500_ohms" 436941 236059 -3150 -3150 1 100 "auto"]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X4/X4/C2" "0.1_uF" 411941 217000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X1/X2/R10" "10_kohms" 434500 7882 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X1/X2/R6" "500_ohms" 424559 23441 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X1/X2/C2" "0.1_uF" 412000 6882 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X5/X2/R7" "10_kohms" 471000 277000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X5/X1/R7" "10_kohms" 471000 247000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X5/X3/R7" "10_kohms" 471000 307000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X5/X4/R7" "10_kohms" 471000 337000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X7/X2/R7" "10_kohms" 471000 157000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X7/X1/R7" "10_kohms" 471118 127000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X7/X3/R7" "10_kohms" 471000 187000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X7/X4/R7" "10_kohms" 470941 217000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X6/X2/R7" "10_kohms" 471000 37000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X6/X3/R7" "10_kohms" 471000 67000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X6/X4/R7" "10_kohms" 470441 97000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X6/X1/R7" "10_kohms" 471000 7000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X4/X2/R8" "500_ohms" 437000 206000 -3150 -3150 1 100 "auto"]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X1/X2/R8" "500_ohms" 436941 25941 -3150 -3150 1 100 "auto"]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X7/C1" "0.1_uF" 398441 197000 -3150 -3150 1 100 "auto"]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["" "TSSOP16" "X7/U4" "unknown" 385441 187000 6000 -2000 3 100 ""]
-(
-	Pad[8956 -13917 8956 -9311 1299 1000 2299 "1B" "1" "square"]
-	Pad[6397 -13917 6397 -9311 1299 1000 2299 "1A" "2" "square"]
-	Pad[3838 -13917 3838 -9311 1299 1000 2299 "1Y" "3" "square"]
-	Pad[1279 -13917 1279 -9311 1299 1000 2299 "ENABLE" "4" "square"]
-	Pad[-1279 -13917 -1279 -9311 1299 1000 2299 "2Y" "5" "square"]
-	Pad[-3838 -13917 -3838 -9311 1299 1000 2299 "2A" "6" "square"]
-	Pad[-6397 -13917 -6397 -9311 1299 1000 2299 "2B" "7" "square"]
-	Pad[-8956 -13917 -8956 -9311 1299 1000 2299 "GND" "8" "square"]
-	Pad[-8956 9311 -8956 13917 1299 1000 2299 "3B" "9" "square,edge2"]
-	Pad[-6397 9311 -6397 13917 1299 1000 2299 "3A" "10" "square,edge2"]
-	Pad[-3838 9311 -3838 13917 1299 1000 2299 "3Y" "11" "square,edge2"]
-	Pad[-1279 9311 -1279 13917 1299 1000 2299 "_ENABLE_" "12" "square,edge2"]
-	Pad[1279 9311 1279 13917 1299 1000 2299 "4Y" "13" "square,edge2"]
-	Pad[3838 9311 3838 13917 1299 1000 2299 "4A" "14" "square,edge2"]
-	Pad[6397 9311 6397 13917 1299 1000 2299 "4B" "15" "square,edge2"]
-	Pad[8956 9311 8956 13917 1299 1000 2299 "VCC" "16" "square,edge2"]
-	ElementLine [-10606 -15566 10606 -15566 1000]
-	ElementLine [-10606 -15566 -10606 15566 1000]
-	ElementLine [-10606 15566 10606 15566 1000]
-	ElementLine [10606 -15566 10606 -2500 1000]
-	ElementLine [10606 2500 10606 15566 1000]
-	ElementArc [10606 0 2500 2500 270 180 1000]
-
-	)
-
-Element["onsolder" "0603" "X5/X3/C2" "0.1_uF" 458500 307000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X5/X4/R6" "500_ohms" 471000 353500 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X5/X3/R6" "500_ohms" 470941 323500 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X5/X2/R6" "500_ohms" 470941 293500 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X5/X1/R6" "500_ohms" 470941 264000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X7/X1/C2" "0.1_uF" 458441 127000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X7/X4/C2" "0.1_uF" 458441 217000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X6/X2/R6" "500_ohms" 471059 53500 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "X6/X4/C2" "0.1_uF" 458441 97000 3150 -3150 2 100 "auto"]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["" "0603" "C28" "0.1_uF" 297240 150171 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "C29" "0.1_uF" 246240 139171 -3150 -3150 0 100 ""]
-(
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "C30" "0.1_uF" 246827 104709 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "C31" "0.1_uF" 266941 90000 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0805" "C13" "2.2_uF" 242697 132171 -3150 -3150 0 100 ""]
-(
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "1" "1" "square"]
-	Pad[3543 -393 3543 393 5118 2000 5718 "2" "2" "square"]
-	ElementLine [-393 -2755 393 -2755 800]
-	ElementLine [-393 2755 393 2755 800]
-
-	)
-
-Element["" "0805" "C14" "2.2_uF" 290441 151543 -3150 3150 1 100 ""]
-(
-	Pad[-393 3543 393 3543 5118 2000 5718 "1" "1" "square"]
-	Pad[-393 -3543 393 -3543 5118 2000 5718 "2" "2" "square"]
-	ElementLine [-2755 -393 -2755 393 800]
-	ElementLine [2755 -393 2755 393 800]
-
-	)
-
-Element["" "0603" "C15" "0.1_uF" 171291 44038 -3150 -3150 0 100 ""]
-(
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["onsolder" "0603" "C32" "0.1_uF" 208240 131171 -3150 3150 0 100 "auto"]
-(
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0805" "C10" "10_uF" 147441 59000 -3150 -3150 1 100 "auto"]
-(
-	Pad[-393 -3543 393 -3543 5118 2000 5718 "1" "1" "onsolder,square"]
-	Pad[-393 3543 393 3543 5118 2000 5718 "2" "2" "onsolder,square"]
-	ElementLine [-2755 -393 -2755 393 800]
-	ElementLine [2755 -393 2755 393 800]
-
-	)
-
-Element["" "SOT23" "D4" "unknown" 148599 107771 11000 12300 2 100 ""]
-(
-	Pad[-300 0 300 0 3400 3000 4000 "1" "1" "square"]
-	Pad[-300 7800 300 7800 3400 3000 4000 "ANODE" "2" "square"]
-	Pad[7900 3900 8500 3900 3400 3000 4000 "3" "3" "square,edge2"]
-	ElementLine [-2900 -2500 11000 -2500 1000]
-	ElementLine [-2900 -2500 -2900 10300 1000]
-	ElementLine [-2900 10300 11000 10300 1000]
-	ElementLine [11000 -2500 11000 10300 1000]
-
-	)
-
-Element["" "SO16W" "U2" "unknown" 169799 83671 -2000 -6000 0 100 ""]
-(
-	Pad[-21000 -17500 -15000 -17500 2000 1000 3000 "DVDD" "1" "square"]
-	Pad[-21000 -12500 -15000 -12500 2000 1000 3000 "RSVD" "2" "square"]
-	Pad[-21000 -7500 -15000 -7500 2000 1000 3000 "RSVD" "3" "square"]
-	Pad[-21000 -2500 -15000 -2500 2000 1000 3000 "_CS_" "4" "square"]
-	Pad[-21000 2500 -15000 2500 2000 1000 3000 "MISO" "5" "square"]
-	Pad[-21000 7500 -15000 7500 2000 1000 3000 "PDD" "6" "square"]
-	Pad[-21000 12500 -15000 12500 2000 1000 3000 "PSS" "7" "square"]
-	Pad[-21000 17500 -15000 17500 2000 1000 3000 "VX" "8" "square"]
-	Pad[15000 17500 21000 17500 2000 1000 3000 "CP5" "9" "square,edge2"]
-	Pad[15000 12500 21000 12500 2000 1000 3000 "RSVD" "10" "square,edge2"]
-	Pad[15000 7500 21000 7500 2000 1000 3000 "AVSS" "11" "square,edge2"]
-	Pad[15000 2500 21000 2500 2000 1000 3000 "RSVD" "12" "square,edge2"]
-	Pad[15000 -2500 21000 -2500 2000 1000 3000 "DVSS" "13" "square,edge2"]
-	Pad[15000 -7500 21000 -7500 2000 1000 3000 "AVDD" "14" "square,edge2"]
-	Pad[15000 -12500 21000 -12500 2000 1000 3000 "MOSI" "15" "square,edge2"]
-	Pad[15000 -17500 21000 -17500 2000 1000 3000 "SCLK" "16" "square,edge2"]
-	ElementLine [-23000 -19500 -23000 19500 1000]
-	ElementLine [-23000 19500 23000 19500 1000]
-	ElementLine [23000 19500 23000 -19500 1000]
-	ElementLine [-23000 -19500 -2500 -19500 1000]
-	ElementLine [23000 -19500 2500 -19500 1000]
-	ElementArc [0 -19500 2500 2500 0 180 1000]
-
-	)
-
-Element["" "0603" "C2" "1_uF" 197799 78671 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "C3" "1_uF" 141441 68500 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "C6" "1_uF" 197799 98671 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "C9" "1_uF" 141799 93671 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["onsolder" "0805" "C7" "10_uF" 122342 91171 3150 -3150 2 100 "auto"]
-(
-	Pad[3543 -393 3543 393 5118 2000 5718 "1" "1" "onsolder,square"]
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "2" "2" "onsolder,square"]
-	ElementLine [-393 -2755 393 -2755 800]
-	ElementLine [-393 2755 393 2755 800]
-
-	)
-
-Element["hidename" "1812" "L2" "470_uH" 126799 100329 -3938 14763 1 100 ""]
-(
-	Pad[-1968 -9843 1969 -9843 9480 3937 9874 "2" "2" "square"]
-	Pad[-1968 9842 1969 9842 9480 3937 9874 "1" "1" "square"]
-	ElementLine [-5905 15748 -7874 13779 800]
-	ElementLine [-5905 15748 7874 15748 800]
-	ElementLine [7874 -15748 7874 15748 800]
-	ElementLine [-7874 -15748 7874 -15748 800]
-	ElementLine [-7874 -15748 -7874 13779 800]
-
-	)
-
-Element["" "ABMM2" "U9" "unknown" 290941 72000 0 0 0 100 ""]
-(
-	Pad[5000 -14350 5000 -10450 5500 -5500 8080 "2" "2" "square"]
-	Pad[5000 10450 5000 14350 5500 -5500 8080 "1" "1" "square,edge2"]
-	Pad[-5000 10450 -5000 14350 5500 -5500 8080 "4" "4" "square,edge2"]
-	Pad[-5000 -14350 -5000 -10450 5500 -5500 8080 "3" "3" "square"]
-	ElementArc [709 13720 500 500 0 360 1000]
-
-	)
-
-Element["" "0603" "C4" "18_pF" 303857 77787 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "C5" "18_pF" 277941 60000 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["onsolder" "0603" "C26" "0.1_uF" 290476 97043 -3150 3150 0 100 "auto"]
-(
-	Pad[-2559 -492 -2559 492 3452 2000 4052 "1" "1" "onsolder,square"]
-	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["" "0603" "C27" "0.1_uF" 307954 102403 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["onsolder" "0805" "C11" "10_uF" 183541 161100 3150 3150 3 100 "auto"]
-(
-	Pad[-393 3543 393 3543 5118 2000 5718 "1" "1" "onsolder,square"]
-	Pad[-393 -3543 393 -3543 5118 2000 5718 "2" "2" "onsolder,square"]
-	ElementLine [2755 393 2755 -393 800]
-	ElementLine [-2755 393 -2755 -393 800]
-
-	)
-
-Element["onsolder" "0805" "C12" "10_uF" 208541 137100 -3150 3150 0 100 "auto"]
-(
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "1" "1" "onsolder,square"]
-	Pad[3543 -393 3543 393 5118 2000 5718 "2" "2" "onsolder,square"]
-	ElementLine [-393 2755 393 2755 800]
-	ElementLine [-393 -2755 393 -2755 800]
-
-	)
-
-Element["onsolder" "SOT223" "U4" "unknown" 194441 149100 25300 32900 3 100 "auto"]
-(
-	Pad[0 -3300 0 3300 5600 3000 6200 "VIN" "1" "onsolder,square"]
-	Pad[9000 -3300 9000 3300 5600 3000 6200 "GND" "2" "onsolder,square"]
-	Pad[18100 -3300 18100 3300 5600 3000 6200 "VOUT" "3" "onsolder,square"]
-	Pad[4500 24400 13500 24400 12200 3000 12800 "PAD" "4" "onsolder,square"]
-	ElementLine [-5200 32900 -5200 -8500 1000]
-	ElementLine [-5200 -8500 23300 -8500 1000]
-	ElementLine [23300 -8500 23300 32900 1000]
-	ElementLine [23300 32900 -5200 32900 1000]
-
-	)
-
-Element["" "1210" "X14/C4" "10_uF" 107571 162535 3150 -3150 3 100 ""]
-(
-	Pad[-2755 -5905 2755 -5905 5118 2000 5718 "1" "1" "square"]
-	Pad[-2755 5905 2755 5905 5118 2000 5718 "2" "2" "square"]
-	ElementLine [5314 -1968 5314 1968 800]
-	ElementLine [-5314 -1968 -5314 1968 800]
-
-	)
-
-Element["" "1210" "X14/C3" "10_uF" 119571 162535 3150 -3150 3 100 ""]
-(
-	Pad[-2755 -5905 2755 -5905 5118 2000 5718 "1" "1" "square"]
-	Pad[-2755 5905 2755 5905 5118 2000 5718 "2" "2" "square"]
-	ElementLine [5314 1968 5314 -1968 800]
-	ElementLine [-5314 1968 -5314 -1968 800]
-
-	)
-
-Element["" "TOPMOD" "X14/U3" "unknown" 145941 142000 0 0 0 100 ""]
-(
-	Pad[-15000 26772 -15000 33071 3504 2000 4104 "VIN" "1" "square,edge2"]
-	Pad[-10000 26772 -10000 33071 3504 2000 4104 "RON" "2" "square,edge2"]
-	Pad[-5000 26772 -5000 33071 3504 2000 4104 "EN" "3" "square,edge2"]
-	Pad[0 26772 0 33071 3504 2000 4104 "GND" "4" "square,edge2"]
-	Pad[5000 26772 5000 33071 3504 2000 4104 "SS" "5" "square,edge2"]
-	Pad[10000 26772 10000 33071 3504 2000 4104 "FB" "6" "square,edge2"]
-	Pad[15000 26772 15000 33071 3504 2000 4104 "VOUT" "7" "square,edge2"]
-	Pad[0 -6693 0 6693 21063 2000 21663 "PAD" "8" "square"]
-	ElementLine [-18110 35827 -18110 20079 1000]
-	ElementLine [18110 35827 -18110 35827 1000]
-	ElementLine [18110 20079 18110 35827 1000]
-	ElementLine [-19685 20079 -19685 -20079 1000]
-	ElementLine [19685 20079 19685 -20079 1000]
-	ElementLine [19685 20079 -19685 20079 1000]
-	ElementLine [19685 -20079 -19685 -20079 1000]
-
-	)
-
-Element["" "0603" "X14/R4" "9.31_kohm" 143441 181500 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X14/R3" "154.0_kohm" 133012 182630 -3150 -3150 0 100 ""]
-(
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X14/R2" "34.0_kohm" 133012 188630 -3150 -3150 0 100 ""]
-(
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0805" "X14/R5" "1.27_kohm" 147441 194500 -3150 -3150 0 100 ""]
-(
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "1" "1" "square"]
-	Pad[3543 -393 3543 393 5118 2000 5718 "2" "2" "square"]
-	ElementLine [-393 -2755 393 -2755 800]
-	ElementLine [-393 2755 393 2755 800]
-
-	)
-
-Element["onsolder" "0603" "C25" "0.1_uF" 77441 347500 3150 3150 3 100 "auto"]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "C18" "0.1_uF" 287441 347500 3150 3150 3 100 "auto"]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "C19" "0.1_uF" 257441 347500 3150 3150 3 100 "auto"]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "C20" "0.1_uF" 227441 347500 3150 3150 3 100 "auto"]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "C21" "0.1_uF" 197441 347500 3150 3150 3 100 "auto"]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "C22" "0.1_uF" 167441 347500 3150 3150 3 100 "auto"]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "C23" "0.1_uF" 137441 347500 3150 3150 3 100 "auto"]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "C24" "0.1_uF" 107441 347500 3150 3150 3 100 "auto"]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["" "22-23-2031" "CONN5" "unknown" 205441 342500 -12200 -21000 0 100 ""]
-(
-	Pin[0 10000 6500 3000 7100 4000 "1" "1" "square,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "thermal(1X)"]
-	Pin[0 -10000 6500 3000 7100 4000 "3" "3" ""]
-	ElementLine [-12200 15000 12800 15000 1000]
-	ElementLine [-12200 -15000 12800 -15000 1000]
-	ElementLine [-12200 -15000 -12200 15000 1000]
-	ElementLine [-5700 -15000 -5700 15000 1000]
-	ElementLine [-5700 5000 12800 5000 1000]
-	ElementLine [-5700 -5000 12800 -5000 1000]
-	ElementLine [12800 -15000 12800 15000 1000]
-	ElementLine [12800 5000 12800 15000 1000]
-
-	)
-
-Element["" "22-23-2031" "CONN4" "unknown" 235441 342500 -12200 -21000 0 100 ""]
-(
-	Pin[0 10000 6500 3000 7100 4000 "1" "1" "square,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "thermal(1X)"]
-	Pin[0 -10000 6500 3000 7100 4000 "3" "3" ""]
-	ElementLine [-12200 15000 12800 15000 1000]
-	ElementLine [-12200 -15000 12800 -15000 1000]
-	ElementLine [-12200 -15000 -12200 15000 1000]
-	ElementLine [-5700 -15000 -5700 15000 1000]
-	ElementLine [-5700 5000 12800 5000 1000]
-	ElementLine [-5700 -5000 12800 -5000 1000]
-	ElementLine [12800 -15000 12800 15000 1000]
-	ElementLine [12800 5000 12800 15000 1000]
-
-	)
-
-Element["" "22-23-2031" "CONN3" "unknown" 265441 342500 -12200 -21000 0 100 ""]
-(
-	Pin[0 10000 6500 3000 7100 4000 "1" "1" "square,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "thermal(1X)"]
-	Pin[0 -10000 6500 3000 7100 4000 "3" "3" ""]
-	ElementLine [-12200 15000 12800 15000 1000]
-	ElementLine [-12200 -15000 12800 -15000 1000]
-	ElementLine [-12200 -15000 -12200 15000 1000]
-	ElementLine [-5700 -15000 -5700 15000 1000]
-	ElementLine [-5700 5000 12800 5000 1000]
-	ElementLine [-5700 -5000 12800 -5000 1000]
-	ElementLine [12800 -15000 12800 15000 1000]
-	ElementLine [12800 5000 12800 15000 1000]
-
-	)
-
-Element["" "22-23-2031" "CONN2" "unknown" 295441 342500 -12200 -21000 0 100 ""]
-(
-	Pin[0 10000 6500 3000 7100 4000 "1" "1" "square,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "thermal(1X)"]
-	Pin[0 -10000 6500 3000 7100 4000 "3" "3" ""]
-	ElementLine [-12200 15000 12800 15000 1000]
-	ElementLine [-12200 -15000 12800 -15000 1000]
-	ElementLine [-12200 -15000 -12200 15000 1000]
-	ElementLine [-5700 -15000 -5700 15000 1000]
-	ElementLine [-5700 5000 12800 5000 1000]
-	ElementLine [-5700 -5000 12800 -5000 1000]
-	ElementLine [12800 -15000 12800 15000 1000]
-	ElementLine [12800 5000 12800 15000 1000]
-
-	)
-
-Element["" "22-23-2031" "CONN6" "unknown" 175441 342500 -12200 -21000 0 100 ""]
-(
-	Pin[0 10000 6500 3000 7100 4000 "1" "1" "square,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "thermal(1X)"]
-	Pin[0 -10000 6500 3000 7100 4000 "3" "3" ""]
-	ElementLine [-12200 15000 12800 15000 1000]
-	ElementLine [-12200 -15000 12800 -15000 1000]
-	ElementLine [-12200 -15000 -12200 15000 1000]
-	ElementLine [-5700 -15000 -5700 15000 1000]
-	ElementLine [-5700 5000 12800 5000 1000]
-	ElementLine [-5700 -5000 12800 -5000 1000]
-	ElementLine [12800 -15000 12800 15000 1000]
-	ElementLine [12800 5000 12800 15000 1000]
-
-	)
-
-Element["" "22-23-2031" "CONN7" "unknown" 145441 342500 -12200 -21000 0 100 ""]
-(
-	Pin[0 10000 6500 3000 7100 4000 "1" "1" "square,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "thermal(1X)"]
-	Pin[0 -10000 6500 3000 7100 4000 "3" "3" ""]
-	ElementLine [-12200 15000 12800 15000 1000]
-	ElementLine [-12200 -15000 12800 -15000 1000]
-	ElementLine [-12200 -15000 -12200 15000 1000]
-	ElementLine [-5700 -15000 -5700 15000 1000]
-	ElementLine [-5700 5000 12800 5000 1000]
-	ElementLine [-5700 -5000 12800 -5000 1000]
-	ElementLine [12800 -15000 12800 15000 1000]
-	ElementLine [12800 5000 12800 15000 1000]
-
-	)
-
-Element["" "22-23-2031" "CONN8" "unknown" 115441 342500 -12200 -21000 0 100 ""]
-(
-	Pin[0 10000 6500 3000 7100 4000 "1" "1" "square,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "thermal(1X)"]
-	Pin[0 -10000 6500 3000 7100 4000 "3" "3" ""]
-	ElementLine [-12200 15000 12800 15000 1000]
-	ElementLine [-12200 -15000 12800 -15000 1000]
-	ElementLine [-12200 -15000 -12200 15000 1000]
-	ElementLine [-5700 -15000 -5700 15000 1000]
-	ElementLine [-5700 5000 12800 5000 1000]
-	ElementLine [-5700 -5000 12800 -5000 1000]
-	ElementLine [12800 -15000 12800 15000 1000]
-	ElementLine [12800 5000 12800 15000 1000]
-
-	)
-
-Element["" "22-23-2031" "CONN9" "unknown" 85441 342500 -12200 -21000 0 100 ""]
-(
-	Pin[0 10000 6500 3000 7100 4000 "1" "1" "square,thermal(2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" "thermal(1X)"]
-	Pin[0 -10000 6500 3000 7100 4000 "3" "3" ""]
-	ElementLine [-12200 15000 12800 15000 1000]
-	ElementLine [-12200 -15000 12800 -15000 1000]
-	ElementLine [-12200 -15000 -12200 15000 1000]
-	ElementLine [-5700 -15000 -5700 15000 1000]
-	ElementLine [-5700 5000 12800 5000 1000]
-	ElementLine [-5700 -5000 12800 -5000 1000]
-	ElementLine [12800 -15000 12800 15000 1000]
-	ElementLine [12800 5000 12800 15000 1000]
-
-	)
-
-Element["" "22-23-2041" "CONN1" "unknown" 327441 151000 16000 -12200 3 100 ""]
-(
-	Pin[-15000 0 6500 3000 7100 4000 "1" "1" "square,edge2,thermal(0X,2X)"]
-	Pin[-5000 0 6500 3000 7100 4000 "2" "2" "edge2"]
-	Pin[5000 0 6500 3000 7100 4000 "3" "3" "edge2"]
-	Pin[15000 0 6500 3000 7100 4000 "4" "4" "edge2"]
-	ElementLine [-20000 -12200 -20000 12800 1000]
-	ElementLine [20000 -12200 20000 12800 1000]
-	ElementLine [20000 -12200 -20000 -12200 1000]
-	ElementLine [-20000 -5700 20000 -5700 1000]
-	ElementLine [-10000 12800 -10000 -5700 1000]
-	ElementLine [0 12800 0 -5700 1000]
-	ElementLine [10000 12800 10000 -5700 1000]
-	ElementLine [-20000 12800 20000 12800 1000]
-	ElementLine [-20000 12800 -10000 12800 1000]
-
-	)
-
-Element["" "TSSOP16" "X6/U4" "unknown" 385441 69000 6000 -2000 3 100 ""]
-(
-	Pad[8956 -13917 8956 -9311 1299 1000 2299 "1B" "1" "square"]
-	Pad[6397 -13917 6397 -9311 1299 1000 2299 "1A" "2" "square"]
-	Pad[3838 -13917 3838 -9311 1299 1000 2299 "1Y" "3" "square"]
-	Pad[1279 -13917 1279 -9311 1299 1000 2299 "ENABLE" "4" "square"]
-	Pad[-1279 -13917 -1279 -9311 1299 1000 2299 "2Y" "5" "square"]
-	Pad[-3838 -13917 -3838 -9311 1299 1000 2299 "2A" "6" "square"]
-	Pad[-6397 -13917 -6397 -9311 1299 1000 2299 "2B" "7" "square"]
-	Pad[-8956 -13917 -8956 -9311 1299 1000 2299 "GND" "8" "square"]
-	Pad[-8956 9311 -8956 13917 1299 1000 2299 "3B" "9" "square,edge2"]
-	Pad[-6397 9311 -6397 13917 1299 1000 2299 "3A" "10" "square,edge2"]
-	Pad[-3838 9311 -3838 13917 1299 1000 2299 "3Y" "11" "square,edge2"]
-	Pad[-1279 9311 -1279 13917 1299 1000 2299 "_ENABLE_" "12" "square,edge2"]
-	Pad[1279 9311 1279 13917 1299 1000 2299 "4Y" "13" "square,edge2"]
-	Pad[3838 9311 3838 13917 1299 1000 2299 "4A" "14" "square,edge2"]
-	Pad[6397 9311 6397 13917 1299 1000 2299 "4B" "15" "square,edge2"]
-	Pad[8956 9311 8956 13917 1299 1000 2299 "VCC" "16" "square,edge2"]
-	ElementLine [-10606 -15566 10606 -15566 1000]
-	ElementLine [-10606 -15566 -10606 15566 1000]
-	ElementLine [-10606 15566 10606 15566 1000]
-	ElementLine [10606 -15566 10606 -2500 1000]
-	ElementLine [10606 2500 10606 15566 1000]
-	ElementArc [10606 0 2500 2500 270 180 1000]
-
-	)
-
-Element["onsolder" "0603" "R12" "500_ohms" 440941 337000 -3150 -3150 1 100 "auto"]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["onsolder" "0603" "R10" "500_ohms" 434941 337000 -3150 -3150 1 100 "auto"]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "onsolder,square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "onsolder,square"]
-
-	)
-
-Element["" "0603" "X8/C4" "0.1_uF" 241941 266500 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/C5" "0.1_uF" 216441 252000 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/C1" "0.1_uF" 190441 266500 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/C2" "0.1_uF" 190441 278500 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/R3" "5_kohms" 239441 287500 -3150 -3150 0 100 ""]
-(
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/C3" "0.1_uF" 241941 278500 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "SO14" "X8/U2" "unknown" 215941 272500 -2000 -6000 0 100 ""]
-(
-	Pad[-13500 -15000 -7000 -15000 2000 1000 3000 "OUT" "1" "square"]
-	Pad[-13500 -10000 -7000 -10000 2000 1000 3000 "IN-" "2" "square"]
-	Pad[-13500 -5000 -7000 -5000 2000 1000 3000 "IN+" "3" "square"]
-	Pad[-13500 0 -7000 0 2000 1000 3000 "V+" "4" "square"]
-	Pad[-13500 5000 -7000 5000 2000 1000 3000 "IN+" "5" "square"]
-	Pad[-13500 10000 -7000 10000 2000 1000 3000 "IN-" "6" "square"]
-	Pad[-13500 15000 -7000 15000 2000 1000 3000 "OUT" "7" "square"]
-	Pad[7000 15000 13500 15000 2000 1000 3000 "OUT" "8" "square,edge2"]
-	Pad[7000 10000 13500 10000 2000 1000 3000 "IN-" "9" "square,edge2"]
-	Pad[7000 5000 13500 5000 2000 1000 3000 "IN+" "10" "square,edge2"]
-	Pad[7000 0 13500 0 2000 1000 3000 "V-" "11" "square,edge2"]
-	Pad[7000 -5000 13500 -5000 2000 1000 3000 "IN+" "12" "square,edge2"]
-	Pad[7000 -10000 13500 -10000 2000 1000 3000 "IN-" "13" "square,edge2"]
-	Pad[7000 -15000 13500 -15000 2000 1000 3000 "OUT" "14" "square,edge2"]
-	ElementLine [-15500 -17000 -15500 17000 1000]
-	ElementLine [-15500 17000 15500 17000 1000]
-	ElementLine [15500 17000 15500 -17000 1000]
-	ElementLine [-15500 -17000 -2500 -17000 1000]
-	ElementLine [15500 -17000 2500 -17000 1000]
-	ElementArc [0 -17000 2500 2500 0 180 1000]
-
-	)
-
-Element["" "0603" "X8/R1" "5_kohms" 192941 258500 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/R2" "5_kohms" 192916 287660 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X9/R1" "5_kohms" 111416 258660 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X9/R3" "5_kohms" 157941 287500 -3150 -3150 0 100 ""]
-(
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X9/C1" "0.1_uF" 108941 266500 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X9/C4" "0.1_uF" 160441 266500 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "SO14" "X9/U2" "unknown" 134166 272660 -2000 -6000 0 100 ""]
-(
-	Pad[-13500 -15000 -7000 -15000 2000 1000 3000 "OUT" "1" "square"]
-	Pad[-13500 -10000 -7000 -10000 2000 1000 3000 "IN-" "2" "square"]
-	Pad[-13500 -5000 -7000 -5000 2000 1000 3000 "IN+" "3" "square"]
-	Pad[-13500 0 -7000 0 2000 1000 3000 "V+" "4" "square"]
-	Pad[-13500 5000 -7000 5000 2000 1000 3000 "IN+" "5" "square"]
-	Pad[-13500 10000 -7000 10000 2000 1000 3000 "IN-" "6" "square"]
-	Pad[-13500 15000 -7000 15000 2000 1000 3000 "OUT" "7" "square"]
-	Pad[7000 15000 13500 15000 2000 1000 3000 "OUT" "8" "square,edge2"]
-	Pad[7000 10000 13500 10000 2000 1000 3000 "IN-" "9" "square,edge2"]
-	Pad[7000 5000 13500 5000 2000 1000 3000 "IN+" "10" "square,edge2"]
-	Pad[7000 0 13500 0 2000 1000 3000 "V-" "11" "square,edge2"]
-	Pad[7000 -5000 13500 -5000 2000 1000 3000 "IN+" "12" "square,edge2"]
-	Pad[7000 -10000 13500 -10000 2000 1000 3000 "IN-" "13" "square,edge2"]
-	Pad[7000 -15000 13500 -15000 2000 1000 3000 "OUT" "14" "square,edge2"]
-	ElementLine [-15500 -17000 -15500 17000 1000]
-	ElementLine [-15500 17000 15500 17000 1000]
-	ElementLine [15500 17000 15500 -17000 1000]
-	ElementLine [-15500 -17000 -2500 -17000 1000]
-	ElementLine [15500 -17000 2500 -17000 1000]
-	ElementArc [0 -17000 2500 2500 0 180 1000]
-
-	)
-
-Element["" "0603" "X9/R2" "5_kohms" 111441 287500 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X9/C2" "0.1_uF" 108941 278500 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X9/C3" "0.1_uF" 160441 278500 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X9/R4" "5_kohms" 157941 258500 -3150 -3150 0 100 ""]
-(
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "C16" "0.1_uF" 306188 286619 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "C17" "0.1_uF" 304964 260991 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "SO16" "U1" "unknown" 284938 271678 -2000 -6000 0 100 ""]
-(
-	Pad[-13500 -17500 -7000 -17500 2000 1000 3000 "CH0" "1" "square"]
-	Pad[-13500 -12500 -7000 -12500 2000 1000 3000 "CH1" "2" "square"]
-	Pad[-13500 -7500 -7000 -7500 2000 1000 3000 "CH2" "3" "square"]
-	Pad[-13500 -2500 -7000 -2500 2000 1000 3000 "CH3" "4" "square"]
-	Pad[-13500 2500 -7000 2500 2000 1000 3000 "CH4" "5" "square"]
-	Pad[-13500 7500 -7000 7500 2000 1000 3000 "CH5" "6" "square"]
-	Pad[-13500 12500 -7000 12500 2000 1000 3000 "CH6" "7" "square"]
-	Pad[-13500 17500 -7000 17500 2000 1000 3000 "CH7" "8" "square"]
-	Pad[7000 17500 13500 17500 2000 1000 3000 "DGND" "9" "square,edge2"]
-	Pad[7000 12500 13500 12500 2000 1000 3000 "_CS_" "10" "square,edge2"]
-	Pad[7000 7500 13500 7500 2000 1000 3000 "MOSI" "11" "square,edge2"]
-	Pad[7000 2500 13500 2500 2000 1000 3000 "MISO" "12" "square,edge2"]
-	Pad[7000 -2500 13500 -2500 2000 1000 3000 "CLK" "13" "square,edge2"]
-	Pad[7000 -7500 13500 -7500 2000 1000 3000 "AGND" "14" "square,edge2"]
-	Pad[7000 -12500 13500 -12500 2000 1000 3000 "AVDD" "15" "square,edge2"]
-	Pad[7000 -17500 13500 -17500 2000 1000 3000 "DVDD" "16" "square,edge2"]
-	ElementLine [-15500 -19500 -15500 19500 1000]
-	ElementLine [-15500 19500 15500 19500 1000]
-	ElementLine [15500 19500 15500 -19500 1000]
-	ElementLine [-15500 -19500 -2500 -19500 1000]
-	ElementLine [15500 -19500 2500 -19500 1000]
-	ElementArc [0 -19500 2500 2500 0 180 1000]
-
-	)
-
-Element["" "0603" "C8" "1_uF" 141441 79000 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["onsolder" "SOT223" "U3" "unknown" 136799 75571 -25300 -32900 1 100 "auto"]
-(
-	Pad[0 -3300 0 3300 5600 3000 6200 "VIN" "1" "onsolder,square,edge2"]
-	Pad[-9000 -3300 -9000 3300 5600 3000 6200 "GND" "2" "onsolder,square,edge2"]
-	Pad[-18100 -3300 -18100 3300 5600 3000 6200 "VOUT" "3" "onsolder,square,edge2"]
-	Pad[-13500 -24400 -4500 -24400 12200 3000 12800 "PAD" "4" "onsolder,square,edge2"]
-	ElementLine [5200 -32900 5200 8500 1000]
-	ElementLine [-23300 8500 5200 8500 1000]
-	ElementLine [-23300 -32900 -23300 8500 1000]
-	ElementLine [-23300 -32900 5200 -32900 1000]
-
-	)
-
-Element["" "0805" "D2" "yellow" 248855 50500 -3150 -3150 0 100 ""]
-(
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "CATHODE" "1" "square"]
-	Pad[3543 -393 3543 393 5118 2000 5718 "ANODE" "2" "square"]
-	ElementLine [-393 -2755 393 -2755 800]
-	ElementLine [-393 2755 393 2755 800]
-
-	)
-
-Element["" "0805" "D6" "red" 248898 64500 -3150 -3150 0 100 ""]
-(
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "CATHODE" "1" "square"]
-	Pad[3543 -393 3543 393 5118 2000 5718 "ANODE" "2" "square"]
-	ElementLine [-393 -2755 393 -2755 800]
-	ElementLine [-393 2755 393 2755 800]
-
-	)
-
-Element["" "0603" "R15" "130_ohms" 263441 64500 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "R14" "130_ohms" 263398 57500 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "R13" "130_ohms" 263398 50500 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0805" "D5" "green" 248855 57500 -3150 -3150 0 100 ""]
-(
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "CATHODE" "1" "square"]
-	Pad[3543 -393 3543 393 5118 2000 5718 "ANODE" "2" "square"]
-	ElementLine [-393 -2755 393 -2755 800]
-	ElementLine [-393 2755 393 2755 800]
-
-	)
-
-Element["onsolder" "TSSOP16" "X3/U4" "unknown" 385791 159229 6000 2000 3 100 "auto"]
-(
-	Pad[8956 9311 8956 13917 1299 1000 2299 "1B" "1" "onsolder,square,edge2"]
-	Pad[6397 9311 6397 13917 1299 1000 2299 "1A" "2" "onsolder,square,edge2"]
-	Pad[3838 9311 3838 13917 1299 1000 2299 "1Y" "3" "onsolder,square,edge2"]
-	Pad[1279 9311 1279 13917 1299 1000 2299 "ENABLE" "4" "onsolder,square,edge2"]
-	Pad[-1279 9311 -1279 13917 1299 1000 2299 "2Y" "5" "onsolder,square,edge2"]
-	Pad[-3838 9311 -3838 13917 1299 1000 2299 "2A" "6" "onsolder,square,edge2"]
-	Pad[-6397 9311 -6397 13917 1299 1000 2299 "2B" "7" "onsolder,square,edge2"]
-	Pad[-8956 9311 -8956 13917 1299 1000 2299 "GND" "8" "onsolder,square,edge2"]
-	Pad[-8956 -13917 -8956 -9311 1299 1000 2299 "3B" "9" "onsolder,square"]
-	Pad[-6397 -13917 -6397 -9311 1299 1000 2299 "3A" "10" "onsolder,square"]
-	Pad[-3838 -13917 -3838 -9311 1299 1000 2299 "3Y" "11" "onsolder,square"]
-	Pad[-1279 -13917 -1279 -9311 1299 1000 2299 "_ENABLE_" "12" "onsolder,square"]
-	Pad[1279 -13917 1279 -9311 1299 1000 2299 "4Y" "13" "onsolder,square"]
-	Pad[3838 -13917 3838 -9311 1299 1000 2299 "4A" "14" "onsolder,square"]
-	Pad[6397 -13917 6397 -9311 1299 1000 2299 "4B" "15" "onsolder,square"]
-	Pad[8956 -13917 8956 -9311 1299 1000 2299 "VCC" "16" "onsolder,square"]
-	ElementLine [-10606 15566 10606 15566 1000]
-	ElementLine [-10606 -15566 -10606 15566 1000]
-	ElementLine [-10606 -15566 10606 -15566 1000]
-	ElementLine [10606 2500 10606 15566 1000]
-	ElementLine [10606 -15566 10606 -2500 1000]
-	ElementArc [10606 0 2500 2500 270 180 1000]
-
-	)
-
-Element["onsolder" "TSSOP16" "X2/U4" "unknown" 385441 100000 6000 2000 3 100 "auto"]
-(
-	Pad[8956 9311 8956 13917 1299 1000 2299 "1B" "1" "onsolder,square,edge2"]
-	Pad[6397 9311 6397 13917 1299 1000 2299 "1A" "2" "onsolder,square,edge2"]
-	Pad[3838 9311 3838 13917 1299 1000 2299 "1Y" "3" "onsolder,square,edge2"]
-	Pad[1279 9311 1279 13917 1299 1000 2299 "ENABLE" "4" "onsolder,square,edge2"]
-	Pad[-1279 9311 -1279 13917 1299 1000 2299 "2Y" "5" "onsolder,square,edge2"]
-	Pad[-3838 9311 -3838 13917 1299 1000 2299 "2A" "6" "onsolder,square,edge2"]
-	Pad[-6397 9311 -6397 13917 1299 1000 2299 "2B" "7" "onsolder,square,edge2"]
-	Pad[-8956 9311 -8956 13917 1299 1000 2299 "GND" "8" "onsolder,square,edge2"]
-	Pad[-8956 -13917 -8956 -9311 1299 1000 2299 "3B" "9" "onsolder,square"]
-	Pad[-6397 -13917 -6397 -9311 1299 1000 2299 "3A" "10" "onsolder,square"]
-	Pad[-3838 -13917 -3838 -9311 1299 1000 2299 "3Y" "11" "onsolder,square"]
-	Pad[-1279 -13917 -1279 -9311 1299 1000 2299 "_ENABLE_" "12" "onsolder,square"]
-	Pad[1279 -13917 1279 -9311 1299 1000 2299 "4Y" "13" "onsolder,square"]
-	Pad[3838 -13917 3838 -9311 1299 1000 2299 "4A" "14" "onsolder,square"]
-	Pad[6397 -13917 6397 -9311 1299 1000 2299 "4B" "15" "onsolder,square"]
-	Pad[8956 -13917 8956 -9311 1299 1000 2299 "VCC" "16" "onsolder,square"]
-	ElementLine [-10606 15566 10606 15566 1000]
-	ElementLine [-10606 -15566 -10606 15566 1000]
-	ElementLine [-10606 -15566 10606 -15566 1000]
-	ElementLine [10606 2500 10606 15566 1000]
-	ElementLine [10606 -15566 10606 -2500 1000]
-	ElementArc [10606 0 2500 2500 270 180 1000]
-
-	)
-
-Element["onsolder" "TSSOP16" "X1/U4" "unknown" 384941 39500 6000 2000 3 100 "auto"]
-(
-	Pad[8956 9311 8956 13917 1299 1000 2299 "1B" "1" "onsolder,square,edge2"]
-	Pad[6397 9311 6397 13917 1299 1000 2299 "1A" "2" "onsolder,square,edge2"]
-	Pad[3838 9311 3838 13917 1299 1000 2299 "1Y" "3" "onsolder,square,edge2"]
-	Pad[1279 9311 1279 13917 1299 1000 2299 "ENABLE" "4" "onsolder,square,edge2"]
-	Pad[-1279 9311 -1279 13917 1299 1000 2299 "2Y" "5" "onsolder,square,edge2"]
-	Pad[-3838 9311 -3838 13917 1299 1000 2299 "2A" "6" "onsolder,square,edge2"]
-	Pad[-6397 9311 -6397 13917 1299 1000 2299 "2B" "7" "onsolder,square,edge2"]
-	Pad[-8956 9311 -8956 13917 1299 1000 2299 "GND" "8" "onsolder,square,edge2"]
-	Pad[-8956 -13917 -8956 -9311 1299 1000 2299 "3B" "9" "onsolder,square"]
-	Pad[-6397 -13917 -6397 -9311 1299 1000 2299 "3A" "10" "onsolder,square"]
-	Pad[-3838 -13917 -3838 -9311 1299 1000 2299 "3Y" "11" "onsolder,square"]
-	Pad[-1279 -13917 -1279 -9311 1299 1000 2299 "_ENABLE_" "12" "onsolder,square"]
-	Pad[1279 -13917 1279 -9311 1299 1000 2299 "4Y" "13" "onsolder,square"]
-	Pad[3838 -13917 3838 -9311 1299 1000 2299 "4A" "14" "onsolder,square"]
-	Pad[6397 -13917 6397 -9311 1299 1000 2299 "4B" "15" "onsolder,square"]
-	Pad[8956 -13917 8956 -9311 1299 1000 2299 "VCC" "16" "onsolder,square"]
-	ElementLine [-10606 15566 10606 15566 1000]
-	ElementLine [-10606 -15566 -10606 15566 1000]
-	ElementLine [-10606 -15566 10606 -15566 1000]
-	ElementLine [10606 2500 10606 15566 1000]
-	ElementLine [10606 -15566 10606 -2500 1000]
-	ElementArc [10606 0 2500 2500 270 180 1000]
-
-	)
-
-Element["hidename" "LQFP64_10" "U6" "unknown" 277240 119171 5000 4905 3 100 ""]
-(
-	Pad[14763 -24134 14763 -20736 1102 3000 1402 "VBAT" "1" "square"]
-	Pad[12795 -24134 12795 -20736 1102 3000 1402 "PC13" "2" "square"]
-	Pad[10826 -24134 10826 -20736 1102 3000 1402 "PC14" "3" "square"]
-	Pad[8858 -24134 8858 -20736 1102 3000 1402 "PC15" "4" "square"]
-	Pad[6889 -24134 6889 -20736 1102 3000 1402 "OSC in" "5" "square"]
-	Pad[4921 -24134 4921 -20736 1102 3000 1402 "OSC out" "6" "square"]
-	Pad[2952 -24134 2952 -20736 1102 3000 1402 "_RST_" "7" "square"]
-	Pad[984 -24134 984 -20736 1102 3000 1402 "PC0" "8" "square"]
-	Pad[-985 -24134 -985 -20736 1102 3000 1402 "PC1" "9" "square"]
-	Pad[-2953 -24134 -2953 -20736 1102 3000 1402 "PC2" "10" "square"]
-	Pad[-4922 -24134 -4922 -20736 1102 3000 1402 "PC3" "11" "square"]
-	Pad[-6890 -24134 -6890 -20736 1102 3000 1402 "VSS analog" "12" "square"]
-	Pad[-8859 -24134 -8859 -20736 1102 3000 1402 "VDD analog" "13" "square"]
-	Pad[-10827 -24134 -10827 -20736 1102 3000 1402 "PA0" "14" "square"]
-	Pad[-12796 -24134 -12796 -20736 1102 3000 1402 "PA1" "15" "square"]
-	Pad[-14764 -24134 -14764 -20736 1102 3000 1402 "PA2" "16" "square"]
-	Pad[-24134 -14763 -20736 -14763 1102 3000 1402 "PA3" "17" "square,octagon"]
-	Pad[-24134 -12795 -20736 -12795 1102 3000 1402 "VSS 4" "18" "square,octagon"]
-	Pad[-24134 -10826 -20736 -10826 1102 3000 1402 "VDD 4" "19" "square,octagon"]
-	Pad[-24134 -8858 -20736 -8858 1102 3000 1402 "PA4" "20" "square,octagon"]
-	Pad[-24134 -6889 -20736 -6889 1102 3000 1402 "PA5" "21" "square,octagon"]
-	Pad[-24134 -4921 -20736 -4921 1102 3000 1402 "PA6" "22" "square,octagon"]
-	Pad[-24134 -2952 -20736 -2952 1102 3000 1402 "PA7" "23" "square,octagon"]
-	Pad[-24134 -984 -20736 -984 1102 3000 1402 "PC4" "24" "square,octagon"]
-	Pad[-24134 985 -20736 985 1102 3000 1402 "PC5" "25" "square,octagon"]
-	Pad[-24134 2953 -20736 2953 1102 3000 1402 "PB0" "26" "square,octagon"]
-	Pad[-24134 4922 -20736 4922 1102 3000 1402 "PB1" "27" "square,octagon"]
-	Pad[-24134 6890 -20736 6890 1102 3000 1402 "PB2" "28" "square,octagon"]
-	Pad[-24134 8859 -20736 8859 1102 3000 1402 "PB10" "29" "square,octagon"]
-	Pad[-24134 10827 -20736 10827 1102 3000 1402 "PB11" "30" "square,octagon"]
-	Pad[-24134 12796 -20736 12796 1102 3000 1402 "VCAP 1" "31" "square,octagon"]
-	Pad[-24134 14764 -20736 14764 1102 3000 1402 "VDD 1" "32" "square,octagon"]
-	Pad[-14763 20736 -14763 24134 1102 3000 1402 "PB12" "33" "square,edge2"]
-	Pad[-12795 20736 -12795 24134 1102 3000 1402 "PB13" "34" "square,edge2"]
-	Pad[-10826 20736 -10826 24134 1102 3000 1402 "PB14" "35" "square,edge2"]
-	Pad[-8858 20736 -8858 24134 1102 3000 1402 "PB15" "36" "square,edge2"]
-	Pad[-6889 20736 -6889 24134 1102 3000 1402 "PC6" "37" "square,edge2"]
-	Pad[-4921 20736 -4921 24134 1102 3000 1402 "PC7" "38" "square,edge2"]
-	Pad[-2952 20736 -2952 24134 1102 3000 1402 "PC8" "39" "square,edge2"]
-	Pad[-984 20736 -984 24134 1102 3000 1402 "PC9" "40" "square,edge2"]
-	Pad[985 20736 985 24134 1102 3000 1402 "PA8" "41" "square,edge2"]
-	Pad[2953 20736 2953 24134 1102 3000 1402 "PA9" "42" "square,edge2"]
-	Pad[4922 20736 4922 24134 1102 3000 1402 "PA10" "43" "square,edge2"]
-	Pad[6890 20736 6890 24134 1102 3000 1402 "PA11" "44" "square,edge2"]
-	Pad[8859 20736 8859 24134 1102 3000 1402 "PA12" "45" "square,edge2"]
-	Pad[10827 20736 10827 24134 1102 3000 1402 "PA13" "46" "square,edge2"]
-	Pad[12796 20736 12796 24134 1102 3000 1402 "VCAP 2" "47" "square,edge2"]
-	Pad[14764 20736 14764 24134 1102 3000 1402 "VDD 2" "48" "square,edge2"]
-	Pad[20736 14763 24134 14763 1102 3000 1402 "PA14" "49" "square,octagon,edge2"]
-	Pad[20736 12795 24134 12795 1102 3000 1402 "PA15" "50" "square,octagon,edge2"]
-	Pad[20736 10826 24134 10826 1102 3000 1402 "PC10" "51" "square,octagon,edge2"]
-	Pad[20736 8858 24134 8858 1102 3000 1402 "PC11" "52" "square,octagon,edge2"]
-	Pad[20736 6889 24134 6889 1102 3000 1402 "PC12" "53" "square,octagon,edge2"]
-	Pad[20736 4921 24134 4921 1102 3000 1402 "PD2" "54" "square,octagon,edge2"]
-	Pad[20736 2952 24134 2952 1102 3000 1402 "PB3" "55" "square,octagon,edge2"]
-	Pad[20736 984 24134 984 1102 3000 1402 "PB4" "56" "square,octagon,edge2"]
-	Pad[20736 -985 24134 -985 1102 3000 1402 "PB5" "57" "square,octagon,edge2"]
-	Pad[20736 -2953 24134 -2953 1102 3000 1402 "PB6" "58" "square,octagon,edge2"]
-	Pad[20736 -4922 24134 -4922 1102 3000 1402 "PB7" "59" "square,octagon,edge2"]
-	Pad[20736 -6890 24134 -6890 1102 3000 1402 "BOOT0" "60" "square,octagon,edge2"]
-	Pad[20736 -8859 24134 -8859 1102 3000 1402 "PB8" "61" "square,octagon,edge2"]
-	Pad[20736 -10827 24134 -10827 1102 3000 1402 "PB9" "62" "square,octagon,edge2"]
-	Pad[20736 -12796 24134 -12796 1102 3000 1402 "VSS 3" "63" "square,octagon,edge2"]
-	Pad[20736 -14764 24134 -14764 1102 3000 1402 "VDD 3" "64" "square,octagon,edge2"]
-	ElementLine [19285 -16385 19285 19285 800]
-	ElementLine [-19285 19285 19285 19285 800]
-	ElementLine [-19285 -19285 -19285 19285 800]
-	ElementLine [-19285 -19285 16385 -19285 800]
-	ElementLine [16385 -19285 19285 -16385 800]
-	ElementArc [16385 -16385 1000 1000 270 360 800]
-
-	)
-
-Element["lock" "beaglebone" "U8" "unknown" 163299 127671 -112500 -118000 0 100 ""]
-(
-	Pin[-77500 92500 18300 1800 18900 12850 "bogus_442" "442" "lock,edge2"]
-	Pin[-77500 -97500 18300 1800 18900 12850 "bogus_542" "542" "lock,edge2"]
-	Pin[182500 80000 18300 1800 18900 12850 "bogus_642" "642" "lock,edge2"]
-	Pin[182500 -85000 18300 1800 18900 12850 "bogus_742" "742" "lock,edge2"]
-	Pin[-57500 87500 6600 2000 8600 4600 "(2) GND" "48" "lock,edge2,thermal(2X)"]
-	Pin[-57500 97500 6600 2000 8600 4600 "(1) GND" "47" "square,lock,edge2,thermal(2X)"]
-	Pin[-47500 87500 6600 2000 8600 4600 "(4) DC_3.3V" "50" "lock,edge2"]
-	Pin[-47500 97500 6600 2000 8600 4600 "(3) DC_3.3V" "49" "lock,edge2"]
-	Pin[-37500 87500 6600 2000 8600 4600 "(6) VDD_5V" "52" "lock,edge2,thermal(1X)"]
-	Pin[-37500 97500 6600 2000 8600 4600 "(5) VDD_5V" "51" "lock,edge2,thermal(1X)"]
-	Pin[-27500 87500 6600 2000 8600 4600 "(8) SYS_5V" "54" "lock,edge2"]
-	Pin[-27500 97500 6600 2000 8600 4600 "(7) SYS_5V" "53" "lock,edge2"]
-	Pin[-17500 87500 6600 2000 8600 4600 "(10) SYS_RESETn (A10)" "56" "lock,edge2"]
-	Pin[-17500 97500 6600 2000 8600 4600 "(9) PWR_BUT" "55" "lock,edge2"]
-	Pin[-7500 87500 6600 2000 8600 4600 "(12) GPIO1_28 (U18)" "58" "lock,edge2"]
-	Pin[-7500 97500 6600 2000 8600 4600 "(11) UART4_RXD (T17)" "57" "lock,edge2"]
-	Pin[2500 87500 6600 2000 8600 4600 "(14) EHRPWM1A (U14)" "60" "lock,edge2"]
-	Pin[2500 97500 6600 2000 8600 4600 "(13) UART4_TXD (U17)" "59" "lock,edge2"]
-	Pin[12500 87500 6600 2000 8600 4600 "(16) EHRPWM1B (T14)" "62" "lock,edge2"]
-	Pin[12500 97500 6600 2000 8600 4600 "(15) GPIO1_16 (R13)" "61" "lock,edge2"]
-	Pin[22500 87500 6600 2000 8600 4600 "(18) I2C1_SDA (B16)" "64" "lock,edge2"]
-	Pin[22500 97500 6600 2000 8600 4600 "(17) I2C1_SCL (A16)" "63" "lock,edge2"]
-	Pin[32500 87500 6600 2000 8600 4600 "(20) I2C2_SDA (D18)" "66" "lock,edge2"]
-	Pin[32500 97500 6600 2000 8600 4600 "(19) I2C2_SCL (D17)" "65" "lock,edge2"]
-	Pin[42500 87500 6600 2000 8600 4600 "(22) UART2_RXD (A17)" "68" "lock,edge2"]
-	Pin[42500 97500 6600 2000 8600 4600 "(21) UART2_TXD (B17)" "67" "lock,edge2"]
-	Pin[52500 87500 6600 2000 8600 4600 "(24) UART1_TXD (D15)" "70" "lock,edge2"]
-	Pin[52500 97500 6600 2000 8600 4600 "(23) GPIO1_17 (V14)" "69" "lock,edge2"]
-	Pin[62500 87500 6600 2000 8600 4600 "(26) UART1_RXD (D16)" "72" "lock,edge2"]
-	Pin[62500 97500 6600 2000 8600 4600 "(25) GPIO3_21 (A14)" "71" "lock,edge2"]
-	Pin[72500 87500 6600 2000 8600 4600 "(28) SPI1_CS0 (C12)" "74" "lock,edge2"]
-	Pin[72500 97500 6600 2000 8600 4600 "(27) GPIO3_19 (C13)" "73" "lock,edge2"]
-	Pin[82500 87500 6600 2000 8600 4600 "(30) SPI1_D1 (D12)" "76" "lock,edge2"]
-	Pin[82500 97500 6600 2000 8600 4600 "(29) SPI1_D0 (B13)" "75" "lock,edge2"]
-	Pin[92500 87500 6600 2000 8600 4600 "(32) VADC" "78" "lock,edge2"]
-	Pin[92500 97500 6600 2000 8600 4600 "(31) SPI1_SCLK (A13)" "77" "lock,edge2"]
-	Pin[102500 87500 6600 2000 8600 4600 "(34) AGND" "80" "lock,edge2"]
-	Pin[102500 97500 6600 2000 8600 4600 "(33) AIN4 (C8)" "79" "lock,edge2"]
-	Pin[112500 87500 6600 2000 8600 4600 "(36) AIN5 (B8)" "82" "lock,edge2"]
-	Pin[112500 97500 6600 2000 8600 4600 "(35) AIN6 (A8)" "81" "lock,edge2"]
-	Pin[122500 87500 6600 2000 8600 4600 "(38) AIN3 (A7)" "84" "lock,edge2"]
-	Pin[122500 97500 6600 2000 8600 4600 "(37) AIN2 (B7)" "83" "lock,edge2"]
-	Pin[132500 87500 6600 2000 8600 4600 "(40) AIN1 (C7)" "86" "lock,edge2"]
-	Pin[132500 97500 6600 2000 8600 4600 "(39) AIN0 (B6)" "85" "lock,edge2"]
-	Pin[142500 87500 6600 2000 8600 4600 "(42) GPIO0_7 (C18)" "88" "lock,edge2"]
-	Pin[142500 97500 6600 2000 8600 4600 "(41) CLKOUT2 (D14)" "87" "lock,edge2"]
-	Pin[152500 87500 6600 2000 8600 4600 "(44) GND" "90" "lock,edge2"]
-	Pin[152500 97500 6600 2000 8600 4600 "(43) GND" "89" "lock,edge2"]
-	Pin[162500 87500 6600 2000 8600 4600 "(46) GND" "92" "lock,edge2"]
-	Pin[162500 97500 6600 2000 8600 4600 "(45) GND" "91" "lock,edge2"]
-	Pin[-57500 -102500 6600 2000 8600 4600 "GND" "2" "lock,edge2,thermal(2X)"]
-	Pin[-57500 -92500 6600 2000 8600 4600 "GND" "1" "square,lock,edge2,thermal(2X)"]
-	Pin[-47500 -102500 6600 2000 8600 4600 "(T9) GPIO1_7" "4" "lock,edge2"]
-	Pin[-47500 -92500 6600 2000 8600 4600 "(R9) GPIO1_6" "3" "lock,edge2"]
-	Pin[-37500 -102500 6600 2000 8600 4600 "(T8) GPIO1_3" "6" "lock,edge2"]
-	Pin[-37500 -92500 6600 2000 8600 4600 "(R8) GPIO1_2" "5" "lock,edge2"]
-	Pin[-27500 -102500 6600 2000 8600 4600 "(T7) TIMER7" "8" "lock,edge2"]
-	Pin[-27500 -92500 6600 2000 8600 4600 "(R7) TIMER4" "7" "lock,edge2"]
-	Pin[-17500 -102500 6600 2000 8600 4600 "(U6) TIMER6" "10" "lock,edge2"]
-	Pin[-17500 -92500 6600 2000 8600 4600 "(T6) TIMER5" "9" "lock,edge2"]
-	Pin[-7500 -102500 6600 2000 8600 4600 "(T12) GPIO1_12" "12" "lock,edge2"]
-	Pin[-7500 -92500 6600 2000 8600 4600 "(R12) GPIO1_13" "11" "lock,edge2"]
-	Pin[2500 -102500 6600 2000 8600 4600 "(T11) GPIO0_26" "14" "lock,edge2"]
-	Pin[2500 -92500 6600 2000 8600 4600 "(T10) EHRPWM2B" "13" "lock,edge2"]
-	Pin[12500 -102500 6600 2000 8600 4600 "(V13) GPIO1_14" "16" "lock,edge2"]
-	Pin[12500 -92500 6600 2000 8600 4600 "(U13) GPIO1_15" "15" "lock,edge2"]
-	Pin[22500 -102500 6600 2000 8600 4600 "(V12) GPIO2_1" "18" "lock,edge2"]
-	Pin[22500 -92500 6600 2000 8600 4600 "(U12) GPIO0_27" "17" "lock,edge2"]
-	Pin[32500 -102500 6600 2000 8600 4600 "(V9) GPIO1_31" "20" "lock,edge2"]
-	Pin[32500 -92500 6600 2000 8600 4600 "(U10) EHRPWM2A" "19" "lock,edge2"]
-	Pin[42500 -102500 6600 2000 8600 4600 "(V8) GPIO1_5" "22" "lock,edge2"]
-	Pin[42500 -92500 6600 2000 8600 4600 "(U9) GPIO1_30" "21" "lock,edge2"]
-	Pin[52500 -102500 6600 2000 8600 4600 "(V7) GPIO1_1" "24" "lock,edge2"]
-	Pin[52500 -92500 6600 2000 8600 4600 "(U8) GPIO1_4" "23" "lock,edge2"]
-	Pin[62500 -102500 6600 2000 8600 4600 "(V6) GPIO1_29" "26" "lock,edge2"]
-	Pin[62500 -92500 6600 2000 8600 4600 "(U7) GPIO1_0" "25" "lock,edge2"]
-	Pin[72500 -102500 6600 2000 8600 4600 "(V5) GPIO2_24" "28" "lock,edge2"]
-	Pin[72500 -92500 6600 2000 8600 4600 "(U5) GPIO2_22" "27" "lock,edge2"]
-	Pin[82500 -102500 6600 2000 8600 4600 "(R6) GPIO2_25" "30" "lock,edge2"]
-	Pin[82500 -92500 6600 2000 8600 4600 "(R5) GPIO2_23" "29" "lock,edge2"]
-	Pin[92500 -102500 6600 2000 8600 4600 "(T5) UART5_RTSN" "32" "lock,edge2"]
-	Pin[92500 -92500 6600 2000 8600 4600 "(V4) UART5_CTSN" "31" "lock,edge2"]
-	Pin[102500 -102500 6600 2000 8600 4600 "(U4) UART3_RTSN" "34" "lock,edge2"]
-	Pin[102500 -92500 6600 2000 8600 4600 "(V3) UART4_RTSN" "33" "lock,edge2"]
-	Pin[112500 -102500 6600 2000 8600 4600 "(U3) UART3_CTSN" "36" "lock,edge2"]
-	Pin[112500 -92500 6600 2000 8600 4600 "(V2) UART4_CTSN" "35" "lock,edge2"]
-	Pin[122500 -102500 6600 2000 8600 4600 "(U2) UART5_RXD" "38" "lock,edge2"]
-	Pin[122500 -92500 6600 2000 8600 4600 "(U1) UART5_TXD" "37" "lock,edge2"]
-	Pin[132500 -102500 6600 2000 8600 4600 "(T4) GPIO2_13" "40" "lock,edge2"]
-	Pin[132500 -92500 6600 2000 8600 4600 "(T3) GPIO2_12" "39" "lock,edge2"]
-	Pin[142500 -102500 6600 2000 8600 4600 "(T2) GPIO2_11" "42" "lock,edge2"]
-	Pin[142500 -92500 6600 2000 8600 4600 "(T1) GPIO2_10" "41" "lock,edge2"]
-	Pin[152500 -102500 6600 2000 8600 4600 "(R4) GPIO2_9" "44" "lock,edge2"]
-	Pin[152500 -92500 6600 2000 8600 4600 "(R3) GPIO2_8" "43" "lock,edge2"]
-	Pin[162500 -102500 6600 2000 8600 4600 "(R2) GPIO2_7" "46" "lock,edge2"]
-	Pin[162500 -92500 6600 2000 8600 4600 "(R1) GPIO2_6" "45" "lock,edge2"]
-	Pin[32500 75000 6600 2000 8600 4600 "" "UART1" "square,edge2"]
-	Pin[42500 75000 6600 2000 8600 4600 "" "UART2" "edge2"]
-	Pin[52500 75000 6600 2000 8600 4600 "" "UART3" "edge2"]
-	Pin[62500 75000 6600 2000 8600 4600 "" "UART4" "edge2"]
-	Pin[72500 75000 6600 2000 8600 4600 "" "UART5" "edge2"]
-	Pin[152500 -65000 22000 1800 24000 20000 "bogus_842" "842" "edge2"]
-	Pin[-70000 -70000 26600 2000 28600 24600 "bogus_942" "742" "lock,edge2"]
-
-	)
-
-Element["" "22-23-2031" "CONN12" "unknown" 85441 170000 12200 21000 2 100 ""]
-(
-	Pin[0 -10000 6500 3000 7100 4000 "1" "1" "square,thermal(0,2X)"]
-	Pin[0 0 6500 3000 7100 4000 "2" "2" ""]
-	Pin[0 10000 6500 3000 7100 4000 "3" "3" ""]
-	ElementLine [-12800 -15000 12200 -15000 1000]
-	ElementLine [-12800 15000 12200 15000 1000]
-	ElementLine [12200 -15000 12200 15000 1000]
-	ElementLine [5700 -15000 5700 15000 1000]
-	ElementLine [-12800 -5000 5700 -5000 1000]
-	ElementLine [-12800 5000 5700 5000 1000]
-	ElementLine [-12800 -15000 -12800 15000 1000]
-	ElementLine [-12800 -15000 -12800 -5000 1000]
-
-	)
-
-Element["" "0603" "X8/R4" "5_kohms" 238500 258500 -3150 -3150 0 100 ""]
-(
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0805" "D7" "green" 95941 192000 -3150 3150 1 100 ""]
-(
-	Pad[-393 3543 393 3543 5118 2000 5718 "CATHODE" "1" "square"]
-	Pad[-393 -3543 393 -3543 5118 2000 5718 "ANODE" "2" "square"]
-	ElementLine [-2755 -393 -2755 393 800]
-	ElementLine [2755 -393 2755 393 800]
-
-	)
-
-Element["" "0805" "X14/D1" "green" 170441 155000 3150 -3150 3 100 ""]
-(
-	Pad[-393 -3543 393 -3543 5118 2000 5718 "CATHODE" "1" "square"]
-	Pad[-393 3543 393 3543 5118 2000 5718 "ANODE" "2" "square"]
-	ElementLine [2755 -393 2755 393 800]
-	ElementLine [-2755 -393 -2755 393 800]
-
-	)
-
-Element["" "0603" "X14/R13" "300_ohms" 171441 165559 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "R17" "1_kohms" 102941 186000 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "R1" "130_ohms" 263441 43500 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0805" "D1" "green" 248898 43500 -3150 -3150 0 100 ""]
-(
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "CATHODE" "1" "square"]
-	Pad[3543 -393 3543 393 5118 2000 5718 "ANODE" "2" "square"]
-	ElementLine [-393 -2755 393 -2755 800]
-	ElementLine [-393 2755 393 2755 800]
-
-	)
-
-Element["" "0603" "X9/R9" "6.65 kohms" 166658 289991 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X9/R5" "6.65 kohms" 102683 256483 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/R12" "6.65 kohms" 248008 266292 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/R10" "6.65 kohms" 248441 278500 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/R9" "6.65 kohms" 248441 295000 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/R8" "6.65 kohms" 184441 278500 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "1210" "X14/C6" "100 uF" 150941 204000 -3150 -3150 0 100 ""]
-(
-	Pad[-5905 -2755 -5905 2755 5118 2000 5718 "1" "1" "square"]
-	Pad[5905 -2755 5905 2755 5118 2000 5718 "2" "2" "square"]
-	ElementLine [-1968 -5314 1968 -5314 800]
-	ElementLine [-1968 5314 1968 5314 800]
-
-	)
-
-Element["" "0805" "X14/C5" "22 nf" 160941 194500 -3150 -3150 0 100 ""]
-(
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "1" "1" "square"]
-	Pad[3543 -393 3543 393 5118 2000 5718 "2" "2" "square"]
-	ElementLine [-393 -2755 393 -2755 800]
-	ElementLine [-393 2755 393 2755 800]
-
-	)
-
-Element["" "0805" "X14/C2" "10 nf" 147441 187500 -3150 -3150 0 100 ""]
-(
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "1" "1" "square"]
-	Pad[3543 -393 3543 393 5118 2000 5718 "2" "2" "square"]
-	ElementLine [-393 -2755 393 -2755 800]
-	ElementLine [-393 2755 393 2755 800]
-
-	)
-
-Element["" "0603" "X9/R12" "6.65 kohms" 165975 266222 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X9/R11" "6.65 kohms" 157975 251995 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X9/R10" "6.65 kohms" 166441 278500 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X9/R8" "6.65 kohms" 102441 278500 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X9/R7" "6.65 kohms" 102401 289124 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X9/R6" "6.65 kohms" 102790 266424 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/R11" "6.65 kohms" 238514 252246 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/R7" "6.65 kohms" 184441 289500 3150 -3150 3 100 ""]
-(
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/R6" "6.65 kohms" 184983 266488 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X8/R5" "6.65 kohms" 199559 251654 -3150 -3150 0 100 ""]
-(
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0805" "X14/R6" "6.65_kohm" 161028 187630 -3150 -3150 0 100 ""]
-(
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "1" "1" "square"]
-	Pad[3543 -393 3543 393 5118 2000 5718 "2" "2" "square"]
-	ElementLine [-393 -2755 393 -2755 800]
-	ElementLine [-393 2755 393 2755 800]
-
-	)
-
-Element["" "1210" "X16/C4" "10_uF" 342941 307501 3150 -3150 3 100 ""]
-(
-	Pad[-2755 -5905 2755 -5905 5118 2000 5718 "1" "1" "square"]
-	Pad[-2755 5905 2755 5905 5118 2000 5718 "2" "2" "square"]
-	ElementLine [5314 -1968 5314 1968 300]
-	ElementLine [-5314 -1968 -5314 1968 300]
-
-	)
-
-Element["" "0603" "X16/R4" "9.31_kohm" 369441 328001 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X16/R3" "154.0_kohm" 359382 328500 -3150 -3150 0 100 ""]
-(
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0603" "X16/R2" "34.0_kohm" 359382 334500 -3150 -3150 0 100 ""]
-(
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0805" "X16/R5" "1.27_kohm" 374941 345044 -3150 3150 1 100 ""]
-(
-	Pad[-393 3543 393 3543 5118 2000 5718 "1" "1" "square"]
-	Pad[-393 -3543 393 -3543 5118 2000 5718 "2" "2" "square"]
-	ElementLine [-2755 -393 -2755 393 800]
-	ElementLine [2755 -393 2755 393 800]
-
-	)
-
-Element["" "1210" "X16/C3" "10_uF" 329941 307501 3150 -3150 3 100 ""]
-(
-	Pad[-2755 -5905 2755 -5905 5118 2000 5718 "1" "1" "square"]
-	Pad[-2755 5905 2755 5905 5118 2000 5718 "2" "2" "square"]
-	ElementLine [5314 -1968 5314 1968 800]
-	ElementLine [-5314 -1968 -5314 1968 800]
-
-	)
-
-Element["" "TOPMOD" "X16/U3" "unknown" 371941 288500 88630 11630 0 100 ""]
-(
-	Pad[-15000 26772 -15000 33071 3504 2000 4104 "VIN" "1" "square,edge2"]
-	Pad[-10000 26772 -10000 33071 3504 2000 4104 "RON" "2" "square,edge2"]
-	Pad[-5000 26772 -5000 33071 3504 2000 4104 "EN" "3" "square,edge2"]
-	Pad[0 26772 0 33071 3504 2000 4104 "GND" "4" "square,edge2"]
-	Pad[5000 26772 5000 33071 3504 2000 4104 "SS" "5" "square,edge2"]
-	Pad[10000 26772 10000 33071 3504 2000 4104 "FB" "6" "square,edge2"]
-	Pad[15000 26772 15000 33071 3504 2000 4104 "VOUT" "7" "square,edge2"]
-	Pad[0 -6693 0 6693 21063 2000 21663 "PAD" "8" "square"]
-	ElementLine [-18110 35827 -18110 20079 1000]
-	ElementLine [18110 35827 -18110 35827 1000]
-	ElementLine [18110 20079 18110 35827 1000]
-	ElementLine [-19685 20079 -19685 -20079 1000]
-	ElementLine [19685 20079 19685 -20079 1000]
-	ElementLine [19685 20079 -19685 20079 1000]
-	ElementLine [19685 -20079 -19685 -20079 1000]
-
-	)
-
-Element["" "0805" "X16/D1" "green" 397941 305501 3150 -3150 3 100 ""]
-(
-	Pad[-393 -3543 393 -3543 5118 2000 5718 "CATHODE" "1" "square"]
-	Pad[-393 3543 393 3543 5118 2000 5718 "ANODE" "2" "square"]
-	ElementLine [2755 -393 2755 393 800]
-	ElementLine [-2755 -393 -2755 393 800]
-
-	)
-
-Element["" "0603" "X16/R13" "300_ohms" 397941 318060 -3150 3150 1 100 ""]
-(
-	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
-	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]
-
-	)
-
-Element["" "0805" "X16/C2" "10 nf" 373941 334000 -3150 -3150 0 100 ""]
-(
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "1" "1" "square"]
-	Pad[3543 -393 3543 393 5118 2000 5718 "2" "2" "square"]
-	ElementLine [-393 -2755 393 -2755 800]
-	ElementLine [-393 2755 393 2755 800]
-
-	)
-
-Element["" "1210" "X16/C6" "100 uF" 387441 354000 -3150 -3150 0 100 ""]
-(
-	Pad[-5905 -2755 -5905 2755 5118 2000 5718 "1" "1" "square"]
-	Pad[5905 -2755 5905 2755 5118 2000 5718 "2" "2" "square"]
-	ElementLine [-1968 -5314 1968 -5314 800]
-	ElementLine [-1968 5314 1968 5314 800]
-
-	)
-
-Element["" "0805" "X16/C5" "22 nf" 385441 341500 -3150 -3150 0 100 ""]
-(
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "1" "1" "square"]
-	Pad[3543 -393 3543 393 5118 2000 5718 "2" "2" "square"]
-	ElementLine [-393 -2755 393 -2755 800]
-	ElementLine [-393 2755 393 2755 800]
-
-	)
-
-Element["" "0805" "X16/R6" "6.65_kohm" 387941 333500 -3150 -3150 0 100 ""]
-(
-	Pad[-3543 -393 -3543 393 5118 2000 5718 "1" "1" "square"]
-	Pad[3543 -393 3543 393 5118 2000 5718 "2" "2" "square"]
-	ElementLine [-393 -2755 393 -2755 800]
-	ElementLine [-393 2755 393 2755 800]
-
-	)
-
-Element["" "0603" "X9/C5" "0.1_uF" 134441 252000 3150 3150 2 100 ""]
-(
-	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
-	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]
-
-	)
-Layer(1 "top")
-(
-	Line[448750 69700 376485 69700 1000 2000 "clearline,auto,lock"]
-	Line[371215 41738 371157 41738 1000 2000 "clearline"]
-	Line[387623 41738 371287 41738 1000 2000 "clearline"]
-	Line[389279 43395 387623 41738 1000 2000 "clearline"]
-	Line[389279 43995 389279 43395 1000 2000 "clearline"]
-	Line[379941 45000 370441 45000 1000 2000 "clearline"]
-	Line[384162 49221 379941 45000 1000 2000 "clearline"]
-	Line[384162 55083 384162 49221 1000 2000 "clearline"]
-	Line[387425 213631 385730 215327 1000 2000 "clearline"]
-	Line[387441 213631 387425 213631 1000 2000 "clearline"]
-	Line[387441 213631 387441 213631 1000 2000 "clearline"]
-	Line[387441 210038 387441 213631 1000 2000 "clearline"]
-	Line[387479 210000 387441 210038 1000 2000 "clearline"]
-	Line[386720 209241 387479 210000 1000 2000 "clearline"]
-	Line[386720 196311 386720 209241 1000 2000 "clearline"]
-	Line[384162 167218 377944 161000 1000 2000 "clearline"]
-	Line[384162 173083 384162 167218 1000 2000 "clearline"]
-	Line[381044 74000 387441 74000 1000 2000 "clearline"]
-	Line[379044 76000 381044 74000 1000 2000 "clearline"]
-	Line[389279 80614 389279 75838 1000 2000 "clearline"]
-	Line[387441 74000 389279 75838 1000 2000 "clearline"]
-	Line[391838 46603 393441 45000 1000 2000 "clearline"]
-	Line[391838 62000 391838 46603 1000 2000 "clearline"]
-	Line[381441 98000 376441 93000 1000 2000 "clearline"]
-	Line[379441 88000 370441 88000 1000 2000 "clearline"]
-	Line[381603 85838 379441 88000 1000 2000 "clearline"]
-	Line[381603 78311 381603 85838 1000 2000 "clearline"]
-	Line[389279 167175 391441 165013 1000 2000 "clearline"]
-	Line[389279 173083 389279 167175 1000 2000 "clearline"]
-	Line[445441 230891 448750 234200 1000 2000 "clearline"]
-	Line[445441 219000 445441 230891 1000 2000 "clearline"]
-	Line[443441 217000 445441 219000 1000 2000 "clearline"]
-	Line[394810 217000 443441 217000 1000 2000 "clearline"]
-	Line[391810 214000 394810 217000 1000 2000 "clearline"]
-	Line[399882 211559 395441 211559 1000 2000 "clearline"]
-	Line[400441 211000 399882 211559 1000 2000 "clearline"]
-	Line[400000 206441 395441 206441 1000 2000 "clearline"]
-	Line[400441 206000 400000 206441 1000 2000 "clearline"]
-	Line[391810 204425 391810 214000 1000 2000 "clearline"]
-	Line[391838 204397 391810 204425 1000 2000 "clearline"]
-	Line[389279 215838 389441 216000 1000 2000 "clearline"]
-	Line[389279 212838 389279 215838 1000 2000 "clearline"]
-	Line[389279 196311 389279 212904 1000 2000 "clearline"]
-	Line[378441 205000 376441 205000 1000 2000 "clearline"]
-	Line[381603 201838 378441 205000 1000 2000 "clearline"]
-	Line[381603 196311 381603 201838 1000 2000 "clearline"]
-	Line[458250 203200 412250 203200 1000 2000 "clearline,auto"]
-	Line[412250 195700 412250 203200 1000 2000 "clearline,auto"]
-	Line[412250 188700 412250 202700 1000 2000 "clearline,auto"]
-	Line[412250 188700 389117 188700 1000 2000 "clearline,auto"]
-	Line[401750 188700 376485 188700 1000 2000 "clearline,auto"]
-	Line[376485 188700 376485 196311 1000 2000 "clearline,auto"]
-	Line[391973 202691 391838 202691 1000 2000 "clearline,auto"]
-	Line[394441 200000 400441 206000 1000 2000 "clearline"]
-	Line[458441 146000 456641 146000 1000 2000 "clearline,auto"]
-	Line[456641 146000 456641 147800 1000 2000 "clearline,auto"]
-	Line[456641 147800 448750 147800 1000 2000 "clearline,auto"]
-	Line[448750 147800 448750 170750 1000 2000 "clearline,auto"]
-	Line[448750 170750 394397 170750 1000 2000 "clearline,auto"]
-	Line[394397 170750 394397 173083 1000 2000 "clearline,auto"]
-	Line[458441 175000 456641 175000 1000 2000 "clearline,auto"]
-	Line[456641 175000 456641 182000 1000 2000 "clearline,auto"]
-	Line[456641 182000 379044 182000 1000 2000 "clearline,auto"]
-	Line[379044 177689 379044 182000 1000 2000 "clearline,auto"]
-	Line[458441 203200 458441 205000 1000 2000 "clearline,auto"]
-	Line[458441 203200 458250 203200 1000 2000 "clearline,auto"]
-	Line[458250 203200 458250 203200 1000 2000 "clearline,auto"]
-	Line[376485 192000 376485 196311 1000 2000 "clearline,auto"]
-	Line[458441 234200 458441 236000 1000 2000 "clearline,auto"]
-	Line[458441 234200 458250 234200 1000 2000 "clearline,auto"]
-	Line[458250 234200 458250 234200 1000 2000 "clearline,auto"]
-	Line[458250 234200 448750 234200 1000 2000 "clearline,auto"]
-	Line[391838 200917 391838 204465 1000 2000 "clearline,auto"]
-	Line[386720 165350 387070 165000 1000 2000 "clearline"]
-	Line[386720 175386 386720 165350 1000 2000 "clearline"]
-	Line[376485 166044 375441 165000 1000 2000 "clearline"]
-	Line[376485 175386 376485 166044 1000 2000 "clearline"]
-	Line[379044 194000 389279 194000 1000 2000 "clearline"]
-	Line[379044 198614 379044 194000 1000 2000 "clearline"]
-	Line[389279 198614 389279 194000 1000 2000 "clearline"]
-	Line[381603 180000 391838 180000 1000 2000 "clearline"]
-	Line[381603 175386 381603 180000 1000 2000 "clearline"]
-	Line[391838 175386 391838 180000 1000 2000 "clearline"]
-	Line[384162 198614 384162 212000 1000 2000 "clearline"]
-	Line[448750 69700 448750 77225 1000 2000 "clearline,auto"]
-	Line[376485 69700 376485 74781 1000 2000 "clearline,auto"]
-	Line[458441 25000 456641 25000 1000 2000 "clearline,auto"]
-	Line[456641 25000 456641 26800 1000 2000 "clearline,auto"]
-	Line[456641 26800 448750 26800 1000 2000 "clearline,auto"]
-	Line[448750 26800 448750 50750 1000 2000 "clearline,auto"]
-	Line[448750 50750 394397 50750 1000 2000 "clearline,auto"]
-	Line[394397 50750 394397 55083 1000 2000 "clearline,auto"]
-	Line[458441 55000 456641 55000 1000 2000 "clearline,auto"]
-	Line[456641 55000 456641 64000 1000 2000 "clearline,auto"]
-	Line[456641 64000 379044 64000 1000 2000 "clearline,auto"]
-	Line[379044 59689 379044 64000 1000 2000 "clearline,auto"]
-	Line[458441 83200 458441 85000 1000 2000 "clearline,auto"]
-	Line[458441 83200 458250 83200 1000 2000 "clearline,auto"]
-	Line[458250 83200 458250 83200 1000 2000 "clearline,auto"]
-	Line[458250 83200 448750 83200 1000 2000 "clearline,auto"]
-	Line[448750 71250 448750 83200 1000 2000 "clearline,auto"]
-	Line[376485 71250 376485 78311 1000 2000 "clearline,auto"]
-	Line[458441 113200 458441 115000 1000 2000 "clearline,auto"]
-	Line[458441 113200 458250 113200 1000 2000 "clearline,auto"]
-	Line[458250 113200 458250 113200 1000 2000 "clearline,auto"]
-	Line[458250 113200 432250 113200 1000 2000 "clearline,auto"]
-	Line[432250 82566 432250 113200 1000 2000 "clearline,auto"]
-	Line[432250 82566 402250 82566 1000 2000 "clearline,auto"]
-	Line[402250 76161 402250 82566 1000 2000 "clearline,auto"]
-	Line[402250 76161 391838 76161 1000 2000 "clearline,auto"]
-	Line[391838 76161 391838 78311 1000 2000 "clearline,auto"]
-	Line[381603 62000 391838 62000 1000 2000 "clearline"]
-	Line[381603 57386 381603 62000 1000 2000 "clearline"]
-	Line[379044 80614 379044 76000 1000 2000 "clearline"]
-	Line[394397 84566 395831 86000 1000 2000 "clearline"]
-	Line[394397 80614 394397 84566 1000 2000 "clearline"]
-	Line[386720 46279 385941 45500 1000 2000 "clearline"]
-	Line[376485 52855 372441 48811 1000 2000 "clearline"]
-	Line[376485 57386 376485 52855 1000 2000 "clearline"]
-	Line[384162 80614 384162 94000 1000 2000 "clearline"]
-	Line[432000 327882 434882 325000 1000 2000 "clearline"]
-	Line[432000 330000 432000 327882 1000 2000 "clearline"]
-	Line[426882 328441 423441 325000 1000 2000 "clearline"]
-	Line[426882 330000 426882 328441 1000 2000 "clearline"]
-	Line[397497 152944 393135 152944 1000 2000 "clearline"]
-	Line[398441 152000 397497 152944 1000 2000 "clearline"]
-	Line[397615 147826 398441 147000 1000 2000 "clearline"]
-	Line[393135 147826 397615 147826 1000 2000 "clearline"]
-	Line[395831 86000 398441 86000 1000 2000 "clearline"]
-	Line[392949 88882 395831 86000 1000 2000 "clearline"]
-	Line[395441 94000 398441 91000 1000 2000 "clearline"]
-	Line[392949 94000 395441 94000 1000 2000 "clearline"]
-	Line[393441 34059 396441 34059 1000 2000 ""]
-	Line[396441 34059 397941 32559 1000 2000 ""]
-	Line[397441 27000 395441 27000 1000 2000 ""]
-	Line[395441 27000 393441 29000 1000 2000 ""]
-	Line[306581 126060 307716 124925 800 1600 "clearline"]
-	Line[297976 126060 306581 126060 800 1600 "clearline"]
-	Line[297976 128029 308992 128029 800 1600 "clearline"]
-	Line[305390 129997 308872 133478 800 1600 "clearline"]
-	Line[297976 129997 305390 129997 800 1600 "clearline"]
-	Line[291991 92228 298420 92228 800 1600 "clearline"]
-	Line[290035 94185 291991 92228 800 1600 "clearline"]
-	Line[290035 95037 290035 94185 800 1600 "clearline"]
-	Line[295931 100628 297971 98589 800 1600 "clearline"]
-	Line[289428 100628 295931 100628 800 1600 "clearline"]
-	Line[288066 99265 289428 100628 800 1600 "clearline"]
-	Line[288066 95037 288066 99265 800 1600 "clearline"]
-	Line[247189 122124 245557 120492 800 1600 "clearline"]
-	Line[253106 122124 247189 122124 800 1600 "clearline"]
-	Line[253106 124093 245166 124093 800 1600 "clearline"]
-	Line[253106 120156 260641 120156 800 1600 "clearline"]
-	Line[295489 173808 312917 173808 1000 2000 "clearline"]
-	Line[284130 162449 295489 173808 1000 2000 "clearline"]
-	Line[284130 139907 284130 162449 1000 2000 "clearline"]
-	Line[296103 171876 312620 171876 1000 2000 "clearline"]
-	Line[286099 161872 296103 171876 1000 2000 "clearline"]
-	Line[286099 139907 286099 161872 1000 2000 "clearline"]
-	Line[238192 116219 227240 127171 1000 2000 "clearline"]
-	Line[253106 116219 238192 116219 1000 2000 "clearline"]
-	Line[232350 126061 229240 129171 1000 2000 "clearline"]
-	Line[253106 126061 232350 126061 1000 2000 "clearline"]
-	Line[252106 139171 248799 139171 1000 2000 "clearline"]
-	Line[253106 138171 252106 139171 1000 2000 "clearline"]
-	Line[253106 133935 253106 138171 1000 2000 "clearline"]
-	Line[266413 95037 266413 103406 800 1600 "clearline"]
-	Line[264444 95037 264444 101008 800 1600 "clearline"]
-	Line[264444 100875 263240 102079 800 1600 "clearline"]
-	Line[263240 102079 263240 104671 800 1600 "clearline"]
-	Line[262476 95037 260740 96773 800 1600 "clearline"]
-	Line[260740 96773 260740 106671 800 1600 "clearline"]
-	Line[260740 106671 262240 108171 800 1600 "clearline"]
-	Line[262240 108171 262740 108171 800 1600 "clearline"]
-	Line[253106 104408 254740 102774 800 1600 "clearline"]
-	Line[254740 102774 254740 101671 800 1600 "clearline"]
-	Line[297976 108344 332557 108344 800 1600 "clearline"]
-	Line[297976 112281 295178 112281 800 1600 "clearline"]
-	Line[286098 95037 286098 99560 800 1600 "clearline"]
-	Line[286098 99386 286098 99560 800 1600 "clearline"]
-	Line[286098 99525 286098 99569 800 1600 "clearline"]
-	Line[286098 99569 288774 102245 800 1600 "clearline"]
-	Line[288774 102245 296702 102245 800 1600 "clearline"]
-	Line[296702 102245 304176 94771 800 1600 "clearline"]
-	Line[274287 95037 274287 82311 800 1600 "clearline"]
-	Line[274287 82311 270726 78751 800 1600 "clearline"]
-	Line[270351 104057 270351 102067 800 1600 "clearline"]
-	Line[270351 102067 269653 101369 800 1600 "clearline"]
-	Line[270351 139907 270351 103976 800 1600 "clearline"]
-	Line[272319 139907 272319 104406 800 1600 "clearline"]
-	Line[272319 104406 272319 102328 800 1600 "clearline"]
-	Line[272319 102328 273229 101418 800 1600 "clearline"]
-	Line[278225 139907 278225 120398 800 1600 "clearline"]
-	Line[253106 114250 237756 114250 800 1600 "clearline"]
-	Line[237756 114250 225528 126478 800 1600 "clearline"]
-	Line[253106 112282 237358 112282 800 1600 "clearline"]
-	Line[237358 112282 223884 125756 800 1600 "clearline"]
-	Line[253106 128030 259552 128030 800 1600 "clearline"]
-	Line[259552 128030 262750 131228 800 1600 "clearline"]
-	Line[253106 110313 228091 110313 800 1600 "clearline"]
-	Line[245207 124093 242550 121436 800 1600 "clearline"]
-	Line[242550 121436 240391 121436 800 1600 "clearline"]
-	Line[295259 112281 293902 113638 800 1600 "clearline"]
-	Line[293902 113638 293902 117737 800 1600 "clearline"]
-	Line[260501 120156 261609 120156 800 1600 "clearline"]
-	Line[253106 118187 257905 118187 800 1600 "clearline"]
-	Line[257905 118187 260341 115751 800 1600 "clearline"]
-	Line[253106 131967 249600 131967 800 1600 "clearline"]
-	Line[249600 131967 249396 132171 800 1600 "clearline"]
-	Line[249396 132171 246240 132171 800 1600 "clearline"]
-	Line[239154 131778 239154 134644 800 1600 "clearline"]
-	Line[239154 134644 243681 139171 800 1600 "clearline"]
-	Line[292003 95037 296779 95037 800 1600 "clearline"]
-	Line[240788 136279 239302 137765 800 1600 "clearline"]
-	Line[290048 148000 290048 141606 800 1600 "clearline"]
-	Line[296748 147612 296748 146350 800 1600 "clearline"]
-	Line[292004 139907 294441 139907 800 1600 "clearline"]
-	Line[294348 139907 296748 142307 800 1600 "clearline"]
-	Line[296748 142307 296748 146307 800 1600 "clearline"]
-	Line[296748 152730 296748 155000 800 1600 "clearline"]
-	Line[296748 155000 296662 155086 800 1600 "clearline"]
-	Line[296662 155086 290441 155086 800 1600 "clearline"]
-	Line[295937 155086 295937 156372 800 1600 "clearline"]
-	Line[278224 95037 278224 101483 800 1600 "clearline"]
-	Line[276255 95037 276255 92700 800 1600 "clearline"]
-	Line[276255 92700 277174 91781 800 1600 "clearline"]
-	Line[253106 106376 252274 106376 800 1600 "clearline"]
-	Line[252274 106376 250724 104826 800 1600 "clearline"]
-	Line[250724 104826 250724 102935 800 1600 "clearline"]
-	Line[250724 102935 249939 102150 800 1600 "clearline"]
-	Line[249939 102150 246827 102150 800 1600 "clearline"]
-	Line[249757 107268 250834 108345 800 1600 "clearline"]
-	Line[250834 108345 254805 108345 800 1600 "clearline"]
-	Line[249757 107268 243267 107268 800 1600 "clearline"]
-	Line[243267 107268 242456 106457 800 1600 "clearline"]
-	Line[246335 102150 243118 102150 800 1600 "clearline"]
-	Line[243118 102150 242168 101200 800 1600 "clearline"]
-	Line[297976 104407 302689 104407 800 1600 "clearline"]
-	Line[302689 104407 304230 102866 800 1600 "clearline"]
-	Line[304230 102866 304230 100712 800 1600 "clearline"]
-	Line[304230 100712 305098 99844 800 1600 "clearline"]
-	Line[305098 99844 307954 99844 800 1600 "clearline"]
-	Line[305357 104962 303944 106375 800 1600 "clearline"]
-	Line[303944 106375 299675 106375 800 1600 "clearline"]
-	Line[305357 104962 312122 104962 800 1600 "clearline"]
-	Line[307462 99844 312157 99844 800 1600 "clearline"]
-	Line[280192 91333 275887 87028 800 1600 "clearline"]
-	Line[275887 87028 275887 81648 800 1600 "clearline"]
-	Line[278941 71008 278941 87000 800 1600 "clearline"]
-	Line[278941 87000 282161 90220 800 1600 "clearline"]
-	Line[282161 90220 282161 96736 800 1600 "clearline"]
-	Line[278941 71992 278941 62500 800 1600 "clearline"]
-	Line[278941 62500 280119 61322 800 1600 "clearline"]
-	Line[280119 61322 285430 61322 800 1600 "clearline"]
-	Line[277449 57441 277449 52500 800 1600 "clearline"]
-	Line[303365 80346 298786 80346 800 1600 "clearline"]
-	Line[298786 80346 296453 82679 800 1600 "clearline"]
-	Line[284129 95037 284129 90812 800 1600 "clearline"]
-	Line[284129 90812 285441 89500 800 1600 "clearline"]
-	Line[285441 89500 294941 89500 800 1600 "clearline"]
-	Line[294941 89500 296453 87988 800 1600 "clearline"]
-	Line[296453 87988 296453 82679 800 1600 "clearline"]
-	Line[303365 75228 303365 70000 800 1600 "clearline"]
-	Line[296453 59993 302941 59993 800 1600 "clearline"]
-	Line[285430 81350 285430 75000 800 1600 "clearline"]
-	Line[304176 94771 369319 94771 800 1600 "clearline"]
-	Line[297938 98622 303559 93000 800 1600 "clearline"]
-	Line[303559 93000 376441 93000 800 1600 "clearline"]
-	Line[298441 92228 302670 88000 800 1600 "clearline"]
-	Line[302670 88000 370441 88000 800 1600 "clearline"]
-	Line[371602 139772 371602 154657 800 1600 "clearline"]
-	Line[371602 154657 377944 161000 800 1600 "clearline"]
-	Line[396441 165000 395441 165000 800 1600 "clearline"]
-	Line[395441 165000 391838 168603 800 1600 "clearline"]
-	Line[391838 168603 391838 175386 800 1600 "clearline"]
-	Line[393441 45000 393441 41500 800 1600 "clearline"]
-	Line[385941 34000 393441 41500 800 1600 "clearline"]
-	Line[387182 95720 384902 98000 800 1600 "clearline"]
-	Line[384902 98000 381441 98000 800 1600 "clearline"]
-	Line[398441 109000 389279 99838 800 1600 "clearline"]
-	Line[389279 78311 389279 99838 800 1600 "clearline"]
-	Line[369319 94771 401986 127439 800 1600 "clearline"]
-	Line[401986 127439 401986 146236 800 1600 "clearline"]
-	Line[401986 146122 401986 154468 800 1600 "clearline"]
-	Line[401986 154468 391461 164993 800 1600 "clearline"]
-	Line[366441 142228 366441 196922 800 1600 "clearline"]
-	Line[366441 196922 374519 205000 800 1600 "clearline"]
-	Line[374519 205000 376510 205000 800 1600 "clearline"]
-	Line[389441 216000 398441 225000 800 1600 "clearline"]
-	Line[398441 225000 398441 227000 800 1600 "clearline"]
-	Line[440941 277000 398441 234500 2500 2000 "clearline"]
-	Line[398441 234500 398441 227000 2500 2000 "clearline"]
-	Line[389279 57386 389279 44087 1000 2000 "clearline"]
-	Line[386720 57386 386720 46279 1000 2000 "clearline"]
-	Line[387172 95730 387172 88000 800 1600 "clearline"]
-	Line[387172 88000 386720 87548 800 1600 "clearline"]
-	Line[386720 87548 386720 80614 800 1600 "clearline"]
-	Line[364841 143135 364841 197908 800 1600 "clearline"]
-	Line[364841 197908 374323 207390 800 1600 "clearline"]
-	Line[374323 207390 379833 207390 800 1600 "clearline"]
-	Line[379833 207390 379833 211914 800 1600 "clearline"]
-	Line[379833 211914 383246 215327 800 1600 "clearline"]
-	Line[383246 215327 385730 215327 800 1600 "clearline"]
-	Line[363241 143798 363241 198571 800 1600 "clearline"]
-	Line[363241 198571 377441 212771 800 1600 "clearline"]
-	Line[377441 212771 377441 231882 800 1600 "clearline"]
-	Line[377441 233605 377441 232000 800 1600 "clearline"]
-	Line[297976 116218 333399 116218 800 1600 "clearline"]
-	Line[297976 118186 333104 118186 800 1600 "clearline"]
-	Line[297976 122123 334778 122123 800 1600 "clearline"]
-	Line[333399 116218 361641 144460 800 1600 "clearline"]
-	Line[333104 118186 360041 145123 800 1600 "clearline"]
-	Line[334778 122123 358441 145786 800 1600 "clearline"]
-	Line[358441 145786 358441 148000 800 1600 "clearline"]
-	Line[120666 257660 119666 258660 2500 2000 "clearline"]
-	Line[119666 258660 113975 258660 2500 2000 "clearline"]
-	Line[120666 262660 116666 258660 2500 2000 "clearline"]
-	Line[116666 258660 115036 258660 2500 2000 "clearline"]
-	Line[141166 257660 154177 257660 2500 2000 "clearline"]
-	Line[154177 257660 155438 258921 2500 2000 "clearline"]
-	Line[141166 262660 151222 262660 2500 2000 "clearline"]
-	Line[151222 262660 155382 258500 2500 2000 "clearline"]
-	Line[222941 262500 232882 262500 2500 2000 "clearline"]
-	Line[141166 287660 155222 287660 2500 2000 "clearline"]
-	Line[155222 287660 155382 287500 2500 2000 "clearline"]
-	Line[155382 287500 150542 282660 2500 2000 "clearline"]
-	Line[150542 282660 144416 282660 2500 2000 "clearline"]
-	Line[114000 287008 114652 287660 2500 2000 "clearline"]
-	Line[114652 287660 123916 287660 2500 2000 "clearline"]
-	Line[120666 282660 118840 282660 2500 2000 "clearline"]
-	Line[118840 282660 114000 287500 2500 2000 "clearline"]
-	Line[195500 258008 196008 257500 2500 2000 "clearline"]
-	Line[196008 257500 205691 257500 2500 2000 "clearline"]
-	Line[202441 262500 199874 262500 2500 2000 "clearline"]
-	Line[199874 262500 195441 258067 2500 2000 "clearline"]
-	Line[195475 287168 195807 287500 2500 2000 "clearline"]
-	Line[195807 287500 205691 287500 2500 2000 "clearline"]
-	Line[202441 282500 200635 282500 2500 2000 "clearline"]
-	Line[200635 282500 195475 287660 2500 2000 "clearline"]
-	Line[222941 287500 236882 287500 2500 2000 "clearline"]
-	Line[222941 282500 231882 282500 2500 2000 "clearline"]
-	Line[231882 282500 236882 287500 2500 2000 "clearline"]
-	Line[159949 281059 160500 281610 2500 2000 "clearline"]
-	Line[160500 281610 160500 287500 2500 2000 "clearline"]
-	Line[108882 287008 108882 281118 2500 2000 "clearline"]
-	Line[108882 281118 108941 281059 2500 2000 "clearline"]
-	Line[108857 258168 108857 263857 2500 2000 "clearline"]
-	Line[108857 263857 108941 263941 2500 2000 "clearline"]
-	Line[160500 258008 160500 263941 2500 2000 "clearline"]
-	Line[190382 258008 190382 263941 2500 2000 "clearline"]
-	Line[241449 281059 241449 286949 2500 2000 "clearline"]
-	Line[241449 286949 242000 287500 2500 2000 "clearline"]
-	Line[189949 281059 189949 287660 2500 2000 "clearline"]
-	Line[112542 272660 108941 269059 2500 2000 "clearline"]
-	Line[112222 272660 108941 275941 2500 2000 "clearline"]
-	Line[159949 269059 160441 269551 2500 2000 "clearline"]
-	Line[160441 269551 160441 275941 2500 2000 "clearline"]
-	Line[189949 269059 193390 272500 2500 2000 "clearline"]
-	Line[193882 272500 190441 275941 2500 2000 "clearline"]
-	Line[241449 269059 241941 269551 2500 2000 "clearline"]
-	Line[241941 269551 241941 275941 2500 2000 "clearline"]
-	Line[160441 272500 163941 272500 2500 2000 "clearline"]
-	Line[241941 272500 245441 272500 2500 2000 "clearline"]
-	Line[114441 278500 115281 277660 800 1600 "clearline"]
-	Line[115281 277660 123916 277660 800 1600 "clearline"]
-	Line[115441 267500 115601 267660 800 1600 "clearline"]
-	Line[115601 267660 123916 267660 800 1600 "clearline"]
-	Line[152441 278500 151601 277660 800 1600 "clearline"]
-	Line[151601 277660 144416 277660 800 1600 "clearline"]
-	Line[151941 268000 151601 267660 800 1600 "clearline"]
-	Line[151601 267660 144416 267660 800 1600 "clearline"]
-	Line[131882 267844 131882 252000 2500 2000 "clearline"]
-	Line[137000 251508 137000 269059 2500 2000 "clearline"]
-	Line[137000 251508 137492 252000 2500 2000 "clearline"]
-	Line[137492 252000 141441 252000 2500 2000 "clearline"]
-	Line[131882 251508 131390 252000 2500 2000 "clearline"]
-	Line[131390 252000 127941 252000 2500 2000 "clearline"]
-	Line[198441 277500 205691 277500 800 1600 "clearline"]
-	Line[195441 267000 195941 267500 800 1600 "clearline"]
-	Line[195941 267500 205691 267500 800 1600 "clearline"]
-	Line[213882 267559 213882 251500 2500 2000 "clearline"]
-	Line[219000 268559 219000 251500 2500 2000 "clearline"]
-	Line[213882 251008 212890 252000 2500 2000 "clearline"]
-	Line[219000 251992 219008 252000 2500 2000 "clearline"]
-	Line[219008 252000 223941 252000 2500 2000 "clearline"]
-	Line[234441 277500 226191 277500 800 1600 "clearline"]
-	Line[235941 267000 235441 267500 800 1600 "clearline"]
-	Line[235441 267500 226191 267500 800 1600 "clearline"]
-	Line[130941 168772 130453 169260 2500 2000 "clearline"]
-	Line[130453 169260 130453 188630 2500 2000 "clearline"]
-	Line[135941 168772 135571 169142 2500 2000 "clearline"]
-	Line[135571 169142 135571 182630 2500 2000 "clearline"]
-	Line[140941 168772 141012 168843 2500 2000 "clearline"]
-	Line[145941 168772 146130 168961 2500 2000 "clearline"]
-	Line[160941 168772 160941 179500 2500 2000 "clearline"]
-	Line[160941 179500 164571 183130 2500 2000 "clearline"]
-	Line[164571 183130 164571 187630 2500 2000 "clearline"]
-	Line[164571 187630 163571 188630 2500 2000 "clearline"]
-	Line[163571 188630 163071 194630 2500 2000 "clearline"]
-	Line[163071 195122 163000 195193 2500 2000 "clearline"]
-	Line[145941 135307 146130 135496 2500 2000 "clearline"]
-	Line[146130 135496 146130 174000 2500 2000 "clearline"]
-	Line[148799 91171 141799 91112 2500 2000 "clearline"]
-	Line[141307 91112 126799 91112 2500 2000 "clearline"]
-	Line[148799 96171 148740 96230 2500 2000 "clearline"]
-	Line[148740 96230 141799 96230 2500 2000 "clearline"]
-	Line[141307 96230 141307 99117 2500 2000 "clearline"]
-	Line[140949 71059 141061 71171 2500 2000 "clearline"]
-	Line[141061 71171 151799 71171 2500 2000 "clearline"]
-	Line[151799 71171 151799 76171 2500 2000 "clearline"]
-	Line[148799 71171 158441 71171 2500 2000 "clearline"]
-	Line[158441 71171 158441 75500 2500 2000 "clearline"]
-	Line[148799 76171 158441 76171 2500 2000 "clearline"]
-	Line[158441 76171 158441 73000 2500 2000 "clearline"]
-	Line[140949 76441 141219 76171 2500 2000 "clearline"]
-	Line[141219 76171 151799 76171 2500 2000 "clearline"]
-	Line[140949 81559 140949 85508 2500 2000 "clearline"]
-	Line[140949 85508 141799 86358 2500 2000 "clearline"]
-	Line[141799 86358 141799 91112 2500 2000 "clearline"]
-	Line[148799 101171 148599 101371 2500 2000 "clearline"]
-	Line[148599 101371 148599 107771 2500 2000 "clearline"]
-	Line[148299 107771 145899 110171 2500 2000 "clearline"]
-	Line[145899 110171 126799 110171 2500 2000 "clearline"]
-	Line[167299 101171 156799 111671 2500 2000 "clearline"]
-	Line[167299 101171 197799 101171 2500 2000 "clearline"]
-	Line[197307 76112 187799 76112 2500 2000 "clearline"]
-	Line[148799 66171 141441 66171 2500 2000 "clearline"]
-	Line[124831 90486 124831 97615 2500 2000 "clearline"]
-	Line[108857 258168 108857 249184 800 1600 "clearline"]
-	Line[190382 258992 190382 255059 800 1600 "clearline"]
-	Line[190382 255059 197441 248000 800 1600 "clearline"]
-	Line[242000 287008 246992 292000 800 1600 "clearline"]
-	Line[246992 292000 279941 292000 800 1600 "clearline"]
-	Line[279941 292000 280941 291000 800 1600 "clearline"]
-	Line[280941 291000 280941 286500 800 1600 "clearline"]
-	Line[280941 286500 278619 284178 800 1600 "clearline"]
-	Line[278619 284178 274688 284178 800 1600 "clearline"]
-	Line[245000 264059 242000 264059 800 1600 "clearline"]
-	Line[197441 248000 245141 248000 800 1600 "clearline"]
-	Line[245141 248000 258308 261167 800 1600 "clearline"]
-	Line[280221 281782 280909 281094 800 1600 "clearline"]
-	Line[280909 281094 280909 276966 800 1600 "clearline"]
-	Line[280909 277000 278088 274178 800 1600 "clearline"]
-	Line[278088 274178 274688 274178 800 1600 "clearline"]
-	Line[246941 246000 196941 246000 800 1600 "clearline"]
-	Line[189878 250800 196310 244368 800 1600 "clearline"]
-	Line[196310 244368 248572 244368 800 1600 "clearline"]
-	Line[248572 244368 268382 264178 800 1600 "clearline"]
-	Line[268382 264178 274688 264178 800 1600 "clearline"]
-	Line[165241 249200 189215 249200 800 1600 "clearline"]
-	Line[189215 249200 195678 242737 800 1600 "clearline"]
-	Line[195678 242737 250704 242737 800 1600 "clearline"]
-	Line[250678 242737 250704 242737 800 1600 "clearline"]
-	Line[250704 242737 269573 261606 800 1600 "clearline"]
-	Line[269573 261606 279063 261606 800 1600 "clearline"]
-	Line[279972 269178 274688 269178 800 1600 "clearline"]
-	Line[280691 252970 280691 256686 800 1600 "clearline"]
-	Line[280691 256686 278199 259178 800 1600 "clearline"]
-	Line[278199 259178 274688 259178 800 1600 "clearline"]
-	Line[291938 264178 304263 264178 2500 2000 "clearline"]
-	Line[304263 264178 304941 263500 2500 2000 "clearline"]
-	Line[304472 258432 303726 259178 2500 2000 "clearline"]
-	Line[303726 259178 295188 259178 2500 2000 "clearline"]
-	Line[291938 254178 300709 254178 2500 2000 "clearline"]
-	Line[300709 254178 304964 258432 2500 2000 "clearline"]
-	Line[305696 284060 310941 284060 2500 2000 "clearline"]
-	Line[304472 263550 309441 263550 2500 2000 "clearline"]
-	Line[304472 258432 309441 258432 2500 2000 "clearline"]
-	Line[291938 289178 306188 289178 2500 2000 "clearline"]
-	Line[305696 289178 305696 292500 2500 2000 "clearline"]
-	Line[291938 274178 307525 274178 800 1600 "clearline"]
-	Line[307525 274178 329417 252287 800 1600 "clearline"]
-	Line[291938 279178 304788 279178 800 1600 "clearline"]
-	Line[291938 284178 299638 284178 800 1600 "clearline"]
-	Line[299638 284178 303038 280778 800 1600 "clearline"]
-	Line[303038 280778 305451 280778 800 1600 "clearline"]
-	Line[328601 253102 332661 249042 800 1600 "clearline"]
-	Line[332661 249042 332661 212047 800 1600 "clearline"]
-	Line[304700 279178 304927 279178 800 1600 "clearline"]
-	Line[334308 249798 334308 211431 800 1600 "clearline"]
-	Line[305083 280778 305590 280778 800 1600 "clearline"]
-	Line[305590 280778 335927 250442 800 1600 "clearline"]
-	Line[312289 189417 304706 189417 800 1600 "clearline"]
-	Line[334308 211367 312358 189417 800 1600 "clearline"]
-	Line[332661 212000 313178 192517 800 1600 "clearline"]
-	Line[313178 192517 304584 192517 800 1600 "clearline"]
-	Line[270708 78733 264708 78733 800 1600 "clearline"]
-	Line[264708 78733 263441 80000 800 1600 "clearline"]
-	Line[274802 153844 280193 148453 800 1600 "clearline"]
-	Line[280193 148453 280193 141606 800 1600 "clearline"]
-	Line[282162 139907 282162 151851 800 1600 "clearline"]
-	Line[282162 151851 279206 154807 800 1600 "clearline"]
-	Line[279206 154807 279206 169766 800 1600 "clearline"]
-	Line[237387 220023 220345 220023 800 1600 "clearline"]
-	Line[220345 220023 215709 215387 800 1600 "clearline"]
-	Line[215709 215387 215709 215248 800 1600 "clearline"]
-	Line[262477 139907 262477 146464 800 1600 "clearline"]
-	Line[262477 146464 246941 162000 800 1600 "clearline"]
-	Line[264445 139907 264445 148496 800 1600 "clearline"]
-	Line[264445 148496 242441 170500 800 1600 "clearline"]
-	Line[266414 139907 266441 150500 800 1600 "clearline"]
-	Line[266441 150500 246441 170500 800 1600 "clearline"]
-	Line[268382 139907 268382 153059 800 1600 "clearline"]
-	Line[268382 153059 250941 170500 800 1600 "clearline"]
-	Line[223884 125756 223884 144000 800 1600 "clearline"]
-	Line[223884 144000 221884 146000 800 1600 "clearline"]
-	Line[225528 126478 225528 146913 800 1600 "clearline"]
-	Line[225528 146913 224441 148000 800 1600 "clearline"]
-	Line[360041 145123 360041 190000 800 1600 "clearline"]
-	Line[358441 148000 358441 165000 800 1600 "clearline"]
-	Line[358441 165000 356441 167000 800 1600 "clearline"]
-	Line[312620 171876 336441 171876 800 1600 "clearline"]
-	Line[336441 171876 338441 169876 800 1600 "clearline"]
-	Line[312917 173808 336441 173808 800 1600 "clearline"]
-	Line[336441 173808 338441 175808 800 1600 "clearline"]
-	Line[361641 144460 361641 199233 800 1600 "clearline"]
-	Line[369127 228686 369127 228686 800 1600 "clearline"]
-	Line[297976 133934 301042 137000 800 1600 "clearline"]
-	Line[301042 137000 318441 137000 800 1600 "clearline"]
-	Line[318441 137000 332441 151000 800 1600 "clearline"]
-	Line[289441 137000 288067 138374 800 1600 "clearline"]
-	Line[288067 138374 288067 141606 800 1600 "clearline"]
-	Line[227240 127171 227240 149201 800 1600 "clearline"]
-	Line[227240 149201 225441 151000 800 1600 "clearline"]
-	Line[229240 129171 229240 151799 800 1600 "clearline"]
-	Line[229240 151799 230441 153000 800 1600 "clearline"]
-	Line[253106 129998 257334 129998 800 1600 "clearline"]
-	Line[220729 134420 218246 131937 800 1600 "clearline"]
-	Line[219441 127500 222262 124679 800 1600 "clearline"]
-	Line[222262 124679 222262 119468 800 1600 "clearline"]
-	Line[203519 107078 217441 121000 800 1600 "clearline"]
-	Line[218309 132000 216941 130632 800 1600 "clearline"]
-	Line[216941 130632 216941 125500 800 1600 "clearline"]
-	Line[216941 125500 219941 122500 800 1600 "clearline"]
-	Line[219941 122500 219941 118500 800 1600 "clearline"]
-	Line[219941 118500 205941 104500 800 1600 "clearline"]
-	Line[205941 104500 205941 74853 800 1600 "clearline"]
-	Line[205941 74853 197259 66171 800 1600 "clearline"]
-	Line[197259 66171 187799 66171 800 1600 "clearline"]
-	Line[222262 119500 222262 116821 800 1600 "clearline"]
-	Line[222262 116821 208441 103000 800 1600 "clearline"]
-	Line[208441 103000 208441 74500 800 1600 "clearline"]
-	Line[208441 74500 197441 63500 800 1600 "clearline"]
-	Line[197441 63500 180941 63500 800 1600 "clearline"]
-	Line[228128 110313 220754 110313 800 1600 "clearline"]
-	Line[220754 110313 210941 100500 800 1600 "clearline"]
-	Line[210941 100500 210941 74000 800 1600 "clearline"]
-	Line[210941 74000 198441 61500 800 1600 "clearline"]
-	Line[198441 61500 179441 61500 800 1600 "clearline"]
-	Line[179441 61500 159770 81171 800 1600 "clearline"]
-	Line[159770 81171 151799 81171 800 1600 "clearline"]
-	Line[180941 63500 158270 86171 800 1600 "clearline"]
-	Line[158270 86171 151799 86171 800 1600 "clearline"]
-	Line[274288 139907 274288 144181 800 1600 "clearline"]
-	Line[274288 144181 269982 148487 800 1600 "clearline"]
-	Line[275887 81648 271118 76879 800 1600 "clearline"]
-	Line[271118 76879 261394 76879 800 1600 "clearline"]
-	Line[261394 76879 260568 77705 800 1600 "clearline"]
-	Line[260568 77705 260568 83003 800 1600 "clearline"]
-	Line[297976 120155 296286 120155 800 1600 "clearline"]
-	Line[296286 120155 294441 122000 800 1600 "clearline"]
-	Line[294441 122000 288441 122000 800 1600 "clearline"]
-	Line[288441 122000 281441 115000 800 1600 "clearline"]
-	Line[281441 115000 279441 115000 800 1600 "clearline"]
-	Line[261609 120156 264034 117731 800 1600 "clearline"]
-	Line[264034 117731 264034 117069 800 1600 "clearline"]
-	Line[266978 130582 266978 113347 800 1600 "clearline"]
-	Line[266978 113347 262278 113347 800 1600 "clearline"]
-	Line[262278 113347 258841 109910 800 1600 "clearline"]
-	Line[258841 109910 258841 97900 800 1600 "clearline"]
-	Line[245312 50107 230441 64978 800 1600 "clearline"]
-	Line[230441 64978 230441 107000 800 1600 "clearline"]
-	Line[245312 57107 240441 61978 800 1600 "clearline"]
-	Line[240441 61978 240441 90679 800 1600 "clearline"]
-	Line[240441 90679 246731 96969 800 1600 "clearline"]
-	Line[258841 97900 245355 84414 800 1600 "clearline"]
-	Line[245355 84414 245355 64500 800 1600 "clearline"]
-	Line[252441 64107 252834 64500 2500 2000 "clearline"]
-	Line[252834 64500 260882 64500 2500 2000 "clearline"]
-	Line[260839 57008 260347 57500 2500 2000 "clearline"]
-	Line[260347 57500 252398 57500 2500 2000 "clearline"]
-	Line[252398 50107 252791 50500 2500 2000 "clearline"]
-	Line[252791 50500 260839 50500 2500 2000 "clearline"]
-	Line[265957 50008 265957 57500 2500 2000 "clearline"]
-	Line[265957 57500 266000 57543 2500 2000 "clearline"]
-	Line[266000 57543 266000 64500 2500 2000 "clearline"]
-	Line[265957 50008 266449 50500 2500 2000 "clearline"]
-	Line[266449 50500 270441 50500 2500 2000 "clearline,rubberend"]
-	Line[265957 57992 266449 57500 2500 2000 "clearline"]
-	Line[266449 57500 270441 57500 2500 2000 "clearline"]
-	Line[266000 64008 266008 64000 2500 2000 "clearline"]
-	Line[266008 64000 270441 64000 2500 2000 "clearline"]
-	Line[388207 152720 388207 157019 800 1600 "clearline"]
-	Line[388207 157019 392188 161000 800 1600 "clearline"]
-	Line[191363 55551 179851 44038 800 1600 "clearline"]
-	Line[179851 44038 173850 44038 800 1600 "clearline"]
-	Line[151115 40500 145803 35189 800 1600 "clearline"]
-	Line[178887 57182 162155 57182 800 1600 "clearline"]
-	Line[162155 57182 145249 40276 800 1600 "clearline"]
-	Line[145249 40276 139132 40276 800 1600 "clearline"]
-	Line[139132 40276 135740 36883 800 1600 "clearline"]
-	Line[135740 36883 135740 35068 800 1600 "clearline"]
-	Line[280192 91333 280192 99691 800 1600 "clearline"]
-	Line[280192 99691 281692 101191 800 1600 "clearline"]
-	Line[281692 101191 281692 106164 800 1600 "clearline"]
-	Line[281692 106164 275876 111980 800 1600 "clearline"]
-	Line[275876 111980 275876 115363 800 1600 "clearline"]
-	Line[275876 115363 277826 117313 800 1600 "clearline"]
-	Line[277826 117313 279890 117313 800 1600 "clearline"]
-	Line[279890 117313 294482 131905 800 1600 "clearline"]
-	Line[294482 131905 294482 134457 800 1600 "clearline"]
-	Line[294482 134457 298803 138778 800 1600 "clearline"]
-	Line[298803 138778 317755 138778 800 1600 "clearline"]
-	Line[317755 138778 327407 148430 800 1600 "clearline"]
-	Line[327407 148430 327407 153590 800 1600 "clearline"]
-	Line[327407 153590 330486 156669 800 1600 "clearline"]
-	Line[330486 156669 336772 156669 800 1600 "clearline"]
-	Line[336772 156669 342441 151000 800 1600 "clearline"]
-	Line[313869 142428 322441 151000 800 1600 "clearline"]
-	Line[339837 58173 349316 58173 800 1600 "clearline"]
-	Line[349316 58173 358050 49439 800 1600 "clearline"]
-	Line[358050 49439 358050 46749 800 1600 "clearline"]
-	Line[358050 46749 363061 41738 800 1600 "clearline"]
-	Line[371157 41738 363061 41738 800 1600 "clearline"]
-	Line[353390 60479 360933 52936 800 1600 "clearline"]
-	Line[360933 52936 360933 47664 800 1600 "clearline"]
-	Line[360933 47664 363598 45000 800 1600 "clearline"]
-	Line[370441 45000 363598 45000 800 1600 "clearline"]
-	Line[237441 172955 218396 192000 800 1600 "clearline"]
-	Line[218396 192000 189441 192000 800 1600 "clearline"]
-	Line[189441 192000 172611 208830 800 1600 "clearline"]
-	Line[225824 215194 231840 209178 800 1600 "clearline"]
-	Line[231840 209178 239183 209178 800 1600 "clearline"]
-	Line[239183 209178 274802 173559 800 1600 "clearline"]
-	Line[274802 153844 274802 173559 800 1600 "clearline"]
-	Line[250914 211240 250914 217691 800 1600 "clearline"]
-	Line[250914 217691 248581 220023 800 1600 "clearline"]
-	Line[248581 220023 233567 220023 800 1600 "clearline"]
-	Line[335927 250442 337441 248928 800 1600 "clearline"]
-	Line[337441 248928 337441 237000 800 1600 "clearline"]
-	Line[361641 199300 369127 206786 800 1600 "clearline"]
-	Line[369127 230612 369127 206786 800 1600 "clearline"]
-	Line[168732 44038 168732 49167 2500 2000 "clearline"]
-	Line[151115 40500 172571 40500 800 1600 "clearline"]
-	Line[172571 40500 173850 41779 800 1600 "clearline"]
-	Line[173850 41779 173850 44038 800 1600 "clearline"]
-	Line[369127 230612 376337 237822 800 1600 "clearline"]
-	Line[376337 237822 377347 237822 800 1600 "clearline"]
-	Line[237359 172955 252223 172955 800 1600 "clearline"]
-	Line[252223 172955 256778 168400 800 1600 "clearline"]
-	Line[256810 168369 269982 155196 800 1600 "clearline"]
-	Line[269982 148487 269982 155196 800 1600 "clearline"]
-	Line[313869 142428 299592 142428 800 1600 "clearline"]
-	Line[299592 142428 294164 137000 800 1600 "clearline"]
-	Line[294164 137000 289441 137000 800 1600 "clearline"]
-	Line[257443 129998 261210 133765 800 1600 "clearline"]
-	Line[261210 133765 263795 133765 800 1600 "clearline"]
-	Line[263795 133765 266978 130582 800 1600 "clearline"]
-	Line[184799 71171 199112 71171 800 1600 "clearline"]
-	Line[199112 71171 203441 75500 800 1600 "clearline"]
-	Line[203441 75500 203441 107000 800 1600 "clearline"]
-	Line[203441 107000 204441 108000 800 1600 "clearline"]
-	Line[222941 257500 235178 257500 2500 2000 "clearline"]
-	Line[235178 257500 236178 258500 2500 2000 "clearline"]
-	Line[236178 258500 236382 258500 2500 2000 "clearline"]
-	Line[232882 262500 236382 259000 2500 2000 "clearline"]
-	Line[236382 259000 236382 258500 2500 2000 "clearline"]
-	Line[241500 258008 241500 263059 2500 2000 "clearline"]
-	Line[241500 263059 242441 264000 2500 2000 "clearline"]
-	Line[279047 261606 281047 261606 800 1600 "clearline"]
-	Line[281047 261606 282441 263000 800 1600 "clearline"]
-	Line[282441 263000 282441 266709 800 1600 "clearline"]
-	Line[279972 269178 282441 266709 800 1600 "clearline"]
-	Line[108857 249184 111041 247000 800 1600 "clearline"]
-	Line[111041 247000 188441 247000 800 1600 "clearline"]
-	Line[188441 247000 194941 240500 800 1600 "clearline"]
-	Line[194941 240500 251941 240500 800 1600 "clearline"]
-	Line[251941 240500 265619 254178 800 1600 "clearline"]
-	Line[265619 254178 274688 254178 800 1600 "clearline"]
-	Line[187441 245000 193941 238500 800 1600 "clearline"]
-	Line[193941 238500 253441 238500 800 1600 "clearline"]
-	Line[266441 251500 279221 251500 800 1600 "clearline"]
-	Line[279221 251500 280691 252970 800 1600 "clearline"]
-	Line[304927 279178 334308 249798 800 1600 "clearline"]
-	Line[291938 269178 309763 269178 800 1600 "clearline"]
-	Line[309763 269178 320804 258137 800 1600 "clearline"]
-	Line[320804 258137 320804 206075 800 1600 "clearline"]
-	Line[320804 206000 310421 195617 800 1600 "clearline"]
-	Line[310421 195617 305280 195617 800 1600 "clearline"]
-	Line[297976 114249 333942 114249 800 1600 "clearline"]
-	Line[333942 114249 363241 143548 800 1600 "clearline"]
-	Line[363241 143548 363241 144454 800 1600 "clearline"]
-	Line[297976 110312 332396 110312 800 1600 "clearline"]
-	Line[332396 110312 364841 142757 800 1600 "clearline"]
-	Line[364841 142757 364841 143543 800 1600 "clearline"]
-	Line[332251 108344 332761 108344 800 1600 "clearline"]
-	Line[332761 108344 366441 142024 800 1600 "clearline"]
-	Line[366441 142024 366441 143131 800 1600 "clearline"]
-	Line[358941 191500 360041 190400 800 1600 "clearline"]
-	Line[360041 190400 360041 170100 800 1600 "clearline"]
-	Line[99311 156630 107571 156630 4000 2000 ""]
-	Line[86941 300905 86941 241500 5500 2000 ""]
-	Line[102449 188559 102347 188457 2500 2000 "clearline"]
-	Line[102347 188457 95941 188457 2500 2000 "clearline"]
-	Line[95548 195543 95591 195500 2500 2000 "clearline"]
-	Line[95591 195500 104441 195500 2500 2000 "clearline"]
-	Line[170949 168118 170067 169000 2500 2000 "clearline"]
-	Line[170067 169000 165941 169000 2500 2000 "clearline"]
-	Line[170949 163000 170441 162492 2500 2000 "clearline"]
-	Line[170441 162492 170441 158543 2500 2000 "clearline"]
-	Line[170048 151457 170005 151500 2500 2000 "clearline"]
-	Line[170005 151500 162441 151500 2500 2000 "clearline"]
-	Line[377441 233605 386151 242315 800 1600 "clearline"]
-	Line[264382 89508 261502 92388 800 1600 "clearline"]
-	Line[261502 92388 261502 92633 800 1600 "clearline"]
-	Line[270350 95037 270350 90850 800 1600 "clearline"]
-	Line[270350 90850 269500 90000 800 1600 "clearline"]
-	Line[269500 89508 268941 88949 800 1600 "clearline"]
-	Line[268941 88949 268941 86000 800 1600 "clearline"]
-	Line[272318 95037 272318 84615 800 1600 "clearline"]
-	Line[272318 84615 269965 82262 800 1600 "clearline"]
-	Line[269965 82262 265196 82262 800 1600 "clearline"]
-	Line[265196 82262 260348 87110 800 1600 "clearline"]
-	Line[260348 87110 257209 87110 800 1600 "clearline"]
-	Line[257209 87110 254546 84448 800 1600 "clearline"]
-	Line[254546 84448 254546 76653 800 1600 "clearline"]
-	Line[254546 76653 249101 71207 800 1600 "clearline"]
-	Line[229818 45012 231331 43500 800 1600 "clearline"]
-	Line[231331 43500 245355 43500 800 1600 "clearline"]
-	Line[252441 43107 252834 43500 2500 2000 "clearline"]
-	Line[252834 43500 260882 43500 2500 2000 "clearline"]
-	Line[266000 43008 266000 50500 2500 2000 "clearline"]
-	Line[266000 43008 270441 43008 2500 2000 "clearline"]
-	Line[172691 208750 170941 210500 800 1600 "clearline"]
-	Line[170941 210500 170941 217000 800 1600 "clearline"]
-	Line[170941 217000 167941 220000 800 1600 "clearline"]
-	Line[167941 220000 149441 220000 800 1600 "clearline"]
-	Line[149441 220000 145717 216276 800 1600 "clearline"]
-	Line[145717 216276 145717 215185 800 1600 "clearline"]
-	Line[140941 168772 140882 168831 2500 2000 "clearline"]
-	Line[140882 168831 140882 181500 2500 2000 "clearline"]
-	Line[145941 168772 146000 168831 2500 2000 "clearline"]
-	Line[146000 168831 146000 185398 2500 2000 "clearline"]
-	Line[146000 185398 143898 187500 2500 2000 "clearline"]
-	Line[143898 187500 143898 194500 2500 2000 "clearline"]
-	Line[143898 194107 145036 195245 2500 2000 "clearline"]
-	Line[145036 195245 145036 204000 2500 2000 "clearline"]
-	Line[150941 168772 150984 168815 2500 2000 "clearline"]
-	Line[150984 168815 150984 187500 2500 2000 "clearline"]
-	Line[155941 168772 155941 179672 2500 2000 "clearline"]
-	Line[155941 179672 157485 181216 2500 2000 "clearline"]
-	Line[157485 181216 157485 187630 2500 2000 "clearline"]
-	Line[157485 187630 157398 187717 2500 2000 "clearline"]
-	Line[157398 187717 157398 194500 2500 2000 "clearline"]
-	Line[157398 194500 150984 194500 2500 2000 "clearline"]
-	Line[340186 301596 329941 301596 2500 2000 "clearline"]
-	Line[340186 301596 353282 288500 2500 2000 "clearline"]
-	Line[353282 288500 371941 288500 2500 2000 "clearline"]
-	Line[356823 328008 356941 327890 2500 2000 "clearline"]
-	Line[361941 328008 361941 318421 2500 2000 "clearline"]
-	Line[374548 341501 374549 341500 2500 2000 "clearline"]
-	Line[374549 341500 382780 341499 2500 2000 "clearline"]
-	Line[386941 315272 386941 325501 2500 2000 "clearline"]
-	Line[376941 315272 376941 327001 2500 2000 "clearline"]
-	Line[371941 281807 371941 318421 2500 2000 "clearline"]
-	Line[386941 325501 390441 329001 2500 2000 "clearline"]
-	Line[390441 329001 390527 333500 2500 2000 "clearline"]
-	Line[390527 333107 390484 338913 2500 2000 "clearline"]
-	Line[390484 338913 387898 341499 2500 2000 "clearline"]
-	Line[387898 341499 387941 346500 2500 2000 "clearline"]
-	Line[397548 301958 397548 297108 2500 2000 "clearline"]
-	Line[397548 297108 394941 294501 2500 2000 "clearline"]
-	Line[394941 294501 387441 294501 2500 2000 "clearline"]
-	Line[397548 309044 397941 309437 2500 2000 "clearline"]
-	Line[397941 309437 397941 315501 2500 2000 "clearline"]
-	Line[397449 320619 392567 325501 2500 2000 "clearline"]
-	Line[392567 325501 391941 325501 2500 2000 "clearline"]
-	Line[86941 301000 102941 317000 5500 2000 "clearline"]
-	Line[102941 317000 318941 317000 5500 2000 "clearline"]
-	Line[268381 95037 268381 94174 800 1600 "clearline"]
-	Line[268381 94174 264382 90175 800 1600 "clearline"]
-	Line[264382 90175 264382 90000 800 1600 "clearline"]
-	Line[275291 179048 245863 208476 2500 2000 "clearline"]
-	Line[279206 182948 250914 211240 800 1600 "clearline"]
-	Line[279206 169735 279206 182948 800 1600 "clearline"]
-	Line[135571 188138 136777 188138 2500 2000 "clearline"]
-	Line[136777 188138 139107 185809 2500 2000 "clearline"]
-	Line[139107 185809 139107 183275 2500 2000 "clearline"]
-	Line[139107 183275 140882 181500 2500 2000 "clearline"]
-	Line[366941 315272 366882 315331 2500 2000 "clearline"]
-	Line[366882 315331 366882 328001 2500 2000 "clearline"]
-	Line[366882 328493 365467 329908 2500 2000 "clearline"]
-	Line[365467 329908 365467 331317 2500 2000 "clearline"]
-	Line[365467 331317 362284 334500 2500 2000 "clearline"]
-	Line[371941 315272 372000 315331 2500 2000 "clearline"]
-	Line[372000 315331 372000 332398 2500 2000 "clearline"]
-	Line[372000 332398 370398 334000 2500 2000 "clearline"]
-	Line[376941 327000 377484 327543 2500 2000 "clearline"]
-	Line[377484 327543 377484 334000 2500 2000 "clearline"]
-	Line[381941 315272 381941 327000 2500 2000 "clearline"]
-	Line[381941 327000 384398 329457 2500 2000 "clearline"]
-	Line[384398 329457 384398 333500 2500 2000 "clearline"]
-	Line[384398 333107 383441 334064 2500 2000 "clearline"]
-	Line[383441 334064 383441 337000 2500 2000 "clearline"]
-	Line[383441 337000 382440 338001 2500 2000 "clearline"]
-	Line[382440 338001 382440 341499 2500 2000 "clearline"]
-	Line[374548 348587 379961 354000 2500 2000 "clearline"]
-	Line[379961 354000 381536 354000 2500 2000 "clearline"]
-	Line[370398 333607 369441 334564 2500 2000 "clearline"]
-	Line[369441 334564 369441 345500 2500 2000 "clearline"]
-	Line[369441 345500 372528 348587 2500 2000 "clearline"]
-	Line[372528 348587 374548 348587 2500 2000 "clearline"]
-	Line[141166 272660 160281 272660 2500 2000 "clearline"]
-	Line[160281 272660 160441 272500 2500 2000 "clearline"]
-	Line[131882 267844 127066 272660 2500 2000 "clearline"]
-	Line[127066 272660 123916 272660 2500 2000 "clearline"]
-	Line[137000 269441 140219 272660 2500 2000 "clearline"]
-	Line[140219 272660 141441 272660 2500 2000 "clearline"]
-	Line[165441 249200 163241 249200 800 1600 "clearline"]
-	Line[163241 249200 160441 252000 800 1600 "clearline"]
-	Line[160534 251503 160500 251536 800 1600 "clearline"]
-	Line[160500 251536 160500 258441 800 1600 "clearline"]
-	Line[160933 263941 161211 263663 800 1600 "clearline"]
-	Line[161211 263663 165975 263663 800 1600 "clearline"]
-	Line[165483 268781 165483 270958 2500 2000 "clearline"]
-	Line[165483 270958 163941 272500 2500 2000 "clearline"]
-	Line[163941 272500 166441 275000 2500 2000 "clearline"]
-	Line[166441 275000 166441 275941 2500 2000 "clearline"]
-	Line[190178 250500 189746 250932 800 1600 "clearline"]
-	Line[189746 250932 175256 250932 800 1600 "clearline"]
-	Line[108449 281059 102441 281059 2500 2000 "clearline"]
-	Line[102441 281059 102401 281099 2500 2000 "clearline"]
-	Line[102401 281099 102401 286565 2500 2000 "clearline"]
-	Line[101949 275941 101978 275970 2500 2000 "clearline"]
-	Line[101978 275970 108912 275970 2500 2000 "clearline"]
-	Line[102191 259042 102790 259642 2500 2000 "clearline"]
-	Line[102790 259642 102790 263865 2500 2000 "clearline"]
-	Line[102790 263865 103009 264084 2500 2000 "clearline"]
-	Line[103009 264084 108857 264084 2500 2000 "clearline"]
-	Line[102191 253924 104615 251500 800 1600 "clearline"]
-	Line[104615 251500 106441 251500 800 1600 "clearline"]
-	Line[187441 245000 103941 245000 800 1600 "clearline"]
-	Line[103941 245000 97441 251500 800 1600 "clearline"]
-	Line[97441 251500 97441 281500 800 1600 "clearline"]
-	Line[97441 281500 99941 284000 800 1600 "clearline"]
-	Line[99941 284000 99981 283960 800 1600 "clearline"]
-	Line[99981 283960 102401 283960 800 1600 "clearline"]
-	Line[102298 268983 102315 269000 2500 2000 "clearline"]
-	Line[102315 269000 108882 269000 2500 2000 "clearline"]
-	Line[101909 291683 101941 291715 2500 2000 "clearline"]
-	Line[101941 291715 101941 295500 2500 2000 "clearline"]
-	Line[159949 281059 166441 281059 2500 2000 "clearline"]
-	Line[166166 287432 166097 287500 2500 2000 "clearline"]
-	Line[166097 287500 160500 287500 2500 2000 "clearline"]
-	Line[155416 251503 150444 251503 2500 2000 "clearline"]
-	Line[150444 251503 149941 251000 2500 2000 "clearline"]
-	Line[166166 292550 166441 292825 2500 2000 "clearline"]
-	Line[166441 292825 166441 296000 2500 2000 "clearline"]
-	Line[183949 281059 190441 281059 2500 2000 "clearline"]
-	Line[189949 275941 184441 275941 2500 2000 "clearline"]
-	Line[183949 281059 184441 281551 2500 2000 "clearline"]
-	Line[184441 281551 184441 286941 2500 2000 "clearline"]
-	Line[183949 292059 183941 292067 2500 2000 "clearline"]
-	Line[183941 292067 183941 296000 2500 2000 "clearline"]
-	Line[189949 263941 189937 263929 2500 2000 "clearline"]
-	Line[189937 263929 184983 263929 2500 2000 "clearline"]
-	Line[202118 251162 202955 252000 2500 2000 "clearline"]
-	Line[212890 252000 202955 252000 2500 2000 "clearline"]
-	Line[197441 248000 197000 248441 800 1600 "clearline"]
-	Line[197000 248441 197000 251654 800 1600 "clearline"]
-	Line[184491 269047 184503 269059 2500 2000 "clearline"]
-	Line[184503 269059 190441 269059 2500 2000 "clearline"]
-	Line[175256 250932 171441 254747 800 1600 "clearline"]
-	Line[171441 254747 171441 277500 800 1600 "clearline"]
-	Line[171441 277500 167882 281059 800 1600 "clearline"]
-	Line[167882 281059 166382 281059 800 1600 "clearline"]
-	Line[196941 246000 183441 259500 800 1600 "clearline"]
-	Line[183441 259500 180441 259500 800 1600 "clearline"]
-	Line[180441 259500 178941 261000 800 1600 "clearline"]
-	Line[178941 261000 178941 279500 800 1600 "clearline"]
-	Line[178941 279500 180500 281059 800 1600 "clearline"]
-	Line[180500 281059 184382 281059 800 1600 "clearline"]
-	Line[202441 272500 208941 272500 2500 2000 "clearline"]
-	Line[208941 272500 213882 267559 2500 2000 "clearline"]
-	Line[219000 268559 222941 272500 2500 2000 "clearline"]
-	Line[222941 272500 226191 272500 2500 2000 "clearline"]
-	Line[241449 281059 248441 281059 2500 2000 "clearline"]
-	Line[247949 275941 247890 276000 2500 2000 "clearline"]
-	Line[247890 276000 241941 276000 2500 2000 "clearline"]
-	Line[247949 297559 248008 297500 2500 2000 "clearline"]
-	Line[248008 297500 253441 297500 2500 2000 "clearline"]
-	Line[253441 238500 266441 251500 800 1600 "clearline"]
-	Line[235955 251754 235709 252000 2500 2000 "clearline"]
-	Line[235709 252000 231441 252000 2500 2000 "clearline"]
-	Line[241073 251754 241059 251768 2500 2000 "clearline"]
-	Line[241059 251768 241059 258500 2500 2000 "clearline"]
-	Line[241449 263941 241657 263733 2500 2000 "clearline"]
-	Line[241657 263733 248008 263733 2500 2000 "clearline"]
-	Line[247516 268851 247308 269059 2500 2000 "clearline"]
-	Line[247308 269059 241941 269059 2500 2000 "clearline"]
-	Line[246941 246000 266441 265500 800 1600 "clearline"]
-	Line[266441 265500 266441 276500 800 1600 "clearline"]
-	Line[266441 276500 269119 279178 800 1600 "clearline"]
-	Line[269119 279178 274688 279178 800 1600 "clearline"]
-	Line[258291 261150 263941 266800 800 1600 "clearline"]
-	Line[263941 266800 263941 278500 800 1600 "clearline"]
-	Line[263941 278500 267222 281781 800 1600 "clearline"]
-	Line[267222 281781 280222 281781 800 1600 "clearline"]
-	Line[271438 289178 266119 289178 800 1600 "clearline"]
-	Line[266119 289178 255941 279000 800 1600 "clearline"]
-	Line[255941 279000 255941 270000 800 1600 "clearline"]
-	Line[255941 270000 249674 263733 800 1600 "clearline"]
-	Line[249674 263733 247941 263733 800 1600 "clearline"]
-	Text[113799 48171 0 120 "20130120" "clearline"]
-	Polygon("")
-	(
-		[182941 79000] [199941 79000] [199941 97500] [182941 97500] 
-	)
-	Polygon("")
-	(
-		[80441 152000] [109941 152000] [109941 133500] [121941 121500] [165941 121500] 
-		[165941 163000] [80441 163000] 
-	)
-	Polygon("")
-	(
-		[74941 165000] [90441 165000] [90441 175000] [74941 175000] 
-	)
-	Polygon("")
-	(
-		[100441 165000] [115941 165000] [115941 175000] [100441 175000] 
-	)
-	Polygon("")
-	(
-		[112441 165000] [127941 165000] [127941 175000] [112441 175000] 
-	)
-	Polygon("")
-	(
-		[117441 165000] [132941 165500] [132941 175000] [117441 175000] 
-	)
-	Polygon("")
-	(
-		[117441 167500] [132941 167500] [132941 177500] [117441 177500] 
-	)
-	Polygon("")
-	(
-		[114941 177000] [130441 177000] [130441 187000] [114941 187000] 
-	)
-	Polygon("")
-	(
-		[116441 182500] [131941 182500] [131941 192500] [116441 192500] 
-	)
-	Polygon("")
-	(
-		[116441 176000] [131941 176000] [131941 186000] [116441 186000] 
-	)
-	Polygon("clearpoly")
-	(
-		[69941 205500] [101441 205500] [101441 244500] [69941 244500] 
-	)
-	Polygon("")
-	(
-		[99941 176000] [115441 176000] [115441 186000] [99941 186000] 
-	)
-	Polygon("")
-	(
-		[267324 199427] [271324 199427] [271324 203427] [267324 203427] 
-	)
-	Polygon("")
-	(
-		[267324 199427] [271324 199427] [271324 203427] [267324 203427] 
-	)
-	Polygon("")
-	(
-		[258824 206427] [262824 206427] [262824 210427] [258824 210427] 
-	)
-	Polygon("")
-	(
-		[241824 195927] [245824 195927] [245824 199927] [241824 199927] 
-	)
-	Polygon("")
-	(
-		[249824 187427] [253824 187427] [253824 191427] [249824 191427] 
-	)
-	Polygon("")
-	(
-		[267824 166427] [271824 166427] [271824 170427] [267824 170427] 
-	)
-	Polygon("clearpoly")
-	(
-		[69941 165500] [132941 165000] [132441 192500] [116441 192500] [101941 207000] 
-		[101941 207500] [69941 207500] 
-	)
-	Polygon("")
-	(
-		[136592 191607] [146455 191607] [146455 210060] [136592 210060] 
-	)
-	Polygon("")
-	(
-		[159441 167000] [159441 179000] [162441 182000] [162441 190000] [160941 191500] 
-		[160941 198500] [153441 198500] [153441 209500] [167441 209500] [171941 205000] 
-		[171941 184500] [168441 181000] [168441 167000] 
-	)
-	Polygon("")
-	(
-		[323941 292501] [347941 268501] [391941 268501] [391941 308501] [323941 308501] 
-	)
-	Polygon("")
-	(
-		[314941 311000] [357941 311000] [357941 338000] [344941 338000] [330941 324000] 
-		[314941 324000] 
-	)
-	Polygon("")
-	(
-		[385941 313501] [385941 325501] [388941 328501] [388941 336501] [387441 338001] 
-		[387441 360500] [398441 360500] [398441 331001] [394941 327501] [394941 313501] 
-	)
-	Polygon("clearpoly")
-	(
-		[283441 148500] [211441 148500] [211441 230500] [283441 230500] 
-	)
-	Polygon("")
-	(
-		[366441 334000] [370398 334000] [370441 348000] [384441 348000] [384441 360500] 
-		[368941 360500] [366441 358000] 
-	)
-)
-Layer(2 "power")
-(
-	Line[397441 27000 393941 23500 2500 2000 ""]
-	Line[398441 86000 395441 86000 2500 2000 ""]
-	Line[398441 147000 394441 147000 2500 2000 ""]
-	Line[398441 206386 395441 206386 2500 2000 ""]
-	Line[106441 251500 112941 251500 2500 2000 "clearline"]
-	Line[101941 295500 111441 295500 2500 2000 "clearline"]
-	Polygon("")
-	(
-		[382941 49500] [389441 49500] [389441 41500] [382941 41500] 
-	)
-	Polygon("")
-	(
-		[383941 122500] [390441 122500] [390441 114500] [383941 114500] 
-	)
-	Polygon("")
-	(
-		[383441 169000] [389941 169000] [389941 161000] [383441 161000] 
-	)
-	Polygon("")
-	(
-		[383441 240000] [389941 240000] [389941 232000] [383441 232000] 
-	)
-	Polygon("")
-	(
-		[428941 293500] [435441 293500] [435441 285500] [428941 285500] 
-	)
-	Polygon("")
-	(
-		[419441 328000] [426441 328000] [426441 322000] [419441 322000] 
-	)
-	Polygon("")
-	(
-		[292922 98958] [299422 98958] [299422 90958] [292922 90958] 
-	)
-	Polygon("")
-	(
-		[249877 142945] [256377 142945] [256377 134945] [249877 134945] 
-	)
-	Polygon("")
-	(
-		[258902 96891] [265402 96891] [265402 88891] [258902 88891] 
-	)
-	Polygon("")
-	(
-		[292941 147000] [299441 147000] [299441 139000] [292941 139000] 
-	)
-	Polygon("")
-	(
-		[238701 111793] [245201 111793] [245201 103793] [238701 103793] 
-	)
-	Polygon("")
-	(
-		[309441 102000] [314941 102000] [314941 97000] [309441 97000] 
-	)
-	Polygon("clearpoly")
-	(
-		[481441 6000] [481441 358500] [478941 361000] [75441 361000] [72941 358500] 
-		[72941 327500] [328441 327500] [328441 268000] [408941 268000] [408941 333000] 
-		[453441 333000] [453441 246000] [406441 246000] [407441 3000] [478941 3000] 
-	)
-	Polygon("")
-	(
-		[386941 317000] [397941 317000] [397441 358500] [386941 358500] 
-	)
-	Polygon("")
-	(
-		[437412 346125] [442912 346125] [442912 341125] [437412 341125] 
-	)
-	Polygon("clearpoly")
-	(
-		[109941 121500] [130941 121500] [130941 57500] [156941 57500] [156941 121500] 
-		[168441 121500] [168441 183500] [173441 183500] [173441 232500] [320941 232500] 
-		[320941 323500] [109941 323500] 
-	)
-	Polygon("")
-	(
-		[162941 171500] [168441 171500] [168441 166500] [162941 166500] 
-	)
-	Polygon("")
-	(
-		[162941 176000] [168441 176000] [168441 171000] [162941 171000] 
-	)
-	Polygon("")
-	(
-		[162941 182000] [168441 182000] [168441 177000] [162941 177000] 
-	)
-	Polygon("")
-	(
-		[166441 188500] [171941 188500] [171941 183500] [166441 183500] 
-	)
-	Polygon("")
-	(
-		[166441 194000] [171941 194000] [171941 189000] [166441 189000] 
-	)
-	Polygon("")
-	(
-		[166441 201000] [171941 201000] [171941 196000] [166441 196000] 
-	)
-	Polygon("")
-	(
-		[206441 254500] [211941 254500] [211941 249500] [206441 249500] 
-	)
-	Polygon("")
-	(
-		[124941 254500] [130441 254500] [130441 249500] [124941 249500] 
-	)
-	Polygon("")
-	(
-		[132941 64500] [138441 64500] [138441 59500] [132941 59500] 
-	)
-	Polygon("")
-	(
-		[132941 68000] [138441 68000] [138441 63000] [132941 63000] 
-	)
-	Polygon("")
-	(
-		[137441 65000] [142941 65000] [142941 60000] [137441 60000] 
-	)
-	Polygon("")
-	(
-		[151441 65000] [156941 65000] [156941 60000] [151441 60000] 
-	)
-	Polygon("")
-	(
-		[306941 260932] [312441 260932] [312441 255932] [306941 255932] 
-	)
-	Polygon("")
-	(
-		[308441 286560] [313941 286560] [313941 281560] [308441 281560] 
-	)
-	Polygon("")
-	(
-		[267941 53000] [273441 53000] [273441 48000] [267941 48000] 
-	)
-	Polygon("")
-	(
-		[267941 60000] [273441 60000] [273441 55000] [267941 55000] 
-	)
-	Polygon("")
-	(
-		[267941 66500] [273441 66500] [273441 61500] [267941 61500] 
-	)
-	Polygon("")
-	(
-		[214941 141500] [220441 141500] [220441 136500] [214941 136500] 
-	)
-	Polygon("")
-	(
-		[218441 143000] [223941 143000] [223941 138000] [218441 138000] 
-	)
-	Polygon("clearpoly")
-	(
-		[400441 3000] [170441 3000] [169941 178500] [174941 178500] [174941 228500] 
-		[368441 228500] [368441 263500] [412441 263500] [412441 327500] [449441 327500] 
-		[449441 247000] [400441 247000] 
-	)
-	Polygon("")
-	(
-		[388723 317877] [394223 317877] [394223 312877] [388723 312877] 
-	)
-	Polygon("")
-	(
-		[109941 245000] [117941 245000] [117941 260000] [109941 260000] 
-	)
-	Polygon("")
-	(
-		[109941 292000] [114941 292000] [114941 299500] [109941 299500] 
-	)
-	Polygon("")
-	(
-		[146941 253500] [152441 253500] [152441 248500] [146941 248500] 
-	)
-	Polygon("")
-	(
-		[163941 298500] [169441 298500] [169441 293500] [163941 293500] 
-	)
-	Polygon("")
-	(
-		[180941 298500] [186441 298500] [186441 293500] [180941 293500] 
-	)
-	Polygon("")
-	(
-		[228441 254500] [233941 254500] [233941 249500] [228441 249500] 
-	)
-	Polygon("")
-	(
-		[250941 300000] [256441 300000] [256441 295000] [250941 295000] 
-	)
-)
-Layer(3 "ground")
-(
-	Line[397941 32559 394441 32559 2500 2000 ""]
-	Line[398441 91000 395441 91000 2500 2000 ""]
-	Line[398441 152000 395441 152000 2500 2000 ""]
-	Line[446441 298000 442441 298000 2500 2000 ""]
-	Line[400441 211000 395441 211000 2500 2000 ""]
-	Line[302941 59993 300453 59993 2500 2000 ""]
-	Line[319941 313000 98441 313000 7000 2000 ""]
-	Line[98441 313000 86941 301500 7000 2000 ""]
-	Line[86941 301500 86941 288500 7000 2000 ""]
-	Polygon("")
-	(
-		[378441 17000] [389441 17000] [389441 25000] [378441 25000] 
-	)
-	Polygon("")
-	(
-		[368441 45000] [379441 45000] [379441 53000] [368441 53000] 
-	)
-	Polygon("")
-	(
-		[379162 91000] [390162 91000] [390162 99000] [379162 99000] 
-	)
-	Polygon("")
-	(
-		[366441 105311] [377441 105311] [377441 113311] [366441 113311] 
-	)
-	Polygon("")
-	(
-		[379512 139000] [390512 139000] [390512 147000] [379512 147000] 
-	)
-	Polygon("")
-	(
-		[370441 160843] [381441 160843] [381441 168843] [370441 168843] 
-	)
-	Polygon("")
-	(
-		[367485 224614] [378485 224614] [378485 232614] [367485 232614] 
-	)
-	Polygon("")
-	(
-		[414441 314000] [425441 314000] [425441 322000] [414441 322000] 
-	)
-	Polygon("")
-	(
-		[388441 189000] [396441 189000] [396441 196000] [388441 196000] 
-	)
-	Polygon("")
-	(
-		[390441 69882] [396441 70000] [396441 77000] [390441 76882] 
-	)
-	Polygon("")
-	(
-		[284262 89200] [292262 89200] [292262 96200] [284262 96200] 
-	)
-	Polygon("")
-	(
-		[266207 82284] [274207 82284] [274207 89284] [266207 89284] 
-	)
-	Polygon("")
-	(
-		[236441 135000] [244441 135000] [244441 142000] [236441 142000] 
-	)
-	Polygon("")
-	(
-		[291712 152853] [299712 152853] [299712 159853] [291712 159853] 
-	)
-	Polygon("")
-	(
-		[236218 96834] [244218 96834] [244218 103834] [236218 103834] 
-	)
-	Polygon("")
-	(
-		[308941 102500] [315441 102500] [315441 108500] [308941 108500] 
-	)
-	Polygon("")
-	(
-		[282148 71866] [288648 71866] [288648 77866] [282148 77866] 
-	)
-	Polygon("")
-	(
-		[300719 66534] [304150 66562] [307219 72534] [300719 72534] 
-	)
-	Polygon("")
-	(
-		[274167 49366] [280667 49366] [280667 55366] [274167 55366] 
-	)
-	Polygon("")
-	(
-		[375937 206839] [386937 206839] [386937 214839] [375937 214839] 
-	)
-	Polygon("")
-	(
-		[428941 320000] [439941 320000] [439941 328000] [428941 328000] 
-	)
-	Polygon("")
-	(
-		[430941 340500] [437441 340500] [437441 346500] [430941 346500] 
-	)
-	Polygon("")
-	(
-		[107941 269500] [114441 269500] [114441 275500] [107941 275500] 
-	)
-	Polygon("")
-	(
-		[159441 269500] [165941 269500] [165941 275500] [159441 275500] 
-	)
-	Polygon("")
-	(
-		[188941 269500] [195441 269500] [195441 275500] [188941 275500] 
-	)
-	Polygon("")
-	(
-		[240941 269500] [247441 269500] [247441 275500] [240941 275500] 
-	)
-	Polygon("")
-	(
-		[137941 249000] [144441 249000] [144441 255000] [137941 255000] 
-	)
-	Polygon("")
-	(
-		[220441 249000] [226941 249000] [226941 255000] [220441 255000] 
-	)
-	Polygon("")
-	(
-		[159941 122500] [165441 122500] [165441 162000] [159941 162000] 
-	)
-	Polygon("")
-	(
-		[125941 121500] [131441 121500] [131441 161000] [125941 161000] 
-	)
-	Polygon("")
-	(
-		[155197 68454] [161697 68454] [161697 74454] [155197 74454] 
-	)
-	Polygon("")
-	(
-		[155441 72171] [161941 72171] [161941 78171] [155441 78171] 
-	)
-	Polygon("")
-	(
-		[138021 96151] [144521 96151] [144521 102151] [138021 102151] 
-	)
-	Polygon("")
-	(
-		[194441 87500] [200941 87500] [200941 93500] [194441 93500] 
-	)
-	Polygon("")
-	(
-		[192441 84500] [198941 84500] [198941 90500] [192441 90500] 
-	)
-	Polygon("")
-	(
-		[194441 81500] [200941 81500] [200941 87500] [194441 87500] 
-	)
-	Polygon("")
-	(
-		[109941 40500] [116441 40500] [116441 46500] [109941 46500] 
-	)
-	Polygon("")
-	(
-		[117941 40500] [124441 40500] [124441 46500] [117941 46500] 
-	)
-	Polygon("")
-	(
-		[126941 40500] [133441 40500] [133441 46500] [126941 46500] 
-	)
-	Polygon("")
-	(
-		[139441 40500] [145941 40500] [145941 46500] [139441 46500] 
-	)
-	Polygon("")
-	(
-		[139441 46500] [145941 46500] [145941 52500] [139441 52500] 
-	)
-	Polygon("")
-	(
-		[145441 46500] [151941 46500] [151941 52500] [145441 52500] 
-	)
-	Polygon("")
-	(
-		[150941 51000] [157441 51000] [157441 57000] [150941 57000] 
-	)
-	Polygon("")
-	(
-		[123441 56500] [129941 56500] [129941 62500] [123441 62500] 
-	)
-	Polygon("")
-	(
-		[123441 62500] [129941 62500] [129941 68500] [123441 68500] 
-	)
-	Polygon("")
-	(
-		[113441 62000] [119941 62000] [119941 68000] [113441 68000] 
-	)
-	Polygon("")
-	(
-		[109441 62000] [115941 62000] [115941 68000] [109441 68000] 
-	)
-	Polygon("")
-	(
-		[109441 55500] [115941 55500] [115941 61500] [109441 61500] 
-	)
-	Polygon("")
-	(
-		[302196 290000] [308696 290000] [308696 296000] [302196 296000] 
-	)
-	Polygon("")
-	(
-		[165130 46070] [171630 46070] [171630 52070] [165130 52070] 
-	)
-	Polygon("")
-	(
-		[201941 120000] [208441 120000] [208441 126000] [201941 126000] 
-	)
-	Polygon("")
-	(
-		[194941 127500] [201441 127500] [201441 133500] [194941 133500] 
-	)
-	Polygon("")
-	(
-		[194941 134500] [201441 134500] [201441 140500] [194941 140500] 
-	)
-	Polygon("")
-	(
-		[178441 138500] [184941 138500] [184941 144500] [178441 144500] 
-	)
-	Polygon("")
-	(
-		[220941 153000] [227441 153000] [227441 159000] [220941 159000] 
-	)
-	Polygon("")
-	(
-		[221441 161500] [227941 161500] [227941 167500] [221441 167500] 
-	)
-	Polygon("")
-	(
-		[232941 161500] [239441 161500] [239441 167500] [232941 167500] 
-	)
-	Polygon("")
-	(
-		[209441 159000] [215941 159000] [215941 165000] [209441 165000] 
-	)
-	Polygon("")
-	(
-		[200441 159500] [206941 159500] [206941 165500] [200441 165500] 
-	)
-	Polygon("")
-	(
-		[190441 160000] [196941 160000] [196941 166000] [190441 166000] 
-	)
-	Polygon("")
-	(
-		[221941 170500] [228441 170500] [228441 176500] [221941 176500] 
-	)
-	Polygon("")
-	(
-		[221441 176500] [227941 176500] [227941 182500] [221441 182500] 
-	)
-	Polygon("")
-	(
-		[216941 182000] [223441 182000] [223441 188000] [216941 188000] 
-	)
-	Polygon("")
-	(
-		[206941 184500] [213441 184500] [213441 190500] [206941 190500] 
-	)
-	Polygon("")
-	(
-		[198941 184500] [205441 184500] [205441 190500] [198941 190500] 
-	)
-	Polygon("")
-	(
-		[190441 184500] [196941 184500] [196941 190500] [190441 190500] 
-	)
-	Polygon("")
-	(
-		[181941 179500] [188441 179500] [188441 185500] [181941 185500] 
-	)
-	Polygon("")
-	(
-		[173941 179500] [180441 179500] [180441 185500] [173941 185500] 
-	)
-	Polygon("")
-	(
-		[173941 169000] [180441 169000] [180441 175000] [173941 175000] 
-	)
-	Polygon("")
-	(
-		[181941 169000] [188441 169000] [188441 175000] [181941 175000] 
-	)
-	Polygon("")
-	(
-		[98941 193500] [107441 193500] [107441 198000] [98941 198000] 
-	)
-	Polygon("")
-	(
-		[266441 198000] [272941 198000] [272941 205000] [266441 205000] 
-	)
-	Polygon("")
-	(
-		[257941 203500] [264441 203500] [264441 210500] [257941 210500] 
-	)
-	Polygon("")
-	(
-		[242941 203500] [249441 203500] [249441 210500] [242941 210500] 
-	)
-	Polygon("")
-	(
-		[240941 194500] [247441 194500] [247441 201500] [240941 201500] 
-	)
-	Polygon("")
-	(
-		[248941 186000] [255441 186000] [255441 193000] [248941 193000] 
-	)
-	Polygon("")
-	(
-		[266941 165000] [273441 165000] [273441 172000] [266941 172000] 
-	)
-	Polygon("")
-	(
-		[303941 261550] [310441 261550] [310441 267550] [303941 267550] 
-	)
-	Polygon("")
-	(
-		[309441 262000] [315941 262000] [315941 265000] [309441 265000] 
-	)
-	Polygon("")
-	(
-		[385441 269500] [390941 269500] [390941 309000] [385441 309000] 
-	)
-	Polygon("")
-	(
-		[351941 270000] [357441 270000] [357441 309500] [351941 309500] 
-	)
-	Polygon("clearpoly")
-	(
-		[481441 358500] [481441 6000] [478941 3000] [402441 3000] [401441 241000] 
-		[448441 241000] [447441 330000] [407941 330000] [407941 268000] [313941 268000] 
-		[313941 324000] [72941 324000] [72941 358500] [75441 361000] [478941 361000] 
-	)
-	Polygon("clearpoly")
-	(
-		[396441 247000] [445441 247000] [445441 331000] [411941 331000] [411441 265000] 
-		[310441 265000] [310441 303000] [71441 303000] [71441 155500] [73941 153000] 
-		[109941 153000] [109941 78000] [73941 78000] [71441 75500] [71441 5500] 
-		[73941 3000] [396441 3000] 
-	)
-	Polygon("")
-	(
-		[365696 348500] [372196 348500] [372196 354500] [365696 354500] 
-	)
-	Polygon("")
-	(
-		[365696 353500] [372196 353500] [372196 359500] [365696 359500] 
-	)
-	Polygon("")
-	(
-		[371696 353500] [378196 353500] [378196 359500] [371696 359500] 
-	)
-	Polygon("")
-	(
-		[371696 350000] [378196 350000] [378196 356000] [371696 356000] 
-	)
-)
-Layer(4 "bottom")
-(
-	Line[401596 40000 378544 40000 1000 2000 "clearline,auto,lock"]
-	Line[404250 100000 376485 100000 1000 2000 "clearline,auto,lock"]
-	Line[402250 158000 379394 158000 1000 2000 "clearline,auto,lock"]
-	Line[376456 18000 367546 26910 800 1600 "clearline"]
-	Line[376024 21588 369155 28457 800 1600 "clearline"]
-	Line[375705 178810 369166 172271 1000 2000 "clearline"]
-	Line[385585 178810 375705 178810 1000 2000 "clearline"]
-	Line[389629 174766 385585 178810 1000 2000 "clearline"]
-	Line[389629 168540 389629 174766 1000 2000 "clearline"]
-	Line[418440 299000 418440 284125 1000 2000 "clearline"]
-	Line[422425 302985 418440 299000 1000 2000 "clearline"]
-	Line[432030 302985 422425 302985 1000 2000 "clearline"]
-	Line[434882 300133 432030 302985 1000 2000 "clearline"]
-	Line[434882 298303 434882 300133 1000 2000 "clearline"]
-	Line[429765 299176 427941 301000 1000 2000 "clearline"]
-	Line[432324 293697 432324 289000 1000 2000 ""]
-	Line[428241 307000 420941 307000 1000 2000 "clearline"]
-	Line[420441 298454 420441 284500 1000 2000 "clearline"]
-	Line[422987 301000 420441 298454 1000 2000 "clearline"]
-	Line[427941 301000 422987 301000 1000 2000 "clearline"]
-	Line[429765 293697 429765 299176 1000 2000 "clearline"]
-	Line[391441 238000 388941 240500 1000 2000 "clearline"]
-	Line[386720 236721 386441 237000 1000 2000 "clearline"]
-	Line[386720 229614 386720 236721 1000 2000 "clearline"]
-	Line[389279 75838 387441 74000 1000 2000 "clearline"]
-	Line[393441 44103 393441 45000 1000 2000 "clearline"]
-	Line[391338 42000 393441 44103 1000 2000 "clearline"]
-	Line[391338 47103 391338 51114 1000 2000 "clearline"]
-	Line[393441 45000 391338 47103 1000 2000 "clearline"]
-	Line[373441 81000 368441 86000 1000 2000 "clearline"]
-	Line[382720 81000 373441 81000 1000 2000 "clearline"]
-	Line[374441 83000 369441 88000 1000 2000 "clearline"]
-	Line[379441 83000 374441 83000 1000 2000 "clearline"]
-	Line[381603 85162 379441 83000 1000 2000 "clearline"]
-	Line[381603 86083 381603 85162 1000 2000 "clearline"]
-	Line[386720 202279 377441 193000 1000 2000 "clearline"]
-	Line[374441 195000 371441 195000 1000 2000 "clearline"]
-	Line[389653 122000 371441 122000 1000 2000 "clearline"]
-	Line[390441 117412 390441 121212 1000 2000 "clearline"]
-	Line[389279 116250 390441 117412 1000 2000 "clearline"]
-	Line[389279 109311 389279 116250 1000 2000 "clearline"]
-	Line[381441 118000 371441 118000 1000 2000 "clearline"]
-	Line[384162 115279 381441 118000 1000 2000 "clearline"]
-	Line[384162 109311 384162 115279 1000 2000 "clearline"]
-	Line[404441 216000 400441 220000 1000 2000 "clearline"]
-	Line[380441 220000 400441 220000 1000 2000 "clearline"]
-	Line[376485 216044 380441 220000 1000 2000 "clearline"]
-	Line[376485 214300 376485 216044 1000 2000 "clearline"]
-	Line[389279 215838 389279 206386 1000 2000 "clearline"]
-	Line[389441 216000 389279 215838 1000 2000 "clearline"]
-	Line[376441 177000 370441 171000 1000 2000 "clearline"]
-	Line[381441 177000 376441 177000 1000 2000 "clearline"]
-	Line[384512 173929 381441 177000 1000 2000 "clearline"]
-	Line[384512 168540 384512 173929 1000 2000 "clearline"]
-	Line[381953 143750 378003 139800 1000 2000 "clearline"]
-	Line[381953 145312 381953 143750 1000 2000 "clearline"]
-	Line[388441 141000 385441 138000 1000 2000 "clearline"]
-	Line[388441 143000 388441 141000 1000 2000 "clearline"]
-	Line[387070 144371 388441 143000 1000 2000 "clearline"]
-	Line[387070 145312 387070 144371 1000 2000 "clearline"]
-	Line[386720 204083 386720 202279 1000 2000 "clearline"]
-	Line[381603 202162 374441 195000 1000 2000 "clearline"]
-	Line[381603 204083 381603 202162 1000 2000 "clearline"]
-	Line[391441 236000 391441 238000 1000 2000 "clearline"]
-	Line[389279 233838 391441 236000 1000 2000 "clearline"]
-	Line[389279 227311 389279 233838 1000 2000 "clearline"]
-	Line[429441 305000 421895 305000 1000 2000 "clearline"]
-	Line[428441 306800 428241 307000 1000 2000 "clearline"]
-	Line[432324 310683 428441 306800 1000 2000 "clearline"]
-	Line[432324 316925 432324 310683 1000 2000 "clearline"]
-	Line[437441 313000 429441 305000 1000 2000 "clearline"]
-	Line[434882 293697 434882 298882 1000 2000 "clearline"]
-	Line[437441 320000 437441 313000 1000 2000 "clearline"]
-	Line[432441 320000 432441 315000 1000 2000 "clearline"]
-	Line[404250 216191 411882 208559 1000 2000 "clearline"]
-	Line[437000 208559 411882 208559 1000 2000 "clearline"]
-	Line[391838 212397 394441 215000 1000 2000 "clearline"]
-	Line[391838 206386 391838 212397 1000 2000 "clearline"]
-	Line[402441 215000 394441 215000 1000 2000 "clearline"]
-	Line[413441 204000 402441 215000 1000 2000 "clearline"]
-	Line[421823 204000 413441 204000 1000 2000 "clearline"]
-	Line[395882 194441 393441 192000 1000 2000 "clearline"]
-	Line[398441 194441 395882 194441 1000 2000 "clearline"]
-	Line[398441 204000 400441 206000 1000 2000 "clearline"]
-	Line[398441 199559 398441 204000 1000 2000 "clearline"]
-	Line[421823 83992 420347 83992 1000 2000 "clearline,auto"]
-	Line[420347 83992 420347 85468 1000 2000 "clearline,auto"]
-	Line[420347 85468 402250 85468 1000 2000 "clearline,auto"]
-	Line[402250 85468 402250 94300 1000 2000 "clearline,auto"]
-	Line[402250 94300 391838 94300 1000 2000 "clearline,auto"]
-	Line[391838 90689 391838 94300 1000 2000 "clearline,auto"]
-	Line[398441 80559 398441 86000 1000 2000 "clearline"]
-	Line[394441 206000 400441 206000 1000 2000 "clearline"]
-	Line[395882 75441 393441 73000 1000 2000 "clearline"]
-	Line[398441 75441 395882 75441 1000 2000 "clearline"]
-	Line[402250 158000 402250 161000 1000 2000 "clearline"]
-	Line[379394 161953 379394 158000 1000 2000 "clearline"]
-	Line[392188 166000 392188 161000 1000 2000 "clearline"]
-	Line[381953 166000 381953 161000 1000 2000 "clearline"]
-	Line[381953 161000 392188 161000 1000 2000 "clearline"]
-	Line[404250 100000 404250 88618 1000 2000 "clearline"]
-	Line[379044 98000 389167 98000 1000 2000 "clearline"]
-	Line[379044 88386 379044 98000 1000 2000 "clearline"]
-	Line[376485 88386 376485 100000 1000 2000 "clearline"]
-	Line[386220 45779 385941 45500 1000 2000 "clearline"]
-	Line[386220 51114 386220 45779 1000 2000 "clearline"]
-	Line[401596 40000 401596 45766 1000 2000 "clearline,auto"]
-	Line[378544 40000 378544 42790 1000 2000 "clearline,auto"]
-	Line[381103 46500 381103 42000 1000 2000 "clearline"]
-	Line[381103 42000 391338 42000 1000 2000 "clearline"]
-	Line[376835 166394 375441 165000 1000 2000 "clearline"]
-	Line[376835 170843 376835 166394 1000 2000 "clearline"]
-	Line[384162 206386 384162 212000 1000 2000 "clearline"]
-	Line[421941 171532 421941 173992 1000 2000 "clearline,auto"]
-	Line[421941 171532 402250 171532 1000 2000 "clearline,auto"]
-	Line[402250 160000 402250 171532 1000 2000 "clearline,auto"]
-	Line[379394 160000 379394 168540 1000 2000 "clearline,auto"]
-	Line[387070 170843 387070 165000 1000 2000 "clearline"]
-	Line[437433 88618 404250 88618 1000 2000 "clearline,auto"]
-	Line[384162 88386 384162 94000 1000 2000 "clearline"]
-	Line[401596 51532 402250 51532 1000 2000 "clearline"]
-	Line[401596 40000 401596 51532 1000 2000 "clearline"]
-	Line[421823 51532 402250 51532 1000 2000 "auto"]
-	Line[378544 40000 378544 45581 1000 2000 "clearline,auto"]
-	Line[437441 305000 440000 307559 1000 2000 "clearline"]
-	Line[440000 319228 440000 307559 1000 2000 "clearline"]
-	Line[437441 296000 437441 305000 1000 2000 "clearline"]
-	Line[460441 234000 458441 236000 1000 2000 "clearline"]
-	Line[468382 234000 460441 234000 1000 2000 "clearline"]
-	Line[459941 203500 458441 205000 1000 2000 "clearline"]
-	Line[468382 203500 459941 203500 1000 2000 "clearline"]
-	Line[459941 173500 458441 175000 1000 2000 "clearline"]
-	Line[468382 173500 459941 173500 1000 2000 "clearline"]
-	Line[460441 144000 458441 146000 1000 2000 "clearline"]
-	Line[468382 144000 460441 144000 1000 2000 "clearline"]
-	Line[459941 113500 458441 115000 1000 2000 "clearline"]
-	Line[468382 113500 459941 113500 1000 2000 "clearline"]
-	Line[459941 83500 458441 85000 1000 2000 "clearline"]
-	Line[468382 83500 459941 83500 1000 2000 "clearline"]
-	Line[459941 53500 458441 55000 1000 2000 "clearline"]
-	Line[468500 53500 459941 53500 1000 2000 "clearline"]
-	Line[459941 23500 458441 25000 1000 2000 "clearline"]
-	Line[468382 23500 459941 23500 1000 2000 "clearline"]
-	Line[468382 264492 466906 264492 1000 2000 "clearline,auto"]
-	Line[466906 264492 466906 265968 1000 2000 "clearline,auto"]
-	Line[466906 265968 424647 265968 1000 2000 "clearline,auto"]
-	Line[424647 265968 424647 293697 1000 2000 "clearline,auto"]
-	Line[429765 329000 440000 329000 1000 2000 "clearline"]
-	Line[429765 323676 429765 329000 1000 2000 "clearline"]
-	Line[440000 324000 440000 329000 1000 2000 "clearline"]
-	Line[427206 285000 428441 285000 1000 2000 "clearline"]
-	Line[427206 291000 427206 285000 1000 2000 "clearline"]
-	Line[437441 285000 427441 285000 1000 2000 "clearline"]
-	Line[437441 291000 437441 285000 1000 2000 "clearline"]
-	Line[444441 296000 446441 298000 1000 2000 ""]
-	Line[442559 296000 444441 296000 1000 2000 ""]
-	Line[434882 319228 434882 325000 1000 2000 ""]
-	Line[424647 323794 423441 325000 1000 2000 ""]
-	Line[424647 319228 424647 323794 1000 2000 ""]
-	Line[427206 296000 427206 291000 1000 2000 ""]
-	Line[437441 296000 437441 291000 1000 2000 ""]
-	Line[468441 351532 468441 353992 1000 2000 "auto"]
-	Line[468441 351532 427206 351532 1000 2000 "auto"]
-	Line[427206 321531 427206 351532 1000 2000 "auto"]
-	Line[429765 319228 429765 324000 1000 2000 ""]
-	Line[440000 319228 440000 324000 1000 2000 ""]
-	Line[468382 293992 448750 293992 1000 2000 "auto"]
-	Line[448750 291547 448750 293992 1000 2000 "auto"]
-	Line[448750 291547 440000 291547 1000 2000 "auto"]
-	Line[440000 291547 440000 293697 1000 2000 "auto"]
-	Line[468382 323992 442559 323992 1000 2000 "auto"]
-	Line[442559 321531 442559 323992 1000 2000 "auto"]
-	Line[421823 231532 421823 233992 1000 2000 "auto"]
-	Line[421823 231532 402250 231532 1000 2000 "auto"]
-	Line[402250 223000 402250 231532 1000 2000 "auto"]
-	Line[402250 223000 379044 223000 1000 2000 "auto"]
-	Line[379044 223000 379044 227311 1000 2000 "auto"]
-	Line[376485 208689 376485 214300 1000 2000 "auto"]
-	Line[381603 225000 391838 225000 1000 2000 ""]
-	Line[381603 229614 381603 225000 1000 2000 ""]
-	Line[391838 229614 391838 225000 1000 2000 ""]
-	Line[376485 229614 372441 229614 1000 2000 ""]
-	Line[437433 238618 394397 238618 1000 2000 "auto"]
-	Line[394397 231917 394397 238618 1000 2000 "auto"]
-	Line[379394 164000 379394 168540 1000 2000 "auto"]
-	Line[437492 148559 402250 148559 1000 2000 "auto"]
-	Line[402250 148559 402250 155300 1000 2000 "auto"]
-	Line[402250 155300 377244 155300 1000 2000 "auto"]
-	Line[377244 149918 377244 155300 1000 2000 "auto"]
-	Line[377244 149918 376835 149918 1000 2000 "auto"]
-	Line[389629 147615 389629 152000 1000 2000 ""]
-	Line[379394 147615 379394 152000 1000 2000 ""]
-	Line[381953 170843 381953 166000 1000 2000 ""]
-	Line[392188 170843 392188 166000 1000 2000 ""]
-	Line[394441 148000 397441 148000 1000 2000 "clearline"]
-	Line[397441 148000 398441 147000 1000 2000 "clearline"]
-	Line[384512 147615 384512 142000 1000 2000 "clearline"]
-	Line[437492 178559 394747 178559 1000 2000 "clearline,auto"]
-	Line[394747 173146 394747 178559 1000 2000 "clearline,auto"]
-	Line[421823 143992 402250 143992 1000 2000 "clearline,auto"]
-	Line[402250 143162 402250 143992 1000 2000 "clearline,auto"]
-	Line[402250 143162 392188 143162 1000 2000 "clearline,auto"]
-	Line[392188 143162 392188 145312 1000 2000 "clearline,auto"]
-	Line[386720 111614 386720 118000 1000 2000 "clearline"]
-	Line[402250 106661 402250 109347 1000 2000 "clearline,auto"]
-	Line[402250 106661 401750 106661 1000 2000 "clearline,auto"]
-	Line[401750 105000 401750 106662 1000 2000 "clearline,auto"]
-	Line[401750 105000 379044 105000 1000 2000 "clearline,auto"]
-	Line[379044 105000 379044 109311 1000 2000 "clearline,auto"]
-	Line[381603 107838 381603 111614 1000 2000 "clearline"]
-	Line[382441 107000 381603 107838 1000 2000 "clearline"]
-	Line[391838 107000 382441 107000 1000 2000 "clearline"]
-	Line[391838 111614 391838 107000 1000 2000 "clearline"]
-	Line[394480 86000 398441 86000 1000 2000 "clearline"]
-	Line[394397 86083 394480 86000 1000 2000 "clearline"]
-	Line[376485 109311 372441 109311 1000 2000 "clearline"]
-	Line[421823 111532 421823 113992 1000 2000 "clearline,auto"]
-	Line[421823 111532 402250 111532 1000 2000 "clearline,auto"]
-	Line[402250 107161 402250 111532 1000 2000 "clearline,auto"]
-	Line[379044 107161 379044 109311 1000 2000 "clearline,auto"]
-	Line[437492 118559 394397 118559 1000 2000 "clearline,auto"]
-	Line[394397 113917 394397 118559 1000 2000 "clearline,auto"]
-	Line[391338 22949 391338 28000 1000 2000 "clearline"]
-	Line[422000 22949 391338 22949 1000 2000 "clearline"]
-	Line[431941 4532 431941 4532 1000 2000 "auto"]
-	Line[431882 34532 431882 34532 1000 2000 "auto"]
-	Line[431882 94532 431882 94532 1000 2000 "auto"]
-	Line[431882 124532 431882 124532 1000 2000 "auto"]
-	Line[431882 184532 431882 184532 1000 2000 "auto"]
-	Line[431882 64532 431882 64532 1000 2000 "auto"]
-	Line[431882 154532 431882 154532 1000 2000 "auto"]
-	Line[431882 214532 431882 214532 1000 2000 "auto"]
-	Line[376394 30550 376394 30550 1000 2000 "auto"]
-	Line[463500 247492 463500 247492 2500 2000 "auto"]
-	Line[463500 337492 463500 337492 2500 2000 "auto"]
-	Line[463500 277492 463500 277492 2500 2000 "auto"]
-	Line[463500 187492 463500 187492 2500 2000 "auto"]
-	Line[463500 157492 463500 157492 2500 2000 "auto"]
-	Line[463500 7492 463500 7492 2500 2000 "auto"]
-	Line[463500 37492 463500 37492 2500 2000 "auto"]
-	Line[463500 67492 463500 67492 2500 2000 "auto"]
-	Line[437433 53382 437433 53382 2500 2000 "auto"]
-	Line[437433 53382 437433 53382 2500 2000 "auto"]
-	Line[437433 83500 437433 83500 2500 2000 "auto"]
-	Line[437433 83500 437433 83500 2500 2000 "auto"]
-	Line[437492 113441 437492 113441 2500 2000 "auto"]
-	Line[437492 113441 437492 113441 2500 2000 "auto"]
-	Line[437492 143441 437492 143441 2500 2000 "auto"]
-	Line[437492 143441 437492 143441 2500 2000 "auto"]
-	Line[437492 173441 437492 173441 2500 2000 "auto"]
-	Line[437492 173441 437492 173441 2500 2000 "auto"]
-	Line[437433 233500 437433 233500 2500 2000 "auto"]
-	Line[437433 233500 437433 233500 2500 2000 "auto"]
-	Line[437492 203441 437492 203441 2500 2000 "auto"]
-	Line[437492 203441 437492 203441 2500 2000 "auto"]
-	Line[437433 23382 437433 23382 2500 2000 "auto"]
-	Line[437433 23382 437433 23382 2500 2000 "auto"]
-	Line[463500 307492 463500 307492 2500 2000 "auto"]
-	Line[463500 127492 463500 127492 2500 2000 "auto"]
-	Line[463500 217492 463500 217492 2500 2000 "auto"]
-	Line[463500 97492 463500 97492 2500 2000 "auto"]
-	Line[427118 22949 427118 22949 2500 2000 "auto"]
-	Line[427118 22949 427118 22949 2500 2000 "auto"]
-	Line[427059 173008 427059 173008 2500 2000 "auto"]
-	Line[427059 173008 427059 173008 2500 2000 "auto"]
-	Line[393897 58500 393897 58500 1000 2000 "auto"]
-	Line[383662 27886 383662 21500 1000 2000 "clearline"]
-	Line[437433 28500 401750 28500 1000 2000 ""]
-	Line[388779 27886 388779 32500 1000 2000 ""]
-	Line[381103 51114 381103 46500 1000 2000 ""]
-	Line[463500 337492 463500 337492 2500 2000 "clearline,auto"]
-	Line[463500 307492 463500 307492 2500 2000 "clearline,auto"]
-	Line[463500 277492 463500 277492 2500 2000 "clearline,auto"]
-	Line[463500 217492 463500 217492 2500 2000 "clearline,auto"]
-	Line[463500 187492 463500 187492 2500 2000 "clearline,auto"]
-	Line[463500 157492 463500 157492 2500 2000 "clearline,auto"]
-	Line[463500 127492 463500 127492 2500 2000 "clearline,auto"]
-	Line[463500 97492 463500 97492 2500 2000 "clearline,auto"]
-	Line[463500 67492 463500 67492 2500 2000 "clearline,auto"]
-	Line[463500 37492 463500 37492 2500 2000 "clearline,auto"]
-	Line[463500 7492 463500 7492 2500 2000 "clearline,auto"]
-	Line[463500 247492 463500 247492 2500 2000 "clearline,auto"]
-	Line[427000 166000 427000 173008 2500 2000 "auto"]
-	Line[427000 16000 427000 22949 2500 2000 "auto"]
-	Line[375985 30050 376394 30550 1000 2000 "auto"]
-	Line[463500 337492 461059 337492 2500 2000 "clearline,auto"]
-	Line[463500 307492 461059 307492 2500 2000 "clearline,auto"]
-	Line[463500 277492 461000 277492 2500 2000 "clearline,auto"]
-	Line[463500 217492 461000 217492 2500 2000 "clearline,auto"]
-	Line[463500 187492 461000 187492 2500 2000 "clearline,auto"]
-	Line[463500 157492 461000 157492 2500 2000 "clearline,auto"]
-	Line[463500 127492 461000 127492 2500 2000 "clearline,auto"]
-	Line[463500 97492 461000 97492 2500 2000 "clearline,auto"]
-	Line[463500 67492 461000 67492 2500 2000 "clearline,auto"]
-	Line[463500 37492 461059 37492 2500 2000 "clearline,auto"]
-	Line[463500 7492 461000 7492 2500 2000 "clearline,auto"]
-	Line[463500 247492 461000 247492 2500 2000 "clearline,auto"]
-	Line[463500 157492 461000 157492 2500 2000 "auto"]
-	Line[463500 166000 463500 166000 2500 2000 "auto"]
-	Line[463500 127492 461000 127492 2500 2000 "auto"]
-	Line[463500 136000 463500 136000 2500 2000 "auto"]
-	Line[463500 187492 461000 187492 2500 2000 "auto"]
-	Line[463500 196000 463500 196000 2500 2000 "auto"]
-	Line[463500 97492 461000 97492 2500 2000 "auto"]
-	Line[463500 106000 463500 106000 2500 2000 "auto"]
-	Line[463500 67492 461000 67492 2500 2000 "auto"]
-	Line[463500 76000 463500 76000 2500 2000 "auto"]
-	Line[463500 217492 461000 217492 2500 2000 "auto"]
-	Line[463500 226000 463500 226000 2500 2000 "auto"]
-	Line[463500 37492 461059 37492 2500 2000 "auto"]
-	Line[463500 46000 463500 46000 2500 2000 "auto"]
-	Line[463500 7492 461000 7492 2500 2000 "auto"]
-	Line[463500 16000 463500 16000 2500 2000 "auto"]
-	Line[463500 337492 461059 337492 2500 2000 "auto"]
-	Line[463500 346000 463500 346000 2500 2000 "auto"]
-	Line[463500 307492 461059 307492 2500 2000 "auto"]
-	Line[463500 316000 463500 316000 2500 2000 "auto"]
-	Line[463500 277492 461000 277492 2500 2000 "auto"]
-	Line[463500 286000 463500 286000 2500 2000 "auto"]
-	Line[463500 247492 461000 247492 2500 2000 "auto"]
-	Line[463500 256000 463500 256000 2500 2000 "auto"]
-	Line[437000 226000 437000 226000 2500 2000 "auto"]
-	Line[427000 226000 427000 226000 2500 2000 "auto"]
-	Line[437000 196000 437000 196000 2500 2000 "auto"]
-	Line[427000 196000 427000 196000 2500 2000 "auto"]
-	Line[437000 166000 437000 166000 2500 2000 "auto"]
-	Line[427000 166000 427000 166000 2500 2000 "auto"]
-	Line[437000 136000 437000 136000 2500 2000 "auto"]
-	Line[427000 136000 427000 136000 2500 2000 "auto"]
-	Line[437000 106000 437000 106000 2500 2000 "auto"]
-	Line[427000 106000 427000 106000 2500 2000 "auto"]
-	Line[437000 76000 437000 76000 2500 2000 "auto"]
-	Line[427000 76000 427000 76000 2500 2000 "auto"]
-	Line[437000 46000 437000 46000 2500 2000 "auto"]
-	Line[427000 46000 427000 46000 2500 2000 "auto"]
-	Line[437059 8374 437000 8374 2500 2000 "auto"]
-	Line[437000 16000 437000 16000 2500 2000 "auto"]
-	Line[427000 16000 427000 16000 2500 2000 "auto"]
-	Line[431941 4532 421882 4532 1000 2000 "auto"]
-	Line[431882 34532 421882 34532 1000 2000 "auto"]
-	Line[431882 94532 421882 94532 1000 2000 "auto"]
-	Line[431882 124532 421882 124532 1000 2000 "auto"]
-	Line[431882 184532 421882 184532 1000 2000 "auto"]
-	Line[431882 64532 421882 64532 1000 2000 "auto"]
-	Line[431882 154532 421882 154532 1000 2000 "auto"]
-	Line[431882 214532 421882 214532 1000 2000 "auto"]
-	Line[437000 226000 437000 233500 2500 2000 "auto"]
-	Line[427000 233008 426941 233008 2500 2000 "auto"]
-	Line[427000 226000 427000 233008 2500 2000 "auto"]
-	Line[437000 196000 437000 203441 2500 2000 "auto"]
-	Line[427000 203508 426941 203508 2500 2000 "auto"]
-	Line[427000 196000 427000 203508 2500 2000 "auto"]
-	Line[437000 166000 437000 173441 2500 2000 "auto"]
-	Line[427059 173008 427000 173008 2500 2000 "auto"]
-	Line[427000 173008 427059 173008 2500 2000 "auto"]
-	Line[437000 136000 437000 143441 2500 2000 "auto"]
-	Line[427000 143008 426941 143008 2500 2000 "auto"]
-	Line[427000 136000 427000 143008 2500 2000 "auto"]
-	Line[437000 106000 437000 113441 2500 2000 "auto"]
-	Line[427000 113008 426941 113008 2500 2000 "auto"]
-	Line[427000 106000 427000 113008 2500 2000 "auto"]
-	Line[437000 76000 437000 83500 2500 2000 "auto"]
-	Line[427000 83008 426941 83008 2500 2000 "auto"]
-	Line[427000 76000 427000 83008 2500 2000 "auto"]
-	Line[437000 46000 437000 53382 2500 2000 "auto"]
-	Line[427000 53008 426941 53008 2500 2000 "auto"]
-	Line[427000 46000 427000 53008 2500 2000 "auto"]
-	Line[437000 16000 437000 23382 2500 2000 "auto"]
-	Line[427118 22949 427000 22949 2500 2000 "auto"]
-	Line[427000 22949 427118 22949 2500 2000 "auto"]
-	Line[376394 29910 375985 29910 1000 2000 "auto"]
-	Line[376394 30550 376394 32339 1000 2000 "auto"]
-	Line[437433 58500 393897 58500 1000 2000 "auto"]
-	Line[376394 29910 375985 30050 1000 2000 "auto"]
-	Line[378544 46661 378544 48811 1000 2000 "auto"]
-	Line[376394 32339 376394 35000 1000 2000 "auto"]
-	Line[375985 30189 376394 30550 1000 2000 "auto"]
-	Line[376394 29910 376394 30050 1000 2000 "auto"]
-	Line[376394 29910 376394 29910 1000 2000 "auto"]
-	Line[463500 247492 463500 247492 2500 2000 "clearline,auto"]
-	Line[463500 337492 463500 337492 2500 2000 "clearline,auto"]
-	Line[463500 277492 463500 277492 2500 2000 "clearline,auto"]
-	Line[463500 187492 463500 187492 2500 2000 "clearline,auto"]
-	Line[463500 157492 463500 157492 2500 2000 "clearline,auto"]
-	Line[463500 7492 463500 7492 2500 2000 "clearline,auto"]
-	Line[463500 37492 463500 37492 2500 2000 "clearline,auto"]
-	Line[463500 67492 463500 67492 2500 2000 "clearline,auto"]
-	Line[427000 53008 427000 53008 2500 2000 "auto"]
-	Line[427000 83008 427000 83008 2500 2000 "auto"]
-	Line[427000 113008 427000 113008 2500 2000 "auto"]
-	Line[427000 143008 427000 143008 2500 2000 "auto"]
-	Line[427000 203508 427000 203508 2500 2000 "auto"]
-	Line[427000 233008 427000 233008 2500 2000 "auto"]
-	Line[463500 307492 463500 307492 2500 2000 "clearline,auto"]
-	Line[463500 127492 463500 127492 2500 2000 "clearline,auto"]
-	Line[463500 217492 463500 217492 2500 2000 "clearline,auto"]
-	Line[463500 97492 463500 97492 2500 2000 "clearline,auto"]
-	Line[463500 16000 463500 16000 2500 2000 "auto"]
-	Line[463500 76000 463500 76000 2500 2000 "auto"]
-	Line[463500 106000 463500 106000 2500 2000 "auto"]
-	Line[463500 97492 461000 96508 2500 2000 "auto"]
-	Line[461000 97492 463500 97492 2500 2000 "clearline,auto"]
-	Line[461000 97492 463500 97492 2500 2000 "clearline,auto"]
-	Line[463500 136000 463500 136000 2500 2000 "auto"]
-	Line[463500 166000 463500 166000 2500 2000 "auto"]
-	Line[463500 196000 463500 196000 2500 2000 "auto"]
-	Line[463500 226000 463500 226000 2500 2000 "auto"]
-	Line[463500 217492 461000 216508 2500 2000 "auto"]
-	Line[461000 217492 463500 217492 2500 2000 "clearline,auto"]
-	Line[461000 217492 463500 217492 2500 2000 "clearline,auto"]
-	Line[463500 127492 461000 126508 2500 2000 "auto"]
-	Line[461000 127492 463500 127492 2500 2000 "clearline,auto"]
-	Line[461000 127492 463500 127492 2500 2000 "clearline,auto"]
-	Line[463500 256000 463500 256000 2500 2000 "auto"]
-	Line[463500 286000 463500 286000 2500 2000 "auto"]
-	Line[463500 316000 463500 316000 2500 2000 "auto"]
-	Line[473500 353992 473559 353992 2500 2000 "clearline,auto"]
-	Line[463500 346000 463500 346000 2500 2000 "auto"]
-	Line[463500 307492 461059 306508 2500 2000 "auto"]
-	Line[461059 307492 463500 307492 2500 2000 "clearline,auto"]
-	Line[461059 307492 463500 307492 2500 2000 "clearline,auto"]
-	Line[473500 6508 473559 6508 2500 2000 "clearline,auto"]
-	Line[473500 96508 473000 96508 2500 2000 "clearline,auto"]
-	Line[473500 66508 473559 66508 2500 2000 "clearline,auto"]
-	Line[473500 36508 473559 36508 2500 2000 "clearline,auto"]
-	Line[473500 186508 473559 186508 2500 2000 "clearline,auto"]
-	Line[473500 126508 473677 126508 2500 2000 "clearline,auto"]
-	Line[473500 156508 473559 156508 2500 2000 "clearline,auto"]
-	Line[473500 246508 473559 246508 2500 2000 "clearline,auto"]
-	Line[427000 16000 427000 16000 2500 2000 "auto"]
-	Line[437000 16000 437000 16000 2500 2000 "auto"]
-	Line[427118 22949 427118 22949 2500 2000 "auto"]
-	Line[427118 22949 427000 22949 2500 2000 "auto"]
-	Line[437000 7390 437059 7390 2500 2000 "auto"]
-	Line[437059 8374 437059 8374 2500 2000 "auto"]
-	Line[437000 8374 437059 8374 2500 2000 "auto"]
-	Line[427000 226000 427000 226000 2500 2000 "auto"]
-	Line[437000 226000 437000 226000 2500 2000 "auto"]
-	Line[426941 233008 427000 233008 2500 2000 "auto"]
-	Line[426941 233008 427000 233008 2500 2000 "auto"]
-	Line[427000 196000 427000 196000 2500 2000 "auto"]
-	Line[437000 196000 437000 196000 2500 2000 "auto"]
-	Line[426941 203508 427000 203508 2500 2000 "auto"]
-	Line[426941 203508 427000 203508 2500 2000 "auto"]
-	Line[427000 166000 427000 166000 2500 2000 "auto"]
-	Line[437000 166000 437000 166000 2500 2000 "auto"]
-	Line[427059 173008 427059 173008 2500 2000 "auto"]
-	Line[427059 173008 427000 173008 2500 2000 "auto"]
-	Line[427000 136000 427000 136000 2500 2000 "auto"]
-	Line[437000 136000 437000 136000 2500 2000 "auto"]
-	Line[426941 143008 427000 143008 2500 2000 "auto"]
-	Line[426941 143008 427000 143008 2500 2000 "auto"]
-	Line[427000 106000 427000 106000 2500 2000 "auto"]
-	Line[437000 106000 437000 106000 2500 2000 "auto"]
-	Line[426941 113008 427000 113008 2500 2000 "auto"]
-	Line[426941 113008 427000 113008 2500 2000 "auto"]
-	Line[427000 76000 427000 76000 2500 2000 "auto"]
-	Line[437000 76000 437000 76000 2500 2000 "auto"]
-	Line[426941 83008 427000 83008 2500 2000 "auto"]
-	Line[426941 83008 427000 83008 2500 2000 "auto"]
-	Line[426941 53008 427000 53008 2500 2000 "auto"]
-	Line[426941 53008 427000 53008 2500 2000 "auto"]
-	Line[421823 51532 421823 51532 1000 2000 "auto"]
-	Line[421823 53008 421823 51532 1000 2000 "auto"]
-	Line[421823 53008 421823 51532 1000 2000 "auto"]
-	Line[463500 67492 461000 66508 2500 2000 "auto"]
-	Line[461000 67492 463500 67492 2500 2000 "clearline,auto"]
-	Line[461000 67492 463500 67492 2500 2000 "clearline,auto"]
-	Line[463500 37492 461059 36508 2500 2000 "auto"]
-	Line[461059 37492 463500 37492 2500 2000 "clearline,auto"]
-	Line[461059 37492 463500 37492 2500 2000 "clearline,auto"]
-	Line[463500 7492 461000 6508 2500 2000 "auto"]
-	Line[461000 7492 463500 7492 2500 2000 "clearline,auto"]
-	Line[461000 7492 463500 7492 2500 2000 "clearline,auto"]
-	Line[463500 157492 461000 156508 2500 2000 "auto"]
-	Line[461000 157492 463500 157492 2500 2000 "clearline,auto"]
-	Line[461000 157492 463500 157492 2500 2000 "clearline,auto"]
-	Line[463500 187492 461000 186508 2500 2000 "auto"]
-	Line[461000 187492 463500 187492 2500 2000 "clearline,auto"]
-	Line[461000 187492 463500 187492 2500 2000 "clearline,auto"]
-	Line[463500 277492 461000 276508 2500 2000 "auto"]
-	Line[461000 277492 463500 277492 2500 2000 "clearline,auto"]
-	Line[461000 277492 463500 277492 2500 2000 "clearline,auto"]
-	Line[463500 337492 461059 336508 2500 2000 "auto"]
-	Line[461059 337492 463500 337492 2500 2000 "clearline,auto"]
-	Line[461059 337492 463500 337492 2500 2000 "clearline,auto"]
-	Line[463500 247492 461000 246508 2500 2000 "auto"]
-	Line[461000 247492 463500 247492 2500 2000 "clearline,auto"]
-	Line[461000 247492 463500 247492 2500 2000 "clearline,auto"]
-	Line[463500 46000 463500 46000 2500 2000 "auto"]
-	Line[375985 29910 376394 29910 1000 2000 "auto"]
-	Line[375985 29910 376394 29910 1000 2000 "auto"]
-	Line[375985 30050 376394 29910 1000 2000 "auto"]
-	Line[427000 46000 427000 46000 2500 2000 "auto"]
-	Line[437000 46000 437000 46000 2500 2000 "auto"]
-	Line[375985 48811 372441 48811 1000 2000 "clearline"]
-	Line[378441 37000 376394 34953 1000 2000 ""]
-	Line[399750 37000 378441 37000 1000 2000 ""]
-	Line[401750 35000 399750 37000 1000 2000 ""]
-	Line[401750 28500 401750 35000 1000 2000 ""]
-	Line[376394 30550 376394 32339 1000 2000 "auto"]
-	Line[378544 44500 378544 46661 1000 2000 "auto"]
-	Line[376394 30050 376394 29910 1000 2000 "auto"]
-	Line[378441 32500 378441 27886 1000 2000 ""]
-	Line[388779 32500 378441 32500 1000 2000 ""]
-	Line[396555 27886 397441 27000 1000 2000 ""]
-	Line[393897 27886 396555 27886 1000 2000 ""]
-	Line[393897 53417 393897 58500 1000 2000 "auto"]
-	Line[421823 51532 421823 53992 1000 2000 "auto"]
-	Line[421823 51532 421823 51532 1000 2000 "auto"]
-	Line[378544 46661 378544 48811 1000 2000 "auto"]
-	Line[376394 29910 375985 30050 1000 2000 "auto"]
-	Line[376394 29910 376394 29910 1000 2000 "auto"]
-	Line[391338 23433 391338 25583 1000 2000 "auto"]
-	Line[427000 16000 427000 16000 2500 2000 "auto"]
-	Line[427118 22949 427118 22949 2500 2000 "auto"]
-	Line[437000 16000 437000 16000 2500 2000 "auto"]
-	Line[427000 46000 427000 46000 2500 2000 "auto"]
-	Line[427000 53008 427000 53008 2500 2000 "auto"]
-	Line[437000 46000 437000 46000 2500 2000 "auto"]
-	Line[427000 76000 427000 76000 2500 2000 "auto"]
-	Line[427000 83008 427000 83008 2500 2000 "auto"]
-	Line[437000 76000 437000 76000 2500 2000 "auto"]
-	Line[427000 106000 427000 106000 2500 2000 "auto"]
-	Line[427000 113008 427000 113008 2500 2000 "auto"]
-	Line[437000 106000 437000 106000 2500 2000 "auto"]
-	Line[427000 136000 427000 136000 2500 2000 "auto"]
-	Line[427000 143008 427000 143008 2500 2000 "auto"]
-	Line[437000 136000 437000 136000 2500 2000 "auto"]
-	Line[427000 166000 427000 166000 2500 2000 "auto"]
-	Line[427059 173008 427059 173008 2500 2000 "auto"]
-	Line[437000 166000 437000 166000 2500 2000 "auto"]
-	Line[427000 196000 427000 196000 2500 2000 "auto"]
-	Line[427000 203508 427000 203508 2500 2000 "auto"]
-	Line[437000 196000 437000 196000 2500 2000 "auto"]
-	Line[427000 226000 427000 226000 2500 2000 "auto"]
-	Line[427000 233008 427000 233008 2500 2000 "auto"]
-	Line[437000 226000 437000 226000 2500 2000 "auto"]
-	Line[431882 214532 431882 218492 1000 2000 "auto"]
-	Line[421882 214532 421882 217508 1000 2000 "auto"]
-	Line[431882 154532 431882 158492 1000 2000 "auto"]
-	Line[421882 154532 421882 157508 1000 2000 "auto"]
-	Line[431882 64532 431882 68492 1000 2000 "auto"]
-	Line[421882 64532 421882 67508 1000 2000 "auto"]
-	Line[431882 184532 431882 188492 1000 2000 "auto"]
-	Line[421882 184532 421882 187508 1000 2000 "auto"]
-	Line[431882 124532 431882 128492 1000 2000 "auto"]
-	Line[421882 124532 421882 127508 1000 2000 "auto"]
-	Line[431882 94532 431882 98492 1000 2000 "auto"]
-	Line[421882 94532 421882 97508 1000 2000 "auto"]
-	Line[431882 34532 431882 38492 1000 2000 "auto"]
-	Line[421882 34532 421882 37508 1000 2000 "auto"]
-	Line[431941 4532 431941 8374 1000 2000 "auto"]
-	Line[421882 4532 421882 7508 1000 2000 "auto"]
-	Line[418559 218000 417000 219559 2500 2000 ""]
-	Line[421882 218000 418559 218000 2500 2000 ""]
-	Line[418559 188000 417000 189559 2500 2000 ""]
-	Line[421882 188000 418559 188000 2500 2000 ""]
-	Line[418441 158000 417000 159441 2500 2000 ""]
-	Line[421882 158000 418441 158000 2500 2000 ""]
-	Line[418500 128000 417000 129500 2500 2000 ""]
-	Line[421882 128000 418500 128000 2500 2000 ""]
-	Line[418941 98000 417000 99941 2500 2000 ""]
-	Line[421882 98000 418941 98000 2500 2000 ""]
-	Line[418559 68000 417000 69559 2500 2000 ""]
-	Line[421882 68000 418559 68000 2500 2000 ""]
-	Line[418441 38000 417000 39441 2500 2000 ""]
-	Line[421882 38000 418441 38000 2500 2000 ""]
-	Line[417000 9441 417000 16000 2500 2000 ""]
-	Line[418441 8000 417000 9441 2500 2000 ""]
-	Line[421882 8000 418441 8000 2500 2000 ""]
-	Line[417000 9323 414559 6882 2500 2000 ""]
-	Line[417000 16000 417000 9323 2500 2000 ""]
-	Line[417000 39500 414500 37000 2500 2000 ""]
-	Line[417000 46000 417000 39500 2500 2000 ""]
-	Line[417000 69500 414500 67000 2500 2000 ""]
-	Line[417000 76000 417000 69500 2500 2000 ""]
-	Line[417000 99500 414500 97000 2500 2000 ""]
-	Line[417000 106000 417000 99500 2500 2000 ""]
-	Line[417000 129441 414559 127000 2500 2000 ""]
-	Line[417000 136000 417000 129441 2500 2000 ""]
-	Line[417000 159441 414559 157000 2500 2000 ""]
-	Line[417000 166000 417000 159441 2500 2000 ""]
-	Line[417000 189500 414500 187000 2500 2000 ""]
-	Line[417000 196000 417000 189500 2500 2000 ""]
-	Line[417000 219500 414500 217000 2500 2000 ""]
-	Line[417000 226000 417000 219500 2500 2000 ""]
-	Line[407000 219382 407000 226000 2500 2000 ""]
-	Line[409382 217000 407000 219382 2500 2000 ""]
-	Line[407000 189382 407000 196000 2500 2000 ""]
-	Line[409382 187000 407000 189382 2500 2000 ""]
-	Line[407000 159441 407000 166000 2500 2000 ""]
-	Line[409441 157000 407000 159441 2500 2000 ""]
-	Line[407000 129441 407000 136000 2500 2000 ""]
-	Line[409441 127000 407000 129441 2500 2000 ""]
-	Line[407000 99382 407000 106000 2500 2000 ""]
-	Line[409382 97000 407000 99382 2500 2000 ""]
-	Line[407000 69382 407000 76000 2500 2000 ""]
-	Line[409382 67000 407000 69382 2500 2000 ""]
-	Line[407000 39382 407000 46000 2500 2000 ""]
-	Line[409382 37000 407000 39382 2500 2000 ""]
-	Line[407000 9323 407000 16000 2500 2000 ""]
-	Line[409441 6882 407000 9323 2500 2000 ""]
-	Line[427000 8492 427000 16000 2500 2000 "auto"]
-	Line[437000 8374 437000 16000 2500 2000 "auto"]
-	Line[437059 8374 437059 8374 2500 2000 "auto"]
-	Line[427000 38492 427000 46000 2500 2000 "auto"]
-	Line[437000 38492 437000 46000 2500 2000 "auto"]
-	Line[427000 68492 427000 76000 2500 2000 "auto"]
-	Line[437000 68492 437000 76000 2500 2000 "auto"]
-	Line[427000 98492 427000 106000 2500 2000 "auto"]
-	Line[437000 98492 437000 106000 2500 2000 "auto"]
-	Line[427000 128492 427000 136000 2500 2000 "auto"]
-	Line[437000 128492 437000 136000 2500 2000 "auto"]
-	Line[427000 158492 427000 166000 2500 2000 "auto"]
-	Line[437000 158492 437000 166000 2500 2000 "auto"]
-	Line[427000 188492 427000 196000 2500 2000 "auto"]
-	Line[437000 188492 437000 196000 2500 2000 "auto"]
-	Line[427000 218492 427000 226000 2500 2000 "auto"]
-	Line[437000 218492 437000 226000 2500 2000 "auto"]
-	Line[455882 7000 453500 9382 2500 2000 ""]
-	Line[453500 39441 453500 46000 2500 2000 ""]
-	Line[455941 37000 453500 39441 2500 2000 ""]
-	Line[453500 69382 453500 76000 2500 2000 ""]
-	Line[455882 67000 453500 69382 2500 2000 ""]
-	Line[453500 99382 453500 106000 2500 2000 ""]
-	Line[455882 97000 453500 99382 2500 2000 ""]
-	Line[453500 129382 453500 136000 2500 2000 ""]
-	Line[455882 127000 453500 129382 2500 2000 ""]
-	Line[453500 159382 453500 166000 2500 2000 ""]
-	Line[455882 157000 453500 159382 2500 2000 ""]
-	Line[453500 189382 453500 196000 2500 2000 ""]
-	Line[455882 187000 453500 189382 2500 2000 ""]
-	Line[453500 219382 453500 226000 2500 2000 ""]
-	Line[455882 217000 453500 219382 2500 2000 ""]
-	Line[453500 249382 453500 256000 2500 2000 ""]
-	Line[455882 247000 453500 249382 2500 2000 ""]
-	Line[453500 279382 453500 286000 2500 2000 ""]
-	Line[455882 277000 453500 279382 2500 2000 ""]
-	Line[453500 309441 453500 316000 2500 2000 ""]
-	Line[455941 307000 453500 309441 2500 2000 ""]
-	Line[453500 339441 453500 346000 2500 2000 ""]
-	Line[455941 337000 453500 339441 2500 2000 ""]
-	Line[463500 247492 463500 256000 2500 2000 "auto"]
-	Line[463500 247492 463500 247492 2500 2000 "auto"]
-	Line[463500 277492 463500 286000 2500 2000 "auto"]
-	Line[463500 277492 463500 277492 2500 2000 "auto"]
-	Line[463500 307492 463500 316000 2500 2000 "auto"]
-	Line[463500 307492 463500 307492 2500 2000 "auto"]
-	Line[463500 337492 463500 346000 2500 2000 "auto"]
-	Line[463500 337492 463500 337492 2500 2000 "auto"]
-	Line[463500 7492 463500 16000 2500 2000 "auto"]
-	Line[463500 7492 463500 7492 2500 2000 "auto"]
-	Line[463500 37492 463500 46000 2500 2000 "auto"]
-	Line[463500 37492 463500 37492 2500 2000 "auto"]
-	Line[463500 217492 463500 226000 2500 2000 "auto"]
-	Line[463500 217492 463500 217492 2500 2000 "auto"]
-	Line[463500 67492 463500 76000 2500 2000 "auto"]
-	Line[463500 67492 463500 67492 2500 2000 "auto"]
-	Line[463500 97492 463500 106000 2500 2000 "auto"]
-	Line[463500 97492 463500 97492 2500 2000 "auto"]
-	Line[463500 187492 463500 196000 2500 2000 "auto"]
-	Line[463500 187492 463500 187492 2500 2000 "auto"]
-	Line[463500 127492 463500 136000 2500 2000 "auto"]
-	Line[463500 127492 463500 127492 2500 2000 "auto"]
-	Line[463500 157492 463500 166000 2500 2000 "auto"]
-	Line[463500 157492 463500 157492 2500 2000 "auto"]
-	Line[468441 247492 463500 247492 2500 2000 "clearline,auto"]
-	Line[468441 7492 463500 7492 2500 2000 "clearline,auto"]
-	Line[468441 37492 463500 37492 2500 2000 "clearline,auto"]
-	Line[468441 67492 463500 67492 2500 2000 "clearline,auto"]
-	Line[467882 97492 463500 97492 2500 2000 "clearline,auto"]
-	Line[468559 127492 463500 127492 2500 2000 "clearline,auto"]
-	Line[468441 157492 463500 157492 2500 2000 "clearline,auto"]
-	Line[468441 187492 463500 187492 2500 2000 "clearline,auto"]
-	Line[468382 217492 463500 217492 2500 2000 "clearline,auto"]
-	Line[473500 247492 473500 256000 2500 2000 "clearline,auto"]
-	Line[473559 247492 473500 247492 2500 2000 "clearline,auto"]
-	Line[473500 256000 473500 264492 2500 2000 "clearline,auto"]
-	Line[473500 7492 473500 16000 2500 2000 "clearline,auto"]
-	Line[473559 7492 473500 7492 2500 2000 "clearline,auto"]
-	Line[473500 16000 473500 23992 2500 2000 "clearline,auto"]
-	Line[473500 37492 473500 46000 2500 2000 "clearline,auto"]
-	Line[473559 37492 473500 37492 2500 2000 "clearline,auto"]
-	Line[473618 46000 473618 53992 2500 2000 "clearline,auto"]
-	Line[473618 46000 473500 46000 2500 2000 "clearline,auto"]
-	Line[473500 67492 473500 76000 2500 2000 "clearline,auto"]
-	Line[473559 67492 473500 67492 2500 2000 "clearline,auto"]
-	Line[473500 76000 473500 83992 2500 2000 "clearline,auto"]
-	Line[473500 97492 473500 106000 2500 2000 "clearline,auto"]
-	Line[473500 97492 473000 97492 2500 2000 "clearline,auto"]
-	Line[473500 106000 473500 113992 2500 2000 "clearline,auto"]
-	Line[473500 127492 473500 136000 2500 2000 "clearline,auto"]
-	Line[473677 127492 473500 127492 2500 2000 "clearline,auto"]
-	Line[473500 136000 473500 144492 2500 2000 "clearline,auto"]
-	Line[473500 157492 473500 166000 2500 2000 "clearline,auto"]
-	Line[473559 157492 473500 157492 2500 2000 "clearline,auto"]
-	Line[473500 166000 473500 173992 2500 2000 "clearline,auto"]
-	Line[473500 187492 473500 196000 2500 2000 "clearline,auto"]
-	Line[473559 187492 473500 187492 2500 2000 "clearline,auto"]
-	Line[473500 196000 473500 203992 2500 2000 "clearline,auto"]
-	Line[473500 217492 473500 226000 2500 2000 "clearline,auto"]
-	Line[473500 226000 473500 234492 2500 2000 "clearline,auto"]
-	Line[468441 277492 463500 277492 2500 2000 "clearline,auto"]
-	Line[468441 307492 463500 307492 2500 2000 "clearline,auto"]
-	Line[468441 337492 463500 337492 2500 2000 "clearline,auto"]
-	Line[473500 286000 473500 293008 2500 2000 "clearline,auto"]
-	Line[473559 277492 473559 286000 2500 2000 "clearline,auto"]
-	Line[473559 286000 473500 286000 2500 2000 "clearline,auto"]
-	Line[473500 316000 473500 323008 2500 2000 "clearline,auto"]
-	Line[473559 307492 473559 316000 2500 2000 "clearline,auto"]
-	Line[473559 316000 473500 316000 2500 2000 "clearline,auto"]
-	Line[473500 346000 473500 353008 2500 2000 "clearline,auto"]
-	Line[473559 353008 473500 353008 2500 2000 "clearline,auto"]
-	Line[473559 337492 473559 346000 2500 2000 "clearline,auto"]
-	Line[473559 346000 473500 346000 2500 2000 "clearline,auto"]
-	Line[307716 124925 221756 124925 800 1600 "clearline"]
-	Line[308992 128029 223868 128029 800 1600 "clearline"]
-	Line[308872 133478 308083 134267 800 1600 "clearline"]
-	Line[245557 120492 247216 122151 800 1600 "clearline"]
-	Line[254740 101671 254740 104171 800 1600 "clearline"]
-	Line[254740 104171 261240 110671 800 1600 "clearline"]
-	Line[287917 97043 287917 92171 800 1600 "clearline"]
-	Line[266413 103406 266896 103889 800 1600 "clearline"]
-	Line[278225 120398 335757 120398 800 1600 "clearline"]
-	Line[262750 131228 263493 130485 800 1600 "clearline"]
-	Line[263493 130485 314645 130485 800 1600 "clearline"]
-	Line[293902 117737 275804 117737 800 1600 "clearline"]
-	Line[260341 115751 257845 113255 800 1600 "clearline"]
-	Line[260253 111936 259864 111936 800 1600 "clearline"]
-	Line[259864 111936 256818 108890 800 1600 "clearline"]
-	Line[257031 109103 252105 104177 800 1600 "clearline"]
-	Line[252105 104177 252105 98229 800 1600 "clearline"]
-	Line[257850 113260 250348 105758 800 1600 "clearline"]
-	Line[250348 105758 250348 98313 800 1600 "clearline"]
-	Line[252105 98302 268053 82354 800 1600 "clearline"]
-	Line[268053 82354 268053 76657 800 1600 "clearline"]
-	Line[250348 98154 250348 97723 800 1600 "clearline"]
-	Line[250348 97723 266453 81618 800 1600 "clearline"]
-	Line[266453 81618 266453 75994 800 1600 "clearline"]
-	Line[296779 95037 294773 97043 800 1600 "clearline"]
-	Line[294773 97043 293035 97043 800 1600 "clearline"]
-	Line[278224 101483 278224 96937 800 1600 "clearline"]
-	Line[278224 96937 285494 89667 800 1600 "clearline"]
-	Line[277174 91781 280976 87978 800 1600 "clearline"]
-	Line[293441 103889 305330 92000 800 1600 "clearline"]
-	Line[261240 110671 268849 110671 800 1600 "clearline"]
-	Line[268849 110671 270178 112000 800 1600 "clearline"]
-	Line[335673 120398 358839 120398 800 1600 "clearline"]
-	Line[358839 120398 376441 138000 800 1600 "clearline"]
-	Line[376441 138000 385441 138000 800 1600 "clearline"]
-	Line[378003 139800 375978 139800 800 1600 "clearline"]
-	Line[375978 139800 358541 122363 800 1600 "clearline"]
-	Line[300104 122363 358541 122363 800 1600 "clearline"]
-	Line[371441 122000 368170 118729 800 1600 "clearline"]
-	Line[368170 118729 324922 118729 800 1600 "clearline"]
-	Line[324922 118729 318193 112000 800 1600 "clearline"]
-	Line[270178 112000 318193 112000 800 1600 "clearline"]
-	Line[270441 110000 319525 110000 800 1600 "clearline"]
-	Line[319525 110000 326237 116712 800 1600 "clearline"]
-	Line[326237 116712 370153 116712 800 1600 "clearline"]
-	Line[370153 116712 371441 118000 800 1600 "clearline"]
-	Line[369441 88000 363841 93600 800 1600 "clearline"]
-	Line[305993 93600 363841 93600 800 1600 "clearline"]
-	Line[305330 92000 362441 92000 800 1600 "clearline"]
-	Line[362441 92000 368441 86000 800 1600 "clearline"]
-	Line[387441 74000 391338 70103 800 1600 "clearline"]
-	Line[391338 70103 391338 50897 800 1600 "clearline"]
-	Line[390441 121212 389653 122000 1000 2000 "clearline"]
-	Line[391838 109311 391838 115915 800 1600 "clearline"]
-	Line[391838 115915 392388 116465 800 1600 "clearline"]
-	Line[392388 116465 392388 136608 800 1600 "clearline"]
-	Line[392388 136608 390280 138716 800 1600 "clearline"]
-	Line[390280 138716 390280 143942 800 1600 "clearline"]
-	Line[390280 143942 389629 144593 800 1600 "clearline"]
-	Line[389629 144593 389629 147615 800 1600 "clearline"]
-	Line[285494 89667 358774 89667 800 1600 "clearline"]
-	Line[358774 89667 367441 81000 800 1600 "clearline"]
-	Line[367441 81000 367441 62500 800 1600 "clearline"]
-	Line[280976 87978 356463 87978 800 1600 "clearline"]
-	Line[356463 87978 363441 81000 800 1600 "clearline"]
-	Line[363441 81000 363441 64096 800 1600 "clearline"]
-	Line[269653 101369 272165 103881 800 1600 "clearline"]
-	Line[272165 103881 274480 103881 800 1600 "clearline"]
-	Line[274480 103881 275724 102637 800 1600 "clearline"]
-	Line[275724 102637 275724 98506 800 1600 "clearline"]
-	Line[275724 98506 273634 96415 800 1600 "clearline"]
-	Line[266413 103406 268508 105501 800 1600 "clearline"]
-	Line[268508 105501 281091 105501 800 1600 "clearline"]
-	Line[281091 105501 282702 103889 800 1600 "clearline"]
-	Line[282702 103889 293441 103889 800 1600 "clearline"]
-	Line[263240 104671 264568 106000 800 1600 "clearline"]
-	Line[264568 106000 266441 106000 800 1600 "clearline"]
-	Line[266441 106000 267558 107117 800 1600 "clearline"]
-	Line[267558 107117 292476 107117 800 1600 "clearline"]
-	Line[305993 93600 292476 107117 800 1600 "clearline"]
-	Line[270441 110000 269158 108717 800 1600 "clearline"]
-	Line[269158 108717 266020 108717 800 1600 "clearline"]
-	Line[266020 108717 265474 108171 800 1600 "clearline"]
-	Line[265474 108171 262740 108171 800 1600 "clearline"]
-	Line[273634 96415 273634 91856 800 1600 "clearline"]
-	Line[273634 91856 279121 86369 800 1600 "clearline"]
-	Line[273229 101418 271946 100134 800 1600 "clearline"]
-	Line[271946 100134 271946 91282 800 1600 "clearline"]
-	Line[278661 84566 345216 84566 800 1600 "clearline"]
-	Line[369155 28457 369155 55743 800 1600 "clearline"]
-	Line[369155 55743 361698 63201 800 1600 "clearline"]
-	Line[361698 63201 361698 79860 800 1600 "clearline"]
-	Line[361698 79860 355188 86369 800 1600 "clearline"]
-	Line[279121 86369 355188 86369 800 1600 "clearline"]
-	Line[367546 26910 367546 54895 800 1600 "clearline"]
-	Line[367546 54895 360013 62428 800 1600 "clearline"]
-	Line[360013 62428 360013 79140 800 1600 "clearline"]
-	Line[360013 79140 354587 84566 800 1600 "clearline"]
-	Line[354587 84566 345007 84566 800 1600 "clearline"]
-	Line[314441 130485 362315 130485 800 1600 "clearline"]
-	Line[362315 130485 371602 139772 800 1600 "clearline"]
-	Line[392188 165000 396441 165000 800 1600 "clearline"]
-	Line[385941 32500 385941 34000 800 1600 "clearline"]
-	Line[389167 88274 389167 98000 1000 2000 "clearline"]
-	Line[391838 107000 396441 107000 800 1600 "clearline"]
-	Line[396441 107000 398441 109000 800 1600 "clearline"]
-	Line[386023 242187 387710 240500 800 1600 "clearline"]
-	Line[387710 240500 388941 240500 800 1600 "clearline"]
-	Line[379044 216000 389441 216000 1000 2000 "clearline"]
-	Line[379044 206386 379044 216000 1000 2000 "clearline"]
-	Line[398441 227000 396441 225000 800 1600 "clearline"]
-	Line[396441 225000 391838 225000 800 1600 "clearline"]
-	Line[389279 204083 389279 187500 800 1600 "clearline"]
-	Line[389279 187500 392188 184591 800 1600 "clearline"]
-	Line[392188 184591 392188 170500 800 1600 "clearline"]
-	Line[437441 285000 440941 281500 2500 2000 "clearline"]
-	Line[440941 281500 440941 277000 2500 2000 "clearline"]
-	Line[363441 64096 372270 55267 800 1600 "clearline"]
-	Line[372270 55267 382441 55267 800 1600 "clearline"]
-	Line[382441 55267 383662 54046 800 1600 "clearline"]
-	Line[383662 54046 383662 51114 800 1600 "clearline"]
-	Line[372661 57280 367441 62500 800 1600 "clearline"]
-	Line[381103 25583 381103 23662 800 1600 "clearline"]
-	Line[381103 23662 379029 21588 800 1600 "clearline"]
-	Line[379029 21588 376024 21588 800 1600 "clearline"]
-	Line[376456 18000 384405 18000 800 1600 "clearline"]
-	Line[384405 18000 387441 21036 800 1600 "clearline"]
-	Line[382720 81000 386720 85000 800 1600 "clearline"]
-	Line[386720 85000 386720 88386 800 1600 "clearline"]
-	Line[278661 84566 271946 91281 800 1600 "clearline"]
-	Line[271946 91281 271946 91495 800 1600 "clearline"]
-	Line[421895 305000 416441 299546 800 1600 "clearline"]
-	Line[416441 299546 416441 294000 800 1600 "clearline"]
-	Line[420941 307000 414441 300500 800 1600 "clearline"]
-	Line[414441 300500 414441 294000 800 1600 "clearline"]
-	Line[439941 329000 440941 330000 800 1600 "clearline"]
-	Line[440941 330000 440941 334441 800 1600 "clearline"]
-	Line[440449 334441 434941 334441 800 1600 "clearline"]
-	Line[434449 339559 434449 343500 800 1600 "clearline"]
-	Line[440449 339559 440449 343500 800 1600 "clearline"]
-	Line[85441 352500 79882 352500 2500 2000 "clearline"]
-	Line[79882 352500 77441 350059 2500 2000 "clearline"]
-	Line[76949 344941 79390 342500 2500 2000 "clearline"]
-	Line[79390 342500 85441 342500 2500 2000 "clearline"]
-	Line[106949 344941 109390 342500 2500 2000 "clearline"]
-	Line[109390 342500 115441 342500 2500 2000 "clearline"]
-	Line[115441 352500 108941 352500 2500 2000 "clearline"]
-	Line[108941 352500 107441 351000 2500 2000 "clearline"]
-	Line[136949 350059 139390 352500 2500 2000 "clearline"]
-	Line[139390 352500 145441 352500 2500 2000 "clearline"]
-	Line[145441 342500 139882 342500 2500 2000 "clearline"]
-	Line[139882 342500 137441 344941 2500 2000 "clearline"]
-	Line[166949 344941 169390 342500 2500 2000 "clearline"]
-	Line[169390 342500 175441 342500 2500 2000 "clearline"]
-	Line[166949 350059 169390 352500 2500 2000 "clearline"]
-	Line[169390 352500 175441 352500 2500 2000 "clearline"]
-	Line[196949 344941 199390 342500 2500 2000 "clearline"]
-	Line[199390 342500 205441 342500 2500 2000 "clearline"]
-	Line[196949 350059 199390 352500 2500 2000 "clearline"]
-	Line[199390 352500 205441 352500 2500 2000 "clearline"]
-	Line[226949 350059 229390 352500 2500 2000 "clearline"]
-	Line[229390 352500 235441 352500 2500 2000 "clearline"]
-	Line[226949 344941 229390 342500 2500 2000 "clearline"]
-	Line[229390 342500 235441 342500 2500 2000 "clearline"]
-	Line[256949 350059 259390 352500 2500 2000 "clearline"]
-	Line[259390 352500 265441 352500 2500 2000 "clearline"]
-	Line[256949 344941 259390 342500 2500 2000 "clearline"]
-	Line[259390 342500 265441 342500 2500 2000 "clearline"]
-	Line[286949 350059 289390 352500 2500 2000 "clearline"]
-	Line[289390 352500 295441 352500 2500 2000 "clearline"]
-	Line[286949 344941 289390 342500 2500 2000 "clearline"]
-	Line[289390 342500 295441 342500 2500 2000 "clearline"]
-	Line[115441 332500 115441 279500 800 1600 "clearline"]
-	Line[115441 279500 114441 278500 800 1600 "clearline"]
-	Line[85441 332500 109941 308000 800 1600 "clearline"]
-	Line[109941 308000 109941 269500 800 1600 "clearline"]
-	Line[109941 269500 111941 267500 800 1600 "clearline"]
-	Line[111941 267500 115441 267500 800 1600 "clearline"]
-	Line[145441 332500 145441 285500 800 1600 "clearline"]
-	Line[145441 285500 152441 278500 800 1600 "clearline"]
-	Line[175441 332500 154941 312000 800 1600 "clearline"]
-	Line[154941 312000 154941 269500 800 1600 "clearline"]
-	Line[154941 269500 153441 268000 800 1600 "clearline"]
-	Line[153441 268000 151941 268000 800 1600 "clearline"]
-	Line[235441 332500 198441 295500 800 1600 "clearline"]
-	Line[198441 295500 198441 277500 800 1600 "clearline"]
-	Line[205441 332500 190941 318000 800 1600 "clearline"]
-	Line[190941 318000 190941 270000 800 1600 "clearline"]
-	Line[190941 270000 193941 267000 800 1600 "clearline"]
-	Line[193941 267000 195441 267000 800 1600 "clearline"]
-	Line[265441 332500 234441 301500 800 1600 "clearline"]
-	Line[234441 301500 234441 277500 800 1600 "clearline"]
-	Line[295441 332500 275941 332500 800 1600 "clearline"]
-	Line[275941 332500 237441 294000 800 1600 "clearline"]
-	Line[237441 294000 237441 268500 800 1600 "clearline"]
-	Line[237441 268500 235941 267000 800 1600 "clearline"]
-	Line[118699 72271 118699 91171 5000 2000 "clearline"]
-	Line[127799 72271 127799 89142 2500 2000 "clearline"]
-	Line[127799 89142 125941 91000 2500 2000 "clearline"]
-	Line[124831 97615 120556 97615 3800 1600 "clearline"]
-	Line[120556 97615 118799 95858 3800 1600 "clearline"]
-	Line[118799 95858 118799 91171 4800 1600 "clearline"]
-	Line[263441 80000 222441 80000 800 1600 "clearline"]
-	Line[250941 170500 269858 189417 800 1600 "clearline"]
-	Line[269858 189417 304706 189417 800 1600 "clearline"]
-	Line[304584 192517 268458 192517 800 1600 "clearline"]
-	Line[268458 192517 246441 170500 800 1600 "clearline"]
-	Line[242441 170500 267558 195617 800 1600 "clearline"]
-	Line[267558 195617 305280 195617 800 1600 "clearline"]
-	Line[309941 187000 272050 187000 800 1600 "clearline"]
-	Line[272050 187000 247050 162000 800 1600 "clearline"]
-	Line[221884 146000 222884 145000 800 1600 "clearline"]
-	Line[222884 145000 275441 145000 800 1600 "clearline"]
-	Line[275441 145000 291441 161000 800 1600 "clearline"]
-	Line[291441 161000 360441 161000 800 1600 "clearline"]
-	Line[360441 161000 370441 171000 800 1600 "clearline"]
-	Line[224441 148000 275441 148000 800 1600 "clearline"]
-	Line[275441 148000 291441 164000 800 1600 "clearline"]
-	Line[377441 193000 348441 164000 800 1600 "clearline"]
-	Line[291441 164000 348441 164000 800 1600 "clearline"]
-	Line[356441 167000 363895 167000 800 1600 "clearline"]
-	Line[363895 167000 369168 172273 800 1600 "clearline"]
-	Line[361041 195000 371441 195000 800 1600 "clearline"]
-	Line[338441 169876 355441 186876 800 1600 "clearline"]
-	Line[338441 175808 353441 190808 800 1600 "clearline"]
-	Line[368441 233037 380404 245000 800 1600 "clearline"]
-	Line[380404 245000 392441 245000 800 1600 "clearline"]
-	Line[392441 245000 420441 273000 800 1600 "clearline"]
-	Line[420441 273000 420441 284500 800 1600 "clearline"]
-	Line[366841 207663 366841 233700 800 1600 "clearline"]
-	Line[366841 233700 380141 247000 800 1600 "clearline"]
-	Line[380141 247000 387441 247000 800 1600 "clearline"]
-	Line[387441 247000 418440 277999 800 1600 "clearline"]
-	Line[418440 277999 418440 284125 800 1600 "clearline"]
-	Line[225441 151000 226441 150000 800 1600 "clearline"]
-	Line[226441 150000 275178 150000 800 1600 "clearline"]
-	Line[275178 150000 292207 167029 800 1600 "clearline"]
-	Line[292207 167029 323886 167029 800 1600 "clearline"]
-	Line[365241 208384 365241 234363 800 1600 "clearline"]
-	Line[365241 234363 416441 285563 800 1600 "clearline"]
-	Line[416441 285563 416441 294545 800 1600 "clearline"]
-	Line[363484 208952 363484 237497 800 1600 "clearline"]
-	Line[363484 237497 414441 288454 800 1600 "clearline"]
-	Line[414441 288454 414441 294446 800 1600 "clearline"]
-	Line[135724 25061 142712 18073 800 1600 "clearline"]
-	Line[142712 18073 176106 18073 800 1600 "clearline"]
-	Line[176106 18073 180672 22639 800 1600 "clearline"]
-	Line[180672 22639 180672 38231 800 1600 "clearline"]
-	Line[222441 80000 180672 38231 800 1600 "clearline"]
-	Line[221804 124925 221493 124925 800 1600 "clearline"]
-	Line[221493 124925 217441 121000 800 1600 "clearline"]
-	Line[223941 128029 219970 128029 800 1600 "clearline"]
-	Line[219970 128029 219441 127500 800 1600 "clearline"]
-	Line[308872 133478 307930 134420 800 1600 "clearline"]
-	Line[307930 134420 220729 134420 800 1600 "clearline"]
-	Line[250553 119224 249753 119224 800 1600 "clearline"]
-	Line[249753 119224 187712 57182 800 1600 "clearline"]
-	Line[187712 57182 178887 57182 800 1600 "clearline"]
-	Line[260568 83003 218816 83003 800 1600 "clearline"]
-	Line[218816 83003 191363 55551 800 1600 "clearline"]
-	Line[240391 121436 230441 111486 800 1600 "clearline"]
-	Line[230441 111486 230441 107000 800 1600 "clearline"]
-	Line[279441 115000 273441 115000 800 1600 "clearline"]
-	Line[264034 117069 264034 115717 800 1600 "clearline"]
-	Line[264034 115717 260253 111936 800 1600 "clearline"]
-	Line[251412 116832 246731 112150 800 1600 "clearline"]
-	Line[246731 112150 246731 96969 800 1600 "clearline"]
-	Line[379394 152000 380114 152720 800 1600 "clearline"]
-	Line[380114 152720 388909 152720 800 1600 "clearline"]
-	Line[388909 152720 389629 152000 800 1600 "clearline"]
-	Line[389279 88386 389279 75838 800 1600 "clearline"]
-	Line[266453 75994 295669 46778 800 1600 "clearline"]
-	Line[295669 46778 328442 46778 800 1600 "clearline"]
-	Line[328442 46778 339837 58173 800 1600 "clearline"]
-	Line[268053 76657 296244 48466 800 1600 "clearline"]
-	Line[296244 48466 326886 48466 800 1600 "clearline"]
-	Line[326886 48466 338899 60479 800 1600 "clearline"]
-	Line[338899 60479 353390 60479 800 1600 "clearline"]
-	Line[309941 187000 334441 211500 800 1600 "clearline"]
-	Line[334441 211500 334441 234000 800 1600 "clearline"]
-	Line[334441 234000 337441 237000 800 1600 "clearline"]
-	Line[387441 21036 387441 22933 800 1600 "clearline"]
-	Line[387441 22933 386220 24154 800 1600 "clearline"]
-	Line[386220 24154 386220 27886 800 1600 "clearline"]
-	Line[372661 57280 387161 57280 800 1600 "clearline"]
-	Line[387161 57280 388779 55662 800 1600 "clearline"]
-	Line[388779 48811 388779 55662 800 1600 "clearline"]
-	Line[377347 237822 380228 237822 800 1600 "clearline"]
-	Line[380228 237822 384162 233888 800 1600 "clearline"]
-	Line[384162 233888 384162 229614 800 1600 "clearline"]
-	Line[323183 168651 291092 168651 800 1600 "clearline"]
-	Line[291092 168651 274191 151750 800 1600 "clearline"]
-	Line[274191 151750 231691 151750 800 1600 "clearline"]
-	Line[231691 151750 230441 153000 800 1600 "clearline"]
-	Line[355441 186876 355441 192511 800 1600 "clearline"]
-	Line[353441 190808 353441 192774 800 1600 "clearline"]
-	Line[368441 233037 368441 202000 800 1600 "clearline"]
-	Line[368441 202000 363441 197000 800 1600 "clearline"]
-	Line[363441 197000 359930 197000 800 1600 "clearline"]
-	Line[359930 197000 355441 192511 800 1600 "clearline"]
-	Line[353441 192774 359287 198620 800 1600 "clearline"]
-	Line[359287 198620 362786 198620 800 1600 "clearline"]
-	Line[362786 198620 366841 202675 800 1600 "clearline"]
-	Line[366841 202675 366841 207780 800 1600 "clearline"]
-	Line[323886 167029 350857 194000 800 1600 "clearline"]
-	Line[350857 194000 352404 194000 800 1600 "clearline"]
-	Line[352404 194000 365241 206837 800 1600 "clearline"]
-	Line[365241 206837 365241 209200 800 1600 "clearline"]
-	Line[365241 209200 365241 209200 800 1600 "clearline"]
-	Line[363484 209043 363484 207343 800 1600 "clearline"]
-	Line[363484 207343 351741 195600 800 1600 "clearline"]
-	Line[351791 195650 350244 195650 800 1600 "clearline"]
-	Line[350244 195650 323245 168651 800 1600 "clearline"]
-	Line[323245 168651 322092 168651 800 1600 "clearline"]
-	Line[250554 119224 253035 119224 800 1600 "clearline"]
-	Line[247253 122188 248390 123325 800 1600 "clearline"]
-	Line[273441 115000 268735 119706 800 1600 "clearline"]
-	Line[268735 119706 259870 119706 800 1600 "clearline"]
-	Line[259870 119706 256996 116832 800 1600 "clearline"]
-	Line[256996 116832 251412 116832 800 1600 "clearline"]
-	Line[253035 119224 255221 121410 800 1600 "clearline"]
-	Line[255221 121410 272141 121410 800 1600 "clearline"]
-	Line[272141 121410 275815 117737 800 1600 "clearline"]
-	Line[275815 117737 276842 117737 800 1600 "clearline"]
-	Line[300814 122363 299852 123325 800 1600 "clearline"]
-	Line[299852 123325 248390 123325 800 1600 "clearline"]
-	Line[248390 123325 245557 120492 800 1600 "clearline"]
-	Line[361041 195000 358941 192900 800 1600 "clearline"]
-	Line[358941 192900 358941 191500 800 1600 "clearline"]
-	Line[203441 145800 203441 163000 2500 2000 ""]
-	Line[203441 145800 204998 144243 2500 2000 ""]
-	Line[204998 144243 204998 137100 2500 2000 ""]
-	Line[204998 137100 205681 136417 2500 2000 ""]
-	Line[205681 136417 205681 131171 2500 2000 ""]
-	Line[210799 130679 212084 131964 2500 2000 "clearline"]
-	Line[212084 131964 212084 137100 2500 2000 "clearline"]
-	Line[212084 137100 212541 137557 2500 2000 "clearline"]
-	Line[212541 137557 212541 149100 2500 2000 "clearline"]
-	Line[212084 136707 216648 136707 2500 2000 "clearline"]
-	Line[216648 136707 220441 140500 2500 2000 "clearline"]
-	Line[194441 145800 188641 145800 2500 2000 "clearline"]
-	Line[188641 145800 183541 150900 2500 2000 "clearline"]
-	Line[183541 150900 183541 157557 2500 2000 "clearline"]
-	Line[183541 157557 178384 157557 2500 2000 "clearline"]
-	Line[178384 157557 165941 170000 2500 2000 "clearline"]
-	Line[165941 170000 165941 182500 2500 2000 "clearline"]
-	Line[165941 182500 169441 186000 2500 2000 "clearline"]
-	Line[204998 136707 204705 137000 2500 2000 ""]
-	Line[204705 137000 194441 137000 2500 2000 ""]
-	Line[205681 130679 205360 131000 2500 2000 ""]
-	Line[205360 131000 200941 131000 2500 2000 ""]
-	Line[205681 130679 205441 130439 2500 2000 ""]
-	Line[205441 130439 205441 126500 2500 2000 ""]
-	Line[203441 145800 199941 142300 2500 2000 ""]
-	Line[199941 142300 199941 139000 2500 2000 ""]
-	Line[453500 9382 453500 16000 2500 2000 ""]
-	Line[249101 71207 229818 51925 800 1600 "clearline"]
-	Line[229818 51925 229818 45012 800 1600 "clearline"]
-	Polygon("")
-	(
-		[122941 95000] [122941 68500] [107941 68500] [107941 40000] [156941 40000] 
-		[156941 57500] [130941 57500] [130941 95000] 
-	)
-	Polygon("")
-	(
-		[133441 82000] [155941 82000] [155941 60000] [133441 60000] 
-	)
-	Polygon("")
-	(
-		[218441 182500] [177941 182500] [177941 161500] [218441 161500] 
-	)
-	Polygon("")
-	(
-		[174941 180000] [179441 180000] [179441 185000] [174941 185000] 
-	)
-	Polygon("")
-	(
-		[182941 180000] [187441 180000] [187441 185000] [182941 185000] 
-	)
-	Polygon("")
-	(
-		[191441 185000] [195941 185000] [195941 190000] [191441 190000] 
-	)
-	Polygon("")
-	(
-		[199941 185000] [204441 185000] [204441 190000] [199941 190000] 
-	)
-	Polygon("")
-	(
-		[207941 185000] [212441 185000] [212441 190000] [207941 190000] 
-	)
-	Polygon("")
-	(
-		[217941 182500] [222441 182500] [222441 187500] [217941 187500] 
-	)
-	Polygon("")
-	(
-		[222441 177000] [226941 177000] [226941 182000] [222441 182000] 
-	)
-	Polygon("")
-	(
-		[222941 171000] [227441 171000] [227441 176000] [222941 176000] 
-	)
-	Polygon("")
-	(
-		[222441 162000] [226941 162000] [226941 167000] [222441 167000] 
-	)
-	Polygon("")
-	(
-		[210441 159500] [214941 159500] [214941 164500] [210441 164500] 
-	)
-	Polygon("")
-	(
-		[201441 160000] [205941 160000] [205941 165000] [201441 165000] 
-	)
-	Polygon("")
-	(
-		[191441 160500] [195941 160500] [195941 165500] [191441 165500] 
-	)
-	Polygon("")
-	(
-		[174941 169500] [179441 169500] [179441 174500] [174941 174500] 
-	)
-	Polygon("")
-	(
-		[221941 153500] [226441 153500] [226441 158500] [221941 158500] 
-	)
-	Polygon("")
-	(
-		[222441 162000] [226941 162000] [226941 167000] [222441 167000] 
-	)
-	Polygon("")
-	(
-		[233941 162000] [238441 162000] [238441 167000] [233941 167000] 
-	)
-	Polygon("")
-	(
-		[195941 135000] [200441 135000] [200441 140000] [195941 140000] 
-	)
-	Polygon("")
-	(
-		[195941 128000] [200441 128000] [200441 133000] [195941 133000] 
-	)
-	Polygon("")
-	(
-		[202941 120500] [207441 120500] [207441 125500] [202941 125500] 
-	)
-	Polygon("")
-	(
-		[179441 139000] [183941 139000] [183941 144000] [179441 144000] 
-	)
-	Polygon("")
-	(
-		[237001 135703] [241501 135703] [241501 140703] [237001 140703] 
-	)
-	Polygon("clearpoly")
-	(
-		[172441 109500] [261941 109500] [261941 176500] [252441 167500] [250941 169000] 
-		[252441 170500] [242441 170500] [261941 190000] [261941 198500] [172441 198500] 
-	)
-)
-Layer(5 "outline")
-(
-	Line[484600 6700 484600 358000 800 1600 "clearline"]
-	Line[479100 364500 73500 364500 800 1600 "clearline"]
-	Line[68000 358000 68000 156000 800 1600 "clearline"]
-	Line[74500 149500 101000 149500 800 1600 "clearline"]
-	Line[107500 144000 107500 87500 800 1600 "clearline"]
-	Line[101000 81000 74500 81000 800 1600 "clearline"]
-	Line[68000 74500 68000 6700 800 1600 "clearline"]
-	Line[74500 200 478100 200 800 1600 "clearline"]
-	Line[189949 263941 189890 264000 2500 2000 "clearline"]
-	Arc[478100 6700 6500 6500 800 1600 -90 -90 "clearline"]
-	Arc[478100 358000 6500 6500 800 1600 180 -90 "clearline"]
-	Arc[74500 358000 6500 6500 800 1600 90 -90 "clearline"]
-	Arc[74500 156000 6500 6500 800 1600 0 -90 "clearline"]
-	Arc[101000 143000 6500 6500 800 1600 180 -90 "clearline"]
-	Arc[101000 87500 6500 6500 800 1600 -90 -90 "clearline"]
-	Arc[74500 74500 6500 6500 800 1600 90 -90 "clearline"]
-	Arc[74500 6700 6500 6500 800 1600 0 -90 "clearline"]
-)
-Layer(6 "silk")
-(
-)
-Layer(7 "silk")
-(
-	Line[406441 305000 403941 307500 600 1200 "clearline"]
-	Line[406441 305000 408941 307500 600 1200 "clearline"]
-	Line[403941 307500 408941 307500 600 1200 "clearline"]
-	Line[406441 299000 406441 305000 600 1200 "clearline"]
-	Line[402941 305000 409941 305000 600 1200 "clearline"]
-	Line[406441 307500 406441 314000 600 1200 "clearline"]
-	Line[178441 155500 175941 158000 600 1200 "clearline"]
-	Line[178441 155500 180941 158000 600 1200 "clearline"]
-	Line[175941 158000 180941 158000 600 1200 "clearline"]
-	Line[178441 149500 178441 155500 600 1200 "clearline"]
-	Line[174941 155500 181941 155500 600 1200 "clearline"]
-	Line[178441 158000 178441 164500 600 1200 "clearline"]
-	Line[87941 193000 90441 190500 600 1200 "clearline"]
-	Line[87941 193000 85441 190500 600 1200 "clearline"]
-	Line[85441 190500 90441 190500 600 1200 "clearline"]
-	Line[87941 193000 87941 199000 600 1200 "clearline"]
-	Line[84441 193000 91441 193000 600 1200 "clearline"]
-	Line[87941 190500 87941 187500 600 1200 "clearline"]
-	Line[247941 72000 250441 74500 600 1200 "clearline"]
-	Line[247941 72000 250441 69500 600 1200 "clearline"]
-	Line[250441 69500 250441 74500 600 1200 "clearline"]
-	Line[241941 72000 247941 72000 600 1200 "clearline"]
-	Line[247941 68500 247941 75500 600 1200 "clearline"]
-	Line[250441 72000 256941 72000 600 1200 "clearline"]
-	Text[384000 226503 1 105 "7                               5              4               3                               1              0" "clearline"]
-	Text[308438 170515 0 100 "-   DIO CLK RST" "clearline"]
-	Text[308438 178515 0 100 "SWD connector" "clearline"]
-	Text[233456 73003 1 100 "ERR HB Z DB" "clearline"]
-	Text[442000 347503 1 115 "11           10            9            8              7            6            5            4             3            2             1             0" "clearline"]
-	Text[408938 260015 0 180 "-   +   D" "clearline"]
-	Text[404438 245515 0 135 "-  +   A  B" "clearline"]
-	Text[190941 157500 0 115 "FRC Team 971 BBB Cape" "clearline"]
-	Text[202441 170500 0 115 "20140120 2014-2" "clearline"]
-	Text[317250 348504 1 180 "-  +  A" "clearline"]
-	Text[78938 316059 0 135 "0             1            2           3         4          5           6          7" "clearline"]
-	Text[177441 199500 0 115 "GND" "clearline"]
-	Text[116941 171500 3 175 "- + NC" "clearline"]
-	Text[126441 172500 3 175 "+12V" "clearline"]
-)
-NetList()
-(
-	Net("+3.3V" "(unknown)")
-	(
-		Connect("C12-2")
-		Connect("C26-2")
-		Connect("C27-2")
-		Connect("C28-2")
-		Connect("C29-2")
-		Connect("C30-2")
-		Connect("C31-2")
-		Connect("C32-2")
-		Connect("R1-1")
-		Connect("R13-1")
-		Connect("R14-1")
-		Connect("R15-1")
-		Connect("U4-3")
-		Connect("U6-1")
-		Connect("U6-13")
-		Connect("U6-19")
-		Connect("U6-32")
-		Connect("U6-48")
-		Connect("U6-64")
-		Connect("X1/C1-2")
-		Connect("X1/U4-4")
-		Connect("X1/U4-16")
-		Connect("X2/C1-2")
-		Connect("X2/U4-4")
-		Connect("X2/U4-16")
-		Connect("X3/C1-2")
-		Connect("X3/U4-4")
-		Connect("X3/U4-16")
-		Connect("X4/C1-2")
-		Connect("X4/U4-4")
-		Connect("X4/U4-16")
-		Connect("X5/C1-2")
-		Connect("X5/U4-4")
-		Connect("X5/U4-16")
-		Connect("X6/C1-2")
-		Connect("X6/U4-4")
-		Connect("X6/U4-16")
-		Connect("X7/C1-2")
-		Connect("X7/U4-4")
-		Connect("X7/U4-16")
-	)
-	Net("+5V" "(unknown)")
-	(
-		Connect("C10-2")
-		Connect("C11-2")
-		Connect("C16-2")
-		Connect("C17-2")
-		Connect("U1-15")
-		Connect("U1-16")
-		Connect("U3-1")
-		Connect("U4-1")
-		Connect("U8-51")
-		Connect("U8-52")
-		Connect("X8/C5-2")
-		Connect("X8/R5-2")
-		Connect("X8/R7-2")
-		Connect("X8/R9-2")
-		Connect("X8/R11-2")
-		Connect("X8/U2-4")
-		Connect("X9/C5-2")
-		Connect("X9/R5-2")
-		Connect("X9/R7-2")
-		Connect("X9/R9-2")
-		Connect("X9/R11-2")
-		Connect("X9/U2-4")
-		Connect("X14/C5-2")
-		Connect("X14/C6-2")
-		Connect("X14/R6-2")
-		Connect("X14/R13-1")
-		Connect("X14/U3-7")
-	)
-	Net("+12V" "(unknown)")
-	(
-		Connect("CONN12-2")
-		Connect("R17-1")
-		Connect("X14/C3-2")
-		Connect("X14/C4-2")
-		Connect("X14/R2-1")
-		Connect("X14/R3-1")
-		Connect("X14/U3-1")
-		Connect("X16/C3-2")
-		Connect("X16/C4-2")
-		Connect("X16/R2-1")
-		Connect("X16/R3-1")
-		Connect("X16/U3-1")
-	)
-	Net("DIFFA" "(unknown)")
-	(
-		Connect("R10-1")
-		Connect("R12-1")
-		Connect("X1/U4-2")
-		Connect("X1/U4-6")
-		Connect("X1/U4-10")
-		Connect("X1/U4-14")
-		Connect("X2/U4-2")
-		Connect("X2/U4-6")
-		Connect("X2/U4-10")
-		Connect("X2/U4-14")
-		Connect("X3/U4-2")
-		Connect("X3/U4-6")
-		Connect("X3/U4-10")
-		Connect("X3/U4-14")
-		Connect("X4/U4-2")
-		Connect("X4/U4-6")
-		Connect("X4/U4-10")
-		Connect("X4/U4-14")
-		Connect("X5/U4-2")
-		Connect("X5/U4-6")
-		Connect("X5/U4-10")
-		Connect("X5/U4-14")
-		Connect("X6/U4-2")
-		Connect("X6/U4-6")
-		Connect("X6/U4-10")
-		Connect("X6/U4-14")
-		Connect("X7/U4-2")
-		Connect("X7/U4-6")
-		Connect("X7/U4-10")
-		Connect("X7/U4-14")
-	)
-	Net("GND" "(unknown)")
-	(
-		Connect("C2-2")
-		Connect("C3-2")
-		Connect("C4-1")
-		Connect("C5-1")
-		Connect("C6-1")
-		Connect("C7-1")
-		Connect("C8-1")
-		Connect("C9-1")
-		Connect("C10-1")
-		Connect("C11-1")
-		Connect("C12-1")
-		Connect("C13-1")
-		Connect("C14-1")
-		Connect("C15-1")
-		Connect("C16-1")
-		Connect("C17-1")
-		Connect("C18-1")
-		Connect("C19-1")
-		Connect("C20-1")
-		Connect("C21-1")
-		Connect("C22-1")
-		Connect("C23-1")
-		Connect("C24-1")
-		Connect("C25-1")
-		Connect("C26-1")
-		Connect("C27-1")
-		Connect("C28-1")
-		Connect("C29-1")
-		Connect("C30-1")
-		Connect("C31-1")
-		Connect("C32-1")
-		Connect("CONN1-1")
-		Connect("CONN2-1")
-		Connect("CONN3-1")
-		Connect("CONN4-1")
-		Connect("CONN5-1")
-		Connect("CONN6-1")
-		Connect("CONN7-1")
-		Connect("CONN8-1")
-		Connect("CONN9-1")
-		Connect("CONN12-1")
-		Connect("D7-1")
-		Connect("U1-9")
-		Connect("U1-14")
-		Connect("U2-2")
-		Connect("U2-3")
-		Connect("U2-7")
-		Connect("U2-10")
-		Connect("U2-11")
-		Connect("U2-12")
-		Connect("U2-13")
-		Connect("U3-2")
-		Connect("U3-4")
-		Connect("U4-2")
-		Connect("U4-4")
-		Connect("U6-12")
-		Connect("U6-18")
-		Connect("U6-63")
-		Connect("U8-1")
-		Connect("U8-2")
-		Connect("U8-47")
-		Connect("U8-48")
-		Connect("U9-2")
-		Connect("U9-4")
-		Connect("X1/C1-1")
-		Connect("X1/U4-8")
-		Connect("X1/U4-12")
-		Connect("X2/C1-1")
-		Connect("X2/U4-8")
-		Connect("X2/U4-12")
-		Connect("X3/C1-1")
-		Connect("X3/U4-8")
-		Connect("X3/U4-12")
-		Connect("X4/C1-1")
-		Connect("X4/U4-8")
-		Connect("X4/U4-12")
-		Connect("X5/C1-1")
-		Connect("X5/U4-8")
-		Connect("X5/U4-12")
-		Connect("X6/C1-1")
-		Connect("X6/U4-8")
-		Connect("X6/U4-12")
-		Connect("X7/C1-1")
-		Connect("X7/U4-8")
-		Connect("X7/U4-12")
-		Connect("X8/C1-1")
-		Connect("X8/C2-1")
-		Connect("X8/C3-1")
-		Connect("X8/C4-1")
-		Connect("X8/C5-1")
-		Connect("X8/R6-1")
-		Connect("X8/R8-1")
-		Connect("X8/R10-1")
-		Connect("X8/R12-1")
-		Connect("X8/U2-11")
-		Connect("X9/C1-1")
-		Connect("X9/C2-1")
-		Connect("X9/C3-1")
-		Connect("X9/C4-1")
-		Connect("X9/C5-1")
-		Connect("X9/R6-1")
-		Connect("X9/R8-1")
-		Connect("X9/R10-1")
-		Connect("X9/R12-1")
-		Connect("X9/U2-11")
-		Connect("X14/C2-1")
-		Connect("X14/C3-1")
-		Connect("X14/C4-1")
-		Connect("X14/C6-1")
-		Connect("X14/D1-1")
-		Connect("X14/R4-1")
-		Connect("X14/R5-1")
-		Connect("X14/U3-4")
-		Connect("X14/U3-8")
-	)
-	Net("NRST" "(unknown)")
-	(
-		Connect("C15-2")
-		Connect("CONN1-4")
-		Connect("U6-7")
-		Connect("U8-9")
-	)
-	Net("SGND" "(unknown)")
-	(
-		Connect("R10-2")
-		Connect("X1/X2/C2-2")
-		Connect("X1/X2/CONN4-1")
-		Connect("X1/X4/C2-2")
-		Connect("X1/X4/CONN4-1")
-		Connect("X2/X2/C2-2")
-		Connect("X2/X2/CONN4-1")
-		Connect("X2/X4/C2-2")
-		Connect("X2/X4/CONN4-1")
-		Connect("X3/X2/C2-2")
-		Connect("X3/X2/CONN4-1")
-		Connect("X3/X4/C2-2")
-		Connect("X3/X4/CONN4-1")
-		Connect("X4/X2/C2-2")
-		Connect("X4/X2/CONN4-1")
-		Connect("X4/X4/C2-2")
-		Connect("X4/X4/CONN4-1")
-		Connect("X5/X1/C2-2")
-		Connect("X5/X1/CONN12-1")
-		Connect("X5/X2/C2-2")
-		Connect("X5/X2/CONN12-1")
-		Connect("X5/X3/C2-2")
-		Connect("X5/X3/CONN12-1")
-		Connect("X5/X4/C2-2")
-		Connect("X5/X4/CONN12-1")
-		Connect("X6/X1/C2-2")
-		Connect("X6/X1/CONN12-1")
-		Connect("X6/X2/C2-2")
-		Connect("X6/X2/CONN12-1")
-		Connect("X6/X3/C2-2")
-		Connect("X6/X3/CONN12-1")
-		Connect("X6/X4/C2-2")
-		Connect("X6/X4/CONN12-1")
-		Connect("X7/X1/C2-2")
-		Connect("X7/X1/CONN12-1")
-		Connect("X7/X2/C2-2")
-		Connect("X7/X2/CONN12-1")
-		Connect("X7/X3/C2-2")
-		Connect("X7/X3/CONN12-1")
-		Connect("X7/X4/C2-2")
-		Connect("X7/X4/CONN12-1")
-		Connect("X16/C2-1")
-		Connect("X16/C3-1")
-		Connect("X16/C4-1")
-		Connect("X16/C6-1")
-		Connect("X16/D1-1")
-		Connect("X16/R4-1")
-		Connect("X16/R5-1")
-		Connect("X16/U3-4")
-		Connect("X16/U3-8")
-	)
-	Net("SVCC" "(unknown)")
-	(
-		Connect("C18-2")
-		Connect("C19-2")
-		Connect("C20-2")
-		Connect("C21-2")
-		Connect("C22-2")
-		Connect("C23-2")
-		Connect("C24-2")
-		Connect("C25-2")
-		Connect("CONN2-2")
-		Connect("CONN3-2")
-		Connect("CONN4-2")
-		Connect("CONN5-2")
-		Connect("CONN6-2")
-		Connect("CONN7-2")
-		Connect("CONN8-2")
-		Connect("CONN9-2")
-		Connect("R12-2")
-		Connect("X1/X2/C2-1")
-		Connect("X1/X2/CONN4-2")
-		Connect("X1/X2/R9-2")
-		Connect("X1/X2/R10-2")
-		Connect("X1/X4/C2-1")
-		Connect("X1/X4/CONN4-2")
-		Connect("X1/X4/R9-2")
-		Connect("X1/X4/R10-2")
-		Connect("X2/X2/C2-1")
-		Connect("X2/X2/CONN4-2")
-		Connect("X2/X2/R9-2")
-		Connect("X2/X2/R10-2")
-		Connect("X2/X4/C2-1")
-		Connect("X2/X4/CONN4-2")
-		Connect("X2/X4/R9-2")
-		Connect("X2/X4/R10-2")
-		Connect("X3/X2/C2-1")
-		Connect("X3/X2/CONN4-2")
-		Connect("X3/X2/R9-2")
-		Connect("X3/X2/R10-2")
-		Connect("X3/X4/C2-1")
-		Connect("X3/X4/CONN4-2")
-		Connect("X3/X4/R9-2")
-		Connect("X3/X4/R10-2")
-		Connect("X4/X2/C2-1")
-		Connect("X4/X2/CONN4-2")
-		Connect("X4/X2/R9-2")
-		Connect("X4/X2/R10-2")
-		Connect("X4/X4/C2-1")
-		Connect("X4/X4/CONN4-2")
-		Connect("X4/X4/R9-2")
-		Connect("X4/X4/R10-2")
-		Connect("X5/X1/C2-1")
-		Connect("X5/X1/CONN12-2")
-		Connect("X5/X1/R7-2")
-		Connect("X5/X2/C2-1")
-		Connect("X5/X2/CONN12-2")
-		Connect("X5/X2/R7-2")
-		Connect("X5/X3/C2-1")
-		Connect("X5/X3/CONN12-2")
-		Connect("X5/X3/R7-2")
-		Connect("X5/X4/C2-1")
-		Connect("X5/X4/CONN12-2")
-		Connect("X5/X4/R7-2")
-		Connect("X6/X1/C2-1")
-		Connect("X6/X1/CONN12-2")
-		Connect("X6/X1/R7-2")
-		Connect("X6/X2/C2-1")
-		Connect("X6/X2/CONN12-2")
-		Connect("X6/X2/R7-2")
-		Connect("X6/X3/C2-1")
-		Connect("X6/X3/CONN12-2")
-		Connect("X6/X3/R7-2")
-		Connect("X6/X4/C2-1")
-		Connect("X6/X4/CONN12-2")
-		Connect("X6/X4/R7-2")
-		Connect("X7/X1/C2-1")
-		Connect("X7/X1/CONN12-2")
-		Connect("X7/X1/R7-2")
-		Connect("X7/X2/C2-1")
-		Connect("X7/X2/CONN12-2")
-		Connect("X7/X2/R7-2")
-		Connect("X7/X3/C2-1")
-		Connect("X7/X3/CONN12-2")
-		Connect("X7/X3/R7-2")
-		Connect("X7/X4/C2-1")
-		Connect("X7/X4/CONN12-2")
-		Connect("X7/X4/R7-2")
-		Connect("X16/C5-2")
-		Connect("X16/C6-2")
-		Connect("X16/R6-2")
-		Connect("X16/R13-1")
-		Connect("X16/U3-7")
-	)
-	Net("unnamed_net1" "(unknown)")
-	(
-		Connect("U6-14")
-		Connect("X2/U4-13")
-	)
-	Net("unnamed_net2" "(unknown)")
-	(
-		Connect("U6-15")
-		Connect("X2/U4-11")
-	)
-	Net("unnamed_net3" "(unknown)")
-	(
-		Connect("U6-16")
-		Connect("X2/U4-5")
-	)
-	Net("unnamed_net4" "(unknown)")
-	(
-		Connect("U6-17")
-		Connect("X2/U4-3")
-	)
-	Net("unnamed_net5" "(unknown)")
-	(
-		Connect("U2-4")
-		Connect("U6-20")
-	)
-	Net("unnamed_net6" "(unknown)")
-	(
-		Connect("U6-21")
-		Connect("X3/U4-5")
-	)
-	Net("unnamed_net7" "(unknown)")
-	(
-		Connect("U6-22")
-		Connect("X4/U4-13")
-	)
-	Net("unnamed_net8" "(unknown)")
-	(
-		Connect("U6-23")
-		Connect("X5/U4-11")
-	)
-	Net("unnamed_net9" "(unknown)")
-	(
-		Connect("U6-41")
-		Connect("X3/U4-13")
-	)
-	Net("unnamed_net10" "(unknown)")
-	(
-		Connect("U6-42")
-		Connect("U8-72")
-	)
-	Net("unnamed_net11" "(unknown)")
-	(
-		Connect("U6-43")
-		Connect("U8-70")
-	)
-	Net("unnamed_net12" "(unknown)")
-	(
-		Connect("U6-44")
-		Connect("X5/U4-5")
-	)
-	Net("unnamed_net13" "(unknown)")
-	(
-		Connect("U6-45")
-		Connect("X5/U4-3")
-	)
-	Net("unnamed_net14" "(unknown)")
-	(
-		Connect("CONN1-2")
-		Connect("U6-46")
-	)
-	Net("unnamed_net15" "(unknown)")
-	(
-		Connect("CONN1-3")
-		Connect("U6-49")
-	)
-	Net("unnamed_net16" "(unknown)")
-	(
-		Connect("U6-26")
-		Connect("X3/U4-11")
-	)
-	Net("unnamed_net17" "(unknown)")
-	(
-		Connect("D2-1")
-		Connect("U6-27")
-	)
-	Net("unnamed_net18" "(unknown)")
-	(
-		Connect("U6-28")
-		Connect("X5/U4-13")
-	)
-	Net("unnamed_net19" "(unknown)")
-	(
-		Connect("U6-55")
-		Connect("X3/U4-3")
-	)
-	Net("unnamed_net20" "(unknown)")
-	(
-		Connect("D5-1")
-		Connect("U6-56")
-	)
-	Net("unnamed_net21" "(unknown)")
-	(
-		Connect("U6-57")
-		Connect("X4/U4-11")
-	)
-	Net("unnamed_net22" "(unknown)")
-	(
-		Connect("U6-58")
-		Connect("X4/U4-5")
-	)
-	Net("unnamed_net23" "(unknown)")
-	(
-		Connect("U6-59")
-		Connect("X4/U4-3")
-	)
-	Net("unnamed_net24" "(unknown)")
-	(
-		Connect("U6-61")
-		Connect("X7/U4-13")
-	)
-	Net("unnamed_net25" "(unknown)")
-	(
-		Connect("U6-62")
-		Connect("X7/U4-11")
-	)
-	Net("unnamed_net26" "(unknown)")
-	(
-		Connect("U6-29")
-		Connect("X7/U4-5")
-	)
-	Net("unnamed_net27" "(unknown)")
-	(
-		Connect("D6-1")
-		Connect("U6-30")
-	)
-	Net("unnamed_net28" "(unknown)")
-	(
-		Connect("U1-10")
-		Connect("U6-33")
-	)
-	Net("unnamed_net29" "(unknown)")
-	(
-		Connect("U1-13")
-		Connect("U6-34")
-	)
-	Net("unnamed_net30" "(unknown)")
-	(
-		Connect("U1-12")
-		Connect("U6-35")
-	)
-	Net("unnamed_net31" "(unknown)")
-	(
-		Connect("U1-11")
-		Connect("U6-36")
-	)
-	Net("unnamed_net32" "(unknown)")
-	(
-		Connect("U6-8")
-		Connect("X1/U4-3")
-	)
-	Net("unnamed_net33" "(unknown)")
-	(
-		Connect("U6-9")
-		Connect("X1/U4-5")
-	)
-	Net("unnamed_net34" "(unknown)")
-	(
-		Connect("U6-10")
-		Connect("U8-8")
-	)
-	Net("unnamed_net35" "(unknown)")
-	(
-		Connect("D1-1")
-		Connect("U6-11")
-	)
-	Net("unnamed_net36" "(unknown)")
-	(
-		Connect("U6-24")
-		Connect("X6/U4-3")
-	)
-	Net("unnamed_net37" "(unknown)")
-	(
-		Connect("U6-25")
-		Connect("X6/U4-5")
-	)
-	Net("unnamed_net38" "(unknown)")
-	(
-		Connect("U6-37")
-		Connect("X1/U4-11")
-	)
-	Net("unnamed_net39" "(unknown)")
-	(
-		Connect("U6-38")
-		Connect("X1/U4-13")
-	)
-	Net("unnamed_net40" "(unknown)")
-	(
-		Connect("U6-39")
-		Connect("U8-56")
-	)
-	Net("unnamed_net41" "(unknown)")
-	(
-		Connect("U2-16")
-		Connect("U6-51")
-	)
-	Net("unnamed_net42" "(unknown)")
-	(
-		Connect("U2-5")
-		Connect("U6-52")
-	)
-	Net("unnamed_net43" "(unknown)")
-	(
-		Connect("U2-15")
-		Connect("U6-53")
-	)
-	Net("unnamed_net44" "(unknown)")
-	(
-		Connect("U6-2")
-		Connect("X6/U4-11")
-	)
-	Net("unnamed_net45" "(unknown)")
-	(
-		Connect("U6-3")
-		Connect("X6/U4-13")
-	)
-	Net("unnamed_net46" "(unknown)")
-	(
-		Connect("U6-4")
-		Connect("X7/U4-3")
-	)
-	Net("unnamed_net47" "(unknown)")
-	(
-		Connect("C4-2")
-		Connect("U6-5")
-		Connect("U9-1")
-	)
-	Net("unnamed_net48" "(unknown)")
-	(
-		Connect("C5-2")
-		Connect("U6-6")
-		Connect("U9-3")
-	)
-	Net("unnamed_net49" "(unknown)")
-	(
-		Connect("U6-60")
-		Connect("U8-7")
-	)
-	Net("unnamed_net50" "(unknown)")
-	(
-		Connect("C13-2")
-		Connect("U6-31")
-	)
-	Net("unnamed_net51" "(unknown)")
-	(
-		Connect("C14-2")
-		Connect("U6-47")
-	)
-	Net("unnamed_net253" "(unknown)")
-	(
-		Connect("C3-1")
-		Connect("U2-1")
-	)
-	Net("unnamed_net254" "(unknown)")
-	(
-		Connect("C2-1")
-		Connect("U2-14")
-	)
-	Net("unnamed_net255" "(unknown)")
-	(
-		Connect("C7-2")
-		Connect("C8-2")
-		Connect("C9-2")
-		Connect("L2-2")
-		Connect("U2-6")
-		Connect("U3-3")
-	)
-	Net("unnamed_net256" "(unknown)")
-	(
-		Connect("D4-1")
-		Connect("L2-1")
-		Connect("U2-8")
-	)
-	Net("unnamed_net257" "(unknown)")
-	(
-		Connect("C6-2")
-		Connect("D4-3")
-		Connect("U2-9")
-	)
-	Net("unnamed_net258" "(unknown)")
-	(
-		Connect("U1-1")
-		Connect("X9/C1-2")
-		Connect("X9/R1-2")
-		Connect("X9/R5-1")
-		Connect("X9/R6-2")
-	)
-	Net("unnamed_net259" "(unknown)")
-	(
-		Connect("U1-2")
-		Connect("X9/C2-2")
-		Connect("X9/R2-2")
-		Connect("X9/R7-1")
-		Connect("X9/R8-2")
-	)
-	Net("unnamed_net260" "(unknown)")
-	(
-		Connect("U1-3")
-		Connect("X9/C3-2")
-		Connect("X9/R3-2")
-		Connect("X9/R9-1")
-		Connect("X9/R10-2")
-	)
-	Net("unnamed_net261" "(unknown)")
-	(
-		Connect("U1-4")
-		Connect("X9/C4-2")
-		Connect("X9/R4-2")
-		Connect("X9/R11-1")
-		Connect("X9/R12-2")
-	)
-	Net("unnamed_net262" "(unknown)")
-	(
-		Connect("U1-5")
-		Connect("X8/C1-2")
-		Connect("X8/R1-2")
-		Connect("X8/R5-1")
-		Connect("X8/R6-2")
-	)
-	Net("unnamed_net263" "(unknown)")
-	(
-		Connect("U1-6")
-		Connect("X8/C2-2")
-		Connect("X8/R2-2")
-		Connect("X8/R7-1")
-		Connect("X8/R8-2")
-	)
-	Net("unnamed_net264" "(unknown)")
-	(
-		Connect("U1-7")
-		Connect("X8/C3-2")
-		Connect("X8/R3-2")
-		Connect("X8/R9-1")
-		Connect("X8/R10-2")
-	)
-	Net("unnamed_net265" "(unknown)")
-	(
-		Connect("U1-8")
-		Connect("X8/C4-2")
-		Connect("X8/R4-2")
-		Connect("X8/R11-1")
-		Connect("X8/R12-2")
-	)
-	Net("unnamed_net266" "(unknown)")
-	(
-		Connect("CONN5-3")
-		Connect("X8/U2-3")
-	)
-	Net("unnamed_net267" "(unknown)")
-	(
-		Connect("CONN4-3")
-		Connect("X8/U2-5")
-	)
-	Net("unnamed_net268" "(unknown)")
-	(
-		Connect("CONN3-3")
-		Connect("X8/U2-10")
-	)
-	Net("unnamed_net269" "(unknown)")
-	(
-		Connect("CONN2-3")
-		Connect("X8/U2-12")
-	)
-	Net("unnamed_net284" "(unknown)")
-	(
-		Connect("CONN9-3")
-		Connect("X9/U2-3")
-	)
-	Net("unnamed_net285" "(unknown)")
-	(
-		Connect("CONN8-3")
-		Connect("X9/U2-5")
-	)
-	Net("unnamed_net286" "(unknown)")
-	(
-		Connect("CONN7-3")
-		Connect("X9/U2-10")
-	)
-	Net("unnamed_net287" "(unknown)")
-	(
-		Connect("CONN6-3")
-		Connect("X9/U2-12")
-	)
-	Net("unnamed_net302" "(unknown)")
-	(
-		Connect("D2-2")
-		Connect("R13-2")
-	)
-	Net("unnamed_net303" "(unknown)")
-	(
-		Connect("D5-2")
-		Connect("R14-2")
-	)
-	Net("unnamed_net304" "(unknown)")
-	(
-		Connect("D6-2")
-		Connect("R15-2")
-	)
-	Net("unnamed_net305" "(unknown)")
-	(
-		Connect("D7-2")
-		Connect("R17-2")
-	)
-	Net("unnamed_net306" "(unknown)")
-	(
-		Connect("D1-2")
-		Connect("R1-2")
-	)
-	Net("X1/unnamed_net130" "(unknown)")
-	(
-		Connect("X1/U4-1")
-		Connect("X1/X4/R8-2")
-	)
-	Net("X1/unnamed_net131" "(unknown)")
-	(
-		Connect("X1/U4-7")
-		Connect("X1/X4/R6-2")
-	)
-	Net("X1/unnamed_net132" "(unknown)")
-	(
-		Connect("X1/U4-9")
-		Connect("X1/X2/R8-2")
-	)
-	Net("X1/unnamed_net133" "(unknown)")
-	(
-		Connect("X1/U4-15")
-		Connect("X1/X2/R6-2")
-	)
-	Net("X1/X2/unnamed_net142" "(unknown)")
-	(
-		Connect("X1/X2/CONN4-3")
-		Connect("X1/X2/R6-1")
-		Connect("X1/X2/R9-1")
-	)
-	Net("X1/X2/unnamed_net143" "(unknown)")
-	(
-		Connect("X1/X2/CONN4-4")
-		Connect("X1/X2/R8-1")
-		Connect("X1/X2/R10-1")
-	)
-	Net("X1/X4/unnamed_net148" "(unknown)")
-	(
-		Connect("X1/X4/CONN4-3")
-		Connect("X1/X4/R6-1")
-		Connect("X1/X4/R9-1")
-	)
-	Net("X1/X4/unnamed_net149" "(unknown)")
-	(
-		Connect("X1/X4/CONN4-4")
-		Connect("X1/X4/R8-1")
-		Connect("X1/X4/R10-1")
-	)
-	Net("X2/unnamed_net55" "(unknown)")
-	(
-		Connect("X2/U4-1")
-		Connect("X2/X4/R8-2")
-	)
-	Net("X2/unnamed_net56" "(unknown)")
-	(
-		Connect("X2/U4-7")
-		Connect("X2/X4/R6-2")
-	)
-	Net("X2/unnamed_net57" "(unknown)")
-	(
-		Connect("X2/U4-9")
-		Connect("X2/X2/R8-2")
-	)
-	Net("X2/unnamed_net58" "(unknown)")
-	(
-		Connect("X2/U4-15")
-		Connect("X2/X2/R6-2")
-	)
-	Net("X2/X2/unnamed_net67" "(unknown)")
-	(
-		Connect("X2/X2/CONN4-3")
-		Connect("X2/X2/R6-1")
-		Connect("X2/X2/R9-1")
-	)
-	Net("X2/X2/unnamed_net68" "(unknown)")
-	(
-		Connect("X2/X2/CONN4-4")
-		Connect("X2/X2/R8-1")
-		Connect("X2/X2/R10-1")
-	)
-	Net("X2/X4/unnamed_net73" "(unknown)")
-	(
-		Connect("X2/X4/CONN4-3")
-		Connect("X2/X4/R6-1")
-		Connect("X2/X4/R9-1")
-	)
-	Net("X2/X4/unnamed_net74" "(unknown)")
-	(
-		Connect("X2/X4/CONN4-4")
-		Connect("X2/X4/R8-1")
-		Connect("X2/X4/R10-1")
-	)
-	Net("X3/unnamed_net105" "(unknown)")
-	(
-		Connect("X3/U4-1")
-		Connect("X3/X4/R8-2")
-	)
-	Net("X3/unnamed_net106" "(unknown)")
-	(
-		Connect("X3/U4-7")
-		Connect("X3/X4/R6-2")
-	)
-	Net("X3/unnamed_net107" "(unknown)")
-	(
-		Connect("X3/U4-9")
-		Connect("X3/X2/R8-2")
-	)
-	Net("X3/unnamed_net108" "(unknown)")
-	(
-		Connect("X3/U4-15")
-		Connect("X3/X2/R6-2")
-	)
-	Net("X3/X2/unnamed_net117" "(unknown)")
-	(
-		Connect("X3/X2/CONN4-3")
-		Connect("X3/X2/R6-1")
-		Connect("X3/X2/R9-1")
-	)
-	Net("X3/X2/unnamed_net118" "(unknown)")
-	(
-		Connect("X3/X2/CONN4-4")
-		Connect("X3/X2/R8-1")
-		Connect("X3/X2/R10-1")
-	)
-	Net("X3/X4/unnamed_net123" "(unknown)")
-	(
-		Connect("X3/X4/CONN4-3")
-		Connect("X3/X4/R6-1")
-		Connect("X3/X4/R9-1")
-	)
-	Net("X3/X4/unnamed_net124" "(unknown)")
-	(
-		Connect("X3/X4/CONN4-4")
-		Connect("X3/X4/R8-1")
-		Connect("X3/X4/R10-1")
-	)
-	Net("X4/unnamed_net80" "(unknown)")
-	(
-		Connect("X4/U4-1")
-		Connect("X4/X4/R8-2")
-	)
-	Net("X4/unnamed_net81" "(unknown)")
-	(
-		Connect("X4/U4-7")
-		Connect("X4/X4/R6-2")
-	)
-	Net("X4/unnamed_net82" "(unknown)")
-	(
-		Connect("X4/U4-9")
-		Connect("X4/X2/R8-2")
-	)
-	Net("X4/unnamed_net83" "(unknown)")
-	(
-		Connect("X4/U4-15")
-		Connect("X4/X2/R6-2")
-	)
-	Net("X4/X2/unnamed_net92" "(unknown)")
-	(
-		Connect("X4/X2/CONN4-3")
-		Connect("X4/X2/R6-1")
-		Connect("X4/X2/R9-1")
-	)
-	Net("X4/X2/unnamed_net93" "(unknown)")
-	(
-		Connect("X4/X2/CONN4-4")
-		Connect("X4/X2/R8-1")
-		Connect("X4/X2/R10-1")
-	)
-	Net("X4/X4/unnamed_net98" "(unknown)")
-	(
-		Connect("X4/X4/CONN4-3")
-		Connect("X4/X4/R6-1")
-		Connect("X4/X4/R9-1")
-	)
-	Net("X4/X4/unnamed_net99" "(unknown)")
-	(
-		Connect("X4/X4/CONN4-4")
-		Connect("X4/X4/R8-1")
-		Connect("X4/X4/R10-1")
-	)
-	Net("X5/unnamed_net169" "(unknown)")
-	(
-		Connect("X5/U4-1")
-		Connect("X5/X1/R6-2")
-	)
-	Net("X5/unnamed_net170" "(unknown)")
-	(
-		Connect("X5/U4-7")
-		Connect("X5/X2/R6-2")
-	)
-	Net("X5/unnamed_net171" "(unknown)")
-	(
-		Connect("X5/U4-9")
-		Connect("X5/X3/R6-2")
-	)
-	Net("X5/unnamed_net172" "(unknown)")
-	(
-		Connect("X5/U4-15")
-		Connect("X5/X4/R6-2")
-	)
-	Net("X5/X1/unnamed_net186" "(unknown)")
-	(
-		Connect("X5/X1/CONN12-3")
-		Connect("X5/X1/R6-1")
-		Connect("X5/X1/R7-1")
-	)
-	Net("X5/X2/unnamed_net182" "(unknown)")
-	(
-		Connect("X5/X2/CONN12-3")
-		Connect("X5/X2/R6-1")
-		Connect("X5/X2/R7-1")
-	)
-	Net("X5/X3/unnamed_net190" "(unknown)")
-	(
-		Connect("X5/X3/CONN12-3")
-		Connect("X5/X3/R6-1")
-		Connect("X5/X3/R7-1")
-	)
-	Net("X5/X4/unnamed_net194" "(unknown)")
-	(
-		Connect("X5/X4/CONN12-3")
-		Connect("X5/X4/R6-1")
-		Connect("X5/X4/R7-1")
-	)
-	Net("X6/unnamed_net227" "(unknown)")
-	(
-		Connect("X6/U4-1")
-		Connect("X6/X1/R6-2")
-	)
-	Net("X6/unnamed_net228" "(unknown)")
-	(
-		Connect("X6/U4-7")
-		Connect("X6/X2/R6-2")
-	)
-	Net("X6/unnamed_net229" "(unknown)")
-	(
-		Connect("X6/U4-9")
-		Connect("X6/X3/R6-2")
-	)
-	Net("X6/unnamed_net230" "(unknown)")
-	(
-		Connect("X6/U4-15")
-		Connect("X6/X4/R6-2")
-	)
-	Net("X6/X1/unnamed_net244" "(unknown)")
-	(
-		Connect("X6/X1/CONN12-3")
-		Connect("X6/X1/R6-1")
-		Connect("X6/X1/R7-1")
-	)
-	Net("X6/X2/unnamed_net240" "(unknown)")
-	(
-		Connect("X6/X2/CONN12-3")
-		Connect("X6/X2/R6-1")
-		Connect("X6/X2/R7-1")
-	)
-	Net("X6/X3/unnamed_net248" "(unknown)")
-	(
-		Connect("X6/X3/CONN12-3")
-		Connect("X6/X3/R6-1")
-		Connect("X6/X3/R7-1")
-	)
-	Net("X6/X4/unnamed_net252" "(unknown)")
-	(
-		Connect("X6/X4/CONN12-3")
-		Connect("X6/X4/R6-1")
-		Connect("X6/X4/R7-1")
-	)
-	Net("X7/unnamed_net198" "(unknown)")
-	(
-		Connect("X7/U4-1")
-		Connect("X7/X1/R6-2")
-	)
-	Net("X7/unnamed_net199" "(unknown)")
-	(
-		Connect("X7/U4-7")
-		Connect("X7/X2/R6-2")
-	)
-	Net("X7/unnamed_net200" "(unknown)")
-	(
-		Connect("X7/U4-9")
-		Connect("X7/X3/R6-2")
-	)
-	Net("X7/unnamed_net201" "(unknown)")
-	(
-		Connect("X7/U4-15")
-		Connect("X7/X4/R6-2")
-	)
-	Net("X7/X1/unnamed_net215" "(unknown)")
-	(
-		Connect("X7/X1/CONN12-3")
-		Connect("X7/X1/R6-1")
-		Connect("X7/X1/R7-1")
-	)
-	Net("X7/X2/unnamed_net211" "(unknown)")
-	(
-		Connect("X7/X2/CONN12-3")
-		Connect("X7/X2/R6-1")
-		Connect("X7/X2/R7-1")
-	)
-	Net("X7/X3/unnamed_net219" "(unknown)")
-	(
-		Connect("X7/X3/CONN12-3")
-		Connect("X7/X3/R6-1")
-		Connect("X7/X3/R7-1")
-	)
-	Net("X7/X4/unnamed_net223" "(unknown)")
-	(
-		Connect("X7/X4/CONN12-3")
-		Connect("X7/X4/R6-1")
-		Connect("X7/X4/R7-1")
-	)
-	Net("X8/unnamed_net271" "(unknown)")
-	(
-		Connect("X8/R1-1")
-		Connect("X8/U2-1")
-		Connect("X8/U2-2")
-	)
-	Net("X8/unnamed_net275" "(unknown)")
-	(
-		Connect("X8/R2-1")
-		Connect("X8/U2-6")
-		Connect("X8/U2-7")
-	)
-	Net("X8/unnamed_net277" "(unknown)")
-	(
-		Connect("X8/R3-1")
-		Connect("X8/U2-8")
-		Connect("X8/U2-9")
-	)
-	Net("X8/unnamed_net279" "(unknown)")
-	(
-		Connect("X8/R4-1")
-		Connect("X8/U2-13")
-		Connect("X8/U2-14")
-	)
-	Net("X9/unnamed_net289" "(unknown)")
-	(
-		Connect("X9/R1-1")
-		Connect("X9/U2-1")
-		Connect("X9/U2-2")
-	)
-	Net("X9/unnamed_net293" "(unknown)")
-	(
-		Connect("X9/R2-1")
-		Connect("X9/U2-6")
-		Connect("X9/U2-7")
-	)
-	Net("X9/unnamed_net295" "(unknown)")
-	(
-		Connect("X9/R3-1")
-		Connect("X9/U2-8")
-		Connect("X9/U2-9")
-	)
-	Net("X9/unnamed_net297" "(unknown)")
-	(
-		Connect("X9/R4-1")
-		Connect("X9/U2-13")
-		Connect("X9/U2-14")
-	)
-	Net("X14/unnamed_net153" "(unknown)")
-	(
-		Connect("X14/R3-2")
-		Connect("X14/U3-2")
-	)
-	Net("X14/unnamed_net154" "(unknown)")
-	(
-		Connect("X14/R2-2")
-		Connect("X14/R4-2")
-		Connect("X14/U3-3")
-	)
-	Net("X14/unnamed_net155" "(unknown)")
-	(
-		Connect("X14/C2-2")
-		Connect("X14/U3-5")
-	)
-	Net("X14/unnamed_net156" "(unknown)")
-	(
-		Connect("X14/C5-1")
-		Connect("X14/R5-2")
-		Connect("X14/R6-1")
-		Connect("X14/U3-6")
-	)
-	Net("X14/unnamed_net158" "(unknown)")
-	(
-		Connect("X14/D1-2")
-		Connect("X14/R13-2")
-	)
-	Net("X16/unnamed_net160" "(unknown)")
-	(
-		Connect("X16/R3-2")
-		Connect("X16/U3-2")
-	)
-	Net("X16/unnamed_net161" "(unknown)")
-	(
-		Connect("X16/R2-2")
-		Connect("X16/R4-2")
-		Connect("X16/U3-3")
-	)
-	Net("X16/unnamed_net162" "(unknown)")
-	(
-		Connect("X16/C2-2")
-		Connect("X16/U3-5")
-	)
-	Net("X16/unnamed_net163" "(unknown)")
-	(
-		Connect("X16/C5-1")
-		Connect("X16/R5-2")
-		Connect("X16/R6-1")
-		Connect("X16/U3-6")
-	)
-	Net("X16/unnamed_net165" "(unknown)")
-	(
-		Connect("X16/D1-2")
-		Connect("X16/R13-2")
-	)
-)
diff --git a/bbb_cape/schematic/check_refdes.sh b/bbb_cape/schematic/check_refdes.sh
deleted file mode 100755
index 1ebede1..0000000
--- a/bbb_cape/schematic/check_refdes.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-if [[ $# -lt 1 ]]; then
-	find $(dirname $0) \( -name '*.sch' -or -name '*.sym' \) -exec $0 {} \;
-	exit $?
-fi
-
-FILE=$1
-
-DUPLICATED=$(grep -F 'refdes=' "${FILE}" | sort | uniq -d)
-
-if [[ -n ${DUPLICATED} ]]; then
-	echo Duplicated lines in ${FILE}:
-	echo ${DUPLICATED}
-fi
diff --git a/bbb_cape/schematic/digital input.sch b/bbb_cape/schematic/digital input.sch
deleted file mode 100644
index f6a2458..0000000
--- a/bbb_cape/schematic/digital input.sch
+++ /dev/null
@@ -1,87 +0,0 @@
-v 20110115 2
-C 46000 48000 1 180 0 in-1.sym
-{
-T 46000 47700 5 10 0 0 180 0 1
-device=INPUT
-T 45900 48100 5 10 1 1 180 0 1
-refdes=SGND
-}
-C 46000 46600 1 180 0 in-1.sym
-{
-T 46000 46300 5 10 0 0 180 0 1
-device=INPUT
-T 45900 46700 5 10 1 1 180 0 1
-refdes=SVCC
-}
-C 45400 45400 1 0 0 out-1.sym
-{
-T 45400 45700 5 10 0 0 0 0 1
-device=OUTPUT
-T 45400 45600 5 10 1 1 0 0 1
-refdes=OUT
-}
-N 44000 46500 45400 46500 4
-N 45400 47900 44100 47900 4
-N 44100 47900 44100 46800 4
-C 44200 45400 1 0 0 resistor-1.sym
-{
-T 44500 45800 5 10 0 0 0 0 1
-device=RESISTOR
-T 44400 45700 5 10 1 1 0 0 1
-refdes=R6
-T 44200 45200 5 10 1 1 0 0 1
-value=500 ohms
-T 44200 45400 5 10 0 0 0 0 1
-footprint=0603
-T 44200 45400 5 10 0 1 0 0 1
-pn=ERJ-3EKF4990V
-}
-N 45100 45500 45400 45500 4
-C 42300 46000 1 0 0 connector3-1.sym
-{
-T 44100 46900 5 10 0 0 0 0 1
-device=CONNECTOR_3
-T 42300 47100 5 10 1 1 0 0 1
-refdes=CONN12
-T 42300 46000 5 10 0 0 0 0 1
-footprint=22-23-2031
-T 42300 46000 5 10 0 1 0 0 1
-pn=22-23-2031
-}
-N 44200 45500 44100 45500 4
-N 44100 45500 44100 46200 4
-N 44100 46200 44000 46200 4
-C 44900 46800 1 90 0 capacitor-1.sym
-{
-T 44200 47000 5 10 0 0 90 0 1
-device=CAPACITOR
-T 44400 47000 5 10 1 1 90 0 1
-refdes=C2
-T 44000 47000 5 10 0 0 90 0 1
-symversion=0.1
-T 45100 46800 5 10 1 1 90 0 1
-value=0.1 uF
-T 44900 46800 5 10 0 0 0 0 1
-footprint=0603
-T 44900 46800 5 10 0 0 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-N 44700 47700 44700 47900 4
-N 44700 46800 44700 46500 4
-N 44000 46800 44100 46800 4
-C 44300 46000 1 0 0 resistor-1.sym
-{
-T 44600 46400 5 10 0 0 0 0 1
-device=RESISTOR
-T 44500 46200 5 10 1 1 0 0 1
-refdes=R7
-T 44300 45900 5 10 1 1 0 0 1
-value=10 kohms
-T 44300 46000 5 10 0 0 0 0 1
-footprint=0603
-T 44300 46000 5 10 0 1 0 0 1
-pn=SG73S1JTTD103J
-}
-N 44300 46100 44100 46100 4
-N 45200 46100 45300 46100 4
-N 45300 46100 45300 46500 4
diff --git a/bbb_cape/schematic/digital inputs x4.sch b/bbb_cape/schematic/digital inputs x4.sch
deleted file mode 100644
index 11f3308..0000000
--- a/bbb_cape/schematic/digital inputs x4.sch
+++ /dev/null
@@ -1,168 +0,0 @@
-v 20110115 2
-C 37300 45500 1 90 0 in-1.sym
-{
-T 37000 45500 5 10 0 0 90 0 1
-device=INPUT
-T 37000 45500 5 10 1 1 90 0 1
-refdes=SGND
-}
-C 38000 45500 1 90 0 in-1.sym
-{
-T 37700 45500 5 10 0 0 90 0 1
-device=INPUT
-T 37700 45500 5 10 1 1 90 0 1
-refdes=SVCC
-}
-C 43800 48900 1 180 0 AM26LV32E-1.sym
-{
-T 44400 46700 5 10 0 1 180 0 1
-device=AM26LV32E
-T 45200 47200 5 10 0 1 180 0 1
-footprint=TSSOP16
-T 42500 46300 5 10 1 1 180 0 1
-refdes=U4
-T 43800 48900 5 10 0 0 0 0 1
-pn=AM26LV32EIPWR
-}
-N 37900 46100 37900 49600 4
-N 37900 46300 38100 46300 4
-N 37900 47400 38100 47400 4
-N 37200 46100 37200 49900 4
-N 38100 46600 37200 46600 4
-N 38100 47700 37200 47700 4
-C 46000 48200 1 180 0 in-1.sym
-{
-T 46000 47900 5 10 0 0 180 0 1
-device=INPUT
-T 46000 47900 5 10 1 1 180 0 1
-refdes=DGND
-}
-C 46000 49400 1 180 0 in-1.sym
-{
-T 46000 49100 5 10 0 0 180 0 1
-device=INPUT
-T 46000 49100 5 10 1 1 180 0 1
-refdes=DVCC
-}
-C 44200 46100 1 270 0 out-1.sym
-{
-T 44500 46100 5 10 0 0 270 0 1
-device=OUTPUT
-T 44500 46100 5 10 1 1 270 0 1
-refdes=OUT0
-}
-C 44700 46100 1 270 0 out-1.sym
-{
-T 45000 46100 5 10 0 0 270 0 1
-device=OUTPUT
-T 45000 46100 5 10 1 1 270 0 1
-refdes=OUT1
-}
-C 45200 46100 1 270 0 out-1.sym
-{
-T 45500 46100 5 10 0 0 270 0 1
-device=OUTPUT
-T 45500 46100 5 10 1 1 270 0 1
-refdes=OUT2
-}
-C 45700 46100 1 270 0 out-1.sym
-{
-T 46000 46100 5 10 0 0 270 0 1
-device=OUTPUT
-T 46000 46100 5 10 1 1 270 0 1
-refdes=OUT3
-}
-N 43800 46600 44300 46600 4
-N 44300 46600 44300 46100 4
-N 43800 48100 45400 48100 4
-N 44600 48100 44600 48400 4
-N 44600 48400 43800 48400 4
-N 43800 47800 44100 47800 4
-N 44100 47800 44100 49300 4
-N 43800 46900 44800 46900 4
-N 44800 46900 44800 46100 4
-N 43800 47200 45300 47200 4
-N 45300 47200 45300 46100 4
-N 43800 47500 45800 47500 4
-N 45800 47500 45800 46100 4
-C 41500 50300 1 270 0 in-1.sym
-{
-T 41800 50300 5 10 0 0 270 0 1
-device=INPUT
-T 41800 50300 5 10 1 1 270 0 1
-refdes=DIFFA
-}
-N 41600 49700 41600 46600 4
-N 41600 46600 42000 46600 4
-N 42000 47200 41600 47200 4
-N 42000 47800 41600 47800 4
-N 42000 48400 41600 48400 4
-C 38100 47200 1 0 0 digital-input-1.sym
-{
-T 40600 48100 5 10 0 1 0 0 1
-device=encoder-input
-T 39800 48000 5 10 1 1 0 0 1
-refdes=X2
-T 38100 47200 5 10 0 0 0 0 1
-source=digital input.sch
-}
-C 38100 46100 1 0 0 digital-input-1.sym
-{
-T 40600 47000 5 10 0 1 0 0 1
-device=encoder-input
-T 39800 46900 5 10 1 1 0 0 1
-refdes=X1
-T 38100 46100 5 10 0 0 0 0 1
-source=digital input.sch
-}
-N 40400 46400 41000 46400 4
-N 41000 46400 41000 46900 4
-N 41000 46900 42000 46900 4
-N 40400 47500 42000 47500 4
-C 38100 48300 1 0 0 digital-input-1.sym
-{
-T 40600 49200 5 10 0 1 0 0 1
-device=encoder-input
-T 39800 49100 5 10 1 1 0 0 1
-refdes=X3
-T 38100 48300 5 10 0 0 0 0 1
-source=digital input.sch
-}
-C 38100 49400 1 0 0 digital-input-1.sym
-{
-T 40600 50300 5 10 0 1 0 0 1
-device=encoder-input
-T 39800 50200 5 10 1 1 0 0 1
-refdes=X4
-T 38100 49400 5 10 0 0 0 0 1
-source=digital input.sch
-}
-N 41000 48100 42000 48100 4
-N 42000 48700 41300 48700 4
-N 41300 48700 41300 49700 4
-N 41300 49700 40400 49700 4
-N 38100 48500 37900 48500 4
-N 38100 49600 37900 49600 4
-N 38100 48800 37200 48800 4
-N 38100 49900 37200 49900 4
-N 40400 48600 41000 48600 4
-N 41000 48600 41000 48100 4
-C 45300 48200 1 90 0 capacitor-1.sym
-{
-T 44600 48400 5 10 0 0 90 0 1
-device=CAPACITOR
-T 44800 48400 5 10 1 1 90 0 1
-refdes=C1
-T 44400 48400 5 10 0 0 90 0 1
-symversion=0.1
-T 45300 48200 5 10 0 0 90 0 1
-footprint=0603
-T 45500 48400 5 10 1 1 90 0 1
-value=0.1 uF
-T 45300 48200 5 10 0 0 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-N 45100 48200 45100 48100 4
-N 44100 49300 45400 49300 4
-N 45100 49100 45100 49300 4
-N 44100 48700 43800 48700 4
diff --git a/bbb_cape/schematic/encoder input.sch b/bbb_cape/schematic/encoder input.sch
deleted file mode 100644
index 04f5214..0000000
--- a/bbb_cape/schematic/encoder input.sch
+++ /dev/null
@@ -1,126 +0,0 @@
-v 20110115 2
-C 46700 47900 1 180 0 in-1.sym
-{
-T 46700 47600 5 10 0 0 180 0 1
-device=INPUT
-T 46600 48000 5 10 1 1 180 0 1
-refdes=SGND
-}
-C 46700 46600 1 180 0 in-1.sym
-{
-T 46700 46300 5 10 0 0 180 0 1
-device=INPUT
-T 46600 46700 5 10 1 1 180 0 1
-refdes=SVCC
-}
-C 42300 45700 1 0 0 connector4-1.sym
-{
-T 44100 46600 5 10 0 0 0 0 1
-device=CONNECTOR_4
-T 42300 47100 5 10 1 1 0 0 1
-refdes=CONN4
-T 42300 45700 5 10 0 0 0 0 1
-footprint=22-23-2041
-T 42300 45700 5 10 0 1 0 0 1
-pn=22-23-2041
-}
-C 46100 45600 1 0 0 out-1.sym
-{
-T 46100 45900 5 10 0 0 0 0 1
-device=OUTPUT
-T 46100 45800 5 10 1 1 0 0 1
-refdes=CH1
-}
-C 46100 44600 1 0 0 out-1.sym
-{
-T 46100 44900 5 10 0 0 0 0 1
-device=OUTPUT
-T 46100 44800 5 10 1 1 0 0 1
-refdes=CH2
-}
-N 44000 46500 46100 46500 4
-N 46100 47800 44100 47800 4
-N 44100 46800 44100 47800 4
-C 44900 45600 1 0 0 resistor-1.sym
-{
-T 45200 46000 5 10 0 0 0 0 1
-device=RESISTOR
-T 45100 45800 5 10 1 1 0 0 1
-refdes=R6
-T 44900 45500 5 10 1 1 0 0 1
-value=500 ohms
-T 44900 45600 5 10 0 0 0 0 1
-footprint=0603
-T 44900 45600 5 10 0 1 0 0 1
-pn=ERJ-3EKF4990V
-}
-C 44900 44600 1 0 0 resistor-1.sym
-{
-T 45200 45000 5 10 0 0 0 0 1
-device=RESISTOR
-T 45100 44800 5 10 1 1 0 0 1
-refdes=R8
-T 44900 44500 5 10 1 1 0 0 1
-value=500 ohms
-T 44900 44600 5 10 0 0 0 0 1
-footprint=0603
-T 44900 44600 5 10 0 1 0 0 1
-pn=ERJ-3EKF4990V
-}
-N 44000 45900 44100 45900 4
-N 44100 44700 44100 45900 4
-N 45800 44700 46100 44700 4
-N 45800 45700 46100 45700 4
-C 44900 46700 1 90 0 capacitor-1.sym
-{
-T 44200 46900 5 10 0 0 90 0 1
-device=CAPACITOR
-T 44400 46900 5 10 1 1 90 0 1
-refdes=C2
-T 44000 46900 5 10 0 0 90 0 1
-symversion=0.1
-T 45100 46700 5 10 1 1 90 0 1
-value=0.1 uF
-T 44900 46700 5 10 0 0 0 0 1
-footprint=0603
-T 44900 46700 5 10 0 0 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-N 44000 46800 44100 46800 4
-N 44900 44700 44100 44700 4
-N 44700 47800 44700 47600 4
-N 44700 46700 44700 46500 4
-C 44900 46100 1 0 0 resistor-1.sym
-{
-T 45200 46500 5 10 0 0 0 0 1
-device=RESISTOR
-T 45100 46300 5 10 1 1 0 0 1
-refdes=R9
-T 44900 46000 5 10 1 1 0 0 1
-value=10 kohms
-T 44900 46100 5 10 0 0 0 0 1
-footprint=0603
-T 44900 46100 5 10 0 1 0 0 1
-pn=SG73S1JTTD103J
-}
-C 44900 45100 1 0 0 resistor-1.sym
-{
-T 45200 45500 5 10 0 0 0 0 1
-device=RESISTOR
-T 45100 45300 5 10 1 1 0 0 1
-refdes=R10
-T 44900 45000 5 10 1 1 0 0 1
-value=10 kohms
-T 44900 45100 5 10 0 0 0 0 1
-footprint=0603
-T 44900 45100 5 10 0 1 0 0 1
-pn=SG73S1JTTD103J
-}
-N 44000 46200 44900 46200 4
-N 44600 46200 44600 45700 4
-N 44600 45700 44900 45700 4
-N 44900 45200 44100 45200 4
-N 45800 46200 45900 46200 4
-N 45900 46200 45900 46500 4
-N 45900 46500 45900 45200 4
-N 45900 45200 45800 45200 4
diff --git a/bbb_cape/schematic/encoder inputs x2.sch b/bbb_cape/schematic/encoder inputs x2.sch
deleted file mode 100644
index f2d82d0..0000000
--- a/bbb_cape/schematic/encoder inputs x2.sch
+++ /dev/null
@@ -1,145 +0,0 @@
-v 20110115 2
-C 37300 45500 1 90 0 in-1.sym
-{
-T 37000 45500 5 10 0 0 90 0 1
-device=INPUT
-T 37000 45500 5 10 1 1 90 0 1
-refdes=SGND
-}
-C 38000 45500 1 90 0 in-1.sym
-{
-T 37700 45500 5 10 0 0 90 0 1
-device=INPUT
-T 37700 45500 5 10 1 1 90 0 1
-refdes=SVCC
-}
-C 43800 48900 1 180 0 AM26LV32E-1.sym
-{
-T 44400 46700 5 10 0 1 180 0 1
-device=AM26LV32E
-T 45200 47200 5 10 0 1 180 0 1
-footprint=TSSOP16
-T 42500 46300 5 10 1 1 180 0 1
-refdes=U4
-T 43800 48900 5 10 0 1 0 0 1
-pn=AM26LV32EIPWR
-}
-C 38100 47800 1 0 0 encoder-input-1.sym
-{
-T 40600 49000 5 10 0 1 0 0 1
-device=encoder-input
-T 39800 48600 5 10 1 1 0 0 1
-refdes=X2
-}
-C 38100 46400 1 0 0 encoder-input-1.sym
-{
-T 40600 47600 5 10 0 1 0 0 1
-device=encoder-input
-T 39800 47200 5 10 1 1 0 0 1
-refdes=X4
-}
-N 37900 46100 37900 48000 4
-N 37900 46600 38100 46600 4
-N 37900 48000 38100 48000 4
-N 37200 46100 37200 48300 4
-N 38100 46900 37200 46900 4
-N 38100 48300 37200 48300 4
-N 40400 48300 40900 48300 4
-N 40900 48300 40900 48700 4
-N 40900 48700 42000 48700 4
-N 40400 48000 41200 48000 4
-N 41200 48000 41200 48100 4
-N 41200 48100 42000 48100 4
-N 40400 46900 40900 46900 4
-N 40900 46900 40900 47500 4
-N 40900 47500 42000 47500 4
-N 40400 46600 41200 46600 4
-N 41200 46600 41200 46900 4
-N 41200 46900 42000 46900 4
-C 45800 48200 1 180 0 in-1.sym
-{
-T 45800 47900 5 10 0 0 180 0 1
-device=INPUT
-T 45800 47900 5 10 1 1 180 0 1
-refdes=DGND
-}
-C 45900 49400 1 180 0 in-1.sym
-{
-T 45900 49100 5 10 0 0 180 0 1
-device=INPUT
-T 45900 49100 5 10 1 1 180 0 1
-refdes=DVCC
-}
-C 44200 46100 1 270 0 out-1.sym
-{
-T 44500 46100 5 10 0 0 270 0 1
-device=OUTPUT
-T 44500 46100 5 10 1 1 270 0 1
-refdes=OUT0
-}
-C 44700 46100 1 270 0 out-1.sym
-{
-T 45000 46100 5 10 0 0 270 0 1
-device=OUTPUT
-T 45000 46100 5 10 1 1 270 0 1
-refdes=OUT1
-}
-C 45200 46100 1 270 0 out-1.sym
-{
-T 45500 46100 5 10 0 0 270 0 1
-device=OUTPUT
-T 45500 46100 5 10 1 1 270 0 1
-refdes=OUT2
-}
-C 45700 46100 1 270 0 out-1.sym
-{
-T 46000 46100 5 10 0 0 270 0 1
-device=OUTPUT
-T 46000 46100 5 10 1 1 270 0 1
-refdes=OUT3
-}
-N 43800 46600 44300 46600 4
-N 44300 46600 44300 46100 4
-N 43800 48100 45200 48100 4
-N 44600 48100 44600 48400 4
-N 44600 48400 43800 48400 4
-N 43800 47800 44100 47800 4
-N 44100 47800 44100 49300 4
-N 43800 46900 44800 46900 4
-N 44800 46900 44800 46100 4
-N 43800 47200 45300 47200 4
-N 45300 47200 45300 46100 4
-N 43800 47500 45800 47500 4
-N 45800 47500 45800 46100 4
-C 39400 49100 1 0 0 in-1.sym
-{
-T 39400 49400 5 10 0 0 0 0 1
-device=INPUT
-T 39400 49400 5 10 1 1 0 0 1
-refdes=DIFFA
-}
-N 40000 49200 41600 49200 4
-N 41600 49200 41600 46600 4
-N 41600 46600 42000 46600 4
-N 42000 47200 41600 47200 4
-N 42000 47800 41600 47800 4
-N 42000 48400 41600 48400 4
-C 45300 48200 1 90 0 capacitor-1.sym
-{
-T 44600 48400 5 10 0 0 90 0 1
-device=CAPACITOR
-T 44900 48400 5 10 1 1 90 0 1
-refdes=C1
-T 44400 48400 5 10 0 0 90 0 1
-symversion=0.1
-T 45300 48200 5 10 0 0 90 0 1
-footprint=0603
-T 45500 48400 5 10 1 1 90 0 1
-value=0.1 uF
-T 45300 48200 5 10 0 0 0 0 1
-pn=VJ0603Y104JXJPW1BC
-}
-N 44100 49300 45300 49300 4
-N 45100 49100 45100 49300 4
-N 44100 48700 43800 48700 4
-N 45100 48200 45100 48100 4
diff --git a/bbb_cape/schematic/gafrc b/bbb_cape/schematic/gafrc
deleted file mode 100644
index 149e5a2..0000000
--- a/bbb_cape/schematic/gafrc
+++ /dev/null
@@ -1,2 +0,0 @@
-(component-library "./symbols" "971 Symbols")
-(source-library ".")
diff --git a/bbb_cape/schematic/generate_mouser_bom.rb b/bbb_cape/schematic/generate_mouser_bom.rb
deleted file mode 100755
index 2057e15..0000000
--- a/bbb_cape/schematic/generate_mouser_bom.rb
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/usr/bin/env ruby
-
-# This generates something designed to be copied into Mouser's BOM creation
-# copy/paste box. It turns out that it's usually easier to just manually add
-# everything to your cart with the "EZBuy" thingie, but it's still a reasonable
-# format.
-#
-# Usage: generate_mouser_bom.rb FILE [COPIES]
-
-lines = File.open(ARGV[0]) do |f|
-  lines = f.readlines
-  lines.shift
-  lines.collect do |line|
-    line.split(', ')
-  end
-end
-
-$parts = {}
-
-def print_part(pn_string)
-	pn = pn_string.intern
-	if $parts[pn]
-		$parts[pn] = $parts[pn] + 1
-	else
-		$parts[pn] = 1
-	end
-end
-
-lines.each do |line|
-	pn = line[4]
-	if pn.index(';')
-		parts = pn.split('; ')
-		parts.each do |part_string|
-			part = part_string.match(/(.+) x([0-9]+)?/)
-			if part
-				name = part[1]
-				number = part[2]
-				number.to_i.times do
-					print_part name
-				end
-			else
-				print_part part_string
-			end
-		end
-	else
-		print_part pn unless pn.empty?
-	end
-end
-
-times = (ARGV[1] || 1).to_i
-$parts.each do |pn, number|
-	puts "#{pn}|#{number * times}"
-end
diff --git a/bbb_cape/schematic/gerbers/20131204/cape.bottom.gbr b/bbb_cape/schematic/gerbers/20131204/cape.bottom.gbr
deleted file mode 100644
index 7a80bff..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.bottom.gbr
+++ /dev/null
@@ -1,4398 +0,0 @@
-G04 start of page 5 for group 3 idx 3 *

-G04 Title: 971 BBB Cape, bottom *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Thu Dec  5 05:46:54 2013 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNBOTTOM*%

-%ADD247C,0.0350*%

-%ADD246C,0.0600*%

-%ADD245C,0.0200*%

-%ADD244C,0.0360*%

-%ADD243R,0.0345X0.0345*%

-%ADD242R,0.1220X0.1220*%

-%ADD241R,0.0560X0.0560*%

-%ADD240R,0.0512X0.0512*%

-%ADD239R,0.0180X0.0180*%

-%ADD238R,0.0130X0.0130*%

-%ADD237R,0.0295X0.0295*%

-%ADD236C,0.2100*%

-%ADD235C,0.0660*%

-%ADD234C,0.2200*%

-%ADD233C,0.1830*%

-%ADD232C,0.0650*%

-%ADD231C,0.0480*%

-%ADD230C,0.0380*%

-%ADD229C,0.0500*%

-%ADD228C,0.0250*%

-%ADD227C,0.0080*%

-%ADD226C,0.0100*%

-%ADD225C,0.0001*%

-G54D225*G36*

-X122941Y305000D02*Y331500D01*

-X92941D01*

-Y360000D01*

-X156941D01*

-Y342500D01*

-X130941D01*

-Y305000D01*

-X122941D01*

-G37*

-G36*

-X133441Y318000D02*Y340000D01*

-X155941D01*

-Y318000D01*

-X133441D01*

-G37*

-G36*

-X253098Y217146D02*X261941Y208303D01*

-Y201500D01*

-X253098D01*

-Y209121D01*

-X253218Y209223D01*

-X253402Y209439D01*

-X253550Y209680D01*

-X253658Y209942D01*

-X253724Y210218D01*

-X253741Y210500D01*

-X253724Y210782D01*

-X253658Y211058D01*

-X253550Y211320D01*

-X253402Y211561D01*

-X253218Y211777D01*

-X253098Y211879D01*

-Y217146D01*

-G37*

-G36*

-Y225646D02*X261941Y216803D01*

-Y215697D01*

-X253098Y224540D01*

-Y225646D01*

-G37*

-G36*

-Y230255D02*X261941Y221412D01*

-Y220197D01*

-X253098Y229040D01*

-Y230255D01*

-G37*

-G36*

-Y247050D02*X261941D01*

-Y224806D01*

-X253098Y233649D01*

-Y247050D01*

-G37*

-G36*

-Y264380D02*X261941D01*

-Y256200D01*

-X253098D01*

-Y259780D01*

-X253101Y259780D01*

-X253423Y259805D01*

-X253736Y259880D01*

-X254035Y260004D01*

-X254310Y260172D01*

-X254555Y260382D01*

-X254765Y260627D01*

-X254933Y260902D01*

-X255057Y261201D01*

-X255132Y261514D01*

-X255151Y261836D01*

-X255132Y262158D01*

-X255057Y262471D01*

-X254933Y262770D01*

-X254765Y263045D01*

-X254555Y263290D01*

-X254310Y263500D01*

-X254035Y263668D01*

-X253736Y263792D01*

-X253423Y263867D01*

-X253101Y263892D01*

-X253098Y263892D01*

-Y264380D01*

-G37*

-G36*

-Y270771D02*X261941D01*

-Y270656D01*

-X261816Y270604D01*

-X261541Y270436D01*

-X261296Y270226D01*

-X261086Y269981D01*

-X260918Y269706D01*

-X260794Y269407D01*

-X260719Y269094D01*

-X260694Y268772D01*

-X260719Y268450D01*

-X260794Y268137D01*

-X260918Y267838D01*

-X261086Y267563D01*

-X261296Y267318D01*

-X261541Y267108D01*

-X261816Y266940D01*

-X261941Y266888D01*

-Y266780D01*

-X253098D01*

-Y270771D01*

-G37*

-G36*

-Y273875D02*X261941D01*

-Y273171D01*

-X253098D01*

-Y273875D01*

-G37*

-G36*

-Y279016D02*X254239Y277875D01*

-X253098D01*

-Y279016D01*

-G37*

-G36*

-X239299Y247050D02*X253098D01*

-Y233649D01*

-X248741Y238006D01*

-X248724Y238282D01*

-X248658Y238558D01*

-X248550Y238820D01*

-X248402Y239061D01*

-X248218Y239277D01*

-X248002Y239461D01*

-X247761Y239609D01*

-X247499Y239717D01*

-X247223Y239783D01*

-X246941Y239806D01*

-X246659Y239783D01*

-X246383Y239717D01*

-X246121Y239609D01*

-X245880Y239461D01*

-X245664Y239277D01*

-X245480Y239061D01*

-X245332Y238820D01*

-X245224Y238558D01*

-X245158Y238282D01*

-X245135Y238000D01*

-X245158Y237718D01*

-X245224Y237442D01*

-X245332Y237180D01*

-X245480Y236939D01*

-X245664Y236723D01*

-X245880Y236539D01*

-X246121Y236391D01*

-X246383Y236283D01*

-X246659Y236217D01*

-X246941Y236194D01*

-X247143Y236210D01*

-X253098Y230255D01*

-Y229040D01*

-X252735Y229403D01*

-X252741Y229500D01*

-X252724Y229782D01*

-X252658Y230058D01*

-X252550Y230320D01*

-X252402Y230561D01*

-X252218Y230777D01*

-X252002Y230961D01*

-X251761Y231109D01*

-X251499Y231217D01*

-X251223Y231283D01*

-X250941Y231306D01*

-X250659Y231283D01*

-X250383Y231217D01*

-X250121Y231109D01*

-X249880Y230961D01*

-X249664Y230777D01*

-X249480Y230561D01*

-X249332Y230320D01*

-X249224Y230058D01*

-X249158Y229782D01*

-X249135Y229500D01*

-X249158Y229218D01*

-X249224Y228942D01*

-X249332Y228680D01*

-X249480Y228439D01*

-X249664Y228223D01*

-X249880Y228039D01*

-X250121Y227891D01*

-X250383Y227783D01*

-X250659Y227717D01*

-X250941Y227694D01*

-X251042Y227702D01*

-X253098Y225646D01*

-Y224540D01*

-X248235Y229403D01*

-X248241Y229500D01*

-X248224Y229782D01*

-X248158Y230058D01*

-X248050Y230320D01*

-X247902Y230561D01*

-X247718Y230777D01*

-X247502Y230961D01*

-X247261Y231109D01*

-X246999Y231217D01*

-X246723Y231283D01*

-X246441Y231306D01*

-X246159Y231283D01*

-X245883Y231217D01*

-X245621Y231109D01*

-X245380Y230961D01*

-X245164Y230777D01*

-X244980Y230561D01*

-X244832Y230320D01*

-X244724Y230058D01*

-X244658Y229782D01*

-X244635Y229500D01*

-X244658Y229218D01*

-X244724Y228942D01*

-X244743Y228895D01*

-X244235Y229403D01*

-X244241Y229500D01*

-X244224Y229782D01*

-X244158Y230058D01*

-X244050Y230320D01*

-X243902Y230561D01*

-X243718Y230777D01*

-X243502Y230961D01*

-X243261Y231109D01*

-X242999Y231217D01*

-X242723Y231283D01*

-X242441Y231306D01*

-X242159Y231283D01*

-X241883Y231217D01*

-X241621Y231109D01*

-X241380Y230961D01*

-X241164Y230777D01*

-X240980Y230561D01*

-X240832Y230320D01*

-X240724Y230058D01*

-X240658Y229782D01*

-X240635Y229500D01*

-X240658Y229218D01*

-X240724Y228942D01*

-X240832Y228680D01*

-X240980Y228439D01*

-X241164Y228223D01*

-X241380Y228039D01*

-X241621Y227891D01*

-X241883Y227783D01*

-X242159Y227717D01*

-X242441Y227694D01*

-X242542Y227702D01*

-X253098Y217146D01*

-Y211879D01*

-X253002Y211961D01*

-X252761Y212109D01*

-X252499Y212217D01*

-X252223Y212283D01*

-X251941Y212306D01*

-X251659Y212283D01*

-X251383Y212217D01*

-X251121Y212109D01*

-X250880Y211961D01*

-X250664Y211777D01*

-X250480Y211561D01*

-X250332Y211320D01*

-X250224Y211058D01*

-X250158Y210782D01*

-X250135Y210500D01*

-X250158Y210218D01*

-X250224Y209942D01*

-X250332Y209680D01*

-X250480Y209439D01*

-X250664Y209223D01*

-X250880Y209039D01*

-X251121Y208891D01*

-X251383Y208783D01*

-X251659Y208717D01*

-X251941Y208694D01*

-X252223Y208717D01*

-X252499Y208783D01*

-X252761Y208891D01*

-X253002Y209039D01*

-X253098Y209121D01*

-Y201500D01*

-X245672D01*

-X245724Y201718D01*

-X245741Y202000D01*

-X245724Y202282D01*

-X245658Y202558D01*

-X245550Y202820D01*

-X245402Y203061D01*

-X245218Y203277D01*

-X245002Y203461D01*

-X244761Y203609D01*

-X244499Y203717D01*

-X244223Y203783D01*

-X243941Y203806D01*

-X243659Y203783D01*

-X243383Y203717D01*

-X243121Y203609D01*

-X242880Y203461D01*

-X242664Y203277D01*

-X242480Y203061D01*

-X242332Y202820D01*

-X242224Y202558D01*

-X242158Y202282D01*

-X242135Y202000D01*

-X242158Y201718D01*

-X242210Y201500D01*

-X239299D01*

-Y247050D01*

-G37*

-G36*

-Y264380D02*X253098D01*

-Y263892D01*

-X252779Y263867D01*

-X252466Y263792D01*

-X252167Y263668D01*

-X251892Y263500D01*

-X251647Y263290D01*

-X251437Y263045D01*

-X251269Y262770D01*

-X251145Y262471D01*

-X251070Y262158D01*

-X251045Y261836D01*

-X251070Y261514D01*

-X251145Y261201D01*

-X251269Y260902D01*

-X251437Y260627D01*

-X251647Y260382D01*

-X251892Y260172D01*

-X252167Y260004D01*

-X252466Y259880D01*

-X252779Y259805D01*

-X253098Y259780D01*

-Y256200D01*

-X239299D01*

-Y260179D01*

-X239302Y260179D01*

-X239624Y260204D01*

-X239937Y260279D01*

-X240236Y260403D01*

-X240511Y260571D01*

-X240756Y260781D01*

-X240966Y261026D01*

-X241134Y261301D01*

-X241258Y261600D01*

-X241333Y261913D01*

-X241352Y262235D01*

-X241333Y262557D01*

-X241258Y262870D01*

-X241134Y263169D01*

-X240966Y263444D01*

-X240756Y263689D01*

-X240511Y263899D01*

-X240236Y264067D01*

-X239937Y264191D01*

-X239624Y264266D01*

-X239302Y264291D01*

-X239299Y264291D01*

-Y264380D01*

-G37*

-G36*

-Y270771D02*X253098D01*

-Y266780D01*

-X239299D01*

-Y270771D01*

-G37*

-G36*

-Y273875D02*X253098D01*

-Y273171D01*

-X239299D01*

-Y273875D01*

-G37*

-G36*

-Y277130D02*X239330Y277103D01*

-X239571Y276955D01*

-X239833Y276847D01*

-X240109Y276781D01*

-X240391Y276758D01*

-X240673Y276781D01*

-X240949Y276847D01*

-X241211Y276955D01*

-X241452Y277103D01*

-X241668Y277287D01*

-X241852Y277503D01*

-X242000Y277744D01*

-X242108Y278006D01*

-X242174Y278282D01*

-X242191Y278564D01*

-X242174Y278846D01*

-X242108Y279122D01*

-X242000Y279384D01*

-X241852Y279625D01*

-X241668Y279841D01*

-X241452Y280025D01*

-X241211Y280173D01*

-X240949Y280281D01*

-X240673Y280347D01*

-X240391Y280370D01*

-X240290Y280362D01*

-X239299Y281353D01*

-Y289533D01*

-X248871Y279961D01*

-X248902Y279925D01*

-X249045Y279802D01*

-X249108Y279764D01*

-X249207Y279703D01*

-X249279Y279674D01*

-X249381Y279631D01*

-X249565Y279587D01*

-X249565Y279587D01*

-X249753Y279572D01*

-X249800Y279576D01*

-X250553D01*

-X250554Y279576D01*

-X250554Y279576D01*

-X252538D01*

-X253098Y279016D01*

-Y277875D01*

-X248887D01*

-X247586Y279176D01*

-X247588Y279186D01*

-X247607Y279508D01*

-X247588Y279830D01*

-X247513Y280143D01*

-X247389Y280442D01*

-X247221Y280717D01*

-X247011Y280962D01*

-X246766Y281172D01*

-X246491Y281340D01*

-X246192Y281464D01*

-X245879Y281539D01*

-X245557Y281564D01*

-X245235Y281539D01*

-X244922Y281464D01*

-X244623Y281340D01*

-X244348Y281172D01*

-X244103Y280962D01*

-X243893Y280717D01*

-X243725Y280442D01*

-X243601Y280143D01*

-X243526Y279830D01*

-X243501Y279508D01*

-X243526Y279186D01*

-X243601Y278873D01*

-X243725Y278574D01*

-X243893Y278299D01*

-X244103Y278054D01*

-X244348Y277844D01*

-X244623Y277676D01*

-X244922Y277552D01*

-X245235Y277477D01*

-X245557Y277452D01*

-X245879Y277477D01*

-X245889Y277479D01*

-X247093Y276275D01*

-X239299D01*

-Y277130D01*

-G37*

-G36*

-Y281353D02*X231641Y289011D01*

-Y290500D01*

-X238332D01*

-X239299Y289533D01*

-Y281353D01*

-G37*

-G36*

-X236438Y247050D02*X239299D01*

-Y201500D01*

-X236845D01*

-X236474Y201589D01*

-X236438Y201592D01*

-Y233695D01*

-X236441Y233694D01*

-X236723Y233717D01*

-X236999Y233783D01*

-X237261Y233891D01*

-X237502Y234039D01*

-X237718Y234223D01*

-X237902Y234439D01*

-X238050Y234680D01*

-X238158Y234942D01*

-X238224Y235218D01*

-X238241Y235500D01*

-X238224Y235782D01*

-X238158Y236058D01*

-X238050Y236320D01*

-X237902Y236561D01*

-X237718Y236777D01*

-X237502Y236961D01*

-X237261Y237109D01*

-X236999Y237217D01*

-X236723Y237283D01*

-X236441Y237306D01*

-X236438Y237305D01*

-Y247050D01*

-G37*

-G36*

-X224438Y247503D02*X224621Y247391D01*

-X224883Y247283D01*

-X225159Y247217D01*

-X225441Y247194D01*

-X225723Y247217D01*

-X225999Y247283D01*

-X226261Y247391D01*

-X226502Y247539D01*

-X226718Y247723D01*

-X226902Y247939D01*

-X227050Y248180D01*

-X227158Y248442D01*

-X227224Y248718D01*

-X227229Y248800D01*

-X230371D01*

-X230159Y248783D01*

-X229883Y248717D01*

-X229621Y248609D01*

-X229380Y248461D01*

-X229164Y248277D01*

-X228980Y248061D01*

-X228832Y247820D01*

-X228724Y247558D01*

-X228658Y247282D01*

-X228635Y247000D01*

-X228658Y246718D01*

-X228724Y246442D01*

-X228832Y246180D01*

-X228980Y245939D01*

-X229164Y245723D01*

-X229380Y245539D01*

-X229621Y245391D01*

-X229883Y245283D01*

-X230159Y245217D01*

-X230441Y245194D01*

-X230723Y245217D01*

-X230999Y245283D01*

-X231261Y245391D01*

-X231502Y245539D01*

-X231718Y245723D01*

-X231902Y245939D01*

-X232050Y246180D01*

-X232158Y246442D01*

-X232224Y246718D01*

-X232241Y247000D01*

-X232238Y247050D01*

-X236438D01*

-Y237305D01*

-X236159Y237283D01*

-X235883Y237217D01*

-X235621Y237109D01*

-X235380Y236961D01*

-X235164Y236777D01*

-X234980Y236561D01*

-X234832Y236320D01*

-X234724Y236058D01*

-X234658Y235782D01*

-X234635Y235500D01*

-X234658Y235218D01*

-X234724Y234942D01*

-X234832Y234680D01*

-X234980Y234439D01*

-X235164Y234223D01*

-X235380Y234039D01*

-X235621Y233891D01*

-X235883Y233783D01*

-X236159Y233717D01*

-X236438Y233695D01*

-Y201592D01*

-X235799Y201642D01*

-X235124Y201589D01*

-X234753Y201500D01*

-X226845D01*

-X226474Y201589D01*

-X225799Y201642D01*

-X225124Y201589D01*

-X224753Y201500D01*

-X224438D01*

-Y218770D01*

-X224659Y218717D01*

-X224941Y218694D01*

-X225223Y218717D01*

-X225499Y218783D01*

-X225761Y218891D01*

-X226002Y219039D01*

-X226218Y219223D01*

-X226402Y219439D01*

-X226550Y219680D01*

-X226658Y219942D01*

-X226724Y220218D01*

-X226741Y220500D01*

-X226724Y220782D01*

-X226658Y221058D01*

-X226550Y221320D01*

-X226402Y221561D01*

-X226218Y221777D01*

-X226002Y221961D01*

-X225761Y222109D01*

-X225499Y222217D01*

-X225223Y222283D01*

-X224941Y222306D01*

-X224659Y222283D01*

-X224438Y222230D01*

-Y225003D01*

-X224621Y224891D01*

-X224883Y224783D01*

-X225159Y224717D01*

-X225441Y224694D01*

-X225723Y224717D01*

-X225999Y224783D01*

-X226261Y224891D01*

-X226502Y225039D01*

-X226718Y225223D01*

-X226902Y225439D01*

-X227050Y225680D01*

-X227158Y225942D01*

-X227224Y226218D01*

-X227241Y226500D01*

-X227224Y226782D01*

-X227158Y227058D01*

-X227050Y227320D01*

-X226902Y227561D01*

-X226718Y227777D01*

-X226502Y227961D01*

-X226261Y228109D01*

-X225999Y228217D01*

-X225723Y228283D01*

-X225441Y228306D01*

-X225159Y228283D01*

-X224883Y228217D01*

-X224621Y228109D01*

-X224438Y227997D01*

-Y233770D01*

-X224659Y233717D01*

-X224941Y233694D01*

-X225223Y233717D01*

-X225499Y233783D01*

-X225761Y233891D01*

-X226002Y234039D01*

-X226218Y234223D01*

-X226402Y234439D01*

-X226550Y234680D01*

-X226658Y234942D01*

-X226724Y235218D01*

-X226741Y235500D01*

-X226724Y235782D01*

-X226658Y236058D01*

-X226550Y236320D01*

-X226402Y236561D01*

-X226218Y236777D01*

-X226002Y236961D01*

-X225761Y237109D01*

-X225499Y237217D01*

-X225223Y237283D01*

-X224941Y237306D01*

-X224659Y237283D01*

-X224438Y237230D01*

-Y242195D01*

-X224441Y242194D01*

-X224723Y242217D01*

-X224999Y242283D01*

-X225261Y242391D01*

-X225502Y242539D01*

-X225718Y242723D01*

-X225902Y242939D01*

-X226050Y243180D01*

-X226158Y243442D01*

-X226224Y243718D01*

-X226241Y244000D01*

-X226224Y244282D01*

-X226158Y244558D01*

-X226050Y244820D01*

-X225902Y245061D01*

-X225718Y245277D01*

-X225502Y245461D01*

-X225261Y245609D01*

-X224999Y245717D01*

-X224723Y245783D01*

-X224441Y245806D01*

-X224438Y245805D01*

-Y247503D01*

-G37*

-G36*

-Y264380D02*X239299D01*

-Y264291D01*

-X238980Y264266D01*

-X238667Y264191D01*

-X238368Y264067D01*

-X238093Y263899D01*

-X237848Y263689D01*

-X237638Y263444D01*

-X237470Y263169D01*

-X237346Y262870D01*

-X237271Y262557D01*

-X237246Y262235D01*

-X237271Y261913D01*

-X237346Y261600D01*

-X237470Y261301D01*

-X237638Y261026D01*

-X237848Y260781D01*

-X238093Y260571D01*

-X238368Y260403D01*

-X238667Y260279D01*

-X238980Y260204D01*

-X239299Y260179D01*

-Y256200D01*

-X224438D01*

-Y264380D01*

-G37*

-G36*

-Y270771D02*X239299D01*

-Y266780D01*

-X224438D01*

-Y270771D01*

-G37*

-G36*

-Y273875D02*X239299D01*

-Y273171D01*

-X224438D01*

-Y273875D01*

-G37*

-G36*

-Y290500D02*X229241D01*

-Y288561D01*

-X229237Y288514D01*

-X229252Y288326D01*

-X229296Y288142D01*

-X229368Y287968D01*

-X229467Y287806D01*

-X229467Y287806D01*

-X229590Y287663D01*

-X229626Y287632D01*

-X238593Y278665D01*

-X238585Y278564D01*

-X238608Y278282D01*

-X238674Y278006D01*

-X238782Y277744D01*

-X238930Y277503D01*

-X239114Y277287D01*

-X239299Y277130D01*

-Y276275D01*

-X224438D01*

-Y290500D01*

-G37*

-G36*

-X220438Y252921D02*X220607Y252723D01*

-X220823Y252539D01*

-X221064Y252391D01*

-X221326Y252283D01*

-X221602Y252217D01*

-X221884Y252194D01*

-X222166Y252217D01*

-X222442Y252283D01*

-X222682Y252382D01*

-X222658Y252282D01*

-X222635Y252000D01*

-X222658Y251718D01*

-X222724Y251442D01*

-X222832Y251180D01*

-X222980Y250939D01*

-X223164Y250723D01*

-X223380Y250539D01*

-X223621Y250391D01*

-X223883Y250283D01*

-X224121Y250226D01*

-X223980Y250061D01*

-X223832Y249820D01*

-X223724Y249558D01*

-X223658Y249282D01*

-X223635Y249000D01*

-X223658Y248718D01*

-X223724Y248442D01*

-X223832Y248180D01*

-X223980Y247939D01*

-X224164Y247723D01*

-X224380Y247539D01*

-X224438Y247503D01*

-Y245805D01*

-X224159Y245783D01*

-X223883Y245717D01*

-X223621Y245609D01*

-X223380Y245461D01*

-X223164Y245277D01*

-X222980Y245061D01*

-X222832Y244820D01*

-X222724Y244558D01*

-X222658Y244282D01*

-X222635Y244000D01*

-X222658Y243718D01*

-X222724Y243442D01*

-X222832Y243180D01*

-X222980Y242939D01*

-X223164Y242723D01*

-X223380Y242539D01*

-X223621Y242391D01*

-X223883Y242283D01*

-X224159Y242217D01*

-X224438Y242195D01*

-Y237230D01*

-X224383Y237217D01*

-X224121Y237109D01*

-X223880Y236961D01*

-X223664Y236777D01*

-X223480Y236561D01*

-X223332Y236320D01*

-X223224Y236058D01*

-X223158Y235782D01*

-X223135Y235500D01*

-X223158Y235218D01*

-X223224Y234942D01*

-X223332Y234680D01*

-X223480Y234439D01*

-X223664Y234223D01*

-X223880Y234039D01*

-X224121Y233891D01*

-X224383Y233783D01*

-X224438Y233770D01*

-Y227997D01*

-X224380Y227961D01*

-X224164Y227777D01*

-X223980Y227561D01*

-X223832Y227320D01*

-X223724Y227058D01*

-X223658Y226782D01*

-X223635Y226500D01*

-X223658Y226218D01*

-X223724Y225942D01*

-X223832Y225680D01*

-X223980Y225439D01*

-X224164Y225223D01*

-X224380Y225039D01*

-X224438Y225003D01*

-Y222230D01*

-X224383Y222217D01*

-X224121Y222109D01*

-X223880Y221961D01*

-X223664Y221777D01*

-X223480Y221561D01*

-X223332Y221320D01*

-X223224Y221058D01*

-X223158Y220782D01*

-X223135Y220500D01*

-X223158Y220218D01*

-X223224Y219942D01*

-X223332Y219680D01*

-X223480Y219439D01*

-X223664Y219223D01*

-X223880Y219039D01*

-X224121Y218891D01*

-X224383Y218783D01*

-X224438Y218770D01*

-Y201500D01*

-X220438D01*

-Y213195D01*

-X220441Y213194D01*

-X220723Y213217D01*

-X220999Y213283D01*

-X221261Y213391D01*

-X221502Y213539D01*

-X221718Y213723D01*

-X221902Y213939D01*

-X222050Y214180D01*

-X222158Y214442D01*

-X222224Y214718D01*

-X222241Y215000D01*

-X222224Y215282D01*

-X222158Y215558D01*

-X222050Y215820D01*

-X221902Y216061D01*

-X221718Y216277D01*

-X221502Y216461D01*

-X221261Y216609D01*

-X220999Y216717D01*

-X220723Y216783D01*

-X220441Y216806D01*

-X220438Y216805D01*

-Y252921D01*

-G37*

-G36*

-Y263799D02*X220447Y263797D01*

-X220729Y263774D01*

-X221011Y263797D01*

-X221287Y263863D01*

-X221549Y263971D01*

-X221790Y264119D01*

-X222006Y264303D01*

-X222071Y264380D01*

-X224438D01*

-Y256200D01*

-X222931D01*

-X222884Y256204D01*

-X222696Y256189D01*

-X222512Y256145D01*

-X222338Y256073D01*

-X222176Y255974D01*

-X222176Y255974D01*

-X222033Y255851D01*

-X222002Y255815D01*

-X221985Y255798D01*

-X221884Y255806D01*

-X221602Y255783D01*

-X221326Y255717D01*

-X221064Y255609D01*

-X220823Y255461D01*

-X220607Y255277D01*

-X220438Y255079D01*

-Y257243D01*

-X220441Y257243D01*

-X220794Y257271D01*

-X221138Y257354D01*

-X221466Y257489D01*

-X221768Y257674D01*

-X222037Y257904D01*

-X222267Y258173D01*

-X222452Y258475D01*

-X222587Y258803D01*

-X222670Y259147D01*

-X222698Y259500D01*

-X222670Y259853D01*

-X222587Y260197D01*

-X222452Y260525D01*

-X222267Y260827D01*

-X222032Y261091D01*

-X220438Y262685D01*

-Y263799D01*

-G37*

-G36*

-Y270771D02*X223941D01*

-X223941Y270771D01*

-X224438D01*

-Y266780D01*

-X222071D01*

-X222006Y266857D01*

-X221790Y267041D01*

-X221549Y267189D01*

-X221287Y267297D01*

-X221011Y267363D01*

-X220729Y267386D01*

-X220447Y267363D01*

-X220438Y267361D01*

-Y270771D01*

-G37*

-G36*

-Y274426D02*X220617Y274252D01*

-X220642Y274224D01*

-X220785Y274101D01*

-X220795Y274096D01*

-X220801Y274090D01*

-X220874Y274047D01*

-X220947Y274002D01*

-X220955Y273999D01*

-X220964Y273994D01*

-X221043Y273963D01*

-X221121Y273930D01*

-X221130Y273928D01*

-X221139Y273924D01*

-X221222Y273906D01*

-X221305Y273886D01*

-X221313Y273886D01*

-X221324Y273883D01*

-X221512Y273871D01*

-X221550Y273875D01*

-X224438D01*

-Y273171D01*

-X223941D01*

-X223941Y273171D01*

-X221111D01*

-X221050Y273320D01*

-X220902Y273561D01*

-X220718Y273777D01*

-X220502Y273961D01*

-X220438Y274000D01*

-Y274426D01*

-G37*

-G36*

-Y290500D02*X224438D01*

-Y276275D01*

-X221979D01*

-X220438Y277767D01*

-Y290500D01*

-G37*

-G36*

-Y255079D02*X220423Y255061D01*

-X220275Y254820D01*

-X220167Y254558D01*

-X220101Y254282D01*

-X220078Y254000D01*

-X220101Y253718D01*

-X220167Y253442D01*

-X220275Y253180D01*

-X220423Y252939D01*

-X220438Y252921D01*

-Y216805D01*

-X220159Y216783D01*

-X219883Y216717D01*

-X219621Y216609D01*

-X219380Y216461D01*

-X219164Y216277D01*

-X218980Y216061D01*

-X218832Y215820D01*

-X218724Y215558D01*

-X218658Y215282D01*

-X218635Y215000D01*

-X218658Y214718D01*

-X218724Y214442D01*

-X218832Y214180D01*

-X218980Y213939D01*

-X219164Y213723D01*

-X219380Y213539D01*

-X219621Y213391D01*

-X219883Y213283D01*

-X220159Y213217D01*

-X220438Y213195D01*

-Y201500D01*

-X216845D01*

-X216474Y201589D01*

-X215799Y201642D01*

-X215124Y201589D01*

-X214753Y201500D01*

-X212938D01*

-Y218913D01*

-X214276Y218914D01*

-X214506Y218969D01*

-X214724Y219059D01*

-X214925Y219183D01*

-X215105Y219336D01*

-X215258Y219516D01*

-X215382Y219717D01*

-X215472Y219935D01*

-X215527Y220165D01*

-X215541Y220400D01*

-X215527Y232835D01*

-X215472Y233065D01*

-X215382Y233283D01*

-X215258Y233484D01*

-X215105Y233664D01*

-X214925Y233817D01*

-X214724Y233941D01*

-X214506Y234031D01*

-X214276Y234086D01*

-X214041Y234100D01*

-X212938Y234099D01*

-Y236195D01*

-X212941Y236194D01*

-X213223Y236217D01*

-X213499Y236283D01*

-X213761Y236391D01*

-X214002Y236539D01*

-X214218Y236723D01*

-X214402Y236939D01*

-X214550Y237180D01*

-X214658Y237442D01*

-X214724Y237718D01*

-X214741Y238000D01*

-X214724Y238282D01*

-X214658Y238558D01*

-X214550Y238820D01*

-X214402Y239061D01*

-X214218Y239277D01*

-X214002Y239461D01*

-X213761Y239609D01*

-X213499Y239717D01*

-X213223Y239783D01*

-X212941Y239806D01*

-X212938Y239805D01*

-Y243308D01*

-X215576Y243314D01*

-X215806Y243369D01*

-X216024Y243459D01*

-X216225Y243583D01*

-X216405Y243736D01*

-X216558Y243916D01*

-X216682Y244117D01*

-X216772Y244335D01*

-X216827Y244565D01*

-X216841Y244800D01*

-X216827Y257235D01*

-X216772Y257465D01*

-X216682Y257683D01*

-X216558Y257884D01*

-X216405Y258064D01*

-X216225Y258217D01*

-X216024Y258341D01*

-X215806Y258431D01*

-X215576Y258486D01*

-X215341Y258500D01*

-X214791Y258499D01*

-Y258957D01*

-X214800Y258957D01*

-X214953Y258994D01*

-X215098Y259054D01*

-X215233Y259136D01*

-X215352Y259239D01*

-X215455Y259358D01*

-X215537Y259493D01*

-X215597Y259638D01*

-X215634Y259791D01*

-X215643Y259948D01*

-X215641Y261043D01*

-X215716D01*

-X218850Y257909D01*

-X219114Y257674D01*

-X219416Y257489D01*

-X219744Y257354D01*

-X220088Y257271D01*

-X220438Y257243D01*

-Y255079D01*

-G37*

-G36*

-X212938Y290500D02*X220438D01*

-Y277767D01*

-X219237Y278931D01*

-X219241Y279000D01*

-X219224Y279282D01*

-X219158Y279558D01*

-X219050Y279820D01*

-X218902Y280061D01*

-X218718Y280277D01*

-X218502Y280461D01*

-X218261Y280609D01*

-X217999Y280717D01*

-X217723Y280783D01*

-X217441Y280806D01*

-X217159Y280783D01*

-X216883Y280717D01*

-X216621Y280609D01*

-X216380Y280461D01*

-X216164Y280277D01*

-X215980Y280061D01*

-X215832Y279820D01*

-X215724Y279558D01*

-X215658Y279282D01*

-X215635Y279000D01*

-X215658Y278718D01*

-X215724Y278442D01*

-X215832Y278180D01*

-X215980Y277939D01*

-X216164Y277723D01*

-X216380Y277539D01*

-X216621Y277391D01*

-X216883Y277283D01*

-X217159Y277217D01*

-X217441Y277194D01*

-X217570Y277205D01*

-X220438Y274426D01*

-Y274000D01*

-X220261Y274109D01*

-X219999Y274217D01*

-X219723Y274283D01*

-X219441Y274306D01*

-X219159Y274283D01*

-X218883Y274217D01*

-X218621Y274109D01*

-X218380Y273961D01*

-X218164Y273777D01*

-X217980Y273561D01*

-X217832Y273320D01*

-X217724Y273058D01*

-X217658Y272782D01*

-X217635Y272500D01*

-X217658Y272218D01*

-X217724Y271942D01*

-X217832Y271680D01*

-X217980Y271439D01*

-X218164Y271223D01*

-X218380Y271039D01*

-X218621Y270891D01*

-X218883Y270783D01*

-X219159Y270717D01*

-X219441Y270694D01*

-X219723Y270717D01*

-X219943Y270769D01*

-X219970Y270767D01*

-X220017Y270771D01*

-X220438D01*

-Y267361D01*

-X220171Y267297D01*

-X219909Y267189D01*

-X219668Y267041D01*

-X219452Y266857D01*

-X219268Y266641D01*

-X219120Y266400D01*

-X219012Y266138D01*

-X218946Y265862D01*

-X218923Y265580D01*

-X218946Y265298D01*

-X219012Y265022D01*

-X219120Y264760D01*

-X219268Y264519D01*

-X219452Y264303D01*

-X219668Y264119D01*

-X219909Y263971D01*

-X220171Y263863D01*

-X220438Y263799D01*

-Y262685D01*

-X218301Y264822D01*

-X218244Y264889D01*

-X217975Y265119D01*

-X217975Y265119D01*

-X217860Y265189D01*

-X217673Y265304D01*

-X217441Y265400D01*

-X217345Y265439D01*

-X217001Y265522D01*

-X216648Y265550D01*

-X216560Y265543D01*

-X215634D01*

-X215634Y266009D01*

-X215597Y266162D01*

-X215537Y266307D01*

-X215455Y266442D01*

-X215352Y266561D01*

-X215233Y266664D01*

-X215098Y266746D01*

-X214953Y266806D01*

-X214800Y266843D01*

-X214643Y266852D01*

-X214334Y266851D01*

-Y267948D01*

-X214341Y268036D01*

-X214313Y268389D01*

-X214313Y268389D01*

-X214230Y268733D01*

-X214095Y269061D01*

-X213910Y269363D01*

-X213680Y269632D01*

-X213613Y269689D01*

-X213268Y270034D01*

-X213266Y270954D01*

-X213229Y271107D01*

-X213169Y271252D01*

-X213087Y271387D01*

-X212984Y271506D01*

-X212938Y271546D01*

-Y290500D01*

-G37*

-G36*

-Y234099D02*X205438Y234094D01*

-Y236498D01*

-X205550Y236680D01*

-X205658Y236942D01*

-X205724Y237218D01*

-X205741Y237500D01*

-X205724Y237782D01*

-X205658Y238058D01*

-X205550Y238320D01*

-X205438Y238502D01*

-Y243311D01*

-X206476Y243314D01*

-X206706Y243369D01*

-X206924Y243459D01*

-X207125Y243583D01*

-X207305Y243736D01*

-X207458Y243916D01*

-X207582Y244117D01*

-X207672Y244335D01*

-X207727Y244565D01*

-X207741Y244800D01*

-X207727Y257235D01*

-X207672Y257465D01*

-X207582Y257683D01*

-X207458Y257884D01*

-X207305Y258064D01*

-X207125Y258217D01*

-X206924Y258341D01*

-X206706Y258431D01*

-X206476Y258486D01*

-X206241Y258500D01*

-X205438Y258498D01*

-Y258953D01*

-X207714Y258957D01*

-X207867Y258994D01*

-X208012Y259054D01*

-X208147Y259136D01*

-X208266Y259239D01*

-X208369Y259358D01*

-X208451Y259493D01*

-X208511Y259638D01*

-X208541Y259763D01*

-X208571Y259638D01*

-X208631Y259493D01*

-X208713Y259358D01*

-X208816Y259239D01*

-X208935Y259136D01*

-X209070Y259054D01*

-X209215Y258994D01*

-X209368Y258957D01*

-X209525Y258948D01*

-X210291Y258949D01*

-Y258488D01*

-X209506Y258486D01*

-X209276Y258431D01*

-X209058Y258341D01*

-X208857Y258217D01*

-X208677Y258064D01*

-X208524Y257884D01*

-X208400Y257683D01*

-X208310Y257465D01*

-X208255Y257235D01*

-X208241Y257000D01*

-X208255Y244565D01*

-X208310Y244335D01*

-X208400Y244117D01*

-X208524Y243916D01*

-X208677Y243736D01*

-X208857Y243583D01*

-X209058Y243459D01*

-X209276Y243369D01*

-X209506Y243314D01*

-X209741Y243300D01*

-X212938Y243308D01*

-Y239805D01*

-X212659Y239783D01*

-X212383Y239717D01*

-X212121Y239609D01*

-X211880Y239461D01*

-X211664Y239277D01*

-X211480Y239061D01*

-X211332Y238820D01*

-X211224Y238558D01*

-X211158Y238282D01*

-X211135Y238000D01*

-X211158Y237718D01*

-X211224Y237442D01*

-X211332Y237180D01*

-X211480Y236939D01*

-X211664Y236723D01*

-X211880Y236539D01*

-X212121Y236391D01*

-X212383Y236283D01*

-X212659Y236217D01*

-X212938Y236195D01*

-Y234099D01*

-G37*

-G36*

-Y201500D02*X210438D01*

-Y210695D01*

-X210441Y210694D01*

-X210723Y210717D01*

-X210999Y210783D01*

-X211261Y210891D01*

-X211502Y211039D01*

-X211718Y211223D01*

-X211902Y211439D01*

-X212050Y211680D01*

-X212158Y211942D01*

-X212224Y212218D01*

-X212241Y212500D01*

-X212224Y212782D01*

-X212158Y213058D01*

-X212050Y213320D01*

-X211902Y213561D01*

-X211718Y213777D01*

-X211502Y213961D01*

-X211261Y214109D01*

-X210999Y214217D01*

-X210723Y214283D01*

-X210441Y214306D01*

-X210438Y214305D01*

-Y218911D01*

-X212938Y218913D01*

-Y201500D01*

-G37*

-G36*

-X210438D02*X206845D01*

-X206474Y201589D01*

-X205799Y201642D01*

-X205438Y201614D01*

-Y218908D01*

-X210438Y218911D01*

-Y214305D01*

-X210159Y214283D01*

-X209883Y214217D01*

-X209621Y214109D01*

-X209380Y213961D01*

-X209164Y213777D01*

-X208980Y213561D01*

-X208832Y213320D01*

-X208724Y213058D01*

-X208658Y212782D01*

-X208635Y212500D01*

-X208658Y212218D01*

-X208724Y211942D01*

-X208832Y211680D01*

-X208980Y211439D01*

-X209164Y211223D01*

-X209380Y211039D01*

-X209621Y210891D01*

-X209883Y210783D01*

-X210159Y210717D01*

-X210438Y210695D01*

-Y201500D01*

-G37*

-G36*

-X205438Y290500D02*X212938D01*

-Y271546D01*

-X212865Y271609D01*

-X212730Y271691D01*

-X212585Y271751D01*

-X212432Y271788D01*

-X212275Y271797D01*

-X209166Y271788D01*

-X209013Y271751D01*

-X208868Y271691D01*

-X208733Y271609D01*

-X208614Y271506D01*

-X208511Y271387D01*

-X208429Y271252D01*

-X208369Y271107D01*

-X208332Y270954D01*

-X208323Y270797D01*

-X208332Y266704D01*

-X208369Y266551D01*

-X208429Y266406D01*

-X208511Y266271D01*

-X208582Y266189D01*

-X208571Y266162D01*

-X208541Y266037D01*

-X208511Y266162D01*

-X208451Y266307D01*

-X208369Y266442D01*

-X208266Y266561D01*

-X208147Y266664D01*

-X208139Y266668D01*

-X208148Y266704D01*

-X208157Y266861D01*

-X208148Y270954D01*

-X208111Y271107D01*

-X208051Y271252D01*

-X207969Y271387D01*

-X207866Y271506D01*

-X207747Y271609D01*

-X207612Y271691D01*

-X207467Y271751D01*

-X207314Y271788D01*

-X207157Y271797D01*

-X205438Y271792D01*

-Y275195D01*

-X205441Y275194D01*

-X205723Y275217D01*

-X205999Y275283D01*

-X206261Y275391D01*

-X206502Y275539D01*

-X206718Y275723D01*

-X206902Y275939D01*

-X207050Y276180D01*

-X207158Y276442D01*

-X207224Y276718D01*

-X207241Y277000D01*

-X207224Y277282D01*

-X207158Y277558D01*

-X207050Y277820D01*

-X206902Y278061D01*

-X206718Y278277D01*

-X206502Y278461D01*

-X206261Y278609D01*

-X205999Y278717D01*

-X205723Y278783D01*

-X205441Y278806D01*

-X205438Y278805D01*

-Y290500D01*

-G37*

-G36*

-Y258498D02*X203441Y258493D01*

-Y258950D01*

-X205438Y258953D01*

-Y258498D01*

-G37*

-G36*

-Y238502D02*X205402Y238561D01*

-X205218Y238777D01*

-X205002Y238961D01*

-X204761Y239109D01*

-X204499Y239217D01*

-X204223Y239283D01*

-X203941Y239306D01*

-X203659Y239283D01*

-X203441Y239231D01*

-Y243307D01*

-X205438Y243311D01*

-Y238502D01*

-G37*

-G36*

-Y234094D02*X203441Y234093D01*

-Y235769D01*

-X203659Y235717D01*

-X203941Y235694D01*

-X204223Y235717D01*

-X204499Y235783D01*

-X204761Y235891D01*

-X205002Y236039D01*

-X205218Y236223D01*

-X205402Y236439D01*

-X205438Y236498D01*

-Y234094D01*

-G37*

-G36*

-Y201614D02*X205124Y201589D01*

-X204753Y201500D01*

-X203441D01*

-Y211002D01*

-X203502Y211039D01*

-X203718Y211223D01*

-X203902Y211439D01*

-X204050Y211680D01*

-X204158Y211942D01*

-X204224Y212218D01*

-X204241Y212500D01*

-X204224Y212782D01*

-X204158Y213058D01*

-X204050Y213320D01*

-X203902Y213561D01*

-X203718Y213777D01*

-X203502Y213961D01*

-X203441Y213998D01*

-Y218907D01*

-X205438Y218908D01*

-Y201614D01*

-G37*

-G36*

-X203441Y290500D02*X205438D01*

-Y278805D01*

-X205159Y278783D01*

-X204883Y278717D01*

-X204621Y278609D01*

-X204380Y278461D01*

-X204164Y278277D01*

-X203980Y278061D01*

-X203832Y277820D01*

-X203724Y277558D01*

-X203658Y277282D01*

-X203635Y277000D01*

-X203658Y276718D01*

-X203724Y276442D01*

-X203832Y276180D01*

-X203980Y275939D01*

-X204164Y275723D01*

-X204380Y275539D01*

-X204621Y275391D01*

-X204883Y275283D01*

-X205159Y275217D01*

-X205438Y275195D01*

-Y271792D01*

-X204048Y271788D01*

-X203895Y271751D01*

-X203750Y271691D01*

-X203615Y271609D01*

-X203496Y271506D01*

-X203441Y271442D01*

-Y290500D01*

-G37*

-G36*

-X198438Y218904D02*X203441Y218907D01*

-Y213998D01*

-X203261Y214109D01*

-X202999Y214217D01*

-X202723Y214283D01*

-X202441Y214306D01*

-X202159Y214283D01*

-X201883Y214217D01*

-X201621Y214109D01*

-X201380Y213961D01*

-X201164Y213777D01*

-X200980Y213561D01*

-X200832Y213320D01*

-X200724Y213058D01*

-X200658Y212782D01*

-X200635Y212500D01*

-X200658Y212218D01*

-X200724Y211942D01*

-X200832Y211680D01*

-X200980Y211439D01*

-X201164Y211223D01*

-X201380Y211039D01*

-X201621Y210891D01*

-X201883Y210783D01*

-X202159Y210717D01*

-X202441Y210694D01*

-X202723Y210717D01*

-X202999Y210783D01*

-X203261Y210891D01*

-X203441Y211002D01*

-Y201500D01*

-X199592D01*

-X199554Y201523D01*

-X199409Y201583D01*

-X199256Y201620D01*

-X199099Y201629D01*

-X198438Y201628D01*

-Y218904D01*

-G37*

-G36*

-Y243892D02*X198458Y243916D01*

-X198582Y244117D01*

-X198672Y244335D01*

-X198727Y244565D01*

-X198741Y244800D01*

-X198727Y257235D01*

-X198672Y257465D01*

-X198582Y257683D01*

-X198458Y257884D01*

-X198438Y257908D01*

-Y260695D01*

-X198441Y260694D01*

-X198723Y260717D01*

-X198999Y260783D01*

-X199261Y260891D01*

-X199502Y261039D01*

-X199718Y261223D01*

-X199902Y261439D01*

-X200050Y261680D01*

-X200158Y261942D01*

-X200224Y262218D01*

-X200241Y262500D01*

-X200224Y262782D01*

-X200158Y263058D01*

-X200050Y263320D01*

-X199902Y263561D01*

-X199718Y263777D01*

-X199502Y263961D01*

-X199261Y264109D01*

-X198999Y264217D01*

-X198723Y264283D01*

-X198441Y264306D01*

-X198438Y264305D01*

-Y267695D01*

-X198441Y267694D01*

-X198723Y267717D01*

-X198999Y267783D01*

-X199261Y267891D01*

-X199502Y268039D01*

-X199718Y268223D01*

-X199902Y268439D01*

-X200050Y268680D01*

-X200158Y268942D01*

-X200224Y269218D01*

-X200241Y269500D01*

-X200224Y269782D01*

-X200158Y270058D01*

-X200050Y270320D01*

-X199902Y270561D01*

-X199718Y270777D01*

-X199502Y270961D01*

-X199261Y271109D01*

-X198999Y271217D01*

-X198723Y271283D01*

-X198441Y271306D01*

-X198438Y271305D01*

-Y290500D01*

-X203441D01*

-Y271442D01*

-X203393Y271387D01*

-X203311Y271252D01*

-X203251Y271107D01*

-X203214Y270954D01*

-X203205Y270797D01*

-X203214Y266844D01*

-X202282Y266843D01*

-X202129Y266806D01*

-X201984Y266746D01*

-X201849Y266664D01*

-X201730Y266561D01*

-X201627Y266442D01*

-X201545Y266307D01*

-X201485Y266162D01*

-X201448Y266009D01*

-X201439Y265852D01*

-X201448Y259791D01*

-X201485Y259638D01*

-X201545Y259493D01*

-X201627Y259358D01*

-X201730Y259239D01*

-X201849Y259136D01*

-X201984Y259054D01*

-X202129Y258994D01*

-X202282Y258957D01*

-X202439Y258948D01*

-X203441Y258950D01*

-Y258493D01*

-X200406Y258486D01*

-X200176Y258431D01*

-X199958Y258341D01*

-X199757Y258217D01*

-X199577Y258064D01*

-X199424Y257884D01*

-X199300Y257683D01*

-X199210Y257465D01*

-X199155Y257235D01*

-X199141Y257000D01*

-X199155Y244565D01*

-X199210Y244335D01*

-X199300Y244117D01*

-X199424Y243916D01*

-X199577Y243736D01*

-X199757Y243583D01*

-X199958Y243459D01*

-X200176Y243369D01*

-X200406Y243314D01*

-X200641Y243300D01*

-X203441Y243307D01*

-Y239231D01*

-X203383Y239217D01*

-X203121Y239109D01*

-X202880Y238961D01*

-X202664Y238777D01*

-X202480Y238561D01*

-X202332Y238320D01*

-X202224Y238058D01*

-X202158Y237782D01*

-X202135Y237500D01*

-X202158Y237218D01*

-X202224Y236942D01*

-X202332Y236680D01*

-X202480Y236439D01*

-X202664Y236223D01*

-X202880Y236039D01*

-X203121Y235891D01*

-X203383Y235783D01*

-X203441Y235769D01*

-Y234093D01*

-X198438Y234090D01*

-Y243892D01*

-G37*

-G36*

-Y257908D02*X198305Y258064D01*

-X198125Y258217D01*

-X197924Y258341D01*

-X197706Y258431D01*

-X197476Y258486D01*

-X197241Y258500D01*

-X191406Y258486D01*

-X191176Y258431D01*

-X190958Y258341D01*

-X190757Y258217D01*

-X190577Y258064D01*

-X190424Y257884D01*

-X190300Y257683D01*

-X190210Y257465D01*

-X190155Y257235D01*

-X190141Y257000D01*

-X190142Y256450D01*

-X188729D01*

-X188641Y256457D01*

-X188288Y256429D01*

-X187944Y256346D01*

-X187616Y256211D01*

-X187314Y256026D01*

-X187314Y256026D01*

-X187045Y255796D01*

-X186988Y255729D01*

-X182012Y250753D01*

-X181945Y250696D01*

-X181938Y250688D01*

-Y256695D01*

-X181941Y256694D01*

-X182223Y256717D01*

-X182499Y256783D01*

-X182761Y256891D01*

-X183002Y257039D01*

-X183218Y257223D01*

-X183402Y257439D01*

-X183550Y257680D01*

-X183658Y257942D01*

-X183724Y258218D01*

-X183741Y258500D01*

-X183724Y258782D01*

-X183658Y259058D01*

-X183550Y259320D01*

-X183402Y259561D01*

-X183218Y259777D01*

-X183002Y259961D01*

-X182761Y260109D01*

-X182499Y260217D01*

-X182223Y260283D01*

-X181941Y260306D01*

-X181938Y260305D01*

-Y290500D01*

-X198438D01*

-Y271305D01*

-X198159Y271283D01*

-X197883Y271217D01*

-X197621Y271109D01*

-X197380Y270961D01*

-X197164Y270777D01*

-X196980Y270561D01*

-X196832Y270320D01*

-X196724Y270058D01*

-X196658Y269782D01*

-X196635Y269500D01*

-X196658Y269218D01*

-X196724Y268942D01*

-X196832Y268680D01*

-X196980Y268439D01*

-X197164Y268223D01*

-X197380Y268039D01*

-X197621Y267891D01*

-X197883Y267783D01*

-X198159Y267717D01*

-X198438Y267695D01*

-Y264305D01*

-X198159Y264283D01*

-X197883Y264217D01*

-X197621Y264109D01*

-X197380Y263961D01*

-X197164Y263777D01*

-X196980Y263561D01*

-X196832Y263320D01*

-X196724Y263058D01*

-X196658Y262782D01*

-X196635Y262500D01*

-X196658Y262218D01*

-X196724Y261942D01*

-X196832Y261680D01*

-X196980Y261439D01*

-X197164Y261223D01*

-X197380Y261039D01*

-X197621Y260891D01*

-X197883Y260783D01*

-X198159Y260717D01*

-X198438Y260695D01*

-Y257908D01*

-G37*

-G36*

-X193938Y218901D02*X198438Y218904D01*

-Y201628D01*

-X193938Y201622D01*

-Y210695D01*

-X193941Y210694D01*

-X194223Y210717D01*

-X194499Y210783D01*

-X194761Y210891D01*

-X195002Y211039D01*

-X195218Y211223D01*

-X195402Y211439D01*

-X195550Y211680D01*

-X195658Y211942D01*

-X195724Y212218D01*

-X195741Y212500D01*

-X195724Y212782D01*

-X195658Y213058D01*

-X195550Y213320D01*

-X195402Y213561D01*

-X195218Y213777D01*

-X195002Y213961D01*

-X194761Y214109D01*

-X194499Y214217D01*

-X194223Y214283D01*

-X193941Y214306D01*

-X193938Y214305D01*

-Y218901D01*

-G37*

-G36*

-Y243305D02*X197476Y243314D01*

-X197706Y243369D01*

-X197924Y243459D01*

-X198125Y243583D01*

-X198305Y243736D01*

-X198438Y243892D01*

-Y234090D01*

-X193938Y234087D01*

-Y235195D01*

-X193941Y235194D01*

-X194223Y235217D01*

-X194499Y235283D01*

-X194761Y235391D01*

-X195002Y235539D01*

-X195218Y235723D01*

-X195402Y235939D01*

-X195550Y236180D01*

-X195658Y236442D01*

-X195724Y236718D01*

-X195741Y237000D01*

-X195724Y237282D01*

-X195658Y237558D01*

-X195550Y237820D01*

-X195402Y238061D01*

-X195218Y238277D01*

-X195002Y238461D01*

-X194761Y238609D01*

-X194499Y238717D01*

-X194223Y238783D01*

-X193941Y238806D01*

-X193938Y238805D01*

-Y243305D01*

-G37*

-G36*

-X185438Y231805D02*X186650Y231807D01*

-X186803Y231844D01*

-X186948Y231904D01*

-X187083Y231986D01*

-X187202Y232089D01*

-X187305Y232208D01*

-X187387Y232343D01*

-X187447Y232488D01*

-X187484Y232641D01*

-X187493Y232798D01*

-X187484Y238073D01*

-X187447Y238226D01*

-X187387Y238371D01*

-X187305Y238506D01*

-X187202Y238625D01*

-X187083Y238728D01*

-X186948Y238810D01*

-X186803Y238870D01*

-X186678Y238900D01*

-X186803Y238930D01*

-X186948Y238990D01*

-X187083Y239072D01*

-X187202Y239175D01*

-X187305Y239294D01*

-X187387Y239429D01*

-X187447Y239574D01*

-X187484Y239727D01*

-X187493Y239884D01*

-X187484Y245159D01*

-X187447Y245312D01*

-X187387Y245457D01*

-X187305Y245592D01*

-X187202Y245711D01*

-X187083Y245814D01*

-X186948Y245896D01*

-X186803Y245956D01*

-X186650Y245993D01*

-X186493Y246002D01*

-X185791Y246001D01*

-Y248168D01*

-X189573Y251950D01*

-X190147D01*

-X190155Y244565D01*

-X190210Y244335D01*

-X190300Y244117D01*

-X190424Y243916D01*

-X190577Y243736D01*

-X190757Y243583D01*

-X190958Y243459D01*

-X191176Y243369D01*

-X191406Y243314D01*

-X191641Y243300D01*

-X193938Y243305D01*

-Y238805D01*

-X193659Y238783D01*

-X193383Y238717D01*

-X193121Y238609D01*

-X192880Y238461D01*

-X192664Y238277D01*

-X192480Y238061D01*

-X192332Y237820D01*

-X192224Y237558D01*

-X192158Y237282D01*

-X192135Y237000D01*

-X192158Y236718D01*

-X192224Y236442D01*

-X192332Y236180D01*

-X192480Y235939D01*

-X192664Y235723D01*

-X192880Y235539D01*

-X193121Y235391D01*

-X193383Y235283D01*

-X193659Y235217D01*

-X193938Y235195D01*

-Y234087D01*

-X192606Y234086D01*

-X192376Y234031D01*

-X192158Y233941D01*

-X191957Y233817D01*

-X191777Y233664D01*

-X191624Y233484D01*

-X191500Y233283D01*

-X191410Y233065D01*

-X191355Y232835D01*

-X191341Y232600D01*

-X191355Y220165D01*

-X191410Y219935D01*

-X191500Y219717D01*

-X191624Y219516D01*

-X191777Y219336D01*

-X191957Y219183D01*

-X192158Y219059D01*

-X192376Y218969D01*

-X192606Y218914D01*

-X192841Y218900D01*

-X193938Y218901D01*

-Y214305D01*

-X193659Y214283D01*

-X193383Y214217D01*

-X193121Y214109D01*

-X192880Y213961D01*

-X192664Y213777D01*

-X192480Y213561D01*

-X192332Y213320D01*

-X192224Y213058D01*

-X192158Y212782D01*

-X192135Y212500D01*

-X192158Y212218D01*

-X192224Y211942D01*

-X192332Y211680D01*

-X192480Y211439D01*

-X192664Y211223D01*

-X192880Y211039D01*

-X193121Y210891D01*

-X193383Y210783D01*

-X193659Y210717D01*

-X193938Y210695D01*

-Y201622D01*

-X192342Y201620D01*

-X192189Y201583D01*

-X192044Y201523D01*

-X192006Y201500D01*

-X185438D01*

-Y215695D01*

-X185441Y215694D01*

-X185723Y215717D01*

-X185999Y215783D01*

-X186261Y215891D01*

-X186502Y216039D01*

-X186718Y216223D01*

-X186902Y216439D01*

-X187050Y216680D01*

-X187158Y216942D01*

-X187224Y217218D01*

-X187241Y217500D01*

-X187224Y217782D01*

-X187158Y218058D01*

-X187050Y218320D01*

-X186902Y218561D01*

-X186718Y218777D01*

-X186502Y218961D01*

-X186261Y219109D01*

-X185999Y219217D01*

-X185723Y219283D01*

-X185441Y219306D01*

-X185438Y219305D01*

-Y226195D01*

-X185441Y226194D01*

-X185723Y226217D01*

-X185999Y226283D01*

-X186261Y226391D01*

-X186502Y226539D01*

-X186718Y226723D01*

-X186902Y226939D01*

-X187050Y227180D01*

-X187158Y227442D01*

-X187224Y227718D01*

-X187241Y228000D01*

-X187224Y228282D01*

-X187158Y228558D01*

-X187050Y228820D01*

-X186902Y229061D01*

-X186718Y229277D01*

-X186502Y229461D01*

-X186261Y229609D01*

-X185999Y229717D01*

-X185723Y229783D01*

-X185441Y229806D01*

-X185438Y229805D01*

-Y231805D01*

-G37*

-G36*

-X181938Y231800D02*X185438Y231805D01*

-Y229805D01*

-X185159Y229783D01*

-X184883Y229717D01*

-X184621Y229609D01*

-X184380Y229461D01*

-X184164Y229277D01*

-X183980Y229061D01*

-X183832Y228820D01*

-X183724Y228558D01*

-X183658Y228282D01*

-X183635Y228000D01*

-X183658Y227718D01*

-X183724Y227442D01*

-X183832Y227180D01*

-X183980Y226939D01*

-X184164Y226723D01*

-X184380Y226539D01*

-X184621Y226391D01*

-X184883Y226283D01*

-X185159Y226217D01*

-X185438Y226195D01*

-Y219305D01*

-X185159Y219283D01*

-X184883Y219217D01*

-X184621Y219109D01*

-X184380Y218961D01*

-X184164Y218777D01*

-X183980Y218561D01*

-X183832Y218320D01*

-X183724Y218058D01*

-X183658Y217782D01*

-X183635Y217500D01*

-X183658Y217218D01*

-X183724Y216942D01*

-X183832Y216680D01*

-X183980Y216439D01*

-X184164Y216223D01*

-X184380Y216039D01*

-X184621Y215891D01*

-X184883Y215783D01*

-X185159Y215717D01*

-X185438Y215695D01*

-Y201500D01*

-X181938D01*

-Y231800D01*

-G37*

-G36*

-Y250688D02*X181715Y250427D01*

-X181530Y250125D01*

-X181395Y249797D01*

-X181312Y249453D01*

-X181312Y249453D01*

-X181284Y249100D01*

-X181291Y249012D01*

-Y245994D01*

-X180432Y245993D01*

-X180279Y245956D01*

-X180134Y245896D01*

-X179999Y245814D01*

-X179880Y245711D01*

-X179777Y245592D01*

-X179695Y245457D01*

-X179635Y245312D01*

-X179598Y245159D01*

-X179589Y245002D01*

-X179590Y244693D01*

-X178472D01*

-X178384Y244700D01*

-X178031Y244672D01*

-X177687Y244589D01*

-X177359Y244454D01*

-X177057Y244269D01*

-X177057Y244269D01*

-X176788Y244039D01*

-X176731Y243972D01*

-X172441Y239682D01*

-Y290500D01*

-X181938D01*

-Y260305D01*

-X181659Y260283D01*

-X181383Y260217D01*

-X181121Y260109D01*

-X180880Y259961D01*

-X180664Y259777D01*

-X180480Y259561D01*

-X180332Y259320D01*

-X180224Y259058D01*

-X180158Y258782D01*

-X180135Y258500D01*

-X180158Y258218D01*

-X180224Y257942D01*

-X180332Y257680D01*

-X180480Y257439D01*

-X180664Y257223D01*

-X180880Y257039D01*

-X181121Y256891D01*

-X181383Y256783D01*

-X181659Y256717D01*

-X181938Y256695D01*

-Y250688D01*

-G37*

-G36*

-X179589Y237916D02*X179598Y232641D01*

-X179635Y232488D01*

-X179695Y232343D01*

-X179777Y232208D01*

-X179880Y232089D01*

-X179999Y231986D01*

-X180134Y231904D01*

-X180279Y231844D01*

-X180432Y231807D01*

-X180589Y231798D01*

-X181938Y231800D01*

-Y201500D01*

-X177438D01*

-Y215695D01*

-X177441Y215694D01*

-X177723Y215717D01*

-X177999Y215783D01*

-X178261Y215891D01*

-X178502Y216039D01*

-X178718Y216223D01*

-X178902Y216439D01*

-X179050Y216680D01*

-X179158Y216942D01*

-X179224Y217218D01*

-X179241Y217500D01*

-X179224Y217782D01*

-X179158Y218058D01*

-X179050Y218320D01*

-X178902Y218561D01*

-X178718Y218777D01*

-X178502Y218961D01*

-X178261Y219109D01*

-X177999Y219217D01*

-X177723Y219283D01*

-X177441Y219306D01*

-X177438Y219305D01*

-Y226195D01*

-X177441Y226194D01*

-X177723Y226217D01*

-X177999Y226283D01*

-X178261Y226391D01*

-X178502Y226539D01*

-X178718Y226723D01*

-X178902Y226939D01*

-X179050Y227180D01*

-X179158Y227442D01*

-X179224Y227718D01*

-X179241Y228000D01*

-X179224Y228282D01*

-X179158Y228558D01*

-X179050Y228820D01*

-X178902Y229061D01*

-X178718Y229277D01*

-X178502Y229461D01*

-X178261Y229609D01*

-X177999Y229717D01*

-X177723Y229783D01*

-X177441Y229806D01*

-X177438Y229805D01*

-Y238315D01*

-X179316Y240193D01*

-X179597D01*

-X179598Y239727D01*

-X179635Y239574D01*

-X179695Y239429D01*

-X179777Y239294D01*

-X179880Y239175D01*

-X179999Y239072D01*

-X180134Y238990D01*

-X180279Y238930D01*

-X180404Y238900D01*

-X180279Y238870D01*

-X180134Y238810D01*

-X179999Y238728D01*

-X179880Y238625D01*

-X179777Y238506D01*

-X179695Y238371D01*

-X179635Y238226D01*

-X179598Y238073D01*

-X179589Y237916D01*

-G37*

-G36*

-X177438Y201500D02*X172441D01*

-Y233318D01*

-X177438Y238315D01*

-Y229805D01*

-X177159Y229783D01*

-X176883Y229717D01*

-X176621Y229609D01*

-X176380Y229461D01*

-X176164Y229277D01*

-X175980Y229061D01*

-X175832Y228820D01*

-X175724Y228558D01*

-X175658Y228282D01*

-X175635Y228000D01*

-X175658Y227718D01*

-X175724Y227442D01*

-X175832Y227180D01*

-X175980Y226939D01*

-X176164Y226723D01*

-X176380Y226539D01*

-X176621Y226391D01*

-X176883Y226283D01*

-X177159Y226217D01*

-X177438Y226195D01*

-Y219305D01*

-X177159Y219283D01*

-X176883Y219217D01*

-X176621Y219109D01*

-X176380Y218961D01*

-X176164Y218777D01*

-X175980Y218561D01*

-X175832Y218320D01*

-X175724Y218058D01*

-X175658Y217782D01*

-X175635Y217500D01*

-X175658Y217218D01*

-X175724Y216942D01*

-X175832Y216680D01*

-X175980Y216439D01*

-X176164Y216223D01*

-X176380Y216039D01*

-X176621Y215891D01*

-X176883Y215783D01*

-X177159Y215717D01*

-X177438Y215695D01*

-Y201500D01*

-G37*

-G36*

-X210441Y240500D02*X214941D01*

-Y235500D01*

-X210441D01*

-Y240500D01*

-G37*

-G36*

-X218441Y217500D02*X177941D01*

-Y238500D01*

-X218441D01*

-Y217500D01*

-G37*

-G36*

-X174941Y220000D02*X179441D01*

-Y215000D01*

-X174941D01*

-Y220000D01*

-G37*

-G36*

-X182941D02*X187441D01*

-Y215000D01*

-X182941D01*

-Y220000D01*

-G37*

-G36*

-X191441Y215000D02*X195941D01*

-Y210000D01*

-X191441D01*

-Y215000D01*

-G37*

-G36*

-X199941D02*X204441D01*

-Y210000D01*

-X199941D01*

-Y215000D01*

-G37*

-G36*

-X207941D02*X212441D01*

-Y210000D01*

-X207941D01*

-Y215000D01*

-G37*

-G36*

-X217941Y217500D02*X222441D01*

-Y212500D01*

-X217941D01*

-Y217500D01*

-G37*

-G36*

-X222441Y223000D02*X226941D01*

-Y218000D01*

-X222441D01*

-Y223000D01*

-G37*

-G36*

-X222941Y229000D02*X227441D01*

-Y224000D01*

-X222941D01*

-Y229000D01*

-G37*

-G36*

-X201441Y240000D02*X205941D01*

-Y235000D01*

-X201441D01*

-Y240000D01*

-G37*

-G36*

-X191441Y239500D02*X195941D01*

-Y234500D01*

-X191441D01*

-Y239500D01*

-G37*

-G36*

-X174941Y230500D02*X179441D01*

-Y225500D01*

-X174941D01*

-Y230500D01*

-G37*

-G36*

-X179441Y261000D02*X183941D01*

-Y256000D01*

-X179441D01*

-Y261000D01*

-G37*

-G36*

-X222441Y238000D02*X226941D01*

-Y233000D01*

-X222441D01*

-Y238000D01*

-G37*

-G36*

-X221941Y246500D02*X226441D01*

-Y241500D01*

-X221941D01*

-Y246500D01*

-G37*

-G36*

-X222441Y238000D02*X226941D01*

-Y233000D01*

-X222441D01*

-Y238000D01*

-G37*

-G36*

-X233941D02*X238441D01*

-Y233000D01*

-X233941D01*

-Y238000D01*

-G37*

-G36*

-X237001Y264297D02*X241501D01*

-Y259297D01*

-X237001D01*

-Y264297D01*

-G37*

-G36*

-X195941Y265000D02*X200441D01*

-Y260000D01*

-X195941D01*

-Y265000D01*

-G37*

-G36*

-Y272000D02*X200441D01*

-Y267000D01*

-X195941D01*

-Y272000D01*

-G37*

-G36*

-X202941Y279500D02*X207441D01*

-Y274500D01*

-X202941D01*

-Y279500D01*

-G37*

-G54D226*X404250Y300000D02*X376485D01*

-X402250Y305700D02*X391838D01*

-Y309311D02*Y305700D01*

-X394480Y314000D02*X398441D01*

-X394397Y313917D02*X394480Y314000D01*

-X389167Y311726D02*Y302000D01*

-X401750Y295000D02*X379044D01*

-Y290689D01*

-Y292839D02*Y290689D01*

-X382441Y293000D02*X381603Y292162D01*

-X391838Y293000D02*X382441D01*

-G54D227*X391838D02*X396441D01*

-X398441Y291000D01*

-G54D226*X373441Y319000D02*X368441Y314000D01*

-X374441Y317000D02*X369441Y312000D01*

-G54D227*X367441Y319000D02*Y337500D01*

-X363441Y319000D02*Y335904D01*

-X361698Y336799D02*Y320140D01*

-X360013Y337572D02*Y320860D01*

-G54D226*X382720Y319000D02*X373441D01*

-X379441Y317000D02*X374441D01*

-X389279Y324162D02*X387441Y326000D01*

-X381603Y314838D02*X379441Y317000D01*

-X381603Y313917D02*Y314838D01*

-G54D227*X382720Y319000D02*X386720Y315000D01*

-Y311614D01*

-X389279D02*Y324162D01*

-G54D226*X398441Y319441D02*Y314000D01*

-X395882Y324559D02*X393441Y327000D01*

-G54D227*X387441Y326000D02*X391338Y329897D01*

-G54D226*X398441Y324559D02*X395882D01*

-X389653Y278000D02*X371441D01*

-X381441Y282000D02*X371441D01*

-G54D227*Y278000D02*X368170Y281271D01*

-X370153Y283288D02*X371441Y282000D01*

-G54D226*X390441Y278788D02*X389653Y278000D01*

-X390441Y282588D02*Y278788D01*

-X389279Y283750D02*X390441Y282588D01*

-X389279Y290689D02*Y283750D01*

-X384162Y284721D02*X381441Y282000D01*

-X384162Y290689D02*Y284721D01*

-X386720Y288386D02*Y282000D01*

-X379044Y302000D02*X389167D01*

-X379044Y311614D02*Y302000D01*

-X376485Y311614D02*Y300000D01*

-X384162Y311614D02*Y306000D01*

-X381603Y292162D02*Y288386D01*

-X376485Y290689D02*X372441D01*

-X391838Y288386D02*Y293000D01*

-G54D227*Y290689D02*Y284085D01*

-X392388Y283535D01*

-G54D226*X402250Y314532D02*Y305700D01*

-X404250Y300000D02*Y311382D01*

-X402250Y293339D02*Y290653D01*

-Y293339D02*X401750D01*

-Y295000D02*Y293338D01*

-G54D228*X407000Y300618D02*Y294000D01*

-X409382Y303000D02*X407000Y300618D01*

-Y330618D02*Y324000D01*

-X427000Y301508D02*Y294000D01*

-X437000Y301508D02*Y294000D01*

-X453500Y300618D02*Y294000D01*

-X455882Y303000D02*X453500Y300618D01*

-X463500Y302508D02*Y294000D01*

-Y302508D03*

-X467882D02*X463500D01*

-X473500Y324000D02*Y316008D01*

-Y302508D02*Y294000D01*

-Y302508D02*X473000D01*

-X473500Y294000D02*Y286008D01*

-G54D226*X391338Y352897D02*Y348886D01*

-X393897Y341500D03*

-Y346583D02*Y341500D01*

-G54D227*X391338Y329897D02*Y349103D01*

-G54D226*X431882Y365468D03*

-X421882D01*

-X431882D02*Y361508D01*

-G54D228*X427000D02*Y354000D01*

-G54D226*X421882Y365468D02*Y362492D01*

-G54D228*X418441Y362000D02*X417000Y360559D01*

-Y354000D02*Y360500D01*

-X407000Y360618D02*Y354000D01*

-X409382Y363000D02*X407000Y360618D01*

-X421882Y362000D02*X418441D01*

-X417000Y360500D02*X414500Y363000D01*

-G54D226*X431882Y335468D03*

-X421882D01*

-X421823Y348468D02*X402250D01*

-X437433Y341500D02*X393897D01*

-X421882Y335468D02*Y332492D01*

-G54D228*X427000Y331508D02*Y324000D01*

-X437000Y331508D02*Y324000D01*

-X418559Y332000D02*X417000Y330441D01*

-Y330500D02*X414500Y333000D01*

-X409382D02*X407000Y330618D01*

-X421882Y332000D02*X418559D01*

-X473500Y333492D02*X473559D01*

-X473500Y332508D02*Y324000D01*

-X473559Y332508D02*X473500D01*

-X463500D03*

-D03*

-D03*

-D03*

-X468441D02*X463500D01*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y333492D01*

-Y332508D02*X463500D01*

-X461000D02*X463500D01*

-X453500Y330618D02*Y324000D01*

-X455882Y333000D02*X453500Y330618D01*

-X463500Y332508D02*Y324000D01*

-X427000Y354000D03*

-Y346992D01*

-D03*

-Y354000D03*

-G54D226*X421823Y348468D02*Y346008D01*

-G54D228*X427000Y346992D02*X426941D01*

-X427000D01*

-X426941D02*X427000D01*

-G54D226*X421823D02*Y348468D01*

-Y346992D02*Y348468D01*

-G54D228*X427000Y346992D03*

-X437000Y354000D03*

-Y346618D01*

-Y354000D03*

-X463500Y362508D03*

-D03*

-X461059D01*

-X463500D02*X461059D01*

-X463500D03*

-G54D226*X459941Y346500D02*X458441Y345000D01*

-X468500Y346500D02*X459941D01*

-G54D228*X437433Y346618D03*

-D03*

-G54D226*X431882Y335468D02*Y331508D01*

-G54D228*X437000Y361508D02*Y354000D01*

-X463500D03*

-X453500Y360559D02*Y354000D01*

-X455941Y363000D02*X453500Y360559D01*

-X463500Y362508D02*Y354000D01*

-X468441Y362508D02*X463500D01*

-X473500D02*Y354000D01*

-X473559Y362508D02*X473500D01*

-G54D226*X401596Y360000D02*Y354234D01*

-Y348468D02*X402250D01*

-X401596Y360000D02*Y348468D01*

-X421823D03*

-G54D228*X427000Y354000D03*

-X437000D03*

-G54D226*X421823Y348468D03*

-G54D227*X376456Y382000D02*X367546Y373090D01*

-X376024Y378412D02*X369155Y371543D01*

-G54D226*X376394Y367661D02*Y365000D01*

-X378441Y363000D02*X376394Y365047D01*

-X378441Y367500D02*Y372114D01*

-X376394Y370090D03*

-Y369450D03*

-X375985Y369950D02*X376394Y369450D01*

-X375985Y369811D02*X376394Y369450D01*

-Y370090D02*X375985D01*

-X376394D03*

-X375985D02*X376394D01*

-X375985D02*X376394D01*

-X375985Y369950D01*

-X376394Y370090D02*Y369950D01*

-X375985D02*X376394Y370090D01*

-Y369950D02*Y370090D01*

-X375985Y369950D01*

-G54D227*X379029Y378412D02*X376024D01*

-X376456Y382000D02*X384405D01*

-X387441Y378964D01*

-Y377067D01*

-X386220Y375846D01*

-Y372114D01*

-G54D226*X391338Y377051D02*Y372000D01*

-X383662Y372114D02*Y378500D01*

-X388779Y372114D02*Y367500D01*

-X401750Y371500D02*Y365000D01*

-G54D227*X385941Y367500D02*Y366000D01*

-X381103Y374417D02*Y376338D01*

-X379029Y378412D01*

-G54D226*X401596Y360000D02*X378544D01*

-X393441Y355897D02*Y355000D01*

-X391338Y358000D02*X393441Y355897D01*

-X399750Y363000D02*X378441D01*

-X401750Y365000D02*X399750Y363000D01*

-X388779Y367500D02*X378441D01*

-X393441Y355000D02*X391338Y352897D01*

-X378544Y360000D02*Y357210D01*

-X381103Y358000D02*X391338D01*

-X378544Y360000D02*Y354419D01*

-Y355500D02*Y353339D01*

-X376394Y369450D02*Y367661D01*

-Y369450D02*Y367661D01*

-G54D227*X369155Y371543D02*Y344257D01*

-X367546Y373090D02*Y345105D01*

-X369155Y344257D02*X361698Y336799D01*

-X367546Y345105D02*X360013Y337572D01*

-X363441Y335904D02*X372270Y344733D01*

-X372661Y342720D02*X367441Y337500D01*

-G54D226*X386220Y354221D02*X385941Y354500D01*

-X381103Y353500D02*Y358000D01*

-X386220Y348886D02*Y354221D01*

-X381103Y348886D02*Y353500D01*

-X378544Y353339D02*Y351189D01*

-X375985D02*X372441D01*

-X378544Y353339D02*Y351189D01*

-G54D227*X372270Y344733D02*X382441D01*

-X383662Y345954D01*

-Y348886D01*

-X372661Y342720D02*X387161D01*

-X388779Y344338D01*

-Y351189D02*Y344338D01*

-G54D226*X422000Y377051D02*X391338D01*

-X437433Y371500D02*X401750D01*

-X396555Y372114D02*X397441Y373000D01*

-X393897Y372114D02*X396555D01*

-X391338Y376567D02*Y374417D01*

-X431941Y395468D03*

-X421882D01*

-X431941D02*Y391626D01*

-G54D228*X437000Y384000D03*

-X427000D03*

-D03*

-X437000D03*

-Y376618D01*

-Y384000D03*

-X437059Y391626D02*X437000D01*

-Y392610D02*X437059D01*

-Y391626D03*

-X437000D02*X437059D01*

-D03*

-X427000Y391508D02*Y384000D01*

-X437000Y391626D02*Y384000D01*

-X427000D02*Y377051D01*

-X427118D02*X427000D01*

-X427118D01*

-X427000D01*

-Y384000D03*

-X437433Y376618D03*

-D03*

-X427118Y377051D03*

-D03*

-D03*

-D03*

-G54D226*X421882Y395468D02*Y392492D01*

-G54D228*X417000Y390559D02*Y384000D01*

-X418441Y392000D02*X417000Y390559D01*

-X421882Y392000D02*X418441D01*

-X417000Y384000D02*Y390677D01*

-X414559Y393118D01*

-X407000Y390677D02*Y384000D01*

-X409441Y393118D02*X407000Y390677D01*

-X455882Y393000D02*X453500Y390618D01*

-Y384000D01*

-X473500D02*Y376008D01*

-X463500Y392508D02*Y384000D01*

-Y392508D03*

-X468441D02*X463500D01*

-X473500D02*Y384000D01*

-X473559Y392508D02*X473500D01*

-G54D226*X402250Y242000D02*X379394D01*

-X381953Y229157D02*Y234000D01*

-G54D227*X392188Y235000D02*X396441D01*

-G54D226*X381953Y239000D02*X392188D01*

-X387070Y229157D02*Y235000D01*

-X379394Y236000D02*Y231460D01*

-X402250Y242000D02*Y239000D01*

-X392188Y234000D02*Y239000D01*

-X402250Y240000D02*Y228468D01*

-X392188Y229157D02*Y234000D01*

-X375705Y221190D02*X369166Y227729D01*

-X385585Y221190D02*X375705D01*

-X389629Y225234D02*X385585Y221190D01*

-X376441Y223000D02*X370441Y229000D01*

-X381441Y223000D02*X376441D01*

-X384512Y226071D02*X381441Y223000D01*

-X389629Y231460D02*Y225234D01*

-X384512Y231460D02*Y226071D01*

-X379394Y238047D02*Y242000D01*

-X381953Y234000D02*Y239000D01*

-X376835Y229157D02*Y233606D01*

-X375441Y235000D01*

-X379394Y240000D02*Y231460D01*

-G54D227*X360441Y239000D02*X370441Y229000D01*

-X363895Y233000D02*X369168Y227727D01*

-G54D226*X381953Y256250D02*X378003Y260200D01*

-X377244Y250082D02*Y244700D01*

-Y250082D02*X376835D01*

-X379394Y252385D02*Y248000D01*

-G54D227*X378003Y260200D02*X375978D01*

-G54D226*X381953Y254688D02*Y256250D01*

-G54D227*X376441Y262000D02*X385441D01*

-X358839Y279602D02*X376441Y262000D01*

-X375978Y260200D02*X358541Y277637D01*

-X362315Y269515D02*X371602Y260228D01*

-X392388Y283535D02*Y263392D01*

-X390280Y261284D01*

-G54D226*X388441Y259000D02*X385441Y262000D01*

-X388441Y257000D02*Y259000D01*

-X384512Y252385D02*Y258000D01*

-G54D227*X390280Y261284D02*Y256058D01*

-G54D226*X387070Y255629D02*X388441Y257000D01*

-X387070Y254688D02*Y255629D01*

-X389629Y252385D02*Y248000D01*

-G54D227*X390280Y256058D02*X389629Y255407D01*

-Y252385D01*

-G54D226*X402250Y251441D02*Y244700D01*

-X394441Y252000D02*X397441D01*

-X398441Y253000D01*

-X402250Y244700D02*X377244D01*

-G54D227*X379394Y248000D02*X380114Y247280D01*

-X388909D01*

-X389629Y248000D01*

-G54D226*X437000Y191441D02*X411882D01*

-X431882Y185468D03*

-X421882D01*

-X431882D02*Y181508D01*

-X421882Y185468D02*Y182492D01*

-G54D228*Y182000D02*X418559D01*

-X437000Y181508D02*Y174000D01*

-X453500Y180618D02*Y174000D01*

-X455882Y183000D02*X453500Y180618D01*

-X463500Y182508D02*Y174000D01*

-Y182508D03*

-X468382D02*X463500D01*

-X473500D02*Y174000D01*

-Y165508D01*

-G54D226*X386720Y197721D02*X377441Y207000D01*

-X374441Y205000D02*X371441D01*

-X386720Y195917D02*Y197721D01*

-X381603Y197838D02*X374441Y205000D01*

-X381603Y195917D02*Y197838D01*

-X395882Y205559D02*X393441Y208000D01*

-X398441Y205559D02*X395882D01*

-X398441Y200441D02*Y196000D01*

-G54D227*X389279Y195917D02*Y212500D01*

-X392188Y215409D01*

-G54D228*X437492Y196559D03*

-D03*

-X437000Y204000D02*Y196559D01*

-Y204000D03*

-D03*

-D03*

-Y211508D02*Y204000D01*

-X427000D03*

-Y196492D01*

-Y204000D03*

-D03*

-Y196492D03*

-Y211508D02*Y204000D01*

-Y196492D02*X426941D01*

-X427000D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-X417000Y204000D02*Y210500D01*

-X407000Y210618D02*Y204000D01*

-X463500D03*

-D03*

-X453500Y210618D02*Y204000D01*

-X455882Y213000D02*X453500Y210618D01*

-X463500Y212508D02*Y204000D01*

-Y212508D03*

-X473500D02*Y204000D01*

-Y196008D01*

-G54D227*X361041Y205000D02*X371441D01*

-X368441Y198000D02*X363441Y203000D01*

-X362786Y201380D02*X366841Y197325D01*

-X363441Y203000D02*X359930D01*

-X359287Y201380D02*X362786D01*

-X361041Y205000D02*X358941Y207100D01*

-Y208500D01*

-G54D226*X421941Y228468D02*Y226008D01*

-Y228468D02*X402250D01*

-X437492Y221441D02*X394747D01*

-Y226854D02*Y221441D01*

-G54D228*X427059Y226992D02*X427000D01*

-X427059D03*

-X418441Y242000D02*X417000Y240559D01*

-X421882Y242000D02*X418441D01*

-X417000Y240559D02*X414559Y243000D01*

-X417000Y234000D02*Y240559D01*

-X407000D02*Y234000D01*

-X409441Y243000D02*X407000Y240559D01*

-X437000Y241508D02*Y234000D01*

-X437492Y226559D03*

-D03*

-X437000Y234000D03*

-Y226559D01*

-Y234000D03*

-D03*

-G54D226*X431882Y215468D02*X421882D01*

-X431882D03*

-G54D228*X427059Y226992D03*

-D03*

-X427000D01*

-X427059D01*

-D03*

-G54D226*X431882Y215468D02*Y211508D01*

-X421882Y215468D02*Y212492D01*

-G54D228*X418559Y212000D02*X417000Y210441D01*

-X421882Y212000D02*X418559D01*

-X417000Y210500D02*X414500Y213000D01*

-X409382D02*X407000Y210618D01*

-G54D226*X431882Y245468D03*

-Y241508D01*

-Y245468D02*X421882D01*

-Y242492D01*

-G54D228*X427000Y234000D02*Y226992D01*

-Y234000D03*

-D03*

-D03*

-Y241508D02*Y234000D01*

-G54D226*X460441Y256000D02*X458441Y254000D01*

-G54D228*X437492Y256559D03*

-D03*

-G54D226*X468382Y256000D02*X460441D01*

-G54D228*X463500Y264000D03*

-D03*

-X453500Y270618D02*Y264000D01*

-X463500Y272508D02*Y264000D01*

-Y272508D03*

-X473500D02*Y264000D01*

-Y255508D01*

-X468559Y272508D02*X463500D01*

-G54D226*X459941Y226500D02*X458441Y225000D01*

-G54D227*X392188Y215409D02*Y229500D01*

-G54D226*X468382Y226500D02*X459941D01*

-G54D228*X473500Y213492D02*X473559D01*

-X473500Y234000D02*Y226008D01*

-X473559Y212508D02*X473500D01*

-X463500D03*

-D03*

-D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y213492D01*

-Y212508D02*X463500D01*

-X461000D02*X463500D01*

-X468441D02*X463500D01*

-G54D226*X437492Y251441D02*X402250D01*

-X421823Y256008D02*X402250D01*

-Y256838D02*Y256008D01*

-Y256838D02*X392188D01*

-Y254688D01*

-G54D228*X437000Y264000D03*

-Y256559D01*

-Y264000D03*

-D03*

-Y271508D02*Y264000D01*

-X427000D03*

-Y256992D01*

-Y264000D03*

-D03*

-Y256992D03*

-Y271508D02*Y264000D01*

-Y256992D02*X426941D01*

-X427000D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-X417000Y264000D02*Y270559D01*

-X407000D02*Y264000D01*

-X463500Y242508D03*

-D03*

-D03*

-Y234000D01*

-Y242508D03*

-Y234000D03*

-D03*

-X473500Y243492D02*X473559D01*

-X473500Y242508D02*Y234000D01*

-X473559Y242508D02*X473500D01*

-X463500D02*X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y243492D01*

-Y242508D02*X463500D01*

-X461000D02*X463500D01*

-X468441D02*X463500D01*

-X453500Y240618D02*Y234000D01*

-X455882Y243000D02*X453500Y240618D01*

-G54D226*X376485Y183956D02*X380441Y180000D01*

-X376485Y185700D02*Y183956D01*

-X379044Y177000D02*Y172689D01*

-G54D227*X377347Y162178D02*X380228D01*

-X384162Y166112D01*

-Y170386D01*

-G54D226*X381603D02*Y175000D01*

-X376485Y170386D02*X372441D01*

-G54D227*X366841Y192337D02*Y166300D01*

-X368441Y166963D02*Y198000D01*

-X366841Y197325D02*Y192220D01*

-X365241Y191616D02*Y165637D01*

-X363484Y191048D02*Y162503D01*

-X365241Y193163D02*Y190800D01*

-D03*

-X363484Y190957D02*Y192657D01*

-G54D226*X404441Y184000D02*X400441Y180000D01*

-X402441Y185000D02*X394441D01*

-X402250Y177000D02*Y168468D01*

-G54D228*X407000Y180618D02*Y174000D01*

-X409382Y183000D02*X407000Y180618D01*

-G54D227*X398441Y173000D02*X396441Y175000D01*

-G54D226*X404250Y183809D02*X411882Y191441D01*

-X413441Y196000D02*X402441Y185000D01*

-X421823Y196000D02*X413441D01*

-X398441D02*X400441Y194000D01*

-X394441D02*X400441D01*

-G54D228*X418559Y182000D02*X417000Y180441D01*

-Y174000D02*Y180500D01*

-X427000Y181508D02*Y174000D01*

-X417000Y180500D02*X414500Y183000D01*

-G54D226*X437433Y161382D02*X394397D01*

-Y168083D02*Y161382D01*

-X421823Y168468D02*Y166008D01*

-Y168468D02*X402250D01*

-G54D228*X437000Y174000D03*

-G54D226*X386720Y163279D02*X386441Y163000D01*

-X386720Y170386D02*Y163279D01*

-X391441Y164000D02*Y162000D01*

-X389279Y166162D02*X391441Y164000D01*

-X389279Y172689D02*Y166162D01*

-X391441Y162000D02*X388941Y159500D01*

-G54D227*X386023Y157813D02*X387710Y159500D01*

-X388941D01*

-G54D226*X389279Y184162D02*Y193614D01*

-X389441Y184000D02*X389279Y184162D01*

-X391838Y187603D02*X394441Y185000D01*

-X391838Y193614D02*Y187603D01*

-X380441Y180000D02*X400441D01*

-X402250Y177000D02*X379044D01*

-X381603Y175000D02*X391838D01*

-Y170386D02*Y175000D01*

-G54D227*X396441D02*X391838D01*

-G54D226*X384162Y193614D02*Y188000D01*

-X376485Y191311D02*Y185700D01*

-X379044Y184000D02*X389441D01*

-X379044Y193614D02*Y184000D01*

-X429765Y71000D02*X440000D01*

-X429765Y76324D02*Y71000D01*

-X440000Y76000D02*Y71000D01*

-X424647Y76206D02*X423441Y75000D01*

-X424647Y80772D02*Y76206D01*

-X427206Y78469D02*Y48468D01*

-X442559Y78469D02*Y76008D01*

-G54D227*X439941Y71000D02*X440941Y70000D01*

-Y65559D01*

-X440449D02*X434941D01*

-X434449Y60441D02*Y56500D01*

-X440449Y60441D02*Y56500D01*

-G54D226*X468441Y48468D02*Y46008D01*

-Y48468D02*X427206D01*

-G54D228*X473500Y46008D02*X473559D01*

-X463500Y54000D03*

-D03*

-X473500D02*Y46992D01*

-X473559D02*X473500D01*

-X473559Y54000D02*X473500D01*

-G54D226*X468382Y76008D02*X442559D01*

-G54D228*X463500Y84000D03*

-D03*

-X473500D02*Y76992D01*

-X473559Y84000D02*X473500D01*

-X463500Y62508D03*

-D03*

-D03*

-Y54000D01*

-Y62508D03*

-X473559D02*Y54000D01*

-X463500Y62508D02*X461059D01*

-X463500D02*X461059D01*

-X463500D02*X461059Y63492D01*

-Y62508D02*X463500D01*

-X461059D02*X463500D01*

-X468441D02*X463500D01*

-X453500Y60559D02*Y54000D01*

-X455941Y63000D02*X453500Y60559D01*

-G54D226*X418440Y101000D02*Y115875D01*

-X420441Y101546D02*Y115500D01*

-X424647Y134032D02*Y106303D01*

-G54D227*X420441Y127000D02*Y115500D01*

-X418440Y122001D02*Y115875D01*

-G54D226*X432030Y97015D02*X422425D01*

-X428241Y93000D02*X420941D01*

-X427941Y99000D02*X422987D01*

-X429441Y95000D02*X421895D01*

-X428441Y93200D02*X428241Y93000D01*

-X434882Y99867D02*X432030Y97015D01*

-X429765Y100824D02*X427941Y99000D01*

-X429765Y106303D02*Y100824D01*

-X432324Y89317D02*X428441Y93200D01*

-X437441Y87000D02*X429441Y95000D01*

-X437441D02*X440000Y92441D01*

-X432324Y83075D02*Y89317D01*

-X437441Y80000D02*Y87000D01*

-X432441Y80000D02*Y85000D01*

-X440000Y80772D02*Y92441D01*

-X434882Y80772D02*Y75000D01*

-X440000Y80772D02*Y76000D01*

-X434882Y101697D02*Y99867D01*

-X432324Y106303D02*Y111000D01*

-X434882Y106303D02*Y101118D01*

-X437441Y104000D02*Y95000D01*

-X440000Y108453D02*Y106303D01*

-X429765Y80772D02*Y76000D01*

-X422425Y97015D02*X418440Y101000D01*

-X422987Y99000D02*X420441Y101546D01*

-X444441Y104000D02*X446441Y102000D01*

-X442559Y104000D02*X444441D01*

-X427206Y115000D02*X428441D01*

-X427206Y109000D02*Y115000D01*

-X437441D02*X427441D01*

-X437441Y109000D02*Y115000D01*

-X427206Y104000D02*Y109000D01*

-X437441Y104000D02*Y109000D01*

-G54D228*Y115000D02*X440941Y118500D01*

-Y123000D01*

-G54D227*X421895Y95000D02*X416441Y100454D01*

-X420941Y93000D02*X414441Y99500D01*

-X416441Y100454D02*Y106000D01*

-X414441Y99500D02*Y106000D01*

-X416441Y114437D02*Y105455D01*

-X414441Y111546D02*Y105554D01*

-G54D226*X468382Y166000D02*X460441D01*

-G54D228*X463500Y182508D02*X461000D01*

-X463500D02*X461000D01*

-X463500D03*

-X461000D02*X463500D01*

-X461000D02*X463500D01*

-Y174000D03*

-D03*

-G54D226*X459941Y196500D02*X458441Y195000D01*

-X468382Y196500D02*X459941D01*

-G54D228*X463500Y182508D03*

-D03*

-X461000Y183492D01*

-G54D226*X460441Y166000D02*X458441Y164000D01*

-G54D228*X473500Y153492D02*X473559D01*

-X473500Y152508D02*Y144000D01*

-X473559Y152508D02*X473500D01*

-Y144000D02*Y135508D01*

-X463500Y152508D03*

-D03*

-D03*

-X468441D02*X463500D01*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y153492D01*

-Y152508D02*X463500D01*

-X461000D02*X463500D01*

-X455882Y153000D02*X453500Y150618D01*

-X437000Y174000D03*

-Y166500D01*

-Y174000D03*

-X437433Y166500D03*

-D03*

-X427000Y174000D03*

-Y166992D01*

-Y174000D03*

-D03*

-Y166992D02*X426941D01*

-X427000D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-D03*

-G54D227*X368441Y166963D02*X380404Y155000D01*

-X366841Y166300D02*X380141Y153000D01*

-X380404Y155000D02*X392441D01*

-X420441Y127000D01*

-X380141Y153000D02*X387441D01*

-X418440Y122001D01*

-X365241Y165637D02*X416441Y114437D01*

-X363484Y162503D02*X414441Y111546D01*

-X250941Y229500D02*X269858Y210583D01*

-X268458Y207483D02*X246441Y229500D01*

-X242441D02*X267558Y204383D01*

-X272050Y213000D02*X247050Y238000D01*

-X269858Y210583D02*X304706D01*

-X304584Y207483D02*X268458D01*

-X267558Y204383D02*X305280D01*

-X309941Y213000D02*X272050D01*

-G54D228*X165941Y230000D02*Y217500D01*

-X169441Y214000D01*

-G54D227*X377441Y207000D02*X348441Y236000D01*

-X356441Y233000D02*X363895D01*

-X355441Y213124D02*Y207489D01*

-X359930Y203000D02*X355441Y207489D01*

-X353441Y207226D02*X359287Y201380D01*

-X350857Y206000D02*X352404D01*

-X365241Y193163D01*

-X363484Y192657D02*X351741Y204400D01*

-X351791Y204350D02*X350244D01*

-X309941Y213000D02*X334441Y188500D01*

-Y166000D01*

-X337441Y163000D01*

-X291441Y236000D02*X348441D01*

-X292207Y232971D02*X323886D01*

-X323183Y231349D02*X291092D01*

-X323245D02*X322092D01*

-X338441Y230124D02*X355441Y213124D01*

-X338441Y224192D02*X353441Y209192D01*

-Y207226D01*

-X323886Y232971D02*X350857Y206000D01*

-X350244Y204350D02*X323245Y231349D01*

-G54D226*X468382Y135508D02*X466906D01*

-Y134032D01*

-G54D228*X463500Y144000D03*

-D03*

-X453500Y150618D02*Y144000D01*

-X463500Y152508D02*Y144000D01*

-Y152508D03*

-G54D226*X466906Y134032D02*X424647D01*

-G54D228*X455882Y123000D02*X453500Y120618D01*

-X463500Y92508D03*

-D03*

-D03*

-D03*

-Y114000D03*

-D03*

-Y92508D02*X461059Y93492D01*

-X463500Y92508D02*X461059D01*

-X463500D02*X461059D01*

-X463500D01*

-X461059D02*X463500D01*

-Y84000D01*

-X473559Y92508D02*Y84000D01*

-X453500Y90559D02*Y84000D01*

-X455941Y93000D02*X453500Y90559D01*

-X468441Y92508D02*X463500D01*

-G54D226*X468382Y106008D02*X448750D01*

-Y108453D02*Y106008D01*

-Y108453D02*X440000D01*

-G54D228*X463500Y122508D03*

-D03*

-D03*

-Y114000D01*

-Y122508D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y123492D01*

-Y122508D02*X463500D01*

-X461000D02*X463500D01*

-X468441D02*X463500D01*

-X453500Y120618D02*Y114000D01*

-X473500D02*Y106992D01*

-X473559Y122508D02*Y114000D01*

-X473500D01*

-X85441Y47500D02*X79882D01*

-X77441Y49941D01*

-X76949Y55059D02*X79390Y57500D01*

-X85441D01*

-X106949Y55059D02*X109390Y57500D01*

-X108941Y47500D02*X107441Y49000D01*

-X109390Y57500D02*X115441D01*

-Y47500D02*X108941D01*

-G54D227*X85441Y67500D02*X109941Y92000D01*

-G54D228*X136949Y49941D02*X139390Y47500D01*

-X145441D01*

-X166949Y49941D02*X169390Y47500D01*

-X175441D01*

-X145441Y57500D02*X139882D01*

-X137441Y55059D01*

-X166949D02*X169390Y57500D01*

-X175441D01*

-X196949Y55059D02*X199390Y57500D01*

-X205441D01*

-X196949Y49941D02*X199390Y47500D01*

-X205441D01*

-X226949Y49941D02*X229390Y47500D01*

-X235441D01*

-X226949Y55059D02*X229390Y57500D01*

-X235441D01*

-X256949Y55059D02*X259390Y57500D01*

-X265441D01*

-X256949Y49941D02*X259390Y47500D01*

-X265441D01*

-X286949Y49941D02*X289390Y47500D01*

-X295441D01*

-X286949Y55059D02*X289390Y57500D01*

-X295441D01*

-G54D227*Y67500D02*X275941D01*

-X115441D02*Y120500D01*

-X154941Y130500D02*X153441Y132000D01*

-X151941D01*

-X115441Y120500D02*X114441Y121500D01*

-X109941Y92000D02*Y130500D01*

-X111941Y132500D01*

-X115441D01*

-X145441Y67500D02*Y114500D01*

-X152441Y121500D01*

-X175441Y67500D02*X154941Y88000D01*

-Y130500D01*

-X235441Y67500D02*X198441Y104500D01*

-X265441Y67500D02*X234441Y98500D01*

-Y122500D01*

-X275941Y67500D02*X237441Y106000D01*

-Y131500D01*

-X235941Y133000D01*

-X198441Y104500D02*Y122500D01*

-X190941Y82000D02*Y130000D01*

-X193941Y133000D01*

-X195441D01*

-X205441Y67500D02*X190941Y82000D01*

-G54D226*X459941Y376500D02*X458441Y375000D01*

-G54D228*X463500Y384000D03*

-D03*

-X473500Y393492D02*X473559D01*

-X463500Y362508D03*

-X473500Y363492D02*X473559D01*

-X463500Y362508D02*X461059Y363492D01*

-Y362508D02*X463500D01*

-X461059D02*X463500D01*

-Y392508D03*

-D03*

-D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y393492D01*

-Y392508D02*X463500D01*

-X461000D02*X463500D01*

-Y354000D03*

-X473618D02*Y346008D01*

-Y354000D02*X473500D01*

-G54D226*X468382Y376500D02*X459941D01*

-X421823Y316008D02*X420347D01*

-Y314532D01*

-X402250D01*

-X437433Y311382D02*X404250D01*

-X431882Y305468D03*

-X421882D01*

-X431882D02*Y301508D01*

-X421882Y305468D02*Y302492D01*

-G54D228*X418941Y302000D02*X417000Y300059D01*

-Y300500D02*X414500Y303000D01*

-X421882Y302000D02*X418941D01*

-G54D226*X459941Y316500D02*X458441Y315000D01*

-X468382Y316500D02*X459941D01*

-G54D228*X463500Y302508D03*

-D03*

-D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D01*

-X461000D02*X463500D01*

-X461000Y303492D01*

-X473500D02*X473000D01*

-X463500Y324000D03*

-D03*

-X437433Y316500D03*

-D03*

-X437000Y324000D02*Y316500D01*

-Y324000D03*

-X427000Y316992D02*X426941D01*

-X427000Y324000D02*Y316992D01*

-D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-D03*

-X437000Y324000D03*

-X427000D03*

-D03*

-X437000D03*

-X427000D03*

-X417000D02*Y330500D01*

-G54D226*X459941Y286500D02*X458441Y285000D01*

-G54D228*X463500Y294000D03*

-D03*

-G54D226*X468382Y286500D02*X459941D01*

-G54D228*X463500Y272508D03*

-D03*

-D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D01*

-X461000D02*X463500D01*

-X455882Y273000D02*X453500Y270618D01*

-X463500Y272508D02*X461000Y273492D01*

-X473500D02*X473677D01*

-Y272508D02*X473500D01*

-G54D226*X437492Y281441D02*X394397D01*

-X421823Y288468D02*X402250D01*

-Y292839D02*Y288468D01*

-X394397Y286083D02*Y281441D01*

-X431882Y275468D03*

-X421882D01*

-Y272492D01*

-G54D228*X437492Y286559D03*

-D03*

-X437000Y294000D03*

-Y286559D01*

-Y294000D03*

-D03*

-X427000Y286992D02*X426941D01*

-X427000Y294000D02*Y286992D01*

-D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-D03*

-G54D226*X431882Y275468D02*Y271508D01*

-G54D228*X427000Y294000D03*

-D03*

-D03*

-X417000D02*Y300500D01*

-G54D226*X421823Y288468D02*Y286008D01*

-G54D228*X418500Y272000D02*X417000Y270500D01*

-X421882Y272000D02*X418500D01*

-X417000Y270559D02*X414559Y273000D01*

-X409441D02*X407000Y270559D01*

-G54D227*X307716Y275075D02*X221756D01*

-X268735Y280294D02*X259870D01*

-X255221Y278590D02*X272141D01*

-X275815Y282263D01*

-X299852Y276675D02*X248390D01*

-X245557Y279508D01*

-X308992Y271971D02*X223868D01*

-X308872Y266522D02*X308083Y265733D01*

-X262750Y268772D02*X263493Y269515D01*

-X308872Y266522D02*X307930Y265580D01*

-X220729D01*

-X263493Y269515D02*X314645D01*

-X293902Y282263D02*X275804D01*

-X275815D02*X276842D01*

-X300814Y277637D02*X299852Y276675D01*

-X245557Y279508D02*X247216Y277849D01*

-X222884Y255000D02*X275441D01*

-X291441Y239000D01*

-X224441Y252000D02*X275441D01*

-X226441Y250000D02*X275178D01*

-X274191Y248250D02*X231691D01*

-X254740Y298329D02*Y295829D01*

-X266413Y296594D02*X266896Y296111D01*

-X269653Y298631D02*X272165Y296119D01*

-X273229Y298582D02*X271946Y299866D01*

-X254740Y295829D02*X261240Y289329D01*

-X260341Y284249D02*X257845Y286745D01*

-X260253Y288064D02*X259864D01*

-X256818Y291110D01*

-X264034Y284283D02*X260253Y288064D01*

-X259870Y280294D02*X256996Y283168D01*

-X257031Y290897D02*X252105Y295823D01*

-Y301771D01*

-X257850Y286740D02*X250348Y294242D01*

-Y301687D01*

-Y301846D02*Y302277D01*

-X256996Y283168D02*X251412D01*

-X261240Y289329D02*X268849D01*

-X263240Y295329D02*X264568Y294000D01*

-X266441D01*

-X266020Y291283D02*X265474Y291829D01*

-X262740D01*

-X268849Y289329D02*X270178Y288000D01*

-X266413Y296594D02*X268508Y294499D01*

-X266441Y294000D02*X267558Y292883D01*

-X270441Y290000D02*X269158Y291283D01*

-X266020D01*

-X279441Y285000D02*X273441D01*

-X268735Y280294D01*

-X221804Y275075D02*X221493D01*

-X217441Y279000D01*

-X223941Y271971D02*X219970D01*

-X219441Y272500D01*

-X250553Y280776D02*X249753D01*

-X250554D02*X253035D01*

-X247253Y277812D02*X248390Y276675D01*

-X253035Y280776D02*X255221Y278590D01*

-X287917Y302957D02*Y307829D01*

-X296779Y304963D02*X294773Y302957D01*

-X293035D01*

-X278224Y298517D02*Y303063D01*

-X275724Y297363D02*Y301494D01*

-X273634Y303585D01*

-X278224Y303063D02*X285494Y310333D01*

-X277174Y308219D02*X280976Y312022D01*

-X293441Y296111D02*X305330Y308000D01*

-X305993Y306400D02*X292476Y292883D01*

-X272165Y296119D02*X274480D01*

-X275724Y297363D01*

-X268508Y294499D02*X281091D01*

-X282702Y296111D01*

-X293441D01*

-X267558Y292883D02*X292476D01*

-X335673Y279602D02*X358839D01*

-X300104Y277637D02*X358541D01*

-X368170Y281271D02*X324922D01*

-X278225Y279602D02*X335757D01*

-X324922Y281271D02*X318193Y288000D01*

-X270178D02*X318193D01*

-X270441Y290000D02*X319525D01*

-X326237Y283288D01*

-X370153D01*

-X314441Y269515D02*X362315D01*

-X291441Y239000D02*X360441D01*

-X275441Y252000D02*X291441Y236000D01*

-X275178Y250000D02*X292207Y232971D01*

-X291092Y231349D02*X274191Y248250D01*

-X369441Y312000D02*X363841Y306400D01*

-X362441Y308000D02*X368441Y314000D01*

-X358774Y310333D02*X367441Y319000D01*

-X305993Y306400D02*X363841D01*

-X305330Y308000D02*X362441D01*

-X285494Y310333D02*X358774D01*

-X280976Y312022D02*X356463D01*

-X363441Y319000D01*

-X278661Y315434D02*X345216D01*

-X354587D02*X345007D01*

-X361698Y320140D02*X355188Y313631D01*

-X360013Y320860D02*X354587Y315434D01*

-X279121Y313631D02*X355188D01*

-G54D229*X118699Y327729D02*Y308829D01*

-G54D228*X127799Y327729D02*Y310858D01*

-X125941Y309000D01*

-G54D230*X124831Y302385D02*X120556D01*

-X118799Y304142D01*

-G54D231*Y308829D01*

-G54D227*X135724Y374939D02*X142712Y381927D01*

-X176106D01*

-X180672Y377361D01*

-Y361769D01*

-X222441Y320000D02*X180672Y361769D01*

-X187712Y342818D02*X178887D01*

-X218816Y316997D02*X191363Y344449D01*

-X268053Y317646D02*Y323343D01*

-X266453Y318382D02*Y324006D01*

-X295669Y353222D01*

-X268053Y323343D02*X296244Y351534D01*

-X295669Y353222D02*X328442D01*

-X339837Y341827D01*

-X296244Y351534D02*X326886D01*

-X338899Y339521D01*

-X353390D01*

-X249101Y328793D02*X229818Y348075D01*

-Y354988D01*

-X252105Y301698D02*X268053Y317646D01*

-X250348Y302277D02*X266453Y318382D01*

-X273634Y303585D02*Y308144D01*

-X279121Y313631D01*

-X271946Y299866D02*Y308718D01*

-Y308719D02*Y308505D01*

-X278661Y315434D02*X271946Y308719D01*

-X263441Y320000D02*X222441D01*

-X249753Y280776D02*X187712Y342818D01*

-X260568Y316997D02*X218816D01*

-X264034Y282931D02*Y284283D01*

-X240391Y278564D02*X230441Y288514D01*

-Y293000D01*

-X251412Y283168D02*X246731Y287850D01*

-Y303031D01*

-G54D228*X203441Y254200D02*Y237000D01*

-G54D227*X221884Y254000D02*X222884Y255000D01*

-G54D228*X194441Y254200D02*X188641D01*

-X183541Y249100D01*

-Y242443D01*

-X178384D01*

-X165941Y230000D01*

-G54D227*X225441Y249000D02*X226441Y250000D01*

-X231691Y248250D02*X230441Y247000D01*

-G54D228*X203441Y254200D02*X204998Y255757D01*

-Y262900D01*

-X203441Y254200D02*X199941Y257700D01*

-Y261000D01*

-X212084Y262900D02*X212541Y262443D01*

-X212084Y263293D02*X216648D01*

-X220441Y259500D01*

-X212541Y262443D02*Y250900D01*

-X204998Y262900D02*X205681Y263583D01*

-Y268829D01*

-X212084Y268036D02*Y262900D01*

-X204998Y263293D02*X204705Y263000D01*

-X205441Y269561D02*Y273500D01*

-X204705Y263000D02*X194441D01*

-X210799Y269321D02*X212084Y268036D01*

-X205681Y269321D02*X205360Y269000D01*

-X200941D01*

-X205681Y269321D02*X205441Y269561D01*

-G54D232*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D225*G36*

-X403750Y357250D02*Y350750D01*

-X410250D01*

-Y357250D01*

-X403750D01*

-G37*

-G54D233*X345799Y357329D03*

-G54D234*X315799Y337329D03*

-G54D233*X85799Y369829D03*

-G54D235*X105799Y374829D03*

-G54D225*G36*

-X102499Y368129D02*Y361529D01*

-X109099D01*

-Y368129D01*

-X102499D01*

-G37*

-G54D235*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D225*G36*

-X450250Y267250D02*Y260750D01*

-X456750D01*

-Y267250D01*

-X450250D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X456750D01*

-Y207250D01*

-X450250D01*

-G37*

-G36*

-Y177250D02*Y170750D01*

-X456750D01*

-Y177250D01*

-X450250D01*

-G37*

-G54D232*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D225*G36*

-X450250Y237250D02*Y230750D01*

-X456750D01*

-Y237250D01*

-X450250D01*

-G37*

-G54D232*X463500Y234000D03*

-X473500D03*

-G54D225*G36*

-X450250Y147250D02*Y140750D01*

-X456750D01*

-Y147250D01*

-X450250D01*

-G37*

-G36*

-Y117250D02*Y110750D01*

-X456750D01*

-Y117250D01*

-X450250D01*

-G37*

-G36*

-Y87250D02*Y80750D01*

-X456750D01*

-Y87250D01*

-X450250D01*

-G37*

-G36*

-Y57250D02*Y50750D01*

-X456750D01*

-Y57250D01*

-X450250D01*

-G37*

-G54D232*X463500Y54000D03*

-X473500D03*

-G54D225*G36*

-X450250Y327250D02*Y320750D01*

-X456750D01*

-Y327250D01*

-X450250D01*

-G37*

-G54D232*X463500Y324000D03*

-X473500D03*

-G54D225*G36*

-X450250Y297250D02*Y290750D01*

-X456750D01*

-Y297250D01*

-X450250D01*

-G37*

-G54D232*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D225*G36*

-X309191Y252250D02*Y245750D01*

-X315691D01*

-Y252250D01*

-X309191D01*

-G37*

-G54D232*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D236*X345799Y192329D03*

-G54D233*X353000Y150000D03*

-G54D225*G36*

-X450250Y387250D02*Y380750D01*

-X456750D01*

-Y387250D01*

-X450250D01*

-G37*

-G54D232*X463500Y384000D03*

-X473500D03*

-G54D225*G36*

-X403750Y387250D02*Y380750D01*

-X410250D01*

-Y387250D01*

-X403750D01*

-G37*

-G36*

-Y297250D02*Y290750D01*

-X410250D01*

-Y297250D01*

-X403750D01*

-G37*

-G36*

-Y327250D02*Y320750D01*

-X410250D01*

-Y327250D01*

-X403750D01*

-G37*

-G54D232*X417000Y324000D03*

-X427000D03*

-G54D225*G36*

-X450250Y357250D02*Y350750D01*

-X456750D01*

-Y357250D01*

-X450250D01*

-G37*

-G54D232*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D225*G36*

-X403750Y177250D02*Y170750D01*

-X410250D01*

-Y177250D01*

-X403750D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X410250D01*

-Y207250D01*

-X403750D01*

-G37*

-G36*

-Y237250D02*Y230750D01*

-X410250D01*

-Y237250D01*

-X403750D01*

-G37*

-G36*

-Y267250D02*Y260750D01*

-X410250D01*

-Y267250D01*

-X403750D01*

-G37*

-G54D232*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D225*G36*

-X202191Y50750D02*Y44250D01*

-X208691D01*

-Y50750D01*

-X202191D01*

-G37*

-G54D232*X205441Y57500D03*

-Y67500D03*

-G54D225*G36*

-X232191Y50750D02*Y44250D01*

-X238691D01*

-Y50750D01*

-X232191D01*

-G37*

-G54D232*X235441Y57500D03*

-Y67500D03*

-G54D225*G36*

-X262191Y50750D02*Y44250D01*

-X268691D01*

-Y50750D01*

-X262191D01*

-G37*

-G36*

-X172191D02*Y44250D01*

-X178691D01*

-Y50750D01*

-X172191D01*

-G37*

-G36*

-X142191D02*Y44250D01*

-X148691D01*

-Y50750D01*

-X142191D01*

-G37*

-G36*

-X112191D02*Y44250D01*

-X118691D01*

-Y50750D01*

-X112191D01*

-G37*

-G36*

-X82191D02*Y44250D01*

-X88691D01*

-Y50750D01*

-X82191D01*

-G37*

-G54D232*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D225*G36*

-X292191Y50750D02*Y44250D01*

-X298691D01*

-Y50750D01*

-X292191D01*

-G37*

-G54D232*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D233*X85799Y179829D03*

-G54D235*X105799Y184829D03*

-G54D225*G36*

-X102499Y178129D02*Y171529D01*

-X109099D01*

-Y178129D01*

-X102499D01*

-G37*

-G54D235*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D225*G36*

-X82191Y243250D02*Y236750D01*

-X88691D01*

-Y243250D01*

-X82191D01*

-G37*

-G54D232*X85441Y230000D03*

-Y220000D03*

-G54D235*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D225*G36*

-X192499Y200629D02*Y194029D01*

-X199099D01*

-Y200629D01*

-X192499D01*

-G37*

-G54D235*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D237*X397949Y205559D02*X398933D01*

-X397949Y200441D02*X398933D01*

-G54D238*X376485Y195917D02*Y191311D01*

-X379044Y195917D02*Y191311D01*

-X381603Y195917D02*Y191311D01*

-X384162Y195917D02*Y191311D01*

-X386720Y195917D02*Y191311D01*

-X389279Y195917D02*Y191311D01*

-X391838Y195917D02*Y191311D01*

-X394397Y195917D02*Y191311D01*

-G54D237*X436449Y311382D02*X437433D01*

-X427000Y302492D02*Y301508D01*

-X421882Y302492D02*Y301508D01*

-X437000Y302492D02*Y301508D01*

-X431882Y302492D02*Y301508D01*

-X436508Y286559D02*X437492D01*

-X414500Y303492D02*Y302508D01*

-X409382Y303492D02*Y302508D01*

-X426941Y286992D02*Y286008D01*

-X427000Y272492D02*Y271508D01*

-X426941Y256992D02*Y256008D01*

-X427000Y242492D02*Y241508D01*

-X421823Y286992D02*Y286008D01*

-X421882Y272492D02*Y271508D01*

-X414559Y273492D02*Y272508D01*

-X409441Y273492D02*Y272508D01*

-X436508Y281441D02*X437492D01*

-X437000Y272492D02*Y271508D01*

-X431882Y272492D02*Y271508D01*

-X409441Y243492D02*Y242508D01*

-X436508Y196559D02*X437492D01*

-X436508Y191441D02*X437492D01*

-X434449Y65559D02*X435433D01*

-X434449Y60441D02*X435433D01*

-G54D238*X394747Y231460D02*Y226854D01*

-X392188Y231460D02*Y226854D01*

-X389629Y231460D02*Y226854D01*

-X387070Y231460D02*Y226854D01*

-X384512Y231460D02*Y226854D01*

-X381953Y231460D02*Y226854D01*

-X379394Y231460D02*Y226854D01*

-X376835Y231460D02*Y226854D01*

-Y254688D02*Y250082D01*

-X379394Y254688D02*Y250082D01*

-X381953Y254688D02*Y250082D01*

-X384512Y254688D02*Y250082D01*

-X387070Y254688D02*Y250082D01*

-X389629Y254688D02*Y250082D01*

-X392188Y254688D02*Y250082D01*

-X391838Y290689D02*Y286083D01*

-X394747Y254688D02*Y250082D01*

-X394397Y290689D02*Y286083D01*

-X389279Y290689D02*Y286083D01*

-X386720Y290689D02*Y286083D01*

-X384162Y290689D02*Y286083D01*

-X381603Y290689D02*Y286083D01*

-X379044Y290689D02*Y286083D01*

-X376485Y290689D02*Y286083D01*

-X393897Y351189D02*Y346583D01*

-X391338Y351189D02*Y346583D01*

-X388779Y351189D02*Y346583D01*

-X386220Y351189D02*Y346583D01*

-X383662Y351189D02*Y346583D01*

-X381103Y351189D02*Y346583D01*

-X378544Y351189D02*Y346583D01*

-X375985Y351189D02*Y346583D01*

-G54D237*X397949Y324559D02*X398933D01*

-X397949Y319441D02*X398933D01*

-G54D238*X384162Y313917D02*Y309311D01*

-X386720Y313917D02*Y309311D01*

-X381603Y313917D02*Y309311D01*

-X376485Y313917D02*Y309311D01*

-X379044Y313917D02*Y309311D01*

-X389279Y313917D02*Y309311D01*

-X391838Y313917D02*Y309311D01*

-X394397Y313917D02*Y309311D01*

-G54D237*X286949Y49941D02*X287933D01*

-X256949D02*X257933D01*

-X226949D02*X227933D01*

-X196949D02*X197933D01*

-X286949Y55059D02*X287933D01*

-X256949D02*X257933D01*

-X226949D02*X227933D01*

-X196949D02*X197933D01*

-X461000Y393492D02*Y392508D01*

-X455882Y393492D02*Y392508D01*

-X461059Y363492D02*Y362508D01*

-X473500Y376992D02*Y376008D01*

-X468382Y376992D02*Y376008D01*

-X468441Y363492D02*Y362508D01*

-X468500Y346992D02*Y346008D01*

-X455941Y363492D02*Y362508D01*

-X461000Y333492D02*Y332508D01*

-X455882Y333492D02*Y332508D01*

-X473500Y316992D02*Y316008D01*

-X468382Y316992D02*Y316008D01*

-X468441Y333492D02*Y332508D01*

-X473559Y393492D02*Y392508D01*

-X468441Y393492D02*Y392508D01*

-X427000Y392492D02*Y391508D01*

-X426941Y346992D02*Y346008D01*

-X427118Y377051D02*Y376067D01*

-X421882Y392492D02*Y391508D01*

-X421823Y346992D02*Y346008D01*

-X422000Y377051D02*Y376067D01*

-X427000Y362492D02*Y361508D01*

-X421882Y362492D02*Y361508D01*

-X414500Y363492D02*Y362508D01*

-X409382Y363492D02*Y362508D01*

-X437000Y362492D02*Y361508D01*

-X431882Y362492D02*Y361508D01*

-X436449Y346618D02*X437433D01*

-X437059Y392610D02*Y391626D01*

-X436449Y376618D02*X437433D01*

-X436449Y371500D02*X437433D01*

-X431941Y392610D02*Y391626D01*

-X414559Y393610D02*Y392626D01*

-X409441Y393610D02*Y392626D01*

-X436449Y341500D02*X437433D01*

-X427000Y332492D02*Y331508D01*

-X437000Y332492D02*Y331508D01*

-X431882Y332492D02*Y331508D01*

-X426941Y316992D02*Y316008D01*

-X421823Y316992D02*Y316008D01*

-X436449Y316500D02*X437433D01*

-X414500Y333492D02*Y332508D01*

-X409382Y333492D02*Y332508D01*

-X421882Y332492D02*Y331508D01*

-G54D238*X375985Y374417D02*Y369811D01*

-X378544Y374417D02*Y369811D01*

-X381103Y374417D02*Y369811D01*

-X383662Y374417D02*Y369811D01*

-X386220Y374417D02*Y369811D01*

-X388779Y374417D02*Y369811D01*

-X391338Y374417D02*Y369811D01*

-X393897Y374417D02*Y369811D01*

-X394397Y172689D02*Y168083D01*

-X391838Y172689D02*Y168083D01*

-X389279Y172689D02*Y168083D01*

-X386720Y172689D02*Y168083D01*

-X384162Y172689D02*Y168083D01*

-X381603Y172689D02*Y168083D01*

-X379044Y172689D02*Y168083D01*

-X376485Y172689D02*Y168083D01*

-G54D237*X461000Y153492D02*Y152508D01*

-X473500Y166492D02*Y165508D01*

-X468382Y166492D02*Y165508D01*

-X468441Y153492D02*Y152508D01*

-X455882Y153492D02*Y152508D01*

-X426941Y166992D02*Y166008D01*

-X421823Y166992D02*Y166008D01*

-X436449Y166500D02*X437433D01*

-X436449Y161382D02*X437433D01*

-X473559Y153492D02*Y152508D01*

-X461000Y123492D02*Y122508D01*

-X455882Y123492D02*Y122508D01*

-X473559Y123492D02*Y122508D01*

-X468441Y123492D02*Y122508D01*

-X473559Y93492D02*Y92508D01*

-X468441Y93492D02*Y92508D01*

-X461059Y93492D02*Y92508D01*

-X455941Y93492D02*Y92508D01*

-X473500Y106992D02*Y106008D01*

-X468382Y106992D02*Y106008D01*

-X473500Y136492D02*Y135508D01*

-X468382Y136492D02*Y135508D01*

-X461000Y213492D02*Y212508D01*

-X455882Y213492D02*Y212508D01*

-X461000Y243492D02*Y242508D01*

-X455882Y243492D02*Y242508D01*

-X468382Y226992D02*Y226008D01*

-X468441Y243492D02*Y242508D01*

-Y213492D02*Y212508D01*

-X473500Y196992D02*Y196008D01*

-Y183492D02*Y182508D01*

-X468382Y196992D02*Y196008D01*

-Y183492D02*Y182508D01*

-X461000Y183492D02*Y182508D01*

-X455882Y183492D02*Y182508D01*

-X461000Y273492D02*Y272508D01*

-Y303492D02*Y302508D01*

-X455882Y273492D02*Y272508D01*

-Y303492D02*Y302508D01*

-X436508Y256559D02*X437492D01*

-X436508Y251441D02*X437492D01*

-X437000Y242492D02*Y241508D01*

-X431882Y242492D02*Y241508D01*

-X427059Y226992D02*Y226008D01*

-X436508Y226559D02*X437492D01*

-X436508Y221441D02*X437492D01*

-X421941Y226992D02*Y226008D01*

-X421823Y256992D02*Y256008D01*

-X421882Y242492D02*Y241508D01*

-X414559Y243492D02*Y242508D01*

-X427000Y212492D02*Y211508D01*

-X437000Y212492D02*Y211508D01*

-X431882Y212492D02*Y211508D01*

-X414500Y213492D02*Y212508D01*

-X409382Y213492D02*Y212508D01*

-X421882Y212492D02*Y211508D01*

-X426941Y196492D02*Y195508D01*

-X421823Y196492D02*Y195508D01*

-X437000Y182492D02*Y181508D01*

-X431882Y182492D02*Y181508D01*

-X427000Y182492D02*Y181508D01*

-X421882Y182492D02*Y181508D01*

-X414500Y183492D02*Y182508D01*

-X409382Y183492D02*Y182508D01*

-X473500Y256492D02*Y255508D01*

-X468382Y256492D02*Y255508D01*

-X473677Y273492D02*Y272508D01*

-X468559Y273492D02*Y272508D01*

-X473500Y226992D02*Y226008D01*

-X473559Y243492D02*Y242508D01*

-Y213492D02*Y212508D01*

-Y363492D02*Y362508D01*

-Y333492D02*Y332508D01*

-X473000Y303492D02*Y302508D01*

-X473500Y286992D02*Y286008D01*

-X468382Y286992D02*Y286008D01*

-X467882Y303492D02*Y302508D01*

-X473618Y346992D02*Y346008D01*

-G54D238*X442559Y83075D02*Y78469D01*

-X440000Y83075D02*Y78469D01*

-G54D239*X437441Y83075D02*Y78469D01*

-G54D238*X434882Y83075D02*Y78469D01*

-X432324Y83075D02*Y78469D01*

-X429765Y83075D02*Y78469D01*

-X427206Y83075D02*Y78469D01*

-X424647Y83075D02*Y78469D01*

-G54D237*X440449Y65559D02*X441433D01*

-X440449Y60441D02*X441433D01*

-G54D238*X424647Y106303D02*Y101697D01*

-X427206Y106303D02*Y101697D01*

-X429765Y106303D02*Y101697D01*

-X432324Y106303D02*Y101697D01*

-X434882Y106303D02*Y101697D01*

-X437441Y106303D02*Y101697D01*

-X440000Y106303D02*Y101697D01*

-X442559Y106303D02*Y101697D01*

-G54D237*X461059Y63492D02*Y62508D01*

-X455941Y63492D02*Y62508D01*

-X468441Y63492D02*Y62508D01*

-X473559Y46992D02*Y46008D01*

-X468441Y46992D02*Y46008D01*

-X473559Y63492D02*Y62508D01*

-X473500Y76992D02*Y76008D01*

-X468382Y76992D02*Y76008D01*

-G54D240*X147048Y344543D02*X147834D01*

-X147048Y337457D02*X147834D01*

-G54D241*X136799Y327729D02*Y321129D01*

-X127799Y327729D02*Y321129D01*

-X118699Y327729D02*Y321129D01*

-G54D242*X123299Y348829D02*X132299D01*

-G54D240*X204998Y263293D02*Y262507D01*

-X183148Y235357D02*X183934D01*

-X183148Y242443D02*X183934D01*

-G54D241*X194441Y254200D02*Y247600D01*

-X203441Y254200D02*Y247600D01*

-G54D242*X198941Y226500D02*X207941D01*

-G54D240*X125885Y309222D02*Y308436D01*

-X118799Y309222D02*Y308436D01*

-G54D237*X76949Y49941D02*X77933D01*

-X76949Y55059D02*X77933D01*

-X106949Y49941D02*X107933D01*

-X106949Y55059D02*X107933D01*

-X166949Y49941D02*X167933D01*

-X166949Y55059D02*X167933D01*

-X136949Y49941D02*X137933D01*

-X136949Y55059D02*X137933D01*

-X205681Y269321D02*Y268337D01*

-X210799Y269321D02*Y268337D01*

-G54D240*X212084Y263293D02*Y262507D01*

-G54D241*X212541Y254200D02*Y247600D01*

-G54D243*X287917Y303449D02*Y302465D01*

-G54D237*X293035Y303449D02*Y302465D01*

-G54D244*X386441Y163000D03*

-X400441Y194000D03*

-X389441Y184000D03*

-X400441Y189000D03*

-G54D245*X386023Y157813D03*

-X398441Y173000D03*

-G54D244*X393441Y208000D03*

-G54D245*X358941Y208500D03*

-G54D244*X384162Y188000D03*

-X458441Y195000D03*

-Y164000D03*

-X372441Y170386D03*

-G54D245*X337441Y163000D03*

-X377347Y162178D03*

-X304584Y207483D03*

-X305280Y204383D03*

-X260941Y191500D03*

-X269441Y198500D03*

-X243941Y202000D03*

-X245863Y191524D03*

-G54D244*X432324Y111000D03*

-X446441Y102000D03*

-X434882Y75000D03*

-G54D246*X440941Y123000D03*

-G54D244*X423441Y75000D03*

-G54D245*X434449Y56500D03*

-X440449D03*

-X354441Y85000D03*

-Y89500D03*

-Y95500D03*

-Y101500D03*

-Y107500D03*

-Y113500D03*

-Y119500D03*

-X245441Y127500D03*

-X309441Y141568D03*

-Y136450D03*

-X310941Y115940D03*

-X305696Y107500D03*

-X387441Y119500D03*

-Y113500D03*

-Y107500D03*

-Y101500D03*

-Y95500D03*

-Y89500D03*

-Y85000D03*

-X390941Y76000D03*

-Y71500D03*

-X391441Y66000D03*

-X394941Y58500D03*

-X393941Y51500D03*

-X392441Y45000D03*

-G54D244*X387441Y326000D03*

-X393441Y355000D03*

-X386720Y282000D03*

-X393441Y327000D03*

-X384162Y306000D03*

-X385941Y354500D03*

-X458441Y375000D03*

-X383662Y378500D03*

-X397441Y373000D03*

-X397941Y367441D03*

-G54D245*X385941Y366000D03*

-G54D244*X458441Y345000D03*

-Y315000D03*

-Y285000D03*

-X398441Y314000D03*

-Y309000D03*

-G54D245*Y291000D03*

-G54D244*X372441Y290689D03*

-Y351189D03*

-G54D245*X339837Y341827D03*

-X353390Y339521D03*

-G54D244*X375441Y235000D03*

-G54D245*X356441Y233000D03*

-X338441Y224192D03*

-Y230124D03*

-G54D244*X384512Y258000D03*

-G54D245*X371602Y260228D03*

-G54D244*X458441Y254000D03*

-Y225000D03*

-X387070Y235000D03*

-X398441Y248000D03*

-Y253000D03*

-G54D245*X396441Y235000D03*

-X392188Y239000D03*

-X388207Y247280D03*

-G54D228*X307716Y275075D03*

-X308992Y271971D03*

-X308872Y266522D03*

-X287917Y307829D03*

-X293902Y282263D03*

-X296779Y304963D03*

-X295937Y243628D03*

-G54D245*X304706Y210583D03*

-G54D228*X296727Y256227D03*

-X312157Y300156D03*

-X312122Y295038D03*

-X303365Y330000D03*

-X285430Y325000D03*

-X302941Y340007D03*

-X245557Y279508D03*

-X242456Y293543D03*

-X254740Y298329D03*

-X242168Y298800D03*

-G54D245*X230441Y293000D03*

-X240391Y278564D03*

-G54D228*X266413Y296594D03*

-X263240Y295329D03*

-X262740Y291829D03*

-X260341Y284249D03*

-X264034Y282931D03*

-G54D245*X246731Y303031D03*

-G54D228*X262750Y268772D03*

-X253101Y261836D03*

-X239302Y262235D03*

-G54D245*X221884Y254000D03*

-X224441Y252000D03*

-X225441Y249000D03*

-X224441Y244000D03*

-X230441Y247000D03*

-G54D228*X269653Y298631D03*

-G54D245*X263441Y320000D03*

-G54D228*X268941Y314000D03*

-X273229Y298582D03*

-X278225Y279602D03*

-X278207Y298612D03*

-X277174Y308219D03*

-X277449Y347500D03*

-G54D245*X260568Y316997D03*

-X261502Y307367D03*

-X279441Y285000D03*

-X270441Y336000D03*

-X249101Y328793D03*

-X270441Y342500D03*

-Y349500D03*

-Y357000D03*

-X246941Y238000D03*

-X242441Y229500D03*

-X246441D03*

-X250941D03*

-X236441Y235500D03*

-X224941Y220500D03*

-X225441Y226500D03*

-X224941Y235500D03*

-X269941Y231500D03*

-X251941Y210500D03*

-X163941Y127500D03*

-X193390D03*

-X152441Y121500D03*

-X151941Y132000D03*

-X112222Y127340D03*

-X114441Y121500D03*

-X115441Y132500D03*

-X127941Y148000D03*

-X141441D03*

-X208941D03*

-X223941D03*

-X198441Y122500D03*

-X234441D03*

-X195441Y133000D03*

-X235941D03*

-X128941Y274500D03*

-Y268500D03*

-Y262500D03*

-Y255000D03*

-Y248500D03*

-Y242500D03*

-X162441Y248500D03*

-X161941Y255000D03*

-X181941Y258500D03*

-X162441Y262500D03*

-X198441D03*

-X219441Y272500D03*

-X217441Y279000D03*

-X198441Y269500D03*

-X205441Y277000D03*

-X220729Y265580D03*

-X220441Y259500D03*

-X218441Y261500D03*

-X162441Y242500D03*

-X165941Y231000D03*

-Y226500D03*

-Y220500D03*

-X169441Y214000D03*

-Y208500D03*

-Y201500D03*

-X185441Y228000D03*

-X212941Y238000D03*

-X203941Y237500D03*

-X193941Y237000D03*

-X177441Y228000D03*

-Y217500D03*

-X104441Y204500D03*

-X100941D03*

-X185441Y217500D03*

-X193941Y212500D03*

-X202441D03*

-X210441D03*

-X220441Y215000D03*

-X162941Y268500D03*

-Y274500D03*

-X158441Y323829D03*

-Y328829D03*

-Y326500D03*

-X141307Y300883D03*

-X197441Y314500D03*

-X195441Y311500D03*

-X197441Y308500D03*

-X124831Y302385D03*

-X135441Y338500D03*

-X126441Y340500D03*

-X111941Y341000D03*

-Y357500D03*

-X121941D03*

-X130941D03*

-X135441Y335000D03*

-X111941Y334000D03*

-X117941D03*

-X126441D03*

-X139941Y338000D03*

-X142441Y357500D03*

-Y349500D03*

-X153941Y338000D03*

-X154941Y345500D03*

-X149441Y349500D03*

-X178887Y342818D03*

-X168732Y350833D03*

-X191363Y344449D03*

-X229818Y354988D03*

-G54D226*G54D245*G54D226*G54D245*G54D226*G54D245*G54D247*G54D245*G54D226*G54D245*G54D226*G54D245*G54D226*G54D245*G54D226*G54D245*G54D226*G54D245*G54D226*G54D245*G54D226*M02*

diff --git a/bbb_cape/schematic/gerbers/20131204/cape.bottommask.gbr b/bbb_cape/schematic/gerbers/20131204/cape.bottommask.gbr
deleted file mode 100644
index 1f47cfd..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.bottommask.gbr
+++ /dev/null
@@ -1,668 +0,0 @@
-G04 start of page 9 for group -4062 idx -4062 *

-G04 Title: 971 BBB Cape, soldermask *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Thu Dec  5 05:46:54 2013 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNBOTTOMMASK*%

-%ADD285R,0.0405X0.0405*%

-%ADD284R,0.1280X0.1280*%

-%ADD283R,0.0620X0.0620*%

-%ADD282R,0.0572X0.0572*%

-%ADD281R,0.0280X0.0280*%

-%ADD280R,0.0230X0.0230*%

-%ADD279R,0.0355X0.0355*%

-%ADD278C,0.2300*%

-%ADD277C,0.0860*%

-%ADD276C,0.2400*%

-%ADD275C,0.1890*%

-%ADD274C,0.0001*%

-%ADD273C,0.0710*%

-G54D273*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D274*G36*

-X403450Y357550D02*Y350450D01*

-X410550D01*

-Y357550D01*

-X403450D01*

-G37*

-G54D275*X345799Y357329D03*

-G54D276*X315799Y337329D03*

-G54D275*X85799Y369829D03*

-G54D277*X105799Y374829D03*

-G54D274*G36*

-X101499Y369129D02*Y360529D01*

-X110099D01*

-Y369129D01*

-X101499D01*

-G37*

-G54D277*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D274*G36*

-X449950Y267550D02*Y260450D01*

-X457050D01*

-Y267550D01*

-X449950D01*

-G37*

-G36*

-Y207550D02*Y200450D01*

-X457050D01*

-Y207550D01*

-X449950D01*

-G37*

-G36*

-Y177550D02*Y170450D01*

-X457050D01*

-Y177550D01*

-X449950D01*

-G37*

-G54D273*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D274*G36*

-X449950Y237550D02*Y230450D01*

-X457050D01*

-Y237550D01*

-X449950D01*

-G37*

-G54D273*X463500Y234000D03*

-X473500D03*

-G54D274*G36*

-X449950Y147550D02*Y140450D01*

-X457050D01*

-Y147550D01*

-X449950D01*

-G37*

-G36*

-Y117550D02*Y110450D01*

-X457050D01*

-Y117550D01*

-X449950D01*

-G37*

-G36*

-Y87550D02*Y80450D01*

-X457050D01*

-Y87550D01*

-X449950D01*

-G37*

-G36*

-Y57550D02*Y50450D01*

-X457050D01*

-Y57550D01*

-X449950D01*

-G37*

-G54D273*X463500Y54000D03*

-X473500D03*

-G54D274*G36*

-X449950Y327550D02*Y320450D01*

-X457050D01*

-Y327550D01*

-X449950D01*

-G37*

-G54D273*X463500Y324000D03*

-X473500D03*

-G54D274*G36*

-X449950Y297550D02*Y290450D01*

-X457050D01*

-Y297550D01*

-X449950D01*

-G37*

-G54D273*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D274*G36*

-X308891Y252550D02*Y245450D01*

-X315991D01*

-Y252550D01*

-X308891D01*

-G37*

-G54D273*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D278*X345799Y192329D03*

-G54D275*X353000Y150000D03*

-G54D274*G36*

-X449950Y387550D02*Y380450D01*

-X457050D01*

-Y387550D01*

-X449950D01*

-G37*

-G54D273*X463500Y384000D03*

-X473500D03*

-G54D274*G36*

-X403450Y387550D02*Y380450D01*

-X410550D01*

-Y387550D01*

-X403450D01*

-G37*

-G36*

-Y297550D02*Y290450D01*

-X410550D01*

-Y297550D01*

-X403450D01*

-G37*

-G36*

-Y327550D02*Y320450D01*

-X410550D01*

-Y327550D01*

-X403450D01*

-G37*

-G54D273*X417000Y324000D03*

-X427000D03*

-G54D274*G36*

-X449950Y357550D02*Y350450D01*

-X457050D01*

-Y357550D01*

-X449950D01*

-G37*

-G54D273*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D274*G36*

-X403450Y177550D02*Y170450D01*

-X410550D01*

-Y177550D01*

-X403450D01*

-G37*

-G36*

-Y207550D02*Y200450D01*

-X410550D01*

-Y207550D01*

-X403450D01*

-G37*

-G36*

-Y237550D02*Y230450D01*

-X410550D01*

-Y237550D01*

-X403450D01*

-G37*

-G36*

-Y267550D02*Y260450D01*

-X410550D01*

-Y267550D01*

-X403450D01*

-G37*

-G54D273*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D274*G36*

-X201891Y51050D02*Y43950D01*

-X208991D01*

-Y51050D01*

-X201891D01*

-G37*

-G54D273*X205441Y57500D03*

-Y67500D03*

-G54D274*G36*

-X231891Y51050D02*Y43950D01*

-X238991D01*

-Y51050D01*

-X231891D01*

-G37*

-G54D273*X235441Y57500D03*

-Y67500D03*

-G54D274*G36*

-X261891Y51050D02*Y43950D01*

-X268991D01*

-Y51050D01*

-X261891D01*

-G37*

-G36*

-X171891D02*Y43950D01*

-X178991D01*

-Y51050D01*

-X171891D01*

-G37*

-G36*

-X141891D02*Y43950D01*

-X148991D01*

-Y51050D01*

-X141891D01*

-G37*

-G36*

-X111891D02*Y43950D01*

-X118991D01*

-Y51050D01*

-X111891D01*

-G37*

-G36*

-X81891D02*Y43950D01*

-X88991D01*

-Y51050D01*

-X81891D01*

-G37*

-G54D273*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D274*G36*

-X291891Y51050D02*Y43950D01*

-X298991D01*

-Y51050D01*

-X291891D01*

-G37*

-G54D273*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D275*X85799Y179829D03*

-G54D277*X105799Y184829D03*

-G54D274*G36*

-X101499Y179129D02*Y170529D01*

-X110099D01*

-Y179129D01*

-X101499D01*

-G37*

-G54D277*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D274*G36*

-X81891Y243550D02*Y236450D01*

-X88991D01*

-Y243550D01*

-X81891D01*

-G37*

-G54D273*X85441Y230000D03*

-Y220000D03*

-G54D277*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D274*G36*

-X191499Y201629D02*Y193029D01*

-X200099D01*

-Y201629D01*

-X191499D01*

-G37*

-G54D277*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D279*X397949Y205559D02*X398933D01*

-X397949Y200441D02*X398933D01*

-G54D280*X376485Y195917D02*Y191311D01*

-X379044Y195917D02*Y191311D01*

-X381603Y195917D02*Y191311D01*

-X384162Y195917D02*Y191311D01*

-X386720Y195917D02*Y191311D01*

-X389279Y195917D02*Y191311D01*

-X391838Y195917D02*Y191311D01*

-X394397Y195917D02*Y191311D01*

-G54D279*X436449Y311382D02*X437433D01*

-X427000Y302492D02*Y301508D01*

-X421882Y302492D02*Y301508D01*

-X437000Y302492D02*Y301508D01*

-X431882Y302492D02*Y301508D01*

-X436508Y286559D02*X437492D01*

-X414500Y303492D02*Y302508D01*

-X409382Y303492D02*Y302508D01*

-X426941Y286992D02*Y286008D01*

-X427000Y272492D02*Y271508D01*

-X426941Y256992D02*Y256008D01*

-X427000Y242492D02*Y241508D01*

-X421823Y286992D02*Y286008D01*

-X421882Y272492D02*Y271508D01*

-X414559Y273492D02*Y272508D01*

-X409441Y273492D02*Y272508D01*

-X436508Y281441D02*X437492D01*

-X437000Y272492D02*Y271508D01*

-X431882Y272492D02*Y271508D01*

-X409441Y243492D02*Y242508D01*

-X436508Y196559D02*X437492D01*

-X436508Y191441D02*X437492D01*

-X434449Y65559D02*X435433D01*

-X434449Y60441D02*X435433D01*

-G54D280*X394747Y231460D02*Y226854D01*

-X392188Y231460D02*Y226854D01*

-X389629Y231460D02*Y226854D01*

-X387070Y231460D02*Y226854D01*

-X384512Y231460D02*Y226854D01*

-X381953Y231460D02*Y226854D01*

-X379394Y231460D02*Y226854D01*

-X376835Y231460D02*Y226854D01*

-Y254688D02*Y250082D01*

-X379394Y254688D02*Y250082D01*

-X381953Y254688D02*Y250082D01*

-X384512Y254688D02*Y250082D01*

-X387070Y254688D02*Y250082D01*

-X389629Y254688D02*Y250082D01*

-X392188Y254688D02*Y250082D01*

-X391838Y290689D02*Y286083D01*

-X394747Y254688D02*Y250082D01*

-X394397Y290689D02*Y286083D01*

-X389279Y290689D02*Y286083D01*

-X386720Y290689D02*Y286083D01*

-X384162Y290689D02*Y286083D01*

-X381603Y290689D02*Y286083D01*

-X379044Y290689D02*Y286083D01*

-X376485Y290689D02*Y286083D01*

-X393897Y351189D02*Y346583D01*

-X391338Y351189D02*Y346583D01*

-X388779Y351189D02*Y346583D01*

-X386220Y351189D02*Y346583D01*

-X383662Y351189D02*Y346583D01*

-X381103Y351189D02*Y346583D01*

-X378544Y351189D02*Y346583D01*

-X375985Y351189D02*Y346583D01*

-G54D279*X397949Y324559D02*X398933D01*

-X397949Y319441D02*X398933D01*

-G54D280*X384162Y313917D02*Y309311D01*

-X386720Y313917D02*Y309311D01*

-X381603Y313917D02*Y309311D01*

-X376485Y313917D02*Y309311D01*

-X379044Y313917D02*Y309311D01*

-X389279Y313917D02*Y309311D01*

-X391838Y313917D02*Y309311D01*

-X394397Y313917D02*Y309311D01*

-G54D279*X286949Y49941D02*X287933D01*

-X256949D02*X257933D01*

-X226949D02*X227933D01*

-X196949D02*X197933D01*

-X286949Y55059D02*X287933D01*

-X256949D02*X257933D01*

-X226949D02*X227933D01*

-X196949D02*X197933D01*

-X461000Y393492D02*Y392508D01*

-X455882Y393492D02*Y392508D01*

-X461059Y363492D02*Y362508D01*

-X473500Y376992D02*Y376008D01*

-X468382Y376992D02*Y376008D01*

-X468441Y363492D02*Y362508D01*

-X468500Y346992D02*Y346008D01*

-X455941Y363492D02*Y362508D01*

-X461000Y333492D02*Y332508D01*

-X455882Y333492D02*Y332508D01*

-X473500Y316992D02*Y316008D01*

-X468382Y316992D02*Y316008D01*

-X468441Y333492D02*Y332508D01*

-X473559Y393492D02*Y392508D01*

-X468441Y393492D02*Y392508D01*

-X427000Y392492D02*Y391508D01*

-X426941Y346992D02*Y346008D01*

-X427118Y377051D02*Y376067D01*

-X421882Y392492D02*Y391508D01*

-X421823Y346992D02*Y346008D01*

-X422000Y377051D02*Y376067D01*

-X427000Y362492D02*Y361508D01*

-X421882Y362492D02*Y361508D01*

-X414500Y363492D02*Y362508D01*

-X409382Y363492D02*Y362508D01*

-X437000Y362492D02*Y361508D01*

-X431882Y362492D02*Y361508D01*

-X436449Y346618D02*X437433D01*

-X437059Y392610D02*Y391626D01*

-X436449Y376618D02*X437433D01*

-X436449Y371500D02*X437433D01*

-X431941Y392610D02*Y391626D01*

-X414559Y393610D02*Y392626D01*

-X409441Y393610D02*Y392626D01*

-X436449Y341500D02*X437433D01*

-X427000Y332492D02*Y331508D01*

-X437000Y332492D02*Y331508D01*

-X431882Y332492D02*Y331508D01*

-X426941Y316992D02*Y316008D01*

-X421823Y316992D02*Y316008D01*

-X436449Y316500D02*X437433D01*

-X414500Y333492D02*Y332508D01*

-X409382Y333492D02*Y332508D01*

-X421882Y332492D02*Y331508D01*

-G54D280*X375985Y374417D02*Y369811D01*

-X378544Y374417D02*Y369811D01*

-X381103Y374417D02*Y369811D01*

-X383662Y374417D02*Y369811D01*

-X386220Y374417D02*Y369811D01*

-X388779Y374417D02*Y369811D01*

-X391338Y374417D02*Y369811D01*

-X393897Y374417D02*Y369811D01*

-X394397Y172689D02*Y168083D01*

-X391838Y172689D02*Y168083D01*

-X389279Y172689D02*Y168083D01*

-X386720Y172689D02*Y168083D01*

-X384162Y172689D02*Y168083D01*

-X381603Y172689D02*Y168083D01*

-X379044Y172689D02*Y168083D01*

-X376485Y172689D02*Y168083D01*

-G54D279*X461000Y153492D02*Y152508D01*

-X473500Y166492D02*Y165508D01*

-X468382Y166492D02*Y165508D01*

-X468441Y153492D02*Y152508D01*

-X455882Y153492D02*Y152508D01*

-X426941Y166992D02*Y166008D01*

-X421823Y166992D02*Y166008D01*

-X436449Y166500D02*X437433D01*

-X436449Y161382D02*X437433D01*

-X473559Y153492D02*Y152508D01*

-X461000Y123492D02*Y122508D01*

-X455882Y123492D02*Y122508D01*

-X473559Y123492D02*Y122508D01*

-X468441Y123492D02*Y122508D01*

-X473559Y93492D02*Y92508D01*

-X468441Y93492D02*Y92508D01*

-X461059Y93492D02*Y92508D01*

-X455941Y93492D02*Y92508D01*

-X473500Y106992D02*Y106008D01*

-X468382Y106992D02*Y106008D01*

-X473500Y136492D02*Y135508D01*

-X468382Y136492D02*Y135508D01*

-X461000Y213492D02*Y212508D01*

-X455882Y213492D02*Y212508D01*

-X461000Y243492D02*Y242508D01*

-X455882Y243492D02*Y242508D01*

-X468382Y226992D02*Y226008D01*

-X468441Y243492D02*Y242508D01*

-Y213492D02*Y212508D01*

-X473500Y196992D02*Y196008D01*

-Y183492D02*Y182508D01*

-X468382Y196992D02*Y196008D01*

-Y183492D02*Y182508D01*

-X461000Y183492D02*Y182508D01*

-X455882Y183492D02*Y182508D01*

-X461000Y273492D02*Y272508D01*

-Y303492D02*Y302508D01*

-X455882Y273492D02*Y272508D01*

-Y303492D02*Y302508D01*

-X436508Y256559D02*X437492D01*

-X436508Y251441D02*X437492D01*

-X437000Y242492D02*Y241508D01*

-X431882Y242492D02*Y241508D01*

-X427059Y226992D02*Y226008D01*

-X436508Y226559D02*X437492D01*

-X436508Y221441D02*X437492D01*

-X421941Y226992D02*Y226008D01*

-X421823Y256992D02*Y256008D01*

-X421882Y242492D02*Y241508D01*

-X414559Y243492D02*Y242508D01*

-X427000Y212492D02*Y211508D01*

-X437000Y212492D02*Y211508D01*

-X431882Y212492D02*Y211508D01*

-X414500Y213492D02*Y212508D01*

-X409382Y213492D02*Y212508D01*

-X421882Y212492D02*Y211508D01*

-X426941Y196492D02*Y195508D01*

-X421823Y196492D02*Y195508D01*

-X437000Y182492D02*Y181508D01*

-X431882Y182492D02*Y181508D01*

-X427000Y182492D02*Y181508D01*

-X421882Y182492D02*Y181508D01*

-X414500Y183492D02*Y182508D01*

-X409382Y183492D02*Y182508D01*

-X473500Y256492D02*Y255508D01*

-X468382Y256492D02*Y255508D01*

-X473677Y273492D02*Y272508D01*

-X468559Y273492D02*Y272508D01*

-X473500Y226992D02*Y226008D01*

-X473559Y243492D02*Y242508D01*

-Y213492D02*Y212508D01*

-Y363492D02*Y362508D01*

-Y333492D02*Y332508D01*

-X473000Y303492D02*Y302508D01*

-X473500Y286992D02*Y286008D01*

-X468382Y286992D02*Y286008D01*

-X467882Y303492D02*Y302508D01*

-X473618Y346992D02*Y346008D01*

-G54D280*X442559Y83075D02*Y78469D01*

-X440000Y83075D02*Y78469D01*

-G54D281*X437441Y83075D02*Y78469D01*

-G54D280*X434882Y83075D02*Y78469D01*

-X432324Y83075D02*Y78469D01*

-X429765Y83075D02*Y78469D01*

-X427206Y83075D02*Y78469D01*

-X424647Y83075D02*Y78469D01*

-G54D279*X440449Y65559D02*X441433D01*

-X440449Y60441D02*X441433D01*

-G54D280*X424647Y106303D02*Y101697D01*

-X427206Y106303D02*Y101697D01*

-X429765Y106303D02*Y101697D01*

-X432324Y106303D02*Y101697D01*

-X434882Y106303D02*Y101697D01*

-X437441Y106303D02*Y101697D01*

-X440000Y106303D02*Y101697D01*

-X442559Y106303D02*Y101697D01*

-G54D279*X461059Y63492D02*Y62508D01*

-X455941Y63492D02*Y62508D01*

-X468441Y63492D02*Y62508D01*

-X473559Y46992D02*Y46008D01*

-X468441Y46992D02*Y46008D01*

-X473559Y63492D02*Y62508D01*

-X473500Y76992D02*Y76008D01*

-X468382Y76992D02*Y76008D01*

-G54D282*X147048Y344543D02*X147834D01*

-X147048Y337457D02*X147834D01*

-G54D283*X136799Y327729D02*Y321129D01*

-X127799Y327729D02*Y321129D01*

-X118699Y327729D02*Y321129D01*

-G54D284*X123299Y348829D02*X132299D01*

-G54D282*X204998Y263293D02*Y262507D01*

-X183148Y235357D02*X183934D01*

-X183148Y242443D02*X183934D01*

-G54D283*X194441Y254200D02*Y247600D01*

-X203441Y254200D02*Y247600D01*

-G54D284*X198941Y226500D02*X207941D01*

-G54D282*X125885Y309222D02*Y308436D01*

-X118799Y309222D02*Y308436D01*

-G54D279*X76949Y49941D02*X77933D01*

-X76949Y55059D02*X77933D01*

-X106949Y49941D02*X107933D01*

-X106949Y55059D02*X107933D01*

-X166949Y49941D02*X167933D01*

-X166949Y55059D02*X167933D01*

-X136949Y49941D02*X137933D01*

-X136949Y55059D02*X137933D01*

-X205681Y269321D02*Y268337D01*

-X210799Y269321D02*Y268337D01*

-G54D282*X212084Y263293D02*Y262507D01*

-G54D283*X212541Y254200D02*Y247600D01*

-G54D285*X287917Y303449D02*Y302465D01*

-G54D279*X293035Y303449D02*Y302465D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20131204/cape.bottompaste.gbr b/bbb_cape/schematic/gerbers/20131204/cape.bottompaste.gbr
deleted file mode 100644
index 931d268..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.bottompaste.gbr
+++ /dev/null
@@ -1,295 +0,0 @@
-G04 start of page 13 for group -4014 idx -4014 *

-G04 Title: 971 BBB Cape, bottompaste *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Thu Dec  5 05:46:54 2013 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNBOTTOMPASTE*%

-%ADD313R,0.1220X0.1220*%

-%ADD312R,0.0560X0.0560*%

-%ADD311R,0.0345X0.0345*%

-%ADD310R,0.0512X0.0512*%

-%ADD309R,0.0180X0.0180*%

-%ADD308R,0.0295X0.0295*%

-%ADD307R,0.0130X0.0130*%

-G54D307*X394397Y172689D02*Y168083D01*

-X391838Y172689D02*Y168083D01*

-X389279Y172689D02*Y168083D01*

-X386720Y172689D02*Y168083D01*

-X384162Y172689D02*Y168083D01*

-X381603Y172689D02*Y168083D01*

-X379044Y172689D02*Y168083D01*

-X376485Y172689D02*Y168083D01*

-Y195917D02*Y191311D01*

-X379044Y195917D02*Y191311D01*

-X381603Y195917D02*Y191311D01*

-X384162Y195917D02*Y191311D01*

-X386720Y195917D02*Y191311D01*

-X389279Y195917D02*Y191311D01*

-X391838Y195917D02*Y191311D01*

-X394397Y195917D02*Y191311D01*

-G54D308*X397949Y324559D02*X398933D01*

-X397949Y319441D02*X398933D01*

-G54D307*X424647Y106303D02*Y101697D01*

-X427206Y106303D02*Y101697D01*

-X429765Y106303D02*Y101697D01*

-X432324Y106303D02*Y101697D01*

-X434882Y106303D02*Y101697D01*

-X437441Y106303D02*Y101697D01*

-X440000Y106303D02*Y101697D01*

-X442559Y106303D02*Y101697D01*

-Y83075D02*Y78469D01*

-X440000Y83075D02*Y78469D01*

-G54D309*X437441Y83075D02*Y78469D01*

-G54D307*X434882Y83075D02*Y78469D01*

-X432324Y83075D02*Y78469D01*

-X429765Y83075D02*Y78469D01*

-X427206Y83075D02*Y78469D01*

-X424647Y83075D02*Y78469D01*

-G54D308*X427000Y392492D02*Y391508D01*

-X421882Y392492D02*Y391508D01*

-X461000Y153492D02*Y152508D01*

-X455882Y153492D02*Y152508D01*

-X461059Y63492D02*Y62508D01*

-X455941Y63492D02*Y62508D01*

-X461000Y123492D02*Y122508D01*

-X455882Y123492D02*Y122508D01*

-X461000Y213492D02*Y212508D01*

-X455882Y213492D02*Y212508D01*

-X461000Y243492D02*Y242508D01*

-X455882Y243492D02*Y242508D01*

-X461000Y393492D02*Y392508D01*

-X455882Y393492D02*Y392508D01*

-X461059Y363492D02*Y362508D01*

-X455941Y363492D02*Y362508D01*

-X461000Y333492D02*Y332508D01*

-X455882Y333492D02*Y332508D01*

-X473500Y376992D02*Y376008D01*

-X468382Y376992D02*Y376008D01*

-X473500Y316992D02*Y316008D01*

-X468382Y316992D02*Y316008D01*

-X473500Y286992D02*Y286008D01*

-X468382Y286992D02*Y286008D01*

-X473500Y256492D02*Y255508D01*

-X468382Y256492D02*Y255508D01*

-X473500Y226992D02*Y226008D01*

-X468382Y226992D02*Y226008D01*

-X473500Y196992D02*Y196008D01*

-X468382Y196992D02*Y196008D01*

-X473500Y166492D02*Y165508D01*

-X468382Y166492D02*Y165508D01*

-X427000Y362492D02*Y361508D01*

-X421882Y362492D02*Y361508D01*

-X437000Y362492D02*Y361508D01*

-X431882Y362492D02*Y361508D01*

-X426941Y346992D02*Y346008D01*

-X421823Y346992D02*Y346008D01*

-X414500Y363492D02*Y362508D01*

-X409382Y363492D02*Y362508D01*

-X436449Y346618D02*X437433D01*

-X436449Y341500D02*X437433D01*

-X426941Y316992D02*Y316008D01*

-X421823Y316992D02*Y316008D01*

-X436449Y316500D02*X437433D01*

-X436449Y311382D02*X437433D01*

-X414500Y333492D02*Y332508D01*

-X409382Y333492D02*Y332508D01*

-X427000Y332492D02*Y331508D01*

-X421882Y332492D02*Y331508D01*

-X437000Y332492D02*Y331508D01*

-X431882Y332492D02*Y331508D01*

-X427000Y302492D02*Y301508D01*

-X421882Y302492D02*Y301508D01*

-X437000Y302492D02*Y301508D01*

-X431882Y302492D02*Y301508D01*

-X426941Y286992D02*Y286008D01*

-X421823Y286992D02*Y286008D01*

-X436508Y286559D02*X437492D01*

-X436508Y281441D02*X437492D01*

-X414500Y303492D02*Y302508D01*

-X409382Y303492D02*Y302508D01*

-X427000Y272492D02*Y271508D01*

-X421882Y272492D02*Y271508D01*

-X437000Y272492D02*Y271508D01*

-X431882Y272492D02*Y271508D01*

-X426941Y256992D02*Y256008D01*

-X421823Y256992D02*Y256008D01*

-X436508Y256559D02*X437492D01*

-X436508Y251441D02*X437492D01*

-X414559Y273492D02*Y272508D01*

-X409441Y273492D02*Y272508D01*

-X427000Y242492D02*Y241508D01*

-X421882Y242492D02*Y241508D01*

-X437000Y242492D02*Y241508D01*

-X431882Y242492D02*Y241508D01*

-X427059Y226992D02*Y226008D01*

-X421941Y226992D02*Y226008D01*

-X436508Y226559D02*X437492D01*

-X436508Y221441D02*X437492D01*

-X414559Y243492D02*Y242508D01*

-X409441Y243492D02*Y242508D01*

-X427000Y212492D02*Y211508D01*

-X421882Y212492D02*Y211508D01*

-X437000Y212492D02*Y211508D01*

-X431882Y212492D02*Y211508D01*

-X426941Y196492D02*Y195508D01*

-X421823Y196492D02*Y195508D01*

-X414500Y213492D02*Y212508D01*

-X409382Y213492D02*Y212508D01*

-X437000Y182492D02*Y181508D01*

-X431882Y182492D02*Y181508D01*

-X427000Y182492D02*Y181508D01*

-X421882Y182492D02*Y181508D01*

-X426941Y166992D02*Y166008D01*

-X421823Y166992D02*Y166008D01*

-X436449Y166500D02*X437433D01*

-X436449Y161382D02*X437433D01*

-X414500Y183492D02*Y182508D01*

-X409382Y183492D02*Y182508D01*

-X437059Y392610D02*Y391626D01*

-X431941Y392610D02*Y391626D01*

-X427118Y377051D02*Y376067D01*

-X422000Y377051D02*Y376067D01*

-X414559Y393610D02*Y392626D01*

-X409441Y393610D02*Y392626D01*

-X473559Y123492D02*Y122508D01*

-X468441Y123492D02*Y122508D01*

-X473559Y153492D02*Y152508D01*

-X468441Y153492D02*Y152508D01*

-X473559Y93492D02*Y92508D01*

-X468441Y93492D02*Y92508D01*

-X473559Y63492D02*Y62508D01*

-X468441Y63492D02*Y62508D01*

-X473559Y243492D02*Y242508D01*

-X468441Y243492D02*Y242508D01*

-X473677Y273492D02*Y272508D01*

-X468559Y273492D02*Y272508D01*

-X473559Y213492D02*Y212508D01*

-X468441Y213492D02*Y212508D01*

-X473500Y183492D02*Y182508D01*

-X468382Y183492D02*Y182508D01*

-X473559Y363492D02*Y362508D01*

-X468441Y363492D02*Y362508D01*

-X473559Y333492D02*Y332508D01*

-X468441Y333492D02*Y332508D01*

-X473000Y303492D02*Y302508D01*

-X467882Y303492D02*Y302508D01*

-X473559Y393492D02*Y392508D01*

-X468441Y393492D02*Y392508D01*

-X436508Y196559D02*X437492D01*

-X436508Y191441D02*X437492D01*

-X436449Y376618D02*X437433D01*

-X436449Y371500D02*X437433D01*

-X397949Y205559D02*X398933D01*

-X397949Y200441D02*X398933D01*

-X461059Y93492D02*Y92508D01*

-X455941Y93492D02*Y92508D01*

-X473559Y46992D02*Y46008D01*

-X468441Y46992D02*Y46008D01*

-X473500Y76992D02*Y76008D01*

-X468382Y76992D02*Y76008D01*

-X473500Y106992D02*Y106008D01*

-X468382Y106992D02*Y106008D01*

-X473500Y136492D02*Y135508D01*

-X468382Y136492D02*Y135508D01*

-X461000Y273492D02*Y272508D01*

-X455882Y273492D02*Y272508D01*

-X461000Y183492D02*Y182508D01*

-X455882Y183492D02*Y182508D01*

-X473618Y346992D02*Y346008D01*

-X468500Y346992D02*Y346008D01*

-X461000Y303492D02*Y302508D01*

-X455882Y303492D02*Y302508D01*

-X205681Y269321D02*Y268337D01*

-X210799Y269321D02*Y268337D01*

-G54D310*X147048Y344543D02*X147834D01*

-X147048Y337457D02*X147834D01*

-X125885Y309222D02*Y308436D01*

-X118799Y309222D02*Y308436D01*

-G54D311*X287917Y303449D02*Y302465D01*

-G54D308*X293035Y303449D02*Y302465D01*

-G54D310*X183148Y235357D02*X183934D01*

-X183148Y242443D02*X183934D01*

-X204998Y263293D02*Y262507D01*

-X212084Y263293D02*Y262507D01*

-G54D312*X194441Y254200D02*Y247600D01*

-X203441Y254200D02*Y247600D01*

-X212541Y254200D02*Y247600D01*

-G54D313*X198941Y226500D02*X207941D01*

-G54D308*X76949Y49941D02*X77933D01*

-X76949Y55059D02*X77933D01*

-X286949Y49941D02*X287933D01*

-X286949Y55059D02*X287933D01*

-X256949Y49941D02*X257933D01*

-X256949Y55059D02*X257933D01*

-X226949Y49941D02*X227933D01*

-X226949Y55059D02*X227933D01*

-X196949Y49941D02*X197933D01*

-X196949Y55059D02*X197933D01*

-X166949Y49941D02*X167933D01*

-X166949Y55059D02*X167933D01*

-X136949Y49941D02*X137933D01*

-X136949Y55059D02*X137933D01*

-X106949Y49941D02*X107933D01*

-X106949Y55059D02*X107933D01*

-X440449Y65559D02*X441433D01*

-X440449Y60441D02*X441433D01*

-X434449Y65559D02*X435433D01*

-X434449Y60441D02*X435433D01*

-G54D312*X136799Y327729D02*Y321129D01*

-X127799Y327729D02*Y321129D01*

-X118699Y327729D02*Y321129D01*

-G54D313*X123299Y348829D02*X132299D01*

-G54D307*X394747Y231460D02*Y226854D01*

-X392188Y231460D02*Y226854D01*

-X389629Y231460D02*Y226854D01*

-X387070Y231460D02*Y226854D01*

-X384512Y231460D02*Y226854D01*

-X381953Y231460D02*Y226854D01*

-X379394Y231460D02*Y226854D01*

-X376835Y231460D02*Y226854D01*

-Y254688D02*Y250082D01*

-X379394Y254688D02*Y250082D01*

-X381953Y254688D02*Y250082D01*

-X384512Y254688D02*Y250082D01*

-X387070Y254688D02*Y250082D01*

-X389629Y254688D02*Y250082D01*

-X392188Y254688D02*Y250082D01*

-X394747Y254688D02*Y250082D01*

-X394397Y290689D02*Y286083D01*

-X391838Y290689D02*Y286083D01*

-X389279Y290689D02*Y286083D01*

-X386720Y290689D02*Y286083D01*

-X384162Y290689D02*Y286083D01*

-X381603Y290689D02*Y286083D01*

-X379044Y290689D02*Y286083D01*

-X376485Y290689D02*Y286083D01*

-Y313917D02*Y309311D01*

-X379044Y313917D02*Y309311D01*

-X381603Y313917D02*Y309311D01*

-X384162Y313917D02*Y309311D01*

-X386720Y313917D02*Y309311D01*

-X389279Y313917D02*Y309311D01*

-X391838Y313917D02*Y309311D01*

-X394397Y313917D02*Y309311D01*

-X393897Y351189D02*Y346583D01*

-X391338Y351189D02*Y346583D01*

-X388779Y351189D02*Y346583D01*

-X386220Y351189D02*Y346583D01*

-X383662Y351189D02*Y346583D01*

-X381103Y351189D02*Y346583D01*

-X378544Y351189D02*Y346583D01*

-X375985Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X378544Y374417D02*Y369811D01*

-X381103Y374417D02*Y369811D01*

-X383662Y374417D02*Y369811D01*

-X386220Y374417D02*Y369811D01*

-X388779Y374417D02*Y369811D01*

-X391338Y374417D02*Y369811D01*

-X393897Y374417D02*Y369811D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20131204/cape.bottomsilk.gbr b/bbb_cape/schematic/gerbers/20131204/cape.bottomsilk.gbr
deleted file mode 100644
index 63245b3..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.bottomsilk.gbr
+++ /dev/null
@@ -1,60 +0,0 @@
-G04 start of page 11 for group -4078 idx -4078 *

-G04 Title: 971 BBB Cape, bottomsilk *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Thu Dec  5 05:46:54 2013 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNBOTTOMSILK*%

-%ADD296C,0.0080*%

-%ADD295C,0.0100*%

-G54D295*X422997Y107952D02*X444209D01*

-Y76820D01*

-X422997D02*X444209D01*

-X422997Y107952D02*Y94886D01*

-Y89886D02*Y76820D01*

-Y89886D02*G75*G03X422997Y94886I0J2500D01*G01*

-X374335Y344934D02*X395547D01*

-X374335Y376066D02*Y344934D01*

-Y376066D02*X395547D01*

-Y358000D02*Y344934D01*

-Y376066D02*Y363000D01*

-G75*G03X395547Y358000I0J-2500D01*G01*

-X374835Y284434D02*X396047D01*

-X374835Y315566D02*Y284434D01*

-Y315566D02*X396047D01*

-Y297500D02*Y284434D01*

-Y315566D02*Y302500D01*

-G75*G03X396047Y297500I0J-2500D01*G01*

-G54D296*X144686Y341393D02*Y340607D01*

-X150196Y341393D02*Y340607D01*

-X121949Y311584D02*X122735D01*

-X121949Y306074D02*X122735D01*

-G54D295*X141999Y357329D02*Y315929D01*

-X113499D02*X141999D01*

-X113499Y357329D02*Y315929D01*

-Y357329D02*X141999D01*

-G54D296*X186296Y238507D02*Y239293D01*

-X180786Y238507D02*Y239293D01*

-X208148Y260145D02*X208934D01*

-X208148Y265655D02*X208934D01*

-G54D295*X189241Y218000D02*Y259400D01*

-X217741D01*

-Y218000D01*

-X189241D01*

-X374835Y166434D02*X396047D01*

-X374835Y197566D02*Y166434D01*

-Y197566D02*X396047D01*

-Y179500D02*Y166434D01*

-Y197566D02*Y184500D01*

-G75*G03X396047Y179500I0J-2500D01*G01*

-X375185Y225205D02*X396397D01*

-X375185Y256337D02*Y225205D01*

-Y256337D02*X396397D01*

-Y238271D02*Y225205D01*

-Y256337D02*Y243271D01*

-G75*G03X396397Y238271I0J-2500D01*G01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20131204/cape.fab.gbr b/bbb_cape/schematic/gerbers/20131204/cape.fab.gbr
deleted file mode 100644
index f17ed9c..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.fab.gbr
+++ /dev/null
@@ -1,3010 +0,0 @@
-G04 start of page 14 for group -3984 idx -3984 *

-G04 Title: 971 BBB Cape, fab *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Thu Dec  5 05:46:54 2013 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNFAB*%

-%ADD318C,0.0100*%

-%ADD317C,0.0075*%

-%ADD316C,0.0060*%

-%ADD315R,0.0080X0.0080*%

-%ADD314C,0.0001*%

-G54D314*G36*

-X313399Y340295D02*X318765Y334929D01*

-X318199Y334363D01*

-X312833Y339729D01*

-X313399Y340295D01*

-G37*

-G36*

-X312833Y334929D02*X318199Y340295D01*

-X318765Y339729D01*

-X313399Y334363D01*

-X312833Y334929D01*

-G37*

-G54D315*X314199Y338929D02*X317399D01*

-X314199D02*Y335729D01*

-X317399D01*

-Y338929D02*Y335729D01*

-G54D314*G36*

-X12600Y414216D02*X17966Y408850D01*

-X17400Y408284D01*

-X12034Y413650D01*

-X12600Y414216D01*

-G37*

-G36*

-X12034Y408850D02*X17400Y414216D01*

-X17966Y413650D01*

-X12600Y408284D01*

-X12034Y408850D01*

-G37*

-G54D315*X13400Y412850D02*X16600D01*

-X13400D02*Y409650D01*

-X16600D01*

-Y412850D02*Y409650D01*

-G54D316*X135000Y413500D02*X136500Y410500D01*

-X138000Y413500D01*

-X136500Y410500D02*Y407500D01*

-X139800Y410800D02*X142050D01*

-X139800Y407500D02*X142800D01*

-X139800Y413500D02*Y407500D01*

-Y413500D02*X142800D01*

-X147600D02*X148350Y412750D01*

-X145350Y413500D02*X147600D01*

-X144600Y412750D02*X145350Y413500D01*

-X144600Y412750D02*Y411250D01*

-X145350Y410500D01*

-X147600D01*

-X148350Y409750D01*

-Y408250D01*

-X147600Y407500D02*X148350Y408250D01*

-X145350Y407500D02*X147600D01*

-X144600Y408250D02*X145350Y407500D01*

-X98000Y412300D02*X99200Y413500D01*

-Y407500D01*

-X98000D02*X100250D01*

-X45000Y408250D02*X45750Y407500D01*

-X45000Y412750D02*Y408250D01*

-Y412750D02*X45750Y413500D01*

-X47250D01*

-X48000Y412750D01*

-Y408250D01*

-X47250Y407500D02*X48000Y408250D01*

-X45750Y407500D02*X47250D01*

-X45000Y409000D02*X48000Y412000D01*

-X49800Y407500D02*X50550D01*

-X52350Y412750D02*X53100Y413500D01*

-X55350D01*

-X56100Y412750D01*

-Y411250D01*

-X52350Y407500D02*X56100Y411250D01*

-X52350Y407500D02*X56100D01*

-X57900Y408250D02*X58650Y407500D01*

-X57900Y412750D02*Y408250D01*

-Y412750D02*X58650Y413500D01*

-X60150D01*

-X60900Y412750D01*

-Y408250D01*

-X60150Y407500D02*X60900Y408250D01*

-X58650Y407500D02*X60150D01*

-X57900Y409000D02*X60900Y412000D01*

-X62700Y408250D02*X63450Y407500D01*

-X62700Y412750D02*Y408250D01*

-Y412750D02*X63450Y413500D01*

-X64950D01*

-X65700Y412750D01*

-Y408250D01*

-X64950Y407500D02*X65700Y408250D01*

-X63450Y407500D02*X64950D01*

-X62700Y409000D02*X65700Y412000D01*

-X345799Y195529D02*Y189129D01*

-X342599Y192329D02*X348999D01*

-X344199Y193929D02*X347399D01*

-X344199D02*Y190729D01*

-X347399D01*

-Y193929D02*Y190729D01*

-X15000Y429450D02*Y423050D01*

-X11800Y426250D02*X18200D01*

-X13400Y427850D02*X16600D01*

-X13400D02*Y424650D01*

-X16600D01*

-Y427850D02*Y424650D01*

-X135000Y428500D02*X136500Y425500D01*

-X138000Y428500D01*

-X136500Y425500D02*Y422500D01*

-X139800Y425800D02*X142050D01*

-X139800Y422500D02*X142800D01*

-X139800Y428500D02*Y422500D01*

-Y428500D02*X142800D01*

-X147600D02*X148350Y427750D01*

-X145350Y428500D02*X147600D01*

-X144600Y427750D02*X145350Y428500D01*

-X144600Y427750D02*Y426250D01*

-X145350Y425500D01*

-X147600D01*

-X148350Y424750D01*

-Y423250D01*

-X147600Y422500D02*X148350Y423250D01*

-X145350Y422500D02*X147600D01*

-X144600Y423250D02*X145350Y422500D01*

-X98000Y427300D02*X99200Y428500D01*

-Y422500D01*

-X98000D02*X100250D01*

-X45000Y423250D02*X45750Y422500D01*

-X45000Y427750D02*Y423250D01*

-Y427750D02*X45750Y428500D01*

-X47250D01*

-X48000Y427750D01*

-Y423250D01*

-X47250Y422500D02*X48000Y423250D01*

-X45750Y422500D02*X47250D01*

-X45000Y424000D02*X48000Y427000D01*

-X49800Y422500D02*X50550D01*

-X52350Y427300D02*X53550Y428500D01*

-Y422500D01*

-X52350D02*X54600D01*

-X57150D02*X59400Y425500D01*

-Y427750D02*Y425500D01*

-X58650Y428500D02*X59400Y427750D01*

-X57150Y428500D02*X58650D01*

-X56400Y427750D02*X57150Y428500D01*

-X56400Y427750D02*Y426250D01*

-X57150Y425500D01*

-X59400D01*

-X61200Y423250D02*X61950Y422500D01*

-X61200Y427750D02*Y423250D01*

-Y427750D02*X61950Y428500D01*

-X63450D01*

-X64200Y427750D01*

-Y423250D01*

-X63450Y422500D02*X64200Y423250D01*

-X61950Y422500D02*X63450D01*

-X61200Y424000D02*X64200Y427000D01*

-X85799Y179829D02*Y176629D01*

-Y179829D02*X88572Y181429D01*

-X85799Y179829D02*X83026Y181429D01*

-X84199Y179829D02*G75*G03X87399Y179829I1600J0D01*G01*

-G75*G03X84199Y179829I-1600J0D01*G01*

-X85799Y369829D02*Y366629D01*

-Y369829D02*X88572Y371429D01*

-X85799Y369829D02*X83026Y371429D01*

-X84199Y369829D02*G75*G03X87399Y369829I1600J0D01*G01*

-G75*G03X84199Y369829I-1600J0D01*G01*

-X345799Y357329D02*Y354129D01*

-Y357329D02*X348572Y358929D01*

-X345799Y357329D02*X343026Y358929D01*

-X344199Y357329D02*G75*G03X347399Y357329I1600J0D01*G01*

-G75*G03X344199Y357329I-1600J0D01*G01*

-X353000Y150000D02*Y146800D01*

-Y150000D02*X355773Y151600D01*

-X353000Y150000D02*X350227Y151600D01*

-X351400Y150000D02*G75*G03X354600Y150000I1600J0D01*G01*

-G75*G03X351400Y150000I-1600J0D01*G01*

-X15000Y441250D02*Y438050D01*

-Y441250D02*X17773Y442850D01*

-X15000Y441250D02*X12227Y442850D01*

-X13400Y441250D02*G75*G03X16600Y441250I1600J0D01*G01*

-G75*G03X13400Y441250I-1600J0D01*G01*

-X135000Y443500D02*X136500Y440500D01*

-X138000Y443500D01*

-X136500Y440500D02*Y437500D01*

-X139800Y440800D02*X142050D01*

-X139800Y437500D02*X142800D01*

-X139800Y443500D02*Y437500D01*

-Y443500D02*X142800D01*

-X147600D02*X148350Y442750D01*

-X145350Y443500D02*X147600D01*

-X144600Y442750D02*X145350Y443500D01*

-X144600Y442750D02*Y441250D01*

-X145350Y440500D01*

-X147600D01*

-X148350Y439750D01*

-Y438250D01*

-X147600Y437500D02*X148350Y438250D01*

-X145350Y437500D02*X147600D01*

-X144600Y438250D02*X145350Y437500D01*

-X98000Y439750D02*X101000Y443500D01*

-X98000Y439750D02*X101750D01*

-X101000Y443500D02*Y437500D01*

-X45000Y438250D02*X45750Y437500D01*

-X45000Y442750D02*Y438250D01*

-Y442750D02*X45750Y443500D01*

-X47250D01*

-X48000Y442750D01*

-Y438250D01*

-X47250Y437500D02*X48000Y438250D01*

-X45750Y437500D02*X47250D01*

-X45000Y439000D02*X48000Y442000D01*

-X49800Y437500D02*X50550D01*

-X52350Y442300D02*X53550Y443500D01*

-Y437500D01*

-X52350D02*X54600D01*

-X56400Y442750D02*X57150Y443500D01*

-X59400D01*

-X60150Y442750D01*

-Y441250D01*

-X56400Y437500D02*X60150Y441250D01*

-X56400Y437500D02*X60150D01*

-X62700D02*X64950Y440500D01*

-Y442750D02*Y440500D01*

-X64200Y443500D02*X64950Y442750D01*

-X62700Y443500D02*X64200D01*

-X61950Y442750D02*X62700Y443500D01*

-X61950Y442750D02*Y441250D01*

-X62700Y440500D01*

-X64950D01*

-X104199Y186429D02*X107399D01*

-X104199D02*Y183229D01*

-X107399D01*

-Y186429D02*Y183229D01*

-X104199Y176429D02*X107399D01*

-X104199D02*Y173229D01*

-X107399D01*

-Y176429D02*Y173229D01*

-X114199Y186429D02*X117399D01*

-X114199D02*Y183229D01*

-X117399D01*

-Y186429D02*Y183229D01*

-X114199Y176429D02*X117399D01*

-X114199D02*Y173229D01*

-X117399D01*

-Y176429D02*Y173229D01*

-X124199Y186429D02*X127399D01*

-X124199D02*Y183229D01*

-X127399D01*

-Y186429D02*Y183229D01*

-X124199Y176429D02*X127399D01*

-X124199D02*Y173229D01*

-X127399D01*

-Y176429D02*Y173229D01*

-X134199Y186429D02*X137399D01*

-X134199D02*Y183229D01*

-X137399D01*

-Y186429D02*Y183229D01*

-X134199Y176429D02*X137399D01*

-X134199D02*Y173229D01*

-X137399D01*

-Y176429D02*Y173229D01*

-X144199Y186429D02*X147399D01*

-X144199D02*Y183229D01*

-X147399D01*

-Y186429D02*Y183229D01*

-X144199Y176429D02*X147399D01*

-X144199D02*Y173229D01*

-X147399D01*

-Y176429D02*Y173229D01*

-X154199Y186429D02*X157399D01*

-X154199D02*Y183229D01*

-X157399D01*

-Y186429D02*Y183229D01*

-X154199Y176429D02*X157399D01*

-X154199D02*Y173229D01*

-X157399D01*

-Y176429D02*Y173229D01*

-X164199Y186429D02*X167399D01*

-X164199D02*Y183229D01*

-X167399D01*

-Y186429D02*Y183229D01*

-X164199Y176429D02*X167399D01*

-X164199D02*Y173229D01*

-X167399D01*

-Y176429D02*Y173229D01*

-X174199Y186429D02*X177399D01*

-X174199D02*Y183229D01*

-X177399D01*

-Y186429D02*Y183229D01*

-X174199Y176429D02*X177399D01*

-X174199D02*Y173229D01*

-X177399D01*

-Y176429D02*Y173229D01*

-X184199Y186429D02*X187399D01*

-X184199D02*Y183229D01*

-X187399D01*

-Y186429D02*Y183229D01*

-X184199Y176429D02*X187399D01*

-X184199D02*Y173229D01*

-X187399D01*

-Y176429D02*Y173229D01*

-X194199Y186429D02*X197399D01*

-X194199D02*Y183229D01*

-X197399D01*

-Y186429D02*Y183229D01*

-X194199Y176429D02*X197399D01*

-X194199D02*Y173229D01*

-X197399D01*

-Y176429D02*Y173229D01*

-X204199Y186429D02*X207399D01*

-X204199D02*Y183229D01*

-X207399D01*

-Y186429D02*Y183229D01*

-X204199Y176429D02*X207399D01*

-X204199D02*Y173229D01*

-X207399D01*

-Y176429D02*Y173229D01*

-X214199Y186429D02*X217399D01*

-X214199D02*Y183229D01*

-X217399D01*

-Y186429D02*Y183229D01*

-X214199Y176429D02*X217399D01*

-X214199D02*Y173229D01*

-X217399D01*

-Y176429D02*Y173229D01*

-X224199Y186429D02*X227399D01*

-X224199D02*Y183229D01*

-X227399D01*

-Y186429D02*Y183229D01*

-X224199Y176429D02*X227399D01*

-X224199D02*Y173229D01*

-X227399D01*

-Y176429D02*Y173229D01*

-X234199Y186429D02*X237399D01*

-X234199D02*Y183229D01*

-X237399D01*

-Y186429D02*Y183229D01*

-X234199Y176429D02*X237399D01*

-X234199D02*Y173229D01*

-X237399D01*

-Y176429D02*Y173229D01*

-X244199Y186429D02*X247399D01*

-X244199D02*Y183229D01*

-X247399D01*

-Y186429D02*Y183229D01*

-X244199Y176429D02*X247399D01*

-X244199D02*Y173229D01*

-X247399D01*

-Y176429D02*Y173229D01*

-X254199Y186429D02*X257399D01*

-X254199D02*Y183229D01*

-X257399D01*

-Y186429D02*Y183229D01*

-X254199Y176429D02*X257399D01*

-X254199D02*Y173229D01*

-X257399D01*

-Y176429D02*Y173229D01*

-X264199Y186429D02*X267399D01*

-X264199D02*Y183229D01*

-X267399D01*

-Y186429D02*Y183229D01*

-X264199Y176429D02*X267399D01*

-X264199D02*Y173229D01*

-X267399D01*

-Y176429D02*Y173229D01*

-X274199Y186429D02*X277399D01*

-X274199D02*Y183229D01*

-X277399D01*

-Y186429D02*Y183229D01*

-X274199Y176429D02*X277399D01*

-X274199D02*Y173229D01*

-X277399D01*

-Y176429D02*Y173229D01*

-X284199Y186429D02*X287399D01*

-X284199D02*Y183229D01*

-X287399D01*

-Y186429D02*Y183229D01*

-X284199Y176429D02*X287399D01*

-X284199D02*Y173229D01*

-X287399D01*

-Y176429D02*Y173229D01*

-X294199Y186429D02*X297399D01*

-X294199D02*Y183229D01*

-X297399D01*

-Y186429D02*Y183229D01*

-X294199Y176429D02*X297399D01*

-X294199D02*Y173229D01*

-X297399D01*

-Y176429D02*Y173229D01*

-X304199Y186429D02*X307399D01*

-X304199D02*Y183229D01*

-X307399D01*

-Y186429D02*Y183229D01*

-X304199Y176429D02*X307399D01*

-X304199D02*Y173229D01*

-X307399D01*

-Y176429D02*Y173229D01*

-X314199Y186429D02*X317399D01*

-X314199D02*Y183229D01*

-X317399D01*

-Y186429D02*Y183229D01*

-X314199Y176429D02*X317399D01*

-X314199D02*Y173229D01*

-X317399D01*

-Y176429D02*Y173229D01*

-X324199Y186429D02*X327399D01*

-X324199D02*Y183229D01*

-X327399D01*

-Y186429D02*Y183229D01*

-X324199Y176429D02*X327399D01*

-X324199D02*Y173229D01*

-X327399D01*

-Y176429D02*Y173229D01*

-X104199Y376429D02*X107399D01*

-X104199D02*Y373229D01*

-X107399D01*

-Y376429D02*Y373229D01*

-X104199Y366429D02*X107399D01*

-X104199D02*Y363229D01*

-X107399D01*

-Y366429D02*Y363229D01*

-X114199Y376429D02*X117399D01*

-X114199D02*Y373229D01*

-X117399D01*

-Y376429D02*Y373229D01*

-X114199Y366429D02*X117399D01*

-X114199D02*Y363229D01*

-X117399D01*

-Y366429D02*Y363229D01*

-X124199Y376429D02*X127399D01*

-X124199D02*Y373229D01*

-X127399D01*

-Y376429D02*Y373229D01*

-X124199Y366429D02*X127399D01*

-X124199D02*Y363229D01*

-X127399D01*

-Y366429D02*Y363229D01*

-X134199Y376429D02*X137399D01*

-X134199D02*Y373229D01*

-X137399D01*

-Y376429D02*Y373229D01*

-X134199Y366429D02*X137399D01*

-X134199D02*Y363229D01*

-X137399D01*

-Y366429D02*Y363229D01*

-X144199Y376429D02*X147399D01*

-X144199D02*Y373229D01*

-X147399D01*

-Y376429D02*Y373229D01*

-X144199Y366429D02*X147399D01*

-X144199D02*Y363229D01*

-X147399D01*

-Y366429D02*Y363229D01*

-X154199Y376429D02*X157399D01*

-X154199D02*Y373229D01*

-X157399D01*

-Y376429D02*Y373229D01*

-X154199Y366429D02*X157399D01*

-X154199D02*Y363229D01*

-X157399D01*

-Y366429D02*Y363229D01*

-X164199Y376429D02*X167399D01*

-X164199D02*Y373229D01*

-X167399D01*

-Y376429D02*Y373229D01*

-X164199Y366429D02*X167399D01*

-X164199D02*Y363229D01*

-X167399D01*

-Y366429D02*Y363229D01*

-X174199Y376429D02*X177399D01*

-X174199D02*Y373229D01*

-X177399D01*

-Y376429D02*Y373229D01*

-X174199Y366429D02*X177399D01*

-X174199D02*Y363229D01*

-X177399D01*

-Y366429D02*Y363229D01*

-X184199Y376429D02*X187399D01*

-X184199D02*Y373229D01*

-X187399D01*

-Y376429D02*Y373229D01*

-X184199Y366429D02*X187399D01*

-X184199D02*Y363229D01*

-X187399D01*

-Y366429D02*Y363229D01*

-X194199Y376429D02*X197399D01*

-X194199D02*Y373229D01*

-X197399D01*

-Y376429D02*Y373229D01*

-X194199Y366429D02*X197399D01*

-X194199D02*Y363229D01*

-X197399D01*

-Y366429D02*Y363229D01*

-X204199Y376429D02*X207399D01*

-X204199D02*Y373229D01*

-X207399D01*

-Y376429D02*Y373229D01*

-X204199Y366429D02*X207399D01*

-X204199D02*Y363229D01*

-X207399D01*

-Y366429D02*Y363229D01*

-X214199Y376429D02*X217399D01*

-X214199D02*Y373229D01*

-X217399D01*

-Y376429D02*Y373229D01*

-X214199Y366429D02*X217399D01*

-X214199D02*Y363229D01*

-X217399D01*

-Y366429D02*Y363229D01*

-X224199Y376429D02*X227399D01*

-X224199D02*Y373229D01*

-X227399D01*

-Y376429D02*Y373229D01*

-X224199Y366429D02*X227399D01*

-X224199D02*Y363229D01*

-X227399D01*

-Y366429D02*Y363229D01*

-X234199Y376429D02*X237399D01*

-X234199D02*Y373229D01*

-X237399D01*

-Y376429D02*Y373229D01*

-X234199Y366429D02*X237399D01*

-X234199D02*Y363229D01*

-X237399D01*

-Y366429D02*Y363229D01*

-X244199Y376429D02*X247399D01*

-X244199D02*Y373229D01*

-X247399D01*

-Y376429D02*Y373229D01*

-X244199Y366429D02*X247399D01*

-X244199D02*Y363229D01*

-X247399D01*

-Y366429D02*Y363229D01*

-X254199Y376429D02*X257399D01*

-X254199D02*Y373229D01*

-X257399D01*

-Y376429D02*Y373229D01*

-X254199Y366429D02*X257399D01*

-X254199D02*Y363229D01*

-X257399D01*

-Y366429D02*Y363229D01*

-X264199Y376429D02*X267399D01*

-X264199D02*Y373229D01*

-X267399D01*

-Y376429D02*Y373229D01*

-X264199Y366429D02*X267399D01*

-X264199D02*Y363229D01*

-X267399D01*

-Y366429D02*Y363229D01*

-X274199Y376429D02*X277399D01*

-X274199D02*Y373229D01*

-X277399D01*

-Y376429D02*Y373229D01*

-X274199Y366429D02*X277399D01*

-X274199D02*Y363229D01*

-X277399D01*

-Y366429D02*Y363229D01*

-X284199Y376429D02*X287399D01*

-X284199D02*Y373229D01*

-X287399D01*

-Y376429D02*Y373229D01*

-X284199Y366429D02*X287399D01*

-X284199D02*Y363229D01*

-X287399D01*

-Y366429D02*Y363229D01*

-X294199Y376429D02*X297399D01*

-X294199D02*Y373229D01*

-X297399D01*

-Y376429D02*Y373229D01*

-X294199Y366429D02*X297399D01*

-X294199D02*Y363229D01*

-X297399D01*

-Y366429D02*Y363229D01*

-X304199Y376429D02*X307399D01*

-X304199D02*Y373229D01*

-X307399D01*

-Y376429D02*Y373229D01*

-X304199Y366429D02*X307399D01*

-X304199D02*Y363229D01*

-X307399D01*

-Y366429D02*Y363229D01*

-X314199Y376429D02*X317399D01*

-X314199D02*Y373229D01*

-X317399D01*

-Y376429D02*Y373229D01*

-X314199Y366429D02*X317399D01*

-X314199D02*Y363229D01*

-X317399D01*

-Y366429D02*Y363229D01*

-X324199Y376429D02*X327399D01*

-X324199D02*Y373229D01*

-X327399D01*

-Y376429D02*Y373229D01*

-X324199Y366429D02*X327399D01*

-X324199D02*Y363229D01*

-X327399D01*

-Y366429D02*Y363229D01*

-X194199Y198929D02*X197399D01*

-X194199D02*Y195729D01*

-X197399D01*

-Y198929D02*Y195729D01*

-X204199Y198929D02*X207399D01*

-X204199D02*Y195729D01*

-X207399D01*

-Y198929D02*Y195729D01*

-X214199Y198929D02*X217399D01*

-X214199D02*Y195729D01*

-X217399D01*

-Y198929D02*Y195729D01*

-X224199Y198929D02*X227399D01*

-X224199D02*Y195729D01*

-X227399D01*

-Y198929D02*Y195729D01*

-X234199Y198929D02*X237399D01*

-X234199D02*Y195729D01*

-X237399D01*

-Y198929D02*Y195729D01*

-X13400Y457850D02*X16600D01*

-X13400D02*Y454650D01*

-X16600D01*

-Y457850D02*Y454650D01*

-X135000Y458500D02*X136500Y455500D01*

-X138000Y458500D01*

-X136500Y455500D02*Y452500D01*

-X139800Y455800D02*X142050D01*

-X139800Y452500D02*X142800D01*

-X139800Y458500D02*Y452500D01*

-Y458500D02*X142800D01*

-X147600D02*X148350Y457750D01*

-X145350Y458500D02*X147600D01*

-X144600Y457750D02*X145350Y458500D01*

-X144600Y457750D02*Y456250D01*

-X145350Y455500D01*

-X147600D01*

-X148350Y454750D01*

-Y453250D01*

-X147600Y452500D02*X148350Y453250D01*

-X145350Y452500D02*X147600D01*

-X144600Y453250D02*X145350Y452500D01*

-X98750D02*X101000Y455500D01*

-Y457750D02*Y455500D01*

-X100250Y458500D02*X101000Y457750D01*

-X98750Y458500D02*X100250D01*

-X98000Y457750D02*X98750Y458500D01*

-X98000Y457750D02*Y456250D01*

-X98750Y455500D01*

-X101000D01*

-X103550Y452500D02*X106550Y458500D01*

-X102800D02*X106550D01*

-X45000Y453250D02*X45750Y452500D01*

-X45000Y457750D02*Y453250D01*

-Y457750D02*X45750Y458500D01*

-X47250D01*

-X48000Y457750D01*

-Y453250D01*

-X47250Y452500D02*X48000Y453250D01*

-X45750Y452500D02*X47250D01*

-X45000Y454000D02*X48000Y457000D01*

-X49800Y452500D02*X50550D01*

-X52350Y453250D02*X53100Y452500D01*

-X52350Y457750D02*Y453250D01*

-Y457750D02*X53100Y458500D01*

-X54600D01*

-X55350Y457750D01*

-Y453250D01*

-X54600Y452500D02*X55350Y453250D01*

-X53100Y452500D02*X54600D01*

-X52350Y454000D02*X55350Y457000D01*

-X57150Y454750D02*X60150Y458500D01*

-X57150Y454750D02*X60900D01*

-X60150Y458500D02*Y452500D01*

-X64950Y458500D02*X65700Y457750D01*

-X63450Y458500D02*X64950D01*

-X62700Y457750D02*X63450Y458500D01*

-X62700Y457750D02*Y453250D01*

-X63450Y452500D01*

-X64950Y455800D02*X65700Y455050D01*

-X62700Y455800D02*X64950D01*

-X63450Y452500D02*X64950D01*

-X65700Y453250D01*

-Y455050D02*Y453250D01*

-X452700Y384000D02*G75*G03X454300Y384000I800J0D01*G01*

-G75*G03X452700Y384000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y384000I800J0D01*G01*

-G75*G03X462700Y384000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y384000I800J0D01*G01*

-G75*G03X472700Y384000I-800J0D01*G01*

-X452700Y324000D02*G75*G03X454300Y324000I800J0D01*G01*

-G75*G03X452700Y324000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y324000I800J0D01*G01*

-G75*G03X462700Y324000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y324000I800J0D01*G01*

-G75*G03X472700Y324000I-800J0D01*G01*

-X452700Y294000D02*G75*G03X454300Y294000I800J0D01*G01*

-G75*G03X452700Y294000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y294000I800J0D01*G01*

-G75*G03X462700Y294000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y294000I800J0D01*G01*

-G75*G03X472700Y294000I-800J0D01*G01*

-X452700Y264000D02*G75*G03X454300Y264000I800J0D01*G01*

-G75*G03X452700Y264000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y264000I800J0D01*G01*

-G75*G03X462700Y264000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y264000I800J0D01*G01*

-G75*G03X472700Y264000I-800J0D01*G01*

-X452700Y234000D02*G75*G03X454300Y234000I800J0D01*G01*

-G75*G03X452700Y234000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y234000I800J0D01*G01*

-G75*G03X462700Y234000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y234000I800J0D01*G01*

-G75*G03X472700Y234000I-800J0D01*G01*

-X452700Y204000D02*G75*G03X454300Y204000I800J0D01*G01*

-G75*G03X452700Y204000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y204000I800J0D01*G01*

-G75*G03X462700Y204000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y204000I800J0D01*G01*

-G75*G03X472700Y204000I-800J0D01*G01*

-X452700Y174000D02*G75*G03X454300Y174000I800J0D01*G01*

-G75*G03X452700Y174000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y174000I800J0D01*G01*

-G75*G03X462700Y174000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y174000I800J0D01*G01*

-G75*G03X472700Y174000I-800J0D01*G01*

-X452700Y144000D02*G75*G03X454300Y144000I800J0D01*G01*

-G75*G03X452700Y144000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y144000I800J0D01*G01*

-G75*G03X462700Y144000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y144000I800J0D01*G01*

-G75*G03X472700Y144000I-800J0D01*G01*

-X452700Y114000D02*G75*G03X454300Y114000I800J0D01*G01*

-G75*G03X452700Y114000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y114000I800J0D01*G01*

-G75*G03X462700Y114000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y114000I800J0D01*G01*

-G75*G03X472700Y114000I-800J0D01*G01*

-X452700Y84000D02*G75*G03X454300Y84000I800J0D01*G01*

-G75*G03X452700Y84000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y84000I800J0D01*G01*

-G75*G03X462700Y84000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y84000I800J0D01*G01*

-G75*G03X472700Y84000I-800J0D01*G01*

-X452700Y54000D02*G75*G03X454300Y54000I800J0D01*G01*

-G75*G03X452700Y54000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y54000I800J0D01*G01*

-G75*G03X462700Y54000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y54000I800J0D01*G01*

-G75*G03X472700Y54000I-800J0D01*G01*

-X406200Y384000D02*G75*G03X407800Y384000I800J0D01*G01*

-G75*G03X406200Y384000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y384000I800J0D01*G01*

-G75*G03X416200Y384000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y384000I800J0D01*G01*

-G75*G03X426200Y384000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y384000I800J0D01*G01*

-G75*G03X436200Y384000I-800J0D01*G01*

-X406200Y174000D02*G75*G03X407800Y174000I800J0D01*G01*

-G75*G03X406200Y174000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y174000I800J0D01*G01*

-G75*G03X416200Y174000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y174000I800J0D01*G01*

-G75*G03X426200Y174000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y174000I800J0D01*G01*

-G75*G03X436200Y174000I-800J0D01*G01*

-X406200Y204000D02*G75*G03X407800Y204000I800J0D01*G01*

-G75*G03X406200Y204000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y204000I800J0D01*G01*

-G75*G03X416200Y204000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y204000I800J0D01*G01*

-G75*G03X426200Y204000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y204000I800J0D01*G01*

-G75*G03X436200Y204000I-800J0D01*G01*

-X406200Y234000D02*G75*G03X407800Y234000I800J0D01*G01*

-G75*G03X406200Y234000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y234000I800J0D01*G01*

-G75*G03X416200Y234000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y234000I800J0D01*G01*

-G75*G03X426200Y234000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y234000I800J0D01*G01*

-G75*G03X436200Y234000I-800J0D01*G01*

-X406200Y264000D02*G75*G03X407800Y264000I800J0D01*G01*

-G75*G03X406200Y264000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y264000I800J0D01*G01*

-G75*G03X416200Y264000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y264000I800J0D01*G01*

-G75*G03X426200Y264000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y264000I800J0D01*G01*

-G75*G03X436200Y264000I-800J0D01*G01*

-X406200Y294000D02*G75*G03X407800Y294000I800J0D01*G01*

-G75*G03X406200Y294000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y294000I800J0D01*G01*

-G75*G03X416200Y294000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y294000I800J0D01*G01*

-G75*G03X426200Y294000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y294000I800J0D01*G01*

-G75*G03X436200Y294000I-800J0D01*G01*

-X406200Y324000D02*G75*G03X407800Y324000I800J0D01*G01*

-G75*G03X406200Y324000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y324000I800J0D01*G01*

-G75*G03X416200Y324000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y324000I800J0D01*G01*

-G75*G03X426200Y324000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y324000I800J0D01*G01*

-G75*G03X436200Y324000I-800J0D01*G01*

-X452700Y354000D02*G75*G03X454300Y354000I800J0D01*G01*

-G75*G03X452700Y354000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y354000I800J0D01*G01*

-G75*G03X462700Y354000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y354000I800J0D01*G01*

-G75*G03X472700Y354000I-800J0D01*G01*

-X406200D02*G75*G03X407800Y354000I800J0D01*G01*

-G75*G03X406200Y354000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y354000I800J0D01*G01*

-G75*G03X416200Y354000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y354000I800J0D01*G01*

-G75*G03X426200Y354000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y354000I800J0D01*G01*

-G75*G03X436200Y354000I-800J0D01*G01*

-X204641Y47500D02*G75*G03X206241Y47500I800J0D01*G01*

-G75*G03X204641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X206241Y57500I800J0D01*G01*

-G75*G03X204641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X206241Y67500I800J0D01*G01*

-G75*G03X204641Y67500I-800J0D01*G01*

-X234641Y47500D02*G75*G03X236241Y47500I800J0D01*G01*

-G75*G03X234641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X236241Y57500I800J0D01*G01*

-G75*G03X234641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X236241Y67500I800J0D01*G01*

-G75*G03X234641Y67500I-800J0D01*G01*

-X264641Y47500D02*G75*G03X266241Y47500I800J0D01*G01*

-G75*G03X264641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X266241Y57500I800J0D01*G01*

-G75*G03X264641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X266241Y67500I800J0D01*G01*

-G75*G03X264641Y67500I-800J0D01*G01*

-X294641Y47500D02*G75*G03X296241Y47500I800J0D01*G01*

-G75*G03X294641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X296241Y57500I800J0D01*G01*

-G75*G03X294641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X296241Y67500I800J0D01*G01*

-G75*G03X294641Y67500I-800J0D01*G01*

-X174641Y47500D02*G75*G03X176241Y47500I800J0D01*G01*

-G75*G03X174641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X176241Y57500I800J0D01*G01*

-G75*G03X174641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X176241Y67500I800J0D01*G01*

-G75*G03X174641Y67500I-800J0D01*G01*

-X144641Y47500D02*G75*G03X146241Y47500I800J0D01*G01*

-G75*G03X144641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X146241Y57500I800J0D01*G01*

-G75*G03X144641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X146241Y67500I800J0D01*G01*

-G75*G03X144641Y67500I-800J0D01*G01*

-X114641Y47500D02*G75*G03X116241Y47500I800J0D01*G01*

-G75*G03X114641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X116241Y57500I800J0D01*G01*

-G75*G03X114641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X116241Y67500I800J0D01*G01*

-G75*G03X114641Y67500I-800J0D01*G01*

-X84641Y47500D02*G75*G03X86241Y47500I800J0D01*G01*

-G75*G03X84641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X86241Y57500I800J0D01*G01*

-G75*G03X84641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X86241Y67500I800J0D01*G01*

-G75*G03X84641Y67500I-800J0D01*G01*

-X311641Y249000D02*G75*G03X313241Y249000I800J0D01*G01*

-G75*G03X311641Y249000I-800J0D01*G01*

-X321641D02*G75*G03X323241Y249000I800J0D01*G01*

-G75*G03X321641Y249000I-800J0D01*G01*

-X331641D02*G75*G03X333241Y249000I800J0D01*G01*

-G75*G03X331641Y249000I-800J0D01*G01*

-X341641D02*G75*G03X343241Y249000I800J0D01*G01*

-G75*G03X341641Y249000I-800J0D01*G01*

-X84641Y240000D02*G75*G03X86241Y240000I800J0D01*G01*

-G75*G03X84641Y240000I-800J0D01*G01*

-Y230000D02*G75*G03X86241Y230000I800J0D01*G01*

-G75*G03X84641Y230000I-800J0D01*G01*

-Y220000D02*G75*G03X86241Y220000I800J0D01*G01*

-G75*G03X84641Y220000I-800J0D01*G01*

-X14200Y471250D02*G75*G03X15800Y471250I800J0D01*G01*

-G75*G03X14200Y471250I-800J0D01*G01*

-X135000Y473500D02*X136500Y470500D01*

-X138000Y473500D01*

-X136500Y470500D02*Y467500D01*

-X139800Y470800D02*X142050D01*

-X139800Y467500D02*X142800D01*

-X139800Y473500D02*Y467500D01*

-Y473500D02*X142800D01*

-X147600D02*X148350Y472750D01*

-X145350Y473500D02*X147600D01*

-X144600Y472750D02*X145350Y473500D01*

-X144600Y472750D02*Y471250D01*

-X145350Y470500D01*

-X147600D01*

-X148350Y469750D01*

-Y468250D01*

-X147600Y467500D02*X148350Y468250D01*

-X145350Y467500D02*X147600D01*

-X144600Y468250D02*X145350Y467500D01*

-X98750D02*X101000Y470500D01*

-Y472750D02*Y470500D01*

-X100250Y473500D02*X101000Y472750D01*

-X98750Y473500D02*X100250D01*

-X98000Y472750D02*X98750Y473500D01*

-X98000Y472750D02*Y471250D01*

-X98750Y470500D01*

-X101000D01*

-X103550Y467500D02*X105800Y470500D01*

-Y472750D02*Y470500D01*

-X105050Y473500D02*X105800Y472750D01*

-X103550Y473500D02*X105050D01*

-X102800Y472750D02*X103550Y473500D01*

-X102800Y472750D02*Y471250D01*

-X103550Y470500D01*

-X105800D01*

-X45000Y468250D02*X45750Y467500D01*

-X45000Y472750D02*Y468250D01*

-Y472750D02*X45750Y473500D01*

-X47250D01*

-X48000Y472750D01*

-Y468250D01*

-X47250Y467500D02*X48000Y468250D01*

-X45750Y467500D02*X47250D01*

-X45000Y469000D02*X48000Y472000D01*

-X49800Y467500D02*X50550D01*

-X52350Y468250D02*X53100Y467500D01*

-X52350Y472750D02*Y468250D01*

-Y472750D02*X53100Y473500D01*

-X54600D01*

-X55350Y472750D01*

-Y468250D01*

-X54600Y467500D02*X55350Y468250D01*

-X53100Y467500D02*X54600D01*

-X52350Y469000D02*X55350Y472000D01*

-X57150Y469750D02*X60150Y473500D01*

-X57150Y469750D02*X60900D01*

-X60150Y473500D02*Y467500D01*

-X62700Y468250D02*X63450Y467500D01*

-X62700Y472750D02*Y468250D01*

-Y472750D02*X63450Y473500D01*

-X64950D01*

-X65700Y472750D01*

-Y468250D01*

-X64950Y467500D02*X65700Y468250D01*

-X63450Y467500D02*X64950D01*

-X62700Y469000D02*X65700Y472000D01*

-X439741Y124200D02*X442141Y121800D01*

-X439741D02*X442141Y124200D01*

-X13800Y487450D02*X16200Y485050D01*

-X13800D02*X16200Y487450D01*

-X135000Y488500D02*X136500Y485500D01*

-X138000Y488500D01*

-X136500Y485500D02*Y482500D01*

-X139800Y485800D02*X142050D01*

-X139800Y482500D02*X142800D01*

-X139800Y488500D02*Y482500D01*

-Y488500D02*X142800D01*

-X147600D02*X148350Y487750D01*

-X145350Y488500D02*X147600D01*

-X144600Y487750D02*X145350Y488500D01*

-X144600Y487750D02*Y486250D01*

-X145350Y485500D01*

-X147600D01*

-X148350Y484750D01*

-Y483250D01*

-X147600Y482500D02*X148350Y483250D01*

-X145350Y482500D02*X147600D01*

-X144600Y483250D02*X145350Y482500D01*

-X98000Y487300D02*X99200Y488500D01*

-Y482500D01*

-X98000D02*X100250D01*

-X45000Y483250D02*X45750Y482500D01*

-X45000Y487750D02*Y483250D01*

-Y487750D02*X45750Y488500D01*

-X47250D01*

-X48000Y487750D01*

-Y483250D01*

-X47250Y482500D02*X48000Y483250D01*

-X45750Y482500D02*X47250D01*

-X45000Y484000D02*X48000Y487000D01*

-X49800Y482500D02*X50550D01*

-X52350Y483250D02*X53100Y482500D01*

-X52350Y487750D02*Y483250D01*

-Y487750D02*X53100Y488500D01*

-X54600D01*

-X55350Y487750D01*

-Y483250D01*

-X54600Y482500D02*X55350Y483250D01*

-X53100Y482500D02*X54600D01*

-X52350Y484000D02*X55350Y487000D01*

-X57150Y487750D02*X57900Y488500D01*

-X59400D01*

-X60150Y487750D01*

-X59400Y482500D02*X60150Y483250D01*

-X57900Y482500D02*X59400D01*

-X57150Y483250D02*X57900Y482500D01*

-Y485800D02*X59400D01*

-X60150Y487750D02*Y486550D01*

-Y485050D02*Y483250D01*

-Y485050D02*X59400Y485800D01*

-X60150Y486550D02*X59400Y485800D01*

-X61950Y488500D02*X64950D01*

-X61950D02*Y485500D01*

-X62700Y486250D01*

-X64200D01*

-X64950Y485500D01*

-Y483250D01*

-X64200Y482500D02*X64950Y483250D01*

-X62700Y482500D02*X64200D01*

-X61950Y483250D02*X62700Y482500D01*

-X432324Y112600D02*Y109400D01*

-X430724Y111000D02*X433924D01*

-X386441Y164600D02*Y161400D01*

-X384841Y163000D02*X388041D01*

-X387441Y327600D02*Y324400D01*

-X385841Y326000D02*X389041D01*

-X393441Y356600D02*Y353400D01*

-X391841Y355000D02*X395041D01*

-X386720Y283600D02*Y280400D01*

-X385120Y282000D02*X388320D01*

-X400441Y195600D02*Y192400D01*

-X398841Y194000D02*X402041D01*

-X389441Y185600D02*Y182400D01*

-X387841Y184000D02*X391041D01*

-X400441Y190600D02*Y187400D01*

-X398841Y189000D02*X402041D01*

-X393441Y209600D02*Y206400D01*

-X391841Y208000D02*X395041D01*

-X393441Y328600D02*Y325400D01*

-X391841Y327000D02*X395041D01*

-X385941Y356100D02*Y352900D01*

-X384341Y354500D02*X387541D01*

-X375441Y236600D02*Y233400D01*

-X373841Y235000D02*X377041D01*

-X384162Y189600D02*Y186400D01*

-X382562Y188000D02*X385762D01*

-X387070Y236600D02*Y233400D01*

-X385470Y235000D02*X388670D01*

-X384162Y307600D02*Y304400D01*

-X382562Y306000D02*X385762D01*

-X458441Y376600D02*Y373400D01*

-X456841Y375000D02*X460041D01*

-X458441Y346600D02*Y343400D01*

-X456841Y345000D02*X460041D01*

-X458441Y316600D02*Y313400D01*

-X456841Y315000D02*X460041D01*

-X458441Y286600D02*Y283400D01*

-X456841Y285000D02*X460041D01*

-X458441Y255600D02*Y252400D01*

-X456841Y254000D02*X460041D01*

-X458441Y226600D02*Y223400D01*

-X456841Y225000D02*X460041D01*

-X458441Y196600D02*Y193400D01*

-X456841Y195000D02*X460041D01*

-X458441Y165600D02*Y162400D01*

-X456841Y164000D02*X460041D01*

-X446441Y103600D02*Y100400D01*

-X444841Y102000D02*X448041D01*

-X434882Y76600D02*Y73400D01*

-X433282Y75000D02*X436482D01*

-X423441Y76600D02*Y73400D01*

-X421841Y75000D02*X425041D01*

-X372441Y171986D02*Y168786D01*

-X370841Y170386D02*X374041D01*

-X398441Y249600D02*Y246400D01*

-X396841Y248000D02*X400041D01*

-X398441Y254600D02*Y251400D01*

-X396841Y253000D02*X400041D01*

-X384512Y259600D02*Y256400D01*

-X382912Y258000D02*X386112D01*

-X398441Y315600D02*Y312400D01*

-X396841Y314000D02*X400041D01*

-X398441Y310600D02*Y307400D01*

-X396841Y309000D02*X400041D01*

-X372441Y292289D02*Y289089D01*

-X370841Y290689D02*X374041D01*

-X372441Y352789D02*Y349589D01*

-X370841Y351189D02*X374041D01*

-X383662Y380100D02*Y376900D01*

-X382062Y378500D02*X385262D01*

-X397441Y374600D02*Y371400D01*

-X395841Y373000D02*X399041D01*

-X397941Y369041D02*Y365841D01*

-X396341Y367441D02*X399541D01*

-X15000Y502850D02*Y499650D01*

-X13400Y501250D02*X16600D01*

-X135000Y503500D02*X136500Y500500D01*

-X138000Y503500D01*

-X136500Y500500D02*Y497500D01*

-X139800Y500800D02*X142050D01*

-X139800Y497500D02*X142800D01*

-X139800Y503500D02*Y497500D01*

-Y503500D02*X142800D01*

-X147600D02*X148350Y502750D01*

-X145350Y503500D02*X147600D01*

-X144600Y502750D02*X145350Y503500D01*

-X144600Y502750D02*Y501250D01*

-X145350Y500500D01*

-X147600D01*

-X148350Y499750D01*

-Y498250D01*

-X147600Y497500D02*X148350Y498250D01*

-X145350Y497500D02*X147600D01*

-X144600Y498250D02*X145350Y497500D01*

-X98000Y502750D02*X98750Y503500D01*

-X100250D01*

-X101000Y502750D01*

-X100250Y497500D02*X101000Y498250D01*

-X98750Y497500D02*X100250D01*

-X98000Y498250D02*X98750Y497500D01*

-Y500800D02*X100250D01*

-X101000Y502750D02*Y501550D01*

-Y500050D02*Y498250D01*

-Y500050D02*X100250Y500800D01*

-X101000Y501550D02*X100250Y500800D01*

-X103550Y497500D02*X106550Y503500D01*

-X102800D02*X106550D01*

-X45000Y498250D02*X45750Y497500D01*

-X45000Y502750D02*Y498250D01*

-Y502750D02*X45750Y503500D01*

-X47250D01*

-X48000Y502750D01*

-Y498250D01*

-X47250Y497500D02*X48000Y498250D01*

-X45750Y497500D02*X47250D01*

-X45000Y499000D02*X48000Y502000D01*

-X49800Y497500D02*X50550D01*

-X52350Y498250D02*X53100Y497500D01*

-X52350Y502750D02*Y498250D01*

-Y502750D02*X53100Y503500D01*

-X54600D01*

-X55350Y502750D01*

-Y498250D01*

-X54600Y497500D02*X55350Y498250D01*

-X53100Y497500D02*X54600D01*

-X52350Y499000D02*X55350Y502000D01*

-X57150Y502750D02*X57900Y503500D01*

-X60150D01*

-X60900Y502750D01*

-Y501250D01*

-X57150Y497500D02*X60900Y501250D01*

-X57150Y497500D02*X60900D01*

-X62700Y498250D02*X63450Y497500D01*

-X62700Y502750D02*Y498250D01*

-Y502750D02*X63450Y503500D01*

-X64950D01*

-X65700Y502750D01*

-Y498250D01*

-X64950Y497500D02*X65700Y498250D01*

-X63450Y497500D02*X64950D01*

-X62700Y499000D02*X65700Y502000D01*

-X307716Y275075D02*Y273475D01*

-Y275075D02*X309103Y275875D01*

-X307716Y275075D02*X306329Y275875D01*

-X308992Y271971D02*Y270371D01*

-Y271971D02*X310379Y272771D01*

-X308992Y271971D02*X307605Y272771D01*

-X308872Y266522D02*Y264922D01*

-Y266522D02*X310259Y267322D01*

-X308872Y266522D02*X307485Y267322D01*

-X245557Y279508D02*Y277908D01*

-Y279508D02*X246944Y280308D01*

-X245557Y279508D02*X244170Y280308D01*

-X266413Y296594D02*Y294994D01*

-Y296594D02*X267800Y297394D01*

-X266413Y296594D02*X265026Y297394D01*

-X263240Y295329D02*Y293729D01*

-Y295329D02*X264627Y296129D01*

-X263240Y295329D02*X261853Y296129D01*

-X262740Y291829D02*Y290229D01*

-Y291829D02*X264127Y292629D01*

-X262740Y291829D02*X261353Y292629D01*

-X254740Y298329D02*Y296729D01*

-Y298329D02*X256127Y299129D01*

-X254740Y298329D02*X253353Y299129D01*

-X287917Y307829D02*Y306229D01*

-Y307829D02*X289304Y308629D01*

-X287917Y307829D02*X286530Y308629D01*

-X269653Y298631D02*Y297031D01*

-Y298631D02*X271040Y299431D01*

-X269653Y298631D02*X268266Y299431D01*

-X273229Y298582D02*Y296982D01*

-Y298582D02*X274616Y299382D01*

-X273229Y298582D02*X271842Y299382D01*

-X278225Y279602D02*Y278002D01*

-Y279602D02*X279612Y280402D01*

-X278225Y279602D02*X276838Y280402D01*

-X262750Y268772D02*Y267172D01*

-Y268772D02*X264137Y269572D01*

-X262750Y268772D02*X261363Y269572D01*

-X293902Y282263D02*Y280663D01*

-Y282263D02*X295289Y283063D01*

-X293902Y282263D02*X292515Y283063D01*

-X260341Y284249D02*Y282649D01*

-Y284249D02*X261728Y285049D01*

-X260341Y284249D02*X258954Y285049D01*

-X296779Y304963D02*Y303363D01*

-Y304963D02*X298166Y305763D01*

-X296779Y304963D02*X295392Y305763D01*

-X253101Y261836D02*Y260236D01*

-Y261836D02*X254488Y262636D01*

-X253101Y261836D02*X251714Y262636D01*

-X239302Y262235D02*Y260635D01*

-Y262235D02*X240689Y263035D01*

-X239302Y262235D02*X237915Y263035D01*

-X295937Y243628D02*Y242028D01*

-Y243628D02*X297324Y244428D01*

-X295937Y243628D02*X294550Y244428D01*

-X278207Y298612D02*Y297012D01*

-Y298612D02*X279594Y299412D01*

-X278207Y298612D02*X276820Y299412D01*

-X277174Y308219D02*Y306619D01*

-Y308219D02*X278561Y309019D01*

-X277174Y308219D02*X275787Y309019D01*

-X242456Y293543D02*Y291943D01*

-Y293543D02*X243843Y294343D01*

-X242456Y293543D02*X241069Y294343D01*

-X242168Y298800D02*Y297200D01*

-Y298800D02*X243555Y299600D01*

-X242168Y298800D02*X240781Y299600D01*

-X312157Y300156D02*Y298556D01*

-Y300156D02*X313544Y300956D01*

-X312157Y300156D02*X310770Y300956D01*

-X312122Y295038D02*Y293438D01*

-Y295038D02*X313509Y295838D01*

-X312122Y295038D02*X310735Y295838D01*

-X277449Y347500D02*Y345900D01*

-Y347500D02*X278836Y348300D01*

-X277449Y347500D02*X276062Y348300D01*

-X303365Y330000D02*Y328400D01*

-Y330000D02*X304752Y330800D01*

-X303365Y330000D02*X301978Y330800D01*

-X285430Y325000D02*Y323400D01*

-Y325000D02*X286817Y325800D01*

-X285430Y325000D02*X284043Y325800D01*

-X302941Y340007D02*Y338407D01*

-Y340007D02*X304328Y340807D01*

-X302941Y340007D02*X301554Y340807D01*

-X371602Y260228D02*Y258628D01*

-Y260228D02*X372989Y261028D01*

-X371602Y260228D02*X370215Y261028D01*

-X396441Y235000D02*Y233400D01*

-Y235000D02*X397828Y235800D01*

-X396441Y235000D02*X395054Y235800D01*

-X385941Y366000D02*Y364400D01*

-Y366000D02*X387328Y366800D01*

-X385941Y366000D02*X384554Y366800D01*

-X398441Y291000D02*Y289400D01*

-Y291000D02*X399828Y291800D01*

-X398441Y291000D02*X397054Y291800D01*

-X386023Y157813D02*Y156213D01*

-Y157813D02*X387410Y158613D01*

-X386023Y157813D02*X384636Y158613D01*

-X398441Y173000D02*Y171400D01*

-Y173000D02*X399828Y173800D01*

-X398441Y173000D02*X397054Y173800D01*

-X354441Y85000D02*Y83400D01*

-Y85000D02*X355828Y85800D01*

-X354441Y85000D02*X353054Y85800D01*

-X354441Y89500D02*Y87900D01*

-Y89500D02*X355828Y90300D01*

-X354441Y89500D02*X353054Y90300D01*

-X354441Y95500D02*Y93900D01*

-Y95500D02*X355828Y96300D01*

-X354441Y95500D02*X353054Y96300D01*

-X354441Y101500D02*Y99900D01*

-Y101500D02*X355828Y102300D01*

-X354441Y101500D02*X353054Y102300D01*

-X354441Y107500D02*Y105900D01*

-Y107500D02*X355828Y108300D01*

-X354441Y107500D02*X353054Y108300D01*

-X354441Y113500D02*Y111900D01*

-Y113500D02*X355828Y114300D01*

-X354441Y113500D02*X353054Y114300D01*

-X354441Y119500D02*Y117900D01*

-Y119500D02*X355828Y120300D01*

-X354441Y119500D02*X353054Y120300D01*

-X387441Y119500D02*Y117900D01*

-Y119500D02*X388828Y120300D01*

-X387441Y119500D02*X386054Y120300D01*

-X387441Y113500D02*Y111900D01*

-Y113500D02*X388828Y114300D01*

-X387441Y113500D02*X386054Y114300D01*

-X387441Y107500D02*Y105900D01*

-Y107500D02*X388828Y108300D01*

-X387441Y107500D02*X386054Y108300D01*

-X387441Y101500D02*Y99900D01*

-Y101500D02*X388828Y102300D01*

-X387441Y101500D02*X386054Y102300D01*

-X387441Y89500D02*Y87900D01*

-Y89500D02*X388828Y90300D01*

-X387441Y89500D02*X386054Y90300D01*

-X387441Y85000D02*Y83400D01*

-Y85000D02*X388828Y85800D01*

-X387441Y85000D02*X386054Y85800D01*

-X387441Y95500D02*Y93900D01*

-Y95500D02*X388828Y96300D01*

-X387441Y95500D02*X386054Y96300D01*

-X390941Y76000D02*Y74400D01*

-Y76000D02*X392328Y76800D01*

-X390941Y76000D02*X389554Y76800D01*

-X390941Y71500D02*Y69900D01*

-Y71500D02*X392328Y72300D01*

-X390941Y71500D02*X389554Y72300D01*

-X391441Y66000D02*Y64400D01*

-Y66000D02*X392828Y66800D01*

-X391441Y66000D02*X390054Y66800D01*

-X394941Y58500D02*Y56900D01*

-Y58500D02*X396328Y59300D01*

-X394941Y58500D02*X393554Y59300D01*

-X393941Y51500D02*Y49900D01*

-Y51500D02*X395328Y52300D01*

-X393941Y51500D02*X392554Y52300D01*

-X392441Y45000D02*Y43400D01*

-Y45000D02*X393828Y45800D01*

-X392441Y45000D02*X391054Y45800D01*

-X434449Y56500D02*Y54900D01*

-Y56500D02*X435836Y57300D01*

-X434449Y56500D02*X433062Y57300D01*

-X440449Y56500D02*Y54900D01*

-Y56500D02*X441836Y57300D01*

-X440449Y56500D02*X439062Y57300D01*

-X163941Y127500D02*Y125900D01*

-Y127500D02*X165328Y128300D01*

-X163941Y127500D02*X162554Y128300D01*

-X193390Y127500D02*Y125900D01*

-Y127500D02*X194777Y128300D01*

-X193390Y127500D02*X192003Y128300D01*

-X112222Y127340D02*Y125740D01*

-Y127340D02*X113609Y128140D01*

-X112222Y127340D02*X110835Y128140D01*

-X245441Y127500D02*Y125900D01*

-Y127500D02*X246828Y128300D01*

-X245441Y127500D02*X244054Y128300D01*

-X114441Y121500D02*Y119900D01*

-Y121500D02*X115828Y122300D01*

-X114441Y121500D02*X113054Y122300D01*

-X115441Y132500D02*Y130900D01*

-Y132500D02*X116828Y133300D01*

-X115441Y132500D02*X114054Y133300D01*

-X152441Y121500D02*Y119900D01*

-Y121500D02*X153828Y122300D01*

-X152441Y121500D02*X151054Y122300D01*

-X151941Y132000D02*Y130400D01*

-Y132000D02*X153328Y132800D01*

-X151941Y132000D02*X150554Y132800D01*

-X127941Y148000D02*Y146400D01*

-Y148000D02*X129328Y148800D01*

-X127941Y148000D02*X126554Y148800D01*

-X141441Y148000D02*Y146400D01*

-Y148000D02*X142828Y148800D01*

-X141441Y148000D02*X140054Y148800D01*

-X198441Y122500D02*Y120900D01*

-Y122500D02*X199828Y123300D01*

-X198441Y122500D02*X197054Y123300D01*

-X195441Y133000D02*Y131400D01*

-Y133000D02*X196828Y133800D01*

-X195441Y133000D02*X194054Y133800D01*

-X208941Y148000D02*Y146400D01*

-Y148000D02*X210328Y148800D01*

-X208941Y148000D02*X207554Y148800D01*

-X223941Y148000D02*Y146400D01*

-Y148000D02*X225328Y148800D01*

-X223941Y148000D02*X222554Y148800D01*

-X234441Y122500D02*Y120900D01*

-Y122500D02*X235828Y123300D01*

-X234441Y122500D02*X233054Y123300D01*

-X235941Y133000D02*Y131400D01*

-Y133000D02*X237328Y133800D01*

-X235941Y133000D02*X234554Y133800D01*

-X128941Y274500D02*Y272900D01*

-Y274500D02*X130328Y275300D01*

-X128941Y274500D02*X127554Y275300D01*

-X128941Y268500D02*Y266900D01*

-Y268500D02*X130328Y269300D01*

-X128941Y268500D02*X127554Y269300D01*

-X128941Y262500D02*Y260900D01*

-Y262500D02*X130328Y263300D01*

-X128941Y262500D02*X127554Y263300D01*

-X128941Y255000D02*Y253400D01*

-Y255000D02*X130328Y255800D01*

-X128941Y255000D02*X127554Y255800D01*

-X128941Y248500D02*Y246900D01*

-Y248500D02*X130328Y249300D01*

-X128941Y248500D02*X127554Y249300D01*

-X128941Y242500D02*Y240900D01*

-Y242500D02*X130328Y243300D01*

-X128941Y242500D02*X127554Y243300D01*

-X162441Y242500D02*Y240900D01*

-Y242500D02*X163828Y243300D01*

-X162441Y242500D02*X161054Y243300D01*

-X162441Y248500D02*Y246900D01*

-Y248500D02*X163828Y249300D01*

-X162441Y248500D02*X161054Y249300D01*

-X161941Y255000D02*Y253400D01*

-Y255000D02*X163328Y255800D01*

-X161941Y255000D02*X160554Y255800D01*

-X162441Y262500D02*Y260900D01*

-Y262500D02*X163828Y263300D01*

-X162441Y262500D02*X161054Y263300D01*

-X162941Y268500D02*Y266900D01*

-Y268500D02*X164328Y269300D01*

-X162941Y268500D02*X161554Y269300D01*

-X162941Y274500D02*Y272900D01*

-Y274500D02*X164328Y275300D01*

-X162941Y274500D02*X161554Y275300D01*

-X165941Y231000D02*Y229400D01*

-Y231000D02*X167328Y231800D01*

-X165941Y231000D02*X164554Y231800D01*

-X165941Y226500D02*Y224900D01*

-Y226500D02*X167328Y227300D01*

-X165941Y226500D02*X164554Y227300D01*

-X165941Y220500D02*Y218900D01*

-Y220500D02*X167328Y221300D01*

-X165941Y220500D02*X164554Y221300D01*

-X169441Y214000D02*Y212400D01*

-Y214000D02*X170828Y214800D01*

-X169441Y214000D02*X168054Y214800D01*

-X169441Y208500D02*Y206900D01*

-Y208500D02*X170828Y209300D01*

-X169441Y208500D02*X168054Y209300D01*

-X169441Y201500D02*Y199900D01*

-Y201500D02*X170828Y202300D01*

-X169441Y201500D02*X168054Y202300D01*

-X141307Y300883D02*Y299283D01*

-Y300883D02*X142694Y301683D01*

-X141307Y300883D02*X139920Y301683D01*

-X158441Y323829D02*Y322229D01*

-Y323829D02*X159828Y324629D01*

-X158441Y323829D02*X157054Y324629D01*

-X158441Y328829D02*Y327229D01*

-Y328829D02*X159828Y329629D01*

-X158441Y328829D02*X157054Y329629D01*

-X158441Y326500D02*Y324900D01*

-Y326500D02*X159828Y327300D01*

-X158441Y326500D02*X157054Y327300D01*

-X197441Y314500D02*Y312900D01*

-Y314500D02*X198828Y315300D01*

-X197441Y314500D02*X196054Y315300D01*

-X195441Y311500D02*Y309900D01*

-Y311500D02*X196828Y312300D01*

-X195441Y311500D02*X194054Y312300D01*

-X197441Y308500D02*Y306900D01*

-Y308500D02*X198828Y309300D01*

-X197441Y308500D02*X196054Y309300D01*

-X124831Y302385D02*Y300785D01*

-Y302385D02*X126218Y303185D01*

-X124831Y302385D02*X123444Y303185D01*

-X135441Y338500D02*Y336900D01*

-Y338500D02*X136828Y339300D01*

-X135441Y338500D02*X134054Y339300D01*

-X135441Y335000D02*Y333400D01*

-Y335000D02*X136828Y335800D01*

-X135441Y335000D02*X134054Y335800D01*

-X139941Y338000D02*Y336400D01*

-Y338000D02*X141328Y338800D01*

-X139941Y338000D02*X138554Y338800D01*

-X153941Y338000D02*Y336400D01*

-Y338000D02*X155328Y338800D01*

-X153941Y338000D02*X152554Y338800D01*

-X111941Y334000D02*Y332400D01*

-Y334000D02*X113328Y334800D01*

-X111941Y334000D02*X110554Y334800D01*

-X117941Y334000D02*Y332400D01*

-Y334000D02*X119328Y334800D01*

-X117941Y334000D02*X116554Y334800D01*

-X126441Y334000D02*Y332400D01*

-Y334000D02*X127828Y334800D01*

-X126441Y334000D02*X125054Y334800D01*

-X126441Y340500D02*Y338900D01*

-Y340500D02*X127828Y341300D01*

-X126441Y340500D02*X125054Y341300D01*

-X111941Y341000D02*Y339400D01*

-Y341000D02*X113328Y341800D01*

-X111941Y341000D02*X110554Y341800D01*

-X111941Y357500D02*Y355900D01*

-Y357500D02*X113328Y358300D01*

-X111941Y357500D02*X110554Y358300D01*

-X142441Y357500D02*Y355900D01*

-Y357500D02*X143828Y358300D01*

-X142441Y357500D02*X141054Y358300D01*

-X142441Y349500D02*Y347900D01*

-Y349500D02*X143828Y350300D01*

-X142441Y349500D02*X141054Y350300D01*

-X154941Y345500D02*Y343900D01*

-Y345500D02*X156328Y346300D01*

-X154941Y345500D02*X153554Y346300D01*

-X149441Y349500D02*Y347900D01*

-Y349500D02*X150828Y350300D01*

-X149441Y349500D02*X148054Y350300D01*

-X121941Y357500D02*Y355900D01*

-Y357500D02*X123328Y358300D01*

-X121941Y357500D02*X120554Y358300D01*

-X130941Y357500D02*Y355900D01*

-Y357500D02*X132328Y358300D01*

-X130941Y357500D02*X129554Y358300D01*

-X309441Y141568D02*Y139968D01*

-Y141568D02*X310828Y142368D01*

-X309441Y141568D02*X308054Y142368D01*

-X309441Y136450D02*Y134850D01*

-Y136450D02*X310828Y137250D01*

-X309441Y136450D02*X308054Y137250D01*

-X310941Y115940D02*Y114340D01*

-Y115940D02*X312328Y116740D01*

-X310941Y115940D02*X309554Y116740D01*

-X305696Y107500D02*Y105900D01*

-Y107500D02*X307083Y108300D01*

-X305696Y107500D02*X304309Y108300D01*

-X263441Y320000D02*Y318400D01*

-Y320000D02*X264828Y320800D01*

-X263441Y320000D02*X262054Y320800D01*

-X304584Y207483D02*Y205883D01*

-Y207483D02*X305971Y208283D01*

-X304584Y207483D02*X303197Y208283D01*

-X304706Y210583D02*Y208983D01*

-Y210583D02*X306093Y211383D01*

-X304706Y210583D02*X303319Y211383D01*

-X305280Y204383D02*Y202783D01*

-Y204383D02*X306667Y205183D01*

-X305280Y204383D02*X303893Y205183D01*

-X246941Y238000D02*Y236400D01*

-Y238000D02*X248328Y238800D01*

-X246941Y238000D02*X245554Y238800D01*

-X242441Y229500D02*Y227900D01*

-Y229500D02*X243828Y230300D01*

-X242441Y229500D02*X241054Y230300D01*

-X246441Y229500D02*Y227900D01*

-Y229500D02*X247828Y230300D01*

-X246441Y229500D02*X245054Y230300D01*

-X250941Y229500D02*Y227900D01*

-Y229500D02*X252328Y230300D01*

-X250941Y229500D02*X249554Y230300D01*

-X221884Y254000D02*Y252400D01*

-Y254000D02*X223271Y254800D01*

-X221884Y254000D02*X220497Y254800D01*

-X224441Y252000D02*Y250400D01*

-Y252000D02*X225828Y252800D01*

-X224441Y252000D02*X223054Y252800D01*

-X356441Y233000D02*Y231400D01*

-Y233000D02*X357828Y233800D01*

-X356441Y233000D02*X355054Y233800D01*

-X338441Y224192D02*Y222592D01*

-Y224192D02*X339828Y224992D01*

-X338441Y224192D02*X337054Y224992D01*

-X338441Y230124D02*Y228524D01*

-Y230124D02*X339828Y230924D01*

-X338441Y230124D02*X337054Y230924D01*

-X225441Y249000D02*Y247400D01*

-Y249000D02*X226828Y249800D01*

-X225441Y249000D02*X224054Y249800D01*

-X219441Y272500D02*Y270900D01*

-Y272500D02*X220828Y273300D01*

-X219441Y272500D02*X218054Y273300D01*

-X220729Y265580D02*Y263980D01*

-Y265580D02*X222116Y266380D01*

-X220729Y265580D02*X219342Y266380D01*

-X217441Y279000D02*Y277400D01*

-Y279000D02*X218828Y279800D01*

-X217441Y279000D02*X216054Y279800D01*

-X260568Y316997D02*Y315397D01*

-Y316997D02*X261955Y317797D01*

-X260568Y316997D02*X259181Y317797D01*

-X240391Y278564D02*Y276964D01*

-Y278564D02*X241778Y279364D01*

-X240391Y278564D02*X239004Y279364D01*

-X230441Y293000D02*Y291400D01*

-Y293000D02*X231828Y293800D01*

-X230441Y293000D02*X229054Y293800D01*

-X264034Y282931D02*Y281331D01*

-Y282931D02*X265421Y283731D01*

-X264034Y282931D02*X262647Y283731D01*

-X279441Y285000D02*Y283400D01*

-Y285000D02*X280828Y285800D01*

-X279441Y285000D02*X278054Y285800D01*

-X246731Y303031D02*Y301431D01*

-Y303031D02*X248118Y303831D01*

-X246731Y303031D02*X245344Y303831D01*

-X270441Y336000D02*Y334400D01*

-Y336000D02*X271828Y336800D01*

-X270441Y336000D02*X269054Y336800D01*

-X270441Y342500D02*Y340900D01*

-Y342500D02*X271828Y343300D01*

-X270441Y342500D02*X269054Y343300D01*

-X270441Y349500D02*Y347900D01*

-Y349500D02*X271828Y350300D01*

-X270441Y349500D02*X269054Y350300D01*

-X392188Y239000D02*Y237400D01*

-Y239000D02*X393575Y239800D01*

-X392188Y239000D02*X390801Y239800D01*

-X388207Y247280D02*Y245680D01*

-Y247280D02*X389594Y248080D01*

-X388207Y247280D02*X386820Y248080D01*

-X191363Y344449D02*Y342849D01*

-Y344449D02*X192750Y345249D01*

-X191363Y344449D02*X189976Y345249D01*

-X178887Y342818D02*Y341218D01*

-Y342818D02*X180274Y343618D01*

-X178887Y342818D02*X177500Y343618D01*

-X168732Y350833D02*Y349233D01*

-Y350833D02*X170119Y351633D01*

-X168732Y350833D02*X167345Y351633D01*

-X296727Y256227D02*Y254627D01*

-Y256227D02*X298114Y257027D01*

-X296727Y256227D02*X295340Y257027D01*

-X339837Y341827D02*Y340227D01*

-Y341827D02*X341224Y342627D01*

-X339837Y341827D02*X338450Y342627D01*

-X353390Y339521D02*Y337921D01*

-Y339521D02*X354777Y340321D01*

-X353390Y339521D02*X352003Y340321D01*

-X337441Y163000D02*Y161400D01*

-Y163000D02*X338828Y163800D01*

-X337441Y163000D02*X336054Y163800D01*

-X377347Y162178D02*Y160578D01*

-Y162178D02*X378734Y162978D01*

-X377347Y162178D02*X375960Y162978D01*

-X230441Y247000D02*Y245400D01*

-Y247000D02*X231828Y247800D01*

-X230441Y247000D02*X229054Y247800D01*

-X358941Y208500D02*Y206900D01*

-Y208500D02*X360328Y209300D01*

-X358941Y208500D02*X357554Y209300D01*

-X220441Y259500D02*Y257900D01*

-Y259500D02*X221828Y260300D01*

-X220441Y259500D02*X219054Y260300D01*

-X218441Y261500D02*Y259900D01*

-Y261500D02*X219828Y262300D01*

-X218441Y261500D02*X217054Y262300D01*

-X198441Y262500D02*Y260900D01*

-Y262500D02*X199828Y263300D01*

-X198441Y262500D02*X197054Y263300D01*

-X198441Y269500D02*Y267900D01*

-Y269500D02*X199828Y270300D01*

-X198441Y269500D02*X197054Y270300D01*

-X205441Y277000D02*Y275400D01*

-Y277000D02*X206828Y277800D01*

-X205441Y277000D02*X204054Y277800D01*

-X185441Y228000D02*Y226400D01*

-Y228000D02*X186828Y228800D01*

-X185441Y228000D02*X184054Y228800D01*

-X177441Y228000D02*Y226400D01*

-Y228000D02*X178828Y228800D01*

-X177441Y228000D02*X176054Y228800D01*

-X177441Y217500D02*Y215900D01*

-Y217500D02*X178828Y218300D01*

-X177441Y217500D02*X176054Y218300D01*

-X185441Y217500D02*Y215900D01*

-Y217500D02*X186828Y218300D01*

-X185441Y217500D02*X184054Y218300D01*

-X193941Y212500D02*Y210900D01*

-Y212500D02*X195328Y213300D01*

-X193941Y212500D02*X192554Y213300D01*

-X202441Y212500D02*Y210900D01*

-Y212500D02*X203828Y213300D01*

-X202441Y212500D02*X201054Y213300D01*

-X210441Y212500D02*Y210900D01*

-Y212500D02*X211828Y213300D01*

-X210441Y212500D02*X209054Y213300D01*

-X220441Y215000D02*Y213400D01*

-Y215000D02*X221828Y215800D01*

-X220441Y215000D02*X219054Y215800D01*

-X224941Y220500D02*Y218900D01*

-Y220500D02*X226328Y221300D01*

-X224941Y220500D02*X223554Y221300D01*

-X225441Y226500D02*Y224900D01*

-Y226500D02*X226828Y227300D01*

-X225441Y226500D02*X224054Y227300D01*

-X224941Y235500D02*Y233900D01*

-Y235500D02*X226328Y236300D01*

-X224941Y235500D02*X223554Y236300D01*

-X224441Y244000D02*Y242400D01*

-Y244000D02*X225828Y244800D01*

-X224441Y244000D02*X223054Y244800D01*

-X212941Y238000D02*Y236400D01*

-Y238000D02*X214328Y238800D01*

-X212941Y238000D02*X211554Y238800D01*

-X203941Y237500D02*Y235900D01*

-Y237500D02*X205328Y238300D01*

-X203941Y237500D02*X202554Y238300D01*

-X193941Y237000D02*Y235400D01*

-Y237000D02*X195328Y237800D01*

-X193941Y237000D02*X192554Y237800D01*

-X236441Y235500D02*Y233900D01*

-Y235500D02*X237828Y236300D01*

-X236441Y235500D02*X235054Y236300D01*

-X181941Y258500D02*Y256900D01*

-Y258500D02*X183328Y259300D01*

-X181941Y258500D02*X180554Y259300D01*

-X104441Y204500D02*Y202900D01*

-Y204500D02*X105828Y205300D01*

-X104441Y204500D02*X103054Y205300D01*

-X100941Y204500D02*Y202900D01*

-Y204500D02*X102328Y205300D01*

-X100941Y204500D02*X99554Y205300D01*

-X260941Y191500D02*Y189900D01*

-Y191500D02*X262328Y192300D01*

-X260941Y191500D02*X259554Y192300D01*

-X269441Y198500D02*Y196900D01*

-Y198500D02*X270828Y199300D01*

-X269441Y198500D02*X268054Y199300D01*

-X269941Y231500D02*Y229900D01*

-Y231500D02*X271328Y232300D01*

-X269941Y231500D02*X268554Y232300D01*

-X251941Y210500D02*Y208900D01*

-Y210500D02*X253328Y211300D01*

-X251941Y210500D02*X250554Y211300D01*

-X243941Y202000D02*Y200400D01*

-Y202000D02*X245328Y202800D01*

-X243941Y202000D02*X242554Y202800D01*

-X245863Y191524D02*Y189924D01*

-Y191524D02*X247250Y192324D01*

-X245863Y191524D02*X244476Y192324D01*

-X261502Y307367D02*Y305767D01*

-Y307367D02*X262889Y308167D01*

-X261502Y307367D02*X260115Y308167D01*

-X268941Y314000D02*Y312400D01*

-Y314000D02*X270328Y314800D01*

-X268941Y314000D02*X267554Y314800D01*

-X249101Y328793D02*Y327193D01*

-Y328793D02*X250488Y329593D01*

-X249101Y328793D02*X247714Y329593D01*

-X229818Y354988D02*Y353388D01*

-Y354988D02*X231205Y355788D01*

-X229818Y354988D02*X228431Y355788D01*

-X270441Y357000D02*Y355400D01*

-Y357000D02*X271828Y357800D01*

-X270441Y357000D02*X269054Y357800D01*

-X15000Y516250D02*Y514650D01*

-Y516250D02*X16387Y517050D01*

-X15000Y516250D02*X13613Y517050D01*

-X135000Y518500D02*X136500Y515500D01*

-X138000Y518500D01*

-X136500Y515500D02*Y512500D01*

-X139800Y515800D02*X142050D01*

-X139800Y512500D02*X142800D01*

-X139800Y518500D02*Y512500D01*

-Y518500D02*X142800D01*

-X147600D02*X148350Y517750D01*

-X145350Y518500D02*X147600D01*

-X144600Y517750D02*X145350Y518500D01*

-X144600Y517750D02*Y516250D01*

-X145350Y515500D01*

-X147600D01*

-X148350Y514750D01*

-Y513250D01*

-X147600Y512500D02*X148350Y513250D01*

-X145350Y512500D02*X147600D01*

-X144600Y513250D02*X145350Y512500D01*

-X98000Y517300D02*X99200Y518500D01*

-Y512500D01*

-X98000D02*X100250D01*

-X102800D02*X105050Y515500D01*

-Y517750D02*Y515500D01*

-X104300Y518500D02*X105050Y517750D01*

-X102800Y518500D02*X104300D01*

-X102050Y517750D02*X102800Y518500D01*

-X102050Y517750D02*Y516250D01*

-X102800Y515500D01*

-X105050D01*

-X106850Y517750D02*X107600Y518500D01*

-X109850D01*

-X110600Y517750D01*

-Y516250D01*

-X106850Y512500D02*X110600Y516250D01*

-X106850Y512500D02*X110600D01*

-X45000Y513250D02*X45750Y512500D01*

-X45000Y517750D02*Y513250D01*

-Y517750D02*X45750Y518500D01*

-X47250D01*

-X48000Y517750D01*

-Y513250D01*

-X47250Y512500D02*X48000Y513250D01*

-X45750Y512500D02*X47250D01*

-X45000Y514000D02*X48000Y517000D01*

-X49800Y512500D02*X50550D01*

-X52350Y513250D02*X53100Y512500D01*

-X52350Y517750D02*Y513250D01*

-Y517750D02*X53100Y518500D01*

-X54600D01*

-X55350Y517750D01*

-Y513250D01*

-X54600Y512500D02*X55350Y513250D01*

-X53100Y512500D02*X54600D01*

-X52350Y514000D02*X55350Y517000D01*

-X57150Y517300D02*X58350Y518500D01*

-Y512500D01*

-X57150D02*X59400D01*

-X61200Y513250D02*X61950Y512500D01*

-X61200Y517750D02*Y513250D01*

-Y517750D02*X61950Y518500D01*

-X63450D01*

-X64200Y517750D01*

-Y513250D01*

-X63450Y512500D02*X64200Y513250D01*

-X61950Y512500D02*X63450D01*

-X61200Y514000D02*X64200Y517000D01*

-X3000Y533500D02*X3750Y532750D01*

-X750Y533500D02*X3000D01*

-X0Y532750D02*X750Y533500D01*

-X0Y532750D02*Y531250D01*

-X750Y530500D01*

-X3000D01*

-X3750Y529750D01*

-Y528250D01*

-X3000Y527500D02*X3750Y528250D01*

-X750Y527500D02*X3000D01*

-X0Y528250D02*X750Y527500D01*

-X5550Y530500D02*Y528250D01*

-X6300Y527500D01*

-X8550Y530500D02*Y526000D01*

-X7800Y525250D02*X8550Y526000D01*

-X6300Y525250D02*X7800D01*

-X5550Y526000D02*X6300Y525250D01*

-Y527500D02*X7800D01*

-X8550Y528250D01*

-X11100Y529750D02*Y527500D01*

-Y529750D02*X11850Y530500D01*

-X12600D01*

-X13350Y529750D01*

-Y527500D01*

-Y529750D02*X14100Y530500D01*

-X14850D01*

-X15600Y529750D01*

-Y527500D01*

-X10350Y530500D02*X11100Y529750D01*

-X17400Y533500D02*Y527500D01*

-Y528250D02*X18150Y527500D01*

-X19650D01*

-X20400Y528250D01*

-Y529750D02*Y528250D01*

-X19650Y530500D02*X20400Y529750D01*

-X18150Y530500D02*X19650D01*

-X17400Y529750D02*X18150Y530500D01*

-X22200Y529750D02*Y528250D01*

-Y529750D02*X22950Y530500D01*

-X24450D01*

-X25200Y529750D01*

-Y528250D01*

-X24450Y527500D02*X25200Y528250D01*

-X22950Y527500D02*X24450D01*

-X22200Y528250D02*X22950Y527500D01*

-X27000Y533500D02*Y528250D01*

-X27750Y527500D01*

-X0Y524250D02*X29250D01*

-X41750Y533500D02*Y527500D01*

-X43700Y533500D02*X44750Y532450D01*

-Y528550D01*

-X43700Y527500D02*X44750Y528550D01*

-X41000Y527500D02*X43700D01*

-X41000Y533500D02*X43700D01*

-G54D317*X46550Y532000D02*Y531850D01*

-G54D316*Y529750D02*Y527500D01*

-X50300Y530500D02*X51050Y529750D01*

-X48800Y530500D02*X50300D01*

-X48050Y529750D02*X48800Y530500D01*

-X48050Y529750D02*Y528250D01*

-X48800Y527500D01*

-X51050Y530500D02*Y528250D01*

-X51800Y527500D01*

-X48800D02*X50300D01*

-X51050Y528250D01*

-X54350Y529750D02*Y527500D01*

-Y529750D02*X55100Y530500D01*

-X55850D01*

-X56600Y529750D01*

-Y527500D01*

-Y529750D02*X57350Y530500D01*

-X58100D01*

-X58850Y529750D01*

-Y527500D01*

-X53600Y530500D02*X54350Y529750D01*

-X60650Y527500D02*X61400D01*

-X65900Y528250D02*X66650Y527500D01*

-X65900Y532750D02*X66650Y533500D01*

-X65900Y532750D02*Y528250D01*

-X68450Y533500D02*X69950D01*

-X69200D02*Y527500D01*

-X68450D02*X69950D01*

-X72500Y529750D02*Y527500D01*

-Y529750D02*X73250Y530500D01*

-X74000D01*

-X74750Y529750D01*

-Y527500D01*

-X71750Y530500D02*X72500Y529750D01*

-X77300Y530500D02*X79550D01*

-X76550Y529750D02*X77300Y530500D01*

-X76550Y529750D02*Y528250D01*

-X77300Y527500D01*

-X79550D01*

-X81350Y533500D02*Y527500D01*

-Y529750D02*X82100Y530500D01*

-X83600D01*

-X84350Y529750D01*

-Y527500D01*

-X86150Y533500D02*X86900Y532750D01*

-Y528250D01*

-X86150Y527500D02*X86900Y528250D01*

-X41000Y524250D02*X88700D01*

-X96050Y527500D02*X98000D01*

-X95000Y528550D02*X96050Y527500D01*

-X95000Y532450D02*Y528550D01*

-Y532450D02*X96050Y533500D01*

-X98000D01*

-X99800Y529750D02*Y528250D01*

-Y529750D02*X100550Y530500D01*

-X102050D01*

-X102800Y529750D01*

-Y528250D01*

-X102050Y527500D02*X102800Y528250D01*

-X100550Y527500D02*X102050D01*

-X99800Y528250D02*X100550Y527500D01*

-X104600Y530500D02*Y528250D01*

-X105350Y527500D01*

-X106850D01*

-X107600Y528250D01*

-Y530500D02*Y528250D01*

-X110150Y529750D02*Y527500D01*

-Y529750D02*X110900Y530500D01*

-X111650D01*

-X112400Y529750D01*

-Y527500D01*

-X109400Y530500D02*X110150Y529750D01*

-X114950Y533500D02*Y528250D01*

-X115700Y527500D01*

-X114200Y531250D02*X115700D01*

-X95000Y524250D02*X117200D01*

-X130750Y533500D02*Y527500D01*

-X130000Y533500D02*X133000D01*

-X133750Y532750D01*

-Y531250D01*

-X133000Y530500D02*X133750Y531250D01*

-X130750Y530500D02*X133000D01*

-X135550Y533500D02*Y528250D01*

-X136300Y527500D01*

-X140050Y530500D02*X140800Y529750D01*

-X138550Y530500D02*X140050D01*

-X137800Y529750D02*X138550Y530500D01*

-X137800Y529750D02*Y528250D01*

-X138550Y527500D01*

-X140800Y530500D02*Y528250D01*

-X141550Y527500D01*

-X138550D02*X140050D01*

-X140800Y528250D01*

-X144100Y533500D02*Y528250D01*

-X144850Y527500D01*

-X143350Y531250D02*X144850D01*

-X147100Y527500D02*X149350D01*

-X146350Y528250D02*X147100Y527500D01*

-X146350Y529750D02*Y528250D01*

-Y529750D02*X147100Y530500D01*

-X148600D01*

-X149350Y529750D01*

-X146350Y529000D02*X149350D01*

-Y529750D02*Y529000D01*

-X154150Y533500D02*Y527500D01*

-X153400D02*X154150Y528250D01*

-X151900Y527500D02*X153400D01*

-X151150Y528250D02*X151900Y527500D01*

-X151150Y529750D02*Y528250D01*

-Y529750D02*X151900Y530500D01*

-X153400D01*

-X154150Y529750D01*

-X157450Y530500D02*Y529750D01*

-Y528250D02*Y527500D01*

-X155950Y532750D02*Y532000D01*

-Y532750D02*X156700Y533500D01*

-X158200D01*

-X158950Y532750D01*

-Y532000D01*

-X157450Y530500D02*X158950Y532000D01*

-X130000Y524250D02*X160750D01*

-X0Y548500D02*X3000D01*

-X1500D02*Y542500D01*

-X4800Y548500D02*Y542500D01*

-Y544750D02*X5550Y545500D01*

-X7050D01*

-X7800Y544750D01*

-Y542500D01*

-X10350D02*X12600D01*

-X9600Y543250D02*X10350Y542500D01*

-X9600Y544750D02*Y543250D01*

-Y544750D02*X10350Y545500D01*

-X11850D01*

-X12600Y544750D01*

-X9600Y544000D02*X12600D01*

-Y544750D02*Y544000D01*

-X15150Y544750D02*Y542500D01*

-Y544750D02*X15900Y545500D01*

-X17400D01*

-X14400D02*X15150Y544750D01*

-X19950Y542500D02*X22200D01*

-X19200Y543250D02*X19950Y542500D01*

-X19200Y544750D02*Y543250D01*

-Y544750D02*X19950Y545500D01*

-X21450D01*

-X22200Y544750D01*

-X19200Y544000D02*X22200D01*

-Y544750D02*Y544000D01*

-X28950Y545500D02*X29700Y544750D01*

-X27450Y545500D02*X28950D01*

-X26700Y544750D02*X27450Y545500D01*

-X26700Y544750D02*Y543250D01*

-X27450Y542500D01*

-X29700Y545500D02*Y543250D01*

-X30450Y542500D01*

-X27450D02*X28950D01*

-X29700Y543250D01*

-X33000Y544750D02*Y542500D01*

-Y544750D02*X33750Y545500D01*

-X35250D01*

-X32250D02*X33000Y544750D01*

-X37800Y542500D02*X40050D01*

-X37050Y543250D02*X37800Y542500D01*

-X37050Y544750D02*Y543250D01*

-Y544750D02*X37800Y545500D01*

-X39300D01*

-X40050Y544750D01*

-X37050Y544000D02*X40050D01*

-Y544750D02*Y544000D01*

-X44550Y543250D02*X45300Y542500D01*

-X44550Y544450D02*Y543250D01*

-Y544450D02*X45600Y545500D01*

-X46500D01*

-X47550Y544450D01*

-Y543250D01*

-X46800Y542500D02*X47550Y543250D01*

-X45300Y542500D02*X46800D01*

-X44550Y546550D02*X45600Y545500D01*

-X44550Y547750D02*Y546550D01*

-Y547750D02*X45300Y548500D01*

-X46800D01*

-X47550Y547750D01*

-Y546550D01*

-X46500Y545500D02*X47550Y546550D01*

-X55050Y548500D02*Y542500D01*

-X54300D02*X55050Y543250D01*

-X52800Y542500D02*X54300D01*

-X52050Y543250D02*X52800Y542500D01*

-X52050Y544750D02*Y543250D01*

-Y544750D02*X52800Y545500D01*

-X54300D01*

-X55050Y544750D01*

-G54D317*X56850Y547000D02*Y546850D01*

-G54D316*Y544750D02*Y542500D01*

-X59100Y547750D02*Y542500D01*

-Y547750D02*X59850Y548500D01*

-X60600D01*

-X58350Y545500D02*X59850D01*

-X62850Y547750D02*Y542500D01*

-Y547750D02*X63600Y548500D01*

-X64350D01*

-X62100Y545500D02*X63600D01*

-X66600Y542500D02*X68850D01*

-X65850Y543250D02*X66600Y542500D01*

-X65850Y544750D02*Y543250D01*

-Y544750D02*X66600Y545500D01*

-X68100D01*

-X68850Y544750D01*

-X65850Y544000D02*X68850D01*

-Y544750D02*Y544000D01*

-X71400Y544750D02*Y542500D01*

-Y544750D02*X72150Y545500D01*

-X73650D01*

-X70650D02*X71400Y544750D01*

-X76200Y542500D02*X78450D01*

-X75450Y543250D02*X76200Y542500D01*

-X75450Y544750D02*Y543250D01*

-Y544750D02*X76200Y545500D01*

-X77700D01*

-X78450Y544750D01*

-X75450Y544000D02*X78450D01*

-Y544750D02*Y544000D01*

-X81000Y544750D02*Y542500D01*

-Y544750D02*X81750Y545500D01*

-X82500D01*

-X83250Y544750D01*

-Y542500D01*

-X80250Y545500D02*X81000Y544750D01*

-X85800Y548500D02*Y543250D01*

-X86550Y542500D01*

-X85050Y546250D02*X86550D01*

-X93750Y548500D02*Y542500D01*

-X93000D02*X93750Y543250D01*

-X91500Y542500D02*X93000D01*

-X90750Y543250D02*X91500Y542500D01*

-X90750Y544750D02*Y543250D01*

-Y544750D02*X91500Y545500D01*

-X93000D01*

-X93750Y544750D01*

-X96300D02*Y542500D01*

-Y544750D02*X97050Y545500D01*

-X98550D01*

-X95550D02*X96300Y544750D01*

-G54D317*X100350Y547000D02*Y546850D01*

-G54D316*Y544750D02*Y542500D01*

-X101850Y548500D02*Y543250D01*

-X102600Y542500D01*

-X104100Y548500D02*Y543250D01*

-X104850Y542500D01*

-X109800D02*X112050D01*

-X112800Y543250D01*

-X112050Y544000D02*X112800Y543250D01*

-X109800Y544000D02*X112050D01*

-X109050Y544750D02*X109800Y544000D01*

-X109050Y544750D02*X109800Y545500D01*

-X112050D01*

-X112800Y544750D01*

-X109050Y543250D02*X109800Y542500D01*

-G54D317*X114600Y547000D02*Y546850D01*

-G54D316*Y544750D02*Y542500D01*

-X116100Y545500D02*X119100D01*

-X116100Y542500D02*X119100Y545500D01*

-X116100Y542500D02*X119100D01*

-X121650D02*X123900D01*

-X120900Y543250D02*X121650Y542500D01*

-X120900Y544750D02*Y543250D01*

-Y544750D02*X121650Y545500D01*

-X123150D01*

-X123900Y544750D01*

-X120900Y544000D02*X123900D01*

-Y544750D02*Y544000D01*

-X126450Y542500D02*X128700D01*

-X129450Y543250D01*

-X128700Y544000D02*X129450Y543250D01*

-X126450Y544000D02*X128700D01*

-X125700Y544750D02*X126450Y544000D01*

-X125700Y544750D02*X126450Y545500D01*

-X128700D01*

-X129450Y544750D01*

-X125700Y543250D02*X126450Y542500D01*

-X133950Y545500D02*Y543250D01*

-X134700Y542500D01*

-X136200D01*

-X136950Y543250D01*

-Y545500D02*Y543250D01*

-X139500Y542500D02*X141750D01*

-X142500Y543250D01*

-X141750Y544000D02*X142500Y543250D01*

-X139500Y544000D02*X141750D01*

-X138750Y544750D02*X139500Y544000D01*

-X138750Y544750D02*X139500Y545500D01*

-X141750D01*

-X142500Y544750D01*

-X138750Y543250D02*X139500Y542500D01*

-X145050D02*X147300D01*

-X144300Y543250D02*X145050Y542500D01*

-X144300Y544750D02*Y543250D01*

-Y544750D02*X145050Y545500D01*

-X146550D01*

-X147300Y544750D01*

-X144300Y544000D02*X147300D01*

-Y544750D02*Y544000D01*

-X152100Y548500D02*Y542500D01*

-X151350D02*X152100Y543250D01*

-X149850Y542500D02*X151350D01*

-X149100Y543250D02*X149850Y542500D01*

-X149100Y544750D02*Y543250D01*

-Y544750D02*X149850Y545500D01*

-X151350D01*

-X152100Y544750D01*

-G54D317*X156600Y547000D02*Y546850D01*

-G54D316*Y544750D02*Y542500D01*

-X158850Y544750D02*Y542500D01*

-Y544750D02*X159600Y545500D01*

-X160350D01*

-X161100Y544750D01*

-Y542500D01*

-X158100Y545500D02*X158850Y544750D01*

-X166350Y548500D02*Y543250D01*

-X167100Y542500D01*

-X165600Y546250D02*X167100D01*

-X168600Y548500D02*Y542500D01*

-Y544750D02*X169350Y545500D01*

-X170850D01*

-X171600Y544750D01*

-Y542500D01*

-G54D317*X173400Y547000D02*Y546850D01*

-G54D316*Y544750D02*Y542500D01*

-X175650D02*X177900D01*

-X178650Y543250D01*

-X177900Y544000D02*X178650Y543250D01*

-X175650Y544000D02*X177900D01*

-X174900Y544750D02*X175650Y544000D01*

-X174900Y544750D02*X175650Y545500D01*

-X177900D01*

-X178650Y544750D01*

-X174900Y543250D02*X175650Y542500D01*

-X183150Y548500D02*Y543250D01*

-X183900Y542500D01*

-X187650Y545500D02*X188400Y544750D01*

-X186150Y545500D02*X187650D01*

-X185400Y544750D02*X186150Y545500D01*

-X185400Y544750D02*Y543250D01*

-X186150Y542500D01*

-X188400Y545500D02*Y543250D01*

-X189150Y542500D01*

-X186150D02*X187650D01*

-X188400Y543250D01*

-X190950Y545500D02*Y543250D01*

-X191700Y542500D01*

-X193950Y545500D02*Y541000D01*

-X193200Y540250D02*X193950Y541000D01*

-X191700Y540250D02*X193200D01*

-X190950Y541000D02*X191700Y540250D01*

-Y542500D02*X193200D01*

-X193950Y543250D01*

-X195750Y544750D02*Y543250D01*

-Y544750D02*X196500Y545500D01*

-X198000D01*

-X198750Y544750D01*

-Y543250D01*

-X198000Y542500D02*X198750Y543250D01*

-X196500Y542500D02*X198000D01*

-X195750Y543250D02*X196500Y542500D01*

-X200550Y545500D02*Y543250D01*

-X201300Y542500D01*

-X202800D01*

-X203550Y543250D01*

-Y545500D02*Y543250D01*

-X206100Y548500D02*Y543250D01*

-X206850Y542500D01*

-X205350Y546250D02*X206850D01*

-X208350Y541000D02*X209850Y542500D01*

-X214350Y544750D02*X217350Y548500D01*

-X214350Y544750D02*X218100D01*

-X217350Y548500D02*Y542500D01*

-X219900Y547750D02*X220650Y548500D01*

-X222150D01*

-X222900Y547750D01*

-X222150Y542500D02*X222900Y543250D01*

-X220650Y542500D02*X222150D01*

-X219900Y543250D02*X220650Y542500D01*

-Y545800D02*X222150D01*

-X222900Y547750D02*Y546550D01*

-Y545050D02*Y543250D01*

-Y545050D02*X222150Y545800D01*

-X222900Y546550D02*X222150Y545800D01*

-X224700Y547750D02*X225450Y548500D01*

-X227700D01*

-X228450Y547750D01*

-Y546250D01*

-X224700Y542500D02*X228450Y546250D01*

-X224700Y542500D02*X228450D01*

-X232950Y548500D02*Y542500D01*

-Y544750D02*X233700Y545500D01*

-X235200D01*

-X235950Y544750D01*

-Y542500D01*

-X237750Y544750D02*Y543250D01*

-Y544750D02*X238500Y545500D01*

-X240000D01*

-X240750Y544750D01*

-Y543250D01*

-X240000Y542500D02*X240750Y543250D01*

-X238500Y542500D02*X240000D01*

-X237750Y543250D02*X238500Y542500D01*

-X242550Y548500D02*Y543250D01*

-X243300Y542500D01*

-X245550D02*X247800D01*

-X244800Y543250D02*X245550Y542500D01*

-X244800Y544750D02*Y543250D01*

-Y544750D02*X245550Y545500D01*

-X247050D01*

-X247800Y544750D01*

-X244800Y544000D02*X247800D01*

-Y544750D02*Y544000D01*

-X250350Y542500D02*X252600D01*

-X253350Y543250D01*

-X252600Y544000D02*X253350Y543250D01*

-X250350Y544000D02*X252600D01*

-X249600Y544750D02*X250350Y544000D01*

-X249600Y544750D02*X250350Y545500D01*

-X252600D01*

-X253350Y544750D01*

-X249600Y543250D02*X250350Y542500D01*

-X258600Y548500D02*Y543250D01*

-X259350Y542500D01*

-X257850Y546250D02*X259350D01*

-X260850Y544750D02*Y543250D01*

-Y544750D02*X261600Y545500D01*

-X263100D01*

-X263850Y544750D01*

-Y543250D01*

-X263100Y542500D02*X263850Y543250D01*

-X261600Y542500D02*X263100D01*

-X260850Y543250D02*X261600Y542500D01*

-X266400Y548500D02*Y543250D01*

-X267150Y542500D01*

-X265650Y546250D02*X267150D01*

-X270900Y545500D02*X271650Y544750D01*

-X269400Y545500D02*X270900D01*

-X268650Y544750D02*X269400Y545500D01*

-X268650Y544750D02*Y543250D01*

-X269400Y542500D01*

-X271650Y545500D02*Y543250D01*

-X272400Y542500D01*

-X269400D02*X270900D01*

-X271650Y543250D01*

-X274200Y548500D02*Y543250D01*

-X274950Y542500D01*

-G54D318*X74500Y399800D02*X478100D01*

-X484600Y393300D02*Y42000D01*

-X479100Y35500D02*X73500D01*

-X68000Y42000D02*Y244000D01*

-X74500Y250500D02*X101000D01*

-X107500Y256000D02*Y312500D01*

-X101000Y319000D02*X74500D01*

-X68000Y325500D02*Y393300D01*

-X478100Y399800D02*G75*G02X484600Y393300I0J-6500D01*G01*

-Y42000D02*G75*G02X478100Y35500I-6500J0D01*G01*

-X74500D02*G75*G02X68000Y42000I0J6500D01*G01*

-Y244000D02*G75*G02X74500Y250500I6500J0D01*G01*

-X107500Y257000D02*G75*G02X101000Y250500I-6500J0D01*G01*

-Y319000D02*G75*G02X107500Y312500I0J-6500D01*G01*

-X74500Y319000D02*G75*G02X68000Y325500I0J6500D01*G01*

-Y393300D02*G75*G02X74500Y399800I6500J0D01*G01*

-G54D316*X163675Y-9500D02*X166675D01*

-X167425Y-8750D01*

-Y-6950D02*Y-8750D01*

-X166675Y-6200D02*X167425Y-6950D01*

-X164425Y-6200D02*X166675D01*

-X164425Y-3500D02*Y-9500D01*

-X163675Y-3500D02*X166675D01*

-X167425Y-4250D01*

-Y-5450D01*

-X166675Y-6200D02*X167425Y-5450D01*

-X169225Y-7250D02*Y-8750D01*

-Y-7250D02*X169975Y-6500D01*

-X171475D01*

-X172225Y-7250D01*

-Y-8750D01*

-X171475Y-9500D02*X172225Y-8750D01*

-X169975Y-9500D02*X171475D01*

-X169225Y-8750D02*X169975Y-9500D01*

-X176275Y-6500D02*X177025Y-7250D01*

-X174775Y-6500D02*X176275D01*

-X174025Y-7250D02*X174775Y-6500D01*

-X174025Y-7250D02*Y-8750D01*

-X174775Y-9500D01*

-X177025Y-6500D02*Y-8750D01*

-X177775Y-9500D01*

-X174775D02*X176275D01*

-X177025Y-8750D01*

-X180325Y-7250D02*Y-9500D01*

-Y-7250D02*X181075Y-6500D01*

-X182575D01*

-X179575D02*X180325Y-7250D01*

-X187375Y-3500D02*Y-9500D01*

-X186625D02*X187375Y-8750D01*

-X185125Y-9500D02*X186625D01*

-X184375Y-8750D02*X185125Y-9500D01*

-X184375Y-7250D02*Y-8750D01*

-Y-7250D02*X185125Y-6500D01*

-X186625D01*

-X187375Y-7250D01*

-X191875D02*Y-8750D01*

-Y-7250D02*X192625Y-6500D01*

-X194125D01*

-X194875Y-7250D01*

-Y-8750D01*

-X194125Y-9500D02*X194875Y-8750D01*

-X192625Y-9500D02*X194125D01*

-X191875Y-8750D02*X192625Y-9500D01*

-X196675Y-6500D02*Y-8750D01*

-X197425Y-9500D01*

-X198925D01*

-X199675Y-8750D01*

-Y-6500D02*Y-8750D01*

-X202225Y-3500D02*Y-8750D01*

-X202975Y-9500D01*

-X201475Y-5750D02*X202975D01*

-X204475Y-3500D02*Y-8750D01*

-X205225Y-9500D01*

-G54D317*X206725Y-5000D02*Y-5150D01*

-G54D316*Y-7250D02*Y-9500D01*

-X208975Y-7250D02*Y-9500D01*

-Y-7250D02*X209725Y-6500D01*

-X210475D01*

-X211225Y-7250D01*

-Y-9500D01*

-X208225Y-6500D02*X208975Y-7250D01*

-X213775Y-9500D02*X216025D01*

-X213025Y-8750D02*X213775Y-9500D01*

-X213025Y-7250D02*Y-8750D01*

-Y-7250D02*X213775Y-6500D01*

-X215275D01*

-X216025Y-7250D01*

-X213025Y-8000D02*X216025D01*

-Y-7250D02*Y-8000D01*

-G54D317*X220525Y-5000D02*Y-5150D01*

-G54D316*Y-7250D02*Y-9500D01*

-X222775D02*X225025D01*

-X225775Y-8750D01*

-X225025Y-8000D02*X225775Y-8750D01*

-X222775Y-8000D02*X225025D01*

-X222025Y-7250D02*X222775Y-8000D01*

-X222025Y-7250D02*X222775Y-6500D01*

-X225025D01*

-X225775Y-7250D01*

-X222025Y-8750D02*X222775Y-9500D01*

-X231025Y-3500D02*Y-8750D01*

-X231775Y-9500D01*

-X230275Y-5750D02*X231775D01*

-X233275Y-3500D02*Y-9500D01*

-Y-7250D02*X234025Y-6500D01*

-X235525D01*

-X236275Y-7250D01*

-Y-9500D01*

-X238825D02*X241075D01*

-X238075Y-8750D02*X238825Y-9500D01*

-X238075Y-7250D02*Y-8750D01*

-Y-7250D02*X238825Y-6500D01*

-X240325D01*

-X241075Y-7250D01*

-X238075Y-8000D02*X241075D01*

-Y-7250D02*Y-8000D01*

-X246325Y-6500D02*X248575D01*

-X245575Y-7250D02*X246325Y-6500D01*

-X245575Y-7250D02*Y-8750D01*

-X246325Y-9500D01*

-X248575D01*

-X251125D02*X253375D01*

-X250375Y-8750D02*X251125Y-9500D01*

-X250375Y-7250D02*Y-8750D01*

-Y-7250D02*X251125Y-6500D01*

-X252625D01*

-X253375Y-7250D01*

-X250375Y-8000D02*X253375D01*

-Y-7250D02*Y-8000D01*

-X255925Y-7250D02*Y-9500D01*

-Y-7250D02*X256675Y-6500D01*

-X257425D01*

-X258175Y-7250D01*

-Y-9500D01*

-X255175Y-6500D02*X255925Y-7250D01*

-X260725Y-3500D02*Y-8750D01*

-X261475Y-9500D01*

-X259975Y-5750D02*X261475D01*

-X263725Y-9500D02*X265975D01*

-X262975Y-8750D02*X263725Y-9500D01*

-X262975Y-7250D02*Y-8750D01*

-Y-7250D02*X263725Y-6500D01*

-X265225D01*

-X265975Y-7250D01*

-X262975Y-8000D02*X265975D01*

-Y-7250D02*Y-8000D01*

-X268525Y-7250D02*Y-9500D01*

-Y-7250D02*X269275Y-6500D01*

-X270775D01*

-X267775D02*X268525Y-7250D01*

-X272575Y-3500D02*Y-8750D01*

-X273325Y-9500D01*

-G54D317*X274825Y-5000D02*Y-5150D01*

-G54D316*Y-7250D02*Y-9500D01*

-X277075Y-7250D02*Y-9500D01*

-Y-7250D02*X277825Y-6500D01*

-X278575D01*

-X279325Y-7250D01*

-Y-9500D01*

-X276325Y-6500D02*X277075Y-7250D01*

-X281875Y-9500D02*X284125D01*

-X281125Y-8750D02*X281875Y-9500D01*

-X281125Y-7250D02*Y-8750D01*

-Y-7250D02*X281875Y-6500D01*

-X283375D01*

-X284125Y-7250D01*

-X281125Y-8000D02*X284125D01*

-Y-7250D02*Y-8000D01*

-X288625Y-7250D02*Y-8750D01*

-Y-7250D02*X289375Y-6500D01*

-X290875D01*

-X291625Y-7250D01*

-Y-8750D01*

-X290875Y-9500D02*X291625Y-8750D01*

-X289375Y-9500D02*X290875D01*

-X288625Y-8750D02*X289375Y-9500D01*

-X294175Y-4250D02*Y-9500D01*

-Y-4250D02*X294925Y-3500D01*

-X295675D01*

-X293425Y-6500D02*X294925D01*

-X300625Y-3500D02*Y-8750D01*

-X301375Y-9500D01*

-X299875Y-5750D02*X301375D01*

-X302875Y-3500D02*Y-9500D01*

-Y-7250D02*X303625Y-6500D01*

-X305125D01*

-X305875Y-7250D01*

-Y-9500D01*

-G54D317*X307675Y-5000D02*Y-5150D01*

-G54D316*Y-7250D02*Y-9500D01*

-X309925D02*X312175D01*

-X312925Y-8750D01*

-X312175Y-8000D02*X312925Y-8750D01*

-X309925Y-8000D02*X312175D01*

-X309175Y-7250D02*X309925Y-8000D01*

-X309175Y-7250D02*X309925Y-6500D01*

-X312175D01*

-X312925Y-7250D01*

-X309175Y-8750D02*X309925Y-9500D01*

-X318175Y-7250D02*Y-11750D01*

-X317425Y-6500D02*X318175Y-7250D01*

-X318925Y-6500D01*

-X320425D01*

-X321175Y-7250D01*

-Y-8750D01*

-X320425Y-9500D02*X321175Y-8750D01*

-X318925Y-9500D02*X320425D01*

-X318175Y-8750D02*X318925Y-9500D01*

-X325225Y-6500D02*X325975Y-7250D01*

-X323725Y-6500D02*X325225D01*

-X322975Y-7250D02*X323725Y-6500D01*

-X322975Y-7250D02*Y-8750D01*

-X323725Y-9500D01*

-X325975Y-6500D02*Y-8750D01*

-X326725Y-9500D01*

-X323725D02*X325225D01*

-X325975Y-8750D01*

-X329275Y-3500D02*Y-8750D01*

-X330025Y-9500D01*

-X328525Y-5750D02*X330025D01*

-X331525Y-3500D02*Y-9500D01*

-Y-7250D02*X332275Y-6500D01*

-X333775D01*

-X334525Y-7250D01*

-Y-9500D01*

-X200750Y428500D02*Y422500D01*

-X202700Y428500D02*X203750Y427450D01*

-Y423550D01*

-X202700Y422500D02*X203750Y423550D01*

-X200000Y422500D02*X202700D01*

-X200000Y428500D02*X202700D01*

-X207800Y425500D02*X208550Y424750D01*

-X206300Y425500D02*X207800D01*

-X205550Y424750D02*X206300Y425500D01*

-X205550Y424750D02*Y423250D01*

-X206300Y422500D01*

-X208550Y425500D02*Y423250D01*

-X209300Y422500D01*

-X206300D02*X207800D01*

-X208550Y423250D01*

-X211850Y428500D02*Y423250D01*

-X212600Y422500D01*

-X211100Y426250D02*X212600D01*

-X214850Y422500D02*X217100D01*

-X214100Y423250D02*X214850Y422500D01*

-X214100Y424750D02*Y423250D01*

-Y424750D02*X214850Y425500D01*

-X216350D01*

-X217100Y424750D01*

-X214100Y424000D02*X217100D01*

-Y424750D02*Y424000D01*

-X218900Y426250D02*X219650D01*

-X218900Y424750D02*X219650D01*

-X224150Y428500D02*X227150D01*

-X225650D02*Y422500D01*

-X228950Y428500D02*Y422500D01*

-Y424750D02*X229700Y425500D01*

-X231200D01*

-X231950Y424750D01*

-Y422500D01*

-X233750Y425500D02*Y423250D01*

-X234500Y422500D01*

-X236000D01*

-X236750Y423250D01*

-Y425500D02*Y423250D01*

-X242000Y428500D02*Y422500D01*

-X243950Y428500D02*X245000Y427450D01*

-Y423550D01*

-X243950Y422500D02*X245000Y423550D01*

-X241250Y422500D02*X243950D01*

-X241250Y428500D02*X243950D01*

-X247550Y422500D02*X249800D01*

-X246800Y423250D02*X247550Y422500D01*

-X246800Y424750D02*Y423250D01*

-Y424750D02*X247550Y425500D01*

-X249050D01*

-X249800Y424750D01*

-X246800Y424000D02*X249800D01*

-Y424750D02*Y424000D01*

-X252350Y425500D02*X254600D01*

-X251600Y424750D02*X252350Y425500D01*

-X251600Y424750D02*Y423250D01*

-X252350Y422500D01*

-X254600D01*

-X261800Y428500D02*X264800D01*

-X261800D02*Y425500D01*

-X262550Y426250D01*

-X264050D01*

-X264800Y425500D01*

-Y423250D01*

-X264050Y422500D02*X264800Y423250D01*

-X262550Y422500D02*X264050D01*

-X261800Y423250D02*X262550Y422500D01*

-X269300Y423250D02*X270050Y422500D01*

-X269300Y427750D02*Y423250D01*

-Y427750D02*X270050Y428500D01*

-X271550D01*

-X272300Y427750D01*

-Y423250D01*

-X271550Y422500D02*X272300Y423250D01*

-X270050Y422500D02*X271550D01*

-X269300Y424000D02*X272300Y427000D01*

-X274100Y428500D02*X277100D01*

-X274100D02*Y425500D01*

-X274850Y426250D01*

-X276350D01*

-X277100Y425500D01*

-Y423250D01*

-X276350Y422500D02*X277100Y423250D01*

-X274850Y422500D02*X276350D01*

-X274100Y423250D02*X274850Y422500D01*

-X278900Y426250D02*X279650D01*

-X278900Y424750D02*X279650D01*

-X281450D02*X284450Y428500D01*

-X281450Y424750D02*X285200D01*

-X284450Y428500D02*Y422500D01*

-X289250Y428500D02*X290000Y427750D01*

-X287750Y428500D02*X289250D01*

-X287000Y427750D02*X287750Y428500D01*

-X287000Y427750D02*Y423250D01*

-X287750Y422500D01*

-X289250Y425800D02*X290000Y425050D01*

-X287000Y425800D02*X289250D01*

-X287750Y422500D02*X289250D01*

-X290000Y423250D01*

-Y425050D02*Y423250D01*

-X291800Y426250D02*X292550D01*

-X291800Y424750D02*X292550D01*

-X294350Y428500D02*X297350D01*

-X294350D02*Y425500D01*

-X295100Y426250D01*

-X296600D01*

-X297350Y425500D01*

-Y423250D01*

-X296600Y422500D02*X297350Y423250D01*

-X295100Y422500D02*X296600D01*

-X294350Y423250D02*X295100Y422500D01*

-X299150Y424750D02*X302150Y428500D01*

-X299150Y424750D02*X302900D01*

-X302150Y428500D02*Y422500D01*

-X307400Y427750D02*X308150Y428500D01*

-X310400D01*

-X311150Y427750D01*

-Y426250D01*

-X307400Y422500D02*X311150Y426250D01*

-X307400Y422500D02*X311150D01*

-X312950Y423250D02*X313700Y422500D01*

-X312950Y427750D02*Y423250D01*

-Y427750D02*X313700Y428500D01*

-X315200D01*

-X315950Y427750D01*

-Y423250D01*

-X315200Y422500D02*X315950Y423250D01*

-X313700Y422500D02*X315200D01*

-X312950Y424000D02*X315950Y427000D01*

-X317750Y427300D02*X318950Y428500D01*

-Y422500D01*

-X317750D02*X320000D01*

-X321800Y427750D02*X322550Y428500D01*

-X324050D01*

-X324800Y427750D01*

-X324050Y422500D02*X324800Y423250D01*

-X322550Y422500D02*X324050D01*

-X321800Y423250D02*X322550Y422500D01*

-Y425800D02*X324050D01*

-X324800Y427750D02*Y426550D01*

-Y425050D02*Y423250D01*

-Y425050D02*X324050Y425800D01*

-X324800Y426550D02*X324050Y425800D01*

-X329300Y428500D02*Y423250D01*

-X330050Y422500D01*

-X331550D01*

-X332300Y423250D01*

-Y428500D02*Y423250D01*

-X334100Y428500D02*X337100D01*

-X335600D02*Y422500D01*

-X339950D02*X341900D01*

-X338900Y423550D02*X339950Y422500D01*

-X338900Y427450D02*Y423550D01*

-Y427450D02*X339950Y428500D01*

-X341900D01*

-X200000Y442000D02*Y437500D01*

-Y442000D02*X201050Y443500D01*

-X202700D01*

-X203750Y442000D01*

-Y437500D01*

-X200000Y440500D02*X203750D01*

-X205550D02*Y438250D01*

-X206300Y437500D01*

-X207800D01*

-X208550Y438250D01*

-Y440500D02*Y438250D01*

-X211100Y443500D02*Y438250D01*

-X211850Y437500D01*

-X210350Y441250D02*X211850D01*

-X213350Y443500D02*Y437500D01*

-Y439750D02*X214100Y440500D01*

-X215600D01*

-X216350Y439750D01*

-Y437500D01*

-X218150Y439750D02*Y438250D01*

-Y439750D02*X218900Y440500D01*

-X220400D01*

-X221150Y439750D01*

-Y438250D01*

-X220400Y437500D02*X221150Y438250D01*

-X218900Y437500D02*X220400D01*

-X218150Y438250D02*X218900Y437500D01*

-X223700Y439750D02*Y437500D01*

-Y439750D02*X224450Y440500D01*

-X225950D01*

-X222950D02*X223700Y439750D01*

-X227750Y441250D02*X228500D01*

-X227750Y439750D02*X228500D01*

-X233000Y437500D02*X236000D01*

-X236750Y438250D01*

-Y440050D02*Y438250D01*

-X236000Y440800D02*X236750Y440050D01*

-X233750Y440800D02*X236000D01*

-X233750Y443500D02*Y437500D01*

-X233000Y443500D02*X236000D01*

-X236750Y442750D01*

-Y441550D01*

-X236000Y440800D02*X236750Y441550D01*

-X239300Y439750D02*Y437500D01*

-Y439750D02*X240050Y440500D01*

-X241550D01*

-X238550D02*X239300Y439750D01*

-G54D317*X243350Y442000D02*Y441850D01*

-G54D316*Y439750D02*Y437500D01*

-X247100Y440500D02*X247850Y439750D01*

-X245600Y440500D02*X247100D01*

-X244850Y439750D02*X245600Y440500D01*

-X244850Y439750D02*Y438250D01*

-X245600Y437500D01*

-X247850Y440500D02*Y438250D01*

-X248600Y437500D01*

-X245600D02*X247100D01*

-X247850Y438250D01*

-X251150Y439750D02*Y437500D01*

-Y439750D02*X251900Y440500D01*

-X252650D01*

-X253400Y439750D01*

-Y437500D01*

-X250400Y440500D02*X251150Y439750D01*

-X260900Y443500D02*X261650Y442750D01*

-X258650Y443500D02*X260900D01*

-X257900Y442750D02*X258650Y443500D01*

-X257900Y442750D02*Y441250D01*

-X258650Y440500D01*

-X260900D01*

-X261650Y439750D01*

-Y438250D01*

-X260900Y437500D02*X261650Y438250D01*

-X258650Y437500D02*X260900D01*

-X257900Y438250D02*X258650Y437500D01*

-G54D317*X263450Y442000D02*Y441850D01*

-G54D316*Y439750D02*Y437500D01*

-X264950Y443500D02*Y438250D01*

-X265700Y437500D01*

-X267200Y440500D02*X268700Y437500D01*

-X270200Y440500D02*X268700Y437500D01*

-X272750D02*X275000D01*

-X272000Y438250D02*X272750Y437500D01*

-X272000Y439750D02*Y438250D01*

-Y439750D02*X272750Y440500D01*

-X274250D01*

-X275000Y439750D01*

-X272000Y439000D02*X275000D01*

-Y439750D02*Y439000D01*

-X277550Y439750D02*Y437500D01*

-Y439750D02*X278300Y440500D01*

-X279800D01*

-X276800D02*X277550Y439750D01*

-X282350D02*Y437500D01*

-Y439750D02*X283100Y440500D01*

-X283850D01*

-X284600Y439750D01*

-Y437500D01*

-Y439750D02*X285350Y440500D01*

-X286100D01*

-X286850Y439750D01*

-Y437500D01*

-X281600Y440500D02*X282350Y439750D01*

-X290900Y440500D02*X291650Y439750D01*

-X289400Y440500D02*X290900D01*

-X288650Y439750D02*X289400Y440500D01*

-X288650Y439750D02*Y438250D01*

-X289400Y437500D01*

-X291650Y440500D02*Y438250D01*

-X292400Y437500D01*

-X289400D02*X290900D01*

-X291650Y438250D01*

-X294950Y439750D02*Y437500D01*

-Y439750D02*X295700Y440500D01*

-X296450D01*

-X297200Y439750D01*

-Y437500D01*

-X294200Y440500D02*X294950Y439750D01*

-X200000Y458500D02*X203000D01*

-X201500D02*Y452500D01*

-G54D317*X204800Y457000D02*Y456850D01*

-G54D316*Y454750D02*Y452500D01*

-X207050Y458500D02*Y453250D01*

-X207800Y452500D01*

-X206300Y456250D02*X207800D01*

-X209300Y458500D02*Y453250D01*

-X210050Y452500D01*

-X212300D02*X214550D01*

-X211550Y453250D02*X212300Y452500D01*

-X211550Y454750D02*Y453250D01*

-Y454750D02*X212300Y455500D01*

-X213800D01*

-X214550Y454750D01*

-X211550Y454000D02*X214550D01*

-Y454750D02*Y454000D01*

-X216350Y456250D02*X217100D01*

-X216350Y454750D02*X217100D01*

-X222350Y452500D02*X224600Y455500D01*

-Y457750D02*Y455500D01*

-X223850Y458500D02*X224600Y457750D01*

-X222350Y458500D02*X223850D01*

-X221600Y457750D02*X222350Y458500D01*

-X221600Y457750D02*Y456250D01*

-X222350Y455500D01*

-X224600D01*

-X227150Y452500D02*X230150Y458500D01*

-X226400D02*X230150D01*

-X231950Y457300D02*X233150Y458500D01*

-Y452500D01*

-X231950D02*X234200D01*

-X238700D02*X241700D01*

-X242450Y453250D01*

-Y455050D02*Y453250D01*

-X241700Y455800D02*X242450Y455050D01*

-X239450Y455800D02*X241700D01*

-X239450Y458500D02*Y452500D01*

-X238700Y458500D02*X241700D01*

-X242450Y457750D01*

-Y456550D01*

-X241700Y455800D02*X242450Y456550D01*

-X244250Y452500D02*X247250D01*

-X248000Y453250D01*

-Y455050D02*Y453250D01*

-X247250Y455800D02*X248000Y455050D01*

-X245000Y455800D02*X247250D01*

-X245000Y458500D02*Y452500D01*

-X244250Y458500D02*X247250D01*

-X248000Y457750D01*

-Y456550D01*

-X247250Y455800D02*X248000Y456550D01*

-X249800Y452500D02*X252800D01*

-X253550Y453250D01*

-Y455050D02*Y453250D01*

-X252800Y455800D02*X253550Y455050D01*

-X250550Y455800D02*X252800D01*

-X250550Y458500D02*Y452500D01*

-X249800Y458500D02*X252800D01*

-X253550Y457750D01*

-Y456550D01*

-X252800Y455800D02*X253550Y456550D01*

-X259100Y452500D02*X261050D01*

-X258050Y453550D02*X259100Y452500D01*

-X258050Y457450D02*Y453550D01*

-Y457450D02*X259100Y458500D01*

-X261050D01*

-X265100Y455500D02*X265850Y454750D01*

-X263600Y455500D02*X265100D01*

-X262850Y454750D02*X263600Y455500D01*

-X262850Y454750D02*Y453250D01*

-X263600Y452500D01*

-X265850Y455500D02*Y453250D01*

-X266600Y452500D01*

-X263600D02*X265100D01*

-X265850Y453250D01*

-X269150Y454750D02*Y450250D01*

-X268400Y455500D02*X269150Y454750D01*

-X269900Y455500D01*

-X271400D01*

-X272150Y454750D01*

-Y453250D01*

-X271400Y452500D02*X272150Y453250D01*

-X269900Y452500D02*X271400D01*

-X269150Y453250D02*X269900Y452500D01*

-X274700D02*X276950D01*

-X273950Y453250D02*X274700Y452500D01*

-X273950Y454750D02*Y453250D01*

-Y454750D02*X274700Y455500D01*

-X276200D01*

-X276950Y454750D01*

-X273950Y454000D02*X276950D01*

-Y454750D02*Y454000D01*

-X281450Y455500D02*X284450D01*

-X288950Y458500D02*Y452500D01*

-Y458500D02*X291950D01*

-X288950Y455800D02*X291200D01*

-X296000Y455500D02*X296750Y454750D01*

-X294500Y455500D02*X296000D01*

-X293750Y454750D02*X294500Y455500D01*

-X293750Y454750D02*Y453250D01*

-X294500Y452500D01*

-X296750Y455500D02*Y453250D01*

-X297500Y452500D01*

-X294500D02*X296000D01*

-X296750Y453250D01*

-X299300Y458500D02*Y452500D01*

-Y453250D02*X300050Y452500D01*

-X301550D01*

-X302300Y453250D01*

-Y454750D02*Y453250D01*

-X301550Y455500D02*X302300Y454750D01*

-X300050Y455500D02*X301550D01*

-X299300Y454750D02*X300050Y455500D01*

-X304850Y454750D02*Y452500D01*

-Y454750D02*X305600Y455500D01*

-X307100D01*

-X304100D02*X304850Y454750D01*

-G54D317*X308900Y457000D02*Y456850D01*

-G54D316*Y454750D02*Y452500D01*

-X311150Y455500D02*X313400D01*

-X310400Y454750D02*X311150Y455500D01*

-X310400Y454750D02*Y453250D01*

-X311150Y452500D01*

-X313400D01*

-X317450Y455500D02*X318200Y454750D01*

-X315950Y455500D02*X317450D01*

-X315200Y454750D02*X315950Y455500D01*

-X315200Y454750D02*Y453250D01*

-X315950Y452500D01*

-X318200Y455500D02*Y453250D01*

-X318950Y452500D01*

-X315950D02*X317450D01*

-X318200Y453250D01*

-X321500Y458500D02*Y453250D01*

-X322250Y452500D01*

-X320750Y456250D02*X322250D01*

-G54D317*X323750Y457000D02*Y456850D01*

-G54D316*Y454750D02*Y452500D01*

-X325250Y454750D02*Y453250D01*

-Y454750D02*X326000Y455500D01*

-X327500D01*

-X328250Y454750D01*

-Y453250D01*

-X327500Y452500D02*X328250Y453250D01*

-X326000Y452500D02*X327500D01*

-X325250Y453250D02*X326000Y452500D01*

-X330800Y454750D02*Y452500D01*

-Y454750D02*X331550Y455500D01*

-X332300D01*

-X333050Y454750D01*

-Y452500D01*

-X330050Y455500D02*X330800Y454750D01*

-X338300Y458500D02*Y452500D01*

-X340250Y458500D02*X341300Y457450D01*

-Y453550D01*

-X340250Y452500D02*X341300Y453550D01*

-X337550Y452500D02*X340250D01*

-X337550Y458500D02*X340250D01*

-X343850Y454750D02*Y452500D01*

-Y454750D02*X344600Y455500D01*

-X346100D01*

-X343100D02*X343850Y454750D01*

-X350150Y455500D02*X350900Y454750D01*

-X348650Y455500D02*X350150D01*

-X347900Y454750D02*X348650Y455500D01*

-X347900Y454750D02*Y453250D01*

-X348650Y452500D01*

-X350900Y455500D02*Y453250D01*

-X351650Y452500D01*

-X348650D02*X350150D01*

-X350900Y453250D01*

-X353450Y455500D02*Y453250D01*

-X354200Y452500D01*

-X354950D01*

-X355700Y453250D01*

-Y455500D02*Y453250D01*

-X356450Y452500D01*

-X357200D01*

-X357950Y453250D01*

-Y455500D02*Y453250D01*

-G54D317*X359750Y457000D02*Y456850D01*

-G54D316*Y454750D02*Y452500D01*

-X362000Y454750D02*Y452500D01*

-Y454750D02*X362750Y455500D01*

-X363500D01*

-X364250Y454750D01*

-Y452500D01*

-X361250Y455500D02*X362000Y454750D01*

-X368300Y455500D02*X369050Y454750D01*

-X366800Y455500D02*X368300D01*

-X366050Y454750D02*X366800Y455500D01*

-X366050Y454750D02*Y453250D01*

-X366800Y452500D01*

-X368300D01*

-X369050Y453250D01*

-X366050Y451000D02*X366800Y450250D01*

-X368300D01*

-X369050Y451000D01*

-Y455500D02*Y451000D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20131204/cape.group1.gbr b/bbb_cape/schematic/gerbers/20131204/cape.group1.gbr
deleted file mode 100644
index 07cccd6..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.group1.gbr
+++ /dev/null
@@ -1,26585 +0,0 @@
-G04 start of page 3 for group 1 idx 2 *

-G04 Title: 971 BBB Cape, ground *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Thu Dec  5 05:46:53 2013 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNGROUP1*%

-%ADD212C,0.0350*%

-%ADD211C,0.0100*%

-%ADD210C,0.0600*%

-%ADD209C,0.0200*%

-%ADD208C,0.0360*%

-%ADD207C,0.2100*%

-%ADD206C,0.0660*%

-%ADD205C,0.2200*%

-%ADD204C,0.1830*%

-%ADD203C,0.0650*%

-%ADD202C,0.0700*%

-%ADD201C,0.0250*%

-%ADD200C,0.0001*%

-G54D200*G36*

-X414441Y86000D02*X425441D01*

-Y78000D01*

-X414441D01*

-Y86000D01*

-G37*

-G36*

-X388441Y211000D02*X396441D01*

-Y204000D01*

-X388441D01*

-Y211000D01*

-G37*

-G36*

-X428941Y80000D02*X439941D01*

-Y72000D01*

-X428941D01*

-Y80000D01*

-G37*

-G36*

-X384441Y122000D02*X389941D01*

-Y82500D01*

-X384441D01*

-Y122000D01*

-G37*

-G36*

-X351441Y122500D02*X356941D01*

-Y83000D01*

-X351441D01*

-Y122500D01*

-G37*

-G36*

-X430941Y59500D02*X437441D01*

-Y53500D01*

-X430941D01*

-Y59500D01*

-G37*

-G36*

-X366441Y294689D02*X377441D01*

-Y286689D01*

-X366441D01*

-Y294689D01*

-G37*

-G36*

-X379512Y261000D02*X390512D01*

-Y253000D01*

-X379512D01*

-Y261000D01*

-G37*

-G36*

-X370441Y239157D02*X381441D01*

-Y231157D01*

-X370441D01*

-Y239157D01*

-G37*

-G36*

-X367485Y175386D02*X378485D01*

-Y167386D01*

-X367485D01*

-Y175386D01*

-G37*

-G36*

-X375937Y193161D02*X386937D01*

-Y185161D01*

-X375937D01*

-Y193161D01*

-G37*

-G36*

-X378441Y383000D02*X389441D01*

-Y375000D01*

-X378441D01*

-Y383000D01*

-G37*

-G36*

-X368441Y355000D02*X379441D01*

-Y347000D01*

-X368441D01*

-Y355000D01*

-G37*

-G36*

-X379162Y309000D02*X390162D01*

-Y301000D01*

-X379162D01*

-Y309000D01*

-G37*

-G36*

-X390441Y330118D02*X396441Y330000D01*

-Y323000D01*

-X390441Y323118D01*

-Y330118D01*

-G37*

-G36*

-X284262Y310800D02*X292262D01*

-Y303800D01*

-X284262D01*

-Y310800D01*

-G37*

-G36*

-X266207Y317716D02*X274207D01*

-Y310716D01*

-X266207D01*

-Y317716D01*

-G37*

-G36*

-X236218Y303166D02*X244218D01*

-Y296166D01*

-X236218D01*

-Y303166D01*

-G37*

-G36*

-X308941Y297500D02*X315441D01*

-Y291500D01*

-X308941D01*

-Y297500D01*

-G37*

-G36*

-X282148Y328134D02*X288648D01*

-Y322134D01*

-X282148D01*

-Y328134D01*

-G37*

-G36*

-X300719Y333466D02*X304150Y333438D01*

-X307219Y327466D01*

-X300719D01*

-Y333466D01*

-G37*

-G36*

-X274167Y350634D02*X280667D01*

-Y344634D01*

-X274167D01*

-Y350634D01*

-G37*

-G36*

-X266441Y202000D02*X272941D01*

-Y195000D01*

-X266441D01*

-Y202000D01*

-G37*

-G36*

-X266941Y235000D02*X273441D01*

-Y228000D01*

-X266941D01*

-Y235000D01*

-G37*

-G36*

-X257941Y196500D02*X264441D01*

-Y189500D01*

-X257941D01*

-Y196500D01*

-G37*

-G36*

-X242941D02*X249441D01*

-Y189500D01*

-X242941D01*

-Y196500D01*

-G37*

-G36*

-X240941Y205500D02*X247441D01*

-Y198500D01*

-X240941D01*

-Y205500D01*

-G37*

-G36*

-X248941Y214000D02*X255441D01*

-Y207000D01*

-X248941D01*

-Y214000D01*

-G37*

-G36*

-X481441Y41500D02*X478941Y39000D01*

-X473493D01*

-Y49236D01*

-X473500Y49235D01*

-X474245Y49294D01*

-X474972Y49469D01*

-X475663Y49755D01*

-X476301Y50145D01*

-X476869Y50631D01*

-X477355Y51199D01*

-X477745Y51837D01*

-X478031Y52528D01*

-X478206Y53255D01*

-X478250Y54000D01*

-X478206Y54745D01*

-X478031Y55472D01*

-X477745Y56163D01*

-X477355Y56801D01*

-X476869Y57369D01*

-X476301Y57855D01*

-X475663Y58245D01*

-X474972Y58531D01*

-X474245Y58706D01*

-X473500Y58765D01*

-X473493Y58764D01*

-Y79236D01*

-X473500Y79235D01*

-X474245Y79294D01*

-X474972Y79469D01*

-X475663Y79755D01*

-X476301Y80145D01*

-X476869Y80631D01*

-X477355Y81199D01*

-X477745Y81837D01*

-X478031Y82528D01*

-X478206Y83255D01*

-X478250Y84000D01*

-X478206Y84745D01*

-X478031Y85472D01*

-X477745Y86163D01*

-X477355Y86801D01*

-X476869Y87369D01*

-X476301Y87855D01*

-X475663Y88245D01*

-X474972Y88531D01*

-X474245Y88706D01*

-X473500Y88765D01*

-X473493Y88764D01*

-Y109236D01*

-X473500Y109235D01*

-X474245Y109294D01*

-X474972Y109469D01*

-X475663Y109755D01*

-X476301Y110145D01*

-X476869Y110631D01*

-X477355Y111199D01*

-X477745Y111837D01*

-X478031Y112528D01*

-X478206Y113255D01*

-X478250Y114000D01*

-X478206Y114745D01*

-X478031Y115472D01*

-X477745Y116163D01*

-X477355Y116801D01*

-X476869Y117369D01*

-X476301Y117855D01*

-X475663Y118245D01*

-X474972Y118531D01*

-X474245Y118706D01*

-X473500Y118765D01*

-X473493Y118764D01*

-Y139236D01*

-X473500Y139235D01*

-X474245Y139294D01*

-X474972Y139469D01*

-X475663Y139755D01*

-X476301Y140145D01*

-X476869Y140631D01*

-X477355Y141199D01*

-X477745Y141837D01*

-X478031Y142528D01*

-X478206Y143255D01*

-X478250Y144000D01*

-X478206Y144745D01*

-X478031Y145472D01*

-X477745Y146163D01*

-X477355Y146801D01*

-X476869Y147369D01*

-X476301Y147855D01*

-X475663Y148245D01*

-X474972Y148531D01*

-X474245Y148706D01*

-X473500Y148765D01*

-X473493Y148764D01*

-Y169236D01*

-X473500Y169235D01*

-X474245Y169294D01*

-X474972Y169469D01*

-X475663Y169755D01*

-X476301Y170145D01*

-X476869Y170631D01*

-X477355Y171199D01*

-X477745Y171837D01*

-X478031Y172528D01*

-X478206Y173255D01*

-X478250Y174000D01*

-X478206Y174745D01*

-X478031Y175472D01*

-X477745Y176163D01*

-X477355Y176801D01*

-X476869Y177369D01*

-X476301Y177855D01*

-X475663Y178245D01*

-X474972Y178531D01*

-X474245Y178706D01*

-X473500Y178765D01*

-X473493Y178764D01*

-Y199236D01*

-X473500Y199235D01*

-X474245Y199294D01*

-X474972Y199469D01*

-X475663Y199755D01*

-X476301Y200145D01*

-X476869Y200631D01*

-X477355Y201199D01*

-X477745Y201837D01*

-X478031Y202528D01*

-X478206Y203255D01*

-X478250Y204000D01*

-X478206Y204745D01*

-X478031Y205472D01*

-X477745Y206163D01*

-X477355Y206801D01*

-X476869Y207369D01*

-X476301Y207855D01*

-X475663Y208245D01*

-X474972Y208531D01*

-X474245Y208706D01*

-X473500Y208765D01*

-X473493Y208764D01*

-Y229236D01*

-X473500Y229235D01*

-X474245Y229294D01*

-X474972Y229469D01*

-X475663Y229755D01*

-X476301Y230145D01*

-X476869Y230631D01*

-X477355Y231199D01*

-X477745Y231837D01*

-X478031Y232528D01*

-X478206Y233255D01*

-X478250Y234000D01*

-X478206Y234745D01*

-X478031Y235472D01*

-X477745Y236163D01*

-X477355Y236801D01*

-X476869Y237369D01*

-X476301Y237855D01*

-X475663Y238245D01*

-X474972Y238531D01*

-X474245Y238706D01*

-X473500Y238765D01*

-X473493Y238764D01*

-Y259236D01*

-X473500Y259235D01*

-X474245Y259294D01*

-X474972Y259469D01*

-X475663Y259755D01*

-X476301Y260145D01*

-X476869Y260631D01*

-X477355Y261199D01*

-X477745Y261837D01*

-X478031Y262528D01*

-X478206Y263255D01*

-X478250Y264000D01*

-X478206Y264745D01*

-X478031Y265472D01*

-X477745Y266163D01*

-X477355Y266801D01*

-X476869Y267369D01*

-X476301Y267855D01*

-X475663Y268245D01*

-X474972Y268531D01*

-X474245Y268706D01*

-X473500Y268765D01*

-X473493Y268764D01*

-Y289236D01*

-X473500Y289235D01*

-X474245Y289294D01*

-X474972Y289469D01*

-X475663Y289755D01*

-X476301Y290145D01*

-X476869Y290631D01*

-X477355Y291199D01*

-X477745Y291837D01*

-X478031Y292528D01*

-X478206Y293255D01*

-X478250Y294000D01*

-X478206Y294745D01*

-X478031Y295472D01*

-X477745Y296163D01*

-X477355Y296801D01*

-X476869Y297369D01*

-X476301Y297855D01*

-X475663Y298245D01*

-X474972Y298531D01*

-X474245Y298706D01*

-X473500Y298765D01*

-X473493Y298764D01*

-Y319236D01*

-X473500Y319235D01*

-X474245Y319294D01*

-X474972Y319469D01*

-X475663Y319755D01*

-X476301Y320145D01*

-X476869Y320631D01*

-X477355Y321199D01*

-X477745Y321837D01*

-X478031Y322528D01*

-X478206Y323255D01*

-X478250Y324000D01*

-X478206Y324745D01*

-X478031Y325472D01*

-X477745Y326163D01*

-X477355Y326801D01*

-X476869Y327369D01*

-X476301Y327855D01*

-X475663Y328245D01*

-X474972Y328531D01*

-X474245Y328706D01*

-X473500Y328765D01*

-X473493Y328764D01*

-Y349236D01*

-X473500Y349235D01*

-X474245Y349294D01*

-X474972Y349469D01*

-X475663Y349755D01*

-X476301Y350145D01*

-X476869Y350631D01*

-X477355Y351199D01*

-X477745Y351837D01*

-X478031Y352528D01*

-X478206Y353255D01*

-X478250Y354000D01*

-X478206Y354745D01*

-X478031Y355472D01*

-X477745Y356163D01*

-X477355Y356801D01*

-X476869Y357369D01*

-X476301Y357855D01*

-X475663Y358245D01*

-X474972Y358531D01*

-X474245Y358706D01*

-X473500Y358765D01*

-X473493Y358764D01*

-Y379236D01*

-X473500Y379235D01*

-X474245Y379294D01*

-X474972Y379469D01*

-X475663Y379755D01*

-X476301Y380145D01*

-X476869Y380631D01*

-X477355Y381199D01*

-X477745Y381837D01*

-X478031Y382528D01*

-X478206Y383255D01*

-X478250Y384000D01*

-X478206Y384745D01*

-X478031Y385472D01*

-X477745Y386163D01*

-X477355Y386801D01*

-X476869Y387369D01*

-X476301Y387855D01*

-X475663Y388245D01*

-X474972Y388531D01*

-X474245Y388706D01*

-X473500Y388765D01*

-X473493Y388764D01*

-Y397000D01*

-X478941D01*

-X481441Y394000D01*

-Y41500D01*

-G37*

-G36*

-X473493Y39000D02*X463493D01*

-Y49236D01*

-X463500Y49235D01*

-X464245Y49294D01*

-X464972Y49469D01*

-X465663Y49755D01*

-X466301Y50145D01*

-X466869Y50631D01*

-X467355Y51199D01*

-X467745Y51837D01*

-X468031Y52528D01*

-X468206Y53255D01*

-X468250Y54000D01*

-X468206Y54745D01*

-X468031Y55472D01*

-X467745Y56163D01*

-X467355Y56801D01*

-X466869Y57369D01*

-X466301Y57855D01*

-X465663Y58245D01*

-X464972Y58531D01*

-X464245Y58706D01*

-X463500Y58765D01*

-X463493Y58764D01*

-Y79236D01*

-X463500Y79235D01*

-X464245Y79294D01*

-X464972Y79469D01*

-X465663Y79755D01*

-X466301Y80145D01*

-X466869Y80631D01*

-X467355Y81199D01*

-X467745Y81837D01*

-X468031Y82528D01*

-X468206Y83255D01*

-X468250Y84000D01*

-X468206Y84745D01*

-X468031Y85472D01*

-X467745Y86163D01*

-X467355Y86801D01*

-X466869Y87369D01*

-X466301Y87855D01*

-X465663Y88245D01*

-X464972Y88531D01*

-X464245Y88706D01*

-X463500Y88765D01*

-X463493Y88764D01*

-Y109236D01*

-X463500Y109235D01*

-X464245Y109294D01*

-X464972Y109469D01*

-X465663Y109755D01*

-X466301Y110145D01*

-X466869Y110631D01*

-X467355Y111199D01*

-X467745Y111837D01*

-X468031Y112528D01*

-X468206Y113255D01*

-X468250Y114000D01*

-X468206Y114745D01*

-X468031Y115472D01*

-X467745Y116163D01*

-X467355Y116801D01*

-X466869Y117369D01*

-X466301Y117855D01*

-X465663Y118245D01*

-X464972Y118531D01*

-X464245Y118706D01*

-X463500Y118765D01*

-X463493Y118764D01*

-Y139236D01*

-X463500Y139235D01*

-X464245Y139294D01*

-X464972Y139469D01*

-X465663Y139755D01*

-X466301Y140145D01*

-X466869Y140631D01*

-X467355Y141199D01*

-X467745Y141837D01*

-X468031Y142528D01*

-X468206Y143255D01*

-X468250Y144000D01*

-X468206Y144745D01*

-X468031Y145472D01*

-X467745Y146163D01*

-X467355Y146801D01*

-X466869Y147369D01*

-X466301Y147855D01*

-X465663Y148245D01*

-X464972Y148531D01*

-X464245Y148706D01*

-X463500Y148765D01*

-X463493Y148764D01*

-Y169236D01*

-X463500Y169235D01*

-X464245Y169294D01*

-X464972Y169469D01*

-X465663Y169755D01*

-X466301Y170145D01*

-X466869Y170631D01*

-X467355Y171199D01*

-X467745Y171837D01*

-X468031Y172528D01*

-X468206Y173255D01*

-X468250Y174000D01*

-X468206Y174745D01*

-X468031Y175472D01*

-X467745Y176163D01*

-X467355Y176801D01*

-X466869Y177369D01*

-X466301Y177855D01*

-X465663Y178245D01*

-X464972Y178531D01*

-X464245Y178706D01*

-X463500Y178765D01*

-X463493Y178764D01*

-Y199236D01*

-X463500Y199235D01*

-X464245Y199294D01*

-X464972Y199469D01*

-X465663Y199755D01*

-X466301Y200145D01*

-X466869Y200631D01*

-X467355Y201199D01*

-X467745Y201837D01*

-X468031Y202528D01*

-X468206Y203255D01*

-X468250Y204000D01*

-X468206Y204745D01*

-X468031Y205472D01*

-X467745Y206163D01*

-X467355Y206801D01*

-X466869Y207369D01*

-X466301Y207855D01*

-X465663Y208245D01*

-X464972Y208531D01*

-X464245Y208706D01*

-X463500Y208765D01*

-X463493Y208764D01*

-Y229236D01*

-X463500Y229235D01*

-X464245Y229294D01*

-X464972Y229469D01*

-X465663Y229755D01*

-X466301Y230145D01*

-X466869Y230631D01*

-X467355Y231199D01*

-X467745Y231837D01*

-X468031Y232528D01*

-X468206Y233255D01*

-X468250Y234000D01*

-X468206Y234745D01*

-X468031Y235472D01*

-X467745Y236163D01*

-X467355Y236801D01*

-X466869Y237369D01*

-X466301Y237855D01*

-X465663Y238245D01*

-X464972Y238531D01*

-X464245Y238706D01*

-X463500Y238765D01*

-X463493Y238764D01*

-Y259236D01*

-X463500Y259235D01*

-X464245Y259294D01*

-X464972Y259469D01*

-X465663Y259755D01*

-X466301Y260145D01*

-X466869Y260631D01*

-X467355Y261199D01*

-X467745Y261837D01*

-X468031Y262528D01*

-X468206Y263255D01*

-X468250Y264000D01*

-X468206Y264745D01*

-X468031Y265472D01*

-X467745Y266163D01*

-X467355Y266801D01*

-X466869Y267369D01*

-X466301Y267855D01*

-X465663Y268245D01*

-X464972Y268531D01*

-X464245Y268706D01*

-X463500Y268765D01*

-X463493Y268764D01*

-Y289236D01*

-X463500Y289235D01*

-X464245Y289294D01*

-X464972Y289469D01*

-X465663Y289755D01*

-X466301Y290145D01*

-X466869Y290631D01*

-X467355Y291199D01*

-X467745Y291837D01*

-X468031Y292528D01*

-X468206Y293255D01*

-X468250Y294000D01*

-X468206Y294745D01*

-X468031Y295472D01*

-X467745Y296163D01*

-X467355Y296801D01*

-X466869Y297369D01*

-X466301Y297855D01*

-X465663Y298245D01*

-X464972Y298531D01*

-X464245Y298706D01*

-X463500Y298765D01*

-X463493Y298764D01*

-Y319236D01*

-X463500Y319235D01*

-X464245Y319294D01*

-X464972Y319469D01*

-X465663Y319755D01*

-X466301Y320145D01*

-X466869Y320631D01*

-X467355Y321199D01*

-X467745Y321837D01*

-X468031Y322528D01*

-X468206Y323255D01*

-X468250Y324000D01*

-X468206Y324745D01*

-X468031Y325472D01*

-X467745Y326163D01*

-X467355Y326801D01*

-X466869Y327369D01*

-X466301Y327855D01*

-X465663Y328245D01*

-X464972Y328531D01*

-X464245Y328706D01*

-X463500Y328765D01*

-X463493Y328764D01*

-Y349236D01*

-X463500Y349235D01*

-X464245Y349294D01*

-X464972Y349469D01*

-X465663Y349755D01*

-X466301Y350145D01*

-X466869Y350631D01*

-X467355Y351199D01*

-X467745Y351837D01*

-X468031Y352528D01*

-X468206Y353255D01*

-X468250Y354000D01*

-X468206Y354745D01*

-X468031Y355472D01*

-X467745Y356163D01*

-X467355Y356801D01*

-X466869Y357369D01*

-X466301Y357855D01*

-X465663Y358245D01*

-X464972Y358531D01*

-X464245Y358706D01*

-X463500Y358765D01*

-X463493Y358764D01*

-Y379236D01*

-X463500Y379235D01*

-X464245Y379294D01*

-X464972Y379469D01*

-X465663Y379755D01*

-X466301Y380145D01*

-X466869Y380631D01*

-X467355Y381199D01*

-X467745Y381837D01*

-X468031Y382528D01*

-X468206Y383255D01*

-X468250Y384000D01*

-X468206Y384745D01*

-X468031Y385472D01*

-X467745Y386163D01*

-X467355Y386801D01*

-X466869Y387369D01*

-X466301Y387855D01*

-X465663Y388245D01*

-X464972Y388531D01*

-X464245Y388706D01*

-X463500Y388765D01*

-X463493Y388764D01*

-Y397000D01*

-X473493D01*

-Y388764D01*

-X472755Y388706D01*

-X472028Y388531D01*

-X471337Y388245D01*

-X470699Y387855D01*

-X470131Y387369D01*

-X469645Y386801D01*

-X469255Y386163D01*

-X468969Y385472D01*

-X468794Y384745D01*

-X468735Y384000D01*

-X468794Y383255D01*

-X468969Y382528D01*

-X469255Y381837D01*

-X469645Y381199D01*

-X470131Y380631D01*

-X470699Y380145D01*

-X471337Y379755D01*

-X472028Y379469D01*

-X472755Y379294D01*

-X473493Y379236D01*

-Y358764D01*

-X472755Y358706D01*

-X472028Y358531D01*

-X471337Y358245D01*

-X470699Y357855D01*

-X470131Y357369D01*

-X469645Y356801D01*

-X469255Y356163D01*

-X468969Y355472D01*

-X468794Y354745D01*

-X468735Y354000D01*

-X468794Y353255D01*

-X468969Y352528D01*

-X469255Y351837D01*

-X469645Y351199D01*

-X470131Y350631D01*

-X470699Y350145D01*

-X471337Y349755D01*

-X472028Y349469D01*

-X472755Y349294D01*

-X473493Y349236D01*

-Y328764D01*

-X472755Y328706D01*

-X472028Y328531D01*

-X471337Y328245D01*

-X470699Y327855D01*

-X470131Y327369D01*

-X469645Y326801D01*

-X469255Y326163D01*

-X468969Y325472D01*

-X468794Y324745D01*

-X468735Y324000D01*

-X468794Y323255D01*

-X468969Y322528D01*

-X469255Y321837D01*

-X469645Y321199D01*

-X470131Y320631D01*

-X470699Y320145D01*

-X471337Y319755D01*

-X472028Y319469D01*

-X472755Y319294D01*

-X473493Y319236D01*

-Y298764D01*

-X472755Y298706D01*

-X472028Y298531D01*

-X471337Y298245D01*

-X470699Y297855D01*

-X470131Y297369D01*

-X469645Y296801D01*

-X469255Y296163D01*

-X468969Y295472D01*

-X468794Y294745D01*

-X468735Y294000D01*

-X468794Y293255D01*

-X468969Y292528D01*

-X469255Y291837D01*

-X469645Y291199D01*

-X470131Y290631D01*

-X470699Y290145D01*

-X471337Y289755D01*

-X472028Y289469D01*

-X472755Y289294D01*

-X473493Y289236D01*

-Y268764D01*

-X472755Y268706D01*

-X472028Y268531D01*

-X471337Y268245D01*

-X470699Y267855D01*

-X470131Y267369D01*

-X469645Y266801D01*

-X469255Y266163D01*

-X468969Y265472D01*

-X468794Y264745D01*

-X468735Y264000D01*

-X468794Y263255D01*

-X468969Y262528D01*

-X469255Y261837D01*

-X469645Y261199D01*

-X470131Y260631D01*

-X470699Y260145D01*

-X471337Y259755D01*

-X472028Y259469D01*

-X472755Y259294D01*

-X473493Y259236D01*

-Y238764D01*

-X472755Y238706D01*

-X472028Y238531D01*

-X471337Y238245D01*

-X470699Y237855D01*

-X470131Y237369D01*

-X469645Y236801D01*

-X469255Y236163D01*

-X468969Y235472D01*

-X468794Y234745D01*

-X468735Y234000D01*

-X468794Y233255D01*

-X468969Y232528D01*

-X469255Y231837D01*

-X469645Y231199D01*

-X470131Y230631D01*

-X470699Y230145D01*

-X471337Y229755D01*

-X472028Y229469D01*

-X472755Y229294D01*

-X473493Y229236D01*

-Y208764D01*

-X472755Y208706D01*

-X472028Y208531D01*

-X471337Y208245D01*

-X470699Y207855D01*

-X470131Y207369D01*

-X469645Y206801D01*

-X469255Y206163D01*

-X468969Y205472D01*

-X468794Y204745D01*

-X468735Y204000D01*

-X468794Y203255D01*

-X468969Y202528D01*

-X469255Y201837D01*

-X469645Y201199D01*

-X470131Y200631D01*

-X470699Y200145D01*

-X471337Y199755D01*

-X472028Y199469D01*

-X472755Y199294D01*

-X473493Y199236D01*

-Y178764D01*

-X472755Y178706D01*

-X472028Y178531D01*

-X471337Y178245D01*

-X470699Y177855D01*

-X470131Y177369D01*

-X469645Y176801D01*

-X469255Y176163D01*

-X468969Y175472D01*

-X468794Y174745D01*

-X468735Y174000D01*

-X468794Y173255D01*

-X468969Y172528D01*

-X469255Y171837D01*

-X469645Y171199D01*

-X470131Y170631D01*

-X470699Y170145D01*

-X471337Y169755D01*

-X472028Y169469D01*

-X472755Y169294D01*

-X473493Y169236D01*

-Y148764D01*

-X472755Y148706D01*

-X472028Y148531D01*

-X471337Y148245D01*

-X470699Y147855D01*

-X470131Y147369D01*

-X469645Y146801D01*

-X469255Y146163D01*

-X468969Y145472D01*

-X468794Y144745D01*

-X468735Y144000D01*

-X468794Y143255D01*

-X468969Y142528D01*

-X469255Y141837D01*

-X469645Y141199D01*

-X470131Y140631D01*

-X470699Y140145D01*

-X471337Y139755D01*

-X472028Y139469D01*

-X472755Y139294D01*

-X473493Y139236D01*

-Y118764D01*

-X472755Y118706D01*

-X472028Y118531D01*

-X471337Y118245D01*

-X470699Y117855D01*

-X470131Y117369D01*

-X469645Y116801D01*

-X469255Y116163D01*

-X468969Y115472D01*

-X468794Y114745D01*

-X468735Y114000D01*

-X468794Y113255D01*

-X468969Y112528D01*

-X469255Y111837D01*

-X469645Y111199D01*

-X470131Y110631D01*

-X470699Y110145D01*

-X471337Y109755D01*

-X472028Y109469D01*

-X472755Y109294D01*

-X473493Y109236D01*

-Y88764D01*

-X472755Y88706D01*

-X472028Y88531D01*

-X471337Y88245D01*

-X470699Y87855D01*

-X470131Y87369D01*

-X469645Y86801D01*

-X469255Y86163D01*

-X468969Y85472D01*

-X468794Y84745D01*

-X468735Y84000D01*

-X468794Y83255D01*

-X468969Y82528D01*

-X469255Y81837D01*

-X469645Y81199D01*

-X470131Y80631D01*

-X470699Y80145D01*

-X471337Y79755D01*

-X472028Y79469D01*

-X472755Y79294D01*

-X473493Y79236D01*

-Y58764D01*

-X472755Y58706D01*

-X472028Y58531D01*

-X471337Y58245D01*

-X470699Y57855D01*

-X470131Y57369D01*

-X469645Y56801D01*

-X469255Y56163D01*

-X468969Y55472D01*

-X468794Y54745D01*

-X468735Y54000D01*

-X468794Y53255D01*

-X468969Y52528D01*

-X469255Y51837D01*

-X469645Y51199D01*

-X470131Y50631D01*

-X470699Y50145D01*

-X471337Y49755D01*

-X472028Y49469D01*

-X472755Y49294D01*

-X473493Y49236D01*

-Y39000D01*

-G37*

-G36*

-X463493D02*X458437D01*

-Y161192D01*

-X458441Y161191D01*

-X458880Y161226D01*

-X459309Y161329D01*

-X459716Y161497D01*

-X460092Y161728D01*

-X460427Y162014D01*

-X460713Y162349D01*

-X460944Y162725D01*

-X461112Y163132D01*

-X461215Y163561D01*

-X461241Y164000D01*

-X461215Y164439D01*

-X461112Y164868D01*

-X460944Y165275D01*

-X460713Y165651D01*

-X460427Y165986D01*

-X460092Y166272D01*

-X459716Y166503D01*

-X459309Y166671D01*

-X458880Y166774D01*

-X458441Y166809D01*

-X458437Y166808D01*

-Y192192D01*

-X458441Y192191D01*

-X458880Y192226D01*

-X459309Y192329D01*

-X459716Y192497D01*

-X460092Y192728D01*

-X460427Y193014D01*

-X460713Y193349D01*

-X460944Y193725D01*

-X461112Y194132D01*

-X461215Y194561D01*

-X461241Y195000D01*

-X461215Y195439D01*

-X461112Y195868D01*

-X460944Y196275D01*

-X460713Y196651D01*

-X460427Y196986D01*

-X460092Y197272D01*

-X459716Y197503D01*

-X459309Y197671D01*

-X458880Y197774D01*

-X458441Y197809D01*

-X458437Y197808D01*

-Y222192D01*

-X458441Y222191D01*

-X458880Y222226D01*

-X459309Y222329D01*

-X459716Y222497D01*

-X460092Y222728D01*

-X460427Y223014D01*

-X460713Y223349D01*

-X460944Y223725D01*

-X461112Y224132D01*

-X461215Y224561D01*

-X461241Y225000D01*

-X461215Y225439D01*

-X461112Y225868D01*

-X460944Y226275D01*

-X460713Y226651D01*

-X460427Y226986D01*

-X460092Y227272D01*

-X459716Y227503D01*

-X459309Y227671D01*

-X458880Y227774D01*

-X458441Y227809D01*

-X458437Y227808D01*

-Y251192D01*

-X458441Y251191D01*

-X458880Y251226D01*

-X459309Y251329D01*

-X459716Y251497D01*

-X460092Y251728D01*

-X460427Y252014D01*

-X460713Y252349D01*

-X460944Y252725D01*

-X461112Y253132D01*

-X461215Y253561D01*

-X461241Y254000D01*

-X461215Y254439D01*

-X461112Y254868D01*

-X460944Y255275D01*

-X460713Y255651D01*

-X460427Y255986D01*

-X460092Y256272D01*

-X459716Y256503D01*

-X459309Y256671D01*

-X458880Y256774D01*

-X458441Y256809D01*

-X458437Y256808D01*

-Y282192D01*

-X458441Y282191D01*

-X458880Y282226D01*

-X459309Y282329D01*

-X459716Y282497D01*

-X460092Y282728D01*

-X460427Y283014D01*

-X460713Y283349D01*

-X460944Y283725D01*

-X461112Y284132D01*

-X461215Y284561D01*

-X461241Y285000D01*

-X461215Y285439D01*

-X461112Y285868D01*

-X460944Y286275D01*

-X460713Y286651D01*

-X460427Y286986D01*

-X460092Y287272D01*

-X459716Y287503D01*

-X459309Y287671D01*

-X458880Y287774D01*

-X458441Y287809D01*

-X458437Y287808D01*

-Y312192D01*

-X458441Y312191D01*

-X458880Y312226D01*

-X459309Y312329D01*

-X459716Y312497D01*

-X460092Y312728D01*

-X460427Y313014D01*

-X460713Y313349D01*

-X460944Y313725D01*

-X461112Y314132D01*

-X461215Y314561D01*

-X461241Y315000D01*

-X461215Y315439D01*

-X461112Y315868D01*

-X460944Y316275D01*

-X460713Y316651D01*

-X460427Y316986D01*

-X460092Y317272D01*

-X459716Y317503D01*

-X459309Y317671D01*

-X458880Y317774D01*

-X458441Y317809D01*

-X458437Y317808D01*

-Y342192D01*

-X458441Y342191D01*

-X458880Y342226D01*

-X459309Y342329D01*

-X459716Y342497D01*

-X460092Y342728D01*

-X460427Y343014D01*

-X460713Y343349D01*

-X460944Y343725D01*

-X461112Y344132D01*

-X461215Y344561D01*

-X461241Y345000D01*

-X461215Y345439D01*

-X461112Y345868D01*

-X460944Y346275D01*

-X460713Y346651D01*

-X460427Y346986D01*

-X460092Y347272D01*

-X459716Y347503D01*

-X459309Y347671D01*

-X458880Y347774D01*

-X458441Y347809D01*

-X458437Y347808D01*

-Y372192D01*

-X458441Y372191D01*

-X458880Y372226D01*

-X459309Y372329D01*

-X459716Y372497D01*

-X460092Y372728D01*

-X460427Y373014D01*

-X460713Y373349D01*

-X460944Y373725D01*

-X461112Y374132D01*

-X461215Y374561D01*

-X461241Y375000D01*

-X461215Y375439D01*

-X461112Y375868D01*

-X460944Y376275D01*

-X460713Y376651D01*

-X460427Y376986D01*

-X460092Y377272D01*

-X459716Y377503D01*

-X459309Y377671D01*

-X458880Y377774D01*

-X458441Y377809D01*

-X458437Y377808D01*

-Y397000D01*

-X463493D01*

-Y388764D01*

-X462755Y388706D01*

-X462028Y388531D01*

-X461337Y388245D01*

-X460699Y387855D01*

-X460131Y387369D01*

-X459645Y386801D01*

-X459255Y386163D01*

-X458969Y385472D01*

-X458794Y384745D01*

-X458735Y384000D01*

-X458794Y383255D01*

-X458969Y382528D01*

-X459255Y381837D01*

-X459645Y381199D01*

-X460131Y380631D01*

-X460699Y380145D01*

-X461337Y379755D01*

-X462028Y379469D01*

-X462755Y379294D01*

-X463493Y379236D01*

-Y358764D01*

-X462755Y358706D01*

-X462028Y358531D01*

-X461337Y358245D01*

-X460699Y357855D01*

-X460131Y357369D01*

-X459645Y356801D01*

-X459255Y356163D01*

-X458969Y355472D01*

-X458794Y354745D01*

-X458735Y354000D01*

-X458794Y353255D01*

-X458969Y352528D01*

-X459255Y351837D01*

-X459645Y351199D01*

-X460131Y350631D01*

-X460699Y350145D01*

-X461337Y349755D01*

-X462028Y349469D01*

-X462755Y349294D01*

-X463493Y349236D01*

-Y328764D01*

-X462755Y328706D01*

-X462028Y328531D01*

-X461337Y328245D01*

-X460699Y327855D01*

-X460131Y327369D01*

-X459645Y326801D01*

-X459255Y326163D01*

-X458969Y325472D01*

-X458794Y324745D01*

-X458735Y324000D01*

-X458794Y323255D01*

-X458969Y322528D01*

-X459255Y321837D01*

-X459645Y321199D01*

-X460131Y320631D01*

-X460699Y320145D01*

-X461337Y319755D01*

-X462028Y319469D01*

-X462755Y319294D01*

-X463493Y319236D01*

-Y298764D01*

-X462755Y298706D01*

-X462028Y298531D01*

-X461337Y298245D01*

-X460699Y297855D01*

-X460131Y297369D01*

-X459645Y296801D01*

-X459255Y296163D01*

-X458969Y295472D01*

-X458794Y294745D01*

-X458735Y294000D01*

-X458794Y293255D01*

-X458969Y292528D01*

-X459255Y291837D01*

-X459645Y291199D01*

-X460131Y290631D01*

-X460699Y290145D01*

-X461337Y289755D01*

-X462028Y289469D01*

-X462755Y289294D01*

-X463493Y289236D01*

-Y268764D01*

-X462755Y268706D01*

-X462028Y268531D01*

-X461337Y268245D01*

-X460699Y267855D01*

-X460131Y267369D01*

-X459645Y266801D01*

-X459255Y266163D01*

-X458969Y265472D01*

-X458794Y264745D01*

-X458735Y264000D01*

-X458794Y263255D01*

-X458969Y262528D01*

-X459255Y261837D01*

-X459645Y261199D01*

-X460131Y260631D01*

-X460699Y260145D01*

-X461337Y259755D01*

-X462028Y259469D01*

-X462755Y259294D01*

-X463493Y259236D01*

-Y238764D01*

-X462755Y238706D01*

-X462028Y238531D01*

-X461337Y238245D01*

-X460699Y237855D01*

-X460131Y237369D01*

-X459645Y236801D01*

-X459255Y236163D01*

-X458969Y235472D01*

-X458794Y234745D01*

-X458735Y234000D01*

-X458794Y233255D01*

-X458969Y232528D01*

-X459255Y231837D01*

-X459645Y231199D01*

-X460131Y230631D01*

-X460699Y230145D01*

-X461337Y229755D01*

-X462028Y229469D01*

-X462755Y229294D01*

-X463493Y229236D01*

-Y208764D01*

-X462755Y208706D01*

-X462028Y208531D01*

-X461337Y208245D01*

-X460699Y207855D01*

-X460131Y207369D01*

-X459645Y206801D01*

-X459255Y206163D01*

-X458969Y205472D01*

-X458794Y204745D01*

-X458735Y204000D01*

-X458794Y203255D01*

-X458969Y202528D01*

-X459255Y201837D01*

-X459645Y201199D01*

-X460131Y200631D01*

-X460699Y200145D01*

-X461337Y199755D01*

-X462028Y199469D01*

-X462755Y199294D01*

-X463493Y199236D01*

-Y178764D01*

-X462755Y178706D01*

-X462028Y178531D01*

-X461337Y178245D01*

-X460699Y177855D01*

-X460131Y177369D01*

-X459645Y176801D01*

-X459255Y176163D01*

-X458969Y175472D01*

-X458794Y174745D01*

-X458735Y174000D01*

-X458794Y173255D01*

-X458969Y172528D01*

-X459255Y171837D01*

-X459645Y171199D01*

-X460131Y170631D01*

-X460699Y170145D01*

-X461337Y169755D01*

-X462028Y169469D01*

-X462755Y169294D01*

-X463493Y169236D01*

-Y148764D01*

-X462755Y148706D01*

-X462028Y148531D01*

-X461337Y148245D01*

-X460699Y147855D01*

-X460131Y147369D01*

-X459645Y146801D01*

-X459255Y146163D01*

-X458969Y145472D01*

-X458794Y144745D01*

-X458735Y144000D01*

-X458794Y143255D01*

-X458969Y142528D01*

-X459255Y141837D01*

-X459645Y141199D01*

-X460131Y140631D01*

-X460699Y140145D01*

-X461337Y139755D01*

-X462028Y139469D01*

-X462755Y139294D01*

-X463493Y139236D01*

-Y118764D01*

-X462755Y118706D01*

-X462028Y118531D01*

-X461337Y118245D01*

-X460699Y117855D01*

-X460131Y117369D01*

-X459645Y116801D01*

-X459255Y116163D01*

-X458969Y115472D01*

-X458794Y114745D01*

-X458735Y114000D01*

-X458794Y113255D01*

-X458969Y112528D01*

-X459255Y111837D01*

-X459645Y111199D01*

-X460131Y110631D01*

-X460699Y110145D01*

-X461337Y109755D01*

-X462028Y109469D01*

-X462755Y109294D01*

-X463493Y109236D01*

-Y88764D01*

-X462755Y88706D01*

-X462028Y88531D01*

-X461337Y88245D01*

-X460699Y87855D01*

-X460131Y87369D01*

-X459645Y86801D01*

-X459255Y86163D01*

-X458969Y85472D01*

-X458794Y84745D01*

-X458735Y84000D01*

-X458794Y83255D01*

-X458969Y82528D01*

-X459255Y81837D01*

-X459645Y81199D01*

-X460131Y80631D01*

-X460699Y80145D01*

-X461337Y79755D01*

-X462028Y79469D01*

-X462755Y79294D01*

-X463493Y79236D01*

-Y58764D01*

-X462755Y58706D01*

-X462028Y58531D01*

-X461337Y58245D01*

-X460699Y57855D01*

-X460131Y57369D01*

-X459645Y56801D01*

-X459255Y56163D01*

-X458969Y55472D01*

-X458794Y54745D01*

-X458735Y54000D01*

-X458794Y53255D01*

-X458969Y52528D01*

-X459255Y51837D01*

-X459645Y51199D01*

-X460131Y50631D01*

-X460699Y50145D01*

-X461337Y49755D01*

-X462028Y49469D01*

-X462755Y49294D01*

-X463493Y49236D01*

-Y39000D01*

-G37*

-G36*

-X457500Y192359D02*X457573Y192329D01*

-X458002Y192226D01*

-X458437Y192192D01*

-Y166808D01*

-X458002Y166774D01*

-X457573Y166671D01*

-X457500Y166641D01*

-Y171498D01*

-X457618Y171507D01*

-X457732Y171535D01*

-X457842Y171580D01*

-X457942Y171641D01*

-X458032Y171718D01*

-X458109Y171808D01*

-X458170Y171908D01*

-X458215Y172018D01*

-X458243Y172132D01*

-X458250Y172250D01*

-Y175750D01*

-X458243Y175868D01*

-X458215Y175982D01*

-X458170Y176092D01*

-X458109Y176192D01*

-X458032Y176282D01*

-X457942Y176359D01*

-X457842Y176420D01*

-X457732Y176465D01*

-X457618Y176493D01*

-X457500Y176502D01*

-Y192359D01*

-G37*

-G36*

-Y222359D02*X457573Y222329D01*

-X458002Y222226D01*

-X458437Y222192D01*

-Y197808D01*

-X458002Y197774D01*

-X457573Y197671D01*

-X457500Y197641D01*

-Y201498D01*

-X457618Y201507D01*

-X457732Y201535D01*

-X457842Y201580D01*

-X457942Y201641D01*

-X458032Y201718D01*

-X458109Y201808D01*

-X458170Y201908D01*

-X458215Y202018D01*

-X458243Y202132D01*

-X458250Y202250D01*

-Y205750D01*

-X458243Y205868D01*

-X458215Y205982D01*

-X458170Y206092D01*

-X458109Y206192D01*

-X458032Y206282D01*

-X457942Y206359D01*

-X457842Y206420D01*

-X457732Y206465D01*

-X457618Y206493D01*

-X457500Y206502D01*

-Y222359D01*

-G37*

-G36*

-Y251359D02*X457573Y251329D01*

-X458002Y251226D01*

-X458437Y251192D01*

-Y227808D01*

-X458002Y227774D01*

-X457573Y227671D01*

-X457500Y227641D01*

-Y231498D01*

-X457618Y231507D01*

-X457732Y231535D01*

-X457842Y231580D01*

-X457942Y231641D01*

-X458032Y231718D01*

-X458109Y231808D01*

-X458170Y231908D01*

-X458215Y232018D01*

-X458243Y232132D01*

-X458250Y232250D01*

-Y235750D01*

-X458243Y235868D01*

-X458215Y235982D01*

-X458170Y236092D01*

-X458109Y236192D01*

-X458032Y236282D01*

-X457942Y236359D01*

-X457842Y236420D01*

-X457732Y236465D01*

-X457618Y236493D01*

-X457500Y236502D01*

-Y251359D01*

-G37*

-G36*

-Y282359D02*X457573Y282329D01*

-X458002Y282226D01*

-X458437Y282192D01*

-Y256808D01*

-X458002Y256774D01*

-X457573Y256671D01*

-X457500Y256641D01*

-Y261498D01*

-X457618Y261507D01*

-X457732Y261535D01*

-X457842Y261580D01*

-X457942Y261641D01*

-X458032Y261718D01*

-X458109Y261808D01*

-X458170Y261908D01*

-X458215Y262018D01*

-X458243Y262132D01*

-X458250Y262250D01*

-Y265750D01*

-X458243Y265868D01*

-X458215Y265982D01*

-X458170Y266092D01*

-X458109Y266192D01*

-X458032Y266282D01*

-X457942Y266359D01*

-X457842Y266420D01*

-X457732Y266465D01*

-X457618Y266493D01*

-X457500Y266502D01*

-Y282359D01*

-G37*

-G36*

-Y312359D02*X457573Y312329D01*

-X458002Y312226D01*

-X458437Y312192D01*

-Y287808D01*

-X458002Y287774D01*

-X457573Y287671D01*

-X457500Y287641D01*

-Y291498D01*

-X457618Y291507D01*

-X457732Y291535D01*

-X457842Y291580D01*

-X457942Y291641D01*

-X458032Y291718D01*

-X458109Y291808D01*

-X458170Y291908D01*

-X458215Y292018D01*

-X458243Y292132D01*

-X458250Y292250D01*

-Y295750D01*

-X458243Y295868D01*

-X458215Y295982D01*

-X458170Y296092D01*

-X458109Y296192D01*

-X458032Y296282D01*

-X457942Y296359D01*

-X457842Y296420D01*

-X457732Y296465D01*

-X457618Y296493D01*

-X457500Y296502D01*

-Y312359D01*

-G37*

-G36*

-Y342359D02*X457573Y342329D01*

-X458002Y342226D01*

-X458437Y342192D01*

-Y317808D01*

-X458002Y317774D01*

-X457573Y317671D01*

-X457500Y317641D01*

-Y321498D01*

-X457618Y321507D01*

-X457732Y321535D01*

-X457842Y321580D01*

-X457942Y321641D01*

-X458032Y321718D01*

-X458109Y321808D01*

-X458170Y321908D01*

-X458215Y322018D01*

-X458243Y322132D01*

-X458250Y322250D01*

-Y325750D01*

-X458243Y325868D01*

-X458215Y325982D01*

-X458170Y326092D01*

-X458109Y326192D01*

-X458032Y326282D01*

-X457942Y326359D01*

-X457842Y326420D01*

-X457732Y326465D01*

-X457618Y326493D01*

-X457500Y326502D01*

-Y342359D01*

-G37*

-G36*

-Y372359D02*X457573Y372329D01*

-X458002Y372226D01*

-X458437Y372192D01*

-Y347808D01*

-X458002Y347774D01*

-X457573Y347671D01*

-X457500Y347641D01*

-Y351498D01*

-X457618Y351507D01*

-X457732Y351535D01*

-X457842Y351580D01*

-X457942Y351641D01*

-X458032Y351718D01*

-X458109Y351808D01*

-X458170Y351908D01*

-X458215Y352018D01*

-X458243Y352132D01*

-X458250Y352250D01*

-Y355750D01*

-X458243Y355868D01*

-X458215Y355982D01*

-X458170Y356092D01*

-X458109Y356192D01*

-X458032Y356282D01*

-X457942Y356359D01*

-X457842Y356420D01*

-X457732Y356465D01*

-X457618Y356493D01*

-X457500Y356502D01*

-Y372359D01*

-G37*

-G36*

-Y397000D02*X458437D01*

-Y377808D01*

-X458002Y377774D01*

-X457573Y377671D01*

-X457500Y377641D01*

-Y381498D01*

-X457618Y381507D01*

-X457732Y381535D01*

-X457842Y381580D01*

-X457942Y381641D01*

-X458032Y381718D01*

-X458109Y381808D01*

-X458170Y381908D01*

-X458215Y382018D01*

-X458243Y382132D01*

-X458250Y382250D01*

-Y385750D01*

-X458243Y385868D01*

-X458215Y385982D01*

-X458170Y386092D01*

-X458109Y386192D01*

-X458032Y386282D01*

-X457942Y386359D01*

-X457842Y386420D01*

-X457732Y386465D01*

-X457618Y386493D01*

-X457500Y386502D01*

-Y397000D01*

-G37*

-G36*

-X458437Y39000D02*X457500D01*

-Y51498D01*

-X457618Y51507D01*

-X457732Y51535D01*

-X457842Y51580D01*

-X457942Y51641D01*

-X458032Y51718D01*

-X458109Y51808D01*

-X458170Y51908D01*

-X458215Y52018D01*

-X458243Y52132D01*

-X458250Y52250D01*

-Y55750D01*

-X458243Y55868D01*

-X458215Y55982D01*

-X458170Y56092D01*

-X458109Y56192D01*

-X458032Y56282D01*

-X457942Y56359D01*

-X457842Y56420D01*

-X457732Y56465D01*

-X457618Y56493D01*

-X457500Y56502D01*

-Y81498D01*

-X457618Y81507D01*

-X457732Y81535D01*

-X457842Y81580D01*

-X457942Y81641D01*

-X458032Y81718D01*

-X458109Y81808D01*

-X458170Y81908D01*

-X458215Y82018D01*

-X458243Y82132D01*

-X458250Y82250D01*

-Y85750D01*

-X458243Y85868D01*

-X458215Y85982D01*

-X458170Y86092D01*

-X458109Y86192D01*

-X458032Y86282D01*

-X457942Y86359D01*

-X457842Y86420D01*

-X457732Y86465D01*

-X457618Y86493D01*

-X457500Y86502D01*

-Y111498D01*

-X457618Y111507D01*

-X457732Y111535D01*

-X457842Y111580D01*

-X457942Y111641D01*

-X458032Y111718D01*

-X458109Y111808D01*

-X458170Y111908D01*

-X458215Y112018D01*

-X458243Y112132D01*

-X458250Y112250D01*

-Y115750D01*

-X458243Y115868D01*

-X458215Y115982D01*

-X458170Y116092D01*

-X458109Y116192D01*

-X458032Y116282D01*

-X457942Y116359D01*

-X457842Y116420D01*

-X457732Y116465D01*

-X457618Y116493D01*

-X457500Y116502D01*

-Y141498D01*

-X457618Y141507D01*

-X457732Y141535D01*

-X457842Y141580D01*

-X457942Y141641D01*

-X458032Y141718D01*

-X458109Y141808D01*

-X458170Y141908D01*

-X458215Y142018D01*

-X458243Y142132D01*

-X458250Y142250D01*

-Y145750D01*

-X458243Y145868D01*

-X458215Y145982D01*

-X458170Y146092D01*

-X458109Y146192D01*

-X458032Y146282D01*

-X457942Y146359D01*

-X457842Y146420D01*

-X457732Y146465D01*

-X457618Y146493D01*

-X457500Y146502D01*

-Y161359D01*

-X457573Y161329D01*

-X458002Y161226D01*

-X458437Y161192D01*

-Y39000D01*

-G37*

-G36*

-X457500D02*X453500D01*

-Y49250D01*

-X455250D01*

-X455368Y49257D01*

-X455482Y49285D01*

-X455592Y49330D01*

-X455692Y49391D01*

-X455782Y49468D01*

-X455859Y49558D01*

-X455920Y49658D01*

-X455965Y49768D01*

-X455993Y49882D01*

-X456002Y50000D01*

-X455993Y50118D01*

-X455965Y50232D01*

-X455920Y50342D01*

-X455859Y50442D01*

-X455782Y50532D01*

-X455692Y50609D01*

-X455592Y50670D01*

-X455482Y50715D01*

-X455368Y50743D01*

-X455250Y50750D01*

-X453500D01*

-Y57250D01*

-X455250D01*

-X455368Y57257D01*

-X455482Y57285D01*

-X455592Y57330D01*

-X455692Y57391D01*

-X455782Y57468D01*

-X455859Y57558D01*

-X455920Y57658D01*

-X455965Y57768D01*

-X455993Y57882D01*

-X456002Y58000D01*

-X455993Y58118D01*

-X455965Y58232D01*

-X455920Y58342D01*

-X455859Y58442D01*

-X455782Y58532D01*

-X455692Y58609D01*

-X455592Y58670D01*

-X455482Y58715D01*

-X455368Y58743D01*

-X455250Y58750D01*

-X453500D01*

-Y79250D01*

-X455250D01*

-X455368Y79257D01*

-X455482Y79285D01*

-X455592Y79330D01*

-X455692Y79391D01*

-X455782Y79468D01*

-X455859Y79558D01*

-X455920Y79658D01*

-X455965Y79768D01*

-X455993Y79882D01*

-X456002Y80000D01*

-X455993Y80118D01*

-X455965Y80232D01*

-X455920Y80342D01*

-X455859Y80442D01*

-X455782Y80532D01*

-X455692Y80609D01*

-X455592Y80670D01*

-X455482Y80715D01*

-X455368Y80743D01*

-X455250Y80750D01*

-X453500D01*

-Y87250D01*

-X455250D01*

-X455368Y87257D01*

-X455482Y87285D01*

-X455592Y87330D01*

-X455692Y87391D01*

-X455782Y87468D01*

-X455859Y87558D01*

-X455920Y87658D01*

-X455965Y87768D01*

-X455993Y87882D01*

-X456002Y88000D01*

-X455993Y88118D01*

-X455965Y88232D01*

-X455920Y88342D01*

-X455859Y88442D01*

-X455782Y88532D01*

-X455692Y88609D01*

-X455592Y88670D01*

-X455482Y88715D01*

-X455368Y88743D01*

-X455250Y88750D01*

-X453500D01*

-Y109250D01*

-X455250D01*

-X455368Y109257D01*

-X455482Y109285D01*

-X455592Y109330D01*

-X455692Y109391D01*

-X455782Y109468D01*

-X455859Y109558D01*

-X455920Y109658D01*

-X455965Y109768D01*

-X455993Y109882D01*

-X456002Y110000D01*

-X455993Y110118D01*

-X455965Y110232D01*

-X455920Y110342D01*

-X455859Y110442D01*

-X455782Y110532D01*

-X455692Y110609D01*

-X455592Y110670D01*

-X455482Y110715D01*

-X455368Y110743D01*

-X455250Y110750D01*

-X453500D01*

-Y117250D01*

-X455250D01*

-X455368Y117257D01*

-X455482Y117285D01*

-X455592Y117330D01*

-X455692Y117391D01*

-X455782Y117468D01*

-X455859Y117558D01*

-X455920Y117658D01*

-X455965Y117768D01*

-X455993Y117882D01*

-X456002Y118000D01*

-X455993Y118118D01*

-X455965Y118232D01*

-X455920Y118342D01*

-X455859Y118442D01*

-X455782Y118532D01*

-X455692Y118609D01*

-X455592Y118670D01*

-X455482Y118715D01*

-X455368Y118743D01*

-X455250Y118750D01*

-X453500D01*

-Y139250D01*

-X455250D01*

-X455368Y139257D01*

-X455482Y139285D01*

-X455592Y139330D01*

-X455692Y139391D01*

-X455782Y139468D01*

-X455859Y139558D01*

-X455920Y139658D01*

-X455965Y139768D01*

-X455993Y139882D01*

-X456002Y140000D01*

-X455993Y140118D01*

-X455965Y140232D01*

-X455920Y140342D01*

-X455859Y140442D01*

-X455782Y140532D01*

-X455692Y140609D01*

-X455592Y140670D01*

-X455482Y140715D01*

-X455368Y140743D01*

-X455250Y140750D01*

-X453500D01*

-Y147250D01*

-X455250D01*

-X455368Y147257D01*

-X455482Y147285D01*

-X455592Y147330D01*

-X455692Y147391D01*

-X455782Y147468D01*

-X455859Y147558D01*

-X455920Y147658D01*

-X455965Y147768D01*

-X455993Y147882D01*

-X456002Y148000D01*

-X455993Y148118D01*

-X455965Y148232D01*

-X455920Y148342D01*

-X455859Y148442D01*

-X455782Y148532D01*

-X455692Y148609D01*

-X455592Y148670D01*

-X455482Y148715D01*

-X455368Y148743D01*

-X455250Y148750D01*

-X453500D01*

-Y169250D01*

-X455250D01*

-X455368Y169257D01*

-X455482Y169285D01*

-X455592Y169330D01*

-X455692Y169391D01*

-X455782Y169468D01*

-X455859Y169558D01*

-X455920Y169658D01*

-X455965Y169768D01*

-X455993Y169882D01*

-X456002Y170000D01*

-X455993Y170118D01*

-X455965Y170232D01*

-X455920Y170342D01*

-X455859Y170442D01*

-X455782Y170532D01*

-X455692Y170609D01*

-X455592Y170670D01*

-X455482Y170715D01*

-X455368Y170743D01*

-X455250Y170750D01*

-X453500D01*

-Y177250D01*

-X455250D01*

-X455368Y177257D01*

-X455482Y177285D01*

-X455592Y177330D01*

-X455692Y177391D01*

-X455782Y177468D01*

-X455859Y177558D01*

-X455920Y177658D01*

-X455965Y177768D01*

-X455993Y177882D01*

-X456002Y178000D01*

-X455993Y178118D01*

-X455965Y178232D01*

-X455920Y178342D01*

-X455859Y178442D01*

-X455782Y178532D01*

-X455692Y178609D01*

-X455592Y178670D01*

-X455482Y178715D01*

-X455368Y178743D01*

-X455250Y178750D01*

-X453500D01*

-Y199250D01*

-X455250D01*

-X455368Y199257D01*

-X455482Y199285D01*

-X455592Y199330D01*

-X455692Y199391D01*

-X455782Y199468D01*

-X455859Y199558D01*

-X455920Y199658D01*

-X455965Y199768D01*

-X455993Y199882D01*

-X456002Y200000D01*

-X455993Y200118D01*

-X455965Y200232D01*

-X455920Y200342D01*

-X455859Y200442D01*

-X455782Y200532D01*

-X455692Y200609D01*

-X455592Y200670D01*

-X455482Y200715D01*

-X455368Y200743D01*

-X455250Y200750D01*

-X453500D01*

-Y207250D01*

-X455250D01*

-X455368Y207257D01*

-X455482Y207285D01*

-X455592Y207330D01*

-X455692Y207391D01*

-X455782Y207468D01*

-X455859Y207558D01*

-X455920Y207658D01*

-X455965Y207768D01*

-X455993Y207882D01*

-X456002Y208000D01*

-X455993Y208118D01*

-X455965Y208232D01*

-X455920Y208342D01*

-X455859Y208442D01*

-X455782Y208532D01*

-X455692Y208609D01*

-X455592Y208670D01*

-X455482Y208715D01*

-X455368Y208743D01*

-X455250Y208750D01*

-X453500D01*

-Y229250D01*

-X455250D01*

-X455368Y229257D01*

-X455482Y229285D01*

-X455592Y229330D01*

-X455692Y229391D01*

-X455782Y229468D01*

-X455859Y229558D01*

-X455920Y229658D01*

-X455965Y229768D01*

-X455993Y229882D01*

-X456002Y230000D01*

-X455993Y230118D01*

-X455965Y230232D01*

-X455920Y230342D01*

-X455859Y230442D01*

-X455782Y230532D01*

-X455692Y230609D01*

-X455592Y230670D01*

-X455482Y230715D01*

-X455368Y230743D01*

-X455250Y230750D01*

-X453500D01*

-Y237250D01*

-X455250D01*

-X455368Y237257D01*

-X455482Y237285D01*

-X455592Y237330D01*

-X455692Y237391D01*

-X455782Y237468D01*

-X455859Y237558D01*

-X455920Y237658D01*

-X455965Y237768D01*

-X455993Y237882D01*

-X456002Y238000D01*

-X455993Y238118D01*

-X455965Y238232D01*

-X455920Y238342D01*

-X455859Y238442D01*

-X455782Y238532D01*

-X455692Y238609D01*

-X455592Y238670D01*

-X455482Y238715D01*

-X455368Y238743D01*

-X455250Y238750D01*

-X453500D01*

-Y259250D01*

-X455250D01*

-X455368Y259257D01*

-X455482Y259285D01*

-X455592Y259330D01*

-X455692Y259391D01*

-X455782Y259468D01*

-X455859Y259558D01*

-X455920Y259658D01*

-X455965Y259768D01*

-X455993Y259882D01*

-X456002Y260000D01*

-X455993Y260118D01*

-X455965Y260232D01*

-X455920Y260342D01*

-X455859Y260442D01*

-X455782Y260532D01*

-X455692Y260609D01*

-X455592Y260670D01*

-X455482Y260715D01*

-X455368Y260743D01*

-X455250Y260750D01*

-X453500D01*

-Y267250D01*

-X455250D01*

-X455368Y267257D01*

-X455482Y267285D01*

-X455592Y267330D01*

-X455692Y267391D01*

-X455782Y267468D01*

-X455859Y267558D01*

-X455920Y267658D01*

-X455965Y267768D01*

-X455993Y267882D01*

-X456002Y268000D01*

-X455993Y268118D01*

-X455965Y268232D01*

-X455920Y268342D01*

-X455859Y268442D01*

-X455782Y268532D01*

-X455692Y268609D01*

-X455592Y268670D01*

-X455482Y268715D01*

-X455368Y268743D01*

-X455250Y268750D01*

-X453500D01*

-Y289250D01*

-X455250D01*

-X455368Y289257D01*

-X455482Y289285D01*

-X455592Y289330D01*

-X455692Y289391D01*

-X455782Y289468D01*

-X455859Y289558D01*

-X455920Y289658D01*

-X455965Y289768D01*

-X455993Y289882D01*

-X456002Y290000D01*

-X455993Y290118D01*

-X455965Y290232D01*

-X455920Y290342D01*

-X455859Y290442D01*

-X455782Y290532D01*

-X455692Y290609D01*

-X455592Y290670D01*

-X455482Y290715D01*

-X455368Y290743D01*

-X455250Y290750D01*

-X453500D01*

-Y297250D01*

-X455250D01*

-X455368Y297257D01*

-X455482Y297285D01*

-X455592Y297330D01*

-X455692Y297391D01*

-X455782Y297468D01*

-X455859Y297558D01*

-X455920Y297658D01*

-X455965Y297768D01*

-X455993Y297882D01*

-X456002Y298000D01*

-X455993Y298118D01*

-X455965Y298232D01*

-X455920Y298342D01*

-X455859Y298442D01*

-X455782Y298532D01*

-X455692Y298609D01*

-X455592Y298670D01*

-X455482Y298715D01*

-X455368Y298743D01*

-X455250Y298750D01*

-X453500D01*

-Y319250D01*

-X455250D01*

-X455368Y319257D01*

-X455482Y319285D01*

-X455592Y319330D01*

-X455692Y319391D01*

-X455782Y319468D01*

-X455859Y319558D01*

-X455920Y319658D01*

-X455965Y319768D01*

-X455993Y319882D01*

-X456002Y320000D01*

-X455993Y320118D01*

-X455965Y320232D01*

-X455920Y320342D01*

-X455859Y320442D01*

-X455782Y320532D01*

-X455692Y320609D01*

-X455592Y320670D01*

-X455482Y320715D01*

-X455368Y320743D01*

-X455250Y320750D01*

-X453500D01*

-Y327250D01*

-X455250D01*

-X455368Y327257D01*

-X455482Y327285D01*

-X455592Y327330D01*

-X455692Y327391D01*

-X455782Y327468D01*

-X455859Y327558D01*

-X455920Y327658D01*

-X455965Y327768D01*

-X455993Y327882D01*

-X456002Y328000D01*

-X455993Y328118D01*

-X455965Y328232D01*

-X455920Y328342D01*

-X455859Y328442D01*

-X455782Y328532D01*

-X455692Y328609D01*

-X455592Y328670D01*

-X455482Y328715D01*

-X455368Y328743D01*

-X455250Y328750D01*

-X453500D01*

-Y349250D01*

-X455250D01*

-X455368Y349257D01*

-X455482Y349285D01*

-X455592Y349330D01*

-X455692Y349391D01*

-X455782Y349468D01*

-X455859Y349558D01*

-X455920Y349658D01*

-X455965Y349768D01*

-X455993Y349882D01*

-X456002Y350000D01*

-X455993Y350118D01*

-X455965Y350232D01*

-X455920Y350342D01*

-X455859Y350442D01*

-X455782Y350532D01*

-X455692Y350609D01*

-X455592Y350670D01*

-X455482Y350715D01*

-X455368Y350743D01*

-X455250Y350750D01*

-X453500D01*

-Y357250D01*

-X455250D01*

-X455368Y357257D01*

-X455482Y357285D01*

-X455592Y357330D01*

-X455692Y357391D01*

-X455782Y357468D01*

-X455859Y357558D01*

-X455920Y357658D01*

-X455965Y357768D01*

-X455993Y357882D01*

-X456002Y358000D01*

-X455993Y358118D01*

-X455965Y358232D01*

-X455920Y358342D01*

-X455859Y358442D01*

-X455782Y358532D01*

-X455692Y358609D01*

-X455592Y358670D01*

-X455482Y358715D01*

-X455368Y358743D01*

-X455250Y358750D01*

-X453500D01*

-Y379250D01*

-X455250D01*

-X455368Y379257D01*

-X455482Y379285D01*

-X455592Y379330D01*

-X455692Y379391D01*

-X455782Y379468D01*

-X455859Y379558D01*

-X455920Y379658D01*

-X455965Y379768D01*

-X455993Y379882D01*

-X456002Y380000D01*

-X455993Y380118D01*

-X455965Y380232D01*

-X455920Y380342D01*

-X455859Y380442D01*

-X455782Y380532D01*

-X455692Y380609D01*

-X455592Y380670D01*

-X455482Y380715D01*

-X455368Y380743D01*

-X455250Y380750D01*

-X453500D01*

-Y387250D01*

-X455250D01*

-X455368Y387257D01*

-X455482Y387285D01*

-X455592Y387330D01*

-X455692Y387391D01*

-X455782Y387468D01*

-X455859Y387558D01*

-X455920Y387658D01*

-X455965Y387768D01*

-X455993Y387882D01*

-X456002Y388000D01*

-X455993Y388118D01*

-X455965Y388232D01*

-X455920Y388342D01*

-X455859Y388442D01*

-X455782Y388532D01*

-X455692Y388609D01*

-X455592Y388670D01*

-X455482Y388715D01*

-X455368Y388743D01*

-X455250Y388750D01*

-X453500D01*

-Y397000D01*

-X457500D01*

-Y386502D01*

-X457382Y386493D01*

-X457268Y386465D01*

-X457158Y386420D01*

-X457058Y386359D01*

-X456968Y386282D01*

-X456891Y386192D01*

-X456830Y386092D01*

-X456785Y385982D01*

-X456757Y385868D01*

-X456750Y385750D01*

-Y382250D01*

-X456757Y382132D01*

-X456785Y382018D01*

-X456830Y381908D01*

-X456891Y381808D01*

-X456968Y381718D01*

-X457058Y381641D01*

-X457158Y381580D01*

-X457268Y381535D01*

-X457382Y381507D01*

-X457500Y381498D01*

-Y377641D01*

-X457166Y377503D01*

-X456790Y377272D01*

-X456455Y376986D01*

-X456169Y376651D01*

-X455938Y376275D01*

-X455770Y375868D01*

-X455667Y375439D01*

-X455632Y375000D01*

-X455667Y374561D01*

-X455770Y374132D01*

-X455938Y373725D01*

-X456169Y373349D01*

-X456455Y373014D01*

-X456790Y372728D01*

-X457166Y372497D01*

-X457500Y372359D01*

-Y356502D01*

-X457382Y356493D01*

-X457268Y356465D01*

-X457158Y356420D01*

-X457058Y356359D01*

-X456968Y356282D01*

-X456891Y356192D01*

-X456830Y356092D01*

-X456785Y355982D01*

-X456757Y355868D01*

-X456750Y355750D01*

-Y352250D01*

-X456757Y352132D01*

-X456785Y352018D01*

-X456830Y351908D01*

-X456891Y351808D01*

-X456968Y351718D01*

-X457058Y351641D01*

-X457158Y351580D01*

-X457268Y351535D01*

-X457382Y351507D01*

-X457500Y351498D01*

-Y347641D01*

-X457166Y347503D01*

-X456790Y347272D01*

-X456455Y346986D01*

-X456169Y346651D01*

-X455938Y346275D01*

-X455770Y345868D01*

-X455667Y345439D01*

-X455632Y345000D01*

-X455667Y344561D01*

-X455770Y344132D01*

-X455938Y343725D01*

-X456169Y343349D01*

-X456455Y343014D01*

-X456790Y342728D01*

-X457166Y342497D01*

-X457500Y342359D01*

-Y326502D01*

-X457382Y326493D01*

-X457268Y326465D01*

-X457158Y326420D01*

-X457058Y326359D01*

-X456968Y326282D01*

-X456891Y326192D01*

-X456830Y326092D01*

-X456785Y325982D01*

-X456757Y325868D01*

-X456750Y325750D01*

-Y322250D01*

-X456757Y322132D01*

-X456785Y322018D01*

-X456830Y321908D01*

-X456891Y321808D01*

-X456968Y321718D01*

-X457058Y321641D01*

-X457158Y321580D01*

-X457268Y321535D01*

-X457382Y321507D01*

-X457500Y321498D01*

-Y317641D01*

-X457166Y317503D01*

-X456790Y317272D01*

-X456455Y316986D01*

-X456169Y316651D01*

-X455938Y316275D01*

-X455770Y315868D01*

-X455667Y315439D01*

-X455632Y315000D01*

-X455667Y314561D01*

-X455770Y314132D01*

-X455938Y313725D01*

-X456169Y313349D01*

-X456455Y313014D01*

-X456790Y312728D01*

-X457166Y312497D01*

-X457500Y312359D01*

-Y296502D01*

-X457382Y296493D01*

-X457268Y296465D01*

-X457158Y296420D01*

-X457058Y296359D01*

-X456968Y296282D01*

-X456891Y296192D01*

-X456830Y296092D01*

-X456785Y295982D01*

-X456757Y295868D01*

-X456750Y295750D01*

-Y292250D01*

-X456757Y292132D01*

-X456785Y292018D01*

-X456830Y291908D01*

-X456891Y291808D01*

-X456968Y291718D01*

-X457058Y291641D01*

-X457158Y291580D01*

-X457268Y291535D01*

-X457382Y291507D01*

-X457500Y291498D01*

-Y287641D01*

-X457166Y287503D01*

-X456790Y287272D01*

-X456455Y286986D01*

-X456169Y286651D01*

-X455938Y286275D01*

-X455770Y285868D01*

-X455667Y285439D01*

-X455632Y285000D01*

-X455667Y284561D01*

-X455770Y284132D01*

-X455938Y283725D01*

-X456169Y283349D01*

-X456455Y283014D01*

-X456790Y282728D01*

-X457166Y282497D01*

-X457500Y282359D01*

-Y266502D01*

-X457382Y266493D01*

-X457268Y266465D01*

-X457158Y266420D01*

-X457058Y266359D01*

-X456968Y266282D01*

-X456891Y266192D01*

-X456830Y266092D01*

-X456785Y265982D01*

-X456757Y265868D01*

-X456750Y265750D01*

-Y262250D01*

-X456757Y262132D01*

-X456785Y262018D01*

-X456830Y261908D01*

-X456891Y261808D01*

-X456968Y261718D01*

-X457058Y261641D01*

-X457158Y261580D01*

-X457268Y261535D01*

-X457382Y261507D01*

-X457500Y261498D01*

-Y256641D01*

-X457166Y256503D01*

-X456790Y256272D01*

-X456455Y255986D01*

-X456169Y255651D01*

-X455938Y255275D01*

-X455770Y254868D01*

-X455667Y254439D01*

-X455632Y254000D01*

-X455667Y253561D01*

-X455770Y253132D01*

-X455938Y252725D01*

-X456169Y252349D01*

-X456455Y252014D01*

-X456790Y251728D01*

-X457166Y251497D01*

-X457500Y251359D01*

-Y236502D01*

-X457382Y236493D01*

-X457268Y236465D01*

-X457158Y236420D01*

-X457058Y236359D01*

-X456968Y236282D01*

-X456891Y236192D01*

-X456830Y236092D01*

-X456785Y235982D01*

-X456757Y235868D01*

-X456750Y235750D01*

-Y232250D01*

-X456757Y232132D01*

-X456785Y232018D01*

-X456830Y231908D01*

-X456891Y231808D01*

-X456968Y231718D01*

-X457058Y231641D01*

-X457158Y231580D01*

-X457268Y231535D01*

-X457382Y231507D01*

-X457500Y231498D01*

-Y227641D01*

-X457166Y227503D01*

-X456790Y227272D01*

-X456455Y226986D01*

-X456169Y226651D01*

-X455938Y226275D01*

-X455770Y225868D01*

-X455667Y225439D01*

-X455632Y225000D01*

-X455667Y224561D01*

-X455770Y224132D01*

-X455938Y223725D01*

-X456169Y223349D01*

-X456455Y223014D01*

-X456790Y222728D01*

-X457166Y222497D01*

-X457500Y222359D01*

-Y206502D01*

-X457382Y206493D01*

-X457268Y206465D01*

-X457158Y206420D01*

-X457058Y206359D01*

-X456968Y206282D01*

-X456891Y206192D01*

-X456830Y206092D01*

-X456785Y205982D01*

-X456757Y205868D01*

-X456750Y205750D01*

-Y202250D01*

-X456757Y202132D01*

-X456785Y202018D01*

-X456830Y201908D01*

-X456891Y201808D01*

-X456968Y201718D01*

-X457058Y201641D01*

-X457158Y201580D01*

-X457268Y201535D01*

-X457382Y201507D01*

-X457500Y201498D01*

-Y197641D01*

-X457166Y197503D01*

-X456790Y197272D01*

-X456455Y196986D01*

-X456169Y196651D01*

-X455938Y196275D01*

-X455770Y195868D01*

-X455667Y195439D01*

-X455632Y195000D01*

-X455667Y194561D01*

-X455770Y194132D01*

-X455938Y193725D01*

-X456169Y193349D01*

-X456455Y193014D01*

-X456790Y192728D01*

-X457166Y192497D01*

-X457500Y192359D01*

-Y176502D01*

-X457382Y176493D01*

-X457268Y176465D01*

-X457158Y176420D01*

-X457058Y176359D01*

-X456968Y176282D01*

-X456891Y176192D01*

-X456830Y176092D01*

-X456785Y175982D01*

-X456757Y175868D01*

-X456750Y175750D01*

-Y172250D01*

-X456757Y172132D01*

-X456785Y172018D01*

-X456830Y171908D01*

-X456891Y171808D01*

-X456968Y171718D01*

-X457058Y171641D01*

-X457158Y171580D01*

-X457268Y171535D01*

-X457382Y171507D01*

-X457500Y171498D01*

-Y166641D01*

-X457166Y166503D01*

-X456790Y166272D01*

-X456455Y165986D01*

-X456169Y165651D01*

-X455938Y165275D01*

-X455770Y164868D01*

-X455667Y164439D01*

-X455632Y164000D01*

-X455667Y163561D01*

-X455770Y163132D01*

-X455938Y162725D01*

-X456169Y162349D01*

-X456455Y162014D01*

-X456790Y161728D01*

-X457166Y161497D01*

-X457500Y161359D01*

-Y146502D01*

-X457382Y146493D01*

-X457268Y146465D01*

-X457158Y146420D01*

-X457058Y146359D01*

-X456968Y146282D01*

-X456891Y146192D01*

-X456830Y146092D01*

-X456785Y145982D01*

-X456757Y145868D01*

-X456750Y145750D01*

-Y142250D01*

-X456757Y142132D01*

-X456785Y142018D01*

-X456830Y141908D01*

-X456891Y141808D01*

-X456968Y141718D01*

-X457058Y141641D01*

-X457158Y141580D01*

-X457268Y141535D01*

-X457382Y141507D01*

-X457500Y141498D01*

-Y116502D01*

-X457382Y116493D01*

-X457268Y116465D01*

-X457158Y116420D01*

-X457058Y116359D01*

-X456968Y116282D01*

-X456891Y116192D01*

-X456830Y116092D01*

-X456785Y115982D01*

-X456757Y115868D01*

-X456750Y115750D01*

-Y112250D01*

-X456757Y112132D01*

-X456785Y112018D01*

-X456830Y111908D01*

-X456891Y111808D01*

-X456968Y111718D01*

-X457058Y111641D01*

-X457158Y111580D01*

-X457268Y111535D01*

-X457382Y111507D01*

-X457500Y111498D01*

-Y86502D01*

-X457382Y86493D01*

-X457268Y86465D01*

-X457158Y86420D01*

-X457058Y86359D01*

-X456968Y86282D01*

-X456891Y86192D01*

-X456830Y86092D01*

-X456785Y85982D01*

-X456757Y85868D01*

-X456750Y85750D01*

-Y82250D01*

-X456757Y82132D01*

-X456785Y82018D01*

-X456830Y81908D01*

-X456891Y81808D01*

-X456968Y81718D01*

-X457058Y81641D01*

-X457158Y81580D01*

-X457268Y81535D01*

-X457382Y81507D01*

-X457500Y81498D01*

-Y56502D01*

-X457382Y56493D01*

-X457268Y56465D01*

-X457158Y56420D01*

-X457058Y56359D01*

-X456968Y56282D01*

-X456891Y56192D01*

-X456830Y56092D01*

-X456785Y55982D01*

-X456757Y55868D01*

-X456750Y55750D01*

-Y52250D01*

-X456757Y52132D01*

-X456785Y52018D01*

-X456830Y51908D01*

-X456891Y51808D01*

-X456968Y51718D01*

-X457058Y51641D01*

-X457158Y51580D01*

-X457268Y51535D01*

-X457382Y51507D01*

-X457500Y51498D01*

-Y39000D01*

-G37*

-G36*

-X453500D02*X449500D01*

-Y51498D01*

-X449618Y51507D01*

-X449732Y51535D01*

-X449842Y51580D01*

-X449942Y51641D01*

-X450032Y51718D01*

-X450109Y51808D01*

-X450170Y51908D01*

-X450215Y52018D01*

-X450243Y52132D01*

-X450250Y52250D01*

-Y55750D01*

-X450243Y55868D01*

-X450215Y55982D01*

-X450170Y56092D01*

-X450109Y56192D01*

-X450032Y56282D01*

-X449942Y56359D01*

-X449842Y56420D01*

-X449732Y56465D01*

-X449618Y56493D01*

-X449500Y56502D01*

-Y81498D01*

-X449618Y81507D01*

-X449732Y81535D01*

-X449842Y81580D01*

-X449942Y81641D01*

-X450032Y81718D01*

-X450109Y81808D01*

-X450170Y81908D01*

-X450215Y82018D01*

-X450243Y82132D01*

-X450250Y82250D01*

-Y85750D01*

-X450243Y85868D01*

-X450215Y85982D01*

-X450170Y86092D01*

-X450109Y86192D01*

-X450032Y86282D01*

-X449942Y86359D01*

-X449842Y86420D01*

-X449732Y86465D01*

-X449618Y86493D01*

-X449500Y86502D01*

-Y111498D01*

-X449618Y111507D01*

-X449732Y111535D01*

-X449842Y111580D01*

-X449942Y111641D01*

-X450032Y111718D01*

-X450109Y111808D01*

-X450170Y111908D01*

-X450215Y112018D01*

-X450243Y112132D01*

-X450250Y112250D01*

-Y115750D01*

-X450243Y115868D01*

-X450215Y115982D01*

-X450170Y116092D01*

-X450109Y116192D01*

-X450032Y116282D01*

-X449942Y116359D01*

-X449842Y116420D01*

-X449732Y116465D01*

-X449618Y116493D01*

-X449500Y116502D01*

-Y141498D01*

-X449618Y141507D01*

-X449732Y141535D01*

-X449842Y141580D01*

-X449942Y141641D01*

-X450032Y141718D01*

-X450109Y141808D01*

-X450170Y141908D01*

-X450215Y142018D01*

-X450243Y142132D01*

-X450250Y142250D01*

-Y145750D01*

-X450243Y145868D01*

-X450215Y145982D01*

-X450170Y146092D01*

-X450109Y146192D01*

-X450032Y146282D01*

-X449942Y146359D01*

-X449842Y146420D01*

-X449732Y146465D01*

-X449618Y146493D01*

-X449500Y146502D01*

-Y171498D01*

-X449618Y171507D01*

-X449732Y171535D01*

-X449842Y171580D01*

-X449942Y171641D01*

-X450032Y171718D01*

-X450109Y171808D01*

-X450170Y171908D01*

-X450215Y172018D01*

-X450243Y172132D01*

-X450250Y172250D01*

-Y175750D01*

-X450243Y175868D01*

-X450215Y175982D01*

-X450170Y176092D01*

-X450109Y176192D01*

-X450032Y176282D01*

-X449942Y176359D01*

-X449842Y176420D01*

-X449732Y176465D01*

-X449618Y176493D01*

-X449500Y176502D01*

-Y201498D01*

-X449618Y201507D01*

-X449732Y201535D01*

-X449842Y201580D01*

-X449942Y201641D01*

-X450032Y201718D01*

-X450109Y201808D01*

-X450170Y201908D01*

-X450215Y202018D01*

-X450243Y202132D01*

-X450250Y202250D01*

-Y205750D01*

-X450243Y205868D01*

-X450215Y205982D01*

-X450170Y206092D01*

-X450109Y206192D01*

-X450032Y206282D01*

-X449942Y206359D01*

-X449842Y206420D01*

-X449732Y206465D01*

-X449618Y206493D01*

-X449500Y206502D01*

-Y231498D01*

-X449618Y231507D01*

-X449732Y231535D01*

-X449842Y231580D01*

-X449942Y231641D01*

-X450032Y231718D01*

-X450109Y231808D01*

-X450170Y231908D01*

-X450215Y232018D01*

-X450243Y232132D01*

-X450250Y232250D01*

-Y235750D01*

-X450243Y235868D01*

-X450215Y235982D01*

-X450170Y236092D01*

-X450109Y236192D01*

-X450032Y236282D01*

-X449942Y236359D01*

-X449842Y236420D01*

-X449732Y236465D01*

-X449618Y236493D01*

-X449500Y236502D01*

-Y261498D01*

-X449618Y261507D01*

-X449732Y261535D01*

-X449842Y261580D01*

-X449942Y261641D01*

-X450032Y261718D01*

-X450109Y261808D01*

-X450170Y261908D01*

-X450215Y262018D01*

-X450243Y262132D01*

-X450250Y262250D01*

-Y265750D01*

-X450243Y265868D01*

-X450215Y265982D01*

-X450170Y266092D01*

-X450109Y266192D01*

-X450032Y266282D01*

-X449942Y266359D01*

-X449842Y266420D01*

-X449732Y266465D01*

-X449618Y266493D01*

-X449500Y266502D01*

-Y291498D01*

-X449618Y291507D01*

-X449732Y291535D01*

-X449842Y291580D01*

-X449942Y291641D01*

-X450032Y291718D01*

-X450109Y291808D01*

-X450170Y291908D01*

-X450215Y292018D01*

-X450243Y292132D01*

-X450250Y292250D01*

-Y295750D01*

-X450243Y295868D01*

-X450215Y295982D01*

-X450170Y296092D01*

-X450109Y296192D01*

-X450032Y296282D01*

-X449942Y296359D01*

-X449842Y296420D01*

-X449732Y296465D01*

-X449618Y296493D01*

-X449500Y296502D01*

-Y321498D01*

-X449618Y321507D01*

-X449732Y321535D01*

-X449842Y321580D01*

-X449942Y321641D01*

-X450032Y321718D01*

-X450109Y321808D01*

-X450170Y321908D01*

-X450215Y322018D01*

-X450243Y322132D01*

-X450250Y322250D01*

-Y325750D01*

-X450243Y325868D01*

-X450215Y325982D01*

-X450170Y326092D01*

-X450109Y326192D01*

-X450032Y326282D01*

-X449942Y326359D01*

-X449842Y326420D01*

-X449732Y326465D01*

-X449618Y326493D01*

-X449500Y326502D01*

-Y351498D01*

-X449618Y351507D01*

-X449732Y351535D01*

-X449842Y351580D01*

-X449942Y351641D01*

-X450032Y351718D01*

-X450109Y351808D01*

-X450170Y351908D01*

-X450215Y352018D01*

-X450243Y352132D01*

-X450250Y352250D01*

-Y355750D01*

-X450243Y355868D01*

-X450215Y355982D01*

-X450170Y356092D01*

-X450109Y356192D01*

-X450032Y356282D01*

-X449942Y356359D01*

-X449842Y356420D01*

-X449732Y356465D01*

-X449618Y356493D01*

-X449500Y356502D01*

-Y381498D01*

-X449618Y381507D01*

-X449732Y381535D01*

-X449842Y381580D01*

-X449942Y381641D01*

-X450032Y381718D01*

-X450109Y381808D01*

-X450170Y381908D01*

-X450215Y382018D01*

-X450243Y382132D01*

-X450250Y382250D01*

-Y385750D01*

-X450243Y385868D01*

-X450215Y385982D01*

-X450170Y386092D01*

-X450109Y386192D01*

-X450032Y386282D01*

-X449942Y386359D01*

-X449842Y386420D01*

-X449732Y386465D01*

-X449618Y386493D01*

-X449500Y386502D01*

-Y397000D01*

-X453500D01*

-Y388750D01*

-X451750D01*

-X451632Y388743D01*

-X451518Y388715D01*

-X451408Y388670D01*

-X451308Y388609D01*

-X451218Y388532D01*

-X451141Y388442D01*

-X451080Y388342D01*

-X451035Y388232D01*

-X451007Y388118D01*

-X450998Y388000D01*

-X451007Y387882D01*

-X451035Y387768D01*

-X451080Y387658D01*

-X451141Y387558D01*

-X451218Y387468D01*

-X451308Y387391D01*

-X451408Y387330D01*

-X451518Y387285D01*

-X451632Y387257D01*

-X451750Y387250D01*

-X453500D01*

-Y380750D01*

-X451750D01*

-X451632Y380743D01*

-X451518Y380715D01*

-X451408Y380670D01*

-X451308Y380609D01*

-X451218Y380532D01*

-X451141Y380442D01*

-X451080Y380342D01*

-X451035Y380232D01*

-X451007Y380118D01*

-X450998Y380000D01*

-X451007Y379882D01*

-X451035Y379768D01*

-X451080Y379658D01*

-X451141Y379558D01*

-X451218Y379468D01*

-X451308Y379391D01*

-X451408Y379330D01*

-X451518Y379285D01*

-X451632Y379257D01*

-X451750Y379250D01*

-X453500D01*

-Y358750D01*

-X451750D01*

-X451632Y358743D01*

-X451518Y358715D01*

-X451408Y358670D01*

-X451308Y358609D01*

-X451218Y358532D01*

-X451141Y358442D01*

-X451080Y358342D01*

-X451035Y358232D01*

-X451007Y358118D01*

-X450998Y358000D01*

-X451007Y357882D01*

-X451035Y357768D01*

-X451080Y357658D01*

-X451141Y357558D01*

-X451218Y357468D01*

-X451308Y357391D01*

-X451408Y357330D01*

-X451518Y357285D01*

-X451632Y357257D01*

-X451750Y357250D01*

-X453500D01*

-Y350750D01*

-X451750D01*

-X451632Y350743D01*

-X451518Y350715D01*

-X451408Y350670D01*

-X451308Y350609D01*

-X451218Y350532D01*

-X451141Y350442D01*

-X451080Y350342D01*

-X451035Y350232D01*

-X451007Y350118D01*

-X450998Y350000D01*

-X451007Y349882D01*

-X451035Y349768D01*

-X451080Y349658D01*

-X451141Y349558D01*

-X451218Y349468D01*

-X451308Y349391D01*

-X451408Y349330D01*

-X451518Y349285D01*

-X451632Y349257D01*

-X451750Y349250D01*

-X453500D01*

-Y328750D01*

-X451750D01*

-X451632Y328743D01*

-X451518Y328715D01*

-X451408Y328670D01*

-X451308Y328609D01*

-X451218Y328532D01*

-X451141Y328442D01*

-X451080Y328342D01*

-X451035Y328232D01*

-X451007Y328118D01*

-X450998Y328000D01*

-X451007Y327882D01*

-X451035Y327768D01*

-X451080Y327658D01*

-X451141Y327558D01*

-X451218Y327468D01*

-X451308Y327391D01*

-X451408Y327330D01*

-X451518Y327285D01*

-X451632Y327257D01*

-X451750Y327250D01*

-X453500D01*

-Y320750D01*

-X451750D01*

-X451632Y320743D01*

-X451518Y320715D01*

-X451408Y320670D01*

-X451308Y320609D01*

-X451218Y320532D01*

-X451141Y320442D01*

-X451080Y320342D01*

-X451035Y320232D01*

-X451007Y320118D01*

-X450998Y320000D01*

-X451007Y319882D01*

-X451035Y319768D01*

-X451080Y319658D01*

-X451141Y319558D01*

-X451218Y319468D01*

-X451308Y319391D01*

-X451408Y319330D01*

-X451518Y319285D01*

-X451632Y319257D01*

-X451750Y319250D01*

-X453500D01*

-Y298750D01*

-X451750D01*

-X451632Y298743D01*

-X451518Y298715D01*

-X451408Y298670D01*

-X451308Y298609D01*

-X451218Y298532D01*

-X451141Y298442D01*

-X451080Y298342D01*

-X451035Y298232D01*

-X451007Y298118D01*

-X450998Y298000D01*

-X451007Y297882D01*

-X451035Y297768D01*

-X451080Y297658D01*

-X451141Y297558D01*

-X451218Y297468D01*

-X451308Y297391D01*

-X451408Y297330D01*

-X451518Y297285D01*

-X451632Y297257D01*

-X451750Y297250D01*

-X453500D01*

-Y290750D01*

-X451750D01*

-X451632Y290743D01*

-X451518Y290715D01*

-X451408Y290670D01*

-X451308Y290609D01*

-X451218Y290532D01*

-X451141Y290442D01*

-X451080Y290342D01*

-X451035Y290232D01*

-X451007Y290118D01*

-X450998Y290000D01*

-X451007Y289882D01*

-X451035Y289768D01*

-X451080Y289658D01*

-X451141Y289558D01*

-X451218Y289468D01*

-X451308Y289391D01*

-X451408Y289330D01*

-X451518Y289285D01*

-X451632Y289257D01*

-X451750Y289250D01*

-X453500D01*

-Y268750D01*

-X451750D01*

-X451632Y268743D01*

-X451518Y268715D01*

-X451408Y268670D01*

-X451308Y268609D01*

-X451218Y268532D01*

-X451141Y268442D01*

-X451080Y268342D01*

-X451035Y268232D01*

-X451007Y268118D01*

-X450998Y268000D01*

-X451007Y267882D01*

-X451035Y267768D01*

-X451080Y267658D01*

-X451141Y267558D01*

-X451218Y267468D01*

-X451308Y267391D01*

-X451408Y267330D01*

-X451518Y267285D01*

-X451632Y267257D01*

-X451750Y267250D01*

-X453500D01*

-Y260750D01*

-X451750D01*

-X451632Y260743D01*

-X451518Y260715D01*

-X451408Y260670D01*

-X451308Y260609D01*

-X451218Y260532D01*

-X451141Y260442D01*

-X451080Y260342D01*

-X451035Y260232D01*

-X451007Y260118D01*

-X450998Y260000D01*

-X451007Y259882D01*

-X451035Y259768D01*

-X451080Y259658D01*

-X451141Y259558D01*

-X451218Y259468D01*

-X451308Y259391D01*

-X451408Y259330D01*

-X451518Y259285D01*

-X451632Y259257D01*

-X451750Y259250D01*

-X453500D01*

-Y238750D01*

-X451750D01*

-X451632Y238743D01*

-X451518Y238715D01*

-X451408Y238670D01*

-X451308Y238609D01*

-X451218Y238532D01*

-X451141Y238442D01*

-X451080Y238342D01*

-X451035Y238232D01*

-X451007Y238118D01*

-X450998Y238000D01*

-X451007Y237882D01*

-X451035Y237768D01*

-X451080Y237658D01*

-X451141Y237558D01*

-X451218Y237468D01*

-X451308Y237391D01*

-X451408Y237330D01*

-X451518Y237285D01*

-X451632Y237257D01*

-X451750Y237250D01*

-X453500D01*

-Y230750D01*

-X451750D01*

-X451632Y230743D01*

-X451518Y230715D01*

-X451408Y230670D01*

-X451308Y230609D01*

-X451218Y230532D01*

-X451141Y230442D01*

-X451080Y230342D01*

-X451035Y230232D01*

-X451007Y230118D01*

-X450998Y230000D01*

-X451007Y229882D01*

-X451035Y229768D01*

-X451080Y229658D01*

-X451141Y229558D01*

-X451218Y229468D01*

-X451308Y229391D01*

-X451408Y229330D01*

-X451518Y229285D01*

-X451632Y229257D01*

-X451750Y229250D01*

-X453500D01*

-Y208750D01*

-X451750D01*

-X451632Y208743D01*

-X451518Y208715D01*

-X451408Y208670D01*

-X451308Y208609D01*

-X451218Y208532D01*

-X451141Y208442D01*

-X451080Y208342D01*

-X451035Y208232D01*

-X451007Y208118D01*

-X450998Y208000D01*

-X451007Y207882D01*

-X451035Y207768D01*

-X451080Y207658D01*

-X451141Y207558D01*

-X451218Y207468D01*

-X451308Y207391D01*

-X451408Y207330D01*

-X451518Y207285D01*

-X451632Y207257D01*

-X451750Y207250D01*

-X453500D01*

-Y200750D01*

-X451750D01*

-X451632Y200743D01*

-X451518Y200715D01*

-X451408Y200670D01*

-X451308Y200609D01*

-X451218Y200532D01*

-X451141Y200442D01*

-X451080Y200342D01*

-X451035Y200232D01*

-X451007Y200118D01*

-X450998Y200000D01*

-X451007Y199882D01*

-X451035Y199768D01*

-X451080Y199658D01*

-X451141Y199558D01*

-X451218Y199468D01*

-X451308Y199391D01*

-X451408Y199330D01*

-X451518Y199285D01*

-X451632Y199257D01*

-X451750Y199250D01*

-X453500D01*

-Y178750D01*

-X451750D01*

-X451632Y178743D01*

-X451518Y178715D01*

-X451408Y178670D01*

-X451308Y178609D01*

-X451218Y178532D01*

-X451141Y178442D01*

-X451080Y178342D01*

-X451035Y178232D01*

-X451007Y178118D01*

-X450998Y178000D01*

-X451007Y177882D01*

-X451035Y177768D01*

-X451080Y177658D01*

-X451141Y177558D01*

-X451218Y177468D01*

-X451308Y177391D01*

-X451408Y177330D01*

-X451518Y177285D01*

-X451632Y177257D01*

-X451750Y177250D01*

-X453500D01*

-Y170750D01*

-X451750D01*

-X451632Y170743D01*

-X451518Y170715D01*

-X451408Y170670D01*

-X451308Y170609D01*

-X451218Y170532D01*

-X451141Y170442D01*

-X451080Y170342D01*

-X451035Y170232D01*

-X451007Y170118D01*

-X450998Y170000D01*

-X451007Y169882D01*

-X451035Y169768D01*

-X451080Y169658D01*

-X451141Y169558D01*

-X451218Y169468D01*

-X451308Y169391D01*

-X451408Y169330D01*

-X451518Y169285D01*

-X451632Y169257D01*

-X451750Y169250D01*

-X453500D01*

-Y148750D01*

-X451750D01*

-X451632Y148743D01*

-X451518Y148715D01*

-X451408Y148670D01*

-X451308Y148609D01*

-X451218Y148532D01*

-X451141Y148442D01*

-X451080Y148342D01*

-X451035Y148232D01*

-X451007Y148118D01*

-X450998Y148000D01*

-X451007Y147882D01*

-X451035Y147768D01*

-X451080Y147658D01*

-X451141Y147558D01*

-X451218Y147468D01*

-X451308Y147391D01*

-X451408Y147330D01*

-X451518Y147285D01*

-X451632Y147257D01*

-X451750Y147250D01*

-X453500D01*

-Y140750D01*

-X451750D01*

-X451632Y140743D01*

-X451518Y140715D01*

-X451408Y140670D01*

-X451308Y140609D01*

-X451218Y140532D01*

-X451141Y140442D01*

-X451080Y140342D01*

-X451035Y140232D01*

-X451007Y140118D01*

-X450998Y140000D01*

-X451007Y139882D01*

-X451035Y139768D01*

-X451080Y139658D01*

-X451141Y139558D01*

-X451218Y139468D01*

-X451308Y139391D01*

-X451408Y139330D01*

-X451518Y139285D01*

-X451632Y139257D01*

-X451750Y139250D01*

-X453500D01*

-Y118750D01*

-X451750D01*

-X451632Y118743D01*

-X451518Y118715D01*

-X451408Y118670D01*

-X451308Y118609D01*

-X451218Y118532D01*

-X451141Y118442D01*

-X451080Y118342D01*

-X451035Y118232D01*

-X451007Y118118D01*

-X450998Y118000D01*

-X451007Y117882D01*

-X451035Y117768D01*

-X451080Y117658D01*

-X451141Y117558D01*

-X451218Y117468D01*

-X451308Y117391D01*

-X451408Y117330D01*

-X451518Y117285D01*

-X451632Y117257D01*

-X451750Y117250D01*

-X453500D01*

-Y110750D01*

-X451750D01*

-X451632Y110743D01*

-X451518Y110715D01*

-X451408Y110670D01*

-X451308Y110609D01*

-X451218Y110532D01*

-X451141Y110442D01*

-X451080Y110342D01*

-X451035Y110232D01*

-X451007Y110118D01*

-X450998Y110000D01*

-X451007Y109882D01*

-X451035Y109768D01*

-X451080Y109658D01*

-X451141Y109558D01*

-X451218Y109468D01*

-X451308Y109391D01*

-X451408Y109330D01*

-X451518Y109285D01*

-X451632Y109257D01*

-X451750Y109250D01*

-X453500D01*

-Y88750D01*

-X451750D01*

-X451632Y88743D01*

-X451518Y88715D01*

-X451408Y88670D01*

-X451308Y88609D01*

-X451218Y88532D01*

-X451141Y88442D01*

-X451080Y88342D01*

-X451035Y88232D01*

-X451007Y88118D01*

-X450998Y88000D01*

-X451007Y87882D01*

-X451035Y87768D01*

-X451080Y87658D01*

-X451141Y87558D01*

-X451218Y87468D01*

-X451308Y87391D01*

-X451408Y87330D01*

-X451518Y87285D01*

-X451632Y87257D01*

-X451750Y87250D01*

-X453500D01*

-Y80750D01*

-X451750D01*

-X451632Y80743D01*

-X451518Y80715D01*

-X451408Y80670D01*

-X451308Y80609D01*

-X451218Y80532D01*

-X451141Y80442D01*

-X451080Y80342D01*

-X451035Y80232D01*

-X451007Y80118D01*

-X450998Y80000D01*

-X451007Y79882D01*

-X451035Y79768D01*

-X451080Y79658D01*

-X451141Y79558D01*

-X451218Y79468D01*

-X451308Y79391D01*

-X451408Y79330D01*

-X451518Y79285D01*

-X451632Y79257D01*

-X451750Y79250D01*

-X453500D01*

-Y58750D01*

-X451750D01*

-X451632Y58743D01*

-X451518Y58715D01*

-X451408Y58670D01*

-X451308Y58609D01*

-X451218Y58532D01*

-X451141Y58442D01*

-X451080Y58342D01*

-X451035Y58232D01*

-X451007Y58118D01*

-X450998Y58000D01*

-X451007Y57882D01*

-X451035Y57768D01*

-X451080Y57658D01*

-X451141Y57558D01*

-X451218Y57468D01*

-X451308Y57391D01*

-X451408Y57330D01*

-X451518Y57285D01*

-X451632Y57257D01*

-X451750Y57250D01*

-X453500D01*

-Y50750D01*

-X451750D01*

-X451632Y50743D01*

-X451518Y50715D01*

-X451408Y50670D01*

-X451308Y50609D01*

-X451218Y50532D01*

-X451141Y50442D01*

-X451080Y50342D01*

-X451035Y50232D01*

-X451007Y50118D01*

-X450998Y50000D01*

-X451007Y49882D01*

-X451035Y49768D01*

-X451080Y49658D01*

-X451141Y49558D01*

-X451218Y49468D01*

-X451308Y49391D01*

-X451408Y49330D01*

-X451518Y49285D01*

-X451632Y49257D01*

-X451750Y49250D01*

-X453500D01*

-Y39000D01*

-G37*

-G36*

-X449500D02*X440446D01*

-Y54695D01*

-X440449Y54694D01*

-X440731Y54717D01*

-X441007Y54783D01*

-X441269Y54891D01*

-X441510Y55039D01*

-X441726Y55223D01*

-X441910Y55439D01*

-X442058Y55680D01*

-X442166Y55942D01*

-X442232Y56218D01*

-X442249Y56500D01*

-X442232Y56782D01*

-X442166Y57058D01*

-X442058Y57320D01*

-X441910Y57561D01*

-X441726Y57777D01*

-X441510Y57961D01*

-X441269Y58109D01*

-X441007Y58217D01*

-X440731Y58283D01*

-X440449Y58306D01*

-X440446Y58305D01*

-Y70000D01*

-X447441D01*

-X447773Y99532D01*

-X448092Y99728D01*

-X448427Y100014D01*

-X448713Y100349D01*

-X448944Y100725D01*

-X449112Y101132D01*

-X449215Y101561D01*

-X449241Y102000D01*

-X449215Y102439D01*

-X449112Y102868D01*

-X448944Y103275D01*

-X448713Y103651D01*

-X448427Y103986D01*

-X448092Y104272D01*

-X447828Y104434D01*

-X448441Y159000D01*

-X440446D01*

-Y170721D01*

-X440855Y171199D01*

-X441245Y171837D01*

-X441531Y172528D01*

-X441706Y173255D01*

-X441750Y174000D01*

-X441706Y174745D01*

-X441531Y175472D01*

-X441245Y176163D01*

-X440855Y176801D01*

-X440446Y177279D01*

-Y200721D01*

-X440855Y201199D01*

-X441245Y201837D01*

-X441531Y202528D01*

-X441706Y203255D01*

-X441750Y204000D01*

-X441706Y204745D01*

-X441531Y205472D01*

-X441245Y206163D01*

-X440855Y206801D01*

-X440446Y207279D01*

-Y230721D01*

-X440855Y231199D01*

-X441245Y231837D01*

-X441531Y232528D01*

-X441706Y233255D01*

-X441750Y234000D01*

-X441706Y234745D01*

-X441531Y235472D01*

-X441245Y236163D01*

-X440855Y236801D01*

-X440446Y237279D01*

-Y260721D01*

-X440855Y261199D01*

-X441245Y261837D01*

-X441531Y262528D01*

-X441706Y263255D01*

-X441750Y264000D01*

-X441706Y264745D01*

-X441531Y265472D01*

-X441245Y266163D01*

-X440855Y266801D01*

-X440446Y267279D01*

-Y290721D01*

-X440855Y291199D01*

-X441245Y291837D01*

-X441531Y292528D01*

-X441706Y293255D01*

-X441750Y294000D01*

-X441706Y294745D01*

-X441531Y295472D01*

-X441245Y296163D01*

-X440855Y296801D01*

-X440446Y297279D01*

-Y320721D01*

-X440855Y321199D01*

-X441245Y321837D01*

-X441531Y322528D01*

-X441706Y323255D01*

-X441750Y324000D01*

-X441706Y324745D01*

-X441531Y325472D01*

-X441245Y326163D01*

-X440855Y326801D01*

-X440446Y327279D01*

-Y350721D01*

-X440855Y351199D01*

-X441245Y351837D01*

-X441531Y352528D01*

-X441706Y353255D01*

-X441750Y354000D01*

-X441706Y354745D01*

-X441531Y355472D01*

-X441245Y356163D01*

-X440855Y356801D01*

-X440446Y357279D01*

-Y380721D01*

-X440855Y381199D01*

-X441245Y381837D01*

-X441531Y382528D01*

-X441706Y383255D01*

-X441750Y384000D01*

-X441706Y384745D01*

-X441531Y385472D01*

-X441245Y386163D01*

-X440855Y386801D01*

-X440446Y387279D01*

-Y397000D01*

-X449500D01*

-Y386502D01*

-X449382Y386493D01*

-X449268Y386465D01*

-X449158Y386420D01*

-X449058Y386359D01*

-X448968Y386282D01*

-X448891Y386192D01*

-X448830Y386092D01*

-X448785Y385982D01*

-X448757Y385868D01*

-X448750Y385750D01*

-Y382250D01*

-X448757Y382132D01*

-X448785Y382018D01*

-X448830Y381908D01*

-X448891Y381808D01*

-X448968Y381718D01*

-X449058Y381641D01*

-X449158Y381580D01*

-X449268Y381535D01*

-X449382Y381507D01*

-X449500Y381498D01*

-Y356502D01*

-X449382Y356493D01*

-X449268Y356465D01*

-X449158Y356420D01*

-X449058Y356359D01*

-X448968Y356282D01*

-X448891Y356192D01*

-X448830Y356092D01*

-X448785Y355982D01*

-X448757Y355868D01*

-X448750Y355750D01*

-Y352250D01*

-X448757Y352132D01*

-X448785Y352018D01*

-X448830Y351908D01*

-X448891Y351808D01*

-X448968Y351718D01*

-X449058Y351641D01*

-X449158Y351580D01*

-X449268Y351535D01*

-X449382Y351507D01*

-X449500Y351498D01*

-Y326502D01*

-X449382Y326493D01*

-X449268Y326465D01*

-X449158Y326420D01*

-X449058Y326359D01*

-X448968Y326282D01*

-X448891Y326192D01*

-X448830Y326092D01*

-X448785Y325982D01*

-X448757Y325868D01*

-X448750Y325750D01*

-Y322250D01*

-X448757Y322132D01*

-X448785Y322018D01*

-X448830Y321908D01*

-X448891Y321808D01*

-X448968Y321718D01*

-X449058Y321641D01*

-X449158Y321580D01*

-X449268Y321535D01*

-X449382Y321507D01*

-X449500Y321498D01*

-Y296502D01*

-X449382Y296493D01*

-X449268Y296465D01*

-X449158Y296420D01*

-X449058Y296359D01*

-X448968Y296282D01*

-X448891Y296192D01*

-X448830Y296092D01*

-X448785Y295982D01*

-X448757Y295868D01*

-X448750Y295750D01*

-Y292250D01*

-X448757Y292132D01*

-X448785Y292018D01*

-X448830Y291908D01*

-X448891Y291808D01*

-X448968Y291718D01*

-X449058Y291641D01*

-X449158Y291580D01*

-X449268Y291535D01*

-X449382Y291507D01*

-X449500Y291498D01*

-Y266502D01*

-X449382Y266493D01*

-X449268Y266465D01*

-X449158Y266420D01*

-X449058Y266359D01*

-X448968Y266282D01*

-X448891Y266192D01*

-X448830Y266092D01*

-X448785Y265982D01*

-X448757Y265868D01*

-X448750Y265750D01*

-Y262250D01*

-X448757Y262132D01*

-X448785Y262018D01*

-X448830Y261908D01*

-X448891Y261808D01*

-X448968Y261718D01*

-X449058Y261641D01*

-X449158Y261580D01*

-X449268Y261535D01*

-X449382Y261507D01*

-X449500Y261498D01*

-Y236502D01*

-X449382Y236493D01*

-X449268Y236465D01*

-X449158Y236420D01*

-X449058Y236359D01*

-X448968Y236282D01*

-X448891Y236192D01*

-X448830Y236092D01*

-X448785Y235982D01*

-X448757Y235868D01*

-X448750Y235750D01*

-Y232250D01*

-X448757Y232132D01*

-X448785Y232018D01*

-X448830Y231908D01*

-X448891Y231808D01*

-X448968Y231718D01*

-X449058Y231641D01*

-X449158Y231580D01*

-X449268Y231535D01*

-X449382Y231507D01*

-X449500Y231498D01*

-Y206502D01*

-X449382Y206493D01*

-X449268Y206465D01*

-X449158Y206420D01*

-X449058Y206359D01*

-X448968Y206282D01*

-X448891Y206192D01*

-X448830Y206092D01*

-X448785Y205982D01*

-X448757Y205868D01*

-X448750Y205750D01*

-Y202250D01*

-X448757Y202132D01*

-X448785Y202018D01*

-X448830Y201908D01*

-X448891Y201808D01*

-X448968Y201718D01*

-X449058Y201641D01*

-X449158Y201580D01*

-X449268Y201535D01*

-X449382Y201507D01*

-X449500Y201498D01*

-Y176502D01*

-X449382Y176493D01*

-X449268Y176465D01*

-X449158Y176420D01*

-X449058Y176359D01*

-X448968Y176282D01*

-X448891Y176192D01*

-X448830Y176092D01*

-X448785Y175982D01*

-X448757Y175868D01*

-X448750Y175750D01*

-Y172250D01*

-X448757Y172132D01*

-X448785Y172018D01*

-X448830Y171908D01*

-X448891Y171808D01*

-X448968Y171718D01*

-X449058Y171641D01*

-X449158Y171580D01*

-X449268Y171535D01*

-X449382Y171507D01*

-X449500Y171498D01*

-Y146502D01*

-X449382Y146493D01*

-X449268Y146465D01*

-X449158Y146420D01*

-X449058Y146359D01*

-X448968Y146282D01*

-X448891Y146192D01*

-X448830Y146092D01*

-X448785Y145982D01*

-X448757Y145868D01*

-X448750Y145750D01*

-Y142250D01*

-X448757Y142132D01*

-X448785Y142018D01*

-X448830Y141908D01*

-X448891Y141808D01*

-X448968Y141718D01*

-X449058Y141641D01*

-X449158Y141580D01*

-X449268Y141535D01*

-X449382Y141507D01*

-X449500Y141498D01*

-Y116502D01*

-X449382Y116493D01*

-X449268Y116465D01*

-X449158Y116420D01*

-X449058Y116359D01*

-X448968Y116282D01*

-X448891Y116192D01*

-X448830Y116092D01*

-X448785Y115982D01*

-X448757Y115868D01*

-X448750Y115750D01*

-Y112250D01*

-X448757Y112132D01*

-X448785Y112018D01*

-X448830Y111908D01*

-X448891Y111808D01*

-X448968Y111718D01*

-X449058Y111641D01*

-X449158Y111580D01*

-X449268Y111535D01*

-X449382Y111507D01*

-X449500Y111498D01*

-Y86502D01*

-X449382Y86493D01*

-X449268Y86465D01*

-X449158Y86420D01*

-X449058Y86359D01*

-X448968Y86282D01*

-X448891Y86192D01*

-X448830Y86092D01*

-X448785Y85982D01*

-X448757Y85868D01*

-X448750Y85750D01*

-Y82250D01*

-X448757Y82132D01*

-X448785Y82018D01*

-X448830Y81908D01*

-X448891Y81808D01*

-X448968Y81718D01*

-X449058Y81641D01*

-X449158Y81580D01*

-X449268Y81535D01*

-X449382Y81507D01*

-X449500Y81498D01*

-Y56502D01*

-X449382Y56493D01*

-X449268Y56465D01*

-X449158Y56420D01*

-X449058Y56359D01*

-X448968Y56282D01*

-X448891Y56192D01*

-X448830Y56092D01*

-X448785Y55982D01*

-X448757Y55868D01*

-X448750Y55750D01*

-Y52250D01*

-X448757Y52132D01*

-X448785Y52018D01*

-X448830Y51908D01*

-X448891Y51808D01*

-X448968Y51718D01*

-X449058Y51641D01*

-X449158Y51580D01*

-X449268Y51535D01*

-X449382Y51507D01*

-X449500Y51498D01*

-Y39000D01*

-G37*

-G36*

-X440446Y387279D02*X440369Y387369D01*

-X439801Y387855D01*

-X439163Y388245D01*

-X438472Y388531D01*

-X437745Y388706D01*

-X437000Y388765D01*

-X436255Y388706D01*

-X435528Y388531D01*

-X434837Y388245D01*

-X434446Y388006D01*

-Y397000D01*

-X440446D01*

-Y387279D01*

-G37*

-G36*

-Y357279D02*X440369Y357369D01*

-X439801Y357855D01*

-X439163Y358245D01*

-X438472Y358531D01*

-X437745Y358706D01*

-X437000Y358765D01*

-X436255Y358706D01*

-X435528Y358531D01*

-X434837Y358245D01*

-X434446Y358006D01*

-Y379994D01*

-X434837Y379755D01*

-X435528Y379469D01*

-X436255Y379294D01*

-X437000Y379235D01*

-X437745Y379294D01*

-X438472Y379469D01*

-X439163Y379755D01*

-X439801Y380145D01*

-X440369Y380631D01*

-X440446Y380721D01*

-Y357279D01*

-G37*

-G36*

-Y327279D02*X440369Y327369D01*

-X439801Y327855D01*

-X439163Y328245D01*

-X438472Y328531D01*

-X437745Y328706D01*

-X437000Y328765D01*

-X436255Y328706D01*

-X435528Y328531D01*

-X434837Y328245D01*

-X434446Y328006D01*

-Y349994D01*

-X434837Y349755D01*

-X435528Y349469D01*

-X436255Y349294D01*

-X437000Y349235D01*

-X437745Y349294D01*

-X438472Y349469D01*

-X439163Y349755D01*

-X439801Y350145D01*

-X440369Y350631D01*

-X440446Y350721D01*

-Y327279D01*

-G37*

-G36*

-Y297279D02*X440369Y297369D01*

-X439801Y297855D01*

-X439163Y298245D01*

-X438472Y298531D01*

-X437745Y298706D01*

-X437000Y298765D01*

-X436255Y298706D01*

-X435528Y298531D01*

-X434837Y298245D01*

-X434446Y298006D01*

-Y319994D01*

-X434837Y319755D01*

-X435528Y319469D01*

-X436255Y319294D01*

-X437000Y319235D01*

-X437745Y319294D01*

-X438472Y319469D01*

-X439163Y319755D01*

-X439801Y320145D01*

-X440369Y320631D01*

-X440446Y320721D01*

-Y297279D01*

-G37*

-G36*

-Y267279D02*X440369Y267369D01*

-X439801Y267855D01*

-X439163Y268245D01*

-X438472Y268531D01*

-X437745Y268706D01*

-X437000Y268765D01*

-X436255Y268706D01*

-X435528Y268531D01*

-X434837Y268245D01*

-X434446Y268006D01*

-Y289994D01*

-X434837Y289755D01*

-X435528Y289469D01*

-X436255Y289294D01*

-X437000Y289235D01*

-X437745Y289294D01*

-X438472Y289469D01*

-X439163Y289755D01*

-X439801Y290145D01*

-X440369Y290631D01*

-X440446Y290721D01*

-Y267279D01*

-G37*

-G36*

-Y237279D02*X440369Y237369D01*

-X439801Y237855D01*

-X439163Y238245D01*

-X438472Y238531D01*

-X437745Y238706D01*

-X437000Y238765D01*

-X436255Y238706D01*

-X435528Y238531D01*

-X434837Y238245D01*

-X434446Y238006D01*

-Y259994D01*

-X434837Y259755D01*

-X435528Y259469D01*

-X436255Y259294D01*

-X437000Y259235D01*

-X437745Y259294D01*

-X438472Y259469D01*

-X439163Y259755D01*

-X439801Y260145D01*

-X440369Y260631D01*

-X440446Y260721D01*

-Y237279D01*

-G37*

-G36*

-Y207279D02*X440369Y207369D01*

-X439801Y207855D01*

-X439163Y208245D01*

-X438472Y208531D01*

-X437745Y208706D01*

-X437000Y208765D01*

-X436255Y208706D01*

-X435528Y208531D01*

-X434837Y208245D01*

-X434446Y208006D01*

-Y229994D01*

-X434837Y229755D01*

-X435528Y229469D01*

-X436255Y229294D01*

-X437000Y229235D01*

-X437745Y229294D01*

-X438472Y229469D01*

-X439163Y229755D01*

-X439801Y230145D01*

-X440369Y230631D01*

-X440446Y230721D01*

-Y207279D01*

-G37*

-G36*

-Y177279D02*X440369Y177369D01*

-X439801Y177855D01*

-X439163Y178245D01*

-X438472Y178531D01*

-X437745Y178706D01*

-X437000Y178765D01*

-X436255Y178706D01*

-X435528Y178531D01*

-X434837Y178245D01*

-X434446Y178006D01*

-Y199994D01*

-X434837Y199755D01*

-X435528Y199469D01*

-X436255Y199294D01*

-X437000Y199235D01*

-X437745Y199294D01*

-X438472Y199469D01*

-X439163Y199755D01*

-X439801Y200145D01*

-X440369Y200631D01*

-X440446Y200721D01*

-Y177279D01*

-G37*

-G36*

-Y159000D02*X434446D01*

-Y169994D01*

-X434837Y169755D01*

-X435528Y169469D01*

-X436255Y169294D01*

-X437000Y169235D01*

-X437745Y169294D01*

-X438472Y169469D01*

-X439163Y169755D01*

-X439801Y170145D01*

-X440369Y170631D01*

-X440446Y170721D01*

-Y159000D01*

-G37*

-G36*

-Y39000D02*X434446D01*

-Y54695D01*

-X434449Y54694D01*

-X434731Y54717D01*

-X435007Y54783D01*

-X435269Y54891D01*

-X435510Y55039D01*

-X435726Y55223D01*

-X435910Y55439D01*

-X436058Y55680D01*

-X436166Y55942D01*

-X436232Y56218D01*

-X436249Y56500D01*

-X436232Y56782D01*

-X436166Y57058D01*

-X436058Y57320D01*

-X435910Y57561D01*

-X435726Y57777D01*

-X435510Y57961D01*

-X435269Y58109D01*

-X435007Y58217D01*

-X434731Y58283D01*

-X434449Y58306D01*

-X434446Y58305D01*

-Y70000D01*

-X440446D01*

-Y58305D01*

-X440167Y58283D01*

-X439891Y58217D01*

-X439629Y58109D01*

-X439388Y57961D01*

-X439172Y57777D01*

-X438988Y57561D01*

-X438840Y57320D01*

-X438732Y57058D01*

-X438666Y56782D01*

-X438643Y56500D01*

-X438666Y56218D01*

-X438732Y55942D01*

-X438840Y55680D01*

-X438988Y55439D01*

-X439172Y55223D01*

-X439388Y55039D01*

-X439629Y54891D01*

-X439891Y54783D01*

-X440167Y54717D01*

-X440446Y54695D01*

-Y39000D01*

-G37*

-G36*

-X434446Y159000D02*X426993D01*

-Y169236D01*

-X427000Y169235D01*

-X427745Y169294D01*

-X428472Y169469D01*

-X429163Y169755D01*

-X429801Y170145D01*

-X430369Y170631D01*

-X430855Y171199D01*

-X431245Y171837D01*

-X431531Y172528D01*

-X431706Y173255D01*

-X431750Y174000D01*

-X431706Y174745D01*

-X431531Y175472D01*

-X431245Y176163D01*

-X430855Y176801D01*

-X430369Y177369D01*

-X429801Y177855D01*

-X429163Y178245D01*

-X428472Y178531D01*

-X427745Y178706D01*

-X427000Y178765D01*

-X426993Y178764D01*

-Y199236D01*

-X427000Y199235D01*

-X427745Y199294D01*

-X428472Y199469D01*

-X429163Y199755D01*

-X429801Y200145D01*

-X430369Y200631D01*

-X430855Y201199D01*

-X431245Y201837D01*

-X431531Y202528D01*

-X431706Y203255D01*

-X431750Y204000D01*

-X431706Y204745D01*

-X431531Y205472D01*

-X431245Y206163D01*

-X430855Y206801D01*

-X430369Y207369D01*

-X429801Y207855D01*

-X429163Y208245D01*

-X428472Y208531D01*

-X427745Y208706D01*

-X427000Y208765D01*

-X426993Y208764D01*

-Y229236D01*

-X427000Y229235D01*

-X427745Y229294D01*

-X428472Y229469D01*

-X429163Y229755D01*

-X429801Y230145D01*

-X430369Y230631D01*

-X430855Y231199D01*

-X431245Y231837D01*

-X431531Y232528D01*

-X431706Y233255D01*

-X431750Y234000D01*

-X431706Y234745D01*

-X431531Y235472D01*

-X431245Y236163D01*

-X430855Y236801D01*

-X430369Y237369D01*

-X429801Y237855D01*

-X429163Y238245D01*

-X428472Y238531D01*

-X427745Y238706D01*

-X427000Y238765D01*

-X426993Y238764D01*

-Y259236D01*

-X427000Y259235D01*

-X427745Y259294D01*

-X428472Y259469D01*

-X429163Y259755D01*

-X429801Y260145D01*

-X430369Y260631D01*

-X430855Y261199D01*

-X431245Y261837D01*

-X431531Y262528D01*

-X431706Y263255D01*

-X431750Y264000D01*

-X431706Y264745D01*

-X431531Y265472D01*

-X431245Y266163D01*

-X430855Y266801D01*

-X430369Y267369D01*

-X429801Y267855D01*

-X429163Y268245D01*

-X428472Y268531D01*

-X427745Y268706D01*

-X427000Y268765D01*

-X426993Y268764D01*

-Y289236D01*

-X427000Y289235D01*

-X427745Y289294D01*

-X428472Y289469D01*

-X429163Y289755D01*

-X429801Y290145D01*

-X430369Y290631D01*

-X430855Y291199D01*

-X431245Y291837D01*

-X431531Y292528D01*

-X431706Y293255D01*

-X431750Y294000D01*

-X431706Y294745D01*

-X431531Y295472D01*

-X431245Y296163D01*

-X430855Y296801D01*

-X430369Y297369D01*

-X429801Y297855D01*

-X429163Y298245D01*

-X428472Y298531D01*

-X427745Y298706D01*

-X427000Y298765D01*

-X426993Y298764D01*

-Y319236D01*

-X427000Y319235D01*

-X427745Y319294D01*

-X428472Y319469D01*

-X429163Y319755D01*

-X429801Y320145D01*

-X430369Y320631D01*

-X430855Y321199D01*

-X431245Y321837D01*

-X431531Y322528D01*

-X431706Y323255D01*

-X431750Y324000D01*

-X431706Y324745D01*

-X431531Y325472D01*

-X431245Y326163D01*

-X430855Y326801D01*

-X430369Y327369D01*

-X429801Y327855D01*

-X429163Y328245D01*

-X428472Y328531D01*

-X427745Y328706D01*

-X427000Y328765D01*

-X426993Y328764D01*

-Y349236D01*

-X427000Y349235D01*

-X427745Y349294D01*

-X428472Y349469D01*

-X429163Y349755D01*

-X429801Y350145D01*

-X430369Y350631D01*

-X430855Y351199D01*

-X431245Y351837D01*

-X431531Y352528D01*

-X431706Y353255D01*

-X431750Y354000D01*

-X431706Y354745D01*

-X431531Y355472D01*

-X431245Y356163D01*

-X430855Y356801D01*

-X430369Y357369D01*

-X429801Y357855D01*

-X429163Y358245D01*

-X428472Y358531D01*

-X427745Y358706D01*

-X427000Y358765D01*

-X426993Y358764D01*

-Y379236D01*

-X427000Y379235D01*

-X427745Y379294D01*

-X428472Y379469D01*

-X429163Y379755D01*

-X429801Y380145D01*

-X430369Y380631D01*

-X430855Y381199D01*

-X431245Y381837D01*

-X431531Y382528D01*

-X431706Y383255D01*

-X431750Y384000D01*

-X431706Y384745D01*

-X431531Y385472D01*

-X431245Y386163D01*

-X430855Y386801D01*

-X430369Y387369D01*

-X429801Y387855D01*

-X429163Y388245D01*

-X428472Y388531D01*

-X427745Y388706D01*

-X427000Y388765D01*

-X426993Y388764D01*

-Y397000D01*

-X434446D01*

-Y388006D01*

-X434199Y387855D01*

-X433631Y387369D01*

-X433145Y386801D01*

-X432755Y386163D01*

-X432469Y385472D01*

-X432294Y384745D01*

-X432235Y384000D01*

-X432294Y383255D01*

-X432469Y382528D01*

-X432755Y381837D01*

-X433145Y381199D01*

-X433631Y380631D01*

-X434199Y380145D01*

-X434446Y379994D01*

-Y358006D01*

-X434199Y357855D01*

-X433631Y357369D01*

-X433145Y356801D01*

-X432755Y356163D01*

-X432469Y355472D01*

-X432294Y354745D01*

-X432235Y354000D01*

-X432294Y353255D01*

-X432469Y352528D01*

-X432755Y351837D01*

-X433145Y351199D01*

-X433631Y350631D01*

-X434199Y350145D01*

-X434446Y349994D01*

-Y328006D01*

-X434199Y327855D01*

-X433631Y327369D01*

-X433145Y326801D01*

-X432755Y326163D01*

-X432469Y325472D01*

-X432294Y324745D01*

-X432235Y324000D01*

-X432294Y323255D01*

-X432469Y322528D01*

-X432755Y321837D01*

-X433145Y321199D01*

-X433631Y320631D01*

-X434199Y320145D01*

-X434446Y319994D01*

-Y298006D01*

-X434199Y297855D01*

-X433631Y297369D01*

-X433145Y296801D01*

-X432755Y296163D01*

-X432469Y295472D01*

-X432294Y294745D01*

-X432235Y294000D01*

-X432294Y293255D01*

-X432469Y292528D01*

-X432755Y291837D01*

-X433145Y291199D01*

-X433631Y290631D01*

-X434199Y290145D01*

-X434446Y289994D01*

-Y268006D01*

-X434199Y267855D01*

-X433631Y267369D01*

-X433145Y266801D01*

-X432755Y266163D01*

-X432469Y265472D01*

-X432294Y264745D01*

-X432235Y264000D01*

-X432294Y263255D01*

-X432469Y262528D01*

-X432755Y261837D01*

-X433145Y261199D01*

-X433631Y260631D01*

-X434199Y260145D01*

-X434446Y259994D01*

-Y238006D01*

-X434199Y237855D01*

-X433631Y237369D01*

-X433145Y236801D01*

-X432755Y236163D01*

-X432469Y235472D01*

-X432294Y234745D01*

-X432235Y234000D01*

-X432294Y233255D01*

-X432469Y232528D01*

-X432755Y231837D01*

-X433145Y231199D01*

-X433631Y230631D01*

-X434199Y230145D01*

-X434446Y229994D01*

-Y208006D01*

-X434199Y207855D01*

-X433631Y207369D01*

-X433145Y206801D01*

-X432755Y206163D01*

-X432469Y205472D01*

-X432294Y204745D01*

-X432235Y204000D01*

-X432294Y203255D01*

-X432469Y202528D01*

-X432755Y201837D01*

-X433145Y201199D01*

-X433631Y200631D01*

-X434199Y200145D01*

-X434446Y199994D01*

-Y178006D01*

-X434199Y177855D01*

-X433631Y177369D01*

-X433145Y176801D01*

-X432755Y176163D01*

-X432469Y175472D01*

-X432294Y174745D01*

-X432235Y174000D01*

-X432294Y173255D01*

-X432469Y172528D01*

-X432755Y171837D01*

-X433145Y171199D01*

-X433631Y170631D01*

-X434199Y170145D01*

-X434446Y169994D01*

-Y159000D01*

-G37*

-G36*

-X426993D02*X416993D01*

-Y169236D01*

-X417000Y169235D01*

-X417745Y169294D01*

-X418472Y169469D01*

-X419163Y169755D01*

-X419801Y170145D01*

-X420369Y170631D01*

-X420855Y171199D01*

-X421245Y171837D01*

-X421531Y172528D01*

-X421706Y173255D01*

-X421750Y174000D01*

-X421706Y174745D01*

-X421531Y175472D01*

-X421245Y176163D01*

-X420855Y176801D01*

-X420369Y177369D01*

-X419801Y177855D01*

-X419163Y178245D01*

-X418472Y178531D01*

-X417745Y178706D01*

-X417000Y178765D01*

-X416993Y178764D01*

-Y199236D01*

-X417000Y199235D01*

-X417745Y199294D01*

-X418472Y199469D01*

-X419163Y199755D01*

-X419801Y200145D01*

-X420369Y200631D01*

-X420855Y201199D01*

-X421245Y201837D01*

-X421531Y202528D01*

-X421706Y203255D01*

-X421750Y204000D01*

-X421706Y204745D01*

-X421531Y205472D01*

-X421245Y206163D01*

-X420855Y206801D01*

-X420369Y207369D01*

-X419801Y207855D01*

-X419163Y208245D01*

-X418472Y208531D01*

-X417745Y208706D01*

-X417000Y208765D01*

-X416993Y208764D01*

-Y229236D01*

-X417000Y229235D01*

-X417745Y229294D01*

-X418472Y229469D01*

-X419163Y229755D01*

-X419801Y230145D01*

-X420369Y230631D01*

-X420855Y231199D01*

-X421245Y231837D01*

-X421531Y232528D01*

-X421706Y233255D01*

-X421750Y234000D01*

-X421706Y234745D01*

-X421531Y235472D01*

-X421245Y236163D01*

-X420855Y236801D01*

-X420369Y237369D01*

-X419801Y237855D01*

-X419163Y238245D01*

-X418472Y238531D01*

-X417745Y238706D01*

-X417000Y238765D01*

-X416993Y238764D01*

-Y259236D01*

-X417000Y259235D01*

-X417745Y259294D01*

-X418472Y259469D01*

-X419163Y259755D01*

-X419801Y260145D01*

-X420369Y260631D01*

-X420855Y261199D01*

-X421245Y261837D01*

-X421531Y262528D01*

-X421706Y263255D01*

-X421750Y264000D01*

-X421706Y264745D01*

-X421531Y265472D01*

-X421245Y266163D01*

-X420855Y266801D01*

-X420369Y267369D01*

-X419801Y267855D01*

-X419163Y268245D01*

-X418472Y268531D01*

-X417745Y268706D01*

-X417000Y268765D01*

-X416993Y268764D01*

-Y289236D01*

-X417000Y289235D01*

-X417745Y289294D01*

-X418472Y289469D01*

-X419163Y289755D01*

-X419801Y290145D01*

-X420369Y290631D01*

-X420855Y291199D01*

-X421245Y291837D01*

-X421531Y292528D01*

-X421706Y293255D01*

-X421750Y294000D01*

-X421706Y294745D01*

-X421531Y295472D01*

-X421245Y296163D01*

-X420855Y296801D01*

-X420369Y297369D01*

-X419801Y297855D01*

-X419163Y298245D01*

-X418472Y298531D01*

-X417745Y298706D01*

-X417000Y298765D01*

-X416993Y298764D01*

-Y319236D01*

-X417000Y319235D01*

-X417745Y319294D01*

-X418472Y319469D01*

-X419163Y319755D01*

-X419801Y320145D01*

-X420369Y320631D01*

-X420855Y321199D01*

-X421245Y321837D01*

-X421531Y322528D01*

-X421706Y323255D01*

-X421750Y324000D01*

-X421706Y324745D01*

-X421531Y325472D01*

-X421245Y326163D01*

-X420855Y326801D01*

-X420369Y327369D01*

-X419801Y327855D01*

-X419163Y328245D01*

-X418472Y328531D01*

-X417745Y328706D01*

-X417000Y328765D01*

-X416993Y328764D01*

-Y349236D01*

-X417000Y349235D01*

-X417745Y349294D01*

-X418472Y349469D01*

-X419163Y349755D01*

-X419801Y350145D01*

-X420369Y350631D01*

-X420855Y351199D01*

-X421245Y351837D01*

-X421531Y352528D01*

-X421706Y353255D01*

-X421750Y354000D01*

-X421706Y354745D01*

-X421531Y355472D01*

-X421245Y356163D01*

-X420855Y356801D01*

-X420369Y357369D01*

-X419801Y357855D01*

-X419163Y358245D01*

-X418472Y358531D01*

-X417745Y358706D01*

-X417000Y358765D01*

-X416993Y358764D01*

-Y379236D01*

-X417000Y379235D01*

-X417745Y379294D01*

-X418472Y379469D01*

-X419163Y379755D01*

-X419801Y380145D01*

-X420369Y380631D01*

-X420855Y381199D01*

-X421245Y381837D01*

-X421531Y382528D01*

-X421706Y383255D01*

-X421750Y384000D01*

-X421706Y384745D01*

-X421531Y385472D01*

-X421245Y386163D01*

-X420855Y386801D01*

-X420369Y387369D01*

-X419801Y387855D01*

-X419163Y388245D01*

-X418472Y388531D01*

-X417745Y388706D01*

-X417000Y388765D01*

-X416993Y388764D01*

-Y397000D01*

-X426993D01*

-Y388764D01*

-X426255Y388706D01*

-X425528Y388531D01*

-X424837Y388245D01*

-X424199Y387855D01*

-X423631Y387369D01*

-X423145Y386801D01*

-X422755Y386163D01*

-X422469Y385472D01*

-X422294Y384745D01*

-X422235Y384000D01*

-X422294Y383255D01*

-X422469Y382528D01*

-X422755Y381837D01*

-X423145Y381199D01*

-X423631Y380631D01*

-X424199Y380145D01*

-X424837Y379755D01*

-X425528Y379469D01*

-X426255Y379294D01*

-X426993Y379236D01*

-Y358764D01*

-X426255Y358706D01*

-X425528Y358531D01*

-X424837Y358245D01*

-X424199Y357855D01*

-X423631Y357369D01*

-X423145Y356801D01*

-X422755Y356163D01*

-X422469Y355472D01*

-X422294Y354745D01*

-X422235Y354000D01*

-X422294Y353255D01*

-X422469Y352528D01*

-X422755Y351837D01*

-X423145Y351199D01*

-X423631Y350631D01*

-X424199Y350145D01*

-X424837Y349755D01*

-X425528Y349469D01*

-X426255Y349294D01*

-X426993Y349236D01*

-Y328764D01*

-X426255Y328706D01*

-X425528Y328531D01*

-X424837Y328245D01*

-X424199Y327855D01*

-X423631Y327369D01*

-X423145Y326801D01*

-X422755Y326163D01*

-X422469Y325472D01*

-X422294Y324745D01*

-X422235Y324000D01*

-X422294Y323255D01*

-X422469Y322528D01*

-X422755Y321837D01*

-X423145Y321199D01*

-X423631Y320631D01*

-X424199Y320145D01*

-X424837Y319755D01*

-X425528Y319469D01*

-X426255Y319294D01*

-X426993Y319236D01*

-Y298764D01*

-X426255Y298706D01*

-X425528Y298531D01*

-X424837Y298245D01*

-X424199Y297855D01*

-X423631Y297369D01*

-X423145Y296801D01*

-X422755Y296163D01*

-X422469Y295472D01*

-X422294Y294745D01*

-X422235Y294000D01*

-X422294Y293255D01*

-X422469Y292528D01*

-X422755Y291837D01*

-X423145Y291199D01*

-X423631Y290631D01*

-X424199Y290145D01*

-X424837Y289755D01*

-X425528Y289469D01*

-X426255Y289294D01*

-X426993Y289236D01*

-Y268764D01*

-X426255Y268706D01*

-X425528Y268531D01*

-X424837Y268245D01*

-X424199Y267855D01*

-X423631Y267369D01*

-X423145Y266801D01*

-X422755Y266163D01*

-X422469Y265472D01*

-X422294Y264745D01*

-X422235Y264000D01*

-X422294Y263255D01*

-X422469Y262528D01*

-X422755Y261837D01*

-X423145Y261199D01*

-X423631Y260631D01*

-X424199Y260145D01*

-X424837Y259755D01*

-X425528Y259469D01*

-X426255Y259294D01*

-X426993Y259236D01*

-Y238764D01*

-X426255Y238706D01*

-X425528Y238531D01*

-X424837Y238245D01*

-X424199Y237855D01*

-X423631Y237369D01*

-X423145Y236801D01*

-X422755Y236163D01*

-X422469Y235472D01*

-X422294Y234745D01*

-X422235Y234000D01*

-X422294Y233255D01*

-X422469Y232528D01*

-X422755Y231837D01*

-X423145Y231199D01*

-X423631Y230631D01*

-X424199Y230145D01*

-X424837Y229755D01*

-X425528Y229469D01*

-X426255Y229294D01*

-X426993Y229236D01*

-Y208764D01*

-X426255Y208706D01*

-X425528Y208531D01*

-X424837Y208245D01*

-X424199Y207855D01*

-X423631Y207369D01*

-X423145Y206801D01*

-X422755Y206163D01*

-X422469Y205472D01*

-X422294Y204745D01*

-X422235Y204000D01*

-X422294Y203255D01*

-X422469Y202528D01*

-X422755Y201837D01*

-X423145Y201199D01*

-X423631Y200631D01*

-X424199Y200145D01*

-X424837Y199755D01*

-X425528Y199469D01*

-X426255Y199294D01*

-X426993Y199236D01*

-Y178764D01*

-X426255Y178706D01*

-X425528Y178531D01*

-X424837Y178245D01*

-X424199Y177855D01*

-X423631Y177369D01*

-X423145Y176801D01*

-X422755Y176163D01*

-X422469Y175472D01*

-X422294Y174745D01*

-X422235Y174000D01*

-X422294Y173255D01*

-X422469Y172528D01*

-X422755Y171837D01*

-X423145Y171199D01*

-X423631Y170631D01*

-X424199Y170145D01*

-X424837Y169755D01*

-X425528Y169469D01*

-X426255Y169294D01*

-X426993Y169236D01*

-Y159000D01*

-G37*

-G36*

-X416993D02*X411000D01*

-Y171498D01*

-X411118Y171507D01*

-X411232Y171535D01*

-X411342Y171580D01*

-X411442Y171641D01*

-X411532Y171718D01*

-X411609Y171808D01*

-X411670Y171908D01*

-X411715Y172018D01*

-X411743Y172132D01*

-X411750Y172250D01*

-Y175750D01*

-X411743Y175868D01*

-X411715Y175982D01*

-X411670Y176092D01*

-X411609Y176192D01*

-X411532Y176282D01*

-X411442Y176359D01*

-X411342Y176420D01*

-X411232Y176465D01*

-X411118Y176493D01*

-X411000Y176502D01*

-Y201498D01*

-X411118Y201507D01*

-X411232Y201535D01*

-X411342Y201580D01*

-X411442Y201641D01*

-X411532Y201718D01*

-X411609Y201808D01*

-X411670Y201908D01*

-X411715Y202018D01*

-X411743Y202132D01*

-X411750Y202250D01*

-Y205750D01*

-X411743Y205868D01*

-X411715Y205982D01*

-X411670Y206092D01*

-X411609Y206192D01*

-X411532Y206282D01*

-X411442Y206359D01*

-X411342Y206420D01*

-X411232Y206465D01*

-X411118Y206493D01*

-X411000Y206502D01*

-Y231498D01*

-X411118Y231507D01*

-X411232Y231535D01*

-X411342Y231580D01*

-X411442Y231641D01*

-X411532Y231718D01*

-X411609Y231808D01*

-X411670Y231908D01*

-X411715Y232018D01*

-X411743Y232132D01*

-X411750Y232250D01*

-Y235750D01*

-X411743Y235868D01*

-X411715Y235982D01*

-X411670Y236092D01*

-X411609Y236192D01*

-X411532Y236282D01*

-X411442Y236359D01*

-X411342Y236420D01*

-X411232Y236465D01*

-X411118Y236493D01*

-X411000Y236502D01*

-Y261498D01*

-X411118Y261507D01*

-X411232Y261535D01*

-X411342Y261580D01*

-X411442Y261641D01*

-X411532Y261718D01*

-X411609Y261808D01*

-X411670Y261908D01*

-X411715Y262018D01*

-X411743Y262132D01*

-X411750Y262250D01*

-Y265750D01*

-X411743Y265868D01*

-X411715Y265982D01*

-X411670Y266092D01*

-X411609Y266192D01*

-X411532Y266282D01*

-X411442Y266359D01*

-X411342Y266420D01*

-X411232Y266465D01*

-X411118Y266493D01*

-X411000Y266502D01*

-Y291498D01*

-X411118Y291507D01*

-X411232Y291535D01*

-X411342Y291580D01*

-X411442Y291641D01*

-X411532Y291718D01*

-X411609Y291808D01*

-X411670Y291908D01*

-X411715Y292018D01*

-X411743Y292132D01*

-X411750Y292250D01*

-Y295750D01*

-X411743Y295868D01*

-X411715Y295982D01*

-X411670Y296092D01*

-X411609Y296192D01*

-X411532Y296282D01*

-X411442Y296359D01*

-X411342Y296420D01*

-X411232Y296465D01*

-X411118Y296493D01*

-X411000Y296502D01*

-Y321498D01*

-X411118Y321507D01*

-X411232Y321535D01*

-X411342Y321580D01*

-X411442Y321641D01*

-X411532Y321718D01*

-X411609Y321808D01*

-X411670Y321908D01*

-X411715Y322018D01*

-X411743Y322132D01*

-X411750Y322250D01*

-Y325750D01*

-X411743Y325868D01*

-X411715Y325982D01*

-X411670Y326092D01*

-X411609Y326192D01*

-X411532Y326282D01*

-X411442Y326359D01*

-X411342Y326420D01*

-X411232Y326465D01*

-X411118Y326493D01*

-X411000Y326502D01*

-Y351498D01*

-X411118Y351507D01*

-X411232Y351535D01*

-X411342Y351580D01*

-X411442Y351641D01*

-X411532Y351718D01*

-X411609Y351808D01*

-X411670Y351908D01*

-X411715Y352018D01*

-X411743Y352132D01*

-X411750Y352250D01*

-Y355750D01*

-X411743Y355868D01*

-X411715Y355982D01*

-X411670Y356092D01*

-X411609Y356192D01*

-X411532Y356282D01*

-X411442Y356359D01*

-X411342Y356420D01*

-X411232Y356465D01*

-X411118Y356493D01*

-X411000Y356502D01*

-Y381498D01*

-X411118Y381507D01*

-X411232Y381535D01*

-X411342Y381580D01*

-X411442Y381641D01*

-X411532Y381718D01*

-X411609Y381808D01*

-X411670Y381908D01*

-X411715Y382018D01*

-X411743Y382132D01*

-X411750Y382250D01*

-Y385750D01*

-X411743Y385868D01*

-X411715Y385982D01*

-X411670Y386092D01*

-X411609Y386192D01*

-X411532Y386282D01*

-X411442Y386359D01*

-X411342Y386420D01*

-X411232Y386465D01*

-X411118Y386493D01*

-X411000Y386502D01*

-Y397000D01*

-X416993D01*

-Y388764D01*

-X416255Y388706D01*

-X415528Y388531D01*

-X414837Y388245D01*

-X414199Y387855D01*

-X413631Y387369D01*

-X413145Y386801D01*

-X412755Y386163D01*

-X412469Y385472D01*

-X412294Y384745D01*

-X412235Y384000D01*

-X412294Y383255D01*

-X412469Y382528D01*

-X412755Y381837D01*

-X413145Y381199D01*

-X413631Y380631D01*

-X414199Y380145D01*

-X414837Y379755D01*

-X415528Y379469D01*

-X416255Y379294D01*

-X416993Y379236D01*

-Y358764D01*

-X416255Y358706D01*

-X415528Y358531D01*

-X414837Y358245D01*

-X414199Y357855D01*

-X413631Y357369D01*

-X413145Y356801D01*

-X412755Y356163D01*

-X412469Y355472D01*

-X412294Y354745D01*

-X412235Y354000D01*

-X412294Y353255D01*

-X412469Y352528D01*

-X412755Y351837D01*

-X413145Y351199D01*

-X413631Y350631D01*

-X414199Y350145D01*

-X414837Y349755D01*

-X415528Y349469D01*

-X416255Y349294D01*

-X416993Y349236D01*

-Y328764D01*

-X416255Y328706D01*

-X415528Y328531D01*

-X414837Y328245D01*

-X414199Y327855D01*

-X413631Y327369D01*

-X413145Y326801D01*

-X412755Y326163D01*

-X412469Y325472D01*

-X412294Y324745D01*

-X412235Y324000D01*

-X412294Y323255D01*

-X412469Y322528D01*

-X412755Y321837D01*

-X413145Y321199D01*

-X413631Y320631D01*

-X414199Y320145D01*

-X414837Y319755D01*

-X415528Y319469D01*

-X416255Y319294D01*

-X416993Y319236D01*

-Y298764D01*

-X416255Y298706D01*

-X415528Y298531D01*

-X414837Y298245D01*

-X414199Y297855D01*

-X413631Y297369D01*

-X413145Y296801D01*

-X412755Y296163D01*

-X412469Y295472D01*

-X412294Y294745D01*

-X412235Y294000D01*

-X412294Y293255D01*

-X412469Y292528D01*

-X412755Y291837D01*

-X413145Y291199D01*

-X413631Y290631D01*

-X414199Y290145D01*

-X414837Y289755D01*

-X415528Y289469D01*

-X416255Y289294D01*

-X416993Y289236D01*

-Y268764D01*

-X416255Y268706D01*

-X415528Y268531D01*

-X414837Y268245D01*

-X414199Y267855D01*

-X413631Y267369D01*

-X413145Y266801D01*

-X412755Y266163D01*

-X412469Y265472D01*

-X412294Y264745D01*

-X412235Y264000D01*

-X412294Y263255D01*

-X412469Y262528D01*

-X412755Y261837D01*

-X413145Y261199D01*

-X413631Y260631D01*

-X414199Y260145D01*

-X414837Y259755D01*

-X415528Y259469D01*

-X416255Y259294D01*

-X416993Y259236D01*

-Y238764D01*

-X416255Y238706D01*

-X415528Y238531D01*

-X414837Y238245D01*

-X414199Y237855D01*

-X413631Y237369D01*

-X413145Y236801D01*

-X412755Y236163D01*

-X412469Y235472D01*

-X412294Y234745D01*

-X412235Y234000D01*

-X412294Y233255D01*

-X412469Y232528D01*

-X412755Y231837D01*

-X413145Y231199D01*

-X413631Y230631D01*

-X414199Y230145D01*

-X414837Y229755D01*

-X415528Y229469D01*

-X416255Y229294D01*

-X416993Y229236D01*

-Y208764D01*

-X416255Y208706D01*

-X415528Y208531D01*

-X414837Y208245D01*

-X414199Y207855D01*

-X413631Y207369D01*

-X413145Y206801D01*

-X412755Y206163D01*

-X412469Y205472D01*

-X412294Y204745D01*

-X412235Y204000D01*

-X412294Y203255D01*

-X412469Y202528D01*

-X412755Y201837D01*

-X413145Y201199D01*

-X413631Y200631D01*

-X414199Y200145D01*

-X414837Y199755D01*

-X415528Y199469D01*

-X416255Y199294D01*

-X416993Y199236D01*

-Y178764D01*

-X416255Y178706D01*

-X415528Y178531D01*

-X414837Y178245D01*

-X414199Y177855D01*

-X413631Y177369D01*

-X413145Y176801D01*

-X412755Y176163D01*

-X412469Y175472D01*

-X412294Y174745D01*

-X412235Y174000D01*

-X412294Y173255D01*

-X412469Y172528D01*

-X412755Y171837D01*

-X413145Y171199D01*

-X413631Y170631D01*

-X414199Y170145D01*

-X414837Y169755D01*

-X415528Y169469D01*

-X416255Y169294D01*

-X416993Y169236D01*

-Y159000D01*

-G37*

-G36*

-X411000D02*X407000D01*

-Y169250D01*

-X408750D01*

-X408868Y169257D01*

-X408982Y169285D01*

-X409092Y169330D01*

-X409192Y169391D01*

-X409282Y169468D01*

-X409359Y169558D01*

-X409420Y169658D01*

-X409465Y169768D01*

-X409493Y169882D01*

-X409502Y170000D01*

-X409493Y170118D01*

-X409465Y170232D01*

-X409420Y170342D01*

-X409359Y170442D01*

-X409282Y170532D01*

-X409192Y170609D01*

-X409092Y170670D01*

-X408982Y170715D01*

-X408868Y170743D01*

-X408750Y170750D01*

-X407000D01*

-Y177250D01*

-X408750D01*

-X408868Y177257D01*

-X408982Y177285D01*

-X409092Y177330D01*

-X409192Y177391D01*

-X409282Y177468D01*

-X409359Y177558D01*

-X409420Y177658D01*

-X409465Y177768D01*

-X409493Y177882D01*

-X409502Y178000D01*

-X409493Y178118D01*

-X409465Y178232D01*

-X409420Y178342D01*

-X409359Y178442D01*

-X409282Y178532D01*

-X409192Y178609D01*

-X409092Y178670D01*

-X408982Y178715D01*

-X408868Y178743D01*

-X408750Y178750D01*

-X407000D01*

-Y199250D01*

-X408750D01*

-X408868Y199257D01*

-X408982Y199285D01*

-X409092Y199330D01*

-X409192Y199391D01*

-X409282Y199468D01*

-X409359Y199558D01*

-X409420Y199658D01*

-X409465Y199768D01*

-X409493Y199882D01*

-X409502Y200000D01*

-X409493Y200118D01*

-X409465Y200232D01*

-X409420Y200342D01*

-X409359Y200442D01*

-X409282Y200532D01*

-X409192Y200609D01*

-X409092Y200670D01*

-X408982Y200715D01*

-X408868Y200743D01*

-X408750Y200750D01*

-X407000D01*

-Y207250D01*

-X408750D01*

-X408868Y207257D01*

-X408982Y207285D01*

-X409092Y207330D01*

-X409192Y207391D01*

-X409282Y207468D01*

-X409359Y207558D01*

-X409420Y207658D01*

-X409465Y207768D01*

-X409493Y207882D01*

-X409502Y208000D01*

-X409493Y208118D01*

-X409465Y208232D01*

-X409420Y208342D01*

-X409359Y208442D01*

-X409282Y208532D01*

-X409192Y208609D01*

-X409092Y208670D01*

-X408982Y208715D01*

-X408868Y208743D01*

-X408750Y208750D01*

-X407000D01*

-Y229250D01*

-X408750D01*

-X408868Y229257D01*

-X408982Y229285D01*

-X409092Y229330D01*

-X409192Y229391D01*

-X409282Y229468D01*

-X409359Y229558D01*

-X409420Y229658D01*

-X409465Y229768D01*

-X409493Y229882D01*

-X409502Y230000D01*

-X409493Y230118D01*

-X409465Y230232D01*

-X409420Y230342D01*

-X409359Y230442D01*

-X409282Y230532D01*

-X409192Y230609D01*

-X409092Y230670D01*

-X408982Y230715D01*

-X408868Y230743D01*

-X408750Y230750D01*

-X407000D01*

-Y237250D01*

-X408750D01*

-X408868Y237257D01*

-X408982Y237285D01*

-X409092Y237330D01*

-X409192Y237391D01*

-X409282Y237468D01*

-X409359Y237558D01*

-X409420Y237658D01*

-X409465Y237768D01*

-X409493Y237882D01*

-X409502Y238000D01*

-X409493Y238118D01*

-X409465Y238232D01*

-X409420Y238342D01*

-X409359Y238442D01*

-X409282Y238532D01*

-X409192Y238609D01*

-X409092Y238670D01*

-X408982Y238715D01*

-X408868Y238743D01*

-X408750Y238750D01*

-X407000D01*

-Y259250D01*

-X408750D01*

-X408868Y259257D01*

-X408982Y259285D01*

-X409092Y259330D01*

-X409192Y259391D01*

-X409282Y259468D01*

-X409359Y259558D01*

-X409420Y259658D01*

-X409465Y259768D01*

-X409493Y259882D01*

-X409502Y260000D01*

-X409493Y260118D01*

-X409465Y260232D01*

-X409420Y260342D01*

-X409359Y260442D01*

-X409282Y260532D01*

-X409192Y260609D01*

-X409092Y260670D01*

-X408982Y260715D01*

-X408868Y260743D01*

-X408750Y260750D01*

-X407000D01*

-Y267250D01*

-X408750D01*

-X408868Y267257D01*

-X408982Y267285D01*

-X409092Y267330D01*

-X409192Y267391D01*

-X409282Y267468D01*

-X409359Y267558D01*

-X409420Y267658D01*

-X409465Y267768D01*

-X409493Y267882D01*

-X409502Y268000D01*

-X409493Y268118D01*

-X409465Y268232D01*

-X409420Y268342D01*

-X409359Y268442D01*

-X409282Y268532D01*

-X409192Y268609D01*

-X409092Y268670D01*

-X408982Y268715D01*

-X408868Y268743D01*

-X408750Y268750D01*

-X407000D01*

-Y289250D01*

-X408750D01*

-X408868Y289257D01*

-X408982Y289285D01*

-X409092Y289330D01*

-X409192Y289391D01*

-X409282Y289468D01*

-X409359Y289558D01*

-X409420Y289658D01*

-X409465Y289768D01*

-X409493Y289882D01*

-X409502Y290000D01*

-X409493Y290118D01*

-X409465Y290232D01*

-X409420Y290342D01*

-X409359Y290442D01*

-X409282Y290532D01*

-X409192Y290609D01*

-X409092Y290670D01*

-X408982Y290715D01*

-X408868Y290743D01*

-X408750Y290750D01*

-X407000D01*

-Y297250D01*

-X408750D01*

-X408868Y297257D01*

-X408982Y297285D01*

-X409092Y297330D01*

-X409192Y297391D01*

-X409282Y297468D01*

-X409359Y297558D01*

-X409420Y297658D01*

-X409465Y297768D01*

-X409493Y297882D01*

-X409502Y298000D01*

-X409493Y298118D01*

-X409465Y298232D01*

-X409420Y298342D01*

-X409359Y298442D01*

-X409282Y298532D01*

-X409192Y298609D01*

-X409092Y298670D01*

-X408982Y298715D01*

-X408868Y298743D01*

-X408750Y298750D01*

-X407000D01*

-Y319250D01*

-X408750D01*

-X408868Y319257D01*

-X408982Y319285D01*

-X409092Y319330D01*

-X409192Y319391D01*

-X409282Y319468D01*

-X409359Y319558D01*

-X409420Y319658D01*

-X409465Y319768D01*

-X409493Y319882D01*

-X409502Y320000D01*

-X409493Y320118D01*

-X409465Y320232D01*

-X409420Y320342D01*

-X409359Y320442D01*

-X409282Y320532D01*

-X409192Y320609D01*

-X409092Y320670D01*

-X408982Y320715D01*

-X408868Y320743D01*

-X408750Y320750D01*

-X407000D01*

-Y327250D01*

-X408750D01*

-X408868Y327257D01*

-X408982Y327285D01*

-X409092Y327330D01*

-X409192Y327391D01*

-X409282Y327468D01*

-X409359Y327558D01*

-X409420Y327658D01*

-X409465Y327768D01*

-X409493Y327882D01*

-X409502Y328000D01*

-X409493Y328118D01*

-X409465Y328232D01*

-X409420Y328342D01*

-X409359Y328442D01*

-X409282Y328532D01*

-X409192Y328609D01*

-X409092Y328670D01*

-X408982Y328715D01*

-X408868Y328743D01*

-X408750Y328750D01*

-X407000D01*

-Y349250D01*

-X408750D01*

-X408868Y349257D01*

-X408982Y349285D01*

-X409092Y349330D01*

-X409192Y349391D01*

-X409282Y349468D01*

-X409359Y349558D01*

-X409420Y349658D01*

-X409465Y349768D01*

-X409493Y349882D01*

-X409502Y350000D01*

-X409493Y350118D01*

-X409465Y350232D01*

-X409420Y350342D01*

-X409359Y350442D01*

-X409282Y350532D01*

-X409192Y350609D01*

-X409092Y350670D01*

-X408982Y350715D01*

-X408868Y350743D01*

-X408750Y350750D01*

-X407000D01*

-Y357250D01*

-X408750D01*

-X408868Y357257D01*

-X408982Y357285D01*

-X409092Y357330D01*

-X409192Y357391D01*

-X409282Y357468D01*

-X409359Y357558D01*

-X409420Y357658D01*

-X409465Y357768D01*

-X409493Y357882D01*

-X409502Y358000D01*

-X409493Y358118D01*

-X409465Y358232D01*

-X409420Y358342D01*

-X409359Y358442D01*

-X409282Y358532D01*

-X409192Y358609D01*

-X409092Y358670D01*

-X408982Y358715D01*

-X408868Y358743D01*

-X408750Y358750D01*

-X407000D01*

-Y379250D01*

-X408750D01*

-X408868Y379257D01*

-X408982Y379285D01*

-X409092Y379330D01*

-X409192Y379391D01*

-X409282Y379468D01*

-X409359Y379558D01*

-X409420Y379658D01*

-X409465Y379768D01*

-X409493Y379882D01*

-X409502Y380000D01*

-X409493Y380118D01*

-X409465Y380232D01*

-X409420Y380342D01*

-X409359Y380442D01*

-X409282Y380532D01*

-X409192Y380609D01*

-X409092Y380670D01*

-X408982Y380715D01*

-X408868Y380743D01*

-X408750Y380750D01*

-X407000D01*

-Y387250D01*

-X408750D01*

-X408868Y387257D01*

-X408982Y387285D01*

-X409092Y387330D01*

-X409192Y387391D01*

-X409282Y387468D01*

-X409359Y387558D01*

-X409420Y387658D01*

-X409465Y387768D01*

-X409493Y387882D01*

-X409502Y388000D01*

-X409493Y388118D01*

-X409465Y388232D01*

-X409420Y388342D01*

-X409359Y388442D01*

-X409282Y388532D01*

-X409192Y388609D01*

-X409092Y388670D01*

-X408982Y388715D01*

-X408868Y388743D01*

-X408750Y388750D01*

-X407000D01*

-Y397000D01*

-X411000D01*

-Y386502D01*

-X410882Y386493D01*

-X410768Y386465D01*

-X410658Y386420D01*

-X410558Y386359D01*

-X410468Y386282D01*

-X410391Y386192D01*

-X410330Y386092D01*

-X410285Y385982D01*

-X410257Y385868D01*

-X410250Y385750D01*

-Y382250D01*

-X410257Y382132D01*

-X410285Y382018D01*

-X410330Y381908D01*

-X410391Y381808D01*

-X410468Y381718D01*

-X410558Y381641D01*

-X410658Y381580D01*

-X410768Y381535D01*

-X410882Y381507D01*

-X411000Y381498D01*

-Y356502D01*

-X410882Y356493D01*

-X410768Y356465D01*

-X410658Y356420D01*

-X410558Y356359D01*

-X410468Y356282D01*

-X410391Y356192D01*

-X410330Y356092D01*

-X410285Y355982D01*

-X410257Y355868D01*

-X410250Y355750D01*

-Y352250D01*

-X410257Y352132D01*

-X410285Y352018D01*

-X410330Y351908D01*

-X410391Y351808D01*

-X410468Y351718D01*

-X410558Y351641D01*

-X410658Y351580D01*

-X410768Y351535D01*

-X410882Y351507D01*

-X411000Y351498D01*

-Y326502D01*

-X410882Y326493D01*

-X410768Y326465D01*

-X410658Y326420D01*

-X410558Y326359D01*

-X410468Y326282D01*

-X410391Y326192D01*

-X410330Y326092D01*

-X410285Y325982D01*

-X410257Y325868D01*

-X410250Y325750D01*

-Y322250D01*

-X410257Y322132D01*

-X410285Y322018D01*

-X410330Y321908D01*

-X410391Y321808D01*

-X410468Y321718D01*

-X410558Y321641D01*

-X410658Y321580D01*

-X410768Y321535D01*

-X410882Y321507D01*

-X411000Y321498D01*

-Y296502D01*

-X410882Y296493D01*

-X410768Y296465D01*

-X410658Y296420D01*

-X410558Y296359D01*

-X410468Y296282D01*

-X410391Y296192D01*

-X410330Y296092D01*

-X410285Y295982D01*

-X410257Y295868D01*

-X410250Y295750D01*

-Y292250D01*

-X410257Y292132D01*

-X410285Y292018D01*

-X410330Y291908D01*

-X410391Y291808D01*

-X410468Y291718D01*

-X410558Y291641D01*

-X410658Y291580D01*

-X410768Y291535D01*

-X410882Y291507D01*

-X411000Y291498D01*

-Y266502D01*

-X410882Y266493D01*

-X410768Y266465D01*

-X410658Y266420D01*

-X410558Y266359D01*

-X410468Y266282D01*

-X410391Y266192D01*

-X410330Y266092D01*

-X410285Y265982D01*

-X410257Y265868D01*

-X410250Y265750D01*

-Y262250D01*

-X410257Y262132D01*

-X410285Y262018D01*

-X410330Y261908D01*

-X410391Y261808D01*

-X410468Y261718D01*

-X410558Y261641D01*

-X410658Y261580D01*

-X410768Y261535D01*

-X410882Y261507D01*

-X411000Y261498D01*

-Y236502D01*

-X410882Y236493D01*

-X410768Y236465D01*

-X410658Y236420D01*

-X410558Y236359D01*

-X410468Y236282D01*

-X410391Y236192D01*

-X410330Y236092D01*

-X410285Y235982D01*

-X410257Y235868D01*

-X410250Y235750D01*

-Y232250D01*

-X410257Y232132D01*

-X410285Y232018D01*

-X410330Y231908D01*

-X410391Y231808D01*

-X410468Y231718D01*

-X410558Y231641D01*

-X410658Y231580D01*

-X410768Y231535D01*

-X410882Y231507D01*

-X411000Y231498D01*

-Y206502D01*

-X410882Y206493D01*

-X410768Y206465D01*

-X410658Y206420D01*

-X410558Y206359D01*

-X410468Y206282D01*

-X410391Y206192D01*

-X410330Y206092D01*

-X410285Y205982D01*

-X410257Y205868D01*

-X410250Y205750D01*

-Y202250D01*

-X410257Y202132D01*

-X410285Y202018D01*

-X410330Y201908D01*

-X410391Y201808D01*

-X410468Y201718D01*

-X410558Y201641D01*

-X410658Y201580D01*

-X410768Y201535D01*

-X410882Y201507D01*

-X411000Y201498D01*

-Y176502D01*

-X410882Y176493D01*

-X410768Y176465D01*

-X410658Y176420D01*

-X410558Y176359D01*

-X410468Y176282D01*

-X410391Y176192D01*

-X410330Y176092D01*

-X410285Y175982D01*

-X410257Y175868D01*

-X410250Y175750D01*

-Y172250D01*

-X410257Y172132D01*

-X410285Y172018D01*

-X410330Y171908D01*

-X410391Y171808D01*

-X410468Y171718D01*

-X410558Y171641D01*

-X410658Y171580D01*

-X410768Y171535D01*

-X410882Y171507D01*

-X411000Y171498D01*

-Y159000D01*

-G37*

-G36*

-X407000D02*X403000D01*

-Y171498D01*

-X403118Y171507D01*

-X403232Y171535D01*

-X403342Y171580D01*

-X403442Y171641D01*

-X403532Y171718D01*

-X403609Y171808D01*

-X403670Y171908D01*

-X403715Y172018D01*

-X403743Y172132D01*

-X403750Y172250D01*

-Y175750D01*

-X403743Y175868D01*

-X403715Y175982D01*

-X403670Y176092D01*

-X403609Y176192D01*

-X403532Y176282D01*

-X403442Y176359D01*

-X403342Y176420D01*

-X403232Y176465D01*

-X403118Y176493D01*

-X403000Y176502D01*

-Y187861D01*

-X403112Y188132D01*

-X403215Y188561D01*

-X403241Y189000D01*

-X403215Y189439D01*

-X403112Y189868D01*

-X403000Y190139D01*

-Y192861D01*

-X403112Y193132D01*

-X403215Y193561D01*

-X403241Y194000D01*

-X403215Y194439D01*

-X403112Y194868D01*

-X403000Y195139D01*

-Y201498D01*

-X403118Y201507D01*

-X403232Y201535D01*

-X403342Y201580D01*

-X403442Y201641D01*

-X403532Y201718D01*

-X403609Y201808D01*

-X403670Y201908D01*

-X403715Y202018D01*

-X403743Y202132D01*

-X403750Y202250D01*

-Y205750D01*

-X403743Y205868D01*

-X403715Y205982D01*

-X403670Y206092D01*

-X403609Y206192D01*

-X403532Y206282D01*

-X403442Y206359D01*

-X403342Y206420D01*

-X403232Y206465D01*

-X403118Y206493D01*

-X403000Y206502D01*

-Y231498D01*

-X403118Y231507D01*

-X403232Y231535D01*

-X403342Y231580D01*

-X403442Y231641D01*

-X403532Y231718D01*

-X403609Y231808D01*

-X403670Y231908D01*

-X403715Y232018D01*

-X403743Y232132D01*

-X403750Y232250D01*

-Y235750D01*

-X403743Y235868D01*

-X403715Y235982D01*

-X403670Y236092D01*

-X403609Y236192D01*

-X403532Y236282D01*

-X403442Y236359D01*

-X403342Y236420D01*

-X403232Y236465D01*

-X403118Y236493D01*

-X403000Y236502D01*

-Y261498D01*

-X403118Y261507D01*

-X403232Y261535D01*

-X403342Y261580D01*

-X403442Y261641D01*

-X403532Y261718D01*

-X403609Y261808D01*

-X403670Y261908D01*

-X403715Y262018D01*

-X403743Y262132D01*

-X403750Y262250D01*

-Y265750D01*

-X403743Y265868D01*

-X403715Y265982D01*

-X403670Y266092D01*

-X403609Y266192D01*

-X403532Y266282D01*

-X403442Y266359D01*

-X403342Y266420D01*

-X403232Y266465D01*

-X403118Y266493D01*

-X403000Y266502D01*

-Y291498D01*

-X403118Y291507D01*

-X403232Y291535D01*

-X403342Y291580D01*

-X403442Y291641D01*

-X403532Y291718D01*

-X403609Y291808D01*

-X403670Y291908D01*

-X403715Y292018D01*

-X403743Y292132D01*

-X403750Y292250D01*

-Y295750D01*

-X403743Y295868D01*

-X403715Y295982D01*

-X403670Y296092D01*

-X403609Y296192D01*

-X403532Y296282D01*

-X403442Y296359D01*

-X403342Y296420D01*

-X403232Y296465D01*

-X403118Y296493D01*

-X403000Y296502D01*

-Y321498D01*

-X403118Y321507D01*

-X403232Y321535D01*

-X403342Y321580D01*

-X403442Y321641D01*

-X403532Y321718D01*

-X403609Y321808D01*

-X403670Y321908D01*

-X403715Y322018D01*

-X403743Y322132D01*

-X403750Y322250D01*

-Y325750D01*

-X403743Y325868D01*

-X403715Y325982D01*

-X403670Y326092D01*

-X403609Y326192D01*

-X403532Y326282D01*

-X403442Y326359D01*

-X403342Y326420D01*

-X403232Y326465D01*

-X403118Y326493D01*

-X403000Y326502D01*

-Y351498D01*

-X403118Y351507D01*

-X403232Y351535D01*

-X403342Y351580D01*

-X403442Y351641D01*

-X403532Y351718D01*

-X403609Y351808D01*

-X403670Y351908D01*

-X403715Y352018D01*

-X403743Y352132D01*

-X403750Y352250D01*

-Y355750D01*

-X403743Y355868D01*

-X403715Y355982D01*

-X403670Y356092D01*

-X403609Y356192D01*

-X403532Y356282D01*

-X403442Y356359D01*

-X403342Y356420D01*

-X403232Y356465D01*

-X403118Y356493D01*

-X403000Y356502D01*

-Y381498D01*

-X403118Y381507D01*

-X403232Y381535D01*

-X403342Y381580D01*

-X403442Y381641D01*

-X403532Y381718D01*

-X403609Y381808D01*

-X403670Y381908D01*

-X403715Y382018D01*

-X403743Y382132D01*

-X403750Y382250D01*

-Y385750D01*

-X403743Y385868D01*

-X403715Y385982D01*

-X403670Y386092D01*

-X403609Y386192D01*

-X403532Y386282D01*

-X403442Y386359D01*

-X403342Y386420D01*

-X403232Y386465D01*

-X403118Y386493D01*

-X403000Y386502D01*

-Y397000D01*

-X407000D01*

-Y388750D01*

-X405250D01*

-X405132Y388743D01*

-X405018Y388715D01*

-X404908Y388670D01*

-X404808Y388609D01*

-X404718Y388532D01*

-X404641Y388442D01*

-X404580Y388342D01*

-X404535Y388232D01*

-X404507Y388118D01*

-X404498Y388000D01*

-X404507Y387882D01*

-X404535Y387768D01*

-X404580Y387658D01*

-X404641Y387558D01*

-X404718Y387468D01*

-X404808Y387391D01*

-X404908Y387330D01*

-X405018Y387285D01*

-X405132Y387257D01*

-X405250Y387250D01*

-X407000D01*

-Y380750D01*

-X405250D01*

-X405132Y380743D01*

-X405018Y380715D01*

-X404908Y380670D01*

-X404808Y380609D01*

-X404718Y380532D01*

-X404641Y380442D01*

-X404580Y380342D01*

-X404535Y380232D01*

-X404507Y380118D01*

-X404498Y380000D01*

-X404507Y379882D01*

-X404535Y379768D01*

-X404580Y379658D01*

-X404641Y379558D01*

-X404718Y379468D01*

-X404808Y379391D01*

-X404908Y379330D01*

-X405018Y379285D01*

-X405132Y379257D01*

-X405250Y379250D01*

-X407000D01*

-Y358750D01*

-X405250D01*

-X405132Y358743D01*

-X405018Y358715D01*

-X404908Y358670D01*

-X404808Y358609D01*

-X404718Y358532D01*

-X404641Y358442D01*

-X404580Y358342D01*

-X404535Y358232D01*

-X404507Y358118D01*

-X404498Y358000D01*

-X404507Y357882D01*

-X404535Y357768D01*

-X404580Y357658D01*

-X404641Y357558D01*

-X404718Y357468D01*

-X404808Y357391D01*

-X404908Y357330D01*

-X405018Y357285D01*

-X405132Y357257D01*

-X405250Y357250D01*

-X407000D01*

-Y350750D01*

-X405250D01*

-X405132Y350743D01*

-X405018Y350715D01*

-X404908Y350670D01*

-X404808Y350609D01*

-X404718Y350532D01*

-X404641Y350442D01*

-X404580Y350342D01*

-X404535Y350232D01*

-X404507Y350118D01*

-X404498Y350000D01*

-X404507Y349882D01*

-X404535Y349768D01*

-X404580Y349658D01*

-X404641Y349558D01*

-X404718Y349468D01*

-X404808Y349391D01*

-X404908Y349330D01*

-X405018Y349285D01*

-X405132Y349257D01*

-X405250Y349250D01*

-X407000D01*

-Y328750D01*

-X405250D01*

-X405132Y328743D01*

-X405018Y328715D01*

-X404908Y328670D01*

-X404808Y328609D01*

-X404718Y328532D01*

-X404641Y328442D01*

-X404580Y328342D01*

-X404535Y328232D01*

-X404507Y328118D01*

-X404498Y328000D01*

-X404507Y327882D01*

-X404535Y327768D01*

-X404580Y327658D01*

-X404641Y327558D01*

-X404718Y327468D01*

-X404808Y327391D01*

-X404908Y327330D01*

-X405018Y327285D01*

-X405132Y327257D01*

-X405250Y327250D01*

-X407000D01*

-Y320750D01*

-X405250D01*

-X405132Y320743D01*

-X405018Y320715D01*

-X404908Y320670D01*

-X404808Y320609D01*

-X404718Y320532D01*

-X404641Y320442D01*

-X404580Y320342D01*

-X404535Y320232D01*

-X404507Y320118D01*

-X404498Y320000D01*

-X404507Y319882D01*

-X404535Y319768D01*

-X404580Y319658D01*

-X404641Y319558D01*

-X404718Y319468D01*

-X404808Y319391D01*

-X404908Y319330D01*

-X405018Y319285D01*

-X405132Y319257D01*

-X405250Y319250D01*

-X407000D01*

-Y298750D01*

-X405250D01*

-X405132Y298743D01*

-X405018Y298715D01*

-X404908Y298670D01*

-X404808Y298609D01*

-X404718Y298532D01*

-X404641Y298442D01*

-X404580Y298342D01*

-X404535Y298232D01*

-X404507Y298118D01*

-X404498Y298000D01*

-X404507Y297882D01*

-X404535Y297768D01*

-X404580Y297658D01*

-X404641Y297558D01*

-X404718Y297468D01*

-X404808Y297391D01*

-X404908Y297330D01*

-X405018Y297285D01*

-X405132Y297257D01*

-X405250Y297250D01*

-X407000D01*

-Y290750D01*

-X405250D01*

-X405132Y290743D01*

-X405018Y290715D01*

-X404908Y290670D01*

-X404808Y290609D01*

-X404718Y290532D01*

-X404641Y290442D01*

-X404580Y290342D01*

-X404535Y290232D01*

-X404507Y290118D01*

-X404498Y290000D01*

-X404507Y289882D01*

-X404535Y289768D01*

-X404580Y289658D01*

-X404641Y289558D01*

-X404718Y289468D01*

-X404808Y289391D01*

-X404908Y289330D01*

-X405018Y289285D01*

-X405132Y289257D01*

-X405250Y289250D01*

-X407000D01*

-Y268750D01*

-X405250D01*

-X405132Y268743D01*

-X405018Y268715D01*

-X404908Y268670D01*

-X404808Y268609D01*

-X404718Y268532D01*

-X404641Y268442D01*

-X404580Y268342D01*

-X404535Y268232D01*

-X404507Y268118D01*

-X404498Y268000D01*

-X404507Y267882D01*

-X404535Y267768D01*

-X404580Y267658D01*

-X404641Y267558D01*

-X404718Y267468D01*

-X404808Y267391D01*

-X404908Y267330D01*

-X405018Y267285D01*

-X405132Y267257D01*

-X405250Y267250D01*

-X407000D01*

-Y260750D01*

-X405250D01*

-X405132Y260743D01*

-X405018Y260715D01*

-X404908Y260670D01*

-X404808Y260609D01*

-X404718Y260532D01*

-X404641Y260442D01*

-X404580Y260342D01*

-X404535Y260232D01*

-X404507Y260118D01*

-X404498Y260000D01*

-X404507Y259882D01*

-X404535Y259768D01*

-X404580Y259658D01*

-X404641Y259558D01*

-X404718Y259468D01*

-X404808Y259391D01*

-X404908Y259330D01*

-X405018Y259285D01*

-X405132Y259257D01*

-X405250Y259250D01*

-X407000D01*

-Y238750D01*

-X405250D01*

-X405132Y238743D01*

-X405018Y238715D01*

-X404908Y238670D01*

-X404808Y238609D01*

-X404718Y238532D01*

-X404641Y238442D01*

-X404580Y238342D01*

-X404535Y238232D01*

-X404507Y238118D01*

-X404498Y238000D01*

-X404507Y237882D01*

-X404535Y237768D01*

-X404580Y237658D01*

-X404641Y237558D01*

-X404718Y237468D01*

-X404808Y237391D01*

-X404908Y237330D01*

-X405018Y237285D01*

-X405132Y237257D01*

-X405250Y237250D01*

-X407000D01*

-Y230750D01*

-X405250D01*

-X405132Y230743D01*

-X405018Y230715D01*

-X404908Y230670D01*

-X404808Y230609D01*

-X404718Y230532D01*

-X404641Y230442D01*

-X404580Y230342D01*

-X404535Y230232D01*

-X404507Y230118D01*

-X404498Y230000D01*

-X404507Y229882D01*

-X404535Y229768D01*

-X404580Y229658D01*

-X404641Y229558D01*

-X404718Y229468D01*

-X404808Y229391D01*

-X404908Y229330D01*

-X405018Y229285D01*

-X405132Y229257D01*

-X405250Y229250D01*

-X407000D01*

-Y208750D01*

-X405250D01*

-X405132Y208743D01*

-X405018Y208715D01*

-X404908Y208670D01*

-X404808Y208609D01*

-X404718Y208532D01*

-X404641Y208442D01*

-X404580Y208342D01*

-X404535Y208232D01*

-X404507Y208118D01*

-X404498Y208000D01*

-X404507Y207882D01*

-X404535Y207768D01*

-X404580Y207658D01*

-X404641Y207558D01*

-X404718Y207468D01*

-X404808Y207391D01*

-X404908Y207330D01*

-X405018Y207285D01*

-X405132Y207257D01*

-X405250Y207250D01*

-X407000D01*

-Y200750D01*

-X405250D01*

-X405132Y200743D01*

-X405018Y200715D01*

-X404908Y200670D01*

-X404808Y200609D01*

-X404718Y200532D01*

-X404641Y200442D01*

-X404580Y200342D01*

-X404535Y200232D01*

-X404507Y200118D01*

-X404498Y200000D01*

-X404507Y199882D01*

-X404535Y199768D01*

-X404580Y199658D01*

-X404641Y199558D01*

-X404718Y199468D01*

-X404808Y199391D01*

-X404908Y199330D01*

-X405018Y199285D01*

-X405132Y199257D01*

-X405250Y199250D01*

-X407000D01*

-Y178750D01*

-X405250D01*

-X405132Y178743D01*

-X405018Y178715D01*

-X404908Y178670D01*

-X404808Y178609D01*

-X404718Y178532D01*

-X404641Y178442D01*

-X404580Y178342D01*

-X404535Y178232D01*

-X404507Y178118D01*

-X404498Y178000D01*

-X404507Y177882D01*

-X404535Y177768D01*

-X404580Y177658D01*

-X404641Y177558D01*

-X404718Y177468D01*

-X404808Y177391D01*

-X404908Y177330D01*

-X405018Y177285D01*

-X405132Y177257D01*

-X405250Y177250D01*

-X407000D01*

-Y170750D01*

-X405250D01*

-X405132Y170743D01*

-X405018Y170715D01*

-X404908Y170670D01*

-X404808Y170609D01*

-X404718Y170532D01*

-X404641Y170442D01*

-X404580Y170342D01*

-X404535Y170232D01*

-X404507Y170118D01*

-X404498Y170000D01*

-X404507Y169882D01*

-X404535Y169768D01*

-X404580Y169658D01*

-X404641Y169558D01*

-X404718Y169468D01*

-X404808Y169391D01*

-X404908Y169330D01*

-X405018Y169285D01*

-X405132Y169257D01*

-X405250Y169250D01*

-X407000D01*

-Y159000D01*

-G37*

-G36*

-X403000Y386502D02*X402882Y386493D01*

-X402768Y386465D01*

-X402658Y386420D01*

-X402558Y386359D01*

-X402468Y386282D01*

-X402396Y386197D01*

-X402441Y397000D01*

-X403000D01*

-Y386502D01*

-G37*

-G36*

-Y356502D02*X402882Y356493D01*

-X402768Y356465D01*

-X402658Y356420D01*

-X402558Y356359D01*

-X402468Y356282D01*

-X402391Y356192D01*

-X402330Y356092D01*

-X402285Y355982D01*

-X402268Y355915D01*

-X402377Y381831D01*

-X402391Y381808D01*

-X402468Y381718D01*

-X402558Y381641D01*

-X402658Y381580D01*

-X402768Y381535D01*

-X402882Y381507D01*

-X403000Y381498D01*

-Y356502D01*

-G37*

-G36*

-Y195139D02*X402944Y195275D01*

-X402713Y195651D01*

-X402427Y195986D01*

-X402092Y196272D01*

-X401716Y196503D01*

-X401599Y196551D01*

-X402253Y352203D01*

-X402257Y352132D01*

-X402285Y352018D01*

-X402330Y351908D01*

-X402391Y351808D01*

-X402468Y351718D01*

-X402558Y351641D01*

-X402658Y351580D01*

-X402768Y351535D01*

-X402882Y351507D01*

-X403000Y351498D01*

-Y326502D01*

-X402882Y326493D01*

-X402768Y326465D01*

-X402658Y326420D01*

-X402558Y326359D01*

-X402468Y326282D01*

-X402391Y326192D01*

-X402330Y326092D01*

-X402285Y325982D01*

-X402257Y325868D01*

-X402250Y325750D01*

-Y322250D01*

-X402257Y322132D01*

-X402285Y322018D01*

-X402330Y321908D01*

-X402391Y321808D01*

-X402468Y321718D01*

-X402558Y321641D01*

-X402658Y321580D01*

-X402768Y321535D01*

-X402882Y321507D01*

-X403000Y321498D01*

-Y296502D01*

-X402882Y296493D01*

-X402768Y296465D01*

-X402658Y296420D01*

-X402558Y296359D01*

-X402468Y296282D01*

-X402391Y296192D01*

-X402330Y296092D01*

-X402285Y295982D01*

-X402257Y295868D01*

-X402250Y295750D01*

-Y292250D01*

-X402257Y292132D01*

-X402285Y292018D01*

-X402330Y291908D01*

-X402391Y291808D01*

-X402468Y291718D01*

-X402558Y291641D01*

-X402658Y291580D01*

-X402768Y291535D01*

-X402882Y291507D01*

-X403000Y291498D01*

-Y266502D01*

-X402882Y266493D01*

-X402768Y266465D01*

-X402658Y266420D01*

-X402558Y266359D01*

-X402468Y266282D01*

-X402391Y266192D01*

-X402330Y266092D01*

-X402285Y265982D01*

-X402257Y265868D01*

-X402250Y265750D01*

-Y262250D01*

-X402257Y262132D01*

-X402285Y262018D01*

-X402330Y261908D01*

-X402391Y261808D01*

-X402468Y261718D01*

-X402558Y261641D01*

-X402658Y261580D01*

-X402768Y261535D01*

-X402882Y261507D01*

-X403000Y261498D01*

-Y236502D01*

-X402882Y236493D01*

-X402768Y236465D01*

-X402658Y236420D01*

-X402558Y236359D01*

-X402468Y236282D01*

-X402391Y236192D01*

-X402330Y236092D01*

-X402285Y235982D01*

-X402257Y235868D01*

-X402250Y235750D01*

-Y232250D01*

-X402257Y232132D01*

-X402285Y232018D01*

-X402330Y231908D01*

-X402391Y231808D01*

-X402468Y231718D01*

-X402558Y231641D01*

-X402658Y231580D01*

-X402768Y231535D01*

-X402882Y231507D01*

-X403000Y231498D01*

-Y206502D01*

-X402882Y206493D01*

-X402768Y206465D01*

-X402658Y206420D01*

-X402558Y206359D01*

-X402468Y206282D01*

-X402391Y206192D01*

-X402330Y206092D01*

-X402285Y205982D01*

-X402257Y205868D01*

-X402250Y205750D01*

-Y202250D01*

-X402257Y202132D01*

-X402285Y202018D01*

-X402330Y201908D01*

-X402391Y201808D01*

-X402468Y201718D01*

-X402558Y201641D01*

-X402658Y201580D01*

-X402768Y201535D01*

-X402882Y201507D01*

-X403000Y201498D01*

-Y195139D01*

-G37*

-G36*

-Y190139D02*X402944Y190275D01*

-X402713Y190651D01*

-X402427Y190986D01*

-X402092Y191272D01*

-X401720Y191500D01*

-X402092Y191728D01*

-X402427Y192014D01*

-X402713Y192349D01*

-X402944Y192725D01*

-X403000Y192861D01*

-Y190139D01*

-G37*

-G36*

-Y159000D02*X401441D01*

-X401556Y186431D01*

-X401716Y186497D01*

-X402092Y186728D01*

-X402427Y187014D01*

-X402713Y187349D01*

-X402944Y187725D01*

-X403000Y187861D01*

-Y176502D01*

-X402882Y176493D01*

-X402768Y176465D01*

-X402658Y176420D01*

-X402558Y176359D01*

-X402468Y176282D01*

-X402391Y176192D01*

-X402330Y176092D01*

-X402285Y175982D01*

-X402257Y175868D01*

-X402250Y175750D01*

-Y172250D01*

-X402257Y172132D01*

-X402285Y172018D01*

-X402330Y171908D01*

-X402391Y171808D01*

-X402468Y171718D01*

-X402558Y171641D01*

-X402658Y171580D01*

-X402768Y171535D01*

-X402882Y171507D01*

-X403000Y171498D01*

-Y159000D01*

-G37*

-G36*

-X434446Y39000D02*X394938D01*

-Y50000D01*

-X395002Y50039D01*

-X395218Y50223D01*

-X395402Y50439D01*

-X395550Y50680D01*

-X395658Y50942D01*

-X395724Y51218D01*

-X395741Y51500D01*

-X395724Y51782D01*

-X395658Y52058D01*

-X395550Y52320D01*

-X395402Y52561D01*

-X395218Y52777D01*

-X395002Y52961D01*

-X394938Y53000D01*

-Y56695D01*

-X394941Y56694D01*

-X395223Y56717D01*

-X395499Y56783D01*

-X395761Y56891D01*

-X396002Y57039D01*

-X396218Y57223D01*

-X396402Y57439D01*

-X396550Y57680D01*

-X396658Y57942D01*

-X396724Y58218D01*

-X396741Y58500D01*

-X396724Y58782D01*

-X396658Y59058D01*

-X396550Y59320D01*

-X396402Y59561D01*

-X396218Y59777D01*

-X396002Y59961D01*

-X395761Y60109D01*

-X395499Y60217D01*

-X395223Y60283D01*

-X394941Y60306D01*

-X394938Y60305D01*

-Y124500D01*

-X407941D01*

-Y70000D01*

-X434446D01*

-Y58305D01*

-X434167Y58283D01*

-X433891Y58217D01*

-X433629Y58109D01*

-X433388Y57961D01*

-X433172Y57777D01*

-X432988Y57561D01*

-X432840Y57320D01*

-X432732Y57058D01*

-X432666Y56782D01*

-X432643Y56500D01*

-X432666Y56218D01*

-X432732Y55942D01*

-X432840Y55680D01*

-X432988Y55439D01*

-X433172Y55223D01*

-X433388Y55039D01*

-X433629Y54891D01*

-X433891Y54783D01*

-X434167Y54717D01*

-X434446Y54695D01*

-Y39000D01*

-G37*

-G36*

-X394938D02*X390938D01*

-Y44007D01*

-X390980Y43939D01*

-X391164Y43723D01*

-X391380Y43539D01*

-X391621Y43391D01*

-X391883Y43283D01*

-X392159Y43217D01*

-X392441Y43194D01*

-X392723Y43217D01*

-X392999Y43283D01*

-X393261Y43391D01*

-X393502Y43539D01*

-X393718Y43723D01*

-X393902Y43939D01*

-X394050Y44180D01*

-X394158Y44442D01*

-X394224Y44718D01*

-X394241Y45000D01*

-X394224Y45282D01*

-X394158Y45558D01*

-X394050Y45820D01*

-X393902Y46061D01*

-X393718Y46277D01*

-X393502Y46461D01*

-X393261Y46609D01*

-X392999Y46717D01*

-X392723Y46783D01*

-X392441Y46806D01*

-X392159Y46783D01*

-X391883Y46717D01*

-X391621Y46609D01*

-X391380Y46461D01*

-X391164Y46277D01*

-X390980Y46061D01*

-X390938Y45993D01*

-Y64270D01*

-X391159Y64217D01*

-X391441Y64194D01*

-X391723Y64217D01*

-X391999Y64283D01*

-X392261Y64391D01*

-X392502Y64539D01*

-X392718Y64723D01*

-X392902Y64939D01*

-X393050Y65180D01*

-X393158Y65442D01*

-X393224Y65718D01*

-X393241Y66000D01*

-X393224Y66282D01*

-X393158Y66558D01*

-X393050Y66820D01*

-X392902Y67061D01*

-X392718Y67277D01*

-X392502Y67461D01*

-X392261Y67609D01*

-X391999Y67717D01*

-X391723Y67783D01*

-X391441Y67806D01*

-X391159Y67783D01*

-X390938Y67730D01*

-Y69695D01*

-X390941Y69694D01*

-X391223Y69717D01*

-X391499Y69783D01*

-X391761Y69891D01*

-X392002Y70039D01*

-X392218Y70223D01*

-X392402Y70439D01*

-X392550Y70680D01*

-X392658Y70942D01*

-X392724Y71218D01*

-X392741Y71500D01*

-X392724Y71782D01*

-X392658Y72058D01*

-X392550Y72320D01*

-X392402Y72561D01*

-X392218Y72777D01*

-X392002Y72961D01*

-X391761Y73109D01*

-X391499Y73217D01*

-X391223Y73283D01*

-X390941Y73306D01*

-X390938Y73305D01*

-Y74195D01*

-X390941Y74194D01*

-X391223Y74217D01*

-X391499Y74283D01*

-X391761Y74391D01*

-X392002Y74539D01*

-X392218Y74723D01*

-X392402Y74939D01*

-X392550Y75180D01*

-X392658Y75442D01*

-X392724Y75718D01*

-X392741Y76000D01*

-X392724Y76282D01*

-X392658Y76558D01*

-X392550Y76820D01*

-X392402Y77061D01*

-X392218Y77277D01*

-X392002Y77461D01*

-X391761Y77609D01*

-X391499Y77717D01*

-X391223Y77783D01*

-X390941Y77806D01*

-X390938Y77805D01*

-Y124500D01*

-X394938D01*

-Y60305D01*

-X394659Y60283D01*

-X394383Y60217D01*

-X394121Y60109D01*

-X393880Y59961D01*

-X393664Y59777D01*

-X393480Y59561D01*

-X393332Y59320D01*

-X393224Y59058D01*

-X393158Y58782D01*

-X393135Y58500D01*

-X393158Y58218D01*

-X393224Y57942D01*

-X393332Y57680D01*

-X393480Y57439D01*

-X393664Y57223D01*

-X393880Y57039D01*

-X394121Y56891D01*

-X394383Y56783D01*

-X394659Y56717D01*

-X394938Y56695D01*

-Y53000D01*

-X394761Y53109D01*

-X394499Y53217D01*

-X394223Y53283D01*

-X393941Y53306D01*

-X393659Y53283D01*

-X393383Y53217D01*

-X393121Y53109D01*

-X392880Y52961D01*

-X392664Y52777D01*

-X392480Y52561D01*

-X392332Y52320D01*

-X392224Y52058D01*

-X392158Y51782D01*

-X392135Y51500D01*

-X392158Y51218D01*

-X392224Y50942D01*

-X392332Y50680D01*

-X392480Y50439D01*

-X392664Y50223D01*

-X392880Y50039D01*

-X393121Y49891D01*

-X393383Y49783D01*

-X393659Y49717D01*

-X393941Y49694D01*

-X394223Y49717D01*

-X394499Y49783D01*

-X394761Y49891D01*

-X394938Y50000D01*

-Y39000D01*

-G37*

-G36*

-X390938D02*X387438D01*

-Y83195D01*

-X387441Y83194D01*

-X387723Y83217D01*

-X387999Y83283D01*

-X388261Y83391D01*

-X388502Y83539D01*

-X388718Y83723D01*

-X388902Y83939D01*

-X389050Y84180D01*

-X389158Y84442D01*

-X389224Y84718D01*

-X389241Y85000D01*

-X389224Y85282D01*

-X389158Y85558D01*

-X389050Y85820D01*

-X388902Y86061D01*

-X388718Y86277D01*

-X388502Y86461D01*

-X388261Y86609D01*

-X387999Y86717D01*

-X387723Y86783D01*

-X387441Y86806D01*

-X387438Y86805D01*

-Y87695D01*

-X387441Y87694D01*

-X387723Y87717D01*

-X387999Y87783D01*

-X388261Y87891D01*

-X388502Y88039D01*

-X388718Y88223D01*

-X388902Y88439D01*

-X389050Y88680D01*

-X389158Y88942D01*

-X389224Y89218D01*

-X389241Y89500D01*

-X389224Y89782D01*

-X389158Y90058D01*

-X389050Y90320D01*

-X388902Y90561D01*

-X388718Y90777D01*

-X388502Y90961D01*

-X388261Y91109D01*

-X387999Y91217D01*

-X387723Y91283D01*

-X387441Y91306D01*

-X387438Y91305D01*

-Y93695D01*

-X387441Y93694D01*

-X387723Y93717D01*

-X387999Y93783D01*

-X388261Y93891D01*

-X388502Y94039D01*

-X388718Y94223D01*

-X388902Y94439D01*

-X389050Y94680D01*

-X389158Y94942D01*

-X389224Y95218D01*

-X389241Y95500D01*

-X389224Y95782D01*

-X389158Y96058D01*

-X389050Y96320D01*

-X388902Y96561D01*

-X388718Y96777D01*

-X388502Y96961D01*

-X388261Y97109D01*

-X387999Y97217D01*

-X387723Y97283D01*

-X387441Y97306D01*

-X387438Y97305D01*

-Y99695D01*

-X387441Y99694D01*

-X387723Y99717D01*

-X387999Y99783D01*

-X388261Y99891D01*

-X388502Y100039D01*

-X388718Y100223D01*

-X388902Y100439D01*

-X389050Y100680D01*

-X389158Y100942D01*

-X389224Y101218D01*

-X389241Y101500D01*

-X389224Y101782D01*

-X389158Y102058D01*

-X389050Y102320D01*

-X388902Y102561D01*

-X388718Y102777D01*

-X388502Y102961D01*

-X388261Y103109D01*

-X387999Y103217D01*

-X387723Y103283D01*

-X387441Y103306D01*

-X387438Y103305D01*

-Y105695D01*

-X387441Y105694D01*

-X387723Y105717D01*

-X387999Y105783D01*

-X388261Y105891D01*

-X388502Y106039D01*

-X388718Y106223D01*

-X388902Y106439D01*

-X389050Y106680D01*

-X389158Y106942D01*

-X389224Y107218D01*

-X389241Y107500D01*

-X389224Y107782D01*

-X389158Y108058D01*

-X389050Y108320D01*

-X388902Y108561D01*

-X388718Y108777D01*

-X388502Y108961D01*

-X388261Y109109D01*

-X387999Y109217D01*

-X387723Y109283D01*

-X387441Y109306D01*

-X387438Y109305D01*

-Y111695D01*

-X387441Y111694D01*

-X387723Y111717D01*

-X387999Y111783D01*

-X388261Y111891D01*

-X388502Y112039D01*

-X388718Y112223D01*

-X388902Y112439D01*

-X389050Y112680D01*

-X389158Y112942D01*

-X389224Y113218D01*

-X389241Y113500D01*

-X389224Y113782D01*

-X389158Y114058D01*

-X389050Y114320D01*

-X388902Y114561D01*

-X388718Y114777D01*

-X388502Y114961D01*

-X388261Y115109D01*

-X387999Y115217D01*

-X387723Y115283D01*

-X387441Y115306D01*

-X387438Y115305D01*

-Y117695D01*

-X387441Y117694D01*

-X387723Y117717D01*

-X387999Y117783D01*

-X388261Y117891D01*

-X388502Y118039D01*

-X388718Y118223D01*

-X388902Y118439D01*

-X389050Y118680D01*

-X389158Y118942D01*

-X389224Y119218D01*

-X389241Y119500D01*

-X389224Y119782D01*

-X389158Y120058D01*

-X389050Y120320D01*

-X388902Y120561D01*

-X388718Y120777D01*

-X388502Y120961D01*

-X388261Y121109D01*

-X387999Y121217D01*

-X387723Y121283D01*

-X387441Y121306D01*

-X387438Y121305D01*

-Y124500D01*

-X390938D01*

-Y77805D01*

-X390659Y77783D01*

-X390383Y77717D01*

-X390121Y77609D01*

-X389880Y77461D01*

-X389664Y77277D01*

-X389480Y77061D01*

-X389332Y76820D01*

-X389224Y76558D01*

-X389158Y76282D01*

-X389135Y76000D01*

-X389158Y75718D01*

-X389224Y75442D01*

-X389332Y75180D01*

-X389480Y74939D01*

-X389664Y74723D01*

-X389880Y74539D01*

-X390121Y74391D01*

-X390383Y74283D01*

-X390659Y74217D01*

-X390938Y74195D01*

-Y73305D01*

-X390659Y73283D01*

-X390383Y73217D01*

-X390121Y73109D01*

-X389880Y72961D01*

-X389664Y72777D01*

-X389480Y72561D01*

-X389332Y72320D01*

-X389224Y72058D01*

-X389158Y71782D01*

-X389135Y71500D01*

-X389158Y71218D01*

-X389224Y70942D01*

-X389332Y70680D01*

-X389480Y70439D01*

-X389664Y70223D01*

-X389880Y70039D01*

-X390121Y69891D01*

-X390383Y69783D01*

-X390659Y69717D01*

-X390938Y69695D01*

-Y67730D01*

-X390883Y67717D01*

-X390621Y67609D01*

-X390380Y67461D01*

-X390164Y67277D01*

-X389980Y67061D01*

-X389832Y66820D01*

-X389724Y66558D01*

-X389658Y66282D01*

-X389635Y66000D01*

-X389658Y65718D01*

-X389724Y65442D01*

-X389832Y65180D01*

-X389980Y64939D01*

-X390164Y64723D01*

-X390380Y64539D01*

-X390621Y64391D01*

-X390883Y64283D01*

-X390938Y64270D01*

-Y45993D01*

-X390832Y45820D01*

-X390724Y45558D01*

-X390658Y45282D01*

-X390635Y45000D01*

-X390658Y44718D01*

-X390724Y44442D01*

-X390832Y44180D01*

-X390938Y44007D01*

-Y39000D01*

-G37*

-G36*

-X387438D02*X354438D01*

-Y83195D01*

-X354441Y83194D01*

-X354723Y83217D01*

-X354999Y83283D01*

-X355261Y83391D01*

-X355502Y83539D01*

-X355718Y83723D01*

-X355902Y83939D01*

-X356050Y84180D01*

-X356158Y84442D01*

-X356224Y84718D01*

-X356241Y85000D01*

-X356224Y85282D01*

-X356158Y85558D01*

-X356050Y85820D01*

-X355902Y86061D01*

-X355718Y86277D01*

-X355502Y86461D01*

-X355261Y86609D01*

-X354999Y86717D01*

-X354723Y86783D01*

-X354441Y86806D01*

-X354438Y86805D01*

-Y87695D01*

-X354441Y87694D01*

-X354723Y87717D01*

-X354999Y87783D01*

-X355261Y87891D01*

-X355502Y88039D01*

-X355718Y88223D01*

-X355902Y88439D01*

-X356050Y88680D01*

-X356158Y88942D01*

-X356224Y89218D01*

-X356241Y89500D01*

-X356224Y89782D01*

-X356158Y90058D01*

-X356050Y90320D01*

-X355902Y90561D01*

-X355718Y90777D01*

-X355502Y90961D01*

-X355261Y91109D01*

-X354999Y91217D01*

-X354723Y91283D01*

-X354441Y91306D01*

-X354438Y91305D01*

-Y93695D01*

-X354441Y93694D01*

-X354723Y93717D01*

-X354999Y93783D01*

-X355261Y93891D01*

-X355502Y94039D01*

-X355718Y94223D01*

-X355902Y94439D01*

-X356050Y94680D01*

-X356158Y94942D01*

-X356224Y95218D01*

-X356241Y95500D01*

-X356224Y95782D01*

-X356158Y96058D01*

-X356050Y96320D01*

-X355902Y96561D01*

-X355718Y96777D01*

-X355502Y96961D01*

-X355261Y97109D01*

-X354999Y97217D01*

-X354723Y97283D01*

-X354441Y97306D01*

-X354438Y97305D01*

-Y99695D01*

-X354441Y99694D01*

-X354723Y99717D01*

-X354999Y99783D01*

-X355261Y99891D01*

-X355502Y100039D01*

-X355718Y100223D01*

-X355902Y100439D01*

-X356050Y100680D01*

-X356158Y100942D01*

-X356224Y101218D01*

-X356241Y101500D01*

-X356224Y101782D01*

-X356158Y102058D01*

-X356050Y102320D01*

-X355902Y102561D01*

-X355718Y102777D01*

-X355502Y102961D01*

-X355261Y103109D01*

-X354999Y103217D01*

-X354723Y103283D01*

-X354441Y103306D01*

-X354438Y103305D01*

-Y105695D01*

-X354441Y105694D01*

-X354723Y105717D01*

-X354999Y105783D01*

-X355261Y105891D01*

-X355502Y106039D01*

-X355718Y106223D01*

-X355902Y106439D01*

-X356050Y106680D01*

-X356158Y106942D01*

-X356224Y107218D01*

-X356241Y107500D01*

-X356224Y107782D01*

-X356158Y108058D01*

-X356050Y108320D01*

-X355902Y108561D01*

-X355718Y108777D01*

-X355502Y108961D01*

-X355261Y109109D01*

-X354999Y109217D01*

-X354723Y109283D01*

-X354441Y109306D01*

-X354438Y109305D01*

-Y111695D01*

-X354441Y111694D01*

-X354723Y111717D01*

-X354999Y111783D01*

-X355261Y111891D01*

-X355502Y112039D01*

-X355718Y112223D01*

-X355902Y112439D01*

-X356050Y112680D01*

-X356158Y112942D01*

-X356224Y113218D01*

-X356241Y113500D01*

-X356224Y113782D01*

-X356158Y114058D01*

-X356050Y114320D01*

-X355902Y114561D01*

-X355718Y114777D01*

-X355502Y114961D01*

-X355261Y115109D01*

-X354999Y115217D01*

-X354723Y115283D01*

-X354441Y115306D01*

-X354438Y115305D01*

-Y117695D01*

-X354441Y117694D01*

-X354723Y117717D01*

-X354999Y117783D01*

-X355261Y117891D01*

-X355502Y118039D01*

-X355718Y118223D01*

-X355902Y118439D01*

-X356050Y118680D01*

-X356158Y118942D01*

-X356224Y119218D01*

-X356241Y119500D01*

-X356224Y119782D01*

-X356158Y120058D01*

-X356050Y120320D01*

-X355902Y120561D01*

-X355718Y120777D01*

-X355502Y120961D01*

-X355261Y121109D01*

-X354999Y121217D01*

-X354723Y121283D01*

-X354441Y121306D01*

-X354438Y121305D01*

-Y124500D01*

-X387438D01*

-Y121305D01*

-X387159Y121283D01*

-X386883Y121217D01*

-X386621Y121109D01*

-X386380Y120961D01*

-X386164Y120777D01*

-X385980Y120561D01*

-X385832Y120320D01*

-X385724Y120058D01*

-X385658Y119782D01*

-X385635Y119500D01*

-X385658Y119218D01*

-X385724Y118942D01*

-X385832Y118680D01*

-X385980Y118439D01*

-X386164Y118223D01*

-X386380Y118039D01*

-X386621Y117891D01*

-X386883Y117783D01*

-X387159Y117717D01*

-X387438Y117695D01*

-Y115305D01*

-X387159Y115283D01*

-X386883Y115217D01*

-X386621Y115109D01*

-X386380Y114961D01*

-X386164Y114777D01*

-X385980Y114561D01*

-X385832Y114320D01*

-X385724Y114058D01*

-X385658Y113782D01*

-X385635Y113500D01*

-X385658Y113218D01*

-X385724Y112942D01*

-X385832Y112680D01*

-X385980Y112439D01*

-X386164Y112223D01*

-X386380Y112039D01*

-X386621Y111891D01*

-X386883Y111783D01*

-X387159Y111717D01*

-X387438Y111695D01*

-Y109305D01*

-X387159Y109283D01*

-X386883Y109217D01*

-X386621Y109109D01*

-X386380Y108961D01*

-X386164Y108777D01*

-X385980Y108561D01*

-X385832Y108320D01*

-X385724Y108058D01*

-X385658Y107782D01*

-X385635Y107500D01*

-X385658Y107218D01*

-X385724Y106942D01*

-X385832Y106680D01*

-X385980Y106439D01*

-X386164Y106223D01*

-X386380Y106039D01*

-X386621Y105891D01*

-X386883Y105783D01*

-X387159Y105717D01*

-X387438Y105695D01*

-Y103305D01*

-X387159Y103283D01*

-X386883Y103217D01*

-X386621Y103109D01*

-X386380Y102961D01*

-X386164Y102777D01*

-X385980Y102561D01*

-X385832Y102320D01*

-X385724Y102058D01*

-X385658Y101782D01*

-X385635Y101500D01*

-X385658Y101218D01*

-X385724Y100942D01*

-X385832Y100680D01*

-X385980Y100439D01*

-X386164Y100223D01*

-X386380Y100039D01*

-X386621Y99891D01*

-X386883Y99783D01*

-X387159Y99717D01*

-X387438Y99695D01*

-Y97305D01*

-X387159Y97283D01*

-X386883Y97217D01*

-X386621Y97109D01*

-X386380Y96961D01*

-X386164Y96777D01*

-X385980Y96561D01*

-X385832Y96320D01*

-X385724Y96058D01*

-X385658Y95782D01*

-X385635Y95500D01*

-X385658Y95218D01*

-X385724Y94942D01*

-X385832Y94680D01*

-X385980Y94439D01*

-X386164Y94223D01*

-X386380Y94039D01*

-X386621Y93891D01*

-X386883Y93783D01*

-X387159Y93717D01*

-X387438Y93695D01*

-Y91305D01*

-X387159Y91283D01*

-X386883Y91217D01*

-X386621Y91109D01*

-X386380Y90961D01*

-X386164Y90777D01*

-X385980Y90561D01*

-X385832Y90320D01*

-X385724Y90058D01*

-X385658Y89782D01*

-X385635Y89500D01*

-X385658Y89218D01*

-X385724Y88942D01*

-X385832Y88680D01*

-X385980Y88439D01*

-X386164Y88223D01*

-X386380Y88039D01*

-X386621Y87891D01*

-X386883Y87783D01*

-X387159Y87717D01*

-X387438Y87695D01*

-Y86805D01*

-X387159Y86783D01*

-X386883Y86717D01*

-X386621Y86609D01*

-X386380Y86461D01*

-X386164Y86277D01*

-X385980Y86061D01*

-X385832Y85820D01*

-X385724Y85558D01*

-X385658Y85282D01*

-X385635Y85000D01*

-X385658Y84718D01*

-X385724Y84442D01*

-X385832Y84180D01*

-X385980Y83939D01*

-X386164Y83723D01*

-X386380Y83539D01*

-X386621Y83391D01*

-X386883Y83283D01*

-X387159Y83217D01*

-X387438Y83195D01*

-Y39000D01*

-G37*

-G36*

-X354438D02*X299441D01*

-Y44998D01*

-X299559Y45007D01*

-X299673Y45035D01*

-X299783Y45080D01*

-X299883Y45141D01*

-X299973Y45218D01*

-X300050Y45308D01*

-X300111Y45408D01*

-X300156Y45518D01*

-X300184Y45632D01*

-X300191Y45750D01*

-Y49250D01*

-X300184Y49368D01*

-X300156Y49482D01*

-X300111Y49592D01*

-X300050Y49692D01*

-X299973Y49782D01*

-X299883Y49859D01*

-X299783Y49920D01*

-X299673Y49965D01*

-X299559Y49993D01*

-X299441Y50002D01*

-Y54937D01*

-X299686Y55337D01*

-X299972Y56028D01*

-X300147Y56755D01*

-X300191Y57500D01*

-X300147Y58245D01*

-X299972Y58972D01*

-X299686Y59663D01*

-X299441Y60063D01*

-Y64937D01*

-X299686Y65337D01*

-X299972Y66028D01*

-X300147Y66755D01*

-X300191Y67500D01*

-X300147Y68245D01*

-X299972Y68972D01*

-X299686Y69663D01*

-X299441Y70063D01*

-Y76000D01*

-X313941D01*

-Y124500D01*

-X354438D01*

-Y121305D01*

-X354159Y121283D01*

-X353883Y121217D01*

-X353621Y121109D01*

-X353380Y120961D01*

-X353164Y120777D01*

-X352980Y120561D01*

-X352832Y120320D01*

-X352724Y120058D01*

-X352658Y119782D01*

-X352635Y119500D01*

-X352658Y119218D01*

-X352724Y118942D01*

-X352832Y118680D01*

-X352980Y118439D01*

-X353164Y118223D01*

-X353380Y118039D01*

-X353621Y117891D01*

-X353883Y117783D01*

-X354159Y117717D01*

-X354438Y117695D01*

-Y115305D01*

-X354159Y115283D01*

-X353883Y115217D01*

-X353621Y115109D01*

-X353380Y114961D01*

-X353164Y114777D01*

-X352980Y114561D01*

-X352832Y114320D01*

-X352724Y114058D01*

-X352658Y113782D01*

-X352635Y113500D01*

-X352658Y113218D01*

-X352724Y112942D01*

-X352832Y112680D01*

-X352980Y112439D01*

-X353164Y112223D01*

-X353380Y112039D01*

-X353621Y111891D01*

-X353883Y111783D01*

-X354159Y111717D01*

-X354438Y111695D01*

-Y109305D01*

-X354159Y109283D01*

-X353883Y109217D01*

-X353621Y109109D01*

-X353380Y108961D01*

-X353164Y108777D01*

-X352980Y108561D01*

-X352832Y108320D01*

-X352724Y108058D01*

-X352658Y107782D01*

-X352635Y107500D01*

-X352658Y107218D01*

-X352724Y106942D01*

-X352832Y106680D01*

-X352980Y106439D01*

-X353164Y106223D01*

-X353380Y106039D01*

-X353621Y105891D01*

-X353883Y105783D01*

-X354159Y105717D01*

-X354438Y105695D01*

-Y103305D01*

-X354159Y103283D01*

-X353883Y103217D01*

-X353621Y103109D01*

-X353380Y102961D01*

-X353164Y102777D01*

-X352980Y102561D01*

-X352832Y102320D01*

-X352724Y102058D01*

-X352658Y101782D01*

-X352635Y101500D01*

-X352658Y101218D01*

-X352724Y100942D01*

-X352832Y100680D01*

-X352980Y100439D01*

-X353164Y100223D01*

-X353380Y100039D01*

-X353621Y99891D01*

-X353883Y99783D01*

-X354159Y99717D01*

-X354438Y99695D01*

-Y97305D01*

-X354159Y97283D01*

-X353883Y97217D01*

-X353621Y97109D01*

-X353380Y96961D01*

-X353164Y96777D01*

-X352980Y96561D01*

-X352832Y96320D01*

-X352724Y96058D01*

-X352658Y95782D01*

-X352635Y95500D01*

-X352658Y95218D01*

-X352724Y94942D01*

-X352832Y94680D01*

-X352980Y94439D01*

-X353164Y94223D01*

-X353380Y94039D01*

-X353621Y93891D01*

-X353883Y93783D01*

-X354159Y93717D01*

-X354438Y93695D01*

-Y91305D01*

-X354159Y91283D01*

-X353883Y91217D01*

-X353621Y91109D01*

-X353380Y90961D01*

-X353164Y90777D01*

-X352980Y90561D01*

-X352832Y90320D01*

-X352724Y90058D01*

-X352658Y89782D01*

-X352635Y89500D01*

-X352658Y89218D01*

-X352724Y88942D01*

-X352832Y88680D01*

-X352980Y88439D01*

-X353164Y88223D01*

-X353380Y88039D01*

-X353621Y87891D01*

-X353883Y87783D01*

-X354159Y87717D01*

-X354438Y87695D01*

-Y86805D01*

-X354159Y86783D01*

-X353883Y86717D01*

-X353621Y86609D01*

-X353380Y86461D01*

-X353164Y86277D01*

-X352980Y86061D01*

-X352832Y85820D01*

-X352724Y85558D01*

-X352658Y85282D01*

-X352635Y85000D01*

-X352658Y84718D01*

-X352724Y84442D01*

-X352832Y84180D01*

-X352980Y83939D01*

-X353164Y83723D01*

-X353380Y83539D01*

-X353621Y83391D01*

-X353883Y83283D01*

-X354159Y83217D01*

-X354438Y83195D01*

-Y39000D01*

-G37*

-G36*

-X299441Y70063D02*X299296Y70301D01*

-X298810Y70869D01*

-X298242Y71355D01*

-X297604Y71745D01*

-X296913Y72031D01*

-X296186Y72206D01*

-X295441Y72265D01*

-Y76000D01*

-X299441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X299296Y60301D01*

-X298810Y60869D01*

-X298242Y61355D01*

-X297604Y61745D01*

-X296913Y62031D01*

-X296186Y62206D01*

-X295441Y62265D01*

-Y62735D01*

-X296186Y62794D01*

-X296913Y62969D01*

-X297604Y63255D01*

-X298242Y63645D01*

-X298810Y64131D01*

-X299296Y64699D01*

-X299441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X295441D01*

-Y42750D01*

-X297191D01*

-X297309Y42757D01*

-X297423Y42785D01*

-X297533Y42830D01*

-X297633Y42891D01*

-X297723Y42968D01*

-X297800Y43058D01*

-X297861Y43158D01*

-X297906Y43268D01*

-X297934Y43382D01*

-X297943Y43500D01*

-X297934Y43618D01*

-X297906Y43732D01*

-X297861Y43842D01*

-X297800Y43942D01*

-X297723Y44032D01*

-X297633Y44109D01*

-X297533Y44170D01*

-X297423Y44215D01*

-X297309Y44243D01*

-X297191Y44250D01*

-X295441D01*

-Y50750D01*

-X297191D01*

-X297309Y50757D01*

-X297423Y50785D01*

-X297533Y50830D01*

-X297633Y50891D01*

-X297723Y50968D01*

-X297800Y51058D01*

-X297861Y51158D01*

-X297906Y51268D01*

-X297934Y51382D01*

-X297943Y51500D01*

-X297934Y51618D01*

-X297906Y51732D01*

-X297861Y51842D01*

-X297800Y51942D01*

-X297723Y52032D01*

-X297633Y52109D01*

-X297533Y52170D01*

-X297423Y52215D01*

-X297309Y52243D01*

-X297191Y52250D01*

-X295441D01*

-Y52735D01*

-X296186Y52794D01*

-X296913Y52969D01*

-X297604Y53255D01*

-X298242Y53645D01*

-X298810Y54131D01*

-X299296Y54699D01*

-X299441Y54937D01*

-Y50002D01*

-X299323Y49993D01*

-X299209Y49965D01*

-X299099Y49920D01*

-X298999Y49859D01*

-X298909Y49782D01*

-X298832Y49692D01*

-X298771Y49592D01*

-X298726Y49482D01*

-X298698Y49368D01*

-X298691Y49250D01*

-Y45750D01*

-X298698Y45632D01*

-X298726Y45518D01*

-X298771Y45408D01*

-X298832Y45308D01*

-X298909Y45218D01*

-X298999Y45141D01*

-X299099Y45080D01*

-X299209Y45035D01*

-X299323Y45007D01*

-X299441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X291441Y64937D02*X291586Y64699D01*

-X292072Y64131D01*

-X292640Y63645D01*

-X293278Y63255D01*

-X293969Y62969D01*

-X294696Y62794D01*

-X295441Y62735D01*

-X295441D01*

-Y62265D01*

-X295441D01*

-X294696Y62206D01*

-X293969Y62031D01*

-X293278Y61745D01*

-X292640Y61355D01*

-X292072Y60869D01*

-X291586Y60301D01*

-X291441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X295441D01*

-Y72265D01*

-X295441D01*

-X294696Y72206D01*

-X293969Y72031D01*

-X293278Y71745D01*

-X292640Y71355D01*

-X292072Y70869D01*

-X291586Y70301D01*

-X291441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X295441Y39000D02*X291441D01*

-Y44998D01*

-X291559Y45007D01*

-X291673Y45035D01*

-X291783Y45080D01*

-X291883Y45141D01*

-X291973Y45218D01*

-X292050Y45308D01*

-X292111Y45408D01*

-X292156Y45518D01*

-X292184Y45632D01*

-X292191Y45750D01*

-Y49250D01*

-X292184Y49368D01*

-X292156Y49482D01*

-X292111Y49592D01*

-X292050Y49692D01*

-X291973Y49782D01*

-X291883Y49859D01*

-X291783Y49920D01*

-X291673Y49965D01*

-X291559Y49993D01*

-X291441Y50002D01*

-Y54937D01*

-X291586Y54699D01*

-X292072Y54131D01*

-X292640Y53645D01*

-X293278Y53255D01*

-X293969Y52969D01*

-X294696Y52794D01*

-X295441Y52735D01*

-X295441D01*

-Y52250D01*

-X293691D01*

-X293573Y52243D01*

-X293459Y52215D01*

-X293349Y52170D01*

-X293249Y52109D01*

-X293159Y52032D01*

-X293082Y51942D01*

-X293021Y51842D01*

-X292976Y51732D01*

-X292948Y51618D01*

-X292939Y51500D01*

-X292948Y51382D01*

-X292976Y51268D01*

-X293021Y51158D01*

-X293082Y51058D01*

-X293159Y50968D01*

-X293249Y50891D01*

-X293349Y50830D01*

-X293459Y50785D01*

-X293573Y50757D01*

-X293691Y50750D01*

-X295441D01*

-Y44250D01*

-X293691D01*

-X293573Y44243D01*

-X293459Y44215D01*

-X293349Y44170D01*

-X293249Y44109D01*

-X293159Y44032D01*

-X293082Y43942D01*

-X293021Y43842D01*

-X292976Y43732D01*

-X292948Y43618D01*

-X292939Y43500D01*

-X292948Y43382D01*

-X292976Y43268D01*

-X293021Y43158D01*

-X293082Y43058D01*

-X293159Y42968D01*

-X293249Y42891D01*

-X293349Y42830D01*

-X293459Y42785D01*

-X293573Y42757D01*

-X293691Y42750D01*

-X295441D01*

-Y39000D01*

-G37*

-G36*

-X291441D02*X269441D01*

-Y44998D01*

-X269559Y45007D01*

-X269673Y45035D01*

-X269783Y45080D01*

-X269883Y45141D01*

-X269973Y45218D01*

-X270050Y45308D01*

-X270111Y45408D01*

-X270156Y45518D01*

-X270184Y45632D01*

-X270191Y45750D01*

-Y49250D01*

-X270184Y49368D01*

-X270156Y49482D01*

-X270111Y49592D01*

-X270050Y49692D01*

-X269973Y49782D01*

-X269883Y49859D01*

-X269783Y49920D01*

-X269673Y49965D01*

-X269559Y49993D01*

-X269441Y50002D01*

-Y54937D01*

-X269686Y55337D01*

-X269972Y56028D01*

-X270147Y56755D01*

-X270191Y57500D01*

-X270147Y58245D01*

-X269972Y58972D01*

-X269686Y59663D01*

-X269441Y60063D01*

-Y64937D01*

-X269686Y65337D01*

-X269972Y66028D01*

-X270147Y66755D01*

-X270191Y67500D01*

-X270147Y68245D01*

-X269972Y68972D01*

-X269686Y69663D01*

-X269441Y70063D01*

-Y76000D01*

-X291441D01*

-Y70063D01*

-X291196Y69663D01*

-X290910Y68972D01*

-X290735Y68245D01*

-X290676Y67500D01*

-X290735Y66755D01*

-X290910Y66028D01*

-X291196Y65337D01*

-X291441Y64937D01*

-Y60063D01*

-X291196Y59663D01*

-X290910Y58972D01*

-X290735Y58245D01*

-X290676Y57500D01*

-X290735Y56755D01*

-X290910Y56028D01*

-X291196Y55337D01*

-X291441Y54937D01*

-Y50002D01*

-X291323Y49993D01*

-X291209Y49965D01*

-X291099Y49920D01*

-X290999Y49859D01*

-X290909Y49782D01*

-X290832Y49692D01*

-X290771Y49592D01*

-X290726Y49482D01*

-X290698Y49368D01*

-X290691Y49250D01*

-Y45750D01*

-X290698Y45632D01*

-X290726Y45518D01*

-X290771Y45408D01*

-X290832Y45308D01*

-X290909Y45218D01*

-X290999Y45141D01*

-X291099Y45080D01*

-X291209Y45035D01*

-X291323Y45007D01*

-X291441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X269441Y70063D02*X269296Y70301D01*

-X268810Y70869D01*

-X268242Y71355D01*

-X267604Y71745D01*

-X266913Y72031D01*

-X266186Y72206D01*

-X265441Y72265D01*

-Y76000D01*

-X269441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X269296Y60301D01*

-X268810Y60869D01*

-X268242Y61355D01*

-X267604Y61745D01*

-X266913Y62031D01*

-X266186Y62206D01*

-X265441Y62265D01*

-Y62735D01*

-X266186Y62794D01*

-X266913Y62969D01*

-X267604Y63255D01*

-X268242Y63645D01*

-X268810Y64131D01*

-X269296Y64699D01*

-X269441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X265441D01*

-Y42750D01*

-X267191D01*

-X267309Y42757D01*

-X267423Y42785D01*

-X267533Y42830D01*

-X267633Y42891D01*

-X267723Y42968D01*

-X267800Y43058D01*

-X267861Y43158D01*

-X267906Y43268D01*

-X267934Y43382D01*

-X267943Y43500D01*

-X267934Y43618D01*

-X267906Y43732D01*

-X267861Y43842D01*

-X267800Y43942D01*

-X267723Y44032D01*

-X267633Y44109D01*

-X267533Y44170D01*

-X267423Y44215D01*

-X267309Y44243D01*

-X267191Y44250D01*

-X265441D01*

-Y50750D01*

-X267191D01*

-X267309Y50757D01*

-X267423Y50785D01*

-X267533Y50830D01*

-X267633Y50891D01*

-X267723Y50968D01*

-X267800Y51058D01*

-X267861Y51158D01*

-X267906Y51268D01*

-X267934Y51382D01*

-X267943Y51500D01*

-X267934Y51618D01*

-X267906Y51732D01*

-X267861Y51842D01*

-X267800Y51942D01*

-X267723Y52032D01*

-X267633Y52109D01*

-X267533Y52170D01*

-X267423Y52215D01*

-X267309Y52243D01*

-X267191Y52250D01*

-X265441D01*

-Y52735D01*

-X266186Y52794D01*

-X266913Y52969D01*

-X267604Y53255D01*

-X268242Y53645D01*

-X268810Y54131D01*

-X269296Y54699D01*

-X269441Y54937D01*

-Y50002D01*

-X269323Y49993D01*

-X269209Y49965D01*

-X269099Y49920D01*

-X268999Y49859D01*

-X268909Y49782D01*

-X268832Y49692D01*

-X268771Y49592D01*

-X268726Y49482D01*

-X268698Y49368D01*

-X268691Y49250D01*

-Y45750D01*

-X268698Y45632D01*

-X268726Y45518D01*

-X268771Y45408D01*

-X268832Y45308D01*

-X268909Y45218D01*

-X268999Y45141D01*

-X269099Y45080D01*

-X269209Y45035D01*

-X269323Y45007D01*

-X269441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X261441Y64937D02*X261586Y64699D01*

-X262072Y64131D01*

-X262640Y63645D01*

-X263278Y63255D01*

-X263969Y62969D01*

-X264696Y62794D01*

-X265441Y62735D01*

-X265441D01*

-Y62265D01*

-X265441D01*

-X264696Y62206D01*

-X263969Y62031D01*

-X263278Y61745D01*

-X262640Y61355D01*

-X262072Y60869D01*

-X261586Y60301D01*

-X261441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X265441D01*

-Y72265D01*

-X265441D01*

-X264696Y72206D01*

-X263969Y72031D01*

-X263278Y71745D01*

-X262640Y71355D01*

-X262072Y70869D01*

-X261586Y70301D01*

-X261441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X265441Y39000D02*X261441D01*

-Y44998D01*

-X261559Y45007D01*

-X261673Y45035D01*

-X261783Y45080D01*

-X261883Y45141D01*

-X261973Y45218D01*

-X262050Y45308D01*

-X262111Y45408D01*

-X262156Y45518D01*

-X262184Y45632D01*

-X262191Y45750D01*

-Y49250D01*

-X262184Y49368D01*

-X262156Y49482D01*

-X262111Y49592D01*

-X262050Y49692D01*

-X261973Y49782D01*

-X261883Y49859D01*

-X261783Y49920D01*

-X261673Y49965D01*

-X261559Y49993D01*

-X261441Y50002D01*

-Y54937D01*

-X261586Y54699D01*

-X262072Y54131D01*

-X262640Y53645D01*

-X263278Y53255D01*

-X263969Y52969D01*

-X264696Y52794D01*

-X265441Y52735D01*

-X265441D01*

-Y52250D01*

-X263691D01*

-X263573Y52243D01*

-X263459Y52215D01*

-X263349Y52170D01*

-X263249Y52109D01*

-X263159Y52032D01*

-X263082Y51942D01*

-X263021Y51842D01*

-X262976Y51732D01*

-X262948Y51618D01*

-X262939Y51500D01*

-X262948Y51382D01*

-X262976Y51268D01*

-X263021Y51158D01*

-X263082Y51058D01*

-X263159Y50968D01*

-X263249Y50891D01*

-X263349Y50830D01*

-X263459Y50785D01*

-X263573Y50757D01*

-X263691Y50750D01*

-X265441D01*

-Y44250D01*

-X263691D01*

-X263573Y44243D01*

-X263459Y44215D01*

-X263349Y44170D01*

-X263249Y44109D01*

-X263159Y44032D01*

-X263082Y43942D01*

-X263021Y43842D01*

-X262976Y43732D01*

-X262948Y43618D01*

-X262939Y43500D01*

-X262948Y43382D01*

-X262976Y43268D01*

-X263021Y43158D01*

-X263082Y43058D01*

-X263159Y42968D01*

-X263249Y42891D01*

-X263349Y42830D01*

-X263459Y42785D01*

-X263573Y42757D01*

-X263691Y42750D01*

-X265441D01*

-Y39000D01*

-G37*

-G36*

-X261441D02*X239441D01*

-Y44998D01*

-X239559Y45007D01*

-X239673Y45035D01*

-X239783Y45080D01*

-X239883Y45141D01*

-X239973Y45218D01*

-X240050Y45308D01*

-X240111Y45408D01*

-X240156Y45518D01*

-X240184Y45632D01*

-X240191Y45750D01*

-Y49250D01*

-X240184Y49368D01*

-X240156Y49482D01*

-X240111Y49592D01*

-X240050Y49692D01*

-X239973Y49782D01*

-X239883Y49859D01*

-X239783Y49920D01*

-X239673Y49965D01*

-X239559Y49993D01*

-X239441Y50002D01*

-Y54937D01*

-X239686Y55337D01*

-X239972Y56028D01*

-X240147Y56755D01*

-X240191Y57500D01*

-X240147Y58245D01*

-X239972Y58972D01*

-X239686Y59663D01*

-X239441Y60063D01*

-Y64937D01*

-X239686Y65337D01*

-X239972Y66028D01*

-X240147Y66755D01*

-X240191Y67500D01*

-X240147Y68245D01*

-X239972Y68972D01*

-X239686Y69663D01*

-X239441Y70063D01*

-Y76000D01*

-X261441D01*

-Y70063D01*

-X261196Y69663D01*

-X260910Y68972D01*

-X260735Y68245D01*

-X260676Y67500D01*

-X260735Y66755D01*

-X260910Y66028D01*

-X261196Y65337D01*

-X261441Y64937D01*

-Y60063D01*

-X261196Y59663D01*

-X260910Y58972D01*

-X260735Y58245D01*

-X260676Y57500D01*

-X260735Y56755D01*

-X260910Y56028D01*

-X261196Y55337D01*

-X261441Y54937D01*

-Y50002D01*

-X261323Y49993D01*

-X261209Y49965D01*

-X261099Y49920D01*

-X260999Y49859D01*

-X260909Y49782D01*

-X260832Y49692D01*

-X260771Y49592D01*

-X260726Y49482D01*

-X260698Y49368D01*

-X260691Y49250D01*

-Y45750D01*

-X260698Y45632D01*

-X260726Y45518D01*

-X260771Y45408D01*

-X260832Y45308D01*

-X260909Y45218D01*

-X260999Y45141D01*

-X261099Y45080D01*

-X261209Y45035D01*

-X261323Y45007D01*

-X261441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X239441Y70063D02*X239296Y70301D01*

-X238810Y70869D01*

-X238242Y71355D01*

-X237604Y71745D01*

-X236913Y72031D01*

-X236186Y72206D01*

-X235441Y72265D01*

-Y76000D01*

-X239441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X239296Y60301D01*

-X238810Y60869D01*

-X238242Y61355D01*

-X237604Y61745D01*

-X236913Y62031D01*

-X236186Y62206D01*

-X235441Y62265D01*

-Y62735D01*

-X236186Y62794D01*

-X236913Y62969D01*

-X237604Y63255D01*

-X238242Y63645D01*

-X238810Y64131D01*

-X239296Y64699D01*

-X239441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X235441D01*

-Y42750D01*

-X237191D01*

-X237309Y42757D01*

-X237423Y42785D01*

-X237533Y42830D01*

-X237633Y42891D01*

-X237723Y42968D01*

-X237800Y43058D01*

-X237861Y43158D01*

-X237906Y43268D01*

-X237934Y43382D01*

-X237943Y43500D01*

-X237934Y43618D01*

-X237906Y43732D01*

-X237861Y43842D01*

-X237800Y43942D01*

-X237723Y44032D01*

-X237633Y44109D01*

-X237533Y44170D01*

-X237423Y44215D01*

-X237309Y44243D01*

-X237191Y44250D01*

-X235441D01*

-Y50750D01*

-X237191D01*

-X237309Y50757D01*

-X237423Y50785D01*

-X237533Y50830D01*

-X237633Y50891D01*

-X237723Y50968D01*

-X237800Y51058D01*

-X237861Y51158D01*

-X237906Y51268D01*

-X237934Y51382D01*

-X237943Y51500D01*

-X237934Y51618D01*

-X237906Y51732D01*

-X237861Y51842D01*

-X237800Y51942D01*

-X237723Y52032D01*

-X237633Y52109D01*

-X237533Y52170D01*

-X237423Y52215D01*

-X237309Y52243D01*

-X237191Y52250D01*

-X235441D01*

-Y52735D01*

-X236186Y52794D01*

-X236913Y52969D01*

-X237604Y53255D01*

-X238242Y53645D01*

-X238810Y54131D01*

-X239296Y54699D01*

-X239441Y54937D01*

-Y50002D01*

-X239323Y49993D01*

-X239209Y49965D01*

-X239099Y49920D01*

-X238999Y49859D01*

-X238909Y49782D01*

-X238832Y49692D01*

-X238771Y49592D01*

-X238726Y49482D01*

-X238698Y49368D01*

-X238691Y49250D01*

-Y45750D01*

-X238698Y45632D01*

-X238726Y45518D01*

-X238771Y45408D01*

-X238832Y45308D01*

-X238909Y45218D01*

-X238999Y45141D01*

-X239099Y45080D01*

-X239209Y45035D01*

-X239323Y45007D01*

-X239441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X231441Y64937D02*X231586Y64699D01*

-X232072Y64131D01*

-X232640Y63645D01*

-X233278Y63255D01*

-X233969Y62969D01*

-X234696Y62794D01*

-X235441Y62735D01*

-X235441D01*

-Y62265D01*

-X235441D01*

-X234696Y62206D01*

-X233969Y62031D01*

-X233278Y61745D01*

-X232640Y61355D01*

-X232072Y60869D01*

-X231586Y60301D01*

-X231441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X235441D01*

-Y72265D01*

-X235441D01*

-X234696Y72206D01*

-X233969Y72031D01*

-X233278Y71745D01*

-X232640Y71355D01*

-X232072Y70869D01*

-X231586Y70301D01*

-X231441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X235441Y39000D02*X231441D01*

-Y44998D01*

-X231559Y45007D01*

-X231673Y45035D01*

-X231783Y45080D01*

-X231883Y45141D01*

-X231973Y45218D01*

-X232050Y45308D01*

-X232111Y45408D01*

-X232156Y45518D01*

-X232184Y45632D01*

-X232191Y45750D01*

-Y49250D01*

-X232184Y49368D01*

-X232156Y49482D01*

-X232111Y49592D01*

-X232050Y49692D01*

-X231973Y49782D01*

-X231883Y49859D01*

-X231783Y49920D01*

-X231673Y49965D01*

-X231559Y49993D01*

-X231441Y50002D01*

-Y54937D01*

-X231586Y54699D01*

-X232072Y54131D01*

-X232640Y53645D01*

-X233278Y53255D01*

-X233969Y52969D01*

-X234696Y52794D01*

-X235441Y52735D01*

-X235441D01*

-Y52250D01*

-X233691D01*

-X233573Y52243D01*

-X233459Y52215D01*

-X233349Y52170D01*

-X233249Y52109D01*

-X233159Y52032D01*

-X233082Y51942D01*

-X233021Y51842D01*

-X232976Y51732D01*

-X232948Y51618D01*

-X232939Y51500D01*

-X232948Y51382D01*

-X232976Y51268D01*

-X233021Y51158D01*

-X233082Y51058D01*

-X233159Y50968D01*

-X233249Y50891D01*

-X233349Y50830D01*

-X233459Y50785D01*

-X233573Y50757D01*

-X233691Y50750D01*

-X235441D01*

-Y44250D01*

-X233691D01*

-X233573Y44243D01*

-X233459Y44215D01*

-X233349Y44170D01*

-X233249Y44109D01*

-X233159Y44032D01*

-X233082Y43942D01*

-X233021Y43842D01*

-X232976Y43732D01*

-X232948Y43618D01*

-X232939Y43500D01*

-X232948Y43382D01*

-X232976Y43268D01*

-X233021Y43158D01*

-X233082Y43058D01*

-X233159Y42968D01*

-X233249Y42891D01*

-X233349Y42830D01*

-X233459Y42785D01*

-X233573Y42757D01*

-X233691Y42750D01*

-X235441D01*

-Y39000D01*

-G37*

-G36*

-X231441D02*X209441D01*

-Y44998D01*

-X209559Y45007D01*

-X209673Y45035D01*

-X209783Y45080D01*

-X209883Y45141D01*

-X209973Y45218D01*

-X210050Y45308D01*

-X210111Y45408D01*

-X210156Y45518D01*

-X210184Y45632D01*

-X210191Y45750D01*

-Y49250D01*

-X210184Y49368D01*

-X210156Y49482D01*

-X210111Y49592D01*

-X210050Y49692D01*

-X209973Y49782D01*

-X209883Y49859D01*

-X209783Y49920D01*

-X209673Y49965D01*

-X209559Y49993D01*

-X209441Y50002D01*

-Y54937D01*

-X209686Y55337D01*

-X209972Y56028D01*

-X210147Y56755D01*

-X210191Y57500D01*

-X210147Y58245D01*

-X209972Y58972D01*

-X209686Y59663D01*

-X209441Y60063D01*

-Y64937D01*

-X209686Y65337D01*

-X209972Y66028D01*

-X210147Y66755D01*

-X210191Y67500D01*

-X210147Y68245D01*

-X209972Y68972D01*

-X209686Y69663D01*

-X209441Y70063D01*

-Y76000D01*

-X231441D01*

-Y70063D01*

-X231196Y69663D01*

-X230910Y68972D01*

-X230735Y68245D01*

-X230676Y67500D01*

-X230735Y66755D01*

-X230910Y66028D01*

-X231196Y65337D01*

-X231441Y64937D01*

-Y60063D01*

-X231196Y59663D01*

-X230910Y58972D01*

-X230735Y58245D01*

-X230676Y57500D01*

-X230735Y56755D01*

-X230910Y56028D01*

-X231196Y55337D01*

-X231441Y54937D01*

-Y50002D01*

-X231323Y49993D01*

-X231209Y49965D01*

-X231099Y49920D01*

-X230999Y49859D01*

-X230909Y49782D01*

-X230832Y49692D01*

-X230771Y49592D01*

-X230726Y49482D01*

-X230698Y49368D01*

-X230691Y49250D01*

-Y45750D01*

-X230698Y45632D01*

-X230726Y45518D01*

-X230771Y45408D01*

-X230832Y45308D01*

-X230909Y45218D01*

-X230999Y45141D01*

-X231099Y45080D01*

-X231209Y45035D01*

-X231323Y45007D01*

-X231441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X209441Y70063D02*X209296Y70301D01*

-X208810Y70869D01*

-X208242Y71355D01*

-X207604Y71745D01*

-X206913Y72031D01*

-X206186Y72206D01*

-X205441Y72265D01*

-Y76000D01*

-X209441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X209296Y60301D01*

-X208810Y60869D01*

-X208242Y61355D01*

-X207604Y61745D01*

-X206913Y62031D01*

-X206186Y62206D01*

-X205441Y62265D01*

-Y62735D01*

-X206186Y62794D01*

-X206913Y62969D01*

-X207604Y63255D01*

-X208242Y63645D01*

-X208810Y64131D01*

-X209296Y64699D01*

-X209441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X205441D01*

-Y42750D01*

-X207191D01*

-X207309Y42757D01*

-X207423Y42785D01*

-X207533Y42830D01*

-X207633Y42891D01*

-X207723Y42968D01*

-X207800Y43058D01*

-X207861Y43158D01*

-X207906Y43268D01*

-X207934Y43382D01*

-X207943Y43500D01*

-X207934Y43618D01*

-X207906Y43732D01*

-X207861Y43842D01*

-X207800Y43942D01*

-X207723Y44032D01*

-X207633Y44109D01*

-X207533Y44170D01*

-X207423Y44215D01*

-X207309Y44243D01*

-X207191Y44250D01*

-X205441D01*

-Y50750D01*

-X207191D01*

-X207309Y50757D01*

-X207423Y50785D01*

-X207533Y50830D01*

-X207633Y50891D01*

-X207723Y50968D01*

-X207800Y51058D01*

-X207861Y51158D01*

-X207906Y51268D01*

-X207934Y51382D01*

-X207943Y51500D01*

-X207934Y51618D01*

-X207906Y51732D01*

-X207861Y51842D01*

-X207800Y51942D01*

-X207723Y52032D01*

-X207633Y52109D01*

-X207533Y52170D01*

-X207423Y52215D01*

-X207309Y52243D01*

-X207191Y52250D01*

-X205441D01*

-Y52735D01*

-X206186Y52794D01*

-X206913Y52969D01*

-X207604Y53255D01*

-X208242Y53645D01*

-X208810Y54131D01*

-X209296Y54699D01*

-X209441Y54937D01*

-Y50002D01*

-X209323Y49993D01*

-X209209Y49965D01*

-X209099Y49920D01*

-X208999Y49859D01*

-X208909Y49782D01*

-X208832Y49692D01*

-X208771Y49592D01*

-X208726Y49482D01*

-X208698Y49368D01*

-X208691Y49250D01*

-Y45750D01*

-X208698Y45632D01*

-X208726Y45518D01*

-X208771Y45408D01*

-X208832Y45308D01*

-X208909Y45218D01*

-X208999Y45141D01*

-X209099Y45080D01*

-X209209Y45035D01*

-X209323Y45007D01*

-X209441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X201441Y64937D02*X201586Y64699D01*

-X202072Y64131D01*

-X202640Y63645D01*

-X203278Y63255D01*

-X203969Y62969D01*

-X204696Y62794D01*

-X205441Y62735D01*

-X205441D01*

-Y62265D01*

-X205441D01*

-X204696Y62206D01*

-X203969Y62031D01*

-X203278Y61745D01*

-X202640Y61355D01*

-X202072Y60869D01*

-X201586Y60301D01*

-X201441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X205441D01*

-Y72265D01*

-X205441D01*

-X204696Y72206D01*

-X203969Y72031D01*

-X203278Y71745D01*

-X202640Y71355D01*

-X202072Y70869D01*

-X201586Y70301D01*

-X201441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X205441Y39000D02*X201441D01*

-Y44998D01*

-X201559Y45007D01*

-X201673Y45035D01*

-X201783Y45080D01*

-X201883Y45141D01*

-X201973Y45218D01*

-X202050Y45308D01*

-X202111Y45408D01*

-X202156Y45518D01*

-X202184Y45632D01*

-X202191Y45750D01*

-Y49250D01*

-X202184Y49368D01*

-X202156Y49482D01*

-X202111Y49592D01*

-X202050Y49692D01*

-X201973Y49782D01*

-X201883Y49859D01*

-X201783Y49920D01*

-X201673Y49965D01*

-X201559Y49993D01*

-X201441Y50002D01*

-Y54937D01*

-X201586Y54699D01*

-X202072Y54131D01*

-X202640Y53645D01*

-X203278Y53255D01*

-X203969Y52969D01*

-X204696Y52794D01*

-X205441Y52735D01*

-X205441D01*

-Y52250D01*

-X203691D01*

-X203573Y52243D01*

-X203459Y52215D01*

-X203349Y52170D01*

-X203249Y52109D01*

-X203159Y52032D01*

-X203082Y51942D01*

-X203021Y51842D01*

-X202976Y51732D01*

-X202948Y51618D01*

-X202939Y51500D01*

-X202948Y51382D01*

-X202976Y51268D01*

-X203021Y51158D01*

-X203082Y51058D01*

-X203159Y50968D01*

-X203249Y50891D01*

-X203349Y50830D01*

-X203459Y50785D01*

-X203573Y50757D01*

-X203691Y50750D01*

-X205441D01*

-Y44250D01*

-X203691D01*

-X203573Y44243D01*

-X203459Y44215D01*

-X203349Y44170D01*

-X203249Y44109D01*

-X203159Y44032D01*

-X203082Y43942D01*

-X203021Y43842D01*

-X202976Y43732D01*

-X202948Y43618D01*

-X202939Y43500D01*

-X202948Y43382D01*

-X202976Y43268D01*

-X203021Y43158D01*

-X203082Y43058D01*

-X203159Y42968D01*

-X203249Y42891D01*

-X203349Y42830D01*

-X203459Y42785D01*

-X203573Y42757D01*

-X203691Y42750D01*

-X205441D01*

-Y39000D01*

-G37*

-G36*

-X201441D02*X179441D01*

-Y44998D01*

-X179559Y45007D01*

-X179673Y45035D01*

-X179783Y45080D01*

-X179883Y45141D01*

-X179973Y45218D01*

-X180050Y45308D01*

-X180111Y45408D01*

-X180156Y45518D01*

-X180184Y45632D01*

-X180191Y45750D01*

-Y49250D01*

-X180184Y49368D01*

-X180156Y49482D01*

-X180111Y49592D01*

-X180050Y49692D01*

-X179973Y49782D01*

-X179883Y49859D01*

-X179783Y49920D01*

-X179673Y49965D01*

-X179559Y49993D01*

-X179441Y50002D01*

-Y54937D01*

-X179686Y55337D01*

-X179972Y56028D01*

-X180147Y56755D01*

-X180191Y57500D01*

-X180147Y58245D01*

-X179972Y58972D01*

-X179686Y59663D01*

-X179441Y60063D01*

-Y64937D01*

-X179686Y65337D01*

-X179972Y66028D01*

-X180147Y66755D01*

-X180191Y67500D01*

-X180147Y68245D01*

-X179972Y68972D01*

-X179686Y69663D01*

-X179441Y70063D01*

-Y76000D01*

-X201441D01*

-Y70063D01*

-X201196Y69663D01*

-X200910Y68972D01*

-X200735Y68245D01*

-X200676Y67500D01*

-X200735Y66755D01*

-X200910Y66028D01*

-X201196Y65337D01*

-X201441Y64937D01*

-Y60063D01*

-X201196Y59663D01*

-X200910Y58972D01*

-X200735Y58245D01*

-X200676Y57500D01*

-X200735Y56755D01*

-X200910Y56028D01*

-X201196Y55337D01*

-X201441Y54937D01*

-Y50002D01*

-X201323Y49993D01*

-X201209Y49965D01*

-X201099Y49920D01*

-X200999Y49859D01*

-X200909Y49782D01*

-X200832Y49692D01*

-X200771Y49592D01*

-X200726Y49482D01*

-X200698Y49368D01*

-X200691Y49250D01*

-Y45750D01*

-X200698Y45632D01*

-X200726Y45518D01*

-X200771Y45408D01*

-X200832Y45308D01*

-X200909Y45218D01*

-X200999Y45141D01*

-X201099Y45080D01*

-X201209Y45035D01*

-X201323Y45007D01*

-X201441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X179441Y70063D02*X179296Y70301D01*

-X178810Y70869D01*

-X178242Y71355D01*

-X177604Y71745D01*

-X176913Y72031D01*

-X176186Y72206D01*

-X175441Y72265D01*

-Y76000D01*

-X179441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X179296Y60301D01*

-X178810Y60869D01*

-X178242Y61355D01*

-X177604Y61745D01*

-X176913Y62031D01*

-X176186Y62206D01*

-X175441Y62265D01*

-Y62735D01*

-X176186Y62794D01*

-X176913Y62969D01*

-X177604Y63255D01*

-X178242Y63645D01*

-X178810Y64131D01*

-X179296Y64699D01*

-X179441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X175441D01*

-Y42750D01*

-X177191D01*

-X177309Y42757D01*

-X177423Y42785D01*

-X177533Y42830D01*

-X177633Y42891D01*

-X177723Y42968D01*

-X177800Y43058D01*

-X177861Y43158D01*

-X177906Y43268D01*

-X177934Y43382D01*

-X177943Y43500D01*

-X177934Y43618D01*

-X177906Y43732D01*

-X177861Y43842D01*

-X177800Y43942D01*

-X177723Y44032D01*

-X177633Y44109D01*

-X177533Y44170D01*

-X177423Y44215D01*

-X177309Y44243D01*

-X177191Y44250D01*

-X175441D01*

-Y50750D01*

-X177191D01*

-X177309Y50757D01*

-X177423Y50785D01*

-X177533Y50830D01*

-X177633Y50891D01*

-X177723Y50968D01*

-X177800Y51058D01*

-X177861Y51158D01*

-X177906Y51268D01*

-X177934Y51382D01*

-X177943Y51500D01*

-X177934Y51618D01*

-X177906Y51732D01*

-X177861Y51842D01*

-X177800Y51942D01*

-X177723Y52032D01*

-X177633Y52109D01*

-X177533Y52170D01*

-X177423Y52215D01*

-X177309Y52243D01*

-X177191Y52250D01*

-X175441D01*

-Y52735D01*

-X176186Y52794D01*

-X176913Y52969D01*

-X177604Y53255D01*

-X178242Y53645D01*

-X178810Y54131D01*

-X179296Y54699D01*

-X179441Y54937D01*

-Y50002D01*

-X179323Y49993D01*

-X179209Y49965D01*

-X179099Y49920D01*

-X178999Y49859D01*

-X178909Y49782D01*

-X178832Y49692D01*

-X178771Y49592D01*

-X178726Y49482D01*

-X178698Y49368D01*

-X178691Y49250D01*

-Y45750D01*

-X178698Y45632D01*

-X178726Y45518D01*

-X178771Y45408D01*

-X178832Y45308D01*

-X178909Y45218D01*

-X178999Y45141D01*

-X179099Y45080D01*

-X179209Y45035D01*

-X179323Y45007D01*

-X179441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X171441Y64937D02*X171586Y64699D01*

-X172072Y64131D01*

-X172640Y63645D01*

-X173278Y63255D01*

-X173969Y62969D01*

-X174696Y62794D01*

-X175441Y62735D01*

-X175441D01*

-Y62265D01*

-X175441D01*

-X174696Y62206D01*

-X173969Y62031D01*

-X173278Y61745D01*

-X172640Y61355D01*

-X172072Y60869D01*

-X171586Y60301D01*

-X171441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X175441D01*

-Y72265D01*

-X175441D01*

-X174696Y72206D01*

-X173969Y72031D01*

-X173278Y71745D01*

-X172640Y71355D01*

-X172072Y70869D01*

-X171586Y70301D01*

-X171441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X175441Y39000D02*X171441D01*

-Y44998D01*

-X171559Y45007D01*

-X171673Y45035D01*

-X171783Y45080D01*

-X171883Y45141D01*

-X171973Y45218D01*

-X172050Y45308D01*

-X172111Y45408D01*

-X172156Y45518D01*

-X172184Y45632D01*

-X172191Y45750D01*

-Y49250D01*

-X172184Y49368D01*

-X172156Y49482D01*

-X172111Y49592D01*

-X172050Y49692D01*

-X171973Y49782D01*

-X171883Y49859D01*

-X171783Y49920D01*

-X171673Y49965D01*

-X171559Y49993D01*

-X171441Y50002D01*

-Y54937D01*

-X171586Y54699D01*

-X172072Y54131D01*

-X172640Y53645D01*

-X173278Y53255D01*

-X173969Y52969D01*

-X174696Y52794D01*

-X175441Y52735D01*

-X175441D01*

-Y52250D01*

-X173691D01*

-X173573Y52243D01*

-X173459Y52215D01*

-X173349Y52170D01*

-X173249Y52109D01*

-X173159Y52032D01*

-X173082Y51942D01*

-X173021Y51842D01*

-X172976Y51732D01*

-X172948Y51618D01*

-X172939Y51500D01*

-X172948Y51382D01*

-X172976Y51268D01*

-X173021Y51158D01*

-X173082Y51058D01*

-X173159Y50968D01*

-X173249Y50891D01*

-X173349Y50830D01*

-X173459Y50785D01*

-X173573Y50757D01*

-X173691Y50750D01*

-X175441D01*

-Y44250D01*

-X173691D01*

-X173573Y44243D01*

-X173459Y44215D01*

-X173349Y44170D01*

-X173249Y44109D01*

-X173159Y44032D01*

-X173082Y43942D01*

-X173021Y43842D01*

-X172976Y43732D01*

-X172948Y43618D01*

-X172939Y43500D01*

-X172948Y43382D01*

-X172976Y43268D01*

-X173021Y43158D01*

-X173082Y43058D01*

-X173159Y42968D01*

-X173249Y42891D01*

-X173349Y42830D01*

-X173459Y42785D01*

-X173573Y42757D01*

-X173691Y42750D01*

-X175441D01*

-Y39000D01*

-G37*

-G36*

-X171441D02*X149441D01*

-Y44998D01*

-X149559Y45007D01*

-X149673Y45035D01*

-X149783Y45080D01*

-X149883Y45141D01*

-X149973Y45218D01*

-X150050Y45308D01*

-X150111Y45408D01*

-X150156Y45518D01*

-X150184Y45632D01*

-X150191Y45750D01*

-Y49250D01*

-X150184Y49368D01*

-X150156Y49482D01*

-X150111Y49592D01*

-X150050Y49692D01*

-X149973Y49782D01*

-X149883Y49859D01*

-X149783Y49920D01*

-X149673Y49965D01*

-X149559Y49993D01*

-X149441Y50002D01*

-Y54937D01*

-X149686Y55337D01*

-X149972Y56028D01*

-X150147Y56755D01*

-X150191Y57500D01*

-X150147Y58245D01*

-X149972Y58972D01*

-X149686Y59663D01*

-X149441Y60063D01*

-Y64937D01*

-X149686Y65337D01*

-X149972Y66028D01*

-X150147Y66755D01*

-X150191Y67500D01*

-X150147Y68245D01*

-X149972Y68972D01*

-X149686Y69663D01*

-X149441Y70063D01*

-Y76000D01*

-X171441D01*

-Y70063D01*

-X171196Y69663D01*

-X170910Y68972D01*

-X170735Y68245D01*

-X170676Y67500D01*

-X170735Y66755D01*

-X170910Y66028D01*

-X171196Y65337D01*

-X171441Y64937D01*

-Y60063D01*

-X171196Y59663D01*

-X170910Y58972D01*

-X170735Y58245D01*

-X170676Y57500D01*

-X170735Y56755D01*

-X170910Y56028D01*

-X171196Y55337D01*

-X171441Y54937D01*

-Y50002D01*

-X171323Y49993D01*

-X171209Y49965D01*

-X171099Y49920D01*

-X170999Y49859D01*

-X170909Y49782D01*

-X170832Y49692D01*

-X170771Y49592D01*

-X170726Y49482D01*

-X170698Y49368D01*

-X170691Y49250D01*

-Y45750D01*

-X170698Y45632D01*

-X170726Y45518D01*

-X170771Y45408D01*

-X170832Y45308D01*

-X170909Y45218D01*

-X170999Y45141D01*

-X171099Y45080D01*

-X171209Y45035D01*

-X171323Y45007D01*

-X171441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X149441Y70063D02*X149296Y70301D01*

-X148810Y70869D01*

-X148242Y71355D01*

-X147604Y71745D01*

-X146913Y72031D01*

-X146186Y72206D01*

-X145441Y72265D01*

-Y76000D01*

-X149441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X149296Y60301D01*

-X148810Y60869D01*

-X148242Y61355D01*

-X147604Y61745D01*

-X146913Y62031D01*

-X146186Y62206D01*

-X145441Y62265D01*

-Y62735D01*

-X146186Y62794D01*

-X146913Y62969D01*

-X147604Y63255D01*

-X148242Y63645D01*

-X148810Y64131D01*

-X149296Y64699D01*

-X149441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X145441D01*

-Y42750D01*

-X147191D01*

-X147309Y42757D01*

-X147423Y42785D01*

-X147533Y42830D01*

-X147633Y42891D01*

-X147723Y42968D01*

-X147800Y43058D01*

-X147861Y43158D01*

-X147906Y43268D01*

-X147934Y43382D01*

-X147943Y43500D01*

-X147934Y43618D01*

-X147906Y43732D01*

-X147861Y43842D01*

-X147800Y43942D01*

-X147723Y44032D01*

-X147633Y44109D01*

-X147533Y44170D01*

-X147423Y44215D01*

-X147309Y44243D01*

-X147191Y44250D01*

-X145441D01*

-Y50750D01*

-X147191D01*

-X147309Y50757D01*

-X147423Y50785D01*

-X147533Y50830D01*

-X147633Y50891D01*

-X147723Y50968D01*

-X147800Y51058D01*

-X147861Y51158D01*

-X147906Y51268D01*

-X147934Y51382D01*

-X147943Y51500D01*

-X147934Y51618D01*

-X147906Y51732D01*

-X147861Y51842D01*

-X147800Y51942D01*

-X147723Y52032D01*

-X147633Y52109D01*

-X147533Y52170D01*

-X147423Y52215D01*

-X147309Y52243D01*

-X147191Y52250D01*

-X145441D01*

-Y52735D01*

-X146186Y52794D01*

-X146913Y52969D01*

-X147604Y53255D01*

-X148242Y53645D01*

-X148810Y54131D01*

-X149296Y54699D01*

-X149441Y54937D01*

-Y50002D01*

-X149323Y49993D01*

-X149209Y49965D01*

-X149099Y49920D01*

-X148999Y49859D01*

-X148909Y49782D01*

-X148832Y49692D01*

-X148771Y49592D01*

-X148726Y49482D01*

-X148698Y49368D01*

-X148691Y49250D01*

-Y45750D01*

-X148698Y45632D01*

-X148726Y45518D01*

-X148771Y45408D01*

-X148832Y45308D01*

-X148909Y45218D01*

-X148999Y45141D01*

-X149099Y45080D01*

-X149209Y45035D01*

-X149323Y45007D01*

-X149441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X141441Y64937D02*X141586Y64699D01*

-X142072Y64131D01*

-X142640Y63645D01*

-X143278Y63255D01*

-X143969Y62969D01*

-X144696Y62794D01*

-X145441Y62735D01*

-X145441D01*

-Y62265D01*

-X145441D01*

-X144696Y62206D01*

-X143969Y62031D01*

-X143278Y61745D01*

-X142640Y61355D01*

-X142072Y60869D01*

-X141586Y60301D01*

-X141441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X145441D01*

-Y72265D01*

-X145441D01*

-X144696Y72206D01*

-X143969Y72031D01*

-X143278Y71745D01*

-X142640Y71355D01*

-X142072Y70869D01*

-X141586Y70301D01*

-X141441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X145441Y39000D02*X141441D01*

-Y44998D01*

-X141559Y45007D01*

-X141673Y45035D01*

-X141783Y45080D01*

-X141883Y45141D01*

-X141973Y45218D01*

-X142050Y45308D01*

-X142111Y45408D01*

-X142156Y45518D01*

-X142184Y45632D01*

-X142191Y45750D01*

-Y49250D01*

-X142184Y49368D01*

-X142156Y49482D01*

-X142111Y49592D01*

-X142050Y49692D01*

-X141973Y49782D01*

-X141883Y49859D01*

-X141783Y49920D01*

-X141673Y49965D01*

-X141559Y49993D01*

-X141441Y50002D01*

-Y54937D01*

-X141586Y54699D01*

-X142072Y54131D01*

-X142640Y53645D01*

-X143278Y53255D01*

-X143969Y52969D01*

-X144696Y52794D01*

-X145441Y52735D01*

-X145441D01*

-Y52250D01*

-X143691D01*

-X143573Y52243D01*

-X143459Y52215D01*

-X143349Y52170D01*

-X143249Y52109D01*

-X143159Y52032D01*

-X143082Y51942D01*

-X143021Y51842D01*

-X142976Y51732D01*

-X142948Y51618D01*

-X142939Y51500D01*

-X142948Y51382D01*

-X142976Y51268D01*

-X143021Y51158D01*

-X143082Y51058D01*

-X143159Y50968D01*

-X143249Y50891D01*

-X143349Y50830D01*

-X143459Y50785D01*

-X143573Y50757D01*

-X143691Y50750D01*

-X145441D01*

-Y44250D01*

-X143691D01*

-X143573Y44243D01*

-X143459Y44215D01*

-X143349Y44170D01*

-X143249Y44109D01*

-X143159Y44032D01*

-X143082Y43942D01*

-X143021Y43842D01*

-X142976Y43732D01*

-X142948Y43618D01*

-X142939Y43500D01*

-X142948Y43382D01*

-X142976Y43268D01*

-X143021Y43158D01*

-X143082Y43058D01*

-X143159Y42968D01*

-X143249Y42891D01*

-X143349Y42830D01*

-X143459Y42785D01*

-X143573Y42757D01*

-X143691Y42750D01*

-X145441D01*

-Y39000D01*

-G37*

-G36*

-X141441D02*X119441D01*

-Y44998D01*

-X119559Y45007D01*

-X119673Y45035D01*

-X119783Y45080D01*

-X119883Y45141D01*

-X119973Y45218D01*

-X120050Y45308D01*

-X120111Y45408D01*

-X120156Y45518D01*

-X120184Y45632D01*

-X120191Y45750D01*

-Y49250D01*

-X120184Y49368D01*

-X120156Y49482D01*

-X120111Y49592D01*

-X120050Y49692D01*

-X119973Y49782D01*

-X119883Y49859D01*

-X119783Y49920D01*

-X119673Y49965D01*

-X119559Y49993D01*

-X119441Y50002D01*

-Y54937D01*

-X119686Y55337D01*

-X119972Y56028D01*

-X120147Y56755D01*

-X120191Y57500D01*

-X120147Y58245D01*

-X119972Y58972D01*

-X119686Y59663D01*

-X119441Y60063D01*

-Y64937D01*

-X119686Y65337D01*

-X119972Y66028D01*

-X120147Y66755D01*

-X120191Y67500D01*

-X120147Y68245D01*

-X119972Y68972D01*

-X119686Y69663D01*

-X119441Y70063D01*

-Y76000D01*

-X141441D01*

-Y70063D01*

-X141196Y69663D01*

-X140910Y68972D01*

-X140735Y68245D01*

-X140676Y67500D01*

-X140735Y66755D01*

-X140910Y66028D01*

-X141196Y65337D01*

-X141441Y64937D01*

-Y60063D01*

-X141196Y59663D01*

-X140910Y58972D01*

-X140735Y58245D01*

-X140676Y57500D01*

-X140735Y56755D01*

-X140910Y56028D01*

-X141196Y55337D01*

-X141441Y54937D01*

-Y50002D01*

-X141323Y49993D01*

-X141209Y49965D01*

-X141099Y49920D01*

-X140999Y49859D01*

-X140909Y49782D01*

-X140832Y49692D01*

-X140771Y49592D01*

-X140726Y49482D01*

-X140698Y49368D01*

-X140691Y49250D01*

-Y45750D01*

-X140698Y45632D01*

-X140726Y45518D01*

-X140771Y45408D01*

-X140832Y45308D01*

-X140909Y45218D01*

-X140999Y45141D01*

-X141099Y45080D01*

-X141209Y45035D01*

-X141323Y45007D01*

-X141441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X119441Y70063D02*X119296Y70301D01*

-X118810Y70869D01*

-X118242Y71355D01*

-X117604Y71745D01*

-X116913Y72031D01*

-X116186Y72206D01*

-X115441Y72265D01*

-Y76000D01*

-X119441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X119296Y60301D01*

-X118810Y60869D01*

-X118242Y61355D01*

-X117604Y61745D01*

-X116913Y62031D01*

-X116186Y62206D01*

-X115441Y62265D01*

-Y62735D01*

-X116186Y62794D01*

-X116913Y62969D01*

-X117604Y63255D01*

-X118242Y63645D01*

-X118810Y64131D01*

-X119296Y64699D01*

-X119441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X115441D01*

-Y42750D01*

-X117191D01*

-X117309Y42757D01*

-X117423Y42785D01*

-X117533Y42830D01*

-X117633Y42891D01*

-X117723Y42968D01*

-X117800Y43058D01*

-X117861Y43158D01*

-X117906Y43268D01*

-X117934Y43382D01*

-X117943Y43500D01*

-X117934Y43618D01*

-X117906Y43732D01*

-X117861Y43842D01*

-X117800Y43942D01*

-X117723Y44032D01*

-X117633Y44109D01*

-X117533Y44170D01*

-X117423Y44215D01*

-X117309Y44243D01*

-X117191Y44250D01*

-X115441D01*

-Y50750D01*

-X117191D01*

-X117309Y50757D01*

-X117423Y50785D01*

-X117533Y50830D01*

-X117633Y50891D01*

-X117723Y50968D01*

-X117800Y51058D01*

-X117861Y51158D01*

-X117906Y51268D01*

-X117934Y51382D01*

-X117943Y51500D01*

-X117934Y51618D01*

-X117906Y51732D01*

-X117861Y51842D01*

-X117800Y51942D01*

-X117723Y52032D01*

-X117633Y52109D01*

-X117533Y52170D01*

-X117423Y52215D01*

-X117309Y52243D01*

-X117191Y52250D01*

-X115441D01*

-Y52735D01*

-X116186Y52794D01*

-X116913Y52969D01*

-X117604Y53255D01*

-X118242Y53645D01*

-X118810Y54131D01*

-X119296Y54699D01*

-X119441Y54937D01*

-Y50002D01*

-X119323Y49993D01*

-X119209Y49965D01*

-X119099Y49920D01*

-X118999Y49859D01*

-X118909Y49782D01*

-X118832Y49692D01*

-X118771Y49592D01*

-X118726Y49482D01*

-X118698Y49368D01*

-X118691Y49250D01*

-Y45750D01*

-X118698Y45632D01*

-X118726Y45518D01*

-X118771Y45408D01*

-X118832Y45308D01*

-X118909Y45218D01*

-X118999Y45141D01*

-X119099Y45080D01*

-X119209Y45035D01*

-X119323Y45007D01*

-X119441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X111441Y64937D02*X111586Y64699D01*

-X112072Y64131D01*

-X112640Y63645D01*

-X113278Y63255D01*

-X113969Y62969D01*

-X114696Y62794D01*

-X115441Y62735D01*

-X115441D01*

-Y62265D01*

-X115441D01*

-X114696Y62206D01*

-X113969Y62031D01*

-X113278Y61745D01*

-X112640Y61355D01*

-X112072Y60869D01*

-X111586Y60301D01*

-X111441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X115441D01*

-Y72265D01*

-X115441D01*

-X114696Y72206D01*

-X113969Y72031D01*

-X113278Y71745D01*

-X112640Y71355D01*

-X112072Y70869D01*

-X111586Y70301D01*

-X111441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X115441Y39000D02*X111441D01*

-Y44998D01*

-X111559Y45007D01*

-X111673Y45035D01*

-X111783Y45080D01*

-X111883Y45141D01*

-X111973Y45218D01*

-X112050Y45308D01*

-X112111Y45408D01*

-X112156Y45518D01*

-X112184Y45632D01*

-X112191Y45750D01*

-Y49250D01*

-X112184Y49368D01*

-X112156Y49482D01*

-X112111Y49592D01*

-X112050Y49692D01*

-X111973Y49782D01*

-X111883Y49859D01*

-X111783Y49920D01*

-X111673Y49965D01*

-X111559Y49993D01*

-X111441Y50002D01*

-Y54937D01*

-X111586Y54699D01*

-X112072Y54131D01*

-X112640Y53645D01*

-X113278Y53255D01*

-X113969Y52969D01*

-X114696Y52794D01*

-X115441Y52735D01*

-X115441D01*

-Y52250D01*

-X113691D01*

-X113573Y52243D01*

-X113459Y52215D01*

-X113349Y52170D01*

-X113249Y52109D01*

-X113159Y52032D01*

-X113082Y51942D01*

-X113021Y51842D01*

-X112976Y51732D01*

-X112948Y51618D01*

-X112939Y51500D01*

-X112948Y51382D01*

-X112976Y51268D01*

-X113021Y51158D01*

-X113082Y51058D01*

-X113159Y50968D01*

-X113249Y50891D01*

-X113349Y50830D01*

-X113459Y50785D01*

-X113573Y50757D01*

-X113691Y50750D01*

-X115441D01*

-Y44250D01*

-X113691D01*

-X113573Y44243D01*

-X113459Y44215D01*

-X113349Y44170D01*

-X113249Y44109D01*

-X113159Y44032D01*

-X113082Y43942D01*

-X113021Y43842D01*

-X112976Y43732D01*

-X112948Y43618D01*

-X112939Y43500D01*

-X112948Y43382D01*

-X112976Y43268D01*

-X113021Y43158D01*

-X113082Y43058D01*

-X113159Y42968D01*

-X113249Y42891D01*

-X113349Y42830D01*

-X113459Y42785D01*

-X113573Y42757D01*

-X113691Y42750D01*

-X115441D01*

-Y39000D01*

-G37*

-G36*

-X111441D02*X89441D01*

-Y44998D01*

-X89559Y45007D01*

-X89673Y45035D01*

-X89783Y45080D01*

-X89883Y45141D01*

-X89973Y45218D01*

-X90050Y45308D01*

-X90111Y45408D01*

-X90156Y45518D01*

-X90184Y45632D01*

-X90191Y45750D01*

-Y49250D01*

-X90184Y49368D01*

-X90156Y49482D01*

-X90111Y49592D01*

-X90050Y49692D01*

-X89973Y49782D01*

-X89883Y49859D01*

-X89783Y49920D01*

-X89673Y49965D01*

-X89559Y49993D01*

-X89441Y50002D01*

-Y54937D01*

-X89686Y55337D01*

-X89972Y56028D01*

-X90147Y56755D01*

-X90191Y57500D01*

-X90147Y58245D01*

-X89972Y58972D01*

-X89686Y59663D01*

-X89441Y60063D01*

-Y64937D01*

-X89686Y65337D01*

-X89972Y66028D01*

-X90147Y66755D01*

-X90191Y67500D01*

-X90147Y68245D01*

-X89972Y68972D01*

-X89686Y69663D01*

-X89441Y70063D01*

-Y76000D01*

-X111441D01*

-Y70063D01*

-X111196Y69663D01*

-X110910Y68972D01*

-X110735Y68245D01*

-X110676Y67500D01*

-X110735Y66755D01*

-X110910Y66028D01*

-X111196Y65337D01*

-X111441Y64937D01*

-Y60063D01*

-X111196Y59663D01*

-X110910Y58972D01*

-X110735Y58245D01*

-X110676Y57500D01*

-X110735Y56755D01*

-X110910Y56028D01*

-X111196Y55337D01*

-X111441Y54937D01*

-Y50002D01*

-X111323Y49993D01*

-X111209Y49965D01*

-X111099Y49920D01*

-X110999Y49859D01*

-X110909Y49782D01*

-X110832Y49692D01*

-X110771Y49592D01*

-X110726Y49482D01*

-X110698Y49368D01*

-X110691Y49250D01*

-Y45750D01*

-X110698Y45632D01*

-X110726Y45518D01*

-X110771Y45408D01*

-X110832Y45308D01*

-X110909Y45218D01*

-X110999Y45141D01*

-X111099Y45080D01*

-X111209Y45035D01*

-X111323Y45007D01*

-X111441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X89441Y70063D02*X89296Y70301D01*

-X88810Y70869D01*

-X88242Y71355D01*

-X87604Y71745D01*

-X86913Y72031D01*

-X86186Y72206D01*

-X85441Y72265D01*

-Y76000D01*

-X89441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X89296Y60301D01*

-X88810Y60869D01*

-X88242Y61355D01*

-X87604Y61745D01*

-X86913Y62031D01*

-X86186Y62206D01*

-X85441Y62265D01*

-Y62735D01*

-X86186Y62794D01*

-X86913Y62969D01*

-X87604Y63255D01*

-X88242Y63645D01*

-X88810Y64131D01*

-X89296Y64699D01*

-X89441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X85441D01*

-Y42750D01*

-X87191D01*

-X87309Y42757D01*

-X87423Y42785D01*

-X87533Y42830D01*

-X87633Y42891D01*

-X87723Y42968D01*

-X87800Y43058D01*

-X87861Y43158D01*

-X87906Y43268D01*

-X87934Y43382D01*

-X87943Y43500D01*

-X87934Y43618D01*

-X87906Y43732D01*

-X87861Y43842D01*

-X87800Y43942D01*

-X87723Y44032D01*

-X87633Y44109D01*

-X87533Y44170D01*

-X87423Y44215D01*

-X87309Y44243D01*

-X87191Y44250D01*

-X85441D01*

-Y50750D01*

-X87191D01*

-X87309Y50757D01*

-X87423Y50785D01*

-X87533Y50830D01*

-X87633Y50891D01*

-X87723Y50968D01*

-X87800Y51058D01*

-X87861Y51158D01*

-X87906Y51268D01*

-X87934Y51382D01*

-X87943Y51500D01*

-X87934Y51618D01*

-X87906Y51732D01*

-X87861Y51842D01*

-X87800Y51942D01*

-X87723Y52032D01*

-X87633Y52109D01*

-X87533Y52170D01*

-X87423Y52215D01*

-X87309Y52243D01*

-X87191Y52250D01*

-X85441D01*

-Y52735D01*

-X86186Y52794D01*

-X86913Y52969D01*

-X87604Y53255D01*

-X88242Y53645D01*

-X88810Y54131D01*

-X89296Y54699D01*

-X89441Y54937D01*

-Y50002D01*

-X89323Y49993D01*

-X89209Y49965D01*

-X89099Y49920D01*

-X88999Y49859D01*

-X88909Y49782D01*

-X88832Y49692D01*

-X88771Y49592D01*

-X88726Y49482D01*

-X88698Y49368D01*

-X88691Y49250D01*

-Y45750D01*

-X88698Y45632D01*

-X88726Y45518D01*

-X88771Y45408D01*

-X88832Y45308D01*

-X88909Y45218D01*

-X88999Y45141D01*

-X89099Y45080D01*

-X89209Y45035D01*

-X89323Y45007D01*

-X89441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X81441Y64937D02*X81586Y64699D01*

-X82072Y64131D01*

-X82640Y63645D01*

-X83278Y63255D01*

-X83969Y62969D01*

-X84696Y62794D01*

-X85441Y62735D01*

-X85441D01*

-Y62265D01*

-X85441D01*

-X84696Y62206D01*

-X83969Y62031D01*

-X83278Y61745D01*

-X82640Y61355D01*

-X82072Y60869D01*

-X81586Y60301D01*

-X81441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X85441D01*

-Y72265D01*

-X85441D01*

-X84696Y72206D01*

-X83969Y72031D01*

-X83278Y71745D01*

-X82640Y71355D01*

-X82072Y70869D01*

-X81586Y70301D01*

-X81441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X85441Y39000D02*X81441D01*

-Y44998D01*

-X81559Y45007D01*

-X81673Y45035D01*

-X81783Y45080D01*

-X81883Y45141D01*

-X81973Y45218D01*

-X82050Y45308D01*

-X82111Y45408D01*

-X82156Y45518D01*

-X82184Y45632D01*

-X82191Y45750D01*

-Y49250D01*

-X82184Y49368D01*

-X82156Y49482D01*

-X82111Y49592D01*

-X82050Y49692D01*

-X81973Y49782D01*

-X81883Y49859D01*

-X81783Y49920D01*

-X81673Y49965D01*

-X81559Y49993D01*

-X81441Y50002D01*

-Y54937D01*

-X81586Y54699D01*

-X82072Y54131D01*

-X82640Y53645D01*

-X83278Y53255D01*

-X83969Y52969D01*

-X84696Y52794D01*

-X85441Y52735D01*

-X85441D01*

-Y52250D01*

-X83691D01*

-X83573Y52243D01*

-X83459Y52215D01*

-X83349Y52170D01*

-X83249Y52109D01*

-X83159Y52032D01*

-X83082Y51942D01*

-X83021Y51842D01*

-X82976Y51732D01*

-X82948Y51618D01*

-X82939Y51500D01*

-X82948Y51382D01*

-X82976Y51268D01*

-X83021Y51158D01*

-X83082Y51058D01*

-X83159Y50968D01*

-X83249Y50891D01*

-X83349Y50830D01*

-X83459Y50785D01*

-X83573Y50757D01*

-X83691Y50750D01*

-X85441D01*

-Y44250D01*

-X83691D01*

-X83573Y44243D01*

-X83459Y44215D01*

-X83349Y44170D01*

-X83249Y44109D01*

-X83159Y44032D01*

-X83082Y43942D01*

-X83021Y43842D01*

-X82976Y43732D01*

-X82948Y43618D01*

-X82939Y43500D01*

-X82948Y43382D01*

-X82976Y43268D01*

-X83021Y43158D01*

-X83082Y43058D01*

-X83159Y42968D01*

-X83249Y42891D01*

-X83349Y42830D01*

-X83459Y42785D01*

-X83573Y42757D01*

-X83691Y42750D01*

-X85441D01*

-Y39000D01*

-G37*

-G36*

-X81441D02*X75441D01*

-X72941Y41500D01*

-Y76000D01*

-X81441D01*

-Y70063D01*

-X81196Y69663D01*

-X80910Y68972D01*

-X80735Y68245D01*

-X80676Y67500D01*

-X80735Y66755D01*

-X80910Y66028D01*

-X81196Y65337D01*

-X81441Y64937D01*

-Y60063D01*

-X81196Y59663D01*

-X80910Y58972D01*

-X80735Y58245D01*

-X80676Y57500D01*

-X80735Y56755D01*

-X80910Y56028D01*

-X81196Y55337D01*

-X81441Y54937D01*

-Y50002D01*

-X81323Y49993D01*

-X81209Y49965D01*

-X81099Y49920D01*

-X80999Y49859D01*

-X80909Y49782D01*

-X80832Y49692D01*

-X80771Y49592D01*

-X80726Y49482D01*

-X80698Y49368D01*

-X80691Y49250D01*

-Y45750D01*

-X80698Y45632D01*

-X80726Y45518D01*

-X80771Y45408D01*

-X80832Y45308D01*

-X80909Y45218D01*

-X80999Y45141D01*

-X81099Y45080D01*

-X81209Y45035D01*

-X81323Y45007D01*

-X81441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X291712Y247147D02*X299712D01*

-Y240147D01*

-X291712D01*

-Y247147D01*

-G37*

-G36*

-X181941Y231000D02*X188441D01*

-Y225000D01*

-X181941D01*

-Y231000D01*

-G37*

-G36*

-X98941Y206500D02*X107441D01*

-Y202000D01*

-X98941D01*

-Y206500D01*

-G37*

-G36*

-X305941Y138950D02*X312441D01*

-Y132950D01*

-X305941D01*

-Y138950D01*

-G37*

-G36*

-X302196Y110000D02*X308696D01*

-Y104000D01*

-X302196D01*

-Y110000D01*

-G37*

-G36*

-X220941Y247000D02*X227441D01*

-Y241000D01*

-X220941D01*

-Y247000D01*

-G37*

-G36*

-X221441Y238500D02*X227941D01*

-Y232500D01*

-X221441D01*

-Y238500D01*

-G37*

-G36*

-X232941D02*X239441D01*

-Y232500D01*

-X232941D01*

-Y238500D01*

-G37*

-G36*

-X209441Y241000D02*X215941D01*

-Y235000D01*

-X209441D01*

-Y241000D01*

-G37*

-G36*

-X200441Y240500D02*X206941D01*

-Y234500D01*

-X200441D01*

-Y240500D01*

-G37*

-G36*

-X190441Y240000D02*X196941D01*

-Y234000D01*

-X190441D01*

-Y240000D01*

-G37*

-G36*

-X221941Y229500D02*X228441D01*

-Y223500D01*

-X221941D01*

-Y229500D01*

-G37*

-G36*

-X221441Y223500D02*X227941D01*

-Y217500D01*

-X221441D01*

-Y223500D01*

-G37*

-G36*

-X216941Y218000D02*X223441D01*

-Y212000D01*

-X216941D01*

-Y218000D01*

-G37*

-G36*

-X206941Y215500D02*X213441D01*

-Y209500D01*

-X206941D01*

-Y215500D01*

-G37*

-G36*

-X198941D02*X205441D01*

-Y209500D01*

-X198941D01*

-Y215500D01*

-G37*

-G36*

-X190441D02*X196941D01*

-Y209500D01*

-X190441D01*

-Y215500D01*

-G37*

-G36*

-X181941Y220500D02*X188441D01*

-Y214500D01*

-X181941D01*

-Y220500D01*

-G37*

-G36*

-X173941D02*X180441D01*

-Y214500D01*

-X173941D01*

-Y220500D01*

-G37*

-G36*

-Y231000D02*X180441D01*

-Y225000D01*

-X173941D01*

-Y231000D01*

-G37*

-G36*

-X440935Y153000D02*X445441D01*

-Y104616D01*

-X445166Y104503D01*

-X444790Y104272D01*

-X444455Y103986D01*

-X444169Y103651D01*

-X443938Y103275D01*

-X443770Y102868D01*

-X443667Y102439D01*

-X443632Y102000D01*

-X443667Y101561D01*

-X443770Y101132D01*

-X443938Y100725D01*

-X444169Y100349D01*

-X444455Y100014D01*

-X444790Y99728D01*

-X445166Y99497D01*

-X445441Y99384D01*

-Y69000D01*

-X440935D01*

-Y118988D01*

-X440941Y118988D01*

-X441569Y119037D01*

-X442181Y119184D01*

-X442763Y119425D01*

-X443299Y119754D01*

-X443778Y120163D01*

-X444187Y120642D01*

-X444516Y121178D01*

-X444757Y121760D01*

-X444904Y122372D01*

-X444941Y123000D01*

-X444904Y123628D01*

-X444757Y124240D01*

-X444516Y124822D01*

-X444187Y125358D01*

-X443778Y125837D01*

-X443299Y126246D01*

-X442763Y126575D01*

-X442181Y126816D01*

-X441569Y126963D01*

-X440941Y127012D01*

-X440935Y127012D01*

-Y153000D01*

-G37*

-G36*

-X432320D02*X440935D01*

-Y127012D01*

-X440313Y126963D01*

-X439701Y126816D01*

-X439119Y126575D01*

-X438583Y126246D01*

-X438104Y125837D01*

-X437695Y125358D01*

-X437366Y124822D01*

-X437125Y124240D01*

-X436978Y123628D01*

-X436929Y123000D01*

-X436978Y122372D01*

-X437125Y121760D01*

-X437366Y121178D01*

-X437695Y120642D01*

-X438104Y120163D01*

-X438583Y119754D01*

-X439119Y119425D01*

-X439701Y119184D01*

-X440313Y119037D01*

-X440935Y118988D01*

-Y69000D01*

-X432320D01*

-Y73869D01*

-X432379Y73725D01*

-X432610Y73349D01*

-X432896Y73014D01*

-X433231Y72728D01*

-X433607Y72497D01*

-X434014Y72329D01*

-X434443Y72226D01*

-X434882Y72191D01*

-X435321Y72226D01*

-X435750Y72329D01*

-X436157Y72497D01*

-X436533Y72728D01*

-X436868Y73014D01*

-X437154Y73349D01*

-X437385Y73725D01*

-X437553Y74132D01*

-X437656Y74561D01*

-X437682Y75000D01*

-X437656Y75439D01*

-X437553Y75868D01*

-X437385Y76275D01*

-X437154Y76651D01*

-X436868Y76986D01*

-X436533Y77272D01*

-X436157Y77503D01*

-X435750Y77671D01*

-X435321Y77774D01*

-X434882Y77809D01*

-X434443Y77774D01*

-X434014Y77671D01*

-X433607Y77503D01*

-X433231Y77272D01*

-X432896Y76986D01*

-X432610Y76651D01*

-X432379Y76275D01*

-X432320Y76131D01*

-Y108192D01*

-X432324Y108191D01*

-X432763Y108226D01*

-X433192Y108329D01*

-X433599Y108497D01*

-X433975Y108728D01*

-X434310Y109014D01*

-X434596Y109349D01*

-X434827Y109725D01*

-X434995Y110132D01*

-X435098Y110561D01*

-X435124Y111000D01*

-X435098Y111439D01*

-X434995Y111868D01*

-X434827Y112275D01*

-X434596Y112651D01*

-X434310Y112986D01*

-X433975Y113272D01*

-X433599Y113503D01*

-X433192Y113671D01*

-X432763Y113774D01*

-X432324Y113809D01*

-X432320Y113808D01*

-Y153000D01*

-G37*

-G36*

-X423437D02*X432320D01*

-Y113808D01*

-X431885Y113774D01*

-X431456Y113671D01*

-X431049Y113503D01*

-X430673Y113272D01*

-X430338Y112986D01*

-X430052Y112651D01*

-X429821Y112275D01*

-X429653Y111868D01*

-X429550Y111439D01*

-X429515Y111000D01*

-X429550Y110561D01*

-X429653Y110132D01*

-X429821Y109725D01*

-X430052Y109349D01*

-X430338Y109014D01*

-X430673Y108728D01*

-X431049Y108497D01*

-X431456Y108329D01*

-X431885Y108226D01*

-X432320Y108192D01*

-Y76131D01*

-X432211Y75868D01*

-X432108Y75439D01*

-X432073Y75000D01*

-X432108Y74561D01*

-X432211Y74132D01*

-X432320Y73869D01*

-Y69000D01*

-X423437D01*

-Y72192D01*

-X423441Y72191D01*

-X423880Y72226D01*

-X424309Y72329D01*

-X424716Y72497D01*

-X425092Y72728D01*

-X425427Y73014D01*

-X425713Y73349D01*

-X425944Y73725D01*

-X426112Y74132D01*

-X426215Y74561D01*

-X426241Y75000D01*

-X426215Y75439D01*

-X426112Y75868D01*

-X425944Y76275D01*

-X425713Y76651D01*

-X425427Y76986D01*

-X425092Y77272D01*

-X424716Y77503D01*

-X424309Y77671D01*

-X423880Y77774D01*

-X423441Y77809D01*

-X423437Y77808D01*

-Y153000D01*

-G37*

-G36*

-X396441D02*X423437D01*

-Y77808D01*

-X423002Y77774D01*

-X422573Y77671D01*

-X422166Y77503D01*

-X421790Y77272D01*

-X421455Y76986D01*

-X421169Y76651D01*

-X420938Y76275D01*

-X420770Y75868D01*

-X420667Y75439D01*

-X420632Y75000D01*

-X420667Y74561D01*

-X420770Y74132D01*

-X420938Y73725D01*

-X421169Y73349D01*

-X421455Y73014D01*

-X421790Y72728D01*

-X422166Y72497D01*

-X422573Y72329D01*

-X423002Y72226D01*

-X423437Y72192D01*

-Y69000D01*

-X411941D01*

-Y127000D01*

-X393437D01*

-Y205192D01*

-X393441Y205191D01*

-X393880Y205226D01*

-X394309Y205329D01*

-X394716Y205497D01*

-X395092Y205728D01*

-X395427Y206014D01*

-X395713Y206349D01*

-X395944Y206725D01*

-X396112Y207132D01*

-X396215Y207561D01*

-X396241Y208000D01*

-X396215Y208439D01*

-X396112Y208868D01*

-X395944Y209275D01*

-X395713Y209651D01*

-X395427Y209986D01*

-X395092Y210272D01*

-X394716Y210503D01*

-X394309Y210671D01*

-X393880Y210774D01*

-X393441Y210809D01*

-X393437Y210808D01*

-Y237699D01*

-X393465Y237723D01*

-X393649Y237939D01*

-X393797Y238180D01*

-X393905Y238442D01*

-X393971Y238718D01*

-X393988Y239000D01*

-X393971Y239282D01*

-X393905Y239558D01*

-X393797Y239820D01*

-X393649Y240061D01*

-X393465Y240277D01*

-X393437Y240301D01*

-Y324192D01*

-X393441Y324191D01*

-X393880Y324226D01*

-X394309Y324329D01*

-X394716Y324497D01*

-X395092Y324728D01*

-X395427Y325014D01*

-X395713Y325349D01*

-X395944Y325725D01*

-X396112Y326132D01*

-X396215Y326561D01*

-X396241Y327000D01*

-X396215Y327439D01*

-X396112Y327868D01*

-X395944Y328275D01*

-X395713Y328651D01*

-X395427Y328986D01*

-X395092Y329272D01*

-X394716Y329503D01*

-X394309Y329671D01*

-X393880Y329774D01*

-X393441Y329809D01*

-X393437Y329808D01*

-Y352192D01*

-X393441Y352191D01*

-X393880Y352226D01*

-X394309Y352329D01*

-X394716Y352497D01*

-X395092Y352728D01*

-X395427Y353014D01*

-X395713Y353349D01*

-X395944Y353725D01*

-X396112Y354132D01*

-X396215Y354561D01*

-X396241Y355000D01*

-X396215Y355439D01*

-X396112Y355868D01*

-X395944Y356275D01*

-X395713Y356651D01*

-X395427Y356986D01*

-X395092Y357272D01*

-X394716Y357503D01*

-X394309Y357671D01*

-X393880Y357774D01*

-X393441Y357809D01*

-X393437Y357808D01*

-Y397000D01*

-X396441D01*

-Y375616D01*

-X396166Y375503D01*

-X395790Y375272D01*

-X395455Y374986D01*

-X395169Y374651D01*

-X394938Y374275D01*

-X394770Y373868D01*

-X394667Y373439D01*

-X394632Y373000D01*

-X394667Y372561D01*

-X394770Y372132D01*

-X394938Y371725D01*

-X395169Y371349D01*

-X395455Y371014D01*

-X395790Y370728D01*

-X396166Y370497D01*

-X396441Y370384D01*

-Y369806D01*

-X396290Y369713D01*

-X395955Y369427D01*

-X395669Y369092D01*

-X395438Y368716D01*

-X395270Y368309D01*

-X395167Y367880D01*

-X395132Y367441D01*

-X395167Y367002D01*

-X395270Y366573D01*

-X395438Y366166D01*

-X395669Y365790D01*

-X395955Y365455D01*

-X396290Y365169D01*

-X396441Y365076D01*

-Y315970D01*

-X396169Y315651D01*

-X395938Y315275D01*

-X395770Y314868D01*

-X395667Y314439D01*

-X395632Y314000D01*

-X395667Y313561D01*

-X395770Y313132D01*

-X395938Y312725D01*

-X396169Y312349D01*

-X396441Y312030D01*

-Y310970D01*

-X396169Y310651D01*

-X395938Y310275D01*

-X395770Y309868D01*

-X395667Y309439D01*

-X395632Y309000D01*

-X395667Y308561D01*

-X395770Y308132D01*

-X395938Y307725D01*

-X396169Y307349D01*

-X396441Y307030D01*

-Y254970D01*

-X396169Y254651D01*

-X395938Y254275D01*

-X395770Y253868D01*

-X395667Y253439D01*

-X395632Y253000D01*

-X395667Y252561D01*

-X395770Y252132D01*

-X395938Y251725D01*

-X396169Y251349D01*

-X396441Y251030D01*

-Y249970D01*

-X396169Y249651D01*

-X395938Y249275D01*

-X395770Y248868D01*

-X395667Y248439D01*

-X395632Y248000D01*

-X395667Y247561D01*

-X395770Y247132D01*

-X395938Y246725D01*

-X396169Y246349D01*

-X396441Y246030D01*

-Y236806D01*

-X396159Y236783D01*

-X395883Y236717D01*

-X395621Y236609D01*

-X395380Y236461D01*

-X395164Y236277D01*

-X394980Y236061D01*

-X394832Y235820D01*

-X394724Y235558D01*

-X394658Y235282D01*

-X394635Y235000D01*

-X394658Y234718D01*

-X394724Y234442D01*

-X394832Y234180D01*

-X394980Y233939D01*

-X395164Y233723D01*

-X395380Y233539D01*

-X395621Y233391D01*

-X395883Y233283D01*

-X396159Y233217D01*

-X396441Y233194D01*

-Y153000D01*

-G37*

-G36*

-X393437Y127000D02*X389437D01*

-Y181192D01*

-X389441Y181191D01*

-X389880Y181226D01*

-X390309Y181329D01*

-X390716Y181497D01*

-X391092Y181728D01*

-X391427Y182014D01*

-X391713Y182349D01*

-X391944Y182725D01*

-X392112Y183132D01*

-X392215Y183561D01*

-X392241Y184000D01*

-X392215Y184439D01*

-X392112Y184868D01*

-X391944Y185275D01*

-X391713Y185651D01*

-X391427Y185986D01*

-X391092Y186272D01*

-X390716Y186503D01*

-X390309Y186671D01*

-X389880Y186774D01*

-X389441Y186809D01*

-X389437Y186808D01*

-Y233503D01*

-X389573Y233725D01*

-X389741Y234132D01*

-X389844Y234561D01*

-X389870Y235000D01*

-X389844Y235439D01*

-X389741Y235868D01*

-X389573Y236275D01*

-X389437Y236497D01*

-Y245963D01*

-X389484Y246003D01*

-X389668Y246219D01*

-X389816Y246460D01*

-X389924Y246722D01*

-X389990Y246998D01*

-X390007Y247280D01*

-X389990Y247562D01*

-X389924Y247838D01*

-X389816Y248100D01*

-X389668Y248341D01*

-X389484Y248557D01*

-X389437Y248597D01*

-Y281322D01*

-X389494Y281561D01*

-X389520Y282000D01*

-X389494Y282439D01*

-X389437Y282678D01*

-Y324025D01*

-X389713Y324349D01*

-X389944Y324725D01*

-X390112Y325132D01*

-X390215Y325561D01*

-X390241Y326000D01*

-X390215Y326439D01*

-X390112Y326868D01*

-X389944Y327275D01*

-X389713Y327651D01*

-X389437Y327975D01*

-Y397000D01*

-X393437D01*

-Y357808D01*

-X393002Y357774D01*

-X392573Y357671D01*

-X392166Y357503D01*

-X391790Y357272D01*

-X391455Y356986D01*

-X391169Y356651D01*

-X390938Y356275D01*

-X390770Y355868D01*

-X390667Y355439D01*

-X390632Y355000D01*

-X390667Y354561D01*

-X390770Y354132D01*

-X390938Y353725D01*

-X391169Y353349D01*

-X391455Y353014D01*

-X391790Y352728D01*

-X392166Y352497D01*

-X392573Y352329D01*

-X393002Y352226D01*

-X393437Y352192D01*

-Y329808D01*

-X393002Y329774D01*

-X392573Y329671D01*

-X392166Y329503D01*

-X391790Y329272D01*

-X391455Y328986D01*

-X391169Y328651D01*

-X390938Y328275D01*

-X390770Y327868D01*

-X390667Y327439D01*

-X390632Y327000D01*

-X390667Y326561D01*

-X390770Y326132D01*

-X390938Y325725D01*

-X391169Y325349D01*

-X391455Y325014D01*

-X391790Y324728D01*

-X392166Y324497D01*

-X392573Y324329D01*

-X393002Y324226D01*

-X393437Y324192D01*

-Y240301D01*

-X393249Y240461D01*

-X393008Y240609D01*

-X392746Y240717D01*

-X392470Y240783D01*

-X392188Y240806D01*

-X391906Y240783D01*

-X391630Y240717D01*

-X391368Y240609D01*

-X391127Y240461D01*

-X390911Y240277D01*

-X390727Y240061D01*

-X390579Y239820D01*

-X390471Y239558D01*

-X390405Y239282D01*

-X390382Y239000D01*

-X390405Y238718D01*

-X390471Y238442D01*

-X390579Y238180D01*

-X390727Y237939D01*

-X390911Y237723D01*

-X391127Y237539D01*

-X391368Y237391D01*

-X391630Y237283D01*

-X391906Y237217D01*

-X392188Y237194D01*

-X392470Y237217D01*

-X392746Y237283D01*

-X393008Y237391D01*

-X393249Y237539D01*

-X393437Y237699D01*

-Y210808D01*

-X393002Y210774D01*

-X392573Y210671D01*

-X392166Y210503D01*

-X391790Y210272D01*

-X391455Y209986D01*

-X391169Y209651D01*

-X390938Y209275D01*

-X390770Y208868D01*

-X390667Y208439D01*

-X390632Y208000D01*

-X390667Y207561D01*

-X390770Y207132D01*

-X390938Y206725D01*

-X391169Y206349D01*

-X391455Y206014D01*

-X391790Y205728D01*

-X392166Y205497D01*

-X392573Y205329D01*

-X393002Y205226D01*

-X393437Y205192D01*

-Y127000D01*

-G37*

-G36*

-X389437Y327975D02*X389427Y327986D01*

-X389092Y328272D01*

-X388716Y328503D01*

-X388309Y328671D01*

-X387880Y328774D01*

-X387441Y328809D01*

-X387002Y328774D01*

-X386573Y328671D01*

-X386437Y328615D01*

-Y351739D01*

-X386809Y351829D01*

-X387216Y351997D01*

-X387592Y352228D01*

-X387927Y352514D01*

-X388213Y352849D01*

-X388444Y353225D01*

-X388612Y353632D01*

-X388715Y354061D01*

-X388741Y354500D01*

-X388715Y354939D01*

-X388612Y355368D01*

-X388444Y355775D01*

-X388213Y356151D01*

-X387927Y356486D01*

-X387592Y356772D01*

-X387216Y357003D01*

-X386809Y357171D01*

-X386437Y357261D01*

-Y364268D01*

-X386499Y364283D01*

-X386761Y364391D01*

-X387002Y364539D01*

-X387218Y364723D01*

-X387402Y364939D01*

-X387550Y365180D01*

-X387658Y365442D01*

-X387724Y365718D01*

-X387741Y366000D01*

-X387724Y366282D01*

-X387658Y366558D01*

-X387550Y366820D01*

-X387402Y367061D01*

-X387218Y367277D01*

-X387002Y367461D01*

-X386761Y367609D01*

-X386499Y367717D01*

-X386437Y367732D01*

-Y378071D01*

-X386462Y378500D01*

-X386437Y378929D01*

-Y397000D01*

-X389437D01*

-Y327975D01*

-G37*

-G36*

-Y282678D02*X389391Y282868D01*

-X389223Y283275D01*

-X388992Y283651D01*

-X388706Y283986D01*

-X388371Y284272D01*

-X387995Y284503D01*

-X387588Y284671D01*

-X387159Y284774D01*

-X386720Y284809D01*

-X386437Y284786D01*

-Y304353D01*

-X386665Y304725D01*

-X386833Y305132D01*

-X386936Y305561D01*

-X386962Y306000D01*

-X386936Y306439D01*

-X386833Y306868D01*

-X386665Y307275D01*

-X386437Y307647D01*

-Y323385D01*

-X386573Y323329D01*

-X387002Y323226D01*

-X387441Y323191D01*

-X387880Y323226D01*

-X388309Y323329D01*

-X388716Y323497D01*

-X389092Y323728D01*

-X389427Y324014D01*

-X389437Y324025D01*

-Y282678D01*

-G37*

-G36*

-Y248597D02*X389268Y248741D01*

-X389027Y248889D01*

-X388765Y248997D01*

-X388489Y249063D01*

-X388207Y249086D01*

-X387925Y249063D01*

-X387649Y248997D01*

-X387387Y248889D01*

-X387146Y248741D01*

-X386930Y248557D01*

-X386746Y248341D01*

-X386598Y248100D01*

-X386490Y247838D01*

-X386437Y247617D01*

-Y255962D01*

-X386498Y256014D01*

-X386784Y256349D01*

-X387015Y256725D01*

-X387183Y257132D01*

-X387286Y257561D01*

-X387312Y258000D01*

-X387286Y258439D01*

-X387183Y258868D01*

-X387015Y259275D01*

-X386784Y259651D01*

-X386498Y259986D01*

-X386437Y260038D01*

-Y279214D01*

-X386720Y279191D01*

-X387159Y279226D01*

-X387588Y279329D01*

-X387995Y279497D01*

-X388371Y279728D01*

-X388706Y280014D01*

-X388992Y280349D01*

-X389223Y280725D01*

-X389391Y281132D01*

-X389437Y281322D01*

-Y248597D01*

-G37*

-G36*

-Y236497D02*X389342Y236651D01*

-X389056Y236986D01*

-X388721Y237272D01*

-X388345Y237503D01*

-X387938Y237671D01*

-X387509Y237774D01*

-X387070Y237809D01*

-X386631Y237774D01*

-X386437Y237727D01*

-Y246943D01*

-X386490Y246722D01*

-X386598Y246460D01*

-X386746Y246219D01*

-X386930Y246003D01*

-X387146Y245819D01*

-X387387Y245671D01*

-X387649Y245563D01*

-X387925Y245497D01*

-X388207Y245474D01*

-X388489Y245497D01*

-X388765Y245563D01*

-X389027Y245671D01*

-X389268Y245819D01*

-X389437Y245963D01*

-Y236497D01*

-G37*

-G36*

-Y127000D02*X386437D01*

-Y156061D01*

-X386581Y156096D01*

-X386843Y156204D01*

-X387084Y156352D01*

-X387300Y156536D01*

-X387484Y156752D01*

-X387632Y156993D01*

-X387740Y157255D01*

-X387806Y157531D01*

-X387823Y157813D01*

-X387806Y158095D01*

-X387740Y158371D01*

-X387632Y158633D01*

-X387484Y158874D01*

-X387300Y159090D01*

-X387084Y159274D01*

-X386843Y159422D01*

-X386581Y159530D01*

-X386437Y159565D01*

-Y160192D01*

-X386441Y160191D01*

-X386880Y160226D01*

-X387309Y160329D01*

-X387716Y160497D01*

-X388092Y160728D01*

-X388427Y161014D01*

-X388713Y161349D01*

-X388944Y161725D01*

-X389112Y162132D01*

-X389215Y162561D01*

-X389241Y163000D01*

-X389215Y163439D01*

-X389112Y163868D01*

-X388944Y164275D01*

-X388713Y164651D01*

-X388427Y164986D01*

-X388092Y165272D01*

-X387716Y165503D01*

-X387309Y165671D01*

-X386880Y165774D01*

-X386441Y165809D01*

-X386437Y165808D01*

-Y186353D01*

-X386665Y186725D01*

-X386833Y187132D01*

-X386936Y187561D01*

-X386962Y188000D01*

-X386936Y188439D01*

-X386833Y188868D01*

-X386665Y189275D01*

-X386437Y189647D01*

-Y232273D01*

-X386631Y232226D01*

-X387070Y232191D01*

-X387509Y232226D01*

-X387938Y232329D01*

-X388345Y232497D01*

-X388721Y232728D01*

-X389056Y233014D01*

-X389342Y233349D01*

-X389437Y233503D01*

-Y186808D01*

-X389002Y186774D01*

-X388573Y186671D01*

-X388166Y186503D01*

-X387790Y186272D01*

-X387455Y185986D01*

-X387169Y185651D01*

-X386938Y185275D01*

-X386770Y184868D01*

-X386667Y184439D01*

-X386632Y184000D01*

-X386667Y183561D01*

-X386770Y183132D01*

-X386938Y182725D01*

-X387169Y182349D01*

-X387455Y182014D01*

-X387790Y181728D01*

-X388166Y181497D01*

-X388573Y181329D01*

-X389002Y181226D01*

-X389437Y181192D01*

-Y127000D01*

-G37*

-G36*

-X386437D02*X377344D01*

-Y160373D01*

-X377347Y160372D01*

-X377629Y160395D01*

-X377905Y160461D01*

-X378167Y160569D01*

-X378408Y160717D01*

-X378624Y160901D01*

-X378808Y161117D01*

-X378956Y161358D01*

-X379064Y161620D01*

-X379130Y161896D01*

-X379147Y162178D01*

-X379130Y162460D01*

-X379064Y162736D01*

-X378956Y162998D01*

-X378808Y163239D01*

-X378624Y163455D01*

-X378408Y163639D01*

-X378167Y163787D01*

-X377905Y163895D01*

-X377629Y163961D01*

-X377347Y163984D01*

-X377344Y163983D01*

-Y232943D01*

-X377427Y233014D01*

-X377713Y233349D01*

-X377944Y233725D01*

-X378112Y234132D01*

-X378215Y234561D01*

-X378241Y235000D01*

-X378215Y235439D01*

-X378112Y235868D01*

-X377944Y236275D01*

-X377713Y236651D01*

-X377427Y236986D01*

-X377344Y237057D01*

-Y397000D01*

-X386437D01*

-Y378929D01*

-X386436Y378939D01*

-X386333Y379368D01*

-X386165Y379775D01*

-X385934Y380151D01*

-X385648Y380486D01*

-X385313Y380772D01*

-X384937Y381003D01*

-X384530Y381171D01*

-X384101Y381274D01*

-X383662Y381309D01*

-X383223Y381274D01*

-X382794Y381171D01*

-X382387Y381003D01*

-X382011Y380772D01*

-X381676Y380486D01*

-X381390Y380151D01*

-X381159Y379775D01*

-X380991Y379368D01*

-X380888Y378939D01*

-X380853Y378500D01*

-X380888Y378061D01*

-X380991Y377632D01*

-X381159Y377225D01*

-X381390Y376849D01*

-X381676Y376514D01*

-X382011Y376228D01*

-X382387Y375997D01*

-X382794Y375829D01*

-X383223Y375726D01*

-X383662Y375691D01*

-X384101Y375726D01*

-X384530Y375829D01*

-X384937Y375997D01*

-X385313Y376228D01*

-X385648Y376514D01*

-X385934Y376849D01*

-X386165Y377225D01*

-X386333Y377632D01*

-X386436Y378061D01*

-X386437Y378071D01*

-Y367732D01*

-X386223Y367783D01*

-X385941Y367806D01*

-X385659Y367783D01*

-X385383Y367717D01*

-X385121Y367609D01*

-X384880Y367461D01*

-X384664Y367277D01*

-X384480Y367061D01*

-X384332Y366820D01*

-X384224Y366558D01*

-X384158Y366282D01*

-X384135Y366000D01*

-X384158Y365718D01*

-X384224Y365442D01*

-X384332Y365180D01*

-X384480Y364939D01*

-X384664Y364723D01*

-X384880Y364539D01*

-X385121Y364391D01*

-X385383Y364283D01*

-X385659Y364217D01*

-X385941Y364194D01*

-X386223Y364217D01*

-X386437Y364268D01*

-Y357261D01*

-X386380Y357274D01*

-X385941Y357309D01*

-X385502Y357274D01*

-X385073Y357171D01*

-X384666Y357003D01*

-X384290Y356772D01*

-X383955Y356486D01*

-X383669Y356151D01*

-X383438Y355775D01*

-X383270Y355368D01*

-X383167Y354939D01*

-X383132Y354500D01*

-X383167Y354061D01*

-X383270Y353632D01*

-X383438Y353225D01*

-X383669Y352849D01*

-X383955Y352514D01*

-X384290Y352228D01*

-X384666Y351997D01*

-X385073Y351829D01*

-X385502Y351726D01*

-X385941Y351691D01*

-X386380Y351726D01*

-X386437Y351739D01*

-Y328615D01*

-X386166Y328503D01*

-X385790Y328272D01*

-X385455Y327986D01*

-X385169Y327651D01*

-X384938Y327275D01*

-X384770Y326868D01*

-X384667Y326439D01*

-X384632Y326000D01*

-X384667Y325561D01*

-X384770Y325132D01*

-X384938Y324725D01*

-X385169Y324349D01*

-X385455Y324014D01*

-X385790Y323728D01*

-X386166Y323497D01*

-X386437Y323385D01*

-Y307647D01*

-X386434Y307651D01*

-X386148Y307986D01*

-X385813Y308272D01*

-X385437Y308503D01*

-X385030Y308671D01*

-X384601Y308774D01*

-X384162Y308809D01*

-X383723Y308774D01*

-X383294Y308671D01*

-X382887Y308503D01*

-X382511Y308272D01*

-X382176Y307986D01*

-X381890Y307651D01*

-X381659Y307275D01*

-X381491Y306868D01*

-X381388Y306439D01*

-X381353Y306000D01*

-X381388Y305561D01*

-X381491Y305132D01*

-X381659Y304725D01*

-X381890Y304349D01*

-X382176Y304014D01*

-X382511Y303728D01*

-X382887Y303497D01*

-X383294Y303329D01*

-X383723Y303226D01*

-X384162Y303191D01*

-X384601Y303226D01*

-X385030Y303329D01*

-X385437Y303497D01*

-X385813Y303728D01*

-X386148Y304014D01*

-X386434Y304349D01*

-X386437Y304353D01*

-Y284786D01*

-X386281Y284774D01*

-X385852Y284671D01*

-X385445Y284503D01*

-X385069Y284272D01*

-X384734Y283986D01*

-X384448Y283651D01*

-X384217Y283275D01*

-X384049Y282868D01*

-X383946Y282439D01*

-X383911Y282000D01*

-X383946Y281561D01*

-X384049Y281132D01*

-X384217Y280725D01*

-X384448Y280349D01*

-X384734Y280014D01*

-X385069Y279728D01*

-X385445Y279497D01*

-X385852Y279329D01*

-X386281Y279226D01*

-X386437Y279214D01*

-Y260038D01*

-X386163Y260272D01*

-X385787Y260503D01*

-X385380Y260671D01*

-X384951Y260774D01*

-X384512Y260809D01*

-X384073Y260774D01*

-X383644Y260671D01*

-X383237Y260503D01*

-X382861Y260272D01*

-X382526Y259986D01*

-X382240Y259651D01*

-X382009Y259275D01*

-X381841Y258868D01*

-X381738Y258439D01*

-X381703Y258000D01*

-X381738Y257561D01*

-X381841Y257132D01*

-X382009Y256725D01*

-X382240Y256349D01*

-X382526Y256014D01*

-X382861Y255728D01*

-X383237Y255497D01*

-X383644Y255329D01*

-X384073Y255226D01*

-X384512Y255191D01*

-X384951Y255226D01*

-X385380Y255329D01*

-X385787Y255497D01*

-X386163Y255728D01*

-X386437Y255962D01*

-Y247617D01*

-X386424Y247562D01*

-X386401Y247280D01*

-X386424Y246998D01*

-X386437Y246943D01*

-Y237727D01*

-X386202Y237671D01*

-X385795Y237503D01*

-X385419Y237272D01*

-X385084Y236986D01*

-X384798Y236651D01*

-X384567Y236275D01*

-X384399Y235868D01*

-X384296Y235439D01*

-X384261Y235000D01*

-X384296Y234561D01*

-X384399Y234132D01*

-X384567Y233725D01*

-X384798Y233349D01*

-X385084Y233014D01*

-X385419Y232728D01*

-X385795Y232497D01*

-X386202Y232329D01*

-X386437Y232273D01*

-Y189647D01*

-X386434Y189651D01*

-X386148Y189986D01*

-X385813Y190272D01*

-X385437Y190503D01*

-X385030Y190671D01*

-X384601Y190774D01*

-X384162Y190809D01*

-X383723Y190774D01*

-X383294Y190671D01*

-X382887Y190503D01*

-X382511Y190272D01*

-X382176Y189986D01*

-X381890Y189651D01*

-X381659Y189275D01*

-X381491Y188868D01*

-X381388Y188439D01*

-X381353Y188000D01*

-X381388Y187561D01*

-X381491Y187132D01*

-X381659Y186725D01*

-X381890Y186349D01*

-X382176Y186014D01*

-X382511Y185728D01*

-X382887Y185497D01*

-X383294Y185329D01*

-X383723Y185226D01*

-X384162Y185191D01*

-X384601Y185226D01*

-X385030Y185329D01*

-X385437Y185497D01*

-X385813Y185728D01*

-X386148Y186014D01*

-X386434Y186349D01*

-X386437Y186353D01*

-Y165808D01*

-X386002Y165774D01*

-X385573Y165671D01*

-X385166Y165503D01*

-X384790Y165272D01*

-X384455Y164986D01*

-X384169Y164651D01*

-X383938Y164275D01*

-X383770Y163868D01*

-X383667Y163439D01*

-X383632Y163000D01*

-X383667Y162561D01*

-X383770Y162132D01*

-X383938Y161725D01*

-X384169Y161349D01*

-X384455Y161014D01*

-X384790Y160728D01*

-X385166Y160497D01*

-X385573Y160329D01*

-X386002Y160226D01*

-X386437Y160192D01*

-Y159565D01*

-X386305Y159596D01*

-X386023Y159619D01*

-X385741Y159596D01*

-X385465Y159530D01*

-X385203Y159422D01*

-X384962Y159274D01*

-X384746Y159090D01*

-X384562Y158874D01*

-X384414Y158633D01*

-X384306Y158371D01*

-X384240Y158095D01*

-X384217Y157813D01*

-X384240Y157531D01*

-X384306Y157255D01*

-X384414Y156993D01*

-X384562Y156752D01*

-X384746Y156536D01*

-X384962Y156352D01*

-X385203Y156204D01*

-X385465Y156096D01*

-X385741Y156030D01*

-X386023Y156007D01*

-X386305Y156030D01*

-X386437Y156061D01*

-Y127000D01*

-G37*

-G36*

-X377344D02*X372437D01*

-Y167578D01*

-X372441Y167577D01*

-X372880Y167612D01*

-X373309Y167715D01*

-X373716Y167883D01*

-X374092Y168114D01*

-X374427Y168400D01*

-X374713Y168735D01*

-X374944Y169111D01*

-X375112Y169518D01*

-X375215Y169947D01*

-X375241Y170386D01*

-X375215Y170825D01*

-X375112Y171254D01*

-X374944Y171661D01*

-X374713Y172037D01*

-X374427Y172372D01*

-X374092Y172658D01*

-X373716Y172889D01*

-X373309Y173057D01*

-X372880Y173160D01*

-X372441Y173195D01*

-X372437Y173194D01*

-Y258628D01*

-X372663Y258767D01*

-X372879Y258951D01*

-X373063Y259167D01*

-X373211Y259408D01*

-X373319Y259670D01*

-X373385Y259946D01*

-X373402Y260228D01*

-X373385Y260510D01*

-X373319Y260786D01*

-X373211Y261048D01*

-X373063Y261289D01*

-X372879Y261505D01*

-X372663Y261689D01*

-X372437Y261828D01*

-Y287881D01*

-X372441Y287880D01*

-X372880Y287915D01*

-X373309Y288018D01*

-X373716Y288186D01*

-X374092Y288417D01*

-X374427Y288703D01*

-X374713Y289038D01*

-X374944Y289414D01*

-X375112Y289821D01*

-X375215Y290250D01*

-X375241Y290689D01*

-X375215Y291128D01*

-X375112Y291557D01*

-X374944Y291964D01*

-X374713Y292340D01*

-X374427Y292675D01*

-X374092Y292961D01*

-X373716Y293192D01*

-X373309Y293360D01*

-X372880Y293463D01*

-X372441Y293498D01*

-X372437Y293497D01*

-Y348381D01*

-X372441Y348380D01*

-X372880Y348415D01*

-X373309Y348518D01*

-X373716Y348686D01*

-X374092Y348917D01*

-X374427Y349203D01*

-X374713Y349538D01*

-X374944Y349914D01*

-X375112Y350321D01*

-X375215Y350750D01*

-X375241Y351189D01*

-X375215Y351628D01*

-X375112Y352057D01*

-X374944Y352464D01*

-X374713Y352840D01*

-X374427Y353175D01*

-X374092Y353461D01*

-X373716Y353692D01*

-X373309Y353860D01*

-X372880Y353963D01*

-X372441Y353998D01*

-X372437Y353997D01*

-Y397000D01*

-X377344D01*

-Y237057D01*

-X377092Y237272D01*

-X376716Y237503D01*

-X376309Y237671D01*

-X375880Y237774D01*

-X375441Y237809D01*

-X375002Y237774D01*

-X374573Y237671D01*

-X374166Y237503D01*

-X373790Y237272D01*

-X373455Y236986D01*

-X373169Y236651D01*

-X372938Y236275D01*

-X372770Y235868D01*

-X372667Y235439D01*

-X372632Y235000D01*

-X372667Y234561D01*

-X372770Y234132D01*

-X372938Y233725D01*

-X373169Y233349D01*

-X373455Y233014D01*

-X373790Y232728D01*

-X374166Y232497D01*

-X374573Y232329D01*

-X375002Y232226D01*

-X375441Y232191D01*

-X375880Y232226D01*

-X376309Y232329D01*

-X376716Y232497D01*

-X377092Y232728D01*

-X377344Y232943D01*

-Y163983D01*

-X377065Y163961D01*

-X376789Y163895D01*

-X376527Y163787D01*

-X376286Y163639D01*

-X376070Y163455D01*

-X375886Y163239D01*

-X375738Y162998D01*

-X375630Y162736D01*

-X375564Y162460D01*

-X375541Y162178D01*

-X375564Y161896D01*

-X375630Y161620D01*

-X375738Y161358D01*

-X375886Y161117D01*

-X376070Y160901D01*

-X376286Y160717D01*

-X376527Y160569D01*

-X376789Y160461D01*

-X377065Y160395D01*

-X377344Y160373D01*

-Y127000D01*

-G37*

-G36*

-X372437D02*X358938D01*

-Y141855D01*

-X360128Y142872D01*

-X361156Y144075D01*

-X361982Y145423D01*

-X362588Y146885D01*

-X362957Y148423D01*

-X363050Y150000D01*

-X362957Y151577D01*

-X362588Y153115D01*

-X361982Y154577D01*

-X361156Y155925D01*

-X360128Y157128D01*

-X358938Y158145D01*

-Y206695D01*

-X358941Y206694D01*

-X359223Y206717D01*

-X359499Y206783D01*

-X359761Y206891D01*

-X360002Y207039D01*

-X360218Y207223D01*

-X360402Y207439D01*

-X360550Y207680D01*

-X360658Y207942D01*

-X360724Y208218D01*

-X360741Y208500D01*

-X360724Y208782D01*

-X360658Y209058D01*

-X360550Y209320D01*

-X360402Y209561D01*

-X360218Y209777D01*

-X360002Y209961D01*

-X359761Y210109D01*

-X359499Y210217D01*

-X359223Y210283D01*

-X358941Y210306D01*

-X358938Y210305D01*

-Y397000D01*

-X372437D01*

-Y353997D01*

-X372002Y353963D01*

-X371573Y353860D01*

-X371166Y353692D01*

-X370790Y353461D01*

-X370455Y353175D01*

-X370169Y352840D01*

-X369938Y352464D01*

-X369770Y352057D01*

-X369667Y351628D01*

-X369632Y351189D01*

-X369667Y350750D01*

-X369770Y350321D01*

-X369938Y349914D01*

-X370169Y349538D01*

-X370455Y349203D01*

-X370790Y348917D01*

-X371166Y348686D01*

-X371573Y348518D01*

-X372002Y348415D01*

-X372437Y348381D01*

-Y293497D01*

-X372002Y293463D01*

-X371573Y293360D01*

-X371166Y293192D01*

-X370790Y292961D01*

-X370455Y292675D01*

-X370169Y292340D01*

-X369938Y291964D01*

-X369770Y291557D01*

-X369667Y291128D01*

-X369632Y290689D01*

-X369667Y290250D01*

-X369770Y289821D01*

-X369938Y289414D01*

-X370169Y289038D01*

-X370455Y288703D01*

-X370790Y288417D01*

-X371166Y288186D01*

-X371573Y288018D01*

-X372002Y287915D01*

-X372437Y287881D01*

-Y261828D01*

-X372422Y261837D01*

-X372160Y261945D01*

-X371884Y262011D01*

-X371602Y262034D01*

-X371320Y262011D01*

-X371044Y261945D01*

-X370782Y261837D01*

-X370541Y261689D01*

-X370325Y261505D01*

-X370141Y261289D01*

-X369993Y261048D01*

-X369885Y260786D01*

-X369819Y260510D01*

-X369796Y260228D01*

-X369819Y259946D01*

-X369885Y259670D01*

-X369993Y259408D01*

-X370141Y259167D01*

-X370325Y258951D01*

-X370541Y258767D01*

-X370782Y258619D01*

-X371044Y258511D01*

-X371320Y258445D01*

-X371602Y258422D01*

-X371884Y258445D01*

-X372160Y258511D01*

-X372422Y258619D01*

-X372437Y258628D01*

-Y173194D01*

-X372002Y173160D01*

-X371573Y173057D01*

-X371166Y172889D01*

-X370790Y172658D01*

-X370455Y172372D01*

-X370169Y172037D01*

-X369938Y171661D01*

-X369770Y171254D01*

-X369667Y170825D01*

-X369632Y170386D01*

-X369667Y169947D01*

-X369770Y169518D01*

-X369938Y169111D01*

-X370169Y168735D01*

-X370455Y168400D01*

-X370790Y168114D01*

-X371166Y167883D01*

-X371573Y167715D01*

-X372002Y167612D01*

-X372437Y167578D01*

-Y127000D01*

-G37*

-G36*

-X358938Y158145D02*X358925Y158156D01*

-X357577Y158982D01*

-X356438Y159454D01*

-Y188225D01*

-X356674Y188795D01*

-X357093Y190540D01*

-X357199Y192329D01*

-X357093Y194118D01*

-X356674Y195863D01*

-X356438Y196433D01*

-Y231195D01*

-X356441Y231194D01*

-X356723Y231217D01*

-X356999Y231283D01*

-X357261Y231391D01*

-X357502Y231539D01*

-X357718Y231723D01*

-X357902Y231939D01*

-X358050Y232180D01*

-X358158Y232442D01*

-X358224Y232718D01*

-X358241Y233000D01*

-X358224Y233282D01*

-X358158Y233558D01*

-X358050Y233820D01*

-X357902Y234061D01*

-X357718Y234277D01*

-X357502Y234461D01*

-X357261Y234609D01*

-X356999Y234717D01*

-X356723Y234783D01*

-X356441Y234806D01*

-X356438Y234805D01*

-Y397000D01*

-X358938D01*

-Y210305D01*

-X358659Y210283D01*

-X358383Y210217D01*

-X358121Y210109D01*

-X357880Y209961D01*

-X357664Y209777D01*

-X357480Y209561D01*

-X357332Y209320D01*

-X357224Y209058D01*

-X357158Y208782D01*

-X357135Y208500D01*

-X357158Y208218D01*

-X357224Y207942D01*

-X357332Y207680D01*

-X357480Y207439D01*

-X357664Y207223D01*

-X357880Y207039D01*

-X358121Y206891D01*

-X358383Y206783D01*

-X358659Y206717D01*

-X358938Y206695D01*

-Y158145D01*

-G37*

-G36*

-X356438Y196433D02*X355988Y197520D01*

-X355050Y199050D01*

-X353885Y200415D01*

-X353387Y200840D01*

-Y337716D01*

-X353390Y337715D01*

-X353672Y337738D01*

-X353948Y337804D01*

-X354210Y337912D01*

-X354451Y338060D01*

-X354667Y338244D01*

-X354851Y338460D01*

-X354999Y338701D01*

-X355107Y338963D01*

-X355173Y339239D01*

-X355190Y339521D01*

-X355173Y339803D01*

-X355107Y340079D01*

-X354999Y340341D01*

-X354851Y340582D01*

-X354667Y340798D01*

-X354451Y340982D01*

-X354210Y341130D01*

-X353948Y341238D01*

-X353672Y341304D01*

-X353390Y341327D01*

-X353387Y341326D01*

-Y350739D01*

-X353955Y351404D01*

-X354781Y352752D01*

-X355387Y354214D01*

-X355756Y355752D01*

-X355849Y357329D01*

-X355756Y358906D01*

-X355387Y360444D01*

-X354781Y361906D01*

-X353955Y363254D01*

-X353387Y363919D01*

-Y397000D01*

-X356438D01*

-Y234805D01*

-X356159Y234783D01*

-X355883Y234717D01*

-X355621Y234609D01*

-X355380Y234461D01*

-X355164Y234277D01*

-X354980Y234061D01*

-X354832Y233820D01*

-X354724Y233558D01*

-X354658Y233282D01*

-X354635Y233000D01*

-X354658Y232718D01*

-X354724Y232442D01*

-X354832Y232180D01*

-X354980Y231939D01*

-X355164Y231723D01*

-X355380Y231539D01*

-X355621Y231391D01*

-X355883Y231283D01*

-X356159Y231217D01*

-X356438Y231195D01*

-Y196433D01*

-G37*

-G36*

-Y159454D02*X356115Y159588D01*

-X354577Y159957D01*

-X353387Y160051D01*

-Y183818D01*

-X353885Y184243D01*

-X355050Y185608D01*

-X355988Y187138D01*

-X356438Y188225D01*

-Y159454D01*

-G37*

-G36*

-X353387Y363919D02*X352927Y364457D01*

-X351724Y365485D01*

-X350376Y366311D01*

-X348914Y366917D01*

-X347376Y367286D01*

-X345799Y367410D01*

-X345784Y367409D01*

-Y397000D01*

-X353387D01*

-Y363919D01*

-G37*

-G36*

-Y200840D02*X352520Y201580D01*

-X350990Y202518D01*

-X349333Y203204D01*

-X347588Y203623D01*

-X345799Y203764D01*

-X345784Y203763D01*

-Y245608D01*

-X345810Y245631D01*

-X346296Y246199D01*

-X346686Y246837D01*

-X346972Y247528D01*

-X347147Y248255D01*

-X347191Y249000D01*

-X347147Y249745D01*

-X346972Y250472D01*

-X346686Y251163D01*

-X346296Y251801D01*

-X345810Y252369D01*

-X345784Y252392D01*

-Y347249D01*

-X345799Y347248D01*

-X347376Y347372D01*

-X348914Y347741D01*

-X350376Y348347D01*

-X351724Y349173D01*

-X352927Y350201D01*

-X353387Y350739D01*

-Y341326D01*

-X353108Y341304D01*

-X352832Y341238D01*

-X352570Y341130D01*

-X352329Y340982D01*

-X352113Y340798D01*

-X351929Y340582D01*

-X351781Y340341D01*

-X351673Y340079D01*

-X351607Y339803D01*

-X351584Y339521D01*

-X351607Y339239D01*

-X351673Y338963D01*

-X351781Y338701D01*

-X351929Y338460D01*

-X352113Y338244D01*

-X352329Y338060D01*

-X352570Y337912D01*

-X352832Y337804D01*

-X353108Y337738D01*

-X353387Y337716D01*

-Y200840D01*

-G37*

-G36*

-Y160051D02*X353000Y160081D01*

-X351423Y159957D01*

-X349885Y159588D01*

-X348423Y158982D01*

-X347075Y158156D01*

-X345872Y157128D01*

-X345784Y157025D01*

-Y180895D01*

-X345799Y180894D01*

-X347588Y181035D01*

-X349333Y181454D01*

-X350990Y182140D01*

-X352520Y183078D01*

-X353387Y183818D01*

-Y160051D01*

-G37*

-G36*

-X358938Y127000D02*X345784D01*

-Y142975D01*

-X345872Y142872D01*

-X347075Y141844D01*

-X348423Y141018D01*

-X349885Y140412D01*

-X351423Y140043D01*

-X353000Y139919D01*

-X354577Y140043D01*

-X356115Y140412D01*

-X357577Y141018D01*

-X358925Y141844D01*

-X358938Y141855D01*

-Y127000D01*

-G37*

-G36*

-X339834Y245027D02*X340278Y244755D01*

-X340969Y244469D01*

-X341696Y244294D01*

-X342441Y244235D01*

-X343186Y244294D01*

-X343913Y244469D01*

-X344604Y244755D01*

-X345242Y245145D01*

-X345784Y245608D01*

-Y203763D01*

-X344010Y203623D01*

-X342265Y203204D01*

-X340608Y202518D01*

-X339834Y202044D01*

-Y223052D01*

-X339902Y223131D01*

-X340050Y223372D01*

-X340158Y223634D01*

-X340224Y223910D01*

-X340241Y224192D01*

-X340224Y224474D01*

-X340158Y224750D01*

-X340050Y225012D01*

-X339902Y225253D01*

-X339834Y225332D01*

-Y228984D01*

-X339902Y229063D01*

-X340050Y229304D01*

-X340158Y229566D01*

-X340224Y229842D01*

-X340241Y230124D01*

-X340224Y230406D01*

-X340158Y230682D01*

-X340050Y230944D01*

-X339902Y231185D01*

-X339834Y231264D01*

-Y245027D01*

-G37*

-G36*

-Y349207D02*X339874Y349173D01*

-X341222Y348347D01*

-X342684Y347741D01*

-X344222Y347372D01*

-X345784Y347249D01*

-Y252392D01*

-X345242Y252855D01*

-X344604Y253245D01*

-X343913Y253531D01*

-X343186Y253706D01*

-X342441Y253765D01*

-X341696Y253706D01*

-X340969Y253531D01*

-X340278Y253245D01*

-X339834Y252973D01*

-Y340022D01*

-X339837Y340021D01*

-X340119Y340044D01*

-X340395Y340110D01*

-X340657Y340218D01*

-X340898Y340366D01*

-X341114Y340550D01*

-X341298Y340766D01*

-X341446Y341007D01*

-X341554Y341269D01*

-X341620Y341545D01*

-X341637Y341827D01*

-X341620Y342109D01*

-X341554Y342385D01*

-X341446Y342647D01*

-X341298Y342888D01*

-X341114Y343104D01*

-X340898Y343288D01*

-X340657Y343436D01*

-X340395Y343544D01*

-X340119Y343610D01*

-X339837Y343633D01*

-X339834Y343632D01*

-Y349207D01*

-G37*

-G36*

-Y225332D02*X339718Y225469D01*

-X339502Y225653D01*

-X339261Y225801D01*

-X338999Y225909D01*

-X338723Y225975D01*

-X338441Y225998D01*

-X338159Y225975D01*

-X337883Y225909D01*

-X337621Y225801D01*

-X337438Y225689D01*

-Y228627D01*

-X337621Y228515D01*

-X337883Y228407D01*

-X338159Y228341D01*

-X338441Y228318D01*

-X338723Y228341D01*

-X338999Y228407D01*

-X339261Y228515D01*

-X339502Y228663D01*

-X339718Y228847D01*

-X339834Y228984D01*

-Y225332D01*

-G37*

-G36*

-Y202044D02*X339078Y201580D01*

-X337713Y200415D01*

-X337438Y200093D01*

-Y222695D01*

-X337621Y222583D01*

-X337883Y222475D01*

-X338159Y222409D01*

-X338441Y222386D01*

-X338723Y222409D01*

-X338999Y222475D01*

-X339261Y222583D01*

-X339502Y222731D01*

-X339718Y222915D01*

-X339834Y223052D01*

-Y202044D01*

-G37*

-G36*

-X337438Y351738D02*X337643Y351404D01*

-X338671Y350201D01*

-X339834Y349207D01*

-Y343632D01*

-X339555Y343610D01*

-X339279Y343544D01*

-X339017Y343436D01*

-X338776Y343288D01*

-X338560Y343104D01*

-X338376Y342888D01*

-X338228Y342647D01*

-X338120Y342385D01*

-X338054Y342109D01*

-X338031Y341827D01*

-X338054Y341545D01*

-X338120Y341269D01*

-X338228Y341007D01*

-X338376Y340766D01*

-X338560Y340550D01*

-X338776Y340366D01*

-X339017Y340218D01*

-X339279Y340110D01*

-X339555Y340044D01*

-X339834Y340022D01*

-Y252973D01*

-X339640Y252855D01*

-X339072Y252369D01*

-X338586Y251801D01*

-X338196Y251163D01*

-X337910Y250472D01*

-X337735Y249745D01*

-X337676Y249000D01*

-X337735Y248255D01*

-X337910Y247528D01*

-X338196Y246837D01*

-X338586Y246199D01*

-X339072Y245631D01*

-X339640Y245145D01*

-X339834Y245027D01*

-Y231264D01*

-X339718Y231401D01*

-X339502Y231585D01*

-X339261Y231733D01*

-X338999Y231841D01*

-X338723Y231907D01*

-X338441Y231930D01*

-X338159Y231907D01*

-X337883Y231841D01*

-X337621Y231733D01*

-X337438Y231621D01*

-Y351738D01*

-G37*

-G36*

-Y397000D02*X345784D01*

-Y367409D01*

-X344222Y367286D01*

-X342684Y366917D01*

-X341222Y366311D01*

-X339874Y365485D01*

-X338671Y364457D01*

-X337643Y363254D01*

-X337438Y362920D01*

-Y397000D01*

-G37*

-G36*

-X345784Y127000D02*X337438D01*

-Y161195D01*

-X337441Y161194D01*

-X337723Y161217D01*

-X337999Y161283D01*

-X338261Y161391D01*

-X338502Y161539D01*

-X338718Y161723D01*

-X338902Y161939D01*

-X339050Y162180D01*

-X339158Y162442D01*

-X339224Y162718D01*

-X339241Y163000D01*

-X339224Y163282D01*

-X339158Y163558D01*

-X339050Y163820D01*

-X338902Y164061D01*

-X338718Y164277D01*

-X338502Y164461D01*

-X338261Y164609D01*

-X337999Y164717D01*

-X337723Y164783D01*

-X337441Y164806D01*

-X337438Y164805D01*

-Y184565D01*

-X337713Y184243D01*

-X339078Y183078D01*

-X340608Y182140D01*

-X342265Y181454D01*

-X344010Y181035D01*

-X345784Y180895D01*

-Y157025D01*

-X344844Y155925D01*

-X344018Y154577D01*

-X343412Y153115D01*

-X343043Y151577D01*

-X342919Y150000D01*

-X343043Y148423D01*

-X343412Y146885D01*

-X344018Y145423D01*

-X344844Y144075D01*

-X345784Y142975D01*

-Y127000D01*

-G37*

-G36*

-X337438D02*X332434D01*

-Y244236D01*

-X332441Y244235D01*

-X333186Y244294D01*

-X333913Y244469D01*

-X334604Y244755D01*

-X335242Y245145D01*

-X335810Y245631D01*

-X336296Y246199D01*

-X336686Y246837D01*

-X336972Y247528D01*

-X337147Y248255D01*

-X337191Y249000D01*

-X337147Y249745D01*

-X336972Y250472D01*

-X336686Y251163D01*

-X336296Y251801D01*

-X335810Y252369D01*

-X335242Y252855D01*

-X334604Y253245D01*

-X333913Y253531D01*

-X333186Y253706D01*

-X332441Y253765D01*

-X332434Y253764D01*

-Y397000D01*

-X337438D01*

-Y362920D01*

-X336817Y361906D01*

-X336211Y360444D01*

-X335842Y358906D01*

-X335718Y357329D01*

-X335842Y355752D01*

-X336211Y354214D01*

-X336817Y352752D01*

-X337438Y351738D01*

-Y231621D01*

-X337380Y231585D01*

-X337164Y231401D01*

-X336980Y231185D01*

-X336832Y230944D01*

-X336724Y230682D01*

-X336658Y230406D01*

-X336635Y230124D01*

-X336658Y229842D01*

-X336724Y229566D01*

-X336832Y229304D01*

-X336980Y229063D01*

-X337164Y228847D01*

-X337380Y228663D01*

-X337438Y228627D01*

-Y225689D01*

-X337380Y225653D01*

-X337164Y225469D01*

-X336980Y225253D01*

-X336832Y225012D01*

-X336724Y224750D01*

-X336658Y224474D01*

-X336635Y224192D01*

-X336658Y223910D01*

-X336724Y223634D01*

-X336832Y223372D01*

-X336980Y223131D01*

-X337164Y222915D01*

-X337380Y222731D01*

-X337438Y222695D01*

-Y200093D01*

-X336548Y199050D01*

-X335610Y197520D01*

-X334924Y195863D01*

-X334505Y194118D01*

-X334364Y192329D01*

-X334505Y190540D01*

-X334924Y188795D01*

-X335610Y187138D01*

-X336548Y185608D01*

-X337438Y184565D01*

-Y164805D01*

-X337159Y164783D01*

-X336883Y164717D01*

-X336621Y164609D01*

-X336380Y164461D01*

-X336164Y164277D01*

-X335980Y164061D01*

-X335832Y163820D01*

-X335724Y163558D01*

-X335658Y163282D01*

-X335635Y163000D01*

-X335658Y162718D01*

-X335724Y162442D01*

-X335832Y162180D01*

-X335980Y161939D01*

-X336164Y161723D01*

-X336380Y161539D01*

-X336621Y161391D01*

-X336883Y161283D01*

-X337159Y161217D01*

-X337438Y161195D01*

-Y127000D01*

-G37*

-G36*

-X332434D02*X325792D01*

-Y170516D01*

-X325799Y170516D01*

-X326474Y170569D01*

-X327132Y170727D01*

-X327757Y170986D01*

-X328334Y171339D01*

-X328849Y171779D01*

-X329289Y172294D01*

-X329642Y172871D01*

-X329901Y173496D01*

-X330059Y174154D01*

-X330099Y174829D01*

-X330059Y175504D01*

-X329901Y176162D01*

-X329642Y176787D01*

-X329289Y177364D01*

-X328849Y177879D01*

-X328334Y178319D01*

-X327757Y178672D01*

-X327132Y178931D01*

-X326474Y179089D01*

-X325799Y179142D01*

-X325792Y179142D01*

-Y180516D01*

-X325799Y180516D01*

-X326474Y180569D01*

-X327132Y180727D01*

-X327757Y180986D01*

-X328334Y181339D01*

-X328849Y181779D01*

-X329289Y182294D01*

-X329642Y182871D01*

-X329901Y183496D01*

-X330059Y184154D01*

-X330099Y184829D01*

-X330059Y185504D01*

-X329901Y186162D01*

-X329642Y186787D01*

-X329289Y187364D01*

-X328849Y187879D01*

-X328334Y188319D01*

-X327757Y188672D01*

-X327132Y188931D01*

-X326474Y189089D01*

-X325799Y189142D01*

-X325792Y189142D01*

-Y245616D01*

-X325810Y245631D01*

-X326296Y246199D01*

-X326686Y246837D01*

-X326972Y247528D01*

-X327147Y248255D01*

-X327191Y249000D01*

-X327147Y249745D01*

-X326972Y250472D01*

-X326686Y251163D01*

-X326296Y251801D01*

-X325810Y252369D01*

-X325792Y252384D01*

-Y330862D01*

-X326435Y331910D01*

-X327151Y333640D01*

-X327589Y335462D01*

-X327699Y337329D01*

-X327589Y339196D01*

-X327151Y341018D01*

-X326435Y342748D01*

-X325792Y343796D01*

-Y360516D01*

-X325799Y360516D01*

-X326474Y360569D01*

-X327132Y360727D01*

-X327757Y360986D01*

-X328334Y361339D01*

-X328849Y361779D01*

-X329289Y362294D01*

-X329642Y362871D01*

-X329901Y363496D01*

-X330059Y364154D01*

-X330099Y364829D01*

-X330059Y365504D01*

-X329901Y366162D01*

-X329642Y366787D01*

-X329289Y367364D01*

-X328849Y367879D01*

-X328334Y368319D01*

-X327757Y368672D01*

-X327132Y368931D01*

-X326474Y369089D01*

-X325799Y369142D01*

-X325792Y369142D01*

-Y370516D01*

-X325799Y370516D01*

-X326474Y370569D01*

-X327132Y370727D01*

-X327757Y370986D01*

-X328334Y371339D01*

-X328849Y371779D01*

-X329289Y372294D01*

-X329642Y372871D01*

-X329901Y373496D01*

-X330059Y374154D01*

-X330099Y374829D01*

-X330059Y375504D01*

-X329901Y376162D01*

-X329642Y376787D01*

-X329289Y377364D01*

-X328849Y377879D01*

-X328334Y378319D01*

-X327757Y378672D01*

-X327132Y378931D01*

-X326474Y379089D01*

-X325799Y379142D01*

-X325792Y379142D01*

-Y397000D01*

-X332434D01*

-Y253764D01*

-X331696Y253706D01*

-X330969Y253531D01*

-X330278Y253245D01*

-X329640Y252855D01*

-X329072Y252369D01*

-X328586Y251801D01*

-X328196Y251163D01*

-X327910Y250472D01*

-X327735Y249745D01*

-X327676Y249000D01*

-X327735Y248255D01*

-X327910Y247528D01*

-X328196Y246837D01*

-X328586Y246199D01*

-X329072Y245631D01*

-X329640Y245145D01*

-X330278Y244755D01*

-X330969Y244469D01*

-X331696Y244294D01*

-X332434Y244236D01*

-Y127000D01*

-G37*

-G36*

-X325792Y343796D02*X325456Y344345D01*

-X324240Y345770D01*

-X322815Y346986D01*

-X321218Y347965D01*

-X319488Y348681D01*

-X317666Y349119D01*

-X315799Y349266D01*

-X315792Y349265D01*

-Y360516D01*

-X315799Y360516D01*

-X316474Y360569D01*

-X317132Y360727D01*

-X317757Y360986D01*

-X318334Y361339D01*

-X318849Y361779D01*

-X319289Y362294D01*

-X319642Y362871D01*

-X319901Y363496D01*

-X320059Y364154D01*

-X320099Y364829D01*

-X320059Y365504D01*

-X319901Y366162D01*

-X319642Y366787D01*

-X319289Y367364D01*

-X318849Y367879D01*

-X318334Y368319D01*

-X317757Y368672D01*

-X317132Y368931D01*

-X316474Y369089D01*

-X315799Y369142D01*

-X315792Y369142D01*

-Y370516D01*

-X315799Y370516D01*

-X316474Y370569D01*

-X317132Y370727D01*

-X317757Y370986D01*

-X318334Y371339D01*

-X318849Y371779D01*

-X319289Y372294D01*

-X319642Y372871D01*

-X319901Y373496D01*

-X320059Y374154D01*

-X320099Y374829D01*

-X320059Y375504D01*

-X319901Y376162D01*

-X319642Y376787D01*

-X319289Y377364D01*

-X318849Y377879D01*

-X318334Y378319D01*

-X317757Y378672D01*

-X317132Y378931D01*

-X316474Y379089D01*

-X315799Y379142D01*

-X315792Y379142D01*

-Y397000D01*

-X325792D01*

-Y379142D01*

-X325124Y379089D01*

-X324466Y378931D01*

-X323841Y378672D01*

-X323264Y378319D01*

-X322749Y377879D01*

-X322309Y377364D01*

-X321956Y376787D01*

-X321697Y376162D01*

-X321539Y375504D01*

-X321486Y374829D01*

-X321539Y374154D01*

-X321697Y373496D01*

-X321956Y372871D01*

-X322309Y372294D01*

-X322749Y371779D01*

-X323264Y371339D01*

-X323841Y370986D01*

-X324466Y370727D01*

-X325124Y370569D01*

-X325792Y370516D01*

-Y369142D01*

-X325124Y369089D01*

-X324466Y368931D01*

-X323841Y368672D01*

-X323264Y368319D01*

-X322749Y367879D01*

-X322309Y367364D01*

-X321956Y366787D01*

-X321697Y366162D01*

-X321539Y365504D01*

-X321486Y364829D01*

-X321539Y364154D01*

-X321697Y363496D01*

-X321956Y362871D01*

-X322309Y362294D01*

-X322749Y361779D01*

-X323264Y361339D01*

-X323841Y360986D01*

-X324466Y360727D01*

-X325124Y360569D01*

-X325792Y360516D01*

-Y343796D01*

-G37*

-G36*

-Y127000D02*X315792D01*

-Y170516D01*

-X315799Y170516D01*

-X316474Y170569D01*

-X317132Y170727D01*

-X317757Y170986D01*

-X318334Y171339D01*

-X318849Y171779D01*

-X319289Y172294D01*

-X319642Y172871D01*

-X319901Y173496D01*

-X320059Y174154D01*

-X320099Y174829D01*

-X320059Y175504D01*

-X319901Y176162D01*

-X319642Y176787D01*

-X319289Y177364D01*

-X318849Y177879D01*

-X318334Y178319D01*

-X317757Y178672D01*

-X317132Y178931D01*

-X316474Y179089D01*

-X315799Y179142D01*

-X315792Y179142D01*

-Y180516D01*

-X315799Y180516D01*

-X316474Y180569D01*

-X317132Y180727D01*

-X317757Y180986D01*

-X318334Y181339D01*

-X318849Y181779D01*

-X319289Y182294D01*

-X319642Y182871D01*

-X319901Y183496D01*

-X320059Y184154D01*

-X320099Y184829D01*

-X320059Y185504D01*

-X319901Y186162D01*

-X319642Y186787D01*

-X319289Y187364D01*

-X318849Y187879D01*

-X318334Y188319D01*

-X317757Y188672D01*

-X317132Y188931D01*

-X316474Y189089D01*

-X315799Y189142D01*

-X315792Y189142D01*

-Y246873D01*

-X315832Y246808D01*

-X315909Y246718D01*

-X315999Y246641D01*

-X316099Y246580D01*

-X316209Y246535D01*

-X316323Y246507D01*

-X316441Y246498D01*

-X316559Y246507D01*

-X316673Y246535D01*

-X316783Y246580D01*

-X316883Y246641D01*

-X316973Y246718D01*

-X317050Y246808D01*

-X317111Y246908D01*

-X317156Y247018D01*

-X317184Y247132D01*

-X317191Y247250D01*

-Y250750D01*

-X317184Y250868D01*

-X317156Y250982D01*

-X317111Y251092D01*

-X317050Y251192D01*

-X316973Y251282D01*

-X316883Y251359D01*

-X316783Y251420D01*

-X316673Y251465D01*

-X316559Y251493D01*

-X316441Y251502D01*

-X316323Y251493D01*

-X316209Y251465D01*

-X316099Y251420D01*

-X315999Y251359D01*

-X315909Y251282D01*

-X315832Y251192D01*

-X315792Y251127D01*

-Y325393D01*

-X315799Y325392D01*

-X317666Y325539D01*

-X319488Y325977D01*

-X321218Y326693D01*

-X322815Y327672D01*

-X324240Y328888D01*

-X325456Y330313D01*

-X325792Y330862D01*

-Y252384D01*

-X325242Y252855D01*

-X324604Y253245D01*

-X323913Y253531D01*

-X323186Y253706D01*

-X322441Y253765D01*

-X321696Y253706D01*

-X320969Y253531D01*

-X320278Y253245D01*

-X319640Y252855D01*

-X319072Y252369D01*

-X318586Y251801D01*

-X318196Y251163D01*

-X317910Y250472D01*

-X317735Y249745D01*

-X317676Y249000D01*

-X317735Y248255D01*

-X317910Y247528D01*

-X318196Y246837D01*

-X318586Y246199D01*

-X319072Y245631D01*

-X319640Y245145D01*

-X320278Y244755D01*

-X320969Y244469D01*

-X321696Y244294D01*

-X322441Y244235D01*

-X323186Y244294D01*

-X323913Y244469D01*

-X324604Y244755D01*

-X325242Y245145D01*

-X325792Y245616D01*

-Y189142D01*

-X325124Y189089D01*

-X324466Y188931D01*

-X323841Y188672D01*

-X323264Y188319D01*

-X322749Y187879D01*

-X322309Y187364D01*

-X321956Y186787D01*

-X321697Y186162D01*

-X321539Y185504D01*

-X321486Y184829D01*

-X321539Y184154D01*

-X321697Y183496D01*

-X321956Y182871D01*

-X322309Y182294D01*

-X322749Y181779D01*

-X323264Y181339D01*

-X323841Y180986D01*

-X324466Y180727D01*

-X325124Y180569D01*

-X325792Y180516D01*

-Y179142D01*

-X325124Y179089D01*

-X324466Y178931D01*

-X323841Y178672D01*

-X323264Y178319D01*

-X322749Y177879D01*

-X322309Y177364D01*

-X321956Y176787D01*

-X321697Y176162D01*

-X321539Y175504D01*

-X321486Y174829D01*

-X321539Y174154D01*

-X321697Y173496D01*

-X321956Y172871D01*

-X322309Y172294D01*

-X322749Y171779D01*

-X323264Y171339D01*

-X323841Y170986D01*

-X324466Y170727D01*

-X325124Y170569D01*

-X325792Y170516D01*

-Y127000D01*

-G37*

-G36*

-X315792Y349265D02*X313932Y349119D01*

-X312110Y348681D01*

-X310380Y347965D01*

-X308783Y346986D01*

-X307358Y345770D01*

-X306142Y344345D01*

-X305792Y343775D01*

-Y360516D01*

-X305799Y360516D01*

-X306474Y360569D01*

-X307132Y360727D01*

-X307757Y360986D01*

-X308334Y361339D01*

-X308849Y361779D01*

-X309289Y362294D01*

-X309642Y362871D01*

-X309901Y363496D01*

-X310059Y364154D01*

-X310099Y364829D01*

-X310059Y365504D01*

-X309901Y366162D01*

-X309642Y366787D01*

-X309289Y367364D01*

-X308849Y367879D01*

-X308334Y368319D01*

-X307757Y368672D01*

-X307132Y368931D01*

-X306474Y369089D01*

-X305799Y369142D01*

-X305792Y369142D01*

-Y370516D01*

-X305799Y370516D01*

-X306474Y370569D01*

-X307132Y370727D01*

-X307757Y370986D01*

-X308334Y371339D01*

-X308849Y371779D01*

-X309289Y372294D01*

-X309642Y372871D01*

-X309901Y373496D01*

-X310059Y374154D01*

-X310099Y374829D01*

-X310059Y375504D01*

-X309901Y376162D01*

-X309642Y376787D01*

-X309289Y377364D01*

-X308849Y377879D01*

-X308334Y378319D01*

-X307757Y378672D01*

-X307132Y378931D01*

-X306474Y379089D01*

-X305799Y379142D01*

-X305792Y379142D01*

-Y397000D01*

-X315792D01*

-Y379142D01*

-X315124Y379089D01*

-X314466Y378931D01*

-X313841Y378672D01*

-X313264Y378319D01*

-X312749Y377879D01*

-X312309Y377364D01*

-X311956Y376787D01*

-X311697Y376162D01*

-X311539Y375504D01*

-X311486Y374829D01*

-X311539Y374154D01*

-X311697Y373496D01*

-X311956Y372871D01*

-X312309Y372294D01*

-X312749Y371779D01*

-X313264Y371339D01*

-X313841Y370986D01*

-X314466Y370727D01*

-X315124Y370569D01*

-X315792Y370516D01*

-Y369142D01*

-X315124Y369089D01*

-X314466Y368931D01*

-X313841Y368672D01*

-X313264Y368319D01*

-X312749Y367879D01*

-X312309Y367364D01*

-X311956Y366787D01*

-X311697Y366162D01*

-X311539Y365504D01*

-X311486Y364829D01*

-X311539Y364154D01*

-X311697Y363496D01*

-X311956Y362871D01*

-X312309Y362294D01*

-X312749Y361779D01*

-X313264Y361339D01*

-X313841Y360986D01*

-X314466Y360727D01*

-X315124Y360569D01*

-X315792Y360516D01*

-Y349265D01*

-G37*

-G36*

-X312441Y182140D02*X312749Y181779D01*

-X313264Y181339D01*

-X313841Y180986D01*

-X314466Y180727D01*

-X315124Y180569D01*

-X315792Y180516D01*

-Y179142D01*

-X315124Y179089D01*

-X314466Y178931D01*

-X313841Y178672D01*

-X313264Y178319D01*

-X312749Y177879D01*

-X312441Y177518D01*

-Y182140D01*

-G37*

-G36*

-Y325897D02*X313932Y325539D01*

-X315792Y325393D01*

-Y251127D01*

-X315771Y251092D01*

-X315726Y250982D01*

-X315698Y250868D01*

-X315691Y250750D01*

-Y247250D01*

-X315698Y247132D01*

-X315726Y247018D01*

-X315771Y246908D01*

-X315792Y246873D01*

-Y189142D01*

-X315124Y189089D01*

-X314466Y188931D01*

-X313841Y188672D01*

-X313264Y188319D01*

-X312749Y187879D01*

-X312441Y187518D01*

-Y244250D01*

-X314191D01*

-X314309Y244257D01*

-X314423Y244285D01*

-X314533Y244330D01*

-X314633Y244391D01*

-X314723Y244468D01*

-X314800Y244558D01*

-X314861Y244658D01*

-X314906Y244768D01*

-X314934Y244882D01*

-X314943Y245000D01*

-X314934Y245118D01*

-X314906Y245232D01*

-X314861Y245342D01*

-X314800Y245442D01*

-X314723Y245532D01*

-X314633Y245609D01*

-X314533Y245670D01*

-X314423Y245715D01*

-X314309Y245743D01*

-X314191Y245750D01*

-X312441D01*

-Y252250D01*

-X314191D01*

-X314309Y252257D01*

-X314423Y252285D01*

-X314533Y252330D01*

-X314633Y252391D01*

-X314723Y252468D01*

-X314800Y252558D01*

-X314861Y252658D01*

-X314906Y252768D01*

-X314934Y252882D01*

-X314943Y253000D01*

-X314934Y253118D01*

-X314906Y253232D01*

-X314861Y253342D01*

-X314800Y253442D01*

-X314723Y253532D01*

-X314633Y253609D01*

-X314533Y253670D01*

-X314423Y253715D01*

-X314309Y253743D01*

-X314191Y253750D01*

-X312441D01*

-Y293007D01*

-X312444Y293007D01*

-X312757Y293082D01*

-X313056Y293206D01*

-X313331Y293374D01*

-X313576Y293584D01*

-X313786Y293829D01*

-X313954Y294104D01*

-X314078Y294403D01*

-X314153Y294716D01*

-X314172Y295038D01*

-X314153Y295360D01*

-X314078Y295673D01*

-X313954Y295972D01*

-X313786Y296247D01*

-X313576Y296492D01*

-X313331Y296702D01*

-X313056Y296870D01*

-X312757Y296994D01*

-X312444Y297069D01*

-X312441Y297069D01*

-Y298122D01*

-X312479Y298125D01*

-X312792Y298200D01*

-X313091Y298324D01*

-X313366Y298492D01*

-X313611Y298702D01*

-X313821Y298947D01*

-X313989Y299222D01*

-X314113Y299521D01*

-X314188Y299834D01*

-X314207Y300156D01*

-X314188Y300478D01*

-X314113Y300791D01*

-X313989Y301090D01*

-X313821Y301365D01*

-X313611Y301610D01*

-X313366Y301820D01*

-X313091Y301988D01*

-X312792Y302112D01*

-X312479Y302187D01*

-X312441Y302190D01*

-Y325897D01*

-G37*

-G36*

-X315792Y127000D02*X312441D01*

-Y172140D01*

-X312749Y171779D01*

-X313264Y171339D01*

-X313841Y170986D01*

-X314466Y170727D01*

-X315124Y170569D01*

-X315792Y170516D01*

-Y127000D01*

-G37*

-G36*

-X312441D02*X310441D01*

-Y117671D01*

-X310383Y117657D01*

-X310121Y117549D01*

-X309880Y117401D01*

-X309664Y117217D01*

-X309480Y117001D01*

-X309332Y116760D01*

-X309224Y116498D01*

-X309158Y116222D01*

-X309135Y115940D01*

-X309158Y115658D01*

-X309224Y115382D01*

-X309332Y115120D01*

-X309480Y114879D01*

-X309664Y114663D01*

-X309880Y114479D01*

-X310121Y114331D01*

-X310383Y114223D01*

-X310441Y114209D01*

-Y97000D01*

-X308441D01*

-Y134952D01*

-X308621Y134841D01*

-X308883Y134733D01*

-X309159Y134667D01*

-X309441Y134644D01*

-X309723Y134667D01*

-X309999Y134733D01*

-X310261Y134841D01*

-X310502Y134989D01*

-X310718Y135173D01*

-X310902Y135389D01*

-X311050Y135630D01*

-X311158Y135892D01*

-X311224Y136168D01*

-X311241Y136450D01*

-X311224Y136732D01*

-X311158Y137008D01*

-X311050Y137270D01*

-X310902Y137511D01*

-X310718Y137727D01*

-X310502Y137911D01*

-X310261Y138059D01*

-X309999Y138167D01*

-X309723Y138233D01*

-X309441Y138256D01*

-X309159Y138233D01*

-X308883Y138167D01*

-X308621Y138059D01*

-X308441Y137948D01*

-Y140070D01*

-X308621Y139959D01*

-X308883Y139851D01*

-X309159Y139785D01*

-X309441Y139762D01*

-X309723Y139785D01*

-X309999Y139851D01*

-X310261Y139959D01*

-X310502Y140107D01*

-X310718Y140291D01*

-X310902Y140507D01*

-X311050Y140748D01*

-X311158Y141010D01*

-X311224Y141286D01*

-X311241Y141568D01*

-X311224Y141850D01*

-X311158Y142126D01*

-X311050Y142388D01*

-X310902Y142629D01*

-X310718Y142845D01*

-X310502Y143029D01*

-X310261Y143177D01*

-X309999Y143285D01*

-X309723Y143351D01*

-X309441Y143374D01*

-X309159Y143351D01*

-X308883Y143285D01*

-X308621Y143177D01*

-X308441Y143066D01*

-Y171431D01*

-X308849Y171779D01*

-X309289Y172294D01*

-X309642Y172871D01*

-X309901Y173496D01*

-X310059Y174154D01*

-X310099Y174829D01*

-X310059Y175504D01*

-X309901Y176162D01*

-X309642Y176787D01*

-X309289Y177364D01*

-X308849Y177879D01*

-X308441Y178227D01*

-Y181431D01*

-X308849Y181779D01*

-X309289Y182294D01*

-X309642Y182871D01*

-X309901Y183496D01*

-X310059Y184154D01*

-X310099Y184829D01*

-X310059Y185504D01*

-X309901Y186162D01*

-X309642Y186787D01*

-X309289Y187364D01*

-X308849Y187879D01*

-X308441Y188227D01*

-Y246498D01*

-X308559Y246507D01*

-X308673Y246535D01*

-X308783Y246580D01*

-X308883Y246641D01*

-X308973Y246718D01*

-X309050Y246808D01*

-X309111Y246908D01*

-X309156Y247018D01*

-X309184Y247132D01*

-X309191Y247250D01*

-Y250750D01*

-X309184Y250868D01*

-X309156Y250982D01*

-X309111Y251092D01*

-X309050Y251192D01*

-X308973Y251282D01*

-X308883Y251359D01*

-X308783Y251420D01*

-X308673Y251465D01*

-X308559Y251493D01*

-X308441Y251502D01*

-Y264517D01*

-X308550Y264491D01*

-X308872Y264466D01*

-X309194Y264491D01*

-X309507Y264566D01*

-X309806Y264690D01*

-X310081Y264858D01*

-X310326Y265068D01*

-X310536Y265313D01*

-X310704Y265588D01*

-X310828Y265887D01*

-X310903Y266200D01*

-X310922Y266522D01*

-X310903Y266844D01*

-X310828Y267157D01*

-X310704Y267456D01*

-X310536Y267731D01*

-X310326Y267976D01*

-X310081Y268186D01*

-X309806Y268354D01*

-X309507Y268478D01*

-X309194Y268553D01*

-X308872Y268578D01*

-X308550Y268553D01*

-X308441Y268527D01*

-Y269995D01*

-X308670Y269940D01*

-X308992Y269915D01*

-X309314Y269940D01*

-X309627Y270015D01*

-X309926Y270139D01*

-X310201Y270307D01*

-X310446Y270517D01*

-X310656Y270762D01*

-X310824Y271037D01*

-X310948Y271336D01*

-X311023Y271649D01*

-X311042Y271971D01*

-X311023Y272293D01*

-X310948Y272606D01*

-X310824Y272905D01*

-X310656Y273180D01*

-X310446Y273425D01*

-X310201Y273635D01*

-X309926Y273803D01*

-X309627Y273927D01*

-X309444Y273971D01*

-X309548Y274141D01*

-X309672Y274440D01*

-X309747Y274753D01*

-X309766Y275075D01*

-X309747Y275397D01*

-X309672Y275710D01*

-X309548Y276009D01*

-X309380Y276284D01*

-X309170Y276529D01*

-X308925Y276739D01*

-X308650Y276907D01*

-X308441Y276994D01*

-Y327964D01*

-X308783Y327672D01*

-X310380Y326693D01*

-X312110Y325977D01*

-X312441Y325897D01*

-Y302190D01*

-X312157Y302212D01*

-X311835Y302187D01*

-X311522Y302112D01*

-X311223Y301988D01*

-X310948Y301820D01*

-X310703Y301610D01*

-X310493Y301365D01*

-X310325Y301090D01*

-X310201Y300791D01*

-X310126Y300478D01*

-X310101Y300156D01*

-X310126Y299834D01*

-X310201Y299521D01*

-X310325Y299222D01*

-X310493Y298947D01*

-X310703Y298702D01*

-X310948Y298492D01*

-X311223Y298324D01*

-X311522Y298200D01*

-X311835Y298125D01*

-X312157Y298100D01*

-X312441Y298122D01*

-Y297069D01*

-X312122Y297094D01*

-X311800Y297069D01*

-X311487Y296994D01*

-X311188Y296870D01*

-X310913Y296702D01*

-X310668Y296492D01*

-X310458Y296247D01*

-X310290Y295972D01*

-X310166Y295673D01*

-X310091Y295360D01*

-X310066Y295038D01*

-X310091Y294716D01*

-X310166Y294403D01*

-X310290Y294104D01*

-X310458Y293829D01*

-X310668Y293584D01*

-X310913Y293374D01*

-X311188Y293206D01*

-X311487Y293082D01*

-X311800Y293007D01*

-X312122Y292982D01*

-X312441Y293007D01*

-Y253750D01*

-X310691D01*

-X310573Y253743D01*

-X310459Y253715D01*

-X310349Y253670D01*

-X310249Y253609D01*

-X310159Y253532D01*

-X310082Y253442D01*

-X310021Y253342D01*

-X309976Y253232D01*

-X309948Y253118D01*

-X309939Y253000D01*

-X309948Y252882D01*

-X309976Y252768D01*

-X310021Y252658D01*

-X310082Y252558D01*

-X310159Y252468D01*

-X310249Y252391D01*

-X310349Y252330D01*

-X310459Y252285D01*

-X310573Y252257D01*

-X310691Y252250D01*

-X312441D01*

-Y245750D01*

-X310691D01*

-X310573Y245743D01*

-X310459Y245715D01*

-X310349Y245670D01*

-X310249Y245609D01*

-X310159Y245532D01*

-X310082Y245442D01*

-X310021Y245342D01*

-X309976Y245232D01*

-X309948Y245118D01*

-X309939Y245000D01*

-X309948Y244882D01*

-X309976Y244768D01*

-X310021Y244658D01*

-X310082Y244558D01*

-X310159Y244468D01*

-X310249Y244391D01*

-X310349Y244330D01*

-X310459Y244285D01*

-X310573Y244257D01*

-X310691Y244250D01*

-X312441D01*

-Y187518D01*

-X312309Y187364D01*

-X311956Y186787D01*

-X311697Y186162D01*

-X311539Y185504D01*

-X311486Y184829D01*

-X311539Y184154D01*

-X311697Y183496D01*

-X311956Y182871D01*

-X312309Y182294D01*

-X312441Y182140D01*

-Y177518D01*

-X312309Y177364D01*

-X311956Y176787D01*

-X311697Y176162D01*

-X311539Y175504D01*

-X311486Y174829D01*

-X311539Y174154D01*

-X311697Y173496D01*

-X311956Y172871D01*

-X312309Y172294D01*

-X312441Y172140D01*

-Y127000D01*

-G37*

-G36*

-X308441Y276994D02*X308351Y277031D01*

-X308038Y277106D01*

-X307716Y277131D01*

-X307394Y277106D01*

-X307081Y277031D01*

-X306782Y276907D01*

-X306507Y276739D01*

-X306262Y276529D01*

-X306052Y276284D01*

-X305884Y276009D01*

-X305792Y275788D01*

-Y330883D01*

-X306142Y330313D01*

-X307358Y328888D01*

-X308441Y327964D01*

-Y276994D01*

-G37*

-G36*

-Y188227D02*X308334Y188319D01*

-X307757Y188672D01*

-X307132Y188931D01*

-X306474Y189089D01*

-X305799Y189142D01*

-X305792Y189142D01*

-Y202655D01*

-X305838Y202666D01*

-X306100Y202774D01*

-X306341Y202922D01*

-X306557Y203106D01*

-X306741Y203322D01*

-X306889Y203563D01*

-X306997Y203825D01*

-X307063Y204101D01*

-X307080Y204383D01*

-X307063Y204665D01*

-X306997Y204941D01*

-X306889Y205203D01*

-X306741Y205444D01*

-X306557Y205660D01*

-X306341Y205844D01*

-X306100Y205992D01*

-X305838Y206100D01*

-X305792Y206111D01*

-Y206148D01*

-X305861Y206206D01*

-X306045Y206422D01*

-X306193Y206663D01*

-X306301Y206925D01*

-X306367Y207201D01*

-X306384Y207483D01*

-X306367Y207765D01*

-X306301Y208041D01*

-X306193Y208303D01*

-X306045Y208544D01*

-X305861Y208760D01*

-X305792Y208818D01*

-Y209144D01*

-X305983Y209306D01*

-X306167Y209522D01*

-X306315Y209763D01*

-X306423Y210025D01*

-X306489Y210301D01*

-X306506Y210583D01*

-X306489Y210865D01*

-X306423Y211141D01*

-X306315Y211403D01*

-X306167Y211644D01*

-X305983Y211860D01*

-X305792Y212022D01*

-Y274362D01*

-X305884Y274141D01*

-X306052Y273866D01*

-X306262Y273621D01*

-X306507Y273411D01*

-X306782Y273243D01*

-X307081Y273119D01*

-X307264Y273075D01*

-X307160Y272905D01*

-X307036Y272606D01*

-X306961Y272293D01*

-X306936Y271971D01*

-X306961Y271649D01*

-X307036Y271336D01*

-X307160Y271037D01*

-X307328Y270762D01*

-X307538Y270517D01*

-X307783Y270307D01*

-X308058Y270139D01*

-X308357Y270015D01*

-X308441Y269995D01*

-Y268527D01*

-X308237Y268478D01*

-X307938Y268354D01*

-X307663Y268186D01*

-X307418Y267976D01*

-X307208Y267731D01*

-X307040Y267456D01*

-X306916Y267157D01*

-X306841Y266844D01*

-X306816Y266522D01*

-X306841Y266200D01*

-X306916Y265887D01*

-X307040Y265588D01*

-X307208Y265313D01*

-X307418Y265068D01*

-X307663Y264858D01*

-X307938Y264690D01*

-X308237Y264566D01*

-X308441Y264517D01*

-Y251502D01*

-X308323Y251493D01*

-X308209Y251465D01*

-X308099Y251420D01*

-X307999Y251359D01*

-X307909Y251282D01*

-X307832Y251192D01*

-X307771Y251092D01*

-X307726Y250982D01*

-X307698Y250868D01*

-X307691Y250750D01*

-Y247250D01*

-X307698Y247132D01*

-X307726Y247018D01*

-X307771Y246908D01*

-X307832Y246808D01*

-X307909Y246718D01*

-X307999Y246641D01*

-X308099Y246580D01*

-X308209Y246535D01*

-X308323Y246507D01*

-X308441Y246498D01*

-Y188227D01*

-G37*

-G36*

-Y178227D02*X308334Y178319D01*

-X307757Y178672D01*

-X307132Y178931D01*

-X306474Y179089D01*

-X305799Y179142D01*

-X305792Y179142D01*

-Y180516D01*

-X305799Y180516D01*

-X306474Y180569D01*

-X307132Y180727D01*

-X307757Y180986D01*

-X308334Y181339D01*

-X308441Y181431D01*

-Y178227D01*

-G37*

-G36*

-Y97000D02*X305792D01*

-Y105702D01*

-X305978Y105717D01*

-X306254Y105783D01*

-X306516Y105891D01*

-X306757Y106039D01*

-X306973Y106223D01*

-X307157Y106439D01*

-X307305Y106680D01*

-X307413Y106942D01*

-X307479Y107218D01*

-X307496Y107500D01*

-X307479Y107782D01*

-X307413Y108058D01*

-X307305Y108320D01*

-X307157Y108561D01*

-X306973Y108777D01*

-X306757Y108961D01*

-X306516Y109109D01*

-X306254Y109217D01*

-X305978Y109283D01*

-X305792Y109298D01*

-Y170516D01*

-X305799Y170516D01*

-X306474Y170569D01*

-X307132Y170727D01*

-X307757Y170986D01*

-X308334Y171339D01*

-X308441Y171431D01*

-Y143066D01*

-X308380Y143029D01*

-X308164Y142845D01*

-X307980Y142629D01*

-X307832Y142388D01*

-X307724Y142126D01*

-X307658Y141850D01*

-X307635Y141568D01*

-X307658Y141286D01*

-X307724Y141010D01*

-X307832Y140748D01*

-X307980Y140507D01*

-X308164Y140291D01*

-X308380Y140107D01*

-X308441Y140070D01*

-Y137948D01*

-X308380Y137911D01*

-X308164Y137727D01*

-X307980Y137511D01*

-X307832Y137270D01*

-X307724Y137008D01*

-X307658Y136732D01*

-X307635Y136450D01*

-X307658Y136168D01*

-X307724Y135892D01*

-X307832Y135630D01*

-X307980Y135389D01*

-X308164Y135173D01*

-X308380Y134989D01*

-X308441Y134952D01*

-Y97000D01*

-G37*

-G36*

-X305792Y206111D02*X305759Y206119D01*

-X305792Y206148D01*

-Y206111D01*

-G37*

-G36*

-Y208818D02*X305645Y208944D01*

-X305561Y208996D01*

-X305767Y209122D01*

-X305792Y209144D01*

-Y208818D01*

-G37*

-G36*

-X303362Y181279D02*X303841Y180986D01*

-X304466Y180727D01*

-X305124Y180569D01*

-X305792Y180516D01*

-Y179142D01*

-X305124Y179089D01*

-X304466Y178931D01*

-X303841Y178672D01*

-X303362Y178379D01*

-Y181279D01*

-G37*

-G36*

-Y206160D02*X303523Y206022D01*

-X303764Y205874D01*

-X304026Y205766D01*

-X304105Y205747D01*

-X304003Y205660D01*

-X303819Y205444D01*

-X303671Y205203D01*

-X303563Y204941D01*

-X303497Y204665D01*

-X303474Y204383D01*

-X303497Y204101D01*

-X303563Y203825D01*

-X303671Y203563D01*

-X303819Y203322D01*

-X304003Y203106D01*

-X304219Y202922D01*

-X304460Y202774D01*

-X304722Y202666D01*

-X304998Y202600D01*

-X305280Y202577D01*

-X305562Y202600D01*

-X305792Y202655D01*

-Y189142D01*

-X305124Y189089D01*

-X304466Y188931D01*

-X303841Y188672D01*

-X303362Y188379D01*

-Y206160D01*

-G37*

-G36*

-Y209385D02*X303429Y209306D01*

-X303645Y209122D01*

-X303729Y209070D01*

-X303523Y208944D01*

-X303362Y208806D01*

-Y209385D01*

-G37*

-G36*

-Y338000D02*X303576Y338051D01*

-X303875Y338175D01*

-X303932Y338210D01*

-X303862Y337329D01*

-X304009Y335462D01*

-X304447Y333640D01*

-X305163Y331910D01*

-X305792Y330883D01*

-Y275788D01*

-X305760Y275710D01*

-X305685Y275397D01*

-X305660Y275075D01*

-X305685Y274753D01*

-X305760Y274440D01*

-X305792Y274362D01*

-Y212022D01*

-X305767Y212044D01*

-X305526Y212192D01*

-X305264Y212300D01*

-X304988Y212366D01*

-X304706Y212389D01*

-X304424Y212366D01*

-X304148Y212300D01*

-X303886Y212192D01*

-X303645Y212044D01*

-X303429Y211860D01*

-X303362Y211781D01*

-Y327944D01*

-X303365Y327944D01*

-X303687Y327969D01*

-X304000Y328044D01*

-X304299Y328168D01*

-X304574Y328336D01*

-X304819Y328546D01*

-X305029Y328791D01*

-X305197Y329066D01*

-X305321Y329365D01*

-X305396Y329678D01*

-X305415Y330000D01*

-X305396Y330322D01*

-X305321Y330635D01*

-X305197Y330934D01*

-X305029Y331209D01*

-X304819Y331454D01*

-X304574Y331664D01*

-X304299Y331832D01*

-X304000Y331956D01*

-X303687Y332031D01*

-X303365Y332056D01*

-X303362Y332056D01*

-Y338000D01*

-G37*

-G36*

-Y361279D02*X303841Y360986D01*

-X304466Y360727D01*

-X305124Y360569D01*

-X305792Y360516D01*

-Y343775D01*

-X305163Y342748D01*

-X304553Y341276D01*

-X304395Y341461D01*

-X304150Y341671D01*

-X303875Y341839D01*

-X303576Y341963D01*

-X303362Y342014D01*

-Y361279D01*

-G37*

-G36*

-Y371279D02*X303841Y370986D01*

-X304466Y370727D01*

-X305124Y370569D01*

-X305792Y370516D01*

-Y369142D01*

-X305124Y369089D01*

-X304466Y368931D01*

-X303841Y368672D01*

-X303362Y368379D01*

-Y371279D01*

-G37*

-G36*

-Y397000D02*X305792D01*

-Y379142D01*

-X305124Y379089D01*

-X304466Y378931D01*

-X303841Y378672D01*

-X303362Y378379D01*

-Y397000D01*

-G37*

-G36*

-X305792Y97000D02*X303362D01*

-Y171279D01*

-X303841Y170986D01*

-X304466Y170727D01*

-X305124Y170569D01*

-X305792Y170516D01*

-Y109298D01*

-X305696Y109306D01*

-X305414Y109283D01*

-X305138Y109217D01*

-X304876Y109109D01*

-X304635Y108961D01*

-X304419Y108777D01*

-X304235Y108561D01*

-X304087Y108320D01*

-X303979Y108058D01*

-X303913Y107782D01*

-X303890Y107500D01*

-X303913Y107218D01*

-X303979Y106942D01*

-X304087Y106680D01*

-X304235Y106439D01*

-X304419Y106223D01*

-X304635Y106039D01*

-X304876Y105891D01*

-X305138Y105783D01*

-X305414Y105717D01*

-X305696Y105694D01*

-X305792Y105702D01*

-Y97000D01*

-G37*

-G36*

-X303362D02*X295792D01*

-Y170516D01*

-X295799Y170516D01*

-X296474Y170569D01*

-X297132Y170727D01*

-X297757Y170986D01*

-X298334Y171339D01*

-X298849Y171779D01*

-X299289Y172294D01*

-X299642Y172871D01*

-X299901Y173496D01*

-X300059Y174154D01*

-X300099Y174829D01*

-X300059Y175504D01*

-X299901Y176162D01*

-X299642Y176787D01*

-X299289Y177364D01*

-X298849Y177879D01*

-X298334Y178319D01*

-X297757Y178672D01*

-X297132Y178931D01*

-X296474Y179089D01*

-X295799Y179142D01*

-X295792Y179142D01*

-Y180516D01*

-X295799Y180516D01*

-X296474Y180569D01*

-X297132Y180727D01*

-X297757Y180986D01*

-X298334Y181339D01*

-X298849Y181779D01*

-X299289Y182294D01*

-X299642Y182871D01*

-X299901Y183496D01*

-X300059Y184154D01*

-X300099Y184829D01*

-X300059Y185504D01*

-X299901Y186162D01*

-X299642Y186787D01*

-X299289Y187364D01*

-X298849Y187879D01*

-X298334Y188319D01*

-X297757Y188672D01*

-X297132Y188931D01*

-X296474Y189089D01*

-X295799Y189142D01*

-X295792Y189142D01*

-Y241583D01*

-X295937Y241572D01*

-X296259Y241597D01*

-X296572Y241672D01*

-X296871Y241796D01*

-X297146Y241964D01*

-X297391Y242174D01*

-X297601Y242419D01*

-X297769Y242694D01*

-X297893Y242993D01*

-X297968Y243306D01*

-X297987Y243628D01*

-X297968Y243950D01*

-X297893Y244263D01*

-X297769Y244562D01*

-X297601Y244837D01*

-X297391Y245082D01*

-X297146Y245292D01*

-X296871Y245460D01*

-X296572Y245584D01*

-X296259Y245659D01*

-X295937Y245684D01*

-X295792Y245673D01*

-Y254395D01*

-X295793Y254395D01*

-X296092Y254271D01*

-X296405Y254196D01*

-X296727Y254171D01*

-X297049Y254196D01*

-X297362Y254271D01*

-X297661Y254395D01*

-X297936Y254563D01*

-X298181Y254773D01*

-X298391Y255018D01*

-X298559Y255293D01*

-X298683Y255592D01*

-X298758Y255905D01*

-X298777Y256227D01*

-X298758Y256549D01*

-X298683Y256862D01*

-X298559Y257161D01*

-X298391Y257436D01*

-X298181Y257681D01*

-X297936Y257891D01*

-X297661Y258059D01*

-X297362Y258183D01*

-X297049Y258258D01*

-X296727Y258283D01*

-X296405Y258258D01*

-X296092Y258183D01*

-X295793Y258059D01*

-X295792Y258059D01*

-Y281470D01*

-X295858Y281628D01*

-X295933Y281941D01*

-X295952Y282263D01*

-X295933Y282585D01*

-X295858Y282898D01*

-X295792Y283056D01*

-Y303163D01*

-X295845Y303131D01*

-X296144Y303007D01*

-X296457Y302932D01*

-X296779Y302907D01*

-X297101Y302932D01*

-X297414Y303007D01*

-X297713Y303131D01*

-X297988Y303299D01*

-X298233Y303509D01*

-X298443Y303754D01*

-X298611Y304029D01*

-X298735Y304328D01*

-X298810Y304641D01*

-X298829Y304963D01*

-X298810Y305285D01*

-X298735Y305598D01*

-X298611Y305897D01*

-X298443Y306172D01*

-X298233Y306417D01*

-X297988Y306627D01*

-X297713Y306795D01*

-X297414Y306919D01*

-X297101Y306994D01*

-X296779Y307019D01*

-X296457Y306994D01*

-X296144Y306919D01*

-X295845Y306795D01*

-X295792Y306763D01*

-Y360516D01*

-X295799Y360516D01*

-X296474Y360569D01*

-X297132Y360727D01*

-X297757Y360986D01*

-X298334Y361339D01*

-X298849Y361779D01*

-X299289Y362294D01*

-X299642Y362871D01*

-X299901Y363496D01*

-X300059Y364154D01*

-X300099Y364829D01*

-X300059Y365504D01*

-X299901Y366162D01*

-X299642Y366787D01*

-X299289Y367364D01*

-X298849Y367879D01*

-X298334Y368319D01*

-X297757Y368672D01*

-X297132Y368931D01*

-X296474Y369089D01*

-X295799Y369142D01*

-X295792Y369142D01*

-Y370516D01*

-X295799Y370516D01*

-X296474Y370569D01*

-X297132Y370727D01*

-X297757Y370986D01*

-X298334Y371339D01*

-X298849Y371779D01*

-X299289Y372294D01*

-X299642Y372871D01*

-X299901Y373496D01*

-X300059Y374154D01*

-X300099Y374829D01*

-X300059Y375504D01*

-X299901Y376162D01*

-X299642Y376787D01*

-X299289Y377364D01*

-X298849Y377879D01*

-X298334Y378319D01*

-X297757Y378672D01*

-X297132Y378931D01*

-X296474Y379089D01*

-X295799Y379142D01*

-X295792Y379142D01*

-Y397000D01*

-X303362D01*

-Y378379D01*

-X303264Y378319D01*

-X302749Y377879D01*

-X302309Y377364D01*

-X301956Y376787D01*

-X301697Y376162D01*

-X301539Y375504D01*

-X301486Y374829D01*

-X301539Y374154D01*

-X301697Y373496D01*

-X301956Y372871D01*

-X302309Y372294D01*

-X302749Y371779D01*

-X303264Y371339D01*

-X303362Y371279D01*

-Y368379D01*

-X303264Y368319D01*

-X302749Y367879D01*

-X302309Y367364D01*

-X301956Y366787D01*

-X301697Y366162D01*

-X301539Y365504D01*

-X301486Y364829D01*

-X301539Y364154D01*

-X301697Y363496D01*

-X301956Y362871D01*

-X302309Y362294D01*

-X302749Y361779D01*

-X303264Y361339D01*

-X303362Y361279D01*

-Y342014D01*

-X303263Y342038D01*

-X302941Y342063D01*

-X302619Y342038D01*

-X302306Y341963D01*

-X302007Y341839D01*

-X301732Y341671D01*

-X301487Y341461D01*

-X301277Y341216D01*

-X301109Y340941D01*

-X300985Y340642D01*

-X300910Y340329D01*

-X300885Y340007D01*

-X300910Y339685D01*

-X300985Y339372D01*

-X301109Y339073D01*

-X301277Y338798D01*

-X301487Y338553D01*

-X301732Y338343D01*

-X302007Y338175D01*

-X302306Y338051D01*

-X302619Y337976D01*

-X302941Y337951D01*

-X303263Y337976D01*

-X303362Y338000D01*

-Y332056D01*

-X303043Y332031D01*

-X302730Y331956D01*

-X302431Y331832D01*

-X302156Y331664D01*

-X301911Y331454D01*

-X301701Y331209D01*

-X301533Y330934D01*

-X301409Y330635D01*

-X301334Y330322D01*

-X301309Y330000D01*

-X301334Y329678D01*

-X301409Y329365D01*

-X301533Y329066D01*

-X301701Y328791D01*

-X301911Y328546D01*

-X302156Y328336D01*

-X302431Y328168D01*

-X302730Y328044D01*

-X303043Y327969D01*

-X303362Y327944D01*

-Y211781D01*

-X303245Y211644D01*

-X303097Y211403D01*

-X302989Y211141D01*

-X302923Y210865D01*

-X302900Y210583D01*

-X302923Y210301D01*

-X302989Y210025D01*

-X303097Y209763D01*

-X303245Y209522D01*

-X303362Y209385D01*

-Y208806D01*

-X303307Y208760D01*

-X303123Y208544D01*

-X302975Y208303D01*

-X302867Y208041D01*

-X302801Y207765D01*

-X302778Y207483D01*

-X302801Y207201D01*

-X302867Y206925D01*

-X302975Y206663D01*

-X303123Y206422D01*

-X303307Y206206D01*

-X303362Y206160D01*

-Y188379D01*

-X303264Y188319D01*

-X302749Y187879D01*

-X302309Y187364D01*

-X301956Y186787D01*

-X301697Y186162D01*

-X301539Y185504D01*

-X301486Y184829D01*

-X301539Y184154D01*

-X301697Y183496D01*

-X301956Y182871D01*

-X302309Y182294D01*

-X302749Y181779D01*

-X303264Y181339D01*

-X303362Y181279D01*

-Y178379D01*

-X303264Y178319D01*

-X302749Y177879D01*

-X302309Y177364D01*

-X301956Y176787D01*

-X301697Y176162D01*

-X301539Y175504D01*

-X301486Y174829D01*

-X301539Y174154D01*

-X301697Y173496D01*

-X301956Y172871D01*

-X302309Y172294D01*

-X302749Y171779D01*

-X303264Y171339D01*

-X303362Y171279D01*

-Y97000D01*

-G37*

-G36*

-X295792D02*X287914D01*

-Y171082D01*

-X288334Y171339D01*

-X288849Y171779D01*

-X289289Y172294D01*

-X289642Y172871D01*

-X289901Y173496D01*

-X290059Y174154D01*

-X290099Y174829D01*

-X290059Y175504D01*

-X289901Y176162D01*

-X289642Y176787D01*

-X289289Y177364D01*

-X288849Y177879D01*

-X288334Y178319D01*

-X287914Y178576D01*

-Y181082D01*

-X288334Y181339D01*

-X288849Y181779D01*

-X289289Y182294D01*

-X289642Y182871D01*

-X289901Y183496D01*

-X290059Y184154D01*

-X290099Y184829D01*

-X290059Y185504D01*

-X289901Y186162D01*

-X289642Y186787D01*

-X289289Y187364D01*

-X288849Y187879D01*

-X288334Y188319D01*

-X287914Y188576D01*

-Y305773D01*

-X287917Y305773D01*

-X288239Y305798D01*

-X288552Y305873D01*

-X288851Y305997D01*

-X289126Y306165D01*

-X289371Y306375D01*

-X289581Y306620D01*

-X289749Y306895D01*

-X289873Y307194D01*

-X289948Y307507D01*

-X289967Y307829D01*

-X289948Y308151D01*

-X289873Y308464D01*

-X289749Y308763D01*

-X289581Y309038D01*

-X289371Y309283D01*

-X289126Y309493D01*

-X288851Y309661D01*

-X288552Y309785D01*

-X288239Y309860D01*

-X287917Y309885D01*

-X287914Y309885D01*

-Y361082D01*

-X288334Y361339D01*

-X288849Y361779D01*

-X289289Y362294D01*

-X289642Y362871D01*

-X289901Y363496D01*

-X290059Y364154D01*

-X290099Y364829D01*

-X290059Y365504D01*

-X289901Y366162D01*

-X289642Y366787D01*

-X289289Y367364D01*

-X288849Y367879D01*

-X288334Y368319D01*

-X287914Y368576D01*

-Y371082D01*

-X288334Y371339D01*

-X288849Y371779D01*

-X289289Y372294D01*

-X289642Y372871D01*

-X289901Y373496D01*

-X290059Y374154D01*

-X290099Y374829D01*

-X290059Y375504D01*

-X289901Y376162D01*

-X289642Y376787D01*

-X289289Y377364D01*

-X288849Y377879D01*

-X288334Y378319D01*

-X287914Y378576D01*

-Y397000D01*

-X295792D01*

-Y379142D01*

-X295124Y379089D01*

-X294466Y378931D01*

-X293841Y378672D01*

-X293264Y378319D01*

-X292749Y377879D01*

-X292309Y377364D01*

-X291956Y376787D01*

-X291697Y376162D01*

-X291539Y375504D01*

-X291486Y374829D01*

-X291539Y374154D01*

-X291697Y373496D01*

-X291956Y372871D01*

-X292309Y372294D01*

-X292749Y371779D01*

-X293264Y371339D01*

-X293841Y370986D01*

-X294466Y370727D01*

-X295124Y370569D01*

-X295792Y370516D01*

-Y369142D01*

-X295124Y369089D01*

-X294466Y368931D01*

-X293841Y368672D01*

-X293264Y368319D01*

-X292749Y367879D01*

-X292309Y367364D01*

-X291956Y366787D01*

-X291697Y366162D01*

-X291539Y365504D01*

-X291486Y364829D01*

-X291539Y364154D01*

-X291697Y363496D01*

-X291956Y362871D01*

-X292309Y362294D01*

-X292749Y361779D01*

-X293264Y361339D01*

-X293841Y360986D01*

-X294466Y360727D01*

-X295124Y360569D01*

-X295792Y360516D01*

-Y306763D01*

-X295570Y306627D01*

-X295325Y306417D01*

-X295115Y306172D01*

-X294947Y305897D01*

-X294823Y305598D01*

-X294748Y305285D01*

-X294723Y304963D01*

-X294748Y304641D01*

-X294823Y304328D01*

-X294947Y304029D01*

-X295115Y303754D01*

-X295325Y303509D01*

-X295570Y303299D01*

-X295792Y303163D01*

-Y283056D01*

-X295734Y283197D01*

-X295566Y283472D01*

-X295356Y283717D01*

-X295111Y283927D01*

-X294836Y284095D01*

-X294537Y284219D01*

-X294224Y284294D01*

-X293902Y284319D01*

-X293580Y284294D01*

-X293267Y284219D01*

-X292968Y284095D01*

-X292693Y283927D01*

-X292448Y283717D01*

-X292238Y283472D01*

-X292070Y283197D01*

-X291946Y282898D01*

-X291871Y282585D01*

-X291846Y282263D01*

-X291871Y281941D01*

-X291946Y281628D01*

-X292070Y281329D01*

-X292238Y281054D01*

-X292448Y280809D01*

-X292693Y280599D01*

-X292968Y280431D01*

-X293267Y280307D01*

-X293580Y280232D01*

-X293902Y280207D01*

-X294224Y280232D01*

-X294537Y280307D01*

-X294836Y280431D01*

-X295111Y280599D01*

-X295356Y280809D01*

-X295566Y281054D01*

-X295734Y281329D01*

-X295792Y281470D01*

-Y258059D01*

-X295518Y257891D01*

-X295273Y257681D01*

-X295063Y257436D01*

-X294895Y257161D01*

-X294771Y256862D01*

-X294696Y256549D01*

-X294671Y256227D01*

-X294696Y255905D01*

-X294771Y255592D01*

-X294895Y255293D01*

-X295063Y255018D01*

-X295273Y254773D01*

-X295518Y254563D01*

-X295792Y254395D01*

-Y245673D01*

-X295615Y245659D01*

-X295302Y245584D01*

-X295003Y245460D01*

-X294728Y245292D01*

-X294483Y245082D01*

-X294273Y244837D01*

-X294105Y244562D01*

-X293981Y244263D01*

-X293906Y243950D01*

-X293881Y243628D01*

-X293906Y243306D01*

-X293981Y242993D01*

-X294105Y242694D01*

-X294273Y242419D01*

-X294483Y242174D01*

-X294728Y241964D01*

-X295003Y241796D01*

-X295302Y241672D01*

-X295615Y241597D01*

-X295792Y241583D01*

-Y189142D01*

-X295124Y189089D01*

-X294466Y188931D01*

-X293841Y188672D01*

-X293264Y188319D01*

-X292749Y187879D01*

-X292309Y187364D01*

-X291956Y186787D01*

-X291697Y186162D01*

-X291539Y185504D01*

-X291486Y184829D01*

-X291539Y184154D01*

-X291697Y183496D01*

-X291956Y182871D01*

-X292309Y182294D01*

-X292749Y181779D01*

-X293264Y181339D01*

-X293841Y180986D01*

-X294466Y180727D01*

-X295124Y180569D01*

-X295792Y180516D01*

-Y179142D01*

-X295124Y179089D01*

-X294466Y178931D01*

-X293841Y178672D01*

-X293264Y178319D01*

-X292749Y177879D01*

-X292309Y177364D01*

-X291956Y176787D01*

-X291697Y176162D01*

-X291539Y175504D01*

-X291486Y174829D01*

-X291539Y174154D01*

-X291697Y173496D01*

-X291956Y172871D01*

-X292309Y172294D01*

-X292749Y171779D01*

-X293264Y171339D01*

-X293841Y170986D01*

-X294466Y170727D01*

-X295124Y170569D01*

-X295792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X287914Y378576D02*X287757Y378672D01*

-X287132Y378931D01*

-X286474Y379089D01*

-X285799Y379142D01*

-X285792Y379142D01*

-Y397000D01*

-X287914D01*

-Y378576D01*

-G37*

-G36*

-Y368576D02*X287757Y368672D01*

-X287132Y368931D01*

-X286474Y369089D01*

-X285799Y369142D01*

-X285792Y369142D01*

-Y370516D01*

-X285799Y370516D01*

-X286474Y370569D01*

-X287132Y370727D01*

-X287757Y370986D01*

-X287914Y371082D01*

-Y368576D01*

-G37*

-G36*

-Y188576D02*X287757Y188672D01*

-X287132Y188931D01*

-X286474Y189089D01*

-X285799Y189142D01*

-X285792Y189142D01*

-Y322979D01*

-X286065Y323044D01*

-X286364Y323168D01*

-X286639Y323336D01*

-X286884Y323546D01*

-X287094Y323791D01*

-X287262Y324066D01*

-X287386Y324365D01*

-X287461Y324678D01*

-X287480Y325000D01*

-X287461Y325322D01*

-X287386Y325635D01*

-X287262Y325934D01*

-X287094Y326209D01*

-X286884Y326454D01*

-X286639Y326664D01*

-X286364Y326832D01*

-X286065Y326956D01*

-X285792Y327021D01*

-Y360516D01*

-X285799Y360516D01*

-X286474Y360569D01*

-X287132Y360727D01*

-X287757Y360986D01*

-X287914Y361082D01*

-Y309885D01*

-X287595Y309860D01*

-X287282Y309785D01*

-X286983Y309661D01*

-X286708Y309493D01*

-X286463Y309283D01*

-X286253Y309038D01*

-X286085Y308763D01*

-X285961Y308464D01*

-X285886Y308151D01*

-X285861Y307829D01*

-X285886Y307507D01*

-X285961Y307194D01*

-X286085Y306895D01*

-X286253Y306620D01*

-X286463Y306375D01*

-X286708Y306165D01*

-X286983Y305997D01*

-X287282Y305873D01*

-X287595Y305798D01*

-X287914Y305773D01*

-Y188576D01*

-G37*

-G36*

-Y178576D02*X287757Y178672D01*

-X287132Y178931D01*

-X286474Y179089D01*

-X285799Y179142D01*

-X285792Y179142D01*

-Y180516D01*

-X285799Y180516D01*

-X286474Y180569D01*

-X287132Y180727D01*

-X287757Y180986D01*

-X287914Y181082D01*

-Y178576D01*

-G37*

-G36*

-Y97000D02*X285792D01*

-Y170516D01*

-X285799Y170516D01*

-X286474Y170569D01*

-X287132Y170727D01*

-X287757Y170986D01*

-X287914Y171082D01*

-Y97000D01*

-G37*

-G36*

-X285792D02*X278222D01*

-Y171271D01*

-X278334Y171339D01*

-X278849Y171779D01*

-X279289Y172294D01*

-X279642Y172871D01*

-X279901Y173496D01*

-X280059Y174154D01*

-X280099Y174829D01*

-X280059Y175504D01*

-X279901Y176162D01*

-X279642Y176787D01*

-X279289Y177364D01*

-X278849Y177879D01*

-X278334Y178319D01*

-X278222Y178387D01*

-Y181271D01*

-X278334Y181339D01*

-X278849Y181779D01*

-X279289Y182294D01*

-X279642Y182871D01*

-X279901Y183496D01*

-X280059Y184154D01*

-X280099Y184829D01*

-X280059Y185504D01*

-X279901Y186162D01*

-X279642Y186787D01*

-X279289Y187364D01*

-X278849Y187879D01*

-X278334Y188319D01*

-X278222Y188387D01*

-Y277546D01*

-X278225Y277546D01*

-X278547Y277571D01*

-X278860Y277646D01*

-X279159Y277770D01*

-X279434Y277938D01*

-X279679Y278148D01*

-X279889Y278393D01*

-X280057Y278668D01*

-X280181Y278967D01*

-X280256Y279280D01*

-X280275Y279602D01*

-X280256Y279924D01*

-X280181Y280237D01*

-X280057Y280536D01*

-X279889Y280811D01*

-X279679Y281056D01*

-X279434Y281266D01*

-X279159Y281434D01*

-X278860Y281558D01*

-X278547Y281633D01*

-X278225Y281658D01*

-X278222Y281658D01*

-Y283674D01*

-X278380Y283539D01*

-X278621Y283391D01*

-X278883Y283283D01*

-X279159Y283217D01*

-X279441Y283194D01*

-X279723Y283217D01*

-X279999Y283283D01*

-X280261Y283391D01*

-X280502Y283539D01*

-X280718Y283723D01*

-X280902Y283939D01*

-X281050Y284180D01*

-X281158Y284442D01*

-X281224Y284718D01*

-X281241Y285000D01*

-X281224Y285282D01*

-X281158Y285558D01*

-X281050Y285820D01*

-X280902Y286061D01*

-X280718Y286277D01*

-X280502Y286461D01*

-X280261Y286609D01*

-X279999Y286717D01*

-X279723Y286783D01*

-X279441Y286806D01*

-X279159Y286783D01*

-X278883Y286717D01*

-X278621Y286609D01*

-X278380Y286461D01*

-X278222Y286326D01*

-Y296557D01*

-X278529Y296581D01*

-X278842Y296656D01*

-X279141Y296780D01*

-X279416Y296948D01*

-X279661Y297158D01*

-X279871Y297403D01*

-X280039Y297678D01*

-X280163Y297977D01*

-X280238Y298290D01*

-X280257Y298612D01*

-X280238Y298934D01*

-X280163Y299247D01*

-X280039Y299546D01*

-X279871Y299821D01*

-X279661Y300066D01*

-X279416Y300276D01*

-X279141Y300444D01*

-X278842Y300568D01*

-X278529Y300643D01*

-X278222Y300667D01*

-Y306457D01*

-X278383Y306555D01*

-X278628Y306765D01*

-X278838Y307010D01*

-X279006Y307285D01*

-X279130Y307584D01*

-X279205Y307897D01*

-X279224Y308219D01*

-X279205Y308541D01*

-X279130Y308854D01*

-X279006Y309153D01*

-X278838Y309428D01*

-X278628Y309673D01*

-X278383Y309883D01*

-X278222Y309981D01*

-Y345601D01*

-X278383Y345668D01*

-X278658Y345836D01*

-X278903Y346046D01*

-X279113Y346291D01*

-X279281Y346566D01*

-X279405Y346865D01*

-X279480Y347178D01*

-X279499Y347500D01*

-X279480Y347822D01*

-X279405Y348135D01*

-X279281Y348434D01*

-X279113Y348709D01*

-X278903Y348954D01*

-X278658Y349164D01*

-X278383Y349332D01*

-X278222Y349399D01*

-Y361271D01*

-X278334Y361339D01*

-X278849Y361779D01*

-X279289Y362294D01*

-X279642Y362871D01*

-X279901Y363496D01*

-X280059Y364154D01*

-X280099Y364829D01*

-X280059Y365504D01*

-X279901Y366162D01*

-X279642Y366787D01*

-X279289Y367364D01*

-X278849Y367879D01*

-X278334Y368319D01*

-X278222Y368387D01*

-Y371271D01*

-X278334Y371339D01*

-X278849Y371779D01*

-X279289Y372294D01*

-X279642Y372871D01*

-X279901Y373496D01*

-X280059Y374154D01*

-X280099Y374829D01*

-X280059Y375504D01*

-X279901Y376162D01*

-X279642Y376787D01*

-X279289Y377364D01*

-X278849Y377879D01*

-X278334Y378319D01*

-X278222Y378387D01*

-Y397000D01*

-X285792D01*

-Y379142D01*

-X285124Y379089D01*

-X284466Y378931D01*

-X283841Y378672D01*

-X283264Y378319D01*

-X282749Y377879D01*

-X282309Y377364D01*

-X281956Y376787D01*

-X281697Y376162D01*

-X281539Y375504D01*

-X281486Y374829D01*

-X281539Y374154D01*

-X281697Y373496D01*

-X281956Y372871D01*

-X282309Y372294D01*

-X282749Y371779D01*

-X283264Y371339D01*

-X283841Y370986D01*

-X284466Y370727D01*

-X285124Y370569D01*

-X285792Y370516D01*

-Y369142D01*

-X285124Y369089D01*

-X284466Y368931D01*

-X283841Y368672D01*

-X283264Y368319D01*

-X282749Y367879D01*

-X282309Y367364D01*

-X281956Y366787D01*

-X281697Y366162D01*

-X281539Y365504D01*

-X281486Y364829D01*

-X281539Y364154D01*

-X281697Y363496D01*

-X281956Y362871D01*

-X282309Y362294D01*

-X282749Y361779D01*

-X283264Y361339D01*

-X283841Y360986D01*

-X284466Y360727D01*

-X285124Y360569D01*

-X285792Y360516D01*

-Y327021D01*

-X285752Y327031D01*

-X285430Y327056D01*

-X285108Y327031D01*

-X284795Y326956D01*

-X284496Y326832D01*

-X284221Y326664D01*

-X283976Y326454D01*

-X283766Y326209D01*

-X283598Y325934D01*

-X283474Y325635D01*

-X283399Y325322D01*

-X283374Y325000D01*

-X283399Y324678D01*

-X283474Y324365D01*

-X283598Y324066D01*

-X283766Y323791D01*

-X283976Y323546D01*

-X284221Y323336D01*

-X284496Y323168D01*

-X284795Y323044D01*

-X285108Y322969D01*

-X285430Y322944D01*

-X285752Y322969D01*

-X285792Y322979D01*

-Y189142D01*

-X285124Y189089D01*

-X284466Y188931D01*

-X283841Y188672D01*

-X283264Y188319D01*

-X282749Y187879D01*

-X282309Y187364D01*

-X281956Y186787D01*

-X281697Y186162D01*

-X281539Y185504D01*

-X281486Y184829D01*

-X281539Y184154D01*

-X281697Y183496D01*

-X281956Y182871D01*

-X282309Y182294D01*

-X282749Y181779D01*

-X283264Y181339D01*

-X283841Y180986D01*

-X284466Y180727D01*

-X285124Y180569D01*

-X285792Y180516D01*

-Y179142D01*

-X285124Y179089D01*

-X284466Y178931D01*

-X283841Y178672D01*

-X283264Y178319D01*

-X282749Y177879D01*

-X282309Y177364D01*

-X281956Y176787D01*

-X281697Y176162D01*

-X281539Y175504D01*

-X281486Y174829D01*

-X281539Y174154D01*

-X281697Y173496D01*

-X281956Y172871D01*

-X282309Y172294D01*

-X282749Y171779D01*

-X283264Y171339D01*

-X283841Y170986D01*

-X284466Y170727D01*

-X285124Y170569D01*

-X285792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X278222Y378387D02*X277757Y378672D01*

-X277132Y378931D01*

-X276474Y379089D01*

-X275799Y379142D01*

-X275792Y379142D01*

-Y397000D01*

-X278222D01*

-Y378387D01*

-G37*

-G36*

-Y368387D02*X277757Y368672D01*

-X277132Y368931D01*

-X276474Y369089D01*

-X275799Y369142D01*

-X275792Y369142D01*

-Y370516D01*

-X275799Y370516D01*

-X276474Y370569D01*

-X277132Y370727D01*

-X277757Y370986D01*

-X278222Y371271D01*

-Y368387D01*

-G37*

-G36*

-Y349399D02*X278084Y349456D01*

-X277771Y349531D01*

-X277449Y349556D01*

-X277127Y349531D01*

-X276814Y349456D01*

-X276515Y349332D01*

-X276240Y349164D01*

-X275995Y348954D01*

-X275792Y348717D01*

-Y360516D01*

-X275799Y360516D01*

-X276474Y360569D01*

-X277132Y360727D01*

-X277757Y360986D01*

-X278222Y361271D01*

-Y349399D01*

-G37*

-G36*

-Y309981D02*X278108Y310051D01*

-X277809Y310175D01*

-X277496Y310250D01*

-X277174Y310275D01*

-X276852Y310250D01*

-X276539Y310175D01*

-X276240Y310051D01*

-X275965Y309883D01*

-X275792Y309735D01*

-Y346283D01*

-X275995Y346046D01*

-X276240Y345836D01*

-X276515Y345668D01*

-X276814Y345544D01*

-X277127Y345469D01*

-X277449Y345444D01*

-X277771Y345469D01*

-X278084Y345544D01*

-X278222Y345601D01*

-Y309981D01*

-G37*

-G36*

-Y188387D02*X277757Y188672D01*

-X277132Y188931D01*

-X276474Y189089D01*

-X275799Y189142D01*

-X275792Y189142D01*

-Y306703D01*

-X275965Y306555D01*

-X276240Y306387D01*

-X276539Y306263D01*

-X276852Y306188D01*

-X277174Y306163D01*

-X277496Y306188D01*

-X277809Y306263D01*

-X278108Y306387D01*

-X278222Y306457D01*

-Y300667D01*

-X278207Y300668D01*

-X277885Y300643D01*

-X277572Y300568D01*

-X277273Y300444D01*

-X276998Y300276D01*

-X276753Y300066D01*

-X276543Y299821D01*

-X276375Y299546D01*

-X276251Y299247D01*

-X276176Y298934D01*

-X276151Y298612D01*

-X276176Y298290D01*

-X276251Y297977D01*

-X276375Y297678D01*

-X276543Y297403D01*

-X276753Y297158D01*

-X276998Y296948D01*

-X277273Y296780D01*

-X277572Y296656D01*

-X277885Y296581D01*

-X278207Y296556D01*

-X278222Y296557D01*

-Y286326D01*

-X278164Y286277D01*

-X277980Y286061D01*

-X277832Y285820D01*

-X277724Y285558D01*

-X277658Y285282D01*

-X277635Y285000D01*

-X277658Y284718D01*

-X277724Y284442D01*

-X277832Y284180D01*

-X277980Y283939D01*

-X278164Y283723D01*

-X278222Y283674D01*

-Y281658D01*

-X277903Y281633D01*

-X277590Y281558D01*

-X277291Y281434D01*

-X277016Y281266D01*

-X276771Y281056D01*

-X276561Y280811D01*

-X276393Y280536D01*

-X276269Y280237D01*

-X276194Y279924D01*

-X276169Y279602D01*

-X276194Y279280D01*

-X276269Y278967D01*

-X276393Y278668D01*

-X276561Y278393D01*

-X276771Y278148D01*

-X277016Y277938D01*

-X277291Y277770D01*

-X277590Y277646D01*

-X277903Y277571D01*

-X278222Y277546D01*

-Y188387D01*

-G37*

-G36*

-Y178387D02*X277757Y178672D01*

-X277132Y178931D01*

-X276474Y179089D01*

-X275799Y179142D01*

-X275792Y179142D01*

-Y180516D01*

-X275799Y180516D01*

-X276474Y180569D01*

-X277132Y180727D01*

-X277757Y180986D01*

-X278222Y181271D01*

-Y178387D01*

-G37*

-G36*

-Y97000D02*X275792D01*

-Y170516D01*

-X275799Y170516D01*

-X276474Y170569D01*

-X277132Y170727D01*

-X277757Y170986D01*

-X278222Y171271D01*

-Y97000D01*

-G37*

-G36*

-X275792D02*X268938D01*

-Y171883D01*

-X269289Y172294D01*

-X269642Y172871D01*

-X269901Y173496D01*

-X270059Y174154D01*

-X270099Y174829D01*

-X270059Y175504D01*

-X269901Y176162D01*

-X269642Y176787D01*

-X269289Y177364D01*

-X268938Y177775D01*

-Y181883D01*

-X269289Y182294D01*

-X269642Y182871D01*

-X269901Y183496D01*

-X270059Y184154D01*

-X270099Y184829D01*

-X270059Y185504D01*

-X269901Y186162D01*

-X269642Y186787D01*

-X269289Y187364D01*

-X268938Y187775D01*

-Y196770D01*

-X269159Y196717D01*

-X269441Y196694D01*

-X269723Y196717D01*

-X269999Y196783D01*

-X270261Y196891D01*

-X270502Y197039D01*

-X270718Y197223D01*

-X270902Y197439D01*

-X271050Y197680D01*

-X271158Y197942D01*

-X271224Y198218D01*

-X271241Y198500D01*

-X271224Y198782D01*

-X271158Y199058D01*

-X271050Y199320D01*

-X270902Y199561D01*

-X270718Y199777D01*

-X270502Y199961D01*

-X270261Y200109D01*

-X269999Y200217D01*

-X269723Y200283D01*

-X269441Y200306D01*

-X269159Y200283D01*

-X268938Y200230D01*

-Y230004D01*

-X269121Y229891D01*

-X269383Y229783D01*

-X269659Y229717D01*

-X269941Y229694D01*

-X270223Y229717D01*

-X270499Y229783D01*

-X270761Y229891D01*

-X271002Y230039D01*

-X271218Y230223D01*

-X271402Y230439D01*

-X271550Y230680D01*

-X271658Y230942D01*

-X271724Y231218D01*

-X271741Y231500D01*

-X271724Y231782D01*

-X271658Y232058D01*

-X271550Y232320D01*

-X271402Y232561D01*

-X271218Y232777D01*

-X271002Y232961D01*

-X270761Y233109D01*

-X270499Y233217D01*

-X270223Y233283D01*

-X269941Y233306D01*

-X269659Y233283D01*

-X269383Y233217D01*

-X269121Y233109D01*

-X268938Y232996D01*

-Y296708D01*

-X269018Y296675D01*

-X269331Y296600D01*

-X269653Y296575D01*

-X269975Y296600D01*

-X270288Y296675D01*

-X270587Y296799D01*

-X270862Y296967D01*

-X271107Y297177D01*

-X271317Y297422D01*

-X271426Y297601D01*

-X271565Y297373D01*

-X271775Y297128D01*

-X272020Y296918D01*

-X272295Y296750D01*

-X272594Y296626D01*

-X272907Y296551D01*

-X273229Y296526D01*

-X273551Y296551D01*

-X273864Y296626D01*

-X274163Y296750D01*

-X274438Y296918D01*

-X274683Y297128D01*

-X274893Y297373D01*

-X275061Y297648D01*

-X275185Y297947D01*

-X275260Y298260D01*

-X275279Y298582D01*

-X275260Y298904D01*

-X275185Y299217D01*

-X275061Y299516D01*

-X274893Y299791D01*

-X274683Y300036D01*

-X274438Y300246D01*

-X274163Y300414D01*

-X273864Y300538D01*

-X273551Y300613D01*

-X273229Y300638D01*

-X272907Y300613D01*

-X272594Y300538D01*

-X272295Y300414D01*

-X272020Y300246D01*

-X271775Y300036D01*

-X271565Y299791D01*

-X271456Y299612D01*

-X271317Y299840D01*

-X271107Y300085D01*

-X270862Y300295D01*

-X270587Y300463D01*

-X270288Y300587D01*

-X269975Y300662D01*

-X269653Y300687D01*

-X269331Y300662D01*

-X269018Y300587D01*

-X268938Y300554D01*

-Y311944D01*

-X268941Y311944D01*

-X269263Y311969D01*

-X269576Y312044D01*

-X269875Y312168D01*

-X270150Y312336D01*

-X270395Y312546D01*

-X270605Y312791D01*

-X270773Y313066D01*

-X270897Y313365D01*

-X270972Y313678D01*

-X270991Y314000D01*

-X270972Y314322D01*

-X270897Y314635D01*

-X270773Y314934D01*

-X270605Y315209D01*

-X270395Y315454D01*

-X270150Y315664D01*

-X269875Y315832D01*

-X269576Y315956D01*

-X269263Y316031D01*

-X268941Y316056D01*

-X268938Y316056D01*

-Y335008D01*

-X268980Y334939D01*

-X269164Y334723D01*

-X269380Y334539D01*

-X269621Y334391D01*

-X269883Y334283D01*

-X270159Y334217D01*

-X270441Y334194D01*

-X270723Y334217D01*

-X270999Y334283D01*

-X271261Y334391D01*

-X271502Y334539D01*

-X271718Y334723D01*

-X271902Y334939D01*

-X272050Y335180D01*

-X272158Y335442D01*

-X272224Y335718D01*

-X272241Y336000D01*

-X272224Y336282D01*

-X272158Y336558D01*

-X272050Y336820D01*

-X271902Y337061D01*

-X271718Y337277D01*

-X271502Y337461D01*

-X271261Y337609D01*

-X270999Y337717D01*

-X270723Y337783D01*

-X270441Y337806D01*

-X270159Y337783D01*

-X269883Y337717D01*

-X269621Y337609D01*

-X269380Y337461D01*

-X269164Y337277D01*

-X268980Y337061D01*

-X268938Y336992D01*

-Y341508D01*

-X268980Y341439D01*

-X269164Y341223D01*

-X269380Y341039D01*

-X269621Y340891D01*

-X269883Y340783D01*

-X270159Y340717D01*

-X270441Y340694D01*

-X270723Y340717D01*

-X270999Y340783D01*

-X271261Y340891D01*

-X271502Y341039D01*

-X271718Y341223D01*

-X271902Y341439D01*

-X272050Y341680D01*

-X272158Y341942D01*

-X272224Y342218D01*

-X272241Y342500D01*

-X272224Y342782D01*

-X272158Y343058D01*

-X272050Y343320D01*

-X271902Y343561D01*

-X271718Y343777D01*

-X271502Y343961D01*

-X271261Y344109D01*

-X270999Y344217D01*

-X270723Y344283D01*

-X270441Y344306D01*

-X270159Y344283D01*

-X269883Y344217D01*

-X269621Y344109D01*

-X269380Y343961D01*

-X269164Y343777D01*

-X268980Y343561D01*

-X268938Y343492D01*

-Y348508D01*

-X268980Y348439D01*

-X269164Y348223D01*

-X269380Y348039D01*

-X269621Y347891D01*

-X269883Y347783D01*

-X270159Y347717D01*

-X270441Y347694D01*

-X270723Y347717D01*

-X270999Y347783D01*

-X271261Y347891D01*

-X271502Y348039D01*

-X271718Y348223D01*

-X271902Y348439D01*

-X272050Y348680D01*

-X272158Y348942D01*

-X272224Y349218D01*

-X272241Y349500D01*

-X272224Y349782D01*

-X272158Y350058D01*

-X272050Y350320D01*

-X271902Y350561D01*

-X271718Y350777D01*

-X271502Y350961D01*

-X271261Y351109D01*

-X270999Y351217D01*

-X270723Y351283D01*

-X270441Y351306D01*

-X270159Y351283D01*

-X269883Y351217D01*

-X269621Y351109D01*

-X269380Y350961D01*

-X269164Y350777D01*

-X268980Y350561D01*

-X268938Y350492D01*

-Y356008D01*

-X268980Y355939D01*

-X269164Y355723D01*

-X269380Y355539D01*

-X269621Y355391D01*

-X269883Y355283D01*

-X270159Y355217D01*

-X270441Y355194D01*

-X270723Y355217D01*

-X270999Y355283D01*

-X271261Y355391D01*

-X271502Y355539D01*

-X271718Y355723D01*

-X271902Y355939D01*

-X272050Y356180D01*

-X272158Y356442D01*

-X272224Y356718D01*

-X272241Y357000D01*

-X272224Y357282D01*

-X272158Y357558D01*

-X272050Y357820D01*

-X271902Y358061D01*

-X271718Y358277D01*

-X271502Y358461D01*

-X271261Y358609D01*

-X270999Y358717D01*

-X270723Y358783D01*

-X270441Y358806D01*

-X270159Y358783D01*

-X269883Y358717D01*

-X269621Y358609D01*

-X269380Y358461D01*

-X269164Y358277D01*

-X268980Y358061D01*

-X268938Y357992D01*

-Y361883D01*

-X269289Y362294D01*

-X269642Y362871D01*

-X269901Y363496D01*

-X270059Y364154D01*

-X270099Y364829D01*

-X270059Y365504D01*

-X269901Y366162D01*

-X269642Y366787D01*

-X269289Y367364D01*

-X268938Y367775D01*

-Y371883D01*

-X269289Y372294D01*

-X269642Y372871D01*

-X269901Y373496D01*

-X270059Y374154D01*

-X270099Y374829D01*

-X270059Y375504D01*

-X269901Y376162D01*

-X269642Y376787D01*

-X269289Y377364D01*

-X268938Y377775D01*

-Y397000D01*

-X275792D01*

-Y379142D01*

-X275124Y379089D01*

-X274466Y378931D01*

-X273841Y378672D01*

-X273264Y378319D01*

-X272749Y377879D01*

-X272309Y377364D01*

-X271956Y376787D01*

-X271697Y376162D01*

-X271539Y375504D01*

-X271486Y374829D01*

-X271539Y374154D01*

-X271697Y373496D01*

-X271956Y372871D01*

-X272309Y372294D01*

-X272749Y371779D01*

-X273264Y371339D01*

-X273841Y370986D01*

-X274466Y370727D01*

-X275124Y370569D01*

-X275792Y370516D01*

-Y369142D01*

-X275124Y369089D01*

-X274466Y368931D01*

-X273841Y368672D01*

-X273264Y368319D01*

-X272749Y367879D01*

-X272309Y367364D01*

-X271956Y366787D01*

-X271697Y366162D01*

-X271539Y365504D01*

-X271486Y364829D01*

-X271539Y364154D01*

-X271697Y363496D01*

-X271956Y362871D01*

-X272309Y362294D01*

-X272749Y361779D01*

-X273264Y361339D01*

-X273841Y360986D01*

-X274466Y360727D01*

-X275124Y360569D01*

-X275792Y360516D01*

-Y348717D01*

-X275785Y348709D01*

-X275617Y348434D01*

-X275493Y348135D01*

-X275418Y347822D01*

-X275393Y347500D01*

-X275418Y347178D01*

-X275493Y346865D01*

-X275617Y346566D01*

-X275785Y346291D01*

-X275792Y346283D01*

-Y309735D01*

-X275720Y309673D01*

-X275510Y309428D01*

-X275342Y309153D01*

-X275218Y308854D01*

-X275143Y308541D01*

-X275118Y308219D01*

-X275143Y307897D01*

-X275218Y307584D01*

-X275342Y307285D01*

-X275510Y307010D01*

-X275720Y306765D01*

-X275792Y306703D01*

-Y189142D01*

-X275124Y189089D01*

-X274466Y188931D01*

-X273841Y188672D01*

-X273264Y188319D01*

-X272749Y187879D01*

-X272309Y187364D01*

-X271956Y186787D01*

-X271697Y186162D01*

-X271539Y185504D01*

-X271486Y184829D01*

-X271539Y184154D01*

-X271697Y183496D01*

-X271956Y182871D01*

-X272309Y182294D01*

-X272749Y181779D01*

-X273264Y181339D01*

-X273841Y180986D01*

-X274466Y180727D01*

-X275124Y180569D01*

-X275792Y180516D01*

-Y179142D01*

-X275124Y179089D01*

-X274466Y178931D01*

-X273841Y178672D01*

-X273264Y178319D01*

-X272749Y177879D01*

-X272309Y177364D01*

-X271956Y176787D01*

-X271697Y176162D01*

-X271539Y175504D01*

-X271486Y174829D01*

-X271539Y174154D01*

-X271697Y173496D01*

-X271956Y172871D01*

-X272309Y172294D01*

-X272749Y171779D01*

-X273264Y171339D01*

-X273841Y170986D01*

-X274466Y170727D01*

-X275124Y170569D01*

-X275792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X268938Y377775D02*X268849Y377879D01*

-X268334Y378319D01*

-X267757Y378672D01*

-X267132Y378931D01*

-X266474Y379089D01*

-X265799Y379142D01*

-X265792Y379142D01*

-Y397000D01*

-X268938D01*

-Y377775D01*

-G37*

-G36*

-Y367775D02*X268849Y367879D01*

-X268334Y368319D01*

-X267757Y368672D01*

-X267132Y368931D01*

-X266474Y369089D01*

-X265799Y369142D01*

-X265792Y369142D01*

-Y370516D01*

-X265799Y370516D01*

-X266474Y370569D01*

-X267132Y370727D01*

-X267757Y370986D01*

-X268334Y371339D01*

-X268849Y371779D01*

-X268938Y371883D01*

-Y367775D01*

-G37*

-G36*

-Y300554D02*X268719Y300463D01*

-X268444Y300295D01*

-X268199Y300085D01*

-X267989Y299840D01*

-X267821Y299565D01*

-X267697Y299266D01*

-X267622Y298953D01*

-X267597Y298631D01*

-X267622Y298309D01*

-X267638Y298244D01*

-X267622Y298258D01*

-X267347Y298426D01*

-X267048Y298550D01*

-X266735Y298625D01*

-X266413Y298650D01*

-X266091Y298625D01*

-X265792Y298553D01*

-Y360516D01*

-X265799Y360516D01*

-X266474Y360569D01*

-X267132Y360727D01*

-X267757Y360986D01*

-X268334Y361339D01*

-X268849Y361779D01*

-X268938Y361883D01*

-Y357992D01*

-X268832Y357820D01*

-X268724Y357558D01*

-X268658Y357282D01*

-X268635Y357000D01*

-X268658Y356718D01*

-X268724Y356442D01*

-X268832Y356180D01*

-X268938Y356008D01*

-Y350492D01*

-X268832Y350320D01*

-X268724Y350058D01*

-X268658Y349782D01*

-X268635Y349500D01*

-X268658Y349218D01*

-X268724Y348942D01*

-X268832Y348680D01*

-X268938Y348508D01*

-Y343492D01*

-X268832Y343320D01*

-X268724Y343058D01*

-X268658Y342782D01*

-X268635Y342500D01*

-X268658Y342218D01*

-X268724Y341942D01*

-X268832Y341680D01*

-X268938Y341508D01*

-Y336992D01*

-X268832Y336820D01*

-X268724Y336558D01*

-X268658Y336282D01*

-X268635Y336000D01*

-X268658Y335718D01*

-X268724Y335442D01*

-X268832Y335180D01*

-X268938Y335008D01*

-Y316056D01*

-X268619Y316031D01*

-X268306Y315956D01*

-X268007Y315832D01*

-X267732Y315664D01*

-X267487Y315454D01*

-X267277Y315209D01*

-X267109Y314934D01*

-X266985Y314635D01*

-X266910Y314322D01*

-X266885Y314000D01*

-X266910Y313678D01*

-X266985Y313365D01*

-X267109Y313066D01*

-X267277Y312791D01*

-X267487Y312546D01*

-X267732Y312336D01*

-X268007Y312168D01*

-X268306Y312044D01*

-X268619Y311969D01*

-X268938Y311944D01*

-Y300554D01*

-G37*

-G36*

-Y187775D02*X268849Y187879D01*

-X268334Y188319D01*

-X267757Y188672D01*

-X267132Y188931D01*

-X266474Y189089D01*

-X265799Y189142D01*

-X265792Y189142D01*

-Y281877D01*

-X265866Y281997D01*

-X265990Y282296D01*

-X266065Y282609D01*

-X266084Y282931D01*

-X266065Y283253D01*

-X265990Y283566D01*

-X265866Y283865D01*

-X265792Y283985D01*

-Y294635D01*

-X266091Y294563D01*

-X266413Y294538D01*

-X266735Y294563D01*

-X267048Y294638D01*

-X267347Y294762D01*

-X267622Y294930D01*

-X267867Y295140D01*

-X268077Y295385D01*

-X268245Y295660D01*

-X268369Y295959D01*

-X268444Y296272D01*

-X268463Y296594D01*

-X268444Y296916D01*

-X268428Y296981D01*

-X268444Y296967D01*

-X268719Y296799D01*

-X268938Y296708D01*

-Y232996D01*

-X268880Y232961D01*

-X268664Y232777D01*

-X268480Y232561D01*

-X268332Y232320D01*

-X268224Y232058D01*

-X268158Y231782D01*

-X268135Y231500D01*

-X268158Y231218D01*

-X268224Y230942D01*

-X268332Y230680D01*

-X268480Y230439D01*

-X268664Y230223D01*

-X268880Y230039D01*

-X268938Y230004D01*

-Y200230D01*

-X268883Y200217D01*

-X268621Y200109D01*

-X268380Y199961D01*

-X268164Y199777D01*

-X267980Y199561D01*

-X267832Y199320D01*

-X267724Y199058D01*

-X267658Y198782D01*

-X267635Y198500D01*

-X267658Y198218D01*

-X267724Y197942D01*

-X267832Y197680D01*

-X267980Y197439D01*

-X268164Y197223D01*

-X268380Y197039D01*

-X268621Y196891D01*

-X268883Y196783D01*

-X268938Y196770D01*

-Y187775D01*

-G37*

-G36*

-Y177775D02*X268849Y177879D01*

-X268334Y178319D01*

-X267757Y178672D01*

-X267132Y178931D01*

-X266474Y179089D01*

-X265799Y179142D01*

-X265792Y179142D01*

-Y180516D01*

-X265799Y180516D01*

-X266474Y180569D01*

-X267132Y180727D01*

-X267757Y180986D01*

-X268334Y181339D01*

-X268849Y181779D01*

-X268938Y181883D01*

-Y177775D01*

-G37*

-G36*

-Y97000D02*X265792D01*

-Y170516D01*

-X265799Y170516D01*

-X266474Y170569D01*

-X267132Y170727D01*

-X267757Y170986D01*

-X268334Y171339D01*

-X268849Y171779D01*

-X268938Y171883D01*

-Y97000D01*

-G37*

-G36*

-X263438Y181233D02*X263841Y180986D01*

-X264466Y180727D01*

-X265124Y180569D01*

-X265792Y180516D01*

-Y179142D01*

-X265124Y179089D01*

-X264466Y178931D01*

-X263841Y178672D01*

-X263438Y178425D01*

-Y181233D01*

-G37*

-G36*

-Y280966D02*X263712Y280900D01*

-X264034Y280875D01*

-X264356Y280900D01*

-X264669Y280975D01*

-X264968Y281099D01*

-X265243Y281267D01*

-X265488Y281477D01*

-X265698Y281722D01*

-X265792Y281877D01*

-Y189142D01*

-X265124Y189089D01*

-X264466Y188931D01*

-X263841Y188672D01*

-X263438Y188425D01*

-Y266838D01*

-X263684Y266940D01*

-X263959Y267108D01*

-X264204Y267318D01*

-X264414Y267563D01*

-X264582Y267838D01*

-X264706Y268137D01*

-X264781Y268450D01*

-X264800Y268772D01*

-X264781Y269094D01*

-X264706Y269407D01*

-X264582Y269706D01*

-X264414Y269981D01*

-X264204Y270226D01*

-X263959Y270436D01*

-X263684Y270604D01*

-X263438Y270706D01*

-Y280966D01*

-G37*

-G36*

-Y289899D02*X263674Y289997D01*

-X263949Y290165D01*

-X264194Y290375D01*

-X264404Y290620D01*

-X264572Y290895D01*

-X264696Y291194D01*

-X264771Y291507D01*

-X264790Y291829D01*

-X264771Y292151D01*

-X264696Y292464D01*

-X264572Y292763D01*

-X264404Y293038D01*

-X264194Y293283D01*

-X264019Y293433D01*

-X264174Y293497D01*

-X264449Y293665D01*

-X264694Y293875D01*

-X264904Y294120D01*

-X265072Y294395D01*

-X265196Y294694D01*

-X265246Y294905D01*

-X265479Y294762D01*

-X265778Y294638D01*

-X265792Y294635D01*

-Y283985D01*

-X265698Y284140D01*

-X265488Y284385D01*

-X265243Y284595D01*

-X264968Y284763D01*

-X264669Y284887D01*

-X264356Y284962D01*

-X264034Y284987D01*

-X263712Y284962D01*

-X263438Y284896D01*

-Y289899D01*

-G37*

-G36*

-Y361233D02*X263841Y360986D01*

-X264466Y360727D01*

-X265124Y360569D01*

-X265792Y360516D01*

-Y298553D01*

-X265778Y298550D01*

-X265479Y298426D01*

-X265204Y298258D01*

-X264959Y298048D01*

-X264749Y297803D01*

-X264581Y297528D01*

-X264457Y297229D01*

-X264407Y297018D01*

-X264174Y297161D01*

-X263875Y297285D01*

-X263562Y297360D01*

-X263438Y297370D01*

-Y318195D01*

-X263441Y318194D01*

-X263723Y318217D01*

-X263999Y318283D01*

-X264261Y318391D01*

-X264502Y318539D01*

-X264718Y318723D01*

-X264902Y318939D01*

-X265050Y319180D01*

-X265158Y319442D01*

-X265224Y319718D01*

-X265241Y320000D01*

-X265224Y320282D01*

-X265158Y320558D01*

-X265050Y320820D01*

-X264902Y321061D01*

-X264718Y321277D01*

-X264502Y321461D01*

-X264261Y321609D01*

-X263999Y321717D01*

-X263723Y321783D01*

-X263441Y321806D01*

-X263438Y321805D01*

-Y361233D01*

-G37*

-G36*

-Y371233D02*X263841Y370986D01*

-X264466Y370727D01*

-X265124Y370569D01*

-X265792Y370516D01*

-Y369142D01*

-X265124Y369089D01*

-X264466Y368931D01*

-X263841Y368672D01*

-X263438Y368425D01*

-Y371233D01*

-G37*

-G36*

-Y397000D02*X265792D01*

-Y379142D01*

-X265124Y379089D01*

-X264466Y378931D01*

-X263841Y378672D01*

-X263438Y378425D01*

-Y397000D01*

-G37*

-G36*

-X265792Y97000D02*X263438D01*

-Y171233D01*

-X263841Y170986D01*

-X264466Y170727D01*

-X265124Y170569D01*

-X265792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X260565Y397000D02*X263438D01*

-Y378425D01*

-X263264Y378319D01*

-X262749Y377879D01*

-X262309Y377364D01*

-X261956Y376787D01*

-X261697Y376162D01*

-X261539Y375504D01*

-X261486Y374829D01*

-X261539Y374154D01*

-X261697Y373496D01*

-X261956Y372871D01*

-X262309Y372294D01*

-X262749Y371779D01*

-X263264Y371339D01*

-X263438Y371233D01*

-Y368425D01*

-X263264Y368319D01*

-X262749Y367879D01*

-X262309Y367364D01*

-X261956Y366787D01*

-X261697Y366162D01*

-X261539Y365504D01*

-X261486Y364829D01*

-X261539Y364154D01*

-X261697Y363496D01*

-X261956Y362871D01*

-X262309Y362294D01*

-X262749Y361779D01*

-X263264Y361339D01*

-X263438Y361233D01*

-Y321805D01*

-X263159Y321783D01*

-X262883Y321717D01*

-X262621Y321609D01*

-X262380Y321461D01*

-X262164Y321277D01*

-X261980Y321061D01*

-X261832Y320820D01*

-X261724Y320558D01*

-X261658Y320282D01*

-X261635Y320000D01*

-X261658Y319718D01*

-X261724Y319442D01*

-X261832Y319180D01*

-X261980Y318939D01*

-X262164Y318723D01*

-X262380Y318539D01*

-X262621Y318391D01*

-X262883Y318283D01*

-X263159Y318217D01*

-X263438Y318195D01*

-Y297370D01*

-X263240Y297385D01*

-X262918Y297360D01*

-X262605Y297285D01*

-X262306Y297161D01*

-X262031Y296993D01*

-X261786Y296783D01*

-X261576Y296538D01*

-X261408Y296263D01*

-X261284Y295964D01*

-X261209Y295651D01*

-X261184Y295329D01*

-X261209Y295007D01*

-X261284Y294694D01*

-X261408Y294395D01*

-X261576Y294120D01*

-X261786Y293875D01*

-X261961Y293725D01*

-X261806Y293661D01*

-X261531Y293493D01*

-X261286Y293283D01*

-X261076Y293038D01*

-X260908Y292763D01*

-X260784Y292464D01*

-X260709Y292151D01*

-X260684Y291829D01*

-X260709Y291507D01*

-X260784Y291194D01*

-X260908Y290895D01*

-X261076Y290620D01*

-X261286Y290375D01*

-X261531Y290165D01*

-X261806Y289997D01*

-X262105Y289873D01*

-X262418Y289798D01*

-X262740Y289773D01*

-X263062Y289798D01*

-X263375Y289873D01*

-X263438Y289899D01*

-Y284896D01*

-X263399Y284887D01*

-X263100Y284763D01*

-X262825Y284595D01*

-X262580Y284385D01*

-X262386Y284157D01*

-X262391Y284249D01*

-X262372Y284571D01*

-X262297Y284884D01*

-X262173Y285183D01*

-X262005Y285458D01*

-X261795Y285703D01*

-X261550Y285913D01*

-X261275Y286081D01*

-X260976Y286205D01*

-X260663Y286280D01*

-X260565Y286288D01*

-Y305830D01*

-X260682Y305758D01*

-X260944Y305650D01*

-X261220Y305584D01*

-X261502Y305561D01*

-X261784Y305584D01*

-X262060Y305650D01*

-X262322Y305758D01*

-X262563Y305906D01*

-X262779Y306090D01*

-X262963Y306306D01*

-X263111Y306547D01*

-X263219Y306809D01*

-X263285Y307085D01*

-X263302Y307367D01*

-X263285Y307649D01*

-X263219Y307925D01*

-X263111Y308187D01*

-X262963Y308428D01*

-X262779Y308644D01*

-X262563Y308828D01*

-X262322Y308976D01*

-X262060Y309084D01*

-X261784Y309150D01*

-X261502Y309173D01*

-X261220Y309150D01*

-X260944Y309084D01*

-X260682Y308976D01*

-X260565Y308904D01*

-Y315192D01*

-X260568Y315191D01*

-X260850Y315214D01*

-X261126Y315280D01*

-X261388Y315388D01*

-X261629Y315536D01*

-X261845Y315720D01*

-X262029Y315936D01*

-X262177Y316177D01*

-X262285Y316439D01*

-X262351Y316715D01*

-X262368Y316997D01*

-X262351Y317279D01*

-X262285Y317555D01*

-X262177Y317817D01*

-X262029Y318058D01*

-X261845Y318274D01*

-X261629Y318458D01*

-X261388Y318606D01*

-X261126Y318714D01*

-X260850Y318780D01*

-X260568Y318803D01*

-X260565Y318802D01*

-Y397000D01*

-G37*

-G36*

-X263438Y97000D02*X260565D01*

-Y189739D01*

-X260659Y189717D01*

-X260941Y189694D01*

-X261223Y189717D01*

-X261499Y189783D01*

-X261761Y189891D01*

-X262002Y190039D01*

-X262218Y190223D01*

-X262402Y190439D01*

-X262550Y190680D01*

-X262658Y190942D01*

-X262724Y191218D01*

-X262741Y191500D01*

-X262724Y191782D01*

-X262658Y192058D01*

-X262550Y192320D01*

-X262402Y192561D01*

-X262218Y192777D01*

-X262002Y192961D01*

-X261761Y193109D01*

-X261499Y193217D01*

-X261223Y193283D01*

-X260941Y193306D01*

-X260659Y193283D01*

-X260565Y193261D01*

-Y282210D01*

-X260663Y282218D01*

-X260976Y282293D01*

-X261275Y282417D01*

-X261550Y282585D01*

-X261795Y282795D01*

-X261984Y283017D01*

-X261978Y282931D01*

-X262003Y282609D01*

-X262078Y282296D01*

-X262202Y281997D01*

-X262370Y281722D01*

-X262580Y281477D01*

-X262825Y281267D01*

-X263100Y281099D01*

-X263399Y280975D01*

-X263438Y280966D01*

-Y270706D01*

-X263385Y270728D01*

-X263072Y270803D01*

-X262750Y270828D01*

-X262428Y270803D01*

-X262115Y270728D01*

-X261816Y270604D01*

-X261541Y270436D01*

-X261296Y270226D01*

-X261086Y269981D01*

-X260918Y269706D01*

-X260794Y269407D01*

-X260719Y269094D01*

-X260694Y268772D01*

-X260719Y268450D01*

-X260794Y268137D01*

-X260918Y267838D01*

-X261086Y267563D01*

-X261296Y267318D01*

-X261541Y267108D01*

-X261816Y266940D01*

-X262115Y266816D01*

-X262428Y266741D01*

-X262750Y266716D01*

-X263072Y266741D01*

-X263385Y266816D01*

-X263438Y266838D01*

-Y188425D01*

-X263264Y188319D01*

-X262749Y187879D01*

-X262309Y187364D01*

-X261956Y186787D01*

-X261697Y186162D01*

-X261539Y185504D01*

-X261486Y184829D01*

-X261539Y184154D01*

-X261697Y183496D01*

-X261956Y182871D01*

-X262309Y182294D01*

-X262749Y181779D01*

-X263264Y181339D01*

-X263438Y181233D01*

-Y178425D01*

-X263264Y178319D01*

-X262749Y177879D01*

-X262309Y177364D01*

-X261956Y176787D01*

-X261697Y176162D01*

-X261539Y175504D01*

-X261486Y174829D01*

-X261539Y174154D01*

-X261697Y173496D01*

-X261956Y172871D01*

-X262309Y172294D01*

-X262749Y171779D01*

-X263264Y171339D01*

-X263438Y171233D01*

-Y97000D01*

-G37*

-G36*

-X260565D02*X255792D01*

-Y170516D01*

-X255799Y170516D01*

-X256474Y170569D01*

-X257132Y170727D01*

-X257757Y170986D01*

-X258334Y171339D01*

-X258849Y171779D01*

-X259289Y172294D01*

-X259642Y172871D01*

-X259901Y173496D01*

-X260059Y174154D01*

-X260099Y174829D01*

-X260059Y175504D01*

-X259901Y176162D01*

-X259642Y176787D01*

-X259289Y177364D01*

-X258849Y177879D01*

-X258334Y178319D01*

-X257757Y178672D01*

-X257132Y178931D01*

-X256474Y179089D01*

-X255799Y179142D01*

-X255792Y179142D01*

-Y180516D01*

-X255799Y180516D01*

-X256474Y180569D01*

-X257132Y180727D01*

-X257757Y180986D01*

-X258334Y181339D01*

-X258849Y181779D01*

-X259289Y182294D01*

-X259642Y182871D01*

-X259901Y183496D01*

-X260059Y184154D01*

-X260099Y184829D01*

-X260059Y185504D01*

-X259901Y186162D01*

-X259642Y186787D01*

-X259289Y187364D01*

-X258849Y187879D01*

-X258334Y188319D01*

-X257757Y188672D01*

-X257132Y188931D01*

-X256474Y189089D01*

-X255799Y189142D01*

-X255792Y189142D01*

-Y296570D01*

-X255949Y296665D01*

-X256194Y296875D01*

-X256404Y297120D01*

-X256572Y297395D01*

-X256696Y297694D01*

-X256771Y298007D01*

-X256790Y298329D01*

-X256771Y298651D01*

-X256696Y298964D01*

-X256572Y299263D01*

-X256404Y299538D01*

-X256194Y299783D01*

-X255949Y299993D01*

-X255792Y300088D01*

-Y360516D01*

-X255799Y360516D01*

-X256474Y360569D01*

-X257132Y360727D01*

-X257757Y360986D01*

-X258334Y361339D01*

-X258849Y361779D01*

-X259289Y362294D01*

-X259642Y362871D01*

-X259901Y363496D01*

-X260059Y364154D01*

-X260099Y364829D01*

-X260059Y365504D01*

-X259901Y366162D01*

-X259642Y366787D01*

-X259289Y367364D01*

-X258849Y367879D01*

-X258334Y368319D01*

-X257757Y368672D01*

-X257132Y368931D01*

-X256474Y369089D01*

-X255799Y369142D01*

-X255792Y369142D01*

-Y370516D01*

-X255799Y370516D01*

-X256474Y370569D01*

-X257132Y370727D01*

-X257757Y370986D01*

-X258334Y371339D01*

-X258849Y371779D01*

-X259289Y372294D01*

-X259642Y372871D01*

-X259901Y373496D01*

-X260059Y374154D01*

-X260099Y374829D01*

-X260059Y375504D01*

-X259901Y376162D01*

-X259642Y376787D01*

-X259289Y377364D01*

-X258849Y377879D01*

-X258334Y378319D01*

-X257757Y378672D01*

-X257132Y378931D01*

-X256474Y379089D01*

-X255799Y379142D01*

-X255792Y379142D01*

-Y397000D01*

-X260565D01*

-Y318802D01*

-X260286Y318780D01*

-X260010Y318714D01*

-X259748Y318606D01*

-X259507Y318458D01*

-X259291Y318274D01*

-X259107Y318058D01*

-X258959Y317817D01*

-X258851Y317555D01*

-X258785Y317279D01*

-X258762Y316997D01*

-X258785Y316715D01*

-X258851Y316439D01*

-X258959Y316177D01*

-X259107Y315936D01*

-X259291Y315720D01*

-X259507Y315536D01*

-X259748Y315388D01*

-X260010Y315280D01*

-X260286Y315214D01*

-X260565Y315192D01*

-Y308904D01*

-X260441Y308828D01*

-X260225Y308644D01*

-X260041Y308428D01*

-X259893Y308187D01*

-X259785Y307925D01*

-X259719Y307649D01*

-X259696Y307367D01*

-X259719Y307085D01*

-X259785Y306809D01*

-X259893Y306547D01*

-X260041Y306306D01*

-X260225Y306090D01*

-X260441Y305906D01*

-X260565Y305830D01*

-Y286288D01*

-X260341Y286305D01*

-X260019Y286280D01*

-X259706Y286205D01*

-X259407Y286081D01*

-X259132Y285913D01*

-X258887Y285703D01*

-X258677Y285458D01*

-X258509Y285183D01*

-X258385Y284884D01*

-X258310Y284571D01*

-X258285Y284249D01*

-X258310Y283927D01*

-X258385Y283614D01*

-X258509Y283315D01*

-X258677Y283040D01*

-X258887Y282795D01*

-X259132Y282585D01*

-X259407Y282417D01*

-X259706Y282293D01*

-X260019Y282218D01*

-X260341Y282193D01*

-X260565Y282210D01*

-Y193261D01*

-X260383Y193217D01*

-X260121Y193109D01*

-X259880Y192961D01*

-X259664Y192777D01*

-X259480Y192561D01*

-X259332Y192320D01*

-X259224Y192058D01*

-X259158Y191782D01*

-X259135Y191500D01*

-X259158Y191218D01*

-X259224Y190942D01*

-X259332Y190680D01*

-X259480Y190439D01*

-X259664Y190223D01*

-X259880Y190039D01*

-X260121Y189891D01*

-X260383Y189783D01*

-X260565Y189739D01*

-Y97000D01*

-G37*

-G36*

-X253098Y181481D02*X253264Y181339D01*

-X253841Y180986D01*

-X254466Y180727D01*

-X255124Y180569D01*

-X255792Y180516D01*

-Y179142D01*

-X255124Y179089D01*

-X254466Y178931D01*

-X253841Y178672D01*

-X253264Y178319D01*

-X253098Y178177D01*

-Y181481D01*

-G37*

-G36*

-Y297095D02*X253286Y296875D01*

-X253531Y296665D01*

-X253806Y296497D01*

-X254105Y296373D01*

-X254418Y296298D01*

-X254740Y296273D01*

-X255062Y296298D01*

-X255375Y296373D01*

-X255674Y296497D01*

-X255792Y296570D01*

-Y189142D01*

-X255124Y189089D01*

-X254466Y188931D01*

-X253841Y188672D01*

-X253264Y188319D01*

-X253098Y188177D01*

-Y209121D01*

-X253218Y209223D01*

-X253402Y209439D01*

-X253550Y209680D01*

-X253658Y209942D01*

-X253724Y210218D01*

-X253741Y210500D01*

-X253724Y210782D01*

-X253658Y211058D01*

-X253550Y211320D01*

-X253402Y211561D01*

-X253218Y211777D01*

-X253098Y211879D01*

-Y259780D01*

-X253101Y259780D01*

-X253423Y259805D01*

-X253736Y259880D01*

-X254035Y260004D01*

-X254310Y260172D01*

-X254555Y260382D01*

-X254765Y260627D01*

-X254933Y260902D01*

-X255057Y261201D01*

-X255132Y261514D01*

-X255151Y261836D01*

-X255132Y262158D01*

-X255057Y262471D01*

-X254933Y262770D01*

-X254765Y263045D01*

-X254555Y263290D01*

-X254310Y263500D01*

-X254035Y263668D01*

-X253736Y263792D01*

-X253423Y263867D01*

-X253101Y263892D01*

-X253098Y263892D01*

-Y297095D01*

-G37*

-G36*

-Y361481D02*X253264Y361339D01*

-X253841Y360986D01*

-X254466Y360727D01*

-X255124Y360569D01*

-X255792Y360516D01*

-Y300088D01*

-X255674Y300161D01*

-X255375Y300285D01*

-X255062Y300360D01*

-X254740Y300385D01*

-X254418Y300360D01*

-X254105Y300285D01*

-X253806Y300161D01*

-X253531Y299993D01*

-X253286Y299783D01*

-X253098Y299563D01*

-Y361481D01*

-G37*

-G36*

-Y371481D02*X253264Y371339D01*

-X253841Y370986D01*

-X254466Y370727D01*

-X255124Y370569D01*

-X255792Y370516D01*

-Y369142D01*

-X255124Y369089D01*

-X254466Y368931D01*

-X253841Y368672D01*

-X253264Y368319D01*

-X253098Y368177D01*

-Y371481D01*

-G37*

-G36*

-Y397000D02*X255792D01*

-Y379142D01*

-X255124Y379089D01*

-X254466Y378931D01*

-X253841Y378672D01*

-X253264Y378319D01*

-X253098Y378177D01*

-Y397000D01*

-G37*

-G36*

-X255792Y97000D02*X253098D01*

-Y171481D01*

-X253264Y171339D01*

-X253841Y170986D01*

-X254466Y170727D01*

-X255124Y170569D01*

-X255792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X250938Y397000D02*X253098D01*

-Y378177D01*

-X252749Y377879D01*

-X252309Y377364D01*

-X251956Y376787D01*

-X251697Y376162D01*

-X251539Y375504D01*

-X251486Y374829D01*

-X251539Y374154D01*

-X251697Y373496D01*

-X251956Y372871D01*

-X252309Y372294D01*

-X252749Y371779D01*

-X253098Y371481D01*

-Y368177D01*

-X252749Y367879D01*

-X252309Y367364D01*

-X251956Y366787D01*

-X251697Y366162D01*

-X251539Y365504D01*

-X251486Y364829D01*

-X251539Y364154D01*

-X251697Y363496D01*

-X251956Y362871D01*

-X252309Y362294D01*

-X252749Y361779D01*

-X253098Y361481D01*

-Y299563D01*

-X253076Y299538D01*

-X252908Y299263D01*

-X252784Y298964D01*

-X252709Y298651D01*

-X252684Y298329D01*

-X252709Y298007D01*

-X252784Y297694D01*

-X252908Y297395D01*

-X253076Y297120D01*

-X253098Y297095D01*

-Y263892D01*

-X252779Y263867D01*

-X252466Y263792D01*

-X252167Y263668D01*

-X251892Y263500D01*

-X251647Y263290D01*

-X251437Y263045D01*

-X251269Y262770D01*

-X251145Y262471D01*

-X251070Y262158D01*

-X251045Y261836D01*

-X251070Y261514D01*

-X251145Y261201D01*

-X251269Y260902D01*

-X251437Y260627D01*

-X251647Y260382D01*

-X251892Y260172D01*

-X252167Y260004D01*

-X252466Y259880D01*

-X252779Y259805D01*

-X253098Y259780D01*

-Y211879D01*

-X253002Y211961D01*

-X252761Y212109D01*

-X252499Y212217D01*

-X252223Y212283D01*

-X251941Y212306D01*

-X251659Y212283D01*

-X251383Y212217D01*

-X251121Y212109D01*

-X250938Y211997D01*

-Y227695D01*

-X250941Y227694D01*

-X251223Y227717D01*

-X251499Y227783D01*

-X251761Y227891D01*

-X252002Y228039D01*

-X252218Y228223D01*

-X252402Y228439D01*

-X252550Y228680D01*

-X252658Y228942D01*

-X252724Y229218D01*

-X252741Y229500D01*

-X252724Y229782D01*

-X252658Y230058D01*

-X252550Y230320D01*

-X252402Y230561D01*

-X252218Y230777D01*

-X252002Y230961D01*

-X251761Y231109D01*

-X251499Y231217D01*

-X251223Y231283D01*

-X250941Y231306D01*

-X250938Y231305D01*

-Y397000D01*

-G37*

-G36*

-X253098Y97000D02*X250938D01*

-Y209003D01*

-X251121Y208891D01*

-X251383Y208783D01*

-X251659Y208717D01*

-X251941Y208694D01*

-X252223Y208717D01*

-X252499Y208783D01*

-X252761Y208891D01*

-X253002Y209039D01*

-X253098Y209121D01*

-Y188177D01*

-X252749Y187879D01*

-X252309Y187364D01*

-X251956Y186787D01*

-X251697Y186162D01*

-X251539Y185504D01*

-X251486Y184829D01*

-X251539Y184154D01*

-X251697Y183496D01*

-X251956Y182871D01*

-X252309Y182294D01*

-X252749Y181779D01*

-X253098Y181481D01*

-Y178177D01*

-X252749Y177879D01*

-X252309Y177364D01*

-X251956Y176787D01*

-X251697Y176162D01*

-X251539Y175504D01*

-X251486Y174829D01*

-X251539Y174154D01*

-X251697Y173496D01*

-X251956Y172871D01*

-X252309Y172294D01*

-X252749Y171779D01*

-X253098Y171481D01*

-Y97000D01*

-G37*

-G36*

-X250938D02*X249098D01*

-Y172071D01*

-X249289Y172294D01*

-X249642Y172871D01*

-X249901Y173496D01*

-X250059Y174154D01*

-X250099Y174829D01*

-X250059Y175504D01*

-X249901Y176162D01*

-X249642Y176787D01*

-X249289Y177364D01*

-X249098Y177587D01*

-Y182071D01*

-X249289Y182294D01*

-X249642Y182871D01*

-X249901Y183496D01*

-X250059Y184154D01*

-X250099Y184829D01*

-X250059Y185504D01*

-X249901Y186162D01*

-X249642Y186787D01*

-X249289Y187364D01*

-X249098Y187587D01*

-Y326988D01*

-X249101Y326987D01*

-X249383Y327010D01*

-X249659Y327076D01*

-X249921Y327184D01*

-X250162Y327332D01*

-X250378Y327516D01*

-X250562Y327732D01*

-X250710Y327973D01*

-X250818Y328235D01*

-X250884Y328511D01*

-X250901Y328793D01*

-X250884Y329075D01*

-X250818Y329351D01*

-X250710Y329613D01*

-X250562Y329854D01*

-X250378Y330070D01*

-X250162Y330254D01*

-X249921Y330402D01*

-X249659Y330510D01*

-X249383Y330576D01*

-X249101Y330599D01*

-X249098Y330598D01*

-Y362071D01*

-X249289Y362294D01*

-X249642Y362871D01*

-X249901Y363496D01*

-X250059Y364154D01*

-X250099Y364829D01*

-X250059Y365504D01*

-X249901Y366162D01*

-X249642Y366787D01*

-X249289Y367364D01*

-X249098Y367587D01*

-Y372071D01*

-X249289Y372294D01*

-X249642Y372871D01*

-X249901Y373496D01*

-X250059Y374154D01*

-X250099Y374829D01*

-X250059Y375504D01*

-X249901Y376162D01*

-X249642Y376787D01*

-X249289Y377364D01*

-X249098Y377587D01*

-Y397000D01*

-X250938D01*

-Y231305D01*

-X250659Y231283D01*

-X250383Y231217D01*

-X250121Y231109D01*

-X249880Y230961D01*

-X249664Y230777D01*

-X249480Y230561D01*

-X249332Y230320D01*

-X249224Y230058D01*

-X249158Y229782D01*

-X249135Y229500D01*

-X249158Y229218D01*

-X249224Y228942D01*

-X249332Y228680D01*

-X249480Y228439D01*

-X249664Y228223D01*

-X249880Y228039D01*

-X250121Y227891D01*

-X250383Y227783D01*

-X250659Y227717D01*

-X250938Y227695D01*

-Y211997D01*

-X250880Y211961D01*

-X250664Y211777D01*

-X250480Y211561D01*

-X250332Y211320D01*

-X250224Y211058D01*

-X250158Y210782D01*

-X250135Y210500D01*

-X250158Y210218D01*

-X250224Y209942D01*

-X250332Y209680D01*

-X250480Y209439D01*

-X250664Y209223D01*

-X250880Y209039D01*

-X250938Y209003D01*

-Y97000D01*

-G37*

-G36*

-X249098Y377587D02*X248849Y377879D01*

-X248334Y378319D01*

-X247757Y378672D01*

-X247132Y378931D01*

-X246474Y379089D01*

-X245799Y379142D01*

-X245792Y379142D01*

-Y397000D01*

-X249098D01*

-Y377587D01*

-G37*

-G36*

-Y367587D02*X248849Y367879D01*

-X248334Y368319D01*

-X247757Y368672D01*

-X247132Y368931D01*

-X246474Y369089D01*

-X245799Y369142D01*

-X245792Y369142D01*

-Y370516D01*

-X245799Y370516D01*

-X246474Y370569D01*

-X247132Y370727D01*

-X247757Y370986D01*

-X248334Y371339D01*

-X248849Y371779D01*

-X249098Y372071D01*

-Y367587D01*

-G37*

-G36*

-Y187587D02*X248849Y187879D01*

-X248334Y188319D01*

-X247757Y188672D01*

-X247132Y188931D01*

-X246474Y189089D01*

-X245799Y189142D01*

-X245792Y189142D01*

-Y189724D01*

-X245863Y189718D01*

-X246145Y189741D01*

-X246421Y189807D01*

-X246683Y189915D01*

-X246924Y190063D01*

-X247140Y190247D01*

-X247324Y190463D01*

-X247472Y190704D01*

-X247580Y190966D01*

-X247646Y191242D01*

-X247663Y191524D01*

-X247646Y191806D01*

-X247580Y192082D01*

-X247472Y192344D01*

-X247324Y192585D01*

-X247140Y192801D01*

-X246924Y192985D01*

-X246683Y193133D01*

-X246421Y193241D01*

-X246145Y193307D01*

-X245863Y193330D01*

-X245792Y193324D01*

-Y227820D01*

-X245883Y227783D01*

-X246159Y227717D01*

-X246441Y227694D01*

-X246723Y227717D01*

-X246999Y227783D01*

-X247261Y227891D01*

-X247502Y228039D01*

-X247718Y228223D01*

-X247902Y228439D01*

-X248050Y228680D01*

-X248158Y228942D01*

-X248224Y229218D01*

-X248241Y229500D01*

-X248224Y229782D01*

-X248158Y230058D01*

-X248050Y230320D01*

-X247902Y230561D01*

-X247718Y230777D01*

-X247502Y230961D01*

-X247261Y231109D01*

-X246999Y231217D01*

-X246723Y231283D01*

-X246441Y231306D01*

-X246159Y231283D01*

-X245883Y231217D01*

-X245792Y231180D01*

-Y236614D01*

-X245880Y236539D01*

-X246121Y236391D01*

-X246383Y236283D01*

-X246659Y236217D01*

-X246941Y236194D01*

-X247223Y236217D01*

-X247499Y236283D01*

-X247761Y236391D01*

-X248002Y236539D01*

-X248218Y236723D01*

-X248402Y236939D01*

-X248550Y237180D01*

-X248658Y237442D01*

-X248724Y237718D01*

-X248741Y238000D01*

-X248724Y238282D01*

-X248658Y238558D01*

-X248550Y238820D01*

-X248402Y239061D01*

-X248218Y239277D01*

-X248002Y239461D01*

-X247761Y239609D01*

-X247499Y239717D01*

-X247223Y239783D01*

-X246941Y239806D01*

-X246659Y239783D01*

-X246383Y239717D01*

-X246121Y239609D01*

-X245880Y239461D01*

-X245792Y239386D01*

-Y277470D01*

-X245879Y277477D01*

-X246192Y277552D01*

-X246491Y277676D01*

-X246766Y277844D01*

-X247011Y278054D01*

-X247221Y278299D01*

-X247389Y278574D01*

-X247513Y278873D01*

-X247588Y279186D01*

-X247607Y279508D01*

-X247588Y279830D01*

-X247513Y280143D01*

-X247389Y280442D01*

-X247221Y280717D01*

-X247011Y280962D01*

-X246766Y281172D01*

-X246491Y281340D01*

-X246192Y281464D01*

-X245879Y281539D01*

-X245792Y281546D01*

-Y301495D01*

-X245911Y301422D01*

-X246173Y301314D01*

-X246449Y301248D01*

-X246731Y301225D01*

-X247013Y301248D01*

-X247289Y301314D01*

-X247551Y301422D01*

-X247792Y301570D01*

-X248008Y301754D01*

-X248192Y301970D01*

-X248340Y302211D01*

-X248448Y302473D01*

-X248514Y302749D01*

-X248531Y303031D01*

-X248514Y303313D01*

-X248448Y303589D01*

-X248340Y303851D01*

-X248192Y304092D01*

-X248008Y304308D01*

-X247792Y304492D01*

-X247551Y304640D01*

-X247289Y304748D01*

-X247013Y304814D01*

-X246731Y304837D01*

-X246449Y304814D01*

-X246173Y304748D01*

-X245911Y304640D01*

-X245792Y304567D01*

-Y360516D01*

-X245799Y360516D01*

-X246474Y360569D01*

-X247132Y360727D01*

-X247757Y360986D01*

-X248334Y361339D01*

-X248849Y361779D01*

-X249098Y362071D01*

-Y330598D01*

-X248819Y330576D01*

-X248543Y330510D01*

-X248281Y330402D01*

-X248040Y330254D01*

-X247824Y330070D01*

-X247640Y329854D01*

-X247492Y329613D01*

-X247384Y329351D01*

-X247318Y329075D01*

-X247295Y328793D01*

-X247318Y328511D01*

-X247384Y328235D01*

-X247492Y327973D01*

-X247640Y327732D01*

-X247824Y327516D01*

-X248040Y327332D01*

-X248281Y327184D01*

-X248543Y327076D01*

-X248819Y327010D01*

-X249098Y326988D01*

-Y187587D01*

-G37*

-G36*

-Y177587D02*X248849Y177879D01*

-X248334Y178319D01*

-X247757Y178672D01*

-X247132Y178931D01*

-X246474Y179089D01*

-X245799Y179142D01*

-X245792Y179142D01*

-Y180516D01*

-X245799Y180516D01*

-X246474Y180569D01*

-X247132Y180727D01*

-X247757Y180986D01*

-X248334Y181339D01*

-X248849Y181779D01*

-X249098Y182071D01*

-Y177587D01*

-G37*

-G36*

-Y97000D02*X245792D01*

-Y125733D01*

-X245999Y125783D01*

-X246261Y125891D01*

-X246502Y126039D01*

-X246718Y126223D01*

-X246902Y126439D01*

-X247050Y126680D01*

-X247158Y126942D01*

-X247224Y127218D01*

-X247241Y127500D01*

-X247224Y127782D01*

-X247158Y128058D01*

-X247050Y128320D01*

-X246902Y128561D01*

-X246718Y128777D01*

-X246502Y128961D01*

-X246261Y129109D01*

-X245999Y129217D01*

-X245792Y129267D01*

-Y170516D01*

-X245799Y170516D01*

-X246474Y170569D01*

-X247132Y170727D01*

-X247757Y170986D01*

-X248334Y171339D01*

-X248849Y171779D01*

-X249098Y172071D01*

-Y97000D01*

-G37*

-G36*

-X242438Y182143D02*X242749Y181779D01*

-X243264Y181339D01*

-X243841Y180986D01*

-X244466Y180727D01*

-X245124Y180569D01*

-X245792Y180516D01*

-Y179142D01*

-X245124Y179089D01*

-X244466Y178931D01*

-X243841Y178672D01*

-X243264Y178319D01*

-X242749Y177879D01*

-X242438Y177515D01*

-Y182143D01*

-G37*

-G36*

-Y362143D02*X242749Y361779D01*

-X243264Y361339D01*

-X243841Y360986D01*

-X244466Y360727D01*

-X245124Y360569D01*

-X245792Y360516D01*

-Y304567D01*

-X245670Y304492D01*

-X245454Y304308D01*

-X245270Y304092D01*

-X245122Y303851D01*

-X245014Y303589D01*

-X244948Y303313D01*

-X244925Y303031D01*

-X244948Y302749D01*

-X245014Y302473D01*

-X245122Y302211D01*

-X245270Y301970D01*

-X245454Y301754D01*

-X245670Y301570D01*

-X245792Y301495D01*

-Y281546D01*

-X245557Y281564D01*

-X245235Y281539D01*

-X244922Y281464D01*

-X244623Y281340D01*

-X244348Y281172D01*

-X244103Y280962D01*

-X243893Y280717D01*

-X243725Y280442D01*

-X243601Y280143D01*

-X243526Y279830D01*

-X243501Y279508D01*

-X243526Y279186D01*

-X243601Y278873D01*

-X243725Y278574D01*

-X243893Y278299D01*

-X244103Y278054D01*

-X244348Y277844D01*

-X244623Y277676D01*

-X244922Y277552D01*

-X245235Y277477D01*

-X245557Y277452D01*

-X245792Y277470D01*

-Y239386D01*

-X245664Y239277D01*

-X245480Y239061D01*

-X245332Y238820D01*

-X245224Y238558D01*

-X245158Y238282D01*

-X245135Y238000D01*

-X245158Y237718D01*

-X245224Y237442D01*

-X245332Y237180D01*

-X245480Y236939D01*

-X245664Y236723D01*

-X245792Y236614D01*

-Y231180D01*

-X245621Y231109D01*

-X245380Y230961D01*

-X245164Y230777D01*

-X244980Y230561D01*

-X244832Y230320D01*

-X244724Y230058D01*

-X244658Y229782D01*

-X244635Y229500D01*

-X244658Y229218D01*

-X244724Y228942D01*

-X244832Y228680D01*

-X244980Y228439D01*

-X245164Y228223D01*

-X245380Y228039D01*

-X245621Y227891D01*

-X245792Y227820D01*

-Y193324D01*

-X245581Y193307D01*

-X245305Y193241D01*

-X245043Y193133D01*

-X244802Y192985D01*

-X244586Y192801D01*

-X244402Y192585D01*

-X244254Y192344D01*

-X244146Y192082D01*

-X244080Y191806D01*

-X244057Y191524D01*

-X244080Y191242D01*

-X244146Y190966D01*

-X244254Y190704D01*

-X244402Y190463D01*

-X244586Y190247D01*

-X244802Y190063D01*

-X245043Y189915D01*

-X245305Y189807D01*

-X245581Y189741D01*

-X245792Y189724D01*

-Y189142D01*

-X245124Y189089D01*

-X244466Y188931D01*

-X243841Y188672D01*

-X243264Y188319D01*

-X242749Y187879D01*

-X242438Y187515D01*

-Y201007D01*

-X242480Y200939D01*

-X242664Y200723D01*

-X242880Y200539D01*

-X243121Y200391D01*

-X243383Y200283D01*

-X243659Y200217D01*

-X243941Y200194D01*

-X244223Y200217D01*

-X244499Y200283D01*

-X244761Y200391D01*

-X245002Y200539D01*

-X245218Y200723D01*

-X245402Y200939D01*

-X245550Y201180D01*

-X245658Y201442D01*

-X245724Y201718D01*

-X245741Y202000D01*

-X245724Y202282D01*

-X245658Y202558D01*

-X245550Y202820D01*

-X245402Y203061D01*

-X245218Y203277D01*

-X245002Y203461D01*

-X244761Y203609D01*

-X244499Y203717D01*

-X244223Y203783D01*

-X243941Y203806D01*

-X243659Y203783D01*

-X243383Y203717D01*

-X243121Y203609D01*

-X242880Y203461D01*

-X242664Y203277D01*

-X242480Y203061D01*

-X242438Y202993D01*

-Y227695D01*

-X242441Y227694D01*

-X242723Y227717D01*

-X242999Y227783D01*

-X243261Y227891D01*

-X243502Y228039D01*

-X243718Y228223D01*

-X243902Y228439D01*

-X244050Y228680D01*

-X244158Y228942D01*

-X244224Y229218D01*

-X244241Y229500D01*

-X244224Y229782D01*

-X244158Y230058D01*

-X244050Y230320D01*

-X243902Y230561D01*

-X243718Y230777D01*

-X243502Y230961D01*

-X243261Y231109D01*

-X242999Y231217D01*

-X242723Y231283D01*

-X242441Y231306D01*

-X242438Y231305D01*

-Y291488D01*

-X242456Y291487D01*

-X242778Y291512D01*

-X243091Y291587D01*

-X243390Y291711D01*

-X243665Y291879D01*

-X243910Y292089D01*

-X244120Y292334D01*

-X244288Y292609D01*

-X244412Y292908D01*

-X244487Y293221D01*

-X244506Y293543D01*

-X244487Y293865D01*

-X244412Y294178D01*

-X244288Y294477D01*

-X244120Y294752D01*

-X243910Y294997D01*

-X243665Y295207D01*

-X243390Y295375D01*

-X243091Y295499D01*

-X242778Y295574D01*

-X242456Y295599D01*

-X242438Y295598D01*

-Y296765D01*

-X242490Y296769D01*

-X242803Y296844D01*

-X243102Y296968D01*

-X243377Y297136D01*

-X243622Y297346D01*

-X243832Y297591D01*

-X244000Y297866D01*

-X244124Y298165D01*

-X244199Y298478D01*

-X244218Y298800D01*

-X244199Y299122D01*

-X244124Y299435D01*

-X244000Y299734D01*

-X243832Y300009D01*

-X243622Y300254D01*

-X243377Y300464D01*

-X243102Y300632D01*

-X242803Y300756D01*

-X242490Y300831D01*

-X242438Y300835D01*

-Y362143D01*

-G37*

-G36*

-Y372143D02*X242749Y371779D01*

-X243264Y371339D01*

-X243841Y370986D01*

-X244466Y370727D01*

-X245124Y370569D01*

-X245792Y370516D01*

-Y369142D01*

-X245124Y369089D01*

-X244466Y368931D01*

-X243841Y368672D01*

-X243264Y368319D01*

-X242749Y367879D01*

-X242438Y367515D01*

-Y372143D01*

-G37*

-G36*

-Y397000D02*X245792D01*

-Y379142D01*

-X245124Y379089D01*

-X244466Y378931D01*

-X243841Y378672D01*

-X243264Y378319D01*

-X242749Y377879D01*

-X242438Y377515D01*

-Y397000D01*

-G37*

-G36*

-X245792Y97000D02*X242438D01*

-Y172143D01*

-X242749Y171779D01*

-X243264Y171339D01*

-X243841Y170986D01*

-X244466Y170727D01*

-X245124Y170569D01*

-X245792Y170516D01*

-Y129267D01*

-X245723Y129283D01*

-X245441Y129306D01*

-X245159Y129283D01*

-X244883Y129217D01*

-X244621Y129109D01*

-X244380Y128961D01*

-X244164Y128777D01*

-X243980Y128561D01*

-X243832Y128320D01*

-X243724Y128058D01*

-X243658Y127782D01*

-X243635Y127500D01*

-X243658Y127218D01*

-X243724Y126942D01*

-X243832Y126680D01*

-X243980Y126439D01*

-X244164Y126223D01*

-X244380Y126039D01*

-X244621Y125891D01*

-X244883Y125783D01*

-X245159Y125717D01*

-X245441Y125694D01*

-X245723Y125717D01*

-X245792Y125733D01*

-Y97000D01*

-G37*

-G36*

-X242438D02*X239299D01*

-Y172311D01*

-X239642Y172871D01*

-X239901Y173496D01*

-X240059Y174154D01*

-X240099Y174829D01*

-X240059Y175504D01*

-X239901Y176162D01*

-X239642Y176787D01*

-X239299Y177347D01*

-Y182311D01*

-X239642Y182871D01*

-X239901Y183496D01*

-X240059Y184154D01*

-X240099Y184829D01*

-X240059Y185504D01*

-X239901Y186162D01*

-X239642Y186787D01*

-X239299Y187347D01*

-Y194811D01*

-X239642Y195371D01*

-X239901Y195996D01*

-X240059Y196654D01*

-X240099Y197329D01*

-X240059Y198004D01*

-X239901Y198662D01*

-X239642Y199287D01*

-X239299Y199847D01*

-Y260179D01*

-X239302Y260179D01*

-X239624Y260204D01*

-X239937Y260279D01*

-X240236Y260403D01*

-X240511Y260571D01*

-X240756Y260781D01*

-X240966Y261026D01*

-X241134Y261301D01*

-X241258Y261600D01*

-X241333Y261913D01*

-X241352Y262235D01*

-X241333Y262557D01*

-X241258Y262870D01*

-X241134Y263169D01*

-X240966Y263444D01*

-X240756Y263689D01*

-X240511Y263899D01*

-X240236Y264067D01*

-X239937Y264191D01*

-X239624Y264266D01*

-X239302Y264291D01*

-X239299Y264291D01*

-Y277130D01*

-X239330Y277103D01*

-X239571Y276955D01*

-X239833Y276847D01*

-X240109Y276781D01*

-X240391Y276758D01*

-X240673Y276781D01*

-X240949Y276847D01*

-X241211Y276955D01*

-X241452Y277103D01*

-X241668Y277287D01*

-X241852Y277503D01*

-X242000Y277744D01*

-X242108Y278006D01*

-X242174Y278282D01*

-X242191Y278564D01*

-X242174Y278846D01*

-X242108Y279122D01*

-X242000Y279384D01*

-X241852Y279625D01*

-X241668Y279841D01*

-X241452Y280025D01*

-X241211Y280173D01*

-X240949Y280281D01*

-X240673Y280347D01*

-X240391Y280370D01*

-X240109Y280347D01*

-X239833Y280281D01*

-X239571Y280173D01*

-X239330Y280025D01*

-X239299Y279998D01*

-Y362311D01*

-X239642Y362871D01*

-X239901Y363496D01*

-X240059Y364154D01*

-X240099Y364829D01*

-X240059Y365504D01*

-X239901Y366162D01*

-X239642Y366787D01*

-X239299Y367347D01*

-Y372311D01*

-X239642Y372871D01*

-X239901Y373496D01*

-X240059Y374154D01*

-X240099Y374829D01*

-X240059Y375504D01*

-X239901Y376162D01*

-X239642Y376787D01*

-X239299Y377347D01*

-Y397000D01*

-X242438D01*

-Y377515D01*

-X242309Y377364D01*

-X241956Y376787D01*

-X241697Y376162D01*

-X241539Y375504D01*

-X241486Y374829D01*

-X241539Y374154D01*

-X241697Y373496D01*

-X241956Y372871D01*

-X242309Y372294D01*

-X242438Y372143D01*

-Y367515D01*

-X242309Y367364D01*

-X241956Y366787D01*

-X241697Y366162D01*

-X241539Y365504D01*

-X241486Y364829D01*

-X241539Y364154D01*

-X241697Y363496D01*

-X241956Y362871D01*

-X242309Y362294D01*

-X242438Y362143D01*

-Y300835D01*

-X242168Y300856D01*

-X241846Y300831D01*

-X241533Y300756D01*

-X241234Y300632D01*

-X240959Y300464D01*

-X240714Y300254D01*

-X240504Y300009D01*

-X240336Y299734D01*

-X240212Y299435D01*

-X240137Y299122D01*

-X240112Y298800D01*

-X240137Y298478D01*

-X240212Y298165D01*

-X240336Y297866D01*

-X240504Y297591D01*

-X240714Y297346D01*

-X240959Y297136D01*

-X241234Y296968D01*

-X241533Y296844D01*

-X241846Y296769D01*

-X242168Y296744D01*

-X242438Y296765D01*

-Y295598D01*

-X242134Y295574D01*

-X241821Y295499D01*

-X241522Y295375D01*

-X241247Y295207D01*

-X241002Y294997D01*

-X240792Y294752D01*

-X240624Y294477D01*

-X240500Y294178D01*

-X240425Y293865D01*

-X240400Y293543D01*

-X240425Y293221D01*

-X240500Y292908D01*

-X240624Y292609D01*

-X240792Y292334D01*

-X241002Y292089D01*

-X241247Y291879D01*

-X241522Y291711D01*

-X241821Y291587D01*

-X242134Y291512D01*

-X242438Y291488D01*

-Y231305D01*

-X242159Y231283D01*

-X241883Y231217D01*

-X241621Y231109D01*

-X241380Y230961D01*

-X241164Y230777D01*

-X240980Y230561D01*

-X240832Y230320D01*

-X240724Y230058D01*

-X240658Y229782D01*

-X240635Y229500D01*

-X240658Y229218D01*

-X240724Y228942D01*

-X240832Y228680D01*

-X240980Y228439D01*

-X241164Y228223D01*

-X241380Y228039D01*

-X241621Y227891D01*

-X241883Y227783D01*

-X242159Y227717D01*

-X242438Y227695D01*

-Y202993D01*

-X242332Y202820D01*

-X242224Y202558D01*

-X242158Y202282D01*

-X242135Y202000D01*

-X242158Y201718D01*

-X242224Y201442D01*

-X242332Y201180D01*

-X242438Y201007D01*

-Y187515D01*

-X242309Y187364D01*

-X241956Y186787D01*

-X241697Y186162D01*

-X241539Y185504D01*

-X241486Y184829D01*

-X241539Y184154D01*

-X241697Y183496D01*

-X241956Y182871D01*

-X242309Y182294D01*

-X242438Y182143D01*

-Y177515D01*

-X242309Y177364D01*

-X241956Y176787D01*

-X241697Y176162D01*

-X241539Y175504D01*

-X241486Y174829D01*

-X241539Y174154D01*

-X241697Y173496D01*

-X241956Y172871D01*

-X242309Y172294D01*

-X242438Y172143D01*

-Y97000D01*

-G37*

-G36*

-X239299Y377347D02*X239289Y377364D01*

-X238849Y377879D01*

-X238334Y378319D01*

-X237757Y378672D01*

-X237132Y378931D01*

-X236474Y379089D01*

-X235799Y379142D01*

-X235792Y379142D01*

-Y397000D01*

-X239299D01*

-Y377347D01*

-G37*

-G36*

-Y367347D02*X239289Y367364D01*

-X238849Y367879D01*

-X238334Y368319D01*

-X237757Y368672D01*

-X237132Y368931D01*

-X236474Y369089D01*

-X235799Y369142D01*

-X235792Y369142D01*

-Y370516D01*

-X235799Y370516D01*

-X236474Y370569D01*

-X237132Y370727D01*

-X237757Y370986D01*

-X238334Y371339D01*

-X238849Y371779D01*

-X239289Y372294D01*

-X239299Y372311D01*

-Y367347D01*

-G37*

-G36*

-Y199847D02*X239289Y199864D01*

-X238849Y200379D01*

-X238334Y200819D01*

-X237757Y201172D01*

-X237132Y201431D01*

-X236474Y201589D01*

-X235799Y201642D01*

-X235792Y201642D01*

-Y233820D01*

-X235883Y233783D01*

-X236159Y233717D01*

-X236441Y233694D01*

-X236723Y233717D01*

-X236999Y233783D01*

-X237261Y233891D01*

-X237502Y234039D01*

-X237718Y234223D01*

-X237902Y234439D01*

-X238050Y234680D01*

-X238158Y234942D01*

-X238224Y235218D01*

-X238241Y235500D01*

-X238224Y235782D01*

-X238158Y236058D01*

-X238050Y236320D01*

-X237902Y236561D01*

-X237718Y236777D01*

-X237502Y236961D01*

-X237261Y237109D01*

-X236999Y237217D01*

-X236723Y237283D01*

-X236441Y237306D01*

-X236159Y237283D01*

-X235883Y237217D01*

-X235792Y237180D01*

-Y360516D01*

-X235799Y360516D01*

-X236474Y360569D01*

-X237132Y360727D01*

-X237757Y360986D01*

-X238334Y361339D01*

-X238849Y361779D01*

-X239289Y362294D01*

-X239299Y362311D01*

-Y279998D01*

-X239114Y279841D01*

-X238930Y279625D01*

-X238782Y279384D01*

-X238674Y279122D01*

-X238608Y278846D01*

-X238585Y278564D01*

-X238608Y278282D01*

-X238674Y278006D01*

-X238782Y277744D01*

-X238930Y277503D01*

-X239114Y277287D01*

-X239299Y277130D01*

-Y264291D01*

-X238980Y264266D01*

-X238667Y264191D01*

-X238368Y264067D01*

-X238093Y263899D01*

-X237848Y263689D01*

-X237638Y263444D01*

-X237470Y263169D01*

-X237346Y262870D01*

-X237271Y262557D01*

-X237246Y262235D01*

-X237271Y261913D01*

-X237346Y261600D01*

-X237470Y261301D01*

-X237638Y261026D01*

-X237848Y260781D01*

-X238093Y260571D01*

-X238368Y260403D01*

-X238667Y260279D01*

-X238980Y260204D01*

-X239299Y260179D01*

-Y199847D01*

-G37*

-G36*

-Y187347D02*X239289Y187364D01*

-X238849Y187879D01*

-X238334Y188319D01*

-X237757Y188672D01*

-X237132Y188931D01*

-X236474Y189089D01*

-X235799Y189142D01*

-X235792Y189142D01*

-Y193016D01*

-X235799Y193016D01*

-X236474Y193069D01*

-X237132Y193227D01*

-X237757Y193486D01*

-X238334Y193839D01*

-X238849Y194279D01*

-X239289Y194794D01*

-X239299Y194811D01*

-Y187347D01*

-G37*

-G36*

-Y177347D02*X239289Y177364D01*

-X238849Y177879D01*

-X238334Y178319D01*

-X237757Y178672D01*

-X237132Y178931D01*

-X236474Y179089D01*

-X235799Y179142D01*

-X235792Y179142D01*

-Y180516D01*

-X235799Y180516D01*

-X236474Y180569D01*

-X237132Y180727D01*

-X237757Y180986D01*

-X238334Y181339D01*

-X238849Y181779D01*

-X239289Y182294D01*

-X239299Y182311D01*

-Y177347D01*

-G37*

-G36*

-Y97000D02*X235792D01*

-Y121311D01*

-X235902Y121439D01*

-X236050Y121680D01*

-X236158Y121942D01*

-X236224Y122218D01*

-X236241Y122500D01*

-X236224Y122782D01*

-X236158Y123058D01*

-X236050Y123320D01*

-X235902Y123561D01*

-X235792Y123689D01*

-Y131206D01*

-X235941Y131194D01*

-X236223Y131217D01*

-X236499Y131283D01*

-X236761Y131391D01*

-X237002Y131539D01*

-X237218Y131723D01*

-X237402Y131939D01*

-X237550Y132180D01*

-X237658Y132442D01*

-X237724Y132718D01*

-X237741Y133000D01*

-X237724Y133282D01*

-X237658Y133558D01*

-X237550Y133820D01*

-X237402Y134061D01*

-X237218Y134277D01*

-X237002Y134461D01*

-X236761Y134609D01*

-X236499Y134717D01*

-X236223Y134783D01*

-X235941Y134806D01*

-X235792Y134794D01*

-Y170516D01*

-X235799Y170516D01*

-X236474Y170569D01*

-X237132Y170727D01*

-X237757Y170986D01*

-X238334Y171339D01*

-X238849Y171779D01*

-X239289Y172294D01*

-X239299Y172311D01*

-Y97000D01*

-G37*

-G36*

-X235792D02*X229815D01*

-Y173289D01*

-X229901Y173496D01*

-X230059Y174154D01*

-X230099Y174829D01*

-X230059Y175504D01*

-X229901Y176162D01*

-X229815Y176369D01*

-Y183289D01*

-X229901Y183496D01*

-X230059Y184154D01*

-X230099Y184829D01*

-X230059Y185504D01*

-X229901Y186162D01*

-X229815Y186369D01*

-Y195789D01*

-X229901Y195996D01*

-X230059Y196654D01*

-X230099Y197329D01*

-X230059Y198004D01*

-X229901Y198662D01*

-X229815Y198869D01*

-Y245311D01*

-X229883Y245283D01*

-X230159Y245217D01*

-X230441Y245194D01*

-X230723Y245217D01*

-X230999Y245283D01*

-X231261Y245391D01*

-X231502Y245539D01*

-X231718Y245723D01*

-X231902Y245939D01*

-X232050Y246180D01*

-X232158Y246442D01*

-X232224Y246718D01*

-X232241Y247000D01*

-X232224Y247282D01*

-X232158Y247558D01*

-X232050Y247820D01*

-X231902Y248061D01*

-X231718Y248277D01*

-X231502Y248461D01*

-X231261Y248609D01*

-X230999Y248717D01*

-X230723Y248783D01*

-X230441Y248806D01*

-X230159Y248783D01*

-X229883Y248717D01*

-X229815Y248689D01*

-Y291311D01*

-X229883Y291283D01*

-X230159Y291217D01*

-X230441Y291194D01*

-X230723Y291217D01*

-X230999Y291283D01*

-X231261Y291391D01*

-X231502Y291539D01*

-X231718Y291723D01*

-X231902Y291939D01*

-X232050Y292180D01*

-X232158Y292442D01*

-X232224Y292718D01*

-X232241Y293000D01*

-X232224Y293282D01*

-X232158Y293558D01*

-X232050Y293820D01*

-X231902Y294061D01*

-X231718Y294277D01*

-X231502Y294461D01*

-X231261Y294609D01*

-X230999Y294717D01*

-X230723Y294783D01*

-X230441Y294806D01*

-X230159Y294783D01*

-X229883Y294717D01*

-X229815Y294689D01*

-Y353183D01*

-X229818Y353182D01*

-X230100Y353205D01*

-X230376Y353271D01*

-X230638Y353379D01*

-X230879Y353527D01*

-X231095Y353711D01*

-X231279Y353927D01*

-X231427Y354168D01*

-X231535Y354430D01*

-X231601Y354706D01*

-X231618Y354988D01*

-X231601Y355270D01*

-X231535Y355546D01*

-X231427Y355808D01*

-X231279Y356049D01*

-X231095Y356265D01*

-X230879Y356449D01*

-X230638Y356597D01*

-X230376Y356705D01*

-X230100Y356771D01*

-X229818Y356794D01*

-X229815Y356793D01*

-Y363289D01*

-X229901Y363496D01*

-X230059Y364154D01*

-X230099Y364829D01*

-X230059Y365504D01*

-X229901Y366162D01*

-X229815Y366369D01*

-Y373289D01*

-X229901Y373496D01*

-X230059Y374154D01*

-X230099Y374829D01*

-X230059Y375504D01*

-X229901Y376162D01*

-X229815Y376369D01*

-Y397000D01*

-X235792D01*

-Y379142D01*

-X235124Y379089D01*

-X234466Y378931D01*

-X233841Y378672D01*

-X233264Y378319D01*

-X232749Y377879D01*

-X232309Y377364D01*

-X231956Y376787D01*

-X231697Y376162D01*

-X231539Y375504D01*

-X231486Y374829D01*

-X231539Y374154D01*

-X231697Y373496D01*

-X231956Y372871D01*

-X232309Y372294D01*

-X232749Y371779D01*

-X233264Y371339D01*

-X233841Y370986D01*

-X234466Y370727D01*

-X235124Y370569D01*

-X235792Y370516D01*

-Y369142D01*

-X235124Y369089D01*

-X234466Y368931D01*

-X233841Y368672D01*

-X233264Y368319D01*

-X232749Y367879D01*

-X232309Y367364D01*

-X231956Y366787D01*

-X231697Y366162D01*

-X231539Y365504D01*

-X231486Y364829D01*

-X231539Y364154D01*

-X231697Y363496D01*

-X231956Y362871D01*

-X232309Y362294D01*

-X232749Y361779D01*

-X233264Y361339D01*

-X233841Y360986D01*

-X234466Y360727D01*

-X235124Y360569D01*

-X235792Y360516D01*

-Y237180D01*

-X235621Y237109D01*

-X235380Y236961D01*

-X235164Y236777D01*

-X234980Y236561D01*

-X234832Y236320D01*

-X234724Y236058D01*

-X234658Y235782D01*

-X234635Y235500D01*

-X234658Y235218D01*

-X234724Y234942D01*

-X234832Y234680D01*

-X234980Y234439D01*

-X235164Y234223D01*

-X235380Y234039D01*

-X235621Y233891D01*

-X235792Y233820D01*

-Y201642D01*

-X235124Y201589D01*

-X234466Y201431D01*

-X233841Y201172D01*

-X233264Y200819D01*

-X232749Y200379D01*

-X232309Y199864D01*

-X231956Y199287D01*

-X231697Y198662D01*

-X231539Y198004D01*

-X231486Y197329D01*

-X231539Y196654D01*

-X231697Y195996D01*

-X231956Y195371D01*

-X232309Y194794D01*

-X232749Y194279D01*

-X233264Y193839D01*

-X233841Y193486D01*

-X234466Y193227D01*

-X235124Y193069D01*

-X235792Y193016D01*

-Y189142D01*

-X235124Y189089D01*

-X234466Y188931D01*

-X233841Y188672D01*

-X233264Y188319D01*

-X232749Y187879D01*

-X232309Y187364D01*

-X231956Y186787D01*

-X231697Y186162D01*

-X231539Y185504D01*

-X231486Y184829D01*

-X231539Y184154D01*

-X231697Y183496D01*

-X231956Y182871D01*

-X232309Y182294D01*

-X232749Y181779D01*

-X233264Y181339D01*

-X233841Y180986D01*

-X234466Y180727D01*

-X235124Y180569D01*

-X235792Y180516D01*

-Y179142D01*

-X235124Y179089D01*

-X234466Y178931D01*

-X233841Y178672D01*

-X233264Y178319D01*

-X232749Y177879D01*

-X232309Y177364D01*

-X231956Y176787D01*

-X231697Y176162D01*

-X231539Y175504D01*

-X231486Y174829D01*

-X231539Y174154D01*

-X231697Y173496D01*

-X231956Y172871D01*

-X232309Y172294D01*

-X232749Y171779D01*

-X233264Y171339D01*

-X233841Y170986D01*

-X234466Y170727D01*

-X235124Y170569D01*

-X235792Y170516D01*

-Y134794D01*

-X235659Y134783D01*

-X235383Y134717D01*

-X235121Y134609D01*

-X234880Y134461D01*

-X234664Y134277D01*

-X234480Y134061D01*

-X234332Y133820D01*

-X234224Y133558D01*

-X234158Y133282D01*

-X234135Y133000D01*

-X234158Y132718D01*

-X234224Y132442D01*

-X234332Y132180D01*

-X234480Y131939D01*

-X234664Y131723D01*

-X234880Y131539D01*

-X235121Y131391D01*

-X235383Y131283D01*

-X235659Y131217D01*

-X235792Y131206D01*

-Y123689D01*

-X235718Y123777D01*

-X235502Y123961D01*

-X235261Y124109D01*

-X234999Y124217D01*

-X234723Y124283D01*

-X234441Y124306D01*

-X234159Y124283D01*

-X233883Y124217D01*

-X233621Y124109D01*

-X233380Y123961D01*

-X233164Y123777D01*

-X232980Y123561D01*

-X232832Y123320D01*

-X232724Y123058D01*

-X232658Y122782D01*

-X232635Y122500D01*

-X232658Y122218D01*

-X232724Y121942D01*

-X232832Y121680D01*

-X232980Y121439D01*

-X233164Y121223D01*

-X233380Y121039D01*

-X233621Y120891D01*

-X233883Y120783D01*

-X234159Y120717D01*

-X234441Y120694D01*

-X234723Y120717D01*

-X234999Y120783D01*

-X235261Y120891D01*

-X235502Y121039D01*

-X235718Y121223D01*

-X235792Y121311D01*

-Y97000D01*

-G37*

-G36*

-X229815Y376369D02*X229642Y376787D01*

-X229289Y377364D01*

-X228849Y377879D01*

-X228334Y378319D01*

-X227757Y378672D01*

-X227132Y378931D01*

-X226474Y379089D01*

-X225799Y379142D01*

-X225792Y379142D01*

-Y397000D01*

-X229815D01*

-Y376369D01*

-G37*

-G36*

-Y366369D02*X229642Y366787D01*

-X229289Y367364D01*

-X228849Y367879D01*

-X228334Y368319D01*

-X227757Y368672D01*

-X227132Y368931D01*

-X226474Y369089D01*

-X225799Y369142D01*

-X225792Y369142D01*

-Y370516D01*

-X225799Y370516D01*

-X226474Y370569D01*

-X227132Y370727D01*

-X227757Y370986D01*

-X228334Y371339D01*

-X228849Y371779D01*

-X229289Y372294D01*

-X229642Y372871D01*

-X229815Y373289D01*

-Y366369D01*

-G37*

-G36*

-Y198869D02*X229642Y199287D01*

-X229289Y199864D01*

-X228849Y200379D01*

-X228334Y200819D01*

-X227757Y201172D01*

-X227132Y201431D01*

-X226474Y201589D01*

-X225799Y201642D01*

-X225792Y201642D01*

-Y218911D01*

-X226002Y219039D01*

-X226218Y219223D01*

-X226402Y219439D01*

-X226550Y219680D01*

-X226658Y219942D01*

-X226724Y220218D01*

-X226741Y220500D01*

-X226724Y220782D01*

-X226658Y221058D01*

-X226550Y221320D01*

-X226402Y221561D01*

-X226218Y221777D01*

-X226002Y221961D01*

-X225792Y222089D01*

-Y224733D01*

-X225999Y224783D01*

-X226261Y224891D01*

-X226502Y225039D01*

-X226718Y225223D01*

-X226902Y225439D01*

-X227050Y225680D01*

-X227158Y225942D01*

-X227224Y226218D01*

-X227241Y226500D01*

-X227224Y226782D01*

-X227158Y227058D01*

-X227050Y227320D01*

-X226902Y227561D01*

-X226718Y227777D01*

-X226502Y227961D01*

-X226261Y228109D01*

-X225999Y228217D01*

-X225792Y228267D01*

-Y233911D01*

-X226002Y234039D01*

-X226218Y234223D01*

-X226402Y234439D01*

-X226550Y234680D01*

-X226658Y234942D01*

-X226724Y235218D01*

-X226741Y235500D01*

-X226724Y235782D01*

-X226658Y236058D01*

-X226550Y236320D01*

-X226402Y236561D01*

-X226218Y236777D01*

-X226002Y236961D01*

-X225792Y237089D01*

-Y242811D01*

-X225902Y242939D01*

-X226050Y243180D01*

-X226158Y243442D01*

-X226224Y243718D01*

-X226241Y244000D01*

-X226224Y244282D01*

-X226158Y244558D01*

-X226050Y244820D01*

-X225902Y245061D01*

-X225792Y245189D01*

-Y247233D01*

-X225999Y247283D01*

-X226261Y247391D01*

-X226502Y247539D01*

-X226718Y247723D01*

-X226902Y247939D01*

-X227050Y248180D01*

-X227158Y248442D01*

-X227224Y248718D01*

-X227241Y249000D01*

-X227224Y249282D01*

-X227158Y249558D01*

-X227050Y249820D01*

-X226902Y250061D01*

-X226718Y250277D01*

-X226502Y250461D01*

-X226261Y250609D01*

-X225999Y250717D01*

-X225792Y250767D01*

-Y250811D01*

-X225902Y250939D01*

-X226050Y251180D01*

-X226158Y251442D01*

-X226224Y251718D01*

-X226241Y252000D01*

-X226224Y252282D01*

-X226158Y252558D01*

-X226050Y252820D01*

-X225902Y253061D01*

-X225792Y253189D01*

-Y360516D01*

-X225799Y360516D01*

-X226474Y360569D01*

-X227132Y360727D01*

-X227757Y360986D01*

-X228334Y361339D01*

-X228849Y361779D01*

-X229289Y362294D01*

-X229642Y362871D01*

-X229815Y363289D01*

-Y356793D01*

-X229536Y356771D01*

-X229260Y356705D01*

-X228998Y356597D01*

-X228757Y356449D01*

-X228541Y356265D01*

-X228357Y356049D01*

-X228209Y355808D01*

-X228101Y355546D01*

-X228035Y355270D01*

-X228012Y354988D01*

-X228035Y354706D01*

-X228101Y354430D01*

-X228209Y354168D01*

-X228357Y353927D01*

-X228541Y353711D01*

-X228757Y353527D01*

-X228998Y353379D01*

-X229260Y353271D01*

-X229536Y353205D01*

-X229815Y353183D01*

-Y294689D01*

-X229621Y294609D01*

-X229380Y294461D01*

-X229164Y294277D01*

-X228980Y294061D01*

-X228832Y293820D01*

-X228724Y293558D01*

-X228658Y293282D01*

-X228635Y293000D01*

-X228658Y292718D01*

-X228724Y292442D01*

-X228832Y292180D01*

-X228980Y291939D01*

-X229164Y291723D01*

-X229380Y291539D01*

-X229621Y291391D01*

-X229815Y291311D01*

-Y248689D01*

-X229621Y248609D01*

-X229380Y248461D01*

-X229164Y248277D01*

-X228980Y248061D01*

-X228832Y247820D01*

-X228724Y247558D01*

-X228658Y247282D01*

-X228635Y247000D01*

-X228658Y246718D01*

-X228724Y246442D01*

-X228832Y246180D01*

-X228980Y245939D01*

-X229164Y245723D01*

-X229380Y245539D01*

-X229621Y245391D01*

-X229815Y245311D01*

-Y198869D01*

-G37*

-G36*

-Y186369D02*X229642Y186787D01*

-X229289Y187364D01*

-X228849Y187879D01*

-X228334Y188319D01*

-X227757Y188672D01*

-X227132Y188931D01*

-X226474Y189089D01*

-X225799Y189142D01*

-X225792Y189142D01*

-Y193016D01*

-X225799Y193016D01*

-X226474Y193069D01*

-X227132Y193227D01*

-X227757Y193486D01*

-X228334Y193839D01*

-X228849Y194279D01*

-X229289Y194794D01*

-X229642Y195371D01*

-X229815Y195789D01*

-Y186369D01*

-G37*

-G36*

-Y176369D02*X229642Y176787D01*

-X229289Y177364D01*

-X228849Y177879D01*

-X228334Y178319D01*

-X227757Y178672D01*

-X227132Y178931D01*

-X226474Y179089D01*

-X225799Y179142D01*

-X225792Y179142D01*

-Y180516D01*

-X225799Y180516D01*

-X226474Y180569D01*

-X227132Y180727D01*

-X227757Y180986D01*

-X228334Y181339D01*

-X228849Y181779D01*

-X229289Y182294D01*

-X229642Y182871D01*

-X229815Y183289D01*

-Y176369D01*

-G37*

-G36*

-Y97000D02*X225792D01*

-Y170516D01*

-X225799Y170516D01*

-X226474Y170569D01*

-X227132Y170727D01*

-X227757Y170986D01*

-X228334Y171339D01*

-X228849Y171779D01*

-X229289Y172294D01*

-X229642Y172871D01*

-X229815Y173289D01*

-Y97000D01*

-G37*

-G36*

-X225792Y250767D02*X225761Y250774D01*

-X225792Y250811D01*

-Y250767D01*

-G37*

-G36*

-X223938Y180946D02*X224466Y180727D01*

-X225124Y180569D01*

-X225792Y180516D01*

-Y179142D01*

-X225124Y179089D01*

-X224466Y178931D01*

-X223938Y178712D01*

-Y180946D01*

-G37*

-G36*

-Y193446D02*X224466Y193227D01*

-X225124Y193069D01*

-X225792Y193016D01*

-Y189142D01*

-X225124Y189089D01*

-X224466Y188931D01*

-X223938Y188712D01*

-Y193446D01*

-G37*

-G36*

-Y219003D02*X224121Y218891D01*

-X224383Y218783D01*

-X224659Y218717D01*

-X224941Y218694D01*

-X225223Y218717D01*

-X225499Y218783D01*

-X225761Y218891D01*

-X225792Y218911D01*

-Y201642D01*

-X225124Y201589D01*

-X224466Y201431D01*

-X223938Y201212D01*

-Y219003D01*

-G37*

-G36*

-Y225507D02*X223980Y225439D01*

-X224164Y225223D01*

-X224380Y225039D01*

-X224621Y224891D01*

-X224883Y224783D01*

-X225159Y224717D01*

-X225441Y224694D01*

-X225723Y224717D01*

-X225792Y224733D01*

-Y222089D01*

-X225761Y222109D01*

-X225499Y222217D01*

-X225223Y222283D01*

-X224941Y222306D01*

-X224659Y222283D01*

-X224383Y222217D01*

-X224121Y222109D01*

-X223938Y221997D01*

-Y225507D01*

-G37*

-G36*

-Y234003D02*X224121Y233891D01*

-X224383Y233783D01*

-X224659Y233717D01*

-X224941Y233694D01*

-X225223Y233717D01*

-X225499Y233783D01*

-X225761Y233891D01*

-X225792Y233911D01*

-Y228267D01*

-X225723Y228283D01*

-X225441Y228306D01*

-X225159Y228283D01*

-X224883Y228217D01*

-X224621Y228109D01*

-X224380Y227961D01*

-X224164Y227777D01*

-X223980Y227561D01*

-X223938Y227493D01*

-Y234003D01*

-G37*

-G36*

-Y242270D02*X224159Y242217D01*

-X224441Y242194D01*

-X224723Y242217D01*

-X224999Y242283D01*

-X225261Y242391D01*

-X225502Y242539D01*

-X225718Y242723D01*

-X225792Y242811D01*

-Y237089D01*

-X225761Y237109D01*

-X225499Y237217D01*

-X225223Y237283D01*

-X224941Y237306D01*

-X224659Y237283D01*

-X224383Y237217D01*

-X224121Y237109D01*

-X223938Y236997D01*

-Y242270D01*

-G37*

-G36*

-Y248007D02*X223980Y247939D01*

-X224164Y247723D01*

-X224380Y247539D01*

-X224621Y247391D01*

-X224883Y247283D01*

-X225159Y247217D01*

-X225441Y247194D01*

-X225723Y247217D01*

-X225792Y247233D01*

-Y245189D01*

-X225718Y245277D01*

-X225502Y245461D01*

-X225261Y245609D01*

-X224999Y245717D01*

-X224723Y245783D01*

-X224441Y245806D01*

-X224159Y245783D01*

-X223938Y245730D01*

-Y248007D01*

-G37*

-G36*

-Y250270D02*X224121Y250226D01*

-X223980Y250061D01*

-X223938Y249993D01*

-Y250270D01*

-G37*

-G36*

-Y360946D02*X224466Y360727D01*

-X225124Y360569D01*

-X225792Y360516D01*

-Y253189D01*

-X225718Y253277D01*

-X225502Y253461D01*

-X225261Y253609D01*

-X224999Y253717D01*

-X224723Y253783D01*

-X224441Y253806D01*

-X224159Y253783D01*

-X223938Y253730D01*

-Y360946D01*

-G37*

-G36*

-Y370946D02*X224466Y370727D01*

-X225124Y370569D01*

-X225792Y370516D01*

-Y369142D01*

-X225124Y369089D01*

-X224466Y368931D01*

-X223938Y368712D01*

-Y370946D01*

-G37*

-G36*

-Y397000D02*X225792D01*

-Y379142D01*

-X225124Y379089D01*

-X224466Y378931D01*

-X223938Y378712D01*

-Y397000D01*

-G37*

-G36*

-X225792Y97000D02*X223938D01*

-Y146195D01*

-X223941Y146194D01*

-X224223Y146217D01*

-X224499Y146283D01*

-X224761Y146391D01*

-X225002Y146539D01*

-X225218Y146723D01*

-X225402Y146939D01*

-X225550Y147180D01*

-X225658Y147442D01*

-X225724Y147718D01*

-X225741Y148000D01*

-X225724Y148282D01*

-X225658Y148558D01*

-X225550Y148820D01*

-X225402Y149061D01*

-X225218Y149277D01*

-X225002Y149461D01*

-X224761Y149609D01*

-X224499Y149717D01*

-X224223Y149783D01*

-X223941Y149806D01*

-X223938Y149805D01*

-Y170946D01*

-X224466Y170727D01*

-X225124Y170569D01*

-X225792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X223938D02*X219438D01*

-Y172538D01*

-X219642Y172871D01*

-X219901Y173496D01*

-X220059Y174154D01*

-X220099Y174829D01*

-X220059Y175504D01*

-X219901Y176162D01*

-X219642Y176787D01*

-X219438Y177120D01*

-Y182538D01*

-X219642Y182871D01*

-X219901Y183496D01*

-X220059Y184154D01*

-X220099Y184829D01*

-X220059Y185504D01*

-X219901Y186162D01*

-X219642Y186787D01*

-X219438Y187120D01*

-Y195038D01*

-X219642Y195371D01*

-X219901Y195996D01*

-X220059Y196654D01*

-X220099Y197329D01*

-X220059Y198004D01*

-X219901Y198662D01*

-X219642Y199287D01*

-X219438Y199620D01*

-Y213503D01*

-X219621Y213391D01*

-X219883Y213283D01*

-X220159Y213217D01*

-X220441Y213194D01*

-X220723Y213217D01*

-X220999Y213283D01*

-X221261Y213391D01*

-X221502Y213539D01*

-X221718Y213723D01*

-X221902Y213939D01*

-X222050Y214180D01*

-X222158Y214442D01*

-X222224Y214718D01*

-X222241Y215000D01*

-X222224Y215282D01*

-X222158Y215558D01*

-X222050Y215820D01*

-X221902Y216061D01*

-X221718Y216277D01*

-X221502Y216461D01*

-X221261Y216609D01*

-X220999Y216717D01*

-X220723Y216783D01*

-X220441Y216806D01*

-X220159Y216783D01*

-X219883Y216717D01*

-X219621Y216609D01*

-X219438Y216497D01*

-Y258003D01*

-X219621Y257891D01*

-X219883Y257783D01*

-X220159Y257717D01*

-X220441Y257694D01*

-X220723Y257717D01*

-X220999Y257783D01*

-X221261Y257891D01*

-X221502Y258039D01*

-X221718Y258223D01*

-X221902Y258439D01*

-X222050Y258680D01*

-X222158Y258942D01*

-X222224Y259218D01*

-X222241Y259500D01*

-X222224Y259782D01*

-X222158Y260058D01*

-X222050Y260320D01*

-X221902Y260561D01*

-X221718Y260777D01*

-X221502Y260961D01*

-X221261Y261109D01*

-X220999Y261217D01*

-X220723Y261283D01*

-X220441Y261306D01*

-X220229Y261289D01*

-X220241Y261500D01*

-X220224Y261782D01*

-X220158Y262058D01*

-X220050Y262320D01*

-X219902Y262561D01*

-X219718Y262777D01*

-X219502Y262961D01*

-X219438Y263000D01*

-Y264320D01*

-X219452Y264303D01*

-X219668Y264119D01*

-X219909Y263971D01*

-X220171Y263863D01*

-X220447Y263797D01*

-X220729Y263774D01*

-X221011Y263797D01*

-X221287Y263863D01*

-X221549Y263971D01*

-X221790Y264119D01*

-X222006Y264303D01*

-X222190Y264519D01*

-X222338Y264760D01*

-X222446Y265022D01*

-X222512Y265298D01*

-X222529Y265580D01*

-X222512Y265862D01*

-X222446Y266138D01*

-X222338Y266400D01*

-X222190Y266641D01*

-X222006Y266857D01*

-X221790Y267041D01*

-X221549Y267189D01*

-X221287Y267297D01*

-X221011Y267363D01*

-X220729Y267386D01*

-X220447Y267363D01*

-X220171Y267297D01*

-X219909Y267189D01*

-X219668Y267041D01*

-X219452Y266857D01*

-X219438Y266840D01*

-Y270695D01*

-X219441Y270694D01*

-X219723Y270717D01*

-X219999Y270783D01*

-X220261Y270891D01*

-X220502Y271039D01*

-X220718Y271223D01*

-X220902Y271439D01*

-X221050Y271680D01*

-X221158Y271942D01*

-X221224Y272218D01*

-X221241Y272500D01*

-X221224Y272782D01*

-X221158Y273058D01*

-X221050Y273320D01*

-X220902Y273561D01*

-X220718Y273777D01*

-X220502Y273961D01*

-X220261Y274109D01*

-X219999Y274217D01*

-X219723Y274283D01*

-X219441Y274306D01*

-X219438Y274305D01*

-Y362538D01*

-X219642Y362871D01*

-X219901Y363496D01*

-X220059Y364154D01*

-X220099Y364829D01*

-X220059Y365504D01*

-X219901Y366162D01*

-X219642Y366787D01*

-X219438Y367120D01*

-Y372538D01*

-X219642Y372871D01*

-X219901Y373496D01*

-X220059Y374154D01*

-X220099Y374829D01*

-X220059Y375504D01*

-X219901Y376162D01*

-X219642Y376787D01*

-X219438Y377120D01*

-Y397000D01*

-X223938D01*

-Y378712D01*

-X223841Y378672D01*

-X223264Y378319D01*

-X222749Y377879D01*

-X222309Y377364D01*

-X221956Y376787D01*

-X221697Y376162D01*

-X221539Y375504D01*

-X221486Y374829D01*

-X221539Y374154D01*

-X221697Y373496D01*

-X221956Y372871D01*

-X222309Y372294D01*

-X222749Y371779D01*

-X223264Y371339D01*

-X223841Y370986D01*

-X223938Y370946D01*

-Y368712D01*

-X223841Y368672D01*

-X223264Y368319D01*

-X222749Y367879D01*

-X222309Y367364D01*

-X221956Y366787D01*

-X221697Y366162D01*

-X221539Y365504D01*

-X221486Y364829D01*

-X221539Y364154D01*

-X221697Y363496D01*

-X221956Y362871D01*

-X222309Y362294D01*

-X222749Y361779D01*

-X223264Y361339D01*

-X223841Y360986D01*

-X223938Y360946D01*

-Y253730D01*

-X223883Y253717D01*

-X223643Y253618D01*

-X223667Y253718D01*

-X223684Y254000D01*

-X223667Y254282D01*

-X223601Y254558D01*

-X223493Y254820D01*

-X223345Y255061D01*

-X223161Y255277D01*

-X222945Y255461D01*

-X222704Y255609D01*

-X222442Y255717D01*

-X222166Y255783D01*

-X221884Y255806D01*

-X221602Y255783D01*

-X221326Y255717D01*

-X221064Y255609D01*

-X220823Y255461D01*

-X220607Y255277D01*

-X220423Y255061D01*

-X220275Y254820D01*

-X220167Y254558D01*

-X220101Y254282D01*

-X220078Y254000D01*

-X220101Y253718D01*

-X220167Y253442D01*

-X220275Y253180D01*

-X220423Y252939D01*

-X220607Y252723D01*

-X220823Y252539D01*

-X221064Y252391D01*

-X221326Y252283D01*

-X221602Y252217D01*

-X221884Y252194D01*

-X222166Y252217D01*

-X222442Y252283D01*

-X222682Y252382D01*

-X222658Y252282D01*

-X222635Y252000D01*

-X222658Y251718D01*

-X222724Y251442D01*

-X222832Y251180D01*

-X222980Y250939D01*

-X223164Y250723D01*

-X223380Y250539D01*

-X223621Y250391D01*

-X223883Y250283D01*

-X223938Y250270D01*

-Y249993D01*

-X223832Y249820D01*

-X223724Y249558D01*

-X223658Y249282D01*

-X223635Y249000D01*

-X223658Y248718D01*

-X223724Y248442D01*

-X223832Y248180D01*

-X223938Y248007D01*

-Y245730D01*

-X223883Y245717D01*

-X223621Y245609D01*

-X223380Y245461D01*

-X223164Y245277D01*

-X222980Y245061D01*

-X222832Y244820D01*

-X222724Y244558D01*

-X222658Y244282D01*

-X222635Y244000D01*

-X222658Y243718D01*

-X222724Y243442D01*

-X222832Y243180D01*

-X222980Y242939D01*

-X223164Y242723D01*

-X223380Y242539D01*

-X223621Y242391D01*

-X223883Y242283D01*

-X223938Y242270D01*

-Y236997D01*

-X223880Y236961D01*

-X223664Y236777D01*

-X223480Y236561D01*

-X223332Y236320D01*

-X223224Y236058D01*

-X223158Y235782D01*

-X223135Y235500D01*

-X223158Y235218D01*

-X223224Y234942D01*

-X223332Y234680D01*

-X223480Y234439D01*

-X223664Y234223D01*

-X223880Y234039D01*

-X223938Y234003D01*

-Y227493D01*

-X223832Y227320D01*

-X223724Y227058D01*

-X223658Y226782D01*

-X223635Y226500D01*

-X223658Y226218D01*

-X223724Y225942D01*

-X223832Y225680D01*

-X223938Y225507D01*

-Y221997D01*

-X223880Y221961D01*

-X223664Y221777D01*

-X223480Y221561D01*

-X223332Y221320D01*

-X223224Y221058D01*

-X223158Y220782D01*

-X223135Y220500D01*

-X223158Y220218D01*

-X223224Y219942D01*

-X223332Y219680D01*

-X223480Y219439D01*

-X223664Y219223D01*

-X223880Y219039D01*

-X223938Y219003D01*

-Y201212D01*

-X223841Y201172D01*

-X223264Y200819D01*

-X222749Y200379D01*

-X222309Y199864D01*

-X221956Y199287D01*

-X221697Y198662D01*

-X221539Y198004D01*

-X221486Y197329D01*

-X221539Y196654D01*

-X221697Y195996D01*

-X221956Y195371D01*

-X222309Y194794D01*

-X222749Y194279D01*

-X223264Y193839D01*

-X223841Y193486D01*

-X223938Y193446D01*

-Y188712D01*

-X223841Y188672D01*

-X223264Y188319D01*

-X222749Y187879D01*

-X222309Y187364D01*

-X221956Y186787D01*

-X221697Y186162D01*

-X221539Y185504D01*

-X221486Y184829D01*

-X221539Y184154D01*

-X221697Y183496D01*

-X221956Y182871D01*

-X222309Y182294D01*

-X222749Y181779D01*

-X223264Y181339D01*

-X223841Y180986D01*

-X223938Y180946D01*

-Y178712D01*

-X223841Y178672D01*

-X223264Y178319D01*

-X222749Y177879D01*

-X222309Y177364D01*

-X221956Y176787D01*

-X221697Y176162D01*

-X221539Y175504D01*

-X221486Y174829D01*

-X221539Y174154D01*

-X221697Y173496D01*

-X221956Y172871D01*

-X222309Y172294D01*

-X222749Y171779D01*

-X223264Y171339D01*

-X223841Y170986D01*

-X223938Y170946D01*

-Y149805D01*

-X223659Y149783D01*

-X223383Y149717D01*

-X223121Y149609D01*

-X222880Y149461D01*

-X222664Y149277D01*

-X222480Y149061D01*

-X222332Y148820D01*

-X222224Y148558D01*

-X222158Y148282D01*

-X222135Y148000D01*

-X222158Y147718D01*

-X222224Y147442D01*

-X222332Y147180D01*

-X222480Y146939D01*

-X222664Y146723D01*

-X222880Y146539D01*

-X223121Y146391D01*

-X223383Y146283D01*

-X223659Y146217D01*

-X223938Y146195D01*

-Y97000D01*

-G37*

-G36*

-X219438Y377120D02*X219289Y377364D01*

-X218849Y377879D01*

-X218334Y378319D01*

-X217757Y378672D01*

-X217132Y378931D01*

-X216474Y379089D01*

-X215799Y379142D01*

-X215792Y379142D01*

-Y397000D01*

-X219438D01*

-Y377120D01*

-G37*

-G36*

-Y367120D02*X219289Y367364D01*

-X218849Y367879D01*

-X218334Y368319D01*

-X217757Y368672D01*

-X217132Y368931D01*

-X216474Y369089D01*

-X215799Y369142D01*

-X215792Y369142D01*

-Y370516D01*

-X215799Y370516D01*

-X216474Y370569D01*

-X217132Y370727D01*

-X217757Y370986D01*

-X218334Y371339D01*

-X218849Y371779D01*

-X219289Y372294D01*

-X219438Y372538D01*

-Y367120D01*

-G37*

-G36*

-Y199620D02*X219289Y199864D01*

-X218849Y200379D01*

-X218334Y200819D01*

-X217757Y201172D01*

-X217132Y201431D01*

-X216474Y201589D01*

-X215799Y201642D01*

-X215792Y201642D01*

-Y278277D01*

-X215832Y278180D01*

-X215980Y277939D01*

-X216164Y277723D01*

-X216380Y277539D01*

-X216621Y277391D01*

-X216883Y277283D01*

-X217159Y277217D01*

-X217441Y277194D01*

-X217723Y277217D01*

-X217999Y277283D01*

-X218261Y277391D01*

-X218502Y277539D01*

-X218718Y277723D01*

-X218902Y277939D01*

-X219050Y278180D01*

-X219158Y278442D01*

-X219224Y278718D01*

-X219241Y279000D01*

-X219224Y279282D01*

-X219158Y279558D01*

-X219050Y279820D01*

-X218902Y280061D01*

-X218718Y280277D01*

-X218502Y280461D01*

-X218261Y280609D01*

-X217999Y280717D01*

-X217723Y280783D01*

-X217441Y280806D01*

-X217159Y280783D01*

-X216883Y280717D01*

-X216621Y280609D01*

-X216380Y280461D01*

-X216164Y280277D01*

-X215980Y280061D01*

-X215832Y279820D01*

-X215792Y279723D01*

-Y360516D01*

-X215799Y360516D01*

-X216474Y360569D01*

-X217132Y360727D01*

-X217757Y360986D01*

-X218334Y361339D01*

-X218849Y361779D01*

-X219289Y362294D01*

-X219438Y362538D01*

-Y274305D01*

-X219159Y274283D01*

-X218883Y274217D01*

-X218621Y274109D01*

-X218380Y273961D01*

-X218164Y273777D01*

-X217980Y273561D01*

-X217832Y273320D01*

-X217724Y273058D01*

-X217658Y272782D01*

-X217635Y272500D01*

-X217658Y272218D01*

-X217724Y271942D01*

-X217832Y271680D01*

-X217980Y271439D01*

-X218164Y271223D01*

-X218380Y271039D01*

-X218621Y270891D01*

-X218883Y270783D01*

-X219159Y270717D01*

-X219438Y270695D01*

-Y266840D01*

-X219268Y266641D01*

-X219120Y266400D01*

-X219012Y266138D01*

-X218946Y265862D01*

-X218923Y265580D01*

-X218946Y265298D01*

-X219012Y265022D01*

-X219120Y264760D01*

-X219268Y264519D01*

-X219438Y264320D01*

-Y263000D01*

-X219261Y263109D01*

-X218999Y263217D01*

-X218723Y263283D01*

-X218441Y263306D01*

-X218159Y263283D01*

-X217883Y263217D01*

-X217621Y263109D01*

-X217380Y262961D01*

-X217164Y262777D01*

-X216980Y262561D01*

-X216832Y262320D01*

-X216724Y262058D01*

-X216658Y261782D01*

-X216635Y261500D01*

-X216658Y261218D01*

-X216724Y260942D01*

-X216832Y260680D01*

-X216980Y260439D01*

-X217164Y260223D01*

-X217380Y260039D01*

-X217621Y259891D01*

-X217883Y259783D01*

-X218159Y259717D01*

-X218441Y259694D01*

-X218652Y259711D01*

-X218635Y259500D01*

-X218658Y259218D01*

-X218724Y258942D01*

-X218832Y258680D01*

-X218980Y258439D01*

-X219164Y258223D01*

-X219380Y258039D01*

-X219438Y258003D01*

-Y216497D01*

-X219380Y216461D01*

-X219164Y216277D01*

-X218980Y216061D01*

-X218832Y215820D01*

-X218724Y215558D01*

-X218658Y215282D01*

-X218635Y215000D01*

-X218658Y214718D01*

-X218724Y214442D01*

-X218832Y214180D01*

-X218980Y213939D01*

-X219164Y213723D01*

-X219380Y213539D01*

-X219438Y213503D01*

-Y199620D01*

-G37*

-G36*

-Y187120D02*X219289Y187364D01*

-X218849Y187879D01*

-X218334Y188319D01*

-X217757Y188672D01*

-X217132Y188931D01*

-X216474Y189089D01*

-X215799Y189142D01*

-X215792Y189142D01*

-Y193016D01*

-X215799Y193016D01*

-X216474Y193069D01*

-X217132Y193227D01*

-X217757Y193486D01*

-X218334Y193839D01*

-X218849Y194279D01*

-X219289Y194794D01*

-X219438Y195038D01*

-Y187120D01*

-G37*

-G36*

-Y177120D02*X219289Y177364D01*

-X218849Y177879D01*

-X218334Y178319D01*

-X217757Y178672D01*

-X217132Y178931D01*

-X216474Y179089D01*

-X215799Y179142D01*

-X215792Y179142D01*

-Y180516D01*

-X215799Y180516D01*

-X216474Y180569D01*

-X217132Y180727D01*

-X217757Y180986D01*

-X218334Y181339D01*

-X218849Y181779D01*

-X219289Y182294D01*

-X219438Y182538D01*

-Y177120D01*

-G37*

-G36*

-Y97000D02*X215792D01*

-Y170516D01*

-X215799Y170516D01*

-X216474Y170569D01*

-X217132Y170727D01*

-X217757Y170986D01*

-X218334Y171339D01*

-X218849Y171779D01*

-X219289Y172294D01*

-X219438Y172538D01*

-Y97000D01*

-G37*

-G36*

-X212938Y181618D02*X213264Y181339D01*

-X213841Y180986D01*

-X214466Y180727D01*

-X215124Y180569D01*

-X215792Y180516D01*

-Y179142D01*

-X215124Y179089D01*

-X214466Y178931D01*

-X213841Y178672D01*

-X213264Y178319D01*

-X212938Y178040D01*

-Y181618D01*

-G37*

-G36*

-Y194118D02*X213264Y193839D01*

-X213841Y193486D01*

-X214466Y193227D01*

-X215124Y193069D01*

-X215792Y193016D01*

-Y189142D01*

-X215124Y189089D01*

-X214466Y188931D01*

-X213841Y188672D01*

-X213264Y188319D01*

-X212938Y188040D01*

-Y194118D01*

-G37*

-G36*

-Y361618D02*X213264Y361339D01*

-X213841Y360986D01*

-X214466Y360727D01*

-X215124Y360569D01*

-X215792Y360516D01*

-Y279723D01*

-X215724Y279558D01*

-X215658Y279282D01*

-X215635Y279000D01*

-X215658Y278718D01*

-X215724Y278442D01*

-X215792Y278277D01*

-Y201642D01*

-X215124Y201589D01*

-X214466Y201431D01*

-X213841Y201172D01*

-X213264Y200819D01*

-X212938Y200540D01*

-Y236195D01*

-X212941Y236194D01*

-X213223Y236217D01*

-X213499Y236283D01*

-X213761Y236391D01*

-X214002Y236539D01*

-X214218Y236723D01*

-X214402Y236939D01*

-X214550Y237180D01*

-X214658Y237442D01*

-X214724Y237718D01*

-X214741Y238000D01*

-X214724Y238282D01*

-X214658Y238558D01*

-X214550Y238820D01*

-X214402Y239061D01*

-X214218Y239277D01*

-X214002Y239461D01*

-X213761Y239609D01*

-X213499Y239717D01*

-X213223Y239783D01*

-X212941Y239806D01*

-X212938Y239805D01*

-Y361618D01*

-G37*

-G36*

-Y371618D02*X213264Y371339D01*

-X213841Y370986D01*

-X214466Y370727D01*

-X215124Y370569D01*

-X215792Y370516D01*

-Y369142D01*

-X215124Y369089D01*

-X214466Y368931D01*

-X213841Y368672D01*

-X213264Y368319D01*

-X212938Y368040D01*

-Y371618D01*

-G37*

-G36*

-Y397000D02*X215792D01*

-Y379142D01*

-X215124Y379089D01*

-X214466Y378931D01*

-X213841Y378672D01*

-X213264Y378319D01*

-X212938Y378040D01*

-Y397000D01*

-G37*

-G36*

-X215792Y97000D02*X212938D01*

-Y171618D01*

-X213264Y171339D01*

-X213841Y170986D01*

-X214466Y170727D01*

-X215124Y170569D01*

-X215792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X212938D02*X208938D01*

-Y146195D01*

-X208941Y146194D01*

-X209223Y146217D01*

-X209499Y146283D01*

-X209761Y146391D01*

-X210002Y146539D01*

-X210218Y146723D01*

-X210402Y146939D01*

-X210550Y147180D01*

-X210658Y147442D01*

-X210724Y147718D01*

-X210741Y148000D01*

-X210724Y148282D01*

-X210658Y148558D01*

-X210550Y148820D01*

-X210402Y149061D01*

-X210218Y149277D01*

-X210002Y149461D01*

-X209761Y149609D01*

-X209499Y149717D01*

-X209223Y149783D01*

-X208941Y149806D01*

-X208938Y149805D01*

-Y171884D01*

-X209289Y172294D01*

-X209642Y172871D01*

-X209901Y173496D01*

-X210059Y174154D01*

-X210099Y174829D01*

-X210059Y175504D01*

-X209901Y176162D01*

-X209642Y176787D01*

-X209289Y177364D01*

-X208938Y177774D01*

-Y181884D01*

-X209289Y182294D01*

-X209642Y182871D01*

-X209901Y183496D01*

-X210059Y184154D01*

-X210099Y184829D01*

-X210059Y185504D01*

-X209901Y186162D01*

-X209642Y186787D01*

-X209289Y187364D01*

-X208938Y187774D01*

-Y194384D01*

-X209289Y194794D01*

-X209642Y195371D01*

-X209901Y195996D01*

-X210059Y196654D01*

-X210099Y197329D01*

-X210059Y198004D01*

-X209901Y198662D01*

-X209642Y199287D01*

-X209289Y199864D01*

-X208938Y200274D01*

-Y211507D01*

-X208980Y211439D01*

-X209164Y211223D01*

-X209380Y211039D01*

-X209621Y210891D01*

-X209883Y210783D01*

-X210159Y210717D01*

-X210441Y210694D01*

-X210723Y210717D01*

-X210999Y210783D01*

-X211261Y210891D01*

-X211502Y211039D01*

-X211718Y211223D01*

-X211902Y211439D01*

-X212050Y211680D01*

-X212158Y211942D01*

-X212224Y212218D01*

-X212241Y212500D01*

-X212224Y212782D01*

-X212158Y213058D01*

-X212050Y213320D01*

-X211902Y213561D01*

-X211718Y213777D01*

-X211502Y213961D01*

-X211261Y214109D01*

-X210999Y214217D01*

-X210723Y214283D01*

-X210441Y214306D01*

-X210159Y214283D01*

-X209883Y214217D01*

-X209621Y214109D01*

-X209380Y213961D01*

-X209164Y213777D01*

-X208980Y213561D01*

-X208938Y213493D01*

-Y361884D01*

-X209289Y362294D01*

-X209642Y362871D01*

-X209901Y363496D01*

-X210059Y364154D01*

-X210099Y364829D01*

-X210059Y365504D01*

-X209901Y366162D01*

-X209642Y366787D01*

-X209289Y367364D01*

-X208938Y367774D01*

-Y371884D01*

-X209289Y372294D01*

-X209642Y372871D01*

-X209901Y373496D01*

-X210059Y374154D01*

-X210099Y374829D01*

-X210059Y375504D01*

-X209901Y376162D01*

-X209642Y376787D01*

-X209289Y377364D01*

-X208938Y377774D01*

-Y397000D01*

-X212938D01*

-Y378040D01*

-X212749Y377879D01*

-X212309Y377364D01*

-X211956Y376787D01*

-X211697Y376162D01*

-X211539Y375504D01*

-X211486Y374829D01*

-X211539Y374154D01*

-X211697Y373496D01*

-X211956Y372871D01*

-X212309Y372294D01*

-X212749Y371779D01*

-X212938Y371618D01*

-Y368040D01*

-X212749Y367879D01*

-X212309Y367364D01*

-X211956Y366787D01*

-X211697Y366162D01*

-X211539Y365504D01*

-X211486Y364829D01*

-X211539Y364154D01*

-X211697Y363496D01*

-X211956Y362871D01*

-X212309Y362294D01*

-X212749Y361779D01*

-X212938Y361618D01*

-Y239805D01*

-X212659Y239783D01*

-X212383Y239717D01*

-X212121Y239609D01*

-X211880Y239461D01*

-X211664Y239277D01*

-X211480Y239061D01*

-X211332Y238820D01*

-X211224Y238558D01*

-X211158Y238282D01*

-X211135Y238000D01*

-X211158Y237718D01*

-X211224Y237442D01*

-X211332Y237180D01*

-X211480Y236939D01*

-X211664Y236723D01*

-X211880Y236539D01*

-X212121Y236391D01*

-X212383Y236283D01*

-X212659Y236217D01*

-X212938Y236195D01*

-Y200540D01*

-X212749Y200379D01*

-X212309Y199864D01*

-X211956Y199287D01*

-X211697Y198662D01*

-X211539Y198004D01*

-X211486Y197329D01*

-X211539Y196654D01*

-X211697Y195996D01*

-X211956Y195371D01*

-X212309Y194794D01*

-X212749Y194279D01*

-X212938Y194118D01*

-Y188040D01*

-X212749Y187879D01*

-X212309Y187364D01*

-X211956Y186787D01*

-X211697Y186162D01*

-X211539Y185504D01*

-X211486Y184829D01*

-X211539Y184154D01*

-X211697Y183496D01*

-X211956Y182871D01*

-X212309Y182294D01*

-X212749Y181779D01*

-X212938Y181618D01*

-Y178040D01*

-X212749Y177879D01*

-X212309Y177364D01*

-X211956Y176787D01*

-X211697Y176162D01*

-X211539Y175504D01*

-X211486Y174829D01*

-X211539Y174154D01*

-X211697Y173496D01*

-X211956Y172871D01*

-X212309Y172294D01*

-X212749Y171779D01*

-X212938Y171618D01*

-Y97000D01*

-G37*

-G36*

-X208938Y377774D02*X208849Y377879D01*

-X208334Y378319D01*

-X207757Y378672D01*

-X207132Y378931D01*

-X206474Y379089D01*

-X205799Y379142D01*

-X205792Y379142D01*

-Y397000D01*

-X208938D01*

-Y377774D01*

-G37*

-G36*

-Y367774D02*X208849Y367879D01*

-X208334Y368319D01*

-X207757Y368672D01*

-X207132Y368931D01*

-X206474Y369089D01*

-X205799Y369142D01*

-X205792Y369142D01*

-Y370516D01*

-X205799Y370516D01*

-X206474Y370569D01*

-X207132Y370727D01*

-X207757Y370986D01*

-X208334Y371339D01*

-X208849Y371779D01*

-X208938Y371884D01*

-Y367774D01*

-G37*

-G36*

-Y200274D02*X208849Y200379D01*

-X208334Y200819D01*

-X207757Y201172D01*

-X207132Y201431D01*

-X206474Y201589D01*

-X205799Y201642D01*

-X205792Y201642D01*

-Y275233D01*

-X205999Y275283D01*

-X206261Y275391D01*

-X206502Y275539D01*

-X206718Y275723D01*

-X206902Y275939D01*

-X207050Y276180D01*

-X207158Y276442D01*

-X207224Y276718D01*

-X207241Y277000D01*

-X207224Y277282D01*

-X207158Y277558D01*

-X207050Y277820D01*

-X206902Y278061D01*

-X206718Y278277D01*

-X206502Y278461D01*

-X206261Y278609D01*

-X205999Y278717D01*

-X205792Y278767D01*

-Y360516D01*

-X205799Y360516D01*

-X206474Y360569D01*

-X207132Y360727D01*

-X207757Y360986D01*

-X208334Y361339D01*

-X208849Y361779D01*

-X208938Y361884D01*

-Y213493D01*

-X208832Y213320D01*

-X208724Y213058D01*

-X208658Y212782D01*

-X208635Y212500D01*

-X208658Y212218D01*

-X208724Y211942D01*

-X208832Y211680D01*

-X208938Y211507D01*

-Y200274D01*

-G37*

-G36*

-Y187774D02*X208849Y187879D01*

-X208334Y188319D01*

-X207757Y188672D01*

-X207132Y188931D01*

-X206474Y189089D01*

-X205799Y189142D01*

-X205792Y189142D01*

-Y193016D01*

-X205799Y193016D01*

-X206474Y193069D01*

-X207132Y193227D01*

-X207757Y193486D01*

-X208334Y193839D01*

-X208849Y194279D01*

-X208938Y194384D01*

-Y187774D01*

-G37*

-G36*

-Y177774D02*X208849Y177879D01*

-X208334Y178319D01*

-X207757Y178672D01*

-X207132Y178931D01*

-X206474Y179089D01*

-X205799Y179142D01*

-X205792Y179142D01*

-Y180516D01*

-X205799Y180516D01*

-X206474Y180569D01*

-X207132Y180727D01*

-X207757Y180986D01*

-X208334Y181339D01*

-X208849Y181779D01*

-X208938Y181884D01*

-Y177774D01*

-G37*

-G36*

-Y97000D02*X205792D01*

-Y170516D01*

-X205799Y170516D01*

-X206474Y170569D01*

-X207132Y170727D01*

-X207757Y170986D01*

-X208334Y171339D01*

-X208849Y171779D01*

-X208938Y171884D01*

-Y149805D01*

-X208659Y149783D01*

-X208383Y149717D01*

-X208121Y149609D01*

-X207880Y149461D01*

-X207664Y149277D01*

-X207480Y149061D01*

-X207332Y148820D01*

-X207224Y148558D01*

-X207158Y148282D01*

-X207135Y148000D01*

-X207158Y147718D01*

-X207224Y147442D01*

-X207332Y147180D01*

-X207480Y146939D01*

-X207664Y146723D01*

-X207880Y146539D01*

-X208121Y146391D01*

-X208383Y146283D01*

-X208659Y146217D01*

-X208938Y146195D01*

-Y97000D01*

-G37*

-G36*

-X203938Y180946D02*X204466Y180727D01*

-X205124Y180569D01*

-X205792Y180516D01*

-Y179142D01*

-X205124Y179089D01*

-X204466Y178931D01*

-X203938Y178712D01*

-Y180946D01*

-G37*

-G36*

-Y193446D02*X204466Y193227D01*

-X205124Y193069D01*

-X205792Y193016D01*

-Y189142D01*

-X205124Y189089D01*

-X204466Y188931D01*

-X203938Y188712D01*

-Y193446D01*

-G37*

-G36*

-Y276007D02*X203980Y275939D01*

-X204164Y275723D01*

-X204380Y275539D01*

-X204621Y275391D01*

-X204883Y275283D01*

-X205159Y275217D01*

-X205441Y275194D01*

-X205723Y275217D01*

-X205792Y275233D01*

-Y201642D01*

-X205124Y201589D01*

-X204466Y201431D01*

-X203938Y201212D01*

-Y211498D01*

-X204050Y211680D01*

-X204158Y211942D01*

-X204224Y212218D01*

-X204241Y212500D01*

-X204224Y212782D01*

-X204158Y213058D01*

-X204050Y213320D01*

-X203938Y213502D01*

-Y235695D01*

-X203941Y235694D01*

-X204223Y235717D01*

-X204499Y235783D01*

-X204761Y235891D01*

-X205002Y236039D01*

-X205218Y236223D01*

-X205402Y236439D01*

-X205550Y236680D01*

-X205658Y236942D01*

-X205724Y237218D01*

-X205741Y237500D01*

-X205724Y237782D01*

-X205658Y238058D01*

-X205550Y238320D01*

-X205402Y238561D01*

-X205218Y238777D01*

-X205002Y238961D01*

-X204761Y239109D01*

-X204499Y239217D01*

-X204223Y239283D01*

-X203941Y239306D01*

-X203938Y239305D01*

-Y276007D01*

-G37*

-G36*

-Y360946D02*X204466Y360727D01*

-X205124Y360569D01*

-X205792Y360516D01*

-Y278767D01*

-X205723Y278783D01*

-X205441Y278806D01*

-X205159Y278783D01*

-X204883Y278717D01*

-X204621Y278609D01*

-X204380Y278461D01*

-X204164Y278277D01*

-X203980Y278061D01*

-X203938Y277993D01*

-Y360946D01*

-G37*

-G36*

-Y370946D02*X204466Y370727D01*

-X205124Y370569D01*

-X205792Y370516D01*

-Y369142D01*

-X205124Y369089D01*

-X204466Y368931D01*

-X203938Y368712D01*

-Y370946D01*

-G37*

-G36*

-Y397000D02*X205792D01*

-Y379142D01*

-X205124Y379089D01*

-X204466Y378931D01*

-X203938Y378712D01*

-Y397000D01*

-G37*

-G36*

-X205792Y97000D02*X203938D01*

-Y170946D01*

-X204466Y170727D01*

-X205124Y170569D01*

-X205792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X203938D02*X198438D01*

-Y120695D01*

-X198441Y120694D01*

-X198723Y120717D01*

-X198999Y120783D01*

-X199261Y120891D01*

-X199502Y121039D01*

-X199718Y121223D01*

-X199902Y121439D01*

-X200050Y121680D01*

-X200158Y121942D01*

-X200224Y122218D01*

-X200241Y122500D01*

-X200224Y122782D01*

-X200158Y123058D01*

-X200050Y123320D01*

-X199902Y123561D01*

-X199718Y123777D01*

-X199502Y123961D01*

-X199261Y124109D01*

-X198999Y124217D01*

-X198723Y124283D01*

-X198441Y124306D01*

-X198438Y124305D01*

-Y171428D01*

-X198849Y171779D01*

-X199289Y172294D01*

-X199642Y172871D01*

-X199901Y173496D01*

-X200059Y174154D01*

-X200099Y174829D01*

-X200059Y175504D01*

-X199901Y176162D01*

-X199642Y176787D01*

-X199289Y177364D01*

-X198849Y177879D01*

-X198438Y178230D01*

-Y181428D01*

-X198849Y181779D01*

-X199289Y182294D01*

-X199642Y182871D01*

-X199901Y183496D01*

-X200059Y184154D01*

-X200099Y184829D01*

-X200059Y185504D01*

-X199901Y186162D01*

-X199642Y186787D01*

-X199289Y187364D01*

-X198849Y187879D01*

-X198438Y188230D01*

-Y193037D01*

-X199256Y193038D01*

-X199409Y193075D01*

-X199554Y193135D01*

-X199689Y193217D01*

-X199808Y193320D01*

-X199911Y193439D01*

-X199993Y193574D01*

-X200053Y193719D01*

-X200090Y193872D01*

-X200099Y194029D01*

-X200090Y200786D01*

-X200053Y200939D01*

-X199993Y201084D01*

-X199911Y201219D01*

-X199808Y201338D01*

-X199689Y201441D01*

-X199554Y201523D01*

-X199409Y201583D01*

-X199256Y201620D01*

-X199099Y201629D01*

-X198438Y201628D01*

-Y260695D01*

-X198441Y260694D01*

-X198723Y260717D01*

-X198999Y260783D01*

-X199261Y260891D01*

-X199502Y261039D01*

-X199718Y261223D01*

-X199902Y261439D01*

-X200050Y261680D01*

-X200158Y261942D01*

-X200224Y262218D01*

-X200241Y262500D01*

-X200224Y262782D01*

-X200158Y263058D01*

-X200050Y263320D01*

-X199902Y263561D01*

-X199718Y263777D01*

-X199502Y263961D01*

-X199261Y264109D01*

-X198999Y264217D01*

-X198723Y264283D01*

-X198441Y264306D01*

-X198438Y264305D01*

-Y267695D01*

-X198441Y267694D01*

-X198723Y267717D01*

-X198999Y267783D01*

-X199261Y267891D01*

-X199502Y268039D01*

-X199718Y268223D01*

-X199902Y268439D01*

-X200050Y268680D01*

-X200158Y268942D01*

-X200224Y269218D01*

-X200241Y269500D01*

-X200224Y269782D01*

-X200158Y270058D01*

-X200050Y270320D01*

-X199902Y270561D01*

-X199718Y270777D01*

-X199502Y270961D01*

-X199261Y271109D01*

-X198999Y271217D01*

-X198723Y271283D01*

-X198441Y271306D01*

-X198438Y271305D01*

-Y307000D01*

-X198502Y307039D01*

-X198718Y307223D01*

-X198902Y307439D01*

-X199050Y307680D01*

-X199158Y307942D01*

-X199224Y308218D01*

-X199241Y308500D01*

-X199224Y308782D01*

-X199158Y309058D01*

-X199050Y309320D01*

-X198902Y309561D01*

-X198718Y309777D01*

-X198502Y309961D01*

-X198438Y310000D01*

-Y313000D01*

-X198502Y313039D01*

-X198718Y313223D01*

-X198902Y313439D01*

-X199050Y313680D01*

-X199158Y313942D01*

-X199224Y314218D01*

-X199241Y314500D01*

-X199224Y314782D01*

-X199158Y315058D01*

-X199050Y315320D01*

-X198902Y315561D01*

-X198718Y315777D01*

-X198502Y315961D01*

-X198438Y316000D01*

-Y361428D01*

-X198849Y361779D01*

-X199289Y362294D01*

-X199642Y362871D01*

-X199901Y363496D01*

-X200059Y364154D01*

-X200099Y364829D01*

-X200059Y365504D01*

-X199901Y366162D01*

-X199642Y366787D01*

-X199289Y367364D01*

-X198849Y367879D01*

-X198438Y368230D01*

-Y371428D01*

-X198849Y371779D01*

-X199289Y372294D01*

-X199642Y372871D01*

-X199901Y373496D01*

-X200059Y374154D01*

-X200099Y374829D01*

-X200059Y375504D01*

-X199901Y376162D01*

-X199642Y376787D01*

-X199289Y377364D01*

-X198849Y377879D01*

-X198438Y378230D01*

-Y397000D01*

-X203938D01*

-Y378712D01*

-X203841Y378672D01*

-X203264Y378319D01*

-X202749Y377879D01*

-X202309Y377364D01*

-X201956Y376787D01*

-X201697Y376162D01*

-X201539Y375504D01*

-X201486Y374829D01*

-X201539Y374154D01*

-X201697Y373496D01*

-X201956Y372871D01*

-X202309Y372294D01*

-X202749Y371779D01*

-X203264Y371339D01*

-X203841Y370986D01*

-X203938Y370946D01*

-Y368712D01*

-X203841Y368672D01*

-X203264Y368319D01*

-X202749Y367879D01*

-X202309Y367364D01*

-X201956Y366787D01*

-X201697Y366162D01*

-X201539Y365504D01*

-X201486Y364829D01*

-X201539Y364154D01*

-X201697Y363496D01*

-X201956Y362871D01*

-X202309Y362294D01*

-X202749Y361779D01*

-X203264Y361339D01*

-X203841Y360986D01*

-X203938Y360946D01*

-Y277993D01*

-X203832Y277820D01*

-X203724Y277558D01*

-X203658Y277282D01*

-X203635Y277000D01*

-X203658Y276718D01*

-X203724Y276442D01*

-X203832Y276180D01*

-X203938Y276007D01*

-Y239305D01*

-X203659Y239283D01*

-X203383Y239217D01*

-X203121Y239109D01*

-X202880Y238961D01*

-X202664Y238777D01*

-X202480Y238561D01*

-X202332Y238320D01*

-X202224Y238058D01*

-X202158Y237782D01*

-X202135Y237500D01*

-X202158Y237218D01*

-X202224Y236942D01*

-X202332Y236680D01*

-X202480Y236439D01*

-X202664Y236223D01*

-X202880Y236039D01*

-X203121Y235891D01*

-X203383Y235783D01*

-X203659Y235717D01*

-X203938Y235695D01*

-Y213502D01*

-X203902Y213561D01*

-X203718Y213777D01*

-X203502Y213961D01*

-X203261Y214109D01*

-X202999Y214217D01*

-X202723Y214283D01*

-X202441Y214306D01*

-X202159Y214283D01*

-X201883Y214217D01*

-X201621Y214109D01*

-X201380Y213961D01*

-X201164Y213777D01*

-X200980Y213561D01*

-X200832Y213320D01*

-X200724Y213058D01*

-X200658Y212782D01*

-X200635Y212500D01*

-X200658Y212218D01*

-X200724Y211942D01*

-X200832Y211680D01*

-X200980Y211439D01*

-X201164Y211223D01*

-X201380Y211039D01*

-X201621Y210891D01*

-X201883Y210783D01*

-X202159Y210717D01*

-X202441Y210694D01*

-X202723Y210717D01*

-X202999Y210783D01*

-X203261Y210891D01*

-X203502Y211039D01*

-X203718Y211223D01*

-X203902Y211439D01*

-X203938Y211498D01*

-Y201212D01*

-X203841Y201172D01*

-X203264Y200819D01*

-X202749Y200379D01*

-X202309Y199864D01*

-X201956Y199287D01*

-X201697Y198662D01*

-X201539Y198004D01*

-X201486Y197329D01*

-X201539Y196654D01*

-X201697Y195996D01*

-X201956Y195371D01*

-X202309Y194794D01*

-X202749Y194279D01*

-X203264Y193839D01*

-X203841Y193486D01*

-X203938Y193446D01*

-Y188712D01*

-X203841Y188672D01*

-X203264Y188319D01*

-X202749Y187879D01*

-X202309Y187364D01*

-X201956Y186787D01*

-X201697Y186162D01*

-X201539Y185504D01*

-X201486Y184829D01*

-X201539Y184154D01*

-X201697Y183496D01*

-X201956Y182871D01*

-X202309Y182294D01*

-X202749Y181779D01*

-X203264Y181339D01*

-X203841Y180986D01*

-X203938Y180946D01*

-Y178712D01*

-X203841Y178672D01*

-X203264Y178319D01*

-X202749Y177879D01*

-X202309Y177364D01*

-X201956Y176787D01*

-X201697Y176162D01*

-X201539Y175504D01*

-X201486Y174829D01*

-X201539Y174154D01*

-X201697Y173496D01*

-X201956Y172871D01*

-X202309Y172294D01*

-X202749Y171779D01*

-X203264Y171339D01*

-X203841Y170986D01*

-X203938Y170946D01*

-Y97000D01*

-G37*

-G36*

-X198438Y378230D02*X198334Y378319D01*

-X197757Y378672D01*

-X197132Y378931D01*

-X196474Y379089D01*

-X195799Y379142D01*

-X195792Y379142D01*

-Y397000D01*

-X198438D01*

-Y378230D01*

-G37*

-G36*

-Y368230D02*X198334Y368319D01*

-X197757Y368672D01*

-X197132Y368931D01*

-X196474Y369089D01*

-X195799Y369142D01*

-X195792Y369142D01*

-Y370516D01*

-X195799Y370516D01*

-X196474Y370569D01*

-X197132Y370727D01*

-X197757Y370986D01*

-X198334Y371339D01*

-X198438Y371428D01*

-Y368230D01*

-G37*

-G36*

-Y316000D02*X198261Y316109D01*

-X197999Y316217D01*

-X197723Y316283D01*

-X197441Y316306D01*

-X197159Y316283D01*

-X196883Y316217D01*

-X196621Y316109D01*

-X196380Y315961D01*

-X196164Y315777D01*

-X195980Y315561D01*

-X195832Y315320D01*

-X195792Y315223D01*

-Y360516D01*

-X195799Y360516D01*

-X196474Y360569D01*

-X197132Y360727D01*

-X197757Y360986D01*

-X198334Y361339D01*

-X198438Y361428D01*

-Y316000D01*

-G37*

-G36*

-Y310000D02*X198261Y310109D01*

-X197999Y310217D01*

-X197723Y310283D01*

-X197441Y310306D01*

-X197159Y310283D01*

-X196883Y310217D01*

-X196621Y310109D01*

-X196380Y309961D01*

-X196164Y309777D01*

-X195980Y309561D01*

-X195832Y309320D01*

-X195792Y309223D01*

-Y309733D01*

-X195999Y309783D01*

-X196261Y309891D01*

-X196502Y310039D01*

-X196718Y310223D01*

-X196902Y310439D01*

-X197050Y310680D01*

-X197158Y310942D01*

-X197224Y311218D01*

-X197241Y311500D01*

-X197224Y311782D01*

-X197158Y312058D01*

-X197050Y312320D01*

-X196902Y312561D01*

-X196718Y312777D01*

-X196502Y312961D01*

-X196261Y313109D01*

-X195999Y313217D01*

-X195792Y313267D01*

-Y313777D01*

-X195832Y313680D01*

-X195980Y313439D01*

-X196164Y313223D01*

-X196380Y313039D01*

-X196621Y312891D01*

-X196883Y312783D01*

-X197159Y312717D01*

-X197441Y312694D01*

-X197723Y312717D01*

-X197999Y312783D01*

-X198261Y312891D01*

-X198438Y313000D01*

-Y310000D01*

-G37*

-G36*

-Y201628D02*X195792Y201624D01*

-Y307777D01*

-X195832Y307680D01*

-X195980Y307439D01*

-X196164Y307223D01*

-X196380Y307039D01*

-X196621Y306891D01*

-X196883Y306783D01*

-X197159Y306717D01*

-X197441Y306694D01*

-X197723Y306717D01*

-X197999Y306783D01*

-X198261Y306891D01*

-X198438Y307000D01*

-Y271305D01*

-X198159Y271283D01*

-X197883Y271217D01*

-X197621Y271109D01*

-X197380Y270961D01*

-X197164Y270777D01*

-X196980Y270561D01*

-X196832Y270320D01*

-X196724Y270058D01*

-X196658Y269782D01*

-X196635Y269500D01*

-X196658Y269218D01*

-X196724Y268942D01*

-X196832Y268680D01*

-X196980Y268439D01*

-X197164Y268223D01*

-X197380Y268039D01*

-X197621Y267891D01*

-X197883Y267783D01*

-X198159Y267717D01*

-X198438Y267695D01*

-Y264305D01*

-X198159Y264283D01*

-X197883Y264217D01*

-X197621Y264109D01*

-X197380Y263961D01*

-X197164Y263777D01*

-X196980Y263561D01*

-X196832Y263320D01*

-X196724Y263058D01*

-X196658Y262782D01*

-X196635Y262500D01*

-X196658Y262218D01*

-X196724Y261942D01*

-X196832Y261680D01*

-X196980Y261439D01*

-X197164Y261223D01*

-X197380Y261039D01*

-X197621Y260891D01*

-X197883Y260783D01*

-X198159Y260717D01*

-X198438Y260695D01*

-Y201628D01*

-G37*

-G36*

-Y188230D02*X198334Y188319D01*

-X197757Y188672D01*

-X197132Y188931D01*

-X196474Y189089D01*

-X195799Y189142D01*

-X195792Y189142D01*

-Y193034D01*

-X198438Y193037D01*

-Y188230D01*

-G37*

-G36*

-Y178230D02*X198334Y178319D01*

-X197757Y178672D01*

-X197132Y178931D01*

-X196474Y179089D01*

-X195799Y179142D01*

-X195792Y179142D01*

-Y180516D01*

-X195799Y180516D01*

-X196474Y180569D01*

-X197132Y180727D01*

-X197757Y180986D01*

-X198334Y181339D01*

-X198438Y181428D01*

-Y178230D01*

-G37*

-G36*

-Y97000D02*X195792D01*

-Y131233D01*

-X195999Y131283D01*

-X196261Y131391D01*

-X196502Y131539D01*

-X196718Y131723D01*

-X196902Y131939D01*

-X197050Y132180D01*

-X197158Y132442D01*

-X197224Y132718D01*

-X197241Y133000D01*

-X197224Y133282D01*

-X197158Y133558D01*

-X197050Y133820D01*

-X196902Y134061D01*

-X196718Y134277D01*

-X196502Y134461D01*

-X196261Y134609D01*

-X195999Y134717D01*

-X195792Y134767D01*

-Y170516D01*

-X195799Y170516D01*

-X196474Y170569D01*

-X197132Y170727D01*

-X197757Y170986D01*

-X198334Y171339D01*

-X198438Y171428D01*

-Y124305D01*

-X198159Y124283D01*

-X197883Y124217D01*

-X197621Y124109D01*

-X197380Y123961D01*

-X197164Y123777D01*

-X196980Y123561D01*

-X196832Y123320D01*

-X196724Y123058D01*

-X196658Y122782D01*

-X196635Y122500D01*

-X196658Y122218D01*

-X196724Y121942D01*

-X196832Y121680D01*

-X196980Y121439D01*

-X197164Y121223D01*

-X197380Y121039D01*

-X197621Y120891D01*

-X197883Y120783D01*

-X198159Y120717D01*

-X198438Y120695D01*

-Y97000D01*

-G37*

-G36*

-X193387Y181264D02*X193841Y180986D01*

-X194466Y180727D01*

-X195124Y180569D01*

-X195792Y180516D01*

-Y179142D01*

-X195124Y179089D01*

-X194466Y178931D01*

-X193841Y178672D01*

-X193387Y178394D01*

-Y181264D01*

-G37*

-G36*

-Y193030D02*X195792Y193034D01*

-Y189142D01*

-X195124Y189089D01*

-X194466Y188931D01*

-X193841Y188672D01*

-X193387Y188394D01*

-Y193030D01*

-G37*

-G36*

-Y361264D02*X193841Y360986D01*

-X194466Y360727D01*

-X195124Y360569D01*

-X195792Y360516D01*

-Y315223D01*

-X195724Y315058D01*

-X195658Y314782D01*

-X195635Y314500D01*

-X195658Y314218D01*

-X195724Y313942D01*

-X195792Y313777D01*

-Y313267D01*

-X195723Y313283D01*

-X195441Y313306D01*

-X195159Y313283D01*

-X194883Y313217D01*

-X194621Y313109D01*

-X194380Y312961D01*

-X194164Y312777D01*

-X193980Y312561D01*

-X193832Y312320D01*

-X193724Y312058D01*

-X193658Y311782D01*

-X193635Y311500D01*

-X193658Y311218D01*

-X193724Y310942D01*

-X193832Y310680D01*

-X193980Y310439D01*

-X194164Y310223D01*

-X194380Y310039D01*

-X194621Y309891D01*

-X194883Y309783D01*

-X195159Y309717D01*

-X195441Y309694D01*

-X195723Y309717D01*

-X195792Y309733D01*

-Y309223D01*

-X195724Y309058D01*

-X195658Y308782D01*

-X195635Y308500D01*

-X195658Y308218D01*

-X195724Y307942D01*

-X195792Y307777D01*

-Y201624D01*

-X193387Y201621D01*

-Y210782D01*

-X193659Y210717D01*

-X193941Y210694D01*

-X194223Y210717D01*

-X194499Y210783D01*

-X194761Y210891D01*

-X195002Y211039D01*

-X195218Y211223D01*

-X195402Y211439D01*

-X195550Y211680D01*

-X195658Y211942D01*

-X195724Y212218D01*

-X195741Y212500D01*

-X195724Y212782D01*

-X195658Y213058D01*

-X195550Y213320D01*

-X195402Y213561D01*

-X195218Y213777D01*

-X195002Y213961D01*

-X194761Y214109D01*

-X194499Y214217D01*

-X194223Y214283D01*

-X193941Y214306D01*

-X193659Y214283D01*

-X193387Y214218D01*

-Y235282D01*

-X193659Y235217D01*

-X193941Y235194D01*

-X194223Y235217D01*

-X194499Y235283D01*

-X194761Y235391D01*

-X195002Y235539D01*

-X195218Y235723D01*

-X195402Y235939D01*

-X195550Y236180D01*

-X195658Y236442D01*

-X195724Y236718D01*

-X195741Y237000D01*

-X195724Y237282D01*

-X195658Y237558D01*

-X195550Y237820D01*

-X195402Y238061D01*

-X195218Y238277D01*

-X195002Y238461D01*

-X194761Y238609D01*

-X194499Y238717D01*

-X194223Y238783D01*

-X193941Y238806D01*

-X193659Y238783D01*

-X193387Y238718D01*

-Y361264D01*

-G37*

-G36*

-Y371264D02*X193841Y370986D01*

-X194466Y370727D01*

-X195124Y370569D01*

-X195792Y370516D01*

-Y369142D01*

-X195124Y369089D01*

-X194466Y368931D01*

-X193841Y368672D01*

-X193387Y368394D01*

-Y371264D01*

-G37*

-G36*

-Y397000D02*X195792D01*

-Y379142D01*

-X195124Y379089D01*

-X194466Y378931D01*

-X193841Y378672D01*

-X193387Y378394D01*

-Y397000D01*

-G37*

-G36*

-X195792Y97000D02*X193387D01*

-Y125695D01*

-X193390Y125694D01*

-X193672Y125717D01*

-X193948Y125783D01*

-X194210Y125891D01*

-X194451Y126039D01*

-X194667Y126223D01*

-X194851Y126439D01*

-X194999Y126680D01*

-X195107Y126942D01*

-X195173Y127218D01*

-X195190Y127500D01*

-X195173Y127782D01*

-X195107Y128058D01*

-X194999Y128320D01*

-X194851Y128561D01*

-X194667Y128777D01*

-X194451Y128961D01*

-X194210Y129109D01*

-X193948Y129217D01*

-X193672Y129283D01*

-X193390Y129306D01*

-X193387Y129305D01*

-Y171264D01*

-X193841Y170986D01*

-X194466Y170727D01*

-X195124Y170569D01*

-X195792Y170516D01*

-Y134767D01*

-X195723Y134783D01*

-X195441Y134806D01*

-X195159Y134783D01*

-X194883Y134717D01*

-X194621Y134609D01*

-X194380Y134461D01*

-X194164Y134277D01*

-X193980Y134061D01*

-X193832Y133820D01*

-X193724Y133558D01*

-X193658Y133282D01*

-X193635Y133000D01*

-X193658Y132718D01*

-X193724Y132442D01*

-X193832Y132180D01*

-X193980Y131939D01*

-X194164Y131723D01*

-X194380Y131539D01*

-X194621Y131391D01*

-X194883Y131283D01*

-X195159Y131217D01*

-X195441Y131194D01*

-X195723Y131217D01*

-X195792Y131233D01*

-Y97000D01*

-G37*

-G36*

-X193387D02*X191360D01*

-Y342644D01*

-X191363Y342643D01*

-X191645Y342666D01*

-X191921Y342732D01*

-X192183Y342840D01*

-X192424Y342988D01*

-X192640Y343172D01*

-X192824Y343388D01*

-X192972Y343629D01*

-X193080Y343891D01*

-X193146Y344167D01*

-X193163Y344449D01*

-X193146Y344731D01*

-X193080Y345007D01*

-X192972Y345269D01*

-X192824Y345510D01*

-X192640Y345726D01*

-X192424Y345910D01*

-X192183Y346058D01*

-X191921Y346166D01*

-X191645Y346232D01*

-X191363Y346255D01*

-X191360Y346254D01*

-Y397000D01*

-X193387D01*

-Y378394D01*

-X193264Y378319D01*

-X192749Y377879D01*

-X192309Y377364D01*

-X191956Y376787D01*

-X191697Y376162D01*

-X191539Y375504D01*

-X191486Y374829D01*

-X191539Y374154D01*

-X191697Y373496D01*

-X191956Y372871D01*

-X192309Y372294D01*

-X192749Y371779D01*

-X193264Y371339D01*

-X193387Y371264D01*

-Y368394D01*

-X193264Y368319D01*

-X192749Y367879D01*

-X192309Y367364D01*

-X191956Y366787D01*

-X191697Y366162D01*

-X191539Y365504D01*

-X191486Y364829D01*

-X191539Y364154D01*

-X191697Y363496D01*

-X191956Y362871D01*

-X192309Y362294D01*

-X192749Y361779D01*

-X193264Y361339D01*

-X193387Y361264D01*

-Y238718D01*

-X193383Y238717D01*

-X193121Y238609D01*

-X192880Y238461D01*

-X192664Y238277D01*

-X192480Y238061D01*

-X192332Y237820D01*

-X192224Y237558D01*

-X192158Y237282D01*

-X192135Y237000D01*

-X192158Y236718D01*

-X192224Y236442D01*

-X192332Y236180D01*

-X192480Y235939D01*

-X192664Y235723D01*

-X192880Y235539D01*

-X193121Y235391D01*

-X193383Y235283D01*

-X193387Y235282D01*

-Y214218D01*

-X193383Y214217D01*

-X193121Y214109D01*

-X192880Y213961D01*

-X192664Y213777D01*

-X192480Y213561D01*

-X192332Y213320D01*

-X192224Y213058D01*

-X192158Y212782D01*

-X192135Y212500D01*

-X192158Y212218D01*

-X192224Y211942D01*

-X192332Y211680D01*

-X192480Y211439D01*

-X192664Y211223D01*

-X192880Y211039D01*

-X193121Y210891D01*

-X193383Y210783D01*

-X193387Y210782D01*

-Y201621D01*

-X192342Y201620D01*

-X192189Y201583D01*

-X192044Y201523D01*

-X191909Y201441D01*

-X191790Y201338D01*

-X191687Y201219D01*

-X191605Y201084D01*

-X191545Y200939D01*

-X191508Y200786D01*

-X191499Y200629D01*

-X191508Y193872D01*

-X191545Y193719D01*

-X191605Y193574D01*

-X191687Y193439D01*

-X191790Y193320D01*

-X191909Y193217D01*

-X192044Y193135D01*

-X192189Y193075D01*

-X192342Y193038D01*

-X192499Y193029D01*

-X193387Y193030D01*

-Y188394D01*

-X193264Y188319D01*

-X192749Y187879D01*

-X192309Y187364D01*

-X191956Y186787D01*

-X191697Y186162D01*

-X191539Y185504D01*

-X191486Y184829D01*

-X191539Y184154D01*

-X191697Y183496D01*

-X191956Y182871D01*

-X192309Y182294D01*

-X192749Y181779D01*

-X193264Y181339D01*

-X193387Y181264D01*

-Y178394D01*

-X193264Y178319D01*

-X192749Y177879D01*

-X192309Y177364D01*

-X191956Y176787D01*

-X191697Y176162D01*

-X191539Y175504D01*

-X191486Y174829D01*

-X191539Y174154D01*

-X191697Y173496D01*

-X191956Y172871D01*

-X192309Y172294D01*

-X192749Y171779D01*

-X193264Y171339D01*

-X193387Y171264D01*

-Y129305D01*

-X193108Y129283D01*

-X192832Y129217D01*

-X192570Y129109D01*

-X192329Y128961D01*

-X192113Y128777D01*

-X191929Y128561D01*

-X191781Y128320D01*

-X191673Y128058D01*

-X191607Y127782D01*

-X191584Y127500D01*

-X191607Y127218D01*

-X191673Y126942D01*

-X191781Y126680D01*

-X191929Y126439D01*

-X192113Y126223D01*

-X192329Y126039D01*

-X192570Y125891D01*

-X192832Y125783D01*

-X193108Y125717D01*

-X193387Y125695D01*

-Y97000D01*

-G37*

-G36*

-X191360D02*X185792D01*

-Y170516D01*

-X185799Y170516D01*

-X186474Y170569D01*

-X187132Y170727D01*

-X187757Y170986D01*

-X188334Y171339D01*

-X188849Y171779D01*

-X189289Y172294D01*

-X189642Y172871D01*

-X189901Y173496D01*

-X190059Y174154D01*

-X190099Y174829D01*

-X190059Y175504D01*

-X189901Y176162D01*

-X189642Y176787D01*

-X189289Y177364D01*

-X188849Y177879D01*

-X188334Y178319D01*

-X187757Y178672D01*

-X187132Y178931D01*

-X186474Y179089D01*

-X185799Y179142D01*

-X185792Y179142D01*

-Y180516D01*

-X185799Y180516D01*

-X186474Y180569D01*

-X187132Y180727D01*

-X187757Y180986D01*

-X188334Y181339D01*

-X188849Y181779D01*

-X189289Y182294D01*

-X189642Y182871D01*

-X189901Y183496D01*

-X190059Y184154D01*

-X190099Y184829D01*

-X190059Y185504D01*

-X189901Y186162D01*

-X189642Y186787D01*

-X189289Y187364D01*

-X188849Y187879D01*

-X188334Y188319D01*

-X187757Y188672D01*

-X187132Y188931D01*

-X186474Y189089D01*

-X185799Y189142D01*

-X185792Y189142D01*

-Y215733D01*

-X185999Y215783D01*

-X186261Y215891D01*

-X186502Y216039D01*

-X186718Y216223D01*

-X186902Y216439D01*

-X187050Y216680D01*

-X187158Y216942D01*

-X187224Y217218D01*

-X187241Y217500D01*

-X187224Y217782D01*

-X187158Y218058D01*

-X187050Y218320D01*

-X186902Y218561D01*

-X186718Y218777D01*

-X186502Y218961D01*

-X186261Y219109D01*

-X185999Y219217D01*

-X185792Y219267D01*

-Y226233D01*

-X185999Y226283D01*

-X186261Y226391D01*

-X186502Y226539D01*

-X186718Y226723D01*

-X186902Y226939D01*

-X187050Y227180D01*

-X187158Y227442D01*

-X187224Y227718D01*

-X187241Y228000D01*

-X187224Y228282D01*

-X187158Y228558D01*

-X187050Y228820D01*

-X186902Y229061D01*

-X186718Y229277D01*

-X186502Y229461D01*

-X186261Y229609D01*

-X185999Y229717D01*

-X185792Y229767D01*

-Y360516D01*

-X185799Y360516D01*

-X186474Y360569D01*

-X187132Y360727D01*

-X187757Y360986D01*

-X188334Y361339D01*

-X188849Y361779D01*

-X189289Y362294D01*

-X189642Y362871D01*

-X189901Y363496D01*

-X190059Y364154D01*

-X190099Y364829D01*

-X190059Y365504D01*

-X189901Y366162D01*

-X189642Y366787D01*

-X189289Y367364D01*

-X188849Y367879D01*

-X188334Y368319D01*

-X187757Y368672D01*

-X187132Y368931D01*

-X186474Y369089D01*

-X185799Y369142D01*

-X185792Y369142D01*

-Y370516D01*

-X185799Y370516D01*

-X186474Y370569D01*

-X187132Y370727D01*

-X187757Y370986D01*

-X188334Y371339D01*

-X188849Y371779D01*

-X189289Y372294D01*

-X189642Y372871D01*

-X189901Y373496D01*

-X190059Y374154D01*

-X190099Y374829D01*

-X190059Y375504D01*

-X189901Y376162D01*

-X189642Y376787D01*

-X189289Y377364D01*

-X188849Y377879D01*

-X188334Y378319D01*

-X187757Y378672D01*

-X187132Y378931D01*

-X186474Y379089D01*

-X185799Y379142D01*

-X185792Y379142D01*

-Y397000D01*

-X191360D01*

-Y346254D01*

-X191081Y346232D01*

-X190805Y346166D01*

-X190543Y346058D01*

-X190302Y345910D01*

-X190086Y345726D01*

-X189902Y345510D01*

-X189754Y345269D01*

-X189646Y345007D01*

-X189580Y344731D01*

-X189557Y344449D01*

-X189580Y344167D01*

-X189646Y343891D01*

-X189754Y343629D01*

-X189902Y343388D01*

-X190086Y343172D01*

-X190302Y342988D01*

-X190543Y342840D01*

-X190805Y342732D01*

-X191081Y342666D01*

-X191360Y342644D01*

-Y97000D01*

-G37*

-G36*

-X181938Y182913D02*X181956Y182871D01*

-X182309Y182294D01*

-X182749Y181779D01*

-X183264Y181339D01*

-X183841Y180986D01*

-X184466Y180727D01*

-X185124Y180569D01*

-X185792Y180516D01*

-Y179142D01*

-X185124Y179089D01*

-X184466Y178931D01*

-X183841Y178672D01*

-X183264Y178319D01*

-X182749Y177879D01*

-X182309Y177364D01*

-X181956Y176787D01*

-X181938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y362913D02*X181956Y362871D01*

-X182309Y362294D01*

-X182749Y361779D01*

-X183264Y361339D01*

-X183841Y360986D01*

-X184466Y360727D01*

-X185124Y360569D01*

-X185792Y360516D01*

-Y229767D01*

-X185723Y229783D01*

-X185441Y229806D01*

-X185159Y229783D01*

-X184883Y229717D01*

-X184621Y229609D01*

-X184380Y229461D01*

-X184164Y229277D01*

-X183980Y229061D01*

-X183832Y228820D01*

-X183724Y228558D01*

-X183658Y228282D01*

-X183635Y228000D01*

-X183658Y227718D01*

-X183724Y227442D01*

-X183832Y227180D01*

-X183980Y226939D01*

-X184164Y226723D01*

-X184380Y226539D01*

-X184621Y226391D01*

-X184883Y226283D01*

-X185159Y226217D01*

-X185441Y226194D01*

-X185723Y226217D01*

-X185792Y226233D01*

-Y219267D01*

-X185723Y219283D01*

-X185441Y219306D01*

-X185159Y219283D01*

-X184883Y219217D01*

-X184621Y219109D01*

-X184380Y218961D01*

-X184164Y218777D01*

-X183980Y218561D01*

-X183832Y218320D01*

-X183724Y218058D01*

-X183658Y217782D01*

-X183635Y217500D01*

-X183658Y217218D01*

-X183724Y216942D01*

-X183832Y216680D01*

-X183980Y216439D01*

-X184164Y216223D01*

-X184380Y216039D01*

-X184621Y215891D01*

-X184883Y215783D01*

-X185159Y215717D01*

-X185441Y215694D01*

-X185723Y215717D01*

-X185792Y215733D01*

-Y189142D01*

-X185124Y189089D01*

-X184466Y188931D01*

-X183841Y188672D01*

-X183264Y188319D01*

-X182749Y187879D01*

-X182309Y187364D01*

-X181956Y186787D01*

-X181938Y186745D01*

-Y256695D01*

-X181941Y256694D01*

-X182223Y256717D01*

-X182499Y256783D01*

-X182761Y256891D01*

-X183002Y257039D01*

-X183218Y257223D01*

-X183402Y257439D01*

-X183550Y257680D01*

-X183658Y257942D01*

-X183724Y258218D01*

-X183741Y258500D01*

-X183724Y258782D01*

-X183658Y259058D01*

-X183550Y259320D01*

-X183402Y259561D01*

-X183218Y259777D01*

-X183002Y259961D01*

-X182761Y260109D01*

-X182499Y260217D01*

-X182223Y260283D01*

-X181941Y260306D01*

-X181938Y260305D01*

-Y362913D01*

-G37*

-G36*

-Y372913D02*X181956Y372871D01*

-X182309Y372294D01*

-X182749Y371779D01*

-X183264Y371339D01*

-X183841Y370986D01*

-X184466Y370727D01*

-X185124Y370569D01*

-X185792Y370516D01*

-Y369142D01*

-X185124Y369089D01*

-X184466Y368931D01*

-X183841Y368672D01*

-X183264Y368319D01*

-X182749Y367879D01*

-X182309Y367364D01*

-X181956Y366787D01*

-X181938Y366745D01*

-Y372913D01*

-G37*

-G36*

-Y397000D02*X185792D01*

-Y379142D01*

-X185124Y379089D01*

-X184466Y378931D01*

-X183841Y378672D01*

-X183264Y378319D01*

-X182749Y377879D01*

-X182309Y377364D01*

-X181956Y376787D01*

-X181938Y376745D01*

-Y397000D01*

-G37*

-G36*

-X185792Y97000D02*X181938D01*

-Y172913D01*

-X181956Y172871D01*

-X182309Y172294D01*

-X182749Y171779D01*

-X183264Y171339D01*

-X183841Y170986D01*

-X184466Y170727D01*

-X185124Y170569D01*

-X185792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X181938D02*X178884D01*

-Y171820D01*

-X179289Y172294D01*

-X179642Y172871D01*

-X179901Y173496D01*

-X180059Y174154D01*

-X180099Y174829D01*

-X180059Y175504D01*

-X179901Y176162D01*

-X179642Y176787D01*

-X179289Y177364D01*

-X178884Y177838D01*

-Y181820D01*

-X179289Y182294D01*

-X179642Y182871D01*

-X179901Y183496D01*

-X180059Y184154D01*

-X180099Y184829D01*

-X180059Y185504D01*

-X179901Y186162D01*

-X179642Y186787D01*

-X179289Y187364D01*

-X178884Y187838D01*

-Y216418D01*

-X178902Y216439D01*

-X179050Y216680D01*

-X179158Y216942D01*

-X179224Y217218D01*

-X179241Y217500D01*

-X179224Y217782D01*

-X179158Y218058D01*

-X179050Y218320D01*

-X178902Y218561D01*

-X178884Y218582D01*

-Y226918D01*

-X178902Y226939D01*

-X179050Y227180D01*

-X179158Y227442D01*

-X179224Y227718D01*

-X179241Y228000D01*

-X179224Y228282D01*

-X179158Y228558D01*

-X179050Y228820D01*

-X178902Y229061D01*

-X178884Y229082D01*

-Y341013D01*

-X178887Y341012D01*

-X179169Y341035D01*

-X179445Y341101D01*

-X179707Y341209D01*

-X179948Y341357D01*

-X180164Y341541D01*

-X180348Y341757D01*

-X180496Y341998D01*

-X180604Y342260D01*

-X180670Y342536D01*

-X180687Y342818D01*

-X180670Y343100D01*

-X180604Y343376D01*

-X180496Y343638D01*

-X180348Y343879D01*

-X180164Y344095D01*

-X179948Y344279D01*

-X179707Y344427D01*

-X179445Y344535D01*

-X179169Y344601D01*

-X178887Y344624D01*

-X178884Y344623D01*

-Y361820D01*

-X179289Y362294D01*

-X179642Y362871D01*

-X179901Y363496D01*

-X180059Y364154D01*

-X180099Y364829D01*

-X180059Y365504D01*

-X179901Y366162D01*

-X179642Y366787D01*

-X179289Y367364D01*

-X178884Y367838D01*

-Y371820D01*

-X179289Y372294D01*

-X179642Y372871D01*

-X179901Y373496D01*

-X180059Y374154D01*

-X180099Y374829D01*

-X180059Y375504D01*

-X179901Y376162D01*

-X179642Y376787D01*

-X179289Y377364D01*

-X178884Y377838D01*

-Y397000D01*

-X181938D01*

-Y376745D01*

-X181697Y376162D01*

-X181539Y375504D01*

-X181486Y374829D01*

-X181539Y374154D01*

-X181697Y373496D01*

-X181938Y372913D01*

-Y366745D01*

-X181697Y366162D01*

-X181539Y365504D01*

-X181486Y364829D01*

-X181539Y364154D01*

-X181697Y363496D01*

-X181938Y362913D01*

-Y260305D01*

-X181659Y260283D01*

-X181383Y260217D01*

-X181121Y260109D01*

-X180880Y259961D01*

-X180664Y259777D01*

-X180480Y259561D01*

-X180332Y259320D01*

-X180224Y259058D01*

-X180158Y258782D01*

-X180135Y258500D01*

-X180158Y258218D01*

-X180224Y257942D01*

-X180332Y257680D01*

-X180480Y257439D01*

-X180664Y257223D01*

-X180880Y257039D01*

-X181121Y256891D01*

-X181383Y256783D01*

-X181659Y256717D01*

-X181938Y256695D01*

-Y186745D01*

-X181697Y186162D01*

-X181539Y185504D01*

-X181486Y184829D01*

-X181539Y184154D01*

-X181697Y183496D01*

-X181938Y182913D01*

-Y176745D01*

-X181697Y176162D01*

-X181539Y175504D01*

-X181486Y174829D01*

-X181539Y174154D01*

-X181697Y173496D01*

-X181938Y172913D01*

-Y97000D01*

-G37*

-G36*

-X178884Y377838D02*X178849Y377879D01*

-X178334Y378319D01*

-X177757Y378672D01*

-X177132Y378931D01*

-X176474Y379089D01*

-X175799Y379142D01*

-X175792Y379142D01*

-Y397000D01*

-X178884D01*

-Y377838D01*

-G37*

-G36*

-Y367838D02*X178849Y367879D01*

-X178334Y368319D01*

-X177757Y368672D01*

-X177132Y368931D01*

-X176474Y369089D01*

-X175799Y369142D01*

-X175792Y369142D01*

-Y370516D01*

-X175799Y370516D01*

-X176474Y370569D01*

-X177132Y370727D01*

-X177757Y370986D01*

-X178334Y371339D01*

-X178849Y371779D01*

-X178884Y371820D01*

-Y367838D01*

-G37*

-G36*

-Y229082D02*X178718Y229277D01*

-X178502Y229461D01*

-X178261Y229609D01*

-X177999Y229717D01*

-X177723Y229783D01*

-X177441Y229806D01*

-X177159Y229783D01*

-X176883Y229717D01*

-X176621Y229609D01*

-X176380Y229461D01*

-X176164Y229277D01*

-X175980Y229061D01*

-X175832Y228820D01*

-X175792Y228723D01*

-Y360516D01*

-X175799Y360516D01*

-X176474Y360569D01*

-X177132Y360727D01*

-X177757Y360986D01*

-X178334Y361339D01*

-X178849Y361779D01*

-X178884Y361820D01*

-Y344623D01*

-X178605Y344601D01*

-X178329Y344535D01*

-X178067Y344427D01*

-X177826Y344279D01*

-X177610Y344095D01*

-X177426Y343879D01*

-X177278Y343638D01*

-X177170Y343376D01*

-X177104Y343100D01*

-X177081Y342818D01*

-X177104Y342536D01*

-X177170Y342260D01*

-X177278Y341998D01*

-X177426Y341757D01*

-X177610Y341541D01*

-X177826Y341357D01*

-X178067Y341209D01*

-X178329Y341101D01*

-X178605Y341035D01*

-X178884Y341013D01*

-Y229082D01*

-G37*

-G36*

-Y218582D02*X178718Y218777D01*

-X178502Y218961D01*

-X178261Y219109D01*

-X177999Y219217D01*

-X177723Y219283D01*

-X177441Y219306D01*

-X177159Y219283D01*

-X176883Y219217D01*

-X176621Y219109D01*

-X176380Y218961D01*

-X176164Y218777D01*

-X175980Y218561D01*

-X175832Y218320D01*

-X175792Y218223D01*

-Y227277D01*

-X175832Y227180D01*

-X175980Y226939D01*

-X176164Y226723D01*

-X176380Y226539D01*

-X176621Y226391D01*

-X176883Y226283D01*

-X177159Y226217D01*

-X177441Y226194D01*

-X177723Y226217D01*

-X177999Y226283D01*

-X178261Y226391D01*

-X178502Y226539D01*

-X178718Y226723D01*

-X178884Y226918D01*

-Y218582D01*

-G37*

-G36*

-Y187838D02*X178849Y187879D01*

-X178334Y188319D01*

-X177757Y188672D01*

-X177132Y188931D01*

-X176474Y189089D01*

-X175799Y189142D01*

-X175792Y189142D01*

-Y216777D01*

-X175832Y216680D01*

-X175980Y216439D01*

-X176164Y216223D01*

-X176380Y216039D01*

-X176621Y215891D01*

-X176883Y215783D01*

-X177159Y215717D01*

-X177441Y215694D01*

-X177723Y215717D01*

-X177999Y215783D01*

-X178261Y215891D01*

-X178502Y216039D01*

-X178718Y216223D01*

-X178884Y216418D01*

-Y187838D01*

-G37*

-G36*

-Y177838D02*X178849Y177879D01*

-X178334Y178319D01*

-X177757Y178672D01*

-X177132Y178931D01*

-X176474Y179089D01*

-X175799Y179142D01*

-X175792Y179142D01*

-Y180516D01*

-X175799Y180516D01*

-X176474Y180569D01*

-X177132Y180727D01*

-X177757Y180986D01*

-X178334Y181339D01*

-X178849Y181779D01*

-X178884Y181820D01*

-Y177838D01*

-G37*

-G36*

-Y97000D02*X175792D01*

-Y170516D01*

-X175799Y170516D01*

-X176474Y170569D01*

-X177132Y170727D01*

-X177757Y170986D01*

-X178334Y171339D01*

-X178849Y171779D01*

-X178884Y171820D01*

-Y97000D01*

-G37*

-G36*

-X175792D02*X168729D01*

-Y171677D01*

-X168849Y171779D01*

-X169289Y172294D01*

-X169642Y172871D01*

-X169901Y173496D01*

-X170059Y174154D01*

-X170099Y174829D01*

-X170059Y175504D01*

-X169901Y176162D01*

-X169642Y176787D01*

-X169289Y177364D01*

-X168849Y177879D01*

-X168729Y177981D01*

-Y181677D01*

-X168849Y181779D01*

-X169289Y182294D01*

-X169642Y182871D01*

-X169901Y183496D01*

-X170059Y184154D01*

-X170099Y184829D01*

-X170059Y185504D01*

-X169901Y186162D01*

-X169642Y186787D01*

-X169289Y187364D01*

-X168849Y187879D01*

-X168729Y187981D01*

-Y199847D01*

-X168883Y199783D01*

-X169159Y199717D01*

-X169441Y199694D01*

-X169723Y199717D01*

-X169999Y199783D01*

-X170261Y199891D01*

-X170502Y200039D01*

-X170718Y200223D01*

-X170902Y200439D01*

-X171050Y200680D01*

-X171158Y200942D01*

-X171224Y201218D01*

-X171241Y201500D01*

-X171224Y201782D01*

-X171158Y202058D01*

-X171050Y202320D01*

-X170902Y202561D01*

-X170718Y202777D01*

-X170502Y202961D01*

-X170261Y203109D01*

-X169999Y203217D01*

-X169723Y203283D01*

-X169441Y203306D01*

-X169159Y203283D01*

-X168883Y203217D01*

-X168729Y203153D01*

-Y206847D01*

-X168883Y206783D01*

-X169159Y206717D01*

-X169441Y206694D01*

-X169723Y206717D01*

-X169999Y206783D01*

-X170261Y206891D01*

-X170502Y207039D01*

-X170718Y207223D01*

-X170902Y207439D01*

-X171050Y207680D01*

-X171158Y207942D01*

-X171224Y208218D01*

-X171241Y208500D01*

-X171224Y208782D01*

-X171158Y209058D01*

-X171050Y209320D01*

-X170902Y209561D01*

-X170718Y209777D01*

-X170502Y209961D01*

-X170261Y210109D01*

-X169999Y210217D01*

-X169723Y210283D01*

-X169441Y210306D01*

-X169159Y210283D01*

-X168883Y210217D01*

-X168729Y210153D01*

-Y212347D01*

-X168883Y212283D01*

-X169159Y212217D01*

-X169441Y212194D01*

-X169723Y212217D01*

-X169999Y212283D01*

-X170261Y212391D01*

-X170502Y212539D01*

-X170718Y212723D01*

-X170902Y212939D01*

-X171050Y213180D01*

-X171158Y213442D01*

-X171224Y213718D01*

-X171241Y214000D01*

-X171224Y214282D01*

-X171158Y214558D01*

-X171050Y214820D01*

-X170902Y215061D01*

-X170718Y215277D01*

-X170502Y215461D01*

-X170261Y215609D01*

-X169999Y215717D01*

-X169723Y215783D01*

-X169441Y215806D01*

-X169159Y215783D01*

-X168883Y215717D01*

-X168729Y215653D01*

-Y349028D01*

-X168732Y349027D01*

-X169014Y349050D01*

-X169290Y349116D01*

-X169552Y349224D01*

-X169793Y349372D01*

-X170009Y349556D01*

-X170193Y349772D01*

-X170341Y350013D01*

-X170449Y350275D01*

-X170515Y350551D01*

-X170532Y350833D01*

-X170515Y351115D01*

-X170449Y351391D01*

-X170341Y351653D01*

-X170193Y351894D01*

-X170009Y352110D01*

-X169793Y352294D01*

-X169552Y352442D01*

-X169290Y352550D01*

-X169014Y352616D01*

-X168732Y352639D01*

-X168729Y352638D01*

-Y361677D01*

-X168849Y361779D01*

-X169289Y362294D01*

-X169642Y362871D01*

-X169901Y363496D01*

-X170059Y364154D01*

-X170099Y364829D01*

-X170059Y365504D01*

-X169901Y366162D01*

-X169642Y366787D01*

-X169289Y367364D01*

-X168849Y367879D01*

-X168729Y367981D01*

-Y371677D01*

-X168849Y371779D01*

-X169289Y372294D01*

-X169642Y372871D01*

-X169901Y373496D01*

-X170059Y374154D01*

-X170099Y374829D01*

-X170059Y375504D01*

-X169901Y376162D01*

-X169642Y376787D01*

-X169289Y377364D01*

-X168849Y377879D01*

-X168729Y377981D01*

-Y397000D01*

-X175792D01*

-Y379142D01*

-X175124Y379089D01*

-X174466Y378931D01*

-X173841Y378672D01*

-X173264Y378319D01*

-X172749Y377879D01*

-X172309Y377364D01*

-X171956Y376787D01*

-X171697Y376162D01*

-X171539Y375504D01*

-X171486Y374829D01*

-X171539Y374154D01*

-X171697Y373496D01*

-X171956Y372871D01*

-X172309Y372294D01*

-X172749Y371779D01*

-X173264Y371339D01*

-X173841Y370986D01*

-X174466Y370727D01*

-X175124Y370569D01*

-X175792Y370516D01*

-Y369142D01*

-X175124Y369089D01*

-X174466Y368931D01*

-X173841Y368672D01*

-X173264Y368319D01*

-X172749Y367879D01*

-X172309Y367364D01*

-X171956Y366787D01*

-X171697Y366162D01*

-X171539Y365504D01*

-X171486Y364829D01*

-X171539Y364154D01*

-X171697Y363496D01*

-X171956Y362871D01*

-X172309Y362294D01*

-X172749Y361779D01*

-X173264Y361339D01*

-X173841Y360986D01*

-X174466Y360727D01*

-X175124Y360569D01*

-X175792Y360516D01*

-Y228723D01*

-X175724Y228558D01*

-X175658Y228282D01*

-X175635Y228000D01*

-X175658Y227718D01*

-X175724Y227442D01*

-X175792Y227277D01*

-Y218223D01*

-X175724Y218058D01*

-X175658Y217782D01*

-X175635Y217500D01*

-X175658Y217218D01*

-X175724Y216942D01*

-X175792Y216777D01*

-Y189142D01*

-X175124Y189089D01*

-X174466Y188931D01*

-X173841Y188672D01*

-X173264Y188319D01*

-X172749Y187879D01*

-X172309Y187364D01*

-X171956Y186787D01*

-X171697Y186162D01*

-X171539Y185504D01*

-X171486Y184829D01*

-X171539Y184154D01*

-X171697Y183496D01*

-X171956Y182871D01*

-X172309Y182294D01*

-X172749Y181779D01*

-X173264Y181339D01*

-X173841Y180986D01*

-X174466Y180727D01*

-X175124Y180569D01*

-X175792Y180516D01*

-Y179142D01*

-X175124Y179089D01*

-X174466Y178931D01*

-X173841Y178672D01*

-X173264Y178319D01*

-X172749Y177879D01*

-X172309Y177364D01*

-X171956Y176787D01*

-X171697Y176162D01*

-X171539Y175504D01*

-X171486Y174829D01*

-X171539Y174154D01*

-X171697Y173496D01*

-X171956Y172871D01*

-X172309Y172294D01*

-X172749Y171779D01*

-X173264Y171339D01*

-X173841Y170986D01*

-X174466Y170727D01*

-X175124Y170569D01*

-X175792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X168729Y377981D02*X168334Y378319D01*

-X167757Y378672D01*

-X167132Y378931D01*

-X166474Y379089D01*

-X165799Y379142D01*

-X165792Y379142D01*

-Y397000D01*

-X168729D01*

-Y377981D01*

-G37*

-G36*

-Y367981D02*X168334Y368319D01*

-X167757Y368672D01*

-X167132Y368931D01*

-X166474Y369089D01*

-X165799Y369142D01*

-X165792Y369142D01*

-Y370516D01*

-X165799Y370516D01*

-X166474Y370569D01*

-X167132Y370727D01*

-X167757Y370986D01*

-X168334Y371339D01*

-X168729Y371677D01*

-Y367981D01*

-G37*

-G36*

-Y187981D02*X168334Y188319D01*

-X167757Y188672D01*

-X167132Y188931D01*

-X166474Y189089D01*

-X165799Y189142D01*

-X165792Y189142D01*

-Y218706D01*

-X165941Y218694D01*

-X166223Y218717D01*

-X166499Y218783D01*

-X166761Y218891D01*

-X167002Y219039D01*

-X167218Y219223D01*

-X167402Y219439D01*

-X167550Y219680D01*

-X167658Y219942D01*

-X167724Y220218D01*

-X167741Y220500D01*

-X167724Y220782D01*

-X167658Y221058D01*

-X167550Y221320D01*

-X167402Y221561D01*

-X167218Y221777D01*

-X167002Y221961D01*

-X166761Y222109D01*

-X166499Y222217D01*

-X166223Y222283D01*

-X165941Y222306D01*

-X165792Y222294D01*

-Y224706D01*

-X165941Y224694D01*

-X166223Y224717D01*

-X166499Y224783D01*

-X166761Y224891D01*

-X167002Y225039D01*

-X167218Y225223D01*

-X167402Y225439D01*

-X167550Y225680D01*

-X167658Y225942D01*

-X167724Y226218D01*

-X167741Y226500D01*

-X167724Y226782D01*

-X167658Y227058D01*

-X167550Y227320D01*

-X167402Y227561D01*

-X167218Y227777D01*

-X167002Y227961D01*

-X166761Y228109D01*

-X166499Y228217D01*

-X166223Y228283D01*

-X165941Y228306D01*

-X165792Y228294D01*

-Y229206D01*

-X165941Y229194D01*

-X166223Y229217D01*

-X166499Y229283D01*

-X166761Y229391D01*

-X167002Y229539D01*

-X167218Y229723D01*

-X167402Y229939D01*

-X167550Y230180D01*

-X167658Y230442D01*

-X167724Y230718D01*

-X167741Y231000D01*

-X167724Y231282D01*

-X167658Y231558D01*

-X167550Y231820D01*

-X167402Y232061D01*

-X167218Y232277D01*

-X167002Y232461D01*

-X166761Y232609D01*

-X166499Y232717D01*

-X166223Y232783D01*

-X165941Y232806D01*

-X165792Y232794D01*

-Y360516D01*

-X165799Y360516D01*

-X166474Y360569D01*

-X167132Y360727D01*

-X167757Y360986D01*

-X168334Y361339D01*

-X168729Y361677D01*

-Y352638D01*

-X168450Y352616D01*

-X168174Y352550D01*

-X167912Y352442D01*

-X167671Y352294D01*

-X167455Y352110D01*

-X167271Y351894D01*

-X167123Y351653D01*

-X167015Y351391D01*

-X166949Y351115D01*

-X166926Y350833D01*

-X166949Y350551D01*

-X167015Y350275D01*

-X167123Y350013D01*

-X167271Y349772D01*

-X167455Y349556D01*

-X167671Y349372D01*

-X167912Y349224D01*

-X168174Y349116D01*

-X168450Y349050D01*

-X168729Y349028D01*

-Y215653D01*

-X168621Y215609D01*

-X168380Y215461D01*

-X168164Y215277D01*

-X167980Y215061D01*

-X167832Y214820D01*

-X167724Y214558D01*

-X167658Y214282D01*

-X167635Y214000D01*

-X167658Y213718D01*

-X167724Y213442D01*

-X167832Y213180D01*

-X167980Y212939D01*

-X168164Y212723D01*

-X168380Y212539D01*

-X168621Y212391D01*

-X168729Y212347D01*

-Y210153D01*

-X168621Y210109D01*

-X168380Y209961D01*

-X168164Y209777D01*

-X167980Y209561D01*

-X167832Y209320D01*

-X167724Y209058D01*

-X167658Y208782D01*

-X167635Y208500D01*

-X167658Y208218D01*

-X167724Y207942D01*

-X167832Y207680D01*

-X167980Y207439D01*

-X168164Y207223D01*

-X168380Y207039D01*

-X168621Y206891D01*

-X168729Y206847D01*

-Y203153D01*

-X168621Y203109D01*

-X168380Y202961D01*

-X168164Y202777D01*

-X167980Y202561D01*

-X167832Y202320D01*

-X167724Y202058D01*

-X167658Y201782D01*

-X167635Y201500D01*

-X167658Y201218D01*

-X167724Y200942D01*

-X167832Y200680D01*

-X167980Y200439D01*

-X168164Y200223D01*

-X168380Y200039D01*

-X168621Y199891D01*

-X168729Y199847D01*

-Y187981D01*

-G37*

-G36*

-Y177981D02*X168334Y178319D01*

-X167757Y178672D01*

-X167132Y178931D01*

-X166474Y179089D01*

-X165799Y179142D01*

-X165792Y179142D01*

-Y180516D01*

-X165799Y180516D01*

-X166474Y180569D01*

-X167132Y180727D01*

-X167757Y180986D01*

-X168334Y181339D01*

-X168729Y181677D01*

-Y177981D01*

-G37*

-G36*

-Y97000D02*X165792D01*

-Y170516D01*

-X165799Y170516D01*

-X166474Y170569D01*

-X167132Y170727D01*

-X167757Y170986D01*

-X168334Y171339D01*

-X168729Y171677D01*

-Y97000D01*

-G37*

-G36*

-X163938Y180946D02*X164466Y180727D01*

-X165124Y180569D01*

-X165792Y180516D01*

-Y179142D01*

-X165124Y179089D01*

-X164466Y178931D01*

-X163938Y178712D01*

-Y180946D01*

-G37*

-G36*

-Y360946D02*X164466Y360727D01*

-X165124Y360569D01*

-X165792Y360516D01*

-Y232794D01*

-X165659Y232783D01*

-X165383Y232717D01*

-X165121Y232609D01*

-X164880Y232461D01*

-X164664Y232277D01*

-X164480Y232061D01*

-X164332Y231820D01*

-X164224Y231558D01*

-X164158Y231282D01*

-X164135Y231000D01*

-X164158Y230718D01*

-X164224Y230442D01*

-X164332Y230180D01*

-X164480Y229939D01*

-X164664Y229723D01*

-X164880Y229539D01*

-X165121Y229391D01*

-X165383Y229283D01*

-X165659Y229217D01*

-X165792Y229206D01*

-Y228294D01*

-X165659Y228283D01*

-X165383Y228217D01*

-X165121Y228109D01*

-X164880Y227961D01*

-X164664Y227777D01*

-X164480Y227561D01*

-X164332Y227320D01*

-X164224Y227058D01*

-X164158Y226782D01*

-X164135Y226500D01*

-X164158Y226218D01*

-X164224Y225942D01*

-X164332Y225680D01*

-X164480Y225439D01*

-X164664Y225223D01*

-X164880Y225039D01*

-X165121Y224891D01*

-X165383Y224783D01*

-X165659Y224717D01*

-X165792Y224706D01*

-Y222294D01*

-X165659Y222283D01*

-X165383Y222217D01*

-X165121Y222109D01*

-X164880Y221961D01*

-X164664Y221777D01*

-X164480Y221561D01*

-X164332Y221320D01*

-X164224Y221058D01*

-X164158Y220782D01*

-X164135Y220500D01*

-X164158Y220218D01*

-X164224Y219942D01*

-X164332Y219680D01*

-X164480Y219439D01*

-X164664Y219223D01*

-X164880Y219039D01*

-X165121Y218891D01*

-X165383Y218783D01*

-X165659Y218717D01*

-X165792Y218706D01*

-Y189142D01*

-X165124Y189089D01*

-X164466Y188931D01*

-X163938Y188712D01*

-Y241498D01*

-X164050Y241680D01*

-X164158Y241942D01*

-X164224Y242218D01*

-X164241Y242500D01*

-X164224Y242782D01*

-X164158Y243058D01*

-X164050Y243320D01*

-X163938Y243502D01*

-Y247498D01*

-X164050Y247680D01*

-X164158Y247942D01*

-X164224Y248218D01*

-X164241Y248500D01*

-X164224Y248782D01*

-X164158Y249058D01*

-X164050Y249320D01*

-X163938Y249502D01*

-Y261498D01*

-X164050Y261680D01*

-X164158Y261942D01*

-X164224Y262218D01*

-X164241Y262500D01*

-X164224Y262782D01*

-X164158Y263058D01*

-X164050Y263320D01*

-X163938Y263502D01*

-Y267000D01*

-X164002Y267039D01*

-X164218Y267223D01*

-X164402Y267439D01*

-X164550Y267680D01*

-X164658Y267942D01*

-X164724Y268218D01*

-X164741Y268500D01*

-X164724Y268782D01*

-X164658Y269058D01*

-X164550Y269320D01*

-X164402Y269561D01*

-X164218Y269777D01*

-X164002Y269961D01*

-X163938Y270000D01*

-Y273000D01*

-X164002Y273039D01*

-X164218Y273223D01*

-X164402Y273439D01*

-X164550Y273680D01*

-X164658Y273942D01*

-X164724Y274218D01*

-X164741Y274500D01*

-X164724Y274782D01*

-X164658Y275058D01*

-X164550Y275320D01*

-X164402Y275561D01*

-X164218Y275777D01*

-X164002Y275961D01*

-X163938Y276000D01*

-Y360946D01*

-G37*

-G36*

-Y370946D02*X164466Y370727D01*

-X165124Y370569D01*

-X165792Y370516D01*

-Y369142D01*

-X165124Y369089D01*

-X164466Y368931D01*

-X163938Y368712D01*

-Y370946D01*

-G37*

-G36*

-Y397000D02*X165792D01*

-Y379142D01*

-X165124Y379089D01*

-X164466Y378931D01*

-X163938Y378712D01*

-Y397000D01*

-G37*

-G36*

-X165792Y97000D02*X163938D01*

-Y125695D01*

-X163941Y125694D01*

-X164223Y125717D01*

-X164499Y125783D01*

-X164761Y125891D01*

-X165002Y126039D01*

-X165218Y126223D01*

-X165402Y126439D01*

-X165550Y126680D01*

-X165658Y126942D01*

-X165724Y127218D01*

-X165741Y127500D01*

-X165724Y127782D01*

-X165658Y128058D01*

-X165550Y128320D01*

-X165402Y128561D01*

-X165218Y128777D01*

-X165002Y128961D01*

-X164761Y129109D01*

-X164499Y129217D01*

-X164223Y129283D01*

-X163941Y129306D01*

-X163938Y129305D01*

-Y170946D01*

-X164466Y170727D01*

-X165124Y170569D01*

-X165792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X161938Y182913D02*X161956Y182871D01*

-X162309Y182294D01*

-X162749Y181779D01*

-X163264Y181339D01*

-X163841Y180986D01*

-X163938Y180946D01*

-Y178712D01*

-X163841Y178672D01*

-X163264Y178319D01*

-X162749Y177879D01*

-X162309Y177364D01*

-X161956Y176787D01*

-X161938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y240770D02*X162159Y240717D01*

-X162441Y240694D01*

-X162723Y240717D01*

-X162999Y240783D01*

-X163261Y240891D01*

-X163502Y241039D01*

-X163718Y241223D01*

-X163902Y241439D01*

-X163938Y241498D01*

-Y188712D01*

-X163841Y188672D01*

-X163264Y188319D01*

-X162749Y187879D01*

-X162309Y187364D01*

-X161956Y186787D01*

-X161938Y186745D01*

-Y240770D01*

-G37*

-G36*

-Y246770D02*X162159Y246717D01*

-X162441Y246694D01*

-X162723Y246717D01*

-X162999Y246783D01*

-X163261Y246891D01*

-X163502Y247039D01*

-X163718Y247223D01*

-X163902Y247439D01*

-X163938Y247498D01*

-Y243502D01*

-X163902Y243561D01*

-X163718Y243777D01*

-X163502Y243961D01*

-X163261Y244109D01*

-X162999Y244217D01*

-X162723Y244283D01*

-X162441Y244306D01*

-X162159Y244283D01*

-X161938Y244230D01*

-Y246770D01*

-G37*

-G36*

-Y260770D02*X162159Y260717D01*

-X162441Y260694D01*

-X162723Y260717D01*

-X162999Y260783D01*

-X163261Y260891D01*

-X163502Y261039D01*

-X163718Y261223D01*

-X163902Y261439D01*

-X163938Y261498D01*

-Y249502D01*

-X163902Y249561D01*

-X163718Y249777D01*

-X163502Y249961D01*

-X163261Y250109D01*

-X162999Y250217D01*

-X162723Y250283D01*

-X162441Y250306D01*

-X162159Y250283D01*

-X161938Y250230D01*

-Y253195D01*

-X161941Y253194D01*

-X162223Y253217D01*

-X162499Y253283D01*

-X162761Y253391D01*

-X163002Y253539D01*

-X163218Y253723D01*

-X163402Y253939D01*

-X163550Y254180D01*

-X163658Y254442D01*

-X163724Y254718D01*

-X163741Y255000D01*

-X163724Y255282D01*

-X163658Y255558D01*

-X163550Y255820D01*

-X163402Y256061D01*

-X163218Y256277D01*

-X163002Y256461D01*

-X162761Y256609D01*

-X162499Y256717D01*

-X162223Y256783D01*

-X161941Y256806D01*

-X161938Y256805D01*

-Y260770D01*

-G37*

-G36*

-Y267003D02*X162121Y266891D01*

-X162383Y266783D01*

-X162659Y266717D01*

-X162941Y266694D01*

-X163223Y266717D01*

-X163499Y266783D01*

-X163761Y266891D01*

-X163938Y267000D01*

-Y263502D01*

-X163902Y263561D01*

-X163718Y263777D01*

-X163502Y263961D01*

-X163261Y264109D01*

-X162999Y264217D01*

-X162723Y264283D01*

-X162441Y264306D01*

-X162159Y264283D01*

-X161938Y264230D01*

-Y267003D01*

-G37*

-G36*

-Y273003D02*X162121Y272891D01*

-X162383Y272783D01*

-X162659Y272717D01*

-X162941Y272694D01*

-X163223Y272717D01*

-X163499Y272783D01*

-X163761Y272891D01*

-X163938Y273000D01*

-Y270000D01*

-X163761Y270109D01*

-X163499Y270217D01*

-X163223Y270283D01*

-X162941Y270306D01*

-X162659Y270283D01*

-X162383Y270217D01*

-X162121Y270109D01*

-X161938Y269997D01*

-Y273003D01*

-G37*

-G36*

-Y362913D02*X161956Y362871D01*

-X162309Y362294D01*

-X162749Y361779D01*

-X163264Y361339D01*

-X163841Y360986D01*

-X163938Y360946D01*

-Y276000D01*

-X163761Y276109D01*

-X163499Y276217D01*

-X163223Y276283D01*

-X162941Y276306D01*

-X162659Y276283D01*

-X162383Y276217D01*

-X162121Y276109D01*

-X161938Y275997D01*

-Y362913D01*

-G37*

-G36*

-Y372913D02*X161956Y372871D01*

-X162309Y372294D01*

-X162749Y371779D01*

-X163264Y371339D01*

-X163841Y370986D01*

-X163938Y370946D01*

-Y368712D01*

-X163841Y368672D01*

-X163264Y368319D01*

-X162749Y367879D01*

-X162309Y367364D01*

-X161956Y366787D01*

-X161938Y366745D01*

-Y372913D01*

-G37*

-G36*

-Y397000D02*X163938D01*

-Y378712D01*

-X163841Y378672D01*

-X163264Y378319D01*

-X162749Y377879D01*

-X162309Y377364D01*

-X161956Y376787D01*

-X161938Y376745D01*

-Y397000D01*

-G37*

-G36*

-X163938Y97000D02*X161938D01*

-Y172913D01*

-X161956Y172871D01*

-X162309Y172294D01*

-X162749Y171779D01*

-X163264Y171339D01*

-X163841Y170986D01*

-X163938Y170946D01*

-Y129305D01*

-X163659Y129283D01*

-X163383Y129217D01*

-X163121Y129109D01*

-X162880Y128961D01*

-X162664Y128777D01*

-X162480Y128561D01*

-X162332Y128320D01*

-X162224Y128058D01*

-X162158Y127782D01*

-X162135Y127500D01*

-X162158Y127218D01*

-X162224Y126942D01*

-X162332Y126680D01*

-X162480Y126439D01*

-X162664Y126223D01*

-X162880Y126039D01*

-X163121Y125891D01*

-X163383Y125783D01*

-X163659Y125717D01*

-X163938Y125695D01*

-Y97000D01*

-G37*

-G36*

-X161938D02*X158438D01*

-Y171428D01*

-X158849Y171779D01*

-X159289Y172294D01*

-X159642Y172871D01*

-X159901Y173496D01*

-X160059Y174154D01*

-X160099Y174829D01*

-X160059Y175504D01*

-X159901Y176162D01*

-X159642Y176787D01*

-X159289Y177364D01*

-X158849Y177879D01*

-X158438Y178230D01*

-Y181428D01*

-X158849Y181779D01*

-X159289Y182294D01*

-X159642Y182871D01*

-X159901Y183496D01*

-X160059Y184154D01*

-X160099Y184829D01*

-X160059Y185504D01*

-X159901Y186162D01*

-X159642Y186787D01*

-X159289Y187364D01*

-X158849Y187879D01*

-X158438Y188230D01*

-Y322024D01*

-X158441Y322023D01*

-X158723Y322046D01*

-X158999Y322112D01*

-X159261Y322220D01*

-X159502Y322368D01*

-X159718Y322552D01*

-X159902Y322768D01*

-X160050Y323009D01*

-X160158Y323271D01*

-X160224Y323547D01*

-X160241Y323829D01*

-X160224Y324111D01*

-X160158Y324387D01*

-X160050Y324649D01*

-X159902Y324890D01*

-X159718Y325106D01*

-X159649Y325164D01*

-X159718Y325223D01*

-X159902Y325439D01*

-X160050Y325680D01*

-X160158Y325942D01*

-X160224Y326218D01*

-X160241Y326500D01*

-X160224Y326782D01*

-X160158Y327058D01*

-X160050Y327320D01*

-X159902Y327561D01*

-X159814Y327664D01*

-X159902Y327768D01*

-X160050Y328009D01*

-X160158Y328271D01*

-X160224Y328547D01*

-X160241Y328829D01*

-X160224Y329111D01*

-X160158Y329387D01*

-X160050Y329649D01*

-X159902Y329890D01*

-X159718Y330106D01*

-X159502Y330290D01*

-X159261Y330438D01*

-X158999Y330546D01*

-X158723Y330612D01*

-X158441Y330635D01*

-X158438Y330634D01*

-Y361428D01*

-X158849Y361779D01*

-X159289Y362294D01*

-X159642Y362871D01*

-X159901Y363496D01*

-X160059Y364154D01*

-X160099Y364829D01*

-X160059Y365504D01*

-X159901Y366162D01*

-X159642Y366787D01*

-X159289Y367364D01*

-X158849Y367879D01*

-X158438Y368230D01*

-Y371428D01*

-X158849Y371779D01*

-X159289Y372294D01*

-X159642Y372871D01*

-X159901Y373496D01*

-X160059Y374154D01*

-X160099Y374829D01*

-X160059Y375504D01*

-X159901Y376162D01*

-X159642Y376787D01*

-X159289Y377364D01*

-X158849Y377879D01*

-X158438Y378230D01*

-Y397000D01*

-X161938D01*

-Y376745D01*

-X161697Y376162D01*

-X161539Y375504D01*

-X161486Y374829D01*

-X161539Y374154D01*

-X161697Y373496D01*

-X161938Y372913D01*

-Y366745D01*

-X161697Y366162D01*

-X161539Y365504D01*

-X161486Y364829D01*

-X161539Y364154D01*

-X161697Y363496D01*

-X161938Y362913D01*

-Y275997D01*

-X161880Y275961D01*

-X161664Y275777D01*

-X161480Y275561D01*

-X161332Y275320D01*

-X161224Y275058D01*

-X161158Y274782D01*

-X161135Y274500D01*

-X161158Y274218D01*

-X161224Y273942D01*

-X161332Y273680D01*

-X161480Y273439D01*

-X161664Y273223D01*

-X161880Y273039D01*

-X161938Y273003D01*

-Y269997D01*

-X161880Y269961D01*

-X161664Y269777D01*

-X161480Y269561D01*

-X161332Y269320D01*

-X161224Y269058D01*

-X161158Y268782D01*

-X161135Y268500D01*

-X161158Y268218D01*

-X161224Y267942D01*

-X161332Y267680D01*

-X161480Y267439D01*

-X161664Y267223D01*

-X161880Y267039D01*

-X161938Y267003D01*

-Y264230D01*

-X161883Y264217D01*

-X161621Y264109D01*

-X161380Y263961D01*

-X161164Y263777D01*

-X160980Y263561D01*

-X160832Y263320D01*

-X160724Y263058D01*

-X160658Y262782D01*

-X160635Y262500D01*

-X160658Y262218D01*

-X160724Y261942D01*

-X160832Y261680D01*

-X160980Y261439D01*

-X161164Y261223D01*

-X161380Y261039D01*

-X161621Y260891D01*

-X161883Y260783D01*

-X161938Y260770D01*

-Y256805D01*

-X161659Y256783D01*

-X161383Y256717D01*

-X161121Y256609D01*

-X160880Y256461D01*

-X160664Y256277D01*

-X160480Y256061D01*

-X160332Y255820D01*

-X160224Y255558D01*

-X160158Y255282D01*

-X160135Y255000D01*

-X160158Y254718D01*

-X160224Y254442D01*

-X160332Y254180D01*

-X160480Y253939D01*

-X160664Y253723D01*

-X160880Y253539D01*

-X161121Y253391D01*

-X161383Y253283D01*

-X161659Y253217D01*

-X161938Y253195D01*

-Y250230D01*

-X161883Y250217D01*

-X161621Y250109D01*

-X161380Y249961D01*

-X161164Y249777D01*

-X160980Y249561D01*

-X160832Y249320D01*

-X160724Y249058D01*

-X160658Y248782D01*

-X160635Y248500D01*

-X160658Y248218D01*

-X160724Y247942D01*

-X160832Y247680D01*

-X160980Y247439D01*

-X161164Y247223D01*

-X161380Y247039D01*

-X161621Y246891D01*

-X161883Y246783D01*

-X161938Y246770D01*

-Y244230D01*

-X161883Y244217D01*

-X161621Y244109D01*

-X161380Y243961D01*

-X161164Y243777D01*

-X160980Y243561D01*

-X160832Y243320D01*

-X160724Y243058D01*

-X160658Y242782D01*

-X160635Y242500D01*

-X160658Y242218D01*

-X160724Y241942D01*

-X160832Y241680D01*

-X160980Y241439D01*

-X161164Y241223D01*

-X161380Y241039D01*

-X161621Y240891D01*

-X161883Y240783D01*

-X161938Y240770D01*

-Y186745D01*

-X161697Y186162D01*

-X161539Y185504D01*

-X161486Y184829D01*

-X161539Y184154D01*

-X161697Y183496D01*

-X161938Y182913D01*

-Y176745D01*

-X161697Y176162D01*

-X161539Y175504D01*

-X161486Y174829D01*

-X161539Y174154D01*

-X161697Y173496D01*

-X161938Y172913D01*

-Y97000D01*

-G37*

-G36*

-X158438Y378230D02*X158334Y378319D01*

-X157757Y378672D01*

-X157132Y378931D01*

-X156474Y379089D01*

-X155799Y379142D01*

-X155792Y379142D01*

-Y397000D01*

-X158438D01*

-Y378230D01*

-G37*

-G36*

-Y368230D02*X158334Y368319D01*

-X157757Y368672D01*

-X157132Y368931D01*

-X156474Y369089D01*

-X155799Y369142D01*

-X155792Y369142D01*

-Y370516D01*

-X155799Y370516D01*

-X156474Y370569D01*

-X157132Y370727D01*

-X157757Y370986D01*

-X158334Y371339D01*

-X158438Y371428D01*

-Y368230D01*

-G37*

-G36*

-Y188230D02*X158334Y188319D01*

-X157757Y188672D01*

-X157132Y188931D01*

-X156474Y189089D01*

-X155799Y189142D01*

-X155792Y189142D01*

-Y343911D01*

-X156002Y344039D01*

-X156218Y344223D01*

-X156402Y344439D01*

-X156550Y344680D01*

-X156658Y344942D01*

-X156724Y345218D01*

-X156741Y345500D01*

-X156724Y345782D01*

-X156658Y346058D01*

-X156550Y346320D01*

-X156402Y346561D01*

-X156218Y346777D01*

-X156002Y346961D01*

-X155792Y347089D01*

-Y360516D01*

-X155799Y360516D01*

-X156474Y360569D01*

-X157132Y360727D01*

-X157757Y360986D01*

-X158334Y361339D01*

-X158438Y361428D01*

-Y330634D01*

-X158159Y330612D01*

-X157883Y330546D01*

-X157621Y330438D01*

-X157380Y330290D01*

-X157164Y330106D01*

-X156980Y329890D01*

-X156832Y329649D01*

-X156724Y329387D01*

-X156658Y329111D01*

-X156635Y328829D01*

-X156658Y328547D01*

-X156724Y328271D01*

-X156832Y328009D01*

-X156980Y327768D01*

-X157068Y327664D01*

-X156980Y327561D01*

-X156832Y327320D01*

-X156724Y327058D01*

-X156658Y326782D01*

-X156635Y326500D01*

-X156658Y326218D01*

-X156724Y325942D01*

-X156832Y325680D01*

-X156980Y325439D01*

-X157164Y325223D01*

-X157233Y325164D01*

-X157164Y325106D01*

-X156980Y324890D01*

-X156832Y324649D01*

-X156724Y324387D01*

-X156658Y324111D01*

-X156635Y323829D01*

-X156658Y323547D01*

-X156724Y323271D01*

-X156832Y323009D01*

-X156980Y322768D01*

-X157164Y322552D01*

-X157380Y322368D01*

-X157621Y322220D01*

-X157883Y322112D01*

-X158159Y322046D01*

-X158438Y322024D01*

-Y188230D01*

-G37*

-G36*

-Y178230D02*X158334Y178319D01*

-X157757Y178672D01*

-X157132Y178931D01*

-X156474Y179089D01*

-X155799Y179142D01*

-X155792Y179142D01*

-Y180516D01*

-X155799Y180516D01*

-X156474Y180569D01*

-X157132Y180727D01*

-X157757Y180986D01*

-X158334Y181339D01*

-X158438Y181428D01*

-Y178230D01*

-G37*

-G36*

-Y97000D02*X155792D01*

-Y170516D01*

-X155799Y170516D01*

-X156474Y170569D01*

-X157132Y170727D01*

-X157757Y170986D01*

-X158334Y171339D01*

-X158438Y171428D01*

-Y97000D01*

-G37*

-G36*

-X153938Y180946D02*X154466Y180727D01*

-X155124Y180569D01*

-X155792Y180516D01*

-Y179142D01*

-X155124Y179089D01*

-X154466Y178931D01*

-X153938Y178712D01*

-Y180946D01*

-G37*

-G36*

-Y344003D02*X154121Y343891D01*

-X154383Y343783D01*

-X154659Y343717D01*

-X154941Y343694D01*

-X155223Y343717D01*

-X155499Y343783D01*

-X155761Y343891D01*

-X155792Y343911D01*

-Y189142D01*

-X155124Y189089D01*

-X154466Y188931D01*

-X153938Y188712D01*

-Y336195D01*

-X153941Y336194D01*

-X154223Y336217D01*

-X154499Y336283D01*

-X154761Y336391D01*

-X155002Y336539D01*

-X155218Y336723D01*

-X155402Y336939D01*

-X155550Y337180D01*

-X155658Y337442D01*

-X155724Y337718D01*

-X155741Y338000D01*

-X155724Y338282D01*

-X155658Y338558D01*

-X155550Y338820D01*

-X155402Y339061D01*

-X155218Y339277D01*

-X155002Y339461D01*

-X154761Y339609D01*

-X154499Y339717D01*

-X154223Y339783D01*

-X153941Y339806D01*

-X153938Y339805D01*

-Y344003D01*

-G37*

-G36*

-Y360946D02*X154466Y360727D01*

-X155124Y360569D01*

-X155792Y360516D01*

-Y347089D01*

-X155761Y347109D01*

-X155499Y347217D01*

-X155223Y347283D01*

-X154941Y347306D01*

-X154659Y347283D01*

-X154383Y347217D01*

-X154121Y347109D01*

-X153938Y346997D01*

-Y360946D01*

-G37*

-G36*

-Y370946D02*X154466Y370727D01*

-X155124Y370569D01*

-X155792Y370516D01*

-Y369142D01*

-X155124Y369089D01*

-X154466Y368931D01*

-X153938Y368712D01*

-Y370946D01*

-G37*

-G36*

-Y397000D02*X155792D01*

-Y379142D01*

-X155124Y379089D01*

-X154466Y378931D01*

-X153938Y378712D01*

-Y397000D01*

-G37*

-G36*

-X155792Y97000D02*X153938D01*

-Y120498D01*

-X154050Y120680D01*

-X154158Y120942D01*

-X154224Y121218D01*

-X154241Y121500D01*

-X154224Y121782D01*

-X154158Y122058D01*

-X154050Y122320D01*

-X153938Y122502D01*

-Y170946D01*

-X154466Y170727D01*

-X155124Y170569D01*

-X155792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X151938Y172913D02*X151956Y172871D01*

-X152309Y172294D01*

-X152749Y171779D01*

-X153264Y171339D01*

-X153841Y170986D01*

-X153938Y170946D01*

-Y122502D01*

-X153902Y122561D01*

-X153718Y122777D01*

-X153502Y122961D01*

-X153261Y123109D01*

-X152999Y123217D01*

-X152723Y123283D01*

-X152441Y123306D01*

-X152159Y123283D01*

-X151938Y123230D01*

-Y130195D01*

-X151941Y130194D01*

-X152223Y130217D01*

-X152499Y130283D01*

-X152761Y130391D01*

-X153002Y130539D01*

-X153218Y130723D01*

-X153402Y130939D01*

-X153550Y131180D01*

-X153658Y131442D01*

-X153724Y131718D01*

-X153741Y132000D01*

-X153724Y132282D01*

-X153658Y132558D01*

-X153550Y132820D01*

-X153402Y133061D01*

-X153218Y133277D01*

-X153002Y133461D01*

-X152761Y133609D01*

-X152499Y133717D01*

-X152223Y133783D01*

-X151941Y133806D01*

-X151938Y133805D01*

-Y172913D01*

-G37*

-G36*

-Y182913D02*X151956Y182871D01*

-X152309Y182294D01*

-X152749Y181779D01*

-X153264Y181339D01*

-X153841Y180986D01*

-X153938Y180946D01*

-Y178712D01*

-X153841Y178672D01*

-X153264Y178319D01*

-X152749Y177879D01*

-X152309Y177364D01*

-X151956Y176787D01*

-X151938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y362913D02*X151956Y362871D01*

-X152309Y362294D01*

-X152749Y361779D01*

-X153264Y361339D01*

-X153841Y360986D01*

-X153938Y360946D01*

-Y346997D01*

-X153880Y346961D01*

-X153664Y346777D01*

-X153480Y346561D01*

-X153332Y346320D01*

-X153224Y346058D01*

-X153158Y345782D01*

-X153135Y345500D01*

-X153158Y345218D01*

-X153224Y344942D01*

-X153332Y344680D01*

-X153480Y344439D01*

-X153664Y344223D01*

-X153880Y344039D01*

-X153938Y344003D01*

-Y339805D01*

-X153659Y339783D01*

-X153383Y339717D01*

-X153121Y339609D01*

-X152880Y339461D01*

-X152664Y339277D01*

-X152480Y339061D01*

-X152332Y338820D01*

-X152224Y338558D01*

-X152158Y338282D01*

-X152135Y338000D01*

-X152158Y337718D01*

-X152224Y337442D01*

-X152332Y337180D01*

-X152480Y336939D01*

-X152664Y336723D01*

-X152880Y336539D01*

-X153121Y336391D01*

-X153383Y336283D01*

-X153659Y336217D01*

-X153938Y336195D01*

-Y188712D01*

-X153841Y188672D01*

-X153264Y188319D01*

-X152749Y187879D01*

-X152309Y187364D01*

-X151956Y186787D01*

-X151938Y186745D01*

-Y362913D01*

-G37*

-G36*

-Y372913D02*X151956Y372871D01*

-X152309Y372294D01*

-X152749Y371779D01*

-X153264Y371339D01*

-X153841Y370986D01*

-X153938Y370946D01*

-Y368712D01*

-X153841Y368672D01*

-X153264Y368319D01*

-X152749Y367879D01*

-X152309Y367364D01*

-X151956Y366787D01*

-X151938Y366745D01*

-Y372913D01*

-G37*

-G36*

-Y397000D02*X153938D01*

-Y378712D01*

-X153841Y378672D01*

-X153264Y378319D01*

-X152749Y377879D01*

-X152309Y377364D01*

-X151956Y376787D01*

-X151938Y376745D01*

-Y397000D01*

-G37*

-G36*

-X153938Y97000D02*X151938D01*

-Y119770D01*

-X152159Y119717D01*

-X152441Y119694D01*

-X152723Y119717D01*

-X152999Y119783D01*

-X153261Y119891D01*

-X153502Y120039D01*

-X153718Y120223D01*

-X153902Y120439D01*

-X153938Y120498D01*

-Y97000D01*

-G37*

-G36*

-X151938D02*X149438D01*

-Y172538D01*

-X149642Y172871D01*

-X149901Y173496D01*

-X150059Y174154D01*

-X150099Y174829D01*

-X150059Y175504D01*

-X149901Y176162D01*

-X149642Y176787D01*

-X149438Y177120D01*

-Y182538D01*

-X149642Y182871D01*

-X149901Y183496D01*

-X150059Y184154D01*

-X150099Y184829D01*

-X150059Y185504D01*

-X149901Y186162D01*

-X149642Y186787D01*

-X149438Y187120D01*

-Y347695D01*

-X149441Y347694D01*

-X149723Y347717D01*

-X149999Y347783D01*

-X150261Y347891D01*

-X150502Y348039D01*

-X150718Y348223D01*

-X150902Y348439D01*

-X151050Y348680D01*

-X151158Y348942D01*

-X151224Y349218D01*

-X151241Y349500D01*

-X151224Y349782D01*

-X151158Y350058D01*

-X151050Y350320D01*

-X150902Y350561D01*

-X150718Y350777D01*

-X150502Y350961D01*

-X150261Y351109D01*

-X149999Y351217D01*

-X149723Y351283D01*

-X149441Y351306D01*

-X149438Y351305D01*

-Y362538D01*

-X149642Y362871D01*

-X149901Y363496D01*

-X150059Y364154D01*

-X150099Y364829D01*

-X150059Y365504D01*

-X149901Y366162D01*

-X149642Y366787D01*

-X149438Y367120D01*

-Y372538D01*

-X149642Y372871D01*

-X149901Y373496D01*

-X150059Y374154D01*

-X150099Y374829D01*

-X150059Y375504D01*

-X149901Y376162D01*

-X149642Y376787D01*

-X149438Y377120D01*

-Y397000D01*

-X151938D01*

-Y376745D01*

-X151697Y376162D01*

-X151539Y375504D01*

-X151486Y374829D01*

-X151539Y374154D01*

-X151697Y373496D01*

-X151938Y372913D01*

-Y366745D01*

-X151697Y366162D01*

-X151539Y365504D01*

-X151486Y364829D01*

-X151539Y364154D01*

-X151697Y363496D01*

-X151938Y362913D01*

-Y186745D01*

-X151697Y186162D01*

-X151539Y185504D01*

-X151486Y184829D01*

-X151539Y184154D01*

-X151697Y183496D01*

-X151938Y182913D01*

-Y176745D01*

-X151697Y176162D01*

-X151539Y175504D01*

-X151486Y174829D01*

-X151539Y174154D01*

-X151697Y173496D01*

-X151938Y172913D01*

-Y133805D01*

-X151659Y133783D01*

-X151383Y133717D01*

-X151121Y133609D01*

-X150880Y133461D01*

-X150664Y133277D01*

-X150480Y133061D01*

-X150332Y132820D01*

-X150224Y132558D01*

-X150158Y132282D01*

-X150135Y132000D01*

-X150158Y131718D01*

-X150224Y131442D01*

-X150332Y131180D01*

-X150480Y130939D01*

-X150664Y130723D01*

-X150880Y130539D01*

-X151121Y130391D01*

-X151383Y130283D01*

-X151659Y130217D01*

-X151938Y130195D01*

-Y123230D01*

-X151883Y123217D01*

-X151621Y123109D01*

-X151380Y122961D01*

-X151164Y122777D01*

-X150980Y122561D01*

-X150832Y122320D01*

-X150724Y122058D01*

-X150658Y121782D01*

-X150635Y121500D01*

-X150658Y121218D01*

-X150724Y120942D01*

-X150832Y120680D01*

-X150980Y120439D01*

-X151164Y120223D01*

-X151380Y120039D01*

-X151621Y119891D01*

-X151883Y119783D01*

-X151938Y119770D01*

-Y97000D01*

-G37*

-G36*

-X149438Y377120D02*X149289Y377364D01*

-X148849Y377879D01*

-X148334Y378319D01*

-X147757Y378672D01*

-X147132Y378931D01*

-X146474Y379089D01*

-X145799Y379142D01*

-X145792Y379142D01*

-Y397000D01*

-X149438D01*

-Y377120D01*

-G37*

-G36*

-Y367120D02*X149289Y367364D01*

-X148849Y367879D01*

-X148334Y368319D01*

-X147757Y368672D01*

-X147132Y368931D01*

-X146474Y369089D01*

-X145799Y369142D01*

-X145792Y369142D01*

-Y370516D01*

-X145799Y370516D01*

-X146474Y370569D01*

-X147132Y370727D01*

-X147757Y370986D01*

-X148334Y371339D01*

-X148849Y371779D01*

-X149289Y372294D01*

-X149438Y372538D01*

-Y367120D01*

-G37*

-G36*

-Y187120D02*X149289Y187364D01*

-X148849Y187879D01*

-X148334Y188319D01*

-X147757Y188672D01*

-X147132Y188931D01*

-X146474Y189089D01*

-X145799Y189142D01*

-X145792Y189142D01*

-Y360516D01*

-X145799Y360516D01*

-X146474Y360569D01*

-X147132Y360727D01*

-X147757Y360986D01*

-X148334Y361339D01*

-X148849Y361779D01*

-X149289Y362294D01*

-X149438Y362538D01*

-Y351305D01*

-X149159Y351283D01*

-X148883Y351217D01*

-X148621Y351109D01*

-X148380Y350961D01*

-X148164Y350777D01*

-X147980Y350561D01*

-X147832Y350320D01*

-X147724Y350058D01*

-X147658Y349782D01*

-X147635Y349500D01*

-X147658Y349218D01*

-X147724Y348942D01*

-X147832Y348680D01*

-X147980Y348439D01*

-X148164Y348223D01*

-X148380Y348039D01*

-X148621Y347891D01*

-X148883Y347783D01*

-X149159Y347717D01*

-X149438Y347695D01*

-Y187120D01*

-G37*

-G36*

-Y177120D02*X149289Y177364D01*

-X148849Y177879D01*

-X148334Y178319D01*

-X147757Y178672D01*

-X147132Y178931D01*

-X146474Y179089D01*

-X145799Y179142D01*

-X145792Y179142D01*

-Y180516D01*

-X145799Y180516D01*

-X146474Y180569D01*

-X147132Y180727D01*

-X147757Y180986D01*

-X148334Y181339D01*

-X148849Y181779D01*

-X149289Y182294D01*

-X149438Y182538D01*

-Y177120D01*

-G37*

-G36*

-Y97000D02*X145792D01*

-Y170516D01*

-X145799Y170516D01*

-X146474Y170569D01*

-X147132Y170727D01*

-X147757Y170986D01*

-X148334Y171339D01*

-X148849Y171779D01*

-X149289Y172294D01*

-X149438Y172538D01*

-Y97000D01*

-G37*

-G36*

-X142438Y182143D02*X142749Y181779D01*

-X143264Y181339D01*

-X143841Y180986D01*

-X144466Y180727D01*

-X145124Y180569D01*

-X145792Y180516D01*

-Y179142D01*

-X145124Y179089D01*

-X144466Y178931D01*

-X143841Y178672D01*

-X143264Y178319D01*

-X142749Y177879D01*

-X142438Y177515D01*

-Y182143D01*

-G37*

-G36*

-Y372143D02*X142749Y371779D01*

-X143264Y371339D01*

-X143841Y370986D01*

-X144466Y370727D01*

-X145124Y370569D01*

-X145792Y370516D01*

-Y369142D01*

-X145124Y369089D01*

-X144466Y368931D01*

-X143841Y368672D01*

-X143264Y368319D01*

-X142749Y367879D01*

-X142438Y367515D01*

-Y372143D01*

-G37*

-G36*

-Y397000D02*X145792D01*

-Y379142D01*

-X145124Y379089D01*

-X144466Y378931D01*

-X143841Y378672D01*

-X143264Y378319D01*

-X142749Y377879D01*

-X142438Y377515D01*

-Y397000D01*

-G37*

-G36*

-Y299482D02*X142584Y299606D01*

-X142768Y299822D01*

-X142916Y300063D01*

-X143024Y300325D01*

-X143090Y300601D01*

-X143107Y300883D01*

-X143090Y301165D01*

-X143024Y301441D01*

-X142916Y301703D01*

-X142768Y301944D01*

-X142584Y302160D01*

-X142438Y302284D01*

-Y347695D01*

-X142441Y347694D01*

-X142723Y347717D01*

-X142999Y347783D01*

-X143261Y347891D01*

-X143502Y348039D01*

-X143718Y348223D01*

-X143902Y348439D01*

-X144050Y348680D01*

-X144158Y348942D01*

-X144224Y349218D01*

-X144241Y349500D01*

-X144224Y349782D01*

-X144158Y350058D01*

-X144050Y350320D01*

-X143902Y350561D01*

-X143718Y350777D01*

-X143502Y350961D01*

-X143261Y351109D01*

-X142999Y351217D01*

-X142723Y351283D01*

-X142441Y351306D01*

-X142438Y351305D01*

-Y355695D01*

-X142441Y355694D01*

-X142723Y355717D01*

-X142999Y355783D01*

-X143261Y355891D01*

-X143502Y356039D01*

-X143718Y356223D01*

-X143902Y356439D01*

-X144050Y356680D01*

-X144158Y356942D01*

-X144224Y357218D01*

-X144241Y357500D01*

-X144224Y357782D01*

-X144158Y358058D01*

-X144050Y358320D01*

-X143902Y358561D01*

-X143718Y358777D01*

-X143502Y358961D01*

-X143261Y359109D01*

-X142999Y359217D01*

-X142723Y359283D01*

-X142441Y359306D01*

-X142438Y359305D01*

-Y362143D01*

-X142749Y361779D01*

-X143264Y361339D01*

-X143841Y360986D01*

-X144466Y360727D01*

-X145124Y360569D01*

-X145792Y360516D01*

-Y189142D01*

-X145124Y189089D01*

-X144466Y188931D01*

-X143841Y188672D01*

-X143264Y188319D01*

-X142749Y187879D01*

-X142438Y187515D01*

-Y299482D01*

-G37*

-G36*

-X145792Y97000D02*X142438D01*

-Y146500D01*

-X142502Y146539D01*

-X142718Y146723D01*

-X142902Y146939D01*

-X143050Y147180D01*

-X143158Y147442D01*

-X143224Y147718D01*

-X143241Y148000D01*

-X143224Y148282D01*

-X143158Y148558D01*

-X143050Y148820D01*

-X142902Y149061D01*

-X142718Y149277D01*

-X142502Y149461D01*

-X142438Y149500D01*

-Y172143D01*

-X142749Y171779D01*

-X143264Y171339D01*

-X143841Y170986D01*

-X144466Y170727D01*

-X145124Y170569D01*

-X145792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X142438Y302284D02*X142368Y302344D01*

-X142127Y302492D01*

-X141865Y302600D01*

-X141589Y302666D01*

-X141307Y302689D01*

-X141025Y302666D01*

-X140749Y302600D01*

-X140487Y302492D01*

-X140246Y302344D01*

-X140030Y302160D01*

-X139938Y302052D01*

-Y336195D01*

-X139941Y336194D01*

-X140223Y336217D01*

-X140499Y336283D01*

-X140761Y336391D01*

-X141002Y336539D01*

-X141218Y336723D01*

-X141402Y336939D01*

-X141550Y337180D01*

-X141658Y337442D01*

-X141724Y337718D01*

-X141741Y338000D01*

-X141724Y338282D01*

-X141658Y338558D01*

-X141550Y338820D01*

-X141402Y339061D01*

-X141218Y339277D01*

-X141002Y339461D01*

-X140761Y339609D01*

-X140499Y339717D01*

-X140223Y339783D01*

-X139941Y339806D01*

-X139938Y339805D01*

-Y363651D01*

-X140059Y364154D01*

-X140099Y364829D01*

-X140059Y365504D01*

-X139938Y366007D01*

-Y373651D01*

-X140059Y374154D01*

-X140099Y374829D01*

-X140059Y375504D01*

-X139938Y376007D01*

-Y397000D01*

-X142438D01*

-Y377515D01*

-X142309Y377364D01*

-X141956Y376787D01*

-X141697Y376162D01*

-X141539Y375504D01*

-X141486Y374829D01*

-X141539Y374154D01*

-X141697Y373496D01*

-X141956Y372871D01*

-X142309Y372294D01*

-X142438Y372143D01*

-Y367515D01*

-X142309Y367364D01*

-X141956Y366787D01*

-X141697Y366162D01*

-X141539Y365504D01*

-X141486Y364829D01*

-X141539Y364154D01*

-X141697Y363496D01*

-X141956Y362871D01*

-X142309Y362294D01*

-X142438Y362143D01*

-Y359305D01*

-X142159Y359283D01*

-X141883Y359217D01*

-X141621Y359109D01*

-X141380Y358961D01*

-X141164Y358777D01*

-X140980Y358561D01*

-X140832Y358320D01*

-X140724Y358058D01*

-X140658Y357782D01*

-X140635Y357500D01*

-X140658Y357218D01*

-X140724Y356942D01*

-X140832Y356680D01*

-X140980Y356439D01*

-X141164Y356223D01*

-X141380Y356039D01*

-X141621Y355891D01*

-X141883Y355783D01*

-X142159Y355717D01*

-X142438Y355695D01*

-Y351305D01*

-X142159Y351283D01*

-X141883Y351217D01*

-X141621Y351109D01*

-X141380Y350961D01*

-X141164Y350777D01*

-X140980Y350561D01*

-X140832Y350320D01*

-X140724Y350058D01*

-X140658Y349782D01*

-X140635Y349500D01*

-X140658Y349218D01*

-X140724Y348942D01*

-X140832Y348680D01*

-X140980Y348439D01*

-X141164Y348223D01*

-X141380Y348039D01*

-X141621Y347891D01*

-X141883Y347783D01*

-X142159Y347717D01*

-X142438Y347695D01*

-Y302284D01*

-G37*

-G36*

-Y149500D02*X142261Y149609D01*

-X141999Y149717D01*

-X141723Y149783D01*

-X141441Y149806D01*

-X141159Y149783D01*

-X140883Y149717D01*

-X140621Y149609D01*

-X140380Y149461D01*

-X140164Y149277D01*

-X139980Y149061D01*

-X139938Y148993D01*

-Y173651D01*

-X140059Y174154D01*

-X140099Y174829D01*

-X140059Y175504D01*

-X139938Y176007D01*

-Y183651D01*

-X140059Y184154D01*

-X140099Y184829D01*

-X140059Y185504D01*

-X139938Y186007D01*

-Y299714D01*

-X140030Y299606D01*

-X140246Y299422D01*

-X140487Y299274D01*

-X140749Y299166D01*

-X141025Y299100D01*

-X141307Y299077D01*

-X141589Y299100D01*

-X141865Y299166D01*

-X142127Y299274D01*

-X142368Y299422D01*

-X142438Y299482D01*

-Y187515D01*

-X142309Y187364D01*

-X141956Y186787D01*

-X141697Y186162D01*

-X141539Y185504D01*

-X141486Y184829D01*

-X141539Y184154D01*

-X141697Y183496D01*

-X141956Y182871D01*

-X142309Y182294D01*

-X142438Y182143D01*

-Y177515D01*

-X142309Y177364D01*

-X141956Y176787D01*

-X141697Y176162D01*

-X141539Y175504D01*

-X141486Y174829D01*

-X141539Y174154D01*

-X141697Y173496D01*

-X141956Y172871D01*

-X142309Y172294D01*

-X142438Y172143D01*

-Y149500D01*

-G37*

-G36*

-Y97000D02*X139938D01*

-Y147007D01*

-X139980Y146939D01*

-X140164Y146723D01*

-X140380Y146539D01*

-X140621Y146391D01*

-X140883Y146283D01*

-X141159Y146217D01*

-X141441Y146194D01*

-X141723Y146217D01*

-X141999Y146283D01*

-X142261Y146391D01*

-X142438Y146500D01*

-Y97000D01*

-G37*

-G36*

-X139938Y376007D02*X139901Y376162D01*

-X139642Y376787D01*

-X139289Y377364D01*

-X138849Y377879D01*

-X138334Y378319D01*

-X137757Y378672D01*

-X137132Y378931D01*

-X136474Y379089D01*

-X135799Y379142D01*

-X135792Y379142D01*

-Y397000D01*

-X139938D01*

-Y376007D01*

-G37*

-G36*

-Y366007D02*X139901Y366162D01*

-X139642Y366787D01*

-X139289Y367364D01*

-X138849Y367879D01*

-X138334Y368319D01*

-X137757Y368672D01*

-X137132Y368931D01*

-X136474Y369089D01*

-X135799Y369142D01*

-X135792Y369142D01*

-Y370516D01*

-X135799Y370516D01*

-X136474Y370569D01*

-X137132Y370727D01*

-X137757Y370986D01*

-X138334Y371339D01*

-X138849Y371779D01*

-X139289Y372294D01*

-X139642Y372871D01*

-X139901Y373496D01*

-X139938Y373651D01*

-Y366007D01*

-G37*

-G36*

-Y186007D02*X139901Y186162D01*

-X139642Y186787D01*

-X139289Y187364D01*

-X138849Y187879D01*

-X138334Y188319D01*

-X137757Y188672D01*

-X137132Y188931D01*

-X136474Y189089D01*

-X135799Y189142D01*

-X135792Y189142D01*

-Y333233D01*

-X135999Y333283D01*

-X136261Y333391D01*

-X136502Y333539D01*

-X136718Y333723D01*

-X136902Y333939D01*

-X137050Y334180D01*

-X137158Y334442D01*

-X137224Y334718D01*

-X137241Y335000D01*

-X137224Y335282D01*

-X137158Y335558D01*

-X137050Y335820D01*

-X136902Y336061D01*

-X136718Y336277D01*

-X136502Y336461D01*

-X136261Y336609D01*

-X135999Y336717D01*

-X135862Y336750D01*

-X135999Y336783D01*

-X136261Y336891D01*

-X136502Y337039D01*

-X136718Y337223D01*

-X136902Y337439D01*

-X137050Y337680D01*

-X137158Y337942D01*

-X137224Y338218D01*

-X137241Y338500D01*

-X137224Y338782D01*

-X137158Y339058D01*

-X137050Y339320D01*

-X136902Y339561D01*

-X136718Y339777D01*

-X136502Y339961D01*

-X136261Y340109D01*

-X135999Y340217D01*

-X135792Y340267D01*

-Y360516D01*

-X135799Y360516D01*

-X136474Y360569D01*

-X137132Y360727D01*

-X137757Y360986D01*

-X138334Y361339D01*

-X138849Y361779D01*

-X139289Y362294D01*

-X139642Y362871D01*

-X139901Y363496D01*

-X139938Y363651D01*

-Y339805D01*

-X139659Y339783D01*

-X139383Y339717D01*

-X139121Y339609D01*

-X138880Y339461D01*

-X138664Y339277D01*

-X138480Y339061D01*

-X138332Y338820D01*

-X138224Y338558D01*

-X138158Y338282D01*

-X138135Y338000D01*

-X138158Y337718D01*

-X138224Y337442D01*

-X138332Y337180D01*

-X138480Y336939D01*

-X138664Y336723D01*

-X138880Y336539D01*

-X139121Y336391D01*

-X139383Y336283D01*

-X139659Y336217D01*

-X139938Y336195D01*

-Y302052D01*

-X139846Y301944D01*

-X139698Y301703D01*

-X139590Y301441D01*

-X139524Y301165D01*

-X139501Y300883D01*

-X139524Y300601D01*

-X139590Y300325D01*

-X139698Y300063D01*

-X139846Y299822D01*

-X139938Y299714D01*

-Y186007D01*

-G37*

-G36*

-Y176007D02*X139901Y176162D01*

-X139642Y176787D01*

-X139289Y177364D01*

-X138849Y177879D01*

-X138334Y178319D01*

-X137757Y178672D01*

-X137132Y178931D01*

-X136474Y179089D01*

-X135799Y179142D01*

-X135792Y179142D01*

-Y180516D01*

-X135799Y180516D01*

-X136474Y180569D01*

-X137132Y180727D01*

-X137757Y180986D01*

-X138334Y181339D01*

-X138849Y181779D01*

-X139289Y182294D01*

-X139642Y182871D01*

-X139901Y183496D01*

-X139938Y183651D01*

-Y176007D01*

-G37*

-G36*

-Y97000D02*X135792D01*

-Y170516D01*

-X135799Y170516D01*

-X136474Y170569D01*

-X137132Y170727D01*

-X137757Y170986D01*

-X138334Y171339D01*

-X138849Y171779D01*

-X139289Y172294D01*

-X139642Y172871D01*

-X139901Y173496D01*

-X139938Y173651D01*

-Y148993D01*

-X139832Y148820D01*

-X139724Y148558D01*

-X139658Y148282D01*

-X139635Y148000D01*

-X139658Y147718D01*

-X139724Y147442D01*

-X139832Y147180D01*

-X139938Y147007D01*

-Y97000D01*

-G37*

-G36*

-X135792D02*X130938D01*

-Y355695D01*

-X130941Y355694D01*

-X131223Y355717D01*

-X131499Y355783D01*

-X131761Y355891D01*

-X132002Y356039D01*

-X132218Y356223D01*

-X132402Y356439D01*

-X132550Y356680D01*

-X132658Y356942D01*

-X132724Y357218D01*

-X132741Y357500D01*

-X132724Y357782D01*

-X132658Y358058D01*

-X132550Y358320D01*

-X132402Y358561D01*

-X132218Y358777D01*

-X132002Y358961D01*

-X131761Y359109D01*

-X131499Y359217D01*

-X131223Y359283D01*

-X130941Y359306D01*

-X130938Y359305D01*

-Y397000D01*

-X135792D01*

-Y379142D01*

-X135124Y379089D01*

-X134466Y378931D01*

-X133841Y378672D01*

-X133264Y378319D01*

-X132749Y377879D01*

-X132309Y377364D01*

-X131956Y376787D01*

-X131697Y376162D01*

-X131539Y375504D01*

-X131486Y374829D01*

-X131539Y374154D01*

-X131697Y373496D01*

-X131956Y372871D01*

-X132309Y372294D01*

-X132749Y371779D01*

-X133264Y371339D01*

-X133841Y370986D01*

-X134466Y370727D01*

-X135124Y370569D01*

-X135792Y370516D01*

-Y369142D01*

-X135124Y369089D01*

-X134466Y368931D01*

-X133841Y368672D01*

-X133264Y368319D01*

-X132749Y367879D01*

-X132309Y367364D01*

-X131956Y366787D01*

-X131697Y366162D01*

-X131539Y365504D01*

-X131486Y364829D01*

-X131539Y364154D01*

-X131697Y363496D01*

-X131956Y362871D01*

-X132309Y362294D01*

-X132749Y361779D01*

-X133264Y361339D01*

-X133841Y360986D01*

-X134466Y360727D01*

-X135124Y360569D01*

-X135792Y360516D01*

-Y340267D01*

-X135723Y340283D01*

-X135441Y340306D01*

-X135159Y340283D01*

-X134883Y340217D01*

-X134621Y340109D01*

-X134380Y339961D01*

-X134164Y339777D01*

-X133980Y339561D01*

-X133832Y339320D01*

-X133724Y339058D01*

-X133658Y338782D01*

-X133635Y338500D01*

-X133658Y338218D01*

-X133724Y337942D01*

-X133832Y337680D01*

-X133980Y337439D01*

-X134164Y337223D01*

-X134380Y337039D01*

-X134621Y336891D01*

-X134883Y336783D01*

-X135020Y336750D01*

-X134883Y336717D01*

-X134621Y336609D01*

-X134380Y336461D01*

-X134164Y336277D01*

-X133980Y336061D01*

-X133832Y335820D01*

-X133724Y335558D01*

-X133658Y335282D01*

-X133635Y335000D01*

-X133658Y334718D01*

-X133724Y334442D01*

-X133832Y334180D01*

-X133980Y333939D01*

-X134164Y333723D01*

-X134380Y333539D01*

-X134621Y333391D01*

-X134883Y333283D01*

-X135159Y333217D01*

-X135441Y333194D01*

-X135723Y333217D01*

-X135792Y333233D01*

-Y189142D01*

-X135124Y189089D01*

-X134466Y188931D01*

-X133841Y188672D01*

-X133264Y188319D01*

-X132749Y187879D01*

-X132309Y187364D01*

-X131956Y186787D01*

-X131697Y186162D01*

-X131539Y185504D01*

-X131486Y184829D01*

-X131539Y184154D01*

-X131697Y183496D01*

-X131956Y182871D01*

-X132309Y182294D01*

-X132749Y181779D01*

-X133264Y181339D01*

-X133841Y180986D01*

-X134466Y180727D01*

-X135124Y180569D01*

-X135792Y180516D01*

-Y179142D01*

-X135124Y179089D01*

-X134466Y178931D01*

-X133841Y178672D01*

-X133264Y178319D01*

-X132749Y177879D01*

-X132309Y177364D01*

-X131956Y176787D01*

-X131697Y176162D01*

-X131539Y175504D01*

-X131486Y174829D01*

-X131539Y174154D01*

-X131697Y173496D01*

-X131956Y172871D01*

-X132309Y172294D01*

-X132749Y171779D01*

-X133264Y171339D01*

-X133841Y170986D01*

-X134466Y170727D01*

-X135124Y170569D01*

-X135792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X130938D02*X127938D01*

-Y146195D01*

-X127941Y146194D01*

-X128223Y146217D01*

-X128499Y146283D01*

-X128761Y146391D01*

-X129002Y146539D01*

-X129218Y146723D01*

-X129402Y146939D01*

-X129550Y147180D01*

-X129658Y147442D01*

-X129724Y147718D01*

-X129741Y148000D01*

-X129724Y148282D01*

-X129658Y148558D01*

-X129550Y148820D01*

-X129402Y149061D01*

-X129218Y149277D01*

-X129002Y149461D01*

-X128761Y149609D01*

-X128499Y149717D01*

-X128223Y149783D01*

-X127941Y149806D01*

-X127938Y149805D01*

-Y171097D01*

-X128334Y171339D01*

-X128849Y171779D01*

-X129289Y172294D01*

-X129642Y172871D01*

-X129901Y173496D01*

-X130059Y174154D01*

-X130099Y174829D01*

-X130059Y175504D01*

-X129901Y176162D01*

-X129642Y176787D01*

-X129289Y177364D01*

-X128849Y177879D01*

-X128334Y178319D01*

-X127938Y178561D01*

-Y181097D01*

-X128334Y181339D01*

-X128849Y181779D01*

-X129289Y182294D01*

-X129642Y182871D01*

-X129901Y183496D01*

-X130059Y184154D01*

-X130099Y184829D01*

-X130059Y185504D01*

-X129901Y186162D01*

-X129642Y186787D01*

-X129289Y187364D01*

-X128849Y187879D01*

-X128334Y188319D01*

-X127938Y188561D01*

-Y241003D01*

-X128121Y240891D01*

-X128383Y240783D01*

-X128659Y240717D01*

-X128941Y240694D01*

-X129223Y240717D01*

-X129499Y240783D01*

-X129761Y240891D01*

-X130002Y241039D01*

-X130218Y241223D01*

-X130402Y241439D01*

-X130550Y241680D01*

-X130658Y241942D01*

-X130724Y242218D01*

-X130741Y242500D01*

-X130724Y242782D01*

-X130658Y243058D01*

-X130550Y243320D01*

-X130402Y243561D01*

-X130218Y243777D01*

-X130002Y243961D01*

-X129761Y244109D01*

-X129499Y244217D01*

-X129223Y244283D01*

-X128941Y244306D01*

-X128659Y244283D01*

-X128383Y244217D01*

-X128121Y244109D01*

-X127938Y243997D01*

-Y247003D01*

-X128121Y246891D01*

-X128383Y246783D01*

-X128659Y246717D01*

-X128941Y246694D01*

-X129223Y246717D01*

-X129499Y246783D01*

-X129761Y246891D01*

-X130002Y247039D01*

-X130218Y247223D01*

-X130402Y247439D01*

-X130550Y247680D01*

-X130658Y247942D01*

-X130724Y248218D01*

-X130741Y248500D01*

-X130724Y248782D01*

-X130658Y249058D01*

-X130550Y249320D01*

-X130402Y249561D01*

-X130218Y249777D01*

-X130002Y249961D01*

-X129761Y250109D01*

-X129499Y250217D01*

-X129223Y250283D01*

-X128941Y250306D01*

-X128659Y250283D01*

-X128383Y250217D01*

-X128121Y250109D01*

-X127938Y249997D01*

-Y253503D01*

-X128121Y253391D01*

-X128383Y253283D01*

-X128659Y253217D01*

-X128941Y253194D01*

-X129223Y253217D01*

-X129499Y253283D01*

-X129761Y253391D01*

-X130002Y253539D01*

-X130218Y253723D01*

-X130402Y253939D01*

-X130550Y254180D01*

-X130658Y254442D01*

-X130724Y254718D01*

-X130741Y255000D01*

-X130724Y255282D01*

-X130658Y255558D01*

-X130550Y255820D01*

-X130402Y256061D01*

-X130218Y256277D01*

-X130002Y256461D01*

-X129761Y256609D01*

-X129499Y256717D01*

-X129223Y256783D01*

-X128941Y256806D01*

-X128659Y256783D01*

-X128383Y256717D01*

-X128121Y256609D01*

-X127938Y256497D01*

-Y261003D01*

-X128121Y260891D01*

-X128383Y260783D01*

-X128659Y260717D01*

-X128941Y260694D01*

-X129223Y260717D01*

-X129499Y260783D01*

-X129761Y260891D01*

-X130002Y261039D01*

-X130218Y261223D01*

-X130402Y261439D01*

-X130550Y261680D01*

-X130658Y261942D01*

-X130724Y262218D01*

-X130741Y262500D01*

-X130724Y262782D01*

-X130658Y263058D01*

-X130550Y263320D01*

-X130402Y263561D01*

-X130218Y263777D01*

-X130002Y263961D01*

-X129761Y264109D01*

-X129499Y264217D01*

-X129223Y264283D01*

-X128941Y264306D01*

-X128659Y264283D01*

-X128383Y264217D01*

-X128121Y264109D01*

-X127938Y263997D01*

-Y267003D01*

-X128121Y266891D01*

-X128383Y266783D01*

-X128659Y266717D01*

-X128941Y266694D01*

-X129223Y266717D01*

-X129499Y266783D01*

-X129761Y266891D01*

-X130002Y267039D01*

-X130218Y267223D01*

-X130402Y267439D01*

-X130550Y267680D01*

-X130658Y267942D01*

-X130724Y268218D01*

-X130741Y268500D01*

-X130724Y268782D01*

-X130658Y269058D01*

-X130550Y269320D01*

-X130402Y269561D01*

-X130218Y269777D01*

-X130002Y269961D01*

-X129761Y270109D01*

-X129499Y270217D01*

-X129223Y270283D01*

-X128941Y270306D01*

-X128659Y270283D01*

-X128383Y270217D01*

-X128121Y270109D01*

-X127938Y269997D01*

-Y273003D01*

-X128121Y272891D01*

-X128383Y272783D01*

-X128659Y272717D01*

-X128941Y272694D01*

-X129223Y272717D01*

-X129499Y272783D01*

-X129761Y272891D01*

-X130002Y273039D01*

-X130218Y273223D01*

-X130402Y273439D01*

-X130550Y273680D01*

-X130658Y273942D01*

-X130724Y274218D01*

-X130741Y274500D01*

-X130724Y274782D01*

-X130658Y275058D01*

-X130550Y275320D01*

-X130402Y275561D01*

-X130218Y275777D01*

-X130002Y275961D01*

-X129761Y276109D01*

-X129499Y276217D01*

-X129223Y276283D01*

-X128941Y276306D01*

-X128659Y276283D01*

-X128383Y276217D01*

-X128121Y276109D01*

-X127938Y275997D01*

-Y332998D01*

-X128050Y333180D01*

-X128158Y333442D01*

-X128224Y333718D01*

-X128241Y334000D01*

-X128224Y334282D01*

-X128158Y334558D01*

-X128050Y334820D01*

-X127938Y335002D01*

-Y339498D01*

-X128050Y339680D01*

-X128158Y339942D01*

-X128224Y340218D01*

-X128241Y340500D01*

-X128224Y340782D01*

-X128158Y341058D01*

-X128050Y341320D01*

-X127938Y341502D01*

-Y361097D01*

-X128334Y361339D01*

-X128849Y361779D01*

-X129289Y362294D01*

-X129642Y362871D01*

-X129901Y363496D01*

-X130059Y364154D01*

-X130099Y364829D01*

-X130059Y365504D01*

-X129901Y366162D01*

-X129642Y366787D01*

-X129289Y367364D01*

-X128849Y367879D01*

-X128334Y368319D01*

-X127938Y368561D01*

-Y371097D01*

-X128334Y371339D01*

-X128849Y371779D01*

-X129289Y372294D01*

-X129642Y372871D01*

-X129901Y373496D01*

-X130059Y374154D01*

-X130099Y374829D01*

-X130059Y375504D01*

-X129901Y376162D01*

-X129642Y376787D01*

-X129289Y377364D01*

-X128849Y377879D01*

-X128334Y378319D01*

-X127938Y378561D01*

-Y397000D01*

-X130938D01*

-Y359305D01*

-X130659Y359283D01*

-X130383Y359217D01*

-X130121Y359109D01*

-X129880Y358961D01*

-X129664Y358777D01*

-X129480Y358561D01*

-X129332Y358320D01*

-X129224Y358058D01*

-X129158Y357782D01*

-X129135Y357500D01*

-X129158Y357218D01*

-X129224Y356942D01*

-X129332Y356680D01*

-X129480Y356439D01*

-X129664Y356223D01*

-X129880Y356039D01*

-X130121Y355891D01*

-X130383Y355783D01*

-X130659Y355717D01*

-X130938Y355695D01*

-Y97000D01*

-G37*

-G36*

-X127938Y378561D02*X127757Y378672D01*

-X127132Y378931D01*

-X126474Y379089D01*

-X125799Y379142D01*

-X125792Y379142D01*

-Y397000D01*

-X127938D01*

-Y378561D01*

-G37*

-G36*

-Y368561D02*X127757Y368672D01*

-X127132Y368931D01*

-X126474Y369089D01*

-X125799Y369142D01*

-X125792Y369142D01*

-Y370516D01*

-X125799Y370516D01*

-X126474Y370569D01*

-X127132Y370727D01*

-X127757Y370986D01*

-X127938Y371097D01*

-Y368561D01*

-G37*

-G36*

-Y341502D02*X127902Y341561D01*

-X127718Y341777D01*

-X127502Y341961D01*

-X127261Y342109D01*

-X126999Y342217D01*

-X126723Y342283D01*

-X126441Y342306D01*

-X126159Y342283D01*

-X125883Y342217D01*

-X125792Y342180D01*

-Y360516D01*

-X125799Y360516D01*

-X126474Y360569D01*

-X127132Y360727D01*

-X127757Y360986D01*

-X127938Y361097D01*

-Y341502D01*

-G37*

-G36*

-Y335002D02*X127902Y335061D01*

-X127718Y335277D01*

-X127502Y335461D01*

-X127261Y335609D01*

-X126999Y335717D01*

-X126723Y335783D01*

-X126441Y335806D01*

-X126159Y335783D01*

-X125883Y335717D01*

-X125792Y335680D01*

-Y338820D01*

-X125883Y338783D01*

-X126159Y338717D01*

-X126441Y338694D01*

-X126723Y338717D01*

-X126999Y338783D01*

-X127261Y338891D01*

-X127502Y339039D01*

-X127718Y339223D01*

-X127902Y339439D01*

-X127938Y339498D01*

-Y335002D01*

-G37*

-G36*

-Y188561D02*X127757Y188672D01*

-X127132Y188931D01*

-X126474Y189089D01*

-X125799Y189142D01*

-X125792Y189142D01*

-Y300863D01*

-X125892Y300924D01*

-X126108Y301108D01*

-X126292Y301324D01*

-X126440Y301565D01*

-X126548Y301827D01*

-X126614Y302103D01*

-X126631Y302385D01*

-X126614Y302667D01*

-X126548Y302943D01*

-X126440Y303205D01*

-X126292Y303446D01*

-X126108Y303662D01*

-X125892Y303846D01*

-X125792Y303907D01*

-Y332320D01*

-X125883Y332283D01*

-X126159Y332217D01*

-X126441Y332194D01*

-X126723Y332217D01*

-X126999Y332283D01*

-X127261Y332391D01*

-X127502Y332539D01*

-X127718Y332723D01*

-X127902Y332939D01*

-X127938Y332998D01*

-Y275997D01*

-X127880Y275961D01*

-X127664Y275777D01*

-X127480Y275561D01*

-X127332Y275320D01*

-X127224Y275058D01*

-X127158Y274782D01*

-X127135Y274500D01*

-X127158Y274218D01*

-X127224Y273942D01*

-X127332Y273680D01*

-X127480Y273439D01*

-X127664Y273223D01*

-X127880Y273039D01*

-X127938Y273003D01*

-Y269997D01*

-X127880Y269961D01*

-X127664Y269777D01*

-X127480Y269561D01*

-X127332Y269320D01*

-X127224Y269058D01*

-X127158Y268782D01*

-X127135Y268500D01*

-X127158Y268218D01*

-X127224Y267942D01*

-X127332Y267680D01*

-X127480Y267439D01*

-X127664Y267223D01*

-X127880Y267039D01*

-X127938Y267003D01*

-Y263997D01*

-X127880Y263961D01*

-X127664Y263777D01*

-X127480Y263561D01*

-X127332Y263320D01*

-X127224Y263058D01*

-X127158Y262782D01*

-X127135Y262500D01*

-X127158Y262218D01*

-X127224Y261942D01*

-X127332Y261680D01*

-X127480Y261439D01*

-X127664Y261223D01*

-X127880Y261039D01*

-X127938Y261003D01*

-Y256497D01*

-X127880Y256461D01*

-X127664Y256277D01*

-X127480Y256061D01*

-X127332Y255820D01*

-X127224Y255558D01*

-X127158Y255282D01*

-X127135Y255000D01*

-X127158Y254718D01*

-X127224Y254442D01*

-X127332Y254180D01*

-X127480Y253939D01*

-X127664Y253723D01*

-X127880Y253539D01*

-X127938Y253503D01*

-Y249997D01*

-X127880Y249961D01*

-X127664Y249777D01*

-X127480Y249561D01*

-X127332Y249320D01*

-X127224Y249058D01*

-X127158Y248782D01*

-X127135Y248500D01*

-X127158Y248218D01*

-X127224Y247942D01*

-X127332Y247680D01*

-X127480Y247439D01*

-X127664Y247223D01*

-X127880Y247039D01*

-X127938Y247003D01*

-Y243997D01*

-X127880Y243961D01*

-X127664Y243777D01*

-X127480Y243561D01*

-X127332Y243320D01*

-X127224Y243058D01*

-X127158Y242782D01*

-X127135Y242500D01*

-X127158Y242218D01*

-X127224Y241942D01*

-X127332Y241680D01*

-X127480Y241439D01*

-X127664Y241223D01*

-X127880Y241039D01*

-X127938Y241003D01*

-Y188561D01*

-G37*

-G36*

-Y178561D02*X127757Y178672D01*

-X127132Y178931D01*

-X126474Y179089D01*

-X125799Y179142D01*

-X125792Y179142D01*

-Y180516D01*

-X125799Y180516D01*

-X126474Y180569D01*

-X127132Y180727D01*

-X127757Y180986D01*

-X127938Y181097D01*

-Y178561D01*

-G37*

-G36*

-Y97000D02*X125792D01*

-Y170516D01*

-X125799Y170516D01*

-X126474Y170569D01*

-X127132Y170727D01*

-X127757Y170986D01*

-X127938Y171097D01*

-Y149805D01*

-X127659Y149783D01*

-X127383Y149717D01*

-X127121Y149609D01*

-X126880Y149461D01*

-X126664Y149277D01*

-X126480Y149061D01*

-X126332Y148820D01*

-X126224Y148558D01*

-X126158Y148282D01*

-X126135Y148000D01*

-X126158Y147718D01*

-X126224Y147442D01*

-X126332Y147180D01*

-X126480Y146939D01*

-X126664Y146723D01*

-X126880Y146539D01*

-X127121Y146391D01*

-X127383Y146283D01*

-X127659Y146217D01*

-X127938Y146195D01*

-Y97000D01*

-G37*

-G36*

-X121938Y182913D02*X121956Y182871D01*

-X122309Y182294D01*

-X122749Y181779D01*

-X123264Y181339D01*

-X123841Y180986D01*

-X124466Y180727D01*

-X125124Y180569D01*

-X125792Y180516D01*

-Y179142D01*

-X125124Y179089D01*

-X124466Y178931D01*

-X123841Y178672D01*

-X123264Y178319D01*

-X122749Y177879D01*

-X122309Y177364D01*

-X121956Y176787D01*

-X121938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y362913D02*X121956Y362871D01*

-X122309Y362294D01*

-X122749Y361779D01*

-X123264Y361339D01*

-X123841Y360986D01*

-X124466Y360727D01*

-X125124Y360569D01*

-X125792Y360516D01*

-Y342180D01*

-X125621Y342109D01*

-X125380Y341961D01*

-X125164Y341777D01*

-X124980Y341561D01*

-X124832Y341320D01*

-X124724Y341058D01*

-X124658Y340782D01*

-X124635Y340500D01*

-X124658Y340218D01*

-X124724Y339942D01*

-X124832Y339680D01*

-X124980Y339439D01*

-X125164Y339223D01*

-X125380Y339039D01*

-X125621Y338891D01*

-X125792Y338820D01*

-Y335680D01*

-X125621Y335609D01*

-X125380Y335461D01*

-X125164Y335277D01*

-X124980Y335061D01*

-X124832Y334820D01*

-X124724Y334558D01*

-X124658Y334282D01*

-X124635Y334000D01*

-X124658Y333718D01*

-X124724Y333442D01*

-X124832Y333180D01*

-X124980Y332939D01*

-X125164Y332723D01*

-X125380Y332539D01*

-X125621Y332391D01*

-X125792Y332320D01*

-Y303907D01*

-X125651Y303994D01*

-X125389Y304102D01*

-X125113Y304168D01*

-X124831Y304191D01*

-X124549Y304168D01*

-X124273Y304102D01*

-X124011Y303994D01*

-X123770Y303846D01*

-X123554Y303662D01*

-X123370Y303446D01*

-X123222Y303205D01*

-X123114Y302943D01*

-X123048Y302667D01*

-X123025Y302385D01*

-X123048Y302103D01*

-X123114Y301827D01*

-X123222Y301565D01*

-X123370Y301324D01*

-X123554Y301108D01*

-X123770Y300924D01*

-X124011Y300776D01*

-X124273Y300668D01*

-X124549Y300602D01*

-X124831Y300579D01*

-X125113Y300602D01*

-X125389Y300668D01*

-X125651Y300776D01*

-X125792Y300863D01*

-Y189142D01*

-X125124Y189089D01*

-X124466Y188931D01*

-X123841Y188672D01*

-X123264Y188319D01*

-X122749Y187879D01*

-X122309Y187364D01*

-X121956Y186787D01*

-X121938Y186745D01*

-Y355695D01*

-X121941Y355694D01*

-X122223Y355717D01*

-X122499Y355783D01*

-X122761Y355891D01*

-X123002Y356039D01*

-X123218Y356223D01*

-X123402Y356439D01*

-X123550Y356680D01*

-X123658Y356942D01*

-X123724Y357218D01*

-X123741Y357500D01*

-X123724Y357782D01*

-X123658Y358058D01*

-X123550Y358320D01*

-X123402Y358561D01*

-X123218Y358777D01*

-X123002Y358961D01*

-X122761Y359109D01*

-X122499Y359217D01*

-X122223Y359283D01*

-X121941Y359306D01*

-X121938Y359305D01*

-Y362913D01*

-G37*

-G36*

-Y372913D02*X121956Y372871D01*

-X122309Y372294D01*

-X122749Y371779D01*

-X123264Y371339D01*

-X123841Y370986D01*

-X124466Y370727D01*

-X125124Y370569D01*

-X125792Y370516D01*

-Y369142D01*

-X125124Y369089D01*

-X124466Y368931D01*

-X123841Y368672D01*

-X123264Y368319D01*

-X122749Y367879D01*

-X122309Y367364D01*

-X121956Y366787D01*

-X121938Y366745D01*

-Y372913D01*

-G37*

-G36*

-Y397000D02*X125792D01*

-Y379142D01*

-X125124Y379089D01*

-X124466Y378931D01*

-X123841Y378672D01*

-X123264Y378319D01*

-X122749Y377879D01*

-X122309Y377364D01*

-X121956Y376787D01*

-X121938Y376745D01*

-Y397000D01*

-G37*

-G36*

-X125792Y97000D02*X121938D01*

-Y172913D01*

-X121956Y172871D01*

-X122309Y172294D01*

-X122749Y171779D01*

-X123264Y171339D01*

-X123841Y170986D01*

-X124466Y170727D01*

-X125124Y170569D01*

-X125792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X121938D02*X117938D01*

-Y171097D01*

-X118334Y171339D01*

-X118849Y171779D01*

-X119289Y172294D01*

-X119642Y172871D01*

-X119901Y173496D01*

-X120059Y174154D01*

-X120099Y174829D01*

-X120059Y175504D01*

-X119901Y176162D01*

-X119642Y176787D01*

-X119289Y177364D01*

-X118849Y177879D01*

-X118334Y178319D01*

-X117938Y178561D01*

-Y181097D01*

-X118334Y181339D01*

-X118849Y181779D01*

-X119289Y182294D01*

-X119642Y182871D01*

-X119901Y183496D01*

-X120059Y184154D01*

-X120099Y184829D01*

-X120059Y185504D01*

-X119901Y186162D01*

-X119642Y186787D01*

-X119289Y187364D01*

-X118849Y187879D01*

-X118334Y188319D01*

-X117938Y188561D01*

-Y332195D01*

-X117941Y332194D01*

-X118223Y332217D01*

-X118499Y332283D01*

-X118761Y332391D01*

-X119002Y332539D01*

-X119218Y332723D01*

-X119402Y332939D01*

-X119550Y333180D01*

-X119658Y333442D01*

-X119724Y333718D01*

-X119741Y334000D01*

-X119724Y334282D01*

-X119658Y334558D01*

-X119550Y334820D01*

-X119402Y335061D01*

-X119218Y335277D01*

-X119002Y335461D01*

-X118761Y335609D01*

-X118499Y335717D01*

-X118223Y335783D01*

-X117941Y335806D01*

-X117938Y335805D01*

-Y361097D01*

-X118334Y361339D01*

-X118849Y361779D01*

-X119289Y362294D01*

-X119642Y362871D01*

-X119901Y363496D01*

-X120059Y364154D01*

-X120099Y364829D01*

-X120059Y365504D01*

-X119901Y366162D01*

-X119642Y366787D01*

-X119289Y367364D01*

-X118849Y367879D01*

-X118334Y368319D01*

-X117938Y368561D01*

-Y371097D01*

-X118334Y371339D01*

-X118849Y371779D01*

-X119289Y372294D01*

-X119642Y372871D01*

-X119901Y373496D01*

-X120059Y374154D01*

-X120099Y374829D01*

-X120059Y375504D01*

-X119901Y376162D01*

-X119642Y376787D01*

-X119289Y377364D01*

-X118849Y377879D01*

-X118334Y378319D01*

-X117938Y378561D01*

-Y397000D01*

-X121938D01*

-Y376745D01*

-X121697Y376162D01*

-X121539Y375504D01*

-X121486Y374829D01*

-X121539Y374154D01*

-X121697Y373496D01*

-X121938Y372913D01*

-Y366745D01*

-X121697Y366162D01*

-X121539Y365504D01*

-X121486Y364829D01*

-X121539Y364154D01*

-X121697Y363496D01*

-X121938Y362913D01*

-Y359305D01*

-X121659Y359283D01*

-X121383Y359217D01*

-X121121Y359109D01*

-X120880Y358961D01*

-X120664Y358777D01*

-X120480Y358561D01*

-X120332Y358320D01*

-X120224Y358058D01*

-X120158Y357782D01*

-X120135Y357500D01*

-X120158Y357218D01*

-X120224Y356942D01*

-X120332Y356680D01*

-X120480Y356439D01*

-X120664Y356223D01*

-X120880Y356039D01*

-X121121Y355891D01*

-X121383Y355783D01*

-X121659Y355717D01*

-X121938Y355695D01*

-Y186745D01*

-X121697Y186162D01*

-X121539Y185504D01*

-X121486Y184829D01*

-X121539Y184154D01*

-X121697Y183496D01*

-X121938Y182913D01*

-Y176745D01*

-X121697Y176162D01*

-X121539Y175504D01*

-X121486Y174829D01*

-X121539Y174154D01*

-X121697Y173496D01*

-X121938Y172913D01*

-Y97000D01*

-G37*

-G36*

-X117938Y378561D02*X117757Y378672D01*

-X117132Y378931D01*

-X116474Y379089D01*

-X115799Y379142D01*

-X115792Y379142D01*

-Y397000D01*

-X117938D01*

-Y378561D01*

-G37*

-G36*

-Y368561D02*X117757Y368672D01*

-X117132Y368931D01*

-X116474Y369089D01*

-X115799Y369142D01*

-X115792Y369142D01*

-Y370516D01*

-X115799Y370516D01*

-X116474Y370569D01*

-X117132Y370727D01*

-X117757Y370986D01*

-X117938Y371097D01*

-Y368561D01*

-G37*

-G36*

-Y188561D02*X117757Y188672D01*

-X117132Y188931D01*

-X116474Y189089D01*

-X115799Y189142D01*

-X115792Y189142D01*

-Y360516D01*

-X115799Y360516D01*

-X116474Y360569D01*

-X117132Y360727D01*

-X117757Y360986D01*

-X117938Y361097D01*

-Y335805D01*

-X117659Y335783D01*

-X117383Y335717D01*

-X117121Y335609D01*

-X116880Y335461D01*

-X116664Y335277D01*

-X116480Y335061D01*

-X116332Y334820D01*

-X116224Y334558D01*

-X116158Y334282D01*

-X116135Y334000D01*

-X116158Y333718D01*

-X116224Y333442D01*

-X116332Y333180D01*

-X116480Y332939D01*

-X116664Y332723D01*

-X116880Y332539D01*

-X117121Y332391D01*

-X117383Y332283D01*

-X117659Y332217D01*

-X117938Y332195D01*

-Y188561D01*

-G37*

-G36*

-Y178561D02*X117757Y178672D01*

-X117132Y178931D01*

-X116474Y179089D01*

-X115799Y179142D01*

-X115792Y179142D01*

-Y180516D01*

-X115799Y180516D01*

-X116474Y180569D01*

-X117132Y180727D01*

-X117757Y180986D01*

-X117938Y181097D01*

-Y178561D01*

-G37*

-G36*

-Y97000D02*X115792D01*

-Y120311D01*

-X115902Y120439D01*

-X116050Y120680D01*

-X116158Y120942D01*

-X116224Y121218D01*

-X116241Y121500D01*

-X116224Y121782D01*

-X116158Y122058D01*

-X116050Y122320D01*

-X115902Y122561D01*

-X115792Y122689D01*

-Y130733D01*

-X115999Y130783D01*

-X116261Y130891D01*

-X116502Y131039D01*

-X116718Y131223D01*

-X116902Y131439D01*

-X117050Y131680D01*

-X117158Y131942D01*

-X117224Y132218D01*

-X117241Y132500D01*

-X117224Y132782D01*

-X117158Y133058D01*

-X117050Y133320D01*

-X116902Y133561D01*

-X116718Y133777D01*

-X116502Y133961D01*

-X116261Y134109D01*

-X115999Y134217D01*

-X115792Y134267D01*

-Y170516D01*

-X115799Y170516D01*

-X116474Y170569D01*

-X117132Y170727D01*

-X117757Y170986D01*

-X117938Y171097D01*

-Y97000D01*

-G37*

-G36*

-X111938Y182913D02*X111956Y182871D01*

-X112309Y182294D01*

-X112749Y181779D01*

-X113264Y181339D01*

-X113841Y180986D01*

-X114466Y180727D01*

-X115124Y180569D01*

-X115792Y180516D01*

-Y179142D01*

-X115124Y179089D01*

-X114466Y178931D01*

-X113841Y178672D01*

-X113264Y178319D01*

-X112749Y177879D01*

-X112309Y177364D01*

-X111956Y176787D01*

-X111938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y362913D02*X111956Y362871D01*

-X112309Y362294D01*

-X112749Y361779D01*

-X113264Y361339D01*

-X113841Y360986D01*

-X114466Y360727D01*

-X115124Y360569D01*

-X115792Y360516D01*

-Y189142D01*

-X115124Y189089D01*

-X114466Y188931D01*

-X113841Y188672D01*

-X113264Y188319D01*

-X112749Y187879D01*

-X112309Y187364D01*

-X111956Y186787D01*

-X111938Y186745D01*

-Y332195D01*

-X111941Y332194D01*

-X112223Y332217D01*

-X112499Y332283D01*

-X112761Y332391D01*

-X113002Y332539D01*

-X113218Y332723D01*

-X113402Y332939D01*

-X113550Y333180D01*

-X113658Y333442D01*

-X113724Y333718D01*

-X113741Y334000D01*

-X113724Y334282D01*

-X113658Y334558D01*

-X113550Y334820D01*

-X113402Y335061D01*

-X113218Y335277D01*

-X113002Y335461D01*

-X112761Y335609D01*

-X112499Y335717D01*

-X112223Y335783D01*

-X111941Y335806D01*

-X111938Y335805D01*

-Y339195D01*

-X111941Y339194D01*

-X112223Y339217D01*

-X112499Y339283D01*

-X112761Y339391D01*

-X113002Y339539D01*

-X113218Y339723D01*

-X113402Y339939D01*

-X113550Y340180D01*

-X113658Y340442D01*

-X113724Y340718D01*

-X113741Y341000D01*

-X113724Y341282D01*

-X113658Y341558D01*

-X113550Y341820D01*

-X113402Y342061D01*

-X113218Y342277D01*

-X113002Y342461D01*

-X112761Y342609D01*

-X112499Y342717D01*

-X112223Y342783D01*

-X111941Y342806D01*

-X111938Y342805D01*

-Y355695D01*

-X111941Y355694D01*

-X112223Y355717D01*

-X112499Y355783D01*

-X112761Y355891D01*

-X113002Y356039D01*

-X113218Y356223D01*

-X113402Y356439D01*

-X113550Y356680D01*

-X113658Y356942D01*

-X113724Y357218D01*

-X113741Y357500D01*

-X113724Y357782D01*

-X113658Y358058D01*

-X113550Y358320D01*

-X113402Y358561D01*

-X113218Y358777D01*

-X113002Y358961D01*

-X112761Y359109D01*

-X112499Y359217D01*

-X112223Y359283D01*

-X111941Y359306D01*

-X111938Y359305D01*

-Y362913D01*

-G37*

-G36*

-Y372913D02*X111956Y372871D01*

-X112309Y372294D01*

-X112749Y371779D01*

-X113264Y371339D01*

-X113841Y370986D01*

-X114466Y370727D01*

-X115124Y370569D01*

-X115792Y370516D01*

-Y369142D01*

-X115124Y369089D01*

-X114466Y368931D01*

-X113841Y368672D01*

-X113264Y368319D01*

-X112749Y367879D01*

-X112309Y367364D01*

-X111956Y366787D01*

-X111938Y366745D01*

-Y372913D01*

-G37*

-G36*

-Y397000D02*X115792D01*

-Y379142D01*

-X115124Y379089D01*

-X114466Y378931D01*

-X113841Y378672D01*

-X113264Y378319D01*

-X112749Y377879D01*

-X112309Y377364D01*

-X111956Y376787D01*

-X111938Y376745D01*

-Y397000D01*

-G37*

-G36*

-X115792Y97000D02*X111938D01*

-Y125557D01*

-X111940Y125557D01*

-X112222Y125534D01*

-X112504Y125557D01*

-X112780Y125623D01*

-X113042Y125731D01*

-X113283Y125879D01*

-X113499Y126063D01*

-X113683Y126279D01*

-X113831Y126520D01*

-X113939Y126782D01*

-X114005Y127058D01*

-X114022Y127340D01*

-X114005Y127622D01*

-X113939Y127898D01*

-X113831Y128160D01*

-X113683Y128401D01*

-X113499Y128617D01*

-X113283Y128801D01*

-X113042Y128949D01*

-X112780Y129057D01*

-X112504Y129123D01*

-X112222Y129146D01*

-X111940Y129123D01*

-X111938Y129123D01*

-Y172913D01*

-X111956Y172871D01*

-X112309Y172294D01*

-X112749Y171779D01*

-X113264Y171339D01*

-X113841Y170986D01*

-X114466Y170727D01*

-X115124Y170569D01*

-X115792Y170516D01*

-Y134267D01*

-X115723Y134283D01*

-X115441Y134306D01*

-X115159Y134283D01*

-X114883Y134217D01*

-X114621Y134109D01*

-X114380Y133961D01*

-X114164Y133777D01*

-X113980Y133561D01*

-X113832Y133320D01*

-X113724Y133058D01*

-X113658Y132782D01*

-X113635Y132500D01*

-X113658Y132218D01*

-X113724Y131942D01*

-X113832Y131680D01*

-X113980Y131439D01*

-X114164Y131223D01*

-X114380Y131039D01*

-X114621Y130891D01*

-X114883Y130783D01*

-X115159Y130717D01*

-X115441Y130694D01*

-X115723Y130717D01*

-X115792Y130733D01*

-Y122689D01*

-X115718Y122777D01*

-X115502Y122961D01*

-X115261Y123109D01*

-X114999Y123217D01*

-X114723Y123283D01*

-X114441Y123306D01*

-X114159Y123283D01*

-X113883Y123217D01*

-X113621Y123109D01*

-X113380Y122961D01*

-X113164Y122777D01*

-X112980Y122561D01*

-X112832Y122320D01*

-X112724Y122058D01*

-X112658Y121782D01*

-X112635Y121500D01*

-X112658Y121218D01*

-X112724Y120942D01*

-X112832Y120680D01*

-X112980Y120439D01*

-X113164Y120223D01*

-X113380Y120039D01*

-X113621Y119891D01*

-X113883Y119783D01*

-X114159Y119717D01*

-X114441Y119694D01*

-X114723Y119717D01*

-X114999Y119783D01*

-X115261Y119891D01*

-X115502Y120039D01*

-X115718Y120223D01*

-X115792Y120311D01*

-Y97000D01*

-G37*

-G36*

-X111938D02*X109343D01*

-Y172099D01*

-X109371Y172082D01*

-X109444Y172052D01*

-X109521Y172034D01*

-X109599Y172027D01*

-X109677Y172034D01*

-X109754Y172052D01*

-X109827Y172082D01*

-X109894Y172123D01*

-X109954Y172174D01*

-X110005Y172234D01*

-X110046Y172301D01*

-X110076Y172374D01*

-X110094Y172451D01*

-X110099Y172529D01*

-Y177129D01*

-X110094Y177207D01*

-X110076Y177284D01*

-X110046Y177357D01*

-X110005Y177424D01*

-X109954Y177484D01*

-X109894Y177535D01*

-X109827Y177576D01*

-X109754Y177606D01*

-X109677Y177624D01*

-X109599Y177631D01*

-X109521Y177624D01*

-X109444Y177606D01*

-X109371Y177576D01*

-X109343Y177559D01*

-Y182501D01*

-X109366Y182513D01*

-X109429Y182561D01*

-X109483Y182618D01*

-X109526Y182684D01*

-X109717Y183045D01*

-X109868Y183425D01*

-X109983Y183817D01*

-X110060Y184218D01*

-X110099Y184625D01*

-Y185033D01*

-X110060Y185440D01*

-X109983Y185841D01*

-X109868Y186233D01*

-X109717Y186613D01*

-X109530Y186976D01*

-X109486Y187042D01*

-X109431Y187100D01*

-X109368Y187148D01*

-X109343Y187161D01*

-Y247000D01*

-X109941D01*

-Y322000D01*

-X109343D01*

-Y362099D01*

-X109371Y362082D01*

-X109444Y362052D01*

-X109521Y362034D01*

-X109599Y362027D01*

-X109677Y362034D01*

-X109754Y362052D01*

-X109827Y362082D01*

-X109894Y362123D01*

-X109954Y362174D01*

-X110005Y362234D01*

-X110046Y362301D01*

-X110076Y362374D01*

-X110094Y362451D01*

-X110099Y362529D01*

-Y367129D01*

-X110094Y367207D01*

-X110076Y367284D01*

-X110046Y367357D01*

-X110005Y367424D01*

-X109954Y367484D01*

-X109894Y367535D01*

-X109827Y367576D01*

-X109754Y367606D01*

-X109677Y367624D01*

-X109599Y367631D01*

-X109521Y367624D01*

-X109444Y367606D01*

-X109371Y367576D01*

-X109343Y367559D01*

-Y372501D01*

-X109366Y372513D01*

-X109429Y372561D01*

-X109483Y372618D01*

-X109526Y372684D01*

-X109717Y373045D01*

-X109868Y373425D01*

-X109983Y373817D01*

-X110060Y374218D01*

-X110099Y374625D01*

-Y375033D01*

-X110060Y375440D01*

-X109983Y375841D01*

-X109868Y376233D01*

-X109717Y376613D01*

-X109530Y376976D01*

-X109486Y377042D01*

-X109431Y377100D01*

-X109368Y377148D01*

-X109343Y377161D01*

-Y397000D01*

-X111938D01*

-Y376745D01*

-X111697Y376162D01*

-X111539Y375504D01*

-X111486Y374829D01*

-X111539Y374154D01*

-X111697Y373496D01*

-X111938Y372913D01*

-Y366745D01*

-X111697Y366162D01*

-X111539Y365504D01*

-X111486Y364829D01*

-X111539Y364154D01*

-X111697Y363496D01*

-X111938Y362913D01*

-Y359305D01*

-X111659Y359283D01*

-X111383Y359217D01*

-X111121Y359109D01*

-X110880Y358961D01*

-X110664Y358777D01*

-X110480Y358561D01*

-X110332Y358320D01*

-X110224Y358058D01*

-X110158Y357782D01*

-X110135Y357500D01*

-X110158Y357218D01*

-X110224Y356942D01*

-X110332Y356680D01*

-X110480Y356439D01*

-X110664Y356223D01*

-X110880Y356039D01*

-X111121Y355891D01*

-X111383Y355783D01*

-X111659Y355717D01*

-X111938Y355695D01*

-Y342805D01*

-X111659Y342783D01*

-X111383Y342717D01*

-X111121Y342609D01*

-X110880Y342461D01*

-X110664Y342277D01*

-X110480Y342061D01*

-X110332Y341820D01*

-X110224Y341558D01*

-X110158Y341282D01*

-X110135Y341000D01*

-X110158Y340718D01*

-X110224Y340442D01*

-X110332Y340180D01*

-X110480Y339939D01*

-X110664Y339723D01*

-X110880Y339539D01*

-X111121Y339391D01*

-X111383Y339283D01*

-X111659Y339217D01*

-X111938Y339195D01*

-Y335805D01*

-X111659Y335783D01*

-X111383Y335717D01*

-X111121Y335609D01*

-X110880Y335461D01*

-X110664Y335277D01*

-X110480Y335061D01*

-X110332Y334820D01*

-X110224Y334558D01*

-X110158Y334282D01*

-X110135Y334000D01*

-X110158Y333718D01*

-X110224Y333442D01*

-X110332Y333180D01*

-X110480Y332939D01*

-X110664Y332723D01*

-X110880Y332539D01*

-X111121Y332391D01*

-X111383Y332283D01*

-X111659Y332217D01*

-X111938Y332195D01*

-Y186745D01*

-X111697Y186162D01*

-X111539Y185504D01*

-X111486Y184829D01*

-X111539Y184154D01*

-X111697Y183496D01*

-X111938Y182913D01*

-Y176745D01*

-X111697Y176162D01*

-X111539Y175504D01*

-X111486Y174829D01*

-X111539Y174154D01*

-X111697Y173496D01*

-X111938Y172913D01*

-Y129123D01*

-X111664Y129057D01*

-X111402Y128949D01*

-X111161Y128801D01*

-X110945Y128617D01*

-X110761Y128401D01*

-X110613Y128160D01*

-X110505Y127898D01*

-X110439Y127622D01*

-X110416Y127340D01*

-X110439Y127058D01*

-X110505Y126782D01*

-X110613Y126520D01*

-X110761Y126279D01*

-X110945Y126063D01*

-X111161Y125879D01*

-X111402Y125731D01*

-X111664Y125623D01*

-X111938Y125557D01*

-Y97000D01*

-G37*

-G36*

-X109343Y322000D02*X105801D01*

-Y360529D01*

-X108099D01*

-X108177Y360534D01*

-X108254Y360552D01*

-X108327Y360582D01*

-X108394Y360623D01*

-X108454Y360674D01*

-X108505Y360734D01*

-X108546Y360801D01*

-X108576Y360874D01*

-X108594Y360951D01*

-X108601Y361029D01*

-X108594Y361107D01*

-X108576Y361184D01*

-X108546Y361257D01*

-X108505Y361324D01*

-X108454Y361384D01*

-X108394Y361435D01*

-X108327Y361476D01*

-X108254Y361506D01*

-X108177Y361524D01*

-X108099Y361529D01*

-X105801D01*

-Y368129D01*

-X108099D01*

-X108177Y368134D01*

-X108254Y368152D01*

-X108327Y368182D01*

-X108394Y368223D01*

-X108454Y368274D01*

-X108505Y368334D01*

-X108546Y368401D01*

-X108576Y368474D01*

-X108594Y368551D01*

-X108601Y368629D01*

-X108594Y368707D01*

-X108576Y368784D01*

-X108546Y368857D01*

-X108505Y368924D01*

-X108454Y368984D01*

-X108394Y369035D01*

-X108327Y369076D01*

-X108254Y369106D01*

-X108177Y369124D01*

-X108099Y369129D01*

-X105801D01*

-Y370529D01*

-X106003D01*

-X106410Y370568D01*

-X106811Y370645D01*

-X107203Y370760D01*

-X107583Y370911D01*

-X107946Y371098D01*

-X108012Y371142D01*

-X108070Y371197D01*

-X108118Y371260D01*

-X108156Y371329D01*

-X108182Y371404D01*

-X108197Y371482D01*

-X108199Y371561D01*

-X108189Y371640D01*

-X108166Y371716D01*

-X108132Y371788D01*

-X108088Y371853D01*

-X108033Y371911D01*

-X107970Y371959D01*

-X107901Y371997D01*

-X107826Y372023D01*

-X107748Y372038D01*

-X107669Y372040D01*

-X107590Y372030D01*

-X107514Y372007D01*

-X107443Y371972D01*

-X107167Y371826D01*

-X106876Y371710D01*

-X106575Y371622D01*

-X106267Y371562D01*

-X105956Y371533D01*

-X105801D01*

-Y378125D01*

-X105956D01*

-X106267Y378096D01*

-X106575Y378036D01*

-X106876Y377948D01*

-X107167Y377832D01*

-X107445Y377689D01*

-X107515Y377654D01*

-X107591Y377632D01*

-X107669Y377622D01*

-X107748Y377624D01*

-X107825Y377638D01*

-X107899Y377665D01*

-X107968Y377702D01*

-X108031Y377750D01*

-X108085Y377807D01*

-X108129Y377872D01*

-X108163Y377943D01*

-X108185Y378019D01*

-X108195Y378097D01*

-X108193Y378176D01*

-X108179Y378253D01*

-X108152Y378327D01*

-X108115Y378396D01*

-X108067Y378459D01*

-X108010Y378513D01*

-X107944Y378556D01*

-X107583Y378747D01*

-X107203Y378898D01*

-X106811Y379013D01*

-X106410Y379090D01*

-X106003Y379129D01*

-X105801D01*

-Y397000D01*

-X109343D01*

-Y377161D01*

-X109299Y377186D01*

-X109224Y377212D01*

-X109146Y377227D01*

-X109067Y377229D01*

-X108988Y377219D01*

-X108912Y377196D01*

-X108840Y377162D01*

-X108775Y377118D01*

-X108717Y377063D01*

-X108669Y377000D01*

-X108631Y376931D01*

-X108605Y376856D01*

-X108590Y376778D01*

-X108588Y376699D01*

-X108598Y376620D01*

-X108621Y376544D01*

-X108656Y376473D01*

-X108802Y376197D01*

-X108918Y375906D01*

-X109006Y375605D01*

-X109066Y375297D01*

-X109095Y374986D01*

-Y374672D01*

-X109066Y374361D01*

-X109006Y374053D01*

-X108918Y373752D01*

-X108802Y373461D01*

-X108659Y373183D01*

-X108624Y373113D01*

-X108602Y373037D01*

-X108592Y372959D01*

-X108594Y372880D01*

-X108608Y372803D01*

-X108635Y372729D01*

-X108672Y372660D01*

-X108720Y372597D01*

-X108777Y372543D01*

-X108842Y372499D01*

-X108913Y372465D01*

-X108989Y372443D01*

-X109067Y372433D01*

-X109146Y372435D01*

-X109223Y372449D01*

-X109297Y372476D01*

-X109343Y372501D01*

-Y367559D01*

-X109304Y367535D01*

-X109244Y367484D01*

-X109193Y367424D01*

-X109152Y367357D01*

-X109122Y367284D01*

-X109104Y367207D01*

-X109099Y367129D01*

-Y362529D01*

-X109104Y362451D01*

-X109122Y362374D01*

-X109152Y362301D01*

-X109193Y362234D01*

-X109244Y362174D01*

-X109304Y362123D01*

-X109343Y362099D01*

-Y322000D01*

-G37*

-G36*

-Y97000D02*X105801D01*

-Y170529D01*

-X108099D01*

-X108177Y170534D01*

-X108254Y170552D01*

-X108327Y170582D01*

-X108394Y170623D01*

-X108454Y170674D01*

-X108505Y170734D01*

-X108546Y170801D01*

-X108576Y170874D01*

-X108594Y170951D01*

-X108601Y171029D01*

-X108594Y171107D01*

-X108576Y171184D01*

-X108546Y171257D01*

-X108505Y171324D01*

-X108454Y171384D01*

-X108394Y171435D01*

-X108327Y171476D01*

-X108254Y171506D01*

-X108177Y171524D01*

-X108099Y171529D01*

-X105801D01*

-Y178129D01*

-X108099D01*

-X108177Y178134D01*

-X108254Y178152D01*

-X108327Y178182D01*

-X108394Y178223D01*

-X108454Y178274D01*

-X108505Y178334D01*

-X108546Y178401D01*

-X108576Y178474D01*

-X108594Y178551D01*

-X108601Y178629D01*

-X108594Y178707D01*

-X108576Y178784D01*

-X108546Y178857D01*

-X108505Y178924D01*

-X108454Y178984D01*

-X108394Y179035D01*

-X108327Y179076D01*

-X108254Y179106D01*

-X108177Y179124D01*

-X108099Y179129D01*

-X105801D01*

-Y180529D01*

-X106003D01*

-X106410Y180568D01*

-X106811Y180645D01*

-X107203Y180760D01*

-X107583Y180911D01*

-X107946Y181098D01*

-X108012Y181142D01*

-X108070Y181197D01*

-X108118Y181260D01*

-X108156Y181329D01*

-X108182Y181404D01*

-X108197Y181482D01*

-X108199Y181561D01*

-X108189Y181640D01*

-X108166Y181716D01*

-X108132Y181788D01*

-X108088Y181853D01*

-X108033Y181911D01*

-X107970Y181959D01*

-X107901Y181997D01*

-X107826Y182023D01*

-X107748Y182038D01*

-X107669Y182040D01*

-X107590Y182030D01*

-X107514Y182007D01*

-X107443Y181972D01*

-X107167Y181826D01*

-X106876Y181710D01*

-X106575Y181622D01*

-X106267Y181562D01*

-X105956Y181533D01*

-X105801D01*

-Y188125D01*

-X105956D01*

-X106267Y188096D01*

-X106575Y188036D01*

-X106876Y187948D01*

-X107167Y187832D01*

-X107445Y187689D01*

-X107515Y187654D01*

-X107591Y187632D01*

-X107669Y187622D01*

-X107748Y187624D01*

-X107825Y187638D01*

-X107899Y187665D01*

-X107968Y187702D01*

-X108031Y187750D01*

-X108085Y187807D01*

-X108129Y187872D01*

-X108163Y187943D01*

-X108185Y188019D01*

-X108195Y188097D01*

-X108193Y188176D01*

-X108179Y188253D01*

-X108152Y188327D01*

-X108115Y188396D01*

-X108067Y188459D01*

-X108010Y188513D01*

-X107944Y188556D01*

-X107583Y188747D01*

-X107203Y188898D01*

-X106811Y189013D01*

-X106410Y189090D01*

-X106003Y189129D01*

-X105801D01*

-Y203321D01*

-X105902Y203439D01*

-X106050Y203680D01*

-X106158Y203942D01*

-X106224Y204218D01*

-X106241Y204500D01*

-X106224Y204782D01*

-X106158Y205058D01*

-X106050Y205320D01*

-X105902Y205561D01*

-X105801Y205679D01*

-Y247000D01*

-X109343D01*

-Y187161D01*

-X109299Y187186D01*

-X109224Y187212D01*

-X109146Y187227D01*

-X109067Y187229D01*

-X108988Y187219D01*

-X108912Y187196D01*

-X108840Y187162D01*

-X108775Y187118D01*

-X108717Y187063D01*

-X108669Y187000D01*

-X108631Y186931D01*

-X108605Y186856D01*

-X108590Y186778D01*

-X108588Y186699D01*

-X108598Y186620D01*

-X108621Y186544D01*

-X108656Y186473D01*

-X108802Y186197D01*

-X108918Y185906D01*

-X109006Y185605D01*

-X109066Y185297D01*

-X109095Y184986D01*

-Y184672D01*

-X109066Y184361D01*

-X109006Y184053D01*

-X108918Y183752D01*

-X108802Y183461D01*

-X108659Y183183D01*

-X108624Y183113D01*

-X108602Y183037D01*

-X108592Y182959D01*

-X108594Y182880D01*

-X108608Y182803D01*

-X108635Y182729D01*

-X108672Y182660D01*

-X108720Y182597D01*

-X108777Y182543D01*

-X108842Y182499D01*

-X108913Y182465D01*

-X108989Y182443D01*

-X109067Y182433D01*

-X109146Y182435D01*

-X109223Y182449D01*

-X109297Y182476D01*

-X109343Y182501D01*

-Y177559D01*

-X109304Y177535D01*

-X109244Y177484D01*

-X109193Y177424D01*

-X109152Y177357D01*

-X109122Y177284D01*

-X109104Y177207D01*

-X109099Y177129D01*

-Y172529D01*

-X109104Y172451D01*

-X109122Y172374D01*

-X109152Y172301D01*

-X109193Y172234D01*

-X109244Y172174D01*

-X109304Y172123D01*

-X109343Y172099D01*

-Y97000D01*

-G37*

-G36*

-X105801Y322000D02*X102255D01*

-Y362099D01*

-X102294Y362123D01*

-X102354Y362174D01*

-X102405Y362234D01*

-X102446Y362301D01*

-X102476Y362374D01*

-X102494Y362451D01*

-X102499Y362529D01*

-Y367129D01*

-X102494Y367207D01*

-X102476Y367284D01*

-X102446Y367357D01*

-X102405Y367424D01*

-X102354Y367484D01*

-X102294Y367535D01*

-X102255Y367559D01*

-Y372497D01*

-X102299Y372472D01*

-X102374Y372446D01*

-X102452Y372431D01*

-X102531Y372429D01*

-X102610Y372439D01*

-X102686Y372462D01*

-X102758Y372496D01*

-X102823Y372540D01*

-X102881Y372595D01*

-X102929Y372658D01*

-X102967Y372727D01*

-X102993Y372802D01*

-X103008Y372880D01*

-X103010Y372959D01*

-X103000Y373038D01*

-X102977Y373114D01*

-X102942Y373185D01*

-X102796Y373461D01*

-X102680Y373752D01*

-X102592Y374053D01*

-X102532Y374361D01*

-X102503Y374672D01*

-Y374986D01*

-X102532Y375297D01*

-X102592Y375605D01*

-X102680Y375906D01*

-X102796Y376197D01*

-X102939Y376475D01*

-X102974Y376545D01*

-X102996Y376621D01*

-X103006Y376699D01*

-X103004Y376778D01*

-X102990Y376855D01*

-X102963Y376929D01*

-X102926Y376998D01*

-X102878Y377061D01*

-X102821Y377115D01*

-X102756Y377159D01*

-X102685Y377193D01*

-X102609Y377215D01*

-X102531Y377225D01*

-X102452Y377223D01*

-X102375Y377209D01*

-X102301Y377182D01*

-X102255Y377157D01*

-Y397000D01*

-X105801D01*

-Y379129D01*

-X105595D01*

-X105188Y379090D01*

-X104787Y379013D01*

-X104395Y378898D01*

-X104015Y378747D01*

-X103652Y378560D01*

-X103586Y378516D01*

-X103528Y378461D01*

-X103480Y378398D01*

-X103442Y378329D01*

-X103416Y378254D01*

-X103401Y378176D01*

-X103399Y378097D01*

-X103409Y378018D01*

-X103432Y377942D01*

-X103466Y377870D01*

-X103510Y377805D01*

-X103565Y377747D01*

-X103628Y377699D01*

-X103697Y377661D01*

-X103772Y377635D01*

-X103850Y377620D01*

-X103929Y377618D01*

-X104008Y377628D01*

-X104084Y377651D01*

-X104155Y377686D01*

-X104431Y377832D01*

-X104722Y377948D01*

-X105023Y378036D01*

-X105331Y378096D01*

-X105642Y378125D01*

-X105801D01*

-Y371533D01*

-X105642D01*

-X105331Y371562D01*

-X105023Y371622D01*

-X104722Y371710D01*

-X104431Y371826D01*

-X104153Y371969D01*

-X104083Y372004D01*

-X104007Y372026D01*

-X103929Y372036D01*

-X103850Y372034D01*

-X103773Y372020D01*

-X103699Y371993D01*

-X103630Y371956D01*

-X103567Y371908D01*

-X103513Y371851D01*

-X103469Y371786D01*

-X103435Y371715D01*

-X103413Y371639D01*

-X103403Y371561D01*

-X103405Y371482D01*

-X103419Y371405D01*

-X103446Y371331D01*

-X103483Y371262D01*

-X103531Y371199D01*

-X103588Y371145D01*

-X103654Y371102D01*

-X104015Y370911D01*

-X104395Y370760D01*

-X104787Y370645D01*

-X105188Y370568D01*

-X105595Y370529D01*

-X105801D01*

-Y369129D01*

-X103499D01*

-X103421Y369124D01*

-X103344Y369106D01*

-X103271Y369076D01*

-X103204Y369035D01*

-X103144Y368984D01*

-X103093Y368924D01*

-X103052Y368857D01*

-X103022Y368784D01*

-X103004Y368707D01*

-X102997Y368629D01*

-X103004Y368551D01*

-X103022Y368474D01*

-X103052Y368401D01*

-X103093Y368334D01*

-X103144Y368274D01*

-X103204Y368223D01*

-X103271Y368182D01*

-X103344Y368152D01*

-X103421Y368134D01*

-X103499Y368129D01*

-X105801D01*

-Y361529D01*

-X103499D01*

-X103421Y361524D01*

-X103344Y361506D01*

-X103271Y361476D01*

-X103204Y361435D01*

-X103144Y361384D01*

-X103093Y361324D01*

-X103052Y361257D01*

-X103022Y361184D01*

-X103004Y361107D01*

-X102997Y361029D01*

-X103004Y360951D01*

-X103022Y360874D01*

-X103052Y360801D01*

-X103093Y360734D01*

-X103144Y360674D01*

-X103204Y360623D01*

-X103271Y360582D01*

-X103344Y360552D01*

-X103421Y360534D01*

-X103499Y360529D01*

-X105801D01*

-Y322000D01*

-G37*

-G36*

-X102255D02*X85784D01*

-Y359749D01*

-X85799Y359748D01*

-X87376Y359872D01*

-X88914Y360241D01*

-X90376Y360847D01*

-X91724Y361673D01*

-X92927Y362701D01*

-X93955Y363904D01*

-X94781Y365252D01*

-X95387Y366714D01*

-X95756Y368252D01*

-X95849Y369829D01*

-X95756Y371406D01*

-X95387Y372944D01*

-X94781Y374406D01*

-X93955Y375754D01*

-X92927Y376957D01*

-X91724Y377985D01*

-X90376Y378811D01*

-X88914Y379417D01*

-X87376Y379786D01*

-X85799Y379910D01*

-X85784Y379909D01*

-Y397000D01*

-X102255D01*

-Y377157D01*

-X102232Y377145D01*

-X102169Y377097D01*

-X102115Y377040D01*

-X102072Y376974D01*

-X101881Y376613D01*

-X101730Y376233D01*

-X101615Y375841D01*

-X101538Y375440D01*

-X101499Y375033D01*

-Y374625D01*

-X101538Y374218D01*

-X101615Y373817D01*

-X101730Y373425D01*

-X101881Y373045D01*

-X102068Y372682D01*

-X102112Y372616D01*

-X102167Y372558D01*

-X102230Y372510D01*

-X102255Y372497D01*

-Y367559D01*

-X102227Y367576D01*

-X102154Y367606D01*

-X102077Y367624D01*

-X101999Y367631D01*

-X101921Y367624D01*

-X101844Y367606D01*

-X101771Y367576D01*

-X101704Y367535D01*

-X101644Y367484D01*

-X101593Y367424D01*

-X101552Y367357D01*

-X101522Y367284D01*

-X101504Y367207D01*

-X101499Y367129D01*

-Y362529D01*

-X101504Y362451D01*

-X101522Y362374D01*

-X101552Y362301D01*

-X101593Y362234D01*

-X101644Y362174D01*

-X101704Y362123D01*

-X101771Y362082D01*

-X101844Y362052D01*

-X101921Y362034D01*

-X101999Y362027D01*

-X102077Y362034D01*

-X102154Y362052D01*

-X102227Y362082D01*

-X102255Y362099D01*

-Y322000D01*

-G37*

-G36*

-Y247000D02*X105801D01*

-Y205679D01*

-X105718Y205777D01*

-X105502Y205961D01*

-X105261Y206109D01*

-X104999Y206217D01*

-X104723Y206283D01*

-X104441Y206306D01*

-X104159Y206283D01*

-X103883Y206217D01*

-X103621Y206109D01*

-X103380Y205961D01*

-X103164Y205777D01*

-X102980Y205561D01*

-X102832Y205320D01*

-X102724Y205058D01*

-X102691Y204921D01*

-X102658Y205058D01*

-X102550Y205320D01*

-X102402Y205561D01*

-X102255Y205734D01*

-Y247000D01*

-G37*

-G36*

-X105801Y97000D02*X102255D01*

-Y172099D01*

-X102294Y172123D01*

-X102354Y172174D01*

-X102405Y172234D01*

-X102446Y172301D01*

-X102476Y172374D01*

-X102494Y172451D01*

-X102499Y172529D01*

-Y177129D01*

-X102494Y177207D01*

-X102476Y177284D01*

-X102446Y177357D01*

-X102405Y177424D01*

-X102354Y177484D01*

-X102294Y177535D01*

-X102255Y177559D01*

-Y182497D01*

-X102299Y182472D01*

-X102374Y182446D01*

-X102452Y182431D01*

-X102531Y182429D01*

-X102610Y182439D01*

-X102686Y182462D01*

-X102758Y182496D01*

-X102823Y182540D01*

-X102881Y182595D01*

-X102929Y182658D01*

-X102967Y182727D01*

-X102993Y182802D01*

-X103008Y182880D01*

-X103010Y182959D01*

-X103000Y183038D01*

-X102977Y183114D01*

-X102942Y183185D01*

-X102796Y183461D01*

-X102680Y183752D01*

-X102592Y184053D01*

-X102532Y184361D01*

-X102503Y184672D01*

-Y184986D01*

-X102532Y185297D01*

-X102592Y185605D01*

-X102680Y185906D01*

-X102796Y186197D01*

-X102939Y186475D01*

-X102974Y186545D01*

-X102996Y186621D01*

-X103006Y186699D01*

-X103004Y186778D01*

-X102990Y186855D01*

-X102963Y186929D01*

-X102926Y186998D01*

-X102878Y187061D01*

-X102821Y187115D01*

-X102756Y187159D01*

-X102685Y187193D01*

-X102609Y187215D01*

-X102531Y187225D01*

-X102452Y187223D01*

-X102375Y187209D01*

-X102301Y187182D01*

-X102255Y187157D01*

-Y203266D01*

-X102402Y203439D01*

-X102550Y203680D01*

-X102658Y203942D01*

-X102691Y204079D01*

-X102724Y203942D01*

-X102832Y203680D01*

-X102980Y203439D01*

-X103164Y203223D01*

-X103380Y203039D01*

-X103621Y202891D01*

-X103883Y202783D01*

-X104159Y202717D01*

-X104441Y202694D01*

-X104723Y202717D01*

-X104999Y202783D01*

-X105261Y202891D01*

-X105502Y203039D01*

-X105718Y203223D01*

-X105801Y203321D01*

-Y189129D01*

-X105595D01*

-X105188Y189090D01*

-X104787Y189013D01*

-X104395Y188898D01*

-X104015Y188747D01*

-X103652Y188560D01*

-X103586Y188516D01*

-X103528Y188461D01*

-X103480Y188398D01*

-X103442Y188329D01*

-X103416Y188254D01*

-X103401Y188176D01*

-X103399Y188097D01*

-X103409Y188018D01*

-X103432Y187942D01*

-X103466Y187870D01*

-X103510Y187805D01*

-X103565Y187747D01*

-X103628Y187699D01*

-X103697Y187661D01*

-X103772Y187635D01*

-X103850Y187620D01*

-X103929Y187618D01*

-X104008Y187628D01*

-X104084Y187651D01*

-X104155Y187686D01*

-X104431Y187832D01*

-X104722Y187948D01*

-X105023Y188036D01*

-X105331Y188096D01*

-X105642Y188125D01*

-X105801D01*

-Y181533D01*

-X105642D01*

-X105331Y181562D01*

-X105023Y181622D01*

-X104722Y181710D01*

-X104431Y181826D01*

-X104153Y181969D01*

-X104083Y182004D01*

-X104007Y182026D01*

-X103929Y182036D01*

-X103850Y182034D01*

-X103773Y182020D01*

-X103699Y181993D01*

-X103630Y181956D01*

-X103567Y181908D01*

-X103513Y181851D01*

-X103469Y181786D01*

-X103435Y181715D01*

-X103413Y181639D01*

-X103403Y181561D01*

-X103405Y181482D01*

-X103419Y181405D01*

-X103446Y181331D01*

-X103483Y181262D01*

-X103531Y181199D01*

-X103588Y181145D01*

-X103654Y181102D01*

-X104015Y180911D01*

-X104395Y180760D01*

-X104787Y180645D01*

-X105188Y180568D01*

-X105595Y180529D01*

-X105801D01*

-Y179129D01*

-X103499D01*

-X103421Y179124D01*

-X103344Y179106D01*

-X103271Y179076D01*

-X103204Y179035D01*

-X103144Y178984D01*

-X103093Y178924D01*

-X103052Y178857D01*

-X103022Y178784D01*

-X103004Y178707D01*

-X102997Y178629D01*

-X103004Y178551D01*

-X103022Y178474D01*

-X103052Y178401D01*

-X103093Y178334D01*

-X103144Y178274D01*

-X103204Y178223D01*

-X103271Y178182D01*

-X103344Y178152D01*

-X103421Y178134D01*

-X103499Y178129D01*

-X105801D01*

-Y171529D01*

-X103499D01*

-X103421Y171524D01*

-X103344Y171506D01*

-X103271Y171476D01*

-X103204Y171435D01*

-X103144Y171384D01*

-X103093Y171324D01*

-X103052Y171257D01*

-X103022Y171184D01*

-X103004Y171107D01*

-X102997Y171029D01*

-X103004Y170951D01*

-X103022Y170874D01*

-X103052Y170801D01*

-X103093Y170734D01*

-X103144Y170674D01*

-X103204Y170623D01*

-X103271Y170582D01*

-X103344Y170552D01*

-X103421Y170534D01*

-X103499Y170529D01*

-X105801D01*

-Y97000D01*

-G37*

-G36*

-X102255D02*X89441D01*

-Y170460D01*

-X90376Y170847D01*

-X91724Y171673D01*

-X92927Y172701D01*

-X93955Y173904D01*

-X94781Y175252D01*

-X95387Y176714D01*

-X95756Y178252D01*

-X95849Y179829D01*

-X95756Y181406D01*

-X95387Y182944D01*

-X94781Y184406D01*

-X93955Y185754D01*

-X92927Y186957D01*

-X91724Y187985D01*

-X90376Y188811D01*

-X89441Y189198D01*

-Y217437D01*

-X89686Y217837D01*

-X89972Y218528D01*

-X90147Y219255D01*

-X90191Y220000D01*

-X90147Y220745D01*

-X89972Y221472D01*

-X89686Y222163D01*

-X89441Y222563D01*

-Y227437D01*

-X89686Y227837D01*

-X89972Y228528D01*

-X90147Y229255D01*

-X90191Y230000D01*

-X90147Y230745D01*

-X89972Y231472D01*

-X89686Y232163D01*

-X89441Y232563D01*

-Y237498D01*

-X89559Y237507D01*

-X89673Y237535D01*

-X89783Y237580D01*

-X89883Y237641D01*

-X89973Y237718D01*

-X90050Y237808D01*

-X90111Y237908D01*

-X90156Y238018D01*

-X90184Y238132D01*

-X90191Y238250D01*

-Y241750D01*

-X90184Y241868D01*

-X90156Y241982D01*

-X90111Y242092D01*

-X90050Y242192D01*

-X89973Y242282D01*

-X89883Y242359D01*

-X89783Y242420D01*

-X89673Y242465D01*

-X89559Y242493D01*

-X89441Y242502D01*

-Y247000D01*

-X102255D01*

-Y205734D01*

-X102218Y205777D01*

-X102002Y205961D01*

-X101761Y206109D01*

-X101499Y206217D01*

-X101223Y206283D01*

-X100941Y206306D01*

-X100659Y206283D01*

-X100383Y206217D01*

-X100121Y206109D01*

-X99880Y205961D01*

-X99664Y205777D01*

-X99480Y205561D01*

-X99332Y205320D01*

-X99224Y205058D01*

-X99158Y204782D01*

-X99135Y204500D01*

-X99158Y204218D01*

-X99224Y203942D01*

-X99332Y203680D01*

-X99480Y203439D01*

-X99664Y203223D01*

-X99880Y203039D01*

-X100121Y202891D01*

-X100383Y202783D01*

-X100659Y202717D01*

-X100941Y202694D01*

-X101223Y202717D01*

-X101499Y202783D01*

-X101761Y202891D01*

-X102002Y203039D01*

-X102218Y203223D01*

-X102255Y203266D01*

-Y187157D01*

-X102232Y187145D01*

-X102169Y187097D01*

-X102115Y187040D01*

-X102072Y186974D01*

-X101881Y186613D01*

-X101730Y186233D01*

-X101615Y185841D01*

-X101538Y185440D01*

-X101499Y185033D01*

-Y184625D01*

-X101538Y184218D01*

-X101615Y183817D01*

-X101730Y183425D01*

-X101881Y183045D01*

-X102068Y182682D01*

-X102112Y182616D01*

-X102167Y182558D01*

-X102230Y182510D01*

-X102255Y182497D01*

-Y177559D01*

-X102227Y177576D01*

-X102154Y177606D01*

-X102077Y177624D01*

-X101999Y177631D01*

-X101921Y177624D01*

-X101844Y177606D01*

-X101771Y177576D01*

-X101704Y177535D01*

-X101644Y177484D01*

-X101593Y177424D01*

-X101552Y177357D01*

-X101522Y177284D01*

-X101504Y177207D01*

-X101499Y177129D01*

-Y172529D01*

-X101504Y172451D01*

-X101522Y172374D01*

-X101552Y172301D01*

-X101593Y172234D01*

-X101644Y172174D01*

-X101704Y172123D01*

-X101771Y172082D01*

-X101844Y172052D01*

-X101921Y172034D01*

-X101999Y172027D01*

-X102077Y172034D01*

-X102154Y172052D01*

-X102227Y172082D01*

-X102255Y172099D01*

-Y97000D01*

-G37*

-G36*

-X89441Y232563D02*X89296Y232801D01*

-X88810Y233369D01*

-X88242Y233855D01*

-X87604Y234245D01*

-X86913Y234531D01*

-X86186Y234706D01*

-X85784Y234738D01*

-Y235250D01*

-X87191D01*

-X87309Y235257D01*

-X87423Y235285D01*

-X87533Y235330D01*

-X87633Y235391D01*

-X87723Y235468D01*

-X87800Y235558D01*

-X87861Y235658D01*

-X87906Y235768D01*

-X87934Y235882D01*

-X87943Y236000D01*

-X87934Y236118D01*

-X87906Y236232D01*

-X87861Y236342D01*

-X87800Y236442D01*

-X87723Y236532D01*

-X87633Y236609D01*

-X87533Y236670D01*

-X87423Y236715D01*

-X87309Y236743D01*

-X87191Y236750D01*

-X85784D01*

-Y243250D01*

-X87191D01*

-X87309Y243257D01*

-X87423Y243285D01*

-X87533Y243330D01*

-X87633Y243391D01*

-X87723Y243468D01*

-X87800Y243558D01*

-X87861Y243658D01*

-X87906Y243768D01*

-X87934Y243882D01*

-X87943Y244000D01*

-X87934Y244118D01*

-X87906Y244232D01*

-X87861Y244342D01*

-X87800Y244442D01*

-X87723Y244532D01*

-X87633Y244609D01*

-X87533Y244670D01*

-X87423Y244715D01*

-X87309Y244743D01*

-X87191Y244750D01*

-X85784D01*

-Y247000D01*

-X89441D01*

-Y242502D01*

-X89323Y242493D01*

-X89209Y242465D01*

-X89099Y242420D01*

-X88999Y242359D01*

-X88909Y242282D01*

-X88832Y242192D01*

-X88771Y242092D01*

-X88726Y241982D01*

-X88698Y241868D01*

-X88691Y241750D01*

-Y238250D01*

-X88698Y238132D01*

-X88726Y238018D01*

-X88771Y237908D01*

-X88832Y237808D01*

-X88909Y237718D01*

-X88999Y237641D01*

-X89099Y237580D01*

-X89209Y237535D01*

-X89323Y237507D01*

-X89441Y237498D01*

-Y232563D01*

-G37*

-G36*

-Y222563D02*X89296Y222801D01*

-X88810Y223369D01*

-X88242Y223855D01*

-X87604Y224245D01*

-X86913Y224531D01*

-X86186Y224706D01*

-X85784Y224738D01*

-Y225262D01*

-X86186Y225294D01*

-X86913Y225469D01*

-X87604Y225755D01*

-X88242Y226145D01*

-X88810Y226631D01*

-X89296Y227199D01*

-X89441Y227437D01*

-Y222563D01*

-G37*

-G36*

-Y189198D02*X88914Y189417D01*

-X87376Y189786D01*

-X85799Y189910D01*

-X85784Y189909D01*

-Y215262D01*

-X86186Y215294D01*

-X86913Y215469D01*

-X87604Y215755D01*

-X88242Y216145D01*

-X88810Y216631D01*

-X89296Y217199D01*

-X89441Y217437D01*

-Y189198D01*

-G37*

-G36*

-Y97000D02*X85784D01*

-Y169749D01*

-X85799Y169748D01*

-X87376Y169872D01*

-X88914Y170241D01*

-X89441Y170460D01*

-Y97000D01*

-G37*

-G36*

-X85784Y322000D02*X73941D01*

-X71441Y324500D01*

-Y394500D01*

-X73941Y397000D01*

-X85784D01*

-Y379909D01*

-X84222Y379786D01*

-X82684Y379417D01*

-X81222Y378811D01*

-X79874Y377985D01*

-X78671Y376957D01*

-X77643Y375754D01*

-X76817Y374406D01*

-X76211Y372944D01*

-X75842Y371406D01*

-X75718Y369829D01*

-X75842Y368252D01*

-X76211Y366714D01*

-X76817Y365252D01*

-X77643Y363904D01*

-X78671Y362701D01*

-X79874Y361673D01*

-X81222Y360847D01*

-X82684Y360241D01*

-X84222Y359872D01*

-X85784Y359749D01*

-Y322000D01*

-G37*

-G36*

-X81441Y217437D02*X81586Y217199D01*

-X82072Y216631D01*

-X82640Y216145D01*

-X83278Y215755D01*

-X83969Y215469D01*

-X84696Y215294D01*

-X85441Y215235D01*

-X85784Y215262D01*

-Y189909D01*

-X84222Y189786D01*

-X82684Y189417D01*

-X81441Y188902D01*

-Y217437D01*

-G37*

-G36*

-Y227437D02*X81586Y227199D01*

-X82072Y226631D01*

-X82640Y226145D01*

-X83278Y225755D01*

-X83969Y225469D01*

-X84696Y225294D01*

-X85441Y225235D01*

-X85784Y225262D01*

-Y224738D01*

-X85441Y224765D01*

-X84696Y224706D01*

-X83969Y224531D01*

-X83278Y224245D01*

-X82640Y223855D01*

-X82072Y223369D01*

-X81586Y222801D01*

-X81441Y222563D01*

-Y227437D01*

-G37*

-G36*

-Y247000D02*X85784D01*

-Y244750D01*

-X83691D01*

-X83573Y244743D01*

-X83459Y244715D01*

-X83349Y244670D01*

-X83249Y244609D01*

-X83159Y244532D01*

-X83082Y244442D01*

-X83021Y244342D01*

-X82976Y244232D01*

-X82948Y244118D01*

-X82939Y244000D01*

-X82948Y243882D01*

-X82976Y243768D01*

-X83021Y243658D01*

-X83082Y243558D01*

-X83159Y243468D01*

-X83249Y243391D01*

-X83349Y243330D01*

-X83459Y243285D01*

-X83573Y243257D01*

-X83691Y243250D01*

-X85784D01*

-Y236750D01*

-X83691D01*

-X83573Y236743D01*

-X83459Y236715D01*

-X83349Y236670D01*

-X83249Y236609D01*

-X83159Y236532D01*

-X83082Y236442D01*

-X83021Y236342D01*

-X82976Y236232D01*

-X82948Y236118D01*

-X82939Y236000D01*

-X82948Y235882D01*

-X82976Y235768D01*

-X83021Y235658D01*

-X83082Y235558D01*

-X83159Y235468D01*

-X83249Y235391D01*

-X83349Y235330D01*

-X83459Y235285D01*

-X83573Y235257D01*

-X83691Y235250D01*

-X85784D01*

-Y234738D01*

-X85441Y234765D01*

-X84696Y234706D01*

-X83969Y234531D01*

-X83278Y234245D01*

-X82640Y233855D01*

-X82072Y233369D01*

-X81586Y232801D01*

-X81441Y232563D01*

-Y237498D01*

-X81559Y237507D01*

-X81673Y237535D01*

-X81783Y237580D01*

-X81883Y237641D01*

-X81973Y237718D01*

-X82050Y237808D01*

-X82111Y237908D01*

-X82156Y238018D01*

-X82184Y238132D01*

-X82191Y238250D01*

-Y241750D01*

-X82184Y241868D01*

-X82156Y241982D01*

-X82111Y242092D01*

-X82050Y242192D01*

-X81973Y242282D01*

-X81883Y242359D01*

-X81783Y242420D01*

-X81673Y242465D01*

-X81559Y242493D01*

-X81441Y242502D01*

-Y247000D01*

-G37*

-G36*

-X85784Y97000D02*X81441D01*

-Y170756D01*

-X82684Y170241D01*

-X84222Y169872D01*

-X85784Y169749D01*

-Y97000D01*

-G37*

-G36*

-X81441D02*X71441D01*

-Y244500D01*

-X73941Y247000D01*

-X81441D01*

-Y242502D01*

-X81323Y242493D01*

-X81209Y242465D01*

-X81099Y242420D01*

-X80999Y242359D01*

-X80909Y242282D01*

-X80832Y242192D01*

-X80771Y242092D01*

-X80726Y241982D01*

-X80698Y241868D01*

-X80691Y241750D01*

-Y238250D01*

-X80698Y238132D01*

-X80726Y238018D01*

-X80771Y237908D01*

-X80832Y237808D01*

-X80909Y237718D01*

-X80999Y237641D01*

-X81099Y237580D01*

-X81209Y237535D01*

-X81323Y237507D01*

-X81441Y237498D01*

-Y232563D01*

-X81196Y232163D01*

-X80910Y231472D01*

-X80735Y230745D01*

-X80676Y230000D01*

-X80735Y229255D01*

-X80910Y228528D01*

-X81196Y227837D01*

-X81441Y227437D01*

-Y222563D01*

-X81196Y222163D01*

-X80910Y221472D01*

-X80735Y220745D01*

-X80676Y220000D01*

-X80735Y219255D01*

-X80910Y218528D01*

-X81196Y217837D01*

-X81441Y217437D01*

-Y188902D01*

-X81222Y188811D01*

-X79874Y187985D01*

-X78671Y186957D01*

-X77643Y185754D01*

-X76817Y184406D01*

-X76211Y182944D01*

-X75842Y181406D01*

-X75718Y179829D01*

-X75842Y178252D01*

-X76211Y176714D01*

-X76817Y175252D01*

-X77643Y173904D01*

-X78671Y172701D01*

-X79874Y171673D01*

-X81222Y170847D01*

-X81441Y170756D01*

-Y97000D01*

-G37*

-G36*

-X107941Y130500D02*X114441D01*

-Y124500D01*

-X107941D01*

-Y130500D01*

-G37*

-G36*

-X159441D02*X165941D01*

-Y124500D01*

-X159441D01*

-Y130500D01*

-G37*

-G36*

-X188941D02*X195441D01*

-Y124500D01*

-X188941D01*

-Y130500D01*

-G37*

-G36*

-X240941D02*X247441D01*

-Y124500D01*

-X240941D01*

-Y130500D01*

-G37*

-G36*

-X124941Y151000D02*X131441D01*

-Y145000D01*

-X124941D01*

-Y151000D01*

-G37*

-G36*

-X204941Y150500D02*X211441D01*

-Y144500D01*

-X204941D01*

-Y150500D01*

-G37*

-G36*

-X159941Y277500D02*X165441D01*

-Y238000D01*

-X159941D01*

-Y277500D01*

-G37*

-G36*

-X125941Y278500D02*X131441D01*

-Y239000D01*

-X125941D01*

-Y278500D01*

-G37*

-G36*

-X155197Y331546D02*X161697D01*

-Y325546D01*

-X155197D01*

-Y331546D01*

-G37*

-G36*

-X155441Y327829D02*X161941D01*

-Y321829D01*

-X155441D01*

-Y327829D01*

-G37*

-G36*

-X138021Y303849D02*X144521D01*

-Y297849D01*

-X138021D01*

-Y303849D01*

-G37*

-G36*

-X194441Y312500D02*X200941D01*

-Y306500D01*

-X194441D01*

-Y312500D01*

-G37*

-G36*

-X192441Y315500D02*X198941D01*

-Y309500D01*

-X192441D01*

-Y315500D01*

-G37*

-G36*

-X194441Y318500D02*X200941D01*

-Y312500D01*

-X194441D01*

-Y318500D01*

-G37*

-G36*

-X109941Y359500D02*X116441D01*

-Y353500D01*

-X109941D01*

-Y359500D01*

-G37*

-G36*

-X117941D02*X124441D01*

-Y353500D01*

-X117941D01*

-Y359500D01*

-G37*

-G36*

-X126941D02*X133441D01*

-Y353500D01*

-X126941D01*

-Y359500D01*

-G37*

-G36*

-X139441D02*X145941D01*

-Y353500D01*

-X139441D01*

-Y359500D01*

-G37*

-G36*

-Y353500D02*X145941D01*

-Y347500D01*

-X139441D01*

-Y353500D01*

-G37*

-G36*

-X145441D02*X151941D01*

-Y347500D01*

-X145441D01*

-Y353500D01*

-G37*

-G36*

-X150941Y349000D02*X157441D01*

-Y343000D01*

-X150941D01*

-Y349000D01*

-G37*

-G36*

-X123441Y343500D02*X129941D01*

-Y337500D01*

-X123441D01*

-Y343500D01*

-G37*

-G36*

-Y337500D02*X129941D01*

-Y331500D01*

-X123441D01*

-Y337500D01*

-G37*

-G36*

-X113441Y338000D02*X119941D01*

-Y332000D01*

-X113441D01*

-Y338000D01*

-G37*

-G36*

-X109441D02*X115941D01*

-Y332000D01*

-X109441D01*

-Y338000D01*

-G37*

-G36*

-Y344500D02*X115941D01*

-Y338500D01*

-X109441D01*

-Y344500D01*

-G37*

-G36*

-X236441Y265000D02*X244441D01*

-Y258000D01*

-X236441D01*

-Y265000D01*

-G37*

-G36*

-X165130Y353930D02*X171630D01*

-Y347930D01*

-X165130D01*

-Y353930D01*

-G37*

-G36*

-X201941Y280000D02*X208441D01*

-Y274000D01*

-X201941D01*

-Y280000D01*

-G37*

-G36*

-X194941Y272500D02*X201441D01*

-Y266500D01*

-X194941D01*

-Y272500D01*

-G37*

-G36*

-Y265500D02*X201441D01*

-Y259500D01*

-X194941D01*

-Y265500D01*

-G37*

-G36*

-X178441Y261500D02*X184941D01*

-Y255500D01*

-X178441D01*

-Y261500D01*

-G37*

-G54D201*X446441Y102000D02*X442441D01*

-G54D202*X319941Y87000D02*X98441D01*

-G54D201*X397941Y367441D02*X394441D01*

-X398441Y309000D02*X395441D01*

-X398441Y248000D02*X395441D01*

-X400441Y189000D02*X395441D01*

-X302941Y340007D02*X300453D01*

-G54D202*X98441Y87000D02*X86941Y98500D01*

-Y111500D01*

-G54D203*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D200*G36*

-X403750Y357250D02*Y350750D01*

-X410250D01*

-Y357250D01*

-X403750D01*

-G37*

-G54D204*X345799Y357329D03*

-G54D205*X315799Y337329D03*

-G54D204*X85799Y369829D03*

-G54D206*X105799Y374829D03*

-G54D200*G36*

-X102499Y368129D02*Y361529D01*

-X109099D01*

-Y368129D01*

-X102499D01*

-G37*

-G54D206*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D200*G36*

-X450250Y267250D02*Y260750D01*

-X456750D01*

-Y267250D01*

-X450250D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X456750D01*

-Y207250D01*

-X450250D01*

-G37*

-G36*

-Y177250D02*Y170750D01*

-X456750D01*

-Y177250D01*

-X450250D01*

-G37*

-G54D203*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D200*G36*

-X450250Y237250D02*Y230750D01*

-X456750D01*

-Y237250D01*

-X450250D01*

-G37*

-G54D203*X463500Y234000D03*

-X473500D03*

-G54D200*G36*

-X450250Y147250D02*Y140750D01*

-X456750D01*

-Y147250D01*

-X450250D01*

-G37*

-G36*

-Y117250D02*Y110750D01*

-X456750D01*

-Y117250D01*

-X450250D01*

-G37*

-G36*

-Y87250D02*Y80750D01*

-X456750D01*

-Y87250D01*

-X450250D01*

-G37*

-G36*

-Y57250D02*Y50750D01*

-X456750D01*

-Y57250D01*

-X450250D01*

-G37*

-G54D203*X463500Y54000D03*

-X473500D03*

-G54D200*G36*

-X450250Y327250D02*Y320750D01*

-X456750D01*

-Y327250D01*

-X450250D01*

-G37*

-G54D203*X463500Y324000D03*

-X473500D03*

-G54D200*G36*

-X450250Y297250D02*Y290750D01*

-X456750D01*

-Y297250D01*

-X450250D01*

-G37*

-G54D203*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D200*G36*

-X309191Y252250D02*Y245750D01*

-X315691D01*

-Y252250D01*

-X309191D01*

-G37*

-G54D203*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D207*X345799Y192329D03*

-G54D204*X353000Y150000D03*

-G54D200*G36*

-X450250Y387250D02*Y380750D01*

-X456750D01*

-Y387250D01*

-X450250D01*

-G37*

-G54D203*X463500Y384000D03*

-X473500D03*

-G54D200*G36*

-X403750Y387250D02*Y380750D01*

-X410250D01*

-Y387250D01*

-X403750D01*

-G37*

-G36*

-Y297250D02*Y290750D01*

-X410250D01*

-Y297250D01*

-X403750D01*

-G37*

-G36*

-Y327250D02*Y320750D01*

-X410250D01*

-Y327250D01*

-X403750D01*

-G37*

-G54D203*X417000Y324000D03*

-X427000D03*

-G54D200*G36*

-X450250Y357250D02*Y350750D01*

-X456750D01*

-Y357250D01*

-X450250D01*

-G37*

-G54D203*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D200*G36*

-X403750Y177250D02*Y170750D01*

-X410250D01*

-Y177250D01*

-X403750D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X410250D01*

-Y207250D01*

-X403750D01*

-G37*

-G36*

-Y237250D02*Y230750D01*

-X410250D01*

-Y237250D01*

-X403750D01*

-G37*

-G36*

-Y267250D02*Y260750D01*

-X410250D01*

-Y267250D01*

-X403750D01*

-G37*

-G54D203*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D200*G36*

-X202191Y50750D02*Y44250D01*

-X208691D01*

-Y50750D01*

-X202191D01*

-G37*

-G54D203*X205441Y57500D03*

-Y67500D03*

-G54D200*G36*

-X232191Y50750D02*Y44250D01*

-X238691D01*

-Y50750D01*

-X232191D01*

-G37*

-G54D203*X235441Y57500D03*

-Y67500D03*

-G54D200*G36*

-X262191Y50750D02*Y44250D01*

-X268691D01*

-Y50750D01*

-X262191D01*

-G37*

-G36*

-X172191D02*Y44250D01*

-X178691D01*

-Y50750D01*

-X172191D01*

-G37*

-G36*

-X142191D02*Y44250D01*

-X148691D01*

-Y50750D01*

-X142191D01*

-G37*

-G36*

-X112191D02*Y44250D01*

-X118691D01*

-Y50750D01*

-X112191D01*

-G37*

-G36*

-X82191D02*Y44250D01*

-X88691D01*

-Y50750D01*

-X82191D01*

-G37*

-G54D203*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D200*G36*

-X292191Y50750D02*Y44250D01*

-X298691D01*

-Y50750D01*

-X292191D01*

-G37*

-G54D203*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D204*X85799Y179829D03*

-G54D206*X105799Y184829D03*

-G54D200*G36*

-X102499Y178129D02*Y171529D01*

-X109099D01*

-Y178129D01*

-X102499D01*

-G37*

-G54D206*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D200*G36*

-X82191Y243250D02*Y236750D01*

-X88691D01*

-Y243250D01*

-X82191D01*

-G37*

-G54D203*X85441Y230000D03*

-Y220000D03*

-G54D206*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D200*G36*

-X192499Y200629D02*Y194029D01*

-X199099D01*

-Y200629D01*

-X192499D01*

-G37*

-G54D206*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D208*X386441Y163000D03*

-X400441Y194000D03*

-X389441Y184000D03*

-X400441Y189000D03*

-G54D209*X386023Y157813D03*

-X398441Y173000D03*

-G54D208*X393441Y208000D03*

-G54D209*X358941Y208500D03*

-G54D208*X384162Y188000D03*

-X458441Y195000D03*

-Y164000D03*

-X372441Y170386D03*

-G54D209*X337441Y163000D03*

-X377347Y162178D03*

-X304584Y207483D03*

-X305280Y204383D03*

-X260941Y191500D03*

-X269441Y198500D03*

-X243941Y202000D03*

-X245863Y191524D03*

-G54D208*X432324Y111000D03*

-X446441Y102000D03*

-X434882Y75000D03*

-G54D210*X440941Y123000D03*

-G54D208*X423441Y75000D03*

-G54D209*X434449Y56500D03*

-X440449D03*

-X354441Y85000D03*

-Y89500D03*

-Y95500D03*

-Y101500D03*

-Y107500D03*

-Y113500D03*

-Y119500D03*

-X245441Y127500D03*

-X309441Y141568D03*

-Y136450D03*

-X310941Y115940D03*

-X305696Y107500D03*

-X387441Y119500D03*

-Y113500D03*

-Y107500D03*

-Y101500D03*

-Y95500D03*

-Y89500D03*

-Y85000D03*

-X390941Y76000D03*

-Y71500D03*

-X391441Y66000D03*

-X394941Y58500D03*

-X393941Y51500D03*

-X392441Y45000D03*

-G54D208*X387441Y326000D03*

-X393441Y355000D03*

-X386720Y282000D03*

-X393441Y327000D03*

-X384162Y306000D03*

-X385941Y354500D03*

-X458441Y375000D03*

-X383662Y378500D03*

-X397441Y373000D03*

-X397941Y367441D03*

-G54D209*X385941Y366000D03*

-G54D208*X458441Y345000D03*

-Y315000D03*

-Y285000D03*

-X398441Y314000D03*

-Y309000D03*

-G54D209*Y291000D03*

-G54D208*X372441Y290689D03*

-Y351189D03*

-G54D209*X339837Y341827D03*

-X353390Y339521D03*

-G54D208*X375441Y235000D03*

-G54D209*X356441Y233000D03*

-X338441Y224192D03*

-Y230124D03*

-G54D208*X384512Y258000D03*

-G54D209*X371602Y260228D03*

-G54D208*X458441Y254000D03*

-Y225000D03*

-X387070Y235000D03*

-X398441Y248000D03*

-Y253000D03*

-G54D209*X396441Y235000D03*

-X392188Y239000D03*

-X388207Y247280D03*

-G54D201*X307716Y275075D03*

-X308992Y271971D03*

-X308872Y266522D03*

-X287917Y307829D03*

-X293902Y282263D03*

-X296779Y304963D03*

-X295937Y243628D03*

-G54D209*X304706Y210583D03*

-G54D201*X296727Y256227D03*

-X312157Y300156D03*

-X312122Y295038D03*

-X303365Y330000D03*

-X285430Y325000D03*

-X302941Y340007D03*

-X245557Y279508D03*

-X242456Y293543D03*

-X254740Y298329D03*

-X242168Y298800D03*

-G54D209*X230441Y293000D03*

-X240391Y278564D03*

-G54D201*X266413Y296594D03*

-X263240Y295329D03*

-X262740Y291829D03*

-X260341Y284249D03*

-X264034Y282931D03*

-G54D209*X246731Y303031D03*

-G54D201*X262750Y268772D03*

-X253101Y261836D03*

-X239302Y262235D03*

-G54D209*X221884Y254000D03*

-X224441Y252000D03*

-X225441Y249000D03*

-X224441Y244000D03*

-X230441Y247000D03*

-G54D201*X269653Y298631D03*

-G54D209*X263441Y320000D03*

-G54D201*X268941Y314000D03*

-X273229Y298582D03*

-X278225Y279602D03*

-X278207Y298612D03*

-X277174Y308219D03*

-X277449Y347500D03*

-G54D209*X260568Y316997D03*

-X261502Y307367D03*

-X279441Y285000D03*

-X270441Y336000D03*

-X249101Y328793D03*

-X270441Y342500D03*

-Y349500D03*

-Y357000D03*

-X246941Y238000D03*

-X242441Y229500D03*

-X246441D03*

-X250941D03*

-X236441Y235500D03*

-X224941Y220500D03*

-X225441Y226500D03*

-X224941Y235500D03*

-X269941Y231500D03*

-X251941Y210500D03*

-X163941Y127500D03*

-X193390D03*

-X152441Y121500D03*

-X151941Y132000D03*

-X112222Y127340D03*

-X114441Y121500D03*

-X115441Y132500D03*

-X127941Y148000D03*

-X141441D03*

-X208941D03*

-X223941D03*

-X198441Y122500D03*

-X234441D03*

-X195441Y133000D03*

-X235941D03*

-X128941Y274500D03*

-Y268500D03*

-Y262500D03*

-Y255000D03*

-Y248500D03*

-Y242500D03*

-X162441Y248500D03*

-X161941Y255000D03*

-X181941Y258500D03*

-X162441Y262500D03*

-X198441D03*

-X219441Y272500D03*

-X217441Y279000D03*

-X198441Y269500D03*

-X205441Y277000D03*

-X220729Y265580D03*

-X220441Y259500D03*

-X218441Y261500D03*

-X162441Y242500D03*

-X165941Y231000D03*

-Y226500D03*

-Y220500D03*

-X169441Y214000D03*

-Y208500D03*

-Y201500D03*

-X185441Y228000D03*

-X212941Y238000D03*

-X203941Y237500D03*

-X193941Y237000D03*

-X177441Y228000D03*

-Y217500D03*

-X104441Y204500D03*

-X100941D03*

-X185441Y217500D03*

-X193941Y212500D03*

-X202441D03*

-X210441D03*

-X220441Y215000D03*

-X162941Y268500D03*

-Y274500D03*

-X158441Y323829D03*

-Y328829D03*

-Y326500D03*

-X141307Y300883D03*

-X197441Y314500D03*

-X195441Y311500D03*

-X197441Y308500D03*

-X124831Y302385D03*

-X135441Y338500D03*

-X126441Y340500D03*

-X111941Y341000D03*

-Y357500D03*

-X121941D03*

-X130941D03*

-X135441Y335000D03*

-X111941Y334000D03*

-X117941D03*

-X126441D03*

-X139941Y338000D03*

-X142441Y357500D03*

-Y349500D03*

-X153941Y338000D03*

-X154941Y345500D03*

-X149441Y349500D03*

-X178887Y342818D03*

-X168732Y350833D03*

-X191363Y344449D03*

-X229818Y354988D03*

-G54D211*G54D209*G54D211*G54D209*G54D211*G54D209*G54D212*G54D209*G54D211*G54D209*G54D211*G54D209*G54D211*G54D209*G54D211*G54D209*G54D211*G54D209*G54D211*G54D209*G54D211*M02*

diff --git a/bbb_cape/schematic/gerbers/20131204/cape.group2.gbr b/bbb_cape/schematic/gerbers/20131204/cape.group2.gbr
deleted file mode 100644
index 616aca5..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.group2.gbr
+++ /dev/null
@@ -1,25032 +0,0 @@
-G04 start of page 4 for group 2 idx 1 *

-G04 Title: 971 BBB Cape, power *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Thu Dec  5 05:46:54 2013 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNGROUP2*%

-%ADD224C,0.0350*%

-%ADD223C,0.0100*%

-%ADD222C,0.0600*%

-%ADD221C,0.0200*%

-%ADD220C,0.0360*%

-%ADD219C,0.2100*%

-%ADD218C,0.0660*%

-%ADD217C,0.2200*%

-%ADD216C,0.1830*%

-%ADD215C,0.0650*%

-%ADD214C,0.0250*%

-%ADD213C,0.0001*%

-G54D213*G36*

-X382941Y350500D02*Y358500D01*

-X389441D01*

-Y350500D01*

-X382941D01*

-G37*

-G36*

-X383941Y277500D02*Y285500D01*

-X390441D01*

-Y277500D01*

-X383941D01*

-G37*

-G36*

-X383441Y231000D02*Y239000D01*

-X389941D01*

-Y231000D01*

-X383441D01*

-G37*

-G36*

-X292922Y301042D02*Y309042D01*

-X299422D01*

-Y301042D01*

-X292922D01*

-G37*

-G36*

-X292941Y253000D02*Y261000D01*

-X299441D01*

-Y253000D01*

-X292941D01*

-G37*

-G36*

-X309441Y298000D02*Y303000D01*

-X314941D01*

-Y298000D01*

-X309441D01*

-G37*

-G36*

-X249877Y257055D02*Y265055D01*

-X256377D01*

-Y257055D01*

-X249877D01*

-G37*

-G36*

-X432320Y73869D02*X432379Y73725D01*

-X432610Y73349D01*

-X432896Y73014D01*

-X433231Y72728D01*

-X433603Y72500D01*

-X432320D01*

-Y73869D01*

-G37*

-G36*

-X446437Y153000D02*X449441D01*

-Y148513D01*

-X449366Y148467D01*

-X449186Y148314D01*

-X449033Y148134D01*

-X448909Y147933D01*

-X448819Y147715D01*

-X448764Y147485D01*

-X448750Y147250D01*

-X448764Y140515D01*

-X448819Y140285D01*

-X448909Y140067D01*

-X449033Y139866D01*

-X449186Y139686D01*

-X449366Y139533D01*

-X449441Y139487D01*

-Y118513D01*

-X449366Y118467D01*

-X449186Y118314D01*

-X449033Y118134D01*

-X448909Y117933D01*

-X448819Y117715D01*

-X448764Y117485D01*

-X448750Y117250D01*

-X448764Y110515D01*

-X448819Y110285D01*

-X448909Y110067D01*

-X449033Y109866D01*

-X449186Y109686D01*

-X449366Y109533D01*

-X449441Y109487D01*

-Y88513D01*

-X449366Y88467D01*

-X449186Y88314D01*

-X449033Y88134D01*

-X448909Y87933D01*

-X448819Y87715D01*

-X448764Y87485D01*

-X448750Y87250D01*

-X448764Y80515D01*

-X448819Y80285D01*

-X448909Y80067D01*

-X449033Y79866D01*

-X449186Y79686D01*

-X449366Y79533D01*

-X449441Y79487D01*

-Y72500D01*

-X446437D01*

-Y99192D01*

-X446441Y99191D01*

-X446880Y99226D01*

-X447309Y99329D01*

-X447716Y99497D01*

-X448092Y99728D01*

-X448427Y100014D01*

-X448713Y100349D01*

-X448944Y100725D01*

-X449112Y101132D01*

-X449215Y101561D01*

-X449241Y102000D01*

-X449215Y102439D01*

-X449112Y102868D01*

-X448944Y103275D01*

-X448713Y103651D01*

-X448427Y103986D01*

-X448092Y104272D01*

-X447716Y104503D01*

-X447309Y104671D01*

-X446880Y104774D01*

-X446441Y104809D01*

-X446437Y104808D01*

-Y153000D01*

-G37*

-G36*

-X440935D02*X446437D01*

-Y104808D01*

-X446002Y104774D01*

-X445573Y104671D01*

-X445166Y104503D01*

-X444790Y104272D01*

-X444455Y103986D01*

-X444169Y103651D01*

-X443938Y103275D01*

-X443770Y102868D01*

-X443667Y102439D01*

-X443632Y102000D01*

-X443667Y101561D01*

-X443770Y101132D01*

-X443938Y100725D01*

-X444169Y100349D01*

-X444455Y100014D01*

-X444790Y99728D01*

-X445166Y99497D01*

-X445573Y99329D01*

-X446002Y99226D01*

-X446437Y99192D01*

-Y72500D01*

-X440935D01*

-Y118988D01*

-X440941Y118988D01*

-X441569Y119037D01*

-X442181Y119184D01*

-X442763Y119425D01*

-X443299Y119754D01*

-X443778Y120163D01*

-X444187Y120642D01*

-X444516Y121178D01*

-X444757Y121760D01*

-X444904Y122372D01*

-X444941Y123000D01*

-X444904Y123628D01*

-X444757Y124240D01*

-X444516Y124822D01*

-X444187Y125358D01*

-X443778Y125837D01*

-X443299Y126246D01*

-X442763Y126575D01*

-X442181Y126816D01*

-X441569Y126963D01*

-X440941Y127012D01*

-X440935Y127012D01*

-Y153000D01*

-G37*

-G36*

-X432320D02*X440935D01*

-Y127012D01*

-X440313Y126963D01*

-X439701Y126816D01*

-X439119Y126575D01*

-X438583Y126246D01*

-X438104Y125837D01*

-X437695Y125358D01*

-X437366Y124822D01*

-X437125Y124240D01*

-X436978Y123628D01*

-X436929Y123000D01*

-X436978Y122372D01*

-X437125Y121760D01*

-X437366Y121178D01*

-X437695Y120642D01*

-X438104Y120163D01*

-X438583Y119754D01*

-X439119Y119425D01*

-X439701Y119184D01*

-X440313Y119037D01*

-X440935Y118988D01*

-Y72500D01*

-X436161D01*

-X436533Y72728D01*

-X436868Y73014D01*

-X437154Y73349D01*

-X437385Y73725D01*

-X437553Y74132D01*

-X437656Y74561D01*

-X437682Y75000D01*

-X437656Y75439D01*

-X437553Y75868D01*

-X437385Y76275D01*

-X437154Y76651D01*

-X436868Y76986D01*

-X436533Y77272D01*

-X436157Y77503D01*

-X435750Y77671D01*

-X435321Y77774D01*

-X434882Y77809D01*

-X434443Y77774D01*

-X434014Y77671D01*

-X433607Y77503D01*

-X433231Y77272D01*

-X432896Y76986D01*

-X432610Y76651D01*

-X432379Y76275D01*

-X432320Y76131D01*

-Y108192D01*

-X432324Y108191D01*

-X432763Y108226D01*

-X433192Y108329D01*

-X433599Y108497D01*

-X433975Y108728D01*

-X434310Y109014D01*

-X434596Y109349D01*

-X434827Y109725D01*

-X434995Y110132D01*

-X435098Y110561D01*

-X435124Y111000D01*

-X435098Y111439D01*

-X434995Y111868D01*

-X434827Y112275D01*

-X434596Y112651D01*

-X434310Y112986D01*

-X433975Y113272D01*

-X433599Y113503D01*

-X433192Y113671D01*

-X432763Y113774D01*

-X432324Y113809D01*

-X432320Y113808D01*

-Y153000D01*

-G37*

-G36*

-X398438Y187034D02*X398455Y187014D01*

-X398790Y186728D01*

-X399166Y186497D01*

-X399573Y186329D01*

-X400002Y186226D01*

-X400441Y186191D01*

-Y153000D01*

-X432320D01*

-Y113808D01*

-X431885Y113774D01*

-X431456Y113671D01*

-X431049Y113503D01*

-X430673Y113272D01*

-X430338Y112986D01*

-X430052Y112651D01*

-X429821Y112275D01*

-X429653Y111868D01*

-X429550Y111439D01*

-X429515Y111000D01*

-X429550Y110561D01*

-X429653Y110132D01*

-X429821Y109725D01*

-X430052Y109349D01*

-X430338Y109014D01*

-X430673Y108728D01*

-X431049Y108497D01*

-X431456Y108329D01*

-X431885Y108226D01*

-X432320Y108192D01*

-Y76131D01*

-X432211Y75868D01*

-X432108Y75439D01*

-X432073Y75000D01*

-X432108Y74561D01*

-X432211Y74132D01*

-X432320Y73869D01*

-Y72500D01*

-X424720D01*

-X425092Y72728D01*

-X425427Y73014D01*

-X425713Y73349D01*

-X425944Y73725D01*

-X426112Y74132D01*

-X426215Y74561D01*

-X426241Y75000D01*

-X426215Y75439D01*

-X426112Y75868D01*

-X425944Y76275D01*

-X425713Y76651D01*

-X425427Y76986D01*

-X425092Y77272D01*

-X424716Y77503D01*

-X424309Y77671D01*

-X423880Y77774D01*

-X423441Y77809D01*

-X423002Y77774D01*

-X422573Y77671D01*

-X422166Y77503D01*

-X421790Y77272D01*

-X421455Y76986D01*

-X421169Y76651D01*

-X420938Y76275D01*

-X420770Y75868D01*

-X420667Y75439D01*

-X420632Y75000D01*

-X420667Y74561D01*

-X420770Y74132D01*

-X420938Y73725D01*

-X421169Y73349D01*

-X421455Y73014D01*

-X421790Y72728D01*

-X422162Y72500D01*

-X412441D01*

-Y136500D01*

-X398438D01*

-Y171195D01*

-X398441Y171194D01*

-X398723Y171217D01*

-X398999Y171283D01*

-X399261Y171391D01*

-X399502Y171539D01*

-X399718Y171723D01*

-X399902Y171939D01*

-X400050Y172180D01*

-X400158Y172442D01*

-X400224Y172718D01*

-X400241Y173000D01*

-X400224Y173282D01*

-X400158Y173558D01*

-X400050Y173820D01*

-X399902Y174061D01*

-X399718Y174277D01*

-X399502Y174461D01*

-X399261Y174609D01*

-X398999Y174717D01*

-X398723Y174783D01*

-X398441Y174806D01*

-X398438Y174805D01*

-Y187034D01*

-G37*

-G36*

-Y192034D02*X398455Y192014D01*

-X398790Y191728D01*

-X399162Y191500D01*

-X398790Y191272D01*

-X398455Y190986D01*

-X398438Y190966D01*

-Y192034D01*

-G37*

-G36*

-Y245192D02*X398441Y245191D01*

-X398880Y245226D01*

-X399309Y245329D01*

-X399716Y245497D01*

-X400092Y245728D01*

-X400427Y246014D01*

-X400441Y246030D01*

-Y196809D01*

-X400002Y196774D01*

-X399573Y196671D01*

-X399166Y196503D01*

-X398790Y196272D01*

-X398455Y195986D01*

-X398438Y195966D01*

-Y245192D01*

-G37*

-G36*

-Y306192D02*X398441Y306191D01*

-X398880Y306226D01*

-X399309Y306329D01*

-X399716Y306497D01*

-X400092Y306728D01*

-X400427Y307014D01*

-X400441Y307030D01*

-Y254970D01*

-X400427Y254986D01*

-X400092Y255272D01*

-X399716Y255503D01*

-X399309Y255671D01*

-X398880Y255774D01*

-X398441Y255809D01*

-X398438Y255808D01*

-Y289195D01*

-X398441Y289194D01*

-X398723Y289217D01*

-X398999Y289283D01*

-X399261Y289391D01*

-X399502Y289539D01*

-X399718Y289723D01*

-X399902Y289939D01*

-X400050Y290180D01*

-X400158Y290442D01*

-X400224Y290718D01*

-X400241Y291000D01*

-X400224Y291282D01*

-X400158Y291558D01*

-X400050Y291820D01*

-X399902Y292061D01*

-X399718Y292277D01*

-X399502Y292461D01*

-X399261Y292609D01*

-X398999Y292717D01*

-X398723Y292783D01*

-X398441Y292806D01*

-X398438Y292805D01*

-Y306192D01*

-G37*

-G36*

-Y364681D02*X398809Y364770D01*

-X399216Y364938D01*

-X399592Y365169D01*

-X399927Y365455D01*

-X400213Y365790D01*

-X400441Y366162D01*

-Y315970D01*

-X400427Y315986D01*

-X400092Y316272D01*

-X399716Y316503D01*

-X399309Y316671D01*

-X398880Y316774D01*

-X398441Y316809D01*

-X398438Y316808D01*

-Y364681D01*

-G37*

-G36*

-X400441Y397000D02*Y368720D01*

-X400213Y369092D01*

-X399927Y369427D01*

-X399592Y369713D01*

-X399216Y369944D01*

-X398809Y370112D01*

-X398438Y370201D01*

-Y370382D01*

-X398716Y370497D01*

-X399092Y370728D01*

-X399427Y371014D01*

-X399713Y371349D01*

-X399944Y371725D01*

-X400112Y372132D01*

-X400215Y372561D01*

-X400241Y373000D01*

-X400215Y373439D01*

-X400112Y373868D01*

-X399944Y374275D01*

-X399713Y374651D01*

-X399427Y374986D01*

-X399092Y375272D01*

-X398716Y375503D01*

-X398438Y375618D01*

-Y397000D01*

-X400441D01*

-G37*

-G36*

-X396438Y246034D02*X396455Y246014D01*

-X396790Y245728D01*

-X397166Y245497D01*

-X397573Y245329D01*

-X398002Y245226D01*

-X398438Y245192D01*

-Y195966D01*

-X398169Y195651D01*

-X397938Y195275D01*

-X397770Y194868D01*

-X397667Y194439D01*

-X397632Y194000D01*

-X397667Y193561D01*

-X397770Y193132D01*

-X397938Y192725D01*

-X398169Y192349D01*

-X398438Y192034D01*

-Y190966D01*

-X398169Y190651D01*

-X397938Y190275D01*

-X397770Y189868D01*

-X397667Y189439D01*

-X397632Y189000D01*

-X397667Y188561D01*

-X397770Y188132D01*

-X397938Y187725D01*

-X398169Y187349D01*

-X398438Y187034D01*

-Y174805D01*

-X398159Y174783D01*

-X397883Y174717D01*

-X397621Y174609D01*

-X397380Y174461D01*

-X397164Y174277D01*

-X396980Y174061D01*

-X396832Y173820D01*

-X396724Y173558D01*

-X396658Y173282D01*

-X396635Y173000D01*

-X396658Y172718D01*

-X396724Y172442D01*

-X396832Y172180D01*

-X396980Y171939D01*

-X397164Y171723D01*

-X397380Y171539D01*

-X397621Y171391D01*

-X397883Y171283D01*

-X398159Y171217D01*

-X398438Y171195D01*

-Y136500D01*

-X396438D01*

-Y233195D01*

-X396441Y233194D01*

-X396723Y233217D01*

-X396999Y233283D01*

-X397261Y233391D01*

-X397502Y233539D01*

-X397718Y233723D01*

-X397902Y233939D01*

-X398050Y234180D01*

-X398158Y234442D01*

-X398224Y234718D01*

-X398241Y235000D01*

-X398224Y235282D01*

-X398158Y235558D01*

-X398050Y235820D01*

-X397902Y236061D01*

-X397718Y236277D01*

-X397502Y236461D01*

-X397261Y236609D01*

-X396999Y236717D01*

-X396723Y236783D01*

-X396441Y236806D01*

-X396438Y236805D01*

-Y246034D01*

-G37*

-G36*

-Y251034D02*X396455Y251014D01*

-X396790Y250728D01*

-X397162Y250500D01*

-X396790Y250272D01*

-X396455Y249986D01*

-X396438Y249966D01*

-Y251034D01*

-G37*

-G36*

-Y307034D02*X396455Y307014D01*

-X396790Y306728D01*

-X397166Y306497D01*

-X397573Y306329D01*

-X398002Y306226D01*

-X398438Y306192D01*

-Y292805D01*

-X398159Y292783D01*

-X397883Y292717D01*

-X397621Y292609D01*

-X397380Y292461D01*

-X397164Y292277D01*

-X396980Y292061D01*

-X396832Y291820D01*

-X396724Y291558D01*

-X396658Y291282D01*

-X396635Y291000D01*

-X396658Y290718D01*

-X396724Y290442D01*

-X396832Y290180D01*

-X396980Y289939D01*

-X397164Y289723D01*

-X397380Y289539D01*

-X397621Y289391D01*

-X397883Y289283D01*

-X398159Y289217D01*

-X398438Y289195D01*

-Y255808D01*

-X398002Y255774D01*

-X397573Y255671D01*

-X397166Y255503D01*

-X396790Y255272D01*

-X396455Y254986D01*

-X396438Y254966D01*

-Y307034D01*

-G37*

-G36*

-Y312034D02*X396455Y312014D01*

-X396790Y311728D01*

-X397162Y311500D01*

-X396790Y311272D01*

-X396455Y310986D01*

-X396438Y310966D01*

-Y312034D01*

-G37*

-G36*

-Y365078D02*X396666Y364938D01*

-X397073Y364770D01*

-X397502Y364667D01*

-X397941Y364632D01*

-X398380Y364667D01*

-X398438Y364681D01*

-Y316808D01*

-X398002Y316774D01*

-X397573Y316671D01*

-X397166Y316503D01*

-X396790Y316272D01*

-X396455Y315986D01*

-X396438Y315966D01*

-Y365078D01*

-G37*

-G36*

-Y370385D02*X396573Y370329D01*

-X397002Y370226D01*

-X397412Y370194D01*

-X397073Y370112D01*

-X396666Y369944D01*

-X396438Y369804D01*

-Y370385D01*

-G37*

-G36*

-X398438Y375618D02*X398309Y375671D01*

-X397880Y375774D01*

-X397441Y375809D01*

-X397002Y375774D01*

-X396573Y375671D01*

-X396438Y375615D01*

-Y397000D01*

-X398438D01*

-Y375618D01*

-G37*

-G36*

-X396438Y375615D02*X396166Y375503D01*

-X395790Y375272D01*

-X395455Y374986D01*

-X395169Y374651D01*

-X394938Y374275D01*

-X394770Y373868D01*

-X394667Y373439D01*

-X394632Y373000D01*

-X394667Y372561D01*

-X394770Y372132D01*

-X394938Y371725D01*

-X395169Y371349D01*

-X395455Y371014D01*

-X395790Y370728D01*

-X396166Y370497D01*

-X396438Y370385D01*

-Y369804D01*

-X396290Y369713D01*

-X395955Y369427D01*

-X395669Y369092D01*

-X395438Y368716D01*

-X395270Y368309D01*

-X395167Y367880D01*

-X395132Y367441D01*

-X395167Y367002D01*

-X395270Y366573D01*

-X395438Y366166D01*

-X395669Y365790D01*

-X395955Y365455D01*

-X396290Y365169D01*

-X396438Y365078D01*

-Y315966D01*

-X396169Y315651D01*

-X395938Y315275D01*

-X395770Y314868D01*

-X395667Y314439D01*

-X395632Y314000D01*

-X395667Y313561D01*

-X395770Y313132D01*

-X395938Y312725D01*

-X396169Y312349D01*

-X396438Y312034D01*

-Y310966D01*

-X396169Y310651D01*

-X395938Y310275D01*

-X395770Y309868D01*

-X395667Y309439D01*

-X395632Y309000D01*

-X395667Y308561D01*

-X395770Y308132D01*

-X395938Y307725D01*

-X396169Y307349D01*

-X396438Y307034D01*

-Y254966D01*

-X396169Y254651D01*

-X395938Y254275D01*

-X395770Y253868D01*

-X395667Y253439D01*

-X395632Y253000D01*

-X395667Y252561D01*

-X395770Y252132D01*

-X395938Y251725D01*

-X396169Y251349D01*

-X396438Y251034D01*

-Y249966D01*

-X396169Y249651D01*

-X395938Y249275D01*

-X395770Y248868D01*

-X395667Y248439D01*

-X395632Y248000D01*

-X395667Y247561D01*

-X395770Y247132D01*

-X395938Y246725D01*

-X396169Y246349D01*

-X396438Y246034D01*

-Y236805D01*

-X396159Y236783D01*

-X395883Y236717D01*

-X395621Y236609D01*

-X395380Y236461D01*

-X395164Y236277D01*

-X394980Y236061D01*

-X394832Y235820D01*

-X394724Y235558D01*

-X394658Y235282D01*

-X394635Y235000D01*

-X394658Y234718D01*

-X394724Y234442D01*

-X394832Y234180D01*

-X394980Y233939D01*

-X395164Y233723D01*

-X395380Y233539D01*

-X395621Y233391D01*

-X395883Y233283D01*

-X396159Y233217D01*

-X396438Y233195D01*

-Y136500D01*

-X393437D01*

-Y205192D01*

-X393441Y205191D01*

-X393880Y205226D01*

-X394309Y205329D01*

-X394716Y205497D01*

-X395092Y205728D01*

-X395427Y206014D01*

-X395713Y206349D01*

-X395944Y206725D01*

-X396112Y207132D01*

-X396215Y207561D01*

-X396241Y208000D01*

-X396215Y208439D01*

-X396112Y208868D01*

-X395944Y209275D01*

-X395713Y209651D01*

-X395427Y209986D01*

-X395092Y210272D01*

-X394716Y210503D01*

-X394309Y210671D01*

-X393880Y210774D01*

-X393441Y210809D01*

-X393437Y210808D01*

-Y237699D01*

-X393465Y237723D01*

-X393649Y237939D01*

-X393797Y238180D01*

-X393905Y238442D01*

-X393971Y238718D01*

-X393988Y239000D01*

-X393971Y239282D01*

-X393905Y239558D01*

-X393797Y239820D01*

-X393649Y240061D01*

-X393465Y240277D01*

-X393437Y240301D01*

-Y324192D01*

-X393441Y324191D01*

-X393880Y324226D01*

-X394309Y324329D01*

-X394716Y324497D01*

-X395092Y324728D01*

-X395427Y325014D01*

-X395713Y325349D01*

-X395944Y325725D01*

-X396112Y326132D01*

-X396215Y326561D01*

-X396241Y327000D01*

-X396215Y327439D01*

-X396112Y327868D01*

-X395944Y328275D01*

-X395713Y328651D01*

-X395427Y328986D01*

-X395092Y329272D01*

-X394716Y329503D01*

-X394309Y329671D01*

-X393880Y329774D01*

-X393441Y329809D01*

-X393437Y329808D01*

-Y352192D01*

-X393441Y352191D01*

-X393880Y352226D01*

-X394309Y352329D01*

-X394716Y352497D01*

-X395092Y352728D01*

-X395427Y353014D01*

-X395713Y353349D01*

-X395944Y353725D01*

-X396112Y354132D01*

-X396215Y354561D01*

-X396241Y355000D01*

-X396215Y355439D01*

-X396112Y355868D01*

-X395944Y356275D01*

-X395713Y356651D01*

-X395427Y356986D01*

-X395092Y357272D01*

-X394716Y357503D01*

-X394309Y357671D01*

-X393880Y357774D01*

-X393441Y357809D01*

-X393437Y357808D01*

-Y397000D01*

-X396438D01*

-Y375615D01*

-G37*

-G36*

-X393437Y136500D02*X389437D01*

-Y181192D01*

-X389441Y181191D01*

-X389880Y181226D01*

-X390309Y181329D01*

-X390716Y181497D01*

-X391092Y181728D01*

-X391427Y182014D01*

-X391713Y182349D01*

-X391944Y182725D01*

-X392112Y183132D01*

-X392215Y183561D01*

-X392241Y184000D01*

-X392215Y184439D01*

-X392112Y184868D01*

-X391944Y185275D01*

-X391713Y185651D01*

-X391427Y185986D01*

-X391092Y186272D01*

-X390716Y186503D01*

-X390309Y186671D01*

-X389880Y186774D01*

-X389441Y186809D01*

-X389437Y186808D01*

-Y233503D01*

-X389573Y233725D01*

-X389741Y234132D01*

-X389844Y234561D01*

-X389870Y235000D01*

-X389844Y235439D01*

-X389741Y235868D01*

-X389573Y236275D01*

-X389437Y236497D01*

-Y245963D01*

-X389484Y246003D01*

-X389668Y246219D01*

-X389816Y246460D01*

-X389924Y246722D01*

-X389990Y246998D01*

-X390007Y247280D01*

-X389990Y247562D01*

-X389924Y247838D01*

-X389816Y248100D01*

-X389668Y248341D01*

-X389484Y248557D01*

-X389437Y248597D01*

-Y281322D01*

-X389494Y281561D01*

-X389520Y282000D01*

-X389494Y282439D01*

-X389437Y282678D01*

-Y324025D01*

-X389713Y324349D01*

-X389944Y324725D01*

-X390112Y325132D01*

-X390215Y325561D01*

-X390241Y326000D01*

-X390215Y326439D01*

-X390112Y326868D01*

-X389944Y327275D01*

-X389713Y327651D01*

-X389437Y327975D01*

-Y397000D01*

-X393437D01*

-Y357808D01*

-X393002Y357774D01*

-X392573Y357671D01*

-X392166Y357503D01*

-X391790Y357272D01*

-X391455Y356986D01*

-X391169Y356651D01*

-X390938Y356275D01*

-X390770Y355868D01*

-X390667Y355439D01*

-X390632Y355000D01*

-X390667Y354561D01*

-X390770Y354132D01*

-X390938Y353725D01*

-X391169Y353349D01*

-X391455Y353014D01*

-X391790Y352728D01*

-X392166Y352497D01*

-X392573Y352329D01*

-X393002Y352226D01*

-X393437Y352192D01*

-Y329808D01*

-X393002Y329774D01*

-X392573Y329671D01*

-X392166Y329503D01*

-X391790Y329272D01*

-X391455Y328986D01*

-X391169Y328651D01*

-X390938Y328275D01*

-X390770Y327868D01*

-X390667Y327439D01*

-X390632Y327000D01*

-X390667Y326561D01*

-X390770Y326132D01*

-X390938Y325725D01*

-X391169Y325349D01*

-X391455Y325014D01*

-X391790Y324728D01*

-X392166Y324497D01*

-X392573Y324329D01*

-X393002Y324226D01*

-X393437Y324192D01*

-Y240301D01*

-X393249Y240461D01*

-X393008Y240609D01*

-X392746Y240717D01*

-X392470Y240783D01*

-X392188Y240806D01*

-X391906Y240783D01*

-X391630Y240717D01*

-X391368Y240609D01*

-X391127Y240461D01*

-X390911Y240277D01*

-X390727Y240061D01*

-X390579Y239820D01*

-X390471Y239558D01*

-X390405Y239282D01*

-X390382Y239000D01*

-X390405Y238718D01*

-X390471Y238442D01*

-X390579Y238180D01*

-X390727Y237939D01*

-X390911Y237723D01*

-X391127Y237539D01*

-X391368Y237391D01*

-X391630Y237283D01*

-X391906Y237217D01*

-X392188Y237194D01*

-X392470Y237217D01*

-X392746Y237283D01*

-X393008Y237391D01*

-X393249Y237539D01*

-X393437Y237699D01*

-Y210808D01*

-X393002Y210774D01*

-X392573Y210671D01*

-X392166Y210503D01*

-X391790Y210272D01*

-X391455Y209986D01*

-X391169Y209651D01*

-X390938Y209275D01*

-X390770Y208868D01*

-X390667Y208439D01*

-X390632Y208000D01*

-X390667Y207561D01*

-X390770Y207132D01*

-X390938Y206725D01*

-X391169Y206349D01*

-X391455Y206014D01*

-X391790Y205728D01*

-X392166Y205497D01*

-X392573Y205329D01*

-X393002Y205226D01*

-X393437Y205192D01*

-Y136500D01*

-G37*

-G36*

-X398438Y370201D02*X398380Y370215D01*

-X397970Y370247D01*

-X398309Y370329D01*

-X398438Y370382D01*

-Y370201D01*

-G37*

-G36*

-X389437Y327975D02*X389427Y327986D01*

-X389092Y328272D01*

-X388716Y328503D01*

-X388309Y328671D01*

-X387880Y328774D01*

-X387441Y328809D01*

-X387002Y328774D01*

-X386573Y328671D01*

-X386437Y328615D01*

-Y351739D01*

-X386809Y351829D01*

-X387216Y351997D01*

-X387592Y352228D01*

-X387927Y352514D01*

-X388213Y352849D01*

-X388444Y353225D01*

-X388612Y353632D01*

-X388715Y354061D01*

-X388741Y354500D01*

-X388715Y354939D01*

-X388612Y355368D01*

-X388444Y355775D01*

-X388213Y356151D01*

-X387927Y356486D01*

-X387592Y356772D01*

-X387216Y357003D01*

-X386809Y357171D01*

-X386437Y357261D01*

-Y364268D01*

-X386499Y364283D01*

-X386761Y364391D01*

-X387002Y364539D01*

-X387218Y364723D01*

-X387402Y364939D01*

-X387550Y365180D01*

-X387658Y365442D01*

-X387724Y365718D01*

-X387741Y366000D01*

-X387724Y366282D01*

-X387658Y366558D01*

-X387550Y366820D01*

-X387402Y367061D01*

-X387218Y367277D01*

-X387002Y367461D01*

-X386761Y367609D01*

-X386499Y367717D01*

-X386437Y367732D01*

-Y378071D01*

-X386462Y378500D01*

-X386437Y378929D01*

-Y397000D01*

-X389437D01*

-Y327975D01*

-G37*

-G36*

-Y282678D02*X389391Y282868D01*

-X389223Y283275D01*

-X388992Y283651D01*

-X388706Y283986D01*

-X388371Y284272D01*

-X387995Y284503D01*

-X387588Y284671D01*

-X387159Y284774D01*

-X386720Y284809D01*

-X386437Y284786D01*

-Y304353D01*

-X386665Y304725D01*

-X386833Y305132D01*

-X386936Y305561D01*

-X386962Y306000D01*

-X386936Y306439D01*

-X386833Y306868D01*

-X386665Y307275D01*

-X386437Y307647D01*

-Y323385D01*

-X386573Y323329D01*

-X387002Y323226D01*

-X387441Y323191D01*

-X387880Y323226D01*

-X388309Y323329D01*

-X388716Y323497D01*

-X389092Y323728D01*

-X389427Y324014D01*

-X389437Y324025D01*

-Y282678D01*

-G37*

-G36*

-Y248597D02*X389268Y248741D01*

-X389027Y248889D01*

-X388765Y248997D01*

-X388489Y249063D01*

-X388207Y249086D01*

-X387925Y249063D01*

-X387649Y248997D01*

-X387387Y248889D01*

-X387146Y248741D01*

-X386930Y248557D01*

-X386746Y248341D01*

-X386598Y248100D01*

-X386490Y247838D01*

-X386437Y247617D01*

-Y255962D01*

-X386498Y256014D01*

-X386784Y256349D01*

-X387015Y256725D01*

-X387183Y257132D01*

-X387286Y257561D01*

-X387312Y258000D01*

-X387286Y258439D01*

-X387183Y258868D01*

-X387015Y259275D01*

-X386784Y259651D01*

-X386498Y259986D01*

-X386437Y260038D01*

-Y279214D01*

-X386720Y279191D01*

-X387159Y279226D01*

-X387588Y279329D01*

-X387995Y279497D01*

-X388371Y279728D01*

-X388706Y280014D01*

-X388992Y280349D01*

-X389223Y280725D01*

-X389391Y281132D01*

-X389437Y281322D01*

-Y248597D01*

-G37*

-G36*

-Y236497D02*X389342Y236651D01*

-X389056Y236986D01*

-X388721Y237272D01*

-X388345Y237503D01*

-X387938Y237671D01*

-X387509Y237774D01*

-X387070Y237809D01*

-X386631Y237774D01*

-X386437Y237727D01*

-Y246943D01*

-X386490Y246722D01*

-X386598Y246460D01*

-X386746Y246219D01*

-X386930Y246003D01*

-X387146Y245819D01*

-X387387Y245671D01*

-X387649Y245563D01*

-X387925Y245497D01*

-X388207Y245474D01*

-X388489Y245497D01*

-X388765Y245563D01*

-X389027Y245671D01*

-X389268Y245819D01*

-X389437Y245963D01*

-Y236497D01*

-G37*

-G36*

-Y136500D02*X386437D01*

-Y156061D01*

-X386581Y156096D01*

-X386843Y156204D01*

-X387084Y156352D01*

-X387300Y156536D01*

-X387484Y156752D01*

-X387632Y156993D01*

-X387740Y157255D01*

-X387806Y157531D01*

-X387823Y157813D01*

-X387806Y158095D01*

-X387740Y158371D01*

-X387632Y158633D01*

-X387484Y158874D01*

-X387300Y159090D01*

-X387084Y159274D01*

-X386843Y159422D01*

-X386581Y159530D01*

-X386437Y159565D01*

-Y160192D01*

-X386441Y160191D01*

-X386880Y160226D01*

-X387309Y160329D01*

-X387716Y160497D01*

-X388092Y160728D01*

-X388427Y161014D01*

-X388713Y161349D01*

-X388944Y161725D01*

-X389112Y162132D01*

-X389215Y162561D01*

-X389241Y163000D01*

-X389215Y163439D01*

-X389112Y163868D01*

-X388944Y164275D01*

-X388713Y164651D01*

-X388427Y164986D01*

-X388092Y165272D01*

-X387716Y165503D01*

-X387309Y165671D01*

-X386880Y165774D01*

-X386441Y165809D01*

-X386437Y165808D01*

-Y186353D01*

-X386665Y186725D01*

-X386833Y187132D01*

-X386936Y187561D01*

-X386962Y188000D01*

-X386936Y188439D01*

-X386833Y188868D01*

-X386665Y189275D01*

-X386437Y189647D01*

-Y232273D01*

-X386631Y232226D01*

-X387070Y232191D01*

-X387509Y232226D01*

-X387938Y232329D01*

-X388345Y232497D01*

-X388721Y232728D01*

-X389056Y233014D01*

-X389342Y233349D01*

-X389437Y233503D01*

-Y186808D01*

-X389002Y186774D01*

-X388573Y186671D01*

-X388166Y186503D01*

-X387790Y186272D01*

-X387455Y185986D01*

-X387169Y185651D01*

-X386938Y185275D01*

-X386770Y184868D01*

-X386667Y184439D01*

-X386632Y184000D01*

-X386667Y183561D01*

-X386770Y183132D01*

-X386938Y182725D01*

-X387169Y182349D01*

-X387455Y182014D01*

-X387790Y181728D01*

-X388166Y181497D01*

-X388573Y181329D01*

-X389002Y181226D01*

-X389437Y181192D01*

-Y136500D01*

-G37*

-G36*

-X386437D02*X377344D01*

-Y160373D01*

-X377347Y160372D01*

-X377629Y160395D01*

-X377905Y160461D01*

-X378167Y160569D01*

-X378408Y160717D01*

-X378624Y160901D01*

-X378808Y161117D01*

-X378956Y161358D01*

-X379064Y161620D01*

-X379130Y161896D01*

-X379147Y162178D01*

-X379130Y162460D01*

-X379064Y162736D01*

-X378956Y162998D01*

-X378808Y163239D01*

-X378624Y163455D01*

-X378408Y163639D01*

-X378167Y163787D01*

-X377905Y163895D01*

-X377629Y163961D01*

-X377347Y163984D01*

-X377344Y163983D01*

-Y232943D01*

-X377427Y233014D01*

-X377713Y233349D01*

-X377944Y233725D01*

-X378112Y234132D01*

-X378215Y234561D01*

-X378241Y235000D01*

-X378215Y235439D01*

-X378112Y235868D01*

-X377944Y236275D01*

-X377713Y236651D01*

-X377427Y236986D01*

-X377344Y237057D01*

-Y397000D01*

-X386437D01*

-Y378929D01*

-X386436Y378939D01*

-X386333Y379368D01*

-X386165Y379775D01*

-X385934Y380151D01*

-X385648Y380486D01*

-X385313Y380772D01*

-X384937Y381003D01*

-X384530Y381171D01*

-X384101Y381274D01*

-X383662Y381309D01*

-X383223Y381274D01*

-X382794Y381171D01*

-X382387Y381003D01*

-X382011Y380772D01*

-X381676Y380486D01*

-X381390Y380151D01*

-X381159Y379775D01*

-X380991Y379368D01*

-X380888Y378939D01*

-X380853Y378500D01*

-X380888Y378061D01*

-X380991Y377632D01*

-X381159Y377225D01*

-X381390Y376849D01*

-X381676Y376514D01*

-X382011Y376228D01*

-X382387Y375997D01*

-X382794Y375829D01*

-X383223Y375726D01*

-X383662Y375691D01*

-X384101Y375726D01*

-X384530Y375829D01*

-X384937Y375997D01*

-X385313Y376228D01*

-X385648Y376514D01*

-X385934Y376849D01*

-X386165Y377225D01*

-X386333Y377632D01*

-X386436Y378061D01*

-X386437Y378071D01*

-Y367732D01*

-X386223Y367783D01*

-X385941Y367806D01*

-X385659Y367783D01*

-X385383Y367717D01*

-X385121Y367609D01*

-X384880Y367461D01*

-X384664Y367277D01*

-X384480Y367061D01*

-X384332Y366820D01*

-X384224Y366558D01*

-X384158Y366282D01*

-X384135Y366000D01*

-X384158Y365718D01*

-X384224Y365442D01*

-X384332Y365180D01*

-X384480Y364939D01*

-X384664Y364723D01*

-X384880Y364539D01*

-X385121Y364391D01*

-X385383Y364283D01*

-X385659Y364217D01*

-X385941Y364194D01*

-X386223Y364217D01*

-X386437Y364268D01*

-Y357261D01*

-X386380Y357274D01*

-X385941Y357309D01*

-X385502Y357274D01*

-X385073Y357171D01*

-X384666Y357003D01*

-X384290Y356772D01*

-X383955Y356486D01*

-X383669Y356151D01*

-X383438Y355775D01*

-X383270Y355368D01*

-X383167Y354939D01*

-X383132Y354500D01*

-X383167Y354061D01*

-X383270Y353632D01*

-X383438Y353225D01*

-X383669Y352849D01*

-X383955Y352514D01*

-X384290Y352228D01*

-X384666Y351997D01*

-X385073Y351829D01*

-X385502Y351726D01*

-X385941Y351691D01*

-X386380Y351726D01*

-X386437Y351739D01*

-Y328615D01*

-X386166Y328503D01*

-X385790Y328272D01*

-X385455Y327986D01*

-X385169Y327651D01*

-X384938Y327275D01*

-X384770Y326868D01*

-X384667Y326439D01*

-X384632Y326000D01*

-X384667Y325561D01*

-X384770Y325132D01*

-X384938Y324725D01*

-X385169Y324349D01*

-X385455Y324014D01*

-X385790Y323728D01*

-X386166Y323497D01*

-X386437Y323385D01*

-Y307647D01*

-X386434Y307651D01*

-X386148Y307986D01*

-X385813Y308272D01*

-X385437Y308503D01*

-X385030Y308671D01*

-X384601Y308774D01*

-X384162Y308809D01*

-X383723Y308774D01*

-X383294Y308671D01*

-X382887Y308503D01*

-X382511Y308272D01*

-X382176Y307986D01*

-X381890Y307651D01*

-X381659Y307275D01*

-X381491Y306868D01*

-X381388Y306439D01*

-X381353Y306000D01*

-X381388Y305561D01*

-X381491Y305132D01*

-X381659Y304725D01*

-X381890Y304349D01*

-X382176Y304014D01*

-X382511Y303728D01*

-X382887Y303497D01*

-X383294Y303329D01*

-X383723Y303226D01*

-X384162Y303191D01*

-X384601Y303226D01*

-X385030Y303329D01*

-X385437Y303497D01*

-X385813Y303728D01*

-X386148Y304014D01*

-X386434Y304349D01*

-X386437Y304353D01*

-Y284786D01*

-X386281Y284774D01*

-X385852Y284671D01*

-X385445Y284503D01*

-X385069Y284272D01*

-X384734Y283986D01*

-X384448Y283651D01*

-X384217Y283275D01*

-X384049Y282868D01*

-X383946Y282439D01*

-X383911Y282000D01*

-X383946Y281561D01*

-X384049Y281132D01*

-X384217Y280725D01*

-X384448Y280349D01*

-X384734Y280014D01*

-X385069Y279728D01*

-X385445Y279497D01*

-X385852Y279329D01*

-X386281Y279226D01*

-X386437Y279214D01*

-Y260038D01*

-X386163Y260272D01*

-X385787Y260503D01*

-X385380Y260671D01*

-X384951Y260774D01*

-X384512Y260809D01*

-X384073Y260774D01*

-X383644Y260671D01*

-X383237Y260503D01*

-X382861Y260272D01*

-X382526Y259986D01*

-X382240Y259651D01*

-X382009Y259275D01*

-X381841Y258868D01*

-X381738Y258439D01*

-X381703Y258000D01*

-X381738Y257561D01*

-X381841Y257132D01*

-X382009Y256725D01*

-X382240Y256349D01*

-X382526Y256014D01*

-X382861Y255728D01*

-X383237Y255497D01*

-X383644Y255329D01*

-X384073Y255226D01*

-X384512Y255191D01*

-X384951Y255226D01*

-X385380Y255329D01*

-X385787Y255497D01*

-X386163Y255728D01*

-X386437Y255962D01*

-Y247617D01*

-X386424Y247562D01*

-X386401Y247280D01*

-X386424Y246998D01*

-X386437Y246943D01*

-Y237727D01*

-X386202Y237671D01*

-X385795Y237503D01*

-X385419Y237272D01*

-X385084Y236986D01*

-X384798Y236651D01*

-X384567Y236275D01*

-X384399Y235868D01*

-X384296Y235439D01*

-X384261Y235000D01*

-X384296Y234561D01*

-X384399Y234132D01*

-X384567Y233725D01*

-X384798Y233349D01*

-X385084Y233014D01*

-X385419Y232728D01*

-X385795Y232497D01*

-X386202Y232329D01*

-X386437Y232273D01*

-Y189647D01*

-X386434Y189651D01*

-X386148Y189986D01*

-X385813Y190272D01*

-X385437Y190503D01*

-X385030Y190671D01*

-X384601Y190774D01*

-X384162Y190809D01*

-X383723Y190774D01*

-X383294Y190671D01*

-X382887Y190503D01*

-X382511Y190272D01*

-X382176Y189986D01*

-X381890Y189651D01*

-X381659Y189275D01*

-X381491Y188868D01*

-X381388Y188439D01*

-X381353Y188000D01*

-X381388Y187561D01*

-X381491Y187132D01*

-X381659Y186725D01*

-X381890Y186349D01*

-X382176Y186014D01*

-X382511Y185728D01*

-X382887Y185497D01*

-X383294Y185329D01*

-X383723Y185226D01*

-X384162Y185191D01*

-X384601Y185226D01*

-X385030Y185329D01*

-X385437Y185497D01*

-X385813Y185728D01*

-X386148Y186014D01*

-X386434Y186349D01*

-X386437Y186353D01*

-Y165808D01*

-X386002Y165774D01*

-X385573Y165671D01*

-X385166Y165503D01*

-X384790Y165272D01*

-X384455Y164986D01*

-X384169Y164651D01*

-X383938Y164275D01*

-X383770Y163868D01*

-X383667Y163439D01*

-X383632Y163000D01*

-X383667Y162561D01*

-X383770Y162132D01*

-X383938Y161725D01*

-X384169Y161349D01*

-X384455Y161014D01*

-X384790Y160728D01*

-X385166Y160497D01*

-X385573Y160329D01*

-X386002Y160226D01*

-X386437Y160192D01*

-Y159565D01*

-X386305Y159596D01*

-X386023Y159619D01*

-X385741Y159596D01*

-X385465Y159530D01*

-X385203Y159422D01*

-X384962Y159274D01*

-X384746Y159090D01*

-X384562Y158874D01*

-X384414Y158633D01*

-X384306Y158371D01*

-X384240Y158095D01*

-X384217Y157813D01*

-X384240Y157531D01*

-X384306Y157255D01*

-X384414Y156993D01*

-X384562Y156752D01*

-X384746Y156536D01*

-X384962Y156352D01*

-X385203Y156204D01*

-X385465Y156096D01*

-X385741Y156030D01*

-X386023Y156007D01*

-X386305Y156030D01*

-X386437Y156061D01*

-Y136500D01*

-G37*

-G36*

-X377344D02*X372437D01*

-Y167578D01*

-X372441Y167577D01*

-X372880Y167612D01*

-X373309Y167715D01*

-X373716Y167883D01*

-X374092Y168114D01*

-X374427Y168400D01*

-X374713Y168735D01*

-X374944Y169111D01*

-X375112Y169518D01*

-X375215Y169947D01*

-X375241Y170386D01*

-X375215Y170825D01*

-X375112Y171254D01*

-X374944Y171661D01*

-X374713Y172037D01*

-X374427Y172372D01*

-X374092Y172658D01*

-X373716Y172889D01*

-X373309Y173057D01*

-X372880Y173160D01*

-X372441Y173195D01*

-X372437Y173194D01*

-Y258628D01*

-X372663Y258767D01*

-X372879Y258951D01*

-X373063Y259167D01*

-X373211Y259408D01*

-X373319Y259670D01*

-X373385Y259946D01*

-X373402Y260228D01*

-X373385Y260510D01*

-X373319Y260786D01*

-X373211Y261048D01*

-X373063Y261289D01*

-X372879Y261505D01*

-X372663Y261689D01*

-X372437Y261828D01*

-Y287881D01*

-X372441Y287880D01*

-X372880Y287915D01*

-X373309Y288018D01*

-X373716Y288186D01*

-X374092Y288417D01*

-X374427Y288703D01*

-X374713Y289038D01*

-X374944Y289414D01*

-X375112Y289821D01*

-X375215Y290250D01*

-X375241Y290689D01*

-X375215Y291128D01*

-X375112Y291557D01*

-X374944Y291964D01*

-X374713Y292340D01*

-X374427Y292675D01*

-X374092Y292961D01*

-X373716Y293192D01*

-X373309Y293360D01*

-X372880Y293463D01*

-X372441Y293498D01*

-X372437Y293497D01*

-Y348381D01*

-X372441Y348380D01*

-X372880Y348415D01*

-X373309Y348518D01*

-X373716Y348686D01*

-X374092Y348917D01*

-X374427Y349203D01*

-X374713Y349538D01*

-X374944Y349914D01*

-X375112Y350321D01*

-X375215Y350750D01*

-X375241Y351189D01*

-X375215Y351628D01*

-X375112Y352057D01*

-X374944Y352464D01*

-X374713Y352840D01*

-X374427Y353175D01*

-X374092Y353461D01*

-X373716Y353692D01*

-X373309Y353860D01*

-X372880Y353963D01*

-X372441Y353998D01*

-X372437Y353997D01*

-Y397000D01*

-X377344D01*

-Y237057D01*

-X377092Y237272D01*

-X376716Y237503D01*

-X376309Y237671D01*

-X375880Y237774D01*

-X375441Y237809D01*

-X375002Y237774D01*

-X374573Y237671D01*

-X374166Y237503D01*

-X373790Y237272D01*

-X373455Y236986D01*

-X373169Y236651D01*

-X372938Y236275D01*

-X372770Y235868D01*

-X372667Y235439D01*

-X372632Y235000D01*

-X372667Y234561D01*

-X372770Y234132D01*

-X372938Y233725D01*

-X373169Y233349D01*

-X373455Y233014D01*

-X373790Y232728D01*

-X374166Y232497D01*

-X374573Y232329D01*

-X375002Y232226D01*

-X375441Y232191D01*

-X375880Y232226D01*

-X376309Y232329D01*

-X376716Y232497D01*

-X377092Y232728D01*

-X377344Y232943D01*

-Y163983D01*

-X377065Y163961D01*

-X376789Y163895D01*

-X376527Y163787D01*

-X376286Y163639D01*

-X376070Y163455D01*

-X375886Y163239D01*

-X375738Y162998D01*

-X375630Y162736D01*

-X375564Y162460D01*

-X375541Y162178D01*

-X375564Y161896D01*

-X375630Y161620D01*

-X375738Y161358D01*

-X375886Y161117D01*

-X376070Y160901D01*

-X376286Y160717D01*

-X376527Y160569D01*

-X376789Y160461D01*

-X377065Y160395D01*

-X377344Y160373D01*

-Y136500D01*

-G37*

-G36*

-X372437D02*X368441D01*

-Y171500D01*

-X358938D01*

-Y206695D01*

-X358941Y206694D01*

-X359223Y206717D01*

-X359499Y206783D01*

-X359761Y206891D01*

-X360002Y207039D01*

-X360218Y207223D01*

-X360402Y207439D01*

-X360550Y207680D01*

-X360658Y207942D01*

-X360724Y208218D01*

-X360741Y208500D01*

-X360724Y208782D01*

-X360658Y209058D01*

-X360550Y209320D01*

-X360402Y209561D01*

-X360218Y209777D01*

-X360002Y209961D01*

-X359761Y210109D01*

-X359499Y210217D01*

-X359223Y210283D01*

-X358941Y210306D01*

-X358938Y210305D01*

-Y397000D01*

-X372437D01*

-Y353997D01*

-X372002Y353963D01*

-X371573Y353860D01*

-X371166Y353692D01*

-X370790Y353461D01*

-X370455Y353175D01*

-X370169Y352840D01*

-X369938Y352464D01*

-X369770Y352057D01*

-X369667Y351628D01*

-X369632Y351189D01*

-X369667Y350750D01*

-X369770Y350321D01*

-X369938Y349914D01*

-X370169Y349538D01*

-X370455Y349203D01*

-X370790Y348917D01*

-X371166Y348686D01*

-X371573Y348518D01*

-X372002Y348415D01*

-X372437Y348381D01*

-Y293497D01*

-X372002Y293463D01*

-X371573Y293360D01*

-X371166Y293192D01*

-X370790Y292961D01*

-X370455Y292675D01*

-X370169Y292340D01*

-X369938Y291964D01*

-X369770Y291557D01*

-X369667Y291128D01*

-X369632Y290689D01*

-X369667Y290250D01*

-X369770Y289821D01*

-X369938Y289414D01*

-X370169Y289038D01*

-X370455Y288703D01*

-X370790Y288417D01*

-X371166Y288186D01*

-X371573Y288018D01*

-X372002Y287915D01*

-X372437Y287881D01*

-Y261828D01*

-X372422Y261837D01*

-X372160Y261945D01*

-X371884Y262011D01*

-X371602Y262034D01*

-X371320Y262011D01*

-X371044Y261945D01*

-X370782Y261837D01*

-X370541Y261689D01*

-X370325Y261505D01*

-X370141Y261289D01*

-X369993Y261048D01*

-X369885Y260786D01*

-X369819Y260510D01*

-X369796Y260228D01*

-X369819Y259946D01*

-X369885Y259670D01*

-X369993Y259408D01*

-X370141Y259167D01*

-X370325Y258951D01*

-X370541Y258767D01*

-X370782Y258619D01*

-X371044Y258511D01*

-X371320Y258445D01*

-X371602Y258422D01*

-X371884Y258445D01*

-X372160Y258511D01*

-X372422Y258619D01*

-X372437Y258628D01*

-Y173194D01*

-X372002Y173160D01*

-X371573Y173057D01*

-X371166Y172889D01*

-X370790Y172658D01*

-X370455Y172372D01*

-X370169Y172037D01*

-X369938Y171661D01*

-X369770Y171254D01*

-X369667Y170825D01*

-X369632Y170386D01*

-X369667Y169947D01*

-X369770Y169518D01*

-X369938Y169111D01*

-X370169Y168735D01*

-X370455Y168400D01*

-X370790Y168114D01*

-X371166Y167883D01*

-X371573Y167715D01*

-X372002Y167612D01*

-X372437Y167578D01*

-Y136500D01*

-G37*

-G36*

-X358938Y171500D02*X356438D01*

-Y188225D01*

-X356674Y188795D01*

-X357093Y190540D01*

-X357199Y192329D01*

-X357093Y194118D01*

-X356674Y195863D01*

-X356438Y196433D01*

-Y231195D01*

-X356441Y231194D01*

-X356723Y231217D01*

-X356999Y231283D01*

-X357261Y231391D01*

-X357502Y231539D01*

-X357718Y231723D01*

-X357902Y231939D01*

-X358050Y232180D01*

-X358158Y232442D01*

-X358224Y232718D01*

-X358241Y233000D01*

-X358224Y233282D01*

-X358158Y233558D01*

-X358050Y233820D01*

-X357902Y234061D01*

-X357718Y234277D01*

-X357502Y234461D01*

-X357261Y234609D01*

-X356999Y234717D01*

-X356723Y234783D01*

-X356441Y234806D01*

-X356438Y234805D01*

-Y397000D01*

-X358938D01*

-Y210305D01*

-X358659Y210283D01*

-X358383Y210217D01*

-X358121Y210109D01*

-X357880Y209961D01*

-X357664Y209777D01*

-X357480Y209561D01*

-X357332Y209320D01*

-X357224Y209058D01*

-X357158Y208782D01*

-X357135Y208500D01*

-X357158Y208218D01*

-X357224Y207942D01*

-X357332Y207680D01*

-X357480Y207439D01*

-X357664Y207223D01*

-X357880Y207039D01*

-X358121Y206891D01*

-X358383Y206783D01*

-X358659Y206717D01*

-X358938Y206695D01*

-Y171500D01*

-G37*

-G36*

-X356438Y196433D02*X355988Y197520D01*

-X355050Y199050D01*

-X353885Y200415D01*

-X353387Y200840D01*

-Y337716D01*

-X353390Y337715D01*

-X353672Y337738D01*

-X353948Y337804D01*

-X354210Y337912D01*

-X354451Y338060D01*

-X354667Y338244D01*

-X354851Y338460D01*

-X354999Y338701D01*

-X355107Y338963D01*

-X355173Y339239D01*

-X355190Y339521D01*

-X355173Y339803D01*

-X355107Y340079D01*

-X354999Y340341D01*

-X354851Y340582D01*

-X354667Y340798D01*

-X354451Y340982D01*

-X354210Y341130D01*

-X353948Y341238D01*

-X353672Y341304D01*

-X353390Y341327D01*

-X353387Y341326D01*

-Y350739D01*

-X353955Y351404D01*

-X354781Y352752D01*

-X355387Y354214D01*

-X355756Y355752D01*

-X355849Y357329D01*

-X355756Y358906D01*

-X355387Y360444D01*

-X354781Y361906D01*

-X353955Y363254D01*

-X353387Y363919D01*

-Y397000D01*

-X356438D01*

-Y234805D01*

-X356159Y234783D01*

-X355883Y234717D01*

-X355621Y234609D01*

-X355380Y234461D01*

-X355164Y234277D01*

-X354980Y234061D01*

-X354832Y233820D01*

-X354724Y233558D01*

-X354658Y233282D01*

-X354635Y233000D01*

-X354658Y232718D01*

-X354724Y232442D01*

-X354832Y232180D01*

-X354980Y231939D01*

-X355164Y231723D01*

-X355380Y231539D01*

-X355621Y231391D01*

-X355883Y231283D01*

-X356159Y231217D01*

-X356438Y231195D01*

-Y196433D01*

-G37*

-G36*

-Y171500D02*X353387D01*

-Y183818D01*

-X353885Y184243D01*

-X355050Y185608D01*

-X355988Y187138D01*

-X356438Y188225D01*

-Y171500D01*

-G37*

-G36*

-X353387Y363919D02*X352927Y364457D01*

-X351724Y365485D01*

-X350376Y366311D01*

-X348914Y366917D01*

-X347376Y367286D01*

-X345799Y367410D01*

-X344222Y367286D01*

-X342684Y366917D01*

-X341222Y366311D01*

-X339874Y365485D01*

-X339834Y365451D01*

-Y397000D01*

-X353387D01*

-Y363919D01*

-G37*

-G36*

-Y200840D02*X352520Y201580D01*

-X350990Y202518D01*

-X349333Y203204D01*

-X347588Y203623D01*

-X345799Y203764D01*

-X344010Y203623D01*

-X342265Y203204D01*

-X340608Y202518D01*

-X339834Y202044D01*

-Y223052D01*

-X339902Y223131D01*

-X340050Y223372D01*

-X340158Y223634D01*

-X340224Y223910D01*

-X340241Y224192D01*

-X340224Y224474D01*

-X340158Y224750D01*

-X340050Y225012D01*

-X339902Y225253D01*

-X339834Y225332D01*

-Y228984D01*

-X339902Y229063D01*

-X340050Y229304D01*

-X340158Y229566D01*

-X340224Y229842D01*

-X340241Y230124D01*

-X340224Y230406D01*

-X340158Y230682D01*

-X340050Y230944D01*

-X339902Y231185D01*

-X339834Y231264D01*

-Y245027D01*

-X340278Y244755D01*

-X340969Y244469D01*

-X341696Y244294D01*

-X342441Y244235D01*

-X343186Y244294D01*

-X343913Y244469D01*

-X344604Y244755D01*

-X345242Y245145D01*

-X345810Y245631D01*

-X346296Y246199D01*

-X346686Y246837D01*

-X346972Y247528D01*

-X347147Y248255D01*

-X347191Y249000D01*

-X347147Y249745D01*

-X346972Y250472D01*

-X346686Y251163D01*

-X346296Y251801D01*

-X345810Y252369D01*

-X345242Y252855D01*

-X344604Y253245D01*

-X343913Y253531D01*

-X343186Y253706D01*

-X342441Y253765D01*

-X341696Y253706D01*

-X340969Y253531D01*

-X340278Y253245D01*

-X339834Y252973D01*

-Y340022D01*

-X339837Y340021D01*

-X340119Y340044D01*

-X340395Y340110D01*

-X340657Y340218D01*

-X340898Y340366D01*

-X341114Y340550D01*

-X341298Y340766D01*

-X341446Y341007D01*

-X341554Y341269D01*

-X341620Y341545D01*

-X341637Y341827D01*

-X341620Y342109D01*

-X341554Y342385D01*

-X341446Y342647D01*

-X341298Y342888D01*

-X341114Y343104D01*

-X340898Y343288D01*

-X340657Y343436D01*

-X340395Y343544D01*

-X340119Y343610D01*

-X339837Y343633D01*

-X339834Y343632D01*

-Y349207D01*

-X339874Y349173D01*

-X341222Y348347D01*

-X342684Y347741D01*

-X344222Y347372D01*

-X345799Y347248D01*

-X347376Y347372D01*

-X348914Y347741D01*

-X350376Y348347D01*

-X351724Y349173D01*

-X352927Y350201D01*

-X353387Y350739D01*

-Y341326D01*

-X353108Y341304D01*

-X352832Y341238D01*

-X352570Y341130D01*

-X352329Y340982D01*

-X352113Y340798D01*

-X351929Y340582D01*

-X351781Y340341D01*

-X351673Y340079D01*

-X351607Y339803D01*

-X351584Y339521D01*

-X351607Y339239D01*

-X351673Y338963D01*

-X351781Y338701D01*

-X351929Y338460D01*

-X352113Y338244D01*

-X352329Y338060D01*

-X352570Y337912D01*

-X352832Y337804D01*

-X353108Y337738D01*

-X353387Y337716D01*

-Y200840D01*

-G37*

-G36*

-Y171500D02*X339834D01*

-Y182614D01*

-X340608Y182140D01*

-X342265Y181454D01*

-X344010Y181035D01*

-X345799Y180894D01*

-X347588Y181035D01*

-X349333Y181454D01*

-X350990Y182140D01*

-X352520Y183078D01*

-X353387Y183818D01*

-Y171500D01*

-G37*

-G36*

-X312154Y172548D02*X312309Y172294D01*

-X312749Y171779D01*

-X313076Y171500D01*

-X312154D01*

-Y172548D01*

-G37*

-G36*

-X339834Y171500D02*X332434D01*

-Y244236D01*

-X332441Y244235D01*

-X333186Y244294D01*

-X333913Y244469D01*

-X334604Y244755D01*

-X335242Y245145D01*

-X335810Y245631D01*

-X336296Y246199D01*

-X336686Y246837D01*

-X336972Y247528D01*

-X337147Y248255D01*

-X337191Y249000D01*

-X337147Y249745D01*

-X336972Y250472D01*

-X336686Y251163D01*

-X336296Y251801D01*

-X335810Y252369D01*

-X335242Y252855D01*

-X334604Y253245D01*

-X333913Y253531D01*

-X333186Y253706D01*

-X332441Y253765D01*

-X332434Y253764D01*

-Y397000D01*

-X339834D01*

-Y365451D01*

-X338671Y364457D01*

-X337643Y363254D01*

-X336817Y361906D01*

-X336211Y360444D01*

-X335842Y358906D01*

-X335718Y357329D01*

-X335842Y355752D01*

-X336211Y354214D01*

-X336817Y352752D01*

-X337643Y351404D01*

-X338671Y350201D01*

-X339834Y349207D01*

-Y343632D01*

-X339555Y343610D01*

-X339279Y343544D01*

-X339017Y343436D01*

-X338776Y343288D01*

-X338560Y343104D01*

-X338376Y342888D01*

-X338228Y342647D01*

-X338120Y342385D01*

-X338054Y342109D01*

-X338031Y341827D01*

-X338054Y341545D01*

-X338120Y341269D01*

-X338228Y341007D01*

-X338376Y340766D01*

-X338560Y340550D01*

-X338776Y340366D01*

-X339017Y340218D01*

-X339279Y340110D01*

-X339555Y340044D01*

-X339834Y340022D01*

-Y252973D01*

-X339640Y252855D01*

-X339072Y252369D01*

-X338586Y251801D01*

-X338196Y251163D01*

-X337910Y250472D01*

-X337735Y249745D01*

-X337676Y249000D01*

-X337735Y248255D01*

-X337910Y247528D01*

-X338196Y246837D01*

-X338586Y246199D01*

-X339072Y245631D01*

-X339640Y245145D01*

-X339834Y245027D01*

-Y231264D01*

-X339718Y231401D01*

-X339502Y231585D01*

-X339261Y231733D01*

-X338999Y231841D01*

-X338723Y231907D01*

-X338441Y231930D01*

-X338159Y231907D01*

-X337883Y231841D01*

-X337621Y231733D01*

-X337380Y231585D01*

-X337164Y231401D01*

-X336980Y231185D01*

-X336832Y230944D01*

-X336724Y230682D01*

-X336658Y230406D01*

-X336635Y230124D01*

-X336658Y229842D01*

-X336724Y229566D01*

-X336832Y229304D01*

-X336980Y229063D01*

-X337164Y228847D01*

-X337380Y228663D01*

-X337621Y228515D01*

-X337883Y228407D01*

-X338159Y228341D01*

-X338441Y228318D01*

-X338723Y228341D01*

-X338999Y228407D01*

-X339261Y228515D01*

-X339502Y228663D01*

-X339718Y228847D01*

-X339834Y228984D01*

-Y225332D01*

-X339718Y225469D01*

-X339502Y225653D01*

-X339261Y225801D01*

-X338999Y225909D01*

-X338723Y225975D01*

-X338441Y225998D01*

-X338159Y225975D01*

-X337883Y225909D01*

-X337621Y225801D01*

-X337380Y225653D01*

-X337164Y225469D01*

-X336980Y225253D01*

-X336832Y225012D01*

-X336724Y224750D01*

-X336658Y224474D01*

-X336635Y224192D01*

-X336658Y223910D01*

-X336724Y223634D01*

-X336832Y223372D01*

-X336980Y223131D01*

-X337164Y222915D01*

-X337380Y222731D01*

-X337621Y222583D01*

-X337883Y222475D01*

-X338159Y222409D01*

-X338441Y222386D01*

-X338723Y222409D01*

-X338999Y222475D01*

-X339261Y222583D01*

-X339502Y222731D01*

-X339718Y222915D01*

-X339834Y223052D01*

-Y202044D01*

-X339078Y201580D01*

-X337713Y200415D01*

-X336548Y199050D01*

-X335610Y197520D01*

-X334924Y195863D01*

-X334505Y194118D01*

-X334364Y192329D01*

-X334505Y190540D01*

-X334924Y188795D01*

-X335610Y187138D01*

-X336548Y185608D01*

-X337713Y184243D01*

-X339078Y183078D01*

-X339834Y182614D01*

-Y171500D01*

-G37*

-G36*

-X332434D02*X328522D01*

-X328849Y171779D01*

-X329289Y172294D01*

-X329642Y172871D01*

-X329901Y173496D01*

-X330059Y174154D01*

-X330099Y174829D01*

-X330059Y175504D01*

-X329901Y176162D01*

-X329642Y176787D01*

-X329289Y177364D01*

-X328849Y177879D01*

-X328334Y178319D01*

-X327757Y178672D01*

-X327132Y178931D01*

-X326474Y179089D01*

-X325799Y179142D01*

-X325792Y179142D01*

-Y180516D01*

-X325799Y180516D01*

-X326474Y180569D01*

-X327132Y180727D01*

-X327757Y180986D01*

-X328334Y181339D01*

-X328849Y181779D01*

-X329289Y182294D01*

-X329642Y182871D01*

-X329901Y183496D01*

-X330059Y184154D01*

-X330099Y184829D01*

-X330059Y185504D01*

-X329901Y186162D01*

-X329642Y186787D01*

-X329289Y187364D01*

-X328849Y187879D01*

-X328334Y188319D01*

-X327757Y188672D01*

-X327132Y188931D01*

-X326474Y189089D01*

-X325799Y189142D01*

-X325792Y189142D01*

-Y245616D01*

-X325810Y245631D01*

-X326296Y246199D01*

-X326686Y246837D01*

-X326972Y247528D01*

-X327147Y248255D01*

-X327191Y249000D01*

-X327147Y249745D01*

-X326972Y250472D01*

-X326686Y251163D01*

-X326296Y251801D01*

-X325810Y252369D01*

-X325792Y252384D01*

-Y330862D01*

-X326435Y331910D01*

-X327151Y333640D01*

-X327589Y335462D01*

-X327699Y337329D01*

-X327589Y339196D01*

-X327151Y341018D01*

-X326435Y342748D01*

-X325792Y343796D01*

-Y360516D01*

-X325799Y360516D01*

-X326474Y360569D01*

-X327132Y360727D01*

-X327757Y360986D01*

-X328334Y361339D01*

-X328849Y361779D01*

-X329289Y362294D01*

-X329642Y362871D01*

-X329901Y363496D01*

-X330059Y364154D01*

-X330099Y364829D01*

-X330059Y365504D01*

-X329901Y366162D01*

-X329642Y366787D01*

-X329289Y367364D01*

-X328849Y367879D01*

-X328334Y368319D01*

-X327757Y368672D01*

-X327132Y368931D01*

-X326474Y369089D01*

-X325799Y369142D01*

-X325792Y369142D01*

-Y370516D01*

-X325799Y370516D01*

-X326474Y370569D01*

-X327132Y370727D01*

-X327757Y370986D01*

-X328334Y371339D01*

-X328849Y371779D01*

-X329289Y372294D01*

-X329642Y372871D01*

-X329901Y373496D01*

-X330059Y374154D01*

-X330099Y374829D01*

-X330059Y375504D01*

-X329901Y376162D01*

-X329642Y376787D01*

-X329289Y377364D01*

-X328849Y377879D01*

-X328334Y378319D01*

-X327757Y378672D01*

-X327132Y378931D01*

-X326474Y379089D01*

-X325799Y379142D01*

-X325792Y379142D01*

-Y397000D01*

-X332434D01*

-Y253764D01*

-X331696Y253706D01*

-X330969Y253531D01*

-X330278Y253245D01*

-X329640Y252855D01*

-X329072Y252369D01*

-X328586Y251801D01*

-X328196Y251163D01*

-X327910Y250472D01*

-X327735Y249745D01*

-X327676Y249000D01*

-X327735Y248255D01*

-X327910Y247528D01*

-X328196Y246837D01*

-X328586Y246199D01*

-X329072Y245631D01*

-X329640Y245145D01*

-X330278Y244755D01*

-X330969Y244469D01*

-X331696Y244294D01*

-X332434Y244236D01*

-Y171500D01*

-G37*

-G36*

-X325792Y343796D02*X325456Y344345D01*

-X324240Y345770D01*

-X322815Y346986D01*

-X321218Y347965D01*

-X319488Y348681D01*

-X317666Y349119D01*

-X315799Y349266D01*

-X313932Y349119D01*

-X312154Y348692D01*

-Y362548D01*

-X312309Y362294D01*

-X312749Y361779D01*

-X313264Y361339D01*

-X313841Y360986D01*

-X314466Y360727D01*

-X315124Y360569D01*

-X315799Y360516D01*

-X316474Y360569D01*

-X317132Y360727D01*

-X317757Y360986D01*

-X318334Y361339D01*

-X318849Y361779D01*

-X319289Y362294D01*

-X319642Y362871D01*

-X319901Y363496D01*

-X320059Y364154D01*

-X320099Y364829D01*

-X320059Y365504D01*

-X319901Y366162D01*

-X319642Y366787D01*

-X319289Y367364D01*

-X318849Y367879D01*

-X318334Y368319D01*

-X317757Y368672D01*

-X317132Y368931D01*

-X316474Y369089D01*

-X315799Y369142D01*

-X315124Y369089D01*

-X314466Y368931D01*

-X313841Y368672D01*

-X313264Y368319D01*

-X312749Y367879D01*

-X312309Y367364D01*

-X312154Y367110D01*

-Y372548D01*

-X312309Y372294D01*

-X312749Y371779D01*

-X313264Y371339D01*

-X313841Y370986D01*

-X314466Y370727D01*

-X315124Y370569D01*

-X315799Y370516D01*

-X316474Y370569D01*

-X317132Y370727D01*

-X317757Y370986D01*

-X318334Y371339D01*

-X318849Y371779D01*

-X319289Y372294D01*

-X319642Y372871D01*

-X319901Y373496D01*

-X320059Y374154D01*

-X320099Y374829D01*

-X320059Y375504D01*

-X319901Y376162D01*

-X319642Y376787D01*

-X319289Y377364D01*

-X318849Y377879D01*

-X318334Y378319D01*

-X317757Y378672D01*

-X317132Y378931D01*

-X316474Y379089D01*

-X315799Y379142D01*

-X315124Y379089D01*

-X314466Y378931D01*

-X313841Y378672D01*

-X313264Y378319D01*

-X312749Y377879D01*

-X312309Y377364D01*

-X312154Y377110D01*

-Y397000D01*

-X325792D01*

-Y379142D01*

-X325124Y379089D01*

-X324466Y378931D01*

-X323841Y378672D01*

-X323264Y378319D01*

-X322749Y377879D01*

-X322309Y377364D01*

-X321956Y376787D01*

-X321697Y376162D01*

-X321539Y375504D01*

-X321486Y374829D01*

-X321539Y374154D01*

-X321697Y373496D01*

-X321956Y372871D01*

-X322309Y372294D01*

-X322749Y371779D01*

-X323264Y371339D01*

-X323841Y370986D01*

-X324466Y370727D01*

-X325124Y370569D01*

-X325792Y370516D01*

-Y369142D01*

-X325124Y369089D01*

-X324466Y368931D01*

-X323841Y368672D01*

-X323264Y368319D01*

-X322749Y367879D01*

-X322309Y367364D01*

-X321956Y366787D01*

-X321697Y366162D01*

-X321539Y365504D01*

-X321486Y364829D01*

-X321539Y364154D01*

-X321697Y363496D01*

-X321956Y362871D01*

-X322309Y362294D01*

-X322749Y361779D01*

-X323264Y361339D01*

-X323841Y360986D01*

-X324466Y360727D01*

-X325124Y360569D01*

-X325792Y360516D01*

-Y343796D01*

-G37*

-G36*

-Y179142D02*X325124Y179089D01*

-X324466Y178931D01*

-X323841Y178672D01*

-X323264Y178319D01*

-X322749Y177879D01*

-X322309Y177364D01*

-X321956Y176787D01*

-X321697Y176162D01*

-X321539Y175504D01*

-X321486Y174829D01*

-X321539Y174154D01*

-X321697Y173496D01*

-X321956Y172871D01*

-X322309Y172294D01*

-X322749Y171779D01*

-X323076Y171500D01*

-X318522D01*

-X318849Y171779D01*

-X319289Y172294D01*

-X319642Y172871D01*

-X319901Y173496D01*

-X320059Y174154D01*

-X320099Y174829D01*

-X320059Y175504D01*

-X319901Y176162D01*

-X319642Y176787D01*

-X319289Y177364D01*

-X318849Y177879D01*

-X318334Y178319D01*

-X317757Y178672D01*

-X317132Y178931D01*

-X316474Y179089D01*

-X315799Y179142D01*

-X315124Y179089D01*

-X314466Y178931D01*

-X313841Y178672D01*

-X313264Y178319D01*

-X312749Y177879D01*

-X312309Y177364D01*

-X312154Y177110D01*

-Y182548D01*

-X312309Y182294D01*

-X312749Y181779D01*

-X313264Y181339D01*

-X313841Y180986D01*

-X314466Y180727D01*

-X315124Y180569D01*

-X315799Y180516D01*

-X316474Y180569D01*

-X317132Y180727D01*

-X317757Y180986D01*

-X318334Y181339D01*

-X318849Y181779D01*

-X319289Y182294D01*

-X319642Y182871D01*

-X319901Y183496D01*

-X320059Y184154D01*

-X320099Y184829D01*

-X320059Y185504D01*

-X319901Y186162D01*

-X319642Y186787D01*

-X319289Y187364D01*

-X318849Y187879D01*

-X318334Y188319D01*

-X317757Y188672D01*

-X317132Y188931D01*

-X316474Y189089D01*

-X315799Y189142D01*

-X315124Y189089D01*

-X314466Y188931D01*

-X313841Y188672D01*

-X313264Y188319D01*

-X312749Y187879D01*

-X312309Y187364D01*

-X312154Y187110D01*

-Y244256D01*

-X315926Y244264D01*

-X316156Y244319D01*

-X316374Y244409D01*

-X316575Y244533D01*

-X316755Y244686D01*

-X316908Y244866D01*

-X317032Y245067D01*

-X317122Y245285D01*

-X317177Y245515D01*

-X317191Y245750D01*

-X317177Y252485D01*

-X317122Y252715D01*

-X317032Y252933D01*

-X316908Y253134D01*

-X316755Y253314D01*

-X316575Y253467D01*

-X316374Y253591D01*

-X316156Y253681D01*

-X315926Y253736D01*

-X315691Y253750D01*

-X312154Y253743D01*

-Y292984D01*

-X312444Y293007D01*

-X312757Y293082D01*

-X313056Y293206D01*

-X313331Y293374D01*

-X313576Y293584D01*

-X313786Y293829D01*

-X313954Y294104D01*

-X314078Y294403D01*

-X314153Y294716D01*

-X314172Y295038D01*

-X314153Y295360D01*

-X314078Y295673D01*

-X313954Y295972D01*

-X313786Y296247D01*

-X313576Y296492D01*

-X313331Y296702D01*

-X313056Y296870D01*

-X312757Y296994D01*

-X312444Y297069D01*

-X312154Y297092D01*

-Y298100D01*

-X312157Y298100D01*

-X312479Y298125D01*

-X312792Y298200D01*

-X313091Y298324D01*

-X313366Y298492D01*

-X313611Y298702D01*

-X313821Y298947D01*

-X313989Y299222D01*

-X314113Y299521D01*

-X314188Y299834D01*

-X314207Y300156D01*

-X314188Y300478D01*

-X314113Y300791D01*

-X313989Y301090D01*

-X313821Y301365D01*

-X313611Y301610D01*

-X313366Y301820D01*

-X313091Y301988D01*

-X312792Y302112D01*

-X312479Y302187D01*

-X312157Y302212D01*

-X312154Y302212D01*

-Y325966D01*

-X313932Y325539D01*

-X315799Y325392D01*

-X317666Y325539D01*

-X319488Y325977D01*

-X321218Y326693D01*

-X322815Y327672D01*

-X324240Y328888D01*

-X325456Y330313D01*

-X325792Y330862D01*

-Y252384D01*

-X325242Y252855D01*

-X324604Y253245D01*

-X323913Y253531D01*

-X323186Y253706D01*

-X322441Y253765D01*

-X321696Y253706D01*

-X320969Y253531D01*

-X320278Y253245D01*

-X319640Y252855D01*

-X319072Y252369D01*

-X318586Y251801D01*

-X318196Y251163D01*

-X317910Y250472D01*

-X317735Y249745D01*

-X317676Y249000D01*

-X317735Y248255D01*

-X317910Y247528D01*

-X318196Y246837D01*

-X318586Y246199D01*

-X319072Y245631D01*

-X319640Y245145D01*

-X320278Y244755D01*

-X320969Y244469D01*

-X321696Y244294D01*

-X322441Y244235D01*

-X323186Y244294D01*

-X323913Y244469D01*

-X324604Y244755D01*

-X325242Y245145D01*

-X325792Y245616D01*

-Y189142D01*

-X325124Y189089D01*

-X324466Y188931D01*

-X323841Y188672D01*

-X323264Y188319D01*

-X322749Y187879D01*

-X322309Y187364D01*

-X321956Y186787D01*

-X321697Y186162D01*

-X321539Y185504D01*

-X321486Y184829D01*

-X321539Y184154D01*

-X321697Y183496D01*

-X321956Y182871D01*

-X322309Y182294D01*

-X322749Y181779D01*

-X323264Y181339D01*

-X323841Y180986D01*

-X324466Y180727D01*

-X325124Y180569D01*

-X325792Y180516D01*

-Y179142D01*

-G37*

-G36*

-X312154Y348692D02*X312110Y348681D01*

-X310380Y347965D01*

-X308783Y346986D01*

-X308351Y346617D01*

-Y361354D01*

-X308849Y361779D01*

-X309289Y362294D01*

-X309642Y362871D01*

-X309901Y363496D01*

-X310059Y364154D01*

-X310099Y364829D01*

-X310059Y365504D01*

-X309901Y366162D01*

-X309642Y366787D01*

-X309289Y367364D01*

-X308849Y367879D01*

-X308351Y368304D01*

-Y371354D01*

-X308849Y371779D01*

-X309289Y372294D01*

-X309642Y372871D01*

-X309901Y373496D01*

-X310059Y374154D01*

-X310099Y374829D01*

-X310059Y375504D01*

-X309901Y376162D01*

-X309642Y376787D01*

-X309289Y377364D01*

-X308849Y377879D01*

-X308351Y378304D01*

-Y397000D01*

-X312154D01*

-Y377110D01*

-X311956Y376787D01*

-X311697Y376162D01*

-X311539Y375504D01*

-X311486Y374829D01*

-X311539Y374154D01*

-X311697Y373496D01*

-X311956Y372871D01*

-X312154Y372548D01*

-Y367110D01*

-X311956Y366787D01*

-X311697Y366162D01*

-X311539Y365504D01*

-X311486Y364829D01*

-X311539Y364154D01*

-X311697Y363496D01*

-X311956Y362871D01*

-X312154Y362548D01*

-Y348692D01*

-G37*

-G36*

-Y253743D02*X308956Y253736D01*

-X308726Y253681D01*

-X308508Y253591D01*

-X308351Y253494D01*

-Y264539D01*

-X308550Y264491D01*

-X308872Y264466D01*

-X309194Y264491D01*

-X309507Y264566D01*

-X309806Y264690D01*

-X310081Y264858D01*

-X310326Y265068D01*

-X310536Y265313D01*

-X310704Y265588D01*

-X310828Y265887D01*

-X310903Y266200D01*

-X310922Y266522D01*

-X310903Y266844D01*

-X310828Y267157D01*

-X310704Y267456D01*

-X310536Y267731D01*

-X310326Y267976D01*

-X310081Y268186D01*

-X309806Y268354D01*

-X309507Y268478D01*

-X309194Y268553D01*

-X308872Y268578D01*

-X308550Y268553D01*

-X308351Y268505D01*

-Y270018D01*

-X308357Y270015D01*

-X308670Y269940D01*

-X308992Y269915D01*

-X309314Y269940D01*

-X309627Y270015D01*

-X309926Y270139D01*

-X310201Y270307D01*

-X310446Y270517D01*

-X310656Y270762D01*

-X310824Y271037D01*

-X310948Y271336D01*

-X311023Y271649D01*

-X311042Y271971D01*

-X311023Y272293D01*

-X310948Y272606D01*

-X310824Y272905D01*

-X310656Y273180D01*

-X310446Y273425D01*

-X310201Y273635D01*

-X309926Y273803D01*

-X309627Y273927D01*

-X309444Y273971D01*

-X309548Y274141D01*

-X309672Y274440D01*

-X309747Y274753D01*

-X309766Y275075D01*

-X309747Y275397D01*

-X309672Y275710D01*

-X309548Y276009D01*

-X309380Y276284D01*

-X309170Y276529D01*

-X308925Y276739D01*

-X308650Y276907D01*

-X308351Y277031D01*

-X308351Y277031D01*

-Y328041D01*

-X308783Y327672D01*

-X310380Y326693D01*

-X312110Y325977D01*

-X312154Y325966D01*

-Y302212D01*

-X311835Y302187D01*

-X311522Y302112D01*

-X311223Y301988D01*

-X310948Y301820D01*

-X310703Y301610D01*

-X310493Y301365D01*

-X310325Y301090D01*

-X310201Y300791D01*

-X310126Y300478D01*

-X310101Y300156D01*

-X310126Y299834D01*

-X310201Y299521D01*

-X310325Y299222D01*

-X310493Y298947D01*

-X310703Y298702D01*

-X310948Y298492D01*

-X311223Y298324D01*

-X311522Y298200D01*

-X311835Y298125D01*

-X312154Y298100D01*

-Y297092D01*

-X312122Y297094D01*

-X311800Y297069D01*

-X311487Y296994D01*

-X311188Y296870D01*

-X310913Y296702D01*

-X310668Y296492D01*

-X310458Y296247D01*

-X310290Y295972D01*

-X310166Y295673D01*

-X310091Y295360D01*

-X310066Y295038D01*

-X310091Y294716D01*

-X310166Y294403D01*

-X310290Y294104D01*

-X310458Y293829D01*

-X310668Y293584D01*

-X310913Y293374D01*

-X311188Y293206D01*

-X311487Y293082D01*

-X311800Y293007D01*

-X312122Y292982D01*

-X312154Y292984D01*

-Y253743D01*

-G37*

-G36*

-Y177110D02*X311956Y176787D01*

-X311697Y176162D01*

-X311539Y175504D01*

-X311486Y174829D01*

-X311539Y174154D01*

-X311697Y173496D01*

-X311956Y172871D01*

-X312154Y172548D01*

-Y171500D01*

-X308522D01*

-X308849Y171779D01*

-X309289Y172294D01*

-X309642Y172871D01*

-X309901Y173496D01*

-X310059Y174154D01*

-X310099Y174829D01*

-X310059Y175504D01*

-X309901Y176162D01*

-X309642Y176787D01*

-X309289Y177364D01*

-X308849Y177879D01*

-X308351Y178304D01*

-Y181354D01*

-X308849Y181779D01*

-X309289Y182294D01*

-X309642Y182871D01*

-X309901Y183496D01*

-X310059Y184154D01*

-X310099Y184829D01*

-X310059Y185504D01*

-X309901Y186162D01*

-X309642Y186787D01*

-X309289Y187364D01*

-X308849Y187879D01*

-X308351Y188304D01*

-Y244506D01*

-X308508Y244409D01*

-X308726Y244319D01*

-X308956Y244264D01*

-X309191Y244250D01*

-X312154Y244256D01*

-Y187110D01*

-X311956Y186787D01*

-X311697Y186162D01*

-X311539Y185504D01*

-X311486Y184829D01*

-X311539Y184154D01*

-X311697Y183496D01*

-X311956Y182871D01*

-X312154Y182548D01*

-Y177110D01*

-G37*

-G36*

-X304929Y332475D02*X305163Y331910D01*

-X306142Y330313D01*

-X307358Y328888D01*

-X308351Y328041D01*

-Y277031D01*

-X308038Y277106D01*

-X307716Y277131D01*

-X307394Y277106D01*

-X307081Y277031D01*

-X306782Y276907D01*

-X306507Y276739D01*

-X306262Y276529D01*

-X306052Y276284D01*

-X305884Y276009D01*

-X305760Y275710D01*

-X305685Y275397D01*

-X305660Y275075D01*

-X305685Y274753D01*

-X305760Y274440D01*

-X305884Y274141D01*

-X306052Y273866D01*

-X306262Y273621D01*

-X306507Y273411D01*

-X306782Y273243D01*

-X307081Y273119D01*

-X307264Y273075D01*

-X307160Y272905D01*

-X307036Y272606D01*

-X306961Y272293D01*

-X306936Y271971D01*

-X306961Y271649D01*

-X307036Y271336D01*

-X307160Y271037D01*

-X307328Y270762D01*

-X307538Y270517D01*

-X307783Y270307D01*

-X308058Y270139D01*

-X308351Y270018D01*

-Y268505D01*

-X308237Y268478D01*

-X307938Y268354D01*

-X307663Y268186D01*

-X307418Y267976D01*

-X307208Y267731D01*

-X307040Y267456D01*

-X306916Y267157D01*

-X306841Y266844D01*

-X306816Y266522D01*

-X306841Y266200D01*

-X306916Y265887D01*

-X307040Y265588D01*

-X307208Y265313D01*

-X307418Y265068D01*

-X307663Y264858D01*

-X307938Y264690D01*

-X308237Y264566D01*

-X308351Y264539D01*

-Y253494D01*

-X308307Y253467D01*

-X308127Y253314D01*

-X307974Y253134D01*

-X307850Y252933D01*

-X307760Y252715D01*

-X307705Y252485D01*

-X307691Y252250D01*

-X307705Y245515D01*

-X307760Y245285D01*

-X307850Y245067D01*

-X307974Y244866D01*

-X308127Y244686D01*

-X308307Y244533D01*

-X308351Y244506D01*

-Y188304D01*

-X308334Y188319D01*

-X307757Y188672D01*

-X307132Y188931D01*

-X306474Y189089D01*

-X305799Y189142D01*

-X305124Y189089D01*

-X304929Y189042D01*

-Y202616D01*

-X304998Y202600D01*

-X305280Y202577D01*

-X305562Y202600D01*

-X305838Y202666D01*

-X306100Y202774D01*

-X306341Y202922D01*

-X306557Y203106D01*

-X306741Y203322D01*

-X306889Y203563D01*

-X306997Y203825D01*

-X307063Y204101D01*

-X307080Y204383D01*

-X307063Y204665D01*

-X306997Y204941D01*

-X306889Y205203D01*

-X306741Y205444D01*

-X306557Y205660D01*

-X306341Y205844D01*

-X306100Y205992D01*

-X305838Y206100D01*

-X305759Y206119D01*

-X305861Y206206D01*

-X306045Y206422D01*

-X306193Y206663D01*

-X306301Y206925D01*

-X306367Y207201D01*

-X306384Y207483D01*

-X306367Y207765D01*

-X306301Y208041D01*

-X306193Y208303D01*

-X306045Y208544D01*

-X305861Y208760D01*

-X305645Y208944D01*

-X305561Y208996D01*

-X305767Y209122D01*

-X305983Y209306D01*

-X306167Y209522D01*

-X306315Y209763D01*

-X306423Y210025D01*

-X306489Y210301D01*

-X306506Y210583D01*

-X306489Y210865D01*

-X306423Y211141D01*

-X306315Y211403D01*

-X306167Y211644D01*

-X305983Y211860D01*

-X305767Y212044D01*

-X305526Y212192D01*

-X305264Y212300D01*

-X304988Y212366D01*

-X304929Y212371D01*

-Y328675D01*

-X305029Y328791D01*

-X305197Y329066D01*

-X305321Y329365D01*

-X305396Y329678D01*

-X305415Y330000D01*

-X305396Y330322D01*

-X305321Y330635D01*

-X305197Y330934D01*

-X305029Y331209D01*

-X304929Y331325D01*

-Y332475D01*

-G37*

-G36*

-Y360616D02*X305124Y360569D01*

-X305799Y360516D01*

-X306474Y360569D01*

-X307132Y360727D01*

-X307757Y360986D01*

-X308334Y361339D01*

-X308351Y361354D01*

-Y346617D01*

-X307358Y345770D01*

-X306142Y344345D01*

-X305163Y342748D01*

-X304929Y342183D01*

-Y360616D01*

-G37*

-G36*

-Y370616D02*X305124Y370569D01*

-X305799Y370516D01*

-X306474Y370569D01*

-X307132Y370727D01*

-X307757Y370986D01*

-X308334Y371339D01*

-X308351Y371354D01*

-Y368304D01*

-X308334Y368319D01*

-X307757Y368672D01*

-X307132Y368931D01*

-X306474Y369089D01*

-X305799Y369142D01*

-X305124Y369089D01*

-X304929Y369042D01*

-Y370616D01*

-G37*

-G36*

-Y397000D02*X308351D01*

-Y378304D01*

-X308334Y378319D01*

-X307757Y378672D01*

-X307132Y378931D01*

-X306474Y379089D01*

-X305799Y379142D01*

-X305124Y379089D01*

-X304929Y379042D01*

-Y397000D01*

-G37*

-G36*

-X308351Y178304D02*X308334Y178319D01*

-X307757Y178672D01*

-X307132Y178931D01*

-X306474Y179089D01*

-X305799Y179142D01*

-X305124Y179089D01*

-X304929Y179042D01*

-Y180616D01*

-X305124Y180569D01*

-X305799Y180516D01*

-X306474Y180569D01*

-X307132Y180727D01*

-X307757Y180986D01*

-X308334Y181339D01*

-X308351Y181354D01*

-Y178304D01*

-G37*

-G36*

-X304929Y179042D02*X304466Y178931D01*

-X303841Y178672D01*

-X303264Y178319D01*

-X302749Y177879D01*

-X302309Y177364D01*

-X301956Y176787D01*

-X301697Y176162D01*

-X301539Y175504D01*

-X301486Y174829D01*

-X301539Y174154D01*

-X301697Y173496D01*

-X301956Y172871D01*

-X302309Y172294D01*

-X302749Y171779D01*

-X303076Y171500D01*

-X298522D01*

-X298849Y171779D01*

-X299289Y172294D01*

-X299642Y172871D01*

-X299901Y173496D01*

-X300059Y174154D01*

-X300099Y174829D01*

-X300059Y175504D01*

-X299901Y176162D01*

-X299642Y176787D01*

-X299289Y177364D01*

-X298849Y177879D01*

-X298334Y178319D01*

-X297757Y178672D01*

-X297132Y178931D01*

-X296776Y179017D01*

-Y180641D01*

-X297132Y180727D01*

-X297757Y180986D01*

-X298334Y181339D01*

-X298849Y181779D01*

-X299289Y182294D01*

-X299642Y182871D01*

-X299901Y183496D01*

-X300059Y184154D01*

-X300099Y184829D01*

-X300059Y185504D01*

-X299901Y186162D01*

-X299642Y186787D01*

-X299289Y187364D01*

-X298849Y187879D01*

-X298334Y188319D01*

-X297757Y188672D01*

-X297132Y188931D01*

-X296776Y189017D01*

-Y241757D01*

-X296871Y241796D01*

-X297146Y241964D01*

-X297391Y242174D01*

-X297601Y242419D01*

-X297769Y242694D01*

-X297893Y242993D01*

-X297968Y243306D01*

-X297987Y243628D01*

-X297968Y243950D01*

-X297893Y244263D01*

-X297769Y244562D01*

-X297601Y244837D01*

-X297391Y245082D01*

-X297146Y245292D01*

-X296871Y245460D01*

-X296776Y245499D01*

-Y254175D01*

-X297049Y254196D01*

-X297362Y254271D01*

-X297661Y254395D01*

-X297936Y254563D01*

-X298181Y254773D01*

-X298391Y255018D01*

-X298559Y255293D01*

-X298683Y255592D01*

-X298758Y255905D01*

-X298777Y256227D01*

-X298758Y256549D01*

-X298683Y256862D01*

-X298559Y257161D01*

-X298391Y257436D01*

-X298181Y257681D01*

-X297936Y257891D01*

-X297661Y258059D01*

-X297362Y258183D01*

-X297049Y258258D01*

-X296776Y258279D01*

-Y302907D01*

-X296779Y302907D01*

-X297101Y302932D01*

-X297414Y303007D01*

-X297713Y303131D01*

-X297988Y303299D01*

-X298233Y303509D01*

-X298443Y303754D01*

-X298611Y304029D01*

-X298735Y304328D01*

-X298810Y304641D01*

-X298829Y304963D01*

-X298810Y305285D01*

-X298735Y305598D01*

-X298611Y305897D01*

-X298443Y306172D01*

-X298233Y306417D01*

-X297988Y306627D01*

-X297713Y306795D01*

-X297414Y306919D01*

-X297101Y306994D01*

-X296779Y307019D01*

-X296776Y307019D01*

-Y360641D01*

-X297132Y360727D01*

-X297757Y360986D01*

-X298334Y361339D01*

-X298849Y361779D01*

-X299289Y362294D01*

-X299642Y362871D01*

-X299901Y363496D01*

-X300059Y364154D01*

-X300099Y364829D01*

-X300059Y365504D01*

-X299901Y366162D01*

-X299642Y366787D01*

-X299289Y367364D01*

-X298849Y367879D01*

-X298334Y368319D01*

-X297757Y368672D01*

-X297132Y368931D01*

-X296776Y369017D01*

-Y370641D01*

-X297132Y370727D01*

-X297757Y370986D01*

-X298334Y371339D01*

-X298849Y371779D01*

-X299289Y372294D01*

-X299642Y372871D01*

-X299901Y373496D01*

-X300059Y374154D01*

-X300099Y374829D01*

-X300059Y375504D01*

-X299901Y376162D01*

-X299642Y376787D01*

-X299289Y377364D01*

-X298849Y377879D01*

-X298334Y378319D01*

-X297757Y378672D01*

-X297132Y378931D01*

-X296776Y379017D01*

-Y397000D01*

-X304929D01*

-Y379042D01*

-X304466Y378931D01*

-X303841Y378672D01*

-X303264Y378319D01*

-X302749Y377879D01*

-X302309Y377364D01*

-X301956Y376787D01*

-X301697Y376162D01*

-X301539Y375504D01*

-X301486Y374829D01*

-X301539Y374154D01*

-X301697Y373496D01*

-X301956Y372871D01*

-X302309Y372294D01*

-X302749Y371779D01*

-X303264Y371339D01*

-X303841Y370986D01*

-X304466Y370727D01*

-X304929Y370616D01*

-Y369042D01*

-X304466Y368931D01*

-X303841Y368672D01*

-X303264Y368319D01*

-X302749Y367879D01*

-X302309Y367364D01*

-X301956Y366787D01*

-X301697Y366162D01*

-X301539Y365504D01*

-X301486Y364829D01*

-X301539Y364154D01*

-X301697Y363496D01*

-X301956Y362871D01*

-X302309Y362294D01*

-X302749Y361779D01*

-X303264Y361339D01*

-X303841Y360986D01*

-X304466Y360727D01*

-X304929Y360616D01*

-Y342183D01*

-X304553Y341276D01*

-X304395Y341461D01*

-X304150Y341671D01*

-X303875Y341839D01*

-X303576Y341963D01*

-X303263Y342038D01*

-X302941Y342063D01*

-X302619Y342038D01*

-X302306Y341963D01*

-X302007Y341839D01*

-X301732Y341671D01*

-X301487Y341461D01*

-X301277Y341216D01*

-X301109Y340941D01*

-X300985Y340642D01*

-X300910Y340329D01*

-X300885Y340007D01*

-X300910Y339685D01*

-X300985Y339372D01*

-X301109Y339073D01*

-X301277Y338798D01*

-X301487Y338553D01*

-X301732Y338343D01*

-X302007Y338175D01*

-X302306Y338051D01*

-X302619Y337976D01*

-X302941Y337951D01*

-X303263Y337976D01*

-X303576Y338051D01*

-X303875Y338175D01*

-X303932Y338210D01*

-X303862Y337329D01*

-X304009Y335462D01*

-X304447Y333640D01*

-X304929Y332475D01*

-Y331325D01*

-X304819Y331454D01*

-X304574Y331664D01*

-X304299Y331832D01*

-X304000Y331956D01*

-X303687Y332031D01*

-X303365Y332056D01*

-X303043Y332031D01*

-X302730Y331956D01*

-X302431Y331832D01*

-X302156Y331664D01*

-X301911Y331454D01*

-X301701Y331209D01*

-X301533Y330934D01*

-X301409Y330635D01*

-X301334Y330322D01*

-X301309Y330000D01*

-X301334Y329678D01*

-X301409Y329365D01*

-X301533Y329066D01*

-X301701Y328791D01*

-X301911Y328546D01*

-X302156Y328336D01*

-X302431Y328168D01*

-X302730Y328044D01*

-X303043Y327969D01*

-X303365Y327944D01*

-X303687Y327969D01*

-X304000Y328044D01*

-X304299Y328168D01*

-X304574Y328336D01*

-X304819Y328546D01*

-X304929Y328675D01*

-Y212371D01*

-X304706Y212389D01*

-X304424Y212366D01*

-X304148Y212300D01*

-X303886Y212192D01*

-X303645Y212044D01*

-X303429Y211860D01*

-X303245Y211644D01*

-X303097Y211403D01*

-X302989Y211141D01*

-X302923Y210865D01*

-X302900Y210583D01*

-X302923Y210301D01*

-X302989Y210025D01*

-X303097Y209763D01*

-X303245Y209522D01*

-X303429Y209306D01*

-X303645Y209122D01*

-X303729Y209070D01*

-X303523Y208944D01*

-X303307Y208760D01*

-X303123Y208544D01*

-X302975Y208303D01*

-X302867Y208041D01*

-X302801Y207765D01*

-X302778Y207483D01*

-X302801Y207201D01*

-X302867Y206925D01*

-X302975Y206663D01*

-X303123Y206422D01*

-X303307Y206206D01*

-X303523Y206022D01*

-X303764Y205874D01*

-X304026Y205766D01*

-X304105Y205747D01*

-X304003Y205660D01*

-X303819Y205444D01*

-X303671Y205203D01*

-X303563Y204941D01*

-X303497Y204665D01*

-X303474Y204383D01*

-X303497Y204101D01*

-X303563Y203825D01*

-X303671Y203563D01*

-X303819Y203322D01*

-X304003Y203106D01*

-X304219Y202922D01*

-X304460Y202774D01*

-X304722Y202666D01*

-X304929Y202616D01*

-Y189042D01*

-X304466Y188931D01*

-X303841Y188672D01*

-X303264Y188319D01*

-X302749Y187879D01*

-X302309Y187364D01*

-X301956Y186787D01*

-X301697Y186162D01*

-X301539Y185504D01*

-X301486Y184829D01*

-X301539Y184154D01*

-X301697Y183496D01*

-X301956Y182871D01*

-X302309Y182294D01*

-X302749Y181779D01*

-X303264Y181339D01*

-X303841Y180986D01*

-X304466Y180727D01*

-X304929Y180616D01*

-Y179042D01*

-G37*

-G36*

-X296776Y379017D02*X296474Y379089D01*

-X295799Y379142D01*

-X295124Y379089D01*

-X294466Y378931D01*

-X293899Y378696D01*

-Y397000D01*

-X296776D01*

-Y379017D01*

-G37*

-G36*

-Y369017D02*X296474Y369089D01*

-X295799Y369142D01*

-X295124Y369089D01*

-X294466Y368931D01*

-X293899Y368696D01*

-Y370962D01*

-X294466Y370727D01*

-X295124Y370569D01*

-X295799Y370516D01*

-X296474Y370569D01*

-X296776Y370641D01*

-Y369017D01*

-G37*

-G36*

-Y245499D02*X296572Y245584D01*

-X296259Y245659D01*

-X295937Y245684D01*

-X295615Y245659D01*

-X295302Y245584D01*

-X295003Y245460D01*

-X294728Y245292D01*

-X294483Y245082D01*

-X294273Y244837D01*

-X294105Y244562D01*

-X293981Y244263D01*

-X293906Y243950D01*

-X293899Y243859D01*

-Y280207D01*

-X293902Y280207D01*

-X294224Y280232D01*

-X294537Y280307D01*

-X294836Y280431D01*

-X295111Y280599D01*

-X295356Y280809D01*

-X295566Y281054D01*

-X295734Y281329D01*

-X295858Y281628D01*

-X295933Y281941D01*

-X295952Y282263D01*

-X295933Y282585D01*

-X295858Y282898D01*

-X295734Y283197D01*

-X295566Y283472D01*

-X295356Y283717D01*

-X295111Y283927D01*

-X294836Y284095D01*

-X294537Y284219D01*

-X294224Y284294D01*

-X293902Y284319D01*

-X293899Y284319D01*

-Y360962D01*

-X294466Y360727D01*

-X295124Y360569D01*

-X295799Y360516D01*

-X296474Y360569D01*

-X296776Y360641D01*

-Y307019D01*

-X296457Y306994D01*

-X296144Y306919D01*

-X295845Y306795D01*

-X295570Y306627D01*

-X295325Y306417D01*

-X295115Y306172D01*

-X294947Y305897D01*

-X294823Y305598D01*

-X294748Y305285D01*

-X294723Y304963D01*

-X294748Y304641D01*

-X294823Y304328D01*

-X294947Y304029D01*

-X295115Y303754D01*

-X295325Y303509D01*

-X295570Y303299D01*

-X295845Y303131D01*

-X296144Y303007D01*

-X296457Y302932D01*

-X296776Y302907D01*

-Y258279D01*

-X296727Y258283D01*

-X296405Y258258D01*

-X296092Y258183D01*

-X295793Y258059D01*

-X295518Y257891D01*

-X295273Y257681D01*

-X295063Y257436D01*

-X294895Y257161D01*

-X294771Y256862D01*

-X294696Y256549D01*

-X294671Y256227D01*

-X294696Y255905D01*

-X294771Y255592D01*

-X294895Y255293D01*

-X295063Y255018D01*

-X295273Y254773D01*

-X295518Y254563D01*

-X295793Y254395D01*

-X296092Y254271D01*

-X296405Y254196D01*

-X296727Y254171D01*

-X296776Y254175D01*

-Y245499D01*

-G37*

-G36*

-Y189017D02*X296474Y189089D01*

-X295799Y189142D01*

-X295124Y189089D01*

-X294466Y188931D01*

-X293899Y188696D01*

-Y243397D01*

-X293906Y243306D01*

-X293981Y242993D01*

-X294105Y242694D01*

-X294273Y242419D01*

-X294483Y242174D01*

-X294728Y241964D01*

-X295003Y241796D01*

-X295302Y241672D01*

-X295615Y241597D01*

-X295937Y241572D01*

-X296259Y241597D01*

-X296572Y241672D01*

-X296776Y241757D01*

-Y189017D01*

-G37*

-G36*

-Y179017D02*X296474Y179089D01*

-X295799Y179142D01*

-X295124Y179089D01*

-X294466Y178931D01*

-X293899Y178696D01*

-Y180962D01*

-X294466Y180727D01*

-X295124Y180569D01*

-X295799Y180516D01*

-X296474Y180569D01*

-X296776Y180641D01*

-Y179017D01*

-G37*

-G36*

-X293899Y178696D02*X293841Y178672D01*

-X293264Y178319D01*

-X292749Y177879D01*

-X292309Y177364D01*

-X291956Y176787D01*

-X291697Y176162D01*

-X291539Y175504D01*

-X291486Y174829D01*

-X291539Y174154D01*

-X291697Y173496D01*

-X291956Y172871D01*

-X292309Y172294D01*

-X292749Y171779D01*

-X293076Y171500D01*

-X288522D01*

-X288849Y171779D01*

-X289289Y172294D01*

-X289642Y172871D01*

-X289901Y173496D01*

-X290059Y174154D01*

-X290099Y174829D01*

-X290059Y175504D01*

-X289901Y176162D01*

-X289642Y176787D01*

-X289289Y177364D01*

-X288849Y177879D01*

-X288334Y178319D01*

-X287914Y178576D01*

-Y181082D01*

-X288334Y181339D01*

-X288849Y181779D01*

-X289289Y182294D01*

-X289642Y182871D01*

-X289901Y183496D01*

-X290059Y184154D01*

-X290099Y184829D01*

-X290059Y185504D01*

-X289901Y186162D01*

-X289642Y186787D01*

-X289289Y187364D01*

-X288849Y187879D01*

-X288334Y188319D01*

-X287914Y188576D01*

-Y305773D01*

-X287917Y305773D01*

-X288239Y305798D01*

-X288552Y305873D01*

-X288851Y305997D01*

-X289126Y306165D01*

-X289371Y306375D01*

-X289581Y306620D01*

-X289749Y306895D01*

-X289873Y307194D01*

-X289948Y307507D01*

-X289967Y307829D01*

-X289948Y308151D01*

-X289873Y308464D01*

-X289749Y308763D01*

-X289581Y309038D01*

-X289371Y309283D01*

-X289126Y309493D01*

-X288851Y309661D01*

-X288552Y309785D01*

-X288239Y309860D01*

-X287917Y309885D01*

-X287914Y309885D01*

-Y361082D01*

-X288334Y361339D01*

-X288849Y361779D01*

-X289289Y362294D01*

-X289642Y362871D01*

-X289901Y363496D01*

-X290059Y364154D01*

-X290099Y364829D01*

-X290059Y365504D01*

-X289901Y366162D01*

-X289642Y366787D01*

-X289289Y367364D01*

-X288849Y367879D01*

-X288334Y368319D01*

-X287914Y368576D01*

-Y371082D01*

-X288334Y371339D01*

-X288849Y371779D01*

-X289289Y372294D01*

-X289642Y372871D01*

-X289901Y373496D01*

-X290059Y374154D01*

-X290099Y374829D01*

-X290059Y375504D01*

-X289901Y376162D01*

-X289642Y376787D01*

-X289289Y377364D01*

-X288849Y377879D01*

-X288334Y378319D01*

-X287914Y378576D01*

-Y397000D01*

-X293899D01*

-Y378696D01*

-X293841Y378672D01*

-X293264Y378319D01*

-X292749Y377879D01*

-X292309Y377364D01*

-X291956Y376787D01*

-X291697Y376162D01*

-X291539Y375504D01*

-X291486Y374829D01*

-X291539Y374154D01*

-X291697Y373496D01*

-X291956Y372871D01*

-X292309Y372294D01*

-X292749Y371779D01*

-X293264Y371339D01*

-X293841Y370986D01*

-X293899Y370962D01*

-Y368696D01*

-X293841Y368672D01*

-X293264Y368319D01*

-X292749Y367879D01*

-X292309Y367364D01*

-X291956Y366787D01*

-X291697Y366162D01*

-X291539Y365504D01*

-X291486Y364829D01*

-X291539Y364154D01*

-X291697Y363496D01*

-X291956Y362871D01*

-X292309Y362294D01*

-X292749Y361779D01*

-X293264Y361339D01*

-X293841Y360986D01*

-X293899Y360962D01*

-Y284319D01*

-X293580Y284294D01*

-X293267Y284219D01*

-X292968Y284095D01*

-X292693Y283927D01*

-X292448Y283717D01*

-X292238Y283472D01*

-X292070Y283197D01*

-X291946Y282898D01*

-X291871Y282585D01*

-X291846Y282263D01*

-X291871Y281941D01*

-X291946Y281628D01*

-X292070Y281329D01*

-X292238Y281054D01*

-X292448Y280809D01*

-X292693Y280599D01*

-X292968Y280431D01*

-X293267Y280307D01*

-X293580Y280232D01*

-X293899Y280207D01*

-Y243859D01*

-X293881Y243628D01*

-X293899Y243397D01*

-Y188696D01*

-X293841Y188672D01*

-X293264Y188319D01*

-X292749Y187879D01*

-X292309Y187364D01*

-X291956Y186787D01*

-X291697Y186162D01*

-X291539Y185504D01*

-X291486Y184829D01*

-X291539Y184154D01*

-X291697Y183496D01*

-X291956Y182871D01*

-X292309Y182294D01*

-X292749Y181779D01*

-X293264Y181339D01*

-X293841Y180986D01*

-X293899Y180962D01*

-Y178696D01*

-G37*

-G36*

-X285427Y360545D02*X285799Y360516D01*

-X286474Y360569D01*

-X287132Y360727D01*

-X287757Y360986D01*

-X287914Y361082D01*

-Y309885D01*

-X287595Y309860D01*

-X287282Y309785D01*

-X286983Y309661D01*

-X286708Y309493D01*

-X286463Y309283D01*

-X286253Y309038D01*

-X286085Y308763D01*

-X285961Y308464D01*

-X285886Y308151D01*

-X285861Y307829D01*

-X285886Y307507D01*

-X285961Y307194D01*

-X286085Y306895D01*

-X286253Y306620D01*

-X286463Y306375D01*

-X286708Y306165D01*

-X286983Y305997D01*

-X287282Y305873D01*

-X287595Y305798D01*

-X287914Y305773D01*

-Y188576D01*

-X287757Y188672D01*

-X287132Y188931D01*

-X286474Y189089D01*

-X285799Y189142D01*

-X285427Y189113D01*

-Y322944D01*

-X285430Y322944D01*

-X285752Y322969D01*

-X286065Y323044D01*

-X286364Y323168D01*

-X286639Y323336D01*

-X286884Y323546D01*

-X287094Y323791D01*

-X287262Y324066D01*

-X287386Y324365D01*

-X287461Y324678D01*

-X287480Y325000D01*

-X287461Y325322D01*

-X287386Y325635D01*

-X287262Y325934D01*

-X287094Y326209D01*

-X286884Y326454D01*

-X286639Y326664D01*

-X286364Y326832D01*

-X286065Y326956D01*

-X285752Y327031D01*

-X285430Y327056D01*

-X285427Y327056D01*

-Y360545D01*

-G37*

-G36*

-Y370545D02*X285799Y370516D01*

-X286474Y370569D01*

-X287132Y370727D01*

-X287757Y370986D01*

-X287914Y371082D01*

-Y368576D01*

-X287757Y368672D01*

-X287132Y368931D01*

-X286474Y369089D01*

-X285799Y369142D01*

-X285427Y369113D01*

-Y370545D01*

-G37*

-G36*

-Y397000D02*X287914D01*

-Y378576D01*

-X287757Y378672D01*

-X287132Y378931D01*

-X286474Y379089D01*

-X285799Y379142D01*

-X285427Y379113D01*

-Y397000D01*

-G37*

-G36*

-X287914Y178576D02*X287757Y178672D01*

-X287132Y178931D01*

-X286474Y179089D01*

-X285799Y179142D01*

-X285427Y179113D01*

-Y180545D01*

-X285799Y180516D01*

-X286474Y180569D01*

-X287132Y180727D01*

-X287757Y180986D01*

-X287914Y181082D01*

-Y178576D01*

-G37*

-G36*

-X285427Y179113D02*X285124Y179089D01*

-X284466Y178931D01*

-X283841Y178672D01*

-X283264Y178319D01*

-X282749Y177879D01*

-X282309Y177364D01*

-X281956Y176787D01*

-X281697Y176162D01*

-X281539Y175504D01*

-X281486Y174829D01*

-X281539Y174154D01*

-X281697Y173496D01*

-X281956Y172871D01*

-X282309Y172294D01*

-X282749Y171779D01*

-X283076Y171500D01*

-X278522D01*

-X278849Y171779D01*

-X279289Y172294D01*

-X279642Y172871D01*

-X279901Y173496D01*

-X280059Y174154D01*

-X280099Y174829D01*

-X280059Y175504D01*

-X279901Y176162D01*

-X279642Y176787D01*

-X279289Y177364D01*

-X278849Y177879D01*

-X278334Y178319D01*

-X278222Y178387D01*

-Y181271D01*

-X278334Y181339D01*

-X278849Y181779D01*

-X279289Y182294D01*

-X279642Y182871D01*

-X279901Y183496D01*

-X280059Y184154D01*

-X280099Y184829D01*

-X280059Y185504D01*

-X279901Y186162D01*

-X279642Y186787D01*

-X279289Y187364D01*

-X278849Y187879D01*

-X278334Y188319D01*

-X278222Y188387D01*

-Y277546D01*

-X278225Y277546D01*

-X278547Y277571D01*

-X278860Y277646D01*

-X279159Y277770D01*

-X279434Y277938D01*

-X279679Y278148D01*

-X279889Y278393D01*

-X280057Y278668D01*

-X280181Y278967D01*

-X280256Y279280D01*

-X280275Y279602D01*

-X280256Y279924D01*

-X280181Y280237D01*

-X280057Y280536D01*

-X279889Y280811D01*

-X279679Y281056D01*

-X279434Y281266D01*

-X279159Y281434D01*

-X278860Y281558D01*

-X278547Y281633D01*

-X278225Y281658D01*

-X278222Y281658D01*

-Y283674D01*

-X278380Y283539D01*

-X278621Y283391D01*

-X278883Y283283D01*

-X279159Y283217D01*

-X279441Y283194D01*

-X279723Y283217D01*

-X279999Y283283D01*

-X280261Y283391D01*

-X280502Y283539D01*

-X280718Y283723D01*

-X280902Y283939D01*

-X281050Y284180D01*

-X281158Y284442D01*

-X281224Y284718D01*

-X281241Y285000D01*

-X281224Y285282D01*

-X281158Y285558D01*

-X281050Y285820D01*

-X280902Y286061D01*

-X280718Y286277D01*

-X280502Y286461D01*

-X280261Y286609D01*

-X279999Y286717D01*

-X279723Y286783D01*

-X279441Y286806D01*

-X279159Y286783D01*

-X278883Y286717D01*

-X278621Y286609D01*

-X278380Y286461D01*

-X278222Y286326D01*

-Y296557D01*

-X278529Y296581D01*

-X278842Y296656D01*

-X279141Y296780D01*

-X279416Y296948D01*

-X279661Y297158D01*

-X279871Y297403D01*

-X280039Y297678D01*

-X280163Y297977D01*

-X280238Y298290D01*

-X280257Y298612D01*

-X280238Y298934D01*

-X280163Y299247D01*

-X280039Y299546D01*

-X279871Y299821D01*

-X279661Y300066D01*

-X279416Y300276D01*

-X279141Y300444D01*

-X278842Y300568D01*

-X278529Y300643D01*

-X278222Y300667D01*

-Y306457D01*

-X278383Y306555D01*

-X278628Y306765D01*

-X278838Y307010D01*

-X279006Y307285D01*

-X279130Y307584D01*

-X279205Y307897D01*

-X279224Y308219D01*

-X279205Y308541D01*

-X279130Y308854D01*

-X279006Y309153D01*

-X278838Y309428D01*

-X278628Y309673D01*

-X278383Y309883D01*

-X278222Y309981D01*

-Y345601D01*

-X278383Y345668D01*

-X278658Y345836D01*

-X278903Y346046D01*

-X279113Y346291D01*

-X279281Y346566D01*

-X279405Y346865D01*

-X279480Y347178D01*

-X279499Y347500D01*

-X279480Y347822D01*

-X279405Y348135D01*

-X279281Y348434D01*

-X279113Y348709D01*

-X278903Y348954D01*

-X278658Y349164D01*

-X278383Y349332D01*

-X278222Y349399D01*

-Y361271D01*

-X278334Y361339D01*

-X278849Y361779D01*

-X279289Y362294D01*

-X279642Y362871D01*

-X279901Y363496D01*

-X280059Y364154D01*

-X280099Y364829D01*

-X280059Y365504D01*

-X279901Y366162D01*

-X279642Y366787D01*

-X279289Y367364D01*

-X278849Y367879D01*

-X278334Y368319D01*

-X278222Y368387D01*

-Y371271D01*

-X278334Y371339D01*

-X278849Y371779D01*

-X279289Y372294D01*

-X279642Y372871D01*

-X279901Y373496D01*

-X280059Y374154D01*

-X280099Y374829D01*

-X280059Y375504D01*

-X279901Y376162D01*

-X279642Y376787D01*

-X279289Y377364D01*

-X278849Y377879D01*

-X278334Y378319D01*

-X278222Y378387D01*

-Y397000D01*

-X285427D01*

-Y379113D01*

-X285124Y379089D01*

-X284466Y378931D01*

-X283841Y378672D01*

-X283264Y378319D01*

-X282749Y377879D01*

-X282309Y377364D01*

-X281956Y376787D01*

-X281697Y376162D01*

-X281539Y375504D01*

-X281486Y374829D01*

-X281539Y374154D01*

-X281697Y373496D01*

-X281956Y372871D01*

-X282309Y372294D01*

-X282749Y371779D01*

-X283264Y371339D01*

-X283841Y370986D01*

-X284466Y370727D01*

-X285124Y370569D01*

-X285427Y370545D01*

-Y369113D01*

-X285124Y369089D01*

-X284466Y368931D01*

-X283841Y368672D01*

-X283264Y368319D01*

-X282749Y367879D01*

-X282309Y367364D01*

-X281956Y366787D01*

-X281697Y366162D01*

-X281539Y365504D01*

-X281486Y364829D01*

-X281539Y364154D01*

-X281697Y363496D01*

-X281956Y362871D01*

-X282309Y362294D01*

-X282749Y361779D01*

-X283264Y361339D01*

-X283841Y360986D01*

-X284466Y360727D01*

-X285124Y360569D01*

-X285427Y360545D01*

-Y327056D01*

-X285108Y327031D01*

-X284795Y326956D01*

-X284496Y326832D01*

-X284221Y326664D01*

-X283976Y326454D01*

-X283766Y326209D01*

-X283598Y325934D01*

-X283474Y325635D01*

-X283399Y325322D01*

-X283374Y325000D01*

-X283399Y324678D01*

-X283474Y324365D01*

-X283598Y324066D01*

-X283766Y323791D01*

-X283976Y323546D01*

-X284221Y323336D01*

-X284496Y323168D01*

-X284795Y323044D01*

-X285108Y322969D01*

-X285427Y322944D01*

-Y189113D01*

-X285124Y189089D01*

-X284466Y188931D01*

-X283841Y188672D01*

-X283264Y188319D01*

-X282749Y187879D01*

-X282309Y187364D01*

-X281956Y186787D01*

-X281697Y186162D01*

-X281539Y185504D01*

-X281486Y184829D01*

-X281539Y184154D01*

-X281697Y183496D01*

-X281956Y182871D01*

-X282309Y182294D01*

-X282749Y181779D01*

-X283264Y181339D01*

-X283841Y180986D01*

-X284466Y180727D01*

-X285124Y180569D01*

-X285427Y180545D01*

-Y179113D01*

-G37*

-G36*

-X278222Y178387D02*X277757Y178672D01*

-X277132Y178931D01*

-X276474Y179089D01*

-X275799Y179142D01*

-X275124Y179089D01*

-X274466Y178931D01*

-X273841Y178672D01*

-X273264Y178319D01*

-X272749Y177879D01*

-X272309Y177364D01*

-X271956Y176787D01*

-X271697Y176162D01*

-X271539Y175504D01*

-X271486Y174829D01*

-X271539Y174154D01*

-X271697Y173496D01*

-X271956Y172871D01*

-X272309Y172294D01*

-X272749Y171779D01*

-X273076Y171500D01*

-X269438D01*

-Y172538D01*

-X269642Y172871D01*

-X269901Y173496D01*

-X270059Y174154D01*

-X270099Y174829D01*

-X270059Y175504D01*

-X269901Y176162D01*

-X269642Y176787D01*

-X269438Y177120D01*

-Y182538D01*

-X269642Y182871D01*

-X269901Y183496D01*

-X270059Y184154D01*

-X270099Y184829D01*

-X270059Y185504D01*

-X269901Y186162D01*

-X269642Y186787D01*

-X269438Y187120D01*

-Y196695D01*

-X269441Y196694D01*

-X269723Y196717D01*

-X269999Y196783D01*

-X270261Y196891D01*

-X270502Y197039D01*

-X270718Y197223D01*

-X270902Y197439D01*

-X271050Y197680D01*

-X271158Y197942D01*

-X271224Y198218D01*

-X271241Y198500D01*

-X271224Y198782D01*

-X271158Y199058D01*

-X271050Y199320D01*

-X270902Y199561D01*

-X270718Y199777D01*

-X270502Y199961D01*

-X270261Y200109D01*

-X269999Y200217D01*

-X269723Y200283D01*

-X269441Y200306D01*

-X269438Y200305D01*

-Y229770D01*

-X269659Y229717D01*

-X269941Y229694D01*

-X270223Y229717D01*

-X270499Y229783D01*

-X270761Y229891D01*

-X271002Y230039D01*

-X271218Y230223D01*

-X271402Y230439D01*

-X271550Y230680D01*

-X271658Y230942D01*

-X271724Y231218D01*

-X271741Y231500D01*

-X271724Y231782D01*

-X271658Y232058D01*

-X271550Y232320D01*

-X271402Y232561D01*

-X271218Y232777D01*

-X271002Y232961D01*

-X270761Y233109D01*

-X270499Y233217D01*

-X270223Y233283D01*

-X269941Y233306D01*

-X269659Y233283D01*

-X269438Y233230D01*

-Y296592D01*

-X269653Y296575D01*

-X269975Y296600D01*

-X270288Y296675D01*

-X270587Y296799D01*

-X270862Y296967D01*

-X271107Y297177D01*

-X271317Y297422D01*

-X271426Y297601D01*

-X271565Y297373D01*

-X271775Y297128D01*

-X272020Y296918D01*

-X272295Y296750D01*

-X272594Y296626D01*

-X272907Y296551D01*

-X273229Y296526D01*

-X273551Y296551D01*

-X273864Y296626D01*

-X274163Y296750D01*

-X274438Y296918D01*

-X274683Y297128D01*

-X274893Y297373D01*

-X275061Y297648D01*

-X275185Y297947D01*

-X275260Y298260D01*

-X275279Y298582D01*

-X275260Y298904D01*

-X275185Y299217D01*

-X275061Y299516D01*

-X274893Y299791D01*

-X274683Y300036D01*

-X274438Y300246D01*

-X274163Y300414D01*

-X273864Y300538D01*

-X273551Y300613D01*

-X273229Y300638D01*

-X272907Y300613D01*

-X272594Y300538D01*

-X272295Y300414D01*

-X272020Y300246D01*

-X271775Y300036D01*

-X271565Y299791D01*

-X271456Y299612D01*

-X271317Y299840D01*

-X271107Y300085D01*

-X270862Y300295D01*

-X270587Y300463D01*

-X270288Y300587D01*

-X269975Y300662D01*

-X269653Y300687D01*

-X269438Y300670D01*

-Y312011D01*

-X269576Y312044D01*

-X269875Y312168D01*

-X270150Y312336D01*

-X270395Y312546D01*

-X270605Y312791D01*

-X270773Y313066D01*

-X270897Y313365D01*

-X270972Y313678D01*

-X270991Y314000D01*

-X270972Y314322D01*

-X270897Y314635D01*

-X270773Y314934D01*

-X270605Y315209D01*

-X270395Y315454D01*

-X270150Y315664D01*

-X269875Y315832D01*

-X269576Y315956D01*

-X269438Y315989D01*

-Y334503D01*

-X269621Y334391D01*

-X269883Y334283D01*

-X270159Y334217D01*

-X270441Y334194D01*

-X270723Y334217D01*

-X270999Y334283D01*

-X271261Y334391D01*

-X271502Y334539D01*

-X271718Y334723D01*

-X271902Y334939D01*

-X272050Y335180D01*

-X272158Y335442D01*

-X272224Y335718D01*

-X272241Y336000D01*

-X272224Y336282D01*

-X272158Y336558D01*

-X272050Y336820D01*

-X271902Y337061D01*

-X271718Y337277D01*

-X271502Y337461D01*

-X271261Y337609D01*

-X270999Y337717D01*

-X270723Y337783D01*

-X270441Y337806D01*

-X270159Y337783D01*

-X269883Y337717D01*

-X269621Y337609D01*

-X269438Y337497D01*

-Y341003D01*

-X269621Y340891D01*

-X269883Y340783D01*

-X270159Y340717D01*

-X270441Y340694D01*

-X270723Y340717D01*

-X270999Y340783D01*

-X271261Y340891D01*

-X271502Y341039D01*

-X271718Y341223D01*

-X271902Y341439D01*

-X272050Y341680D01*

-X272158Y341942D01*

-X272224Y342218D01*

-X272241Y342500D01*

-X272224Y342782D01*

-X272158Y343058D01*

-X272050Y343320D01*

-X271902Y343561D01*

-X271718Y343777D01*

-X271502Y343961D01*

-X271261Y344109D01*

-X270999Y344217D01*

-X270723Y344283D01*

-X270441Y344306D01*

-X270159Y344283D01*

-X269883Y344217D01*

-X269621Y344109D01*

-X269438Y343997D01*

-Y348003D01*

-X269621Y347891D01*

-X269883Y347783D01*

-X270159Y347717D01*

-X270441Y347694D01*

-X270723Y347717D01*

-X270999Y347783D01*

-X271261Y347891D01*

-X271502Y348039D01*

-X271718Y348223D01*

-X271902Y348439D01*

-X272050Y348680D01*

-X272158Y348942D01*

-X272224Y349218D01*

-X272241Y349500D01*

-X272224Y349782D01*

-X272158Y350058D01*

-X272050Y350320D01*

-X271902Y350561D01*

-X271718Y350777D01*

-X271502Y350961D01*

-X271261Y351109D01*

-X270999Y351217D01*

-X270723Y351283D01*

-X270441Y351306D01*

-X270159Y351283D01*

-X269883Y351217D01*

-X269621Y351109D01*

-X269438Y350997D01*

-Y355503D01*

-X269621Y355391D01*

-X269883Y355283D01*

-X270159Y355217D01*

-X270441Y355194D01*

-X270723Y355217D01*

-X270999Y355283D01*

-X271261Y355391D01*

-X271502Y355539D01*

-X271718Y355723D01*

-X271902Y355939D01*

-X272050Y356180D01*

-X272158Y356442D01*

-X272224Y356718D01*

-X272241Y357000D01*

-X272224Y357282D01*

-X272158Y357558D01*

-X272050Y357820D01*

-X271902Y358061D01*

-X271718Y358277D01*

-X271502Y358461D01*

-X271261Y358609D01*

-X270999Y358717D01*

-X270723Y358783D01*

-X270441Y358806D01*

-X270159Y358783D01*

-X269883Y358717D01*

-X269621Y358609D01*

-X269438Y358497D01*

-Y362538D01*

-X269642Y362871D01*

-X269901Y363496D01*

-X270059Y364154D01*

-X270099Y364829D01*

-X270059Y365504D01*

-X269901Y366162D01*

-X269642Y366787D01*

-X269438Y367120D01*

-Y372538D01*

-X269642Y372871D01*

-X269901Y373496D01*

-X270059Y374154D01*

-X270099Y374829D01*

-X270059Y375504D01*

-X269901Y376162D01*

-X269642Y376787D01*

-X269438Y377120D01*

-Y397000D01*

-X278222D01*

-Y378387D01*

-X277757Y378672D01*

-X277132Y378931D01*

-X276474Y379089D01*

-X275799Y379142D01*

-X275124Y379089D01*

-X274466Y378931D01*

-X273841Y378672D01*

-X273264Y378319D01*

-X272749Y377879D01*

-X272309Y377364D01*

-X271956Y376787D01*

-X271697Y376162D01*

-X271539Y375504D01*

-X271486Y374829D01*

-X271539Y374154D01*

-X271697Y373496D01*

-X271956Y372871D01*

-X272309Y372294D01*

-X272749Y371779D01*

-X273264Y371339D01*

-X273841Y370986D01*

-X274466Y370727D01*

-X275124Y370569D01*

-X275799Y370516D01*

-X276474Y370569D01*

-X277132Y370727D01*

-X277757Y370986D01*

-X278222Y371271D01*

-Y368387D01*

-X277757Y368672D01*

-X277132Y368931D01*

-X276474Y369089D01*

-X275799Y369142D01*

-X275124Y369089D01*

-X274466Y368931D01*

-X273841Y368672D01*

-X273264Y368319D01*

-X272749Y367879D01*

-X272309Y367364D01*

-X271956Y366787D01*

-X271697Y366162D01*

-X271539Y365504D01*

-X271486Y364829D01*

-X271539Y364154D01*

-X271697Y363496D01*

-X271956Y362871D01*

-X272309Y362294D01*

-X272749Y361779D01*

-X273264Y361339D01*

-X273841Y360986D01*

-X274466Y360727D01*

-X275124Y360569D01*

-X275799Y360516D01*

-X276474Y360569D01*

-X277132Y360727D01*

-X277757Y360986D01*

-X278222Y361271D01*

-Y349399D01*

-X278084Y349456D01*

-X277771Y349531D01*

-X277449Y349556D01*

-X277127Y349531D01*

-X276814Y349456D01*

-X276515Y349332D01*

-X276240Y349164D01*

-X275995Y348954D01*

-X275785Y348709D01*

-X275617Y348434D01*

-X275493Y348135D01*

-X275418Y347822D01*

-X275393Y347500D01*

-X275418Y347178D01*

-X275493Y346865D01*

-X275617Y346566D01*

-X275785Y346291D01*

-X275995Y346046D01*

-X276240Y345836D01*

-X276515Y345668D01*

-X276814Y345544D01*

-X277127Y345469D01*

-X277449Y345444D01*

-X277771Y345469D01*

-X278084Y345544D01*

-X278222Y345601D01*

-Y309981D01*

-X278108Y310051D01*

-X277809Y310175D01*

-X277496Y310250D01*

-X277174Y310275D01*

-X276852Y310250D01*

-X276539Y310175D01*

-X276240Y310051D01*

-X275965Y309883D01*

-X275720Y309673D01*

-X275510Y309428D01*

-X275342Y309153D01*

-X275218Y308854D01*

-X275143Y308541D01*

-X275118Y308219D01*

-X275143Y307897D01*

-X275218Y307584D01*

-X275342Y307285D01*

-X275510Y307010D01*

-X275720Y306765D01*

-X275965Y306555D01*

-X276240Y306387D01*

-X276539Y306263D01*

-X276852Y306188D01*

-X277174Y306163D01*

-X277496Y306188D01*

-X277809Y306263D01*

-X278108Y306387D01*

-X278222Y306457D01*

-Y300667D01*

-X278207Y300668D01*

-X277885Y300643D01*

-X277572Y300568D01*

-X277273Y300444D01*

-X276998Y300276D01*

-X276753Y300066D01*

-X276543Y299821D01*

-X276375Y299546D01*

-X276251Y299247D01*

-X276176Y298934D01*

-X276151Y298612D01*

-X276176Y298290D01*

-X276251Y297977D01*

-X276375Y297678D01*

-X276543Y297403D01*

-X276753Y297158D01*

-X276998Y296948D01*

-X277273Y296780D01*

-X277572Y296656D01*

-X277885Y296581D01*

-X278207Y296556D01*

-X278222Y296557D01*

-Y286326D01*

-X278164Y286277D01*

-X277980Y286061D01*

-X277832Y285820D01*

-X277724Y285558D01*

-X277658Y285282D01*

-X277635Y285000D01*

-X277658Y284718D01*

-X277724Y284442D01*

-X277832Y284180D01*

-X277980Y283939D01*

-X278164Y283723D01*

-X278222Y283674D01*

-Y281658D01*

-X277903Y281633D01*

-X277590Y281558D01*

-X277291Y281434D01*

-X277016Y281266D01*

-X276771Y281056D01*

-X276561Y280811D01*

-X276393Y280536D01*

-X276269Y280237D01*

-X276194Y279924D01*

-X276169Y279602D01*

-X276194Y279280D01*

-X276269Y278967D01*

-X276393Y278668D01*

-X276561Y278393D01*

-X276771Y278148D01*

-X277016Y277938D01*

-X277291Y277770D01*

-X277590Y277646D01*

-X277903Y277571D01*

-X278222Y277546D01*

-Y188387D01*

-X277757Y188672D01*

-X277132Y188931D01*

-X276474Y189089D01*

-X275799Y189142D01*

-X275124Y189089D01*

-X274466Y188931D01*

-X273841Y188672D01*

-X273264Y188319D01*

-X272749Y187879D01*

-X272309Y187364D01*

-X271956Y186787D01*

-X271697Y186162D01*

-X271539Y185504D01*

-X271486Y184829D01*

-X271539Y184154D01*

-X271697Y183496D01*

-X271956Y182871D01*

-X272309Y182294D01*

-X272749Y181779D01*

-X273264Y181339D01*

-X273841Y180986D01*

-X274466Y180727D01*

-X275124Y180569D01*

-X275799Y180516D01*

-X276474Y180569D01*

-X277132Y180727D01*

-X277757Y180986D01*

-X278222Y181271D01*

-Y178387D01*

-G37*

-G36*

-X263438Y371233D02*X263841Y370986D01*

-X264466Y370727D01*

-X265124Y370569D01*

-X265799Y370516D01*

-X266474Y370569D01*

-X267132Y370727D01*

-X267757Y370986D01*

-X268334Y371339D01*

-X268849Y371779D01*

-X269289Y372294D01*

-X269438Y372538D01*

-Y367120D01*

-X269289Y367364D01*

-X268849Y367879D01*

-X268334Y368319D01*

-X267757Y368672D01*

-X267132Y368931D01*

-X266474Y369089D01*

-X265799Y369142D01*

-X265124Y369089D01*

-X264466Y368931D01*

-X263841Y368672D01*

-X263438Y368425D01*

-Y371233D01*

-G37*

-G36*

-Y397000D02*X269438D01*

-Y377120D01*

-X269289Y377364D01*

-X268849Y377879D01*

-X268334Y378319D01*

-X267757Y378672D01*

-X267132Y378931D01*

-X266474Y379089D01*

-X265799Y379142D01*

-X265124Y379089D01*

-X264466Y378931D01*

-X263841Y378672D01*

-X263438Y378425D01*

-Y397000D01*

-G37*

-G36*

-X269438Y300670D02*X269331Y300662D01*

-X269018Y300587D01*

-X268719Y300463D01*

-X268444Y300295D01*

-X268199Y300085D01*

-X267989Y299840D01*

-X267821Y299565D01*

-X267697Y299266D01*

-X267622Y298953D01*

-X267597Y298631D01*

-X267622Y298309D01*

-X267638Y298244D01*

-X267622Y298258D01*

-X267347Y298426D01*

-X267048Y298550D01*

-X266735Y298625D01*

-X266413Y298650D01*

-X266091Y298625D01*

-X265778Y298550D01*

-X265479Y298426D01*

-X265204Y298258D01*

-X264959Y298048D01*

-X264749Y297803D01*

-X264581Y297528D01*

-X264457Y297229D01*

-X264407Y297018D01*

-X264174Y297161D01*

-X263875Y297285D01*

-X263562Y297360D01*

-X263438Y297370D01*

-Y318195D01*

-X263441Y318194D01*

-X263723Y318217D01*

-X263999Y318283D01*

-X264261Y318391D01*

-X264502Y318539D01*

-X264718Y318723D01*

-X264902Y318939D01*

-X265050Y319180D01*

-X265158Y319442D01*

-X265224Y319718D01*

-X265241Y320000D01*

-X265224Y320282D01*

-X265158Y320558D01*

-X265050Y320820D01*

-X264902Y321061D01*

-X264718Y321277D01*

-X264502Y321461D01*

-X264261Y321609D01*

-X263999Y321717D01*

-X263723Y321783D01*

-X263441Y321806D01*

-X263438Y321805D01*

-Y361233D01*

-X263841Y360986D01*

-X264466Y360727D01*

-X265124Y360569D01*

-X265799Y360516D01*

-X266474Y360569D01*

-X267132Y360727D01*

-X267757Y360986D01*

-X268334Y361339D01*

-X268849Y361779D01*

-X269289Y362294D01*

-X269438Y362538D01*

-Y358497D01*

-X269380Y358461D01*

-X269164Y358277D01*

-X268980Y358061D01*

-X268832Y357820D01*

-X268724Y357558D01*

-X268658Y357282D01*

-X268635Y357000D01*

-X268658Y356718D01*

-X268724Y356442D01*

-X268832Y356180D01*

-X268980Y355939D01*

-X269164Y355723D01*

-X269380Y355539D01*

-X269438Y355503D01*

-Y350997D01*

-X269380Y350961D01*

-X269164Y350777D01*

-X268980Y350561D01*

-X268832Y350320D01*

-X268724Y350058D01*

-X268658Y349782D01*

-X268635Y349500D01*

-X268658Y349218D01*

-X268724Y348942D01*

-X268832Y348680D01*

-X268980Y348439D01*

-X269164Y348223D01*

-X269380Y348039D01*

-X269438Y348003D01*

-Y343997D01*

-X269380Y343961D01*

-X269164Y343777D01*

-X268980Y343561D01*

-X268832Y343320D01*

-X268724Y343058D01*

-X268658Y342782D01*

-X268635Y342500D01*

-X268658Y342218D01*

-X268724Y341942D01*

-X268832Y341680D01*

-X268980Y341439D01*

-X269164Y341223D01*

-X269380Y341039D01*

-X269438Y341003D01*

-Y337497D01*

-X269380Y337461D01*

-X269164Y337277D01*

-X268980Y337061D01*

-X268832Y336820D01*

-X268724Y336558D01*

-X268658Y336282D01*

-X268635Y336000D01*

-X268658Y335718D01*

-X268724Y335442D01*

-X268832Y335180D01*

-X268980Y334939D01*

-X269164Y334723D01*

-X269380Y334539D01*

-X269438Y334503D01*

-Y315989D01*

-X269263Y316031D01*

-X268941Y316056D01*

-X268619Y316031D01*

-X268306Y315956D01*

-X268007Y315832D01*

-X267732Y315664D01*

-X267487Y315454D01*

-X267277Y315209D01*

-X267109Y314934D01*

-X266985Y314635D01*

-X266910Y314322D01*

-X266885Y314000D01*

-X266910Y313678D01*

-X266985Y313365D01*

-X267109Y313066D01*

-X267277Y312791D01*

-X267487Y312546D01*

-X267732Y312336D01*

-X268007Y312168D01*

-X268306Y312044D01*

-X268619Y311969D01*

-X268941Y311944D01*

-X269263Y311969D01*

-X269438Y312011D01*

-Y300670D01*

-G37*

-G36*

-X263438Y297370D02*X263240Y297385D01*

-X262918Y297360D01*

-X262605Y297285D01*

-X262306Y297161D01*

-X262031Y296993D01*

-X261786Y296783D01*

-X261576Y296538D01*

-X261408Y296263D01*

-X261284Y295964D01*

-X261209Y295651D01*

-X261184Y295329D01*

-X261209Y295007D01*

-X261284Y294694D01*

-X261408Y294395D01*

-X261576Y294120D01*

-X261786Y293875D01*

-X261961Y293725D01*

-X261806Y293661D01*

-X261531Y293493D01*

-X261286Y293283D01*

-X261076Y293038D01*

-X260938Y292812D01*

-Y305652D01*

-X260944Y305650D01*

-X261220Y305584D01*

-X261502Y305561D01*

-X261784Y305584D01*

-X262060Y305650D01*

-X262322Y305758D01*

-X262563Y305906D01*

-X262779Y306090D01*

-X262963Y306306D01*

-X263111Y306547D01*

-X263219Y306809D01*

-X263285Y307085D01*

-X263302Y307367D01*

-X263285Y307649D01*

-X263219Y307925D01*

-X263111Y308187D01*

-X262963Y308428D01*

-X262779Y308644D01*

-X262563Y308828D01*

-X262322Y308976D01*

-X262060Y309084D01*

-X261784Y309150D01*

-X261502Y309173D01*

-X261220Y309150D01*

-X260944Y309084D01*

-X260938Y309082D01*

-Y315235D01*

-X261126Y315280D01*

-X261388Y315388D01*

-X261629Y315536D01*

-X261845Y315720D01*

-X262029Y315936D01*

-X262177Y316177D01*

-X262285Y316439D01*

-X262351Y316715D01*

-X262368Y316997D01*

-X262351Y317279D01*

-X262285Y317555D01*

-X262177Y317817D01*

-X262029Y318058D01*

-X261845Y318274D01*

-X261629Y318458D01*

-X261388Y318606D01*

-X261126Y318714D01*

-X260938Y318759D01*

-Y397000D01*

-X263438D01*

-Y378425D01*

-X263264Y378319D01*

-X262749Y377879D01*

-X262309Y377364D01*

-X261956Y376787D01*

-X261697Y376162D01*

-X261539Y375504D01*

-X261486Y374829D01*

-X261539Y374154D01*

-X261697Y373496D01*

-X261956Y372871D01*

-X262309Y372294D01*

-X262749Y371779D01*

-X263264Y371339D01*

-X263438Y371233D01*

-Y368425D01*

-X263264Y368319D01*

-X262749Y367879D01*

-X262309Y367364D01*

-X261956Y366787D01*

-X261697Y366162D01*

-X261539Y365504D01*

-X261486Y364829D01*

-X261539Y364154D01*

-X261697Y363496D01*

-X261956Y362871D01*

-X262309Y362294D01*

-X262749Y361779D01*

-X263264Y361339D01*

-X263438Y361233D01*

-Y321805D01*

-X263159Y321783D01*

-X262883Y321717D01*

-X262621Y321609D01*

-X262380Y321461D01*

-X262164Y321277D01*

-X261980Y321061D01*

-X261832Y320820D01*

-X261724Y320558D01*

-X261658Y320282D01*

-X261635Y320000D01*

-X261658Y319718D01*

-X261724Y319442D01*

-X261832Y319180D01*

-X261980Y318939D01*

-X262164Y318723D01*

-X262380Y318539D01*

-X262621Y318391D01*

-X262883Y318283D01*

-X263159Y318217D01*

-X263438Y318195D01*

-Y297370D01*

-G37*

-G36*

-X269438Y177120D02*X269289Y177364D01*

-X268849Y177879D01*

-X268334Y178319D01*

-X267757Y178672D01*

-X267132Y178931D01*

-X266474Y179089D01*

-X265799Y179142D01*

-X265124Y179089D01*

-X264466Y178931D01*

-X263841Y178672D01*

-X263264Y178319D01*

-X262749Y177879D01*

-X262309Y177364D01*

-X261956Y176787D01*

-X261697Y176162D01*

-X261539Y175504D01*

-X261486Y174829D01*

-X261539Y174154D01*

-X261697Y173496D01*

-X261956Y172871D01*

-X262309Y172294D01*

-X262749Y171779D01*

-X263076Y171500D01*

-X260938D01*

-Y189695D01*

-X260941Y189694D01*

-X261223Y189717D01*

-X261499Y189783D01*

-X261761Y189891D01*

-X262002Y190039D01*

-X262218Y190223D01*

-X262402Y190439D01*

-X262550Y190680D01*

-X262658Y190942D01*

-X262724Y191218D01*

-X262741Y191500D01*

-X262724Y191782D01*

-X262658Y192058D01*

-X262550Y192320D01*

-X262402Y192561D01*

-X262218Y192777D01*

-X262002Y192961D01*

-X261761Y193109D01*

-X261499Y193217D01*

-X261223Y193283D01*

-X260941Y193306D01*

-X260938Y193305D01*

-Y267805D01*

-X261086Y267563D01*

-X261296Y267318D01*

-X261541Y267108D01*

-X261816Y266940D01*

-X262115Y266816D01*

-X262428Y266741D01*

-X262750Y266716D01*

-X263072Y266741D01*

-X263385Y266816D01*

-X263684Y266940D01*

-X263959Y267108D01*

-X264204Y267318D01*

-X264414Y267563D01*

-X264582Y267838D01*

-X264706Y268137D01*

-X264781Y268450D01*

-X264800Y268772D01*

-X264781Y269094D01*

-X264706Y269407D01*

-X264582Y269706D01*

-X264414Y269981D01*

-X264204Y270226D01*

-X263959Y270436D01*

-X263684Y270604D01*

-X263385Y270728D01*

-X263072Y270803D01*

-X262750Y270828D01*

-X262428Y270803D01*

-X262115Y270728D01*

-X261816Y270604D01*

-X261541Y270436D01*

-X261296Y270226D01*

-X261086Y269981D01*

-X260938Y269739D01*

-Y282284D01*

-X260976Y282293D01*

-X261275Y282417D01*

-X261550Y282585D01*

-X261795Y282795D01*

-X261984Y283017D01*

-X261978Y282931D01*

-X262003Y282609D01*

-X262078Y282296D01*

-X262202Y281997D01*

-X262370Y281722D01*

-X262580Y281477D01*

-X262825Y281267D01*

-X263100Y281099D01*

-X263399Y280975D01*

-X263712Y280900D01*

-X264034Y280875D01*

-X264356Y280900D01*

-X264669Y280975D01*

-X264968Y281099D01*

-X265243Y281267D01*

-X265488Y281477D01*

-X265698Y281722D01*

-X265866Y281997D01*

-X265990Y282296D01*

-X266065Y282609D01*

-X266084Y282931D01*

-X266065Y283253D01*

-X265990Y283566D01*

-X265866Y283865D01*

-X265698Y284140D01*

-X265488Y284385D01*

-X265243Y284595D01*

-X264968Y284763D01*

-X264669Y284887D01*

-X264356Y284962D01*

-X264034Y284987D01*

-X263712Y284962D01*

-X263399Y284887D01*

-X263100Y284763D01*

-X262825Y284595D01*

-X262580Y284385D01*

-X262386Y284157D01*

-X262391Y284249D01*

-X262372Y284571D01*

-X262297Y284884D01*

-X262173Y285183D01*

-X262005Y285458D01*

-X261795Y285703D01*

-X261550Y285913D01*

-X261275Y286081D01*

-X260976Y286205D01*

-X260938Y286214D01*

-Y290846D01*

-X261076Y290620D01*

-X261286Y290375D01*

-X261531Y290165D01*

-X261806Y289997D01*

-X262105Y289873D01*

-X262418Y289798D01*

-X262740Y289773D01*

-X263062Y289798D01*

-X263375Y289873D01*

-X263674Y289997D01*

-X263949Y290165D01*

-X264194Y290375D01*

-X264404Y290620D01*

-X264572Y290895D01*

-X264696Y291194D01*

-X264771Y291507D01*

-X264790Y291829D01*

-X264771Y292151D01*

-X264696Y292464D01*

-X264572Y292763D01*

-X264404Y293038D01*

-X264194Y293283D01*

-X264019Y293433D01*

-X264174Y293497D01*

-X264449Y293665D01*

-X264694Y293875D01*

-X264904Y294120D01*

-X265072Y294395D01*

-X265196Y294694D01*

-X265246Y294905D01*

-X265479Y294762D01*

-X265778Y294638D01*

-X266091Y294563D01*

-X266413Y294538D01*

-X266735Y294563D01*

-X267048Y294638D01*

-X267347Y294762D01*

-X267622Y294930D01*

-X267867Y295140D01*

-X268077Y295385D01*

-X268245Y295660D01*

-X268369Y295959D01*

-X268444Y296272D01*

-X268463Y296594D01*

-X268444Y296916D01*

-X268428Y296981D01*

-X268444Y296967D01*

-X268719Y296799D01*

-X269018Y296675D01*

-X269331Y296600D01*

-X269438Y296592D01*

-Y233230D01*

-X269383Y233217D01*

-X269121Y233109D01*

-X268880Y232961D01*

-X268664Y232777D01*

-X268480Y232561D01*

-X268332Y232320D01*

-X268224Y232058D01*

-X268158Y231782D01*

-X268135Y231500D01*

-X268158Y231218D01*

-X268224Y230942D01*

-X268332Y230680D01*

-X268480Y230439D01*

-X268664Y230223D01*

-X268880Y230039D01*

-X269121Y229891D01*

-X269383Y229783D01*

-X269438Y229770D01*

-Y200305D01*

-X269159Y200283D01*

-X268883Y200217D01*

-X268621Y200109D01*

-X268380Y199961D01*

-X268164Y199777D01*

-X267980Y199561D01*

-X267832Y199320D01*

-X267724Y199058D01*

-X267658Y198782D01*

-X267635Y198500D01*

-X267658Y198218D01*

-X267724Y197942D01*

-X267832Y197680D01*

-X267980Y197439D01*

-X268164Y197223D01*

-X268380Y197039D01*

-X268621Y196891D01*

-X268883Y196783D01*

-X269159Y196717D01*

-X269438Y196695D01*

-Y187120D01*

-X269289Y187364D01*

-X268849Y187879D01*

-X268334Y188319D01*

-X267757Y188672D01*

-X267132Y188931D01*

-X266474Y189089D01*

-X265799Y189142D01*

-X265124Y189089D01*

-X264466Y188931D01*

-X263841Y188672D01*

-X263264Y188319D01*

-X262749Y187879D01*

-X262309Y187364D01*

-X261956Y186787D01*

-X261697Y186162D01*

-X261539Y185504D01*

-X261486Y184829D01*

-X261539Y184154D01*

-X261697Y183496D01*

-X261956Y182871D01*

-X262309Y182294D01*

-X262749Y181779D01*

-X263264Y181339D01*

-X263841Y180986D01*

-X264466Y180727D01*

-X265124Y180569D01*

-X265799Y180516D01*

-X266474Y180569D01*

-X267132Y180727D01*

-X267757Y180986D01*

-X268334Y181339D01*

-X268849Y181779D01*

-X269289Y182294D01*

-X269438Y182538D01*

-Y177120D01*

-G37*

-G36*

-Y171500D02*X268522D01*

-X268849Y171779D01*

-X269289Y172294D01*

-X269438Y172538D01*

-Y171500D01*

-G37*

-G36*

-X260938D02*X258522D01*

-X258849Y171779D01*

-X259289Y172294D01*

-X259642Y172871D01*

-X259901Y173496D01*

-X260059Y174154D01*

-X260099Y174829D01*

-X260059Y175504D01*

-X259901Y176162D01*

-X259642Y176787D01*

-X259289Y177364D01*

-X258849Y177879D01*

-X258334Y178319D01*

-X257757Y178672D01*

-X257132Y178931D01*

-X256474Y179089D01*

-X255799Y179142D01*

-X255124Y179089D01*

-X254737Y178996D01*

-Y180662D01*

-X255124Y180569D01*

-X255799Y180516D01*

-X256474Y180569D01*

-X257132Y180727D01*

-X257757Y180986D01*

-X258334Y181339D01*

-X258849Y181779D01*

-X259289Y182294D01*

-X259642Y182871D01*

-X259901Y183496D01*

-X260059Y184154D01*

-X260099Y184829D01*

-X260059Y185504D01*

-X259901Y186162D01*

-X259642Y186787D01*

-X259289Y187364D01*

-X258849Y187879D01*

-X258334Y188319D01*

-X257757Y188672D01*

-X257132Y188931D01*

-X256474Y189089D01*

-X255799Y189142D01*

-X255124Y189089D01*

-X254737Y188996D01*

-Y260595D01*

-X254765Y260627D01*

-X254933Y260902D01*

-X255057Y261201D01*

-X255132Y261514D01*

-X255151Y261836D01*

-X255132Y262158D01*

-X255057Y262471D01*

-X254933Y262770D01*

-X254765Y263045D01*

-X254737Y263077D01*

-Y296273D01*

-X254740Y296273D01*

-X255062Y296298D01*

-X255375Y296373D01*

-X255674Y296497D01*

-X255949Y296665D01*

-X256194Y296875D01*

-X256404Y297120D01*

-X256572Y297395D01*

-X256696Y297694D01*

-X256771Y298007D01*

-X256790Y298329D01*

-X256771Y298651D01*

-X256696Y298964D01*

-X256572Y299263D01*

-X256404Y299538D01*

-X256194Y299783D01*

-X255949Y299993D01*

-X255674Y300161D01*

-X255375Y300285D01*

-X255062Y300360D01*

-X254740Y300385D01*

-X254737Y300385D01*

-Y360662D01*

-X255124Y360569D01*

-X255799Y360516D01*

-X256474Y360569D01*

-X257132Y360727D01*

-X257757Y360986D01*

-X258334Y361339D01*

-X258849Y361779D01*

-X259289Y362294D01*

-X259642Y362871D01*

-X259901Y363496D01*

-X260059Y364154D01*

-X260099Y364829D01*

-X260059Y365504D01*

-X259901Y366162D01*

-X259642Y366787D01*

-X259289Y367364D01*

-X258849Y367879D01*

-X258334Y368319D01*

-X257757Y368672D01*

-X257132Y368931D01*

-X256474Y369089D01*

-X255799Y369142D01*

-X255124Y369089D01*

-X254737Y368996D01*

-Y370662D01*

-X255124Y370569D01*

-X255799Y370516D01*

-X256474Y370569D01*

-X257132Y370727D01*

-X257757Y370986D01*

-X258334Y371339D01*

-X258849Y371779D01*

-X259289Y372294D01*

-X259642Y372871D01*

-X259901Y373496D01*

-X260059Y374154D01*

-X260099Y374829D01*

-X260059Y375504D01*

-X259901Y376162D01*

-X259642Y376787D01*

-X259289Y377364D01*

-X258849Y377879D01*

-X258334Y378319D01*

-X257757Y378672D01*

-X257132Y378931D01*

-X256474Y379089D01*

-X255799Y379142D01*

-X255124Y379089D01*

-X254737Y378996D01*

-Y397000D01*

-X260938D01*

-Y318759D01*

-X260850Y318780D01*

-X260568Y318803D01*

-X260286Y318780D01*

-X260010Y318714D01*

-X259748Y318606D01*

-X259507Y318458D01*

-X259291Y318274D01*

-X259107Y318058D01*

-X258959Y317817D01*

-X258851Y317555D01*

-X258785Y317279D01*

-X258762Y316997D01*

-X258785Y316715D01*

-X258851Y316439D01*

-X258959Y316177D01*

-X259107Y315936D01*

-X259291Y315720D01*

-X259507Y315536D01*

-X259748Y315388D01*

-X260010Y315280D01*

-X260286Y315214D01*

-X260568Y315191D01*

-X260850Y315214D01*

-X260938Y315235D01*

-Y309082D01*

-X260682Y308976D01*

-X260441Y308828D01*

-X260225Y308644D01*

-X260041Y308428D01*

-X259893Y308187D01*

-X259785Y307925D01*

-X259719Y307649D01*

-X259696Y307367D01*

-X259719Y307085D01*

-X259785Y306809D01*

-X259893Y306547D01*

-X260041Y306306D01*

-X260225Y306090D01*

-X260441Y305906D01*

-X260682Y305758D01*

-X260938Y305652D01*

-Y292812D01*

-X260908Y292763D01*

-X260784Y292464D01*

-X260709Y292151D01*

-X260684Y291829D01*

-X260709Y291507D01*

-X260784Y291194D01*

-X260908Y290895D01*

-X260938Y290846D01*

-Y286214D01*

-X260663Y286280D01*

-X260341Y286305D01*

-X260019Y286280D01*

-X259706Y286205D01*

-X259407Y286081D01*

-X259132Y285913D01*

-X258887Y285703D01*

-X258677Y285458D01*

-X258509Y285183D01*

-X258385Y284884D01*

-X258310Y284571D01*

-X258285Y284249D01*

-X258310Y283927D01*

-X258385Y283614D01*

-X258509Y283315D01*

-X258677Y283040D01*

-X258887Y282795D01*

-X259132Y282585D01*

-X259407Y282417D01*

-X259706Y282293D01*

-X260019Y282218D01*

-X260341Y282193D01*

-X260663Y282218D01*

-X260938Y282284D01*

-Y269739D01*

-X260918Y269706D01*

-X260794Y269407D01*

-X260719Y269094D01*

-X260694Y268772D01*

-X260719Y268450D01*

-X260794Y268137D01*

-X260918Y267838D01*

-X260938Y267805D01*

-Y193305D01*

-X260659Y193283D01*

-X260383Y193217D01*

-X260121Y193109D01*

-X259880Y192961D01*

-X259664Y192777D01*

-X259480Y192561D01*

-X259332Y192320D01*

-X259224Y192058D01*

-X259158Y191782D01*

-X259135Y191500D01*

-X259158Y191218D01*

-X259224Y190942D01*

-X259332Y190680D01*

-X259480Y190439D01*

-X259664Y190223D01*

-X259880Y190039D01*

-X260121Y189891D01*

-X260383Y189783D01*

-X260659Y189717D01*

-X260938Y189695D01*

-Y171500D01*

-G37*

-G36*

-X254737Y178996D02*X254466Y178931D01*

-X253841Y178672D01*

-X253264Y178319D01*

-X252749Y177879D01*

-X252309Y177364D01*

-X251956Y176787D01*

-X251697Y176162D01*

-X251539Y175504D01*

-X251486Y174829D01*

-X251539Y174154D01*

-X251697Y173496D01*

-X251956Y172871D01*

-X252309Y172294D01*

-X252749Y171779D01*

-X253076Y171500D01*

-X250938D01*

-Y209003D01*

-X251121Y208891D01*

-X251383Y208783D01*

-X251659Y208717D01*

-X251941Y208694D01*

-X252223Y208717D01*

-X252499Y208783D01*

-X252761Y208891D01*

-X253002Y209039D01*

-X253218Y209223D01*

-X253402Y209439D01*

-X253550Y209680D01*

-X253658Y209942D01*

-X253724Y210218D01*

-X253741Y210500D01*

-X253724Y210782D01*

-X253658Y211058D01*

-X253550Y211320D01*

-X253402Y211561D01*

-X253218Y211777D01*

-X253002Y211961D01*

-X252761Y212109D01*

-X252499Y212217D01*

-X252223Y212283D01*

-X251941Y212306D01*

-X251659Y212283D01*

-X251383Y212217D01*

-X251121Y212109D01*

-X250938Y211997D01*

-Y227695D01*

-X250941Y227694D01*

-X251223Y227717D01*

-X251499Y227783D01*

-X251761Y227891D01*

-X252002Y228039D01*

-X252218Y228223D01*

-X252402Y228439D01*

-X252550Y228680D01*

-X252658Y228942D01*

-X252724Y229218D01*

-X252741Y229500D01*

-X252724Y229782D01*

-X252658Y230058D01*

-X252550Y230320D01*

-X252402Y230561D01*

-X252218Y230777D01*

-X252002Y230961D01*

-X251761Y231109D01*

-X251499Y231217D01*

-X251223Y231283D01*

-X250941Y231306D01*

-X250938Y231305D01*

-Y397000D01*

-X254737D01*

-Y378996D01*

-X254466Y378931D01*

-X253841Y378672D01*

-X253264Y378319D01*

-X252749Y377879D01*

-X252309Y377364D01*

-X251956Y376787D01*

-X251697Y376162D01*

-X251539Y375504D01*

-X251486Y374829D01*

-X251539Y374154D01*

-X251697Y373496D01*

-X251956Y372871D01*

-X252309Y372294D01*

-X252749Y371779D01*

-X253264Y371339D01*

-X253841Y370986D01*

-X254466Y370727D01*

-X254737Y370662D01*

-Y368996D01*

-X254466Y368931D01*

-X253841Y368672D01*

-X253264Y368319D01*

-X252749Y367879D01*

-X252309Y367364D01*

-X251956Y366787D01*

-X251697Y366162D01*

-X251539Y365504D01*

-X251486Y364829D01*

-X251539Y364154D01*

-X251697Y363496D01*

-X251956Y362871D01*

-X252309Y362294D01*

-X252749Y361779D01*

-X253264Y361339D01*

-X253841Y360986D01*

-X254466Y360727D01*

-X254737Y360662D01*

-Y300385D01*

-X254418Y300360D01*

-X254105Y300285D01*

-X253806Y300161D01*

-X253531Y299993D01*

-X253286Y299783D01*

-X253076Y299538D01*

-X252908Y299263D01*

-X252784Y298964D01*

-X252709Y298651D01*

-X252684Y298329D01*

-X252709Y298007D01*

-X252784Y297694D01*

-X252908Y297395D01*

-X253076Y297120D01*

-X253286Y296875D01*

-X253531Y296665D01*

-X253806Y296497D01*

-X254105Y296373D01*

-X254418Y296298D01*

-X254737Y296273D01*

-Y263077D01*

-X254555Y263290D01*

-X254310Y263500D01*

-X254035Y263668D01*

-X253736Y263792D01*

-X253423Y263867D01*

-X253101Y263892D01*

-X252779Y263867D01*

-X252466Y263792D01*

-X252167Y263668D01*

-X251892Y263500D01*

-X251647Y263290D01*

-X251437Y263045D01*

-X251269Y262770D01*

-X251145Y262471D01*

-X251070Y262158D01*

-X251045Y261836D01*

-X251070Y261514D01*

-X251145Y261201D01*

-X251269Y260902D01*

-X251437Y260627D01*

-X251647Y260382D01*

-X251892Y260172D01*

-X252167Y260004D01*

-X252466Y259880D01*

-X252779Y259805D01*

-X253101Y259780D01*

-X253423Y259805D01*

-X253736Y259880D01*

-X254035Y260004D01*

-X254310Y260172D01*

-X254555Y260382D01*

-X254737Y260595D01*

-Y188996D01*

-X254466Y188931D01*

-X253841Y188672D01*

-X253264Y188319D01*

-X252749Y187879D01*

-X252309Y187364D01*

-X251956Y186787D01*

-X251697Y186162D01*

-X251539Y185504D01*

-X251486Y184829D01*

-X251539Y184154D01*

-X251697Y183496D01*

-X251956Y182871D01*

-X252309Y182294D01*

-X252749Y181779D01*

-X253264Y181339D01*

-X253841Y180986D01*

-X254466Y180727D01*

-X254737Y180662D01*

-Y178996D01*

-G37*

-G36*

-X250938Y171500D02*X249098D01*

-Y172071D01*

-X249289Y172294D01*

-X249642Y172871D01*

-X249901Y173496D01*

-X250059Y174154D01*

-X250099Y174829D01*

-X250059Y175504D01*

-X249901Y176162D01*

-X249642Y176787D01*

-X249289Y177364D01*

-X249098Y177587D01*

-Y182071D01*

-X249289Y182294D01*

-X249642Y182871D01*

-X249901Y183496D01*

-X250059Y184154D01*

-X250099Y184829D01*

-X250059Y185504D01*

-X249901Y186162D01*

-X249642Y186787D01*

-X249289Y187364D01*

-X249098Y187587D01*

-Y326988D01*

-X249101Y326987D01*

-X249383Y327010D01*

-X249659Y327076D01*

-X249921Y327184D01*

-X250162Y327332D01*

-X250378Y327516D01*

-X250562Y327732D01*

-X250710Y327973D01*

-X250818Y328235D01*

-X250884Y328511D01*

-X250901Y328793D01*

-X250884Y329075D01*

-X250818Y329351D01*

-X250710Y329613D01*

-X250562Y329854D01*

-X250378Y330070D01*

-X250162Y330254D01*

-X249921Y330402D01*

-X249659Y330510D01*

-X249383Y330576D01*

-X249101Y330599D01*

-X249098Y330598D01*

-Y362071D01*

-X249289Y362294D01*

-X249642Y362871D01*

-X249901Y363496D01*

-X250059Y364154D01*

-X250099Y364829D01*

-X250059Y365504D01*

-X249901Y366162D01*

-X249642Y366787D01*

-X249289Y367364D01*

-X249098Y367587D01*

-Y372071D01*

-X249289Y372294D01*

-X249642Y372871D01*

-X249901Y373496D01*

-X250059Y374154D01*

-X250099Y374829D01*

-X250059Y375504D01*

-X249901Y376162D01*

-X249642Y376787D01*

-X249289Y377364D01*

-X249098Y377587D01*

-Y397000D01*

-X250938D01*

-Y231305D01*

-X250659Y231283D01*

-X250383Y231217D01*

-X250121Y231109D01*

-X249880Y230961D01*

-X249664Y230777D01*

-X249480Y230561D01*

-X249332Y230320D01*

-X249224Y230058D01*

-X249158Y229782D01*

-X249135Y229500D01*

-X249158Y229218D01*

-X249224Y228942D01*

-X249332Y228680D01*

-X249480Y228439D01*

-X249664Y228223D01*

-X249880Y228039D01*

-X250121Y227891D01*

-X250383Y227783D01*

-X250659Y227717D01*

-X250938Y227695D01*

-Y211997D01*

-X250880Y211961D01*

-X250664Y211777D01*

-X250480Y211561D01*

-X250332Y211320D01*

-X250224Y211058D01*

-X250158Y210782D01*

-X250135Y210500D01*

-X250158Y210218D01*

-X250224Y209942D01*

-X250332Y209680D01*

-X250480Y209439D01*

-X250664Y209223D01*

-X250880Y209039D01*

-X250938Y209003D01*

-Y171500D01*

-G37*

-G36*

-X249098Y377587D02*X248849Y377879D01*

-X248334Y378319D01*

-X247757Y378672D01*

-X247132Y378931D01*

-X246474Y379089D01*

-X245860Y379137D01*

-Y397000D01*

-X249098D01*

-Y377587D01*

-G37*

-G36*

-Y367587D02*X248849Y367879D01*

-X248334Y368319D01*

-X247757Y368672D01*

-X247132Y368931D01*

-X246474Y369089D01*

-X245860Y369137D01*

-Y370521D01*

-X246474Y370569D01*

-X247132Y370727D01*

-X247757Y370986D01*

-X248334Y371339D01*

-X248849Y371779D01*

-X249098Y372071D01*

-Y367587D01*

-G37*

-G36*

-Y187587D02*X248849Y187879D01*

-X248334Y188319D01*

-X247757Y188672D01*

-X247132Y188931D01*

-X246474Y189089D01*

-X245860Y189137D01*

-Y189719D01*

-X245863Y189718D01*

-X246145Y189741D01*

-X246421Y189807D01*

-X246683Y189915D01*

-X246924Y190063D01*

-X247140Y190247D01*

-X247324Y190463D01*

-X247472Y190704D01*

-X247580Y190966D01*

-X247646Y191242D01*

-X247663Y191524D01*

-X247646Y191806D01*

-X247580Y192082D01*

-X247472Y192344D01*

-X247324Y192585D01*

-X247140Y192801D01*

-X246924Y192985D01*

-X246683Y193133D01*

-X246421Y193241D01*

-X246145Y193307D01*

-X245863Y193330D01*

-X245860Y193329D01*

-Y227792D01*

-X245883Y227783D01*

-X246159Y227717D01*

-X246441Y227694D01*

-X246723Y227717D01*

-X246999Y227783D01*

-X247261Y227891D01*

-X247502Y228039D01*

-X247718Y228223D01*

-X247902Y228439D01*

-X248050Y228680D01*

-X248158Y228942D01*

-X248224Y229218D01*

-X248241Y229500D01*

-X248224Y229782D01*

-X248158Y230058D01*

-X248050Y230320D01*

-X247902Y230561D01*

-X247718Y230777D01*

-X247502Y230961D01*

-X247261Y231109D01*

-X246999Y231217D01*

-X246723Y231283D01*

-X246441Y231306D01*

-X246159Y231283D01*

-X245883Y231217D01*

-X245860Y231208D01*

-Y236556D01*

-X245880Y236539D01*

-X246121Y236391D01*

-X246383Y236283D01*

-X246659Y236217D01*

-X246941Y236194D01*

-X247223Y236217D01*

-X247499Y236283D01*

-X247761Y236391D01*

-X248002Y236539D01*

-X248218Y236723D01*

-X248402Y236939D01*

-X248550Y237180D01*

-X248658Y237442D01*

-X248724Y237718D01*

-X248741Y238000D01*

-X248724Y238282D01*

-X248658Y238558D01*

-X248550Y238820D01*

-X248402Y239061D01*

-X248218Y239277D01*

-X248002Y239461D01*

-X247761Y239609D01*

-X247499Y239717D01*

-X247223Y239783D01*

-X246941Y239806D01*

-X246659Y239783D01*

-X246383Y239717D01*

-X246121Y239609D01*

-X245880Y239461D01*

-X245860Y239444D01*

-Y277476D01*

-X245879Y277477D01*

-X246192Y277552D01*

-X246491Y277676D01*

-X246766Y277844D01*

-X247011Y278054D01*

-X247221Y278299D01*

-X247389Y278574D01*

-X247513Y278873D01*

-X247588Y279186D01*

-X247607Y279508D01*

-X247588Y279830D01*

-X247513Y280143D01*

-X247389Y280442D01*

-X247221Y280717D01*

-X247011Y280962D01*

-X246766Y281172D01*

-X246491Y281340D01*

-X246192Y281464D01*

-X245879Y281539D01*

-X245860Y281540D01*

-Y301454D01*

-X245911Y301422D01*

-X246173Y301314D01*

-X246449Y301248D01*

-X246731Y301225D01*

-X247013Y301248D01*

-X247289Y301314D01*

-X247551Y301422D01*

-X247792Y301570D01*

-X248008Y301754D01*

-X248192Y301970D01*

-X248340Y302211D01*

-X248448Y302473D01*

-X248514Y302749D01*

-X248531Y303031D01*

-X248514Y303313D01*

-X248448Y303589D01*

-X248340Y303851D01*

-X248192Y304092D01*

-X248008Y304308D01*

-X247792Y304492D01*

-X247551Y304640D01*

-X247289Y304748D01*

-X247013Y304814D01*

-X246731Y304837D01*

-X246449Y304814D01*

-X246173Y304748D01*

-X245911Y304640D01*

-X245860Y304608D01*

-Y360521D01*

-X246474Y360569D01*

-X247132Y360727D01*

-X247757Y360986D01*

-X248334Y361339D01*

-X248849Y361779D01*

-X249098Y362071D01*

-Y330598D01*

-X248819Y330576D01*

-X248543Y330510D01*

-X248281Y330402D01*

-X248040Y330254D01*

-X247824Y330070D01*

-X247640Y329854D01*

-X247492Y329613D01*

-X247384Y329351D01*

-X247318Y329075D01*

-X247295Y328793D01*

-X247318Y328511D01*

-X247384Y328235D01*

-X247492Y327973D01*

-X247640Y327732D01*

-X247824Y327516D01*

-X248040Y327332D01*

-X248281Y327184D01*

-X248543Y327076D01*

-X248819Y327010D01*

-X249098Y326988D01*

-Y187587D01*

-G37*

-G36*

-Y177587D02*X248849Y177879D01*

-X248334Y178319D01*

-X247757Y178672D01*

-X247132Y178931D01*

-X246474Y179089D01*

-X245860Y179137D01*

-Y180521D01*

-X246474Y180569D01*

-X247132Y180727D01*

-X247757Y180986D01*

-X248334Y181339D01*

-X248849Y181779D01*

-X249098Y182071D01*

-Y177587D01*

-G37*

-G36*

-Y171500D02*X248522D01*

-X248849Y171779D01*

-X249098Y172071D01*

-Y171500D01*

-G37*

-G36*

-X245860Y379137D02*X245799Y379142D01*

-X245124Y379089D01*

-X244466Y378931D01*

-X243938Y378712D01*

-Y397000D01*

-X245860D01*

-Y379137D01*

-G37*

-G36*

-Y369137D02*X245799Y369142D01*

-X245124Y369089D01*

-X244466Y368931D01*

-X243938Y368712D01*

-Y370946D01*

-X244466Y370727D01*

-X245124Y370569D01*

-X245799Y370516D01*

-X245860Y370521D01*

-Y369137D01*

-G37*

-G36*

-Y281540D02*X245557Y281564D01*

-X245235Y281539D01*

-X244922Y281464D01*

-X244623Y281340D01*

-X244348Y281172D01*

-X244103Y280962D01*

-X243938Y280769D01*

-Y292122D01*

-X244120Y292334D01*

-X244288Y292609D01*

-X244412Y292908D01*

-X244487Y293221D01*

-X244506Y293543D01*

-X244487Y293865D01*

-X244412Y294178D01*

-X244288Y294477D01*

-X244120Y294752D01*

-X243938Y294964D01*

-Y297765D01*

-X244000Y297866D01*

-X244124Y298165D01*

-X244199Y298478D01*

-X244218Y298800D01*

-X244199Y299122D01*

-X244124Y299435D01*

-X244000Y299734D01*

-X243938Y299835D01*

-Y360946D01*

-X244466Y360727D01*

-X245124Y360569D01*

-X245799Y360516D01*

-X245860Y360521D01*

-Y304608D01*

-X245670Y304492D01*

-X245454Y304308D01*

-X245270Y304092D01*

-X245122Y303851D01*

-X245014Y303589D01*

-X244948Y303313D01*

-X244925Y303031D01*

-X244948Y302749D01*

-X245014Y302473D01*

-X245122Y302211D01*

-X245270Y301970D01*

-X245454Y301754D01*

-X245670Y301570D01*

-X245860Y301454D01*

-Y281540D01*

-G37*

-G36*

-Y189137D02*X245799Y189142D01*

-X245124Y189089D01*

-X244466Y188931D01*

-X243938Y188712D01*

-Y200195D01*

-X243941Y200194D01*

-X244223Y200217D01*

-X244499Y200283D01*

-X244761Y200391D01*

-X245002Y200539D01*

-X245218Y200723D01*

-X245402Y200939D01*

-X245550Y201180D01*

-X245658Y201442D01*

-X245724Y201718D01*

-X245741Y202000D01*

-X245724Y202282D01*

-X245658Y202558D01*

-X245550Y202820D01*

-X245402Y203061D01*

-X245218Y203277D01*

-X245002Y203461D01*

-X244761Y203609D01*

-X244499Y203717D01*

-X244223Y203783D01*

-X243941Y203806D01*

-X243938Y203805D01*

-Y228498D01*

-X244050Y228680D01*

-X244158Y228942D01*

-X244224Y229218D01*

-X244241Y229500D01*

-X244224Y229782D01*

-X244158Y230058D01*

-X244050Y230320D01*

-X243938Y230502D01*

-Y278247D01*

-X244103Y278054D01*

-X244348Y277844D01*

-X244623Y277676D01*

-X244922Y277552D01*

-X245235Y277477D01*

-X245557Y277452D01*

-X245860Y277476D01*

-Y239444D01*

-X245664Y239277D01*

-X245480Y239061D01*

-X245332Y238820D01*

-X245224Y238558D01*

-X245158Y238282D01*

-X245135Y238000D01*

-X245158Y237718D01*

-X245224Y237442D01*

-X245332Y237180D01*

-X245480Y236939D01*

-X245664Y236723D01*

-X245860Y236556D01*

-Y231208D01*

-X245621Y231109D01*

-X245380Y230961D01*

-X245164Y230777D01*

-X244980Y230561D01*

-X244832Y230320D01*

-X244724Y230058D01*

-X244658Y229782D01*

-X244635Y229500D01*

-X244658Y229218D01*

-X244724Y228942D01*

-X244832Y228680D01*

-X244980Y228439D01*

-X245164Y228223D01*

-X245380Y228039D01*

-X245621Y227891D01*

-X245860Y227792D01*

-Y193329D01*

-X245581Y193307D01*

-X245305Y193241D01*

-X245043Y193133D01*

-X244802Y192985D01*

-X244586Y192801D01*

-X244402Y192585D01*

-X244254Y192344D01*

-X244146Y192082D01*

-X244080Y191806D01*

-X244057Y191524D01*

-X244080Y191242D01*

-X244146Y190966D01*

-X244254Y190704D01*

-X244402Y190463D01*

-X244586Y190247D01*

-X244802Y190063D01*

-X245043Y189915D01*

-X245305Y189807D01*

-X245581Y189741D01*

-X245860Y189719D01*

-Y189137D01*

-G37*

-G36*

-Y179137D02*X245799Y179142D01*

-X245124Y179089D01*

-X244466Y178931D01*

-X243938Y178712D01*

-Y180946D01*

-X244466Y180727D01*

-X245124Y180569D01*

-X245799Y180516D01*

-X245860Y180521D01*

-Y179137D01*

-G37*

-G36*

-X240388Y397000D02*X243938D01*

-Y378712D01*

-X243841Y378672D01*

-X243264Y378319D01*

-X242749Y377879D01*

-X242309Y377364D01*

-X241956Y376787D01*

-X241697Y376162D01*

-X241539Y375504D01*

-X241486Y374829D01*

-X241539Y374154D01*

-X241697Y373496D01*

-X241956Y372871D01*

-X242309Y372294D01*

-X242749Y371779D01*

-X243264Y371339D01*

-X243841Y370986D01*

-X243938Y370946D01*

-Y368712D01*

-X243841Y368672D01*

-X243264Y368319D01*

-X242749Y367879D01*

-X242309Y367364D01*

-X241956Y366787D01*

-X241697Y366162D01*

-X241539Y365504D01*

-X241486Y364829D01*

-X241539Y364154D01*

-X241697Y363496D01*

-X241956Y362871D01*

-X242309Y362294D01*

-X242749Y361779D01*

-X243264Y361339D01*

-X243841Y360986D01*

-X243938Y360946D01*

-Y299835D01*

-X243832Y300009D01*

-X243622Y300254D01*

-X243377Y300464D01*

-X243102Y300632D01*

-X242803Y300756D01*

-X242490Y300831D01*

-X242168Y300856D01*

-X241846Y300831D01*

-X241533Y300756D01*

-X241234Y300632D01*

-X240959Y300464D01*

-X240714Y300254D01*

-X240504Y300009D01*

-X240388Y299819D01*

-Y397000D01*

-G37*

-G36*

-X243938Y178712D02*X243841Y178672D01*

-X243264Y178319D01*

-X242749Y177879D01*

-X242309Y177364D01*

-X241956Y176787D01*

-X241697Y176162D01*

-X241539Y175504D01*

-X241486Y174829D01*

-X241539Y174154D01*

-X241697Y173496D01*

-X241956Y172871D01*

-X242309Y172294D01*

-X242749Y171779D01*

-X243076Y171500D01*

-X240388D01*

-Y260496D01*

-X240511Y260571D01*

-X240756Y260781D01*

-X240966Y261026D01*

-X241134Y261301D01*

-X241258Y261600D01*

-X241333Y261913D01*

-X241352Y262235D01*

-X241333Y262557D01*

-X241258Y262870D01*

-X241134Y263169D01*

-X240966Y263444D01*

-X240756Y263689D01*

-X240511Y263899D01*

-X240388Y263974D01*

-Y276759D01*

-X240391Y276758D01*

-X240673Y276781D01*

-X240949Y276847D01*

-X241211Y276955D01*

-X241452Y277103D01*

-X241668Y277287D01*

-X241852Y277503D01*

-X242000Y277744D01*

-X242108Y278006D01*

-X242174Y278282D01*

-X242191Y278564D01*

-X242174Y278846D01*

-X242108Y279122D01*

-X242000Y279384D01*

-X241852Y279625D01*

-X241668Y279841D01*

-X241452Y280025D01*

-X241211Y280173D01*

-X240949Y280281D01*

-X240673Y280347D01*

-X240391Y280370D01*

-X240388Y280369D01*

-Y297781D01*

-X240504Y297591D01*

-X240714Y297346D01*

-X240959Y297136D01*

-X241234Y296968D01*

-X241533Y296844D01*

-X241846Y296769D01*

-X242168Y296744D01*

-X242490Y296769D01*

-X242803Y296844D01*

-X243102Y296968D01*

-X243377Y297136D01*

-X243622Y297346D01*

-X243832Y297591D01*

-X243938Y297765D01*

-Y294964D01*

-X243910Y294997D01*

-X243665Y295207D01*

-X243390Y295375D01*

-X243091Y295499D01*

-X242778Y295574D01*

-X242456Y295599D01*

-X242134Y295574D01*

-X241821Y295499D01*

-X241522Y295375D01*

-X241247Y295207D01*

-X241002Y294997D01*

-X240792Y294752D01*

-X240624Y294477D01*

-X240500Y294178D01*

-X240425Y293865D01*

-X240400Y293543D01*

-X240425Y293221D01*

-X240500Y292908D01*

-X240624Y292609D01*

-X240792Y292334D01*

-X241002Y292089D01*

-X241247Y291879D01*

-X241522Y291711D01*

-X241821Y291587D01*

-X242134Y291512D01*

-X242456Y291487D01*

-X242778Y291512D01*

-X243091Y291587D01*

-X243390Y291711D01*

-X243665Y291879D01*

-X243910Y292089D01*

-X243938Y292122D01*

-Y280769D01*

-X243893Y280717D01*

-X243725Y280442D01*

-X243601Y280143D01*

-X243526Y279830D01*

-X243501Y279508D01*

-X243526Y279186D01*

-X243601Y278873D01*

-X243725Y278574D01*

-X243893Y278299D01*

-X243938Y278247D01*

-Y230502D01*

-X243902Y230561D01*

-X243718Y230777D01*

-X243502Y230961D01*

-X243261Y231109D01*

-X242999Y231217D01*

-X242723Y231283D01*

-X242441Y231306D01*

-X242159Y231283D01*

-X241883Y231217D01*

-X241621Y231109D01*

-X241380Y230961D01*

-X241164Y230777D01*

-X240980Y230561D01*

-X240832Y230320D01*

-X240724Y230058D01*

-X240658Y229782D01*

-X240635Y229500D01*

-X240658Y229218D01*

-X240724Y228942D01*

-X240832Y228680D01*

-X240980Y228439D01*

-X241164Y228223D01*

-X241380Y228039D01*

-X241621Y227891D01*

-X241883Y227783D01*

-X242159Y227717D01*

-X242441Y227694D01*

-X242723Y227717D01*

-X242999Y227783D01*

-X243261Y227891D01*

-X243502Y228039D01*

-X243718Y228223D01*

-X243902Y228439D01*

-X243938Y228498D01*

-Y203805D01*

-X243659Y203783D01*

-X243383Y203717D01*

-X243121Y203609D01*

-X242880Y203461D01*

-X242664Y203277D01*

-X242480Y203061D01*

-X242332Y202820D01*

-X242224Y202558D01*

-X242158Y202282D01*

-X242135Y202000D01*

-X242158Y201718D01*

-X242224Y201442D01*

-X242332Y201180D01*

-X242480Y200939D01*

-X242664Y200723D01*

-X242880Y200539D01*

-X243121Y200391D01*

-X243383Y200283D01*

-X243659Y200217D01*

-X243938Y200195D01*

-Y188712D01*

-X243841Y188672D01*

-X243264Y188319D01*

-X242749Y187879D01*

-X242309Y187364D01*

-X241956Y186787D01*

-X241697Y186162D01*

-X241539Y185504D01*

-X241486Y184829D01*

-X241539Y184154D01*

-X241697Y183496D01*

-X241956Y182871D01*

-X242309Y182294D01*

-X242749Y181779D01*

-X243264Y181339D01*

-X243841Y180986D01*

-X243938Y180946D01*

-Y178712D01*

-G37*

-G36*

-X240388Y171500D02*X238522D01*

-X238849Y171779D01*

-X239289Y172294D01*

-X239642Y172871D01*

-X239901Y173496D01*

-X240059Y174154D01*

-X240099Y174829D01*

-X240059Y175504D01*

-X239901Y176162D01*

-X239642Y176787D01*

-X239289Y177364D01*

-X238849Y177879D01*

-X238334Y178319D01*

-X237757Y178672D01*

-X237132Y178931D01*

-X236474Y179089D01*

-X236438Y179092D01*

-Y180566D01*

-X236474Y180569D01*

-X237132Y180727D01*

-X237757Y180986D01*

-X238334Y181339D01*

-X238849Y181779D01*

-X239289Y182294D01*

-X239642Y182871D01*

-X239901Y183496D01*

-X240059Y184154D01*

-X240099Y184829D01*

-X240059Y185504D01*

-X239901Y186162D01*

-X239642Y186787D01*

-X239289Y187364D01*

-X238849Y187879D01*

-X238334Y188319D01*

-X237757Y188672D01*

-X237132Y188931D01*

-X236474Y189089D01*

-X236438Y189092D01*

-Y193066D01*

-X236474Y193069D01*

-X237132Y193227D01*

-X237757Y193486D01*

-X238334Y193839D01*

-X238849Y194279D01*

-X239289Y194794D01*

-X239642Y195371D01*

-X239901Y195996D01*

-X240059Y196654D01*

-X240099Y197329D01*

-X240059Y198004D01*

-X239901Y198662D01*

-X239642Y199287D01*

-X239289Y199864D01*

-X238849Y200379D01*

-X238334Y200819D01*

-X237757Y201172D01*

-X237132Y201431D01*

-X236474Y201589D01*

-X236438Y201592D01*

-Y233695D01*

-X236441Y233694D01*

-X236723Y233717D01*

-X236999Y233783D01*

-X237261Y233891D01*

-X237502Y234039D01*

-X237718Y234223D01*

-X237902Y234439D01*

-X238050Y234680D01*

-X238158Y234942D01*

-X238224Y235218D01*

-X238241Y235500D01*

-X238224Y235782D01*

-X238158Y236058D01*

-X238050Y236320D01*

-X237902Y236561D01*

-X237718Y236777D01*

-X237502Y236961D01*

-X237261Y237109D01*

-X236999Y237217D01*

-X236723Y237283D01*

-X236441Y237306D01*

-X236438Y237305D01*

-Y360566D01*

-X236474Y360569D01*

-X237132Y360727D01*

-X237757Y360986D01*

-X238334Y361339D01*

-X238849Y361779D01*

-X239289Y362294D01*

-X239642Y362871D01*

-X239901Y363496D01*

-X240059Y364154D01*

-X240099Y364829D01*

-X240059Y365504D01*

-X239901Y366162D01*

-X239642Y366787D01*

-X239289Y367364D01*

-X238849Y367879D01*

-X238334Y368319D01*

-X237757Y368672D01*

-X237132Y368931D01*

-X236474Y369089D01*

-X236438Y369092D01*

-Y370566D01*

-X236474Y370569D01*

-X237132Y370727D01*

-X237757Y370986D01*

-X238334Y371339D01*

-X238849Y371779D01*

-X239289Y372294D01*

-X239642Y372871D01*

-X239901Y373496D01*

-X240059Y374154D01*

-X240099Y374829D01*

-X240059Y375504D01*

-X239901Y376162D01*

-X239642Y376787D01*

-X239289Y377364D01*

-X238849Y377879D01*

-X238334Y378319D01*

-X237757Y378672D01*

-X237132Y378931D01*

-X236474Y379089D01*

-X236438Y379092D01*

-Y397000D01*

-X240388D01*

-Y299819D01*

-X240336Y299734D01*

-X240212Y299435D01*

-X240137Y299122D01*

-X240112Y298800D01*

-X240137Y298478D01*

-X240212Y298165D01*

-X240336Y297866D01*

-X240388Y297781D01*

-Y280369D01*

-X240109Y280347D01*

-X239833Y280281D01*

-X239571Y280173D01*

-X239330Y280025D01*

-X239114Y279841D01*

-X238930Y279625D01*

-X238782Y279384D01*

-X238674Y279122D01*

-X238608Y278846D01*

-X238585Y278564D01*

-X238608Y278282D01*

-X238674Y278006D01*

-X238782Y277744D01*

-X238930Y277503D01*

-X239114Y277287D01*

-X239330Y277103D01*

-X239571Y276955D01*

-X239833Y276847D01*

-X240109Y276781D01*

-X240388Y276759D01*

-Y263974D01*

-X240236Y264067D01*

-X239937Y264191D01*

-X239624Y264266D01*

-X239302Y264291D01*

-X238980Y264266D01*

-X238667Y264191D01*

-X238368Y264067D01*

-X238093Y263899D01*

-X237848Y263689D01*

-X237638Y263444D01*

-X237470Y263169D01*

-X237346Y262870D01*

-X237271Y262557D01*

-X237246Y262235D01*

-X237271Y261913D01*

-X237346Y261600D01*

-X237470Y261301D01*

-X237638Y261026D01*

-X237848Y260781D01*

-X238093Y260571D01*

-X238368Y260403D01*

-X238667Y260279D01*

-X238980Y260204D01*

-X239302Y260179D01*

-X239624Y260204D01*

-X239937Y260279D01*

-X240236Y260403D01*

-X240388Y260496D01*

-Y171500D01*

-G37*

-G36*

-X236438Y179092D02*X235799Y179142D01*

-X235124Y179089D01*

-X234466Y178931D01*

-X233841Y178672D01*

-X233264Y178319D01*

-X232749Y177879D01*

-X232309Y177364D01*

-X231956Y176787D01*

-X231697Y176162D01*

-X231539Y175504D01*

-X231486Y174829D01*

-X231539Y174154D01*

-X231697Y173496D01*

-X231956Y172871D01*

-X232309Y172294D01*

-X232749Y171779D01*

-X233076Y171500D01*

-X230438D01*

-Y245195D01*

-X230441Y245194D01*

-X230723Y245217D01*

-X230999Y245283D01*

-X231261Y245391D01*

-X231502Y245539D01*

-X231718Y245723D01*

-X231902Y245939D01*

-X232050Y246180D01*

-X232158Y246442D01*

-X232224Y246718D01*

-X232241Y247000D01*

-X232224Y247282D01*

-X232158Y247558D01*

-X232050Y247820D01*

-X231902Y248061D01*

-X231718Y248277D01*

-X231502Y248461D01*

-X231261Y248609D01*

-X230999Y248717D01*

-X230723Y248783D01*

-X230441Y248806D01*

-X230438Y248805D01*

-Y291195D01*

-X230441Y291194D01*

-X230723Y291217D01*

-X230999Y291283D01*

-X231261Y291391D01*

-X231502Y291539D01*

-X231718Y291723D01*

-X231902Y291939D01*

-X232050Y292180D01*

-X232158Y292442D01*

-X232224Y292718D01*

-X232241Y293000D01*

-X232224Y293282D01*

-X232158Y293558D01*

-X232050Y293820D01*

-X231902Y294061D01*

-X231718Y294277D01*

-X231502Y294461D01*

-X231261Y294609D01*

-X230999Y294717D01*

-X230723Y294783D01*

-X230441Y294806D01*

-X230438Y294805D01*

-Y353297D01*

-X230638Y353379D01*

-X230879Y353527D01*

-X231095Y353711D01*

-X231279Y353927D01*

-X231427Y354168D01*

-X231535Y354430D01*

-X231601Y354706D01*

-X231618Y354988D01*

-X231601Y355270D01*

-X231535Y355546D01*

-X231427Y355808D01*

-X231279Y356049D01*

-X231095Y356265D01*

-X230879Y356449D01*

-X230638Y356597D01*

-X230438Y356679D01*

-Y397000D01*

-X236438D01*

-Y379092D01*

-X235799Y379142D01*

-X235124Y379089D01*

-X234466Y378931D01*

-X233841Y378672D01*

-X233264Y378319D01*

-X232749Y377879D01*

-X232309Y377364D01*

-X231956Y376787D01*

-X231697Y376162D01*

-X231539Y375504D01*

-X231486Y374829D01*

-X231539Y374154D01*

-X231697Y373496D01*

-X231956Y372871D01*

-X232309Y372294D01*

-X232749Y371779D01*

-X233264Y371339D01*

-X233841Y370986D01*

-X234466Y370727D01*

-X235124Y370569D01*

-X235799Y370516D01*

-X236438Y370566D01*

-Y369092D01*

-X235799Y369142D01*

-X235124Y369089D01*

-X234466Y368931D01*

-X233841Y368672D01*

-X233264Y368319D01*

-X232749Y367879D01*

-X232309Y367364D01*

-X231956Y366787D01*

-X231697Y366162D01*

-X231539Y365504D01*

-X231486Y364829D01*

-X231539Y364154D01*

-X231697Y363496D01*

-X231956Y362871D01*

-X232309Y362294D01*

-X232749Y361779D01*

-X233264Y361339D01*

-X233841Y360986D01*

-X234466Y360727D01*

-X235124Y360569D01*

-X235799Y360516D01*

-X236438Y360566D01*

-Y237305D01*

-X236159Y237283D01*

-X235883Y237217D01*

-X235621Y237109D01*

-X235380Y236961D01*

-X235164Y236777D01*

-X234980Y236561D01*

-X234832Y236320D01*

-X234724Y236058D01*

-X234658Y235782D01*

-X234635Y235500D01*

-X234658Y235218D01*

-X234724Y234942D01*

-X234832Y234680D01*

-X234980Y234439D01*

-X235164Y234223D01*

-X235380Y234039D01*

-X235621Y233891D01*

-X235883Y233783D01*

-X236159Y233717D01*

-X236438Y233695D01*

-Y201592D01*

-X235799Y201642D01*

-X235124Y201589D01*

-X234466Y201431D01*

-X233841Y201172D01*

-X233264Y200819D01*

-X232749Y200379D01*

-X232309Y199864D01*

-X231956Y199287D01*

-X231697Y198662D01*

-X231539Y198004D01*

-X231486Y197329D01*

-X231539Y196654D01*

-X231697Y195996D01*

-X231956Y195371D01*

-X232309Y194794D01*

-X232749Y194279D01*

-X233264Y193839D01*

-X233841Y193486D01*

-X234466Y193227D01*

-X235124Y193069D01*

-X235799Y193016D01*

-X236438Y193066D01*

-Y189092D01*

-X235799Y189142D01*

-X235124Y189089D01*

-X234466Y188931D01*

-X233841Y188672D01*

-X233264Y188319D01*

-X232749Y187879D01*

-X232309Y187364D01*

-X231956Y186787D01*

-X231697Y186162D01*

-X231539Y185504D01*

-X231486Y184829D01*

-X231539Y184154D01*

-X231697Y183496D01*

-X231956Y182871D01*

-X232309Y182294D01*

-X232749Y181779D01*

-X233264Y181339D01*

-X233841Y180986D01*

-X234466Y180727D01*

-X235124Y180569D01*

-X235799Y180516D01*

-X236438Y180566D01*

-Y179092D01*

-G37*

-G36*

-X223660Y250375D02*X223883Y250283D01*

-X224121Y250226D01*

-X223980Y250061D01*

-X223832Y249820D01*

-X223724Y249558D01*

-X223660Y249291D01*

-Y250375D01*

-G37*

-G36*

-X230438Y171500D02*X228522D01*

-X228849Y171779D01*

-X229289Y172294D01*

-X229642Y172871D01*

-X229901Y173496D01*

-X230059Y174154D01*

-X230099Y174829D01*

-X230059Y175504D01*

-X229901Y176162D01*

-X229642Y176787D01*

-X229289Y177364D01*

-X228849Y177879D01*

-X228334Y178319D01*

-X227757Y178672D01*

-X227132Y178931D01*

-X226474Y179089D01*

-X225799Y179142D01*

-X225124Y179089D01*

-X224466Y178931D01*

-X223841Y178672D01*

-X223660Y178561D01*

-Y181097D01*

-X223841Y180986D01*

-X224466Y180727D01*

-X225124Y180569D01*

-X225799Y180516D01*

-X226474Y180569D01*

-X227132Y180727D01*

-X227757Y180986D01*

-X228334Y181339D01*

-X228849Y181779D01*

-X229289Y182294D01*

-X229642Y182871D01*

-X229901Y183496D01*

-X230059Y184154D01*

-X230099Y184829D01*

-X230059Y185504D01*

-X229901Y186162D01*

-X229642Y186787D01*

-X229289Y187364D01*

-X228849Y187879D01*

-X228334Y188319D01*

-X227757Y188672D01*

-X227132Y188931D01*

-X226474Y189089D01*

-X225799Y189142D01*

-X225124Y189089D01*

-X224466Y188931D01*

-X223841Y188672D01*

-X223660Y188561D01*

-Y193597D01*

-X223841Y193486D01*

-X224466Y193227D01*

-X225124Y193069D01*

-X225799Y193016D01*

-X226474Y193069D01*

-X227132Y193227D01*

-X227757Y193486D01*

-X228334Y193839D01*

-X228849Y194279D01*

-X229289Y194794D01*

-X229642Y195371D01*

-X229901Y195996D01*

-X230059Y196654D01*

-X230099Y197329D01*

-X230059Y198004D01*

-X229901Y198662D01*

-X229642Y199287D01*

-X229289Y199864D01*

-X228849Y200379D01*

-X228334Y200819D01*

-X227757Y201172D01*

-X227132Y201431D01*

-X226474Y201589D01*

-X225799Y201642D01*

-X225124Y201589D01*

-X224466Y201431D01*

-X223841Y201172D01*

-X223660Y201061D01*

-Y219229D01*

-X223664Y219223D01*

-X223880Y219039D01*

-X224121Y218891D01*

-X224383Y218783D01*

-X224659Y218717D01*

-X224941Y218694D01*

-X225223Y218717D01*

-X225499Y218783D01*

-X225761Y218891D01*

-X226002Y219039D01*

-X226218Y219223D01*

-X226402Y219439D01*

-X226550Y219680D01*

-X226658Y219942D01*

-X226724Y220218D01*

-X226741Y220500D01*

-X226724Y220782D01*

-X226658Y221058D01*

-X226550Y221320D01*

-X226402Y221561D01*

-X226218Y221777D01*

-X226002Y221961D01*

-X225761Y222109D01*

-X225499Y222217D01*

-X225223Y222283D01*

-X224941Y222306D01*

-X224659Y222283D01*

-X224383Y222217D01*

-X224121Y222109D01*

-X223880Y221961D01*

-X223664Y221777D01*

-X223660Y221771D01*

-Y226209D01*

-X223724Y225942D01*

-X223832Y225680D01*

-X223980Y225439D01*

-X224164Y225223D01*

-X224380Y225039D01*

-X224621Y224891D01*

-X224883Y224783D01*

-X225159Y224717D01*

-X225441Y224694D01*

-X225723Y224717D01*

-X225999Y224783D01*

-X226261Y224891D01*

-X226502Y225039D01*

-X226718Y225223D01*

-X226902Y225439D01*

-X227050Y225680D01*

-X227158Y225942D01*

-X227224Y226218D01*

-X227241Y226500D01*

-X227224Y226782D01*

-X227158Y227058D01*

-X227050Y227320D01*

-X226902Y227561D01*

-X226718Y227777D01*

-X226502Y227961D01*

-X226261Y228109D01*

-X225999Y228217D01*

-X225723Y228283D01*

-X225441Y228306D01*

-X225159Y228283D01*

-X224883Y228217D01*

-X224621Y228109D01*

-X224380Y227961D01*

-X224164Y227777D01*

-X223980Y227561D01*

-X223832Y227320D01*

-X223724Y227058D01*

-X223660Y226791D01*

-Y234229D01*

-X223664Y234223D01*

-X223880Y234039D01*

-X224121Y233891D01*

-X224383Y233783D01*

-X224659Y233717D01*

-X224941Y233694D01*

-X225223Y233717D01*

-X225499Y233783D01*

-X225761Y233891D01*

-X226002Y234039D01*

-X226218Y234223D01*

-X226402Y234439D01*

-X226550Y234680D01*

-X226658Y234942D01*

-X226724Y235218D01*

-X226741Y235500D01*

-X226724Y235782D01*

-X226658Y236058D01*

-X226550Y236320D01*

-X226402Y236561D01*

-X226218Y236777D01*

-X226002Y236961D01*

-X225761Y237109D01*

-X225499Y237217D01*

-X225223Y237283D01*

-X224941Y237306D01*

-X224659Y237283D01*

-X224383Y237217D01*

-X224121Y237109D01*

-X223880Y236961D01*

-X223664Y236777D01*

-X223660Y236771D01*

-Y242375D01*

-X223883Y242283D01*

-X224159Y242217D01*

-X224441Y242194D01*

-X224723Y242217D01*

-X224999Y242283D01*

-X225261Y242391D01*

-X225502Y242539D01*

-X225718Y242723D01*

-X225902Y242939D01*

-X226050Y243180D01*

-X226158Y243442D01*

-X226224Y243718D01*

-X226241Y244000D01*

-X226224Y244282D01*

-X226158Y244558D01*

-X226050Y244820D01*

-X225902Y245061D01*

-X225718Y245277D01*

-X225502Y245461D01*

-X225261Y245609D01*

-X224999Y245717D01*

-X224723Y245783D01*

-X224441Y245806D01*

-X224159Y245783D01*

-X223883Y245717D01*

-X223660Y245625D01*

-Y248709D01*

-X223724Y248442D01*

-X223832Y248180D01*

-X223980Y247939D01*

-X224164Y247723D01*

-X224380Y247539D01*

-X224621Y247391D01*

-X224883Y247283D01*

-X225159Y247217D01*

-X225441Y247194D01*

-X225723Y247217D01*

-X225999Y247283D01*

-X226261Y247391D01*

-X226502Y247539D01*

-X226718Y247723D01*

-X226902Y247939D01*

-X227050Y248180D01*

-X227158Y248442D01*

-X227224Y248718D01*

-X227241Y249000D01*

-X227224Y249282D01*

-X227158Y249558D01*

-X227050Y249820D01*

-X226902Y250061D01*

-X226718Y250277D01*

-X226502Y250461D01*

-X226261Y250609D01*

-X225999Y250717D01*

-X225761Y250774D01*

-X225902Y250939D01*

-X226050Y251180D01*

-X226158Y251442D01*

-X226224Y251718D01*

-X226241Y252000D01*

-X226224Y252282D01*

-X226158Y252558D01*

-X226050Y252820D01*

-X225902Y253061D01*

-X225718Y253277D01*

-X225502Y253461D01*

-X225261Y253609D01*

-X224999Y253717D01*

-X224723Y253783D01*

-X224441Y253806D01*

-X224159Y253783D01*

-X223883Y253717D01*

-X223660Y253625D01*

-Y253686D01*

-X223667Y253718D01*

-X223684Y254000D01*

-X223667Y254282D01*

-X223660Y254314D01*

-Y361097D01*

-X223841Y360986D01*

-X224466Y360727D01*

-X225124Y360569D01*

-X225799Y360516D01*

-X226474Y360569D01*

-X227132Y360727D01*

-X227757Y360986D01*

-X228334Y361339D01*

-X228849Y361779D01*

-X229289Y362294D01*

-X229642Y362871D01*

-X229901Y363496D01*

-X230059Y364154D01*

-X230099Y364829D01*

-X230059Y365504D01*

-X229901Y366162D01*

-X229642Y366787D01*

-X229289Y367364D01*

-X228849Y367879D01*

-X228334Y368319D01*

-X227757Y368672D01*

-X227132Y368931D01*

-X226474Y369089D01*

-X225799Y369142D01*

-X225124Y369089D01*

-X224466Y368931D01*

-X223841Y368672D01*

-X223660Y368561D01*

-Y371097D01*

-X223841Y370986D01*

-X224466Y370727D01*

-X225124Y370569D01*

-X225799Y370516D01*

-X226474Y370569D01*

-X227132Y370727D01*

-X227757Y370986D01*

-X228334Y371339D01*

-X228849Y371779D01*

-X229289Y372294D01*

-X229642Y372871D01*

-X229901Y373496D01*

-X230059Y374154D01*

-X230099Y374829D01*

-X230059Y375504D01*

-X229901Y376162D01*

-X229642Y376787D01*

-X229289Y377364D01*

-X228849Y377879D01*

-X228334Y378319D01*

-X227757Y378672D01*

-X227132Y378931D01*

-X226474Y379089D01*

-X225799Y379142D01*

-X225124Y379089D01*

-X224466Y378931D01*

-X223841Y378672D01*

-X223660Y378561D01*

-Y397000D01*

-X230438D01*

-Y356679D01*

-X230376Y356705D01*

-X230100Y356771D01*

-X229818Y356794D01*

-X229536Y356771D01*

-X229260Y356705D01*

-X228998Y356597D01*

-X228757Y356449D01*

-X228541Y356265D01*

-X228357Y356049D01*

-X228209Y355808D01*

-X228101Y355546D01*

-X228035Y355270D01*

-X228012Y354988D01*

-X228035Y354706D01*

-X228101Y354430D01*

-X228209Y354168D01*

-X228357Y353927D01*

-X228541Y353711D01*

-X228757Y353527D01*

-X228998Y353379D01*

-X229260Y353271D01*

-X229536Y353205D01*

-X229818Y353182D01*

-X230100Y353205D01*

-X230376Y353271D01*

-X230438Y353297D01*

-Y294805D01*

-X230159Y294783D01*

-X229883Y294717D01*

-X229621Y294609D01*

-X229380Y294461D01*

-X229164Y294277D01*

-X228980Y294061D01*

-X228832Y293820D01*

-X228724Y293558D01*

-X228658Y293282D01*

-X228635Y293000D01*

-X228658Y292718D01*

-X228724Y292442D01*

-X228832Y292180D01*

-X228980Y291939D01*

-X229164Y291723D01*

-X229380Y291539D01*

-X229621Y291391D01*

-X229883Y291283D01*

-X230159Y291217D01*

-X230438Y291195D01*

-Y248805D01*

-X230159Y248783D01*

-X229883Y248717D01*

-X229621Y248609D01*

-X229380Y248461D01*

-X229164Y248277D01*

-X228980Y248061D01*

-X228832Y247820D01*

-X228724Y247558D01*

-X228658Y247282D01*

-X228635Y247000D01*

-X228658Y246718D01*

-X228724Y246442D01*

-X228832Y246180D01*

-X228980Y245939D01*

-X229164Y245723D01*

-X229380Y245539D01*

-X229621Y245391D01*

-X229883Y245283D01*

-X230159Y245217D01*

-X230438Y245195D01*

-Y171500D01*

-G37*

-G36*

-X223660Y253625D02*X223643Y253618D01*

-X223660Y253686D01*

-Y253625D01*

-G37*

-G36*

-X181938Y172913D02*X181956Y172871D01*

-X182309Y172294D01*

-X182749Y171779D01*

-X183076Y171500D01*

-X181938D01*

-Y172913D01*

-G37*

-G36*

-X223660Y178561D02*X223264Y178319D01*

-X222749Y177879D01*

-X222309Y177364D01*

-X221956Y176787D01*

-X221697Y176162D01*

-X221539Y175504D01*

-X221486Y174829D01*

-X221539Y174154D01*

-X221697Y173496D01*

-X221956Y172871D01*

-X222309Y172294D01*

-X222749Y171779D01*

-X223076Y171500D01*

-X219438D01*

-Y172538D01*

-X219642Y172871D01*

-X219901Y173496D01*

-X220059Y174154D01*

-X220099Y174829D01*

-X220059Y175504D01*

-X219901Y176162D01*

-X219642Y176787D01*

-X219438Y177120D01*

-Y182538D01*

-X219642Y182871D01*

-X219901Y183496D01*

-X220059Y184154D01*

-X220099Y184829D01*

-X220059Y185504D01*

-X219901Y186162D01*

-X219642Y186787D01*

-X219438Y187120D01*

-Y195038D01*

-X219642Y195371D01*

-X219901Y195996D01*

-X220059Y196654D01*

-X220099Y197329D01*

-X220059Y198004D01*

-X219901Y198662D01*

-X219642Y199287D01*

-X219438Y199620D01*

-Y213503D01*

-X219621Y213391D01*

-X219883Y213283D01*

-X220159Y213217D01*

-X220441Y213194D01*

-X220723Y213217D01*

-X220999Y213283D01*

-X221261Y213391D01*

-X221502Y213539D01*

-X221718Y213723D01*

-X221902Y213939D01*

-X222050Y214180D01*

-X222158Y214442D01*

-X222224Y214718D01*

-X222241Y215000D01*

-X222224Y215282D01*

-X222158Y215558D01*

-X222050Y215820D01*

-X221902Y216061D01*

-X221718Y216277D01*

-X221502Y216461D01*

-X221261Y216609D01*

-X220999Y216717D01*

-X220723Y216783D01*

-X220441Y216806D01*

-X220159Y216783D01*

-X219883Y216717D01*

-X219621Y216609D01*

-X219438Y216497D01*

-Y258003D01*

-X219621Y257891D01*

-X219883Y257783D01*

-X220159Y257717D01*

-X220441Y257694D01*

-X220723Y257717D01*

-X220999Y257783D01*

-X221261Y257891D01*

-X221502Y258039D01*

-X221718Y258223D01*

-X221902Y258439D01*

-X222050Y258680D01*

-X222158Y258942D01*

-X222224Y259218D01*

-X222241Y259500D01*

-X222224Y259782D01*

-X222158Y260058D01*

-X222050Y260320D01*

-X221902Y260561D01*

-X221718Y260777D01*

-X221502Y260961D01*

-X221261Y261109D01*

-X220999Y261217D01*

-X220723Y261283D01*

-X220441Y261306D01*

-X220229Y261289D01*

-X220241Y261500D01*

-X220224Y261782D01*

-X220158Y262058D01*

-X220050Y262320D01*

-X219902Y262561D01*

-X219718Y262777D01*

-X219502Y262961D01*

-X219438Y263000D01*

-Y264320D01*

-X219452Y264303D01*

-X219668Y264119D01*

-X219909Y263971D01*

-X220171Y263863D01*

-X220447Y263797D01*

-X220729Y263774D01*

-X221011Y263797D01*

-X221287Y263863D01*

-X221549Y263971D01*

-X221790Y264119D01*

-X222006Y264303D01*

-X222190Y264519D01*

-X222338Y264760D01*

-X222446Y265022D01*

-X222512Y265298D01*

-X222529Y265580D01*

-X222512Y265862D01*

-X222446Y266138D01*

-X222338Y266400D01*

-X222190Y266641D01*

-X222006Y266857D01*

-X221790Y267041D01*

-X221549Y267189D01*

-X221287Y267297D01*

-X221011Y267363D01*

-X220729Y267386D01*

-X220447Y267363D01*

-X220171Y267297D01*

-X219909Y267189D01*

-X219668Y267041D01*

-X219452Y266857D01*

-X219438Y266840D01*

-Y270695D01*

-X219441Y270694D01*

-X219723Y270717D01*

-X219999Y270783D01*

-X220261Y270891D01*

-X220502Y271039D01*

-X220718Y271223D01*

-X220902Y271439D01*

-X221050Y271680D01*

-X221158Y271942D01*

-X221224Y272218D01*

-X221241Y272500D01*

-X221224Y272782D01*

-X221158Y273058D01*

-X221050Y273320D01*

-X220902Y273561D01*

-X220718Y273777D01*

-X220502Y273961D01*

-X220261Y274109D01*

-X219999Y274217D01*

-X219723Y274283D01*

-X219441Y274306D01*

-X219438Y274305D01*

-Y362538D01*

-X219642Y362871D01*

-X219901Y363496D01*

-X220059Y364154D01*

-X220099Y364829D01*

-X220059Y365504D01*

-X219901Y366162D01*

-X219642Y366787D01*

-X219438Y367120D01*

-Y372538D01*

-X219642Y372871D01*

-X219901Y373496D01*

-X220059Y374154D01*

-X220099Y374829D01*

-X220059Y375504D01*

-X219901Y376162D01*

-X219642Y376787D01*

-X219438Y377120D01*

-Y397000D01*

-X223660D01*

-Y378561D01*

-X223264Y378319D01*

-X222749Y377879D01*

-X222309Y377364D01*

-X221956Y376787D01*

-X221697Y376162D01*

-X221539Y375504D01*

-X221486Y374829D01*

-X221539Y374154D01*

-X221697Y373496D01*

-X221956Y372871D01*

-X222309Y372294D01*

-X222749Y371779D01*

-X223264Y371339D01*

-X223660Y371097D01*

-Y368561D01*

-X223264Y368319D01*

-X222749Y367879D01*

-X222309Y367364D01*

-X221956Y366787D01*

-X221697Y366162D01*

-X221539Y365504D01*

-X221486Y364829D01*

-X221539Y364154D01*

-X221697Y363496D01*

-X221956Y362871D01*

-X222309Y362294D01*

-X222749Y361779D01*

-X223264Y361339D01*

-X223660Y361097D01*

-Y254314D01*

-X223601Y254558D01*

-X223493Y254820D01*

-X223345Y255061D01*

-X223161Y255277D01*

-X222945Y255461D01*

-X222704Y255609D01*

-X222442Y255717D01*

-X222166Y255783D01*

-X221884Y255806D01*

-X221602Y255783D01*

-X221326Y255717D01*

-X221064Y255609D01*

-X220823Y255461D01*

-X220607Y255277D01*

-X220423Y255061D01*

-X220275Y254820D01*

-X220167Y254558D01*

-X220101Y254282D01*

-X220078Y254000D01*

-X220101Y253718D01*

-X220167Y253442D01*

-X220275Y253180D01*

-X220423Y252939D01*

-X220607Y252723D01*

-X220823Y252539D01*

-X221064Y252391D01*

-X221326Y252283D01*

-X221602Y252217D01*

-X221884Y252194D01*

-X222166Y252217D01*

-X222442Y252283D01*

-X222682Y252382D01*

-X222658Y252282D01*

-X222635Y252000D01*

-X222658Y251718D01*

-X222724Y251442D01*

-X222832Y251180D01*

-X222980Y250939D01*

-X223164Y250723D01*

-X223380Y250539D01*

-X223621Y250391D01*

-X223660Y250375D01*

-Y249291D01*

-X223658Y249282D01*

-X223635Y249000D01*

-X223658Y248718D01*

-X223660Y248709D01*

-Y245625D01*

-X223621Y245609D01*

-X223380Y245461D01*

-X223164Y245277D01*

-X222980Y245061D01*

-X222832Y244820D01*

-X222724Y244558D01*

-X222658Y244282D01*

-X222635Y244000D01*

-X222658Y243718D01*

-X222724Y243442D01*

-X222832Y243180D01*

-X222980Y242939D01*

-X223164Y242723D01*

-X223380Y242539D01*

-X223621Y242391D01*

-X223660Y242375D01*

-Y236771D01*

-X223480Y236561D01*

-X223332Y236320D01*

-X223224Y236058D01*

-X223158Y235782D01*

-X223135Y235500D01*

-X223158Y235218D01*

-X223224Y234942D01*

-X223332Y234680D01*

-X223480Y234439D01*

-X223660Y234229D01*

-Y226791D01*

-X223658Y226782D01*

-X223635Y226500D01*

-X223658Y226218D01*

-X223660Y226209D01*

-Y221771D01*

-X223480Y221561D01*

-X223332Y221320D01*

-X223224Y221058D01*

-X223158Y220782D01*

-X223135Y220500D01*

-X223158Y220218D01*

-X223224Y219942D01*

-X223332Y219680D01*

-X223480Y219439D01*

-X223660Y219229D01*

-Y201061D01*

-X223264Y200819D01*

-X222749Y200379D01*

-X222309Y199864D01*

-X221956Y199287D01*

-X221697Y198662D01*

-X221539Y198004D01*

-X221486Y197329D01*

-X221539Y196654D01*

-X221697Y195996D01*

-X221956Y195371D01*

-X222309Y194794D01*

-X222749Y194279D01*

-X223264Y193839D01*

-X223660Y193597D01*

-Y188561D01*

-X223264Y188319D01*

-X222749Y187879D01*

-X222309Y187364D01*

-X221956Y186787D01*

-X221697Y186162D01*

-X221539Y185504D01*

-X221486Y184829D01*

-X221539Y184154D01*

-X221697Y183496D01*

-X221956Y182871D01*

-X222309Y182294D01*

-X222749Y181779D01*

-X223264Y181339D01*

-X223660Y181097D01*

-Y178561D01*

-G37*

-G36*

-X217438Y193354D02*X217757Y193486D01*

-X218334Y193839D01*

-X218849Y194279D01*

-X219289Y194794D01*

-X219438Y195038D01*

-Y187120D01*

-X219289Y187364D01*

-X218849Y187879D01*

-X218334Y188319D01*

-X217757Y188672D01*

-X217438Y188804D01*

-Y193354D01*

-G37*

-G36*

-Y260003D02*X217621Y259891D01*

-X217883Y259783D01*

-X218159Y259717D01*

-X218441Y259694D01*

-X218652Y259711D01*

-X218635Y259500D01*

-X218658Y259218D01*

-X218724Y258942D01*

-X218832Y258680D01*

-X218980Y258439D01*

-X219164Y258223D01*

-X219380Y258039D01*

-X219438Y258003D01*

-Y216497D01*

-X219380Y216461D01*

-X219164Y216277D01*

-X218980Y216061D01*

-X218832Y215820D01*

-X218724Y215558D01*

-X218658Y215282D01*

-X218635Y215000D01*

-X218658Y214718D01*

-X218724Y214442D01*

-X218832Y214180D01*

-X218980Y213939D01*

-X219164Y213723D01*

-X219380Y213539D01*

-X219438Y213503D01*

-Y199620D01*

-X219289Y199864D01*

-X218849Y200379D01*

-X218334Y200819D01*

-X217757Y201172D01*

-X217438Y201304D01*

-Y260003D01*

-G37*

-G36*

-Y360854D02*X217757Y360986D01*

-X218334Y361339D01*

-X218849Y361779D01*

-X219289Y362294D01*

-X219438Y362538D01*

-Y274305D01*

-X219159Y274283D01*

-X218883Y274217D01*

-X218621Y274109D01*

-X218380Y273961D01*

-X218164Y273777D01*

-X217980Y273561D01*

-X217832Y273320D01*

-X217724Y273058D01*

-X217658Y272782D01*

-X217635Y272500D01*

-X217658Y272218D01*

-X217724Y271942D01*

-X217832Y271680D01*

-X217980Y271439D01*

-X218164Y271223D01*

-X218380Y271039D01*

-X218621Y270891D01*

-X218883Y270783D01*

-X219159Y270717D01*

-X219438Y270695D01*

-Y266840D01*

-X219268Y266641D01*

-X219120Y266400D01*

-X219012Y266138D01*

-X218946Y265862D01*

-X218923Y265580D01*

-X218946Y265298D01*

-X219012Y265022D01*

-X219120Y264760D01*

-X219268Y264519D01*

-X219438Y264320D01*

-Y263000D01*

-X219261Y263109D01*

-X218999Y263217D01*

-X218723Y263283D01*

-X218441Y263306D01*

-X218159Y263283D01*

-X217883Y263217D01*

-X217621Y263109D01*

-X217438Y262997D01*

-Y277195D01*

-X217441Y277194D01*

-X217723Y277217D01*

-X217999Y277283D01*

-X218261Y277391D01*

-X218502Y277539D01*

-X218718Y277723D01*

-X218902Y277939D01*

-X219050Y278180D01*

-X219158Y278442D01*

-X219224Y278718D01*

-X219241Y279000D01*

-X219224Y279282D01*

-X219158Y279558D01*

-X219050Y279820D01*

-X218902Y280061D01*

-X218718Y280277D01*

-X218502Y280461D01*

-X218261Y280609D01*

-X217999Y280717D01*

-X217723Y280783D01*

-X217441Y280806D01*

-X217438Y280805D01*

-Y360854D01*

-G37*

-G36*

-Y370854D02*X217757Y370986D01*

-X218334Y371339D01*

-X218849Y371779D01*

-X219289Y372294D01*

-X219438Y372538D01*

-Y367120D01*

-X219289Y367364D01*

-X218849Y367879D01*

-X218334Y368319D01*

-X217757Y368672D01*

-X217438Y368804D01*

-Y370854D01*

-G37*

-G36*

-Y397000D02*X219438D01*

-Y377120D01*

-X219289Y377364D01*

-X218849Y377879D01*

-X218334Y378319D01*

-X217757Y378672D01*

-X217438Y378804D01*

-Y397000D01*

-G37*

-G36*

-X219438Y177120D02*X219289Y177364D01*

-X218849Y177879D01*

-X218334Y178319D01*

-X217757Y178672D01*

-X217438Y178804D01*

-Y180854D01*

-X217757Y180986D01*

-X218334Y181339D01*

-X218849Y181779D01*

-X219289Y182294D01*

-X219438Y182538D01*

-Y177120D01*

-G37*

-G36*

-X212938Y194118D02*X213264Y193839D01*

-X213841Y193486D01*

-X214466Y193227D01*

-X215124Y193069D01*

-X215799Y193016D01*

-X216474Y193069D01*

-X217132Y193227D01*

-X217438Y193354D01*

-Y188804D01*

-X217132Y188931D01*

-X216474Y189089D01*

-X215799Y189142D01*

-X215124Y189089D01*

-X214466Y188931D01*

-X213841Y188672D01*

-X213264Y188319D01*

-X212938Y188040D01*

-Y194118D01*

-G37*

-G36*

-Y361618D02*X213264Y361339D01*

-X213841Y360986D01*

-X214466Y360727D01*

-X215124Y360569D01*

-X215799Y360516D01*

-X216474Y360569D01*

-X217132Y360727D01*

-X217438Y360854D01*

-Y280805D01*

-X217159Y280783D01*

-X216883Y280717D01*

-X216621Y280609D01*

-X216380Y280461D01*

-X216164Y280277D01*

-X215980Y280061D01*

-X215832Y279820D01*

-X215724Y279558D01*

-X215658Y279282D01*

-X215635Y279000D01*

-X215658Y278718D01*

-X215724Y278442D01*

-X215832Y278180D01*

-X215980Y277939D01*

-X216164Y277723D01*

-X216380Y277539D01*

-X216621Y277391D01*

-X216883Y277283D01*

-X217159Y277217D01*

-X217438Y277195D01*

-Y262997D01*

-X217380Y262961D01*

-X217164Y262777D01*

-X216980Y262561D01*

-X216832Y262320D01*

-X216724Y262058D01*

-X216658Y261782D01*

-X216635Y261500D01*

-X216658Y261218D01*

-X216724Y260942D01*

-X216832Y260680D01*

-X216980Y260439D01*

-X217164Y260223D01*

-X217380Y260039D01*

-X217438Y260003D01*

-Y201304D01*

-X217132Y201431D01*

-X216474Y201589D01*

-X215799Y201642D01*

-X215124Y201589D01*

-X214466Y201431D01*

-X213841Y201172D01*

-X213264Y200819D01*

-X212938Y200540D01*

-Y236195D01*

-X212941Y236194D01*

-X213223Y236217D01*

-X213499Y236283D01*

-X213761Y236391D01*

-X214002Y236539D01*

-X214218Y236723D01*

-X214402Y236939D01*

-X214550Y237180D01*

-X214658Y237442D01*

-X214724Y237718D01*

-X214741Y238000D01*

-X214724Y238282D01*

-X214658Y238558D01*

-X214550Y238820D01*

-X214402Y239061D01*

-X214218Y239277D01*

-X214002Y239461D01*

-X213761Y239609D01*

-X213499Y239717D01*

-X213223Y239783D01*

-X212941Y239806D01*

-X212938Y239805D01*

-Y361618D01*

-G37*

-G36*

-Y371618D02*X213264Y371339D01*

-X213841Y370986D01*

-X214466Y370727D01*

-X215124Y370569D01*

-X215799Y370516D01*

-X216474Y370569D01*

-X217132Y370727D01*

-X217438Y370854D01*

-Y368804D01*

-X217132Y368931D01*

-X216474Y369089D01*

-X215799Y369142D01*

-X215124Y369089D01*

-X214466Y368931D01*

-X213841Y368672D01*

-X213264Y368319D01*

-X212938Y368040D01*

-Y371618D01*

-G37*

-G36*

-Y397000D02*X217438D01*

-Y378804D01*

-X217132Y378931D01*

-X216474Y379089D01*

-X215799Y379142D01*

-X215124Y379089D01*

-X214466Y378931D01*

-X213841Y378672D01*

-X213264Y378319D01*

-X212938Y378040D01*

-Y397000D01*

-G37*

-G36*

-Y171618D02*X213076Y171500D01*

-X212938D01*

-Y171618D01*

-G37*

-G36*

-X217438Y178804D02*X217132Y178931D01*

-X216474Y179089D01*

-X215799Y179142D01*

-X215124Y179089D01*

-X214466Y178931D01*

-X213841Y178672D01*

-X213264Y178319D01*

-X212938Y178040D01*

-Y181618D01*

-X213264Y181339D01*

-X213841Y180986D01*

-X214466Y180727D01*

-X215124Y180569D01*

-X215799Y180516D01*

-X216474Y180569D01*

-X217132Y180727D01*

-X217438Y180854D01*

-Y178804D01*

-G37*

-G36*

-X212938Y178040D02*X212749Y177879D01*

-X212309Y177364D01*

-X211956Y176787D01*

-X211697Y176162D01*

-X211539Y175504D01*

-X211486Y174829D01*

-X211539Y174154D01*

-X211697Y173496D01*

-X211956Y172871D01*

-X212309Y172294D01*

-X212749Y171779D01*

-X212938Y171618D01*

-Y171500D01*

-X210438D01*

-Y210695D01*

-X210441Y210694D01*

-X210723Y210717D01*

-X210999Y210783D01*

-X211261Y210891D01*

-X211502Y211039D01*

-X211718Y211223D01*

-X211902Y211439D01*

-X212050Y211680D01*

-X212158Y211942D01*

-X212224Y212218D01*

-X212241Y212500D01*

-X212224Y212782D01*

-X212158Y213058D01*

-X212050Y213320D01*

-X211902Y213561D01*

-X211718Y213777D01*

-X211502Y213961D01*

-X211261Y214109D01*

-X210999Y214217D01*

-X210723Y214283D01*

-X210441Y214306D01*

-X210438Y214305D01*

-Y397000D01*

-X212938D01*

-Y378040D01*

-X212749Y377879D01*

-X212309Y377364D01*

-X211956Y376787D01*

-X211697Y376162D01*

-X211539Y375504D01*

-X211486Y374829D01*

-X211539Y374154D01*

-X211697Y373496D01*

-X211956Y372871D01*

-X212309Y372294D01*

-X212749Y371779D01*

-X212938Y371618D01*

-Y368040D01*

-X212749Y367879D01*

-X212309Y367364D01*

-X211956Y366787D01*

-X211697Y366162D01*

-X211539Y365504D01*

-X211486Y364829D01*

-X211539Y364154D01*

-X211697Y363496D01*

-X211956Y362871D01*

-X212309Y362294D01*

-X212749Y361779D01*

-X212938Y361618D01*

-Y239805D01*

-X212659Y239783D01*

-X212383Y239717D01*

-X212121Y239609D01*

-X211880Y239461D01*

-X211664Y239277D01*

-X211480Y239061D01*

-X211332Y238820D01*

-X211224Y238558D01*

-X211158Y238282D01*

-X211135Y238000D01*

-X211158Y237718D01*

-X211224Y237442D01*

-X211332Y237180D01*

-X211480Y236939D01*

-X211664Y236723D01*

-X211880Y236539D01*

-X212121Y236391D01*

-X212383Y236283D01*

-X212659Y236217D01*

-X212938Y236195D01*

-Y200540D01*

-X212749Y200379D01*

-X212309Y199864D01*

-X211956Y199287D01*

-X211697Y198662D01*

-X211539Y198004D01*

-X211486Y197329D01*

-X211539Y196654D01*

-X211697Y195996D01*

-X211956Y195371D01*

-X212309Y194794D01*

-X212749Y194279D01*

-X212938Y194118D01*

-Y188040D01*

-X212749Y187879D01*

-X212309Y187364D01*

-X211956Y186787D01*

-X211697Y186162D01*

-X211539Y185504D01*

-X211486Y184829D01*

-X211539Y184154D01*

-X211697Y183496D01*

-X211956Y182871D01*

-X212309Y182294D01*

-X212749Y181779D01*

-X212938Y181618D01*

-Y178040D01*

-G37*

-G36*

-X210438Y171500D02*X208522D01*

-X208849Y171779D01*

-X209289Y172294D01*

-X209642Y172871D01*

-X209901Y173496D01*

-X210059Y174154D01*

-X210099Y174829D01*

-X210059Y175504D01*

-X209901Y176162D01*

-X209642Y176787D01*

-X209289Y177364D01*

-X208849Y177879D01*

-X208334Y178319D01*

-X207757Y178672D01*

-X207132Y178931D01*

-X206474Y179089D01*

-X205799Y179142D01*

-X205438Y179114D01*

-Y180544D01*

-X205799Y180516D01*

-X206474Y180569D01*

-X207132Y180727D01*

-X207757Y180986D01*

-X208334Y181339D01*

-X208849Y181779D01*

-X209289Y182294D01*

-X209642Y182871D01*

-X209901Y183496D01*

-X210059Y184154D01*

-X210099Y184829D01*

-X210059Y185504D01*

-X209901Y186162D01*

-X209642Y186787D01*

-X209289Y187364D01*

-X208849Y187879D01*

-X208334Y188319D01*

-X207757Y188672D01*

-X207132Y188931D01*

-X206474Y189089D01*

-X205799Y189142D01*

-X205438Y189114D01*

-Y193044D01*

-X205799Y193016D01*

-X206474Y193069D01*

-X207132Y193227D01*

-X207757Y193486D01*

-X208334Y193839D01*

-X208849Y194279D01*

-X209289Y194794D01*

-X209642Y195371D01*

-X209901Y195996D01*

-X210059Y196654D01*

-X210099Y197329D01*

-X210059Y198004D01*

-X209901Y198662D01*

-X209642Y199287D01*

-X209289Y199864D01*

-X208849Y200379D01*

-X208334Y200819D01*

-X207757Y201172D01*

-X207132Y201431D01*

-X206474Y201589D01*

-X205799Y201642D01*

-X205438Y201614D01*

-Y236498D01*

-X205550Y236680D01*

-X205658Y236942D01*

-X205724Y237218D01*

-X205741Y237500D01*

-X205724Y237782D01*

-X205658Y238058D01*

-X205550Y238320D01*

-X205438Y238502D01*

-Y275195D01*

-X205441Y275194D01*

-X205723Y275217D01*

-X205999Y275283D01*

-X206261Y275391D01*

-X206502Y275539D01*

-X206718Y275723D01*

-X206902Y275939D01*

-X207050Y276180D01*

-X207158Y276442D01*

-X207224Y276718D01*

-X207241Y277000D01*

-X207224Y277282D01*

-X207158Y277558D01*

-X207050Y277820D01*

-X206902Y278061D01*

-X206718Y278277D01*

-X206502Y278461D01*

-X206261Y278609D01*

-X205999Y278717D01*

-X205723Y278783D01*

-X205441Y278806D01*

-X205438Y278805D01*

-Y360544D01*

-X205799Y360516D01*

-X206474Y360569D01*

-X207132Y360727D01*

-X207757Y360986D01*

-X208334Y361339D01*

-X208849Y361779D01*

-X209289Y362294D01*

-X209642Y362871D01*

-X209901Y363496D01*

-X210059Y364154D01*

-X210099Y364829D01*

-X210059Y365504D01*

-X209901Y366162D01*

-X209642Y366787D01*

-X209289Y367364D01*

-X208849Y367879D01*

-X208334Y368319D01*

-X207757Y368672D01*

-X207132Y368931D01*

-X206474Y369089D01*

-X205799Y369142D01*

-X205438Y369114D01*

-Y370544D01*

-X205799Y370516D01*

-X206474Y370569D01*

-X207132Y370727D01*

-X207757Y370986D01*

-X208334Y371339D01*

-X208849Y371779D01*

-X209289Y372294D01*

-X209642Y372871D01*

-X209901Y373496D01*

-X210059Y374154D01*

-X210099Y374829D01*

-X210059Y375504D01*

-X209901Y376162D01*

-X209642Y376787D01*

-X209289Y377364D01*

-X208849Y377879D01*

-X208334Y378319D01*

-X207757Y378672D01*

-X207132Y378931D01*

-X206474Y379089D01*

-X205799Y379142D01*

-X205438Y379114D01*

-Y397000D01*

-X210438D01*

-Y214305D01*

-X210159Y214283D01*

-X209883Y214217D01*

-X209621Y214109D01*

-X209380Y213961D01*

-X209164Y213777D01*

-X208980Y213561D01*

-X208832Y213320D01*

-X208724Y213058D01*

-X208658Y212782D01*

-X208635Y212500D01*

-X208658Y212218D01*

-X208724Y211942D01*

-X208832Y211680D01*

-X208980Y211439D01*

-X209164Y211223D01*

-X209380Y211039D01*

-X209621Y210891D01*

-X209883Y210783D01*

-X210159Y210717D01*

-X210438Y210695D01*

-Y171500D01*

-G37*

-G36*

-X202438Y194643D02*X202749Y194279D01*

-X203264Y193839D01*

-X203841Y193486D01*

-X204466Y193227D01*

-X205124Y193069D01*

-X205438Y193044D01*

-Y189114D01*

-X205124Y189089D01*

-X204466Y188931D01*

-X203841Y188672D01*

-X203264Y188319D01*

-X202749Y187879D01*

-X202438Y187515D01*

-Y194643D01*

-G37*

-G36*

-Y236507D02*X202480Y236439D01*

-X202664Y236223D01*

-X202880Y236039D01*

-X203121Y235891D01*

-X203383Y235783D01*

-X203659Y235717D01*

-X203941Y235694D01*

-X204223Y235717D01*

-X204499Y235783D01*

-X204761Y235891D01*

-X205002Y236039D01*

-X205218Y236223D01*

-X205402Y236439D01*

-X205438Y236498D01*

-Y201614D01*

-X205124Y201589D01*

-X204466Y201431D01*

-X203841Y201172D01*

-X203264Y200819D01*

-X202749Y200379D01*

-X202438Y200015D01*

-Y210695D01*

-X202441Y210694D01*

-X202723Y210717D01*

-X202999Y210783D01*

-X203261Y210891D01*

-X203502Y211039D01*

-X203718Y211223D01*

-X203902Y211439D01*

-X204050Y211680D01*

-X204158Y211942D01*

-X204224Y212218D01*

-X204241Y212500D01*

-X204224Y212782D01*

-X204158Y213058D01*

-X204050Y213320D01*

-X203902Y213561D01*

-X203718Y213777D01*

-X203502Y213961D01*

-X203261Y214109D01*

-X202999Y214217D01*

-X202723Y214283D01*

-X202441Y214306D01*

-X202438Y214305D01*

-Y236507D01*

-G37*

-G36*

-Y362143D02*X202749Y361779D01*

-X203264Y361339D01*

-X203841Y360986D01*

-X204466Y360727D01*

-X205124Y360569D01*

-X205438Y360544D01*

-Y278805D01*

-X205159Y278783D01*

-X204883Y278717D01*

-X204621Y278609D01*

-X204380Y278461D01*

-X204164Y278277D01*

-X203980Y278061D01*

-X203832Y277820D01*

-X203724Y277558D01*

-X203658Y277282D01*

-X203635Y277000D01*

-X203658Y276718D01*

-X203724Y276442D01*

-X203832Y276180D01*

-X203980Y275939D01*

-X204164Y275723D01*

-X204380Y275539D01*

-X204621Y275391D01*

-X204883Y275283D01*

-X205159Y275217D01*

-X205438Y275195D01*

-Y238502D01*

-X205402Y238561D01*

-X205218Y238777D01*

-X205002Y238961D01*

-X204761Y239109D01*

-X204499Y239217D01*

-X204223Y239283D01*

-X203941Y239306D01*

-X203659Y239283D01*

-X203383Y239217D01*

-X203121Y239109D01*

-X202880Y238961D01*

-X202664Y238777D01*

-X202480Y238561D01*

-X202438Y238493D01*

-Y362143D01*

-G37*

-G36*

-Y372143D02*X202749Y371779D01*

-X203264Y371339D01*

-X203841Y370986D01*

-X204466Y370727D01*

-X205124Y370569D01*

-X205438Y370544D01*

-Y369114D01*

-X205124Y369089D01*

-X204466Y368931D01*

-X203841Y368672D01*

-X203264Y368319D01*

-X202749Y367879D01*

-X202438Y367515D01*

-Y372143D01*

-G37*

-G36*

-Y397000D02*X205438D01*

-Y379114D01*

-X205124Y379089D01*

-X204466Y378931D01*

-X203841Y378672D01*

-X203264Y378319D01*

-X202749Y377879D01*

-X202438Y377515D01*

-Y397000D01*

-G37*

-G36*

-Y172143D02*X202749Y171779D01*

-X203076Y171500D01*

-X202438D01*

-Y172143D01*

-G37*

-G36*

-X205438Y179114D02*X205124Y179089D01*

-X204466Y178931D01*

-X203841Y178672D01*

-X203264Y178319D01*

-X202749Y177879D01*

-X202438Y177515D01*

-Y182143D01*

-X202749Y181779D01*

-X203264Y181339D01*

-X203841Y180986D01*

-X204466Y180727D01*

-X205124Y180569D01*

-X205438Y180544D01*

-Y179114D01*

-G37*

-G36*

-X202438Y177515D02*X202309Y177364D01*

-X201956Y176787D01*

-X201697Y176162D01*

-X201539Y175504D01*

-X201486Y174829D01*

-X201539Y174154D01*

-X201697Y173496D01*

-X201956Y172871D01*

-X202309Y172294D01*

-X202438Y172143D01*

-Y171500D01*

-X198522D01*

-X198849Y171779D01*

-X199289Y172294D01*

-X199642Y172871D01*

-X199901Y173496D01*

-X200059Y174154D01*

-X200099Y174829D01*

-X200059Y175504D01*

-X199901Y176162D01*

-X199642Y176787D01*

-X199289Y177364D01*

-X198849Y177879D01*

-X198438Y178230D01*

-Y181428D01*

-X198849Y181779D01*

-X199289Y182294D01*

-X199642Y182871D01*

-X199901Y183496D01*

-X200059Y184154D01*

-X200099Y184829D01*

-X200059Y185504D01*

-X199901Y186162D01*

-X199642Y186787D01*

-X199289Y187364D01*

-X198849Y187879D01*

-X198438Y188230D01*

-Y193037D01*

-X199256Y193038D01*

-X199409Y193075D01*

-X199554Y193135D01*

-X199689Y193217D01*

-X199808Y193320D01*

-X199911Y193439D01*

-X199993Y193574D01*

-X200053Y193719D01*

-X200090Y193872D01*

-X200099Y194029D01*

-X200090Y200786D01*

-X200053Y200939D01*

-X199993Y201084D01*

-X199911Y201219D01*

-X199808Y201338D01*

-X199689Y201441D01*

-X199554Y201523D01*

-X199409Y201583D01*

-X199256Y201620D01*

-X199099Y201629D01*

-X198438Y201628D01*

-Y260695D01*

-X198441Y260694D01*

-X198723Y260717D01*

-X198999Y260783D01*

-X199261Y260891D01*

-X199502Y261039D01*

-X199718Y261223D01*

-X199902Y261439D01*

-X200050Y261680D01*

-X200158Y261942D01*

-X200224Y262218D01*

-X200241Y262500D01*

-X200224Y262782D01*

-X200158Y263058D01*

-X200050Y263320D01*

-X199902Y263561D01*

-X199718Y263777D01*

-X199502Y263961D01*

-X199261Y264109D01*

-X198999Y264217D01*

-X198723Y264283D01*

-X198441Y264306D01*

-X198438Y264305D01*

-Y267695D01*

-X198441Y267694D01*

-X198723Y267717D01*

-X198999Y267783D01*

-X199261Y267891D01*

-X199502Y268039D01*

-X199718Y268223D01*

-X199902Y268439D01*

-X200050Y268680D01*

-X200158Y268942D01*

-X200224Y269218D01*

-X200241Y269500D01*

-X200224Y269782D01*

-X200158Y270058D01*

-X200050Y270320D01*

-X199902Y270561D01*

-X199718Y270777D01*

-X199502Y270961D01*

-X199261Y271109D01*

-X198999Y271217D01*

-X198723Y271283D01*

-X198441Y271306D01*

-X198438Y271305D01*

-Y307000D01*

-X198502Y307039D01*

-X198718Y307223D01*

-X198902Y307439D01*

-X199050Y307680D01*

-X199158Y307942D01*

-X199224Y308218D01*

-X199241Y308500D01*

-X199224Y308782D01*

-X199158Y309058D01*

-X199050Y309320D01*

-X198902Y309561D01*

-X198718Y309777D01*

-X198502Y309961D01*

-X198438Y310000D01*

-Y313000D01*

-X198502Y313039D01*

-X198718Y313223D01*

-X198902Y313439D01*

-X199050Y313680D01*

-X199158Y313942D01*

-X199224Y314218D01*

-X199241Y314500D01*

-X199224Y314782D01*

-X199158Y315058D01*

-X199050Y315320D01*

-X198902Y315561D01*

-X198718Y315777D01*

-X198502Y315961D01*

-X198438Y316000D01*

-Y361428D01*

-X198849Y361779D01*

-X199289Y362294D01*

-X199642Y362871D01*

-X199901Y363496D01*

-X200059Y364154D01*

-X200099Y364829D01*

-X200059Y365504D01*

-X199901Y366162D01*

-X199642Y366787D01*

-X199289Y367364D01*

-X198849Y367879D01*

-X198438Y368230D01*

-Y371428D01*

-X198849Y371779D01*

-X199289Y372294D01*

-X199642Y372871D01*

-X199901Y373496D01*

-X200059Y374154D01*

-X200099Y374829D01*

-X200059Y375504D01*

-X199901Y376162D01*

-X199642Y376787D01*

-X199289Y377364D01*

-X198849Y377879D01*

-X198438Y378230D01*

-Y397000D01*

-X202438D01*

-Y377515D01*

-X202309Y377364D01*

-X201956Y376787D01*

-X201697Y376162D01*

-X201539Y375504D01*

-X201486Y374829D01*

-X201539Y374154D01*

-X201697Y373496D01*

-X201956Y372871D01*

-X202309Y372294D01*

-X202438Y372143D01*

-Y367515D01*

-X202309Y367364D01*

-X201956Y366787D01*

-X201697Y366162D01*

-X201539Y365504D01*

-X201486Y364829D01*

-X201539Y364154D01*

-X201697Y363496D01*

-X201956Y362871D01*

-X202309Y362294D01*

-X202438Y362143D01*

-Y238493D01*

-X202332Y238320D01*

-X202224Y238058D01*

-X202158Y237782D01*

-X202135Y237500D01*

-X202158Y237218D01*

-X202224Y236942D01*

-X202332Y236680D01*

-X202438Y236507D01*

-Y214305D01*

-X202159Y214283D01*

-X201883Y214217D01*

-X201621Y214109D01*

-X201380Y213961D01*

-X201164Y213777D01*

-X200980Y213561D01*

-X200832Y213320D01*

-X200724Y213058D01*

-X200658Y212782D01*

-X200635Y212500D01*

-X200658Y212218D01*

-X200724Y211942D01*

-X200832Y211680D01*

-X200980Y211439D01*

-X201164Y211223D01*

-X201380Y211039D01*

-X201621Y210891D01*

-X201883Y210783D01*

-X202159Y210717D01*

-X202438Y210695D01*

-Y200015D01*

-X202309Y199864D01*

-X201956Y199287D01*

-X201697Y198662D01*

-X201539Y198004D01*

-X201486Y197329D01*

-X201539Y196654D01*

-X201697Y195996D01*

-X201956Y195371D01*

-X202309Y194794D01*

-X202438Y194643D01*

-Y187515D01*

-X202309Y187364D01*

-X201956Y186787D01*

-X201697Y186162D01*

-X201539Y185504D01*

-X201486Y184829D01*

-X201539Y184154D01*

-X201697Y183496D01*

-X201956Y182871D01*

-X202309Y182294D01*

-X202438Y182143D01*

-Y177515D01*

-G37*

-G36*

-X219438Y171500D02*X218522D01*

-X218849Y171779D01*

-X219289Y172294D01*

-X219438Y172538D01*

-Y171500D01*

-G37*

-G36*

-X193938Y193031D02*X198438Y193037D01*

-Y188230D01*

-X198334Y188319D01*

-X197757Y188672D01*

-X197132Y188931D01*

-X196474Y189089D01*

-X195799Y189142D01*

-X195124Y189089D01*

-X194466Y188931D01*

-X193938Y188712D01*

-Y193031D01*

-G37*

-G36*

-Y360946D02*X194466Y360727D01*

-X195124Y360569D01*

-X195799Y360516D01*

-X196474Y360569D01*

-X197132Y360727D01*

-X197757Y360986D01*

-X198334Y361339D01*

-X198438Y361428D01*

-Y316000D01*

-X198261Y316109D01*

-X197999Y316217D01*

-X197723Y316283D01*

-X197441Y316306D01*

-X197159Y316283D01*

-X196883Y316217D01*

-X196621Y316109D01*

-X196380Y315961D01*

-X196164Y315777D01*

-X195980Y315561D01*

-X195832Y315320D01*

-X195724Y315058D01*

-X195658Y314782D01*

-X195635Y314500D01*

-X195658Y314218D01*

-X195724Y313942D01*

-X195832Y313680D01*

-X195980Y313439D01*

-X196164Y313223D01*

-X196380Y313039D01*

-X196621Y312891D01*

-X196883Y312783D01*

-X197159Y312717D01*

-X197441Y312694D01*

-X197723Y312717D01*

-X197999Y312783D01*

-X198261Y312891D01*

-X198438Y313000D01*

-Y310000D01*

-X198261Y310109D01*

-X197999Y310217D01*

-X197723Y310283D01*

-X197441Y310306D01*

-X197159Y310283D01*

-X196883Y310217D01*

-X196621Y310109D01*

-X196380Y309961D01*

-X196164Y309777D01*

-X195980Y309561D01*

-X195832Y309320D01*

-X195724Y309058D01*

-X195658Y308782D01*

-X195635Y308500D01*

-X195658Y308218D01*

-X195724Y307942D01*

-X195832Y307680D01*

-X195980Y307439D01*

-X196164Y307223D01*

-X196380Y307039D01*

-X196621Y306891D01*

-X196883Y306783D01*

-X197159Y306717D01*

-X197441Y306694D01*

-X197723Y306717D01*

-X197999Y306783D01*

-X198261Y306891D01*

-X198438Y307000D01*

-Y271305D01*

-X198159Y271283D01*

-X197883Y271217D01*

-X197621Y271109D01*

-X197380Y270961D01*

-X197164Y270777D01*

-X196980Y270561D01*

-X196832Y270320D01*

-X196724Y270058D01*

-X196658Y269782D01*

-X196635Y269500D01*

-X196658Y269218D01*

-X196724Y268942D01*

-X196832Y268680D01*

-X196980Y268439D01*

-X197164Y268223D01*

-X197380Y268039D01*

-X197621Y267891D01*

-X197883Y267783D01*

-X198159Y267717D01*

-X198438Y267695D01*

-Y264305D01*

-X198159Y264283D01*

-X197883Y264217D01*

-X197621Y264109D01*

-X197380Y263961D01*

-X197164Y263777D01*

-X196980Y263561D01*

-X196832Y263320D01*

-X196724Y263058D01*

-X196658Y262782D01*

-X196635Y262500D01*

-X196658Y262218D01*

-X196724Y261942D01*

-X196832Y261680D01*

-X196980Y261439D01*

-X197164Y261223D01*

-X197380Y261039D01*

-X197621Y260891D01*

-X197883Y260783D01*

-X198159Y260717D01*

-X198438Y260695D01*

-Y201628D01*

-X193938Y201622D01*

-Y210695D01*

-X193941Y210694D01*

-X194223Y210717D01*

-X194499Y210783D01*

-X194761Y210891D01*

-X195002Y211039D01*

-X195218Y211223D01*

-X195402Y211439D01*

-X195550Y211680D01*

-X195658Y211942D01*

-X195724Y212218D01*

-X195741Y212500D01*

-X195724Y212782D01*

-X195658Y213058D01*

-X195550Y213320D01*

-X195402Y213561D01*

-X195218Y213777D01*

-X195002Y213961D01*

-X194761Y214109D01*

-X194499Y214217D01*

-X194223Y214283D01*

-X193941Y214306D01*

-X193938Y214305D01*

-Y235195D01*

-X193941Y235194D01*

-X194223Y235217D01*

-X194499Y235283D01*

-X194761Y235391D01*

-X195002Y235539D01*

-X195218Y235723D01*

-X195402Y235939D01*

-X195550Y236180D01*

-X195658Y236442D01*

-X195724Y236718D01*

-X195741Y237000D01*

-X195724Y237282D01*

-X195658Y237558D01*

-X195550Y237820D01*

-X195402Y238061D01*

-X195218Y238277D01*

-X195002Y238461D01*

-X194761Y238609D01*

-X194499Y238717D01*

-X194223Y238783D01*

-X193941Y238806D01*

-X193938Y238805D01*

-Y310507D01*

-X193980Y310439D01*

-X194164Y310223D01*

-X194380Y310039D01*

-X194621Y309891D01*

-X194883Y309783D01*

-X195159Y309717D01*

-X195441Y309694D01*

-X195723Y309717D01*

-X195999Y309783D01*

-X196261Y309891D01*

-X196502Y310039D01*

-X196718Y310223D01*

-X196902Y310439D01*

-X197050Y310680D01*

-X197158Y310942D01*

-X197224Y311218D01*

-X197241Y311500D01*

-X197224Y311782D01*

-X197158Y312058D01*

-X197050Y312320D01*

-X196902Y312561D01*

-X196718Y312777D01*

-X196502Y312961D01*

-X196261Y313109D01*

-X195999Y313217D01*

-X195723Y313283D01*

-X195441Y313306D01*

-X195159Y313283D01*

-X194883Y313217D01*

-X194621Y313109D01*

-X194380Y312961D01*

-X194164Y312777D01*

-X193980Y312561D01*

-X193938Y312493D01*

-Y360946D01*

-G37*

-G36*

-Y370946D02*X194466Y370727D01*

-X195124Y370569D01*

-X195799Y370516D01*

-X196474Y370569D01*

-X197132Y370727D01*

-X197757Y370986D01*

-X198334Y371339D01*

-X198438Y371428D01*

-Y368230D01*

-X198334Y368319D01*

-X197757Y368672D01*

-X197132Y368931D01*

-X196474Y369089D01*

-X195799Y369142D01*

-X195124Y369089D01*

-X194466Y368931D01*

-X193938Y368712D01*

-Y370946D01*

-G37*

-G36*

-Y397000D02*X198438D01*

-Y378230D01*

-X198334Y378319D01*

-X197757Y378672D01*

-X197132Y378931D01*

-X196474Y379089D01*

-X195799Y379142D01*

-X195124Y379089D01*

-X194466Y378931D01*

-X193938Y378712D01*

-Y397000D01*

-G37*

-G36*

-X198438Y178230D02*X198334Y178319D01*

-X197757Y178672D01*

-X197132Y178931D01*

-X196474Y179089D01*

-X195799Y179142D01*

-X195124Y179089D01*

-X194466Y178931D01*

-X193938Y178712D01*

-Y180946D01*

-X194466Y180727D01*

-X195124Y180569D01*

-X195799Y180516D01*

-X196474Y180569D01*

-X197132Y180727D01*

-X197757Y180986D01*

-X198334Y181339D01*

-X198438Y181428D01*

-Y178230D01*

-G37*

-G36*

-X193938Y178712D02*X193841Y178672D01*

-X193264Y178319D01*

-X192749Y177879D01*

-X192309Y177364D01*

-X191956Y176787D01*

-X191697Y176162D01*

-X191539Y175504D01*

-X191486Y174829D01*

-X191539Y174154D01*

-X191697Y173496D01*

-X191956Y172871D01*

-X192309Y172294D01*

-X192749Y171779D01*

-X193076Y171500D01*

-X191360D01*

-Y342644D01*

-X191363Y342643D01*

-X191645Y342666D01*

-X191921Y342732D01*

-X192183Y342840D01*

-X192424Y342988D01*

-X192640Y343172D01*

-X192824Y343388D01*

-X192972Y343629D01*

-X193080Y343891D01*

-X193146Y344167D01*

-X193163Y344449D01*

-X193146Y344731D01*

-X193080Y345007D01*

-X192972Y345269D01*

-X192824Y345510D01*

-X192640Y345726D01*

-X192424Y345910D01*

-X192183Y346058D01*

-X191921Y346166D01*

-X191645Y346232D01*

-X191363Y346255D01*

-X191360Y346254D01*

-Y397000D01*

-X193938D01*

-Y378712D01*

-X193841Y378672D01*

-X193264Y378319D01*

-X192749Y377879D01*

-X192309Y377364D01*

-X191956Y376787D01*

-X191697Y376162D01*

-X191539Y375504D01*

-X191486Y374829D01*

-X191539Y374154D01*

-X191697Y373496D01*

-X191956Y372871D01*

-X192309Y372294D01*

-X192749Y371779D01*

-X193264Y371339D01*

-X193841Y370986D01*

-X193938Y370946D01*

-Y368712D01*

-X193841Y368672D01*

-X193264Y368319D01*

-X192749Y367879D01*

-X192309Y367364D01*

-X191956Y366787D01*

-X191697Y366162D01*

-X191539Y365504D01*

-X191486Y364829D01*

-X191539Y364154D01*

-X191697Y363496D01*

-X191956Y362871D01*

-X192309Y362294D01*

-X192749Y361779D01*

-X193264Y361339D01*

-X193841Y360986D01*

-X193938Y360946D01*

-Y312493D01*

-X193832Y312320D01*

-X193724Y312058D01*

-X193658Y311782D01*

-X193635Y311500D01*

-X193658Y311218D01*

-X193724Y310942D01*

-X193832Y310680D01*

-X193938Y310507D01*

-Y238805D01*

-X193659Y238783D01*

-X193383Y238717D01*

-X193121Y238609D01*

-X192880Y238461D01*

-X192664Y238277D01*

-X192480Y238061D01*

-X192332Y237820D01*

-X192224Y237558D01*

-X192158Y237282D01*

-X192135Y237000D01*

-X192158Y236718D01*

-X192224Y236442D01*

-X192332Y236180D01*

-X192480Y235939D01*

-X192664Y235723D01*

-X192880Y235539D01*

-X193121Y235391D01*

-X193383Y235283D01*

-X193659Y235217D01*

-X193938Y235195D01*

-Y214305D01*

-X193659Y214283D01*

-X193383Y214217D01*

-X193121Y214109D01*

-X192880Y213961D01*

-X192664Y213777D01*

-X192480Y213561D01*

-X192332Y213320D01*

-X192224Y213058D01*

-X192158Y212782D01*

-X192135Y212500D01*

-X192158Y212218D01*

-X192224Y211942D01*

-X192332Y211680D01*

-X192480Y211439D01*

-X192664Y211223D01*

-X192880Y211039D01*

-X193121Y210891D01*

-X193383Y210783D01*

-X193659Y210717D01*

-X193938Y210695D01*

-Y201622D01*

-X192342Y201620D01*

-X192189Y201583D01*

-X192044Y201523D01*

-X191909Y201441D01*

-X191790Y201338D01*

-X191687Y201219D01*

-X191605Y201084D01*

-X191545Y200939D01*

-X191508Y200786D01*

-X191499Y200629D01*

-X191508Y193872D01*

-X191545Y193719D01*

-X191605Y193574D01*

-X191687Y193439D01*

-X191790Y193320D01*

-X191909Y193217D01*

-X192044Y193135D01*

-X192189Y193075D01*

-X192342Y193038D01*

-X192499Y193029D01*

-X193938Y193031D01*

-Y188712D01*

-X193841Y188672D01*

-X193264Y188319D01*

-X192749Y187879D01*

-X192309Y187364D01*

-X191956Y186787D01*

-X191697Y186162D01*

-X191539Y185504D01*

-X191486Y184829D01*

-X191539Y184154D01*

-X191697Y183496D01*

-X191956Y182871D01*

-X192309Y182294D01*

-X192749Y181779D01*

-X193264Y181339D01*

-X193841Y180986D01*

-X193938Y180946D01*

-Y178712D01*

-G37*

-G36*

-X191360Y171500D02*X188522D01*

-X188849Y171779D01*

-X189289Y172294D01*

-X189642Y172871D01*

-X189901Y173496D01*

-X190059Y174154D01*

-X190099Y174829D01*

-X190059Y175504D01*

-X189901Y176162D01*

-X189642Y176787D01*

-X189289Y177364D01*

-X188849Y177879D01*

-X188334Y178319D01*

-X187757Y178672D01*

-X187132Y178931D01*

-X186474Y179089D01*

-X185799Y179142D01*

-X185438Y179114D01*

-Y180544D01*

-X185799Y180516D01*

-X186474Y180569D01*

-X187132Y180727D01*

-X187757Y180986D01*

-X188334Y181339D01*

-X188849Y181779D01*

-X189289Y182294D01*

-X189642Y182871D01*

-X189901Y183496D01*

-X190059Y184154D01*

-X190099Y184829D01*

-X190059Y185504D01*

-X189901Y186162D01*

-X189642Y186787D01*

-X189289Y187364D01*

-X188849Y187879D01*

-X188334Y188319D01*

-X187757Y188672D01*

-X187132Y188931D01*

-X186474Y189089D01*

-X185799Y189142D01*

-X185438Y189114D01*

-Y215695D01*

-X185441Y215694D01*

-X185723Y215717D01*

-X185999Y215783D01*

-X186261Y215891D01*

-X186502Y216039D01*

-X186718Y216223D01*

-X186902Y216439D01*

-X187050Y216680D01*

-X187158Y216942D01*

-X187224Y217218D01*

-X187241Y217500D01*

-X187224Y217782D01*

-X187158Y218058D01*

-X187050Y218320D01*

-X186902Y218561D01*

-X186718Y218777D01*

-X186502Y218961D01*

-X186261Y219109D01*

-X185999Y219217D01*

-X185723Y219283D01*

-X185441Y219306D01*

-X185438Y219305D01*

-Y226195D01*

-X185441Y226194D01*

-X185723Y226217D01*

-X185999Y226283D01*

-X186261Y226391D01*

-X186502Y226539D01*

-X186718Y226723D01*

-X186902Y226939D01*

-X187050Y227180D01*

-X187158Y227442D01*

-X187224Y227718D01*

-X187241Y228000D01*

-X187224Y228282D01*

-X187158Y228558D01*

-X187050Y228820D01*

-X186902Y229061D01*

-X186718Y229277D01*

-X186502Y229461D01*

-X186261Y229609D01*

-X185999Y229717D01*

-X185723Y229783D01*

-X185441Y229806D01*

-X185438Y229805D01*

-Y360544D01*

-X185799Y360516D01*

-X186474Y360569D01*

-X187132Y360727D01*

-X187757Y360986D01*

-X188334Y361339D01*

-X188849Y361779D01*

-X189289Y362294D01*

-X189642Y362871D01*

-X189901Y363496D01*

-X190059Y364154D01*

-X190099Y364829D01*

-X190059Y365504D01*

-X189901Y366162D01*

-X189642Y366787D01*

-X189289Y367364D01*

-X188849Y367879D01*

-X188334Y368319D01*

-X187757Y368672D01*

-X187132Y368931D01*

-X186474Y369089D01*

-X185799Y369142D01*

-X185438Y369114D01*

-Y370544D01*

-X185799Y370516D01*

-X186474Y370569D01*

-X187132Y370727D01*

-X187757Y370986D01*

-X188334Y371339D01*

-X188849Y371779D01*

-X189289Y372294D01*

-X189642Y372871D01*

-X189901Y373496D01*

-X190059Y374154D01*

-X190099Y374829D01*

-X190059Y375504D01*

-X189901Y376162D01*

-X189642Y376787D01*

-X189289Y377364D01*

-X188849Y377879D01*

-X188334Y378319D01*

-X187757Y378672D01*

-X187132Y378931D01*

-X186474Y379089D01*

-X185799Y379142D01*

-X185438Y379114D01*

-Y397000D01*

-X191360D01*

-Y346254D01*

-X191081Y346232D01*

-X190805Y346166D01*

-X190543Y346058D01*

-X190302Y345910D01*

-X190086Y345726D01*

-X189902Y345510D01*

-X189754Y345269D01*

-X189646Y345007D01*

-X189580Y344731D01*

-X189557Y344449D01*

-X189580Y344167D01*

-X189646Y343891D01*

-X189754Y343629D01*

-X189902Y343388D01*

-X190086Y343172D01*

-X190302Y342988D01*

-X190543Y342840D01*

-X190805Y342732D01*

-X191081Y342666D01*

-X191360Y342644D01*

-Y171500D01*

-G37*

-G36*

-X185438Y379114D02*X185124Y379089D01*

-X184466Y378931D01*

-X183841Y378672D01*

-X183264Y378319D01*

-X182749Y377879D01*

-X182309Y377364D01*

-X181956Y376787D01*

-X181938Y376745D01*

-Y397000D01*

-X185438D01*

-Y379114D01*

-G37*

-G36*

-Y369114D02*X185124Y369089D01*

-X184466Y368931D01*

-X183841Y368672D01*

-X183264Y368319D01*

-X182749Y367879D01*

-X182309Y367364D01*

-X181956Y366787D01*

-X181938Y366745D01*

-Y372913D01*

-X181956Y372871D01*

-X182309Y372294D01*

-X182749Y371779D01*

-X183264Y371339D01*

-X183841Y370986D01*

-X184466Y370727D01*

-X185124Y370569D01*

-X185438Y370544D01*

-Y369114D01*

-G37*

-G36*

-Y189114D02*X185124Y189089D01*

-X184466Y188931D01*

-X183841Y188672D01*

-X183264Y188319D01*

-X182749Y187879D01*

-X182309Y187364D01*

-X181956Y186787D01*

-X181938Y186745D01*

-Y256695D01*

-X181941Y256694D01*

-X182223Y256717D01*

-X182499Y256783D01*

-X182761Y256891D01*

-X183002Y257039D01*

-X183218Y257223D01*

-X183402Y257439D01*

-X183550Y257680D01*

-X183658Y257942D01*

-X183724Y258218D01*

-X183741Y258500D01*

-X183724Y258782D01*

-X183658Y259058D01*

-X183550Y259320D01*

-X183402Y259561D01*

-X183218Y259777D01*

-X183002Y259961D01*

-X182761Y260109D01*

-X182499Y260217D01*

-X182223Y260283D01*

-X181941Y260306D01*

-X181938Y260305D01*

-Y362913D01*

-X181956Y362871D01*

-X182309Y362294D01*

-X182749Y361779D01*

-X183264Y361339D01*

-X183841Y360986D01*

-X184466Y360727D01*

-X185124Y360569D01*

-X185438Y360544D01*

-Y229805D01*

-X185159Y229783D01*

-X184883Y229717D01*

-X184621Y229609D01*

-X184380Y229461D01*

-X184164Y229277D01*

-X183980Y229061D01*

-X183832Y228820D01*

-X183724Y228558D01*

-X183658Y228282D01*

-X183635Y228000D01*

-X183658Y227718D01*

-X183724Y227442D01*

-X183832Y227180D01*

-X183980Y226939D01*

-X184164Y226723D01*

-X184380Y226539D01*

-X184621Y226391D01*

-X184883Y226283D01*

-X185159Y226217D01*

-X185438Y226195D01*

-Y219305D01*

-X185159Y219283D01*

-X184883Y219217D01*

-X184621Y219109D01*

-X184380Y218961D01*

-X184164Y218777D01*

-X183980Y218561D01*

-X183832Y218320D01*

-X183724Y218058D01*

-X183658Y217782D01*

-X183635Y217500D01*

-X183658Y217218D01*

-X183724Y216942D01*

-X183832Y216680D01*

-X183980Y216439D01*

-X184164Y216223D01*

-X184380Y216039D01*

-X184621Y215891D01*

-X184883Y215783D01*

-X185159Y215717D01*

-X185438Y215695D01*

-Y189114D01*

-G37*

-G36*

-Y179114D02*X185124Y179089D01*

-X184466Y178931D01*

-X183841Y178672D01*

-X183264Y178319D01*

-X182749Y177879D01*

-X182309Y177364D01*

-X181956Y176787D01*

-X181938Y176745D01*

-Y182913D01*

-X181956Y182871D01*

-X182309Y182294D01*

-X182749Y181779D01*

-X183264Y181339D01*

-X183841Y180986D01*

-X184466Y180727D01*

-X185124Y180569D01*

-X185438Y180544D01*

-Y179114D01*

-G37*

-G36*

-X181938Y176745D02*X181697Y176162D01*

-X181539Y175504D01*

-X181486Y174829D01*

-X181539Y174154D01*

-X181697Y173496D01*

-X181938Y172913D01*

-Y171500D01*

-X178522D01*

-X178849Y171779D01*

-X179289Y172294D01*

-X179642Y172871D01*

-X179901Y173496D01*

-X180059Y174154D01*

-X180099Y174829D01*

-X180059Y175504D01*

-X179901Y176162D01*

-X179642Y176787D01*

-X179289Y177364D01*

-X178849Y177879D01*

-X178334Y178319D01*

-X177757Y178672D01*

-X177438Y178804D01*

-Y180854D01*

-X177757Y180986D01*

-X178334Y181339D01*

-X178849Y181779D01*

-X179289Y182294D01*

-X179642Y182871D01*

-X179901Y183496D01*

-X180059Y184154D01*

-X180099Y184829D01*

-X180059Y185504D01*

-X179901Y186162D01*

-X179642Y186787D01*

-X179289Y187364D01*

-X178849Y187879D01*

-X178334Y188319D01*

-X177757Y188672D01*

-X177438Y188804D01*

-Y215695D01*

-X177441Y215694D01*

-X177723Y215717D01*

-X177999Y215783D01*

-X178261Y215891D01*

-X178502Y216039D01*

-X178718Y216223D01*

-X178902Y216439D01*

-X179050Y216680D01*

-X179158Y216942D01*

-X179224Y217218D01*

-X179241Y217500D01*

-X179224Y217782D01*

-X179158Y218058D01*

-X179050Y218320D01*

-X178902Y218561D01*

-X178718Y218777D01*

-X178502Y218961D01*

-X178261Y219109D01*

-X177999Y219217D01*

-X177723Y219283D01*

-X177441Y219306D01*

-X177438Y219305D01*

-Y226195D01*

-X177441Y226194D01*

-X177723Y226217D01*

-X177999Y226283D01*

-X178261Y226391D01*

-X178502Y226539D01*

-X178718Y226723D01*

-X178902Y226939D01*

-X179050Y227180D01*

-X179158Y227442D01*

-X179224Y227718D01*

-X179241Y228000D01*

-X179224Y228282D01*

-X179158Y228558D01*

-X179050Y228820D01*

-X178902Y229061D01*

-X178718Y229277D01*

-X178502Y229461D01*

-X178261Y229609D01*

-X177999Y229717D01*

-X177723Y229783D01*

-X177441Y229806D01*

-X177438Y229805D01*

-Y341743D01*

-X177610Y341541D01*

-X177826Y341357D01*

-X178067Y341209D01*

-X178329Y341101D01*

-X178605Y341035D01*

-X178887Y341012D01*

-X179169Y341035D01*

-X179445Y341101D01*

-X179707Y341209D01*

-X179948Y341357D01*

-X180164Y341541D01*

-X180348Y341757D01*

-X180496Y341998D01*

-X180604Y342260D01*

-X180670Y342536D01*

-X180687Y342818D01*

-X180670Y343100D01*

-X180604Y343376D01*

-X180496Y343638D01*

-X180348Y343879D01*

-X180164Y344095D01*

-X179948Y344279D01*

-X179707Y344427D01*

-X179445Y344535D01*

-X179169Y344601D01*

-X178887Y344624D01*

-X178605Y344601D01*

-X178329Y344535D01*

-X178067Y344427D01*

-X177826Y344279D01*

-X177610Y344095D01*

-X177438Y343893D01*

-Y360854D01*

-X177757Y360986D01*

-X178334Y361339D01*

-X178849Y361779D01*

-X179289Y362294D01*

-X179642Y362871D01*

-X179901Y363496D01*

-X180059Y364154D01*

-X180099Y364829D01*

-X180059Y365504D01*

-X179901Y366162D01*

-X179642Y366787D01*

-X179289Y367364D01*

-X178849Y367879D01*

-X178334Y368319D01*

-X177757Y368672D01*

-X177438Y368804D01*

-Y370854D01*

-X177757Y370986D01*

-X178334Y371339D01*

-X178849Y371779D01*

-X179289Y372294D01*

-X179642Y372871D01*

-X179901Y373496D01*

-X180059Y374154D01*

-X180099Y374829D01*

-X180059Y375504D01*

-X179901Y376162D01*

-X179642Y376787D01*

-X179289Y377364D01*

-X178849Y377879D01*

-X178334Y378319D01*

-X177757Y378672D01*

-X177438Y378804D01*

-Y397000D01*

-X181938D01*

-Y376745D01*

-X181697Y376162D01*

-X181539Y375504D01*

-X181486Y374829D01*

-X181539Y374154D01*

-X181697Y373496D01*

-X181938Y372913D01*

-Y366745D01*

-X181697Y366162D01*

-X181539Y365504D01*

-X181486Y364829D01*

-X181539Y364154D01*

-X181697Y363496D01*

-X181938Y362913D01*

-Y260305D01*

-X181659Y260283D01*

-X181383Y260217D01*

-X181121Y260109D01*

-X180880Y259961D01*

-X180664Y259777D01*

-X180480Y259561D01*

-X180332Y259320D01*

-X180224Y259058D01*

-X180158Y258782D01*

-X180135Y258500D01*

-X180158Y258218D01*

-X180224Y257942D01*

-X180332Y257680D01*

-X180480Y257439D01*

-X180664Y257223D01*

-X180880Y257039D01*

-X181121Y256891D01*

-X181383Y256783D01*

-X181659Y256717D01*

-X181938Y256695D01*

-Y186745D01*

-X181697Y186162D01*

-X181539Y185504D01*

-X181486Y184829D01*

-X181539Y184154D01*

-X181697Y183496D01*

-X181938Y182913D01*

-Y176745D01*

-G37*

-G36*

-X177438Y188804D02*X177132Y188931D01*

-X176474Y189089D01*

-X175799Y189142D01*

-X175124Y189089D01*

-X174941Y189045D01*

-Y221500D01*

-X169941D01*

-X170307Y349958D01*

-X170341Y350013D01*

-X170449Y350275D01*

-X170515Y350551D01*

-X170532Y350833D01*

-X170515Y351115D01*

-X170449Y351391D01*

-X170341Y351653D01*

-X170312Y351700D01*

-X170441Y397000D01*

-X177438D01*

-Y378804D01*

-X177132Y378931D01*

-X176474Y379089D01*

-X175799Y379142D01*

-X175124Y379089D01*

-X174466Y378931D01*

-X173841Y378672D01*

-X173264Y378319D01*

-X172749Y377879D01*

-X172309Y377364D01*

-X171956Y376787D01*

-X171697Y376162D01*

-X171539Y375504D01*

-X171486Y374829D01*

-X171539Y374154D01*

-X171697Y373496D01*

-X171956Y372871D01*

-X172309Y372294D01*

-X172749Y371779D01*

-X173264Y371339D01*

-X173841Y370986D01*

-X174466Y370727D01*

-X175124Y370569D01*

-X175799Y370516D01*

-X176474Y370569D01*

-X177132Y370727D01*

-X177438Y370854D01*

-Y368804D01*

-X177132Y368931D01*

-X176474Y369089D01*

-X175799Y369142D01*

-X175124Y369089D01*

-X174466Y368931D01*

-X173841Y368672D01*

-X173264Y368319D01*

-X172749Y367879D01*

-X172309Y367364D01*

-X171956Y366787D01*

-X171697Y366162D01*

-X171539Y365504D01*

-X171486Y364829D01*

-X171539Y364154D01*

-X171697Y363496D01*

-X171956Y362871D01*

-X172309Y362294D01*

-X172749Y361779D01*

-X173264Y361339D01*

-X173841Y360986D01*

-X174466Y360727D01*

-X175124Y360569D01*

-X175799Y360516D01*

-X176474Y360569D01*

-X177132Y360727D01*

-X177438Y360854D01*

-Y343893D01*

-X177426Y343879D01*

-X177278Y343638D01*

-X177170Y343376D01*

-X177104Y343100D01*

-X177081Y342818D01*

-X177104Y342536D01*

-X177170Y342260D01*

-X177278Y341998D01*

-X177426Y341757D01*

-X177438Y341743D01*

-Y229805D01*

-X177159Y229783D01*

-X176883Y229717D01*

-X176621Y229609D01*

-X176380Y229461D01*

-X176164Y229277D01*

-X175980Y229061D01*

-X175832Y228820D01*

-X175724Y228558D01*

-X175658Y228282D01*

-X175635Y228000D01*

-X175658Y227718D01*

-X175724Y227442D01*

-X175832Y227180D01*

-X175980Y226939D01*

-X176164Y226723D01*

-X176380Y226539D01*

-X176621Y226391D01*

-X176883Y226283D01*

-X177159Y226217D01*

-X177438Y226195D01*

-Y219305D01*

-X177159Y219283D01*

-X176883Y219217D01*

-X176621Y219109D01*

-X176380Y218961D01*

-X176164Y218777D01*

-X175980Y218561D01*

-X175832Y218320D01*

-X175724Y218058D01*

-X175658Y217782D01*

-X175635Y217500D01*

-X175658Y217218D01*

-X175724Y216942D01*

-X175832Y216680D01*

-X175980Y216439D01*

-X176164Y216223D01*

-X176380Y216039D01*

-X176621Y215891D01*

-X176883Y215783D01*

-X177159Y215717D01*

-X177438Y215695D01*

-Y188804D01*

-G37*

-G36*

-Y178804D02*X177132Y178931D01*

-X176474Y179089D01*

-X175799Y179142D01*

-X175124Y179089D01*

-X174941Y179045D01*

-Y180613D01*

-X175124Y180569D01*

-X175799Y180516D01*

-X176474Y180569D01*

-X177132Y180727D01*

-X177438Y180854D01*

-Y178804D01*

-G37*

-G36*

-X481441Y394000D02*Y41500D01*

-X478941Y39000D01*

-X473493D01*

-Y49236D01*

-X473500Y49235D01*

-X474245Y49294D01*

-X474972Y49469D01*

-X475663Y49755D01*

-X476301Y50145D01*

-X476869Y50631D01*

-X477355Y51199D01*

-X477745Y51837D01*

-X478031Y52528D01*

-X478206Y53255D01*

-X478250Y54000D01*

-X478206Y54745D01*

-X478031Y55472D01*

-X477745Y56163D01*

-X477355Y56801D01*

-X476869Y57369D01*

-X476301Y57855D01*

-X475663Y58245D01*

-X474972Y58531D01*

-X474245Y58706D01*

-X473500Y58765D01*

-X473493Y58764D01*

-Y79236D01*

-X473500Y79235D01*

-X474245Y79294D01*

-X474972Y79469D01*

-X475663Y79755D01*

-X476301Y80145D01*

-X476869Y80631D01*

-X477355Y81199D01*

-X477745Y81837D01*

-X478031Y82528D01*

-X478206Y83255D01*

-X478250Y84000D01*

-X478206Y84745D01*

-X478031Y85472D01*

-X477745Y86163D01*

-X477355Y86801D01*

-X476869Y87369D01*

-X476301Y87855D01*

-X475663Y88245D01*

-X474972Y88531D01*

-X474245Y88706D01*

-X473500Y88765D01*

-X473493Y88764D01*

-Y109236D01*

-X473500Y109235D01*

-X474245Y109294D01*

-X474972Y109469D01*

-X475663Y109755D01*

-X476301Y110145D01*

-X476869Y110631D01*

-X477355Y111199D01*

-X477745Y111837D01*

-X478031Y112528D01*

-X478206Y113255D01*

-X478250Y114000D01*

-X478206Y114745D01*

-X478031Y115472D01*

-X477745Y116163D01*

-X477355Y116801D01*

-X476869Y117369D01*

-X476301Y117855D01*

-X475663Y118245D01*

-X474972Y118531D01*

-X474245Y118706D01*

-X473500Y118765D01*

-X473493Y118764D01*

-Y139236D01*

-X473500Y139235D01*

-X474245Y139294D01*

-X474972Y139469D01*

-X475663Y139755D01*

-X476301Y140145D01*

-X476869Y140631D01*

-X477355Y141199D01*

-X477745Y141837D01*

-X478031Y142528D01*

-X478206Y143255D01*

-X478250Y144000D01*

-X478206Y144745D01*

-X478031Y145472D01*

-X477745Y146163D01*

-X477355Y146801D01*

-X476869Y147369D01*

-X476301Y147855D01*

-X475663Y148245D01*

-X474972Y148531D01*

-X474245Y148706D01*

-X473500Y148765D01*

-X473493Y148764D01*

-Y169236D01*

-X473500Y169235D01*

-X474245Y169294D01*

-X474972Y169469D01*

-X475663Y169755D01*

-X476301Y170145D01*

-X476869Y170631D01*

-X477355Y171199D01*

-X477745Y171837D01*

-X478031Y172528D01*

-X478206Y173255D01*

-X478250Y174000D01*

-X478206Y174745D01*

-X478031Y175472D01*

-X477745Y176163D01*

-X477355Y176801D01*

-X476869Y177369D01*

-X476301Y177855D01*

-X475663Y178245D01*

-X474972Y178531D01*

-X474245Y178706D01*

-X473500Y178765D01*

-X473493Y178764D01*

-Y199236D01*

-X473500Y199235D01*

-X474245Y199294D01*

-X474972Y199469D01*

-X475663Y199755D01*

-X476301Y200145D01*

-X476869Y200631D01*

-X477355Y201199D01*

-X477745Y201837D01*

-X478031Y202528D01*

-X478206Y203255D01*

-X478250Y204000D01*

-X478206Y204745D01*

-X478031Y205472D01*

-X477745Y206163D01*

-X477355Y206801D01*

-X476869Y207369D01*

-X476301Y207855D01*

-X475663Y208245D01*

-X474972Y208531D01*

-X474245Y208706D01*

-X473500Y208765D01*

-X473493Y208764D01*

-Y229236D01*

-X473500Y229235D01*

-X474245Y229294D01*

-X474972Y229469D01*

-X475663Y229755D01*

-X476301Y230145D01*

-X476869Y230631D01*

-X477355Y231199D01*

-X477745Y231837D01*

-X478031Y232528D01*

-X478206Y233255D01*

-X478250Y234000D01*

-X478206Y234745D01*

-X478031Y235472D01*

-X477745Y236163D01*

-X477355Y236801D01*

-X476869Y237369D01*

-X476301Y237855D01*

-X475663Y238245D01*

-X474972Y238531D01*

-X474245Y238706D01*

-X473500Y238765D01*

-X473493Y238764D01*

-Y259236D01*

-X473500Y259235D01*

-X474245Y259294D01*

-X474972Y259469D01*

-X475663Y259755D01*

-X476301Y260145D01*

-X476869Y260631D01*

-X477355Y261199D01*

-X477745Y261837D01*

-X478031Y262528D01*

-X478206Y263255D01*

-X478250Y264000D01*

-X478206Y264745D01*

-X478031Y265472D01*

-X477745Y266163D01*

-X477355Y266801D01*

-X476869Y267369D01*

-X476301Y267855D01*

-X475663Y268245D01*

-X474972Y268531D01*

-X474245Y268706D01*

-X473500Y268765D01*

-X473493Y268764D01*

-Y289236D01*

-X473500Y289235D01*

-X474245Y289294D01*

-X474972Y289469D01*

-X475663Y289755D01*

-X476301Y290145D01*

-X476869Y290631D01*

-X477355Y291199D01*

-X477745Y291837D01*

-X478031Y292528D01*

-X478206Y293255D01*

-X478250Y294000D01*

-X478206Y294745D01*

-X478031Y295472D01*

-X477745Y296163D01*

-X477355Y296801D01*

-X476869Y297369D01*

-X476301Y297855D01*

-X475663Y298245D01*

-X474972Y298531D01*

-X474245Y298706D01*

-X473500Y298765D01*

-X473493Y298764D01*

-Y319236D01*

-X473500Y319235D01*

-X474245Y319294D01*

-X474972Y319469D01*

-X475663Y319755D01*

-X476301Y320145D01*

-X476869Y320631D01*

-X477355Y321199D01*

-X477745Y321837D01*

-X478031Y322528D01*

-X478206Y323255D01*

-X478250Y324000D01*

-X478206Y324745D01*

-X478031Y325472D01*

-X477745Y326163D01*

-X477355Y326801D01*

-X476869Y327369D01*

-X476301Y327855D01*

-X475663Y328245D01*

-X474972Y328531D01*

-X474245Y328706D01*

-X473500Y328765D01*

-X473493Y328764D01*

-Y349236D01*

-X473500Y349235D01*

-X474245Y349294D01*

-X474972Y349469D01*

-X475663Y349755D01*

-X476301Y350145D01*

-X476869Y350631D01*

-X477355Y351199D01*

-X477745Y351837D01*

-X478031Y352528D01*

-X478206Y353255D01*

-X478250Y354000D01*

-X478206Y354745D01*

-X478031Y355472D01*

-X477745Y356163D01*

-X477355Y356801D01*

-X476869Y357369D01*

-X476301Y357855D01*

-X475663Y358245D01*

-X474972Y358531D01*

-X474245Y358706D01*

-X473500Y358765D01*

-X473493Y358764D01*

-Y379236D01*

-X473500Y379235D01*

-X474245Y379294D01*

-X474972Y379469D01*

-X475663Y379755D01*

-X476301Y380145D01*

-X476869Y380631D01*

-X477355Y381199D01*

-X477745Y381837D01*

-X478031Y382528D01*

-X478206Y383255D01*

-X478250Y384000D01*

-X478206Y384745D01*

-X478031Y385472D01*

-X477745Y386163D01*

-X477355Y386801D01*

-X476869Y387369D01*

-X476301Y387855D01*

-X475663Y388245D01*

-X474972Y388531D01*

-X474245Y388706D01*

-X473500Y388765D01*

-X473493Y388764D01*

-Y397000D01*

-X478941D01*

-X481441Y394000D01*

-G37*

-G36*

-X473493Y39000D02*X467332D01*

-Y51670D01*

-X467443Y51704D01*

-X467550Y51756D01*

-X467646Y51823D01*

-X467731Y51905D01*

-X467802Y52000D01*

-X467856Y52105D01*

-X468015Y52508D01*

-X468132Y52925D01*

-X468211Y53352D01*

-X468250Y53783D01*

-Y54217D01*

-X468211Y54648D01*

-X468132Y55075D01*

-X468015Y55492D01*

-X467860Y55897D01*

-X467805Y56002D01*

-X467734Y56097D01*

-X467648Y56179D01*

-X467551Y56247D01*

-X467445Y56299D01*

-X467332Y56334D01*

-Y81670D01*

-X467443Y81704D01*

-X467550Y81756D01*

-X467646Y81823D01*

-X467731Y81905D01*

-X467802Y82000D01*

-X467856Y82105D01*

-X468015Y82508D01*

-X468132Y82925D01*

-X468211Y83352D01*

-X468250Y83783D01*

-Y84217D01*

-X468211Y84648D01*

-X468132Y85075D01*

-X468015Y85492D01*

-X467860Y85897D01*

-X467805Y86002D01*

-X467734Y86097D01*

-X467648Y86179D01*

-X467551Y86247D01*

-X467445Y86299D01*

-X467332Y86334D01*

-Y111670D01*

-X467443Y111704D01*

-X467550Y111756D01*

-X467646Y111823D01*

-X467731Y111905D01*

-X467802Y112000D01*

-X467856Y112105D01*

-X468015Y112508D01*

-X468132Y112925D01*

-X468211Y113352D01*

-X468250Y113783D01*

-Y114217D01*

-X468211Y114648D01*

-X468132Y115075D01*

-X468015Y115492D01*

-X467860Y115897D01*

-X467805Y116002D01*

-X467734Y116097D01*

-X467648Y116179D01*

-X467551Y116247D01*

-X467445Y116299D01*

-X467332Y116334D01*

-Y141670D01*

-X467443Y141704D01*

-X467550Y141756D01*

-X467646Y141823D01*

-X467731Y141905D01*

-X467802Y142000D01*

-X467856Y142105D01*

-X468015Y142508D01*

-X468132Y142925D01*

-X468211Y143352D01*

-X468250Y143783D01*

-Y144217D01*

-X468211Y144648D01*

-X468132Y145075D01*

-X468015Y145492D01*

-X467860Y145897D01*

-X467805Y146002D01*

-X467734Y146097D01*

-X467648Y146179D01*

-X467551Y146247D01*

-X467445Y146299D01*

-X467332Y146334D01*

-Y171670D01*

-X467443Y171704D01*

-X467550Y171756D01*

-X467646Y171823D01*

-X467731Y171905D01*

-X467802Y172000D01*

-X467856Y172105D01*

-X468015Y172508D01*

-X468132Y172925D01*

-X468211Y173352D01*

-X468250Y173783D01*

-Y174217D01*

-X468211Y174648D01*

-X468132Y175075D01*

-X468015Y175492D01*

-X467860Y175897D01*

-X467805Y176002D01*

-X467734Y176097D01*

-X467648Y176179D01*

-X467551Y176247D01*

-X467445Y176299D01*

-X467332Y176334D01*

-Y201670D01*

-X467443Y201704D01*

-X467550Y201756D01*

-X467646Y201823D01*

-X467731Y201905D01*

-X467802Y202000D01*

-X467856Y202105D01*

-X468015Y202508D01*

-X468132Y202925D01*

-X468211Y203352D01*

-X468250Y203783D01*

-Y204217D01*

-X468211Y204648D01*

-X468132Y205075D01*

-X468015Y205492D01*

-X467860Y205897D01*

-X467805Y206002D01*

-X467734Y206097D01*

-X467648Y206179D01*

-X467551Y206247D01*

-X467445Y206299D01*

-X467332Y206334D01*

-Y231670D01*

-X467443Y231704D01*

-X467550Y231756D01*

-X467646Y231823D01*

-X467731Y231905D01*

-X467802Y232000D01*

-X467856Y232105D01*

-X468015Y232508D01*

-X468132Y232925D01*

-X468211Y233352D01*

-X468250Y233783D01*

-Y234217D01*

-X468211Y234648D01*

-X468132Y235075D01*

-X468015Y235492D01*

-X467860Y235897D01*

-X467805Y236002D01*

-X467734Y236097D01*

-X467648Y236179D01*

-X467551Y236247D01*

-X467445Y236299D01*

-X467332Y236334D01*

-Y261670D01*

-X467443Y261704D01*

-X467550Y261756D01*

-X467646Y261823D01*

-X467731Y261905D01*

-X467802Y262000D01*

-X467856Y262105D01*

-X468015Y262508D01*

-X468132Y262925D01*

-X468211Y263352D01*

-X468250Y263783D01*

-Y264217D01*

-X468211Y264648D01*

-X468132Y265075D01*

-X468015Y265492D01*

-X467860Y265897D01*

-X467805Y266002D01*

-X467734Y266097D01*

-X467648Y266179D01*

-X467551Y266247D01*

-X467445Y266299D01*

-X467332Y266334D01*

-Y291670D01*

-X467443Y291704D01*

-X467550Y291756D01*

-X467646Y291823D01*

-X467731Y291905D01*

-X467802Y292000D01*

-X467856Y292105D01*

-X468015Y292508D01*

-X468132Y292925D01*

-X468211Y293352D01*

-X468250Y293783D01*

-Y294217D01*

-X468211Y294648D01*

-X468132Y295075D01*

-X468015Y295492D01*

-X467860Y295897D01*

-X467805Y296002D01*

-X467734Y296097D01*

-X467648Y296179D01*

-X467551Y296247D01*

-X467445Y296299D01*

-X467332Y296334D01*

-Y321670D01*

-X467443Y321704D01*

-X467550Y321756D01*

-X467646Y321823D01*

-X467731Y321905D01*

-X467802Y322000D01*

-X467856Y322105D01*

-X468015Y322508D01*

-X468132Y322925D01*

-X468211Y323352D01*

-X468250Y323783D01*

-Y324217D01*

-X468211Y324648D01*

-X468132Y325075D01*

-X468015Y325492D01*

-X467860Y325897D01*

-X467805Y326002D01*

-X467734Y326097D01*

-X467648Y326179D01*

-X467551Y326247D01*

-X467445Y326299D01*

-X467332Y326334D01*

-Y351670D01*

-X467443Y351704D01*

-X467550Y351756D01*

-X467646Y351823D01*

-X467731Y351905D01*

-X467802Y352000D01*

-X467856Y352105D01*

-X468015Y352508D01*

-X468132Y352925D01*

-X468211Y353352D01*

-X468250Y353783D01*

-Y354217D01*

-X468211Y354648D01*

-X468132Y355075D01*

-X468015Y355492D01*

-X467860Y355897D01*

-X467805Y356002D01*

-X467734Y356097D01*

-X467648Y356179D01*

-X467551Y356247D01*

-X467445Y356299D01*

-X467332Y356334D01*

-Y381670D01*

-X467443Y381704D01*

-X467550Y381756D01*

-X467646Y381823D01*

-X467731Y381905D01*

-X467802Y382000D01*

-X467856Y382105D01*

-X468015Y382508D01*

-X468132Y382925D01*

-X468211Y383352D01*

-X468250Y383783D01*

-Y384217D01*

-X468211Y384648D01*

-X468132Y385075D01*

-X468015Y385492D01*

-X467860Y385897D01*

-X467805Y386002D01*

-X467734Y386097D01*

-X467648Y386179D01*

-X467551Y386247D01*

-X467445Y386299D01*

-X467332Y386334D01*

-Y397000D01*

-X473493D01*

-Y388764D01*

-X472755Y388706D01*

-X472028Y388531D01*

-X471337Y388245D01*

-X470699Y387855D01*

-X470131Y387369D01*

-X469645Y386801D01*

-X469255Y386163D01*

-X468969Y385472D01*

-X468794Y384745D01*

-X468735Y384000D01*

-X468794Y383255D01*

-X468969Y382528D01*

-X469255Y381837D01*

-X469645Y381199D01*

-X470131Y380631D01*

-X470699Y380145D01*

-X471337Y379755D01*

-X472028Y379469D01*

-X472755Y379294D01*

-X473493Y379236D01*

-Y358764D01*

-X472755Y358706D01*

-X472028Y358531D01*

-X471337Y358245D01*

-X470699Y357855D01*

-X470131Y357369D01*

-X469645Y356801D01*

-X469255Y356163D01*

-X468969Y355472D01*

-X468794Y354745D01*

-X468735Y354000D01*

-X468794Y353255D01*

-X468969Y352528D01*

-X469255Y351837D01*

-X469645Y351199D01*

-X470131Y350631D01*

-X470699Y350145D01*

-X471337Y349755D01*

-X472028Y349469D01*

-X472755Y349294D01*

-X473493Y349236D01*

-Y328764D01*

-X472755Y328706D01*

-X472028Y328531D01*

-X471337Y328245D01*

-X470699Y327855D01*

-X470131Y327369D01*

-X469645Y326801D01*

-X469255Y326163D01*

-X468969Y325472D01*

-X468794Y324745D01*

-X468735Y324000D01*

-X468794Y323255D01*

-X468969Y322528D01*

-X469255Y321837D01*

-X469645Y321199D01*

-X470131Y320631D01*

-X470699Y320145D01*

-X471337Y319755D01*

-X472028Y319469D01*

-X472755Y319294D01*

-X473493Y319236D01*

-Y298764D01*

-X472755Y298706D01*

-X472028Y298531D01*

-X471337Y298245D01*

-X470699Y297855D01*

-X470131Y297369D01*

-X469645Y296801D01*

-X469255Y296163D01*

-X468969Y295472D01*

-X468794Y294745D01*

-X468735Y294000D01*

-X468794Y293255D01*

-X468969Y292528D01*

-X469255Y291837D01*

-X469645Y291199D01*

-X470131Y290631D01*

-X470699Y290145D01*

-X471337Y289755D01*

-X472028Y289469D01*

-X472755Y289294D01*

-X473493Y289236D01*

-Y268764D01*

-X472755Y268706D01*

-X472028Y268531D01*

-X471337Y268245D01*

-X470699Y267855D01*

-X470131Y267369D01*

-X469645Y266801D01*

-X469255Y266163D01*

-X468969Y265472D01*

-X468794Y264745D01*

-X468735Y264000D01*

-X468794Y263255D01*

-X468969Y262528D01*

-X469255Y261837D01*

-X469645Y261199D01*

-X470131Y260631D01*

-X470699Y260145D01*

-X471337Y259755D01*

-X472028Y259469D01*

-X472755Y259294D01*

-X473493Y259236D01*

-Y238764D01*

-X472755Y238706D01*

-X472028Y238531D01*

-X471337Y238245D01*

-X470699Y237855D01*

-X470131Y237369D01*

-X469645Y236801D01*

-X469255Y236163D01*

-X468969Y235472D01*

-X468794Y234745D01*

-X468735Y234000D01*

-X468794Y233255D01*

-X468969Y232528D01*

-X469255Y231837D01*

-X469645Y231199D01*

-X470131Y230631D01*

-X470699Y230145D01*

-X471337Y229755D01*

-X472028Y229469D01*

-X472755Y229294D01*

-X473493Y229236D01*

-Y208764D01*

-X472755Y208706D01*

-X472028Y208531D01*

-X471337Y208245D01*

-X470699Y207855D01*

-X470131Y207369D01*

-X469645Y206801D01*

-X469255Y206163D01*

-X468969Y205472D01*

-X468794Y204745D01*

-X468735Y204000D01*

-X468794Y203255D01*

-X468969Y202528D01*

-X469255Y201837D01*

-X469645Y201199D01*

-X470131Y200631D01*

-X470699Y200145D01*

-X471337Y199755D01*

-X472028Y199469D01*

-X472755Y199294D01*

-X473493Y199236D01*

-Y178764D01*

-X472755Y178706D01*

-X472028Y178531D01*

-X471337Y178245D01*

-X470699Y177855D01*

-X470131Y177369D01*

-X469645Y176801D01*

-X469255Y176163D01*

-X468969Y175472D01*

-X468794Y174745D01*

-X468735Y174000D01*

-X468794Y173255D01*

-X468969Y172528D01*

-X469255Y171837D01*

-X469645Y171199D01*

-X470131Y170631D01*

-X470699Y170145D01*

-X471337Y169755D01*

-X472028Y169469D01*

-X472755Y169294D01*

-X473493Y169236D01*

-Y148764D01*

-X472755Y148706D01*

-X472028Y148531D01*

-X471337Y148245D01*

-X470699Y147855D01*

-X470131Y147369D01*

-X469645Y146801D01*

-X469255Y146163D01*

-X468969Y145472D01*

-X468794Y144745D01*

-X468735Y144000D01*

-X468794Y143255D01*

-X468969Y142528D01*

-X469255Y141837D01*

-X469645Y141199D01*

-X470131Y140631D01*

-X470699Y140145D01*

-X471337Y139755D01*

-X472028Y139469D01*

-X472755Y139294D01*

-X473493Y139236D01*

-Y118764D01*

-X472755Y118706D01*

-X472028Y118531D01*

-X471337Y118245D01*

-X470699Y117855D01*

-X470131Y117369D01*

-X469645Y116801D01*

-X469255Y116163D01*

-X468969Y115472D01*

-X468794Y114745D01*

-X468735Y114000D01*

-X468794Y113255D01*

-X468969Y112528D01*

-X469255Y111837D01*

-X469645Y111199D01*

-X470131Y110631D01*

-X470699Y110145D01*

-X471337Y109755D01*

-X472028Y109469D01*

-X472755Y109294D01*

-X473493Y109236D01*

-Y88764D01*

-X472755Y88706D01*

-X472028Y88531D01*

-X471337Y88245D01*

-X470699Y87855D01*

-X470131Y87369D01*

-X469645Y86801D01*

-X469255Y86163D01*

-X468969Y85472D01*

-X468794Y84745D01*

-X468735Y84000D01*

-X468794Y83255D01*

-X468969Y82528D01*

-X469255Y81837D01*

-X469645Y81199D01*

-X470131Y80631D01*

-X470699Y80145D01*

-X471337Y79755D01*

-X472028Y79469D01*

-X472755Y79294D01*

-X473493Y79236D01*

-Y58764D01*

-X472755Y58706D01*

-X472028Y58531D01*

-X471337Y58245D01*

-X470699Y57855D01*

-X470131Y57369D01*

-X469645Y56801D01*

-X469255Y56163D01*

-X468969Y55472D01*

-X468794Y54745D01*

-X468735Y54000D01*

-X468794Y53255D01*

-X468969Y52528D01*

-X469255Y51837D01*

-X469645Y51199D01*

-X470131Y50631D01*

-X470699Y50145D01*

-X471337Y49755D01*

-X472028Y49469D01*

-X472755Y49294D01*

-X473493Y49236D01*

-Y39000D01*

-G37*

-G36*

-X467332D02*X463502D01*

-Y49250D01*

-X463717D01*

-X464148Y49289D01*

-X464575Y49368D01*

-X464992Y49485D01*

-X465397Y49640D01*

-X465502Y49695D01*

-X465597Y49766D01*

-X465679Y49852D01*

-X465747Y49949D01*

-X465799Y50055D01*

-X465834Y50169D01*

-X465850Y50286D01*

-X465848Y50405D01*

-X465827Y50522D01*

-X465789Y50634D01*

-X465733Y50738D01*

-X465662Y50833D01*

-X465576Y50915D01*

-X465479Y50983D01*

-X465373Y51035D01*

-X465259Y51070D01*

-X465142Y51086D01*

-X465023Y51084D01*

-X464906Y51064D01*

-X464795Y51023D01*

-X464520Y50914D01*

-X464235Y50834D01*

-X463943Y50780D01*

-X463648Y50753D01*

-X463502D01*

-Y57247D01*

-X463648D01*

-X463943Y57220D01*

-X464235Y57166D01*

-X464520Y57086D01*

-X464797Y56980D01*

-X464907Y56940D01*

-X465024Y56919D01*

-X465142Y56917D01*

-X465259Y56933D01*

-X465371Y56968D01*

-X465478Y57020D01*

-X465574Y57087D01*

-X465659Y57169D01*

-X465730Y57263D01*

-X465786Y57368D01*

-X465824Y57479D01*

-X465845Y57596D01*

-X465847Y57714D01*

-X465830Y57830D01*

-X465796Y57943D01*

-X465744Y58050D01*

-X465677Y58146D01*

-X465595Y58231D01*

-X465500Y58302D01*

-X465395Y58356D01*

-X464992Y58515D01*

-X464575Y58632D01*

-X464148Y58711D01*

-X463717Y58750D01*

-X463502D01*

-Y79250D01*

-X463717D01*

-X464148Y79289D01*

-X464575Y79368D01*

-X464992Y79485D01*

-X465397Y79640D01*

-X465502Y79695D01*

-X465597Y79766D01*

-X465679Y79852D01*

-X465747Y79949D01*

-X465799Y80055D01*

-X465834Y80169D01*

-X465850Y80286D01*

-X465848Y80405D01*

-X465827Y80522D01*

-X465789Y80634D01*

-X465733Y80738D01*

-X465662Y80833D01*

-X465576Y80915D01*

-X465479Y80983D01*

-X465373Y81035D01*

-X465259Y81070D01*

-X465142Y81086D01*

-X465023Y81084D01*

-X464906Y81064D01*

-X464795Y81023D01*

-X464520Y80914D01*

-X464235Y80834D01*

-X463943Y80780D01*

-X463648Y80753D01*

-X463502D01*

-Y87247D01*

-X463648D01*

-X463943Y87220D01*

-X464235Y87166D01*

-X464520Y87086D01*

-X464797Y86980D01*

-X464907Y86940D01*

-X465024Y86919D01*

-X465142Y86917D01*

-X465259Y86933D01*

-X465371Y86968D01*

-X465478Y87020D01*

-X465574Y87087D01*

-X465659Y87169D01*

-X465730Y87263D01*

-X465786Y87368D01*

-X465824Y87479D01*

-X465845Y87596D01*

-X465847Y87714D01*

-X465830Y87830D01*

-X465796Y87943D01*

-X465744Y88050D01*

-X465677Y88146D01*

-X465595Y88231D01*

-X465500Y88302D01*

-X465395Y88356D01*

-X464992Y88515D01*

-X464575Y88632D01*

-X464148Y88711D01*

-X463717Y88750D01*

-X463502D01*

-Y109250D01*

-X463717D01*

-X464148Y109289D01*

-X464575Y109368D01*

-X464992Y109485D01*

-X465397Y109640D01*

-X465502Y109695D01*

-X465597Y109766D01*

-X465679Y109852D01*

-X465747Y109949D01*

-X465799Y110055D01*

-X465834Y110169D01*

-X465850Y110286D01*

-X465848Y110405D01*

-X465827Y110522D01*

-X465789Y110634D01*

-X465733Y110738D01*

-X465662Y110833D01*

-X465576Y110915D01*

-X465479Y110983D01*

-X465373Y111035D01*

-X465259Y111070D01*

-X465142Y111086D01*

-X465023Y111084D01*

-X464906Y111064D01*

-X464795Y111023D01*

-X464520Y110914D01*

-X464235Y110834D01*

-X463943Y110780D01*

-X463648Y110753D01*

-X463502D01*

-Y117247D01*

-X463648D01*

-X463943Y117220D01*

-X464235Y117166D01*

-X464520Y117086D01*

-X464797Y116980D01*

-X464907Y116940D01*

-X465024Y116919D01*

-X465142Y116917D01*

-X465259Y116933D01*

-X465371Y116968D01*

-X465478Y117020D01*

-X465574Y117087D01*

-X465659Y117169D01*

-X465730Y117263D01*

-X465786Y117368D01*

-X465824Y117479D01*

-X465845Y117596D01*

-X465847Y117714D01*

-X465830Y117830D01*

-X465796Y117943D01*

-X465744Y118050D01*

-X465677Y118146D01*

-X465595Y118231D01*

-X465500Y118302D01*

-X465395Y118356D01*

-X464992Y118515D01*

-X464575Y118632D01*

-X464148Y118711D01*

-X463717Y118750D01*

-X463502D01*

-Y139250D01*

-X463717D01*

-X464148Y139289D01*

-X464575Y139368D01*

-X464992Y139485D01*

-X465397Y139640D01*

-X465502Y139695D01*

-X465597Y139766D01*

-X465679Y139852D01*

-X465747Y139949D01*

-X465799Y140055D01*

-X465834Y140169D01*

-X465850Y140286D01*

-X465848Y140405D01*

-X465827Y140522D01*

-X465789Y140634D01*

-X465733Y140738D01*

-X465662Y140833D01*

-X465576Y140915D01*

-X465479Y140983D01*

-X465373Y141035D01*

-X465259Y141070D01*

-X465142Y141086D01*

-X465023Y141084D01*

-X464906Y141064D01*

-X464795Y141023D01*

-X464520Y140914D01*

-X464235Y140834D01*

-X463943Y140780D01*

-X463648Y140753D01*

-X463502D01*

-Y147247D01*

-X463648D01*

-X463943Y147220D01*

-X464235Y147166D01*

-X464520Y147086D01*

-X464797Y146980D01*

-X464907Y146940D01*

-X465024Y146919D01*

-X465142Y146917D01*

-X465259Y146933D01*

-X465371Y146968D01*

-X465478Y147020D01*

-X465574Y147087D01*

-X465659Y147169D01*

-X465730Y147263D01*

-X465786Y147368D01*

-X465824Y147479D01*

-X465845Y147596D01*

-X465847Y147714D01*

-X465830Y147830D01*

-X465796Y147943D01*

-X465744Y148050D01*

-X465677Y148146D01*

-X465595Y148231D01*

-X465500Y148302D01*

-X465395Y148356D01*

-X464992Y148515D01*

-X464575Y148632D01*

-X464148Y148711D01*

-X463717Y148750D01*

-X463502D01*

-Y169250D01*

-X463717D01*

-X464148Y169289D01*

-X464575Y169368D01*

-X464992Y169485D01*

-X465397Y169640D01*

-X465502Y169695D01*

-X465597Y169766D01*

-X465679Y169852D01*

-X465747Y169949D01*

-X465799Y170055D01*

-X465834Y170169D01*

-X465850Y170286D01*

-X465848Y170405D01*

-X465827Y170522D01*

-X465789Y170634D01*

-X465733Y170738D01*

-X465662Y170833D01*

-X465576Y170915D01*

-X465479Y170983D01*

-X465373Y171035D01*

-X465259Y171070D01*

-X465142Y171086D01*

-X465023Y171084D01*

-X464906Y171064D01*

-X464795Y171023D01*

-X464520Y170914D01*

-X464235Y170834D01*

-X463943Y170780D01*

-X463648Y170753D01*

-X463502D01*

-Y177247D01*

-X463648D01*

-X463943Y177220D01*

-X464235Y177166D01*

-X464520Y177086D01*

-X464797Y176980D01*

-X464907Y176940D01*

-X465024Y176919D01*

-X465142Y176917D01*

-X465259Y176933D01*

-X465371Y176968D01*

-X465478Y177020D01*

-X465574Y177087D01*

-X465659Y177169D01*

-X465730Y177263D01*

-X465786Y177368D01*

-X465824Y177479D01*

-X465845Y177596D01*

-X465847Y177714D01*

-X465830Y177830D01*

-X465796Y177943D01*

-X465744Y178050D01*

-X465677Y178146D01*

-X465595Y178231D01*

-X465500Y178302D01*

-X465395Y178356D01*

-X464992Y178515D01*

-X464575Y178632D01*

-X464148Y178711D01*

-X463717Y178750D01*

-X463502D01*

-Y199250D01*

-X463717D01*

-X464148Y199289D01*

-X464575Y199368D01*

-X464992Y199485D01*

-X465397Y199640D01*

-X465502Y199695D01*

-X465597Y199766D01*

-X465679Y199852D01*

-X465747Y199949D01*

-X465799Y200055D01*

-X465834Y200169D01*

-X465850Y200286D01*

-X465848Y200405D01*

-X465827Y200522D01*

-X465789Y200634D01*

-X465733Y200738D01*

-X465662Y200833D01*

-X465576Y200915D01*

-X465479Y200983D01*

-X465373Y201035D01*

-X465259Y201070D01*

-X465142Y201086D01*

-X465023Y201084D01*

-X464906Y201064D01*

-X464795Y201023D01*

-X464520Y200914D01*

-X464235Y200834D01*

-X463943Y200780D01*

-X463648Y200753D01*

-X463502D01*

-Y207247D01*

-X463648D01*

-X463943Y207220D01*

-X464235Y207166D01*

-X464520Y207086D01*

-X464797Y206980D01*

-X464907Y206940D01*

-X465024Y206919D01*

-X465142Y206917D01*

-X465259Y206933D01*

-X465371Y206968D01*

-X465478Y207020D01*

-X465574Y207087D01*

-X465659Y207169D01*

-X465730Y207263D01*

-X465786Y207368D01*

-X465824Y207479D01*

-X465845Y207596D01*

-X465847Y207714D01*

-X465830Y207830D01*

-X465796Y207943D01*

-X465744Y208050D01*

-X465677Y208146D01*

-X465595Y208231D01*

-X465500Y208302D01*

-X465395Y208356D01*

-X464992Y208515D01*

-X464575Y208632D01*

-X464148Y208711D01*

-X463717Y208750D01*

-X463502D01*

-Y229250D01*

-X463717D01*

-X464148Y229289D01*

-X464575Y229368D01*

-X464992Y229485D01*

-X465397Y229640D01*

-X465502Y229695D01*

-X465597Y229766D01*

-X465679Y229852D01*

-X465747Y229949D01*

-X465799Y230055D01*

-X465834Y230169D01*

-X465850Y230286D01*

-X465848Y230405D01*

-X465827Y230522D01*

-X465789Y230634D01*

-X465733Y230738D01*

-X465662Y230833D01*

-X465576Y230915D01*

-X465479Y230983D01*

-X465373Y231035D01*

-X465259Y231070D01*

-X465142Y231086D01*

-X465023Y231084D01*

-X464906Y231064D01*

-X464795Y231023D01*

-X464520Y230914D01*

-X464235Y230834D01*

-X463943Y230780D01*

-X463648Y230753D01*

-X463502D01*

-Y237247D01*

-X463648D01*

-X463943Y237220D01*

-X464235Y237166D01*

-X464520Y237086D01*

-X464797Y236980D01*

-X464907Y236940D01*

-X465024Y236919D01*

-X465142Y236917D01*

-X465259Y236933D01*

-X465371Y236968D01*

-X465478Y237020D01*

-X465574Y237087D01*

-X465659Y237169D01*

-X465730Y237263D01*

-X465786Y237368D01*

-X465824Y237479D01*

-X465845Y237596D01*

-X465847Y237714D01*

-X465830Y237830D01*

-X465796Y237943D01*

-X465744Y238050D01*

-X465677Y238146D01*

-X465595Y238231D01*

-X465500Y238302D01*

-X465395Y238356D01*

-X464992Y238515D01*

-X464575Y238632D01*

-X464148Y238711D01*

-X463717Y238750D01*

-X463502D01*

-Y259250D01*

-X463717D01*

-X464148Y259289D01*

-X464575Y259368D01*

-X464992Y259485D01*

-X465397Y259640D01*

-X465502Y259695D01*

-X465597Y259766D01*

-X465679Y259852D01*

-X465747Y259949D01*

-X465799Y260055D01*

-X465834Y260169D01*

-X465850Y260286D01*

-X465848Y260405D01*

-X465827Y260522D01*

-X465789Y260634D01*

-X465733Y260738D01*

-X465662Y260833D01*

-X465576Y260915D01*

-X465479Y260983D01*

-X465373Y261035D01*

-X465259Y261070D01*

-X465142Y261086D01*

-X465023Y261084D01*

-X464906Y261064D01*

-X464795Y261023D01*

-X464520Y260914D01*

-X464235Y260834D01*

-X463943Y260780D01*

-X463648Y260753D01*

-X463502D01*

-Y267247D01*

-X463648D01*

-X463943Y267220D01*

-X464235Y267166D01*

-X464520Y267086D01*

-X464797Y266980D01*

-X464907Y266940D01*

-X465024Y266919D01*

-X465142Y266917D01*

-X465259Y266933D01*

-X465371Y266968D01*

-X465478Y267020D01*

-X465574Y267087D01*

-X465659Y267169D01*

-X465730Y267263D01*

-X465786Y267368D01*

-X465824Y267479D01*

-X465845Y267596D01*

-X465847Y267714D01*

-X465830Y267830D01*

-X465796Y267943D01*

-X465744Y268050D01*

-X465677Y268146D01*

-X465595Y268231D01*

-X465500Y268302D01*

-X465395Y268356D01*

-X464992Y268515D01*

-X464575Y268632D01*

-X464148Y268711D01*

-X463717Y268750D01*

-X463502D01*

-Y289250D01*

-X463717D01*

-X464148Y289289D01*

-X464575Y289368D01*

-X464992Y289485D01*

-X465397Y289640D01*

-X465502Y289695D01*

-X465597Y289766D01*

-X465679Y289852D01*

-X465747Y289949D01*

-X465799Y290055D01*

-X465834Y290169D01*

-X465850Y290286D01*

-X465848Y290405D01*

-X465827Y290522D01*

-X465789Y290634D01*

-X465733Y290738D01*

-X465662Y290833D01*

-X465576Y290915D01*

-X465479Y290983D01*

-X465373Y291035D01*

-X465259Y291070D01*

-X465142Y291086D01*

-X465023Y291084D01*

-X464906Y291064D01*

-X464795Y291023D01*

-X464520Y290914D01*

-X464235Y290834D01*

-X463943Y290780D01*

-X463648Y290753D01*

-X463502D01*

-Y297247D01*

-X463648D01*

-X463943Y297220D01*

-X464235Y297166D01*

-X464520Y297086D01*

-X464797Y296980D01*

-X464907Y296940D01*

-X465024Y296919D01*

-X465142Y296917D01*

-X465259Y296933D01*

-X465371Y296968D01*

-X465478Y297020D01*

-X465574Y297087D01*

-X465659Y297169D01*

-X465730Y297263D01*

-X465786Y297368D01*

-X465824Y297479D01*

-X465845Y297596D01*

-X465847Y297714D01*

-X465830Y297830D01*

-X465796Y297943D01*

-X465744Y298050D01*

-X465677Y298146D01*

-X465595Y298231D01*

-X465500Y298302D01*

-X465395Y298356D01*

-X464992Y298515D01*

-X464575Y298632D01*

-X464148Y298711D01*

-X463717Y298750D01*

-X463502D01*

-Y319250D01*

-X463717D01*

-X464148Y319289D01*

-X464575Y319368D01*

-X464992Y319485D01*

-X465397Y319640D01*

-X465502Y319695D01*

-X465597Y319766D01*

-X465679Y319852D01*

-X465747Y319949D01*

-X465799Y320055D01*

-X465834Y320169D01*

-X465850Y320286D01*

-X465848Y320405D01*

-X465827Y320522D01*

-X465789Y320634D01*

-X465733Y320738D01*

-X465662Y320833D01*

-X465576Y320915D01*

-X465479Y320983D01*

-X465373Y321035D01*

-X465259Y321070D01*

-X465142Y321086D01*

-X465023Y321084D01*

-X464906Y321064D01*

-X464795Y321023D01*

-X464520Y320914D01*

-X464235Y320834D01*

-X463943Y320780D01*

-X463648Y320753D01*

-X463502D01*

-Y327247D01*

-X463648D01*

-X463943Y327220D01*

-X464235Y327166D01*

-X464520Y327086D01*

-X464797Y326980D01*

-X464907Y326940D01*

-X465024Y326919D01*

-X465142Y326917D01*

-X465259Y326933D01*

-X465371Y326968D01*

-X465478Y327020D01*

-X465574Y327087D01*

-X465659Y327169D01*

-X465730Y327263D01*

-X465786Y327368D01*

-X465824Y327479D01*

-X465845Y327596D01*

-X465847Y327714D01*

-X465830Y327830D01*

-X465796Y327943D01*

-X465744Y328050D01*

-X465677Y328146D01*

-X465595Y328231D01*

-X465500Y328302D01*

-X465395Y328356D01*

-X464992Y328515D01*

-X464575Y328632D01*

-X464148Y328711D01*

-X463717Y328750D01*

-X463502D01*

-Y349250D01*

-X463717D01*

-X464148Y349289D01*

-X464575Y349368D01*

-X464992Y349485D01*

-X465397Y349640D01*

-X465502Y349695D01*

-X465597Y349766D01*

-X465679Y349852D01*

-X465747Y349949D01*

-X465799Y350055D01*

-X465834Y350169D01*

-X465850Y350286D01*

-X465848Y350405D01*

-X465827Y350522D01*

-X465789Y350634D01*

-X465733Y350738D01*

-X465662Y350833D01*

-X465576Y350915D01*

-X465479Y350983D01*

-X465373Y351035D01*

-X465259Y351070D01*

-X465142Y351086D01*

-X465023Y351084D01*

-X464906Y351064D01*

-X464795Y351023D01*

-X464520Y350914D01*

-X464235Y350834D01*

-X463943Y350780D01*

-X463648Y350753D01*

-X463502D01*

-Y357247D01*

-X463648D01*

-X463943Y357220D01*

-X464235Y357166D01*

-X464520Y357086D01*

-X464797Y356980D01*

-X464907Y356940D01*

-X465024Y356919D01*

-X465142Y356917D01*

-X465259Y356933D01*

-X465371Y356968D01*

-X465478Y357020D01*

-X465574Y357087D01*

-X465659Y357169D01*

-X465730Y357263D01*

-X465786Y357368D01*

-X465824Y357479D01*

-X465845Y357596D01*

-X465847Y357714D01*

-X465830Y357830D01*

-X465796Y357943D01*

-X465744Y358050D01*

-X465677Y358146D01*

-X465595Y358231D01*

-X465500Y358302D01*

-X465395Y358356D01*

-X464992Y358515D01*

-X464575Y358632D01*

-X464148Y358711D01*

-X463717Y358750D01*

-X463502D01*

-Y379250D01*

-X463717D01*

-X464148Y379289D01*

-X464575Y379368D01*

-X464992Y379485D01*

-X465397Y379640D01*

-X465502Y379695D01*

-X465597Y379766D01*

-X465679Y379852D01*

-X465747Y379949D01*

-X465799Y380055D01*

-X465834Y380169D01*

-X465850Y380286D01*

-X465848Y380405D01*

-X465827Y380522D01*

-X465789Y380634D01*

-X465733Y380738D01*

-X465662Y380833D01*

-X465576Y380915D01*

-X465479Y380983D01*

-X465373Y381035D01*

-X465259Y381070D01*

-X465142Y381086D01*

-X465023Y381084D01*

-X464906Y381064D01*

-X464795Y381023D01*

-X464520Y380914D01*

-X464235Y380834D01*

-X463943Y380780D01*

-X463648Y380753D01*

-X463502D01*

-Y387247D01*

-X463648D01*

-X463943Y387220D01*

-X464235Y387166D01*

-X464520Y387086D01*

-X464797Y386980D01*

-X464907Y386940D01*

-X465024Y386919D01*

-X465142Y386917D01*

-X465259Y386933D01*

-X465371Y386968D01*

-X465478Y387020D01*

-X465574Y387087D01*

-X465659Y387169D01*

-X465730Y387263D01*

-X465786Y387368D01*

-X465824Y387479D01*

-X465845Y387596D01*

-X465847Y387714D01*

-X465830Y387830D01*

-X465796Y387943D01*

-X465744Y388050D01*

-X465677Y388146D01*

-X465595Y388231D01*

-X465500Y388302D01*

-X465395Y388356D01*

-X464992Y388515D01*

-X464575Y388632D01*

-X464148Y388711D01*

-X463717Y388750D01*

-X463502D01*

-Y397000D01*

-X467332D01*

-Y386334D01*

-X467331Y386334D01*

-X467214Y386350D01*

-X467095Y386348D01*

-X466978Y386327D01*

-X466866Y386289D01*

-X466762Y386233D01*

-X466667Y386162D01*

-X466585Y386076D01*

-X466517Y385979D01*

-X466465Y385873D01*

-X466430Y385759D01*

-X466414Y385642D01*

-X466416Y385523D01*

-X466436Y385407D01*

-X466477Y385295D01*

-X466586Y385020D01*

-X466666Y384735D01*

-X466720Y384443D01*

-X466747Y384148D01*

-Y383852D01*

-X466720Y383557D01*

-X466666Y383265D01*

-X466586Y382980D01*

-X466480Y382703D01*

-X466440Y382593D01*

-X466419Y382476D01*

-X466417Y382358D01*

-X466433Y382241D01*

-X466468Y382129D01*

-X466520Y382022D01*

-X466587Y381926D01*

-X466669Y381841D01*

-X466763Y381770D01*

-X466868Y381714D01*

-X466979Y381676D01*

-X467096Y381655D01*

-X467214Y381653D01*

-X467330Y381670D01*

-X467332Y381670D01*

-Y356334D01*

-X467331Y356334D01*

-X467214Y356350D01*

-X467095Y356348D01*

-X466978Y356327D01*

-X466866Y356289D01*

-X466762Y356233D01*

-X466667Y356162D01*

-X466585Y356076D01*

-X466517Y355979D01*

-X466465Y355873D01*

-X466430Y355759D01*

-X466414Y355642D01*

-X466416Y355523D01*

-X466436Y355407D01*

-X466477Y355295D01*

-X466586Y355020D01*

-X466666Y354735D01*

-X466720Y354443D01*

-X466747Y354148D01*

-Y353852D01*

-X466720Y353557D01*

-X466666Y353265D01*

-X466586Y352980D01*

-X466480Y352703D01*

-X466440Y352593D01*

-X466419Y352476D01*

-X466417Y352358D01*

-X466433Y352241D01*

-X466468Y352129D01*

-X466520Y352022D01*

-X466587Y351926D01*

-X466669Y351841D01*

-X466763Y351770D01*

-X466868Y351714D01*

-X466979Y351676D01*

-X467096Y351655D01*

-X467214Y351653D01*

-X467330Y351670D01*

-X467332Y351670D01*

-Y326334D01*

-X467331Y326334D01*

-X467214Y326350D01*

-X467095Y326348D01*

-X466978Y326327D01*

-X466866Y326289D01*

-X466762Y326233D01*

-X466667Y326162D01*

-X466585Y326076D01*

-X466517Y325979D01*

-X466465Y325873D01*

-X466430Y325759D01*

-X466414Y325642D01*

-X466416Y325523D01*

-X466436Y325407D01*

-X466477Y325295D01*

-X466586Y325020D01*

-X466666Y324735D01*

-X466720Y324443D01*

-X466747Y324148D01*

-Y323852D01*

-X466720Y323557D01*

-X466666Y323265D01*

-X466586Y322980D01*

-X466480Y322703D01*

-X466440Y322593D01*

-X466419Y322476D01*

-X466417Y322358D01*

-X466433Y322241D01*

-X466468Y322129D01*

-X466520Y322022D01*

-X466587Y321926D01*

-X466669Y321841D01*

-X466763Y321770D01*

-X466868Y321714D01*

-X466979Y321676D01*

-X467096Y321655D01*

-X467214Y321653D01*

-X467330Y321670D01*

-X467332Y321670D01*

-Y296334D01*

-X467331Y296334D01*

-X467214Y296350D01*

-X467095Y296348D01*

-X466978Y296327D01*

-X466866Y296289D01*

-X466762Y296233D01*

-X466667Y296162D01*

-X466585Y296076D01*

-X466517Y295979D01*

-X466465Y295873D01*

-X466430Y295759D01*

-X466414Y295642D01*

-X466416Y295523D01*

-X466436Y295407D01*

-X466477Y295295D01*

-X466586Y295020D01*

-X466666Y294735D01*

-X466720Y294443D01*

-X466747Y294148D01*

-Y293852D01*

-X466720Y293557D01*

-X466666Y293265D01*

-X466586Y292980D01*

-X466480Y292703D01*

-X466440Y292593D01*

-X466419Y292476D01*

-X466417Y292358D01*

-X466433Y292241D01*

-X466468Y292129D01*

-X466520Y292022D01*

-X466587Y291926D01*

-X466669Y291841D01*

-X466763Y291770D01*

-X466868Y291714D01*

-X466979Y291676D01*

-X467096Y291655D01*

-X467214Y291653D01*

-X467330Y291670D01*

-X467332Y291670D01*

-Y266334D01*

-X467331Y266334D01*

-X467214Y266350D01*

-X467095Y266348D01*

-X466978Y266327D01*

-X466866Y266289D01*

-X466762Y266233D01*

-X466667Y266162D01*

-X466585Y266076D01*

-X466517Y265979D01*

-X466465Y265873D01*

-X466430Y265759D01*

-X466414Y265642D01*

-X466416Y265523D01*

-X466436Y265407D01*

-X466477Y265295D01*

-X466586Y265020D01*

-X466666Y264735D01*

-X466720Y264443D01*

-X466747Y264148D01*

-Y263852D01*

-X466720Y263557D01*

-X466666Y263265D01*

-X466586Y262980D01*

-X466480Y262703D01*

-X466440Y262593D01*

-X466419Y262476D01*

-X466417Y262358D01*

-X466433Y262241D01*

-X466468Y262129D01*

-X466520Y262022D01*

-X466587Y261926D01*

-X466669Y261841D01*

-X466763Y261770D01*

-X466868Y261714D01*

-X466979Y261676D01*

-X467096Y261655D01*

-X467214Y261653D01*

-X467330Y261670D01*

-X467332Y261670D01*

-Y236334D01*

-X467331Y236334D01*

-X467214Y236350D01*

-X467095Y236348D01*

-X466978Y236327D01*

-X466866Y236289D01*

-X466762Y236233D01*

-X466667Y236162D01*

-X466585Y236076D01*

-X466517Y235979D01*

-X466465Y235873D01*

-X466430Y235759D01*

-X466414Y235642D01*

-X466416Y235523D01*

-X466436Y235407D01*

-X466477Y235295D01*

-X466586Y235020D01*

-X466666Y234735D01*

-X466720Y234443D01*

-X466747Y234148D01*

-Y233852D01*

-X466720Y233557D01*

-X466666Y233265D01*

-X466586Y232980D01*

-X466480Y232703D01*

-X466440Y232593D01*

-X466419Y232476D01*

-X466417Y232358D01*

-X466433Y232241D01*

-X466468Y232129D01*

-X466520Y232022D01*

-X466587Y231926D01*

-X466669Y231841D01*

-X466763Y231770D01*

-X466868Y231714D01*

-X466979Y231676D01*

-X467096Y231655D01*

-X467214Y231653D01*

-X467330Y231670D01*

-X467332Y231670D01*

-Y206334D01*

-X467331Y206334D01*

-X467214Y206350D01*

-X467095Y206348D01*

-X466978Y206327D01*

-X466866Y206289D01*

-X466762Y206233D01*

-X466667Y206162D01*

-X466585Y206076D01*

-X466517Y205979D01*

-X466465Y205873D01*

-X466430Y205759D01*

-X466414Y205642D01*

-X466416Y205523D01*

-X466436Y205407D01*

-X466477Y205295D01*

-X466586Y205020D01*

-X466666Y204735D01*

-X466720Y204443D01*

-X466747Y204148D01*

-Y203852D01*

-X466720Y203557D01*

-X466666Y203265D01*

-X466586Y202980D01*

-X466480Y202703D01*

-X466440Y202593D01*

-X466419Y202476D01*

-X466417Y202358D01*

-X466433Y202241D01*

-X466468Y202129D01*

-X466520Y202022D01*

-X466587Y201926D01*

-X466669Y201841D01*

-X466763Y201770D01*

-X466868Y201714D01*

-X466979Y201676D01*

-X467096Y201655D01*

-X467214Y201653D01*

-X467330Y201670D01*

-X467332Y201670D01*

-Y176334D01*

-X467331Y176334D01*

-X467214Y176350D01*

-X467095Y176348D01*

-X466978Y176327D01*

-X466866Y176289D01*

-X466762Y176233D01*

-X466667Y176162D01*

-X466585Y176076D01*

-X466517Y175979D01*

-X466465Y175873D01*

-X466430Y175759D01*

-X466414Y175642D01*

-X466416Y175523D01*

-X466436Y175407D01*

-X466477Y175295D01*

-X466586Y175020D01*

-X466666Y174735D01*

-X466720Y174443D01*

-X466747Y174148D01*

-Y173852D01*

-X466720Y173557D01*

-X466666Y173265D01*

-X466586Y172980D01*

-X466480Y172703D01*

-X466440Y172593D01*

-X466419Y172476D01*

-X466417Y172358D01*

-X466433Y172241D01*

-X466468Y172129D01*

-X466520Y172022D01*

-X466587Y171926D01*

-X466669Y171841D01*

-X466763Y171770D01*

-X466868Y171714D01*

-X466979Y171676D01*

-X467096Y171655D01*

-X467214Y171653D01*

-X467330Y171670D01*

-X467332Y171670D01*

-Y146334D01*

-X467331Y146334D01*

-X467214Y146350D01*

-X467095Y146348D01*

-X466978Y146327D01*

-X466866Y146289D01*

-X466762Y146233D01*

-X466667Y146162D01*

-X466585Y146076D01*

-X466517Y145979D01*

-X466465Y145873D01*

-X466430Y145759D01*

-X466414Y145642D01*

-X466416Y145523D01*

-X466436Y145407D01*

-X466477Y145295D01*

-X466586Y145020D01*

-X466666Y144735D01*

-X466720Y144443D01*

-X466747Y144148D01*

-Y143852D01*

-X466720Y143557D01*

-X466666Y143265D01*

-X466586Y142980D01*

-X466480Y142703D01*

-X466440Y142593D01*

-X466419Y142476D01*

-X466417Y142358D01*

-X466433Y142241D01*

-X466468Y142129D01*

-X466520Y142022D01*

-X466587Y141926D01*

-X466669Y141841D01*

-X466763Y141770D01*

-X466868Y141714D01*

-X466979Y141676D01*

-X467096Y141655D01*

-X467214Y141653D01*

-X467330Y141670D01*

-X467332Y141670D01*

-Y116334D01*

-X467331Y116334D01*

-X467214Y116350D01*

-X467095Y116348D01*

-X466978Y116327D01*

-X466866Y116289D01*

-X466762Y116233D01*

-X466667Y116162D01*

-X466585Y116076D01*

-X466517Y115979D01*

-X466465Y115873D01*

-X466430Y115759D01*

-X466414Y115642D01*

-X466416Y115523D01*

-X466436Y115407D01*

-X466477Y115295D01*

-X466586Y115020D01*

-X466666Y114735D01*

-X466720Y114443D01*

-X466747Y114148D01*

-Y113852D01*

-X466720Y113557D01*

-X466666Y113265D01*

-X466586Y112980D01*

-X466480Y112703D01*

-X466440Y112593D01*

-X466419Y112476D01*

-X466417Y112358D01*

-X466433Y112241D01*

-X466468Y112129D01*

-X466520Y112022D01*

-X466587Y111926D01*

-X466669Y111841D01*

-X466763Y111770D01*

-X466868Y111714D01*

-X466979Y111676D01*

-X467096Y111655D01*

-X467214Y111653D01*

-X467330Y111670D01*

-X467332Y111670D01*

-Y86334D01*

-X467331Y86334D01*

-X467214Y86350D01*

-X467095Y86348D01*

-X466978Y86327D01*

-X466866Y86289D01*

-X466762Y86233D01*

-X466667Y86162D01*

-X466585Y86076D01*

-X466517Y85979D01*

-X466465Y85873D01*

-X466430Y85759D01*

-X466414Y85642D01*

-X466416Y85523D01*

-X466436Y85407D01*

-X466477Y85295D01*

-X466586Y85020D01*

-X466666Y84735D01*

-X466720Y84443D01*

-X466747Y84148D01*

-Y83852D01*

-X466720Y83557D01*

-X466666Y83265D01*

-X466586Y82980D01*

-X466480Y82703D01*

-X466440Y82593D01*

-X466419Y82476D01*

-X466417Y82358D01*

-X466433Y82241D01*

-X466468Y82129D01*

-X466520Y82022D01*

-X466587Y81926D01*

-X466669Y81841D01*

-X466763Y81770D01*

-X466868Y81714D01*

-X466979Y81676D01*

-X467096Y81655D01*

-X467214Y81653D01*

-X467330Y81670D01*

-X467332Y81670D01*

-Y56334D01*

-X467331Y56334D01*

-X467214Y56350D01*

-X467095Y56348D01*

-X466978Y56327D01*

-X466866Y56289D01*

-X466762Y56233D01*

-X466667Y56162D01*

-X466585Y56076D01*

-X466517Y55979D01*

-X466465Y55873D01*

-X466430Y55759D01*

-X466414Y55642D01*

-X466416Y55523D01*

-X466436Y55407D01*

-X466477Y55295D01*

-X466586Y55020D01*

-X466666Y54735D01*

-X466720Y54443D01*

-X466747Y54148D01*

-Y53852D01*

-X466720Y53557D01*

-X466666Y53265D01*

-X466586Y52980D01*

-X466480Y52703D01*

-X466440Y52593D01*

-X466419Y52476D01*

-X466417Y52358D01*

-X466433Y52241D01*

-X466468Y52129D01*

-X466520Y52022D01*

-X466587Y51926D01*

-X466669Y51841D01*

-X466763Y51770D01*

-X466868Y51714D01*

-X466979Y51676D01*

-X467096Y51655D01*

-X467214Y51653D01*

-X467330Y51670D01*

-X467332Y51670D01*

-Y39000D01*

-G37*

-G36*

-X463502D02*X459668D01*

-Y51666D01*

-X459669Y51666D01*

-X459786Y51650D01*

-X459905Y51652D01*

-X460022Y51673D01*

-X460134Y51711D01*

-X460238Y51767D01*

-X460333Y51838D01*

-X460415Y51924D01*

-X460483Y52021D01*

-X460535Y52127D01*

-X460570Y52241D01*

-X460586Y52358D01*

-X460584Y52477D01*

-X460564Y52593D01*

-X460523Y52705D01*

-X460414Y52980D01*

-X460334Y53265D01*

-X460280Y53557D01*

-X460253Y53852D01*

-Y54148D01*

-X460280Y54443D01*

-X460334Y54735D01*

-X460414Y55020D01*

-X460520Y55297D01*

-X460560Y55407D01*

-X460581Y55524D01*

-X460583Y55642D01*

-X460567Y55759D01*

-X460532Y55871D01*

-X460480Y55978D01*

-X460413Y56074D01*

-X460331Y56159D01*

-X460237Y56230D01*

-X460132Y56286D01*

-X460021Y56324D01*

-X459904Y56345D01*

-X459786Y56347D01*

-X459670Y56330D01*

-X459668Y56330D01*

-Y81666D01*

-X459669Y81666D01*

-X459786Y81650D01*

-X459905Y81652D01*

-X460022Y81673D01*

-X460134Y81711D01*

-X460238Y81767D01*

-X460333Y81838D01*

-X460415Y81924D01*

-X460483Y82021D01*

-X460535Y82127D01*

-X460570Y82241D01*

-X460586Y82358D01*

-X460584Y82477D01*

-X460564Y82594D01*

-X460523Y82705D01*

-X460414Y82980D01*

-X460334Y83265D01*

-X460280Y83557D01*

-X460253Y83852D01*

-Y84148D01*

-X460280Y84443D01*

-X460334Y84735D01*

-X460414Y85020D01*

-X460520Y85297D01*

-X460560Y85407D01*

-X460581Y85524D01*

-X460583Y85642D01*

-X460567Y85759D01*

-X460532Y85871D01*

-X460480Y85978D01*

-X460413Y86074D01*

-X460331Y86159D01*

-X460237Y86230D01*

-X460132Y86286D01*

-X460021Y86324D01*

-X459904Y86345D01*

-X459786Y86347D01*

-X459670Y86330D01*

-X459668Y86330D01*

-Y111666D01*

-X459669Y111666D01*

-X459786Y111650D01*

-X459905Y111652D01*

-X460022Y111673D01*

-X460134Y111711D01*

-X460238Y111767D01*

-X460333Y111838D01*

-X460415Y111924D01*

-X460483Y112021D01*

-X460535Y112127D01*

-X460570Y112241D01*

-X460586Y112358D01*

-X460584Y112477D01*

-X460564Y112594D01*

-X460523Y112705D01*

-X460414Y112980D01*

-X460334Y113265D01*

-X460280Y113557D01*

-X460253Y113852D01*

-Y114148D01*

-X460280Y114443D01*

-X460334Y114735D01*

-X460414Y115020D01*

-X460520Y115297D01*

-X460560Y115407D01*

-X460581Y115524D01*

-X460583Y115642D01*

-X460567Y115759D01*

-X460532Y115871D01*

-X460480Y115978D01*

-X460413Y116074D01*

-X460331Y116159D01*

-X460237Y116230D01*

-X460132Y116286D01*

-X460021Y116324D01*

-X459904Y116345D01*

-X459786Y116347D01*

-X459670Y116330D01*

-X459668Y116330D01*

-Y141666D01*

-X459669Y141666D01*

-X459786Y141650D01*

-X459905Y141652D01*

-X460022Y141673D01*

-X460134Y141711D01*

-X460238Y141767D01*

-X460333Y141838D01*

-X460415Y141924D01*

-X460483Y142021D01*

-X460535Y142127D01*

-X460570Y142241D01*

-X460586Y142358D01*

-X460584Y142477D01*

-X460564Y142594D01*

-X460523Y142705D01*

-X460414Y142980D01*

-X460334Y143265D01*

-X460280Y143557D01*

-X460253Y143852D01*

-Y144148D01*

-X460280Y144443D01*

-X460334Y144735D01*

-X460414Y145020D01*

-X460520Y145297D01*

-X460560Y145407D01*

-X460581Y145524D01*

-X460583Y145642D01*

-X460567Y145759D01*

-X460532Y145871D01*

-X460480Y145978D01*

-X460413Y146074D01*

-X460331Y146159D01*

-X460237Y146230D01*

-X460132Y146286D01*

-X460021Y146324D01*

-X459904Y146345D01*

-X459786Y146347D01*

-X459670Y146330D01*

-X459668Y146330D01*

-Y161478D01*

-X459716Y161497D01*

-X460092Y161728D01*

-X460427Y162014D01*

-X460713Y162349D01*

-X460944Y162725D01*

-X461112Y163132D01*

-X461215Y163561D01*

-X461241Y164000D01*

-X461215Y164439D01*

-X461112Y164868D01*

-X460944Y165275D01*

-X460713Y165651D01*

-X460427Y165986D01*

-X460092Y166272D01*

-X459716Y166503D01*

-X459668Y166522D01*

-Y171666D01*

-X459669Y171666D01*

-X459786Y171650D01*

-X459905Y171652D01*

-X460022Y171673D01*

-X460134Y171711D01*

-X460238Y171767D01*

-X460333Y171838D01*

-X460415Y171924D01*

-X460483Y172021D01*

-X460535Y172127D01*

-X460570Y172241D01*

-X460586Y172358D01*

-X460584Y172477D01*

-X460564Y172594D01*

-X460523Y172705D01*

-X460414Y172980D01*

-X460334Y173265D01*

-X460280Y173557D01*

-X460253Y173852D01*

-Y174148D01*

-X460280Y174443D01*

-X460334Y174735D01*

-X460414Y175020D01*

-X460520Y175297D01*

-X460560Y175407D01*

-X460581Y175524D01*

-X460583Y175642D01*

-X460567Y175759D01*

-X460532Y175871D01*

-X460480Y175978D01*

-X460413Y176074D01*

-X460331Y176159D01*

-X460237Y176230D01*

-X460132Y176286D01*

-X460021Y176324D01*

-X459904Y176345D01*

-X459786Y176347D01*

-X459670Y176330D01*

-X459668Y176330D01*

-Y192478D01*

-X459716Y192497D01*

-X460092Y192728D01*

-X460427Y193014D01*

-X460713Y193349D01*

-X460944Y193725D01*

-X461112Y194132D01*

-X461215Y194561D01*

-X461241Y195000D01*

-X461215Y195439D01*

-X461112Y195868D01*

-X460944Y196275D01*

-X460713Y196651D01*

-X460427Y196986D01*

-X460092Y197272D01*

-X459716Y197503D01*

-X459668Y197522D01*

-Y201666D01*

-X459669Y201666D01*

-X459786Y201650D01*

-X459905Y201652D01*

-X460022Y201673D01*

-X460134Y201711D01*

-X460238Y201767D01*

-X460333Y201838D01*

-X460415Y201924D01*

-X460483Y202021D01*

-X460535Y202127D01*

-X460570Y202241D01*

-X460586Y202358D01*

-X460584Y202477D01*

-X460564Y202594D01*

-X460523Y202705D01*

-X460414Y202980D01*

-X460334Y203265D01*

-X460280Y203557D01*

-X460253Y203852D01*

-Y204148D01*

-X460280Y204443D01*

-X460334Y204735D01*

-X460414Y205020D01*

-X460520Y205297D01*

-X460560Y205407D01*

-X460581Y205524D01*

-X460583Y205642D01*

-X460567Y205759D01*

-X460532Y205871D01*

-X460480Y205978D01*

-X460413Y206074D01*

-X460331Y206159D01*

-X460237Y206230D01*

-X460132Y206286D01*

-X460021Y206324D01*

-X459904Y206345D01*

-X459786Y206347D01*

-X459670Y206330D01*

-X459668Y206330D01*

-Y222478D01*

-X459716Y222497D01*

-X460092Y222728D01*

-X460427Y223014D01*

-X460713Y223349D01*

-X460944Y223725D01*

-X461112Y224132D01*

-X461215Y224561D01*

-X461241Y225000D01*

-X461215Y225439D01*

-X461112Y225868D01*

-X460944Y226275D01*

-X460713Y226651D01*

-X460427Y226986D01*

-X460092Y227272D01*

-X459716Y227503D01*

-X459668Y227522D01*

-Y231666D01*

-X459669Y231666D01*

-X459786Y231650D01*

-X459905Y231652D01*

-X460022Y231673D01*

-X460134Y231711D01*

-X460238Y231767D01*

-X460333Y231838D01*

-X460415Y231924D01*

-X460483Y232021D01*

-X460535Y232127D01*

-X460570Y232241D01*

-X460586Y232358D01*

-X460584Y232477D01*

-X460564Y232594D01*

-X460523Y232705D01*

-X460414Y232980D01*

-X460334Y233265D01*

-X460280Y233557D01*

-X460253Y233852D01*

-Y234148D01*

-X460280Y234443D01*

-X460334Y234735D01*

-X460414Y235020D01*

-X460520Y235297D01*

-X460560Y235407D01*

-X460581Y235524D01*

-X460583Y235642D01*

-X460567Y235759D01*

-X460532Y235871D01*

-X460480Y235978D01*

-X460413Y236074D01*

-X460331Y236159D01*

-X460237Y236230D01*

-X460132Y236286D01*

-X460021Y236324D01*

-X459904Y236345D01*

-X459786Y236347D01*

-X459670Y236330D01*

-X459668Y236330D01*

-Y251478D01*

-X459716Y251497D01*

-X460092Y251728D01*

-X460427Y252014D01*

-X460713Y252349D01*

-X460944Y252725D01*

-X461112Y253132D01*

-X461215Y253561D01*

-X461241Y254000D01*

-X461215Y254439D01*

-X461112Y254868D01*

-X460944Y255275D01*

-X460713Y255651D01*

-X460427Y255986D01*

-X460092Y256272D01*

-X459716Y256503D01*

-X459668Y256522D01*

-Y261666D01*

-X459669Y261666D01*

-X459786Y261650D01*

-X459905Y261652D01*

-X460022Y261673D01*

-X460134Y261711D01*

-X460238Y261767D01*

-X460333Y261838D01*

-X460415Y261924D01*

-X460483Y262021D01*

-X460535Y262127D01*

-X460570Y262241D01*

-X460586Y262358D01*

-X460584Y262477D01*

-X460564Y262594D01*

-X460523Y262705D01*

-X460414Y262980D01*

-X460334Y263265D01*

-X460280Y263557D01*

-X460253Y263852D01*

-Y264148D01*

-X460280Y264443D01*

-X460334Y264735D01*

-X460414Y265020D01*

-X460520Y265297D01*

-X460560Y265407D01*

-X460581Y265524D01*

-X460583Y265642D01*

-X460567Y265759D01*

-X460532Y265871D01*

-X460480Y265978D01*

-X460413Y266074D01*

-X460331Y266159D01*

-X460237Y266230D01*

-X460132Y266286D01*

-X460021Y266324D01*

-X459904Y266345D01*

-X459786Y266347D01*

-X459670Y266330D01*

-X459668Y266330D01*

-Y282478D01*

-X459716Y282497D01*

-X460092Y282728D01*

-X460427Y283014D01*

-X460713Y283349D01*

-X460944Y283725D01*

-X461112Y284132D01*

-X461215Y284561D01*

-X461241Y285000D01*

-X461215Y285439D01*

-X461112Y285868D01*

-X460944Y286275D01*

-X460713Y286651D01*

-X460427Y286986D01*

-X460092Y287272D01*

-X459716Y287503D01*

-X459668Y287522D01*

-Y291666D01*

-X459669Y291666D01*

-X459786Y291650D01*

-X459905Y291652D01*

-X460022Y291673D01*

-X460134Y291711D01*

-X460238Y291767D01*

-X460333Y291838D01*

-X460415Y291924D01*

-X460483Y292021D01*

-X460535Y292127D01*

-X460570Y292241D01*

-X460586Y292358D01*

-X460584Y292477D01*

-X460564Y292594D01*

-X460523Y292705D01*

-X460414Y292980D01*

-X460334Y293265D01*

-X460280Y293557D01*

-X460253Y293852D01*

-Y294148D01*

-X460280Y294443D01*

-X460334Y294735D01*

-X460414Y295020D01*

-X460520Y295297D01*

-X460560Y295407D01*

-X460581Y295524D01*

-X460583Y295642D01*

-X460567Y295759D01*

-X460532Y295871D01*

-X460480Y295978D01*

-X460413Y296074D01*

-X460331Y296159D01*

-X460237Y296230D01*

-X460132Y296286D01*

-X460021Y296324D01*

-X459904Y296345D01*

-X459786Y296347D01*

-X459670Y296330D01*

-X459668Y296330D01*

-Y312478D01*

-X459716Y312497D01*

-X460092Y312728D01*

-X460427Y313014D01*

-X460713Y313349D01*

-X460944Y313725D01*

-X461112Y314132D01*

-X461215Y314561D01*

-X461241Y315000D01*

-X461215Y315439D01*

-X461112Y315868D01*

-X460944Y316275D01*

-X460713Y316651D01*

-X460427Y316986D01*

-X460092Y317272D01*

-X459716Y317503D01*

-X459668Y317522D01*

-Y321666D01*

-X459669Y321666D01*

-X459786Y321650D01*

-X459905Y321652D01*

-X460022Y321673D01*

-X460134Y321711D01*

-X460238Y321767D01*

-X460333Y321838D01*

-X460415Y321924D01*

-X460483Y322021D01*

-X460535Y322127D01*

-X460570Y322241D01*

-X460586Y322358D01*

-X460584Y322477D01*

-X460564Y322594D01*

-X460523Y322705D01*

-X460414Y322980D01*

-X460334Y323265D01*

-X460280Y323557D01*

-X460253Y323852D01*

-Y324148D01*

-X460280Y324443D01*

-X460334Y324735D01*

-X460414Y325020D01*

-X460520Y325297D01*

-X460560Y325407D01*

-X460581Y325524D01*

-X460583Y325642D01*

-X460567Y325759D01*

-X460532Y325871D01*

-X460480Y325978D01*

-X460413Y326074D01*

-X460331Y326159D01*

-X460237Y326230D01*

-X460132Y326286D01*

-X460021Y326324D01*

-X459904Y326345D01*

-X459786Y326347D01*

-X459670Y326330D01*

-X459668Y326330D01*

-Y342478D01*

-X459716Y342497D01*

-X460092Y342728D01*

-X460427Y343014D01*

-X460713Y343349D01*

-X460944Y343725D01*

-X461112Y344132D01*

-X461215Y344561D01*

-X461241Y345000D01*

-X461215Y345439D01*

-X461112Y345868D01*

-X460944Y346275D01*

-X460713Y346651D01*

-X460427Y346986D01*

-X460092Y347272D01*

-X459716Y347503D01*

-X459668Y347522D01*

-Y351666D01*

-X459669Y351666D01*

-X459786Y351650D01*

-X459905Y351652D01*

-X460022Y351673D01*

-X460134Y351711D01*

-X460238Y351767D01*

-X460333Y351838D01*

-X460415Y351924D01*

-X460483Y352021D01*

-X460535Y352127D01*

-X460570Y352241D01*

-X460586Y352358D01*

-X460584Y352477D01*

-X460564Y352594D01*

-X460523Y352705D01*

-X460414Y352980D01*

-X460334Y353265D01*

-X460280Y353557D01*

-X460253Y353852D01*

-Y354148D01*

-X460280Y354443D01*

-X460334Y354735D01*

-X460414Y355020D01*

-X460520Y355297D01*

-X460560Y355407D01*

-X460581Y355524D01*

-X460583Y355642D01*

-X460567Y355759D01*

-X460532Y355871D01*

-X460480Y355978D01*

-X460413Y356074D01*

-X460331Y356159D01*

-X460237Y356230D01*

-X460132Y356286D01*

-X460021Y356324D01*

-X459904Y356345D01*

-X459786Y356347D01*

-X459670Y356330D01*

-X459668Y356330D01*

-Y372478D01*

-X459716Y372497D01*

-X460092Y372728D01*

-X460427Y373014D01*

-X460713Y373349D01*

-X460944Y373725D01*

-X461112Y374132D01*

-X461215Y374561D01*

-X461241Y375000D01*

-X461215Y375439D01*

-X461112Y375868D01*

-X460944Y376275D01*

-X460713Y376651D01*

-X460427Y376986D01*

-X460092Y377272D01*

-X459716Y377503D01*

-X459668Y377522D01*

-Y381666D01*

-X459669Y381666D01*

-X459786Y381650D01*

-X459905Y381652D01*

-X460022Y381673D01*

-X460134Y381711D01*

-X460238Y381767D01*

-X460333Y381838D01*

-X460415Y381924D01*

-X460483Y382021D01*

-X460535Y382127D01*

-X460570Y382241D01*

-X460586Y382358D01*

-X460584Y382477D01*

-X460564Y382594D01*

-X460523Y382705D01*

-X460414Y382980D01*

-X460334Y383265D01*

-X460280Y383557D01*

-X460253Y383852D01*

-Y384148D01*

-X460280Y384443D01*

-X460334Y384735D01*

-X460414Y385020D01*

-X460520Y385297D01*

-X460560Y385407D01*

-X460581Y385524D01*

-X460583Y385642D01*

-X460567Y385759D01*

-X460532Y385871D01*

-X460480Y385978D01*

-X460413Y386074D01*

-X460331Y386159D01*

-X460237Y386230D01*

-X460132Y386286D01*

-X460021Y386324D01*

-X459904Y386345D01*

-X459786Y386347D01*

-X459670Y386330D01*

-X459668Y386330D01*

-Y397000D01*

-X463502D01*

-Y388750D01*

-X463283D01*

-X462852Y388711D01*

-X462425Y388632D01*

-X462008Y388515D01*

-X461603Y388360D01*

-X461498Y388305D01*

-X461403Y388234D01*

-X461321Y388148D01*

-X461253Y388051D01*

-X461201Y387945D01*

-X461166Y387831D01*

-X461150Y387714D01*

-X461152Y387595D01*

-X461173Y387478D01*

-X461211Y387366D01*

-X461267Y387262D01*

-X461338Y387167D01*

-X461424Y387085D01*

-X461521Y387017D01*

-X461627Y386965D01*

-X461741Y386930D01*

-X461858Y386914D01*

-X461977Y386916D01*

-X462093Y386936D01*

-X462205Y386977D01*

-X462480Y387086D01*

-X462765Y387166D01*

-X463057Y387220D01*

-X463352Y387247D01*

-X463502D01*

-Y380753D01*

-X463352D01*

-X463057Y380780D01*

-X462765Y380834D01*

-X462480Y380914D01*

-X462203Y381020D01*

-X462093Y381060D01*

-X461976Y381081D01*

-X461858Y381083D01*

-X461741Y381067D01*

-X461629Y381032D01*

-X461522Y380980D01*

-X461426Y380913D01*

-X461341Y380831D01*

-X461270Y380737D01*

-X461214Y380632D01*

-X461176Y380521D01*

-X461155Y380404D01*

-X461153Y380286D01*

-X461170Y380170D01*

-X461204Y380057D01*

-X461256Y379950D01*

-X461323Y379854D01*

-X461405Y379769D01*

-X461500Y379698D01*

-X461605Y379644D01*

-X462008Y379485D01*

-X462425Y379368D01*

-X462852Y379289D01*

-X463283Y379250D01*

-X463502D01*

-Y358750D01*

-X463283D01*

-X462852Y358711D01*

-X462425Y358632D01*

-X462008Y358515D01*

-X461603Y358360D01*

-X461498Y358305D01*

-X461403Y358234D01*

-X461321Y358148D01*

-X461253Y358051D01*

-X461201Y357945D01*

-X461166Y357831D01*

-X461150Y357714D01*

-X461152Y357595D01*

-X461173Y357478D01*

-X461211Y357366D01*

-X461267Y357262D01*

-X461338Y357167D01*

-X461424Y357085D01*

-X461521Y357017D01*

-X461627Y356965D01*

-X461741Y356930D01*

-X461858Y356914D01*

-X461977Y356916D01*

-X462093Y356936D01*

-X462205Y356977D01*

-X462480Y357086D01*

-X462765Y357166D01*

-X463057Y357220D01*

-X463352Y357247D01*

-X463502D01*

-Y350753D01*

-X463352D01*

-X463057Y350780D01*

-X462765Y350834D01*

-X462480Y350914D01*

-X462203Y351020D01*

-X462093Y351060D01*

-X461976Y351081D01*

-X461858Y351083D01*

-X461741Y351067D01*

-X461629Y351032D01*

-X461522Y350980D01*

-X461426Y350913D01*

-X461341Y350831D01*

-X461270Y350737D01*

-X461214Y350632D01*

-X461176Y350521D01*

-X461155Y350404D01*

-X461153Y350286D01*

-X461170Y350170D01*

-X461204Y350057D01*

-X461256Y349950D01*

-X461323Y349854D01*

-X461405Y349769D01*

-X461500Y349698D01*

-X461605Y349644D01*

-X462008Y349485D01*

-X462425Y349368D01*

-X462852Y349289D01*

-X463283Y349250D01*

-X463502D01*

-Y328750D01*

-X463283D01*

-X462852Y328711D01*

-X462425Y328632D01*

-X462008Y328515D01*

-X461603Y328360D01*

-X461498Y328305D01*

-X461403Y328234D01*

-X461321Y328148D01*

-X461253Y328051D01*

-X461201Y327945D01*

-X461166Y327831D01*

-X461150Y327714D01*

-X461152Y327595D01*

-X461173Y327478D01*

-X461211Y327366D01*

-X461267Y327262D01*

-X461338Y327167D01*

-X461424Y327085D01*

-X461521Y327017D01*

-X461627Y326965D01*

-X461741Y326930D01*

-X461858Y326914D01*

-X461977Y326916D01*

-X462093Y326936D01*

-X462205Y326977D01*

-X462480Y327086D01*

-X462765Y327166D01*

-X463057Y327220D01*

-X463352Y327247D01*

-X463502D01*

-Y320753D01*

-X463352D01*

-X463057Y320780D01*

-X462765Y320834D01*

-X462480Y320914D01*

-X462203Y321020D01*

-X462093Y321060D01*

-X461976Y321081D01*

-X461858Y321083D01*

-X461741Y321067D01*

-X461629Y321032D01*

-X461522Y320980D01*

-X461426Y320913D01*

-X461341Y320831D01*

-X461270Y320737D01*

-X461214Y320632D01*

-X461176Y320521D01*

-X461155Y320404D01*

-X461153Y320286D01*

-X461170Y320170D01*

-X461204Y320057D01*

-X461256Y319950D01*

-X461323Y319854D01*

-X461405Y319769D01*

-X461500Y319698D01*

-X461605Y319644D01*

-X462008Y319485D01*

-X462425Y319368D01*

-X462852Y319289D01*

-X463283Y319250D01*

-X463502D01*

-Y298750D01*

-X463283D01*

-X462852Y298711D01*

-X462425Y298632D01*

-X462008Y298515D01*

-X461603Y298360D01*

-X461498Y298305D01*

-X461403Y298234D01*

-X461321Y298148D01*

-X461253Y298051D01*

-X461201Y297945D01*

-X461166Y297831D01*

-X461150Y297714D01*

-X461152Y297595D01*

-X461173Y297478D01*

-X461211Y297366D01*

-X461267Y297262D01*

-X461338Y297167D01*

-X461424Y297085D01*

-X461521Y297017D01*

-X461627Y296965D01*

-X461741Y296930D01*

-X461858Y296914D01*

-X461977Y296916D01*

-X462093Y296936D01*

-X462205Y296977D01*

-X462480Y297086D01*

-X462765Y297166D01*

-X463057Y297220D01*

-X463352Y297247D01*

-X463502D01*

-Y290753D01*

-X463352D01*

-X463057Y290780D01*

-X462765Y290834D01*

-X462480Y290914D01*

-X462203Y291020D01*

-X462093Y291060D01*

-X461976Y291081D01*

-X461858Y291083D01*

-X461741Y291067D01*

-X461629Y291032D01*

-X461522Y290980D01*

-X461426Y290913D01*

-X461341Y290831D01*

-X461270Y290737D01*

-X461214Y290632D01*

-X461176Y290521D01*

-X461155Y290404D01*

-X461153Y290286D01*

-X461170Y290170D01*

-X461204Y290057D01*

-X461256Y289950D01*

-X461323Y289854D01*

-X461405Y289769D01*

-X461500Y289698D01*

-X461605Y289644D01*

-X462008Y289485D01*

-X462425Y289368D01*

-X462852Y289289D01*

-X463283Y289250D01*

-X463502D01*

-Y268750D01*

-X463283D01*

-X462852Y268711D01*

-X462425Y268632D01*

-X462008Y268515D01*

-X461603Y268360D01*

-X461498Y268305D01*

-X461403Y268234D01*

-X461321Y268148D01*

-X461253Y268051D01*

-X461201Y267945D01*

-X461166Y267831D01*

-X461150Y267714D01*

-X461152Y267595D01*

-X461173Y267478D01*

-X461211Y267366D01*

-X461267Y267262D01*

-X461338Y267167D01*

-X461424Y267085D01*

-X461521Y267017D01*

-X461627Y266965D01*

-X461741Y266930D01*

-X461858Y266914D01*

-X461977Y266916D01*

-X462093Y266936D01*

-X462205Y266977D01*

-X462480Y267086D01*

-X462765Y267166D01*

-X463057Y267220D01*

-X463352Y267247D01*

-X463502D01*

-Y260753D01*

-X463352D01*

-X463057Y260780D01*

-X462765Y260834D01*

-X462480Y260914D01*

-X462203Y261020D01*

-X462093Y261060D01*

-X461976Y261081D01*

-X461858Y261083D01*

-X461741Y261067D01*

-X461629Y261032D01*

-X461522Y260980D01*

-X461426Y260913D01*

-X461341Y260831D01*

-X461270Y260737D01*

-X461214Y260632D01*

-X461176Y260521D01*

-X461155Y260404D01*

-X461153Y260286D01*

-X461170Y260170D01*

-X461204Y260057D01*

-X461256Y259950D01*

-X461323Y259854D01*

-X461405Y259769D01*

-X461500Y259698D01*

-X461605Y259644D01*

-X462008Y259485D01*

-X462425Y259368D01*

-X462852Y259289D01*

-X463283Y259250D01*

-X463502D01*

-Y238750D01*

-X463283D01*

-X462852Y238711D01*

-X462425Y238632D01*

-X462008Y238515D01*

-X461603Y238360D01*

-X461498Y238305D01*

-X461403Y238234D01*

-X461321Y238148D01*

-X461253Y238051D01*

-X461201Y237945D01*

-X461166Y237831D01*

-X461150Y237714D01*

-X461152Y237595D01*

-X461173Y237478D01*

-X461211Y237366D01*

-X461267Y237262D01*

-X461338Y237167D01*

-X461424Y237085D01*

-X461521Y237017D01*

-X461627Y236965D01*

-X461741Y236930D01*

-X461858Y236914D01*

-X461977Y236916D01*

-X462093Y236936D01*

-X462205Y236977D01*

-X462480Y237086D01*

-X462765Y237166D01*

-X463057Y237220D01*

-X463352Y237247D01*

-X463502D01*

-Y230753D01*

-X463352D01*

-X463057Y230780D01*

-X462765Y230834D01*

-X462480Y230914D01*

-X462203Y231020D01*

-X462093Y231060D01*

-X461976Y231081D01*

-X461858Y231083D01*

-X461741Y231067D01*

-X461629Y231032D01*

-X461522Y230980D01*

-X461426Y230913D01*

-X461341Y230831D01*

-X461270Y230737D01*

-X461214Y230632D01*

-X461176Y230521D01*

-X461155Y230404D01*

-X461153Y230286D01*

-X461170Y230170D01*

-X461204Y230057D01*

-X461256Y229950D01*

-X461323Y229854D01*

-X461405Y229769D01*

-X461500Y229698D01*

-X461605Y229644D01*

-X462008Y229485D01*

-X462425Y229368D01*

-X462852Y229289D01*

-X463283Y229250D01*

-X463502D01*

-Y208750D01*

-X463283D01*

-X462852Y208711D01*

-X462425Y208632D01*

-X462008Y208515D01*

-X461603Y208360D01*

-X461498Y208305D01*

-X461403Y208234D01*

-X461321Y208148D01*

-X461253Y208051D01*

-X461201Y207945D01*

-X461166Y207831D01*

-X461150Y207714D01*

-X461152Y207595D01*

-X461173Y207478D01*

-X461211Y207366D01*

-X461267Y207262D01*

-X461338Y207167D01*

-X461424Y207085D01*

-X461521Y207017D01*

-X461627Y206965D01*

-X461741Y206930D01*

-X461858Y206914D01*

-X461977Y206916D01*

-X462093Y206936D01*

-X462205Y206977D01*

-X462480Y207086D01*

-X462765Y207166D01*

-X463057Y207220D01*

-X463352Y207247D01*

-X463502D01*

-Y200753D01*

-X463352D01*

-X463057Y200780D01*

-X462765Y200834D01*

-X462480Y200914D01*

-X462203Y201020D01*

-X462093Y201060D01*

-X461976Y201081D01*

-X461858Y201083D01*

-X461741Y201067D01*

-X461629Y201032D01*

-X461522Y200980D01*

-X461426Y200913D01*

-X461341Y200831D01*

-X461270Y200737D01*

-X461214Y200632D01*

-X461176Y200521D01*

-X461155Y200404D01*

-X461153Y200286D01*

-X461170Y200170D01*

-X461204Y200057D01*

-X461256Y199950D01*

-X461323Y199854D01*

-X461405Y199769D01*

-X461500Y199698D01*

-X461605Y199644D01*

-X462008Y199485D01*

-X462425Y199368D01*

-X462852Y199289D01*

-X463283Y199250D01*

-X463502D01*

-Y178750D01*

-X463283D01*

-X462852Y178711D01*

-X462425Y178632D01*

-X462008Y178515D01*

-X461603Y178360D01*

-X461498Y178305D01*

-X461403Y178234D01*

-X461321Y178148D01*

-X461253Y178051D01*

-X461201Y177945D01*

-X461166Y177831D01*

-X461150Y177714D01*

-X461152Y177595D01*

-X461173Y177478D01*

-X461211Y177366D01*

-X461267Y177262D01*

-X461338Y177167D01*

-X461424Y177085D01*

-X461521Y177017D01*

-X461627Y176965D01*

-X461741Y176930D01*

-X461858Y176914D01*

-X461977Y176916D01*

-X462093Y176936D01*

-X462205Y176977D01*

-X462480Y177086D01*

-X462765Y177166D01*

-X463057Y177220D01*

-X463352Y177247D01*

-X463502D01*

-Y170753D01*

-X463352D01*

-X463057Y170780D01*

-X462765Y170834D01*

-X462480Y170914D01*

-X462203Y171020D01*

-X462093Y171060D01*

-X461976Y171081D01*

-X461858Y171083D01*

-X461741Y171067D01*

-X461629Y171032D01*

-X461522Y170980D01*

-X461426Y170913D01*

-X461341Y170831D01*

-X461270Y170737D01*

-X461214Y170632D01*

-X461176Y170521D01*

-X461155Y170404D01*

-X461153Y170286D01*

-X461170Y170170D01*

-X461204Y170057D01*

-X461256Y169950D01*

-X461323Y169854D01*

-X461405Y169769D01*

-X461500Y169698D01*

-X461605Y169644D01*

-X462008Y169485D01*

-X462425Y169368D01*

-X462852Y169289D01*

-X463283Y169250D01*

-X463502D01*

-Y148750D01*

-X463283D01*

-X462852Y148711D01*

-X462425Y148632D01*

-X462008Y148515D01*

-X461603Y148360D01*

-X461498Y148305D01*

-X461403Y148234D01*

-X461321Y148148D01*

-X461253Y148051D01*

-X461201Y147945D01*

-X461166Y147831D01*

-X461150Y147714D01*

-X461152Y147595D01*

-X461173Y147478D01*

-X461211Y147366D01*

-X461267Y147262D01*

-X461338Y147167D01*

-X461424Y147085D01*

-X461521Y147017D01*

-X461627Y146965D01*

-X461741Y146930D01*

-X461858Y146914D01*

-X461977Y146916D01*

-X462093Y146936D01*

-X462205Y146977D01*

-X462480Y147086D01*

-X462765Y147166D01*

-X463057Y147220D01*

-X463352Y147247D01*

-X463502D01*

-Y140753D01*

-X463352D01*

-X463057Y140780D01*

-X462765Y140834D01*

-X462480Y140914D01*

-X462203Y141020D01*

-X462093Y141060D01*

-X461976Y141081D01*

-X461858Y141083D01*

-X461741Y141067D01*

-X461629Y141032D01*

-X461522Y140980D01*

-X461426Y140913D01*

-X461341Y140831D01*

-X461270Y140737D01*

-X461214Y140632D01*

-X461176Y140521D01*

-X461155Y140404D01*

-X461153Y140286D01*

-X461170Y140170D01*

-X461204Y140057D01*

-X461256Y139950D01*

-X461323Y139854D01*

-X461405Y139769D01*

-X461500Y139698D01*

-X461605Y139644D01*

-X462008Y139485D01*

-X462425Y139368D01*

-X462852Y139289D01*

-X463283Y139250D01*

-X463502D01*

-Y118750D01*

-X463283D01*

-X462852Y118711D01*

-X462425Y118632D01*

-X462008Y118515D01*

-X461603Y118360D01*

-X461498Y118305D01*

-X461403Y118234D01*

-X461321Y118148D01*

-X461253Y118051D01*

-X461201Y117945D01*

-X461166Y117831D01*

-X461150Y117714D01*

-X461152Y117595D01*

-X461173Y117478D01*

-X461211Y117366D01*

-X461267Y117262D01*

-X461338Y117167D01*

-X461424Y117085D01*

-X461521Y117017D01*

-X461627Y116965D01*

-X461741Y116930D01*

-X461858Y116914D01*

-X461977Y116916D01*

-X462093Y116936D01*

-X462205Y116977D01*

-X462480Y117086D01*

-X462765Y117166D01*

-X463057Y117220D01*

-X463352Y117247D01*

-X463502D01*

-Y110753D01*

-X463352D01*

-X463057Y110780D01*

-X462765Y110834D01*

-X462480Y110914D01*

-X462203Y111020D01*

-X462093Y111060D01*

-X461976Y111081D01*

-X461858Y111083D01*

-X461741Y111067D01*

-X461629Y111032D01*

-X461522Y110980D01*

-X461426Y110913D01*

-X461341Y110831D01*

-X461270Y110737D01*

-X461214Y110632D01*

-X461176Y110521D01*

-X461155Y110404D01*

-X461153Y110286D01*

-X461170Y110170D01*

-X461204Y110057D01*

-X461256Y109950D01*

-X461323Y109854D01*

-X461405Y109769D01*

-X461500Y109698D01*

-X461605Y109644D01*

-X462008Y109485D01*

-X462425Y109368D01*

-X462852Y109289D01*

-X463283Y109250D01*

-X463502D01*

-Y88750D01*

-X463283D01*

-X462852Y88711D01*

-X462425Y88632D01*

-X462008Y88515D01*

-X461603Y88360D01*

-X461498Y88305D01*

-X461403Y88234D01*

-X461321Y88148D01*

-X461253Y88051D01*

-X461201Y87945D01*

-X461166Y87831D01*

-X461150Y87714D01*

-X461152Y87595D01*

-X461173Y87478D01*

-X461211Y87366D01*

-X461267Y87262D01*

-X461338Y87167D01*

-X461424Y87085D01*

-X461521Y87017D01*

-X461627Y86965D01*

-X461741Y86930D01*

-X461858Y86914D01*

-X461977Y86916D01*

-X462093Y86936D01*

-X462205Y86977D01*

-X462480Y87086D01*

-X462765Y87166D01*

-X463057Y87220D01*

-X463352Y87247D01*

-X463502D01*

-Y80753D01*

-X463352D01*

-X463057Y80780D01*

-X462765Y80834D01*

-X462480Y80914D01*

-X462203Y81020D01*

-X462093Y81060D01*

-X461976Y81081D01*

-X461858Y81083D01*

-X461741Y81067D01*

-X461629Y81032D01*

-X461522Y80980D01*

-X461426Y80913D01*

-X461341Y80831D01*

-X461270Y80737D01*

-X461214Y80632D01*

-X461176Y80521D01*

-X461155Y80404D01*

-X461153Y80286D01*

-X461170Y80170D01*

-X461204Y80057D01*

-X461256Y79950D01*

-X461323Y79854D01*

-X461405Y79769D01*

-X461500Y79698D01*

-X461605Y79644D01*

-X462008Y79485D01*

-X462425Y79368D01*

-X462852Y79289D01*

-X463283Y79250D01*

-X463502D01*

-Y58750D01*

-X463283D01*

-X462852Y58711D01*

-X462425Y58632D01*

-X462008Y58515D01*

-X461603Y58360D01*

-X461498Y58305D01*

-X461403Y58234D01*

-X461321Y58148D01*

-X461253Y58051D01*

-X461201Y57945D01*

-X461166Y57831D01*

-X461150Y57714D01*

-X461152Y57595D01*

-X461173Y57478D01*

-X461211Y57366D01*

-X461267Y57262D01*

-X461338Y57167D01*

-X461424Y57085D01*

-X461521Y57017D01*

-X461627Y56965D01*

-X461741Y56930D01*

-X461858Y56914D01*

-X461977Y56916D01*

-X462093Y56936D01*

-X462205Y56977D01*

-X462480Y57086D01*

-X462765Y57166D01*

-X463057Y57220D01*

-X463352Y57247D01*

-X463502D01*

-Y50753D01*

-X463352D01*

-X463057Y50780D01*

-X462765Y50834D01*

-X462480Y50914D01*

-X462203Y51020D01*

-X462093Y51060D01*

-X461976Y51081D01*

-X461858Y51083D01*

-X461741Y51067D01*

-X461629Y51032D01*

-X461522Y50980D01*

-X461426Y50913D01*

-X461341Y50831D01*

-X461270Y50737D01*

-X461214Y50632D01*

-X461176Y50521D01*

-X461155Y50404D01*

-X461153Y50286D01*

-X461170Y50170D01*

-X461204Y50057D01*

-X461256Y49950D01*

-X461323Y49854D01*

-X461405Y49769D01*

-X461500Y49698D01*

-X461605Y49644D01*

-X462008Y49485D01*

-X462425Y49368D01*

-X462852Y49289D01*

-X463283Y49250D01*

-X463502D01*

-Y39000D01*

-G37*

-G36*

-X459668Y377522D02*X459309Y377671D01*

-X458880Y377774D01*

-X458441Y377809D01*

-X458437Y377808D01*

-Y397000D01*

-X459668D01*

-Y386330D01*

-X459557Y386296D01*

-X459450Y386244D01*

-X459354Y386177D01*

-X459269Y386095D01*

-X459198Y386000D01*

-X459144Y385895D01*

-X458985Y385492D01*

-X458868Y385075D01*

-X458789Y384648D01*

-X458750Y384217D01*

-Y383783D01*

-X458789Y383352D01*

-X458868Y382925D01*

-X458985Y382508D01*

-X459140Y382103D01*

-X459195Y381998D01*

-X459266Y381903D01*

-X459352Y381821D01*

-X459449Y381753D01*

-X459555Y381701D01*

-X459668Y381666D01*

-Y377522D01*

-G37*

-G36*

-Y347522D02*X459309Y347671D01*

-X458880Y347774D01*

-X458441Y347809D01*

-X458437Y347808D01*

-Y372192D01*

-X458441Y372191D01*

-X458880Y372226D01*

-X459309Y372329D01*

-X459668Y372478D01*

-Y356330D01*

-X459557Y356296D01*

-X459450Y356244D01*

-X459354Y356177D01*

-X459269Y356095D01*

-X459198Y356000D01*

-X459144Y355895D01*

-X458985Y355492D01*

-X458868Y355075D01*

-X458789Y354648D01*

-X458750Y354217D01*

-Y353783D01*

-X458789Y353352D01*

-X458868Y352925D01*

-X458985Y352508D01*

-X459140Y352103D01*

-X459195Y351998D01*

-X459266Y351903D01*

-X459352Y351821D01*

-X459449Y351753D01*

-X459555Y351701D01*

-X459668Y351666D01*

-Y347522D01*

-G37*

-G36*

-Y317522D02*X459309Y317671D01*

-X458880Y317774D01*

-X458441Y317809D01*

-X458437Y317808D01*

-Y342192D01*

-X458441Y342191D01*

-X458880Y342226D01*

-X459309Y342329D01*

-X459668Y342478D01*

-Y326330D01*

-X459557Y326296D01*

-X459450Y326244D01*

-X459354Y326177D01*

-X459269Y326095D01*

-X459198Y326000D01*

-X459144Y325895D01*

-X458985Y325492D01*

-X458868Y325075D01*

-X458789Y324648D01*

-X458750Y324217D01*

-Y323783D01*

-X458789Y323352D01*

-X458868Y322925D01*

-X458985Y322508D01*

-X459140Y322103D01*

-X459195Y321998D01*

-X459266Y321903D01*

-X459352Y321821D01*

-X459449Y321753D01*

-X459555Y321701D01*

-X459668Y321666D01*

-Y317522D01*

-G37*

-G36*

-Y287522D02*X459309Y287671D01*

-X458880Y287774D01*

-X458441Y287809D01*

-X458437Y287808D01*

-Y312192D01*

-X458441Y312191D01*

-X458880Y312226D01*

-X459309Y312329D01*

-X459668Y312478D01*

-Y296330D01*

-X459557Y296296D01*

-X459450Y296244D01*

-X459354Y296177D01*

-X459269Y296095D01*

-X459198Y296000D01*

-X459144Y295895D01*

-X458985Y295492D01*

-X458868Y295075D01*

-X458789Y294648D01*

-X458750Y294217D01*

-Y293783D01*

-X458789Y293352D01*

-X458868Y292925D01*

-X458985Y292508D01*

-X459140Y292103D01*

-X459195Y291998D01*

-X459266Y291903D01*

-X459352Y291821D01*

-X459449Y291753D01*

-X459555Y291701D01*

-X459668Y291666D01*

-Y287522D01*

-G37*

-G36*

-Y256522D02*X459309Y256671D01*

-X458880Y256774D01*

-X458441Y256809D01*

-X458437Y256808D01*

-Y282192D01*

-X458441Y282191D01*

-X458880Y282226D01*

-X459309Y282329D01*

-X459668Y282478D01*

-Y266330D01*

-X459557Y266296D01*

-X459450Y266244D01*

-X459354Y266177D01*

-X459269Y266095D01*

-X459198Y266000D01*

-X459144Y265895D01*

-X458985Y265492D01*

-X458868Y265075D01*

-X458789Y264648D01*

-X458750Y264217D01*

-Y263783D01*

-X458789Y263352D01*

-X458868Y262925D01*

-X458985Y262508D01*

-X459140Y262103D01*

-X459195Y261998D01*

-X459266Y261903D01*

-X459352Y261821D01*

-X459449Y261753D01*

-X459555Y261701D01*

-X459668Y261666D01*

-Y256522D01*

-G37*

-G36*

-Y227522D02*X459309Y227671D01*

-X458880Y227774D01*

-X458441Y227809D01*

-X458437Y227808D01*

-Y251192D01*

-X458441Y251191D01*

-X458880Y251226D01*

-X459309Y251329D01*

-X459668Y251478D01*

-Y236330D01*

-X459557Y236296D01*

-X459450Y236244D01*

-X459354Y236177D01*

-X459269Y236095D01*

-X459198Y236000D01*

-X459144Y235895D01*

-X458985Y235492D01*

-X458868Y235075D01*

-X458789Y234648D01*

-X458750Y234217D01*

-Y233783D01*

-X458789Y233352D01*

-X458868Y232925D01*

-X458985Y232508D01*

-X459140Y232103D01*

-X459195Y231998D01*

-X459266Y231903D01*

-X459352Y231821D01*

-X459449Y231753D01*

-X459555Y231701D01*

-X459668Y231666D01*

-Y227522D01*

-G37*

-G36*

-Y197522D02*X459309Y197671D01*

-X458880Y197774D01*

-X458441Y197809D01*

-X458437Y197808D01*

-Y222192D01*

-X458441Y222191D01*

-X458880Y222226D01*

-X459309Y222329D01*

-X459668Y222478D01*

-Y206330D01*

-X459557Y206296D01*

-X459450Y206244D01*

-X459354Y206177D01*

-X459269Y206095D01*

-X459198Y206000D01*

-X459144Y205895D01*

-X458985Y205492D01*

-X458868Y205075D01*

-X458789Y204648D01*

-X458750Y204217D01*

-Y203783D01*

-X458789Y203352D01*

-X458868Y202925D01*

-X458985Y202508D01*

-X459140Y202103D01*

-X459195Y201998D01*

-X459266Y201903D01*

-X459352Y201821D01*

-X459449Y201753D01*

-X459555Y201701D01*

-X459668Y201666D01*

-Y197522D01*

-G37*

-G36*

-Y166522D02*X459309Y166671D01*

-X458880Y166774D01*

-X458441Y166809D01*

-X458437Y166808D01*

-Y192192D01*

-X458441Y192191D01*

-X458880Y192226D01*

-X459309Y192329D01*

-X459668Y192478D01*

-Y176330D01*

-X459557Y176296D01*

-X459450Y176244D01*

-X459354Y176177D01*

-X459269Y176095D01*

-X459198Y176000D01*

-X459144Y175895D01*

-X458985Y175492D01*

-X458868Y175075D01*

-X458789Y174648D01*

-X458750Y174217D01*

-Y173783D01*

-X458789Y173352D01*

-X458868Y172925D01*

-X458985Y172508D01*

-X459140Y172103D01*

-X459195Y171998D01*

-X459266Y171903D01*

-X459352Y171821D01*

-X459449Y171753D01*

-X459555Y171701D01*

-X459668Y171666D01*

-Y166522D01*

-G37*

-G36*

-Y39000D02*X458437D01*

-Y161192D01*

-X458441Y161191D01*

-X458880Y161226D01*

-X459309Y161329D01*

-X459668Y161478D01*

-Y146330D01*

-X459557Y146296D01*

-X459450Y146244D01*

-X459354Y146177D01*

-X459269Y146095D01*

-X459198Y146000D01*

-X459144Y145895D01*

-X458985Y145492D01*

-X458868Y145075D01*

-X458789Y144648D01*

-X458750Y144217D01*

-Y143783D01*

-X458789Y143352D01*

-X458868Y142925D01*

-X458985Y142508D01*

-X459140Y142103D01*

-X459195Y141998D01*

-X459266Y141903D01*

-X459352Y141821D01*

-X459449Y141753D01*

-X459555Y141701D01*

-X459668Y141666D01*

-Y116330D01*

-X459557Y116296D01*

-X459450Y116244D01*

-X459354Y116177D01*

-X459269Y116095D01*

-X459198Y116000D01*

-X459144Y115895D01*

-X458985Y115492D01*

-X458868Y115075D01*

-X458789Y114648D01*

-X458750Y114217D01*

-Y113783D01*

-X458789Y113352D01*

-X458868Y112925D01*

-X458985Y112508D01*

-X459140Y112103D01*

-X459195Y111998D01*

-X459266Y111903D01*

-X459352Y111821D01*

-X459449Y111753D01*

-X459555Y111701D01*

-X459668Y111666D01*

-Y86330D01*

-X459557Y86296D01*

-X459450Y86244D01*

-X459354Y86177D01*

-X459269Y86095D01*

-X459198Y86000D01*

-X459144Y85895D01*

-X458985Y85492D01*

-X458868Y85075D01*

-X458789Y84648D01*

-X458750Y84217D01*

-Y83783D01*

-X458789Y83352D01*

-X458868Y82925D01*

-X458985Y82508D01*

-X459140Y82103D01*

-X459195Y81998D01*

-X459266Y81903D01*

-X459352Y81821D01*

-X459449Y81753D01*

-X459555Y81701D01*

-X459668Y81666D01*

-Y56330D01*

-X459557Y56296D01*

-X459450Y56244D01*

-X459354Y56177D01*

-X459269Y56095D01*

-X459198Y56000D01*

-X459144Y55895D01*

-X458985Y55492D01*

-X458868Y55075D01*

-X458789Y54648D01*

-X458750Y54217D01*

-Y53783D01*

-X458789Y53352D01*

-X458868Y52925D01*

-X458985Y52508D01*

-X459140Y52103D01*

-X459195Y51998D01*

-X459266Y51903D01*

-X459352Y51821D01*

-X459449Y51753D01*

-X459555Y51701D01*

-X459668Y51666D01*

-Y39000D01*

-G37*

-G36*

-X458437D02*X453500D01*

-Y49257D01*

-X456985Y49264D01*

-X457215Y49319D01*

-X457433Y49409D01*

-X457634Y49533D01*

-X457814Y49686D01*

-X457967Y49866D01*

-X458091Y50067D01*

-X458181Y50285D01*

-X458236Y50515D01*

-X458250Y50750D01*

-X458236Y57485D01*

-X458181Y57715D01*

-X458091Y57933D01*

-X457967Y58134D01*

-X457814Y58314D01*

-X457634Y58467D01*

-X457433Y58591D01*

-X457215Y58681D01*

-X456985Y58736D01*

-X456750Y58750D01*

-X453500Y58743D01*

-Y79257D01*

-X456985Y79264D01*

-X457215Y79319D01*

-X457433Y79409D01*

-X457634Y79533D01*

-X457814Y79686D01*

-X457967Y79866D01*

-X458091Y80067D01*

-X458181Y80285D01*

-X458236Y80515D01*

-X458250Y80750D01*

-X458236Y87485D01*

-X458181Y87715D01*

-X458091Y87933D01*

-X457967Y88134D01*

-X457814Y88314D01*

-X457634Y88467D01*

-X457433Y88591D01*

-X457215Y88681D01*

-X456985Y88736D01*

-X456750Y88750D01*

-X453500Y88743D01*

-Y109257D01*

-X456985Y109264D01*

-X457215Y109319D01*

-X457433Y109409D01*

-X457634Y109533D01*

-X457814Y109686D01*

-X457967Y109866D01*

-X458091Y110067D01*

-X458181Y110285D01*

-X458236Y110515D01*

-X458250Y110750D01*

-X458236Y117485D01*

-X458181Y117715D01*

-X458091Y117933D01*

-X457967Y118134D01*

-X457814Y118314D01*

-X457634Y118467D01*

-X457433Y118591D01*

-X457215Y118681D01*

-X456985Y118736D01*

-X456750Y118750D01*

-X453500Y118743D01*

-Y139257D01*

-X456985Y139264D01*

-X457215Y139319D01*

-X457433Y139409D01*

-X457634Y139533D01*

-X457814Y139686D01*

-X457967Y139866D01*

-X458091Y140067D01*

-X458181Y140285D01*

-X458236Y140515D01*

-X458250Y140750D01*

-X458236Y147485D01*

-X458181Y147715D01*

-X458091Y147933D01*

-X457967Y148134D01*

-X457814Y148314D01*

-X457634Y148467D01*

-X457433Y148591D01*

-X457215Y148681D01*

-X456985Y148736D01*

-X456750Y148750D01*

-X453500Y148743D01*

-Y169257D01*

-X456985Y169264D01*

-X457215Y169319D01*

-X457433Y169409D01*

-X457634Y169533D01*

-X457814Y169686D01*

-X457967Y169866D01*

-X458091Y170067D01*

-X458181Y170285D01*

-X458236Y170515D01*

-X458250Y170750D01*

-X458236Y177485D01*

-X458181Y177715D01*

-X458091Y177933D01*

-X457967Y178134D01*

-X457814Y178314D01*

-X457634Y178467D01*

-X457433Y178591D01*

-X457215Y178681D01*

-X456985Y178736D01*

-X456750Y178750D01*

-X453500Y178743D01*

-Y199257D01*

-X456985Y199264D01*

-X457215Y199319D01*

-X457433Y199409D01*

-X457634Y199533D01*

-X457814Y199686D01*

-X457967Y199866D01*

-X458091Y200067D01*

-X458181Y200285D01*

-X458236Y200515D01*

-X458250Y200750D01*

-X458236Y207485D01*

-X458181Y207715D01*

-X458091Y207933D01*

-X457967Y208134D01*

-X457814Y208314D01*

-X457634Y208467D01*

-X457433Y208591D01*

-X457215Y208681D01*

-X456985Y208736D01*

-X456750Y208750D01*

-X453500Y208743D01*

-Y229257D01*

-X456985Y229264D01*

-X457215Y229319D01*

-X457433Y229409D01*

-X457634Y229533D01*

-X457814Y229686D01*

-X457967Y229866D01*

-X458091Y230067D01*

-X458181Y230285D01*

-X458236Y230515D01*

-X458250Y230750D01*

-X458236Y237485D01*

-X458181Y237715D01*

-X458091Y237933D01*

-X457967Y238134D01*

-X457814Y238314D01*

-X457634Y238467D01*

-X457433Y238591D01*

-X457215Y238681D01*

-X456985Y238736D01*

-X456750Y238750D01*

-X453500Y238743D01*

-Y259257D01*

-X456985Y259264D01*

-X457215Y259319D01*

-X457433Y259409D01*

-X457634Y259533D01*

-X457814Y259686D01*

-X457967Y259866D01*

-X458091Y260067D01*

-X458181Y260285D01*

-X458236Y260515D01*

-X458250Y260750D01*

-X458236Y267485D01*

-X458181Y267715D01*

-X458091Y267933D01*

-X457967Y268134D01*

-X457814Y268314D01*

-X457634Y268467D01*

-X457433Y268591D01*

-X457215Y268681D01*

-X456985Y268736D01*

-X456750Y268750D01*

-X453500Y268743D01*

-Y289257D01*

-X456985Y289264D01*

-X457215Y289319D01*

-X457433Y289409D01*

-X457634Y289533D01*

-X457814Y289686D01*

-X457967Y289866D01*

-X458091Y290067D01*

-X458181Y290285D01*

-X458236Y290515D01*

-X458250Y290750D01*

-X458236Y297485D01*

-X458181Y297715D01*

-X458091Y297933D01*

-X457967Y298134D01*

-X457814Y298314D01*

-X457634Y298467D01*

-X457433Y298591D01*

-X457215Y298681D01*

-X456985Y298736D01*

-X456750Y298750D01*

-X453500Y298743D01*

-Y319257D01*

-X456985Y319264D01*

-X457215Y319319D01*

-X457433Y319409D01*

-X457634Y319533D01*

-X457814Y319686D01*

-X457967Y319866D01*

-X458091Y320067D01*

-X458181Y320285D01*

-X458236Y320515D01*

-X458250Y320750D01*

-X458236Y327485D01*

-X458181Y327715D01*

-X458091Y327933D01*

-X457967Y328134D01*

-X457814Y328314D01*

-X457634Y328467D01*

-X457433Y328591D01*

-X457215Y328681D01*

-X456985Y328736D01*

-X456750Y328750D01*

-X453500Y328743D01*

-Y349257D01*

-X456985Y349264D01*

-X457215Y349319D01*

-X457433Y349409D01*

-X457634Y349533D01*

-X457814Y349686D01*

-X457967Y349866D01*

-X458091Y350067D01*

-X458181Y350285D01*

-X458236Y350515D01*

-X458250Y350750D01*

-X458236Y357485D01*

-X458181Y357715D01*

-X458091Y357933D01*

-X457967Y358134D01*

-X457814Y358314D01*

-X457634Y358467D01*

-X457433Y358591D01*

-X457215Y358681D01*

-X456985Y358736D01*

-X456750Y358750D01*

-X453500Y358743D01*

-Y379257D01*

-X456985Y379264D01*

-X457215Y379319D01*

-X457433Y379409D01*

-X457634Y379533D01*

-X457814Y379686D01*

-X457967Y379866D01*

-X458091Y380067D01*

-X458181Y380285D01*

-X458236Y380515D01*

-X458250Y380750D01*

-X458236Y387485D01*

-X458181Y387715D01*

-X458091Y387933D01*

-X457967Y388134D01*

-X457814Y388314D01*

-X457634Y388467D01*

-X457433Y388591D01*

-X457215Y388681D01*

-X456985Y388736D01*

-X456750Y388750D01*

-X453500Y388743D01*

-Y397000D01*

-X458437D01*

-Y377808D01*

-X458002Y377774D01*

-X457573Y377671D01*

-X457166Y377503D01*

-X456790Y377272D01*

-X456455Y376986D01*

-X456169Y376651D01*

-X455938Y376275D01*

-X455770Y375868D01*

-X455667Y375439D01*

-X455632Y375000D01*

-X455667Y374561D01*

-X455770Y374132D01*

-X455938Y373725D01*

-X456169Y373349D01*

-X456455Y373014D01*

-X456790Y372728D01*

-X457166Y372497D01*

-X457573Y372329D01*

-X458002Y372226D01*

-X458437Y372192D01*

-Y347808D01*

-X458002Y347774D01*

-X457573Y347671D01*

-X457166Y347503D01*

-X456790Y347272D01*

-X456455Y346986D01*

-X456169Y346651D01*

-X455938Y346275D01*

-X455770Y345868D01*

-X455667Y345439D01*

-X455632Y345000D01*

-X455667Y344561D01*

-X455770Y344132D01*

-X455938Y343725D01*

-X456169Y343349D01*

-X456455Y343014D01*

-X456790Y342728D01*

-X457166Y342497D01*

-X457573Y342329D01*

-X458002Y342226D01*

-X458437Y342192D01*

-Y317808D01*

-X458002Y317774D01*

-X457573Y317671D01*

-X457166Y317503D01*

-X456790Y317272D01*

-X456455Y316986D01*

-X456169Y316651D01*

-X455938Y316275D01*

-X455770Y315868D01*

-X455667Y315439D01*

-X455632Y315000D01*

-X455667Y314561D01*

-X455770Y314132D01*

-X455938Y313725D01*

-X456169Y313349D01*

-X456455Y313014D01*

-X456790Y312728D01*

-X457166Y312497D01*

-X457573Y312329D01*

-X458002Y312226D01*

-X458437Y312192D01*

-Y287808D01*

-X458002Y287774D01*

-X457573Y287671D01*

-X457166Y287503D01*

-X456790Y287272D01*

-X456455Y286986D01*

-X456169Y286651D01*

-X455938Y286275D01*

-X455770Y285868D01*

-X455667Y285439D01*

-X455632Y285000D01*

-X455667Y284561D01*

-X455770Y284132D01*

-X455938Y283725D01*

-X456169Y283349D01*

-X456455Y283014D01*

-X456790Y282728D01*

-X457166Y282497D01*

-X457573Y282329D01*

-X458002Y282226D01*

-X458437Y282192D01*

-Y256808D01*

-X458002Y256774D01*

-X457573Y256671D01*

-X457166Y256503D01*

-X456790Y256272D01*

-X456455Y255986D01*

-X456169Y255651D01*

-X455938Y255275D01*

-X455770Y254868D01*

-X455667Y254439D01*

-X455632Y254000D01*

-X455667Y253561D01*

-X455770Y253132D01*

-X455938Y252725D01*

-X456169Y252349D01*

-X456455Y252014D01*

-X456790Y251728D01*

-X457166Y251497D01*

-X457573Y251329D01*

-X458002Y251226D01*

-X458437Y251192D01*

-Y227808D01*

-X458002Y227774D01*

-X457573Y227671D01*

-X457166Y227503D01*

-X456790Y227272D01*

-X456455Y226986D01*

-X456169Y226651D01*

-X455938Y226275D01*

-X455770Y225868D01*

-X455667Y225439D01*

-X455632Y225000D01*

-X455667Y224561D01*

-X455770Y224132D01*

-X455938Y223725D01*

-X456169Y223349D01*

-X456455Y223014D01*

-X456790Y222728D01*

-X457166Y222497D01*

-X457573Y222329D01*

-X458002Y222226D01*

-X458437Y222192D01*

-Y197808D01*

-X458002Y197774D01*

-X457573Y197671D01*

-X457166Y197503D01*

-X456790Y197272D01*

-X456455Y196986D01*

-X456169Y196651D01*

-X455938Y196275D01*

-X455770Y195868D01*

-X455667Y195439D01*

-X455632Y195000D01*

-X455667Y194561D01*

-X455770Y194132D01*

-X455938Y193725D01*

-X456169Y193349D01*

-X456455Y193014D01*

-X456790Y192728D01*

-X457166Y192497D01*

-X457573Y192329D01*

-X458002Y192226D01*

-X458437Y192192D01*

-Y166808D01*

-X458002Y166774D01*

-X457573Y166671D01*

-X457166Y166503D01*

-X456790Y166272D01*

-X456455Y165986D01*

-X456169Y165651D01*

-X455938Y165275D01*

-X455770Y164868D01*

-X455667Y164439D01*

-X455632Y164000D01*

-X455667Y163561D01*

-X455770Y163132D01*

-X455938Y162725D01*

-X456169Y162349D01*

-X456455Y162014D01*

-X456790Y161728D01*

-X457166Y161497D01*

-X457573Y161329D01*

-X458002Y161226D01*

-X458437Y161192D01*

-Y39000D01*

-G37*

-G36*

-X453500Y148743D02*X453441Y148743D01*

-Y154000D01*

-X440446D01*

-Y170721D01*

-X440855Y171199D01*

-X441245Y171837D01*

-X441531Y172528D01*

-X441706Y173255D01*

-X441750Y174000D01*

-X441706Y174745D01*

-X441531Y175472D01*

-X441245Y176163D01*

-X440855Y176801D01*

-X440446Y177279D01*

-Y200721D01*

-X440855Y201199D01*

-X441245Y201837D01*

-X441531Y202528D01*

-X441706Y203255D01*

-X441750Y204000D01*

-X441706Y204745D01*

-X441531Y205472D01*

-X441245Y206163D01*

-X440855Y206801D01*

-X440446Y207279D01*

-Y230721D01*

-X440855Y231199D01*

-X441245Y231837D01*

-X441531Y232528D01*

-X441706Y233255D01*

-X441750Y234000D01*

-X441706Y234745D01*

-X441531Y235472D01*

-X441245Y236163D01*

-X440855Y236801D01*

-X440446Y237279D01*

-Y260721D01*

-X440855Y261199D01*

-X441245Y261837D01*

-X441531Y262528D01*

-X441706Y263255D01*

-X441750Y264000D01*

-X441706Y264745D01*

-X441531Y265472D01*

-X441245Y266163D01*

-X440855Y266801D01*

-X440446Y267279D01*

-Y290721D01*

-X440855Y291199D01*

-X441245Y291837D01*

-X441531Y292528D01*

-X441706Y293255D01*

-X441750Y294000D01*

-X441706Y294745D01*

-X441531Y295472D01*

-X441245Y296163D01*

-X440855Y296801D01*

-X440446Y297279D01*

-Y320721D01*

-X440855Y321199D01*

-X441245Y321837D01*

-X441531Y322528D01*

-X441706Y323255D01*

-X441750Y324000D01*

-X441706Y324745D01*

-X441531Y325472D01*

-X441245Y326163D01*

-X440855Y326801D01*

-X440446Y327279D01*

-Y350721D01*

-X440855Y351199D01*

-X441245Y351837D01*

-X441531Y352528D01*

-X441706Y353255D01*

-X441750Y354000D01*

-X441706Y354745D01*

-X441531Y355472D01*

-X441245Y356163D01*

-X440855Y356801D01*

-X440446Y357279D01*

-Y380721D01*

-X440855Y381199D01*

-X441245Y381837D01*

-X441531Y382528D01*

-X441706Y383255D01*

-X441750Y384000D01*

-X441706Y384745D01*

-X441531Y385472D01*

-X441245Y386163D01*

-X440855Y386801D01*

-X440446Y387279D01*

-Y397000D01*

-X453500D01*

-Y388743D01*

-X450015Y388736D01*

-X449785Y388681D01*

-X449567Y388591D01*

-X449366Y388467D01*

-X449186Y388314D01*

-X449033Y388134D01*

-X448909Y387933D01*

-X448819Y387715D01*

-X448764Y387485D01*

-X448750Y387250D01*

-X448764Y380515D01*

-X448819Y380285D01*

-X448909Y380067D01*

-X449033Y379866D01*

-X449186Y379686D01*

-X449366Y379533D01*

-X449567Y379409D01*

-X449785Y379319D01*

-X450015Y379264D01*

-X450250Y379250D01*

-X453500Y379257D01*

-Y358743D01*

-X450015Y358736D01*

-X449785Y358681D01*

-X449567Y358591D01*

-X449366Y358467D01*

-X449186Y358314D01*

-X449033Y358134D01*

-X448909Y357933D01*

-X448819Y357715D01*

-X448764Y357485D01*

-X448750Y357250D01*

-X448764Y350515D01*

-X448819Y350285D01*

-X448909Y350067D01*

-X449033Y349866D01*

-X449186Y349686D01*

-X449366Y349533D01*

-X449567Y349409D01*

-X449785Y349319D01*

-X450015Y349264D01*

-X450250Y349250D01*

-X453500Y349257D01*

-Y328743D01*

-X450015Y328736D01*

-X449785Y328681D01*

-X449567Y328591D01*

-X449366Y328467D01*

-X449186Y328314D01*

-X449033Y328134D01*

-X448909Y327933D01*

-X448819Y327715D01*

-X448764Y327485D01*

-X448750Y327250D01*

-X448764Y320515D01*

-X448819Y320285D01*

-X448909Y320067D01*

-X449033Y319866D01*

-X449186Y319686D01*

-X449366Y319533D01*

-X449567Y319409D01*

-X449785Y319319D01*

-X450015Y319264D01*

-X450250Y319250D01*

-X453500Y319257D01*

-Y298743D01*

-X450015Y298736D01*

-X449785Y298681D01*

-X449567Y298591D01*

-X449366Y298467D01*

-X449186Y298314D01*

-X449033Y298134D01*

-X448909Y297933D01*

-X448819Y297715D01*

-X448764Y297485D01*

-X448750Y297250D01*

-X448764Y290515D01*

-X448819Y290285D01*

-X448909Y290067D01*

-X449033Y289866D01*

-X449186Y289686D01*

-X449366Y289533D01*

-X449567Y289409D01*

-X449785Y289319D01*

-X450015Y289264D01*

-X450250Y289250D01*

-X453500Y289257D01*

-Y268743D01*

-X450015Y268736D01*

-X449785Y268681D01*

-X449567Y268591D01*

-X449366Y268467D01*

-X449186Y268314D01*

-X449033Y268134D01*

-X448909Y267933D01*

-X448819Y267715D01*

-X448764Y267485D01*

-X448750Y267250D01*

-X448764Y260515D01*

-X448819Y260285D01*

-X448909Y260067D01*

-X449033Y259866D01*

-X449186Y259686D01*

-X449366Y259533D01*

-X449567Y259409D01*

-X449785Y259319D01*

-X450015Y259264D01*

-X450250Y259250D01*

-X453500Y259257D01*

-Y238743D01*

-X450015Y238736D01*

-X449785Y238681D01*

-X449567Y238591D01*

-X449366Y238467D01*

-X449186Y238314D01*

-X449033Y238134D01*

-X448909Y237933D01*

-X448819Y237715D01*

-X448764Y237485D01*

-X448750Y237250D01*

-X448764Y230515D01*

-X448819Y230285D01*

-X448909Y230067D01*

-X449033Y229866D01*

-X449186Y229686D01*

-X449366Y229533D01*

-X449567Y229409D01*

-X449785Y229319D01*

-X450015Y229264D01*

-X450250Y229250D01*

-X453500Y229257D01*

-Y208743D01*

-X450015Y208736D01*

-X449785Y208681D01*

-X449567Y208591D01*

-X449366Y208467D01*

-X449186Y208314D01*

-X449033Y208134D01*

-X448909Y207933D01*

-X448819Y207715D01*

-X448764Y207485D01*

-X448750Y207250D01*

-X448764Y200515D01*

-X448819Y200285D01*

-X448909Y200067D01*

-X449033Y199866D01*

-X449186Y199686D01*

-X449366Y199533D01*

-X449567Y199409D01*

-X449785Y199319D01*

-X450015Y199264D01*

-X450250Y199250D01*

-X453500Y199257D01*

-Y178743D01*

-X450015Y178736D01*

-X449785Y178681D01*

-X449567Y178591D01*

-X449366Y178467D01*

-X449186Y178314D01*

-X449033Y178134D01*

-X448909Y177933D01*

-X448819Y177715D01*

-X448764Y177485D01*

-X448750Y177250D01*

-X448764Y170515D01*

-X448819Y170285D01*

-X448909Y170067D01*

-X449033Y169866D01*

-X449186Y169686D01*

-X449366Y169533D01*

-X449567Y169409D01*

-X449785Y169319D01*

-X450015Y169264D01*

-X450250Y169250D01*

-X453500Y169257D01*

-Y148743D01*

-G37*

-G36*

-Y118743D02*X453441Y118743D01*

-Y139257D01*

-X453500Y139257D01*

-Y118743D01*

-G37*

-G36*

-Y88743D02*X453441Y88743D01*

-Y109257D01*

-X453500Y109257D01*

-Y88743D01*

-G37*

-G36*

-Y39000D02*X440446D01*

-Y54695D01*

-X440449Y54694D01*

-X440731Y54717D01*

-X441007Y54783D01*

-X441269Y54891D01*

-X441510Y55039D01*

-X441726Y55223D01*

-X441910Y55439D01*

-X442058Y55680D01*

-X442166Y55942D01*

-X442232Y56218D01*

-X442249Y56500D01*

-X442232Y56782D01*

-X442166Y57058D01*

-X442058Y57320D01*

-X441910Y57561D01*

-X441726Y57777D01*

-X441510Y57961D01*

-X441269Y58109D01*

-X441007Y58217D01*

-X440731Y58283D01*

-X440449Y58306D01*

-X440446Y58305D01*

-Y67000D01*

-X453441D01*

-Y79257D01*

-X453500Y79257D01*

-Y58743D01*

-X450015Y58736D01*

-X449785Y58681D01*

-X449567Y58591D01*

-X449366Y58467D01*

-X449186Y58314D01*

-X449033Y58134D01*

-X448909Y57933D01*

-X448819Y57715D01*

-X448764Y57485D01*

-X448750Y57250D01*

-X448764Y50515D01*

-X448819Y50285D01*

-X448909Y50067D01*

-X449033Y49866D01*

-X449186Y49686D01*

-X449366Y49533D01*

-X449567Y49409D01*

-X449785Y49319D01*

-X450015Y49264D01*

-X450250Y49250D01*

-X453500Y49257D01*

-Y39000D01*

-G37*

-G36*

-X440446Y387279D02*X440369Y387369D01*

-X439801Y387855D01*

-X439163Y388245D01*

-X438472Y388531D01*

-X437745Y388706D01*

-X437000Y388765D01*

-X436255Y388706D01*

-X435528Y388531D01*

-X434837Y388245D01*

-X434446Y388006D01*

-Y397000D01*

-X440446D01*

-Y387279D01*

-G37*

-G36*

-Y357279D02*X440369Y357369D01*

-X439801Y357855D01*

-X439163Y358245D01*

-X438472Y358531D01*

-X437745Y358706D01*

-X437000Y358765D01*

-X436255Y358706D01*

-X435528Y358531D01*

-X434837Y358245D01*

-X434446Y358006D01*

-Y379994D01*

-X434837Y379755D01*

-X435528Y379469D01*

-X436255Y379294D01*

-X437000Y379235D01*

-X437745Y379294D01*

-X438472Y379469D01*

-X439163Y379755D01*

-X439801Y380145D01*

-X440369Y380631D01*

-X440446Y380721D01*

-Y357279D01*

-G37*

-G36*

-Y327279D02*X440369Y327369D01*

-X439801Y327855D01*

-X439163Y328245D01*

-X438472Y328531D01*

-X437745Y328706D01*

-X437000Y328765D01*

-X436255Y328706D01*

-X435528Y328531D01*

-X434837Y328245D01*

-X434446Y328006D01*

-Y349994D01*

-X434837Y349755D01*

-X435528Y349469D01*

-X436255Y349294D01*

-X437000Y349235D01*

-X437745Y349294D01*

-X438472Y349469D01*

-X439163Y349755D01*

-X439801Y350145D01*

-X440369Y350631D01*

-X440446Y350721D01*

-Y327279D01*

-G37*

-G36*

-Y297279D02*X440369Y297369D01*

-X439801Y297855D01*

-X439163Y298245D01*

-X438472Y298531D01*

-X437745Y298706D01*

-X437000Y298765D01*

-X436255Y298706D01*

-X435528Y298531D01*

-X434837Y298245D01*

-X434446Y298006D01*

-Y319994D01*

-X434837Y319755D01*

-X435528Y319469D01*

-X436255Y319294D01*

-X437000Y319235D01*

-X437745Y319294D01*

-X438472Y319469D01*

-X439163Y319755D01*

-X439801Y320145D01*

-X440369Y320631D01*

-X440446Y320721D01*

-Y297279D01*

-G37*

-G36*

-Y267279D02*X440369Y267369D01*

-X439801Y267855D01*

-X439163Y268245D01*

-X438472Y268531D01*

-X437745Y268706D01*

-X437000Y268765D01*

-X436255Y268706D01*

-X435528Y268531D01*

-X434837Y268245D01*

-X434446Y268006D01*

-Y289994D01*

-X434837Y289755D01*

-X435528Y289469D01*

-X436255Y289294D01*

-X437000Y289235D01*

-X437745Y289294D01*

-X438472Y289469D01*

-X439163Y289755D01*

-X439801Y290145D01*

-X440369Y290631D01*

-X440446Y290721D01*

-Y267279D01*

-G37*

-G36*

-Y237279D02*X440369Y237369D01*

-X439801Y237855D01*

-X439163Y238245D01*

-X438472Y238531D01*

-X437745Y238706D01*

-X437000Y238765D01*

-X436255Y238706D01*

-X435528Y238531D01*

-X434837Y238245D01*

-X434446Y238006D01*

-Y259994D01*

-X434837Y259755D01*

-X435528Y259469D01*

-X436255Y259294D01*

-X437000Y259235D01*

-X437745Y259294D01*

-X438472Y259469D01*

-X439163Y259755D01*

-X439801Y260145D01*

-X440369Y260631D01*

-X440446Y260721D01*

-Y237279D01*

-G37*

-G36*

-Y207279D02*X440369Y207369D01*

-X439801Y207855D01*

-X439163Y208245D01*

-X438472Y208531D01*

-X437745Y208706D01*

-X437000Y208765D01*

-X436255Y208706D01*

-X435528Y208531D01*

-X434837Y208245D01*

-X434446Y208006D01*

-Y229994D01*

-X434837Y229755D01*

-X435528Y229469D01*

-X436255Y229294D01*

-X437000Y229235D01*

-X437745Y229294D01*

-X438472Y229469D01*

-X439163Y229755D01*

-X439801Y230145D01*

-X440369Y230631D01*

-X440446Y230721D01*

-Y207279D01*

-G37*

-G36*

-Y177279D02*X440369Y177369D01*

-X439801Y177855D01*

-X439163Y178245D01*

-X438472Y178531D01*

-X437745Y178706D01*

-X437000Y178765D01*

-X436255Y178706D01*

-X435528Y178531D01*

-X434837Y178245D01*

-X434446Y178006D01*

-Y199994D01*

-X434837Y199755D01*

-X435528Y199469D01*

-X436255Y199294D01*

-X437000Y199235D01*

-X437745Y199294D01*

-X438472Y199469D01*

-X439163Y199755D01*

-X439801Y200145D01*

-X440369Y200631D01*

-X440446Y200721D01*

-Y177279D01*

-G37*

-G36*

-Y154000D02*X434446D01*

-Y169994D01*

-X434837Y169755D01*

-X435528Y169469D01*

-X436255Y169294D01*

-X437000Y169235D01*

-X437745Y169294D01*

-X438472Y169469D01*

-X439163Y169755D01*

-X439801Y170145D01*

-X440369Y170631D01*

-X440446Y170721D01*

-Y154000D01*

-G37*

-G36*

-Y39000D02*X434446D01*

-Y54695D01*

-X434449Y54694D01*

-X434731Y54717D01*

-X435007Y54783D01*

-X435269Y54891D01*

-X435510Y55039D01*

-X435726Y55223D01*

-X435910Y55439D01*

-X436058Y55680D01*

-X436166Y55942D01*

-X436232Y56218D01*

-X436249Y56500D01*

-X436232Y56782D01*

-X436166Y57058D01*

-X436058Y57320D01*

-X435910Y57561D01*

-X435726Y57777D01*

-X435510Y57961D01*

-X435269Y58109D01*

-X435007Y58217D01*

-X434731Y58283D01*

-X434449Y58306D01*

-X434446Y58305D01*

-Y67000D01*

-X440446D01*

-Y58305D01*

-X440167Y58283D01*

-X439891Y58217D01*

-X439629Y58109D01*

-X439388Y57961D01*

-X439172Y57777D01*

-X438988Y57561D01*

-X438840Y57320D01*

-X438732Y57058D01*

-X438666Y56782D01*

-X438643Y56500D01*

-X438666Y56218D01*

-X438732Y55942D01*

-X438840Y55680D01*

-X438988Y55439D01*

-X439172Y55223D01*

-X439388Y55039D01*

-X439629Y54891D01*

-X439891Y54783D01*

-X440167Y54717D01*

-X440446Y54695D01*

-Y39000D01*

-G37*

-G36*

-X434446Y154000D02*X426993D01*

-Y169236D01*

-X427000Y169235D01*

-X427745Y169294D01*

-X428472Y169469D01*

-X429163Y169755D01*

-X429801Y170145D01*

-X430369Y170631D01*

-X430855Y171199D01*

-X431245Y171837D01*

-X431531Y172528D01*

-X431706Y173255D01*

-X431750Y174000D01*

-X431706Y174745D01*

-X431531Y175472D01*

-X431245Y176163D01*

-X430855Y176801D01*

-X430369Y177369D01*

-X429801Y177855D01*

-X429163Y178245D01*

-X428472Y178531D01*

-X427745Y178706D01*

-X427000Y178765D01*

-X426993Y178764D01*

-Y199236D01*

-X427000Y199235D01*

-X427745Y199294D01*

-X428472Y199469D01*

-X429163Y199755D01*

-X429801Y200145D01*

-X430369Y200631D01*

-X430855Y201199D01*

-X431245Y201837D01*

-X431531Y202528D01*

-X431706Y203255D01*

-X431750Y204000D01*

-X431706Y204745D01*

-X431531Y205472D01*

-X431245Y206163D01*

-X430855Y206801D01*

-X430369Y207369D01*

-X429801Y207855D01*

-X429163Y208245D01*

-X428472Y208531D01*

-X427745Y208706D01*

-X427000Y208765D01*

-X426993Y208764D01*

-Y229236D01*

-X427000Y229235D01*

-X427745Y229294D01*

-X428472Y229469D01*

-X429163Y229755D01*

-X429801Y230145D01*

-X430369Y230631D01*

-X430855Y231199D01*

-X431245Y231837D01*

-X431531Y232528D01*

-X431706Y233255D01*

-X431750Y234000D01*

-X431706Y234745D01*

-X431531Y235472D01*

-X431245Y236163D01*

-X430855Y236801D01*

-X430369Y237369D01*

-X429801Y237855D01*

-X429163Y238245D01*

-X428472Y238531D01*

-X427745Y238706D01*

-X427000Y238765D01*

-X426993Y238764D01*

-Y259236D01*

-X427000Y259235D01*

-X427745Y259294D01*

-X428472Y259469D01*

-X429163Y259755D01*

-X429801Y260145D01*

-X430369Y260631D01*

-X430855Y261199D01*

-X431245Y261837D01*

-X431531Y262528D01*

-X431706Y263255D01*

-X431750Y264000D01*

-X431706Y264745D01*

-X431531Y265472D01*

-X431245Y266163D01*

-X430855Y266801D01*

-X430369Y267369D01*

-X429801Y267855D01*

-X429163Y268245D01*

-X428472Y268531D01*

-X427745Y268706D01*

-X427000Y268765D01*

-X426993Y268764D01*

-Y289236D01*

-X427000Y289235D01*

-X427745Y289294D01*

-X428472Y289469D01*

-X429163Y289755D01*

-X429801Y290145D01*

-X430369Y290631D01*

-X430855Y291199D01*

-X431245Y291837D01*

-X431531Y292528D01*

-X431706Y293255D01*

-X431750Y294000D01*

-X431706Y294745D01*

-X431531Y295472D01*

-X431245Y296163D01*

-X430855Y296801D01*

-X430369Y297369D01*

-X429801Y297855D01*

-X429163Y298245D01*

-X428472Y298531D01*

-X427745Y298706D01*

-X427000Y298765D01*

-X426993Y298764D01*

-Y319236D01*

-X427000Y319235D01*

-X427745Y319294D01*

-X428472Y319469D01*

-X429163Y319755D01*

-X429801Y320145D01*

-X430369Y320631D01*

-X430855Y321199D01*

-X431245Y321837D01*

-X431531Y322528D01*

-X431706Y323255D01*

-X431750Y324000D01*

-X431706Y324745D01*

-X431531Y325472D01*

-X431245Y326163D01*

-X430855Y326801D01*

-X430369Y327369D01*

-X429801Y327855D01*

-X429163Y328245D01*

-X428472Y328531D01*

-X427745Y328706D01*

-X427000Y328765D01*

-X426993Y328764D01*

-Y349236D01*

-X427000Y349235D01*

-X427745Y349294D01*

-X428472Y349469D01*

-X429163Y349755D01*

-X429801Y350145D01*

-X430369Y350631D01*

-X430855Y351199D01*

-X431245Y351837D01*

-X431531Y352528D01*

-X431706Y353255D01*

-X431750Y354000D01*

-X431706Y354745D01*

-X431531Y355472D01*

-X431245Y356163D01*

-X430855Y356801D01*

-X430369Y357369D01*

-X429801Y357855D01*

-X429163Y358245D01*

-X428472Y358531D01*

-X427745Y358706D01*

-X427000Y358765D01*

-X426993Y358764D01*

-Y379236D01*

-X427000Y379235D01*

-X427745Y379294D01*

-X428472Y379469D01*

-X429163Y379755D01*

-X429801Y380145D01*

-X430369Y380631D01*

-X430855Y381199D01*

-X431245Y381837D01*

-X431531Y382528D01*

-X431706Y383255D01*

-X431750Y384000D01*

-X431706Y384745D01*

-X431531Y385472D01*

-X431245Y386163D01*

-X430855Y386801D01*

-X430369Y387369D01*

-X429801Y387855D01*

-X429163Y388245D01*

-X428472Y388531D01*

-X427745Y388706D01*

-X427000Y388765D01*

-X426993Y388764D01*

-Y397000D01*

-X434446D01*

-Y388006D01*

-X434199Y387855D01*

-X433631Y387369D01*

-X433145Y386801D01*

-X432755Y386163D01*

-X432469Y385472D01*

-X432294Y384745D01*

-X432235Y384000D01*

-X432294Y383255D01*

-X432469Y382528D01*

-X432755Y381837D01*

-X433145Y381199D01*

-X433631Y380631D01*

-X434199Y380145D01*

-X434446Y379994D01*

-Y358006D01*

-X434199Y357855D01*

-X433631Y357369D01*

-X433145Y356801D01*

-X432755Y356163D01*

-X432469Y355472D01*

-X432294Y354745D01*

-X432235Y354000D01*

-X432294Y353255D01*

-X432469Y352528D01*

-X432755Y351837D01*

-X433145Y351199D01*

-X433631Y350631D01*

-X434199Y350145D01*

-X434446Y349994D01*

-Y328006D01*

-X434199Y327855D01*

-X433631Y327369D01*

-X433145Y326801D01*

-X432755Y326163D01*

-X432469Y325472D01*

-X432294Y324745D01*

-X432235Y324000D01*

-X432294Y323255D01*

-X432469Y322528D01*

-X432755Y321837D01*

-X433145Y321199D01*

-X433631Y320631D01*

-X434199Y320145D01*

-X434446Y319994D01*

-Y298006D01*

-X434199Y297855D01*

-X433631Y297369D01*

-X433145Y296801D01*

-X432755Y296163D01*

-X432469Y295472D01*

-X432294Y294745D01*

-X432235Y294000D01*

-X432294Y293255D01*

-X432469Y292528D01*

-X432755Y291837D01*

-X433145Y291199D01*

-X433631Y290631D01*

-X434199Y290145D01*

-X434446Y289994D01*

-Y268006D01*

-X434199Y267855D01*

-X433631Y267369D01*

-X433145Y266801D01*

-X432755Y266163D01*

-X432469Y265472D01*

-X432294Y264745D01*

-X432235Y264000D01*

-X432294Y263255D01*

-X432469Y262528D01*

-X432755Y261837D01*

-X433145Y261199D01*

-X433631Y260631D01*

-X434199Y260145D01*

-X434446Y259994D01*

-Y238006D01*

-X434199Y237855D01*

-X433631Y237369D01*

-X433145Y236801D01*

-X432755Y236163D01*

-X432469Y235472D01*

-X432294Y234745D01*

-X432235Y234000D01*

-X432294Y233255D01*

-X432469Y232528D01*

-X432755Y231837D01*

-X433145Y231199D01*

-X433631Y230631D01*

-X434199Y230145D01*

-X434446Y229994D01*

-Y208006D01*

-X434199Y207855D01*

-X433631Y207369D01*

-X433145Y206801D01*

-X432755Y206163D01*

-X432469Y205472D01*

-X432294Y204745D01*

-X432235Y204000D01*

-X432294Y203255D01*

-X432469Y202528D01*

-X432755Y201837D01*

-X433145Y201199D01*

-X433631Y200631D01*

-X434199Y200145D01*

-X434446Y199994D01*

-Y178006D01*

-X434199Y177855D01*

-X433631Y177369D01*

-X433145Y176801D01*

-X432755Y176163D01*

-X432469Y175472D01*

-X432294Y174745D01*

-X432235Y174000D01*

-X432294Y173255D01*

-X432469Y172528D01*

-X432755Y171837D01*

-X433145Y171199D01*

-X433631Y170631D01*

-X434199Y170145D01*

-X434446Y169994D01*

-Y154000D01*

-G37*

-G36*

-X426993D02*X420832D01*

-Y171670D01*

-X420943Y171704D01*

-X421050Y171756D01*

-X421146Y171823D01*

-X421231Y171905D01*

-X421302Y172000D01*

-X421356Y172105D01*

-X421515Y172508D01*

-X421632Y172925D01*

-X421711Y173352D01*

-X421750Y173783D01*

-Y174217D01*

-X421711Y174648D01*

-X421632Y175075D01*

-X421515Y175492D01*

-X421360Y175897D01*

-X421305Y176002D01*

-X421234Y176097D01*

-X421148Y176179D01*

-X421051Y176247D01*

-X420945Y176299D01*

-X420832Y176334D01*

-Y201670D01*

-X420943Y201704D01*

-X421050Y201756D01*

-X421146Y201823D01*

-X421231Y201905D01*

-X421302Y202000D01*

-X421356Y202105D01*

-X421515Y202508D01*

-X421632Y202925D01*

-X421711Y203352D01*

-X421750Y203783D01*

-Y204217D01*

-X421711Y204648D01*

-X421632Y205075D01*

-X421515Y205492D01*

-X421360Y205897D01*

-X421305Y206002D01*

-X421234Y206097D01*

-X421148Y206179D01*

-X421051Y206247D01*

-X420945Y206299D01*

-X420832Y206334D01*

-Y231670D01*

-X420943Y231704D01*

-X421050Y231756D01*

-X421146Y231823D01*

-X421231Y231905D01*

-X421302Y232000D01*

-X421356Y232105D01*

-X421515Y232508D01*

-X421632Y232925D01*

-X421711Y233352D01*

-X421750Y233783D01*

-Y234217D01*

-X421711Y234648D01*

-X421632Y235075D01*

-X421515Y235492D01*

-X421360Y235897D01*

-X421305Y236002D01*

-X421234Y236097D01*

-X421148Y236179D01*

-X421051Y236247D01*

-X420945Y236299D01*

-X420832Y236334D01*

-Y261670D01*

-X420943Y261704D01*

-X421050Y261756D01*

-X421146Y261823D01*

-X421231Y261905D01*

-X421302Y262000D01*

-X421356Y262105D01*

-X421515Y262508D01*

-X421632Y262925D01*

-X421711Y263352D01*

-X421750Y263783D01*

-Y264217D01*

-X421711Y264648D01*

-X421632Y265075D01*

-X421515Y265492D01*

-X421360Y265897D01*

-X421305Y266002D01*

-X421234Y266097D01*

-X421148Y266179D01*

-X421051Y266247D01*

-X420945Y266299D01*

-X420832Y266334D01*

-Y291670D01*

-X420943Y291704D01*

-X421050Y291756D01*

-X421146Y291823D01*

-X421231Y291905D01*

-X421302Y292000D01*

-X421356Y292105D01*

-X421515Y292508D01*

-X421632Y292925D01*

-X421711Y293352D01*

-X421750Y293783D01*

-Y294217D01*

-X421711Y294648D01*

-X421632Y295075D01*

-X421515Y295492D01*

-X421360Y295897D01*

-X421305Y296002D01*

-X421234Y296097D01*

-X421148Y296179D01*

-X421051Y296247D01*

-X420945Y296299D01*

-X420832Y296334D01*

-Y321670D01*

-X420943Y321704D01*

-X421050Y321756D01*

-X421146Y321823D01*

-X421231Y321905D01*

-X421302Y322000D01*

-X421356Y322105D01*

-X421515Y322508D01*

-X421632Y322925D01*

-X421711Y323352D01*

-X421750Y323783D01*

-Y324217D01*

-X421711Y324648D01*

-X421632Y325075D01*

-X421515Y325492D01*

-X421360Y325897D01*

-X421305Y326002D01*

-X421234Y326097D01*

-X421148Y326179D01*

-X421051Y326247D01*

-X420945Y326299D01*

-X420832Y326334D01*

-Y351670D01*

-X420943Y351704D01*

-X421050Y351756D01*

-X421146Y351823D01*

-X421231Y351905D01*

-X421302Y352000D01*

-X421356Y352105D01*

-X421515Y352508D01*

-X421632Y352925D01*

-X421711Y353352D01*

-X421750Y353783D01*

-Y354217D01*

-X421711Y354648D01*

-X421632Y355075D01*

-X421515Y355492D01*

-X421360Y355897D01*

-X421305Y356002D01*

-X421234Y356097D01*

-X421148Y356179D01*

-X421051Y356247D01*

-X420945Y356299D01*

-X420832Y356334D01*

-Y381670D01*

-X420943Y381704D01*

-X421050Y381756D01*

-X421146Y381823D01*

-X421231Y381905D01*

-X421302Y382000D01*

-X421356Y382105D01*

-X421515Y382508D01*

-X421632Y382925D01*

-X421711Y383352D01*

-X421750Y383783D01*

-Y384217D01*

-X421711Y384648D01*

-X421632Y385075D01*

-X421515Y385492D01*

-X421360Y385897D01*

-X421305Y386002D01*

-X421234Y386097D01*

-X421148Y386179D01*

-X421051Y386247D01*

-X420945Y386299D01*

-X420832Y386334D01*

-Y397000D01*

-X426993D01*

-Y388764D01*

-X426255Y388706D01*

-X425528Y388531D01*

-X424837Y388245D01*

-X424199Y387855D01*

-X423631Y387369D01*

-X423145Y386801D01*

-X422755Y386163D01*

-X422469Y385472D01*

-X422294Y384745D01*

-X422235Y384000D01*

-X422294Y383255D01*

-X422469Y382528D01*

-X422755Y381837D01*

-X423145Y381199D01*

-X423631Y380631D01*

-X424199Y380145D01*

-X424837Y379755D01*

-X425528Y379469D01*

-X426255Y379294D01*

-X426993Y379236D01*

-Y358764D01*

-X426255Y358706D01*

-X425528Y358531D01*

-X424837Y358245D01*

-X424199Y357855D01*

-X423631Y357369D01*

-X423145Y356801D01*

-X422755Y356163D01*

-X422469Y355472D01*

-X422294Y354745D01*

-X422235Y354000D01*

-X422294Y353255D01*

-X422469Y352528D01*

-X422755Y351837D01*

-X423145Y351199D01*

-X423631Y350631D01*

-X424199Y350145D01*

-X424837Y349755D01*

-X425528Y349469D01*

-X426255Y349294D01*

-X426993Y349236D01*

-Y328764D01*

-X426255Y328706D01*

-X425528Y328531D01*

-X424837Y328245D01*

-X424199Y327855D01*

-X423631Y327369D01*

-X423145Y326801D01*

-X422755Y326163D01*

-X422469Y325472D01*

-X422294Y324745D01*

-X422235Y324000D01*

-X422294Y323255D01*

-X422469Y322528D01*

-X422755Y321837D01*

-X423145Y321199D01*

-X423631Y320631D01*

-X424199Y320145D01*

-X424837Y319755D01*

-X425528Y319469D01*

-X426255Y319294D01*

-X426993Y319236D01*

-Y298764D01*

-X426255Y298706D01*

-X425528Y298531D01*

-X424837Y298245D01*

-X424199Y297855D01*

-X423631Y297369D01*

-X423145Y296801D01*

-X422755Y296163D01*

-X422469Y295472D01*

-X422294Y294745D01*

-X422235Y294000D01*

-X422294Y293255D01*

-X422469Y292528D01*

-X422755Y291837D01*

-X423145Y291199D01*

-X423631Y290631D01*

-X424199Y290145D01*

-X424837Y289755D01*

-X425528Y289469D01*

-X426255Y289294D01*

-X426993Y289236D01*

-Y268764D01*

-X426255Y268706D01*

-X425528Y268531D01*

-X424837Y268245D01*

-X424199Y267855D01*

-X423631Y267369D01*

-X423145Y266801D01*

-X422755Y266163D01*

-X422469Y265472D01*

-X422294Y264745D01*

-X422235Y264000D01*

-X422294Y263255D01*

-X422469Y262528D01*

-X422755Y261837D01*

-X423145Y261199D01*

-X423631Y260631D01*

-X424199Y260145D01*

-X424837Y259755D01*

-X425528Y259469D01*

-X426255Y259294D01*

-X426993Y259236D01*

-Y238764D01*

-X426255Y238706D01*

-X425528Y238531D01*

-X424837Y238245D01*

-X424199Y237855D01*

-X423631Y237369D01*

-X423145Y236801D01*

-X422755Y236163D01*

-X422469Y235472D01*

-X422294Y234745D01*

-X422235Y234000D01*

-X422294Y233255D01*

-X422469Y232528D01*

-X422755Y231837D01*

-X423145Y231199D01*

-X423631Y230631D01*

-X424199Y230145D01*

-X424837Y229755D01*

-X425528Y229469D01*

-X426255Y229294D01*

-X426993Y229236D01*

-Y208764D01*

-X426255Y208706D01*

-X425528Y208531D01*

-X424837Y208245D01*

-X424199Y207855D01*

-X423631Y207369D01*

-X423145Y206801D01*

-X422755Y206163D01*

-X422469Y205472D01*

-X422294Y204745D01*

-X422235Y204000D01*

-X422294Y203255D01*

-X422469Y202528D01*

-X422755Y201837D01*

-X423145Y201199D01*

-X423631Y200631D01*

-X424199Y200145D01*

-X424837Y199755D01*

-X425528Y199469D01*

-X426255Y199294D01*

-X426993Y199236D01*

-Y178764D01*

-X426255Y178706D01*

-X425528Y178531D01*

-X424837Y178245D01*

-X424199Y177855D01*

-X423631Y177369D01*

-X423145Y176801D01*

-X422755Y176163D01*

-X422469Y175472D01*

-X422294Y174745D01*

-X422235Y174000D01*

-X422294Y173255D01*

-X422469Y172528D01*

-X422755Y171837D01*

-X423145Y171199D01*

-X423631Y170631D01*

-X424199Y170145D01*

-X424837Y169755D01*

-X425528Y169469D01*

-X426255Y169294D01*

-X426993Y169236D01*

-Y154000D01*

-G37*

-G36*

-X420832D02*X417002D01*

-Y169250D01*

-X417217D01*

-X417648Y169289D01*

-X418075Y169368D01*

-X418492Y169485D01*

-X418897Y169640D01*

-X419002Y169695D01*

-X419097Y169766D01*

-X419179Y169852D01*

-X419247Y169949D01*

-X419299Y170055D01*

-X419334Y170169D01*

-X419350Y170286D01*

-X419348Y170405D01*

-X419327Y170522D01*

-X419289Y170634D01*

-X419233Y170738D01*

-X419162Y170833D01*

-X419076Y170915D01*

-X418979Y170983D01*

-X418873Y171035D01*

-X418759Y171070D01*

-X418642Y171086D01*

-X418523Y171084D01*

-X418406Y171064D01*

-X418295Y171023D01*

-X418020Y170914D01*

-X417735Y170834D01*

-X417443Y170780D01*

-X417148Y170753D01*

-X417002D01*

-Y177247D01*

-X417148D01*

-X417443Y177220D01*

-X417735Y177166D01*

-X418020Y177086D01*

-X418297Y176980D01*

-X418407Y176940D01*

-X418524Y176919D01*

-X418642Y176917D01*

-X418759Y176933D01*

-X418871Y176968D01*

-X418978Y177020D01*

-X419074Y177087D01*

-X419159Y177169D01*

-X419230Y177263D01*

-X419286Y177368D01*

-X419324Y177479D01*

-X419345Y177596D01*

-X419347Y177714D01*

-X419330Y177830D01*

-X419296Y177943D01*

-X419244Y178050D01*

-X419177Y178146D01*

-X419095Y178231D01*

-X419000Y178302D01*

-X418895Y178356D01*

-X418492Y178515D01*

-X418075Y178632D01*

-X417648Y178711D01*

-X417217Y178750D01*

-X417002D01*

-Y199250D01*

-X417217D01*

-X417648Y199289D01*

-X418075Y199368D01*

-X418492Y199485D01*

-X418897Y199640D01*

-X419002Y199695D01*

-X419097Y199766D01*

-X419179Y199852D01*

-X419247Y199949D01*

-X419299Y200055D01*

-X419334Y200169D01*

-X419350Y200286D01*

-X419348Y200405D01*

-X419327Y200522D01*

-X419289Y200634D01*

-X419233Y200738D01*

-X419162Y200833D01*

-X419076Y200915D01*

-X418979Y200983D01*

-X418873Y201035D01*

-X418759Y201070D01*

-X418642Y201086D01*

-X418523Y201084D01*

-X418406Y201064D01*

-X418295Y201023D01*

-X418020Y200914D01*

-X417735Y200834D01*

-X417443Y200780D01*

-X417148Y200753D01*

-X417002D01*

-Y207247D01*

-X417148D01*

-X417443Y207220D01*

-X417735Y207166D01*

-X418020Y207086D01*

-X418297Y206980D01*

-X418407Y206940D01*

-X418524Y206919D01*

-X418642Y206917D01*

-X418759Y206933D01*

-X418871Y206968D01*

-X418978Y207020D01*

-X419074Y207087D01*

-X419159Y207169D01*

-X419230Y207263D01*

-X419286Y207368D01*

-X419324Y207479D01*

-X419345Y207596D01*

-X419347Y207714D01*

-X419330Y207830D01*

-X419296Y207943D01*

-X419244Y208050D01*

-X419177Y208146D01*

-X419095Y208231D01*

-X419000Y208302D01*

-X418895Y208356D01*

-X418492Y208515D01*

-X418075Y208632D01*

-X417648Y208711D01*

-X417217Y208750D01*

-X417002D01*

-Y229250D01*

-X417217D01*

-X417648Y229289D01*

-X418075Y229368D01*

-X418492Y229485D01*

-X418897Y229640D01*

-X419002Y229695D01*

-X419097Y229766D01*

-X419179Y229852D01*

-X419247Y229949D01*

-X419299Y230055D01*

-X419334Y230169D01*

-X419350Y230286D01*

-X419348Y230405D01*

-X419327Y230522D01*

-X419289Y230634D01*

-X419233Y230738D01*

-X419162Y230833D01*

-X419076Y230915D01*

-X418979Y230983D01*

-X418873Y231035D01*

-X418759Y231070D01*

-X418642Y231086D01*

-X418523Y231084D01*

-X418406Y231064D01*

-X418295Y231023D01*

-X418020Y230914D01*

-X417735Y230834D01*

-X417443Y230780D01*

-X417148Y230753D01*

-X417002D01*

-Y237247D01*

-X417148D01*

-X417443Y237220D01*

-X417735Y237166D01*

-X418020Y237086D01*

-X418297Y236980D01*

-X418407Y236940D01*

-X418524Y236919D01*

-X418642Y236917D01*

-X418759Y236933D01*

-X418871Y236968D01*

-X418978Y237020D01*

-X419074Y237087D01*

-X419159Y237169D01*

-X419230Y237263D01*

-X419286Y237368D01*

-X419324Y237479D01*

-X419345Y237596D01*

-X419347Y237714D01*

-X419330Y237830D01*

-X419296Y237943D01*

-X419244Y238050D01*

-X419177Y238146D01*

-X419095Y238231D01*

-X419000Y238302D01*

-X418895Y238356D01*

-X418492Y238515D01*

-X418075Y238632D01*

-X417648Y238711D01*

-X417217Y238750D01*

-X417002D01*

-Y259250D01*

-X417217D01*

-X417648Y259289D01*

-X418075Y259368D01*

-X418492Y259485D01*

-X418897Y259640D01*

-X419002Y259695D01*

-X419097Y259766D01*

-X419179Y259852D01*

-X419247Y259949D01*

-X419299Y260055D01*

-X419334Y260169D01*

-X419350Y260286D01*

-X419348Y260405D01*

-X419327Y260522D01*

-X419289Y260634D01*

-X419233Y260738D01*

-X419162Y260833D01*

-X419076Y260915D01*

-X418979Y260983D01*

-X418873Y261035D01*

-X418759Y261070D01*

-X418642Y261086D01*

-X418523Y261084D01*

-X418406Y261064D01*

-X418295Y261023D01*

-X418020Y260914D01*

-X417735Y260834D01*

-X417443Y260780D01*

-X417148Y260753D01*

-X417002D01*

-Y267247D01*

-X417148D01*

-X417443Y267220D01*

-X417735Y267166D01*

-X418020Y267086D01*

-X418297Y266980D01*

-X418407Y266940D01*

-X418524Y266919D01*

-X418642Y266917D01*

-X418759Y266933D01*

-X418871Y266968D01*

-X418978Y267020D01*

-X419074Y267087D01*

-X419159Y267169D01*

-X419230Y267263D01*

-X419286Y267368D01*

-X419324Y267479D01*

-X419345Y267596D01*

-X419347Y267714D01*

-X419330Y267830D01*

-X419296Y267943D01*

-X419244Y268050D01*

-X419177Y268146D01*

-X419095Y268231D01*

-X419000Y268302D01*

-X418895Y268356D01*

-X418492Y268515D01*

-X418075Y268632D01*

-X417648Y268711D01*

-X417217Y268750D01*

-X417002D01*

-Y289250D01*

-X417217D01*

-X417648Y289289D01*

-X418075Y289368D01*

-X418492Y289485D01*

-X418897Y289640D01*

-X419002Y289695D01*

-X419097Y289766D01*

-X419179Y289852D01*

-X419247Y289949D01*

-X419299Y290055D01*

-X419334Y290169D01*

-X419350Y290286D01*

-X419348Y290405D01*

-X419327Y290522D01*

-X419289Y290634D01*

-X419233Y290738D01*

-X419162Y290833D01*

-X419076Y290915D01*

-X418979Y290983D01*

-X418873Y291035D01*

-X418759Y291070D01*

-X418642Y291086D01*

-X418523Y291084D01*

-X418406Y291064D01*

-X418295Y291023D01*

-X418020Y290914D01*

-X417735Y290834D01*

-X417443Y290780D01*

-X417148Y290753D01*

-X417002D01*

-Y297247D01*

-X417148D01*

-X417443Y297220D01*

-X417735Y297166D01*

-X418020Y297086D01*

-X418297Y296980D01*

-X418407Y296940D01*

-X418524Y296919D01*

-X418642Y296917D01*

-X418759Y296933D01*

-X418871Y296968D01*

-X418978Y297020D01*

-X419074Y297087D01*

-X419159Y297169D01*

-X419230Y297263D01*

-X419286Y297368D01*

-X419324Y297479D01*

-X419345Y297596D01*

-X419347Y297714D01*

-X419330Y297830D01*

-X419296Y297943D01*

-X419244Y298050D01*

-X419177Y298146D01*

-X419095Y298231D01*

-X419000Y298302D01*

-X418895Y298356D01*

-X418492Y298515D01*

-X418075Y298632D01*

-X417648Y298711D01*

-X417217Y298750D01*

-X417002D01*

-Y319250D01*

-X417217D01*

-X417648Y319289D01*

-X418075Y319368D01*

-X418492Y319485D01*

-X418897Y319640D01*

-X419002Y319695D01*

-X419097Y319766D01*

-X419179Y319852D01*

-X419247Y319949D01*

-X419299Y320055D01*

-X419334Y320169D01*

-X419350Y320286D01*

-X419348Y320405D01*

-X419327Y320522D01*

-X419289Y320634D01*

-X419233Y320738D01*

-X419162Y320833D01*

-X419076Y320915D01*

-X418979Y320983D01*

-X418873Y321035D01*

-X418759Y321070D01*

-X418642Y321086D01*

-X418523Y321084D01*

-X418406Y321064D01*

-X418295Y321023D01*

-X418020Y320914D01*

-X417735Y320834D01*

-X417443Y320780D01*

-X417148Y320753D01*

-X417002D01*

-Y327247D01*

-X417148D01*

-X417443Y327220D01*

-X417735Y327166D01*

-X418020Y327086D01*

-X418297Y326980D01*

-X418407Y326940D01*

-X418524Y326919D01*

-X418642Y326917D01*

-X418759Y326933D01*

-X418871Y326968D01*

-X418978Y327020D01*

-X419074Y327087D01*

-X419159Y327169D01*

-X419230Y327263D01*

-X419286Y327368D01*

-X419324Y327479D01*

-X419345Y327596D01*

-X419347Y327714D01*

-X419330Y327830D01*

-X419296Y327943D01*

-X419244Y328050D01*

-X419177Y328146D01*

-X419095Y328231D01*

-X419000Y328302D01*

-X418895Y328356D01*

-X418492Y328515D01*

-X418075Y328632D01*

-X417648Y328711D01*

-X417217Y328750D01*

-X417002D01*

-Y349250D01*

-X417217D01*

-X417648Y349289D01*

-X418075Y349368D01*

-X418492Y349485D01*

-X418897Y349640D01*

-X419002Y349695D01*

-X419097Y349766D01*

-X419179Y349852D01*

-X419247Y349949D01*

-X419299Y350055D01*

-X419334Y350169D01*

-X419350Y350286D01*

-X419348Y350405D01*

-X419327Y350522D01*

-X419289Y350634D01*

-X419233Y350738D01*

-X419162Y350833D01*

-X419076Y350915D01*

-X418979Y350983D01*

-X418873Y351035D01*

-X418759Y351070D01*

-X418642Y351086D01*

-X418523Y351084D01*

-X418406Y351064D01*

-X418295Y351023D01*

-X418020Y350914D01*

-X417735Y350834D01*

-X417443Y350780D01*

-X417148Y350753D01*

-X417002D01*

-Y357247D01*

-X417148D01*

-X417443Y357220D01*

-X417735Y357166D01*

-X418020Y357086D01*

-X418297Y356980D01*

-X418407Y356940D01*

-X418524Y356919D01*

-X418642Y356917D01*

-X418759Y356933D01*

-X418871Y356968D01*

-X418978Y357020D01*

-X419074Y357087D01*

-X419159Y357169D01*

-X419230Y357263D01*

-X419286Y357368D01*

-X419324Y357479D01*

-X419345Y357596D01*

-X419347Y357714D01*

-X419330Y357830D01*

-X419296Y357943D01*

-X419244Y358050D01*

-X419177Y358146D01*

-X419095Y358231D01*

-X419000Y358302D01*

-X418895Y358356D01*

-X418492Y358515D01*

-X418075Y358632D01*

-X417648Y358711D01*

-X417217Y358750D01*

-X417002D01*

-Y379250D01*

-X417217D01*

-X417648Y379289D01*

-X418075Y379368D01*

-X418492Y379485D01*

-X418897Y379640D01*

-X419002Y379695D01*

-X419097Y379766D01*

-X419179Y379852D01*

-X419247Y379949D01*

-X419299Y380055D01*

-X419334Y380169D01*

-X419350Y380286D01*

-X419348Y380405D01*

-X419327Y380522D01*

-X419289Y380634D01*

-X419233Y380738D01*

-X419162Y380833D01*

-X419076Y380915D01*

-X418979Y380983D01*

-X418873Y381035D01*

-X418759Y381070D01*

-X418642Y381086D01*

-X418523Y381084D01*

-X418406Y381064D01*

-X418295Y381023D01*

-X418020Y380914D01*

-X417735Y380834D01*

-X417443Y380780D01*

-X417148Y380753D01*

-X417002D01*

-Y387247D01*

-X417148D01*

-X417443Y387220D01*

-X417735Y387166D01*

-X418020Y387086D01*

-X418297Y386980D01*

-X418407Y386940D01*

-X418524Y386919D01*

-X418642Y386917D01*

-X418759Y386933D01*

-X418871Y386968D01*

-X418978Y387020D01*

-X419074Y387087D01*

-X419159Y387169D01*

-X419230Y387263D01*

-X419286Y387368D01*

-X419324Y387479D01*

-X419345Y387596D01*

-X419347Y387714D01*

-X419330Y387830D01*

-X419296Y387943D01*

-X419244Y388050D01*

-X419177Y388146D01*

-X419095Y388231D01*

-X419000Y388302D01*

-X418895Y388356D01*

-X418492Y388515D01*

-X418075Y388632D01*

-X417648Y388711D01*

-X417217Y388750D01*

-X417002D01*

-Y397000D01*

-X420832D01*

-Y386334D01*

-X420831Y386334D01*

-X420714Y386350D01*

-X420595Y386348D01*

-X420478Y386327D01*

-X420366Y386289D01*

-X420262Y386233D01*

-X420167Y386162D01*

-X420085Y386076D01*

-X420017Y385979D01*

-X419965Y385873D01*

-X419930Y385759D01*

-X419914Y385642D01*

-X419916Y385523D01*

-X419936Y385407D01*

-X419977Y385295D01*

-X420086Y385020D01*

-X420166Y384735D01*

-X420220Y384443D01*

-X420247Y384148D01*

-Y383852D01*

-X420220Y383557D01*

-X420166Y383265D01*

-X420086Y382980D01*

-X419980Y382703D01*

-X419940Y382593D01*

-X419919Y382476D01*

-X419917Y382358D01*

-X419933Y382241D01*

-X419968Y382129D01*

-X420020Y382022D01*

-X420087Y381926D01*

-X420169Y381841D01*

-X420263Y381770D01*

-X420368Y381714D01*

-X420479Y381676D01*

-X420596Y381655D01*

-X420714Y381653D01*

-X420830Y381670D01*

-X420832Y381670D01*

-Y356334D01*

-X420831Y356334D01*

-X420714Y356350D01*

-X420595Y356348D01*

-X420478Y356327D01*

-X420366Y356289D01*

-X420262Y356233D01*

-X420167Y356162D01*

-X420085Y356076D01*

-X420017Y355979D01*

-X419965Y355873D01*

-X419930Y355759D01*

-X419914Y355642D01*

-X419916Y355523D01*

-X419936Y355407D01*

-X419977Y355295D01*

-X420086Y355020D01*

-X420166Y354735D01*

-X420220Y354443D01*

-X420247Y354148D01*

-Y353852D01*

-X420220Y353557D01*

-X420166Y353265D01*

-X420086Y352980D01*

-X419980Y352703D01*

-X419940Y352593D01*

-X419919Y352476D01*

-X419917Y352358D01*

-X419933Y352241D01*

-X419968Y352129D01*

-X420020Y352022D01*

-X420087Y351926D01*

-X420169Y351841D01*

-X420263Y351770D01*

-X420368Y351714D01*

-X420479Y351676D01*

-X420596Y351655D01*

-X420714Y351653D01*

-X420830Y351670D01*

-X420832Y351670D01*

-Y326334D01*

-X420831Y326334D01*

-X420714Y326350D01*

-X420595Y326348D01*

-X420478Y326327D01*

-X420366Y326289D01*

-X420262Y326233D01*

-X420167Y326162D01*

-X420085Y326076D01*

-X420017Y325979D01*

-X419965Y325873D01*

-X419930Y325759D01*

-X419914Y325642D01*

-X419916Y325523D01*

-X419936Y325407D01*

-X419977Y325295D01*

-X420086Y325020D01*

-X420166Y324735D01*

-X420220Y324443D01*

-X420247Y324148D01*

-Y323852D01*

-X420220Y323557D01*

-X420166Y323265D01*

-X420086Y322980D01*

-X419980Y322703D01*

-X419940Y322593D01*

-X419919Y322476D01*

-X419917Y322358D01*

-X419933Y322241D01*

-X419968Y322129D01*

-X420020Y322022D01*

-X420087Y321926D01*

-X420169Y321841D01*

-X420263Y321770D01*

-X420368Y321714D01*

-X420479Y321676D01*

-X420596Y321655D01*

-X420714Y321653D01*

-X420830Y321670D01*

-X420832Y321670D01*

-Y296334D01*

-X420831Y296334D01*

-X420714Y296350D01*

-X420595Y296348D01*

-X420478Y296327D01*

-X420366Y296289D01*

-X420262Y296233D01*

-X420167Y296162D01*

-X420085Y296076D01*

-X420017Y295979D01*

-X419965Y295873D01*

-X419930Y295759D01*

-X419914Y295642D01*

-X419916Y295523D01*

-X419936Y295407D01*

-X419977Y295295D01*

-X420086Y295020D01*

-X420166Y294735D01*

-X420220Y294443D01*

-X420247Y294148D01*

-Y293852D01*

-X420220Y293557D01*

-X420166Y293265D01*

-X420086Y292980D01*

-X419980Y292703D01*

-X419940Y292593D01*

-X419919Y292476D01*

-X419917Y292358D01*

-X419933Y292241D01*

-X419968Y292129D01*

-X420020Y292022D01*

-X420087Y291926D01*

-X420169Y291841D01*

-X420263Y291770D01*

-X420368Y291714D01*

-X420479Y291676D01*

-X420596Y291655D01*

-X420714Y291653D01*

-X420830Y291670D01*

-X420832Y291670D01*

-Y266334D01*

-X420831Y266334D01*

-X420714Y266350D01*

-X420595Y266348D01*

-X420478Y266327D01*

-X420366Y266289D01*

-X420262Y266233D01*

-X420167Y266162D01*

-X420085Y266076D01*

-X420017Y265979D01*

-X419965Y265873D01*

-X419930Y265759D01*

-X419914Y265642D01*

-X419916Y265523D01*

-X419936Y265407D01*

-X419977Y265295D01*

-X420086Y265020D01*

-X420166Y264735D01*

-X420220Y264443D01*

-X420247Y264148D01*

-Y263852D01*

-X420220Y263557D01*

-X420166Y263265D01*

-X420086Y262980D01*

-X419980Y262703D01*

-X419940Y262593D01*

-X419919Y262476D01*

-X419917Y262358D01*

-X419933Y262241D01*

-X419968Y262129D01*

-X420020Y262022D01*

-X420087Y261926D01*

-X420169Y261841D01*

-X420263Y261770D01*

-X420368Y261714D01*

-X420479Y261676D01*

-X420596Y261655D01*

-X420714Y261653D01*

-X420830Y261670D01*

-X420832Y261670D01*

-Y236334D01*

-X420831Y236334D01*

-X420714Y236350D01*

-X420595Y236348D01*

-X420478Y236327D01*

-X420366Y236289D01*

-X420262Y236233D01*

-X420167Y236162D01*

-X420085Y236076D01*

-X420017Y235979D01*

-X419965Y235873D01*

-X419930Y235759D01*

-X419914Y235642D01*

-X419916Y235523D01*

-X419936Y235407D01*

-X419977Y235295D01*

-X420086Y235020D01*

-X420166Y234735D01*

-X420220Y234443D01*

-X420247Y234148D01*

-Y233852D01*

-X420220Y233557D01*

-X420166Y233265D01*

-X420086Y232980D01*

-X419980Y232703D01*

-X419940Y232593D01*

-X419919Y232476D01*

-X419917Y232358D01*

-X419933Y232241D01*

-X419968Y232129D01*

-X420020Y232022D01*

-X420087Y231926D01*

-X420169Y231841D01*

-X420263Y231770D01*

-X420368Y231714D01*

-X420479Y231676D01*

-X420596Y231655D01*

-X420714Y231653D01*

-X420830Y231670D01*

-X420832Y231670D01*

-Y206334D01*

-X420831Y206334D01*

-X420714Y206350D01*

-X420595Y206348D01*

-X420478Y206327D01*

-X420366Y206289D01*

-X420262Y206233D01*

-X420167Y206162D01*

-X420085Y206076D01*

-X420017Y205979D01*

-X419965Y205873D01*

-X419930Y205759D01*

-X419914Y205642D01*

-X419916Y205523D01*

-X419936Y205407D01*

-X419977Y205295D01*

-X420086Y205020D01*

-X420166Y204735D01*

-X420220Y204443D01*

-X420247Y204148D01*

-Y203852D01*

-X420220Y203557D01*

-X420166Y203265D01*

-X420086Y202980D01*

-X419980Y202703D01*

-X419940Y202593D01*

-X419919Y202476D01*

-X419917Y202358D01*

-X419933Y202241D01*

-X419968Y202129D01*

-X420020Y202022D01*

-X420087Y201926D01*

-X420169Y201841D01*

-X420263Y201770D01*

-X420368Y201714D01*

-X420479Y201676D01*

-X420596Y201655D01*

-X420714Y201653D01*

-X420830Y201670D01*

-X420832Y201670D01*

-Y176334D01*

-X420831Y176334D01*

-X420714Y176350D01*

-X420595Y176348D01*

-X420478Y176327D01*

-X420366Y176289D01*

-X420262Y176233D01*

-X420167Y176162D01*

-X420085Y176076D01*

-X420017Y175979D01*

-X419965Y175873D01*

-X419930Y175759D01*

-X419914Y175642D01*

-X419916Y175523D01*

-X419936Y175407D01*

-X419977Y175295D01*

-X420086Y175020D01*

-X420166Y174735D01*

-X420220Y174443D01*

-X420247Y174148D01*

-Y173852D01*

-X420220Y173557D01*

-X420166Y173265D01*

-X420086Y172980D01*

-X419980Y172703D01*

-X419940Y172593D01*

-X419919Y172476D01*

-X419917Y172358D01*

-X419933Y172241D01*

-X419968Y172129D01*

-X420020Y172022D01*

-X420087Y171926D01*

-X420169Y171841D01*

-X420263Y171770D01*

-X420368Y171714D01*

-X420479Y171676D01*

-X420596Y171655D01*

-X420714Y171653D01*

-X420830Y171670D01*

-X420832Y171670D01*

-Y154000D01*

-G37*

-G36*

-X417002D02*X413168D01*

-Y171666D01*

-X413169Y171666D01*

-X413286Y171650D01*

-X413405Y171652D01*

-X413522Y171673D01*

-X413634Y171711D01*

-X413738Y171767D01*

-X413833Y171838D01*

-X413915Y171924D01*

-X413983Y172021D01*

-X414035Y172127D01*

-X414070Y172241D01*

-X414086Y172358D01*

-X414084Y172477D01*

-X414064Y172594D01*

-X414023Y172705D01*

-X413914Y172980D01*

-X413834Y173265D01*

-X413780Y173557D01*

-X413753Y173852D01*

-Y174148D01*

-X413780Y174443D01*

-X413834Y174735D01*

-X413914Y175020D01*

-X414020Y175297D01*

-X414060Y175407D01*

-X414081Y175524D01*

-X414083Y175642D01*

-X414067Y175759D01*

-X414032Y175871D01*

-X413980Y175978D01*

-X413913Y176074D01*

-X413831Y176159D01*

-X413737Y176230D01*

-X413632Y176286D01*

-X413521Y176324D01*

-X413404Y176345D01*

-X413286Y176347D01*

-X413170Y176330D01*

-X413168Y176330D01*

-Y201666D01*

-X413169Y201666D01*

-X413286Y201650D01*

-X413405Y201652D01*

-X413522Y201673D01*

-X413634Y201711D01*

-X413738Y201767D01*

-X413833Y201838D01*

-X413915Y201924D01*

-X413983Y202021D01*

-X414035Y202127D01*

-X414070Y202241D01*

-X414086Y202358D01*

-X414084Y202477D01*

-X414064Y202594D01*

-X414023Y202705D01*

-X413914Y202980D01*

-X413834Y203265D01*

-X413780Y203557D01*

-X413753Y203852D01*

-Y204148D01*

-X413780Y204443D01*

-X413834Y204735D01*

-X413914Y205020D01*

-X414020Y205297D01*

-X414060Y205407D01*

-X414081Y205524D01*

-X414083Y205642D01*

-X414067Y205759D01*

-X414032Y205871D01*

-X413980Y205978D01*

-X413913Y206074D01*

-X413831Y206159D01*

-X413737Y206230D01*

-X413632Y206286D01*

-X413521Y206324D01*

-X413404Y206345D01*

-X413286Y206347D01*

-X413170Y206330D01*

-X413168Y206330D01*

-Y231666D01*

-X413169Y231666D01*

-X413286Y231650D01*

-X413405Y231652D01*

-X413522Y231673D01*

-X413634Y231711D01*

-X413738Y231767D01*

-X413833Y231838D01*

-X413915Y231924D01*

-X413983Y232021D01*

-X414035Y232127D01*

-X414070Y232241D01*

-X414086Y232358D01*

-X414084Y232477D01*

-X414064Y232594D01*

-X414023Y232705D01*

-X413914Y232980D01*

-X413834Y233265D01*

-X413780Y233557D01*

-X413753Y233852D01*

-Y234148D01*

-X413780Y234443D01*

-X413834Y234735D01*

-X413914Y235020D01*

-X414020Y235297D01*

-X414060Y235407D01*

-X414081Y235524D01*

-X414083Y235642D01*

-X414067Y235759D01*

-X414032Y235871D01*

-X413980Y235978D01*

-X413913Y236074D01*

-X413831Y236159D01*

-X413737Y236230D01*

-X413632Y236286D01*

-X413521Y236324D01*

-X413404Y236345D01*

-X413286Y236347D01*

-X413170Y236330D01*

-X413168Y236330D01*

-Y261666D01*

-X413169Y261666D01*

-X413286Y261650D01*

-X413405Y261652D01*

-X413522Y261673D01*

-X413634Y261711D01*

-X413738Y261767D01*

-X413833Y261838D01*

-X413915Y261924D01*

-X413983Y262021D01*

-X414035Y262127D01*

-X414070Y262241D01*

-X414086Y262358D01*

-X414084Y262477D01*

-X414064Y262594D01*

-X414023Y262705D01*

-X413914Y262980D01*

-X413834Y263265D01*

-X413780Y263557D01*

-X413753Y263852D01*

-Y264148D01*

-X413780Y264443D01*

-X413834Y264735D01*

-X413914Y265020D01*

-X414020Y265297D01*

-X414060Y265407D01*

-X414081Y265524D01*

-X414083Y265642D01*

-X414067Y265759D01*

-X414032Y265871D01*

-X413980Y265978D01*

-X413913Y266074D01*

-X413831Y266159D01*

-X413737Y266230D01*

-X413632Y266286D01*

-X413521Y266324D01*

-X413404Y266345D01*

-X413286Y266347D01*

-X413170Y266330D01*

-X413168Y266330D01*

-Y291666D01*

-X413169Y291666D01*

-X413286Y291650D01*

-X413405Y291652D01*

-X413522Y291673D01*

-X413634Y291711D01*

-X413738Y291767D01*

-X413833Y291838D01*

-X413915Y291924D01*

-X413983Y292021D01*

-X414035Y292127D01*

-X414070Y292241D01*

-X414086Y292358D01*

-X414084Y292477D01*

-X414064Y292594D01*

-X414023Y292705D01*

-X413914Y292980D01*

-X413834Y293265D01*

-X413780Y293557D01*

-X413753Y293852D01*

-Y294148D01*

-X413780Y294443D01*

-X413834Y294735D01*

-X413914Y295020D01*

-X414020Y295297D01*

-X414060Y295407D01*

-X414081Y295524D01*

-X414083Y295642D01*

-X414067Y295759D01*

-X414032Y295871D01*

-X413980Y295978D01*

-X413913Y296074D01*

-X413831Y296159D01*

-X413737Y296230D01*

-X413632Y296286D01*

-X413521Y296324D01*

-X413404Y296345D01*

-X413286Y296347D01*

-X413170Y296330D01*

-X413168Y296330D01*

-Y321666D01*

-X413169Y321666D01*

-X413286Y321650D01*

-X413405Y321652D01*

-X413522Y321673D01*

-X413634Y321711D01*

-X413738Y321767D01*

-X413833Y321838D01*

-X413915Y321924D01*

-X413983Y322021D01*

-X414035Y322127D01*

-X414070Y322241D01*

-X414086Y322358D01*

-X414084Y322477D01*

-X414064Y322594D01*

-X414023Y322705D01*

-X413914Y322980D01*

-X413834Y323265D01*

-X413780Y323557D01*

-X413753Y323852D01*

-Y324148D01*

-X413780Y324443D01*

-X413834Y324735D01*

-X413914Y325020D01*

-X414020Y325297D01*

-X414060Y325407D01*

-X414081Y325524D01*

-X414083Y325642D01*

-X414067Y325759D01*

-X414032Y325871D01*

-X413980Y325978D01*

-X413913Y326074D01*

-X413831Y326159D01*

-X413737Y326230D01*

-X413632Y326286D01*

-X413521Y326324D01*

-X413404Y326345D01*

-X413286Y326347D01*

-X413170Y326330D01*

-X413168Y326330D01*

-Y351666D01*

-X413169Y351666D01*

-X413286Y351650D01*

-X413405Y351652D01*

-X413522Y351673D01*

-X413634Y351711D01*

-X413738Y351767D01*

-X413833Y351838D01*

-X413915Y351924D01*

-X413983Y352021D01*

-X414035Y352127D01*

-X414070Y352241D01*

-X414086Y352358D01*

-X414084Y352477D01*

-X414064Y352594D01*

-X414023Y352705D01*

-X413914Y352980D01*

-X413834Y353265D01*

-X413780Y353557D01*

-X413753Y353852D01*

-Y354148D01*

-X413780Y354443D01*

-X413834Y354735D01*

-X413914Y355020D01*

-X414020Y355297D01*

-X414060Y355407D01*

-X414081Y355524D01*

-X414083Y355642D01*

-X414067Y355759D01*

-X414032Y355871D01*

-X413980Y355978D01*

-X413913Y356074D01*

-X413831Y356159D01*

-X413737Y356230D01*

-X413632Y356286D01*

-X413521Y356324D01*

-X413404Y356345D01*

-X413286Y356347D01*

-X413170Y356330D01*

-X413168Y356330D01*

-Y381666D01*

-X413169Y381666D01*

-X413286Y381650D01*

-X413405Y381652D01*

-X413522Y381673D01*

-X413634Y381711D01*

-X413738Y381767D01*

-X413833Y381838D01*

-X413915Y381924D01*

-X413983Y382021D01*

-X414035Y382127D01*

-X414070Y382241D01*

-X414086Y382358D01*

-X414084Y382477D01*

-X414064Y382594D01*

-X414023Y382705D01*

-X413914Y382980D01*

-X413834Y383265D01*

-X413780Y383557D01*

-X413753Y383852D01*

-Y384148D01*

-X413780Y384443D01*

-X413834Y384735D01*

-X413914Y385020D01*

-X414020Y385297D01*

-X414060Y385407D01*

-X414081Y385524D01*

-X414083Y385642D01*

-X414067Y385759D01*

-X414032Y385871D01*

-X413980Y385978D01*

-X413913Y386074D01*

-X413831Y386159D01*

-X413737Y386230D01*

-X413632Y386286D01*

-X413521Y386324D01*

-X413404Y386345D01*

-X413286Y386347D01*

-X413170Y386330D01*

-X413168Y386330D01*

-Y397000D01*

-X417002D01*

-Y388750D01*

-X416783D01*

-X416352Y388711D01*

-X415925Y388632D01*

-X415508Y388515D01*

-X415103Y388360D01*

-X414998Y388305D01*

-X414903Y388234D01*

-X414821Y388148D01*

-X414753Y388051D01*

-X414701Y387945D01*

-X414666Y387831D01*

-X414650Y387714D01*

-X414652Y387595D01*

-X414673Y387478D01*

-X414711Y387366D01*

-X414767Y387262D01*

-X414838Y387167D01*

-X414924Y387085D01*

-X415021Y387017D01*

-X415127Y386965D01*

-X415241Y386930D01*

-X415358Y386914D01*

-X415477Y386916D01*

-X415593Y386936D01*

-X415705Y386977D01*

-X415980Y387086D01*

-X416265Y387166D01*

-X416557Y387220D01*

-X416852Y387247D01*

-X417002D01*

-Y380753D01*

-X416852D01*

-X416557Y380780D01*

-X416265Y380834D01*

-X415980Y380914D01*

-X415703Y381020D01*

-X415593Y381060D01*

-X415476Y381081D01*

-X415358Y381083D01*

-X415241Y381067D01*

-X415129Y381032D01*

-X415022Y380980D01*

-X414926Y380913D01*

-X414841Y380831D01*

-X414770Y380737D01*

-X414714Y380632D01*

-X414676Y380521D01*

-X414655Y380404D01*

-X414653Y380286D01*

-X414670Y380170D01*

-X414704Y380057D01*

-X414756Y379950D01*

-X414823Y379854D01*

-X414905Y379769D01*

-X415000Y379698D01*

-X415105Y379644D01*

-X415508Y379485D01*

-X415925Y379368D01*

-X416352Y379289D01*

-X416783Y379250D01*

-X417002D01*

-Y358750D01*

-X416783D01*

-X416352Y358711D01*

-X415925Y358632D01*

-X415508Y358515D01*

-X415103Y358360D01*

-X414998Y358305D01*

-X414903Y358234D01*

-X414821Y358148D01*

-X414753Y358051D01*

-X414701Y357945D01*

-X414666Y357831D01*

-X414650Y357714D01*

-X414652Y357595D01*

-X414673Y357478D01*

-X414711Y357366D01*

-X414767Y357262D01*

-X414838Y357167D01*

-X414924Y357085D01*

-X415021Y357017D01*

-X415127Y356965D01*

-X415241Y356930D01*

-X415358Y356914D01*

-X415477Y356916D01*

-X415593Y356936D01*

-X415705Y356977D01*

-X415980Y357086D01*

-X416265Y357166D01*

-X416557Y357220D01*

-X416852Y357247D01*

-X417002D01*

-Y350753D01*

-X416852D01*

-X416557Y350780D01*

-X416265Y350834D01*

-X415980Y350914D01*

-X415703Y351020D01*

-X415593Y351060D01*

-X415476Y351081D01*

-X415358Y351083D01*

-X415241Y351067D01*

-X415129Y351032D01*

-X415022Y350980D01*

-X414926Y350913D01*

-X414841Y350831D01*

-X414770Y350737D01*

-X414714Y350632D01*

-X414676Y350521D01*

-X414655Y350404D01*

-X414653Y350286D01*

-X414670Y350170D01*

-X414704Y350057D01*

-X414756Y349950D01*

-X414823Y349854D01*

-X414905Y349769D01*

-X415000Y349698D01*

-X415105Y349644D01*

-X415508Y349485D01*

-X415925Y349368D01*

-X416352Y349289D01*

-X416783Y349250D01*

-X417002D01*

-Y328750D01*

-X416783D01*

-X416352Y328711D01*

-X415925Y328632D01*

-X415508Y328515D01*

-X415103Y328360D01*

-X414998Y328305D01*

-X414903Y328234D01*

-X414821Y328148D01*

-X414753Y328051D01*

-X414701Y327945D01*

-X414666Y327831D01*

-X414650Y327714D01*

-X414652Y327595D01*

-X414673Y327478D01*

-X414711Y327366D01*

-X414767Y327262D01*

-X414838Y327167D01*

-X414924Y327085D01*

-X415021Y327017D01*

-X415127Y326965D01*

-X415241Y326930D01*

-X415358Y326914D01*

-X415477Y326916D01*

-X415593Y326936D01*

-X415705Y326977D01*

-X415980Y327086D01*

-X416265Y327166D01*

-X416557Y327220D01*

-X416852Y327247D01*

-X417002D01*

-Y320753D01*

-X416852D01*

-X416557Y320780D01*

-X416265Y320834D01*

-X415980Y320914D01*

-X415703Y321020D01*

-X415593Y321060D01*

-X415476Y321081D01*

-X415358Y321083D01*

-X415241Y321067D01*

-X415129Y321032D01*

-X415022Y320980D01*

-X414926Y320913D01*

-X414841Y320831D01*

-X414770Y320737D01*

-X414714Y320632D01*

-X414676Y320521D01*

-X414655Y320404D01*

-X414653Y320286D01*

-X414670Y320170D01*

-X414704Y320057D01*

-X414756Y319950D01*

-X414823Y319854D01*

-X414905Y319769D01*

-X415000Y319698D01*

-X415105Y319644D01*

-X415508Y319485D01*

-X415925Y319368D01*

-X416352Y319289D01*

-X416783Y319250D01*

-X417002D01*

-Y298750D01*

-X416783D01*

-X416352Y298711D01*

-X415925Y298632D01*

-X415508Y298515D01*

-X415103Y298360D01*

-X414998Y298305D01*

-X414903Y298234D01*

-X414821Y298148D01*

-X414753Y298051D01*

-X414701Y297945D01*

-X414666Y297831D01*

-X414650Y297714D01*

-X414652Y297595D01*

-X414673Y297478D01*

-X414711Y297366D01*

-X414767Y297262D01*

-X414838Y297167D01*

-X414924Y297085D01*

-X415021Y297017D01*

-X415127Y296965D01*

-X415241Y296930D01*

-X415358Y296914D01*

-X415477Y296916D01*

-X415593Y296936D01*

-X415705Y296977D01*

-X415980Y297086D01*

-X416265Y297166D01*

-X416557Y297220D01*

-X416852Y297247D01*

-X417002D01*

-Y290753D01*

-X416852D01*

-X416557Y290780D01*

-X416265Y290834D01*

-X415980Y290914D01*

-X415703Y291020D01*

-X415593Y291060D01*

-X415476Y291081D01*

-X415358Y291083D01*

-X415241Y291067D01*

-X415129Y291032D01*

-X415022Y290980D01*

-X414926Y290913D01*

-X414841Y290831D01*

-X414770Y290737D01*

-X414714Y290632D01*

-X414676Y290521D01*

-X414655Y290404D01*

-X414653Y290286D01*

-X414670Y290170D01*

-X414704Y290057D01*

-X414756Y289950D01*

-X414823Y289854D01*

-X414905Y289769D01*

-X415000Y289698D01*

-X415105Y289644D01*

-X415508Y289485D01*

-X415925Y289368D01*

-X416352Y289289D01*

-X416783Y289250D01*

-X417002D01*

-Y268750D01*

-X416783D01*

-X416352Y268711D01*

-X415925Y268632D01*

-X415508Y268515D01*

-X415103Y268360D01*

-X414998Y268305D01*

-X414903Y268234D01*

-X414821Y268148D01*

-X414753Y268051D01*

-X414701Y267945D01*

-X414666Y267831D01*

-X414650Y267714D01*

-X414652Y267595D01*

-X414673Y267478D01*

-X414711Y267366D01*

-X414767Y267262D01*

-X414838Y267167D01*

-X414924Y267085D01*

-X415021Y267017D01*

-X415127Y266965D01*

-X415241Y266930D01*

-X415358Y266914D01*

-X415477Y266916D01*

-X415593Y266936D01*

-X415705Y266977D01*

-X415980Y267086D01*

-X416265Y267166D01*

-X416557Y267220D01*

-X416852Y267247D01*

-X417002D01*

-Y260753D01*

-X416852D01*

-X416557Y260780D01*

-X416265Y260834D01*

-X415980Y260914D01*

-X415703Y261020D01*

-X415593Y261060D01*

-X415476Y261081D01*

-X415358Y261083D01*

-X415241Y261067D01*

-X415129Y261032D01*

-X415022Y260980D01*

-X414926Y260913D01*

-X414841Y260831D01*

-X414770Y260737D01*

-X414714Y260632D01*

-X414676Y260521D01*

-X414655Y260404D01*

-X414653Y260286D01*

-X414670Y260170D01*

-X414704Y260057D01*

-X414756Y259950D01*

-X414823Y259854D01*

-X414905Y259769D01*

-X415000Y259698D01*

-X415105Y259644D01*

-X415508Y259485D01*

-X415925Y259368D01*

-X416352Y259289D01*

-X416783Y259250D01*

-X417002D01*

-Y238750D01*

-X416783D01*

-X416352Y238711D01*

-X415925Y238632D01*

-X415508Y238515D01*

-X415103Y238360D01*

-X414998Y238305D01*

-X414903Y238234D01*

-X414821Y238148D01*

-X414753Y238051D01*

-X414701Y237945D01*

-X414666Y237831D01*

-X414650Y237714D01*

-X414652Y237595D01*

-X414673Y237478D01*

-X414711Y237366D01*

-X414767Y237262D01*

-X414838Y237167D01*

-X414924Y237085D01*

-X415021Y237017D01*

-X415127Y236965D01*

-X415241Y236930D01*

-X415358Y236914D01*

-X415477Y236916D01*

-X415593Y236936D01*

-X415705Y236977D01*

-X415980Y237086D01*

-X416265Y237166D01*

-X416557Y237220D01*

-X416852Y237247D01*

-X417002D01*

-Y230753D01*

-X416852D01*

-X416557Y230780D01*

-X416265Y230834D01*

-X415980Y230914D01*

-X415703Y231020D01*

-X415593Y231060D01*

-X415476Y231081D01*

-X415358Y231083D01*

-X415241Y231067D01*

-X415129Y231032D01*

-X415022Y230980D01*

-X414926Y230913D01*

-X414841Y230831D01*

-X414770Y230737D01*

-X414714Y230632D01*

-X414676Y230521D01*

-X414655Y230404D01*

-X414653Y230286D01*

-X414670Y230170D01*

-X414704Y230057D01*

-X414756Y229950D01*

-X414823Y229854D01*

-X414905Y229769D01*

-X415000Y229698D01*

-X415105Y229644D01*

-X415508Y229485D01*

-X415925Y229368D01*

-X416352Y229289D01*

-X416783Y229250D01*

-X417002D01*

-Y208750D01*

-X416783D01*

-X416352Y208711D01*

-X415925Y208632D01*

-X415508Y208515D01*

-X415103Y208360D01*

-X414998Y208305D01*

-X414903Y208234D01*

-X414821Y208148D01*

-X414753Y208051D01*

-X414701Y207945D01*

-X414666Y207831D01*

-X414650Y207714D01*

-X414652Y207595D01*

-X414673Y207478D01*

-X414711Y207366D01*

-X414767Y207262D01*

-X414838Y207167D01*

-X414924Y207085D01*

-X415021Y207017D01*

-X415127Y206965D01*

-X415241Y206930D01*

-X415358Y206914D01*

-X415477Y206916D01*

-X415593Y206936D01*

-X415705Y206977D01*

-X415980Y207086D01*

-X416265Y207166D01*

-X416557Y207220D01*

-X416852Y207247D01*

-X417002D01*

-Y200753D01*

-X416852D01*

-X416557Y200780D01*

-X416265Y200834D01*

-X415980Y200914D01*

-X415703Y201020D01*

-X415593Y201060D01*

-X415476Y201081D01*

-X415358Y201083D01*

-X415241Y201067D01*

-X415129Y201032D01*

-X415022Y200980D01*

-X414926Y200913D01*

-X414841Y200831D01*

-X414770Y200737D01*

-X414714Y200632D01*

-X414676Y200521D01*

-X414655Y200404D01*

-X414653Y200286D01*

-X414670Y200170D01*

-X414704Y200057D01*

-X414756Y199950D01*

-X414823Y199854D01*

-X414905Y199769D01*

-X415000Y199698D01*

-X415105Y199644D01*

-X415508Y199485D01*

-X415925Y199368D01*

-X416352Y199289D01*

-X416783Y199250D01*

-X417002D01*

-Y178750D01*

-X416783D01*

-X416352Y178711D01*

-X415925Y178632D01*

-X415508Y178515D01*

-X415103Y178360D01*

-X414998Y178305D01*

-X414903Y178234D01*

-X414821Y178148D01*

-X414753Y178051D01*

-X414701Y177945D01*

-X414666Y177831D01*

-X414650Y177714D01*

-X414652Y177595D01*

-X414673Y177478D01*

-X414711Y177366D01*

-X414767Y177262D01*

-X414838Y177167D01*

-X414924Y177085D01*

-X415021Y177017D01*

-X415127Y176965D01*

-X415241Y176930D01*

-X415358Y176914D01*

-X415477Y176916D01*

-X415593Y176936D01*

-X415705Y176977D01*

-X415980Y177086D01*

-X416265Y177166D01*

-X416557Y177220D01*

-X416852Y177247D01*

-X417002D01*

-Y170753D01*

-X416852D01*

-X416557Y170780D01*

-X416265Y170834D01*

-X415980Y170914D01*

-X415703Y171020D01*

-X415593Y171060D01*

-X415476Y171081D01*

-X415358Y171083D01*

-X415241Y171067D01*

-X415129Y171032D01*

-X415022Y170980D01*

-X414926Y170913D01*

-X414841Y170831D01*

-X414770Y170737D01*

-X414714Y170632D01*

-X414676Y170521D01*

-X414655Y170404D01*

-X414653Y170286D01*

-X414670Y170170D01*

-X414704Y170057D01*

-X414756Y169950D01*

-X414823Y169854D01*

-X414905Y169769D01*

-X415000Y169698D01*

-X415105Y169644D01*

-X415508Y169485D01*

-X415925Y169368D01*

-X416352Y169289D01*

-X416783Y169250D01*

-X417002D01*

-Y154000D01*

-G37*

-G36*

-X413168D02*X406441D01*

-X406504Y169256D01*

-X410485Y169264D01*

-X410715Y169319D01*

-X410933Y169409D01*

-X411134Y169533D01*

-X411314Y169686D01*

-X411467Y169866D01*

-X411591Y170067D01*

-X411681Y170285D01*

-X411736Y170515D01*

-X411750Y170750D01*

-X411736Y177485D01*

-X411681Y177715D01*

-X411591Y177933D01*

-X411467Y178134D01*

-X411314Y178314D01*

-X411134Y178467D01*

-X410933Y178591D01*

-X410715Y178681D01*

-X410485Y178736D01*

-X410250Y178750D01*

-X406543Y178742D01*

-X406627Y199256D01*

-X410485Y199264D01*

-X410715Y199319D01*

-X410933Y199409D01*

-X411134Y199533D01*

-X411314Y199686D01*

-X411467Y199866D01*

-X411591Y200067D01*

-X411681Y200285D01*

-X411736Y200515D01*

-X411750Y200750D01*

-X411736Y207485D01*

-X411681Y207715D01*

-X411591Y207933D01*

-X411467Y208134D01*

-X411314Y208314D01*

-X411134Y208467D01*

-X410933Y208591D01*

-X410715Y208681D01*

-X410485Y208736D01*

-X410250Y208750D01*

-X406666Y208743D01*

-X406751Y229256D01*

-X410485Y229264D01*

-X410715Y229319D01*

-X410933Y229409D01*

-X411134Y229533D01*

-X411314Y229686D01*

-X411467Y229866D01*

-X411591Y230067D01*

-X411681Y230285D01*

-X411736Y230515D01*

-X411750Y230750D01*

-X411736Y237485D01*

-X411681Y237715D01*

-X411591Y237933D01*

-X411467Y238134D01*

-X411314Y238314D01*

-X411134Y238467D01*

-X410933Y238591D01*

-X410715Y238681D01*

-X410485Y238736D01*

-X410250Y238750D01*

-X406790Y238743D01*

-X406874Y259256D01*

-X410485Y259264D01*

-X410715Y259319D01*

-X410933Y259409D01*

-X411134Y259533D01*

-X411314Y259686D01*

-X411467Y259866D01*

-X411591Y260067D01*

-X411681Y260285D01*

-X411736Y260515D01*

-X411750Y260750D01*

-X411736Y267485D01*

-X411681Y267715D01*

-X411591Y267933D01*

-X411467Y268134D01*

-X411314Y268314D01*

-X411134Y268467D01*

-X410933Y268591D01*

-X410715Y268681D01*

-X410485Y268736D01*

-X410250Y268750D01*

-X406913Y268743D01*

-X406998Y289257D01*

-X410485Y289264D01*

-X410715Y289319D01*

-X410933Y289409D01*

-X411134Y289533D01*

-X411314Y289686D01*

-X411467Y289866D01*

-X411591Y290067D01*

-X411681Y290285D01*

-X411736Y290515D01*

-X411750Y290750D01*

-X411736Y297485D01*

-X411681Y297715D01*

-X411591Y297933D01*

-X411467Y298134D01*

-X411314Y298314D01*

-X411134Y298467D01*

-X410933Y298591D01*

-X410715Y298681D01*

-X410485Y298736D01*

-X410250Y298750D01*

-X407037Y298743D01*

-X407121Y319257D01*

-X410485Y319264D01*

-X410715Y319319D01*

-X410933Y319409D01*

-X411134Y319533D01*

-X411314Y319686D01*

-X411467Y319866D01*

-X411591Y320067D01*

-X411681Y320285D01*

-X411736Y320515D01*

-X411750Y320750D01*

-X411736Y327485D01*

-X411681Y327715D01*

-X411591Y327933D01*

-X411467Y328134D01*

-X411314Y328314D01*

-X411134Y328467D01*

-X410933Y328591D01*

-X410715Y328681D01*

-X410485Y328736D01*

-X410250Y328750D01*

-X407160Y328744D01*

-X407245Y349257D01*

-X410485Y349264D01*

-X410715Y349319D01*

-X410933Y349409D01*

-X411134Y349533D01*

-X411314Y349686D01*

-X411467Y349866D01*

-X411591Y350067D01*

-X411681Y350285D01*

-X411736Y350515D01*

-X411750Y350750D01*

-X411736Y357485D01*

-X411681Y357715D01*

-X411591Y357933D01*

-X411467Y358134D01*

-X411314Y358314D01*

-X411134Y358467D01*

-X410933Y358591D01*

-X410715Y358681D01*

-X410485Y358736D01*

-X410250Y358750D01*

-X407284Y358744D01*

-X407368Y379257D01*

-X410485Y379264D01*

-X410715Y379319D01*

-X410933Y379409D01*

-X411134Y379533D01*

-X411314Y379686D01*

-X411467Y379866D01*

-X411591Y380067D01*

-X411681Y380285D01*

-X411736Y380515D01*

-X411750Y380750D01*

-X411736Y387485D01*

-X411681Y387715D01*

-X411591Y387933D01*

-X411467Y388134D01*

-X411314Y388314D01*

-X411134Y388467D01*

-X410933Y388591D01*

-X410715Y388681D01*

-X410485Y388736D01*

-X410250Y388750D01*

-X407407Y388744D01*

-X407441Y397000D01*

-X413168D01*

-Y386330D01*

-X413057Y386296D01*

-X412950Y386244D01*

-X412854Y386177D01*

-X412769Y386095D01*

-X412698Y386000D01*

-X412644Y385895D01*

-X412485Y385492D01*

-X412368Y385075D01*

-X412289Y384648D01*

-X412250Y384217D01*

-Y383783D01*

-X412289Y383352D01*

-X412368Y382925D01*

-X412485Y382508D01*

-X412640Y382103D01*

-X412695Y381998D01*

-X412766Y381903D01*

-X412852Y381821D01*

-X412949Y381753D01*

-X413055Y381701D01*

-X413168Y381666D01*

-Y356330D01*

-X413057Y356296D01*

-X412950Y356244D01*

-X412854Y356177D01*

-X412769Y356095D01*

-X412698Y356000D01*

-X412644Y355895D01*

-X412485Y355492D01*

-X412368Y355075D01*

-X412289Y354648D01*

-X412250Y354217D01*

-Y353783D01*

-X412289Y353352D01*

-X412368Y352925D01*

-X412485Y352508D01*

-X412640Y352103D01*

-X412695Y351998D01*

-X412766Y351903D01*

-X412852Y351821D01*

-X412949Y351753D01*

-X413055Y351701D01*

-X413168Y351666D01*

-Y326330D01*

-X413057Y326296D01*

-X412950Y326244D01*

-X412854Y326177D01*

-X412769Y326095D01*

-X412698Y326000D01*

-X412644Y325895D01*

-X412485Y325492D01*

-X412368Y325075D01*

-X412289Y324648D01*

-X412250Y324217D01*

-Y323783D01*

-X412289Y323352D01*

-X412368Y322925D01*

-X412485Y322508D01*

-X412640Y322103D01*

-X412695Y321998D01*

-X412766Y321903D01*

-X412852Y321821D01*

-X412949Y321753D01*

-X413055Y321701D01*

-X413168Y321666D01*

-Y296330D01*

-X413057Y296296D01*

-X412950Y296244D01*

-X412854Y296177D01*

-X412769Y296095D01*

-X412698Y296000D01*

-X412644Y295895D01*

-X412485Y295492D01*

-X412368Y295075D01*

-X412289Y294648D01*

-X412250Y294217D01*

-Y293783D01*

-X412289Y293352D01*

-X412368Y292925D01*

-X412485Y292508D01*

-X412640Y292103D01*

-X412695Y291998D01*

-X412766Y291903D01*

-X412852Y291821D01*

-X412949Y291753D01*

-X413055Y291701D01*

-X413168Y291666D01*

-Y266330D01*

-X413057Y266296D01*

-X412950Y266244D01*

-X412854Y266177D01*

-X412769Y266095D01*

-X412698Y266000D01*

-X412644Y265895D01*

-X412485Y265492D01*

-X412368Y265075D01*

-X412289Y264648D01*

-X412250Y264217D01*

-Y263783D01*

-X412289Y263352D01*

-X412368Y262925D01*

-X412485Y262508D01*

-X412640Y262103D01*

-X412695Y261998D01*

-X412766Y261903D01*

-X412852Y261821D01*

-X412949Y261753D01*

-X413055Y261701D01*

-X413168Y261666D01*

-Y236330D01*

-X413057Y236296D01*

-X412950Y236244D01*

-X412854Y236177D01*

-X412769Y236095D01*

-X412698Y236000D01*

-X412644Y235895D01*

-X412485Y235492D01*

-X412368Y235075D01*

-X412289Y234648D01*

-X412250Y234217D01*

-Y233783D01*

-X412289Y233352D01*

-X412368Y232925D01*

-X412485Y232508D01*

-X412640Y232103D01*

-X412695Y231998D01*

-X412766Y231903D01*

-X412852Y231821D01*

-X412949Y231753D01*

-X413055Y231701D01*

-X413168Y231666D01*

-Y206330D01*

-X413057Y206296D01*

-X412950Y206244D01*

-X412854Y206177D01*

-X412769Y206095D01*

-X412698Y206000D01*

-X412644Y205895D01*

-X412485Y205492D01*

-X412368Y205075D01*

-X412289Y204648D01*

-X412250Y204217D01*

-Y203783D01*

-X412289Y203352D01*

-X412368Y202925D01*

-X412485Y202508D01*

-X412640Y202103D01*

-X412695Y201998D01*

-X412766Y201903D01*

-X412852Y201821D01*

-X412949Y201753D01*

-X413055Y201701D01*

-X413168Y201666D01*

-Y176330D01*

-X413057Y176296D01*

-X412950Y176244D01*

-X412854Y176177D01*

-X412769Y176095D01*

-X412698Y176000D01*

-X412644Y175895D01*

-X412485Y175492D01*

-X412368Y175075D01*

-X412289Y174648D01*

-X412250Y174217D01*

-Y173783D01*

-X412289Y173352D01*

-X412368Y172925D01*

-X412485Y172508D01*

-X412640Y172103D01*

-X412695Y171998D01*

-X412766Y171903D01*

-X412852Y171821D01*

-X412949Y171753D01*

-X413055Y171701D01*

-X413168Y171666D01*

-Y154000D01*

-G37*

-G36*

-X434446Y39000D02*X394938D01*

-Y50000D01*

-X395002Y50039D01*

-X395218Y50223D01*

-X395402Y50439D01*

-X395550Y50680D01*

-X395658Y50942D01*

-X395724Y51218D01*

-X395741Y51500D01*

-X395724Y51782D01*

-X395658Y52058D01*

-X395550Y52320D01*

-X395402Y52561D01*

-X395218Y52777D01*

-X395002Y52961D01*

-X394938Y53000D01*

-Y56695D01*

-X394941Y56694D01*

-X395223Y56717D01*

-X395499Y56783D01*

-X395761Y56891D01*

-X396002Y57039D01*

-X396218Y57223D01*

-X396402Y57439D01*

-X396550Y57680D01*

-X396658Y57942D01*

-X396724Y58218D01*

-X396741Y58500D01*

-X396724Y58782D01*

-X396658Y59058D01*

-X396550Y59320D01*

-X396402Y59561D01*

-X396218Y59777D01*

-X396002Y59961D01*

-X395761Y60109D01*

-X395499Y60217D01*

-X395223Y60283D01*

-X394941Y60306D01*

-X394938Y60305D01*

-Y132000D01*

-X408941D01*

-Y67000D01*

-X434446D01*

-Y58305D01*

-X434167Y58283D01*

-X433891Y58217D01*

-X433629Y58109D01*

-X433388Y57961D01*

-X433172Y57777D01*

-X432988Y57561D01*

-X432840Y57320D01*

-X432732Y57058D01*

-X432666Y56782D01*

-X432643Y56500D01*

-X432666Y56218D01*

-X432732Y55942D01*

-X432840Y55680D01*

-X432988Y55439D01*

-X433172Y55223D01*

-X433388Y55039D01*

-X433629Y54891D01*

-X433891Y54783D01*

-X434167Y54717D01*

-X434446Y54695D01*

-Y39000D01*

-G37*

-G36*

-X394938D02*X390938D01*

-Y44007D01*

-X390980Y43939D01*

-X391164Y43723D01*

-X391380Y43539D01*

-X391621Y43391D01*

-X391883Y43283D01*

-X392159Y43217D01*

-X392441Y43194D01*

-X392723Y43217D01*

-X392999Y43283D01*

-X393261Y43391D01*

-X393502Y43539D01*

-X393718Y43723D01*

-X393902Y43939D01*

-X394050Y44180D01*

-X394158Y44442D01*

-X394224Y44718D01*

-X394241Y45000D01*

-X394224Y45282D01*

-X394158Y45558D01*

-X394050Y45820D01*

-X393902Y46061D01*

-X393718Y46277D01*

-X393502Y46461D01*

-X393261Y46609D01*

-X392999Y46717D01*

-X392723Y46783D01*

-X392441Y46806D01*

-X392159Y46783D01*

-X391883Y46717D01*

-X391621Y46609D01*

-X391380Y46461D01*

-X391164Y46277D01*

-X390980Y46061D01*

-X390938Y45993D01*

-Y64270D01*

-X391159Y64217D01*

-X391441Y64194D01*

-X391723Y64217D01*

-X391999Y64283D01*

-X392261Y64391D01*

-X392502Y64539D01*

-X392718Y64723D01*

-X392902Y64939D01*

-X393050Y65180D01*

-X393158Y65442D01*

-X393224Y65718D01*

-X393241Y66000D01*

-X393224Y66282D01*

-X393158Y66558D01*

-X393050Y66820D01*

-X392902Y67061D01*

-X392718Y67277D01*

-X392502Y67461D01*

-X392261Y67609D01*

-X391999Y67717D01*

-X391723Y67783D01*

-X391441Y67806D01*

-X391159Y67783D01*

-X390938Y67730D01*

-Y69695D01*

-X390941Y69694D01*

-X391223Y69717D01*

-X391499Y69783D01*

-X391761Y69891D01*

-X392002Y70039D01*

-X392218Y70223D01*

-X392402Y70439D01*

-X392550Y70680D01*

-X392658Y70942D01*

-X392724Y71218D01*

-X392741Y71500D01*

-X392724Y71782D01*

-X392658Y72058D01*

-X392550Y72320D01*

-X392402Y72561D01*

-X392218Y72777D01*

-X392002Y72961D01*

-X391761Y73109D01*

-X391499Y73217D01*

-X391223Y73283D01*

-X390941Y73306D01*

-X390938Y73305D01*

-Y74195D01*

-X390941Y74194D01*

-X391223Y74217D01*

-X391499Y74283D01*

-X391761Y74391D01*

-X392002Y74539D01*

-X392218Y74723D01*

-X392402Y74939D01*

-X392550Y75180D01*

-X392658Y75442D01*

-X392724Y75718D01*

-X392741Y76000D01*

-X392724Y76282D01*

-X392658Y76558D01*

-X392550Y76820D01*

-X392402Y77061D01*

-X392218Y77277D01*

-X392002Y77461D01*

-X391761Y77609D01*

-X391499Y77717D01*

-X391223Y77783D01*

-X390941Y77806D01*

-X390938Y77805D01*

-Y132000D01*

-X394938D01*

-Y60305D01*

-X394659Y60283D01*

-X394383Y60217D01*

-X394121Y60109D01*

-X393880Y59961D01*

-X393664Y59777D01*

-X393480Y59561D01*

-X393332Y59320D01*

-X393224Y59058D01*

-X393158Y58782D01*

-X393135Y58500D01*

-X393158Y58218D01*

-X393224Y57942D01*

-X393332Y57680D01*

-X393480Y57439D01*

-X393664Y57223D01*

-X393880Y57039D01*

-X394121Y56891D01*

-X394383Y56783D01*

-X394659Y56717D01*

-X394938Y56695D01*

-Y53000D01*

-X394761Y53109D01*

-X394499Y53217D01*

-X394223Y53283D01*

-X393941Y53306D01*

-X393659Y53283D01*

-X393383Y53217D01*

-X393121Y53109D01*

-X392880Y52961D01*

-X392664Y52777D01*

-X392480Y52561D01*

-X392332Y52320D01*

-X392224Y52058D01*

-X392158Y51782D01*

-X392135Y51500D01*

-X392158Y51218D01*

-X392224Y50942D01*

-X392332Y50680D01*

-X392480Y50439D01*

-X392664Y50223D01*

-X392880Y50039D01*

-X393121Y49891D01*

-X393383Y49783D01*

-X393659Y49717D01*

-X393941Y49694D01*

-X394223Y49717D01*

-X394499Y49783D01*

-X394761Y49891D01*

-X394938Y50000D01*

-Y39000D01*

-G37*

-G36*

-X390938D02*X387438D01*

-Y83195D01*

-X387441Y83194D01*

-X387723Y83217D01*

-X387999Y83283D01*

-X388261Y83391D01*

-X388502Y83539D01*

-X388718Y83723D01*

-X388902Y83939D01*

-X389050Y84180D01*

-X389158Y84442D01*

-X389224Y84718D01*

-X389241Y85000D01*

-X389224Y85282D01*

-X389158Y85558D01*

-X389050Y85820D01*

-X388902Y86061D01*

-X388718Y86277D01*

-X388502Y86461D01*

-X388261Y86609D01*

-X387999Y86717D01*

-X387723Y86783D01*

-X387441Y86806D01*

-X387438Y86805D01*

-Y87695D01*

-X387441Y87694D01*

-X387723Y87717D01*

-X387999Y87783D01*

-X388261Y87891D01*

-X388502Y88039D01*

-X388718Y88223D01*

-X388902Y88439D01*

-X389050Y88680D01*

-X389158Y88942D01*

-X389224Y89218D01*

-X389241Y89500D01*

-X389224Y89782D01*

-X389158Y90058D01*

-X389050Y90320D01*

-X388902Y90561D01*

-X388718Y90777D01*

-X388502Y90961D01*

-X388261Y91109D01*

-X387999Y91217D01*

-X387723Y91283D01*

-X387441Y91306D01*

-X387438Y91305D01*

-Y93695D01*

-X387441Y93694D01*

-X387723Y93717D01*

-X387999Y93783D01*

-X388261Y93891D01*

-X388502Y94039D01*

-X388718Y94223D01*

-X388902Y94439D01*

-X389050Y94680D01*

-X389158Y94942D01*

-X389224Y95218D01*

-X389241Y95500D01*

-X389224Y95782D01*

-X389158Y96058D01*

-X389050Y96320D01*

-X388902Y96561D01*

-X388718Y96777D01*

-X388502Y96961D01*

-X388261Y97109D01*

-X387999Y97217D01*

-X387723Y97283D01*

-X387441Y97306D01*

-X387438Y97305D01*

-Y99695D01*

-X387441Y99694D01*

-X387723Y99717D01*

-X387999Y99783D01*

-X388261Y99891D01*

-X388502Y100039D01*

-X388718Y100223D01*

-X388902Y100439D01*

-X389050Y100680D01*

-X389158Y100942D01*

-X389224Y101218D01*

-X389241Y101500D01*

-X389224Y101782D01*

-X389158Y102058D01*

-X389050Y102320D01*

-X388902Y102561D01*

-X388718Y102777D01*

-X388502Y102961D01*

-X388261Y103109D01*

-X387999Y103217D01*

-X387723Y103283D01*

-X387441Y103306D01*

-X387438Y103305D01*

-Y105695D01*

-X387441Y105694D01*

-X387723Y105717D01*

-X387999Y105783D01*

-X388261Y105891D01*

-X388502Y106039D01*

-X388718Y106223D01*

-X388902Y106439D01*

-X389050Y106680D01*

-X389158Y106942D01*

-X389224Y107218D01*

-X389241Y107500D01*

-X389224Y107782D01*

-X389158Y108058D01*

-X389050Y108320D01*

-X388902Y108561D01*

-X388718Y108777D01*

-X388502Y108961D01*

-X388261Y109109D01*

-X387999Y109217D01*

-X387723Y109283D01*

-X387441Y109306D01*

-X387438Y109305D01*

-Y111695D01*

-X387441Y111694D01*

-X387723Y111717D01*

-X387999Y111783D01*

-X388261Y111891D01*

-X388502Y112039D01*

-X388718Y112223D01*

-X388902Y112439D01*

-X389050Y112680D01*

-X389158Y112942D01*

-X389224Y113218D01*

-X389241Y113500D01*

-X389224Y113782D01*

-X389158Y114058D01*

-X389050Y114320D01*

-X388902Y114561D01*

-X388718Y114777D01*

-X388502Y114961D01*

-X388261Y115109D01*

-X387999Y115217D01*

-X387723Y115283D01*

-X387441Y115306D01*

-X387438Y115305D01*

-Y117695D01*

-X387441Y117694D01*

-X387723Y117717D01*

-X387999Y117783D01*

-X388261Y117891D01*

-X388502Y118039D01*

-X388718Y118223D01*

-X388902Y118439D01*

-X389050Y118680D01*

-X389158Y118942D01*

-X389224Y119218D01*

-X389241Y119500D01*

-X389224Y119782D01*

-X389158Y120058D01*

-X389050Y120320D01*

-X388902Y120561D01*

-X388718Y120777D01*

-X388502Y120961D01*

-X388261Y121109D01*

-X387999Y121217D01*

-X387723Y121283D01*

-X387441Y121306D01*

-X387438Y121305D01*

-Y132000D01*

-X390938D01*

-Y77805D01*

-X390659Y77783D01*

-X390383Y77717D01*

-X390121Y77609D01*

-X389880Y77461D01*

-X389664Y77277D01*

-X389480Y77061D01*

-X389332Y76820D01*

-X389224Y76558D01*

-X389158Y76282D01*

-X389135Y76000D01*

-X389158Y75718D01*

-X389224Y75442D01*

-X389332Y75180D01*

-X389480Y74939D01*

-X389664Y74723D01*

-X389880Y74539D01*

-X390121Y74391D01*

-X390383Y74283D01*

-X390659Y74217D01*

-X390938Y74195D01*

-Y73305D01*

-X390659Y73283D01*

-X390383Y73217D01*

-X390121Y73109D01*

-X389880Y72961D01*

-X389664Y72777D01*

-X389480Y72561D01*

-X389332Y72320D01*

-X389224Y72058D01*

-X389158Y71782D01*

-X389135Y71500D01*

-X389158Y71218D01*

-X389224Y70942D01*

-X389332Y70680D01*

-X389480Y70439D01*

-X389664Y70223D01*

-X389880Y70039D01*

-X390121Y69891D01*

-X390383Y69783D01*

-X390659Y69717D01*

-X390938Y69695D01*

-Y67730D01*

-X390883Y67717D01*

-X390621Y67609D01*

-X390380Y67461D01*

-X390164Y67277D01*

-X389980Y67061D01*

-X389832Y66820D01*

-X389724Y66558D01*

-X389658Y66282D01*

-X389635Y66000D01*

-X389658Y65718D01*

-X389724Y65442D01*

-X389832Y65180D01*

-X389980Y64939D01*

-X390164Y64723D01*

-X390380Y64539D01*

-X390621Y64391D01*

-X390883Y64283D01*

-X390938Y64270D01*

-Y45993D01*

-X390832Y45820D01*

-X390724Y45558D01*

-X390658Y45282D01*

-X390635Y45000D01*

-X390658Y44718D01*

-X390724Y44442D01*

-X390832Y44180D01*

-X390938Y44007D01*

-Y39000D01*

-G37*

-G36*

-X387438D02*X354438D01*

-Y83195D01*

-X354441Y83194D01*

-X354723Y83217D01*

-X354999Y83283D01*

-X355261Y83391D01*

-X355502Y83539D01*

-X355718Y83723D01*

-X355902Y83939D01*

-X356050Y84180D01*

-X356158Y84442D01*

-X356224Y84718D01*

-X356241Y85000D01*

-X356224Y85282D01*

-X356158Y85558D01*

-X356050Y85820D01*

-X355902Y86061D01*

-X355718Y86277D01*

-X355502Y86461D01*

-X355261Y86609D01*

-X354999Y86717D01*

-X354723Y86783D01*

-X354441Y86806D01*

-X354438Y86805D01*

-Y87695D01*

-X354441Y87694D01*

-X354723Y87717D01*

-X354999Y87783D01*

-X355261Y87891D01*

-X355502Y88039D01*

-X355718Y88223D01*

-X355902Y88439D01*

-X356050Y88680D01*

-X356158Y88942D01*

-X356224Y89218D01*

-X356241Y89500D01*

-X356224Y89782D01*

-X356158Y90058D01*

-X356050Y90320D01*

-X355902Y90561D01*

-X355718Y90777D01*

-X355502Y90961D01*

-X355261Y91109D01*

-X354999Y91217D01*

-X354723Y91283D01*

-X354441Y91306D01*

-X354438Y91305D01*

-Y93695D01*

-X354441Y93694D01*

-X354723Y93717D01*

-X354999Y93783D01*

-X355261Y93891D01*

-X355502Y94039D01*

-X355718Y94223D01*

-X355902Y94439D01*

-X356050Y94680D01*

-X356158Y94942D01*

-X356224Y95218D01*

-X356241Y95500D01*

-X356224Y95782D01*

-X356158Y96058D01*

-X356050Y96320D01*

-X355902Y96561D01*

-X355718Y96777D01*

-X355502Y96961D01*

-X355261Y97109D01*

-X354999Y97217D01*

-X354723Y97283D01*

-X354441Y97306D01*

-X354438Y97305D01*

-Y99695D01*

-X354441Y99694D01*

-X354723Y99717D01*

-X354999Y99783D01*

-X355261Y99891D01*

-X355502Y100039D01*

-X355718Y100223D01*

-X355902Y100439D01*

-X356050Y100680D01*

-X356158Y100942D01*

-X356224Y101218D01*

-X356241Y101500D01*

-X356224Y101782D01*

-X356158Y102058D01*

-X356050Y102320D01*

-X355902Y102561D01*

-X355718Y102777D01*

-X355502Y102961D01*

-X355261Y103109D01*

-X354999Y103217D01*

-X354723Y103283D01*

-X354441Y103306D01*

-X354438Y103305D01*

-Y105695D01*

-X354441Y105694D01*

-X354723Y105717D01*

-X354999Y105783D01*

-X355261Y105891D01*

-X355502Y106039D01*

-X355718Y106223D01*

-X355902Y106439D01*

-X356050Y106680D01*

-X356158Y106942D01*

-X356224Y107218D01*

-X356241Y107500D01*

-X356224Y107782D01*

-X356158Y108058D01*

-X356050Y108320D01*

-X355902Y108561D01*

-X355718Y108777D01*

-X355502Y108961D01*

-X355261Y109109D01*

-X354999Y109217D01*

-X354723Y109283D01*

-X354441Y109306D01*

-X354438Y109305D01*

-Y111695D01*

-X354441Y111694D01*

-X354723Y111717D01*

-X354999Y111783D01*

-X355261Y111891D01*

-X355502Y112039D01*

-X355718Y112223D01*

-X355902Y112439D01*

-X356050Y112680D01*

-X356158Y112942D01*

-X356224Y113218D01*

-X356241Y113500D01*

-X356224Y113782D01*

-X356158Y114058D01*

-X356050Y114320D01*

-X355902Y114561D01*

-X355718Y114777D01*

-X355502Y114961D01*

-X355261Y115109D01*

-X354999Y115217D01*

-X354723Y115283D01*

-X354441Y115306D01*

-X354438Y115305D01*

-Y117695D01*

-X354441Y117694D01*

-X354723Y117717D01*

-X354999Y117783D01*

-X355261Y117891D01*

-X355502Y118039D01*

-X355718Y118223D01*

-X355902Y118439D01*

-X356050Y118680D01*

-X356158Y118942D01*

-X356224Y119218D01*

-X356241Y119500D01*

-X356224Y119782D01*

-X356158Y120058D01*

-X356050Y120320D01*

-X355902Y120561D01*

-X355718Y120777D01*

-X355502Y120961D01*

-X355261Y121109D01*

-X354999Y121217D01*

-X354723Y121283D01*

-X354441Y121306D01*

-X354438Y121305D01*

-Y132000D01*

-X387438D01*

-Y121305D01*

-X387159Y121283D01*

-X386883Y121217D01*

-X386621Y121109D01*

-X386380Y120961D01*

-X386164Y120777D01*

-X385980Y120561D01*

-X385832Y120320D01*

-X385724Y120058D01*

-X385658Y119782D01*

-X385635Y119500D01*

-X385658Y119218D01*

-X385724Y118942D01*

-X385832Y118680D01*

-X385980Y118439D01*

-X386164Y118223D01*

-X386380Y118039D01*

-X386621Y117891D01*

-X386883Y117783D01*

-X387159Y117717D01*

-X387438Y117695D01*

-Y115305D01*

-X387159Y115283D01*

-X386883Y115217D01*

-X386621Y115109D01*

-X386380Y114961D01*

-X386164Y114777D01*

-X385980Y114561D01*

-X385832Y114320D01*

-X385724Y114058D01*

-X385658Y113782D01*

-X385635Y113500D01*

-X385658Y113218D01*

-X385724Y112942D01*

-X385832Y112680D01*

-X385980Y112439D01*

-X386164Y112223D01*

-X386380Y112039D01*

-X386621Y111891D01*

-X386883Y111783D01*

-X387159Y111717D01*

-X387438Y111695D01*

-Y109305D01*

-X387159Y109283D01*

-X386883Y109217D01*

-X386621Y109109D01*

-X386380Y108961D01*

-X386164Y108777D01*

-X385980Y108561D01*

-X385832Y108320D01*

-X385724Y108058D01*

-X385658Y107782D01*

-X385635Y107500D01*

-X385658Y107218D01*

-X385724Y106942D01*

-X385832Y106680D01*

-X385980Y106439D01*

-X386164Y106223D01*

-X386380Y106039D01*

-X386621Y105891D01*

-X386883Y105783D01*

-X387159Y105717D01*

-X387438Y105695D01*

-Y103305D01*

-X387159Y103283D01*

-X386883Y103217D01*

-X386621Y103109D01*

-X386380Y102961D01*

-X386164Y102777D01*

-X385980Y102561D01*

-X385832Y102320D01*

-X385724Y102058D01*

-X385658Y101782D01*

-X385635Y101500D01*

-X385658Y101218D01*

-X385724Y100942D01*

-X385832Y100680D01*

-X385980Y100439D01*

-X386164Y100223D01*

-X386380Y100039D01*

-X386621Y99891D01*

-X386883Y99783D01*

-X387159Y99717D01*

-X387438Y99695D01*

-Y97305D01*

-X387159Y97283D01*

-X386883Y97217D01*

-X386621Y97109D01*

-X386380Y96961D01*

-X386164Y96777D01*

-X385980Y96561D01*

-X385832Y96320D01*

-X385724Y96058D01*

-X385658Y95782D01*

-X385635Y95500D01*

-X385658Y95218D01*

-X385724Y94942D01*

-X385832Y94680D01*

-X385980Y94439D01*

-X386164Y94223D01*

-X386380Y94039D01*

-X386621Y93891D01*

-X386883Y93783D01*

-X387159Y93717D01*

-X387438Y93695D01*

-Y91305D01*

-X387159Y91283D01*

-X386883Y91217D01*

-X386621Y91109D01*

-X386380Y90961D01*

-X386164Y90777D01*

-X385980Y90561D01*

-X385832Y90320D01*

-X385724Y90058D01*

-X385658Y89782D01*

-X385635Y89500D01*

-X385658Y89218D01*

-X385724Y88942D01*

-X385832Y88680D01*

-X385980Y88439D01*

-X386164Y88223D01*

-X386380Y88039D01*

-X386621Y87891D01*

-X386883Y87783D01*

-X387159Y87717D01*

-X387438Y87695D01*

-Y86805D01*

-X387159Y86783D01*

-X386883Y86717D01*

-X386621Y86609D01*

-X386380Y86461D01*

-X386164Y86277D01*

-X385980Y86061D01*

-X385832Y85820D01*

-X385724Y85558D01*

-X385658Y85282D01*

-X385635Y85000D01*

-X385658Y84718D01*

-X385724Y84442D01*

-X385832Y84180D01*

-X385980Y83939D01*

-X386164Y83723D01*

-X386380Y83539D01*

-X386621Y83391D01*

-X386883Y83283D01*

-X387159Y83217D01*

-X387438Y83195D01*

-Y39000D01*

-G37*

-G36*

-X354438D02*X299273D01*

-Y42867D01*

-X299374Y42909D01*

-X299575Y43033D01*

-X299755Y43186D01*

-X299908Y43366D01*

-X300032Y43567D01*

-X300122Y43785D01*

-X300177Y44015D01*

-X300191Y44250D01*

-X300177Y50985D01*

-X300122Y51215D01*

-X300032Y51433D01*

-X299908Y51634D01*

-X299755Y51814D01*

-X299575Y51967D01*

-X299374Y52091D01*

-X299273Y52133D01*

-Y55170D01*

-X299384Y55204D01*

-X299491Y55256D01*

-X299587Y55323D01*

-X299672Y55405D01*

-X299743Y55500D01*

-X299797Y55605D01*

-X299956Y56008D01*

-X300073Y56425D01*

-X300152Y56852D01*

-X300191Y57283D01*

-Y57717D01*

-X300152Y58148D01*

-X300073Y58575D01*

-X299956Y58992D01*

-X299801Y59397D01*

-X299746Y59502D01*

-X299675Y59597D01*

-X299589Y59679D01*

-X299492Y59747D01*

-X299386Y59799D01*

-X299273Y59834D01*

-Y64673D01*

-X299296Y64699D01*

-X299686Y65337D01*

-X299972Y66028D01*

-X300147Y66755D01*

-X300191Y67500D01*

-X300147Y68245D01*

-X299972Y68972D01*

-X299686Y69663D01*

-X299296Y70301D01*

-X299273Y70327D01*

-Y72500D01*

-X328441D01*

-Y132000D01*

-X354438D01*

-Y121305D01*

-X354159Y121283D01*

-X353883Y121217D01*

-X353621Y121109D01*

-X353380Y120961D01*

-X353164Y120777D01*

-X352980Y120561D01*

-X352832Y120320D01*

-X352724Y120058D01*

-X352658Y119782D01*

-X352635Y119500D01*

-X352658Y119218D01*

-X352724Y118942D01*

-X352832Y118680D01*

-X352980Y118439D01*

-X353164Y118223D01*

-X353380Y118039D01*

-X353621Y117891D01*

-X353883Y117783D01*

-X354159Y117717D01*

-X354438Y117695D01*

-Y115305D01*

-X354159Y115283D01*

-X353883Y115217D01*

-X353621Y115109D01*

-X353380Y114961D01*

-X353164Y114777D01*

-X352980Y114561D01*

-X352832Y114320D01*

-X352724Y114058D01*

-X352658Y113782D01*

-X352635Y113500D01*

-X352658Y113218D01*

-X352724Y112942D01*

-X352832Y112680D01*

-X352980Y112439D01*

-X353164Y112223D01*

-X353380Y112039D01*

-X353621Y111891D01*

-X353883Y111783D01*

-X354159Y111717D01*

-X354438Y111695D01*

-Y109305D01*

-X354159Y109283D01*

-X353883Y109217D01*

-X353621Y109109D01*

-X353380Y108961D01*

-X353164Y108777D01*

-X352980Y108561D01*

-X352832Y108320D01*

-X352724Y108058D01*

-X352658Y107782D01*

-X352635Y107500D01*

-X352658Y107218D01*

-X352724Y106942D01*

-X352832Y106680D01*

-X352980Y106439D01*

-X353164Y106223D01*

-X353380Y106039D01*

-X353621Y105891D01*

-X353883Y105783D01*

-X354159Y105717D01*

-X354438Y105695D01*

-Y103305D01*

-X354159Y103283D01*

-X353883Y103217D01*

-X353621Y103109D01*

-X353380Y102961D01*

-X353164Y102777D01*

-X352980Y102561D01*

-X352832Y102320D01*

-X352724Y102058D01*

-X352658Y101782D01*

-X352635Y101500D01*

-X352658Y101218D01*

-X352724Y100942D01*

-X352832Y100680D01*

-X352980Y100439D01*

-X353164Y100223D01*

-X353380Y100039D01*

-X353621Y99891D01*

-X353883Y99783D01*

-X354159Y99717D01*

-X354438Y99695D01*

-Y97305D01*

-X354159Y97283D01*

-X353883Y97217D01*

-X353621Y97109D01*

-X353380Y96961D01*

-X353164Y96777D01*

-X352980Y96561D01*

-X352832Y96320D01*

-X352724Y96058D01*

-X352658Y95782D01*

-X352635Y95500D01*

-X352658Y95218D01*

-X352724Y94942D01*

-X352832Y94680D01*

-X352980Y94439D01*

-X353164Y94223D01*

-X353380Y94039D01*

-X353621Y93891D01*

-X353883Y93783D01*

-X354159Y93717D01*

-X354438Y93695D01*

-Y91305D01*

-X354159Y91283D01*

-X353883Y91217D01*

-X353621Y91109D01*

-X353380Y90961D01*

-X353164Y90777D01*

-X352980Y90561D01*

-X352832Y90320D01*

-X352724Y90058D01*

-X352658Y89782D01*

-X352635Y89500D01*

-X352658Y89218D01*

-X352724Y88942D01*

-X352832Y88680D01*

-X352980Y88439D01*

-X353164Y88223D01*

-X353380Y88039D01*

-X353621Y87891D01*

-X353883Y87783D01*

-X354159Y87717D01*

-X354438Y87695D01*

-Y86805D01*

-X354159Y86783D01*

-X353883Y86717D01*

-X353621Y86609D01*

-X353380Y86461D01*

-X353164Y86277D01*

-X352980Y86061D01*

-X352832Y85820D01*

-X352724Y85558D01*

-X352658Y85282D01*

-X352635Y85000D01*

-X352658Y84718D01*

-X352724Y84442D01*

-X352832Y84180D01*

-X352980Y83939D01*

-X353164Y83723D01*

-X353380Y83539D01*

-X353621Y83391D01*

-X353883Y83283D01*

-X354159Y83217D01*

-X354438Y83195D01*

-Y39000D01*

-G37*

-G36*

-X299273Y70327D02*X298810Y70869D01*

-X298242Y71355D01*

-X297604Y71745D01*

-X296913Y72031D01*

-X296186Y72206D01*

-X295441Y72265D01*

-Y72500D01*

-X299273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X299156Y52181D01*

-X298926Y52236D01*

-X298691Y52250D01*

-X295441Y52243D01*

-Y52750D01*

-X295658D01*

-X296089Y52789D01*

-X296516Y52868D01*

-X296933Y52985D01*

-X297338Y53140D01*

-X297443Y53195D01*

-X297538Y53266D01*

-X297620Y53352D01*

-X297688Y53449D01*

-X297740Y53555D01*

-X297775Y53669D01*

-X297791Y53786D01*

-X297789Y53905D01*

-X297768Y54022D01*

-X297730Y54134D01*

-X297674Y54238D01*

-X297603Y54333D01*

-X297517Y54415D01*

-X297420Y54483D01*

-X297314Y54535D01*

-X297200Y54570D01*

-X297083Y54586D01*

-X296964Y54584D01*

-X296848Y54564D01*

-X296736Y54523D01*

-X296461Y54414D01*

-X296176Y54334D01*

-X295884Y54280D01*

-X295589Y54253D01*

-X295441D01*

-Y60747D01*

-X295589D01*

-X295884Y60720D01*

-X296176Y60666D01*

-X296461Y60586D01*

-X296738Y60480D01*

-X296848Y60440D01*

-X296965Y60419D01*

-X297083Y60417D01*

-X297200Y60433D01*

-X297312Y60468D01*

-X297419Y60520D01*

-X297515Y60587D01*

-X297600Y60669D01*

-X297671Y60763D01*

-X297727Y60868D01*

-X297765Y60979D01*

-X297786Y61096D01*

-X297788Y61214D01*

-X297771Y61330D01*

-X297737Y61443D01*

-X297685Y61550D01*

-X297618Y61646D01*

-X297536Y61731D01*

-X297441Y61802D01*

-X297336Y61856D01*

-X296933Y62015D01*

-X296516Y62132D01*

-X296089Y62211D01*

-X295658Y62250D01*

-X295441D01*

-Y62735D01*

-X296186Y62794D01*

-X296913Y62969D01*

-X297604Y63255D01*

-X298242Y63645D01*

-X298810Y64131D01*

-X299273Y64673D01*

-Y59834D01*

-X299272Y59834D01*

-X299155Y59850D01*

-X299036Y59848D01*

-X298919Y59827D01*

-X298807Y59789D01*

-X298703Y59733D01*

-X298608Y59662D01*

-X298526Y59576D01*

-X298458Y59479D01*

-X298406Y59373D01*

-X298371Y59259D01*

-X298355Y59142D01*

-X298357Y59023D01*

-X298377Y58907D01*

-X298418Y58795D01*

-X298527Y58520D01*

-X298607Y58235D01*

-X298661Y57943D01*

-X298688Y57648D01*

-Y57352D01*

-X298661Y57057D01*

-X298607Y56765D01*

-X298527Y56480D01*

-X298421Y56203D01*

-X298381Y56093D01*

-X298360Y55976D01*

-X298358Y55858D01*

-X298374Y55741D01*

-X298409Y55629D01*

-X298461Y55522D01*

-X298528Y55426D01*

-X298610Y55341D01*

-X298704Y55270D01*

-X298809Y55214D01*

-X298920Y55176D01*

-X299037Y55155D01*

-X299155Y55153D01*

-X299271Y55170D01*

-X299273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X295441D01*

-Y42757D01*

-X298926Y42764D01*

-X299156Y42819D01*

-X299273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X291609Y64673D02*X292072Y64131D01*

-X292640Y63645D01*

-X293278Y63255D01*

-X293969Y62969D01*

-X294696Y62794D01*

-X295441Y62735D01*

-Y62250D01*

-X295224D01*

-X294793Y62211D01*

-X294366Y62132D01*

-X293949Y62015D01*

-X293544Y61860D01*

-X293439Y61805D01*

-X293344Y61734D01*

-X293262Y61648D01*

-X293194Y61551D01*

-X293142Y61445D01*

-X293107Y61331D01*

-X293091Y61214D01*

-X293093Y61095D01*

-X293114Y60978D01*

-X293152Y60866D01*

-X293208Y60762D01*

-X293279Y60667D01*

-X293365Y60585D01*

-X293462Y60517D01*

-X293568Y60465D01*

-X293682Y60430D01*

-X293799Y60414D01*

-X293918Y60416D01*

-X294034Y60436D01*

-X294146Y60477D01*

-X294421Y60586D01*

-X294706Y60666D01*

-X294998Y60720D01*

-X295293Y60747D01*

-X295441D01*

-Y54253D01*

-X295293D01*

-X294998Y54280D01*

-X294706Y54334D01*

-X294421Y54414D01*

-X294144Y54520D01*

-X294034Y54560D01*

-X293917Y54581D01*

-X293799Y54583D01*

-X293682Y54567D01*

-X293570Y54532D01*

-X293463Y54480D01*

-X293367Y54413D01*

-X293282Y54331D01*

-X293211Y54237D01*

-X293155Y54132D01*

-X293117Y54021D01*

-X293096Y53904D01*

-X293094Y53786D01*

-X293111Y53670D01*

-X293145Y53557D01*

-X293197Y53450D01*

-X293264Y53354D01*

-X293346Y53269D01*

-X293441Y53198D01*

-X293546Y53144D01*

-X293949Y52985D01*

-X294366Y52868D01*

-X294793Y52789D01*

-X295224Y52750D01*

-X295441D01*

-Y52243D01*

-X291956Y52236D01*

-X291726Y52181D01*

-X291609Y52133D01*

-Y55166D01*

-X291610Y55166D01*

-X291727Y55150D01*

-X291846Y55152D01*

-X291963Y55173D01*

-X292075Y55211D01*

-X292179Y55267D01*

-X292274Y55338D01*

-X292356Y55424D01*

-X292424Y55521D01*

-X292476Y55627D01*

-X292511Y55741D01*

-X292527Y55858D01*

-X292525Y55977D01*

-X292505Y56093D01*

-X292464Y56205D01*

-X292355Y56480D01*

-X292275Y56765D01*

-X292221Y57057D01*

-X292194Y57352D01*

-Y57648D01*

-X292221Y57943D01*

-X292275Y58235D01*

-X292355Y58520D01*

-X292461Y58797D01*

-X292501Y58907D01*

-X292522Y59024D01*

-X292524Y59142D01*

-X292508Y59259D01*

-X292473Y59371D01*

-X292421Y59478D01*

-X292354Y59574D01*

-X292272Y59659D01*

-X292178Y59730D01*

-X292073Y59786D01*

-X291962Y59824D01*

-X291845Y59845D01*

-X291727Y59847D01*

-X291610Y59830D01*

-X291609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X295441D01*

-Y72265D01*

-X294696Y72206D01*

-X293969Y72031D01*

-X293278Y71745D01*

-X292640Y71355D01*

-X292072Y70869D01*

-X291609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X295441Y39000D02*X291609D01*

-Y42867D01*

-X291726Y42819D01*

-X291956Y42764D01*

-X292191Y42750D01*

-X295441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X291609D02*X269273D01*

-Y42867D01*

-X269374Y42909D01*

-X269575Y43033D01*

-X269755Y43186D01*

-X269908Y43366D01*

-X270032Y43567D01*

-X270122Y43785D01*

-X270177Y44015D01*

-X270191Y44250D01*

-X270177Y50985D01*

-X270122Y51215D01*

-X270032Y51433D01*

-X269908Y51634D01*

-X269755Y51814D01*

-X269575Y51967D01*

-X269374Y52091D01*

-X269273Y52133D01*

-Y55170D01*

-X269384Y55204D01*

-X269491Y55256D01*

-X269587Y55323D01*

-X269672Y55405D01*

-X269743Y55500D01*

-X269797Y55605D01*

-X269956Y56008D01*

-X270073Y56425D01*

-X270152Y56852D01*

-X270191Y57283D01*

-Y57717D01*

-X270152Y58148D01*

-X270073Y58575D01*

-X269956Y58992D01*

-X269801Y59397D01*

-X269746Y59502D01*

-X269675Y59597D01*

-X269589Y59679D01*

-X269492Y59747D01*

-X269386Y59799D01*

-X269273Y59834D01*

-Y64673D01*

-X269296Y64699D01*

-X269686Y65337D01*

-X269972Y66028D01*

-X270147Y66755D01*

-X270191Y67500D01*

-X270147Y68245D01*

-X269972Y68972D01*

-X269686Y69663D01*

-X269296Y70301D01*

-X269273Y70327D01*

-Y72500D01*

-X291609D01*

-Y70327D01*

-X291586Y70301D01*

-X291196Y69663D01*

-X290910Y68972D01*

-X290735Y68245D01*

-X290676Y67500D01*

-X290735Y66755D01*

-X290910Y66028D01*

-X291196Y65337D01*

-X291586Y64699D01*

-X291609Y64673D01*

-Y59830D01*

-X291498Y59796D01*

-X291391Y59744D01*

-X291295Y59677D01*

-X291210Y59595D01*

-X291139Y59500D01*

-X291085Y59395D01*

-X290926Y58992D01*

-X290809Y58575D01*

-X290730Y58148D01*

-X290691Y57717D01*

-Y57283D01*

-X290730Y56852D01*

-X290809Y56425D01*

-X290926Y56008D01*

-X291081Y55603D01*

-X291136Y55498D01*

-X291207Y55403D01*

-X291293Y55321D01*

-X291390Y55253D01*

-X291496Y55201D01*

-X291609Y55166D01*

-Y52133D01*

-X291508Y52091D01*

-X291307Y51967D01*

-X291127Y51814D01*

-X290974Y51634D01*

-X290850Y51433D01*

-X290760Y51215D01*

-X290705Y50985D01*

-X290691Y50750D01*

-X290705Y44015D01*

-X290760Y43785D01*

-X290850Y43567D01*

-X290974Y43366D01*

-X291127Y43186D01*

-X291307Y43033D01*

-X291508Y42909D01*

-X291609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X269273Y70327D02*X268810Y70869D01*

-X268242Y71355D01*

-X267604Y71745D01*

-X266913Y72031D01*

-X266186Y72206D01*

-X265441Y72265D01*

-Y72500D01*

-X269273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X269156Y52181D01*

-X268926Y52236D01*

-X268691Y52250D01*

-X265441Y52243D01*

-Y52750D01*

-X265658D01*

-X266089Y52789D01*

-X266516Y52868D01*

-X266933Y52985D01*

-X267338Y53140D01*

-X267443Y53195D01*

-X267538Y53266D01*

-X267620Y53352D01*

-X267688Y53449D01*

-X267740Y53555D01*

-X267775Y53669D01*

-X267791Y53786D01*

-X267789Y53905D01*

-X267768Y54022D01*

-X267730Y54134D01*

-X267674Y54238D01*

-X267603Y54333D01*

-X267517Y54415D01*

-X267420Y54483D01*

-X267314Y54535D01*

-X267200Y54570D01*

-X267083Y54586D01*

-X266964Y54584D01*

-X266848Y54564D01*

-X266736Y54523D01*

-X266461Y54414D01*

-X266176Y54334D01*

-X265884Y54280D01*

-X265589Y54253D01*

-X265441D01*

-Y60747D01*

-X265589D01*

-X265884Y60720D01*

-X266176Y60666D01*

-X266461Y60586D01*

-X266738Y60480D01*

-X266848Y60440D01*

-X266965Y60419D01*

-X267083Y60417D01*

-X267200Y60433D01*

-X267312Y60468D01*

-X267419Y60520D01*

-X267515Y60587D01*

-X267600Y60669D01*

-X267671Y60763D01*

-X267727Y60868D01*

-X267765Y60979D01*

-X267786Y61096D01*

-X267788Y61214D01*

-X267771Y61330D01*

-X267737Y61443D01*

-X267685Y61550D01*

-X267618Y61646D01*

-X267536Y61731D01*

-X267441Y61802D01*

-X267336Y61856D01*

-X266933Y62015D01*

-X266516Y62132D01*

-X266089Y62211D01*

-X265658Y62250D01*

-X265441D01*

-Y62735D01*

-X266186Y62794D01*

-X266913Y62969D01*

-X267604Y63255D01*

-X268242Y63645D01*

-X268810Y64131D01*

-X269273Y64673D01*

-Y59834D01*

-X269272Y59834D01*

-X269155Y59850D01*

-X269036Y59848D01*

-X268919Y59827D01*

-X268807Y59789D01*

-X268703Y59733D01*

-X268608Y59662D01*

-X268526Y59576D01*

-X268458Y59479D01*

-X268406Y59373D01*

-X268371Y59259D01*

-X268355Y59142D01*

-X268357Y59023D01*

-X268377Y58907D01*

-X268418Y58795D01*

-X268527Y58520D01*

-X268607Y58235D01*

-X268661Y57943D01*

-X268688Y57648D01*

-Y57352D01*

-X268661Y57057D01*

-X268607Y56765D01*

-X268527Y56480D01*

-X268421Y56203D01*

-X268381Y56093D01*

-X268360Y55976D01*

-X268358Y55858D01*

-X268374Y55741D01*

-X268409Y55629D01*

-X268461Y55522D01*

-X268528Y55426D01*

-X268610Y55341D01*

-X268704Y55270D01*

-X268809Y55214D01*

-X268920Y55176D01*

-X269037Y55155D01*

-X269155Y55153D01*

-X269271Y55170D01*

-X269273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X265441D01*

-Y42757D01*

-X268926Y42764D01*

-X269156Y42819D01*

-X269273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X261609Y64673D02*X262072Y64131D01*

-X262640Y63645D01*

-X263278Y63255D01*

-X263969Y62969D01*

-X264696Y62794D01*

-X265441Y62735D01*

-Y62250D01*

-X265224D01*

-X264793Y62211D01*

-X264366Y62132D01*

-X263949Y62015D01*

-X263544Y61860D01*

-X263439Y61805D01*

-X263344Y61734D01*

-X263262Y61648D01*

-X263194Y61551D01*

-X263142Y61445D01*

-X263107Y61331D01*

-X263091Y61214D01*

-X263093Y61095D01*

-X263114Y60978D01*

-X263152Y60866D01*

-X263208Y60762D01*

-X263279Y60667D01*

-X263365Y60585D01*

-X263462Y60517D01*

-X263568Y60465D01*

-X263682Y60430D01*

-X263799Y60414D01*

-X263918Y60416D01*

-X264034Y60436D01*

-X264146Y60477D01*

-X264421Y60586D01*

-X264706Y60666D01*

-X264998Y60720D01*

-X265293Y60747D01*

-X265441D01*

-Y54253D01*

-X265293D01*

-X264998Y54280D01*

-X264706Y54334D01*

-X264421Y54414D01*

-X264144Y54520D01*

-X264034Y54560D01*

-X263917Y54581D01*

-X263799Y54583D01*

-X263682Y54567D01*

-X263570Y54532D01*

-X263463Y54480D01*

-X263367Y54413D01*

-X263282Y54331D01*

-X263211Y54237D01*

-X263155Y54132D01*

-X263117Y54021D01*

-X263096Y53904D01*

-X263094Y53786D01*

-X263111Y53670D01*

-X263145Y53557D01*

-X263197Y53450D01*

-X263264Y53354D01*

-X263346Y53269D01*

-X263441Y53198D01*

-X263546Y53144D01*

-X263949Y52985D01*

-X264366Y52868D01*

-X264793Y52789D01*

-X265224Y52750D01*

-X265441D01*

-Y52243D01*

-X261956Y52236D01*

-X261726Y52181D01*

-X261609Y52133D01*

-Y55166D01*

-X261610Y55166D01*

-X261727Y55150D01*

-X261846Y55152D01*

-X261963Y55173D01*

-X262075Y55211D01*

-X262179Y55267D01*

-X262274Y55338D01*

-X262356Y55424D01*

-X262424Y55521D01*

-X262476Y55627D01*

-X262511Y55741D01*

-X262527Y55858D01*

-X262525Y55977D01*

-X262505Y56093D01*

-X262464Y56205D01*

-X262355Y56480D01*

-X262275Y56765D01*

-X262221Y57057D01*

-X262194Y57352D01*

-Y57648D01*

-X262221Y57943D01*

-X262275Y58235D01*

-X262355Y58520D01*

-X262461Y58797D01*

-X262501Y58907D01*

-X262522Y59024D01*

-X262524Y59142D01*

-X262508Y59259D01*

-X262473Y59371D01*

-X262421Y59478D01*

-X262354Y59574D01*

-X262272Y59659D01*

-X262178Y59730D01*

-X262073Y59786D01*

-X261962Y59824D01*

-X261845Y59845D01*

-X261727Y59847D01*

-X261610Y59830D01*

-X261609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X265441D01*

-Y72265D01*

-X264696Y72206D01*

-X263969Y72031D01*

-X263278Y71745D01*

-X262640Y71355D01*

-X262072Y70869D01*

-X261609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X265441Y39000D02*X261609D01*

-Y42867D01*

-X261726Y42819D01*

-X261956Y42764D01*

-X262191Y42750D01*

-X265441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X261609D02*X239273D01*

-Y42867D01*

-X239374Y42909D01*

-X239575Y43033D01*

-X239755Y43186D01*

-X239908Y43366D01*

-X240032Y43567D01*

-X240122Y43785D01*

-X240177Y44015D01*

-X240191Y44250D01*

-X240177Y50985D01*

-X240122Y51215D01*

-X240032Y51433D01*

-X239908Y51634D01*

-X239755Y51814D01*

-X239575Y51967D01*

-X239374Y52091D01*

-X239273Y52133D01*

-Y55170D01*

-X239384Y55204D01*

-X239491Y55256D01*

-X239587Y55323D01*

-X239672Y55405D01*

-X239743Y55500D01*

-X239797Y55605D01*

-X239956Y56008D01*

-X240073Y56425D01*

-X240152Y56852D01*

-X240191Y57283D01*

-Y57717D01*

-X240152Y58148D01*

-X240073Y58575D01*

-X239956Y58992D01*

-X239801Y59397D01*

-X239746Y59502D01*

-X239675Y59597D01*

-X239589Y59679D01*

-X239492Y59747D01*

-X239386Y59799D01*

-X239273Y59834D01*

-Y64673D01*

-X239296Y64699D01*

-X239686Y65337D01*

-X239972Y66028D01*

-X240147Y66755D01*

-X240191Y67500D01*

-X240147Y68245D01*

-X239972Y68972D01*

-X239686Y69663D01*

-X239296Y70301D01*

-X239273Y70327D01*

-Y72500D01*

-X261609D01*

-Y70327D01*

-X261586Y70301D01*

-X261196Y69663D01*

-X260910Y68972D01*

-X260735Y68245D01*

-X260676Y67500D01*

-X260735Y66755D01*

-X260910Y66028D01*

-X261196Y65337D01*

-X261586Y64699D01*

-X261609Y64673D01*

-Y59830D01*

-X261498Y59796D01*

-X261391Y59744D01*

-X261295Y59677D01*

-X261210Y59595D01*

-X261139Y59500D01*

-X261085Y59395D01*

-X260926Y58992D01*

-X260809Y58575D01*

-X260730Y58148D01*

-X260691Y57717D01*

-Y57283D01*

-X260730Y56852D01*

-X260809Y56425D01*

-X260926Y56008D01*

-X261081Y55603D01*

-X261136Y55498D01*

-X261207Y55403D01*

-X261293Y55321D01*

-X261390Y55253D01*

-X261496Y55201D01*

-X261609Y55166D01*

-Y52133D01*

-X261508Y52091D01*

-X261307Y51967D01*

-X261127Y51814D01*

-X260974Y51634D01*

-X260850Y51433D01*

-X260760Y51215D01*

-X260705Y50985D01*

-X260691Y50750D01*

-X260705Y44015D01*

-X260760Y43785D01*

-X260850Y43567D01*

-X260974Y43366D01*

-X261127Y43186D01*

-X261307Y43033D01*

-X261508Y42909D01*

-X261609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X239273Y70327D02*X238810Y70869D01*

-X238242Y71355D01*

-X237604Y71745D01*

-X236913Y72031D01*

-X236186Y72206D01*

-X235441Y72265D01*

-Y72500D01*

-X239273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X239156Y52181D01*

-X238926Y52236D01*

-X238691Y52250D01*

-X235441Y52243D01*

-Y52750D01*

-X235658D01*

-X236089Y52789D01*

-X236516Y52868D01*

-X236933Y52985D01*

-X237338Y53140D01*

-X237443Y53195D01*

-X237538Y53266D01*

-X237620Y53352D01*

-X237688Y53449D01*

-X237740Y53555D01*

-X237775Y53669D01*

-X237791Y53786D01*

-X237789Y53905D01*

-X237768Y54022D01*

-X237730Y54134D01*

-X237674Y54238D01*

-X237603Y54333D01*

-X237517Y54415D01*

-X237420Y54483D01*

-X237314Y54535D01*

-X237200Y54570D01*

-X237083Y54586D01*

-X236964Y54584D01*

-X236848Y54564D01*

-X236736Y54523D01*

-X236461Y54414D01*

-X236176Y54334D01*

-X235884Y54280D01*

-X235589Y54253D01*

-X235441D01*

-Y60747D01*

-X235589D01*

-X235884Y60720D01*

-X236176Y60666D01*

-X236461Y60586D01*

-X236738Y60480D01*

-X236848Y60440D01*

-X236965Y60419D01*

-X237083Y60417D01*

-X237200Y60433D01*

-X237312Y60468D01*

-X237419Y60520D01*

-X237515Y60587D01*

-X237600Y60669D01*

-X237671Y60763D01*

-X237727Y60868D01*

-X237765Y60979D01*

-X237786Y61096D01*

-X237788Y61214D01*

-X237771Y61330D01*

-X237737Y61443D01*

-X237685Y61550D01*

-X237618Y61646D01*

-X237536Y61731D01*

-X237441Y61802D01*

-X237336Y61856D01*

-X236933Y62015D01*

-X236516Y62132D01*

-X236089Y62211D01*

-X235658Y62250D01*

-X235441D01*

-Y62735D01*

-X236186Y62794D01*

-X236913Y62969D01*

-X237604Y63255D01*

-X238242Y63645D01*

-X238810Y64131D01*

-X239273Y64673D01*

-Y59834D01*

-X239272Y59834D01*

-X239155Y59850D01*

-X239036Y59848D01*

-X238919Y59827D01*

-X238807Y59789D01*

-X238703Y59733D01*

-X238608Y59662D01*

-X238526Y59576D01*

-X238458Y59479D01*

-X238406Y59373D01*

-X238371Y59259D01*

-X238355Y59142D01*

-X238357Y59023D01*

-X238377Y58907D01*

-X238418Y58795D01*

-X238527Y58520D01*

-X238607Y58235D01*

-X238661Y57943D01*

-X238688Y57648D01*

-Y57352D01*

-X238661Y57057D01*

-X238607Y56765D01*

-X238527Y56480D01*

-X238421Y56203D01*

-X238381Y56093D01*

-X238360Y55976D01*

-X238358Y55858D01*

-X238374Y55741D01*

-X238409Y55629D01*

-X238461Y55522D01*

-X238528Y55426D01*

-X238610Y55341D01*

-X238704Y55270D01*

-X238809Y55214D01*

-X238920Y55176D01*

-X239037Y55155D01*

-X239155Y55153D01*

-X239271Y55170D01*

-X239273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X235441D01*

-Y42757D01*

-X238926Y42764D01*

-X239156Y42819D01*

-X239273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X231609Y64673D02*X232072Y64131D01*

-X232640Y63645D01*

-X233278Y63255D01*

-X233969Y62969D01*

-X234696Y62794D01*

-X235441Y62735D01*

-Y62250D01*

-X235224D01*

-X234793Y62211D01*

-X234366Y62132D01*

-X233949Y62015D01*

-X233544Y61860D01*

-X233439Y61805D01*

-X233344Y61734D01*

-X233262Y61648D01*

-X233194Y61551D01*

-X233142Y61445D01*

-X233107Y61331D01*

-X233091Y61214D01*

-X233093Y61095D01*

-X233114Y60978D01*

-X233152Y60866D01*

-X233208Y60762D01*

-X233279Y60667D01*

-X233365Y60585D01*

-X233462Y60517D01*

-X233568Y60465D01*

-X233682Y60430D01*

-X233799Y60414D01*

-X233918Y60416D01*

-X234034Y60436D01*

-X234146Y60477D01*

-X234421Y60586D01*

-X234706Y60666D01*

-X234998Y60720D01*

-X235293Y60747D01*

-X235441D01*

-Y54253D01*

-X235293D01*

-X234998Y54280D01*

-X234706Y54334D01*

-X234421Y54414D01*

-X234144Y54520D01*

-X234034Y54560D01*

-X233917Y54581D01*

-X233799Y54583D01*

-X233682Y54567D01*

-X233570Y54532D01*

-X233463Y54480D01*

-X233367Y54413D01*

-X233282Y54331D01*

-X233211Y54237D01*

-X233155Y54132D01*

-X233117Y54021D01*

-X233096Y53904D01*

-X233094Y53786D01*

-X233111Y53670D01*

-X233145Y53557D01*

-X233197Y53450D01*

-X233264Y53354D01*

-X233346Y53269D01*

-X233441Y53198D01*

-X233546Y53144D01*

-X233949Y52985D01*

-X234366Y52868D01*

-X234793Y52789D01*

-X235224Y52750D01*

-X235441D01*

-Y52243D01*

-X231956Y52236D01*

-X231726Y52181D01*

-X231609Y52133D01*

-Y55166D01*

-X231610Y55166D01*

-X231727Y55150D01*

-X231846Y55152D01*

-X231963Y55173D01*

-X232075Y55211D01*

-X232179Y55267D01*

-X232274Y55338D01*

-X232356Y55424D01*

-X232424Y55521D01*

-X232476Y55627D01*

-X232511Y55741D01*

-X232527Y55858D01*

-X232525Y55977D01*

-X232505Y56093D01*

-X232464Y56205D01*

-X232355Y56480D01*

-X232275Y56765D01*

-X232221Y57057D01*

-X232194Y57352D01*

-Y57648D01*

-X232221Y57943D01*

-X232275Y58235D01*

-X232355Y58520D01*

-X232461Y58797D01*

-X232501Y58907D01*

-X232522Y59024D01*

-X232524Y59142D01*

-X232508Y59259D01*

-X232473Y59371D01*

-X232421Y59478D01*

-X232354Y59574D01*

-X232272Y59659D01*

-X232178Y59730D01*

-X232073Y59786D01*

-X231962Y59824D01*

-X231845Y59845D01*

-X231727Y59847D01*

-X231610Y59830D01*

-X231609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X235441D01*

-Y72265D01*

-X234696Y72206D01*

-X233969Y72031D01*

-X233278Y71745D01*

-X232640Y71355D01*

-X232072Y70869D01*

-X231609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X235441Y39000D02*X231609D01*

-Y42867D01*

-X231726Y42819D01*

-X231956Y42764D01*

-X232191Y42750D01*

-X235441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X231609D02*X209273D01*

-Y42867D01*

-X209374Y42909D01*

-X209575Y43033D01*

-X209755Y43186D01*

-X209908Y43366D01*

-X210032Y43567D01*

-X210122Y43785D01*

-X210177Y44015D01*

-X210191Y44250D01*

-X210177Y50985D01*

-X210122Y51215D01*

-X210032Y51433D01*

-X209908Y51634D01*

-X209755Y51814D01*

-X209575Y51967D01*

-X209374Y52091D01*

-X209273Y52133D01*

-Y55170D01*

-X209384Y55204D01*

-X209491Y55256D01*

-X209587Y55323D01*

-X209672Y55405D01*

-X209743Y55500D01*

-X209797Y55605D01*

-X209956Y56008D01*

-X210073Y56425D01*

-X210152Y56852D01*

-X210191Y57283D01*

-Y57717D01*

-X210152Y58148D01*

-X210073Y58575D01*

-X209956Y58992D01*

-X209801Y59397D01*

-X209746Y59502D01*

-X209675Y59597D01*

-X209589Y59679D01*

-X209492Y59747D01*

-X209386Y59799D01*

-X209273Y59834D01*

-Y64673D01*

-X209296Y64699D01*

-X209686Y65337D01*

-X209972Y66028D01*

-X210147Y66755D01*

-X210191Y67500D01*

-X210147Y68245D01*

-X209972Y68972D01*

-X209686Y69663D01*

-X209296Y70301D01*

-X209273Y70327D01*

-Y72500D01*

-X231609D01*

-Y70327D01*

-X231586Y70301D01*

-X231196Y69663D01*

-X230910Y68972D01*

-X230735Y68245D01*

-X230676Y67500D01*

-X230735Y66755D01*

-X230910Y66028D01*

-X231196Y65337D01*

-X231586Y64699D01*

-X231609Y64673D01*

-Y59830D01*

-X231498Y59796D01*

-X231391Y59744D01*

-X231295Y59677D01*

-X231210Y59595D01*

-X231139Y59500D01*

-X231085Y59395D01*

-X230926Y58992D01*

-X230809Y58575D01*

-X230730Y58148D01*

-X230691Y57717D01*

-Y57283D01*

-X230730Y56852D01*

-X230809Y56425D01*

-X230926Y56008D01*

-X231081Y55603D01*

-X231136Y55498D01*

-X231207Y55403D01*

-X231293Y55321D01*

-X231390Y55253D01*

-X231496Y55201D01*

-X231609Y55166D01*

-Y52133D01*

-X231508Y52091D01*

-X231307Y51967D01*

-X231127Y51814D01*

-X230974Y51634D01*

-X230850Y51433D01*

-X230760Y51215D01*

-X230705Y50985D01*

-X230691Y50750D01*

-X230705Y44015D01*

-X230760Y43785D01*

-X230850Y43567D01*

-X230974Y43366D01*

-X231127Y43186D01*

-X231307Y43033D01*

-X231508Y42909D01*

-X231609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X209273Y70327D02*X208810Y70869D01*

-X208242Y71355D01*

-X207604Y71745D01*

-X206913Y72031D01*

-X206186Y72206D01*

-X205441Y72265D01*

-Y72500D01*

-X209273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X209156Y52181D01*

-X208926Y52236D01*

-X208691Y52250D01*

-X205441Y52243D01*

-Y52750D01*

-X205658D01*

-X206089Y52789D01*

-X206516Y52868D01*

-X206933Y52985D01*

-X207338Y53140D01*

-X207443Y53195D01*

-X207538Y53266D01*

-X207620Y53352D01*

-X207688Y53449D01*

-X207740Y53555D01*

-X207775Y53669D01*

-X207791Y53786D01*

-X207789Y53905D01*

-X207768Y54022D01*

-X207730Y54134D01*

-X207674Y54238D01*

-X207603Y54333D01*

-X207517Y54415D01*

-X207420Y54483D01*

-X207314Y54535D01*

-X207200Y54570D01*

-X207083Y54586D01*

-X206964Y54584D01*

-X206848Y54564D01*

-X206736Y54523D01*

-X206461Y54414D01*

-X206176Y54334D01*

-X205884Y54280D01*

-X205589Y54253D01*

-X205441D01*

-Y60747D01*

-X205589D01*

-X205884Y60720D01*

-X206176Y60666D01*

-X206461Y60586D01*

-X206738Y60480D01*

-X206848Y60440D01*

-X206965Y60419D01*

-X207083Y60417D01*

-X207200Y60433D01*

-X207312Y60468D01*

-X207419Y60520D01*

-X207515Y60587D01*

-X207600Y60669D01*

-X207671Y60763D01*

-X207727Y60868D01*

-X207765Y60979D01*

-X207786Y61096D01*

-X207788Y61214D01*

-X207771Y61330D01*

-X207737Y61443D01*

-X207685Y61550D01*

-X207618Y61646D01*

-X207536Y61731D01*

-X207441Y61802D01*

-X207336Y61856D01*

-X206933Y62015D01*

-X206516Y62132D01*

-X206089Y62211D01*

-X205658Y62250D01*

-X205441D01*

-Y62735D01*

-X206186Y62794D01*

-X206913Y62969D01*

-X207604Y63255D01*

-X208242Y63645D01*

-X208810Y64131D01*

-X209273Y64673D01*

-Y59834D01*

-X209272Y59834D01*

-X209155Y59850D01*

-X209036Y59848D01*

-X208919Y59827D01*

-X208807Y59789D01*

-X208703Y59733D01*

-X208608Y59662D01*

-X208526Y59576D01*

-X208458Y59479D01*

-X208406Y59373D01*

-X208371Y59259D01*

-X208355Y59142D01*

-X208357Y59023D01*

-X208377Y58907D01*

-X208418Y58795D01*

-X208527Y58520D01*

-X208607Y58235D01*

-X208661Y57943D01*

-X208688Y57648D01*

-Y57352D01*

-X208661Y57057D01*

-X208607Y56765D01*

-X208527Y56480D01*

-X208421Y56203D01*

-X208381Y56093D01*

-X208360Y55976D01*

-X208358Y55858D01*

-X208374Y55741D01*

-X208409Y55629D01*

-X208461Y55522D01*

-X208528Y55426D01*

-X208610Y55341D01*

-X208704Y55270D01*

-X208809Y55214D01*

-X208920Y55176D01*

-X209037Y55155D01*

-X209155Y55153D01*

-X209271Y55170D01*

-X209273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X205441D01*

-Y42757D01*

-X208926Y42764D01*

-X209156Y42819D01*

-X209273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X201609Y64673D02*X202072Y64131D01*

-X202640Y63645D01*

-X203278Y63255D01*

-X203969Y62969D01*

-X204696Y62794D01*

-X205441Y62735D01*

-Y62250D01*

-X205224D01*

-X204793Y62211D01*

-X204366Y62132D01*

-X203949Y62015D01*

-X203544Y61860D01*

-X203439Y61805D01*

-X203344Y61734D01*

-X203262Y61648D01*

-X203194Y61551D01*

-X203142Y61445D01*

-X203107Y61331D01*

-X203091Y61214D01*

-X203093Y61095D01*

-X203114Y60978D01*

-X203152Y60866D01*

-X203208Y60762D01*

-X203279Y60667D01*

-X203365Y60585D01*

-X203462Y60517D01*

-X203568Y60465D01*

-X203682Y60430D01*

-X203799Y60414D01*

-X203918Y60416D01*

-X204034Y60436D01*

-X204146Y60477D01*

-X204421Y60586D01*

-X204706Y60666D01*

-X204998Y60720D01*

-X205293Y60747D01*

-X205441D01*

-Y54253D01*

-X205293D01*

-X204998Y54280D01*

-X204706Y54334D01*

-X204421Y54414D01*

-X204144Y54520D01*

-X204034Y54560D01*

-X203917Y54581D01*

-X203799Y54583D01*

-X203682Y54567D01*

-X203570Y54532D01*

-X203463Y54480D01*

-X203367Y54413D01*

-X203282Y54331D01*

-X203211Y54237D01*

-X203155Y54132D01*

-X203117Y54021D01*

-X203096Y53904D01*

-X203094Y53786D01*

-X203111Y53670D01*

-X203145Y53557D01*

-X203197Y53450D01*

-X203264Y53354D01*

-X203346Y53269D01*

-X203441Y53198D01*

-X203546Y53144D01*

-X203949Y52985D01*

-X204366Y52868D01*

-X204793Y52789D01*

-X205224Y52750D01*

-X205441D01*

-Y52243D01*

-X201956Y52236D01*

-X201726Y52181D01*

-X201609Y52133D01*

-Y55166D01*

-X201610Y55166D01*

-X201727Y55150D01*

-X201846Y55152D01*

-X201963Y55173D01*

-X202075Y55211D01*

-X202179Y55267D01*

-X202274Y55338D01*

-X202356Y55424D01*

-X202424Y55521D01*

-X202476Y55627D01*

-X202511Y55741D01*

-X202527Y55858D01*

-X202525Y55977D01*

-X202505Y56093D01*

-X202464Y56205D01*

-X202355Y56480D01*

-X202275Y56765D01*

-X202221Y57057D01*

-X202194Y57352D01*

-Y57648D01*

-X202221Y57943D01*

-X202275Y58235D01*

-X202355Y58520D01*

-X202461Y58797D01*

-X202501Y58907D01*

-X202522Y59024D01*

-X202524Y59142D01*

-X202508Y59259D01*

-X202473Y59371D01*

-X202421Y59478D01*

-X202354Y59574D01*

-X202272Y59659D01*

-X202178Y59730D01*

-X202073Y59786D01*

-X201962Y59824D01*

-X201845Y59845D01*

-X201727Y59847D01*

-X201610Y59830D01*

-X201609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X205441D01*

-Y72265D01*

-X204696Y72206D01*

-X203969Y72031D01*

-X203278Y71745D01*

-X202640Y71355D01*

-X202072Y70869D01*

-X201609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X205441Y39000D02*X201609D01*

-Y42867D01*

-X201726Y42819D01*

-X201956Y42764D01*

-X202191Y42750D01*

-X205441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X201609D02*X179273D01*

-Y42867D01*

-X179374Y42909D01*

-X179575Y43033D01*

-X179755Y43186D01*

-X179908Y43366D01*

-X180032Y43567D01*

-X180122Y43785D01*

-X180177Y44015D01*

-X180191Y44250D01*

-X180177Y50985D01*

-X180122Y51215D01*

-X180032Y51433D01*

-X179908Y51634D01*

-X179755Y51814D01*

-X179575Y51967D01*

-X179374Y52091D01*

-X179273Y52133D01*

-Y55170D01*

-X179384Y55204D01*

-X179491Y55256D01*

-X179587Y55323D01*

-X179672Y55405D01*

-X179743Y55500D01*

-X179797Y55605D01*

-X179956Y56008D01*

-X180073Y56425D01*

-X180152Y56852D01*

-X180191Y57283D01*

-Y57717D01*

-X180152Y58148D01*

-X180073Y58575D01*

-X179956Y58992D01*

-X179801Y59397D01*

-X179746Y59502D01*

-X179675Y59597D01*

-X179589Y59679D01*

-X179492Y59747D01*

-X179386Y59799D01*

-X179273Y59834D01*

-Y64673D01*

-X179296Y64699D01*

-X179686Y65337D01*

-X179972Y66028D01*

-X180147Y66755D01*

-X180191Y67500D01*

-X180147Y68245D01*

-X179972Y68972D01*

-X179686Y69663D01*

-X179296Y70301D01*

-X179273Y70327D01*

-Y72500D01*

-X201609D01*

-Y70327D01*

-X201586Y70301D01*

-X201196Y69663D01*

-X200910Y68972D01*

-X200735Y68245D01*

-X200676Y67500D01*

-X200735Y66755D01*

-X200910Y66028D01*

-X201196Y65337D01*

-X201586Y64699D01*

-X201609Y64673D01*

-Y59830D01*

-X201498Y59796D01*

-X201391Y59744D01*

-X201295Y59677D01*

-X201210Y59595D01*

-X201139Y59500D01*

-X201085Y59395D01*

-X200926Y58992D01*

-X200809Y58575D01*

-X200730Y58148D01*

-X200691Y57717D01*

-Y57283D01*

-X200730Y56852D01*

-X200809Y56425D01*

-X200926Y56008D01*

-X201081Y55603D01*

-X201136Y55498D01*

-X201207Y55403D01*

-X201293Y55321D01*

-X201390Y55253D01*

-X201496Y55201D01*

-X201609Y55166D01*

-Y52133D01*

-X201508Y52091D01*

-X201307Y51967D01*

-X201127Y51814D01*

-X200974Y51634D01*

-X200850Y51433D01*

-X200760Y51215D01*

-X200705Y50985D01*

-X200691Y50750D01*

-X200705Y44015D01*

-X200760Y43785D01*

-X200850Y43567D01*

-X200974Y43366D01*

-X201127Y43186D01*

-X201307Y43033D01*

-X201508Y42909D01*

-X201609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X179273Y70327D02*X178810Y70869D01*

-X178242Y71355D01*

-X177604Y71745D01*

-X176913Y72031D01*

-X176186Y72206D01*

-X175441Y72265D01*

-Y72500D01*

-X179273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X179156Y52181D01*

-X178926Y52236D01*

-X178691Y52250D01*

-X175441Y52243D01*

-Y52750D01*

-X175658D01*

-X176089Y52789D01*

-X176516Y52868D01*

-X176933Y52985D01*

-X177338Y53140D01*

-X177443Y53195D01*

-X177538Y53266D01*

-X177620Y53352D01*

-X177688Y53449D01*

-X177740Y53555D01*

-X177775Y53669D01*

-X177791Y53786D01*

-X177789Y53905D01*

-X177768Y54022D01*

-X177730Y54134D01*

-X177674Y54238D01*

-X177603Y54333D01*

-X177517Y54415D01*

-X177420Y54483D01*

-X177314Y54535D01*

-X177200Y54570D01*

-X177083Y54586D01*

-X176964Y54584D01*

-X176848Y54564D01*

-X176736Y54523D01*

-X176461Y54414D01*

-X176176Y54334D01*

-X175884Y54280D01*

-X175589Y54253D01*

-X175441D01*

-Y60747D01*

-X175589D01*

-X175884Y60720D01*

-X176176Y60666D01*

-X176461Y60586D01*

-X176738Y60480D01*

-X176848Y60440D01*

-X176965Y60419D01*

-X177083Y60417D01*

-X177200Y60433D01*

-X177312Y60468D01*

-X177419Y60520D01*

-X177515Y60587D01*

-X177600Y60669D01*

-X177671Y60763D01*

-X177727Y60868D01*

-X177765Y60979D01*

-X177786Y61096D01*

-X177788Y61214D01*

-X177771Y61330D01*

-X177737Y61443D01*

-X177685Y61550D01*

-X177618Y61646D01*

-X177536Y61731D01*

-X177441Y61802D01*

-X177336Y61856D01*

-X176933Y62015D01*

-X176516Y62132D01*

-X176089Y62211D01*

-X175658Y62250D01*

-X175441D01*

-Y62735D01*

-X176186Y62794D01*

-X176913Y62969D01*

-X177604Y63255D01*

-X178242Y63645D01*

-X178810Y64131D01*

-X179273Y64673D01*

-Y59834D01*

-X179272Y59834D01*

-X179155Y59850D01*

-X179036Y59848D01*

-X178919Y59827D01*

-X178807Y59789D01*

-X178703Y59733D01*

-X178608Y59662D01*

-X178526Y59576D01*

-X178458Y59479D01*

-X178406Y59373D01*

-X178371Y59259D01*

-X178355Y59142D01*

-X178357Y59023D01*

-X178377Y58907D01*

-X178418Y58795D01*

-X178527Y58520D01*

-X178607Y58235D01*

-X178661Y57943D01*

-X178688Y57648D01*

-Y57352D01*

-X178661Y57057D01*

-X178607Y56765D01*

-X178527Y56480D01*

-X178421Y56203D01*

-X178381Y56093D01*

-X178360Y55976D01*

-X178358Y55858D01*

-X178374Y55741D01*

-X178409Y55629D01*

-X178461Y55522D01*

-X178528Y55426D01*

-X178610Y55341D01*

-X178704Y55270D01*

-X178809Y55214D01*

-X178920Y55176D01*

-X179037Y55155D01*

-X179155Y55153D01*

-X179271Y55170D01*

-X179273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X175441D01*

-Y42757D01*

-X178926Y42764D01*

-X179156Y42819D01*

-X179273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X171609Y64673D02*X172072Y64131D01*

-X172640Y63645D01*

-X173278Y63255D01*

-X173969Y62969D01*

-X174696Y62794D01*

-X175441Y62735D01*

-Y62250D01*

-X175224D01*

-X174793Y62211D01*

-X174366Y62132D01*

-X173949Y62015D01*

-X173544Y61860D01*

-X173439Y61805D01*

-X173344Y61734D01*

-X173262Y61648D01*

-X173194Y61551D01*

-X173142Y61445D01*

-X173107Y61331D01*

-X173091Y61214D01*

-X173093Y61095D01*

-X173114Y60978D01*

-X173152Y60866D01*

-X173208Y60762D01*

-X173279Y60667D01*

-X173365Y60585D01*

-X173462Y60517D01*

-X173568Y60465D01*

-X173682Y60430D01*

-X173799Y60414D01*

-X173918Y60416D01*

-X174034Y60436D01*

-X174146Y60477D01*

-X174421Y60586D01*

-X174706Y60666D01*

-X174998Y60720D01*

-X175293Y60747D01*

-X175441D01*

-Y54253D01*

-X175293D01*

-X174998Y54280D01*

-X174706Y54334D01*

-X174421Y54414D01*

-X174144Y54520D01*

-X174034Y54560D01*

-X173917Y54581D01*

-X173799Y54583D01*

-X173682Y54567D01*

-X173570Y54532D01*

-X173463Y54480D01*

-X173367Y54413D01*

-X173282Y54331D01*

-X173211Y54237D01*

-X173155Y54132D01*

-X173117Y54021D01*

-X173096Y53904D01*

-X173094Y53786D01*

-X173111Y53670D01*

-X173145Y53557D01*

-X173197Y53450D01*

-X173264Y53354D01*

-X173346Y53269D01*

-X173441Y53198D01*

-X173546Y53144D01*

-X173949Y52985D01*

-X174366Y52868D01*

-X174793Y52789D01*

-X175224Y52750D01*

-X175441D01*

-Y52243D01*

-X171956Y52236D01*

-X171726Y52181D01*

-X171609Y52133D01*

-Y55166D01*

-X171610Y55166D01*

-X171727Y55150D01*

-X171846Y55152D01*

-X171963Y55173D01*

-X172075Y55211D01*

-X172179Y55267D01*

-X172274Y55338D01*

-X172356Y55424D01*

-X172424Y55521D01*

-X172476Y55627D01*

-X172511Y55741D01*

-X172527Y55858D01*

-X172525Y55977D01*

-X172505Y56093D01*

-X172464Y56205D01*

-X172355Y56480D01*

-X172275Y56765D01*

-X172221Y57057D01*

-X172194Y57352D01*

-Y57648D01*

-X172221Y57943D01*

-X172275Y58235D01*

-X172355Y58520D01*

-X172461Y58797D01*

-X172501Y58907D01*

-X172522Y59024D01*

-X172524Y59142D01*

-X172508Y59259D01*

-X172473Y59371D01*

-X172421Y59478D01*

-X172354Y59574D01*

-X172272Y59659D01*

-X172178Y59730D01*

-X172073Y59786D01*

-X171962Y59824D01*

-X171845Y59845D01*

-X171727Y59847D01*

-X171610Y59830D01*

-X171609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X175441D01*

-Y72265D01*

-X174696Y72206D01*

-X173969Y72031D01*

-X173278Y71745D01*

-X172640Y71355D01*

-X172072Y70869D01*

-X171609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X175441Y39000D02*X171609D01*

-Y42867D01*

-X171726Y42819D01*

-X171956Y42764D01*

-X172191Y42750D01*

-X175441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X171609D02*X149273D01*

-Y42867D01*

-X149374Y42909D01*

-X149575Y43033D01*

-X149755Y43186D01*

-X149908Y43366D01*

-X150032Y43567D01*

-X150122Y43785D01*

-X150177Y44015D01*

-X150191Y44250D01*

-X150177Y50985D01*

-X150122Y51215D01*

-X150032Y51433D01*

-X149908Y51634D01*

-X149755Y51814D01*

-X149575Y51967D01*

-X149374Y52091D01*

-X149273Y52133D01*

-Y55170D01*

-X149384Y55204D01*

-X149491Y55256D01*

-X149587Y55323D01*

-X149672Y55405D01*

-X149743Y55500D01*

-X149797Y55605D01*

-X149956Y56008D01*

-X150073Y56425D01*

-X150152Y56852D01*

-X150191Y57283D01*

-Y57717D01*

-X150152Y58148D01*

-X150073Y58575D01*

-X149956Y58992D01*

-X149801Y59397D01*

-X149746Y59502D01*

-X149675Y59597D01*

-X149589Y59679D01*

-X149492Y59747D01*

-X149386Y59799D01*

-X149273Y59834D01*

-Y64673D01*

-X149296Y64699D01*

-X149686Y65337D01*

-X149972Y66028D01*

-X150147Y66755D01*

-X150191Y67500D01*

-X150147Y68245D01*

-X149972Y68972D01*

-X149686Y69663D01*

-X149296Y70301D01*

-X149273Y70327D01*

-Y72500D01*

-X171609D01*

-Y70327D01*

-X171586Y70301D01*

-X171196Y69663D01*

-X170910Y68972D01*

-X170735Y68245D01*

-X170676Y67500D01*

-X170735Y66755D01*

-X170910Y66028D01*

-X171196Y65337D01*

-X171586Y64699D01*

-X171609Y64673D01*

-Y59830D01*

-X171498Y59796D01*

-X171391Y59744D01*

-X171295Y59677D01*

-X171210Y59595D01*

-X171139Y59500D01*

-X171085Y59395D01*

-X170926Y58992D01*

-X170809Y58575D01*

-X170730Y58148D01*

-X170691Y57717D01*

-Y57283D01*

-X170730Y56852D01*

-X170809Y56425D01*

-X170926Y56008D01*

-X171081Y55603D01*

-X171136Y55498D01*

-X171207Y55403D01*

-X171293Y55321D01*

-X171390Y55253D01*

-X171496Y55201D01*

-X171609Y55166D01*

-Y52133D01*

-X171508Y52091D01*

-X171307Y51967D01*

-X171127Y51814D01*

-X170974Y51634D01*

-X170850Y51433D01*

-X170760Y51215D01*

-X170705Y50985D01*

-X170691Y50750D01*

-X170705Y44015D01*

-X170760Y43785D01*

-X170850Y43567D01*

-X170974Y43366D01*

-X171127Y43186D01*

-X171307Y43033D01*

-X171508Y42909D01*

-X171609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X149273Y70327D02*X148810Y70869D01*

-X148242Y71355D01*

-X147604Y71745D01*

-X146913Y72031D01*

-X146186Y72206D01*

-X145441Y72265D01*

-Y72500D01*

-X149273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X149156Y52181D01*

-X148926Y52236D01*

-X148691Y52250D01*

-X145441Y52243D01*

-Y52750D01*

-X145658D01*

-X146089Y52789D01*

-X146516Y52868D01*

-X146933Y52985D01*

-X147338Y53140D01*

-X147443Y53195D01*

-X147538Y53266D01*

-X147620Y53352D01*

-X147688Y53449D01*

-X147740Y53555D01*

-X147775Y53669D01*

-X147791Y53786D01*

-X147789Y53905D01*

-X147768Y54022D01*

-X147730Y54134D01*

-X147674Y54238D01*

-X147603Y54333D01*

-X147517Y54415D01*

-X147420Y54483D01*

-X147314Y54535D01*

-X147200Y54570D01*

-X147083Y54586D01*

-X146964Y54584D01*

-X146848Y54564D01*

-X146736Y54523D01*

-X146461Y54414D01*

-X146176Y54334D01*

-X145884Y54280D01*

-X145589Y54253D01*

-X145441D01*

-Y60747D01*

-X145589D01*

-X145884Y60720D01*

-X146176Y60666D01*

-X146461Y60586D01*

-X146738Y60480D01*

-X146848Y60440D01*

-X146965Y60419D01*

-X147083Y60417D01*

-X147200Y60433D01*

-X147312Y60468D01*

-X147419Y60520D01*

-X147515Y60587D01*

-X147600Y60669D01*

-X147671Y60763D01*

-X147727Y60868D01*

-X147765Y60979D01*

-X147786Y61096D01*

-X147788Y61214D01*

-X147771Y61330D01*

-X147737Y61443D01*

-X147685Y61550D01*

-X147618Y61646D01*

-X147536Y61731D01*

-X147441Y61802D01*

-X147336Y61856D01*

-X146933Y62015D01*

-X146516Y62132D01*

-X146089Y62211D01*

-X145658Y62250D01*

-X145441D01*

-Y62735D01*

-X146186Y62794D01*

-X146913Y62969D01*

-X147604Y63255D01*

-X148242Y63645D01*

-X148810Y64131D01*

-X149273Y64673D01*

-Y59834D01*

-X149272Y59834D01*

-X149155Y59850D01*

-X149036Y59848D01*

-X148919Y59827D01*

-X148807Y59789D01*

-X148703Y59733D01*

-X148608Y59662D01*

-X148526Y59576D01*

-X148458Y59479D01*

-X148406Y59373D01*

-X148371Y59259D01*

-X148355Y59142D01*

-X148357Y59023D01*

-X148377Y58907D01*

-X148418Y58795D01*

-X148527Y58520D01*

-X148607Y58235D01*

-X148661Y57943D01*

-X148688Y57648D01*

-Y57352D01*

-X148661Y57057D01*

-X148607Y56765D01*

-X148527Y56480D01*

-X148421Y56203D01*

-X148381Y56093D01*

-X148360Y55976D01*

-X148358Y55858D01*

-X148374Y55741D01*

-X148409Y55629D01*

-X148461Y55522D01*

-X148528Y55426D01*

-X148610Y55341D01*

-X148704Y55270D01*

-X148809Y55214D01*

-X148920Y55176D01*

-X149037Y55155D01*

-X149155Y55153D01*

-X149271Y55170D01*

-X149273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X145441D01*

-Y42757D01*

-X148926Y42764D01*

-X149156Y42819D01*

-X149273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X141609Y64673D02*X142072Y64131D01*

-X142640Y63645D01*

-X143278Y63255D01*

-X143969Y62969D01*

-X144696Y62794D01*

-X145441Y62735D01*

-Y62250D01*

-X145224D01*

-X144793Y62211D01*

-X144366Y62132D01*

-X143949Y62015D01*

-X143544Y61860D01*

-X143439Y61805D01*

-X143344Y61734D01*

-X143262Y61648D01*

-X143194Y61551D01*

-X143142Y61445D01*

-X143107Y61331D01*

-X143091Y61214D01*

-X143093Y61095D01*

-X143114Y60978D01*

-X143152Y60866D01*

-X143208Y60762D01*

-X143279Y60667D01*

-X143365Y60585D01*

-X143462Y60517D01*

-X143568Y60465D01*

-X143682Y60430D01*

-X143799Y60414D01*

-X143918Y60416D01*

-X144034Y60436D01*

-X144146Y60477D01*

-X144421Y60586D01*

-X144706Y60666D01*

-X144998Y60720D01*

-X145293Y60747D01*

-X145441D01*

-Y54253D01*

-X145293D01*

-X144998Y54280D01*

-X144706Y54334D01*

-X144421Y54414D01*

-X144144Y54520D01*

-X144034Y54560D01*

-X143917Y54581D01*

-X143799Y54583D01*

-X143682Y54567D01*

-X143570Y54532D01*

-X143463Y54480D01*

-X143367Y54413D01*

-X143282Y54331D01*

-X143211Y54237D01*

-X143155Y54132D01*

-X143117Y54021D01*

-X143096Y53904D01*

-X143094Y53786D01*

-X143111Y53670D01*

-X143145Y53557D01*

-X143197Y53450D01*

-X143264Y53354D01*

-X143346Y53269D01*

-X143441Y53198D01*

-X143546Y53144D01*

-X143949Y52985D01*

-X144366Y52868D01*

-X144793Y52789D01*

-X145224Y52750D01*

-X145441D01*

-Y52243D01*

-X141956Y52236D01*

-X141726Y52181D01*

-X141609Y52133D01*

-Y55166D01*

-X141610Y55166D01*

-X141727Y55150D01*

-X141846Y55152D01*

-X141963Y55173D01*

-X142075Y55211D01*

-X142179Y55267D01*

-X142274Y55338D01*

-X142356Y55424D01*

-X142424Y55521D01*

-X142476Y55627D01*

-X142511Y55741D01*

-X142527Y55858D01*

-X142525Y55977D01*

-X142505Y56093D01*

-X142464Y56205D01*

-X142355Y56480D01*

-X142275Y56765D01*

-X142221Y57057D01*

-X142194Y57352D01*

-Y57648D01*

-X142221Y57943D01*

-X142275Y58235D01*

-X142355Y58520D01*

-X142461Y58797D01*

-X142501Y58907D01*

-X142522Y59024D01*

-X142524Y59142D01*

-X142508Y59259D01*

-X142473Y59371D01*

-X142421Y59478D01*

-X142354Y59574D01*

-X142272Y59659D01*

-X142178Y59730D01*

-X142073Y59786D01*

-X141962Y59824D01*

-X141845Y59845D01*

-X141727Y59847D01*

-X141610Y59830D01*

-X141609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X145441D01*

-Y72265D01*

-X144696Y72206D01*

-X143969Y72031D01*

-X143278Y71745D01*

-X142640Y71355D01*

-X142072Y70869D01*

-X141609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X145441Y39000D02*X141609D01*

-Y42867D01*

-X141726Y42819D01*

-X141956Y42764D01*

-X142191Y42750D01*

-X145441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X141609D02*X119273D01*

-Y42867D01*

-X119374Y42909D01*

-X119575Y43033D01*

-X119755Y43186D01*

-X119908Y43366D01*

-X120032Y43567D01*

-X120122Y43785D01*

-X120177Y44015D01*

-X120191Y44250D01*

-X120177Y50985D01*

-X120122Y51215D01*

-X120032Y51433D01*

-X119908Y51634D01*

-X119755Y51814D01*

-X119575Y51967D01*

-X119374Y52091D01*

-X119273Y52133D01*

-Y55170D01*

-X119384Y55204D01*

-X119491Y55256D01*

-X119587Y55323D01*

-X119672Y55405D01*

-X119743Y55500D01*

-X119797Y55605D01*

-X119956Y56008D01*

-X120073Y56425D01*

-X120152Y56852D01*

-X120191Y57283D01*

-Y57717D01*

-X120152Y58148D01*

-X120073Y58575D01*

-X119956Y58992D01*

-X119801Y59397D01*

-X119746Y59502D01*

-X119675Y59597D01*

-X119589Y59679D01*

-X119492Y59747D01*

-X119386Y59799D01*

-X119273Y59834D01*

-Y64673D01*

-X119296Y64699D01*

-X119686Y65337D01*

-X119972Y66028D01*

-X120147Y66755D01*

-X120191Y67500D01*

-X120147Y68245D01*

-X119972Y68972D01*

-X119686Y69663D01*

-X119296Y70301D01*

-X119273Y70327D01*

-Y72500D01*

-X141609D01*

-Y70327D01*

-X141586Y70301D01*

-X141196Y69663D01*

-X140910Y68972D01*

-X140735Y68245D01*

-X140676Y67500D01*

-X140735Y66755D01*

-X140910Y66028D01*

-X141196Y65337D01*

-X141586Y64699D01*

-X141609Y64673D01*

-Y59830D01*

-X141498Y59796D01*

-X141391Y59744D01*

-X141295Y59677D01*

-X141210Y59595D01*

-X141139Y59500D01*

-X141085Y59395D01*

-X140926Y58992D01*

-X140809Y58575D01*

-X140730Y58148D01*

-X140691Y57717D01*

-Y57283D01*

-X140730Y56852D01*

-X140809Y56425D01*

-X140926Y56008D01*

-X141081Y55603D01*

-X141136Y55498D01*

-X141207Y55403D01*

-X141293Y55321D01*

-X141390Y55253D01*

-X141496Y55201D01*

-X141609Y55166D01*

-Y52133D01*

-X141508Y52091D01*

-X141307Y51967D01*

-X141127Y51814D01*

-X140974Y51634D01*

-X140850Y51433D01*

-X140760Y51215D01*

-X140705Y50985D01*

-X140691Y50750D01*

-X140705Y44015D01*

-X140760Y43785D01*

-X140850Y43567D01*

-X140974Y43366D01*

-X141127Y43186D01*

-X141307Y43033D01*

-X141508Y42909D01*

-X141609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X119273Y70327D02*X118810Y70869D01*

-X118242Y71355D01*

-X117604Y71745D01*

-X116913Y72031D01*

-X116186Y72206D01*

-X115441Y72265D01*

-Y72500D01*

-X119273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X119156Y52181D01*

-X118926Y52236D01*

-X118691Y52250D01*

-X115441Y52243D01*

-Y52750D01*

-X115658D01*

-X116089Y52789D01*

-X116516Y52868D01*

-X116933Y52985D01*

-X117338Y53140D01*

-X117443Y53195D01*

-X117538Y53266D01*

-X117620Y53352D01*

-X117688Y53449D01*

-X117740Y53555D01*

-X117775Y53669D01*

-X117791Y53786D01*

-X117789Y53905D01*

-X117768Y54022D01*

-X117730Y54134D01*

-X117674Y54238D01*

-X117603Y54333D01*

-X117517Y54415D01*

-X117420Y54483D01*

-X117314Y54535D01*

-X117200Y54570D01*

-X117083Y54586D01*

-X116964Y54584D01*

-X116847Y54564D01*

-X116736Y54523D01*

-X116461Y54414D01*

-X116176Y54334D01*

-X115884Y54280D01*

-X115589Y54253D01*

-X115441D01*

-Y60747D01*

-X115589D01*

-X115884Y60720D01*

-X116176Y60666D01*

-X116461Y60586D01*

-X116738Y60480D01*

-X116848Y60440D01*

-X116965Y60419D01*

-X117083Y60417D01*

-X117200Y60433D01*

-X117312Y60468D01*

-X117419Y60520D01*

-X117515Y60587D01*

-X117600Y60669D01*

-X117671Y60763D01*

-X117727Y60868D01*

-X117765Y60979D01*

-X117786Y61096D01*

-X117788Y61214D01*

-X117771Y61330D01*

-X117737Y61443D01*

-X117685Y61550D01*

-X117618Y61646D01*

-X117536Y61731D01*

-X117441Y61802D01*

-X117336Y61856D01*

-X116933Y62015D01*

-X116516Y62132D01*

-X116089Y62211D01*

-X115658Y62250D01*

-X115441D01*

-Y62735D01*

-X116186Y62794D01*

-X116913Y62969D01*

-X117604Y63255D01*

-X118242Y63645D01*

-X118810Y64131D01*

-X119273Y64673D01*

-Y59834D01*

-X119272Y59834D01*

-X119155Y59850D01*

-X119036Y59848D01*

-X118919Y59827D01*

-X118807Y59789D01*

-X118703Y59733D01*

-X118608Y59662D01*

-X118526Y59576D01*

-X118458Y59479D01*

-X118406Y59373D01*

-X118371Y59259D01*

-X118355Y59142D01*

-X118357Y59023D01*

-X118377Y58907D01*

-X118418Y58795D01*

-X118527Y58520D01*

-X118607Y58235D01*

-X118661Y57943D01*

-X118688Y57648D01*

-Y57352D01*

-X118661Y57057D01*

-X118607Y56765D01*

-X118527Y56480D01*

-X118421Y56203D01*

-X118381Y56093D01*

-X118360Y55976D01*

-X118358Y55858D01*

-X118374Y55741D01*

-X118409Y55629D01*

-X118461Y55522D01*

-X118528Y55426D01*

-X118610Y55341D01*

-X118704Y55270D01*

-X118809Y55214D01*

-X118920Y55176D01*

-X119037Y55155D01*

-X119155Y55153D01*

-X119271Y55170D01*

-X119273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X115441D01*

-Y42757D01*

-X118926Y42764D01*

-X119156Y42819D01*

-X119273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X111609Y64673D02*X112072Y64131D01*

-X112640Y63645D01*

-X113278Y63255D01*

-X113969Y62969D01*

-X114696Y62794D01*

-X115441Y62735D01*

-Y62250D01*

-X115224D01*

-X114793Y62211D01*

-X114366Y62132D01*

-X113949Y62015D01*

-X113544Y61860D01*

-X113439Y61805D01*

-X113344Y61734D01*

-X113262Y61648D01*

-X113194Y61551D01*

-X113142Y61445D01*

-X113107Y61331D01*

-X113091Y61214D01*

-X113093Y61095D01*

-X113114Y60978D01*

-X113152Y60866D01*

-X113208Y60762D01*

-X113279Y60667D01*

-X113365Y60585D01*

-X113462Y60517D01*

-X113568Y60465D01*

-X113682Y60430D01*

-X113799Y60414D01*

-X113918Y60416D01*

-X114034Y60436D01*

-X114146Y60477D01*

-X114421Y60586D01*

-X114706Y60666D01*

-X114998Y60720D01*

-X115293Y60747D01*

-X115441D01*

-Y54253D01*

-X115293D01*

-X114998Y54280D01*

-X114706Y54334D01*

-X114421Y54414D01*

-X114144Y54520D01*

-X114034Y54560D01*

-X113917Y54581D01*

-X113799Y54583D01*

-X113682Y54567D01*

-X113570Y54532D01*

-X113463Y54480D01*

-X113367Y54413D01*

-X113282Y54331D01*

-X113211Y54237D01*

-X113155Y54132D01*

-X113117Y54021D01*

-X113096Y53904D01*

-X113094Y53786D01*

-X113111Y53670D01*

-X113145Y53557D01*

-X113197Y53450D01*

-X113264Y53354D01*

-X113346Y53269D01*

-X113441Y53198D01*

-X113546Y53144D01*

-X113949Y52985D01*

-X114366Y52868D01*

-X114793Y52789D01*

-X115224Y52750D01*

-X115441D01*

-Y52243D01*

-X111956Y52236D01*

-X111726Y52181D01*

-X111609Y52133D01*

-Y55166D01*

-X111610Y55166D01*

-X111727Y55150D01*

-X111846Y55152D01*

-X111963Y55173D01*

-X112075Y55211D01*

-X112179Y55267D01*

-X112274Y55338D01*

-X112356Y55424D01*

-X112424Y55521D01*

-X112476Y55627D01*

-X112511Y55741D01*

-X112527Y55858D01*

-X112525Y55977D01*

-X112505Y56093D01*

-X112464Y56205D01*

-X112355Y56480D01*

-X112275Y56765D01*

-X112221Y57057D01*

-X112194Y57352D01*

-Y57648D01*

-X112221Y57943D01*

-X112275Y58235D01*

-X112355Y58520D01*

-X112461Y58797D01*

-X112501Y58907D01*

-X112522Y59024D01*

-X112524Y59142D01*

-X112508Y59259D01*

-X112473Y59371D01*

-X112421Y59478D01*

-X112354Y59574D01*

-X112272Y59659D01*

-X112178Y59730D01*

-X112073Y59786D01*

-X111962Y59824D01*

-X111845Y59845D01*

-X111727Y59847D01*

-X111610Y59830D01*

-X111609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X115441D01*

-Y72265D01*

-X114696Y72206D01*

-X113969Y72031D01*

-X113278Y71745D01*

-X112640Y71355D01*

-X112072Y70869D01*

-X111609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X115441Y39000D02*X111609D01*

-Y42867D01*

-X111726Y42819D01*

-X111956Y42764D01*

-X112191Y42750D01*

-X115441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X111609D02*X89273D01*

-Y42867D01*

-X89374Y42909D01*

-X89575Y43033D01*

-X89755Y43186D01*

-X89908Y43366D01*

-X90032Y43567D01*

-X90122Y43785D01*

-X90177Y44015D01*

-X90191Y44250D01*

-X90177Y50985D01*

-X90122Y51215D01*

-X90032Y51433D01*

-X89908Y51634D01*

-X89755Y51814D01*

-X89575Y51967D01*

-X89374Y52091D01*

-X89273Y52133D01*

-Y55170D01*

-X89384Y55204D01*

-X89491Y55256D01*

-X89587Y55323D01*

-X89672Y55405D01*

-X89743Y55500D01*

-X89797Y55605D01*

-X89956Y56008D01*

-X90073Y56425D01*

-X90152Y56852D01*

-X90191Y57283D01*

-Y57717D01*

-X90152Y58148D01*

-X90073Y58575D01*

-X89956Y58992D01*

-X89801Y59397D01*

-X89746Y59502D01*

-X89675Y59597D01*

-X89589Y59679D01*

-X89492Y59747D01*

-X89386Y59799D01*

-X89273Y59834D01*

-Y64673D01*

-X89296Y64699D01*

-X89686Y65337D01*

-X89972Y66028D01*

-X90147Y66755D01*

-X90191Y67500D01*

-X90147Y68245D01*

-X89972Y68972D01*

-X89686Y69663D01*

-X89296Y70301D01*

-X89273Y70327D01*

-Y72500D01*

-X111609D01*

-Y70327D01*

-X111586Y70301D01*

-X111196Y69663D01*

-X110910Y68972D01*

-X110735Y68245D01*

-X110676Y67500D01*

-X110735Y66755D01*

-X110910Y66028D01*

-X111196Y65337D01*

-X111586Y64699D01*

-X111609Y64673D01*

-Y59830D01*

-X111498Y59796D01*

-X111391Y59744D01*

-X111295Y59677D01*

-X111210Y59595D01*

-X111139Y59500D01*

-X111085Y59395D01*

-X110926Y58992D01*

-X110809Y58575D01*

-X110730Y58148D01*

-X110691Y57717D01*

-Y57283D01*

-X110730Y56852D01*

-X110809Y56425D01*

-X110926Y56008D01*

-X111081Y55603D01*

-X111136Y55498D01*

-X111207Y55403D01*

-X111293Y55321D01*

-X111390Y55253D01*

-X111496Y55201D01*

-X111609Y55166D01*

-Y52133D01*

-X111508Y52091D01*

-X111307Y51967D01*

-X111127Y51814D01*

-X110974Y51634D01*

-X110850Y51433D01*

-X110760Y51215D01*

-X110705Y50985D01*

-X110691Y50750D01*

-X110705Y44015D01*

-X110760Y43785D01*

-X110850Y43567D01*

-X110974Y43366D01*

-X111127Y43186D01*

-X111307Y43033D01*

-X111508Y42909D01*

-X111609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X89273Y70327D02*X88810Y70869D01*

-X88242Y71355D01*

-X87604Y71745D01*

-X86913Y72031D01*

-X86186Y72206D01*

-X85441Y72265D01*

-Y72500D01*

-X89273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X89156Y52181D01*

-X88926Y52236D01*

-X88691Y52250D01*

-X85441Y52243D01*

-Y52750D01*

-X85658D01*

-X86089Y52789D01*

-X86516Y52868D01*

-X86933Y52985D01*

-X87338Y53140D01*

-X87443Y53195D01*

-X87538Y53266D01*

-X87620Y53352D01*

-X87688Y53449D01*

-X87740Y53555D01*

-X87775Y53669D01*

-X87791Y53786D01*

-X87789Y53905D01*

-X87768Y54022D01*

-X87730Y54134D01*

-X87674Y54238D01*

-X87603Y54333D01*

-X87517Y54415D01*

-X87420Y54483D01*

-X87314Y54535D01*

-X87200Y54570D01*

-X87083Y54586D01*

-X86964Y54584D01*

-X86848Y54564D01*

-X86736Y54523D01*

-X86461Y54414D01*

-X86176Y54334D01*

-X85884Y54280D01*

-X85589Y54253D01*

-X85441D01*

-Y60747D01*

-X85589D01*

-X85884Y60720D01*

-X86176Y60666D01*

-X86461Y60586D01*

-X86738Y60480D01*

-X86848Y60440D01*

-X86965Y60419D01*

-X87083Y60417D01*

-X87200Y60433D01*

-X87312Y60468D01*

-X87419Y60520D01*

-X87515Y60587D01*

-X87600Y60669D01*

-X87671Y60763D01*

-X87727Y60868D01*

-X87765Y60979D01*

-X87786Y61096D01*

-X87788Y61214D01*

-X87771Y61330D01*

-X87737Y61443D01*

-X87685Y61550D01*

-X87618Y61646D01*

-X87536Y61731D01*

-X87441Y61802D01*

-X87336Y61856D01*

-X86933Y62015D01*

-X86516Y62132D01*

-X86089Y62211D01*

-X85658Y62250D01*

-X85441D01*

-Y62735D01*

-X86186Y62794D01*

-X86913Y62969D01*

-X87604Y63255D01*

-X88242Y63645D01*

-X88810Y64131D01*

-X89273Y64673D01*

-Y59834D01*

-X89272Y59834D01*

-X89155Y59850D01*

-X89036Y59848D01*

-X88919Y59827D01*

-X88807Y59789D01*

-X88703Y59733D01*

-X88608Y59662D01*

-X88526Y59576D01*

-X88458Y59479D01*

-X88406Y59373D01*

-X88371Y59259D01*

-X88355Y59142D01*

-X88357Y59023D01*

-X88377Y58907D01*

-X88418Y58795D01*

-X88527Y58520D01*

-X88607Y58235D01*

-X88661Y57943D01*

-X88688Y57648D01*

-Y57352D01*

-X88661Y57057D01*

-X88607Y56765D01*

-X88527Y56480D01*

-X88421Y56203D01*

-X88381Y56093D01*

-X88360Y55976D01*

-X88358Y55858D01*

-X88374Y55741D01*

-X88409Y55629D01*

-X88461Y55522D01*

-X88528Y55426D01*

-X88610Y55341D01*

-X88704Y55270D01*

-X88809Y55214D01*

-X88920Y55176D01*

-X89037Y55155D01*

-X89155Y55153D01*

-X89271Y55170D01*

-X89273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X85441D01*

-Y42757D01*

-X88926Y42764D01*

-X89156Y42819D01*

-X89273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X81609Y64673D02*X82072Y64131D01*

-X82640Y63645D01*

-X83278Y63255D01*

-X83969Y62969D01*

-X84696Y62794D01*

-X85441Y62735D01*

-Y62250D01*

-X85224D01*

-X84793Y62211D01*

-X84366Y62132D01*

-X83949Y62015D01*

-X83544Y61860D01*

-X83439Y61805D01*

-X83344Y61734D01*

-X83262Y61648D01*

-X83194Y61551D01*

-X83142Y61445D01*

-X83107Y61331D01*

-X83091Y61214D01*

-X83093Y61095D01*

-X83114Y60978D01*

-X83152Y60866D01*

-X83208Y60762D01*

-X83279Y60667D01*

-X83365Y60585D01*

-X83462Y60517D01*

-X83568Y60465D01*

-X83682Y60430D01*

-X83799Y60414D01*

-X83918Y60416D01*

-X84034Y60436D01*

-X84146Y60477D01*

-X84421Y60586D01*

-X84706Y60666D01*

-X84998Y60720D01*

-X85293Y60747D01*

-X85441D01*

-Y54253D01*

-X85293D01*

-X84998Y54280D01*

-X84706Y54334D01*

-X84421Y54414D01*

-X84144Y54520D01*

-X84034Y54560D01*

-X83917Y54581D01*

-X83799Y54583D01*

-X83682Y54567D01*

-X83570Y54532D01*

-X83463Y54480D01*

-X83367Y54413D01*

-X83282Y54331D01*

-X83211Y54237D01*

-X83155Y54132D01*

-X83117Y54021D01*

-X83096Y53904D01*

-X83094Y53786D01*

-X83111Y53670D01*

-X83145Y53557D01*

-X83197Y53450D01*

-X83264Y53354D01*

-X83346Y53269D01*

-X83441Y53198D01*

-X83546Y53144D01*

-X83949Y52985D01*

-X84366Y52868D01*

-X84793Y52789D01*

-X85224Y52750D01*

-X85441D01*

-Y52243D01*

-X81956Y52236D01*

-X81726Y52181D01*

-X81609Y52133D01*

-Y55166D01*

-X81610Y55166D01*

-X81727Y55150D01*

-X81846Y55152D01*

-X81963Y55173D01*

-X82075Y55211D01*

-X82179Y55267D01*

-X82274Y55338D01*

-X82356Y55424D01*

-X82424Y55521D01*

-X82476Y55627D01*

-X82511Y55741D01*

-X82527Y55858D01*

-X82525Y55977D01*

-X82505Y56093D01*

-X82464Y56205D01*

-X82355Y56480D01*

-X82275Y56765D01*

-X82221Y57057D01*

-X82194Y57352D01*

-Y57648D01*

-X82221Y57943D01*

-X82275Y58235D01*

-X82355Y58520D01*

-X82461Y58797D01*

-X82501Y58907D01*

-X82522Y59024D01*

-X82524Y59142D01*

-X82508Y59259D01*

-X82473Y59371D01*

-X82421Y59478D01*

-X82354Y59574D01*

-X82272Y59659D01*

-X82178Y59730D01*

-X82073Y59786D01*

-X81962Y59824D01*

-X81845Y59845D01*

-X81727Y59847D01*

-X81610Y59830D01*

-X81609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X85441D01*

-Y72265D01*

-X84696Y72206D01*

-X83969Y72031D01*

-X83278Y71745D01*

-X82640Y71355D01*

-X82072Y70869D01*

-X81609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X85441Y39000D02*X81609D01*

-Y42867D01*

-X81726Y42819D01*

-X81956Y42764D01*

-X82191Y42750D01*

-X85441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X81609D02*X75441D01*

-X72941Y41500D01*

-Y72500D01*

-X81609D01*

-Y70327D01*

-X81586Y70301D01*

-X81196Y69663D01*

-X80910Y68972D01*

-X80735Y68245D01*

-X80676Y67500D01*

-X80735Y66755D01*

-X80910Y66028D01*

-X81196Y65337D01*

-X81586Y64699D01*

-X81609Y64673D01*

-Y59830D01*

-X81498Y59796D01*

-X81391Y59744D01*

-X81295Y59677D01*

-X81210Y59595D01*

-X81139Y59500D01*

-X81085Y59395D01*

-X80926Y58992D01*

-X80809Y58575D01*

-X80730Y58148D01*

-X80691Y57717D01*

-Y57283D01*

-X80730Y56852D01*

-X80809Y56425D01*

-X80926Y56008D01*

-X81081Y55603D01*

-X81136Y55498D01*

-X81207Y55403D01*

-X81293Y55321D01*

-X81390Y55253D01*

-X81496Y55201D01*

-X81609Y55166D01*

-Y52133D01*

-X81508Y52091D01*

-X81307Y51967D01*

-X81127Y51814D01*

-X80974Y51634D01*

-X80850Y51433D01*

-X80760Y51215D01*

-X80705Y50985D01*

-X80691Y50750D01*

-X80705Y44015D01*

-X80760Y43785D01*

-X80850Y43567D01*

-X80974Y43366D01*

-X81127Y43186D01*

-X81307Y43033D01*

-X81508Y42909D01*

-X81609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X308441Y113440D02*Y118440D01*

-X313941D01*

-Y113440D01*

-X308441D01*

-G37*

-G36*

-X267941Y333500D02*Y338500D01*

-X273441D01*

-Y333500D01*

-X267941D01*

-G37*

-G36*

-X214941Y258500D02*Y263500D01*

-X220441D01*

-Y258500D01*

-X214941D01*

-G37*

-G36*

-X218441Y257000D02*Y262000D01*

-X223941D01*

-Y257000D01*

-X218441D01*

-G37*

-G36*

-X437412Y53875D02*Y58875D01*

-X442912D01*

-Y53875D01*

-X437412D01*

-G37*

-G36*

-X221441Y145500D02*Y150500D01*

-X226941D01*

-Y145500D01*

-X221441D01*

-G37*

-G36*

-X306941Y139068D02*Y144068D01*

-X312441D01*

-Y139068D01*

-X306941D01*

-G37*

-G36*

-X383441Y160000D02*Y168000D01*

-X389941D01*

-Y160000D01*

-X383441D01*

-G37*

-G36*

-X428941Y106500D02*Y114500D01*

-X435441D01*

-Y106500D01*

-X428941D01*

-G37*

-G36*

-X419441Y72000D02*Y78000D01*

-X426441D01*

-Y72000D01*

-X419441D01*

-G37*

-G36*

-X238701Y288207D02*Y296207D01*

-X245201D01*

-Y288207D01*

-X238701D01*

-G37*

-G36*

-X386941Y83000D02*X397941D01*

-X397441Y41500D01*

-X386941D01*

-Y83000D01*

-G37*

-G36*

-X309438Y167500D02*X320941D01*

-Y76500D01*

-X309438D01*

-Y114947D01*

-X309480Y114879D01*

-X309664Y114663D01*

-X309880Y114479D01*

-X310121Y114331D01*

-X310383Y114223D01*

-X310659Y114157D01*

-X310941Y114134D01*

-X311223Y114157D01*

-X311499Y114223D01*

-X311761Y114331D01*

-X312002Y114479D01*

-X312218Y114663D01*

-X312402Y114879D01*

-X312550Y115120D01*

-X312658Y115382D01*

-X312724Y115658D01*

-X312741Y115940D01*

-X312724Y116222D01*

-X312658Y116498D01*

-X312550Y116760D01*

-X312402Y117001D01*

-X312218Y117217D01*

-X312002Y117401D01*

-X311761Y117549D01*

-X311499Y117657D01*

-X311223Y117723D01*

-X310941Y117746D01*

-X310659Y117723D01*

-X310383Y117657D01*

-X310121Y117549D01*

-X309880Y117401D01*

-X309664Y117217D01*

-X309480Y117001D01*

-X309438Y116933D01*

-Y134645D01*

-X309441Y134644D01*

-X309723Y134667D01*

-X309999Y134733D01*

-X310261Y134841D01*

-X310502Y134989D01*

-X310718Y135173D01*

-X310902Y135389D01*

-X311050Y135630D01*

-X311158Y135892D01*

-X311224Y136168D01*

-X311241Y136450D01*

-X311224Y136732D01*

-X311158Y137008D01*

-X311050Y137270D01*

-X310902Y137511D01*

-X310718Y137727D01*

-X310502Y137911D01*

-X310261Y138059D01*

-X309999Y138167D01*

-X309723Y138233D01*

-X309441Y138256D01*

-X309438Y138255D01*

-Y139763D01*

-X309441Y139762D01*

-X309723Y139785D01*

-X309999Y139851D01*

-X310261Y139959D01*

-X310502Y140107D01*

-X310718Y140291D01*

-X310902Y140507D01*

-X311050Y140748D01*

-X311158Y141010D01*

-X311224Y141286D01*

-X311241Y141568D01*

-X311224Y141850D01*

-X311158Y142126D01*

-X311050Y142388D01*

-X310902Y142629D01*

-X310718Y142845D01*

-X310502Y143029D01*

-X310261Y143177D01*

-X309999Y143285D01*

-X309723Y143351D01*

-X309441Y143374D01*

-X309438Y143373D01*

-Y167500D01*

-G37*

-G36*

-X305693D02*X309438D01*

-Y143373D01*

-X309159Y143351D01*

-X308883Y143285D01*

-X308621Y143177D01*

-X308380Y143029D01*

-X308164Y142845D01*

-X307980Y142629D01*

-X307832Y142388D01*

-X307724Y142126D01*

-X307658Y141850D01*

-X307635Y141568D01*

-X307658Y141286D01*

-X307724Y141010D01*

-X307832Y140748D01*

-X307980Y140507D01*

-X308164Y140291D01*

-X308380Y140107D01*

-X308621Y139959D01*

-X308883Y139851D01*

-X309159Y139785D01*

-X309438Y139763D01*

-Y138255D01*

-X309159Y138233D01*

-X308883Y138167D01*

-X308621Y138059D01*

-X308380Y137911D01*

-X308164Y137727D01*

-X307980Y137511D01*

-X307832Y137270D01*

-X307724Y137008D01*

-X307658Y136732D01*

-X307635Y136450D01*

-X307658Y136168D01*

-X307724Y135892D01*

-X307832Y135630D01*

-X307980Y135389D01*

-X308164Y135173D01*

-X308380Y134989D01*

-X308621Y134841D01*

-X308883Y134733D01*

-X309159Y134667D01*

-X309438Y134645D01*

-Y116933D01*

-X309332Y116760D01*

-X309224Y116498D01*

-X309158Y116222D01*

-X309135Y115940D01*

-X309158Y115658D01*

-X309224Y115382D01*

-X309332Y115120D01*

-X309438Y114947D01*

-Y76500D01*

-X305693D01*

-Y105695D01*

-X305696Y105694D01*

-X305978Y105717D01*

-X306254Y105783D01*

-X306516Y105891D01*

-X306757Y106039D01*

-X306973Y106223D01*

-X307157Y106439D01*

-X307305Y106680D01*

-X307413Y106942D01*

-X307479Y107218D01*

-X307496Y107500D01*

-X307479Y107782D01*

-X307413Y108058D01*

-X307305Y108320D01*

-X307157Y108561D01*

-X306973Y108777D01*

-X306757Y108961D01*

-X306516Y109109D01*

-X306254Y109217D01*

-X305978Y109283D01*

-X305696Y109306D01*

-X305693Y109305D01*

-Y167500D01*

-G37*

-G36*

-X245438D02*X305693D01*

-Y109305D01*

-X305414Y109283D01*

-X305138Y109217D01*

-X304876Y109109D01*

-X304635Y108961D01*

-X304419Y108777D01*

-X304235Y108561D01*

-X304087Y108320D01*

-X303979Y108058D01*

-X303913Y107782D01*

-X303890Y107500D01*

-X303913Y107218D01*

-X303979Y106942D01*

-X304087Y106680D01*

-X304235Y106439D01*

-X304419Y106223D01*

-X304635Y106039D01*

-X304876Y105891D01*

-X305138Y105783D01*

-X305414Y105717D01*

-X305693Y105695D01*

-Y76500D01*

-X245438D01*

-Y125695D01*

-X245441Y125694D01*

-X245723Y125717D01*

-X245999Y125783D01*

-X246261Y125891D01*

-X246502Y126039D01*

-X246718Y126223D01*

-X246902Y126439D01*

-X247050Y126680D01*

-X247158Y126942D01*

-X247224Y127218D01*

-X247241Y127500D01*

-X247224Y127782D01*

-X247158Y128058D01*

-X247050Y128320D01*

-X246902Y128561D01*

-X246718Y128777D01*

-X246502Y128961D01*

-X246261Y129109D01*

-X245999Y129217D01*

-X245723Y129283D01*

-X245441Y129306D01*

-X245438Y129305D01*

-Y167500D01*

-G37*

-G36*

-X234438D02*X245438D01*

-Y129305D01*

-X245159Y129283D01*

-X244883Y129217D01*

-X244621Y129109D01*

-X244380Y128961D01*

-X244164Y128777D01*

-X243980Y128561D01*

-X243832Y128320D01*

-X243724Y128058D01*

-X243658Y127782D01*

-X243635Y127500D01*

-X243658Y127218D01*

-X243724Y126942D01*

-X243832Y126680D01*

-X243980Y126439D01*

-X244164Y126223D01*

-X244380Y126039D01*

-X244621Y125891D01*

-X244883Y125783D01*

-X245159Y125717D01*

-X245438Y125695D01*

-Y76500D01*

-X234438D01*

-Y120695D01*

-X234441Y120694D01*

-X234723Y120717D01*

-X234999Y120783D01*

-X235261Y120891D01*

-X235502Y121039D01*

-X235718Y121223D01*

-X235902Y121439D01*

-X236050Y121680D01*

-X236158Y121942D01*

-X236224Y122218D01*

-X236241Y122500D01*

-X236224Y122782D01*

-X236158Y123058D01*

-X236050Y123320D01*

-X235902Y123561D01*

-X235718Y123777D01*

-X235502Y123961D01*

-X235261Y124109D01*

-X234999Y124217D01*

-X234723Y124283D01*

-X234441Y124306D01*

-X234438Y124305D01*

-Y132007D01*

-X234480Y131939D01*

-X234664Y131723D01*

-X234880Y131539D01*

-X235121Y131391D01*

-X235383Y131283D01*

-X235659Y131217D01*

-X235941Y131194D01*

-X236223Y131217D01*

-X236499Y131283D01*

-X236761Y131391D01*

-X237002Y131539D01*

-X237218Y131723D01*

-X237402Y131939D01*

-X237550Y132180D01*

-X237658Y132442D01*

-X237724Y132718D01*

-X237741Y133000D01*

-X237724Y133282D01*

-X237658Y133558D01*

-X237550Y133820D01*

-X237402Y134061D01*

-X237218Y134277D01*

-X237002Y134461D01*

-X236761Y134609D01*

-X236499Y134717D01*

-X236223Y134783D01*

-X235941Y134806D01*

-X235659Y134783D01*

-X235383Y134717D01*

-X235121Y134609D01*

-X234880Y134461D01*

-X234664Y134277D01*

-X234480Y134061D01*

-X234438Y133993D01*

-Y167500D01*

-G37*

-G36*

-X223938D02*X234438D01*

-Y133993D01*

-X234332Y133820D01*

-X234224Y133558D01*

-X234158Y133282D01*

-X234135Y133000D01*

-X234158Y132718D01*

-X234224Y132442D01*

-X234332Y132180D01*

-X234438Y132007D01*

-Y124305D01*

-X234159Y124283D01*

-X233883Y124217D01*

-X233621Y124109D01*

-X233380Y123961D01*

-X233164Y123777D01*

-X232980Y123561D01*

-X232832Y123320D01*

-X232724Y123058D01*

-X232658Y122782D01*

-X232635Y122500D01*

-X232658Y122218D01*

-X232724Y121942D01*

-X232832Y121680D01*

-X232980Y121439D01*

-X233164Y121223D01*

-X233380Y121039D01*

-X233621Y120891D01*

-X233883Y120783D01*

-X234159Y120717D01*

-X234438Y120695D01*

-Y76500D01*

-X223938D01*

-Y146195D01*

-X223941Y146194D01*

-X224223Y146217D01*

-X224499Y146283D01*

-X224761Y146391D01*

-X225002Y146539D01*

-X225218Y146723D01*

-X225402Y146939D01*

-X225550Y147180D01*

-X225658Y147442D01*

-X225724Y147718D01*

-X225741Y148000D01*

-X225724Y148282D01*

-X225658Y148558D01*

-X225550Y148820D01*

-X225402Y149061D01*

-X225218Y149277D01*

-X225002Y149461D01*

-X224761Y149609D01*

-X224499Y149717D01*

-X224223Y149783D01*

-X223941Y149806D01*

-X223938Y149805D01*

-Y167500D01*

-G37*

-G36*

-X208938D02*X223938D01*

-Y149805D01*

-X223659Y149783D01*

-X223383Y149717D01*

-X223121Y149609D01*

-X222880Y149461D01*

-X222664Y149277D01*

-X222480Y149061D01*

-X222332Y148820D01*

-X222224Y148558D01*

-X222158Y148282D01*

-X222135Y148000D01*

-X222158Y147718D01*

-X222224Y147442D01*

-X222332Y147180D01*

-X222480Y146939D01*

-X222664Y146723D01*

-X222880Y146539D01*

-X223121Y146391D01*

-X223383Y146283D01*

-X223659Y146217D01*

-X223938Y146195D01*

-Y76500D01*

-X208938D01*

-Y146195D01*

-X208941Y146194D01*

-X209223Y146217D01*

-X209499Y146283D01*

-X209761Y146391D01*

-X210002Y146539D01*

-X210218Y146723D01*

-X210402Y146939D01*

-X210550Y147180D01*

-X210658Y147442D01*

-X210724Y147718D01*

-X210741Y148000D01*

-X210724Y148282D01*

-X210658Y148558D01*

-X210550Y148820D01*

-X210402Y149061D01*

-X210218Y149277D01*

-X210002Y149461D01*

-X209761Y149609D01*

-X209499Y149717D01*

-X209223Y149783D01*

-X208941Y149806D01*

-X208938Y149805D01*

-Y167500D01*

-G37*

-G36*

-X198438D02*X208938D01*

-Y149805D01*

-X208659Y149783D01*

-X208383Y149717D01*

-X208121Y149609D01*

-X207880Y149461D01*

-X207664Y149277D01*

-X207480Y149061D01*

-X207332Y148820D01*

-X207224Y148558D01*

-X207158Y148282D01*

-X207135Y148000D01*

-X207158Y147718D01*

-X207224Y147442D01*

-X207332Y147180D01*

-X207480Y146939D01*

-X207664Y146723D01*

-X207880Y146539D01*

-X208121Y146391D01*

-X208383Y146283D01*

-X208659Y146217D01*

-X208938Y146195D01*

-Y76500D01*

-X198438D01*

-Y120695D01*

-X198441Y120694D01*

-X198723Y120717D01*

-X198999Y120783D01*

-X199261Y120891D01*

-X199502Y121039D01*

-X199718Y121223D01*

-X199902Y121439D01*

-X200050Y121680D01*

-X200158Y121942D01*

-X200224Y122218D01*

-X200241Y122500D01*

-X200224Y122782D01*

-X200158Y123058D01*

-X200050Y123320D01*

-X199902Y123561D01*

-X199718Y123777D01*

-X199502Y123961D01*

-X199261Y124109D01*

-X198999Y124217D01*

-X198723Y124283D01*

-X198441Y124306D01*

-X198438Y124305D01*

-Y167500D01*

-G37*

-G36*

-X195438D02*X198438D01*

-Y124305D01*

-X198159Y124283D01*

-X197883Y124217D01*

-X197621Y124109D01*

-X197380Y123961D01*

-X197164Y123777D01*

-X196980Y123561D01*

-X196832Y123320D01*

-X196724Y123058D01*

-X196658Y122782D01*

-X196635Y122500D01*

-X196658Y122218D01*

-X196724Y121942D01*

-X196832Y121680D01*

-X196980Y121439D01*

-X197164Y121223D01*

-X197380Y121039D01*

-X197621Y120891D01*

-X197883Y120783D01*

-X198159Y120717D01*

-X198438Y120695D01*

-Y76500D01*

-X195438D01*

-Y131195D01*

-X195441Y131194D01*

-X195723Y131217D01*

-X195999Y131283D01*

-X196261Y131391D01*

-X196502Y131539D01*

-X196718Y131723D01*

-X196902Y131939D01*

-X197050Y132180D01*

-X197158Y132442D01*

-X197224Y132718D01*

-X197241Y133000D01*

-X197224Y133282D01*

-X197158Y133558D01*

-X197050Y133820D01*

-X196902Y134061D01*

-X196718Y134277D01*

-X196502Y134461D01*

-X196261Y134609D01*

-X195999Y134717D01*

-X195723Y134783D01*

-X195441Y134806D01*

-X195438Y134805D01*

-Y167500D01*

-G37*

-G36*

-X193387D02*X195438D01*

-Y134805D01*

-X195159Y134783D01*

-X194883Y134717D01*

-X194621Y134609D01*

-X194380Y134461D01*

-X194164Y134277D01*

-X193980Y134061D01*

-X193832Y133820D01*

-X193724Y133558D01*

-X193658Y133282D01*

-X193635Y133000D01*

-X193658Y132718D01*

-X193724Y132442D01*

-X193832Y132180D01*

-X193980Y131939D01*

-X194164Y131723D01*

-X194380Y131539D01*

-X194621Y131391D01*

-X194883Y131283D01*

-X195159Y131217D01*

-X195438Y131195D01*

-Y76500D01*

-X193387D01*

-Y125695D01*

-X193390Y125694D01*

-X193672Y125717D01*

-X193948Y125783D01*

-X194210Y125891D01*

-X194451Y126039D01*

-X194667Y126223D01*

-X194851Y126439D01*

-X194999Y126680D01*

-X195107Y126942D01*

-X195173Y127218D01*

-X195190Y127500D01*

-X195173Y127782D01*

-X195107Y128058D01*

-X194999Y128320D01*

-X194851Y128561D01*

-X194667Y128777D01*

-X194451Y128961D01*

-X194210Y129109D01*

-X193948Y129217D01*

-X193672Y129283D01*

-X193390Y129306D01*

-X193387Y129305D01*

-Y167500D01*

-G37*

-G36*

-X169438Y216500D02*X173441D01*

-Y188427D01*

-X173264Y188319D01*

-X172749Y187879D01*

-X172309Y187364D01*

-X171956Y186787D01*

-X171697Y186162D01*

-X171539Y185504D01*

-X171486Y184829D01*

-X171539Y184154D01*

-X171697Y183496D01*

-X171956Y182871D01*

-X172309Y182294D01*

-X172749Y181779D01*

-X173264Y181339D01*

-X173441Y181231D01*

-Y178427D01*

-X173264Y178319D01*

-X172749Y177879D01*

-X172309Y177364D01*

-X171956Y176787D01*

-X171697Y176162D01*

-X171539Y175504D01*

-X171486Y174829D01*

-X171539Y174154D01*

-X171697Y173496D01*

-X171956Y172871D01*

-X172309Y172294D01*

-X172749Y171779D01*

-X173264Y171339D01*

-X173441Y171231D01*

-Y167500D01*

-X193387D01*

-Y129305D01*

-X193108Y129283D01*

-X192832Y129217D01*

-X192570Y129109D01*

-X192329Y128961D01*

-X192113Y128777D01*

-X191929Y128561D01*

-X191781Y128320D01*

-X191673Y128058D01*

-X191607Y127782D01*

-X191584Y127500D01*

-X191607Y127218D01*

-X191673Y126942D01*

-X191781Y126680D01*

-X191929Y126439D01*

-X192113Y126223D01*

-X192329Y126039D01*

-X192570Y125891D01*

-X192832Y125783D01*

-X193108Y125717D01*

-X193387Y125695D01*

-Y76500D01*

-X169438D01*

-Y172538D01*

-X169642Y172871D01*

-X169901Y173496D01*

-X170059Y174154D01*

-X170099Y174829D01*

-X170059Y175504D01*

-X169901Y176162D01*

-X169642Y176787D01*

-X169438Y177120D01*

-Y182538D01*

-X169642Y182871D01*

-X169901Y183496D01*

-X170059Y184154D01*

-X170099Y184829D01*

-X170059Y185504D01*

-X169901Y186162D01*

-X169642Y186787D01*

-X169438Y187120D01*

-Y199695D01*

-X169441Y199694D01*

-X169723Y199717D01*

-X169999Y199783D01*

-X170261Y199891D01*

-X170502Y200039D01*

-X170718Y200223D01*

-X170902Y200439D01*

-X171050Y200680D01*

-X171158Y200942D01*

-X171224Y201218D01*

-X171241Y201500D01*

-X171224Y201782D01*

-X171158Y202058D01*

-X171050Y202320D01*

-X170902Y202561D01*

-X170718Y202777D01*

-X170502Y202961D01*

-X170261Y203109D01*

-X169999Y203217D01*

-X169723Y203283D01*

-X169441Y203306D01*

-X169438Y203305D01*

-Y206695D01*

-X169441Y206694D01*

-X169723Y206717D01*

-X169999Y206783D01*

-X170261Y206891D01*

-X170502Y207039D01*

-X170718Y207223D01*

-X170902Y207439D01*

-X171050Y207680D01*

-X171158Y207942D01*

-X171224Y208218D01*

-X171241Y208500D01*

-X171224Y208782D01*

-X171158Y209058D01*

-X171050Y209320D01*

-X170902Y209561D01*

-X170718Y209777D01*

-X170502Y209961D01*

-X170261Y210109D01*

-X169999Y210217D01*

-X169723Y210283D01*

-X169441Y210306D01*

-X169438Y210305D01*

-Y212195D01*

-X169441Y212194D01*

-X169723Y212217D01*

-X169999Y212283D01*

-X170261Y212391D01*

-X170502Y212539D01*

-X170718Y212723D01*

-X170902Y212939D01*

-X171050Y213180D01*

-X171158Y213442D01*

-X171224Y213718D01*

-X171241Y214000D01*

-X171224Y214282D01*

-X171158Y214558D01*

-X171050Y214820D01*

-X170902Y215061D01*

-X170718Y215277D01*

-X170502Y215461D01*

-X170261Y215609D01*

-X169999Y215717D01*

-X169723Y215783D01*

-X169441Y215806D01*

-X169438Y215805D01*

-Y216500D01*

-G37*

-G36*

-Y177120D02*X169289Y177364D01*

-X168849Y177879D01*

-X168334Y178319D01*

-X167757Y178672D01*

-X167132Y178931D01*

-X166474Y179089D01*

-X165938Y179131D01*

-Y180527D01*

-X166474Y180569D01*

-X167132Y180727D01*

-X167757Y180986D01*

-X168334Y181339D01*

-X168849Y181779D01*

-X169289Y182294D01*

-X169438Y182538D01*

-Y177120D01*

-G37*

-G36*

-Y76500D02*X165938D01*

-Y170527D01*

-X166474Y170569D01*

-X167132Y170727D01*

-X167757Y170986D01*

-X168334Y171339D01*

-X168849Y171779D01*

-X169289Y172294D01*

-X169438Y172538D01*

-Y76500D01*

-G37*

-G36*

-X165938Y278500D02*X168441D01*

-Y216500D01*

-X169438D01*

-Y215805D01*

-X169159Y215783D01*

-X168883Y215717D01*

-X168621Y215609D01*

-X168380Y215461D01*

-X168164Y215277D01*

-X167980Y215061D01*

-X167832Y214820D01*

-X167724Y214558D01*

-X167658Y214282D01*

-X167635Y214000D01*

-X167658Y213718D01*

-X167724Y213442D01*

-X167832Y213180D01*

-X167980Y212939D01*

-X168164Y212723D01*

-X168380Y212539D01*

-X168621Y212391D01*

-X168883Y212283D01*

-X169159Y212217D01*

-X169438Y212195D01*

-Y210305D01*

-X169159Y210283D01*

-X168883Y210217D01*

-X168621Y210109D01*

-X168380Y209961D01*

-X168164Y209777D01*

-X167980Y209561D01*

-X167832Y209320D01*

-X167724Y209058D01*

-X167658Y208782D01*

-X167635Y208500D01*

-X167658Y208218D01*

-X167724Y207942D01*

-X167832Y207680D01*

-X167980Y207439D01*

-X168164Y207223D01*

-X168380Y207039D01*

-X168621Y206891D01*

-X168883Y206783D01*

-X169159Y206717D01*

-X169438Y206695D01*

-Y203305D01*

-X169159Y203283D01*

-X168883Y203217D01*

-X168621Y203109D01*

-X168380Y202961D01*

-X168164Y202777D01*

-X167980Y202561D01*

-X167832Y202320D01*

-X167724Y202058D01*

-X167658Y201782D01*

-X167635Y201500D01*

-X167658Y201218D01*

-X167724Y200942D01*

-X167832Y200680D01*

-X167980Y200439D01*

-X168164Y200223D01*

-X168380Y200039D01*

-X168621Y199891D01*

-X168883Y199783D01*

-X169159Y199717D01*

-X169438Y199695D01*

-Y187120D01*

-X169289Y187364D01*

-X168849Y187879D01*

-X168334Y188319D01*

-X167757Y188672D01*

-X167132Y188931D01*

-X166474Y189089D01*

-X165938Y189131D01*

-Y218695D01*

-X165941Y218694D01*

-X166223Y218717D01*

-X166499Y218783D01*

-X166761Y218891D01*

-X167002Y219039D01*

-X167218Y219223D01*

-X167402Y219439D01*

-X167550Y219680D01*

-X167658Y219942D01*

-X167724Y220218D01*

-X167741Y220500D01*

-X167724Y220782D01*

-X167658Y221058D01*

-X167550Y221320D01*

-X167402Y221561D01*

-X167218Y221777D01*

-X167002Y221961D01*

-X166761Y222109D01*

-X166499Y222217D01*

-X166223Y222283D01*

-X165941Y222306D01*

-X165938Y222305D01*

-Y224695D01*

-X165941Y224694D01*

-X166223Y224717D01*

-X166499Y224783D01*

-X166761Y224891D01*

-X167002Y225039D01*

-X167218Y225223D01*

-X167402Y225439D01*

-X167550Y225680D01*

-X167658Y225942D01*

-X167724Y226218D01*

-X167741Y226500D01*

-X167724Y226782D01*

-X167658Y227058D01*

-X167550Y227320D01*

-X167402Y227561D01*

-X167218Y227777D01*

-X167002Y227961D01*

-X166761Y228109D01*

-X166499Y228217D01*

-X166223Y228283D01*

-X165941Y228306D01*

-X165938Y228305D01*

-Y229195D01*

-X165941Y229194D01*

-X166223Y229217D01*

-X166499Y229283D01*

-X166761Y229391D01*

-X167002Y229539D01*

-X167218Y229723D01*

-X167402Y229939D01*

-X167550Y230180D01*

-X167658Y230442D01*

-X167724Y230718D01*

-X167741Y231000D01*

-X167724Y231282D01*

-X167658Y231558D01*

-X167550Y231820D01*

-X167402Y232061D01*

-X167218Y232277D01*

-X167002Y232461D01*

-X166761Y232609D01*

-X166499Y232717D01*

-X166223Y232783D01*

-X165941Y232806D01*

-X165938Y232805D01*

-Y278500D01*

-G37*

-G36*

-Y179131D02*X165799Y179142D01*

-X165124Y179089D01*

-X164466Y178931D01*

-X163938Y178712D01*

-Y180946D01*

-X164466Y180727D01*

-X165124Y180569D01*

-X165799Y180516D01*

-X165938Y180527D01*

-Y179131D01*

-G37*

-G36*

-Y76500D02*X163938D01*

-Y125695D01*

-X163941Y125694D01*

-X164223Y125717D01*

-X164499Y125783D01*

-X164761Y125891D01*

-X165002Y126039D01*

-X165218Y126223D01*

-X165402Y126439D01*

-X165550Y126680D01*

-X165658Y126942D01*

-X165724Y127218D01*

-X165741Y127500D01*

-X165724Y127782D01*

-X165658Y128058D01*

-X165550Y128320D01*

-X165402Y128561D01*

-X165218Y128777D01*

-X165002Y128961D01*

-X164761Y129109D01*

-X164499Y129217D01*

-X164223Y129283D01*

-X163941Y129306D01*

-X163938Y129305D01*

-Y170946D01*

-X164466Y170727D01*

-X165124Y170569D01*

-X165799Y170516D01*

-X165938Y170527D01*

-Y76500D01*

-G37*

-G36*

-X163938Y278500D02*X165938D01*

-Y232805D01*

-X165659Y232783D01*

-X165383Y232717D01*

-X165121Y232609D01*

-X164880Y232461D01*

-X164664Y232277D01*

-X164480Y232061D01*

-X164332Y231820D01*

-X164224Y231558D01*

-X164158Y231282D01*

-X164135Y231000D01*

-X164158Y230718D01*

-X164224Y230442D01*

-X164332Y230180D01*

-X164480Y229939D01*

-X164664Y229723D01*

-X164880Y229539D01*

-X165121Y229391D01*

-X165383Y229283D01*

-X165659Y229217D01*

-X165938Y229195D01*

-Y228305D01*

-X165659Y228283D01*

-X165383Y228217D01*

-X165121Y228109D01*

-X164880Y227961D01*

-X164664Y227777D01*

-X164480Y227561D01*

-X164332Y227320D01*

-X164224Y227058D01*

-X164158Y226782D01*

-X164135Y226500D01*

-X164158Y226218D01*

-X164224Y225942D01*

-X164332Y225680D01*

-X164480Y225439D01*

-X164664Y225223D01*

-X164880Y225039D01*

-X165121Y224891D01*

-X165383Y224783D01*

-X165659Y224717D01*

-X165938Y224695D01*

-Y222305D01*

-X165659Y222283D01*

-X165383Y222217D01*

-X165121Y222109D01*

-X164880Y221961D01*

-X164664Y221777D01*

-X164480Y221561D01*

-X164332Y221320D01*

-X164224Y221058D01*

-X164158Y220782D01*

-X164135Y220500D01*

-X164158Y220218D01*

-X164224Y219942D01*

-X164332Y219680D01*

-X164480Y219439D01*

-X164664Y219223D01*

-X164880Y219039D01*

-X165121Y218891D01*

-X165383Y218783D01*

-X165659Y218717D01*

-X165938Y218695D01*

-Y189131D01*

-X165799Y189142D01*

-X165124Y189089D01*

-X164466Y188931D01*

-X163938Y188712D01*

-Y241498D01*

-X164050Y241680D01*

-X164158Y241942D01*

-X164224Y242218D01*

-X164241Y242500D01*

-X164224Y242782D01*

-X164158Y243058D01*

-X164050Y243320D01*

-X163938Y243502D01*

-Y247498D01*

-X164050Y247680D01*

-X164158Y247942D01*

-X164224Y248218D01*

-X164241Y248500D01*

-X164224Y248782D01*

-X164158Y249058D01*

-X164050Y249320D01*

-X163938Y249502D01*

-Y261498D01*

-X164050Y261680D01*

-X164158Y261942D01*

-X164224Y262218D01*

-X164241Y262500D01*

-X164224Y262782D01*

-X164158Y263058D01*

-X164050Y263320D01*

-X163938Y263502D01*

-Y267000D01*

-X164002Y267039D01*

-X164218Y267223D01*

-X164402Y267439D01*

-X164550Y267680D01*

-X164658Y267942D01*

-X164724Y268218D01*

-X164741Y268500D01*

-X164724Y268782D01*

-X164658Y269058D01*

-X164550Y269320D01*

-X164402Y269561D01*

-X164218Y269777D01*

-X164002Y269961D01*

-X163938Y270000D01*

-Y273000D01*

-X164002Y273039D01*

-X164218Y273223D01*

-X164402Y273439D01*

-X164550Y273680D01*

-X164658Y273942D01*

-X164724Y274218D01*

-X164741Y274500D01*

-X164724Y274782D01*

-X164658Y275058D01*

-X164550Y275320D01*

-X164402Y275561D01*

-X164218Y275777D01*

-X164002Y275961D01*

-X163938Y276000D01*

-Y278500D01*

-G37*

-G36*

-X161938Y172913D02*X161956Y172871D01*

-X162309Y172294D01*

-X162749Y171779D01*

-X163264Y171339D01*

-X163841Y170986D01*

-X163938Y170946D01*

-Y129305D01*

-X163659Y129283D01*

-X163383Y129217D01*

-X163121Y129109D01*

-X162880Y128961D01*

-X162664Y128777D01*

-X162480Y128561D01*

-X162332Y128320D01*

-X162224Y128058D01*

-X162158Y127782D01*

-X162135Y127500D01*

-X162158Y127218D01*

-X162224Y126942D01*

-X162332Y126680D01*

-X162480Y126439D01*

-X162664Y126223D01*

-X162880Y126039D01*

-X163121Y125891D01*

-X163383Y125783D01*

-X163659Y125717D01*

-X163938Y125695D01*

-Y76500D01*

-X161938D01*

-Y172913D01*

-G37*

-G36*

-Y182913D02*X161956Y182871D01*

-X162309Y182294D01*

-X162749Y181779D01*

-X163264Y181339D01*

-X163841Y180986D01*

-X163938Y180946D01*

-Y178712D01*

-X163841Y178672D01*

-X163264Y178319D01*

-X162749Y177879D01*

-X162309Y177364D01*

-X161956Y176787D01*

-X161938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y240770D02*X162159Y240717D01*

-X162441Y240694D01*

-X162723Y240717D01*

-X162999Y240783D01*

-X163261Y240891D01*

-X163502Y241039D01*

-X163718Y241223D01*

-X163902Y241439D01*

-X163938Y241498D01*

-Y188712D01*

-X163841Y188672D01*

-X163264Y188319D01*

-X162749Y187879D01*

-X162309Y187364D01*

-X161956Y186787D01*

-X161938Y186745D01*

-Y240770D01*

-G37*

-G36*

-Y246770D02*X162159Y246717D01*

-X162441Y246694D01*

-X162723Y246717D01*

-X162999Y246783D01*

-X163261Y246891D01*

-X163502Y247039D01*

-X163718Y247223D01*

-X163902Y247439D01*

-X163938Y247498D01*

-Y243502D01*

-X163902Y243561D01*

-X163718Y243777D01*

-X163502Y243961D01*

-X163261Y244109D01*

-X162999Y244217D01*

-X162723Y244283D01*

-X162441Y244306D01*

-X162159Y244283D01*

-X161938Y244230D01*

-Y246770D01*

-G37*

-G36*

-Y260770D02*X162159Y260717D01*

-X162441Y260694D01*

-X162723Y260717D01*

-X162999Y260783D01*

-X163261Y260891D01*

-X163502Y261039D01*

-X163718Y261223D01*

-X163902Y261439D01*

-X163938Y261498D01*

-Y249502D01*

-X163902Y249561D01*

-X163718Y249777D01*

-X163502Y249961D01*

-X163261Y250109D01*

-X162999Y250217D01*

-X162723Y250283D01*

-X162441Y250306D01*

-X162159Y250283D01*

-X161938Y250230D01*

-Y253195D01*

-X161941Y253194D01*

-X162223Y253217D01*

-X162499Y253283D01*

-X162761Y253391D01*

-X163002Y253539D01*

-X163218Y253723D01*

-X163402Y253939D01*

-X163550Y254180D01*

-X163658Y254442D01*

-X163724Y254718D01*

-X163741Y255000D01*

-X163724Y255282D01*

-X163658Y255558D01*

-X163550Y255820D01*

-X163402Y256061D01*

-X163218Y256277D01*

-X163002Y256461D01*

-X162761Y256609D01*

-X162499Y256717D01*

-X162223Y256783D01*

-X161941Y256806D01*

-X161938Y256805D01*

-Y260770D01*

-G37*

-G36*

-Y267003D02*X162121Y266891D01*

-X162383Y266783D01*

-X162659Y266717D01*

-X162941Y266694D01*

-X163223Y266717D01*

-X163499Y266783D01*

-X163761Y266891D01*

-X163938Y267000D01*

-Y263502D01*

-X163902Y263561D01*

-X163718Y263777D01*

-X163502Y263961D01*

-X163261Y264109D01*

-X162999Y264217D01*

-X162723Y264283D01*

-X162441Y264306D01*

-X162159Y264283D01*

-X161938Y264230D01*

-Y267003D01*

-G37*

-G36*

-Y273003D02*X162121Y272891D01*

-X162383Y272783D01*

-X162659Y272717D01*

-X162941Y272694D01*

-X163223Y272717D01*

-X163499Y272783D01*

-X163761Y272891D01*

-X163938Y273000D01*

-Y270000D01*

-X163761Y270109D01*

-X163499Y270217D01*

-X163223Y270283D01*

-X162941Y270306D01*

-X162659Y270283D01*

-X162383Y270217D01*

-X162121Y270109D01*

-X161938Y269997D01*

-Y273003D01*

-G37*

-G36*

-Y278500D02*X163938D01*

-Y276000D01*

-X163761Y276109D01*

-X163499Y276217D01*

-X163223Y276283D01*

-X162941Y276306D01*

-X162659Y276283D01*

-X162383Y276217D01*

-X162121Y276109D01*

-X161938Y275997D01*

-Y278500D01*

-G37*

-G36*

-X152438Y342500D02*X156941D01*

-Y329826D01*

-X156832Y329649D01*

-X156724Y329387D01*

-X156658Y329111D01*

-X156635Y328829D01*

-X156658Y328547D01*

-X156724Y328271D01*

-X156832Y328009D01*

-X156941Y327832D01*

-Y327497D01*

-X156832Y327320D01*

-X156724Y327058D01*

-X156658Y326782D01*

-X156635Y326500D01*

-X156658Y326218D01*

-X156724Y325942D01*

-X156832Y325680D01*

-X156941Y325503D01*

-Y324826D01*

-X156832Y324649D01*

-X156724Y324387D01*

-X156658Y324111D01*

-X156635Y323829D01*

-X156658Y323547D01*

-X156724Y323271D01*

-X156832Y323009D01*

-X156941Y322832D01*

-Y278500D01*

-X161938D01*

-Y275997D01*

-X161880Y275961D01*

-X161664Y275777D01*

-X161480Y275561D01*

-X161332Y275320D01*

-X161224Y275058D01*

-X161158Y274782D01*

-X161135Y274500D01*

-X161158Y274218D01*

-X161224Y273942D01*

-X161332Y273680D01*

-X161480Y273439D01*

-X161664Y273223D01*

-X161880Y273039D01*

-X161938Y273003D01*

-Y269997D01*

-X161880Y269961D01*

-X161664Y269777D01*

-X161480Y269561D01*

-X161332Y269320D01*

-X161224Y269058D01*

-X161158Y268782D01*

-X161135Y268500D01*

-X161158Y268218D01*

-X161224Y267942D01*

-X161332Y267680D01*

-X161480Y267439D01*

-X161664Y267223D01*

-X161880Y267039D01*

-X161938Y267003D01*

-Y264230D01*

-X161883Y264217D01*

-X161621Y264109D01*

-X161380Y263961D01*

-X161164Y263777D01*

-X160980Y263561D01*

-X160832Y263320D01*

-X160724Y263058D01*

-X160658Y262782D01*

-X160635Y262500D01*

-X160658Y262218D01*

-X160724Y261942D01*

-X160832Y261680D01*

-X160980Y261439D01*

-X161164Y261223D01*

-X161380Y261039D01*

-X161621Y260891D01*

-X161883Y260783D01*

-X161938Y260770D01*

-Y256805D01*

-X161659Y256783D01*

-X161383Y256717D01*

-X161121Y256609D01*

-X160880Y256461D01*

-X160664Y256277D01*

-X160480Y256061D01*

-X160332Y255820D01*

-X160224Y255558D01*

-X160158Y255282D01*

-X160135Y255000D01*

-X160158Y254718D01*

-X160224Y254442D01*

-X160332Y254180D01*

-X160480Y253939D01*

-X160664Y253723D01*

-X160880Y253539D01*

-X161121Y253391D01*

-X161383Y253283D01*

-X161659Y253217D01*

-X161938Y253195D01*

-Y250230D01*

-X161883Y250217D01*

-X161621Y250109D01*

-X161380Y249961D01*

-X161164Y249777D01*

-X160980Y249561D01*

-X160832Y249320D01*

-X160724Y249058D01*

-X160658Y248782D01*

-X160635Y248500D01*

-X160658Y248218D01*

-X160724Y247942D01*

-X160832Y247680D01*

-X160980Y247439D01*

-X161164Y247223D01*

-X161380Y247039D01*

-X161621Y246891D01*

-X161883Y246783D01*

-X161938Y246770D01*

-Y244230D01*

-X161883Y244217D01*

-X161621Y244109D01*

-X161380Y243961D01*

-X161164Y243777D01*

-X160980Y243561D01*

-X160832Y243320D01*

-X160724Y243058D01*

-X160658Y242782D01*

-X160635Y242500D01*

-X160658Y242218D01*

-X160724Y241942D01*

-X160832Y241680D01*

-X160980Y241439D01*

-X161164Y241223D01*

-X161380Y241039D01*

-X161621Y240891D01*

-X161883Y240783D01*

-X161938Y240770D01*

-Y186745D01*

-X161697Y186162D01*

-X161539Y185504D01*

-X161486Y184829D01*

-X161539Y184154D01*

-X161697Y183496D01*

-X161938Y182913D01*

-Y176745D01*

-X161697Y176162D01*

-X161539Y175504D01*

-X161486Y174829D01*

-X161539Y174154D01*

-X161697Y173496D01*

-X161938Y172913D01*

-Y76500D01*

-X152438D01*

-Y119695D01*

-X152441Y119694D01*

-X152723Y119717D01*

-X152999Y119783D01*

-X153261Y119891D01*

-X153502Y120039D01*

-X153718Y120223D01*

-X153902Y120439D01*

-X154050Y120680D01*

-X154158Y120942D01*

-X154224Y121218D01*

-X154241Y121500D01*

-X154224Y121782D01*

-X154158Y122058D01*

-X154050Y122320D01*

-X153902Y122561D01*

-X153718Y122777D01*

-X153502Y122961D01*

-X153261Y123109D01*

-X152999Y123217D01*

-X152723Y123283D01*

-X152441Y123306D01*

-X152438Y123305D01*

-Y130268D01*

-X152499Y130283D01*

-X152761Y130391D01*

-X153002Y130539D01*

-X153218Y130723D01*

-X153402Y130939D01*

-X153550Y131180D01*

-X153658Y131442D01*

-X153724Y131718D01*

-X153741Y132000D01*

-X153724Y132282D01*

-X153658Y132558D01*

-X153550Y132820D01*

-X153402Y133061D01*

-X153218Y133277D01*

-X153002Y133461D01*

-X152761Y133609D01*

-X152499Y133717D01*

-X152438Y133732D01*

-Y172143D01*

-X152749Y171779D01*

-X153264Y171339D01*

-X153841Y170986D01*

-X154466Y170727D01*

-X155124Y170569D01*

-X155799Y170516D01*

-X156474Y170569D01*

-X157132Y170727D01*

-X157757Y170986D01*

-X158334Y171339D01*

-X158849Y171779D01*

-X159289Y172294D01*

-X159642Y172871D01*

-X159901Y173496D01*

-X160059Y174154D01*

-X160099Y174829D01*

-X160059Y175504D01*

-X159901Y176162D01*

-X159642Y176787D01*

-X159289Y177364D01*

-X158849Y177879D01*

-X158334Y178319D01*

-X157757Y178672D01*

-X157132Y178931D01*

-X156474Y179089D01*

-X155799Y179142D01*

-X155124Y179089D01*

-X154466Y178931D01*

-X153841Y178672D01*

-X153264Y178319D01*

-X152749Y177879D01*

-X152438Y177515D01*

-Y182143D01*

-X152749Y181779D01*

-X153264Y181339D01*

-X153841Y180986D01*

-X154466Y180727D01*

-X155124Y180569D01*

-X155799Y180516D01*

-X156474Y180569D01*

-X157132Y180727D01*

-X157757Y180986D01*

-X158334Y181339D01*

-X158849Y181779D01*

-X159289Y182294D01*

-X159642Y182871D01*

-X159901Y183496D01*

-X160059Y184154D01*

-X160099Y184829D01*

-X160059Y185504D01*

-X159901Y186162D01*

-X159642Y186787D01*

-X159289Y187364D01*

-X158849Y187879D01*

-X158334Y188319D01*

-X157757Y188672D01*

-X157132Y188931D01*

-X156474Y189089D01*

-X155799Y189142D01*

-X155124Y189089D01*

-X154466Y188931D01*

-X153841Y188672D01*

-X153264Y188319D01*

-X152749Y187879D01*

-X152438Y187515D01*

-Y337007D01*

-X152480Y336939D01*

-X152664Y336723D01*

-X152880Y336539D01*

-X153121Y336391D01*

-X153383Y336283D01*

-X153659Y336217D01*

-X153941Y336194D01*

-X154223Y336217D01*

-X154499Y336283D01*

-X154761Y336391D01*

-X155002Y336539D01*

-X155218Y336723D01*

-X155402Y336939D01*

-X155550Y337180D01*

-X155658Y337442D01*

-X155724Y337718D01*

-X155741Y338000D01*

-X155724Y338282D01*

-X155658Y338558D01*

-X155550Y338820D01*

-X155402Y339061D01*

-X155218Y339277D01*

-X155002Y339461D01*

-X154761Y339609D01*

-X154499Y339717D01*

-X154223Y339783D01*

-X153941Y339806D01*

-X153659Y339783D01*

-X153383Y339717D01*

-X153121Y339609D01*

-X152880Y339461D01*

-X152664Y339277D01*

-X152480Y339061D01*

-X152438Y338993D01*

-Y342500D01*

-G37*

-G36*

-X145792D02*X152438D01*

-Y338993D01*

-X152332Y338820D01*

-X152224Y338558D01*

-X152158Y338282D01*

-X152135Y338000D01*

-X152158Y337718D01*

-X152224Y337442D01*

-X152332Y337180D01*

-X152438Y337007D01*

-Y187515D01*

-X152309Y187364D01*

-X151956Y186787D01*

-X151697Y186162D01*

-X151539Y185504D01*

-X151486Y184829D01*

-X151539Y184154D01*

-X151697Y183496D01*

-X151956Y182871D01*

-X152309Y182294D01*

-X152438Y182143D01*

-Y177515D01*

-X152309Y177364D01*

-X151956Y176787D01*

-X151697Y176162D01*

-X151539Y175504D01*

-X151486Y174829D01*

-X151539Y174154D01*

-X151697Y173496D01*

-X151956Y172871D01*

-X152309Y172294D01*

-X152438Y172143D01*

-Y133732D01*

-X152223Y133783D01*

-X151941Y133806D01*

-X151659Y133783D01*

-X151383Y133717D01*

-X151121Y133609D01*

-X150880Y133461D01*

-X150664Y133277D01*

-X150480Y133061D01*

-X150332Y132820D01*

-X150224Y132558D01*

-X150158Y132282D01*

-X150135Y132000D01*

-X150158Y131718D01*

-X150224Y131442D01*

-X150332Y131180D01*

-X150480Y130939D01*

-X150664Y130723D01*

-X150880Y130539D01*

-X151121Y130391D01*

-X151383Y130283D01*

-X151659Y130217D01*

-X151941Y130194D01*

-X152223Y130217D01*

-X152438Y130268D01*

-Y123305D01*

-X152159Y123283D01*

-X151883Y123217D01*

-X151621Y123109D01*

-X151380Y122961D01*

-X151164Y122777D01*

-X150980Y122561D01*

-X150832Y122320D01*

-X150724Y122058D01*

-X150658Y121782D01*

-X150635Y121500D01*

-X150658Y121218D01*

-X150724Y120942D01*

-X150832Y120680D01*

-X150980Y120439D01*

-X151164Y120223D01*

-X151380Y120039D01*

-X151621Y119891D01*

-X151883Y119783D01*

-X152159Y119717D01*

-X152438Y119695D01*

-Y76500D01*

-X145792D01*

-Y170516D01*

-X145799Y170516D01*

-X146474Y170569D01*

-X147132Y170727D01*

-X147757Y170986D01*

-X148334Y171339D01*

-X148849Y171779D01*

-X149289Y172294D01*

-X149642Y172871D01*

-X149901Y173496D01*

-X150059Y174154D01*

-X150099Y174829D01*

-X150059Y175504D01*

-X149901Y176162D01*

-X149642Y176787D01*

-X149289Y177364D01*

-X148849Y177879D01*

-X148334Y178319D01*

-X147757Y178672D01*

-X147132Y178931D01*

-X146474Y179089D01*

-X145799Y179142D01*

-X145792Y179142D01*

-Y180516D01*

-X145799Y180516D01*

-X146474Y180569D01*

-X147132Y180727D01*

-X147757Y180986D01*

-X148334Y181339D01*

-X148849Y181779D01*

-X149289Y182294D01*

-X149642Y182871D01*

-X149901Y183496D01*

-X150059Y184154D01*

-X150099Y184829D01*

-X150059Y185504D01*

-X149901Y186162D01*

-X149642Y186787D01*

-X149289Y187364D01*

-X148849Y187879D01*

-X148334Y188319D01*

-X147757Y188672D01*

-X147132Y188931D01*

-X146474Y189089D01*

-X145799Y189142D01*

-X145792Y189142D01*

-Y342500D01*

-G37*

-G36*

-X141438D02*X145792D01*

-Y189142D01*

-X145124Y189089D01*

-X144466Y188931D01*

-X143841Y188672D01*

-X143264Y188319D01*

-X142749Y187879D01*

-X142309Y187364D01*

-X141956Y186787D01*

-X141697Y186162D01*

-X141539Y185504D01*

-X141486Y184829D01*

-X141539Y184154D01*

-X141697Y183496D01*

-X141956Y182871D01*

-X142309Y182294D01*

-X142749Y181779D01*

-X143264Y181339D01*

-X143841Y180986D01*

-X144466Y180727D01*

-X145124Y180569D01*

-X145792Y180516D01*

-Y179142D01*

-X145124Y179089D01*

-X144466Y178931D01*

-X143841Y178672D01*

-X143264Y178319D01*

-X142749Y177879D01*

-X142309Y177364D01*

-X141956Y176787D01*

-X141697Y176162D01*

-X141539Y175504D01*

-X141486Y174829D01*

-X141539Y174154D01*

-X141697Y173496D01*

-X141956Y172871D01*

-X142309Y172294D01*

-X142749Y171779D01*

-X143264Y171339D01*

-X143841Y170986D01*

-X144466Y170727D01*

-X145124Y170569D01*

-X145792Y170516D01*

-Y76500D01*

-X141438D01*

-Y146195D01*

-X141441Y146194D01*

-X141723Y146217D01*

-X141999Y146283D01*

-X142261Y146391D01*

-X142502Y146539D01*

-X142718Y146723D01*

-X142902Y146939D01*

-X143050Y147180D01*

-X143158Y147442D01*

-X143224Y147718D01*

-X143241Y148000D01*

-X143224Y148282D01*

-X143158Y148558D01*

-X143050Y148820D01*

-X142902Y149061D01*

-X142718Y149277D01*

-X142502Y149461D01*

-X142261Y149609D01*

-X141999Y149717D01*

-X141723Y149783D01*

-X141441Y149806D01*

-X141438Y149805D01*

-Y299088D01*

-X141589Y299100D01*

-X141865Y299166D01*

-X142127Y299274D01*

-X142368Y299422D01*

-X142584Y299606D01*

-X142768Y299822D01*

-X142916Y300063D01*

-X143024Y300325D01*

-X143090Y300601D01*

-X143107Y300883D01*

-X143090Y301165D01*

-X143024Y301441D01*

-X142916Y301703D01*

-X142768Y301944D01*

-X142584Y302160D01*

-X142368Y302344D01*

-X142127Y302492D01*

-X141865Y302600D01*

-X141589Y302666D01*

-X141438Y302678D01*

-Y336998D01*

-X141550Y337180D01*

-X141658Y337442D01*

-X141724Y337718D01*

-X141741Y338000D01*

-X141724Y338282D01*

-X141658Y338558D01*

-X141550Y338820D01*

-X141438Y339002D01*

-Y342500D01*

-G37*

-G36*

-X135438D02*X141438D01*

-Y339002D01*

-X141402Y339061D01*

-X141218Y339277D01*

-X141002Y339461D01*

-X140761Y339609D01*

-X140499Y339717D01*

-X140223Y339783D01*

-X139941Y339806D01*

-X139659Y339783D01*

-X139383Y339717D01*

-X139121Y339609D01*

-X138880Y339461D01*

-X138664Y339277D01*

-X138480Y339061D01*

-X138332Y338820D01*

-X138224Y338558D01*

-X138158Y338282D01*

-X138135Y338000D01*

-X138158Y337718D01*

-X138224Y337442D01*

-X138332Y337180D01*

-X138480Y336939D01*

-X138664Y336723D01*

-X138880Y336539D01*

-X139121Y336391D01*

-X139383Y336283D01*

-X139659Y336217D01*

-X139941Y336194D01*

-X140223Y336217D01*

-X140499Y336283D01*

-X140761Y336391D01*

-X141002Y336539D01*

-X141218Y336723D01*

-X141402Y336939D01*

-X141438Y336998D01*

-Y302678D01*

-X141307Y302689D01*

-X141025Y302666D01*

-X140749Y302600D01*

-X140487Y302492D01*

-X140246Y302344D01*

-X140030Y302160D01*

-X139846Y301944D01*

-X139698Y301703D01*

-X139590Y301441D01*

-X139524Y301165D01*

-X139501Y300883D01*

-X139524Y300601D01*

-X139590Y300325D01*

-X139698Y300063D01*

-X139846Y299822D01*

-X140030Y299606D01*

-X140246Y299422D01*

-X140487Y299274D01*

-X140749Y299166D01*

-X141025Y299100D01*

-X141307Y299077D01*

-X141438Y299088D01*

-Y149805D01*

-X141159Y149783D01*

-X140883Y149717D01*

-X140621Y149609D01*

-X140380Y149461D01*

-X140164Y149277D01*

-X139980Y149061D01*

-X139832Y148820D01*

-X139724Y148558D01*

-X139658Y148282D01*

-X139635Y148000D01*

-X139658Y147718D01*

-X139724Y147442D01*

-X139832Y147180D01*

-X139980Y146939D01*

-X140164Y146723D01*

-X140380Y146539D01*

-X140621Y146391D01*

-X140883Y146283D01*

-X141159Y146217D01*

-X141438Y146195D01*

-Y76500D01*

-X135438D01*

-Y170544D01*

-X135799Y170516D01*

-X136474Y170569D01*

-X137132Y170727D01*

-X137757Y170986D01*

-X138334Y171339D01*

-X138849Y171779D01*

-X139289Y172294D01*

-X139642Y172871D01*

-X139901Y173496D01*

-X140059Y174154D01*

-X140099Y174829D01*

-X140059Y175504D01*

-X139901Y176162D01*

-X139642Y176787D01*

-X139289Y177364D01*

-X138849Y177879D01*

-X138334Y178319D01*

-X137757Y178672D01*

-X137132Y178931D01*

-X136474Y179089D01*

-X135799Y179142D01*

-X135438Y179114D01*

-Y180544D01*

-X135799Y180516D01*

-X136474Y180569D01*

-X137132Y180727D01*

-X137757Y180986D01*

-X138334Y181339D01*

-X138849Y181779D01*

-X139289Y182294D01*

-X139642Y182871D01*

-X139901Y183496D01*

-X140059Y184154D01*

-X140099Y184829D01*

-X140059Y185504D01*

-X139901Y186162D01*

-X139642Y186787D01*

-X139289Y187364D01*

-X138849Y187879D01*

-X138334Y188319D01*

-X137757Y188672D01*

-X137132Y188931D01*

-X136474Y189089D01*

-X135799Y189142D01*

-X135438Y189114D01*

-Y333195D01*

-X135441Y333194D01*

-X135723Y333217D01*

-X135999Y333283D01*

-X136261Y333391D01*

-X136502Y333539D01*

-X136718Y333723D01*

-X136902Y333939D01*

-X137050Y334180D01*

-X137158Y334442D01*

-X137224Y334718D01*

-X137241Y335000D01*

-X137224Y335282D01*

-X137158Y335558D01*

-X137050Y335820D01*

-X136902Y336061D01*

-X136718Y336277D01*

-X136502Y336461D01*

-X136261Y336609D01*

-X135999Y336717D01*

-X135862Y336750D01*

-X135999Y336783D01*

-X136261Y336891D01*

-X136502Y337039D01*

-X136718Y337223D01*

-X136902Y337439D01*

-X137050Y337680D01*

-X137158Y337942D01*

-X137224Y338218D01*

-X137241Y338500D01*

-X137224Y338782D01*

-X137158Y339058D01*

-X137050Y339320D01*

-X136902Y339561D01*

-X136718Y339777D01*

-X136502Y339961D01*

-X136261Y340109D01*

-X135999Y340217D01*

-X135723Y340283D01*

-X135441Y340306D01*

-X135438Y340305D01*

-Y342500D01*

-G37*

-G36*

-X129343Y278500D02*X130941D01*

-Y342500D01*

-X135438D01*

-Y340305D01*

-X135159Y340283D01*

-X134883Y340217D01*

-X134621Y340109D01*

-X134380Y339961D01*

-X134164Y339777D01*

-X133980Y339561D01*

-X133832Y339320D01*

-X133724Y339058D01*

-X133658Y338782D01*

-X133635Y338500D01*

-X133658Y338218D01*

-X133724Y337942D01*

-X133832Y337680D01*

-X133980Y337439D01*

-X134164Y337223D01*

-X134380Y337039D01*

-X134621Y336891D01*

-X134883Y336783D01*

-X135020Y336750D01*

-X134883Y336717D01*

-X134621Y336609D01*

-X134380Y336461D01*

-X134164Y336277D01*

-X133980Y336061D01*

-X133832Y335820D01*

-X133724Y335558D01*

-X133658Y335282D01*

-X133635Y335000D01*

-X133658Y334718D01*

-X133724Y334442D01*

-X133832Y334180D01*

-X133980Y333939D01*

-X134164Y333723D01*

-X134380Y333539D01*

-X134621Y333391D01*

-X134883Y333283D01*

-X135159Y333217D01*

-X135438Y333195D01*

-Y189114D01*

-X135124Y189089D01*

-X134466Y188931D01*

-X133841Y188672D01*

-X133264Y188319D01*

-X132749Y187879D01*

-X132309Y187364D01*

-X131956Y186787D01*

-X131697Y186162D01*

-X131539Y185504D01*

-X131486Y184829D01*

-X131539Y184154D01*

-X131697Y183496D01*

-X131956Y182871D01*

-X132309Y182294D01*

-X132749Y181779D01*

-X133264Y181339D01*

-X133841Y180986D01*

-X134466Y180727D01*

-X135124Y180569D01*

-X135438Y180544D01*

-Y179114D01*

-X135124Y179089D01*

-X134466Y178931D01*

-X133841Y178672D01*

-X133264Y178319D01*

-X132749Y177879D01*

-X132309Y177364D01*

-X131956Y176787D01*

-X131697Y176162D01*

-X131539Y175504D01*

-X131486Y174829D01*

-X131539Y174154D01*

-X131697Y173496D01*

-X131956Y172871D01*

-X132309Y172294D01*

-X132749Y171779D01*

-X133264Y171339D01*

-X133841Y170986D01*

-X134466Y170727D01*

-X135124Y170569D01*

-X135438Y170544D01*

-Y76500D01*

-X129343D01*

-Y146870D01*

-X129402Y146939D01*

-X129550Y147180D01*

-X129658Y147442D01*

-X129724Y147718D01*

-X129741Y148000D01*

-X129724Y148282D01*

-X129658Y148558D01*

-X129550Y148820D01*

-X129402Y149061D01*

-X129343Y149130D01*

-Y172501D01*

-X129366Y172513D01*

-X129429Y172561D01*

-X129483Y172618D01*

-X129526Y172684D01*

-X129717Y173045D01*

-X129868Y173425D01*

-X129983Y173817D01*

-X130060Y174218D01*

-X130099Y174625D01*

-Y175033D01*

-X130060Y175440D01*

-X129983Y175841D01*

-X129868Y176233D01*

-X129717Y176613D01*

-X129530Y176976D01*

-X129486Y177042D01*

-X129431Y177100D01*

-X129368Y177148D01*

-X129343Y177161D01*

-Y182501D01*

-X129366Y182513D01*

-X129429Y182561D01*

-X129483Y182618D01*

-X129526Y182684D01*

-X129717Y183045D01*

-X129868Y183425D01*

-X129983Y183817D01*

-X130060Y184218D01*

-X130099Y184625D01*

-Y185033D01*

-X130060Y185440D01*

-X129983Y185841D01*

-X129868Y186233D01*

-X129717Y186613D01*

-X129530Y186976D01*

-X129486Y187042D01*

-X129431Y187100D01*

-X129368Y187148D01*

-X129343Y187161D01*

-Y240745D01*

-X129499Y240783D01*

-X129761Y240891D01*

-X130002Y241039D01*

-X130218Y241223D01*

-X130402Y241439D01*

-X130550Y241680D01*

-X130658Y241942D01*

-X130724Y242218D01*

-X130741Y242500D01*

-X130724Y242782D01*

-X130658Y243058D01*

-X130550Y243320D01*

-X130402Y243561D01*

-X130218Y243777D01*

-X130002Y243961D01*

-X129761Y244109D01*

-X129499Y244217D01*

-X129343Y244255D01*

-Y246745D01*

-X129499Y246783D01*

-X129761Y246891D01*

-X130002Y247039D01*

-X130218Y247223D01*

-X130402Y247439D01*

-X130550Y247680D01*

-X130658Y247942D01*

-X130724Y248218D01*

-X130741Y248500D01*

-X130724Y248782D01*

-X130658Y249058D01*

-X130550Y249320D01*

-X130402Y249561D01*

-X130218Y249777D01*

-X130002Y249961D01*

-X129761Y250109D01*

-X129499Y250217D01*

-X129343Y250255D01*

-Y253245D01*

-X129499Y253283D01*

-X129761Y253391D01*

-X130002Y253539D01*

-X130218Y253723D01*

-X130402Y253939D01*

-X130550Y254180D01*

-X130658Y254442D01*

-X130724Y254718D01*

-X130741Y255000D01*

-X130724Y255282D01*

-X130658Y255558D01*

-X130550Y255820D01*

-X130402Y256061D01*

-X130218Y256277D01*

-X130002Y256461D01*

-X129761Y256609D01*

-X129499Y256717D01*

-X129343Y256755D01*

-Y260745D01*

-X129499Y260783D01*

-X129761Y260891D01*

-X130002Y261039D01*

-X130218Y261223D01*

-X130402Y261439D01*

-X130550Y261680D01*

-X130658Y261942D01*

-X130724Y262218D01*

-X130741Y262500D01*

-X130724Y262782D01*

-X130658Y263058D01*

-X130550Y263320D01*

-X130402Y263561D01*

-X130218Y263777D01*

-X130002Y263961D01*

-X129761Y264109D01*

-X129499Y264217D01*

-X129343Y264255D01*

-Y266745D01*

-X129499Y266783D01*

-X129761Y266891D01*

-X130002Y267039D01*

-X130218Y267223D01*

-X130402Y267439D01*

-X130550Y267680D01*

-X130658Y267942D01*

-X130724Y268218D01*

-X130741Y268500D01*

-X130724Y268782D01*

-X130658Y269058D01*

-X130550Y269320D01*

-X130402Y269561D01*

-X130218Y269777D01*

-X130002Y269961D01*

-X129761Y270109D01*

-X129499Y270217D01*

-X129343Y270255D01*

-Y272745D01*

-X129499Y272783D01*

-X129761Y272891D01*

-X130002Y273039D01*

-X130218Y273223D01*

-X130402Y273439D01*

-X130550Y273680D01*

-X130658Y273942D01*

-X130724Y274218D01*

-X130741Y274500D01*

-X130724Y274782D01*

-X130658Y275058D01*

-X130550Y275320D01*

-X130402Y275561D01*

-X130218Y275777D01*

-X130002Y275961D01*

-X129761Y276109D01*

-X129499Y276217D01*

-X129343Y276255D01*

-Y278500D01*

-G37*

-G36*

-Y270255D02*X129223Y270283D01*

-X128941Y270306D01*

-X128659Y270283D01*

-X128383Y270217D01*

-X128121Y270109D01*

-X127938Y269997D01*

-Y273003D01*

-X128121Y272891D01*

-X128383Y272783D01*

-X128659Y272717D01*

-X128941Y272694D01*

-X129223Y272717D01*

-X129343Y272745D01*

-Y270255D01*

-G37*

-G36*

-Y264255D02*X129223Y264283D01*

-X128941Y264306D01*

-X128659Y264283D01*

-X128383Y264217D01*

-X128121Y264109D01*

-X127938Y263997D01*

-Y267003D01*

-X128121Y266891D01*

-X128383Y266783D01*

-X128659Y266717D01*

-X128941Y266694D01*

-X129223Y266717D01*

-X129343Y266745D01*

-Y264255D01*

-G37*

-G36*

-Y256755D02*X129223Y256783D01*

-X128941Y256806D01*

-X128659Y256783D01*

-X128383Y256717D01*

-X128121Y256609D01*

-X127938Y256497D01*

-Y261003D01*

-X128121Y260891D01*

-X128383Y260783D01*

-X128659Y260717D01*

-X128941Y260694D01*

-X129223Y260717D01*

-X129343Y260745D01*

-Y256755D01*

-G37*

-G36*

-Y250255D02*X129223Y250283D01*

-X128941Y250306D01*

-X128659Y250283D01*

-X128383Y250217D01*

-X128121Y250109D01*

-X127938Y249997D01*

-Y253503D01*

-X128121Y253391D01*

-X128383Y253283D01*

-X128659Y253217D01*

-X128941Y253194D01*

-X129223Y253217D01*

-X129343Y253245D01*

-Y250255D01*

-G37*

-G36*

-Y244255D02*X129223Y244283D01*

-X128941Y244306D01*

-X128659Y244283D01*

-X128383Y244217D01*

-X128121Y244109D01*

-X127938Y243997D01*

-Y247003D01*

-X128121Y246891D01*

-X128383Y246783D01*

-X128659Y246717D01*

-X128941Y246694D01*

-X129223Y246717D01*

-X129343Y246745D01*

-Y244255D01*

-G37*

-G36*

-Y149130D02*X129218Y149277D01*

-X129002Y149461D01*

-X128761Y149609D01*

-X128499Y149717D01*

-X128223Y149783D01*

-X127941Y149806D01*

-X127938Y149805D01*

-Y171094D01*

-X127946Y171098D01*

-X128012Y171142D01*

-X128070Y171197D01*

-X128118Y171260D01*

-X128156Y171329D01*

-X128182Y171404D01*

-X128197Y171482D01*

-X128199Y171561D01*

-X128189Y171640D01*

-X128166Y171716D01*

-X128132Y171788D01*

-X128088Y171853D01*

-X128033Y171911D01*

-X127970Y171959D01*

-X127938Y171976D01*

-Y177686D01*

-X127968Y177702D01*

-X128031Y177750D01*

-X128085Y177807D01*

-X128129Y177872D01*

-X128163Y177943D01*

-X128185Y178019D01*

-X128195Y178097D01*

-X128193Y178176D01*

-X128179Y178253D01*

-X128152Y178327D01*

-X128115Y178396D01*

-X128067Y178459D01*

-X128010Y178513D01*

-X127944Y178556D01*

-X127938Y178559D01*

-Y181094D01*

-X127946Y181098D01*

-X128012Y181142D01*

-X128070Y181197D01*

-X128118Y181260D01*

-X128156Y181329D01*

-X128182Y181404D01*

-X128197Y181482D01*

-X128199Y181561D01*

-X128189Y181640D01*

-X128166Y181716D01*

-X128132Y181788D01*

-X128088Y181853D01*

-X128033Y181911D01*

-X127970Y181959D01*

-X127938Y181976D01*

-Y187686D01*

-X127968Y187702D01*

-X128031Y187750D01*

-X128085Y187807D01*

-X128129Y187872D01*

-X128163Y187943D01*

-X128185Y188019D01*

-X128195Y188097D01*

-X128193Y188176D01*

-X128179Y188253D01*

-X128152Y188327D01*

-X128115Y188396D01*

-X128067Y188459D01*

-X128010Y188513D01*

-X127944Y188556D01*

-X127938Y188559D01*

-Y241003D01*

-X128121Y240891D01*

-X128383Y240783D01*

-X128659Y240717D01*

-X128941Y240694D01*

-X129223Y240717D01*

-X129343Y240745D01*

-Y187161D01*

-X129299Y187186D01*

-X129224Y187212D01*

-X129146Y187227D01*

-X129067Y187229D01*

-X128988Y187219D01*

-X128912Y187196D01*

-X128840Y187162D01*

-X128775Y187118D01*

-X128717Y187063D01*

-X128669Y187000D01*

-X128631Y186931D01*

-X128605Y186856D01*

-X128590Y186778D01*

-X128588Y186699D01*

-X128598Y186620D01*

-X128621Y186544D01*

-X128656Y186473D01*

-X128802Y186197D01*

-X128918Y185906D01*

-X129006Y185605D01*

-X129066Y185297D01*

-X129095Y184986D01*

-Y184672D01*

-X129066Y184361D01*

-X129006Y184053D01*

-X128918Y183752D01*

-X128802Y183461D01*

-X128659Y183183D01*

-X128624Y183113D01*

-X128602Y183037D01*

-X128592Y182959D01*

-X128594Y182880D01*

-X128608Y182803D01*

-X128635Y182729D01*

-X128672Y182660D01*

-X128720Y182597D01*

-X128777Y182543D01*

-X128842Y182499D01*

-X128913Y182465D01*

-X128989Y182443D01*

-X129067Y182433D01*

-X129146Y182435D01*

-X129223Y182449D01*

-X129297Y182476D01*

-X129343Y182501D01*

-Y177161D01*

-X129299Y177186D01*

-X129224Y177212D01*

-X129146Y177227D01*

-X129067Y177229D01*

-X128988Y177219D01*

-X128912Y177196D01*

-X128840Y177162D01*

-X128775Y177118D01*

-X128717Y177063D01*

-X128669Y177000D01*

-X128631Y176931D01*

-X128605Y176856D01*

-X128590Y176778D01*

-X128588Y176699D01*

-X128598Y176620D01*

-X128621Y176544D01*

-X128656Y176473D01*

-X128802Y176197D01*

-X128918Y175906D01*

-X129006Y175605D01*

-X129066Y175297D01*

-X129095Y174986D01*

-Y174672D01*

-X129066Y174361D01*

-X129006Y174053D01*

-X128918Y173752D01*

-X128802Y173461D01*

-X128659Y173183D01*

-X128624Y173113D01*

-X128602Y173037D01*

-X128592Y172959D01*

-X128594Y172880D01*

-X128608Y172803D01*

-X128635Y172729D01*

-X128672Y172660D01*

-X128720Y172597D01*

-X128777Y172543D01*

-X128842Y172499D01*

-X128913Y172465D01*

-X128989Y172443D01*

-X129067Y172433D01*

-X129146Y172435D01*

-X129223Y172449D01*

-X129297Y172476D01*

-X129343Y172501D01*

-Y149130D01*

-G37*

-G36*

-Y76500D02*X127938D01*

-Y146195D01*

-X127941Y146194D01*

-X128223Y146217D01*

-X128499Y146283D01*

-X128761Y146391D01*

-X129002Y146539D01*

-X129218Y146723D01*

-X129343Y146870D01*

-Y76500D01*

-G37*

-G36*

-X127938Y278500D02*X129343D01*

-Y276255D01*

-X129223Y276283D01*

-X128941Y276306D01*

-X128659Y276283D01*

-X128383Y276217D01*

-X128121Y276109D01*

-X127938Y275997D01*

-Y278500D01*

-G37*

-G36*

-X122255D02*X127938D01*

-Y275997D01*

-X127880Y275961D01*

-X127664Y275777D01*

-X127480Y275561D01*

-X127332Y275320D01*

-X127224Y275058D01*

-X127158Y274782D01*

-X127135Y274500D01*

-X127158Y274218D01*

-X127224Y273942D01*

-X127332Y273680D01*

-X127480Y273439D01*

-X127664Y273223D01*

-X127880Y273039D01*

-X127938Y273003D01*

-Y269997D01*

-X127880Y269961D01*

-X127664Y269777D01*

-X127480Y269561D01*

-X127332Y269320D01*

-X127224Y269058D01*

-X127158Y268782D01*

-X127135Y268500D01*

-X127158Y268218D01*

-X127224Y267942D01*

-X127332Y267680D01*

-X127480Y267439D01*

-X127664Y267223D01*

-X127880Y267039D01*

-X127938Y267003D01*

-Y263997D01*

-X127880Y263961D01*

-X127664Y263777D01*

-X127480Y263561D01*

-X127332Y263320D01*

-X127224Y263058D01*

-X127158Y262782D01*

-X127135Y262500D01*

-X127158Y262218D01*

-X127224Y261942D01*

-X127332Y261680D01*

-X127480Y261439D01*

-X127664Y261223D01*

-X127880Y261039D01*

-X127938Y261003D01*

-Y256497D01*

-X127880Y256461D01*

-X127664Y256277D01*

-X127480Y256061D01*

-X127332Y255820D01*

-X127224Y255558D01*

-X127158Y255282D01*

-X127135Y255000D01*

-X127158Y254718D01*

-X127224Y254442D01*

-X127332Y254180D01*

-X127480Y253939D01*

-X127664Y253723D01*

-X127880Y253539D01*

-X127938Y253503D01*

-Y249997D01*

-X127880Y249961D01*

-X127664Y249777D01*

-X127480Y249561D01*

-X127332Y249320D01*

-X127224Y249058D01*

-X127158Y248782D01*

-X127135Y248500D01*

-X127158Y248218D01*

-X127224Y247942D01*

-X127332Y247680D01*

-X127480Y247439D01*

-X127664Y247223D01*

-X127880Y247039D01*

-X127938Y247003D01*

-Y243997D01*

-X127880Y243961D01*

-X127664Y243777D01*

-X127480Y243561D01*

-X127332Y243320D01*

-X127224Y243058D01*

-X127158Y242782D01*

-X127135Y242500D01*

-X127158Y242218D01*

-X127224Y241942D01*

-X127332Y241680D01*

-X127480Y241439D01*

-X127664Y241223D01*

-X127880Y241039D01*

-X127938Y241003D01*

-Y188559D01*

-X127583Y188747D01*

-X127203Y188898D01*

-X126811Y189013D01*

-X126410Y189090D01*

-X126003Y189129D01*

-X125595D01*

-X125188Y189090D01*

-X124787Y189013D01*

-X124395Y188898D01*

-X124015Y188747D01*

-X123652Y188560D01*

-X123586Y188516D01*

-X123528Y188461D01*

-X123480Y188398D01*

-X123442Y188329D01*

-X123416Y188254D01*

-X123401Y188176D01*

-X123399Y188097D01*

-X123409Y188018D01*

-X123432Y187942D01*

-X123466Y187870D01*

-X123510Y187805D01*

-X123565Y187747D01*

-X123628Y187699D01*

-X123697Y187661D01*

-X123772Y187635D01*

-X123850Y187620D01*

-X123929Y187618D01*

-X124008Y187628D01*

-X124084Y187651D01*

-X124155Y187686D01*

-X124431Y187832D01*

-X124722Y187948D01*

-X125023Y188036D01*

-X125331Y188096D01*

-X125642Y188125D01*

-X125956D01*

-X126267Y188096D01*

-X126575Y188036D01*

-X126876Y187948D01*

-X127167Y187832D01*

-X127445Y187689D01*

-X127515Y187654D01*

-X127591Y187632D01*

-X127669Y187622D01*

-X127748Y187624D01*

-X127825Y187638D01*

-X127899Y187665D01*

-X127938Y187686D01*

-Y181976D01*

-X127901Y181997D01*

-X127826Y182023D01*

-X127748Y182038D01*

-X127669Y182040D01*

-X127590Y182030D01*

-X127514Y182007D01*

-X127443Y181972D01*

-X127167Y181826D01*

-X126876Y181710D01*

-X126575Y181622D01*

-X126267Y181562D01*

-X125956Y181533D01*

-X125642D01*

-X125331Y181562D01*

-X125023Y181622D01*

-X124722Y181710D01*

-X124431Y181826D01*

-X124153Y181969D01*

-X124083Y182004D01*

-X124007Y182026D01*

-X123929Y182036D01*

-X123850Y182034D01*

-X123773Y182020D01*

-X123699Y181993D01*

-X123630Y181956D01*

-X123567Y181908D01*

-X123513Y181851D01*

-X123469Y181786D01*

-X123435Y181715D01*

-X123413Y181639D01*

-X123403Y181561D01*

-X123405Y181482D01*

-X123419Y181405D01*

-X123446Y181331D01*

-X123483Y181262D01*

-X123531Y181199D01*

-X123588Y181145D01*

-X123654Y181102D01*

-X124015Y180911D01*

-X124395Y180760D01*

-X124787Y180645D01*

-X125188Y180568D01*

-X125595Y180529D01*

-X126003D01*

-X126410Y180568D01*

-X126811Y180645D01*

-X127203Y180760D01*

-X127583Y180911D01*

-X127938Y181094D01*

-Y178559D01*

-X127583Y178747D01*

-X127203Y178898D01*

-X126811Y179013D01*

-X126410Y179090D01*

-X126003Y179129D01*

-X125595D01*

-X125188Y179090D01*

-X124787Y179013D01*

-X124395Y178898D01*

-X124015Y178747D01*

-X123652Y178560D01*

-X123586Y178516D01*

-X123528Y178461D01*

-X123480Y178398D01*

-X123442Y178329D01*

-X123416Y178254D01*

-X123401Y178176D01*

-X123399Y178097D01*

-X123409Y178018D01*

-X123432Y177942D01*

-X123466Y177870D01*

-X123510Y177805D01*

-X123565Y177747D01*

-X123628Y177699D01*

-X123697Y177661D01*

-X123772Y177635D01*

-X123850Y177620D01*

-X123929Y177618D01*

-X124008Y177628D01*

-X124084Y177651D01*

-X124155Y177686D01*

-X124431Y177832D01*

-X124722Y177948D01*

-X125023Y178036D01*

-X125331Y178096D01*

-X125642Y178125D01*

-X125956D01*

-X126267Y178096D01*

-X126575Y178036D01*

-X126876Y177948D01*

-X127167Y177832D01*

-X127445Y177689D01*

-X127515Y177654D01*

-X127591Y177632D01*

-X127669Y177622D01*

-X127748Y177624D01*

-X127825Y177638D01*

-X127899Y177665D01*

-X127938Y177686D01*

-Y171976D01*

-X127901Y171997D01*

-X127826Y172023D01*

-X127748Y172038D01*

-X127669Y172040D01*

-X127590Y172030D01*

-X127514Y172007D01*

-X127443Y171972D01*

-X127167Y171826D01*

-X126876Y171710D01*

-X126575Y171622D01*

-X126267Y171562D01*

-X125956Y171533D01*

-X125642D01*

-X125331Y171562D01*

-X125023Y171622D01*

-X124722Y171710D01*

-X124431Y171826D01*

-X124153Y171969D01*

-X124083Y172004D01*

-X124007Y172026D01*

-X123929Y172036D01*

-X123850Y172034D01*

-X123773Y172020D01*

-X123699Y171993D01*

-X123630Y171956D01*

-X123567Y171908D01*

-X123513Y171851D01*

-X123469Y171786D01*

-X123435Y171715D01*

-X123413Y171639D01*

-X123403Y171561D01*

-X123405Y171482D01*

-X123419Y171405D01*

-X123446Y171331D01*

-X123483Y171262D01*

-X123531Y171199D01*

-X123588Y171145D01*

-X123654Y171102D01*

-X124015Y170911D01*

-X124395Y170760D01*

-X124787Y170645D01*

-X125188Y170568D01*

-X125595Y170529D01*

-X126003D01*

-X126410Y170568D01*

-X126811Y170645D01*

-X127203Y170760D01*

-X127583Y170911D01*

-X127938Y171094D01*

-Y149805D01*

-X127659Y149783D01*

-X127383Y149717D01*

-X127121Y149609D01*

-X126880Y149461D01*

-X126664Y149277D01*

-X126480Y149061D01*

-X126332Y148820D01*

-X126224Y148558D01*

-X126158Y148282D01*

-X126135Y148000D01*

-X126158Y147718D01*

-X126224Y147442D01*

-X126332Y147180D01*

-X126480Y146939D01*

-X126664Y146723D01*

-X126880Y146539D01*

-X127121Y146391D01*

-X127383Y146283D01*

-X127659Y146217D01*

-X127938Y146195D01*

-Y76500D01*

-X122255D01*

-Y172497D01*

-X122299Y172472D01*

-X122374Y172446D01*

-X122452Y172431D01*

-X122531Y172429D01*

-X122610Y172439D01*

-X122686Y172462D01*

-X122758Y172496D01*

-X122823Y172540D01*

-X122881Y172595D01*

-X122929Y172658D01*

-X122967Y172727D01*

-X122993Y172802D01*

-X123008Y172880D01*

-X123010Y172959D01*

-X123000Y173038D01*

-X122977Y173114D01*

-X122942Y173185D01*

-X122796Y173461D01*

-X122680Y173752D01*

-X122592Y174053D01*

-X122532Y174361D01*

-X122503Y174672D01*

-Y174986D01*

-X122532Y175297D01*

-X122592Y175605D01*

-X122680Y175906D01*

-X122796Y176197D01*

-X122939Y176475D01*

-X122974Y176545D01*

-X122996Y176621D01*

-X123006Y176699D01*

-X123004Y176778D01*

-X122990Y176855D01*

-X122963Y176929D01*

-X122926Y176998D01*

-X122878Y177061D01*

-X122821Y177115D01*

-X122756Y177159D01*

-X122685Y177193D01*

-X122609Y177215D01*

-X122531Y177225D01*

-X122452Y177223D01*

-X122375Y177209D01*

-X122301Y177182D01*

-X122255Y177157D01*

-Y182497D01*

-X122299Y182472D01*

-X122374Y182446D01*

-X122452Y182431D01*

-X122531Y182429D01*

-X122610Y182439D01*

-X122686Y182462D01*

-X122758Y182496D01*

-X122823Y182540D01*

-X122881Y182595D01*

-X122929Y182658D01*

-X122967Y182727D01*

-X122993Y182802D01*

-X123008Y182880D01*

-X123010Y182959D01*

-X123000Y183038D01*

-X122977Y183114D01*

-X122942Y183185D01*

-X122796Y183461D01*

-X122680Y183752D01*

-X122592Y184053D01*

-X122532Y184361D01*

-X122503Y184672D01*

-Y184986D01*

-X122532Y185297D01*

-X122592Y185605D01*

-X122680Y185906D01*

-X122796Y186197D01*

-X122939Y186475D01*

-X122974Y186545D01*

-X122996Y186621D01*

-X123006Y186699D01*

-X123004Y186778D01*

-X122990Y186855D01*

-X122963Y186929D01*

-X122926Y186998D01*

-X122878Y187061D01*

-X122821Y187115D01*

-X122756Y187159D01*

-X122685Y187193D01*

-X122609Y187215D01*

-X122531Y187225D01*

-X122452Y187223D01*

-X122375Y187209D01*

-X122301Y187182D01*

-X122255Y187157D01*

-Y278500D01*

-G37*

-G36*

-X114438D02*X122255D01*

-Y187157D01*

-X122232Y187145D01*

-X122169Y187097D01*

-X122115Y187040D01*

-X122072Y186974D01*

-X121881Y186613D01*

-X121730Y186233D01*

-X121615Y185841D01*

-X121538Y185440D01*

-X121499Y185033D01*

-Y184625D01*

-X121538Y184218D01*

-X121615Y183817D01*

-X121730Y183425D01*

-X121881Y183045D01*

-X122068Y182682D01*

-X122112Y182616D01*

-X122167Y182558D01*

-X122230Y182510D01*

-X122255Y182497D01*

-Y177157D01*

-X122232Y177145D01*

-X122169Y177097D01*

-X122115Y177040D01*

-X122072Y176974D01*

-X121881Y176613D01*

-X121730Y176233D01*

-X121615Y175841D01*

-X121538Y175440D01*

-X121499Y175033D01*

-Y174625D01*

-X121538Y174218D01*

-X121615Y173817D01*

-X121730Y173425D01*

-X121881Y173045D01*

-X122068Y172682D01*

-X122112Y172616D01*

-X122167Y172558D01*

-X122230Y172510D01*

-X122255Y172497D01*

-Y76500D01*

-X114438D01*

-Y119695D01*

-X114441Y119694D01*

-X114723Y119717D01*

-X114999Y119783D01*

-X115261Y119891D01*

-X115502Y120039D01*

-X115718Y120223D01*

-X115902Y120439D01*

-X116050Y120680D01*

-X116158Y120942D01*

-X116224Y121218D01*

-X116241Y121500D01*

-X116224Y121782D01*

-X116158Y122058D01*

-X116050Y122320D01*

-X115902Y122561D01*

-X115718Y122777D01*

-X115502Y122961D01*

-X115261Y123109D01*

-X114999Y123217D01*

-X114723Y123283D01*

-X114441Y123306D01*

-X114438Y123305D01*

-Y131003D01*

-X114621Y130891D01*

-X114883Y130783D01*

-X115159Y130717D01*

-X115441Y130694D01*

-X115723Y130717D01*

-X115999Y130783D01*

-X116261Y130891D01*

-X116502Y131039D01*

-X116718Y131223D01*

-X116902Y131439D01*

-X117050Y131680D01*

-X117158Y131942D01*

-X117224Y132218D01*

-X117241Y132500D01*

-X117224Y132782D01*

-X117158Y133058D01*

-X117050Y133320D01*

-X116902Y133561D01*

-X116718Y133777D01*

-X116502Y133961D01*

-X116261Y134109D01*

-X115999Y134217D01*

-X115723Y134283D01*

-X115441Y134306D01*

-X115159Y134283D01*

-X114883Y134217D01*

-X114621Y134109D01*

-X114438Y133997D01*

-Y170738D01*

-X114466Y170727D01*

-X115124Y170569D01*

-X115799Y170516D01*

-X116474Y170569D01*

-X117132Y170727D01*

-X117757Y170986D01*

-X118334Y171339D01*

-X118849Y171779D01*

-X119289Y172294D01*

-X119642Y172871D01*

-X119901Y173496D01*

-X120059Y174154D01*

-X120099Y174829D01*

-X120059Y175504D01*

-X119901Y176162D01*

-X119642Y176787D01*

-X119289Y177364D01*

-X118849Y177879D01*

-X118334Y178319D01*

-X117757Y178672D01*

-X117132Y178931D01*

-X116474Y179089D01*

-X115799Y179142D01*

-X115124Y179089D01*

-X114466Y178931D01*

-X114438Y178920D01*

-Y180738D01*

-X114466Y180727D01*

-X115124Y180569D01*

-X115799Y180516D01*

-X116474Y180569D01*

-X117132Y180727D01*

-X117757Y180986D01*

-X118334Y181339D01*

-X118849Y181779D01*

-X119289Y182294D01*

-X119642Y182871D01*

-X119901Y183496D01*

-X120059Y184154D01*

-X120099Y184829D01*

-X120059Y185504D01*

-X119901Y186162D01*

-X119642Y186787D01*

-X119289Y187364D01*

-X118849Y187879D01*

-X118334Y188319D01*

-X117757Y188672D01*

-X117132Y188931D01*

-X116474Y189089D01*

-X115799Y189142D01*

-X115124Y189089D01*

-X114466Y188931D01*

-X114438Y188920D01*

-Y278500D01*

-G37*

-G36*

-Y178920D02*X113841Y178672D01*

-X113264Y178319D01*

-X112749Y177879D01*

-X112309Y177364D01*

-X112219Y177217D01*

-Y182441D01*

-X112309Y182294D01*

-X112749Y181779D01*

-X113264Y181339D01*

-X113841Y180986D01*

-X114438Y180738D01*

-Y178920D01*

-G37*

-G36*

-Y76500D02*X112219D01*

-Y125535D01*

-X112222Y125534D01*

-X112504Y125557D01*

-X112780Y125623D01*

-X113042Y125731D01*

-X113283Y125879D01*

-X113499Y126063D01*

-X113683Y126279D01*

-X113831Y126520D01*

-X113939Y126782D01*

-X114005Y127058D01*

-X114022Y127340D01*

-X114005Y127622D01*

-X113939Y127898D01*

-X113831Y128160D01*

-X113683Y128401D01*

-X113499Y128617D01*

-X113283Y128801D01*

-X113042Y128949D01*

-X112780Y129057D01*

-X112504Y129123D01*

-X112222Y129146D01*

-X112219Y129145D01*

-Y172441D01*

-X112309Y172294D01*

-X112749Y171779D01*

-X113264Y171339D01*

-X113841Y170986D01*

-X114438Y170738D01*

-Y133997D01*

-X114380Y133961D01*

-X114164Y133777D01*

-X113980Y133561D01*

-X113832Y133320D01*

-X113724Y133058D01*

-X113658Y132782D01*

-X113635Y132500D01*

-X113658Y132218D01*

-X113724Y131942D01*

-X113832Y131680D01*

-X113980Y131439D01*

-X114164Y131223D01*

-X114380Y131039D01*

-X114438Y131003D01*

-Y123305D01*

-X114159Y123283D01*

-X113883Y123217D01*

-X113621Y123109D01*

-X113380Y122961D01*

-X113164Y122777D01*

-X112980Y122561D01*

-X112832Y122320D01*

-X112724Y122058D01*

-X112658Y121782D01*

-X112635Y121500D01*

-X112658Y121218D01*

-X112724Y120942D01*

-X112832Y120680D01*

-X112980Y120439D01*

-X113164Y120223D01*

-X113380Y120039D01*

-X113621Y119891D01*

-X113883Y119783D01*

-X114159Y119717D01*

-X114438Y119695D01*

-Y76500D01*

-G37*

-G36*

-X112219Y278500D02*X114438D01*

-Y188920D01*

-X113841Y188672D01*

-X113264Y188319D01*

-X112749Y187879D01*

-X112309Y187364D01*

-X112219Y187217D01*

-Y278500D01*

-G37*

-G36*

-X109941D02*X112219D01*

-Y187217D01*

-X111956Y186787D01*

-X111697Y186162D01*

-X111539Y185504D01*

-X111486Y184829D01*

-X111539Y184154D01*

-X111697Y183496D01*

-X111956Y182871D01*

-X112219Y182441D01*

-Y177217D01*

-X111956Y176787D01*

-X111697Y176162D01*

-X111539Y175504D01*

-X111486Y174829D01*

-X111539Y174154D01*

-X111697Y173496D01*

-X111956Y172871D01*

-X112219Y172441D01*

-Y129145D01*

-X111940Y129123D01*

-X111664Y129057D01*

-X111402Y128949D01*

-X111161Y128801D01*

-X110945Y128617D01*

-X110761Y128401D01*

-X110613Y128160D01*

-X110505Y127898D01*

-X110439Y127622D01*

-X110416Y127340D01*

-X110439Y127058D01*

-X110505Y126782D01*

-X110613Y126520D01*

-X110761Y126279D01*

-X110945Y126063D01*

-X111161Y125879D01*

-X111402Y125731D01*

-X111664Y125623D01*

-X111940Y125557D01*

-X112219Y125535D01*

-Y76500D01*

-X109941D01*

-Y170989D01*

-X109993Y171074D01*

-X110053Y171219D01*

-X110090Y171372D01*

-X110099Y171529D01*

-X110090Y178286D01*

-X110053Y178439D01*

-X109993Y178584D01*

-X109941Y178669D01*

-Y183662D01*

-X110059Y184154D01*

-X110099Y184829D01*

-X110059Y185504D01*

-X109941Y185996D01*

-Y278500D01*

-G37*

-G36*

-X162941Y228500D02*Y233500D01*

-X168441D01*

-Y228500D01*

-X162941D01*

-G37*

-G36*

-Y224000D02*Y229000D01*

-X168441D01*

-Y224000D01*

-X162941D01*

-G37*

-G36*

-Y218000D02*Y223000D01*

-X168441D01*

-Y218000D01*

-X162941D01*

-G37*

-G36*

-X166441Y211500D02*Y216500D01*

-X171941D01*

-Y211500D01*

-X166441D01*

-G37*

-G36*

-Y206000D02*Y211000D01*

-X171941D01*

-Y206000D01*

-X166441D01*

-G37*

-G36*

-Y199000D02*Y204000D01*

-X171941D01*

-Y199000D01*

-X166441D01*

-G37*

-G36*

-X258902Y303109D02*Y311109D01*

-X265402D01*

-Y303109D01*

-X258902D01*

-G37*

-G36*

-X138941Y145500D02*Y150500D01*

-X144441D01*

-Y145500D01*

-X138941D01*

-G37*

-G36*

-X132941Y335500D02*Y340500D01*

-X138441D01*

-Y335500D01*

-X132941D01*

-G37*

-G36*

-Y332000D02*Y337000D01*

-X138441D01*

-Y332000D01*

-X132941D01*

-G37*

-G36*

-X137441Y335000D02*Y340000D01*

-X142941D01*

-Y335000D01*

-X137441D01*

-G37*

-G36*

-X151441D02*Y340000D01*

-X156941D01*

-Y335000D01*

-X151441D01*

-G37*

-G36*

-X267941Y347000D02*Y352000D01*

-X273441D01*

-Y347000D01*

-X267941D01*

-G37*

-G36*

-Y340000D02*Y345000D01*

-X273441D01*

-Y340000D01*

-X267941D01*

-G37*

-G54D214*X397441Y373000D02*X393941Y376500D01*

-X398441Y314000D02*X395441D01*

-X398441Y253000D02*X394441D01*

-X398441Y193614D02*X395441D01*

-G54D215*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D213*G36*

-X403750Y357250D02*Y350750D01*

-X410250D01*

-Y357250D01*

-X403750D01*

-G37*

-G54D216*X345799Y357329D03*

-G54D217*X315799Y337329D03*

-G54D216*X85799Y369829D03*

-G54D218*X105799Y374829D03*

-G54D213*G36*

-X102499Y368129D02*Y361529D01*

-X109099D01*

-Y368129D01*

-X102499D01*

-G37*

-G54D218*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D213*G36*

-X450250Y267250D02*Y260750D01*

-X456750D01*

-Y267250D01*

-X450250D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X456750D01*

-Y207250D01*

-X450250D01*

-G37*

-G36*

-Y177250D02*Y170750D01*

-X456750D01*

-Y177250D01*

-X450250D01*

-G37*

-G54D215*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D213*G36*

-X450250Y237250D02*Y230750D01*

-X456750D01*

-Y237250D01*

-X450250D01*

-G37*

-G54D215*X463500Y234000D03*

-X473500D03*

-G54D213*G36*

-X450250Y147250D02*Y140750D01*

-X456750D01*

-Y147250D01*

-X450250D01*

-G37*

-G36*

-Y117250D02*Y110750D01*

-X456750D01*

-Y117250D01*

-X450250D01*

-G37*

-G36*

-Y87250D02*Y80750D01*

-X456750D01*

-Y87250D01*

-X450250D01*

-G37*

-G36*

-Y57250D02*Y50750D01*

-X456750D01*

-Y57250D01*

-X450250D01*

-G37*

-G54D215*X463500Y54000D03*

-X473500D03*

-G54D213*G36*

-X450250Y327250D02*Y320750D01*

-X456750D01*

-Y327250D01*

-X450250D01*

-G37*

-G54D215*X463500Y324000D03*

-X473500D03*

-G54D213*G36*

-X450250Y297250D02*Y290750D01*

-X456750D01*

-Y297250D01*

-X450250D01*

-G37*

-G54D215*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D213*G36*

-X309191Y252250D02*Y245750D01*

-X315691D01*

-Y252250D01*

-X309191D01*

-G37*

-G54D215*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D219*X345799Y192329D03*

-G54D216*X353000Y150000D03*

-G54D213*G36*

-X450250Y387250D02*Y380750D01*

-X456750D01*

-Y387250D01*

-X450250D01*

-G37*

-G54D215*X463500Y384000D03*

-X473500D03*

-G54D213*G36*

-X403750Y387250D02*Y380750D01*

-X410250D01*

-Y387250D01*

-X403750D01*

-G37*

-G36*

-Y297250D02*Y290750D01*

-X410250D01*

-Y297250D01*

-X403750D01*

-G37*

-G36*

-Y327250D02*Y320750D01*

-X410250D01*

-Y327250D01*

-X403750D01*

-G37*

-G54D215*X417000Y324000D03*

-X427000D03*

-G54D213*G36*

-X450250Y357250D02*Y350750D01*

-X456750D01*

-Y357250D01*

-X450250D01*

-G37*

-G54D215*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D213*G36*

-X403750Y177250D02*Y170750D01*

-X410250D01*

-Y177250D01*

-X403750D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X410250D01*

-Y207250D01*

-X403750D01*

-G37*

-G36*

-Y237250D02*Y230750D01*

-X410250D01*

-Y237250D01*

-X403750D01*

-G37*

-G36*

-Y267250D02*Y260750D01*

-X410250D01*

-Y267250D01*

-X403750D01*

-G37*

-G54D215*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D213*G36*

-X202191Y50750D02*Y44250D01*

-X208691D01*

-Y50750D01*

-X202191D01*

-G37*

-G54D215*X205441Y57500D03*

-Y67500D03*

-G54D213*G36*

-X232191Y50750D02*Y44250D01*

-X238691D01*

-Y50750D01*

-X232191D01*

-G37*

-G54D215*X235441Y57500D03*

-Y67500D03*

-G54D213*G36*

-X262191Y50750D02*Y44250D01*

-X268691D01*

-Y50750D01*

-X262191D01*

-G37*

-G36*

-X172191D02*Y44250D01*

-X178691D01*

-Y50750D01*

-X172191D01*

-G37*

-G36*

-X142191D02*Y44250D01*

-X148691D01*

-Y50750D01*

-X142191D01*

-G37*

-G36*

-X112191D02*Y44250D01*

-X118691D01*

-Y50750D01*

-X112191D01*

-G37*

-G36*

-X82191D02*Y44250D01*

-X88691D01*

-Y50750D01*

-X82191D01*

-G37*

-G54D215*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D213*G36*

-X292191Y50750D02*Y44250D01*

-X298691D01*

-Y50750D01*

-X292191D01*

-G37*

-G54D215*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D216*X85799Y179829D03*

-G54D218*X105799Y184829D03*

-G54D213*G36*

-X102499Y178129D02*Y171529D01*

-X109099D01*

-Y178129D01*

-X102499D01*

-G37*

-G54D218*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D213*G36*

-X82191Y243250D02*Y236750D01*

-X88691D01*

-Y243250D01*

-X82191D01*

-G37*

-G54D215*X85441Y230000D03*

-Y220000D03*

-G54D218*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D213*G36*

-X192499Y200629D02*Y194029D01*

-X199099D01*

-Y200629D01*

-X192499D01*

-G37*

-G54D218*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D220*X386441Y163000D03*

-X400441Y194000D03*

-X389441Y184000D03*

-X400441Y189000D03*

-G54D221*X386023Y157813D03*

-X398441Y173000D03*

-G54D220*X393441Y208000D03*

-G54D221*X358941Y208500D03*

-G54D220*X384162Y188000D03*

-X458441Y195000D03*

-Y164000D03*

-X372441Y170386D03*

-G54D221*X337441Y163000D03*

-X377347Y162178D03*

-X304584Y207483D03*

-X305280Y204383D03*

-X260941Y191500D03*

-X269441Y198500D03*

-X243941Y202000D03*

-X245863Y191524D03*

-G54D220*X432324Y111000D03*

-X446441Y102000D03*

-X434882Y75000D03*

-G54D222*X440941Y123000D03*

-G54D220*X423441Y75000D03*

-G54D221*X434449Y56500D03*

-X440449D03*

-X354441Y85000D03*

-Y89500D03*

-Y95500D03*

-Y101500D03*

-Y107500D03*

-Y113500D03*

-Y119500D03*

-X245441Y127500D03*

-X309441Y141568D03*

-Y136450D03*

-X310941Y115940D03*

-X305696Y107500D03*

-X387441Y119500D03*

-Y113500D03*

-Y107500D03*

-Y101500D03*

-Y95500D03*

-Y89500D03*

-Y85000D03*

-X390941Y76000D03*

-Y71500D03*

-X391441Y66000D03*

-X394941Y58500D03*

-X393941Y51500D03*

-X392441Y45000D03*

-G54D220*X387441Y326000D03*

-X393441Y355000D03*

-X386720Y282000D03*

-X393441Y327000D03*

-X384162Y306000D03*

-X385941Y354500D03*

-X458441Y375000D03*

-X383662Y378500D03*

-X397441Y373000D03*

-X397941Y367441D03*

-G54D221*X385941Y366000D03*

-G54D220*X458441Y345000D03*

-Y315000D03*

-Y285000D03*

-X398441Y314000D03*

-Y309000D03*

-G54D221*Y291000D03*

-G54D220*X372441Y290689D03*

-Y351189D03*

-G54D221*X339837Y341827D03*

-X353390Y339521D03*

-G54D220*X375441Y235000D03*

-G54D221*X356441Y233000D03*

-X338441Y224192D03*

-Y230124D03*

-G54D220*X384512Y258000D03*

-G54D221*X371602Y260228D03*

-G54D220*X458441Y254000D03*

-Y225000D03*

-X387070Y235000D03*

-X398441Y248000D03*

-Y253000D03*

-G54D221*X396441Y235000D03*

-X392188Y239000D03*

-X388207Y247280D03*

-G54D214*X307716Y275075D03*

-X308992Y271971D03*

-X308872Y266522D03*

-X287917Y307829D03*

-X293902Y282263D03*

-X296779Y304963D03*

-X295937Y243628D03*

-G54D221*X304706Y210583D03*

-G54D214*X296727Y256227D03*

-X312157Y300156D03*

-X312122Y295038D03*

-X303365Y330000D03*

-X285430Y325000D03*

-X302941Y340007D03*

-X245557Y279508D03*

-X242456Y293543D03*

-X254740Y298329D03*

-X242168Y298800D03*

-G54D221*X230441Y293000D03*

-X240391Y278564D03*

-G54D214*X266413Y296594D03*

-X263240Y295329D03*

-X262740Y291829D03*

-X260341Y284249D03*

-X264034Y282931D03*

-G54D221*X246731Y303031D03*

-G54D214*X262750Y268772D03*

-X253101Y261836D03*

-X239302Y262235D03*

-G54D221*X221884Y254000D03*

-X224441Y252000D03*

-X225441Y249000D03*

-X224441Y244000D03*

-X230441Y247000D03*

-G54D214*X269653Y298631D03*

-G54D221*X263441Y320000D03*

-G54D214*X268941Y314000D03*

-X273229Y298582D03*

-X278225Y279602D03*

-X278207Y298612D03*

-X277174Y308219D03*

-X277449Y347500D03*

-G54D221*X260568Y316997D03*

-X261502Y307367D03*

-X279441Y285000D03*

-X270441Y336000D03*

-X249101Y328793D03*

-X270441Y342500D03*

-Y349500D03*

-Y357000D03*

-X246941Y238000D03*

-X242441Y229500D03*

-X246441D03*

-X250941D03*

-X236441Y235500D03*

-X224941Y220500D03*

-X225441Y226500D03*

-X224941Y235500D03*

-X269941Y231500D03*

-X251941Y210500D03*

-X163941Y127500D03*

-X193390D03*

-X152441Y121500D03*

-X151941Y132000D03*

-X112222Y127340D03*

-X114441Y121500D03*

-X115441Y132500D03*

-X127941Y148000D03*

-X141441D03*

-X208941D03*

-X223941D03*

-X198441Y122500D03*

-X234441D03*

-X195441Y133000D03*

-X235941D03*

-X128941Y274500D03*

-Y268500D03*

-Y262500D03*

-Y255000D03*

-Y248500D03*

-Y242500D03*

-X162441Y248500D03*

-X161941Y255000D03*

-X181941Y258500D03*

-X162441Y262500D03*

-X198441D03*

-X219441Y272500D03*

-X217441Y279000D03*

-X198441Y269500D03*

-X205441Y277000D03*

-X220729Y265580D03*

-X220441Y259500D03*

-X218441Y261500D03*

-X162441Y242500D03*

-X165941Y231000D03*

-Y226500D03*

-Y220500D03*

-X169441Y214000D03*

-Y208500D03*

-Y201500D03*

-X185441Y228000D03*

-X212941Y238000D03*

-X203941Y237500D03*

-X193941Y237000D03*

-X177441Y228000D03*

-Y217500D03*

-X104441Y204500D03*

-X100941D03*

-X185441Y217500D03*

-X193941Y212500D03*

-X202441D03*

-X210441D03*

-X220441Y215000D03*

-X162941Y268500D03*

-Y274500D03*

-X158441Y323829D03*

-Y328829D03*

-Y326500D03*

-X141307Y300883D03*

-X197441Y314500D03*

-X195441Y311500D03*

-X197441Y308500D03*

-X124831Y302385D03*

-X135441Y338500D03*

-X126441Y340500D03*

-X111941Y341000D03*

-Y357500D03*

-X121941D03*

-X130941D03*

-X135441Y335000D03*

-X111941Y334000D03*

-X117941D03*

-X126441D03*

-X139941Y338000D03*

-X142441Y357500D03*

-Y349500D03*

-X153941Y338000D03*

-X154941Y345500D03*

-X149441Y349500D03*

-X178887Y342818D03*

-X168732Y350833D03*

-X191363Y344449D03*

-X229818Y354988D03*

-G54D223*G54D221*G54D223*G54D221*G54D223*G54D221*G54D224*G54D221*G54D223*G54D221*G54D223*G54D221*G54D223*G54D221*G54D223*G54D221*G54D223*G54D221*G54D223*G54D221*G54D223*M02*

diff --git a/bbb_cape/schematic/gerbers/20131204/cape.outline.gbr b/bbb_cape/schematic/gerbers/20131204/cape.outline.gbr
deleted file mode 100644
index 2220c1d..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.outline.gbr
+++ /dev/null
@@ -1,29 +0,0 @@
-G04 start of page 6 for group 4 idx 4 *

-G04 Title: 971 BBB Cape, outline *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Thu Dec  5 05:46:54 2013 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNOUTLINE*%

-%ADD248C,0.0080*%

-G54D248*X479100Y35500D02*X73500D01*

-X68000Y42000D02*Y244000D01*

-X74500Y250500D02*X101000D01*

-X107500Y256000D02*Y312500D01*

-X101000Y319000D02*X74500D01*

-Y399800D02*X478100D01*

-X484600Y393300D02*Y42000D01*

-X68000Y325500D02*Y393300D01*

-X74500Y35500D02*G75*G02X68000Y42000I0J6500D01*G01*

-Y244000D02*G75*G02X74500Y250500I6500J0D01*G01*

-X107500Y257000D02*G75*G02X101000Y250500I-6500J0D01*G01*

-Y319000D02*G75*G02X107500Y312500I0J-6500D01*G01*

-X74500Y319000D02*G75*G02X68000Y325500I0J6500D01*G01*

-X478100Y399800D02*G75*G02X484600Y393300I0J-6500D01*G01*

-Y42000D02*G75*G02X478100Y35500I-6500J0D01*G01*

-X68000Y393300D02*G75*G02X74500Y399800I6500J0D01*G01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20131204/cape.plated-drill.cnc b/bbb_cape/schematic/gerbers/20131204/cape.plated-drill.cnc
deleted file mode 100644
index 0de77e1..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.plated-drill.cnc
+++ /dev/null
@@ -1,452 +0,0 @@
-M48

-INCH

-T256C0.035

-T255C0.010

-T254C0.020

-T253C0.190

-T252C0.046

-T251C0.200

-T250C0.129

-T249C0.040

-%

-T255

-X038602Y015781

-X039844Y017300

-X035894Y020850

-X033744Y016300

-X037735Y016218

-X030458Y020748

-X030528Y020438

-X026094Y019150

-X026944Y019850

-X024394Y020200

-X024586Y019152

-X043445Y005650

-X044045Y005650

-X035444Y008500

-X035444Y008950

-X035444Y009550

-X035444Y010150

-X035444Y010750

-X035444Y011350

-X035444Y011950

-X024544Y012750

-X030944Y014157

-X030944Y013645

-X031094Y011594

-X030570Y010750

-X038744Y011950

-X038744Y011350

-X038744Y010750

-X038744Y010150

-X038744Y009550

-X038744Y008950

-X038744Y008500

-X039094Y007600

-X039094Y007150

-X039144Y006600

-X039494Y005850

-X039394Y005150

-X039244Y004500

-X038594Y036600

-X039844Y029100

-X033984Y034183

-X035339Y033952

-X035644Y023300

-X033844Y022419

-X033844Y023012

-X037160Y026023

-X039644Y023500

-X039219Y023900

-X038821Y024728

-X030772Y027508

-X030899Y027197

-X030887Y026652

-X028792Y030783

-X029390Y028226

-X029678Y030496

-X029594Y024363

-X030471Y021058

-X029673Y025623

-X031216Y030016

-X031212Y029504

-X030336Y033000

-X028543Y032500

-X030294Y034001

-X024556Y027951

-X024246Y029354

-X025474Y029833

-X024217Y029880

-X023044Y029300

-X024039Y027856

-X026641Y029659

-X026324Y029533

-X026274Y029183

-X026034Y028425

-X026403Y028293

-X024673Y030303

-X026275Y026877

-X025310Y026184

-X023930Y026224

-X022188Y025400

-X022444Y025200

-X022544Y024900

-X022444Y024400

-X023044Y024700

-X026965Y029863

-X026344Y032000

-X026894Y031400

-X027323Y029858

-X027822Y027960

-X027821Y029861

-X027717Y030822

-X027745Y034750

-X026057Y031700

-X026150Y030737

-X027944Y028500

-X027044Y033600

-X024910Y032879

-X027044Y034250

-X027044Y034950

-X027044Y035700

-X024694Y023800

-X024244Y022950

-X024644Y022950

-X025094Y022950

-X023644Y023550

-X022494Y022050

-X022544Y022650

-X022494Y023550

-X026994Y023150

-X025194Y021050

-X016394Y012750

-X019339Y012750

-X015244Y012150

-X015194Y013200

-X011222Y012734

-X011444Y012150

-X011544Y013250

-X012794Y014800

-X014144Y014800

-X020894Y014800

-X022394Y014800

-X019844Y012250

-X023444Y012250

-X019544Y013300

-X023594Y013300

-X012894Y027450

-X012894Y026850

-X012894Y026250

-X012894Y025500

-X012894Y024850

-X012894Y024250

-X016244Y024850

-X016194Y025500

-X018194Y025850

-X016244Y026250

-X019844Y026250

-X021944Y027250

-X021744Y027900

-X019844Y026950

-X020544Y027700

-X022073Y026558

-X022044Y025950

-X021844Y026150

-X016244Y024250

-X016594Y023100

-X016594Y022650

-X016594Y022050

-X016944Y021400

-X016944Y020850

-X016944Y020150

-X018544Y022800

-X021294Y023800

-X020394Y023750

-X019394Y023700

-X017744Y022800

-X017744Y021750

-X010444Y020450

-X010094Y020450

-X018544Y021750

-X019394Y021250

-X020244Y021250

-X021044Y021250

-X022044Y021500

-X016294Y026850

-X016294Y027450

-X015844Y032383

-X015844Y032883

-X015844Y032650

-X014131Y030088

-X019744Y031450

-X019544Y031150

-X019744Y030850

-X012483Y030238

-X013544Y033850

-X012644Y034050

-X011194Y034100

-X011194Y035750

-X012194Y035750

-X013094Y035750

-X013544Y033500

-X011194Y033400

-X011794Y033400

-X012644Y033400

-X013994Y033800

-X014244Y035750

-X014244Y034950

-X015394Y033800

-X015494Y034550

-X014944Y034950

-X017889Y034282

-X016873Y035083

-X019136Y034445

-X022982Y035499

-T254

-X038644Y016300

-X040044Y019400

-X038944Y018400

-X040044Y018900

-X039344Y020800

-X038416Y018800

-X045844Y019500

-X045844Y016400

-X037244Y017039

-X043232Y011100

-X044644Y010200

-X043488Y007500

-X042344Y007500

-X038744Y032600

-X039344Y035500

-X038672Y028200

-X039344Y032700

-X038416Y030600

-X038594Y035450

-X045844Y037500

-X038366Y037850

-X039744Y037300

-X039794Y036744

-X045844Y034500

-X045844Y031500

-X045844Y028500

-X039844Y031400

-X039844Y030900

-X037244Y029069

-X037244Y035119

-X037544Y023500

-X038451Y025800

-X045844Y025400

-X045844Y022500

-X038707Y023500

-X039844Y024800

-X039844Y025300

-T256

-X044094Y012300

-T249

-X041700Y038400

-X041700Y029400

-X041700Y035400

-X042700Y038400

-X042700Y029400

-X042700Y035400

-X040700Y035400

-X045350Y026400

-X045350Y020400

-X045350Y017400

-X046350Y026400

-X046350Y020400

-X046350Y017400

-X046350Y014400

-X046350Y011400

-X046350Y008400

-X047350Y026400

-X047350Y020400

-X047350Y017400

-X047350Y014400

-X047350Y011400

-X047350Y008400

-X045350Y023400

-X046350Y023400

-X047350Y023400

-X045350Y014400

-X045350Y011400

-X045350Y008400

-X045350Y005400

-X046350Y005400

-X047350Y005400

-X045350Y032400

-X046350Y032400

-X047350Y032400

-X045350Y029400

-X046350Y029400

-X047350Y029400

-X043700Y032400

-X031244Y024900

-X032244Y024900

-X033244Y024900

-X034244Y024900

-X045350Y038400

-X046350Y038400

-X047350Y038400

-X040700Y038400

-X040700Y029400

-X040700Y032400

-X041700Y032400

-X042700Y032400

-X045350Y035400

-X043700Y035400

-X046350Y035400

-X047350Y035400

-X043700Y038400

-X043700Y017400

-X043700Y020400

-X043700Y023400

-X043700Y026400

-X043700Y029400

-X040700Y017400

-X040700Y020400

-X040700Y023400

-X040700Y026400

-X041700Y017400

-X041700Y020400

-X041700Y023400

-X041700Y026400

-X042700Y017400

-X042700Y020400

-X042700Y023400

-X042700Y026400

-X020544Y004750

-X020544Y005750

-X020544Y006750

-X023544Y004750

-X023544Y005750

-X023544Y006750

-X026544Y004750

-X017544Y004750

-X014544Y004750

-X011544Y004750

-X008544Y004750

-X026544Y005750

-X017544Y005750

-X014544Y005750

-X011544Y005750

-X008544Y005750

-X026544Y006750

-X017544Y006750

-X029544Y004750

-X029544Y005750

-X029544Y006750

-X014544Y006750

-X011544Y006750

-X008544Y006750

-X008544Y024000

-X008544Y023000

-X008544Y022000

-T252

-X010580Y037483

-X010580Y036483

-X011580Y037483

-X011580Y036483

-X012580Y037483

-X012580Y036483

-X013580Y037483

-X013580Y036483

-X014580Y037483

-X014580Y036483

-X015580Y036483

-X016580Y036483

-X015580Y037483

-X016580Y037483

-X017580Y037483

-X018580Y037483

-X019580Y037483

-X020580Y037483

-X017580Y036483

-X018580Y036483

-X019580Y036483

-X020580Y036483

-X021580Y037483

-X022580Y037483

-X023580Y037483

-X021580Y036483

-X022580Y036483

-X023580Y036483

-X024580Y036483

-X025580Y036483

-X026580Y036483

-X024580Y037483

-X025580Y037483

-X026580Y037483

-X027580Y037483

-X027580Y036483

-X028580Y037483

-X029580Y037483

-X030580Y037483

-X031580Y037483

-X032580Y037483

-X028580Y036483

-X029580Y036483

-X030580Y036483

-X031580Y036483

-X032580Y036483

-X010580Y018483

-X010580Y017483

-X011580Y018483

-X011580Y017483

-X012580Y018483

-X012580Y017483

-X013580Y018483

-X014580Y018483

-X015580Y018483

-X013580Y017483

-X014580Y017483

-X015580Y017483

-X016580Y018483

-X017580Y018483

-X018580Y018483

-X019580Y018483

-X016580Y017483

-X017580Y017483

-X018580Y017483

-X019580Y017483

-X019580Y019733

-X020580Y019733

-X021580Y019733

-X022580Y019733

-X023580Y019733

-X020580Y018483

-X021580Y018483

-X022580Y018483

-X020580Y017483

-X021580Y017483

-X022580Y017483

-X023580Y017483

-X024580Y017483

-X025580Y017483

-X023580Y018483

-X024580Y018483

-X025580Y018483

-X026580Y018483

-X026580Y017483

-X027580Y018483

-X028580Y018483

-X029580Y018483

-X030580Y018483

-X031580Y018483

-X032580Y018483

-X027580Y017483

-X028580Y017483

-X029580Y017483

-X030580Y017483

-X031580Y017483

-X032580Y017483

-T250

-X034580Y035733

-X008580Y036983

-X035300Y015000

-X008580Y017983

-T253

-X034580Y019233

-T251

-X031580Y033733

-M30

diff --git a/bbb_cape/schematic/gerbers/20131204/cape.top.gbr b/bbb_cape/schematic/gerbers/20131204/cape.top.gbr
deleted file mode 100644
index ca29885..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.top.gbr
+++ /dev/null
@@ -1,3523 +0,0 @@
-G04 start of page 2 for group 0 idx 0 *

-G04 Title: 971 BBB Cape, top *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Thu Dec  5 05:46:53 2013 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNTOP*%

-%ADD199C,0.0350*%

-%ADD198C,0.0600*%

-%ADD197C,0.0200*%

-%ADD196C,0.0360*%

-%ADD195R,0.0748X0.0748*%

-%ADD194R,0.0948X0.0948*%

-%ADD193R,0.0340X0.0340*%

-%ADD192R,0.0110X0.0110*%

-%ADD191R,0.0200X0.0200*%

-%ADD190R,0.2106X0.2106*%

-%ADD189R,0.0350X0.0350*%

-%ADD188R,0.0512X0.0512*%

-%ADD187R,0.0130X0.0130*%

-%ADD186R,0.0295X0.0295*%

-%ADD185C,0.2100*%

-%ADD184C,0.0660*%

-%ADD183C,0.2200*%

-%ADD182C,0.1830*%

-%ADD181C,0.0650*%

-%ADD180C,0.0550*%

-%ADD179C,0.0400*%

-%ADD178C,0.0250*%

-%ADD177C,0.0080*%

-%ADD176C,0.0100*%

-%ADD175C,0.0001*%

-G54D175*G36*

-X323441Y99000D02*X347441Y123000D01*

-X391441D01*

-Y83000D01*

-X323441D01*

-Y99000D01*

-G37*

-G36*

-X384441Y78000D02*X393441D01*

-Y64000D01*

-X396941Y60500D01*

-Y42500D01*

-X385941D01*

-Y53500D01*

-X387441Y55000D01*

-Y63000D01*

-X384441Y66000D01*

-Y78000D01*

-G37*

-G36*

-X315441Y81000D02*X358441D01*

-Y54000D01*

-X345441D01*

-X331441Y68000D01*

-X315441D01*

-Y81000D01*

-G37*

-G36*

-X275792Y211941D02*X280021Y216170D01*

-X280057Y216201D01*

-X280180Y216344D01*

-X280180Y216344D01*

-X280279Y216506D01*

-X280351Y216680D01*

-X280395Y216864D01*

-X280410Y217052D01*

-X280406Y217099D01*

-Y244696D01*

-X282630Y246920D01*

-Y237610D01*

-X282625Y237551D01*

-X282644Y237316D01*

-X282699Y237086D01*

-X282789Y236868D01*

-X282913Y236667D01*

-X283066Y236487D01*

-X283111Y236449D01*

-X283441Y236119D01*

-Y188427D01*

-X283264Y188319D01*

-X282749Y187879D01*

-X282309Y187364D01*

-X281956Y186787D01*

-X281697Y186162D01*

-X281539Y185504D01*

-X281486Y184829D01*

-X281539Y184154D01*

-X281697Y183496D01*

-X281956Y182871D01*

-X282309Y182294D01*

-X282749Y181779D01*

-X283264Y181339D01*

-X283441Y181231D01*

-Y178427D01*

-X283264Y178319D01*

-X282749Y177879D01*

-X282309Y177364D01*

-X281956Y176787D01*

-X281697Y176162D01*

-X281539Y175504D01*

-X281486Y174829D01*

-X281539Y174154D01*

-X281697Y173496D01*

-X281956Y172871D01*

-X282309Y172294D01*

-X282749Y171779D01*

-X283264Y171339D01*

-X283441Y171231D01*

-Y169500D01*

-X275792D01*

-Y170516D01*

-X275799Y170516D01*

-X276474Y170569D01*

-X277132Y170727D01*

-X277757Y170986D01*

-X278334Y171339D01*

-X278849Y171779D01*

-X279289Y172294D01*

-X279642Y172871D01*

-X279901Y173496D01*

-X280059Y174154D01*

-X280099Y174829D01*

-X280059Y175504D01*

-X279901Y176162D01*

-X279642Y176787D01*

-X279289Y177364D01*

-X278849Y177879D01*

-X278334Y178319D01*

-X277757Y178672D01*

-X277132Y178931D01*

-X276474Y179089D01*

-X275799Y179142D01*

-X275792Y179142D01*

-Y180516D01*

-X275799Y180516D01*

-X276474Y180569D01*

-X277132Y180727D01*

-X277757Y180986D01*

-X278334Y181339D01*

-X278849Y181779D01*

-X279289Y182294D01*

-X279642Y182871D01*

-X279901Y183496D01*

-X280059Y184154D01*

-X280099Y184829D01*

-X280059Y185504D01*

-X279901Y186162D01*

-X279642Y186787D01*

-X279289Y187364D01*

-X278849Y187879D01*

-X278334Y188319D01*

-X277757Y188672D01*

-X277132Y188931D01*

-X276474Y189089D01*

-X275799Y189142D01*

-X275792Y189142D01*

-Y211941D01*

-G37*

-G36*

-X269438Y205587D02*X275792Y211941D01*

-Y189142D01*

-X275124Y189089D01*

-X274466Y188931D01*

-X273841Y188672D01*

-X273264Y188319D01*

-X272749Y187879D01*

-X272309Y187364D01*

-X271956Y186787D01*

-X271697Y186162D01*

-X271539Y185504D01*

-X271486Y184829D01*

-X271539Y184154D01*

-X271697Y183496D01*

-X271956Y182871D01*

-X272309Y182294D01*

-X272749Y181779D01*

-X273264Y181339D01*

-X273841Y180986D01*

-X274466Y180727D01*

-X275124Y180569D01*

-X275792Y180516D01*

-Y179142D01*

-X275124Y179089D01*

-X274466Y178931D01*

-X273841Y178672D01*

-X273264Y178319D01*

-X272749Y177879D01*

-X272309Y177364D01*

-X271956Y176787D01*

-X271697Y176162D01*

-X271539Y175504D01*

-X271486Y174829D01*

-X271539Y174154D01*

-X271697Y173496D01*

-X271956Y172871D01*

-X272309Y172294D01*

-X272749Y171779D01*

-X273264Y171339D01*

-X273841Y170986D01*

-X274466Y170727D01*

-X275124Y170569D01*

-X275792Y170516D01*

-Y169500D01*

-X269438D01*

-Y172538D01*

-X269642Y172871D01*

-X269901Y173496D01*

-X270059Y174154D01*

-X270099Y174829D01*

-X270059Y175504D01*

-X269901Y176162D01*

-X269642Y176787D01*

-X269438Y177120D01*

-Y182538D01*

-X269642Y182871D01*

-X269901Y183496D01*

-X270059Y184154D01*

-X270099Y184829D01*

-X270059Y185504D01*

-X269901Y186162D01*

-X269642Y186787D01*

-X269438Y187120D01*

-Y196695D01*

-X269441Y196694D01*

-X269723Y196717D01*

-X269999Y196783D01*

-X270261Y196891D01*

-X270502Y197039D01*

-X270718Y197223D01*

-X270902Y197439D01*

-X271050Y197680D01*

-X271158Y197942D01*

-X271224Y198218D01*

-X271241Y198500D01*

-X271224Y198782D01*

-X271158Y199058D01*

-X271050Y199320D01*

-X270902Y199561D01*

-X270718Y199777D01*

-X270502Y199961D01*

-X270261Y200109D01*

-X269999Y200217D01*

-X269723Y200283D01*

-X269441Y200306D01*

-X269438Y200305D01*

-Y205587D01*

-G37*

-G36*

-X260938Y197087D02*X269438Y205587D01*

-Y200305D01*

-X269159Y200283D01*

-X268883Y200217D01*

-X268621Y200109D01*

-X268380Y199961D01*

-X268164Y199777D01*

-X267980Y199561D01*

-X267832Y199320D01*

-X267724Y199058D01*

-X267658Y198782D01*

-X267635Y198500D01*

-X267658Y198218D01*

-X267724Y197942D01*

-X267832Y197680D01*

-X267980Y197439D01*

-X268164Y197223D01*

-X268380Y197039D01*

-X268621Y196891D01*

-X268883Y196783D01*

-X269159Y196717D01*

-X269438Y196695D01*

-Y187120D01*

-X269289Y187364D01*

-X268849Y187879D01*

-X268334Y188319D01*

-X267757Y188672D01*

-X267132Y188931D01*

-X266474Y189089D01*

-X265799Y189142D01*

-X265124Y189089D01*

-X264466Y188931D01*

-X263841Y188672D01*

-X263264Y188319D01*

-X262749Y187879D01*

-X262309Y187364D01*

-X261956Y186787D01*

-X261697Y186162D01*

-X261539Y185504D01*

-X261486Y184829D01*

-X261539Y184154D01*

-X261697Y183496D01*

-X261956Y182871D01*

-X262309Y182294D01*

-X262749Y181779D01*

-X263264Y181339D01*

-X263841Y180986D01*

-X264466Y180727D01*

-X265124Y180569D01*

-X265799Y180516D01*

-X266474Y180569D01*

-X267132Y180727D01*

-X267757Y180986D01*

-X268334Y181339D01*

-X268849Y181779D01*

-X269289Y182294D01*

-X269438Y182538D01*

-Y177120D01*

-X269289Y177364D01*

-X268849Y177879D01*

-X268334Y178319D01*

-X267757Y178672D01*

-X267132Y178931D01*

-X266474Y179089D01*

-X265799Y179142D01*

-X265124Y179089D01*

-X264466Y178931D01*

-X263841Y178672D01*

-X263264Y178319D01*

-X262749Y177879D01*

-X262309Y177364D01*

-X261956Y176787D01*

-X261697Y176162D01*

-X261539Y175504D01*

-X261486Y174829D01*

-X261539Y174154D01*

-X261697Y173496D01*

-X261956Y172871D01*

-X262309Y172294D01*

-X262749Y171779D01*

-X263264Y171339D01*

-X263841Y170986D01*

-X264466Y170727D01*

-X265124Y170569D01*

-X265799Y170516D01*

-X266474Y170569D01*

-X267132Y170727D01*

-X267757Y170986D01*

-X268334Y171339D01*

-X268849Y171779D01*

-X269289Y172294D01*

-X269438Y172538D01*

-Y169500D01*

-X260938D01*

-Y189695D01*

-X260941Y189694D01*

-X261223Y189717D01*

-X261499Y189783D01*

-X261761Y189891D01*

-X262002Y190039D01*

-X262218Y190223D01*

-X262402Y190439D01*

-X262550Y190680D01*

-X262658Y190942D01*

-X262724Y191218D01*

-X262741Y191500D01*

-X262724Y191782D01*

-X262658Y192058D01*

-X262550Y192320D01*

-X262402Y192561D01*

-X262218Y192777D01*

-X262002Y192961D01*

-X261761Y193109D01*

-X261499Y193217D01*

-X261223Y193283D01*

-X260941Y193306D01*

-X260938Y193305D01*

-Y197087D01*

-G37*

-G36*

-X269938Y243063D02*X270797Y243922D01*

-X270833Y243953D01*

-X270956Y244096D01*

-X270956Y244097D01*

-X270956Y244097D01*

-X271020Y244202D01*

-X271055Y244258D01*

-Y244258D01*

-X271055Y244258D01*

-X271120Y244415D01*

-X271127Y244432D01*

-X271127Y244432D01*

-X271127Y244432D01*

-X271148Y244519D01*

-X271171Y244616D01*

-Y244616D01*

-X271171Y244616D01*

-X271186Y244804D01*

-X271182Y244851D01*

-Y251016D01*

-X271666Y251500D01*

-X278449D01*

-X273987Y247038D01*

-X273951Y247007D01*

-X273828Y246864D01*

-X273729Y246702D01*

-X273657Y246528D01*

-X273613Y246344D01*

-X273598Y246156D01*

-X273602Y246109D01*

-Y226938D01*

-X269938Y223274D01*

-Y229695D01*

-X269941Y229694D01*

-X270223Y229717D01*

-X270499Y229783D01*

-X270761Y229891D01*

-X271002Y230039D01*

-X271218Y230223D01*

-X271402Y230439D01*

-X271550Y230680D01*

-X271658Y230942D01*

-X271724Y231218D01*

-X271741Y231500D01*

-X271724Y231782D01*

-X271658Y232058D01*

-X271550Y232320D01*

-X271402Y232561D01*

-X271218Y232777D01*

-X271002Y232961D01*

-X270761Y233109D01*

-X270499Y233217D01*

-X270223Y233283D01*

-X269941Y233306D01*

-X269938Y233305D01*

-Y243063D01*

-G37*

-G36*

-X260938Y234062D02*X269938Y243063D01*

-Y233305D01*

-X269659Y233283D01*

-X269383Y233217D01*

-X269121Y233109D01*

-X268880Y232961D01*

-X268664Y232777D01*

-X268480Y232561D01*

-X268332Y232320D01*

-X268224Y232058D01*

-X268158Y231782D01*

-X268135Y231500D01*

-X268158Y231218D01*

-X268224Y230942D01*

-X268332Y230680D01*

-X268480Y230439D01*

-X268664Y230223D01*

-X268880Y230039D01*

-X269121Y229891D01*

-X269383Y229783D01*

-X269659Y229717D01*

-X269938Y229695D01*

-Y223274D01*

-X260938Y214274D01*

-Y234062D01*

-G37*

-G36*

-X255792Y180516D02*X255799Y180516D01*

-X256474Y180569D01*

-X257132Y180727D01*

-X257757Y180986D01*

-X258334Y181339D01*

-X258849Y181779D01*

-X259289Y182294D01*

-X259642Y182871D01*

-X259901Y183496D01*

-X260059Y184154D01*

-X260099Y184829D01*

-X260059Y185504D01*

-X259901Y186162D01*

-X259642Y186787D01*

-X259289Y187364D01*

-X258849Y187879D01*

-X258334Y188319D01*

-X257757Y188672D01*

-X257132Y188931D01*

-X256474Y189089D01*

-X255799Y189142D01*

-X255792Y189142D01*

-Y191941D01*

-X260938Y197087D01*

-Y193305D01*

-X260659Y193283D01*

-X260383Y193217D01*

-X260121Y193109D01*

-X259880Y192961D01*

-X259664Y192777D01*

-X259480Y192561D01*

-X259332Y192320D01*

-X259224Y192058D01*

-X259158Y191782D01*

-X259135Y191500D01*

-X259158Y191218D01*

-X259224Y190942D01*

-X259332Y190680D01*

-X259480Y190439D01*

-X259664Y190223D01*

-X259880Y190039D01*

-X260121Y189891D01*

-X260383Y189783D01*

-X260659Y189717D01*

-X260938Y189695D01*

-Y169500D01*

-X255792D01*

-Y170516D01*

-X255799Y170516D01*

-X256474Y170569D01*

-X257132Y170727D01*

-X257757Y170986D01*

-X258334Y171339D01*

-X258849Y171779D01*

-X259289Y172294D01*

-X259642Y172871D01*

-X259901Y173496D01*

-X260059Y174154D01*

-X260099Y174829D01*

-X260059Y175504D01*

-X259901Y176162D01*

-X259642Y176787D01*

-X259289Y177364D01*

-X258849Y177879D01*

-X258334Y178319D01*

-X257757Y178672D01*

-X257132Y178931D01*

-X256474Y179089D01*

-X255799Y179142D01*

-X255792Y179142D01*

-Y180516D01*

-G37*

-G36*

-Y189142D02*X255124Y189089D01*

-X254466Y188931D01*

-X253841Y188672D01*

-X253264Y188319D01*

-X252749Y187879D01*

-X252309Y187364D01*

-X252114Y187045D01*

-Y188263D01*

-X255792Y191941D01*

-Y189142D01*

-G37*

-G36*

-X243938Y170946D02*X244466Y170727D01*

-X245124Y170569D01*

-X245799Y170516D01*

-X246474Y170569D01*

-X247132Y170727D01*

-X247757Y170986D01*

-X248334Y171339D01*

-X248849Y171779D01*

-X249289Y172294D01*

-X249642Y172871D01*

-X249901Y173496D01*

-X250059Y174154D01*

-X250099Y174829D01*

-X250059Y175504D01*

-X249901Y176162D01*

-X249642Y176787D01*

-X249289Y177364D01*

-X248849Y177879D01*

-X248334Y178319D01*

-X247757Y178672D01*

-X247504Y178777D01*

-X248534D01*

-X248581Y178773D01*

-X248769Y178788D01*

-X248769Y178788D01*

-X248769Y178788D01*

-X248895Y178818D01*

-X248953Y178832D01*

-X248953Y178832D01*

-X248953Y178832D01*

-X249061Y178877D01*

-X249127Y178904D01*

-X249127Y178904D01*

-X249127Y178904D01*

-X249231Y178968D01*

-X249288Y179003D01*

-X249288Y179003D01*

-X249289Y179003D01*

-X249432Y179126D01*

-X249463Y179162D01*

-X251729Y181427D01*

-X251765Y181458D01*

-X251887Y181600D01*

-X251888Y181601D01*

-X251888Y181601D01*

-X251888Y181601D01*

-X251931Y181671D01*

-X251986Y181762D01*

-X251986Y181762D01*

-X251987Y181763D01*

-X252017Y181837D01*

-X252059Y181937D01*

-X252059Y181937D01*

-X252059Y181937D01*

-X252079Y182020D01*

-X252103Y182120D01*

-X252103Y182121D01*

-X252103Y182121D01*

-X252103Y182122D01*

-X252118Y182309D01*

-X252114Y182356D01*

-Y182613D01*

-X252309Y182294D01*

-X252749Y181779D01*

-X253264Y181339D01*

-X253841Y180986D01*

-X254466Y180727D01*

-X255124Y180569D01*

-X255792Y180516D01*

-Y179142D01*

-X255124Y179089D01*

-X254466Y178931D01*

-X253841Y178672D01*

-X253264Y178319D01*

-X252749Y177879D01*

-X252309Y177364D01*

-X251956Y176787D01*

-X251697Y176162D01*

-X251539Y175504D01*

-X251486Y174829D01*

-X251539Y174154D01*

-X251697Y173496D01*

-X251956Y172871D01*

-X252309Y172294D01*

-X252749Y171779D01*

-X253264Y171339D01*

-X253841Y170986D01*

-X254466Y170727D01*

-X255124Y170569D01*

-X255792Y170516D01*

-Y169500D01*

-X243938D01*

-Y170946D01*

-G37*

-G36*

-Y178777D02*X244094D01*

-X243938Y178712D01*

-Y178777D01*

-G37*

-G36*

-X251938Y225845D02*X252176D01*

-X252223Y225841D01*

-X252411Y225856D01*

-X252595Y225900D01*

-X252769Y225972D01*

-X252931Y226071D01*

-X253074Y226194D01*

-X253105Y226230D01*

-X257627Y230751D01*

-X257637Y230764D01*

-X257659Y230783D01*

-X260938Y234062D01*

-Y214274D01*

-X251938Y205274D01*

-Y208695D01*

-X251941Y208694D01*

-X252223Y208717D01*

-X252499Y208783D01*

-X252761Y208891D01*

-X253002Y209039D01*

-X253218Y209223D01*

-X253402Y209439D01*

-X253550Y209680D01*

-X253658Y209942D01*

-X253724Y210218D01*

-X253741Y210500D01*

-X253724Y210782D01*

-X253658Y211058D01*

-X253550Y211320D01*

-X253402Y211561D01*

-X253218Y211777D01*

-X253002Y211961D01*

-X252761Y212109D01*

-X252499Y212217D01*

-X252223Y212283D01*

-X251941Y212306D01*

-X251938Y212305D01*

-Y225845D01*

-G37*

-G36*

-X243938D02*X251938D01*

-Y212305D01*

-X251659Y212283D01*

-X251383Y212217D01*

-X251121Y212109D01*

-X250880Y211961D01*

-X250664Y211777D01*

-X250480Y211561D01*

-X250332Y211320D01*

-X250224Y211058D01*

-X250158Y210782D01*

-X250135Y210500D01*

-X250158Y210218D01*

-X250224Y209942D01*

-X250332Y209680D01*

-X250480Y209439D01*

-X250664Y209223D01*

-X250880Y209039D01*

-X251121Y208891D01*

-X251383Y208783D01*

-X251659Y208717D01*

-X251938Y208695D01*

-Y205274D01*

-X243938Y197274D01*

-Y200195D01*

-X243941Y200194D01*

-X244223Y200217D01*

-X244499Y200283D01*

-X244761Y200391D01*

-X245002Y200539D01*

-X245218Y200723D01*

-X245402Y200939D01*

-X245550Y201180D01*

-X245658Y201442D01*

-X245724Y201718D01*

-X245741Y202000D01*

-X245724Y202282D01*

-X245658Y202558D01*

-X245550Y202820D01*

-X245402Y203061D01*

-X245218Y203277D01*

-X245002Y203461D01*

-X244761Y203609D01*

-X244499Y203717D01*

-X244223Y203783D01*

-X243941Y203806D01*

-X243938Y203805D01*

-Y225845D01*

-G37*

-G36*

-X215792Y180516D02*X215799Y180516D01*

-X216474Y180569D01*

-X217132Y180727D01*

-X217674Y180951D01*

-X219463Y179162D01*

-X219494Y179126D01*

-X219637Y179003D01*

-X219637Y179003D01*

-X219799Y178904D01*

-X219973Y178832D01*

-X220157Y178788D01*

-X220345Y178773D01*

-X220392Y178777D01*

-X224094D01*

-X223841Y178672D01*

-X223264Y178319D01*

-X222749Y177879D01*

-X222309Y177364D01*

-X221956Y176787D01*

-X221697Y176162D01*

-X221539Y175504D01*

-X221486Y174829D01*

-X221539Y174154D01*

-X221697Y173496D01*

-X221956Y172871D01*

-X222309Y172294D01*

-X222749Y171779D01*

-X223264Y171339D01*

-X223841Y170986D01*

-X224466Y170727D01*

-X225124Y170569D01*

-X225799Y170516D01*

-X226474Y170569D01*

-X227132Y170727D01*

-X227757Y170986D01*

-X228334Y171339D01*

-X228849Y171779D01*

-X229289Y172294D01*

-X229642Y172871D01*

-X229901Y173496D01*

-X230059Y174154D01*

-X230099Y174829D01*

-X230059Y175504D01*

-X229901Y176162D01*

-X229642Y176787D01*

-X229289Y177364D01*

-X228849Y177879D01*

-X228334Y178319D01*

-X227757Y178672D01*

-X227504Y178777D01*

-X233567D01*

-X233567Y178777D01*

-X234094D01*

-X233841Y178672D01*

-X233264Y178319D01*

-X232749Y177879D01*

-X232309Y177364D01*

-X231956Y176787D01*

-X231697Y176162D01*

-X231539Y175504D01*

-X231486Y174829D01*

-X231539Y174154D01*

-X231697Y173496D01*

-X231956Y172871D01*

-X232309Y172294D01*

-X232749Y171779D01*

-X233264Y171339D01*

-X233841Y170986D01*

-X234466Y170727D01*

-X235124Y170569D01*

-X235799Y170516D01*

-X236474Y170569D01*

-X237132Y170727D01*

-X237757Y170986D01*

-X238334Y171339D01*

-X238849Y171779D01*

-X239289Y172294D01*

-X239642Y172871D01*

-X239901Y173496D01*

-X240059Y174154D01*

-X240099Y174829D01*

-X240059Y175504D01*

-X239901Y176162D01*

-X239642Y176787D01*

-X239289Y177364D01*

-X238849Y177879D01*

-X238334Y178319D01*

-X237757Y178672D01*

-X237504Y178777D01*

-X243938D01*

-Y178712D01*

-X243841Y178672D01*

-X243264Y178319D01*

-X242749Y177879D01*

-X242309Y177364D01*

-X241956Y176787D01*

-X241697Y176162D01*

-X241539Y175504D01*

-X241486Y174829D01*

-X241539Y174154D01*

-X241697Y173496D01*

-X241956Y172871D01*

-X242309Y172294D01*

-X242749Y171779D01*

-X243264Y171339D01*

-X243841Y170986D01*

-X243938Y170946D01*

-Y169500D01*

-X215792D01*

-Y170516D01*

-X215799Y170516D01*

-X216474Y170569D01*

-X217132Y170727D01*

-X217757Y170986D01*

-X218334Y171339D01*

-X218849Y171779D01*

-X219289Y172294D01*

-X219642Y172871D01*

-X219901Y173496D01*

-X220059Y174154D01*

-X220099Y174829D01*

-X220059Y175504D01*

-X219901Y176162D01*

-X219642Y176787D01*

-X219289Y177364D01*

-X218849Y177879D01*

-X218334Y178319D01*

-X217757Y178672D01*

-X217132Y178931D01*

-X216474Y179089D01*

-X215799Y179142D01*

-X215792Y179142D01*

-Y180516D01*

-G37*

-G36*

-X235792Y223699D02*X237938Y225845D01*

-X243938D01*

-Y203805D01*

-X243659Y203783D01*

-X243383Y203717D01*

-X243121Y203609D01*

-X242880Y203461D01*

-X242664Y203277D01*

-X242480Y203061D01*

-X242332Y202820D01*

-X242224Y202558D01*

-X242158Y202282D01*

-X242135Y202000D01*

-X242158Y201718D01*

-X242224Y201442D01*

-X242332Y201180D01*

-X242480Y200939D01*

-X242664Y200723D01*

-X242880Y200539D01*

-X243121Y200391D01*

-X243383Y200283D01*

-X243659Y200217D01*

-X243938Y200195D01*

-Y197274D01*

-X238686Y192022D01*

-X235792D01*

-Y193016D01*

-X235799Y193016D01*

-X236474Y193069D01*

-X237132Y193227D01*

-X237757Y193486D01*

-X238334Y193839D01*

-X238849Y194279D01*

-X239289Y194794D01*

-X239642Y195371D01*

-X239901Y195996D01*

-X240059Y196654D01*

-X240099Y197329D01*

-X240059Y198004D01*

-X239901Y198662D01*

-X239642Y199287D01*

-X239289Y199864D01*

-X238849Y200379D01*

-X238334Y200819D01*

-X237757Y201172D01*

-X237132Y201431D01*

-X236474Y201589D01*

-X235799Y201642D01*

-X235792Y201642D01*

-Y223699D01*

-G37*

-G36*

-X225792Y213699D02*X235792Y223699D01*

-Y201642D01*

-X235124Y201589D01*

-X234466Y201431D01*

-X233841Y201172D01*

-X233264Y200819D01*

-X232749Y200379D01*

-X232309Y199864D01*

-X231956Y199287D01*

-X231697Y198662D01*

-X231539Y198004D01*

-X231486Y197329D01*

-X231539Y196654D01*

-X231697Y195996D01*

-X231956Y195371D01*

-X232309Y194794D01*

-X232749Y194279D01*

-X233264Y193839D01*

-X233841Y193486D01*

-X234466Y193227D01*

-X235124Y193069D01*

-X235792Y193016D01*

-Y192022D01*

-X231887D01*

-X231840Y192026D01*

-X231652Y192011D01*

-X231468Y191967D01*

-X231294Y191895D01*

-X231132Y191796D01*

-X231132Y191796D01*

-X230989Y191673D01*

-X230958Y191637D01*

-X227903Y188583D01*

-X227757Y188672D01*

-X227132Y188931D01*

-X226474Y189089D01*

-X225799Y189142D01*

-X225792Y189142D01*

-Y193016D01*

-X225799Y193016D01*

-X226474Y193069D01*

-X227132Y193227D01*

-X227757Y193486D01*

-X228334Y193839D01*

-X228849Y194279D01*

-X229289Y194794D01*

-X229642Y195371D01*

-X229901Y195996D01*

-X230059Y196654D01*

-X230099Y197329D01*

-X230059Y198004D01*

-X229901Y198662D01*

-X229642Y199287D01*

-X229289Y199864D01*

-X228849Y200379D01*

-X228334Y200819D01*

-X227757Y201172D01*

-X227132Y201431D01*

-X226474Y201589D01*

-X225799Y201642D01*

-X225792Y201642D01*

-Y213699D01*

-G37*

-G36*

-X218349Y206800D02*X218396Y206796D01*

-X218584Y206811D01*

-X218584Y206811D01*

-X218768Y206855D01*

-X218942Y206927D01*

-X219104Y207026D01*

-X219247Y207149D01*

-X219278Y207185D01*

-X225792Y213699D01*

-Y201642D01*

-X225124Y201589D01*

-X224466Y201431D01*

-X223841Y201172D01*

-X223264Y200819D01*

-X222749Y200379D01*

-X222309Y199864D01*

-X221956Y199287D01*

-X221697Y198662D01*

-X221539Y198004D01*

-X221486Y197329D01*

-X221539Y196654D01*

-X221697Y195996D01*

-X221956Y195371D01*

-X222309Y194794D01*

-X222749Y194279D01*

-X223264Y193839D01*

-X223841Y193486D01*

-X224466Y193227D01*

-X225124Y193069D01*

-X225792Y193016D01*

-Y189142D01*

-X225124Y189089D01*

-X224466Y188931D01*

-X223841Y188672D01*

-X223264Y188319D01*

-X222749Y187879D01*

-X222309Y187364D01*

-X221956Y186787D01*

-X221697Y186162D01*

-X221539Y185504D01*

-X221486Y184829D01*

-X221539Y184154D01*

-X221697Y183496D01*

-X221956Y182871D01*

-X222309Y182294D01*

-X222749Y181779D01*

-X223264Y181339D01*

-X223529Y181177D01*

-X220842D01*

-X219454Y182565D01*

-X219642Y182871D01*

-X219901Y183496D01*

-X220059Y184154D01*

-X220099Y184829D01*

-X220059Y185504D01*

-X219901Y186162D01*

-X219642Y186787D01*

-X219289Y187364D01*

-X218849Y187879D01*

-X218334Y188319D01*

-X217757Y188672D01*

-X217132Y188931D01*

-X216474Y189089D01*

-X215799Y189142D01*

-X215792Y189142D01*

-Y193016D01*

-X215799Y193016D01*

-X216474Y193069D01*

-X217132Y193227D01*

-X217757Y193486D01*

-X218334Y193839D01*

-X218849Y194279D01*

-X219289Y194794D01*

-X219642Y195371D01*

-X219901Y195996D01*

-X220059Y196654D01*

-X220099Y197329D01*

-X220059Y198004D01*

-X219901Y198662D01*

-X219642Y199287D01*

-X219289Y199864D01*

-X218849Y200379D01*

-X218334Y200819D01*

-X217757Y201172D01*

-X217132Y201431D01*

-X216474Y201589D01*

-X215799Y201642D01*

-X215792Y201642D01*

-Y206800D01*

-X218349D01*

-G37*

-G36*

-X215792Y189142D02*X215124Y189089D01*

-X214466Y188931D01*

-X213841Y188672D01*

-X213264Y188319D01*

-X212749Y187879D01*

-X212309Y187364D01*

-X211956Y186787D01*

-X211697Y186162D01*

-X211539Y185504D01*

-X211486Y184829D01*

-X211539Y184154D01*

-X211697Y183496D01*

-X211956Y182871D01*

-X212309Y182294D01*

-X212749Y181779D01*

-X213264Y181339D01*

-X213841Y180986D01*

-X214466Y180727D01*

-X215124Y180569D01*

-X215792Y180516D01*

-Y179142D01*

-X215124Y179089D01*

-X214466Y178931D01*

-X213841Y178672D01*

-X213264Y178319D01*

-X212749Y177879D01*

-X212309Y177364D01*

-X211956Y176787D01*

-X211697Y176162D01*

-X211539Y175504D01*

-X211486Y174829D01*

-X211539Y174154D01*

-X211697Y173496D01*

-X211956Y172871D01*

-X212309Y172294D01*

-X212749Y171779D01*

-X213264Y171339D01*

-X213841Y170986D01*

-X214466Y170727D01*

-X215124Y170569D01*

-X215792Y170516D01*

-Y169500D01*

-X211441D01*

-Y206800D01*

-X215792D01*

-Y201642D01*

-X215124Y201589D01*

-X214466Y201431D01*

-X213841Y201172D01*

-X213264Y200819D01*

-X212749Y200379D01*

-X212309Y199864D01*

-X211956Y199287D01*

-X211697Y198662D01*

-X211539Y198004D01*

-X211486Y197329D01*

-X211539Y196654D01*

-X211697Y195996D01*

-X211956Y195371D01*

-X212309Y194794D01*

-X212749Y194279D01*

-X213264Y193839D01*

-X213841Y193486D01*

-X214466Y193227D01*

-X215124Y193069D01*

-X215792Y193016D01*

-Y189142D01*

-G37*

-G36*

-X267324Y200573D02*X271324D01*

-Y196573D01*

-X267324D01*

-Y200573D01*

-G37*

-G36*

-X271324D01*

-Y196573D01*

-X267324D01*

-Y200573D01*

-G37*

-G36*

-X258824Y193573D02*X262824D01*

-Y189573D01*

-X258824D01*

-Y193573D01*

-G37*

-G36*

-X241824Y204073D02*X245824D01*

-Y200073D01*

-X241824D01*

-Y204073D01*

-G37*

-G36*

-X249824Y212573D02*X253824D01*

-Y208573D01*

-X249824D01*

-Y212573D01*

-G37*

-G36*

-X267824Y233573D02*X271824D01*

-Y229573D01*

-X267824D01*

-Y233573D01*

-G37*

-G36*

-X159441Y233000D02*X168441D01*

-Y219000D01*

-X171941Y215500D01*

-Y197500D01*

-X160941D01*

-Y208500D01*

-X162441Y210000D01*

-Y218000D01*

-X159441Y221000D01*

-Y233000D01*

-G37*

-G36*

-X182941Y321000D02*X199941D01*

-Y302500D01*

-X182941D01*

-Y321000D01*

-G37*

-G36*

-X80441Y248000D02*X109941D01*

-Y266500D01*

-X121941Y278500D01*

-X165941D01*

-Y237000D01*

-X80441D01*

-Y248000D01*

-G37*

-G36*

-X74941Y235000D02*X90441D01*

-Y225000D01*

-X74941D01*

-Y235000D01*

-G37*

-G36*

-X100441D02*X115941D01*

-Y225000D01*

-X100441D01*

-Y235000D01*

-G37*

-G36*

-X112441D02*X127941D01*

-Y225000D01*

-X112441D01*

-Y235000D01*

-G37*

-G36*

-X117441D02*X132941Y234500D01*

-Y225000D01*

-X117441D01*

-Y235000D01*

-G37*

-G36*

-Y232500D02*X132941D01*

-Y222500D01*

-X117441D01*

-Y232500D01*

-G37*

-G36*

-X114941Y223000D02*X130441D01*

-Y213000D01*

-X114941D01*

-Y223000D01*

-G37*

-G36*

-X116441Y224000D02*X131941D01*

-Y214000D01*

-X116441D01*

-Y224000D01*

-G37*

-G36*

-X99941D02*X115441D01*

-Y214000D01*

-X99941D01*

-Y224000D01*

-G37*

-G36*

-X116441Y217500D02*X131941D01*

-Y207500D01*

-X116441D01*

-Y217500D01*

-G37*

-G36*

-X85784Y194500D02*X101441D01*

-Y155500D01*

-X85784D01*

-Y169749D01*

-X85799Y169748D01*

-X87376Y169872D01*

-X88914Y170241D01*

-X90376Y170847D01*

-X91724Y171673D01*

-X92927Y172701D01*

-X93955Y173904D01*

-X94781Y175252D01*

-X95387Y176714D01*

-X95756Y178252D01*

-X95849Y179829D01*

-X95756Y181406D01*

-X95387Y182944D01*

-X94781Y184406D01*

-X93955Y185754D01*

-X92927Y186957D01*

-X91724Y187985D01*

-X90376Y188811D01*

-X88914Y189417D01*

-X87376Y189786D01*

-X85799Y189910D01*

-X85784Y189909D01*

-Y194500D01*

-G37*

-G36*

-X69941D02*X85784D01*

-Y189909D01*

-X84222Y189786D01*

-X82684Y189417D01*

-X81222Y188811D01*

-X79874Y187985D01*

-X78671Y186957D01*

-X77643Y185754D01*

-X76817Y184406D01*

-X76211Y182944D01*

-X75842Y181406D01*

-X75718Y179829D01*

-X75842Y178252D01*

-X76211Y176714D01*

-X76817Y175252D01*

-X77643Y173904D01*

-X78671Y172701D01*

-X79874Y171673D01*

-X81222Y170847D01*

-X82684Y170241D01*

-X84222Y169872D01*

-X85784Y169749D01*

-Y155500D01*

-X69941D01*

-Y194500D01*

-G37*

-G36*

-X102941Y228002D02*X113042Y228010D01*

-X113195Y228047D01*

-X113340Y228107D01*

-X113475Y228189D01*

-X113571Y228272D01*

-X113667Y228189D01*

-X113802Y228107D01*

-X113947Y228047D01*

-X114100Y228010D01*

-X114257Y228001D01*

-X125042Y228010D01*

-X125195Y228047D01*

-X125340Y228107D01*

-X125475Y228189D01*

-X125594Y228292D01*

-X125697Y228411D01*

-X125779Y228546D01*

-X125839Y228691D01*

-X125876Y228844D01*

-X125885Y229001D01*

-X125876Y234276D01*

-X125839Y234429D01*

-X125779Y234574D01*

-X125697Y234709D01*

-X125594Y234828D01*

-X125475Y234931D01*

-X125458Y234941D01*

-X132941Y235000D01*

-X132922Y233953D01*

-X132850Y233971D01*

-X132693Y233980D01*

-X129032Y233971D01*

-X128879Y233934D01*

-X128734Y233874D01*

-X128599Y233792D01*

-X128480Y233689D01*

-X128377Y233570D01*

-X128295Y233435D01*

-X128235Y233290D01*

-X128198Y233137D01*

-X128189Y232980D01*

-X128198Y223020D01*

-X128203Y223000D01*

-Y219972D01*

-X128165Y219928D01*

-X128083Y219793D01*

-X128023Y219648D01*

-X127986Y219495D01*

-X127977Y219338D01*

-X127986Y215245D01*

-X128023Y215092D01*

-X128083Y214947D01*

-X128165Y214812D01*

-X128203Y214768D01*

-Y213972D01*

-X128165Y213928D01*

-X128083Y213793D01*

-X128023Y213648D01*

-X127986Y213495D01*

-X127977Y213338D01*

-X127986Y209245D01*

-X128023Y209092D01*

-X128083Y208947D01*

-X128165Y208812D01*

-X128268Y208693D01*

-X128387Y208590D01*

-X128522Y208508D01*

-X128667Y208448D01*

-X128820Y208411D01*

-X128977Y208402D01*

-X132086Y208411D01*

-X132239Y208448D01*

-X132384Y208508D01*

-X132460Y208555D01*

-X132441Y207500D01*

-X116441D01*

-X102941Y194000D01*

-Y202250D01*

-X104441D01*

-X104794Y202271D01*

-X105138Y202354D01*

-X105466Y202489D01*

-X105768Y202674D01*

-X106037Y202904D01*

-X106267Y203173D01*

-X106452Y203475D01*

-X106587Y203803D01*

-X106670Y204147D01*

-X106698Y204500D01*

-X106670Y204853D01*

-X106587Y205197D01*

-X106452Y205525D01*

-X106267Y205827D01*

-X106037Y206096D01*

-X105768Y206326D01*

-X105466Y206511D01*

-X105138Y206646D01*

-X104794Y206729D01*

-X104441Y206750D01*

-X102941D01*

-Y208969D01*

-X105066Y208974D01*

-X105219Y209011D01*

-X105364Y209071D01*

-X105499Y209153D01*

-X105618Y209256D01*

-X105721Y209375D01*

-X105803Y209510D01*

-X105863Y209655D01*

-X105900Y209808D01*

-X105909Y209965D01*

-X105900Y213074D01*

-X105863Y213227D01*

-X105803Y213372D01*

-X105721Y213507D01*

-X105618Y213626D01*

-X105499Y213729D01*

-X105364Y213811D01*

-X105219Y213871D01*

-X105066Y213908D01*

-X104909Y213917D01*

-X102941Y213913D01*

-Y214087D01*

-X105066Y214092D01*

-X105219Y214129D01*

-X105364Y214189D01*

-X105499Y214271D01*

-X105618Y214374D01*

-X105721Y214493D01*

-X105803Y214628D01*

-X105863Y214773D01*

-X105900Y214926D01*

-X105909Y215083D01*

-X105900Y218192D01*

-X105863Y218345D01*

-X105803Y218490D01*

-X105721Y218625D01*

-X105618Y218744D01*

-X105499Y218847D01*

-X105364Y218929D01*

-X105219Y218989D01*

-X105066Y219026D01*

-X104909Y219035D01*

-X102941Y219031D01*

-Y228002D01*

-G37*

-G36*

-Y206750D02*X99884D01*

-X99884Y207173D01*

-X99847Y207326D01*

-X99787Y207471D01*

-X99705Y207606D01*

-X99602Y207725D01*

-X99483Y207828D01*

-X99348Y207910D01*

-X99203Y207970D01*

-X99078Y208000D01*

-X99203Y208030D01*

-X99348Y208090D01*

-X99483Y208172D01*

-X99602Y208275D01*

-X99705Y208394D01*

-X99787Y208529D01*

-X99847Y208674D01*

-X99884Y208827D01*

-X99893Y208984D01*

-X99892Y209293D01*

-X100232D01*

-X100264Y209256D01*

-X100383Y209153D01*

-X100518Y209071D01*

-X100663Y209011D01*

-X100816Y208974D01*

-X100973Y208965D01*

-X102941Y208969D01*

-Y206750D01*

-G37*

-G36*

-X85434Y225236D02*X85441Y225235D01*

-X86186Y225294D01*

-X86913Y225469D01*

-X87604Y225755D01*

-X88242Y226145D01*

-X88810Y226631D01*

-X89296Y227199D01*

-X89686Y227837D01*

-X89972Y228528D01*

-X90147Y229255D01*

-X90191Y230000D01*

-X90147Y230745D01*

-X89972Y231472D01*

-X89686Y232163D01*

-X89296Y232801D01*

-X88810Y233369D01*

-X88242Y233855D01*

-X87604Y234245D01*

-X86913Y234531D01*

-X86497Y234631D01*

-X101481Y234750D01*

-X101445Y234709D01*

-X101363Y234574D01*

-X101303Y234429D01*

-X101266Y234276D01*

-X101257Y234119D01*

-X101266Y228844D01*

-X101303Y228691D01*

-X101363Y228546D01*

-X101445Y228411D01*

-X101548Y228292D01*

-X101667Y228189D01*

-X101802Y228107D01*

-X101947Y228047D01*

-X102100Y228010D01*

-X102257Y228001D01*

-X102941Y228002D01*

-Y219031D01*

-X100816Y219026D01*

-X100663Y218989D01*

-X100518Y218929D01*

-X100383Y218847D01*

-X100264Y218744D01*

-X100161Y218625D01*

-X100079Y218490D01*

-X100019Y218345D01*

-X99982Y218192D01*

-X99973Y218035D01*

-X99982Y214926D01*

-X100019Y214773D01*

-X100079Y214628D01*

-X100161Y214493D01*

-X100264Y214374D01*

-X100383Y214271D01*

-X100518Y214189D01*

-X100663Y214129D01*

-X100816Y214092D01*

-X100973Y214083D01*

-X102941Y214087D01*

-Y213913D01*

-X100816Y213908D01*

-X100663Y213871D01*

-X100518Y213811D01*

-X100489Y213793D01*

-X99885D01*

-X99884Y214259D01*

-X99847Y214412D01*

-X99787Y214557D01*

-X99705Y214692D01*

-X99602Y214811D01*

-X99483Y214914D01*

-X99348Y214996D01*

-X99203Y215056D01*

-X99050Y215093D01*

-X98893Y215102D01*

-X92832Y215093D01*

-X92679Y215056D01*

-X92534Y214996D01*

-X92399Y214914D01*

-X92280Y214811D01*

-X92177Y214692D01*

-X92095Y214557D01*

-X92035Y214412D01*

-X91998Y214259D01*

-X91989Y214102D01*

-X91998Y208827D01*

-X92035Y208674D01*

-X92095Y208529D01*

-X92177Y208394D01*

-X92280Y208275D01*

-X92399Y208172D01*

-X92534Y208090D01*

-X92679Y208030D01*

-X92804Y208000D01*

-X92679Y207970D01*

-X92534Y207910D01*

-X92399Y207828D01*

-X92280Y207725D01*

-X92177Y207606D01*

-X92095Y207471D01*

-X92035Y207326D01*

-X91998Y207173D01*

-X91989Y207016D01*

-X91998Y201741D01*

-X92035Y201588D01*

-X92095Y201443D01*

-X92177Y201308D01*

-X92280Y201189D01*

-X92399Y201086D01*

-X92534Y201004D01*

-X92679Y200944D01*

-X92832Y200907D01*

-X92989Y200898D01*

-X99050Y200907D01*

-X99203Y200944D01*

-X99348Y201004D01*

-X99483Y201086D01*

-X99602Y201189D01*

-X99705Y201308D01*

-X99787Y201443D01*

-X99847Y201588D01*

-X99884Y201741D01*

-X99893Y201898D01*

-X99892Y202250D01*

-X102941D01*

-Y194000D01*

-X101941Y193000D01*

-Y192500D01*

-X85434D01*

-Y215236D01*

-X85441Y215235D01*

-X86186Y215294D01*

-X86913Y215469D01*

-X87604Y215755D01*

-X88242Y216145D01*

-X88810Y216631D01*

-X89296Y217199D01*

-X89686Y217837D01*

-X89972Y218528D01*

-X90147Y219255D01*

-X90191Y220000D01*

-X90147Y220745D01*

-X89972Y221472D01*

-X89686Y222163D01*

-X89296Y222801D01*

-X88810Y223369D01*

-X88242Y223855D01*

-X87604Y224245D01*

-X86913Y224531D01*

-X86186Y224706D01*

-X85441Y224765D01*

-X85434Y224764D01*

-Y225236D01*

-G37*

-G36*

-X69941Y234500D02*X84313Y234614D01*

-X83969Y234531D01*

-X83278Y234245D01*

-X82640Y233855D01*

-X82072Y233369D01*

-X81586Y232801D01*

-X81196Y232163D01*

-X80910Y231472D01*

-X80735Y230745D01*

-X80676Y230000D01*

-X80735Y229255D01*

-X80910Y228528D01*

-X81196Y227837D01*

-X81586Y227199D01*

-X82072Y226631D01*

-X82640Y226145D01*

-X83278Y225755D01*

-X83969Y225469D01*

-X84696Y225294D01*

-X85434Y225236D01*

-Y224764D01*

-X84696Y224706D01*

-X83969Y224531D01*

-X83278Y224245D01*

-X82640Y223855D01*

-X82072Y223369D01*

-X81586Y222801D01*

-X81196Y222163D01*

-X80910Y221472D01*

-X80735Y220745D01*

-X80676Y220000D01*

-X80735Y219255D01*

-X80910Y218528D01*

-X81196Y217837D01*

-X81586Y217199D01*

-X82072Y216631D01*

-X82640Y216145D01*

-X83278Y215755D01*

-X83969Y215469D01*

-X84696Y215294D01*

-X85434Y215236D01*

-Y192500D01*

-X69941D01*

-Y234500D01*

-G37*

-G54D176*X371215Y358262D02*X371157D01*

-X387623D02*X371287D01*

-X379941Y355000D02*X370441D01*

-X384162Y344917D02*Y350779D01*

-X379044Y340311D02*Y336000D01*

-X381603Y342614D02*Y338000D01*

-X384162Y350779D02*X379941Y355000D01*

-X386720Y353721D02*X385941Y354500D01*

-X381603Y338000D02*X391838D01*

-X376485Y347145D02*X372441Y351189D01*

-X376485Y342614D02*Y347145D01*

-X389279Y342614D02*Y355913D01*

-X386720Y342614D02*Y353721D01*

-X458441Y375000D02*X456641D01*

-Y373200D01*

-X448750D01*

-Y349250D01*

-X458441Y345000D02*X456641D01*

-Y336000D01*

-X448750Y330300D02*X376485D01*

-X448750D02*Y322775D01*

-X376485Y330300D02*Y325219D01*

-X456641Y336000D02*X379044D01*

-X402250Y323839D02*X391838D01*

-X458441Y316800D02*Y315000D01*

-Y316800D02*X458250D01*

-D03*

-X448750D01*

-Y328750D02*Y316800D01*

-X391838Y323839D02*Y321689D01*

-X394397Y319386D02*Y315434D01*

-X379044Y319386D02*Y324000D01*

-X379441Y312000D02*X370441D01*

-X381603Y314162D02*X379441Y312000D01*

-X381044Y326000D02*X387441D01*

-X379044Y324000D02*X381044Y326000D01*

-X389279Y319386D02*Y324162D01*

-X387441Y326000D02*X389279Y324162D01*

-X381603Y321689D02*Y314162D01*

-X376485Y328750D02*Y321689D01*

-X402250Y323839D02*Y317434D01*

-X395831Y314000D02*X398441D01*

-G54D177*X387172Y312000D02*X386720Y312452D01*

-Y319386D01*

-G54D176*X448750Y349250D02*X394397D01*

-X391838Y338000D02*Y353397D01*

-X394397Y349250D02*Y344917D01*

-X393441Y365941D02*X396441D01*

-X397941Y367441D01*

-X397441Y373000D02*X395441D01*

-X393441Y371000D01*

-X389279Y356605D02*X387623Y358262D01*

-X389279Y356005D02*Y356605D01*

-X391838Y353397D02*X393441Y355000D01*

-G54D177*Y358500D01*

-X385941Y366000D02*X393441Y358500D01*

-X306581Y273940D02*X307716Y275075D01*

-X305390Y270003D02*X308872Y266522D01*

-X297976Y273940D02*X306581D01*

-X297976Y271971D02*X308992D01*

-X297976Y270003D02*X305390D01*

-X297976Y287719D02*X295178D01*

-X297976Y279845D02*X296286D01*

-X294441Y278000D01*

-X295259Y287719D02*X293902Y286362D01*

-Y282263D01*

-X294482Y268095D02*Y265543D01*

-X297976Y266066D02*X301042Y263000D01*

-X318441D01*

-X294482Y265543D02*X298803Y261222D01*

-X317755D01*

-X313869Y257572D02*X299592D01*

-X294164Y263000D01*

-G54D176*X295489Y226192D02*X312917D01*

-X284130Y237551D02*X295489Y226192D01*

-X296103Y228124D02*X312620D01*

-X286099Y238128D02*X296103Y228124D01*

-X284130Y260093D02*Y237551D01*

-X286099Y260093D02*Y238128D01*

-G54D177*X280193Y251547D02*Y258394D01*

-X282162Y260093D02*Y248149D01*

-X279206Y245193D02*Y230234D01*

-X292004Y260093D02*X294441D01*

-X274802Y246156D02*X280193Y251547D01*

-X282162Y248149D02*X279206Y245193D01*

-X296748Y252388D02*Y253650D01*

-Y247270D02*Y245000D01*

-X296662Y244914D01*

-X290441D01*

-X295937D02*Y243628D01*

-X294348Y260093D02*X296748Y257693D01*

-Y253693D01*

-X290048Y252000D02*Y258394D01*

-X289441Y263000D02*X288067Y261626D01*

-Y258394D01*

-X279890Y282687D02*X294482Y268095D01*

-X294164Y263000D02*X289441D01*

-X318441D02*X332441Y249000D01*

-X317755Y261222D02*X327407Y251570D01*

-Y246410D01*

-X330486Y243331D01*

-X313869Y257572D02*X322441Y249000D01*

-X262477Y260093D02*Y253536D01*

-X264445Y260093D02*Y251504D01*

-X266414Y260093D02*X266441Y249500D01*

-X274802Y246156D02*Y226441D01*

-X256810Y231631D02*X269982Y244804D01*

-X268382Y260093D02*Y246941D01*

-X274288Y260093D02*Y255819D01*

-X269982Y251513D01*

-Y244804D01*

-X257443Y270002D02*X261210Y266235D01*

-X263795D01*

-X266978Y269418D01*

-X288066Y300735D02*X289428Y299372D01*

-X286098Y300431D02*X288774Y297755D01*

-X288066Y304963D02*Y300735D01*

-X286098Y304963D02*Y300440D01*

-Y300614D02*Y300440D01*

-Y300475D02*Y300431D01*

-X278224Y304963D02*Y298517D01*

-X276255Y304963D02*Y307300D01*

-X277174Y308219D01*

-X266413Y304963D02*Y296594D01*

-X264444Y304963D02*Y298992D01*

-Y299125D02*X263240Y297921D01*

-X262476Y304963D02*X260740Y303227D01*

-Y293329D01*

-X258841Y290090D02*Y301933D01*

-X260740Y293329D02*X262240Y291829D01*

-X262740D01*

-X253106Y295592D02*X254740Y297226D01*

-Y298329D01*

-X263240Y297921D02*Y295329D01*

-X270351Y295943D02*Y297933D01*

-X272319Y295908D02*Y297672D01*

-X270351Y297933D02*X269653Y298631D01*

-X272319Y297672D02*X273229Y298582D01*

-X253106Y270002D02*X257334D01*

-X261609Y279844D02*X264034Y282269D01*

-X266978Y286653D02*X262278D01*

-X258841Y290090D01*

-X274287Y304963D02*Y317689D01*

-X270726Y321249D01*

-X275887Y312972D02*Y318352D01*

-X270350Y304963D02*Y309150D01*

-X272318Y304963D02*Y315385D01*

-X280192Y308667D02*X275887Y312972D01*

-X278941Y328992D02*Y313000D01*

-X282161Y309780D01*

-Y303264D01*

-X272318Y315385D02*X269965Y317738D01*

-X278941Y328008D02*Y337500D01*

-X280119Y338678D01*

-X285430D01*

-X277449Y342559D02*Y347500D01*

-G54D178*X260839Y342992D02*X260347Y342500D01*

-X265957Y349992D02*Y342500D01*

-Y349992D02*X266449Y349500D01*

-X270441D01*

-X265957Y342500D02*X266000Y342457D01*

-Y335500D01*

-X265957Y342008D02*X266449Y342500D01*

-X270441D01*

-X266000Y335992D02*X266008Y336000D01*

-X270441D01*

-X266000Y356992D02*Y349500D01*

-Y356992D02*X270441D01*

-G54D177*X270708Y321267D02*X264708D01*

-X271118Y323121D02*X261394D01*

-X260568Y322295D01*

-X264708Y321267D02*X263441Y320000D01*

-X260568Y322295D02*Y316997D01*

-X269965Y317738D02*X265196D01*

-X260348Y312890D01*

-X270350Y309150D02*X269500Y310000D01*

-Y310492D02*X268941Y311051D01*

-Y314000D01*

-X268381Y304963D02*Y305794D01*

-X267156Y307019D01*

-X267255Y306920D02*X264382Y309793D01*

-Y310000D01*

-Y310492D02*X261502Y307612D01*

-Y307367D01*

-X260348Y312890D02*X257209D01*

-X254546Y315552D01*

-Y323347D01*

-X303365Y324772D02*Y330000D01*

-X296453Y340007D02*X302941D01*

-X339837Y341827D02*X349316D01*

-X358050Y350561D01*

-X353390Y339521D02*X360933Y347064D01*

-Y352336D01*

-X358050Y350561D02*Y353251D01*

-X363061Y358262D01*

-X360933Y352336D02*X363598Y355000D01*

-X371157Y358262D02*X363061D01*

-X370441Y355000D02*X363598D01*

-X307462Y300156D02*X312157D01*

-X304176Y305229D02*X369319D01*

-X303559Y307000D02*X376441D01*

-X302670Y312000D02*X370441D01*

-X297976Y283782D02*X333399D01*

-X297976Y281814D02*X333104D01*

-X297976Y277877D02*X334778D01*

-X297976Y285751D02*X333942D01*

-X297976Y289688D02*X332396D01*

-X332251Y291656D02*X332761D01*

-X371602Y260228D02*Y245343D01*

-X377944Y239000D01*

-X358441Y252000D02*Y235000D01*

-X363241Y256452D02*Y255546D01*

-X364841Y257243D02*Y256457D01*

-X366441Y257976D02*Y256869D01*

-X358441Y235000D02*X356441Y233000D01*

-X312620Y228124D02*X336441D01*

-X312917Y226192D02*X336441D01*

-Y228124D02*X338441Y230124D01*

-X330486Y243331D02*X336772D01*

-X342441Y249000D01*

-X398441Y291000D02*X389279Y300162D01*

-Y321689D02*Y300162D01*

-X369319Y305229D02*X401986Y272561D01*

-X387182Y304280D02*X384902Y302000D01*

-X381441D01*

-X387172Y304270D02*Y312000D01*

-X333399Y283782D02*X361641Y255540D01*

-X333104Y281814D02*X360041Y254877D01*

-X334778Y277877D02*X358441Y254214D01*

-Y252000D01*

-X333942Y285751D02*X363241Y256452D01*

-X332396Y289688D02*X364841Y257243D01*

-X332761Y291656D02*X366441Y257976D01*

-X396441Y235000D02*X395441D01*

-X391838Y231397D01*

-X401986Y245532D02*X391461Y235007D01*

-X388207Y247280D02*Y242981D01*

-X392188Y239000D01*

-X401986Y272561D02*Y253764D01*

-Y253878D02*Y245532D01*

-X291991Y307772D02*X298420D01*

-X295931Y299372D02*X297971Y301411D01*

-X296702Y297755D02*X304176Y305229D01*

-X292003Y304963D02*X296779D01*

-X297938Y301378D02*X303559Y307000D01*

-X289428Y299372D02*X295931D01*

-X288774Y297755D02*X296702D01*

-X297976Y295593D02*X302689D01*

-X304230Y299288D02*X305098Y300156D01*

-X303365Y319654D02*X298786D01*

-X296453Y317321D01*

-X294941Y310500D02*X296453Y312012D01*

-Y317321D01*

-X298441Y307772D02*X302670Y312000D01*

-X305098Y300156D02*X307954D01*

-X297976Y291656D02*X332557D01*

-X302689Y295593D02*X304230Y297134D01*

-Y299288D01*

-X305357Y295038D02*X303944Y293625D01*

-X299675D01*

-X305357Y295038D02*X312122D01*

-X290035Y305815D02*X291991Y307772D01*

-X290035Y304963D02*Y305815D01*

-X284129Y304963D02*Y309188D01*

-X285441Y310500D01*

-X294941D01*

-X285430Y318650D02*Y325000D01*

-X275887Y318352D02*X271118Y323121D01*

-X280192Y308667D02*Y300309D01*

-X281692Y298809D01*

-Y293836D01*

-X275876Y288020D01*

-X294441Y278000D02*X288441D01*

-X281441Y285000D01*

-X279441D01*

-X275876Y288020D02*Y284637D01*

-X277826Y282687D01*

-X279890D01*

-X264034Y282269D02*Y282931D01*

-X266978Y269418D02*Y286653D01*

-G54D176*X387425Y186369D02*X385730Y184673D01*

-G54D177*X379833Y188086D02*X383246Y184673D01*

-X385730D01*

-G54D176*X387441Y189962D02*Y186369D01*

-X387479Y190000D02*X387441Y189962D01*

-X386720Y190759D02*X387479Y190000D01*

-X386720Y203689D02*Y190759D01*

-X378441Y195000D02*X376441D01*

-X381603Y198162D02*X378441Y195000D01*

-X381603Y203689D02*Y198162D01*

-G54D177*X379833Y192610D02*Y188086D01*

-G54D176*X384162Y201386D02*Y188000D01*

-G54D177*X366441Y203078D02*X374519Y195000D01*

-X364841Y202092D02*X374323Y192610D01*

-X363241Y201429D02*X377441Y187229D01*

-X374519Y195000D02*X376510D01*

-X374323Y192610D02*X379833D01*

-G54D176*X387441Y186369D02*X387425D01*

-X387441D03*

-X391810Y186000D02*X394810Y183000D01*

-X389279Y184162D02*X389441Y184000D01*

-X389279Y187162D02*Y184162D01*

-G54D177*X389441Y184000D02*X398441Y175000D01*

-G54D176*X399882Y188441D02*X395441D01*

-X400441Y189000D02*X399882Y188441D01*

-X400000Y193559D02*X395441D01*

-G54D177*X377441Y187229D02*Y168118D01*

-Y166395D02*X386151Y157685D01*

-X377441Y166395D02*Y168000D01*

-X369127Y171314D03*

-Y169388D02*Y193214D01*

-Y169388D02*X376337Y162178D01*

-X377347D01*

-G54D176*X400441Y194000D02*X400000Y193559D01*

-X391838Y199083D02*Y195535D01*

-G54D177*X361641Y200700D02*X369127Y193214D01*

-G54D176*X458250Y196800D02*X412250D01*

-X394397Y229250D02*Y226917D01*

-X456641Y225000D02*Y218000D01*

-X458441Y196800D02*Y195000D01*

-Y196800D02*X458250D01*

-D03*

-X456641Y218000D02*X379044D01*

-Y206000D02*X389279D01*

-X379044Y201386D02*Y206000D01*

-X389279Y201386D02*Y206000D01*

-G54D177*X358941Y208500D02*X360041Y209600D01*

-G54D176*X391838Y224614D02*Y220000D01*

-G54D177*X336441Y226192D02*X338441Y224192D01*

-G54D176*X391810Y195575D02*Y186000D01*

-X391838Y195603D02*X391810Y195575D01*

-X389279Y203689D02*Y187096D01*

-X412250Y204300D02*Y196800D01*

-Y211300D02*Y197300D01*

-Y211300D02*X389117D01*

-X391973Y197309D02*X391838D01*

-X394441Y200000D02*X400441Y194000D01*

-X401750Y211300D02*X376485D01*

-Y203689D01*

-Y208000D02*Y203689D01*

-X445441Y169109D02*X448750Y165800D01*

-X445441Y181000D02*Y169109D01*

-X443441Y183000D02*X445441Y181000D01*

-X458441Y165800D02*Y164000D01*

-Y165800D02*X458250D01*

-D03*

-X448750D01*

-X394810Y183000D02*X443441D01*

-G54D177*X398441Y175000D02*Y173000D01*

-G54D178*X440941Y123000D02*X398441Y165500D01*

-Y173000D01*

-G54D177*X328601Y146898D02*X332661Y150958D01*

-Y187953D01*

-X334308Y150202D02*Y188569D01*

-X335927Y149558D02*X337441Y151072D01*

-Y163000D01*

-G54D176*X432000Y72118D02*X434882Y75000D01*

-X432000Y70000D02*Y72118D01*

-X426882Y71559D02*X423441Y75000D01*

-X426882Y70000D02*Y71559D01*

-G54D178*X339686Y89905D02*X329441D01*

-X339686D02*X352782Y103001D01*

-X371441D01*

-X397048Y89543D02*Y94393D01*

-X394441Y97000D01*

-X386941D01*

-X356323Y63493D02*X356441Y63611D01*

-X361441Y63493D02*Y73080D01*

-X367323Y65618D02*X366441Y66500D01*

-Y73080D01*

-X367323Y63493D02*Y65618D01*

-Y59382D02*Y63001D01*

-X365434Y57493D02*X367323Y59382D01*

-X361441Y57493D02*X365434D01*

-X371441Y66000D02*X372441Y65000D01*

-Y63001D01*

-Y63493D02*Y57001D01*

-X371441Y76229D02*Y66000D01*

-Y109694D02*Y73080D01*

-X372441Y56509D02*X370450D01*

-X374048Y51000D02*X374049Y51001D01*

-X370450Y56509D02*X368941Y55000D01*

-Y44500D01*

-X369527Y43914D01*

-X378362D02*X369527D01*

-X382323Y45493D02*X379934D01*

-X379941D02*X378362Y43914D01*

-X374049Y51001D02*X382323D01*

-X387441D02*Y45001D01*

-X377559Y62882D02*Y57001D01*

-X382941Y57608D02*X382942Y57607D01*

-X382941Y63500D02*Y58001D01*

-X382323Y57383D02*X382941Y58001D01*

-X389941Y62500D02*X390027Y58001D01*

-X382323Y51493D02*Y57383D01*

-X390027Y58394D02*Y53587D01*

-X387441Y51001D01*

-X376441Y64000D02*X377559Y62882D01*

-X386441Y76229D02*Y66000D01*

-X381441Y76229D02*Y65000D01*

-X376441Y76229D02*Y64000D01*

-X386441Y66000D02*X389941Y62500D01*

-X381441Y65000D02*X382941Y63500D01*

-X397048Y82457D02*X397441Y82064D01*

-Y76000D01*

-X396949Y70882D02*X392067Y66000D01*

-X391441D01*

-G54D176*X381441Y302000D02*X376441Y307000D01*

-X458441Y254000D02*X456641D01*

-Y252200D01*

-X448750D01*

-Y229250D01*

-X458441Y225000D02*X456641D01*

-X379044Y222311D02*Y218000D01*

-X386720Y224614D02*Y234650D01*

-X381603Y220000D02*X391838D01*

-X381603Y224614D02*Y220000D01*

-G54D177*X391838Y231397D02*Y224614D01*

-G54D176*X448750Y229250D02*X394397D01*

-X397497Y247056D02*X393135D01*

-X398441Y248000D02*X397497Y247056D01*

-X397615Y252174D02*X398441Y253000D01*

-X393135Y252174D02*X397615D01*

-X458441Y286800D02*Y285000D01*

-Y286800D02*X458250D01*

-D03*

-X432250D01*

-Y317434D02*Y286800D01*

-Y317434D02*X402250D01*

-X394397Y315434D02*X395831Y314000D01*

-X384162Y319386D02*Y306000D01*

-X392949Y311118D02*X395831Y314000D01*

-X395441Y306000D02*X398441Y309000D01*

-X392949Y306000D02*X395441D01*

-X389279Y232825D02*X391441Y234987D01*

-X389279Y226917D02*Y232825D01*

-X384162Y232782D02*X377944Y239000D01*

-X384162Y226917D02*Y232782D01*

-X386720Y234650D02*X387070Y235000D01*

-X376485Y233956D02*X375441Y235000D01*

-X376485Y224614D02*Y233956D01*

-G54D177*X366441Y257772D02*Y203078D01*

-X364841Y256865D02*Y202092D01*

-X363241Y256202D02*Y201429D01*

-X360041Y254877D02*Y210000D01*

-X361641Y255540D02*Y200767D01*

-X360041Y209600D02*Y229900D01*

-G54D176*X238192Y283781D02*X227240Y272829D01*

-G54D177*X237756Y285750D02*X225528Y273522D01*

-X237358Y287718D02*X223884Y274244D01*

-G54D176*X232350Y273939D02*X229240Y270829D01*

-G54D177*X228128Y289687D02*X220754D01*

-X203441Y293000D02*X204441Y292000D01*

-G54D176*X252106Y260829D02*X248799D01*

-X253106Y261829D02*X252106Y260829D01*

-X253106Y266065D02*Y261829D01*

-G54D177*Y271970D02*X259552D01*

-X253106Y268033D02*X249600D01*

-X249396Y267829D01*

-X270351Y260093D02*Y296024D01*

-X272319Y260093D02*Y295594D01*

-X278225Y260093D02*Y279602D01*

-X259552Y271970D02*X262750Y268772D01*

-X260501Y279844D02*X261609D01*

-X250834Y291655D02*X254805D01*

-X247189Y277876D02*X245557Y279508D01*

-X253106Y277876D02*X247189D01*

-X253106Y275907D02*X245166D01*

-X245207D02*X242550Y278564D01*

-X240391D01*

-G54D176*X253106Y283781D02*X238192D01*

-G54D177*X253106Y285750D02*X237756D01*

-X253106Y287718D02*X237358D01*

-G54D176*X253106Y273939D02*X232350D01*

-G54D177*X253106Y289687D02*X228091D01*

-X253106Y279844D02*X260641D01*

-X253106Y281813D02*X257905D01*

-X260341Y284249D01*

-X253106Y293624D02*X252274D01*

-X250724Y295174D01*

-Y297065D01*

-X249939Y297850D01*

-X246827D01*

-X249757Y292732D02*X250834Y291655D01*

-X249757Y292732D02*X243267D01*

-X242456Y293543D01*

-X246335Y297850D02*X243118D01*

-X242168Y298800D01*

-X239154Y268222D02*Y265356D01*

-X243681Y260829D01*

-X240788Y263721D02*X239302Y262235D01*

-X223884Y274244D02*Y256000D01*

-X225528Y273522D02*Y253087D01*

-X227240Y272829D02*Y250799D01*

-X229240Y270829D02*Y248201D01*

-X223884Y256000D02*X221884Y254000D01*

-X225528Y253087D02*X224441Y252000D01*

-X227240Y250799D02*X225441Y249000D01*

-X229240Y248201D02*X230441Y247000D01*

-X237441Y227045D02*X218396Y208000D01*

-X189441D01*

-X172611Y191170D01*

-X220729Y265580D02*X218246Y268063D01*

-X219441Y272500D02*X222262Y275321D01*

-X218309Y268000D02*X216941Y269368D01*

-Y274500D01*

-X249396Y267829D02*X246240D01*

-X262477Y253536D02*X246941Y238000D01*

-X264445Y251504D02*X242441Y229500D01*

-X266441Y249500D02*X246441Y229500D01*

-X268382Y246941D02*X250941Y229500D01*

-X239183Y190822D02*X274802Y226441D01*

-X279206Y230265D02*Y217052D01*

-X250914Y188760D01*

-X237359Y227045D02*X252223D01*

-X256778Y231600D01*

-G54D178*X275291Y220952D02*X245863Y191524D01*

-X130941Y231228D02*X130453Y230740D01*

-X135941Y231228D02*X135571Y230858D01*

-X140941Y231228D02*X141012Y231157D01*

-X145941Y231228D02*X146130Y231039D01*

-G54D179*X99311Y243370D02*X107571D01*

-G54D178*X130453Y230740D02*Y211370D01*

-X135571Y230858D02*Y217370D01*

-X141012Y231157D02*Y216468D01*

-X146130Y231039D02*Y217370D01*

-X150941Y231228D02*Y212118D01*

-X146130Y217370D02*X146571Y216929D01*

-Y211370D01*

-X146441Y211500D02*X146571Y211630D01*

-X141012Y217862D02*Y213571D01*

-X138811Y211370D01*

-X135571D01*

-X102449Y211441D02*X102347Y211543D01*

-X95941D01*

-X150941Y212118D02*X151689Y211370D01*

-X145941Y264693D02*X146130Y264504D01*

-Y226000D01*

-X155941Y231228D02*Y213914D01*

-X160941Y231228D02*Y220500D01*

-X170949Y231882D02*X170067Y231000D01*

-X165941D01*

-X170949Y237000D02*X170441Y237508D01*

-Y241457D01*

-X170048Y248543D02*X170005Y248500D01*

-X162441D01*

-X148799Y308829D02*X141799Y308888D01*

-X141307D02*X126799D01*

-X148799Y303829D02*X148740Y303770D01*

-X141799D01*

-X124831Y309514D02*Y302385D01*

-X141307Y303770D02*Y300883D01*

-X148799Y298829D02*X148599Y298629D01*

-Y292229D01*

-X148299D02*X145899Y289829D01*

-X126799D01*

-X167299Y298829D02*X156799Y288329D01*

-X140949Y328941D02*X141061Y328829D01*

-X140949Y323559D02*X141219Y323829D01*

-X140949Y318441D02*Y314492D01*

-X141799Y313642D01*

-Y308888D01*

-X141061Y328829D02*X151799D01*

-X148799Y333829D02*X141441D01*

-X151799Y328829D02*Y323829D01*

-X148799Y328829D02*X158441D01*

-Y324500D01*

-X148799Y323829D02*X158441D01*

-Y327000D01*

-X141219Y323829D02*X151799D01*

-G54D177*X159770Y318829D02*X151799D01*

-X158270Y313829D02*X151799D01*

-X151115Y359500D02*X145803Y364811D01*

-X145249Y359724D02*X139132D01*

-X135740Y363117D01*

-Y364932D01*

-X162155Y342818D02*X145249Y359724D01*

-G54D178*X168732Y355962D02*Y350833D01*

-G54D177*X151115Y359500D02*X172571D01*

-X173850Y358221D01*

-Y355962D01*

-G54D178*X155941Y213914D02*X157485Y212370D01*

-X160941Y220500D02*X164571Y216870D01*

-Y212370D01*

-X163571Y211370D01*

-Y205370D01*

-X157485Y211977D02*X158453Y211009D01*

-Y205370D01*

-X151571D01*

-X158382Y199992D02*X156674Y198284D01*

-X149157D01*

-X146441Y201000D01*

-Y211500D01*

-G54D177*X152164Y191170D02*X145828Y184834D01*

-G54D178*X163571Y204878D02*X163500Y204807D01*

-Y199500D01*

-G54D177*X172611Y191170D02*X152164D01*

-G54D178*X167299Y298829D02*X197799D01*

-X197307Y323888D02*X187799D01*

-G54D177*X179441Y338500D02*X159770Y318829D01*

-X180941Y336500D02*X158270Y313829D01*

-X178887Y342818D02*X162155D01*

-X184799Y328829D02*X199112D01*

-X205941Y295500D02*Y325147D01*

-X197259Y333829D01*

-X199112Y328829D02*X203441Y324500D01*

-X197259Y333829D02*X187799D01*

-X197441Y336500D02*X180941D01*

-X198441Y338500D02*X179441D01*

-X191363Y344449D02*X179851Y355962D01*

-X173850D01*

-X222262Y275321D02*Y280532D01*

-X216941Y274500D02*X219941Y277500D01*

-Y281500D01*

-X203519Y292922D02*X217441Y279000D01*

-X219941Y281500D02*X205941Y295500D01*

-X222262Y280500D02*Y283179D01*

-X208441Y297000D01*

-X220754Y289687D02*X210941Y299500D01*

-X208441Y297000D02*Y325500D01*

-X210941Y299500D02*Y326000D01*

-X203441Y324500D02*Y293000D01*

-X208441Y325500D02*X197441Y336500D01*

-X210941Y326000D02*X198441Y338500D01*

-X245312Y349893D02*X230441Y335022D01*

-X245312Y342893D02*X240441Y338022D01*

-X230441Y335022D02*Y293000D01*

-X240441Y309321D02*X246731Y303031D01*

-G54D178*X252834Y335500D02*X260882D01*

-X260347Y342500D02*X252398D01*

-Y349893D02*X252791Y349500D01*

-X260839D01*

-G54D177*X229818Y354988D02*X231331Y356500D01*

-X245355D01*

-G54D178*X252441Y356893D02*X252834Y356500D01*

-X260882D01*

-G54D177*X240441Y338022D02*Y309321D01*

-X258841Y302100D02*X245355Y315586D01*

-Y335500D01*

-G54D178*X252441Y335893D02*X252834Y335500D01*

-G54D177*X254546Y323347D02*X249101Y328793D01*

-G54D178*X120666Y142340D02*X119666Y141340D01*

-X131882Y132156D02*Y148000D01*

-X131390D02*X127941D01*

-X137000Y148492D02*Y130941D01*

-Y148492D02*X137492Y148000D01*

-X141441D01*

-X131882Y148492D02*X131390Y148000D01*

-G54D177*X111041Y153000D02*X188441D01*

-X109441Y155000D02*X187441D01*

-G54D178*X119666Y141340D02*X113975D01*

-X120666Y137340D02*X116666Y141340D01*

-X115036D01*

-X108857Y141832D02*Y136143D01*

-X114000Y112992D02*X114652Y112340D01*

-X118840Y117340D02*X114000Y112500D01*

-X108882Y112992D02*Y118882D01*

-X108941Y118941D01*

-G54D177*X108449D02*X107500D01*

-X105441Y121000D01*

-G54D178*X114652Y112340D02*X123916D01*

-X120666Y117340D02*X118840D01*

-G54D177*X115281Y122340D02*X123916D01*

-G54D178*X108857Y136143D02*X108941Y136059D01*

-X112542Y127340D02*X108941Y130941D01*

-X120666Y127340D02*X112222D01*

-G54D177*X115441Y132500D02*X115601Y132340D01*

-X123916D01*

-G54D178*X112542Y127340D02*X127065D01*

-X112222D02*X108941Y124059D01*

-G54D177*X114441Y121500D02*X115281Y122340D01*

-X105441Y121000D02*Y151000D01*

-X108857Y141832D02*Y150816D01*

-X105441Y151000D02*X109441Y155000D01*

-X108857Y150816D02*X111041Y153000D01*

-G54D178*X141166Y112340D02*X155222D01*

-X155382Y112500D01*

-X150542Y117340D01*

-X144416D01*

-X159949Y130941D02*X160441Y130449D01*

-G54D177*X151941Y132000D02*X151601Y132340D01*

-X144416D01*

-G54D178*X127065Y127340D02*X131882Y132156D01*

-X137000Y130941D02*X140601Y127340D01*

-X144416D01*

-G54D177*X152441Y121500D02*X151601Y122340D01*

-X144416D01*

-G54D180*X332196Y78095D02*X107941D01*

-X86941Y99095D01*

-G54D178*X160441Y130449D02*Y124059D01*

-Y127500D02*X163941D01*

-X141166Y142340D02*X154177D01*

-X155438Y141079D01*

-X141166Y137340D02*X151222D01*

-X155382Y141500D01*

-X160500Y141992D02*Y136059D01*

-X159949Y118941D02*X160500Y118390D01*

-Y112500D01*

-G54D177*X159949Y118941D02*X163382D01*

-X166441Y122000D01*

-X160933Y136059D02*X162500D01*

-X163941Y137500D01*

-Y149500D01*

-X165241Y150800D01*

-X166441Y122000D02*Y148200D01*

-X167441Y149200D01*

-G54D180*X86941Y99095D02*Y158500D01*

-G54D178*X199874Y137500D02*X195441Y141933D01*

-X190382Y141992D02*Y136059D01*

-G54D177*X186941Y121949D02*Y144000D01*

-G54D178*X195475Y112832D02*X195807Y112500D01*

-X200635Y117500D02*X195475Y112340D01*

-X189949Y118941D02*Y112340D01*

-G54D177*Y118941D02*X186941Y121949D01*

-X198441Y122500D02*X205691D01*

-G54D178*X189949Y130941D02*X193390Y127500D01*

-X205691D01*

-X193882D01*

-X190441Y124059D01*

-G54D177*X195441Y133000D02*X195941Y132500D01*

-X205691D01*

-G54D178*X195807Y112500D02*X205691D01*

-X222941D02*X236882D01*

-X202441Y117500D02*X200635D01*

-X222941D02*X231882D01*

-X208941Y127500D02*X213882Y132441D01*

-X222941Y127500D02*X219000Y131441D01*

-X219008Y148000D02*X223941D01*

-X222941Y142500D02*X235178D01*

-X236178Y141500D01*

-X236382D01*

-X232882Y137500D02*X236382Y141000D01*

-Y141500D01*

-G54D177*X236641Y152000D02*X249808Y138833D01*

-X252441Y139000D02*X237441Y154000D01*

-X238072Y155632D02*X257882Y135822D01*

-X238704Y157263D02*X257573Y138394D01*

-G54D178*X241500Y141992D02*Y136941D01*

-X242441Y136000D01*

-G54D177*X238941Y159500D02*X252619Y145822D01*

-X239941Y161500D02*X252941Y148500D01*

-G54D178*X195500Y141992D02*X196008Y142500D01*

-X205691D01*

-X202441Y137500D02*X199874D01*

-G54D177*X190382Y141008D02*Y144941D01*

-X197441Y152000D01*

-X186941Y144000D02*X196941Y154000D01*

-X189878Y149200D02*X196310Y155632D01*

-X189215Y150800D02*X195678Y157263D01*

-X188441Y153000D02*X194941Y159500D01*

-X187441Y155000D02*X193941Y161500D01*

-G54D178*X95548Y204457D02*X95591Y204500D01*

-X104441D01*

-X213882Y132441D02*Y148500D01*

-X219000Y131441D02*Y148500D01*

-X213882Y148992D02*X212890Y148000D01*

-X208941D01*

-X219000Y148008D02*X219008Y148000D01*

-G54D177*X167441Y149200D02*X189878D01*

-X165241Y150800D02*X189215D01*

-X197441Y152000D02*X236641D01*

-X237441Y154000D02*X196941D01*

-X196310Y155632D02*X238072D01*

-X195678Y157263D02*X238704D01*

-X238678D02*X238704D01*

-X194941Y159500D02*X238941D01*

-X193941Y161500D02*X239941D01*

-G54D178*X222941Y137500D02*X232882D01*

-G54D177*X235941Y133000D02*X235441Y132500D01*

-X226191D01*

-X234441Y122500D02*X226191D01*

-G54D178*X231882Y117500D02*X236882Y112500D01*

-X241449Y118941D02*Y113051D01*

-X242000Y112500D01*

-G54D177*Y112992D02*X246992Y108000D01*

-X247941Y117500D02*Y133000D01*

-X249808Y138833D02*Y121727D01*

-X253317Y118218D01*

-X252441Y123000D02*Y139000D01*

-X247941Y133000D02*X245000Y135941D01*

-G54D178*X241449Y130941D02*X241941Y130449D01*

-Y124059D01*

-Y127500D02*X245441D01*

-G54D177*X245000Y135941D02*X242000D01*

-X279941Y108000D02*X280941Y109000D01*

-X246992Y108000D02*X279941D01*

-X278619Y115822D02*X274688D01*

-X271438Y110822D02*X254619D01*

-X247941Y117500D01*

-X254619Y120822D02*X252441Y123000D01*

-X280941Y109000D02*Y113500D01*

-X280691Y147030D02*Y143314D01*

-X278199Y140822D01*

-X280941Y113500D02*X278619Y115822D01*

-X280221Y118218D02*X280909Y118906D01*

-Y123034D01*

-Y123000D02*X278088Y125822D01*

-X274688D01*

-X253317Y118218D02*X280221D01*

-X271438Y120822D02*X254619D01*

-X257882Y135822D02*X274688D01*

-X257573Y138394D02*X279063D01*

-X252619Y145822D02*X274688D01*

-X252941Y148500D02*X279221D01*

-X280691Y147030D01*

-X237387Y179977D02*X220345D01*

-X215709Y184613D01*

-Y184752D01*

-X225824Y184806D02*X231840Y190822D01*

-X239183D01*

-X250914Y188760D02*Y182309D01*

-X248581Y179977D01*

-X233567D01*

-X279972Y130822D02*X274688D01*

-X278199Y140822D02*X274688D01*

-X279047Y138394D02*X281047D01*

-X282441Y137000D01*

-Y133291D01*

-X279972Y130822D02*X282441Y133291D01*

-G54D178*X305696Y115940D02*X310941D01*

-X305696Y110822D02*Y107500D01*

-X291938Y110822D02*X306188D01*

-G54D177*X291938Y115822D02*X299638D01*

-X291938Y125822D02*X307525D01*

-X291938Y120822D02*X304788D01*

-X299638Y115822D02*X303038Y119222D01*

-X305451D01*

-X304700Y120822D02*X304927D01*

-X305083Y119222D02*X305590D01*

-X291938Y130822D02*X309763D01*

-G54D178*X304263Y135822D02*X304941Y136500D01*

-X304472Y136450D02*X309441D01*

-G54D177*X312289Y210583D02*X304706D01*

-X313178Y207483D02*X304584D01*

-X310421Y204383D02*X305280D01*

-X334308Y188633D02*X312358Y210583D01*

-X332661Y188000D02*X313178Y207483D01*

-X320804Y141863D02*Y193925D01*

-Y194000D02*X310421Y204383D01*

-G54D178*X304472Y141568D02*X303726Y140822D01*

-X291938Y145822D02*X300709D01*

-X304964Y141568D01*

-X304472D02*X309441D01*

-X291938Y135822D02*X304263D01*

-X303726Y140822D02*X295188D01*

-G54D177*X307525Y125822D02*X329417Y147713D01*

-X305590Y119222D02*X335927Y149558D01*

-X304927Y120822D02*X334308Y150202D01*

-X309763Y130822D02*X320804Y141863D01*

-X91441Y342700D02*X92041Y343300D01*

-X93841D01*

-X94441Y342700D01*

-Y341500D01*

-X91441Y338500D02*X94441Y341500D01*

-X91441Y338500D02*X94441D01*

-X95881Y339100D02*X96481Y338500D01*

-X95881Y342700D02*Y339100D01*

-Y342700D02*X96481Y343300D01*

-X97681D01*

-X98281Y342700D01*

-Y339100D01*

-X97681Y338500D02*X98281Y339100D01*

-X96481Y338500D02*X97681D01*

-X95881Y339700D02*X98281Y342100D01*

-X99721Y342340D02*X100681Y343300D01*

-Y338500D01*

-X99721D02*X101521D01*

-X102961Y342700D02*X103561Y343300D01*

-X104761D01*

-X105361Y342700D01*

-X104761Y338500D02*X105361Y339100D01*

-X103561Y338500D02*X104761D01*

-X102961Y339100D02*X103561Y338500D01*

-Y341140D02*X104761D01*

-X105361Y342700D02*Y341740D01*

-Y340540D02*Y339100D01*

-Y340540D02*X104761Y341140D01*

-X105361Y341740D02*X104761Y341140D01*

-X106801Y342340D02*X107761Y343300D01*

-Y338500D01*

-X106801D02*X108601D01*

-X110041Y342700D02*X110641Y343300D01*

-X112441D01*

-X113041Y342700D01*

-Y341500D01*

-X110041Y338500D02*X113041Y341500D01*

-X110041Y338500D02*X113041D01*

-X114481Y339100D02*X115081Y338500D01*

-X114481Y342700D02*Y339100D01*

-Y342700D02*X115081Y343300D01*

-X116281D01*

-X116881Y342700D01*

-Y339100D01*

-X116281Y338500D02*X116881Y339100D01*

-X115081Y338500D02*X116281D01*

-X114481Y339700D02*X116881Y342100D01*

-X118321Y340300D02*X120721Y343300D01*

-X118321Y340300D02*X121321D01*

-X120721Y343300D02*Y338500D01*

-G54D181*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D175*G36*

-X403750Y357250D02*Y350750D01*

-X410250D01*

-Y357250D01*

-X403750D01*

-G37*

-G54D182*X345799Y357329D03*

-G54D183*X315799Y337329D03*

-G54D182*X85799Y369829D03*

-G54D184*X105799Y374829D03*

-G54D175*G36*

-X102499Y368129D02*Y361529D01*

-X109099D01*

-Y368129D01*

-X102499D01*

-G37*

-G54D184*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D175*G36*

-X450250Y267250D02*Y260750D01*

-X456750D01*

-Y267250D01*

-X450250D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X456750D01*

-Y207250D01*

-X450250D01*

-G37*

-G36*

-Y177250D02*Y170750D01*

-X456750D01*

-Y177250D01*

-X450250D01*

-G37*

-G54D181*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D175*G36*

-X450250Y237250D02*Y230750D01*

-X456750D01*

-Y237250D01*

-X450250D01*

-G37*

-G54D181*X463500Y234000D03*

-X473500D03*

-G54D175*G36*

-X450250Y147250D02*Y140750D01*

-X456750D01*

-Y147250D01*

-X450250D01*

-G37*

-G36*

-Y117250D02*Y110750D01*

-X456750D01*

-Y117250D01*

-X450250D01*

-G37*

-G36*

-Y87250D02*Y80750D01*

-X456750D01*

-Y87250D01*

-X450250D01*

-G37*

-G36*

-Y57250D02*Y50750D01*

-X456750D01*

-Y57250D01*

-X450250D01*

-G37*

-G54D181*X463500Y54000D03*

-X473500D03*

-G54D175*G36*

-X450250Y327250D02*Y320750D01*

-X456750D01*

-Y327250D01*

-X450250D01*

-G37*

-G54D181*X463500Y324000D03*

-X473500D03*

-G54D175*G36*

-X450250Y297250D02*Y290750D01*

-X456750D01*

-Y297250D01*

-X450250D01*

-G37*

-G54D181*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D175*G36*

-X309191Y252250D02*Y245750D01*

-X315691D01*

-Y252250D01*

-X309191D01*

-G37*

-G54D181*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D185*X345799Y192329D03*

-G54D182*X353000Y150000D03*

-G54D175*G36*

-X450250Y387250D02*Y380750D01*

-X456750D01*

-Y387250D01*

-X450250D01*

-G37*

-G54D181*X463500Y384000D03*

-X473500D03*

-G54D175*G36*

-X403750Y387250D02*Y380750D01*

-X410250D01*

-Y387250D01*

-X403750D01*

-G37*

-G36*

-Y297250D02*Y290750D01*

-X410250D01*

-Y297250D01*

-X403750D01*

-G37*

-G36*

-Y327250D02*Y320750D01*

-X410250D01*

-Y327250D01*

-X403750D01*

-G37*

-G54D181*X417000Y324000D03*

-X427000D03*

-G54D175*G36*

-X450250Y357250D02*Y350750D01*

-X456750D01*

-Y357250D01*

-X450250D01*

-G37*

-G54D181*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D175*G36*

-X403750Y177250D02*Y170750D01*

-X410250D01*

-Y177250D01*

-X403750D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X410250D01*

-Y207250D01*

-X403750D01*

-G37*

-G36*

-Y237250D02*Y230750D01*

-X410250D01*

-Y237250D01*

-X403750D01*

-G37*

-G36*

-Y267250D02*Y260750D01*

-X410250D01*

-Y267250D01*

-X403750D01*

-G37*

-G54D181*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D175*G36*

-X202191Y50750D02*Y44250D01*

-X208691D01*

-Y50750D01*

-X202191D01*

-G37*

-G54D181*X205441Y57500D03*

-Y67500D03*

-G54D175*G36*

-X232191Y50750D02*Y44250D01*

-X238691D01*

-Y50750D01*

-X232191D01*

-G37*

-G54D181*X235441Y57500D03*

-Y67500D03*

-G54D175*G36*

-X262191Y50750D02*Y44250D01*

-X268691D01*

-Y50750D01*

-X262191D01*

-G37*

-G36*

-X172191D02*Y44250D01*

-X178691D01*

-Y50750D01*

-X172191D01*

-G37*

-G36*

-X142191D02*Y44250D01*

-X148691D01*

-Y50750D01*

-X142191D01*

-G37*

-G36*

-X112191D02*Y44250D01*

-X118691D01*

-Y50750D01*

-X112191D01*

-G37*

-G36*

-X82191D02*Y44250D01*

-X88691D01*

-Y50750D01*

-X82191D01*

-G37*

-G54D181*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D175*G36*

-X292191Y50750D02*Y44250D01*

-X298691D01*

-Y50750D01*

-X292191D01*

-G37*

-G54D181*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D182*X85799Y179829D03*

-G54D184*X105799Y184829D03*

-G54D175*G36*

-X102499Y178129D02*Y171529D01*

-X109099D01*

-Y178129D01*

-X102499D01*

-G37*

-G54D184*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D175*G36*

-X82191Y243250D02*Y236750D01*

-X88691D01*

-Y243250D01*

-X82191D01*

-G37*

-G54D181*X85441Y230000D03*

-Y220000D03*

-G54D184*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D175*G36*

-X192499Y200629D02*Y194029D01*

-X199099D01*

-Y200629D01*

-X192499D01*

-G37*

-G54D184*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D186*X394949Y188441D02*X395933D01*

-X394949Y193559D02*X395933D01*

-G54D187*X394397Y203689D02*Y199083D01*

-X376485Y203689D02*Y199083D01*

-X379044Y203689D02*Y199083D01*

-X381603Y203689D02*Y199083D01*

-X384162Y203689D02*Y199083D01*

-X386720Y203689D02*Y199083D01*

-X389279Y203689D02*Y199083D01*

-X391838Y203689D02*Y199083D01*

-G54D186*X392643Y247056D02*X393627D01*

-X392643Y252174D02*X393627D01*

-G54D187*X394397Y226917D02*Y222311D01*

-X391838Y226917D02*Y222311D01*

-X389279Y226917D02*Y222311D01*

-X386720Y226917D02*Y222311D01*

-G54D188*X397048Y89543D02*X397834D01*

-X397048Y82457D02*X397834D01*

-G54D186*X396949Y70882D02*X397933D01*

-X396949Y76000D02*X397933D01*

-G54D187*X384162Y226917D02*Y222311D01*

-X381603Y226917D02*Y222311D01*

-X379044Y226917D02*Y222311D01*

-X376485Y226917D02*Y222311D01*

-G54D186*X392949Y365941D02*X393933D01*

-X392949Y371059D02*X393933D01*

-G54D187*X394397Y344917D02*Y340311D01*

-X391838Y344917D02*Y340311D01*

-X389279Y344917D02*Y340311D01*

-X386720Y344917D02*Y340311D01*

-X389279Y321689D02*Y317083D01*

-X391838Y321689D02*Y317083D01*

-X394397Y321689D02*Y317083D01*

-X384162Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X386720Y321689D02*Y317083D01*

-X381603Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y344917D02*Y340311D01*

-X376485Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y321689D02*Y317083D01*

-G54D186*X392949Y306000D02*X393933D01*

-X392949Y311118D02*X393933D01*

-G54D188*X326686Y89905D02*X332196D01*

-X326686Y78095D02*X332196D01*

-G54D189*X356441Y76229D02*Y69930D01*

-X361441Y76229D02*Y69930D01*

-X366441Y76229D02*Y69930D01*

-G54D190*X371441Y109694D02*Y96308D01*

-G54D189*Y76229D02*Y69930D01*

-X376441Y76229D02*Y69930D01*

-X381441Y76229D02*Y69930D01*

-X386441Y76229D02*Y69930D01*

-G54D186*X305696Y110822D02*X306680D01*

-G54D191*X291938D02*X298438D01*

-X291938Y115822D02*X298438D01*

-G54D186*X305696Y115940D02*X306680D01*

-X304472Y136450D02*X305456D01*

-X304472Y141568D02*X305456D01*

-G54D191*X271438Y145822D02*X277938D01*

-X271438Y140822D02*X277938D01*

-X271438Y135822D02*X277938D01*

-X271438Y130822D02*X277938D01*

-G54D186*X235941Y141992D02*Y141008D01*

-X241059Y141992D02*Y141008D01*

-G54D191*X271438Y125822D02*X277938D01*

-X291938D02*X298438D01*

-X291938Y130822D02*X298438D01*

-X291938Y135822D02*X298438D01*

-X291938Y140822D02*X298438D01*

-X291938Y145822D02*X298438D01*

-X271438Y120822D02*X277938D01*

-X291938D02*X298438D01*

-X271438Y115822D02*X277938D01*

-X271438Y110822D02*X277938D01*

-G54D192*X253106Y279844D02*X256504D01*

-X253106Y277876D02*X256504D01*

-X253106Y275907D02*X256504D01*

-X253106Y273939D02*X256504D01*

-X253106Y271970D02*X256504D01*

-X253106Y270002D02*X256504D01*

-G54D186*X266000Y356992D02*Y356008D01*

-X260882Y356992D02*Y356008D01*

-G54D188*X245355Y356893D02*Y356107D01*

-X252441Y356893D02*Y356107D01*

-G54D192*X253106Y268033D02*X256504D01*

-X253106Y266065D02*X256504D01*

-X262477Y260093D02*Y256695D01*

-X264445Y260093D02*Y256695D01*

-X266414Y260093D02*Y256695D01*

-X268382Y260093D02*Y256695D01*

-X270351Y260093D02*Y256695D01*

-X272319Y260093D02*Y256695D01*

-X274288Y260093D02*Y256695D01*

-X276256Y260093D02*Y256695D01*

-X278225Y260093D02*Y256695D01*

-X280193Y260093D02*Y256695D01*

-X282162Y260093D02*Y256695D01*

-X284130Y260093D02*Y256695D01*

-X286099Y260093D02*Y256695D01*

-X288067Y260093D02*Y256695D01*

-X290036Y260093D02*Y256695D01*

-X292004Y260093D02*Y256695D01*

-X297976Y266066D02*X301374D01*

-X297976Y268034D02*X301374D01*

-X297976Y270003D02*X301374D01*

-X297976Y271971D02*X301374D01*

-X297976Y273940D02*X301374D01*

-X297976Y275908D02*X301374D01*

-X297976Y277877D02*X301374D01*

-X297976Y279845D02*X301374D01*

-X297976Y281814D02*X301374D01*

-X297976Y283782D02*X301374D01*

-X297976Y285751D02*X301374D01*

-X297976Y287719D02*X301374D01*

-X297976Y289688D02*X301374D01*

-X297976Y291656D02*X301374D01*

-X297976Y293625D02*X301374D01*

-X297976Y295593D02*X301374D01*

-G54D186*X432000Y70492D02*Y69508D01*

-X426882Y70492D02*Y69508D01*

-G54D188*X339686Y89905D02*X345196D01*

-X339686Y78095D02*X345196D01*

-X382941Y58394D02*Y57608D01*

-X390027Y58394D02*Y57608D01*

-G54D186*X377559Y57493D02*Y56509D01*

-X372441Y57493D02*Y56509D01*

-Y63493D02*Y62509D01*

-X367323Y63493D02*Y62509D01*

-X356323Y63493D02*Y62509D01*

-X361441Y63493D02*Y62509D01*

-X356323Y57493D02*Y56509D01*

-X361441Y57493D02*Y56509D01*

-X382323Y45493D02*Y44509D01*

-G54D188*X374048Y43914D02*X374834D01*

-G54D186*X387441Y45493D02*Y44509D01*

-Y51493D02*Y50509D01*

-X382323Y51493D02*Y50509D01*

-G54D188*X374048Y51000D02*X374834D01*

-G54D186*X246335Y297850D02*X247319D01*

-X269500Y310492D02*Y309508D01*

-X264382Y310492D02*Y309508D01*

-G54D192*X268381Y304963D02*Y301565D01*

-X266413Y304963D02*Y301565D01*

-X264444Y304963D02*Y301565D01*

-X262476Y304963D02*Y301565D01*

-G54D188*X245312Y349893D02*Y349107D01*

-Y342893D02*Y342107D01*

-X252398Y349893D02*Y349107D01*

-G54D186*X265957Y349992D02*Y349008D01*

-X260839Y349992D02*Y349008D01*

-G54D188*X245355Y335893D02*Y335107D01*

-X252441Y335893D02*Y335107D01*

-G54D186*X266000Y335992D02*Y335008D01*

-X260882Y335992D02*Y335008D01*

-X265957Y342992D02*Y342008D01*

-X260839Y342992D02*Y342008D01*

-G54D188*X252398Y342893D02*Y342107D01*

-G54D186*X168732Y356454D02*Y355470D01*

-X173850Y356454D02*Y355470D01*

-G54D191*X148799Y333829D02*X154799D01*

-X148799Y328829D02*X154799D01*

-X148799Y323829D02*X154799D01*

-X184799D02*X190799D01*

-X184799Y328829D02*X190799D01*

-X184799Y333829D02*X190799D01*

-G54D186*X197307Y323888D02*X198291D01*

-G54D191*X148799Y318829D02*X154799D01*

-X148799Y313829D02*X154799D01*

-X148799Y308829D02*X154799D01*

-X148799Y303829D02*X154799D01*

-X148799Y298829D02*X154799D01*

-G54D186*X140949Y334059D02*X141933D01*

-X140949Y328941D02*X141933D01*

-X141307Y308888D02*X142291D01*

-X140949Y323559D02*X141933D01*

-X140949Y318441D02*X141933D01*

-X141307Y303770D02*X142291D01*

-X246335Y292732D02*X247319D01*

-G54D193*X148299Y292229D02*X148899D01*

-X148299Y284429D02*X148899D01*

-X156499Y288329D02*X157099D01*

-G54D191*X184799Y298829D02*X190799D01*

-X184799Y303829D02*X190799D01*

-G54D186*X197307Y303888D02*X198291D01*

-G54D191*X184799Y308829D02*X190799D01*

-X184799Y313829D02*X190799D01*

-X184799Y318829D02*X190799D01*

-G54D186*X197307Y318770D02*X198291D01*

-X197307Y298770D02*X198291D01*

-X158453Y205862D02*Y204878D01*

-X163571Y205862D02*Y204878D01*

-X146571Y211862D02*Y210878D01*

-X151689Y211862D02*Y210878D01*

-G54D189*X160941Y231228D02*Y224929D01*

-G54D188*X157485Y212763D02*Y211977D01*

-X164571Y212763D02*Y211977D01*

-G54D186*X158382Y199992D02*Y199008D01*

-X163500Y199992D02*Y199008D01*

-G54D189*X145941Y231228D02*Y224929D01*

-X150941Y231228D02*Y224929D01*

-X155941Y231228D02*Y224929D01*

-G54D186*X146130Y217862D02*Y216878D01*

-X131882Y148492D02*Y147508D01*

-X137000Y148492D02*Y147508D01*

-G54D189*X130941Y231228D02*Y224929D01*

-X135941Y231228D02*Y224929D01*

-X140941Y231228D02*Y224929D01*

-G54D186*X141012Y217862D02*Y216878D01*

-X130453Y217862D02*Y216878D01*

-X135571Y217862D02*Y216878D01*

-X130453Y211862D02*Y210878D01*

-X135571Y211862D02*Y210878D01*

-G54D188*X151178Y198284D02*X151964D01*

-X151178Y205370D02*X151964D01*

-G54D194*X124831Y309514D02*X128768D01*

-X124831Y289829D02*X128768D01*

-G54D188*X104816Y243370D02*X110326D01*

-X104816Y231560D02*X110326D01*

-X116816Y243370D02*X122326D01*

-X116816Y231560D02*X122326D01*

-G54D190*X145941Y264693D02*Y251307D01*

-G54D188*X170048Y248543D02*X170834D01*

-X170048Y241457D02*X170834D01*

-G54D186*X170949Y231882D02*X171933D01*

-X170949Y237000D02*X171933D01*

-G54D188*X95548Y204457D02*X96334D01*

-X95548Y211543D02*X96334D01*

-G54D186*X102449Y216559D02*X103433D01*

-X102449Y211441D02*X103433D01*

-X241449Y130941D02*X242433D01*

-X241449Y136059D02*X242433D01*

-X236882Y112992D02*Y112008D01*

-X242000Y112992D02*Y112008D01*

-X241449Y124059D02*X242433D01*

-X241449Y118941D02*X242433D01*

-G54D191*X222941Y112500D02*X229441D01*

-X222941Y117500D02*X229441D01*

-X222941Y122500D02*X229441D01*

-X222941Y127500D02*X229441D01*

-X222941Y132500D02*X229441D01*

-X222941Y137500D02*X229441D01*

-X222941Y142500D02*X229441D01*

-G54D186*X213882Y148992D02*Y148008D01*

-X219000Y148992D02*Y148008D01*

-X189949Y136059D02*X190933D01*

-X195500Y141992D02*Y141008D01*

-X190382Y141992D02*Y141008D01*

-X159949Y136059D02*X160933D01*

-X155382Y141992D02*Y141008D01*

-X160500Y141992D02*Y141008D01*

-X189949Y124059D02*X190933D01*

-X189949Y118941D02*X190933D01*

-X195475Y112832D02*Y111848D01*

-X190357Y112832D02*Y111848D01*

-G54D191*X202441Y142500D02*X208941D01*

-X202441Y137500D02*X208941D01*

-X202441Y132500D02*X208941D01*

-X202441Y127500D02*X208941D01*

-X202441Y122500D02*X208941D01*

-X202441Y117500D02*X208941D01*

-X202441Y112500D02*X208941D01*

-G54D186*X155382Y112992D02*Y112008D01*

-X160500Y112992D02*Y112008D01*

-X159949Y124059D02*X160933D01*

-X159949Y118941D02*X160933D01*

-X189949Y130941D02*X190933D01*

-X108449D02*X109433D01*

-X159949D02*X160933D01*

-G54D191*X141166Y112340D02*X147666D01*

-X141166Y117340D02*X147666D01*

-X141166Y122340D02*X147666D01*

-X141166Y127340D02*X147666D01*

-G54D186*X108449Y124059D02*X109433D01*

-X108449Y118941D02*X109433D01*

-G54D191*X141166Y132340D02*X147666D01*

-X141166Y137340D02*X147666D01*

-X141166Y142340D02*X147666D01*

-G54D186*X113975Y141832D02*Y140848D01*

-X108857Y141832D02*Y140848D01*

-X108449Y136059D02*X109433D01*

-G54D191*X120666Y142340D02*X127166D01*

-X120666Y137340D02*X127166D01*

-X120666Y132340D02*X127166D01*

-X120666Y127340D02*X127166D01*

-X120666Y122340D02*X127166D01*

-X120666Y117340D02*X127166D01*

-X120666Y112340D02*X127166D01*

-G54D186*X114000Y112992D02*Y112008D01*

-X108882Y112992D02*Y112008D01*

-X296748Y247270D02*X297732D01*

-G54D188*X290048Y244914D02*X290834D01*

-G54D186*X296748Y252388D02*X297732D01*

-G54D188*X290048Y252000D02*X290834D01*

-G54D186*X243681Y261321D02*Y260337D01*

-G54D188*X239154Y268222D02*Y267436D01*

-X246240Y268222D02*Y267436D01*

-G54D186*X248799Y261321D02*Y260337D01*

-G54D195*X296453Y340007D02*Y337349D01*

-X285430Y340007D02*Y337349D01*

-G54D186*X277449Y342559D02*X278433D01*

-X277449Y337441D02*X278433D01*

-G54D195*X296453Y318650D02*Y315992D01*

-G54D186*X303365Y324772D02*X304349D01*

-X303365Y319654D02*X304349D01*

-X307462Y295038D02*X308446D01*

-X307462Y300156D02*X308446D01*

-G54D192*X292003Y304963D02*Y301565D01*

-G54D195*X285430Y318650D02*Y315992D01*

-G54D192*X290035Y304963D02*Y301565D01*

-X288066Y304963D02*Y301565D01*

-X286098Y304963D02*Y301565D01*

-X284129Y304963D02*Y301565D01*

-X282161Y304963D02*Y301565D01*

-X280192Y304963D02*Y301565D01*

-X278224Y304963D02*Y301565D01*

-X276255Y304963D02*Y301565D01*

-X274287Y304963D02*Y301565D01*

-X272318Y304963D02*Y301565D01*

-X270350Y304963D02*Y301565D01*

-X253106Y295592D02*X256504D01*

-X253106Y293624D02*X256504D01*

-X253106Y291655D02*X256504D01*

-X253106Y289687D02*X256504D01*

-X253106Y287718D02*X256504D01*

-X253106Y285750D02*X256504D01*

-X253106Y283781D02*X256504D01*

-X253106Y281813D02*X256504D01*

-G54D196*X386441Y163000D03*

-X400441Y194000D03*

-X389441Y184000D03*

-X400441Y189000D03*

-G54D197*X386023Y157813D03*

-X398441Y173000D03*

-G54D196*X393441Y208000D03*

-G54D197*X358941Y208500D03*

-G54D196*X384162Y188000D03*

-X458441Y195000D03*

-Y164000D03*

-X372441Y170386D03*

-G54D197*X337441Y163000D03*

-X377347Y162178D03*

-X304584Y207483D03*

-X305280Y204383D03*

-X260941Y191500D03*

-X269441Y198500D03*

-X243941Y202000D03*

-X245863Y191524D03*

-G54D196*X432324Y111000D03*

-X446441Y102000D03*

-X434882Y75000D03*

-G54D198*X440941Y123000D03*

-G54D196*X423441Y75000D03*

-G54D197*X434449Y56500D03*

-X440449D03*

-X354441Y85000D03*

-Y89500D03*

-Y95500D03*

-Y101500D03*

-Y107500D03*

-Y113500D03*

-Y119500D03*

-X245441Y127500D03*

-X309441Y141568D03*

-Y136450D03*

-X310941Y115940D03*

-X305696Y107500D03*

-X387441Y119500D03*

-Y113500D03*

-Y107500D03*

-Y101500D03*

-Y95500D03*

-Y89500D03*

-Y85000D03*

-X390941Y76000D03*

-Y71500D03*

-X391441Y66000D03*

-X394941Y58500D03*

-X393941Y51500D03*

-X392441Y45000D03*

-G54D196*X387441Y326000D03*

-X393441Y355000D03*

-X386720Y282000D03*

-X393441Y327000D03*

-X384162Y306000D03*

-X385941Y354500D03*

-X458441Y375000D03*

-X383662Y378500D03*

-X397441Y373000D03*

-X397941Y367441D03*

-G54D197*X385941Y366000D03*

-G54D196*X458441Y345000D03*

-Y315000D03*

-Y285000D03*

-X398441Y314000D03*

-Y309000D03*

-G54D197*Y291000D03*

-G54D196*X372441Y290689D03*

-Y351189D03*

-G54D197*X339837Y341827D03*

-X353390Y339521D03*

-G54D196*X375441Y235000D03*

-G54D197*X356441Y233000D03*

-X338441Y224192D03*

-Y230124D03*

-G54D196*X384512Y258000D03*

-G54D197*X371602Y260228D03*

-G54D196*X458441Y254000D03*

-Y225000D03*

-X387070Y235000D03*

-X398441Y248000D03*

-Y253000D03*

-G54D197*X396441Y235000D03*

-X392188Y239000D03*

-X388207Y247280D03*

-G54D178*X307716Y275075D03*

-X308992Y271971D03*

-X308872Y266522D03*

-X287917Y307829D03*

-X293902Y282263D03*

-X296779Y304963D03*

-X295937Y243628D03*

-G54D197*X304706Y210583D03*

-G54D178*X296727Y256227D03*

-X312157Y300156D03*

-X312122Y295038D03*

-X303365Y330000D03*

-X285430Y325000D03*

-X302941Y340007D03*

-X245557Y279508D03*

-X242456Y293543D03*

-X254740Y298329D03*

-X242168Y298800D03*

-G54D197*X230441Y293000D03*

-X240391Y278564D03*

-G54D178*X266413Y296594D03*

-X263240Y295329D03*

-X262740Y291829D03*

-X260341Y284249D03*

-X264034Y282931D03*

-G54D197*X246731Y303031D03*

-G54D178*X262750Y268772D03*

-X253101Y261836D03*

-X239302Y262235D03*

-G54D197*X221884Y254000D03*

-X224441Y252000D03*

-X225441Y249000D03*

-X224441Y244000D03*

-X230441Y247000D03*

-G54D178*X269653Y298631D03*

-G54D197*X263441Y320000D03*

-G54D178*X268941Y314000D03*

-X273229Y298582D03*

-X278225Y279602D03*

-X278207Y298612D03*

-X277174Y308219D03*

-X277449Y347500D03*

-G54D197*X260568Y316997D03*

-X261502Y307367D03*

-X279441Y285000D03*

-X270441Y336000D03*

-X249101Y328793D03*

-X270441Y342500D03*

-Y349500D03*

-Y357000D03*

-X246941Y238000D03*

-X242441Y229500D03*

-X246441D03*

-X250941D03*

-X236441Y235500D03*

-X224941Y220500D03*

-X225441Y226500D03*

-X224941Y235500D03*

-X269941Y231500D03*

-X251941Y210500D03*

-X163941Y127500D03*

-X193390D03*

-X152441Y121500D03*

-X151941Y132000D03*

-X112222Y127340D03*

-X114441Y121500D03*

-X115441Y132500D03*

-X127941Y148000D03*

-X141441D03*

-X208941D03*

-X223941D03*

-X198441Y122500D03*

-X234441D03*

-X195441Y133000D03*

-X235941D03*

-X128941Y274500D03*

-Y268500D03*

-Y262500D03*

-Y255000D03*

-Y248500D03*

-Y242500D03*

-X162441Y248500D03*

-X161941Y255000D03*

-X181941Y258500D03*

-X162441Y262500D03*

-X198441D03*

-X219441Y272500D03*

-X217441Y279000D03*

-X198441Y269500D03*

-X205441Y277000D03*

-X220729Y265580D03*

-X220441Y259500D03*

-X218441Y261500D03*

-X162441Y242500D03*

-X165941Y231000D03*

-Y226500D03*

-Y220500D03*

-X169441Y214000D03*

-Y208500D03*

-Y201500D03*

-X185441Y228000D03*

-X212941Y238000D03*

-X203941Y237500D03*

-X193941Y237000D03*

-X177441Y228000D03*

-Y217500D03*

-X104441Y204500D03*

-X100941D03*

-X185441Y217500D03*

-X193941Y212500D03*

-X202441D03*

-X210441D03*

-X220441Y215000D03*

-X162941Y268500D03*

-Y274500D03*

-X158441Y323829D03*

-Y328829D03*

-Y326500D03*

-X141307Y300883D03*

-X197441Y314500D03*

-X195441Y311500D03*

-X197441Y308500D03*

-X124831Y302385D03*

-X135441Y338500D03*

-X126441Y340500D03*

-X111941Y341000D03*

-Y357500D03*

-X121941D03*

-X130941D03*

-X135441Y335000D03*

-X111941Y334000D03*

-X117941D03*

-X126441D03*

-X139941Y338000D03*

-X142441Y357500D03*

-Y349500D03*

-X153941Y338000D03*

-X154941Y345500D03*

-X149441Y349500D03*

-X178887Y342818D03*

-X168732Y350833D03*

-X191363Y344449D03*

-X229818Y354988D03*

-G54D176*G54D197*G54D176*G54D197*G54D176*G54D197*G54D199*G54D197*G54D176*G54D197*G54D176*G54D197*G54D176*G54D197*G54D176*G54D197*G54D176*G54D197*G54D176*G54D197*G54D176*M02*

diff --git a/bbb_cape/schematic/gerbers/20131204/cape.topmask.gbr b/bbb_cape/schematic/gerbers/20131204/cape.topmask.gbr
deleted file mode 100644
index d66f97a..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.topmask.gbr
+++ /dev/null
@@ -1,724 +0,0 @@
-G04 start of page 8 for group -4063 idx -4063 *

-G04 Title: 971 BBB Cape, componentmask *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Thu Dec  5 05:46:54 2013 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNTOPMASK*%

-%ADD272R,0.0808X0.0808*%

-%ADD271R,0.0987X0.0987*%

-%ADD270R,0.0400X0.0400*%

-%ADD269R,0.0140X0.0140*%

-%ADD268R,0.0300X0.0300*%

-%ADD267R,0.2166X0.2166*%

-%ADD266R,0.0410X0.0410*%

-%ADD265R,0.0572X0.0572*%

-%ADD264R,0.0230X0.0230*%

-%ADD263R,0.0355X0.0355*%

-%ADD262C,0.2300*%

-%ADD261C,0.0860*%

-%ADD260C,0.2400*%

-%ADD259C,0.1890*%

-%ADD258C,0.0001*%

-%ADD257C,0.0710*%

-G54D257*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D258*G36*

-X403450Y357550D02*Y350450D01*

-X410550D01*

-Y357550D01*

-X403450D01*

-G37*

-G54D259*X345799Y357329D03*

-G54D260*X315799Y337329D03*

-G54D259*X85799Y369829D03*

-G54D261*X105799Y374829D03*

-G54D258*G36*

-X101499Y369129D02*Y360529D01*

-X110099D01*

-Y369129D01*

-X101499D01*

-G37*

-G54D261*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D258*G36*

-X449950Y267550D02*Y260450D01*

-X457050D01*

-Y267550D01*

-X449950D01*

-G37*

-G36*

-Y207550D02*Y200450D01*

-X457050D01*

-Y207550D01*

-X449950D01*

-G37*

-G36*

-Y177550D02*Y170450D01*

-X457050D01*

-Y177550D01*

-X449950D01*

-G37*

-G54D257*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D258*G36*

-X449950Y237550D02*Y230450D01*

-X457050D01*

-Y237550D01*

-X449950D01*

-G37*

-G54D257*X463500Y234000D03*

-X473500D03*

-G54D258*G36*

-X449950Y147550D02*Y140450D01*

-X457050D01*

-Y147550D01*

-X449950D01*

-G37*

-G36*

-Y117550D02*Y110450D01*

-X457050D01*

-Y117550D01*

-X449950D01*

-G37*

-G36*

-Y87550D02*Y80450D01*

-X457050D01*

-Y87550D01*

-X449950D01*

-G37*

-G36*

-Y57550D02*Y50450D01*

-X457050D01*

-Y57550D01*

-X449950D01*

-G37*

-G54D257*X463500Y54000D03*

-X473500D03*

-G54D258*G36*

-X449950Y327550D02*Y320450D01*

-X457050D01*

-Y327550D01*

-X449950D01*

-G37*

-G54D257*X463500Y324000D03*

-X473500D03*

-G54D258*G36*

-X449950Y297550D02*Y290450D01*

-X457050D01*

-Y297550D01*

-X449950D01*

-G37*

-G54D257*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D258*G36*

-X308891Y252550D02*Y245450D01*

-X315991D01*

-Y252550D01*

-X308891D01*

-G37*

-G54D257*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D262*X345799Y192329D03*

-G54D259*X353000Y150000D03*

-G54D258*G36*

-X449950Y387550D02*Y380450D01*

-X457050D01*

-Y387550D01*

-X449950D01*

-G37*

-G54D257*X463500Y384000D03*

-X473500D03*

-G54D258*G36*

-X403450Y387550D02*Y380450D01*

-X410550D01*

-Y387550D01*

-X403450D01*

-G37*

-G36*

-Y297550D02*Y290450D01*

-X410550D01*

-Y297550D01*

-X403450D01*

-G37*

-G36*

-Y327550D02*Y320450D01*

-X410550D01*

-Y327550D01*

-X403450D01*

-G37*

-G54D257*X417000Y324000D03*

-X427000D03*

-G54D258*G36*

-X449950Y357550D02*Y350450D01*

-X457050D01*

-Y357550D01*

-X449950D01*

-G37*

-G54D257*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D258*G36*

-X403450Y177550D02*Y170450D01*

-X410550D01*

-Y177550D01*

-X403450D01*

-G37*

-G36*

-Y207550D02*Y200450D01*

-X410550D01*

-Y207550D01*

-X403450D01*

-G37*

-G36*

-Y237550D02*Y230450D01*

-X410550D01*

-Y237550D01*

-X403450D01*

-G37*

-G36*

-Y267550D02*Y260450D01*

-X410550D01*

-Y267550D01*

-X403450D01*

-G37*

-G54D257*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D258*G36*

-X201891Y51050D02*Y43950D01*

-X208991D01*

-Y51050D01*

-X201891D01*

-G37*

-G54D257*X205441Y57500D03*

-Y67500D03*

-G54D258*G36*

-X231891Y51050D02*Y43950D01*

-X238991D01*

-Y51050D01*

-X231891D01*

-G37*

-G54D257*X235441Y57500D03*

-Y67500D03*

-G54D258*G36*

-X261891Y51050D02*Y43950D01*

-X268991D01*

-Y51050D01*

-X261891D01*

-G37*

-G36*

-X171891D02*Y43950D01*

-X178991D01*

-Y51050D01*

-X171891D01*

-G37*

-G36*

-X141891D02*Y43950D01*

-X148991D01*

-Y51050D01*

-X141891D01*

-G37*

-G36*

-X111891D02*Y43950D01*

-X118991D01*

-Y51050D01*

-X111891D01*

-G37*

-G36*

-X81891D02*Y43950D01*

-X88991D01*

-Y51050D01*

-X81891D01*

-G37*

-G54D257*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D258*G36*

-X291891Y51050D02*Y43950D01*

-X298991D01*

-Y51050D01*

-X291891D01*

-G37*

-G54D257*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D259*X85799Y179829D03*

-G54D261*X105799Y184829D03*

-G54D258*G36*

-X101499Y179129D02*Y170529D01*

-X110099D01*

-Y179129D01*

-X101499D01*

-G37*

-G54D261*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D258*G36*

-X81891Y243550D02*Y236450D01*

-X88991D01*

-Y243550D01*

-X81891D01*

-G37*

-G54D257*X85441Y230000D03*

-Y220000D03*

-G54D261*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D258*G36*

-X191499Y201629D02*Y193029D01*

-X200099D01*

-Y201629D01*

-X191499D01*

-G37*

-G54D261*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D263*X394949Y188441D02*X395933D01*

-X394949Y193559D02*X395933D01*

-G54D264*X394397Y203689D02*Y199083D01*

-X376485Y203689D02*Y199083D01*

-X379044Y203689D02*Y199083D01*

-X381603Y203689D02*Y199083D01*

-X384162Y203689D02*Y199083D01*

-X386720Y203689D02*Y199083D01*

-X389279Y203689D02*Y199083D01*

-X391838Y203689D02*Y199083D01*

-G54D263*X392643Y247056D02*X393627D01*

-X392643Y252174D02*X393627D01*

-G54D264*X394397Y226917D02*Y222311D01*

-X391838Y226917D02*Y222311D01*

-X389279Y226917D02*Y222311D01*

-X386720Y226917D02*Y222311D01*

-G54D265*X397048Y89543D02*X397834D01*

-X397048Y82457D02*X397834D01*

-G54D263*X396949Y70882D02*X397933D01*

-X396949Y76000D02*X397933D01*

-G54D264*X384162Y226917D02*Y222311D01*

-X381603Y226917D02*Y222311D01*

-X379044Y226917D02*Y222311D01*

-X376485Y226917D02*Y222311D01*

-G54D263*X392949Y365941D02*X393933D01*

-X392949Y371059D02*X393933D01*

-G54D264*X394397Y344917D02*Y340311D01*

-X391838Y344917D02*Y340311D01*

-X389279Y344917D02*Y340311D01*

-X386720Y344917D02*Y340311D01*

-X389279Y321689D02*Y317083D01*

-X391838Y321689D02*Y317083D01*

-X394397Y321689D02*Y317083D01*

-X384162Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X386720Y321689D02*Y317083D01*

-X381603Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y344917D02*Y340311D01*

-X376485Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y321689D02*Y317083D01*

-G54D263*X392949Y306000D02*X393933D01*

-X392949Y311118D02*X393933D01*

-G54D265*X326686Y89905D02*X332196D01*

-X326686Y78095D02*X332196D01*

-G54D266*X356441Y76229D02*Y69930D01*

-X361441Y76229D02*Y69930D01*

-X366441Y76229D02*Y69930D01*

-G54D267*X371441Y109694D02*Y96308D01*

-G54D266*Y76229D02*Y69930D01*

-X376441Y76229D02*Y69930D01*

-X381441Y76229D02*Y69930D01*

-X386441Y76229D02*Y69930D01*

-G54D263*X305696Y110822D02*X306680D01*

-G54D268*X291938D02*X298438D01*

-X291938Y115822D02*X298438D01*

-G54D263*X305696Y115940D02*X306680D01*

-X304472Y136450D02*X305456D01*

-X304472Y141568D02*X305456D01*

-G54D268*X271438Y145822D02*X277938D01*

-X271438Y140822D02*X277938D01*

-X271438Y135822D02*X277938D01*

-X271438Y130822D02*X277938D01*

-G54D263*X235941Y141992D02*Y141008D01*

-X241059Y141992D02*Y141008D01*

-G54D268*X271438Y125822D02*X277938D01*

-X291938D02*X298438D01*

-X291938Y130822D02*X298438D01*

-X291938Y135822D02*X298438D01*

-X291938Y140822D02*X298438D01*

-X291938Y145822D02*X298438D01*

-X271438Y120822D02*X277938D01*

-X291938D02*X298438D01*

-X271438Y115822D02*X277938D01*

-X271438Y110822D02*X277938D01*

-G54D269*X253106Y279844D02*X256504D01*

-X253106Y277876D02*X256504D01*

-X253106Y275907D02*X256504D01*

-X253106Y273939D02*X256504D01*

-X253106Y271970D02*X256504D01*

-X253106Y270002D02*X256504D01*

-G54D263*X266000Y356992D02*Y356008D01*

-X260882Y356992D02*Y356008D01*

-G54D265*X245355Y356893D02*Y356107D01*

-X252441Y356893D02*Y356107D01*

-G54D269*X253106Y268033D02*X256504D01*

-X253106Y266065D02*X256504D01*

-X262477Y260093D02*Y256695D01*

-X264445Y260093D02*Y256695D01*

-X266414Y260093D02*Y256695D01*

-X268382Y260093D02*Y256695D01*

-X270351Y260093D02*Y256695D01*

-X272319Y260093D02*Y256695D01*

-X274288Y260093D02*Y256695D01*

-X276256Y260093D02*Y256695D01*

-X278225Y260093D02*Y256695D01*

-X280193Y260093D02*Y256695D01*

-X282162Y260093D02*Y256695D01*

-X284130Y260093D02*Y256695D01*

-X286099Y260093D02*Y256695D01*

-X288067Y260093D02*Y256695D01*

-X290036Y260093D02*Y256695D01*

-X292004Y260093D02*Y256695D01*

-X297976Y266066D02*X301374D01*

-X297976Y268034D02*X301374D01*

-X297976Y270003D02*X301374D01*

-X297976Y271971D02*X301374D01*

-X297976Y273940D02*X301374D01*

-X297976Y275908D02*X301374D01*

-X297976Y277877D02*X301374D01*

-X297976Y279845D02*X301374D01*

-X297976Y281814D02*X301374D01*

-X297976Y283782D02*X301374D01*

-X297976Y285751D02*X301374D01*

-X297976Y287719D02*X301374D01*

-X297976Y289688D02*X301374D01*

-X297976Y291656D02*X301374D01*

-X297976Y293625D02*X301374D01*

-X297976Y295593D02*X301374D01*

-G54D263*X432000Y70492D02*Y69508D01*

-X426882Y70492D02*Y69508D01*

-G54D265*X339686Y89905D02*X345196D01*

-X339686Y78095D02*X345196D01*

-X382941Y58394D02*Y57608D01*

-X390027Y58394D02*Y57608D01*

-G54D263*X377559Y57493D02*Y56509D01*

-X372441Y57493D02*Y56509D01*

-Y63493D02*Y62509D01*

-X367323Y63493D02*Y62509D01*

-X356323Y63493D02*Y62509D01*

-X361441Y63493D02*Y62509D01*

-X356323Y57493D02*Y56509D01*

-X361441Y57493D02*Y56509D01*

-X382323Y45493D02*Y44509D01*

-G54D265*X374048Y43914D02*X374834D01*

-G54D263*X387441Y45493D02*Y44509D01*

-Y51493D02*Y50509D01*

-X382323Y51493D02*Y50509D01*

-G54D265*X374048Y51000D02*X374834D01*

-G54D263*X246335Y297850D02*X247319D01*

-X269500Y310492D02*Y309508D01*

-X264382Y310492D02*Y309508D01*

-G54D269*X268381Y304963D02*Y301565D01*

-X266413Y304963D02*Y301565D01*

-X264444Y304963D02*Y301565D01*

-X262476Y304963D02*Y301565D01*

-G54D265*X245312Y349893D02*Y349107D01*

-Y342893D02*Y342107D01*

-X252398Y349893D02*Y349107D01*

-G54D263*X265957Y349992D02*Y349008D01*

-X260839Y349992D02*Y349008D01*

-G54D265*X245355Y335893D02*Y335107D01*

-X252441Y335893D02*Y335107D01*

-G54D263*X266000Y335992D02*Y335008D01*

-X260882Y335992D02*Y335008D01*

-X265957Y342992D02*Y342008D01*

-X260839Y342992D02*Y342008D01*

-G54D265*X252398Y342893D02*Y342107D01*

-G54D263*X168732Y356454D02*Y355470D01*

-X173850Y356454D02*Y355470D01*

-G54D268*X148799Y333829D02*X154799D01*

-X148799Y328829D02*X154799D01*

-X148799Y323829D02*X154799D01*

-X184799D02*X190799D01*

-X184799Y328829D02*X190799D01*

-X184799Y333829D02*X190799D01*

-G54D263*X197307Y323888D02*X198291D01*

-G54D268*X148799Y318829D02*X154799D01*

-X148799Y313829D02*X154799D01*

-X148799Y308829D02*X154799D01*

-X148799Y303829D02*X154799D01*

-X148799Y298829D02*X154799D01*

-G54D263*X140949Y334059D02*X141933D01*

-X140949Y328941D02*X141933D01*

-X141307Y308888D02*X142291D01*

-X140949Y323559D02*X141933D01*

-X140949Y318441D02*X141933D01*

-X141307Y303770D02*X142291D01*

-X246335Y292732D02*X247319D01*

-G54D270*X148299Y292229D02*X148899D01*

-X148299Y284429D02*X148899D01*

-X156499Y288329D02*X157099D01*

-G54D268*X184799Y298829D02*X190799D01*

-X184799Y303829D02*X190799D01*

-G54D263*X197307Y303888D02*X198291D01*

-G54D268*X184799Y308829D02*X190799D01*

-X184799Y313829D02*X190799D01*

-X184799Y318829D02*X190799D01*

-G54D263*X197307Y318770D02*X198291D01*

-X197307Y298770D02*X198291D01*

-X158453Y205862D02*Y204878D01*

-X163571Y205862D02*Y204878D01*

-X146571Y211862D02*Y210878D01*

-X151689Y211862D02*Y210878D01*

-G54D266*X160941Y231228D02*Y224929D01*

-G54D265*X157485Y212763D02*Y211977D01*

-X164571Y212763D02*Y211977D01*

-G54D263*X158382Y199992D02*Y199008D01*

-X163500Y199992D02*Y199008D01*

-G54D266*X145941Y231228D02*Y224929D01*

-X150941Y231228D02*Y224929D01*

-X155941Y231228D02*Y224929D01*

-G54D263*X146130Y217862D02*Y216878D01*

-X131882Y148492D02*Y147508D01*

-X137000Y148492D02*Y147508D01*

-G54D266*X130941Y231228D02*Y224929D01*

-X135941Y231228D02*Y224929D01*

-X140941Y231228D02*Y224929D01*

-G54D263*X141012Y217862D02*Y216878D01*

-X130453Y217862D02*Y216878D01*

-X135571Y217862D02*Y216878D01*

-X130453Y211862D02*Y210878D01*

-X135571Y211862D02*Y210878D01*

-G54D265*X151178Y198284D02*X151964D01*

-X151178Y205370D02*X151964D01*

-G54D271*X124831Y309514D02*X128768D01*

-X124831Y289829D02*X128768D01*

-G54D265*X104816Y243370D02*X110326D01*

-X104816Y231560D02*X110326D01*

-X116816Y243370D02*X122326D01*

-X116816Y231560D02*X122326D01*

-G54D267*X145941Y264693D02*Y251307D01*

-G54D265*X170048Y248543D02*X170834D01*

-X170048Y241457D02*X170834D01*

-G54D263*X170949Y231882D02*X171933D01*

-X170949Y237000D02*X171933D01*

-G54D265*X95548Y204457D02*X96334D01*

-X95548Y211543D02*X96334D01*

-G54D263*X102449Y216559D02*X103433D01*

-X102449Y211441D02*X103433D01*

-X241449Y130941D02*X242433D01*

-X241449Y136059D02*X242433D01*

-X236882Y112992D02*Y112008D01*

-X242000Y112992D02*Y112008D01*

-X241449Y124059D02*X242433D01*

-X241449Y118941D02*X242433D01*

-G54D268*X222941Y112500D02*X229441D01*

-X222941Y117500D02*X229441D01*

-X222941Y122500D02*X229441D01*

-X222941Y127500D02*X229441D01*

-X222941Y132500D02*X229441D01*

-X222941Y137500D02*X229441D01*

-X222941Y142500D02*X229441D01*

-G54D263*X213882Y148992D02*Y148008D01*

-X219000Y148992D02*Y148008D01*

-X189949Y136059D02*X190933D01*

-X195500Y141992D02*Y141008D01*

-X190382Y141992D02*Y141008D01*

-X159949Y136059D02*X160933D01*

-X155382Y141992D02*Y141008D01*

-X160500Y141992D02*Y141008D01*

-X189949Y124059D02*X190933D01*

-X189949Y118941D02*X190933D01*

-X195475Y112832D02*Y111848D01*

-X190357Y112832D02*Y111848D01*

-G54D268*X202441Y142500D02*X208941D01*

-X202441Y137500D02*X208941D01*

-X202441Y132500D02*X208941D01*

-X202441Y127500D02*X208941D01*

-X202441Y122500D02*X208941D01*

-X202441Y117500D02*X208941D01*

-X202441Y112500D02*X208941D01*

-G54D263*X155382Y112992D02*Y112008D01*

-X160500Y112992D02*Y112008D01*

-X159949Y124059D02*X160933D01*

-X159949Y118941D02*X160933D01*

-X189949Y130941D02*X190933D01*

-X108449D02*X109433D01*

-X159949D02*X160933D01*

-G54D268*X141166Y112340D02*X147666D01*

-X141166Y117340D02*X147666D01*

-X141166Y122340D02*X147666D01*

-X141166Y127340D02*X147666D01*

-G54D263*X108449Y124059D02*X109433D01*

-X108449Y118941D02*X109433D01*

-G54D268*X141166Y132340D02*X147666D01*

-X141166Y137340D02*X147666D01*

-X141166Y142340D02*X147666D01*

-G54D263*X113975Y141832D02*Y140848D01*

-X108857Y141832D02*Y140848D01*

-X108449Y136059D02*X109433D01*

-G54D268*X120666Y142340D02*X127166D01*

-X120666Y137340D02*X127166D01*

-X120666Y132340D02*X127166D01*

-X120666Y127340D02*X127166D01*

-X120666Y122340D02*X127166D01*

-X120666Y117340D02*X127166D01*

-X120666Y112340D02*X127166D01*

-G54D263*X114000Y112992D02*Y112008D01*

-X108882Y112992D02*Y112008D01*

-X296748Y247270D02*X297732D01*

-G54D265*X290048Y244914D02*X290834D01*

-G54D263*X296748Y252388D02*X297732D01*

-G54D265*X290048Y252000D02*X290834D01*

-G54D263*X243681Y261321D02*Y260337D01*

-G54D265*X239154Y268222D02*Y267436D01*

-X246240Y268222D02*Y267436D01*

-G54D263*X248799Y261321D02*Y260337D01*

-G54D272*X296453Y340007D02*Y337349D01*

-X285430Y340007D02*Y337349D01*

-G54D263*X277449Y342559D02*X278433D01*

-X277449Y337441D02*X278433D01*

-G54D272*X296453Y318650D02*Y315992D01*

-G54D263*X303365Y324772D02*X304349D01*

-X303365Y319654D02*X304349D01*

-X307462Y295038D02*X308446D01*

-X307462Y300156D02*X308446D01*

-G54D269*X292003Y304963D02*Y301565D01*

-G54D272*X285430Y318650D02*Y315992D01*

-G54D269*X290035Y304963D02*Y301565D01*

-X288066Y304963D02*Y301565D01*

-X286098Y304963D02*Y301565D01*

-X284129Y304963D02*Y301565D01*

-X282161Y304963D02*Y301565D01*

-X280192Y304963D02*Y301565D01*

-X278224Y304963D02*Y301565D01*

-X276255Y304963D02*Y301565D01*

-X274287Y304963D02*Y301565D01*

-X272318Y304963D02*Y301565D01*

-X270350Y304963D02*Y301565D01*

-X253106Y295592D02*X256504D01*

-X253106Y293624D02*X256504D01*

-X253106Y291655D02*X256504D01*

-X253106Y289687D02*X256504D01*

-X253106Y287718D02*X256504D01*

-X253106Y285750D02*X256504D01*

-X253106Y283781D02*X256504D01*

-X253106Y281813D02*X256504D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20131204/cape.toppaste.gbr b/bbb_cape/schematic/gerbers/20131204/cape.toppaste.gbr
deleted file mode 100644
index d9aadea..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.toppaste.gbr
+++ /dev/null
@@ -1,351 +0,0 @@
-G04 start of page 12 for group -4015 idx -4015 *

-G04 Title: 971 BBB Cape, toppaste *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Thu Dec  5 05:46:54 2013 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNTOPPASTE*%

-%ADD306R,0.0110X0.0110*%

-%ADD305R,0.2106X0.2106*%

-%ADD304R,0.0350X0.0350*%

-%ADD303R,0.0748X0.0748*%

-%ADD302R,0.0948X0.0948*%

-%ADD301R,0.0200X0.0200*%

-%ADD300R,0.0340X0.0340*%

-%ADD299R,0.0512X0.0512*%

-%ADD298R,0.0130X0.0130*%

-%ADD297R,0.0295X0.0295*%

-G54D297*X394949Y188441D02*X395933D01*

-X394949Y193559D02*X395933D01*

-X432000Y70492D02*Y69508D01*

-X426882Y70492D02*Y69508D01*

-X392643Y247056D02*X393627D01*

-X392643Y252174D02*X393627D01*

-X392949Y365941D02*X393933D01*

-X392949Y371059D02*X393933D01*

-X392949Y306000D02*X393933D01*

-X392949Y311118D02*X393933D01*

-G54D298*X394397Y226917D02*Y222311D01*

-X391838Y226917D02*Y222311D01*

-X389279Y226917D02*Y222311D01*

-X386720Y226917D02*Y222311D01*

-X384162Y226917D02*Y222311D01*

-X381603Y226917D02*Y222311D01*

-X379044Y226917D02*Y222311D01*

-X376485Y226917D02*Y222311D01*

-Y203689D02*Y199083D01*

-X379044Y203689D02*Y199083D01*

-X381603Y203689D02*Y199083D01*

-X384162Y203689D02*Y199083D01*

-X386720Y203689D02*Y199083D01*

-X389279Y203689D02*Y199083D01*

-X391838Y203689D02*Y199083D01*

-X394397Y203689D02*Y199083D01*

-G54D297*X296748Y247270D02*X297732D01*

-X296748Y252388D02*X297732D01*

-X243681Y261321D02*Y260337D01*

-X248799Y261321D02*Y260337D01*

-X246335Y297850D02*X247319D01*

-X246335Y292732D02*X247319D01*

-X269500Y310492D02*Y309508D01*

-X264382Y310492D02*Y309508D01*

-G54D299*X239154Y268222D02*Y267436D01*

-X246240Y268222D02*Y267436D01*

-X290048Y244914D02*X290834D01*

-X290048Y252000D02*X290834D01*

-G54D297*X168732Y356454D02*Y355470D01*

-X173850Y356454D02*Y355470D01*

-G54D300*X148299Y292229D02*X148899D01*

-X148299Y284429D02*X148899D01*

-X156499Y288329D02*X157099D01*

-G54D301*X148799Y333829D02*X154799D01*

-X148799Y328829D02*X154799D01*

-X148799Y323829D02*X154799D01*

-X148799Y318829D02*X154799D01*

-X148799Y313829D02*X154799D01*

-X148799Y308829D02*X154799D01*

-X148799Y303829D02*X154799D01*

-X148799Y298829D02*X154799D01*

-X184799D02*X190799D01*

-X184799Y303829D02*X190799D01*

-X184799Y308829D02*X190799D01*

-X184799Y313829D02*X190799D01*

-X184799Y318829D02*X190799D01*

-X184799Y323829D02*X190799D01*

-X184799Y328829D02*X190799D01*

-X184799Y333829D02*X190799D01*

-G54D297*X197307Y323888D02*X198291D01*

-X197307Y318770D02*X198291D01*

-X140949Y334059D02*X141933D01*

-X140949Y328941D02*X141933D01*

-X197307Y303888D02*X198291D01*

-X197307Y298770D02*X198291D01*

-X141307Y303770D02*X142291D01*

-X141307Y308888D02*X142291D01*

-G54D302*X124831Y309514D02*X128768D01*

-X124831Y289829D02*X128768D01*

-G54D303*X296453Y340007D02*Y337349D01*

-Y318650D02*Y315992D01*

-X285430Y318650D02*Y315992D01*

-Y340007D02*Y337349D01*

-G54D297*X303365Y324772D02*X304349D01*

-X303365Y319654D02*X304349D01*

-X277449Y342559D02*X278433D01*

-X277449Y337441D02*X278433D01*

-X307462Y295038D02*X308446D01*

-X307462Y300156D02*X308446D01*

-X131882Y148492D02*Y147508D01*

-X137000Y148492D02*Y147508D01*

-G54D299*X382941Y58394D02*Y57608D01*

-X390027Y58394D02*Y57608D01*

-X339686Y89905D02*X345196D01*

-X339686Y78095D02*X345196D01*

-G54D297*X372441Y57493D02*Y56509D01*

-X377559Y57493D02*Y56509D01*

-X372441Y63493D02*Y62509D01*

-X367323Y63493D02*Y62509D01*

-X356323Y63493D02*Y62509D01*

-X361441Y63493D02*Y62509D01*

-X356323Y57493D02*Y56509D01*

-X361441Y57493D02*Y56509D01*

-X382323Y45493D02*Y44509D01*

-X387441Y45493D02*Y44509D01*

-X382323Y51493D02*Y50509D01*

-X387441Y51493D02*Y50509D01*

-G54D299*X374048Y43914D02*X374834D01*

-X374048Y51000D02*X374834D01*

-G54D297*X158453Y205862D02*Y204878D01*

-X163571Y205862D02*Y204878D01*

-G54D299*X104816Y243370D02*X110326D01*

-X104816Y231560D02*X110326D01*

-X116816Y243370D02*X122326D01*

-X116816Y231560D02*X122326D01*

-G54D297*X146571Y211862D02*Y210878D01*

-X151689Y211862D02*Y210878D01*

-G54D304*X130941Y231228D02*Y224929D01*

-X135941Y231228D02*Y224929D01*

-X140941Y231228D02*Y224929D01*

-X145941Y231228D02*Y224929D01*

-X150941Y231228D02*Y224929D01*

-X155941Y231228D02*Y224929D01*

-X160941Y231228D02*Y224929D01*

-G54D305*X145941Y264693D02*Y251307D01*

-G54D299*X157485Y212763D02*Y211977D01*

-X164571Y212763D02*Y211977D01*

-G54D297*X146130Y217862D02*Y216878D01*

-X141012Y217862D02*Y216878D01*

-X130453Y217862D02*Y216878D01*

-X135571Y217862D02*Y216878D01*

-X130453Y211862D02*Y210878D01*

-X135571Y211862D02*Y210878D01*

-G54D299*X151178Y198284D02*X151964D01*

-X151178Y205370D02*X151964D01*

-G54D297*X158382Y199992D02*Y199008D01*

-X163500Y199992D02*Y199008D01*

-G54D299*X326686Y89905D02*X332196D01*

-X326686Y78095D02*X332196D01*

-G54D298*X394397Y344917D02*Y340311D01*

-X391838Y344917D02*Y340311D01*

-X389279Y344917D02*Y340311D01*

-X386720Y344917D02*Y340311D01*

-X384162Y344917D02*Y340311D01*

-X381603Y344917D02*Y340311D01*

-X379044Y344917D02*Y340311D01*

-X376485Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y321689D02*Y317083D01*

-X381603Y321689D02*Y317083D01*

-X384162Y321689D02*Y317083D01*

-X386720Y321689D02*Y317083D01*

-X389279Y321689D02*Y317083D01*

-X391838Y321689D02*Y317083D01*

-X394397Y321689D02*Y317083D01*

-G54D304*X356441Y76229D02*Y69930D01*

-X361441Y76229D02*Y69930D01*

-X366441Y76229D02*Y69930D01*

-X371441Y76229D02*Y69930D01*

-X376441Y76229D02*Y69930D01*

-X381441Y76229D02*Y69930D01*

-X386441Y76229D02*Y69930D01*

-G54D305*X371441Y109694D02*Y96308D01*

-G54D297*X241449Y130941D02*X242433D01*

-X241449Y136059D02*X242433D01*

-X213882Y148992D02*Y148008D01*

-X219000Y148992D02*Y148008D01*

-X189949Y130941D02*X190933D01*

-X189949Y136059D02*X190933D01*

-X189949Y124059D02*X190933D01*

-X189949Y118941D02*X190933D01*

-X236882Y112992D02*Y112008D01*

-X242000Y112992D02*Y112008D01*

-X241449Y124059D02*X242433D01*

-X241449Y118941D02*X242433D01*

-G54D301*X202441Y142500D02*X208941D01*

-X202441Y137500D02*X208941D01*

-X202441Y132500D02*X208941D01*

-X202441Y127500D02*X208941D01*

-X202441Y122500D02*X208941D01*

-X202441Y117500D02*X208941D01*

-X202441Y112500D02*X208941D01*

-X222941D02*X229441D01*

-X222941Y117500D02*X229441D01*

-X222941Y122500D02*X229441D01*

-X222941Y127500D02*X229441D01*

-X222941Y132500D02*X229441D01*

-X222941Y137500D02*X229441D01*

-X222941Y142500D02*X229441D01*

-G54D297*X195500Y141992D02*Y141008D01*

-X190382Y141992D02*Y141008D01*

-X195475Y112832D02*Y111848D01*

-X190357Y112832D02*Y111848D01*

-X113975Y141832D02*Y140848D01*

-X108857Y141832D02*Y140848D01*

-X155382Y112992D02*Y112008D01*

-X160500Y112992D02*Y112008D01*

-X108449Y130941D02*X109433D01*

-X108449Y136059D02*X109433D01*

-X159949Y130941D02*X160933D01*

-X159949Y136059D02*X160933D01*

-G54D301*X120666Y142340D02*X127166D01*

-X120666Y137340D02*X127166D01*

-X120666Y132340D02*X127166D01*

-X120666Y127340D02*X127166D01*

-X120666Y122340D02*X127166D01*

-X120666Y117340D02*X127166D01*

-X120666Y112340D02*X127166D01*

-X141166D02*X147666D01*

-X141166Y117340D02*X147666D01*

-X141166Y122340D02*X147666D01*

-X141166Y127340D02*X147666D01*

-X141166Y132340D02*X147666D01*

-X141166Y137340D02*X147666D01*

-X141166Y142340D02*X147666D01*

-G54D297*X114000Y112992D02*Y112008D01*

-X108882Y112992D02*Y112008D01*

-X108449Y124059D02*X109433D01*

-X108449Y118941D02*X109433D01*

-X159949Y124059D02*X160933D01*

-X159949Y118941D02*X160933D01*

-X155382Y141992D02*Y141008D01*

-X160500Y141992D02*Y141008D01*

-X305696Y110822D02*X306680D01*

-X305696Y115940D02*X306680D01*

-X304472Y136450D02*X305456D01*

-X304472Y141568D02*X305456D01*

-G54D301*X271438Y145822D02*X277938D01*

-X271438Y140822D02*X277938D01*

-X271438Y135822D02*X277938D01*

-X271438Y130822D02*X277938D01*

-X271438Y125822D02*X277938D01*

-X271438Y120822D02*X277938D01*

-X271438Y115822D02*X277938D01*

-X271438Y110822D02*X277938D01*

-X291938D02*X298438D01*

-X291938Y115822D02*X298438D01*

-X291938Y120822D02*X298438D01*

-X291938Y125822D02*X298438D01*

-X291938Y130822D02*X298438D01*

-X291938Y135822D02*X298438D01*

-X291938Y140822D02*X298438D01*

-X291938Y145822D02*X298438D01*

-G54D297*X140949Y323559D02*X141933D01*

-X140949Y318441D02*X141933D01*

-G54D299*X245312Y349893D02*Y349107D01*

-X252398Y349893D02*Y349107D01*

-X245355Y335893D02*Y335107D01*

-X252441Y335893D02*Y335107D01*

-G54D297*X266000Y335992D02*Y335008D01*

-X260882Y335992D02*Y335008D01*

-X265957Y342992D02*Y342008D01*

-X260839Y342992D02*Y342008D01*

-X265957Y349992D02*Y349008D01*

-X260839Y349992D02*Y349008D01*

-G54D299*X245312Y342893D02*Y342107D01*

-X252398Y342893D02*Y342107D01*

-G54D306*X292003Y304963D02*Y301565D01*

-X290035Y304963D02*Y301565D01*

-X288066Y304963D02*Y301565D01*

-X286098Y304963D02*Y301565D01*

-X284129Y304963D02*Y301565D01*

-X282161Y304963D02*Y301565D01*

-X280192Y304963D02*Y301565D01*

-X278224Y304963D02*Y301565D01*

-X276255Y304963D02*Y301565D01*

-X274287Y304963D02*Y301565D01*

-X272318Y304963D02*Y301565D01*

-X270350Y304963D02*Y301565D01*

-X268381Y304963D02*Y301565D01*

-X266413Y304963D02*Y301565D01*

-X264444Y304963D02*Y301565D01*

-X262476Y304963D02*Y301565D01*

-X253106Y295592D02*X256504D01*

-X253106Y293624D02*X256504D01*

-X253106Y291655D02*X256504D01*

-X253106Y289687D02*X256504D01*

-X253106Y287718D02*X256504D01*

-X253106Y285750D02*X256504D01*

-X253106Y283781D02*X256504D01*

-X253106Y281813D02*X256504D01*

-X253106Y279844D02*X256504D01*

-X253106Y277876D02*X256504D01*

-X253106Y275907D02*X256504D01*

-X253106Y273939D02*X256504D01*

-X253106Y271970D02*X256504D01*

-X253106Y270002D02*X256504D01*

-X253106Y268033D02*X256504D01*

-X253106Y266065D02*X256504D01*

-X262477Y260093D02*Y256695D01*

-X264445Y260093D02*Y256695D01*

-X266414Y260093D02*Y256695D01*

-X268382Y260093D02*Y256695D01*

-X270351Y260093D02*Y256695D01*

-X272319Y260093D02*Y256695D01*

-X274288Y260093D02*Y256695D01*

-X276256Y260093D02*Y256695D01*

-X278225Y260093D02*Y256695D01*

-X280193Y260093D02*Y256695D01*

-X282162Y260093D02*Y256695D01*

-X284130Y260093D02*Y256695D01*

-X286099Y260093D02*Y256695D01*

-X288067Y260093D02*Y256695D01*

-X290036Y260093D02*Y256695D01*

-X292004Y260093D02*Y256695D01*

-X297976Y266066D02*X301374D01*

-X297976Y268034D02*X301374D01*

-X297976Y270003D02*X301374D01*

-X297976Y271971D02*X301374D01*

-X297976Y273940D02*X301374D01*

-X297976Y275908D02*X301374D01*

-X297976Y277877D02*X301374D01*

-X297976Y279845D02*X301374D01*

-X297976Y281814D02*X301374D01*

-X297976Y283782D02*X301374D01*

-X297976Y285751D02*X301374D01*

-X297976Y287719D02*X301374D01*

-X297976Y289688D02*X301374D01*

-X297976Y291656D02*X301374D01*

-X297976Y293625D02*X301374D01*

-X297976Y295593D02*X301374D01*

-G54D297*X235941Y141992D02*Y141008D01*

-X241059Y141992D02*Y141008D01*

-G54D299*X95548Y204457D02*X96334D01*

-X95548Y211543D02*X96334D01*

-X397048Y89543D02*X397834D01*

-X397048Y82457D02*X397834D01*

-G54D297*X396949Y70882D02*X397933D01*

-X396949Y76000D02*X397933D01*

-G54D299*X170048Y248543D02*X170834D01*

-X170048Y241457D02*X170834D01*

-G54D297*X170949Y231882D02*X171933D01*

-X170949Y237000D02*X171933D01*

-X102449Y216559D02*X103433D01*

-X102449Y211441D02*X103433D01*

-X266000Y356992D02*Y356008D01*

-X260882Y356992D02*Y356008D01*

-G54D299*X245355Y356893D02*Y356107D01*

-X252441Y356893D02*Y356107D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20131204/cape.topsilk.gbr b/bbb_cape/schematic/gerbers/20131204/cape.topsilk.gbr
deleted file mode 100644
index 2880ff7..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.topsilk.gbr
+++ /dev/null
@@ -1,977 +0,0 @@
-G04 start of page 10 for group -4079 idx -4079 *

-G04 Title: 971 BBB Cape, topsilk *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Thu Dec  5 05:46:54 2013 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNTOPSILK*%

-%ADD294C,0.0030*%

-%ADD293C,0.0080*%

-%ADD292C,0.0100*%

-%ADD291C,0.0046*%

-%ADD290C,0.0054*%

-%ADD289C,0.0070*%

-%ADD288C,0.0072*%

-%ADD287C,0.0040*%

-%ADD286C,0.0042*%

-G54D286*X389250Y174022D02*X385050Y176122D01*

-Y173497D01*

-Y238072D02*Y235972D01*

-X387150D01*

-X386625Y236497D01*

-Y237547D02*Y236497D01*

-Y237547D02*X387150Y238072D01*

-X388725D01*

-X389250Y237547D02*X388725Y238072D01*

-X389250Y237547D02*Y236497D01*

-X388725Y235972D02*X389250Y236497D01*

-X387675Y265792D02*X385050Y267892D01*

-X387675Y268417D02*Y265792D01*

-X385050Y267892D02*X389250D01*

-X385575Y298027D02*X385050Y298552D01*

-Y299602D02*Y298552D01*

-Y299602D02*X385575Y300127D01*

-X389250Y299602D02*X388725Y300127D01*

-X389250Y299602D02*Y298552D01*

-X388725Y298027D02*X389250Y298552D01*

-X386940Y299602D02*Y298552D01*

-X385575Y300127D02*X386415D01*

-X387465D02*X388725D01*

-X387465D02*X386940Y299602D01*

-X386415Y300127D02*X386940Y299602D01*

-X385890Y359977D02*X385050Y360817D01*

-X389250D01*

-Y361552D02*Y359977D01*

-X388725Y389272D02*X389250Y389797D01*

-X385575Y389272D02*X388725D01*

-X385575D02*X385050Y389797D01*

-Y390847D02*Y389797D01*

-Y390847D02*X385575Y391372D01*

-X388725D01*

-X389250Y390847D02*X388725Y391372D01*

-X389250Y390847D02*Y389797D01*

-X388200Y389272D02*X386100Y391372D01*

-G54D287*X308438Y226485D02*X310438D01*

-X317538Y228485D02*Y224485D01*

-X318838Y228485D02*X319538Y227785D01*

-Y225185D01*

-X318838Y224485D02*X319538Y225185D01*

-X317038Y224485D02*X318838D01*

-X317038Y228485D02*X318838D01*

-X320738D02*X321738D01*

-X321238D02*Y224485D01*

-X320738D02*X321738D01*

-X322938Y227985D02*Y224985D01*

-Y227985D02*X323438Y228485D01*

-X324438D01*

-X324938Y227985D01*

-Y224985D01*

-X324438Y224485D02*X324938Y224985D01*

-X323438Y224485D02*X324438D01*

-X322938Y224985D02*X323438Y224485D01*

-X328638D02*X329938D01*

-X327938Y225185D02*X328638Y224485D01*

-X327938Y227785D02*Y225185D01*

-Y227785D02*X328638Y228485D01*

-X329938D01*

-X331138D02*Y224485D01*

-X333138D01*

-X334338Y228485D02*Y224485D01*

-Y226485D02*X336338Y228485D01*

-X334338Y226485D02*X336338Y224485D01*

-X339338Y228485D02*X341338D01*

-X341838Y227985D01*

-Y226985D01*

-X341338Y226485D02*X341838Y226985D01*

-X339838Y226485D02*X341338D01*

-X339838Y228485D02*Y224485D01*

-X340638Y226485D02*X341838Y224485D01*

-X345038Y228485D02*X345538Y227985D01*

-X343538Y228485D02*X345038D01*

-X343038Y227985D02*X343538Y228485D01*

-X343038Y227985D02*Y226985D01*

-X343538Y226485D01*

-X345038D01*

-X345538Y225985D01*

-Y224985D01*

-X345038Y224485D02*X345538Y224985D01*

-X343538Y224485D02*X345038D01*

-X343038Y224985D02*X343538Y224485D01*

-X346738Y228485D02*X348738D01*

-X347738D02*Y224485D01*

-X310438Y220485D02*X310938Y219985D01*

-X308938Y220485D02*X310438D01*

-X308438Y219985D02*X308938Y220485D01*

-X308438Y219985D02*Y218985D01*

-X308938Y218485D01*

-X310438D01*

-X310938Y217985D01*

-Y216985D01*

-X310438Y216485D02*X310938Y216985D01*

-X308938Y216485D02*X310438D01*

-X308438Y216985D02*X308938Y216485D01*

-X312138Y220485D02*Y218485D01*

-X312638Y216485D01*

-X313638Y218485D01*

-X314638Y216485D01*

-X315138Y218485D01*

-Y220485D02*Y218485D01*

-X316838Y220485D02*Y216485D01*

-X318138Y220485D02*X318838Y219785D01*

-Y217185D01*

-X318138Y216485D02*X318838Y217185D01*

-X316338Y216485D02*X318138D01*

-X316338Y220485D02*X318138D01*

-X322338Y218485D02*X323838D01*

-X321838Y217985D02*X322338Y218485D01*

-X321838Y217985D02*Y216985D01*

-X322338Y216485D01*

-X323838D01*

-X325038Y217985D02*Y216985D01*

-Y217985D02*X325538Y218485D01*

-X326538D01*

-X327038Y217985D01*

-Y216985D01*

-X326538Y216485D02*X327038Y216985D01*

-X325538Y216485D02*X326538D01*

-X325038Y216985D02*X325538Y216485D01*

-X328738Y217985D02*Y216485D01*

-Y217985D02*X329238Y218485D01*

-X329738D01*

-X330238Y217985D01*

-Y216485D01*

-X328238Y218485D02*X328738Y217985D01*

-X331938D02*Y216485D01*

-Y217985D02*X332438Y218485D01*

-X332938D01*

-X333438Y217985D01*

-Y216485D01*

-X331438Y218485D02*X331938Y217985D01*

-X335138Y216485D02*X336638D01*

-X334638Y216985D02*X335138Y216485D01*

-X334638Y217985D02*Y216985D01*

-Y217985D02*X335138Y218485D01*

-X336138D01*

-X336638Y217985D01*

-X334638Y217485D02*X336638D01*

-Y217985D02*Y217485D01*

-X338338Y218485D02*X339838D01*

-X337838Y217985D02*X338338Y218485D01*

-X337838Y217985D02*Y216985D01*

-X338338Y216485D01*

-X339838D01*

-X341538Y220485D02*Y216985D01*

-X342038Y216485D01*

-X341038Y218985D02*X342038D01*

-X343038Y217985D02*Y216985D01*

-Y217985D02*X343538Y218485D01*

-X344538D01*

-X345038Y217985D01*

-Y216985D01*

-X344538Y216485D02*X345038Y216985D01*

-X343538Y216485D02*X344538D01*

-X343038Y216985D02*X343538Y216485D01*

-X346738Y217985D02*Y216485D01*

-Y217985D02*X347238Y218485D01*

-X348238D01*

-X346238D02*X346738Y217985D01*

-X236256Y328497D02*Y326997D01*

-X238456Y328997D02*Y326997D01*

-X234456D02*X238456D01*

-X234456Y328997D02*Y326997D01*

-Y332197D02*Y330197D01*

-Y332197D02*X234956Y332697D01*

-X235956D01*

-X236456Y332197D02*X235956Y332697D01*

-X236456Y332197D02*Y330697D01*

-X234456D02*X238456D01*

-X236456Y331497D02*X238456Y332697D01*

-X234456Y335897D02*Y333897D01*

-Y335897D02*X234956Y336397D01*

-X235956D01*

-X236456Y335897D02*X235956Y336397D01*

-X236456Y335897D02*Y334397D01*

-X234456D02*X238456D01*

-X236456Y335197D02*X238456Y336397D01*

-X234456Y339397D02*X238456D01*

-X234456Y341897D02*X238456D01*

-X236456D02*Y339397D01*

-X238456Y345097D02*Y343097D01*

-Y345097D02*X237956Y345597D01*

-X236756D02*X237956D01*

-X236256Y345097D02*X236756Y345597D01*

-X236256Y345097D02*Y343597D01*

-X234456D02*X238456D01*

-X234456Y345097D02*Y343097D01*

-Y345097D02*X234956Y345597D01*

-X235756D01*

-X236256Y345097D02*X235756Y345597D01*

-X234456Y351097D02*Y348597D01*

-X238456D02*X234456Y351097D01*

-X238456D02*Y348597D01*

-X234456Y354597D02*X238456D01*

-X234456Y355897D02*X235156Y356597D01*

-X237756D01*

-X238456Y355897D02*X237756Y356597D01*

-X238456Y355897D02*Y354097D01*

-X234456Y355897D02*Y354097D01*

-X238456Y359797D02*Y357797D01*

-Y359797D02*X237956Y360297D01*

-X236756D02*X237956D01*

-X236256Y359797D02*X236756Y360297D01*

-X236256Y359797D02*Y358297D01*

-X234456D02*X238456D01*

-X234456Y359797D02*Y357797D01*

-Y359797D02*X234956Y360297D01*

-X235756D01*

-X236256Y359797D02*X235756Y360297D01*

-G54D288*X322150Y46597D02*Y42997D01*

-Y58837D02*Y55237D01*

-X320350Y57037D02*X323950D01*

-X320350Y67477D02*X325750D01*

-X320350D02*X318550Y68737D01*

-Y70717D02*Y68737D01*

-Y70717D02*X320350Y71977D01*

-X325750D01*

-X322150D02*Y67477D01*

-G54D286*X87438Y79216D02*X87963Y78691D01*

-X87438Y82366D02*Y79216D01*

-Y82366D02*X87963Y82891D01*

-X89013D01*

-X89538Y82366D01*

-Y79216D01*

-X89013Y78691D02*X89538Y79216D01*

-X87963Y78691D02*X89013D01*

-X87438Y79741D02*X89538Y81841D01*

-X115368Y82051D02*X116208Y82891D01*

-Y78691D01*

-X115368D02*X116943D01*

-X146553Y82366D02*X147078Y82891D01*

-X148653D01*

-X149178Y82366D01*

-Y81316D01*

-X146553Y78691D02*X149178Y81316D01*

-X146553Y78691D02*X149178D01*

-X176898Y82366D02*X177423Y82891D01*

-X178473D01*

-X178998Y82366D01*

-X178473Y78691D02*X178998Y79216D01*

-X177423Y78691D02*X178473D01*

-X176898Y79216D02*X177423Y78691D01*

-Y81001D02*X178473D01*

-X178998Y82366D02*Y81526D01*

-Y80476D02*Y79216D01*

-Y80476D02*X178473Y81001D01*

-X178998Y81526D02*X178473Y81001D01*

-X206718Y80266D02*X208818Y82891D01*

-X206718Y80266D02*X209343D01*

-X208818Y82891D02*Y78691D01*

-X237063Y82891D02*X239163D01*

-X237063D02*Y80791D01*

-X237588Y81316D01*

-X238638D01*

-X239163Y80791D01*

-Y79216D01*

-X238638Y78691D02*X239163Y79216D01*

-X237588Y78691D02*X238638D01*

-X237063Y79216D02*X237588Y78691D01*

-X268458Y82891D02*X268983Y82366D01*

-X267408Y82891D02*X268458D01*

-X266883Y82366D02*X267408Y82891D01*

-X266883Y82366D02*Y79216D01*

-X267408Y78691D01*

-X268458Y81001D02*X268983Y80476D01*

-X266883Y81001D02*X268458D01*

-X267408Y78691D02*X268458D01*

-X268983Y79216D01*

-Y80476D02*Y79216D01*

-X297228Y78691D02*X299328Y82891D01*

-X296703D02*X299328D01*

-G54D289*X111691Y227000D02*Y223500D01*

-Y218250D02*Y214750D01*

-X109941Y216500D02*X113441D01*

-G54D286*X443890Y51997D02*X443050Y52837D01*

-X447250D01*

-Y53572D02*Y51997D01*

-X443890Y54832D02*X443050Y55672D01*

-X447250D01*

-Y56407D02*Y54832D01*

-X443890Y82237D02*X443050Y83077D01*

-X447250D01*

-Y83812D02*Y82237D01*

-X446725Y85072D02*X447250Y85597D01*

-X443575Y85072D02*X446725D01*

-X443575D02*X443050Y85597D01*

-Y86647D02*Y85597D01*

-Y86647D02*X443575Y87172D01*

-X446725D01*

-X447250Y86647D02*X446725Y87172D01*

-X447250Y86647D02*Y85597D01*

-X446200Y85072D02*X444100Y87172D01*

-X447250Y115417D02*X445150Y116992D01*

-X443575D02*X445150D01*

-X443050Y116467D02*X443575Y116992D01*

-X443050Y116467D02*Y115417D01*

-X443575Y114892D02*X443050Y115417D01*

-X443575Y114892D02*X444625D01*

-X445150Y115417D01*

-Y116992D02*Y115417D01*

-X446725Y144712D02*X447250Y145237D01*

-X445885Y144712D02*X446725D01*

-X445885D02*X445150Y145447D01*

-Y146077D02*Y145447D01*

-Y146077D02*X445885Y146812D01*

-X446725D01*

-X447250Y146287D02*X446725Y146812D01*

-X447250Y146287D02*Y145237D01*

-X444415Y144712D02*X445150Y145447D01*

-X443575Y144712D02*X444415D01*

-X443575D02*X443050Y145237D01*

-Y146287D02*Y145237D01*

-Y146287D02*X443575Y146812D01*

-X444415D01*

-X445150Y146077D02*X444415Y146812D01*

-X447250Y176947D02*X443050Y179047D01*

-Y176422D01*

-Y208342D02*X443575Y208867D01*

-X443050Y208342D02*Y207292D01*

-X443575Y206767D02*X443050Y207292D01*

-X443575Y206767D02*X446725D01*

-X447250Y207292D01*

-X444940Y208342D02*X445465Y208867D01*

-X444940Y208342D02*Y206767D01*

-X447250Y208342D02*Y207292D01*

-Y208342D02*X446725Y208867D01*

-X445465D02*X446725D01*

-X443050Y238687D02*Y236587D01*

-X445150D01*

-X444625Y237112D01*

-Y238162D02*Y237112D01*

-Y238162D02*X445150Y238687D01*

-X446725D01*

-X447250Y238162D02*X446725Y238687D01*

-X447250Y238162D02*Y237112D01*

-X446725Y236587D02*X447250Y237112D01*

-X445675Y266407D02*X443050Y268507D01*

-X445675Y269032D02*Y266407D01*

-X443050Y268507D02*X447250D01*

-X443575Y296752D02*X443050Y297277D01*

-Y298327D02*Y297277D01*

-Y298327D02*X443575Y298852D01*

-X447250Y298327D02*X446725Y298852D01*

-X447250Y298327D02*Y297277D01*

-X446725Y296752D02*X447250Y297277D01*

-X444940Y298327D02*Y297277D01*

-X443575Y298852D02*X444415D01*

-X445465D02*X446725D01*

-X445465D02*X444940Y298327D01*

-X444415Y298852D02*X444940Y298327D01*

-X443575Y326572D02*X443050Y327097D01*

-Y328672D02*Y327097D01*

-Y328672D02*X443575Y329197D01*

-X444625D01*

-X447250Y326572D02*X444625Y329197D01*

-X447250D02*Y326572D01*

-X443890Y356917D02*X443050Y357757D01*

-X447250D01*

-Y358492D02*Y356917D01*

-X446725Y386212D02*X447250Y386737D01*

-X443575Y386212D02*X446725D01*

-X443575D02*X443050Y386737D01*

-Y387787D02*Y386737D01*

-Y387787D02*X443575Y388312D01*

-X446725D01*

-X447250Y387787D02*X446725Y388312D01*

-X447250Y387787D02*Y386737D01*

-X446200Y386212D02*X444100Y388312D01*

-G54D288*X408938Y134585D02*X412538D01*

-X424418D02*X428018D01*

-X426218Y136385D02*Y132785D01*

-X440798Y138185D02*Y130985D01*

-X443138Y138185D02*X444398Y136925D01*

-Y132245D01*

-X443138Y130985D02*X444398Y132245D01*

-X439898Y130985D02*X443138D01*

-X439898Y138185D02*X443138D01*

-G54D290*X404438Y150435D02*X407138D01*

-X413618D02*X416318D01*

-X414968Y151785D02*Y149085D01*

-X425228Y151785D02*Y147735D01*

-Y151785D02*X426173Y153135D01*

-X427658D01*

-X428603Y151785D01*

-Y147735D01*

-X425228Y150435D02*X428603D01*

-X435083Y147735D02*X437783D01*

-X438458Y148410D01*

-Y150030D02*Y148410D01*

-X437783Y150705D02*X438458Y150030D01*

-X435758Y150705D02*X437783D01*

-X435758Y153135D02*Y147735D01*

-X435083Y153135D02*X437783D01*

-X438458Y152460D01*

-Y151380D01*

-X437783Y150705D02*X438458Y151380D01*

-G54D291*X190941Y241350D02*Y236750D01*

-Y241350D02*X193241D01*

-X190941Y239280D02*X192666D01*

-X194621Y241350D02*X196921D01*

-X197496Y240775D01*

-Y239625D01*

-X196921Y239050D02*X197496Y239625D01*

-X195196Y239050D02*X196921D01*

-X195196Y241350D02*Y236750D01*

-X196116Y239050D02*X197496Y236750D01*

-X199681D02*X201176D01*

-X198876Y237555D02*X199681Y236750D01*

-X198876Y240545D02*Y237555D01*

-Y240545D02*X199681Y241350D01*

-X201176D01*

-X204626D02*X206926D01*

-X205776D02*Y236750D01*

-X208881D02*X210606D01*

-X208306Y237325D02*X208881Y236750D01*

-X208306Y238475D02*Y237325D01*

-Y238475D02*X208881Y239050D01*

-X210031D01*

-X210606Y238475D01*

-X208306Y237900D02*X210606D01*

-Y238475D02*Y237900D01*

-X213711Y239050D02*X214286Y238475D01*

-X212561Y239050D02*X213711D01*

-X211986Y238475D02*X212561Y239050D01*

-X211986Y238475D02*Y237325D01*

-X212561Y236750D01*

-X214286Y239050D02*Y237325D01*

-X214861Y236750D01*

-X212561D02*X213711D01*

-X214286Y237325D01*

-X216816Y238475D02*Y236750D01*

-Y238475D02*X217391Y239050D01*

-X217966D01*

-X218541Y238475D01*

-Y236750D01*

-Y238475D02*X219116Y239050D01*

-X219691D01*

-X220266Y238475D01*

-Y236750D01*

-X216241Y239050D02*X216816Y238475D01*

-X224291Y236750D02*X226016Y239050D01*

-Y240775D02*Y239050D01*

-X225441Y241350D02*X226016Y240775D01*

-X224291Y241350D02*X225441D01*

-X223716Y240775D02*X224291Y241350D01*

-X223716Y240775D02*Y239625D01*

-X224291Y239050D01*

-X226016D01*

-X227971Y236750D02*X230271Y241350D01*

-X227396D02*X230271D01*

-X231651Y240430D02*X232571Y241350D01*

-Y236750D01*

-X231651D02*X233376D01*

-X236826D02*X239126D01*

-X239701Y237325D01*

-Y238705D02*Y237325D01*

-X239126Y239280D02*X239701Y238705D01*

-X237401Y239280D02*X239126D01*

-X237401Y241350D02*Y236750D01*

-X236826Y241350D02*X239126D01*

-X239701Y240775D01*

-Y239855D01*

-X239126Y239280D02*X239701Y239855D01*

-X241081Y236750D02*X243381D01*

-X243956Y237325D01*

-Y238705D02*Y237325D01*

-X243381Y239280D02*X243956Y238705D01*

-X241656Y239280D02*X243381D01*

-X241656Y241350D02*Y236750D01*

-X241081Y241350D02*X243381D01*

-X243956Y240775D01*

-Y239855D01*

-X243381Y239280D02*X243956Y239855D01*

-X245336Y236750D02*X247636D01*

-X248211Y237325D01*

-Y238705D02*Y237325D01*

-X247636Y239280D02*X248211Y238705D01*

-X245911Y239280D02*X247636D01*

-X245911Y241350D02*Y236750D01*

-X245336Y241350D02*X247636D01*

-X248211Y240775D01*

-Y239855D01*

-X247636Y239280D02*X248211Y239855D01*

-X252466Y236750D02*X253961D01*

-X251661Y237555D02*X252466Y236750D01*

-X251661Y240545D02*Y237555D01*

-Y240545D02*X252466Y241350D01*

-X253961D01*

-X257066Y239050D02*X257641Y238475D01*

-X255916Y239050D02*X257066D01*

-X255341Y238475D02*X255916Y239050D01*

-X255341Y238475D02*Y237325D01*

-X255916Y236750D01*

-X257641Y239050D02*Y237325D01*

-X258216Y236750D01*

-X255916D02*X257066D01*

-X257641Y237325D01*

-X260171Y238475D02*Y235025D01*

-X259596Y239050D02*X260171Y238475D01*

-X260746Y239050D01*

-X261896D01*

-X262471Y238475D01*

-Y237325D01*

-X261896Y236750D02*X262471Y237325D01*

-X260746Y236750D02*X261896D01*

-X260171Y237325D02*X260746Y236750D01*

-X264426D02*X266151D01*

-X263851Y237325D02*X264426Y236750D01*

-X263851Y238475D02*Y237325D01*

-Y238475D02*X264426Y239050D01*

-X265576D01*

-X266151Y238475D01*

-X263851Y237900D02*X266151D01*

-Y238475D02*Y237900D01*

-X202441Y227775D02*X203016Y228350D01*

-X204741D01*

-X205316Y227775D01*

-Y226625D01*

-X202441Y223750D02*X205316Y226625D01*

-X202441Y223750D02*X205316D01*

-X206696Y224325D02*X207271Y223750D01*

-X206696Y227775D02*Y224325D01*

-Y227775D02*X207271Y228350D01*

-X208421D01*

-X208996Y227775D01*

-Y224325D01*

-X208421Y223750D02*X208996Y224325D01*

-X207271Y223750D02*X208421D01*

-X206696Y224900D02*X208996Y227200D01*

-X210376Y227430D02*X211296Y228350D01*

-Y223750D01*

-X210376D02*X212101D01*

-X213481Y227775D02*X214056Y228350D01*

-X215206D01*

-X215781Y227775D01*

-X215206Y223750D02*X215781Y224325D01*

-X214056Y223750D02*X215206D01*

-X213481Y224325D02*X214056Y223750D01*

-Y226280D02*X215206D01*

-X215781Y227775D02*Y226855D01*

-Y225705D02*Y224325D01*

-Y225705D02*X215206Y226280D01*

-X215781Y226855D02*X215206Y226280D01*

-X217161Y227430D02*X218081Y228350D01*

-Y223750D01*

-X217161D02*X218886D01*

-X220266Y227775D02*X220841Y228350D01*

-X222566D01*

-X223141Y227775D01*

-Y226625D01*

-X220266Y223750D02*X223141Y226625D01*

-X220266Y223750D02*X223141D01*

-X224521Y224325D02*X225096Y223750D01*

-X224521Y227775D02*Y224325D01*

-Y227775D02*X225096Y228350D01*

-X226246D01*

-X226821Y227775D01*

-Y224325D01*

-X226246Y223750D02*X226821Y224325D01*

-X225096Y223750D02*X226246D01*

-X224521Y224900D02*X226821Y227200D01*

-X228201Y225475D02*X230501Y228350D01*

-X228201Y225475D02*X231076D01*

-X230501Y228350D02*Y223750D01*

-X234526Y227775D02*X235101Y228350D01*

-X236826D01*

-X237401Y227775D01*

-Y226625D01*

-X234526Y223750D02*X237401Y226625D01*

-X234526Y223750D02*X237401D01*

-X238781Y224325D02*X239356Y223750D01*

-X238781Y227775D02*Y224325D01*

-Y227775D02*X239356Y228350D01*

-X240506D01*

-X241081Y227775D01*

-Y224325D01*

-X240506Y223750D02*X241081Y224325D01*

-X239356Y223750D02*X240506D01*

-X238781Y224900D02*X241081Y227200D01*

-X242461Y227430D02*X243381Y228350D01*

-Y223750D01*

-X242461D02*X244186D01*

-X245566Y227775D02*X246141Y228350D01*

-X247291D01*

-X247866Y227775D01*

-X247291Y223750D02*X247866Y224325D01*

-X246141Y223750D02*X247291D01*

-X245566Y224325D02*X246141Y223750D01*

-Y226280D02*X247291D01*

-X247866Y227775D02*Y226855D01*

-Y225705D02*Y224325D01*

-Y225705D02*X247291Y226280D01*

-X247866Y226855D02*X247291Y226280D01*

-X249246Y226050D02*X251546D01*

-X252926Y228350D02*Y223750D01*

-Y224325D02*X253501Y223750D01*

-X254651D01*

-X255226Y224325D01*

-Y225475D02*Y224325D01*

-X254651Y226050D02*X255226Y225475D01*

-X253501Y226050D02*X254651D01*

-X252926Y225475D02*X253501Y226050D01*

-X256606Y227430D02*X257526Y228350D01*

-Y223750D01*

-X256606D02*X258331D01*

-G54D292*X448500Y126200D02*Y101200D01*

-X478500Y126200D02*Y101200D01*

-Y126200D02*X448500D01*

-Y119700D02*X478500D01*

-X458500Y101200D02*Y119700D01*

-X468500Y101200D02*Y119700D01*

-X448500Y101200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y96200D02*Y71200D01*

-X478500Y96200D02*Y71200D01*

-Y96200D02*X448500D01*

-Y89700D02*X478500D01*

-X458500Y71200D02*Y89700D01*

-X468500Y71200D02*Y89700D01*

-X448500Y71200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y66200D02*Y41200D01*

-X478500Y66200D02*Y41200D01*

-Y66200D02*X448500D01*

-Y59700D02*X478500D01*

-X458500Y41200D02*Y59700D01*

-X468500Y41200D02*Y59700D01*

-X448500Y41200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y216200D02*Y191200D01*

-X478500Y216200D02*Y191200D01*

-Y216200D02*X448500D01*

-Y209700D02*X478500D01*

-X458500Y191200D02*Y209700D01*

-X468500Y191200D02*Y209700D01*

-X448500Y191200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y186200D02*Y161200D01*

-X478500Y186200D02*Y161200D01*

-Y186200D02*X448500D01*

-Y179700D02*X478500D01*

-X458500Y161200D02*Y179700D01*

-X468500Y161200D02*Y179700D01*

-X448500Y161200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y156200D02*Y131200D01*

-X478500Y156200D02*Y131200D01*

-Y156200D02*X448500D01*

-Y149700D02*X478500D01*

-X458500Y131200D02*Y149700D01*

-X468500Y131200D02*Y149700D01*

-X448500Y131200D02*X478500D01*

-X448500D02*X458500D01*

-X402000Y186200D02*Y161200D01*

-X442000Y186200D02*Y161200D01*

-Y186200D02*X402000D01*

-Y179700D02*X442000D01*

-X412000Y161200D02*Y179700D01*

-X422000Y161200D02*Y179700D01*

-X432000Y161200D02*Y179700D01*

-X402000Y161200D02*X442000D01*

-X402000D02*X412000D01*

-X448500Y396200D02*Y371200D01*

-X478500Y396200D02*Y371200D01*

-X448500Y396200D02*X478500D01*

-X448500Y389700D02*X478500D01*

-X458500D02*Y371200D01*

-X468500Y389700D02*Y371200D01*

-X448500D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y366200D02*Y341200D01*

-X478500Y366200D02*Y341200D01*

-Y366200D02*X448500D01*

-Y359700D02*X478500D01*

-X458500Y341200D02*Y359700D01*

-X468500Y341200D02*Y359700D01*

-X448500Y341200D02*X478500D01*

-X448500D02*X458500D01*

-X402000Y366200D02*Y341200D01*

-X442000Y366200D02*Y341200D01*

-Y366200D02*X402000D01*

-Y359700D02*X442000D01*

-X412000Y341200D02*Y359700D01*

-X422000Y341200D02*Y359700D01*

-X432000Y341200D02*Y359700D01*

-X402000Y341200D02*X442000D01*

-X402000D02*X412000D01*

-X402000Y396200D02*Y371200D01*

-X442000Y396200D02*Y371200D01*

-Y396200D02*X402000D01*

-Y389700D02*X442000D01*

-X412000Y371200D02*Y389700D01*

-X422000Y371200D02*Y389700D01*

-X432000Y371200D02*Y389700D01*

-X402000Y371200D02*X442000D01*

-X402000D02*X412000D01*

-X448500Y336200D02*Y311200D01*

-X478500Y336200D02*Y311200D01*

-Y336200D02*X448500D01*

-Y329700D02*X478500D01*

-X458500Y311200D02*Y329700D01*

-X468500Y311200D02*Y329700D01*

-X448500Y311200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y306200D02*Y281200D01*

-X478500Y306200D02*Y281200D01*

-Y306200D02*X448500D01*

-Y299700D02*X478500D01*

-X458500Y281200D02*Y299700D01*

-X468500Y281200D02*Y299700D01*

-X448500Y281200D02*X478500D01*

-X448500D02*X458500D01*

-X402000Y306200D02*Y281200D01*

-X442000Y306200D02*Y281200D01*

-Y306200D02*X402000D01*

-Y299700D02*X442000D01*

-X412000Y281200D02*Y299700D01*

-X422000Y281200D02*Y299700D01*

-X432000Y281200D02*Y299700D01*

-X402000Y281200D02*X442000D01*

-X402000D02*X412000D01*

-X402000Y336200D02*Y311200D01*

-X442000Y336200D02*Y311200D01*

-X402000Y336200D02*X442000D01*

-X402000Y329700D02*X442000D01*

-X412000D02*Y311200D01*

-X422000Y329700D02*Y311200D01*

-X432000Y329700D02*Y311200D01*

-X402000D02*X442000D01*

-X402000D02*X412000D01*

-X402000Y276200D02*Y251200D01*

-X442000Y276200D02*Y251200D01*

-X402000Y276200D02*X442000D01*

-X402000Y269700D02*X442000D01*

-X412000D02*Y251200D01*

-X422000Y269700D02*Y251200D01*

-X432000Y269700D02*Y251200D01*

-X402000D02*X442000D01*

-X402000D02*X412000D01*

-X374835Y346566D02*X396047D01*

-X374835D02*Y315434D01*

-X396047D01*

-Y346566D02*Y333500D01*

-Y328500D02*Y315434D01*

-Y333500D02*G75*G03X396047Y328500I0J-2500D01*G01*

-G54D293*X242304Y270584D02*X243090D01*

-X242304Y265074D02*X243090D01*

-X287686Y248850D02*Y248064D01*

-X293196Y248850D02*Y248064D01*

-G54D292*X146799Y335829D02*Y296829D01*

-X192799D01*

-Y335829D01*

-X146799D02*X167299D01*

-X192799D02*X172299D01*

-X167299D02*G75*G03X172299Y335829I2500J0D01*G01*

-G54D293*X120894Y283923D02*X118925Y285892D01*

-X120894Y283923D02*X134673D01*

-Y315419D02*Y283923D01*

-X118925Y315419D02*X134673D01*

-X118925D02*Y285892D01*

-G54D292*X145699Y294729D02*X159599D01*

-X145699D02*Y281929D01*

-X159599D01*

-Y294729D02*Y281929D01*

-X127831Y222173D02*Y237921D01*

-X164051Y222173D02*X127831D01*

-X164051Y237921D02*Y222173D01*

-X126256Y237921D02*Y278079D01*

-X165626Y237921D02*Y278079D01*

-Y237921D02*X126256D01*

-X165626Y278079D02*X126256D01*

-G54D293*X93186Y208393D02*Y207607D01*

-X98696Y208393D02*Y207607D01*

-X173196Y245393D02*Y244607D01*

-X167686Y245393D02*Y244607D01*

-X248505Y359255D02*X249291D01*

-X248505Y353745D02*X249291D01*

-X248505Y338255D02*X249291D01*

-X248505Y332745D02*X249291D01*

-X248462Y345255D02*X249248D01*

-X248462Y339745D02*X249248D01*

-X296525Y297214D02*Y261544D01*

-X257955D02*X296525D01*

-X257955Y300114D02*Y261544D01*

-Y300114D02*X293625D01*

-X296525Y297214D01*

-X293625Y298214D02*G75*G03X293625Y298214I0J-1000D01*G01*

-X248462Y352255D02*X249248D01*

-X248462Y346745D02*X249248D01*

-G54D292*X291150Y314280D02*G75*G03X291150Y314280I500J0D01*G01*

-X133241Y42500D02*X158241D01*

-X133241Y72500D02*X158241D01*

-X133241D02*Y42500D01*

-X139741Y72500D02*Y42500D01*

-Y52500D02*X158241D01*

-X139741Y62500D02*X158241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X103241D02*X128241D01*

-X103241Y72500D02*X128241D01*

-X103241D02*Y42500D01*

-X109741Y72500D02*Y42500D01*

-Y52500D02*X128241D01*

-X109741Y62500D02*X128241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X73241D02*X98241D01*

-X73241Y72500D02*X98241D01*

-X73241D02*Y42500D01*

-X79741Y72500D02*Y42500D01*

-Y52500D02*X98241D01*

-X79741Y62500D02*X98241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X193241D02*X218241D01*

-X193241Y72500D02*X218241D01*

-X193241D02*Y42500D01*

-X199741Y72500D02*Y42500D01*

-Y52500D02*X218241D01*

-X199741Y62500D02*X218241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X223241D02*X248241D01*

-X223241Y72500D02*X248241D01*

-X223241D02*Y42500D01*

-X229741Y72500D02*Y42500D01*

-Y52500D02*X248241D01*

-X229741Y62500D02*X248241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X163241D02*X188241D01*

-X163241Y72500D02*X188241D01*

-X163241D02*Y42500D01*

-X169741Y72500D02*Y42500D01*

-Y52500D02*X188241D01*

-X169741Y62500D02*X188241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X200441Y144500D02*Y110500D01*

-X231441D01*

-Y144500D01*

-X200441D02*X213441D01*

-X231441D02*X218441D01*

-X213441D02*G75*G03X218441Y144500I2500J0D01*G01*

-G54D293*X112885Y239433D02*Y235497D01*

-X102257Y239433D02*Y235497D01*

-X124885D02*Y239433D01*

-X114257Y235497D02*Y239433D01*

-X160635Y215125D02*X161421D01*

-X160635Y209615D02*X161421D01*

-X148816Y202220D02*Y201434D01*

-X154326Y202220D02*Y201434D01*

-G54D292*X118666Y144340D02*Y110340D01*

-X149666D01*

-Y144340D01*

-X118666D02*X131666D01*

-X149666D02*X136666D01*

-X131666D02*G75*G03X136666Y144340I2500J0D01*G01*

-X72641Y245000D02*X97641D01*

-X72641Y215000D02*X97641D01*

-Y245000D02*Y215000D01*

-X91141Y245000D02*Y215000D01*

-X72641Y235000D02*X91141D01*

-X72641Y225000D02*X91141D01*

-X72641Y245000D02*Y215000D01*

-Y245000D02*Y235000D01*

-X253241Y42500D02*X278241D01*

-X253241Y72500D02*X278241D01*

-X253241D02*Y42500D01*

-X259741Y72500D02*Y42500D01*

-Y52500D02*X278241D01*

-X259741Y62500D02*X278241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X283241D02*X308241D01*

-X283241Y72500D02*X308241D01*

-X283241D02*Y42500D01*

-X289741Y72500D02*Y42500D01*

-Y52500D02*X308241D01*

-X289741Y62500D02*X308241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X269438Y147822D02*Y108822D01*

-X300438D01*

-Y147822D01*

-X269438D02*X282438D01*

-X300438D02*X287438D01*

-X282438D02*G75*G03X287438Y147822I2500J0D01*G01*

-X374835Y228566D02*X396047D01*

-X374835D02*Y197434D01*

-X396047D01*

-Y228566D02*Y215500D01*

-Y210500D02*Y197434D01*

-Y215500D02*G75*G03X396047Y210500I0J-2500D01*G01*

-X402000Y216200D02*Y191200D01*

-X442000Y216200D02*Y191200D01*

-Y216200D02*X402000D01*

-Y209700D02*X442000D01*

-X412000Y191200D02*Y209700D01*

-X422000Y191200D02*Y209700D01*

-X432000Y191200D02*Y209700D01*

-X402000Y191200D02*X442000D01*

-X402000D02*X412000D01*

-X448500Y246200D02*Y221200D01*

-X478500Y246200D02*Y221200D01*

-X448500Y246200D02*X478500D01*

-X448500Y239700D02*X478500D01*

-X458500D02*Y221200D01*

-X468500Y239700D02*Y221200D01*

-X448500D02*X478500D01*

-X448500D02*X458500D01*

-X402000Y246200D02*Y221200D01*

-X442000Y246200D02*Y221200D01*

-Y246200D02*X402000D01*

-Y239700D02*X442000D01*

-X412000Y221200D02*Y239700D01*

-X422000Y221200D02*Y239700D01*

-X432000Y221200D02*Y239700D01*

-X402000Y221200D02*X442000D01*

-X402000D02*X412000D01*

-X448500Y276200D02*Y251200D01*

-X478500Y276200D02*Y251200D01*

-Y276200D02*X448500D01*

-Y269700D02*X478500D01*

-X458500Y251200D02*Y269700D01*

-X468500Y251200D02*Y269700D01*

-X448500Y251200D02*X478500D01*

-X448500D02*X458500D01*

-X307441Y261200D02*Y236200D01*

-X347441Y261200D02*Y236200D01*

-Y261200D02*X307441D01*

-Y254700D02*X347441D01*

-X317441Y236200D02*Y254700D01*

-X327441Y236200D02*Y254700D01*

-X337441Y236200D02*Y254700D01*

-X307441Y236200D02*X347441D01*

-X307441D02*X317441D01*

-G54D293*X386091Y60756D02*X386877D01*

-X386091Y55246D02*X386877D01*

-X371686Y47850D02*Y47064D01*

-X377196Y47850D02*Y47064D01*

-G54D294*X347755Y85968D02*Y82032D01*

-X337127Y85968D02*Y82032D01*

-G54D293*X334755Y85968D02*Y82032D01*

-X324127Y85968D02*Y82032D01*

-G54D292*X353331Y67174D02*Y82922D01*

-X389551Y67174D02*X353331D01*

-X389551Y82922D02*Y67174D01*

-X351756Y82922D02*Y123080D01*

-X391126Y82922D02*Y123080D01*

-Y82922D02*X351756D01*

-X391126Y123080D02*X351756D01*

-G54D293*X400196Y86393D02*Y85607D01*

-X394686Y86393D02*Y85607D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20131204/cape.zip b/bbb_cape/schematic/gerbers/20131204/cape.zip
deleted file mode 100644
index 5598263..0000000
--- a/bbb_cape/schematic/gerbers/20131204/cape.zip
+++ /dev/null
Binary files differ
diff --git a/bbb_cape/schematic/gerbers/20140117/cape.bom b/bbb_cape/schematic/gerbers/20140117/cape.bom
deleted file mode 100644
index 78c3a60..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.bom
+++ /dev/null
@@ -1,23 +0,0 @@
-# $Id$
-# PcbBOM Version 1.0
-# Date: Sun Jan 19 01:37:56 2014 UTC
-# Author: Brian Silverman
-# Title: 971 BBB Cape - PCB BOM
-# Quantity, Description, Value, RefDes
-# --------------------------------------------
-21,"22-23-2031","(unknown)",X6/X1/CONN12 X6/X3/CONN12 X6/X4/CONN12 X7/X1/CONN12 X7/X2/CONN12 X7/X3/CONN12 X7/X4/CONN12 X5/X1/CONN12 X5/X2/CONN12 X5/X3/CONN12 X5/X4/CONN12 X6/X2/CONN12 CONN5 CONN4 CONN3 CONN2 CONN6 CONN7 CONN8 CONN9 CONN12 
-9,"22-23-2041","(unknown)",X1/X2/CONN4 X4/X4/CONN4 X4/X2/CONN4 X3/X4/CONN4 X3/X2/CONN4 X2/X4/CONN4 X2/X2/CONN4 X1/X4/CONN4 CONN1 
-157,"0603","(unknown)",X4/C1 X6/C1 X5/C1 X3/C1 X1/C1 X2/C1 X1/X2/R9 X5/X1/C2 X5/X4/C2 X5/X2/C2 X7/X3/C2 X7/X2/C2 X6/X1/C2 X6/X2/C2 X6/X3/C2 X6/X1/R6 X6/X3/R6 X6/X4/R6 X7/X1/R6 X7/X2/R6 X7/X3/R6 X7/X4/R6 X1/X4/R9 X1/X4/R10 X1/X4/R6 X1/X4/C2 X1/X4/R8 X2/X2/R6 X2/X2/R8 X2/X2/C2 X2/X2/R9 X2/X2/R10 X2/X4/R9 X2/X4/R10 X2/X4/R6 X2/X4/R8 X2/X4/C2 X3/X2/R9 X3/X2/R10 X3/X2/R6 X3/X2/R8 X3/X2/C2 X3/X4/R9 X3/X4/R10 X3/X4/R6 X3/X4/R8 X3/X4/C2 X4/X2/R9 X4/X2/R10 X4/X2/R6 X4/X2/C2 X4/X4/R10 X4/X4/R9 X4/X4/R6 X4/X4/R8 X4/X4/C2 X1/X2/R10 X1/X2/R6 X1/X2/C2 X5/X2/R7 X5/X1/R7 X5/X3/R7 X5/X4/R7 X7/X2/R7 X7/X1/R7 X7/X3/R7 X7/X4/R7 X6/X2/R7 X6/X3/R7 X6/X4/R7 X6/X1/R7 X4/X2/R8 X1/X2/R8 X7/C1 X5/X3/C2 X5/X4/R6 X5/X3/R6 X5/X2/R6 X5/X1/R6 X7/X1/C2 X7/X4/C2 X6/X2/R6 X6/X4/C2 C28 C29 C30 C31 C15 C32 C2 C3 C6 C9 C4 C5 C26 C27 X14/R4 X14/R3 X14/R2 C25 C18 C19 C20 C21 C22 C23 C24 R12 R10 X8/C4 X8/C5 X8/C1 X8/C2 X8/R3 X8/C3 X8/R1 X8/R2 X9/R1 X9/R3 X9/C1 X9/C4 X9/R2 X9/C2 X9/C3 X9/R4 C16 C17 C8 R15 R14 R13 X8/R4 X14/R13 R17 R1 X9/R9 X9/R5 X8/R12 X8/R10 X8/R9 X8/R8 X9/R12 X9/R11 X9/R10 X9/R8 X9/R7 X9/R6 X8/R11 X8/R7 X8/R6 X8/R5 X16/R4 X16/R3 X16/R2 X16/R13 X9/C5 
-7,"TSSOP16","(unknown)",X4/U4 X5/U4 X7/U4 X6/U4 X3/U4 X2/U4 X1/U4 
-21,"0805","(unknown)",C13 C14 C10 C7 C11 C12 X14/R5 D2 D6 D5 D7 X14/D1 D1 X14/C5 X14/C2 X14/R6 X16/R5 X16/D1 X16/C2 X16/C5 X16/R6 
-1,"SOT23","(unknown)",D4 
-1,"SO16W","(unknown)",U2 
-1,"1812","(unknown)",L2 
-1,"ABMM2","(unknown)",U9 
-2,"SOT223","(unknown)",U4 U3 
-6,"1210","(unknown)",X14/C4 X14/C3 X14/C6 X16/C4 X16/C3 X16/C6 
-2,"TOPMOD","(unknown)",X14/U3 X16/U3 
-2,"SO14","(unknown)",X8/U2 X9/U2 
-1,"SO16","(unknown)",U1 
-1,"LQFP64_10","(unknown)",U6 
-1,"beaglebone","(unknown)",U8 
diff --git a/bbb_cape/schematic/gerbers/20140117/cape.bottom.gbr b/bbb_cape/schematic/gerbers/20140117/cape.bottom.gbr
deleted file mode 100644
index cab0941..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.bottom.gbr
+++ /dev/null
@@ -1,4357 +0,0 @@
-G04 start of page 5 for group 3 idx 3 *

-G04 Title: 971 BBB Cape, bottom *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Sun Jan 19 01:17:08 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNBOTTOM*%

-%ADD263C,0.0460*%

-%ADD262C,0.2000*%

-%ADD261C,0.1285*%

-%ADD260C,0.0400*%

-%ADD259C,0.0350*%

-%ADD258C,0.0600*%

-%ADD257C,0.0360*%

-%ADD256C,0.0200*%

-%ADD255R,0.0345X0.0345*%

-%ADD254R,0.1220X0.1220*%

-%ADD253R,0.0560X0.0560*%

-%ADD252R,0.0512X0.0512*%

-%ADD251R,0.0180X0.0180*%

-%ADD250R,0.0295X0.0295*%

-%ADD249R,0.0130X0.0130*%

-%ADD248C,0.2500*%

-%ADD247C,0.0660*%

-%ADD246C,0.2200*%

-%ADD245C,0.1830*%

-%ADD244C,0.0650*%

-%ADD243C,0.0480*%

-%ADD242C,0.0380*%

-%ADD241C,0.0500*%

-%ADD240C,0.0250*%

-%ADD239C,0.0080*%

-%ADD238C,0.0100*%

-%ADD237C,0.0001*%

-G54D237*G36*

-X122941Y305000D02*Y331500D01*

-X92941D01*

-Y360000D01*

-X156941D01*

-Y342500D01*

-X130941D01*

-Y305000D01*

-X122941D01*

-G37*

-G36*

-X133441Y318000D02*Y340000D01*

-X155941D01*

-Y318000D01*

-X133441D01*

-G37*

-G36*

-X218441Y217500D02*X177941D01*

-Y238500D01*

-X218441D01*

-Y217500D01*

-G37*

-G36*

-X207941Y215000D02*X212441D01*

-Y210000D01*

-X207941D01*

-Y215000D01*

-G37*

-G36*

-X201441Y240000D02*X205941D01*

-Y235000D01*

-X201441D01*

-Y240000D01*

-G37*

-G36*

-X191441Y239500D02*X195941D01*

-Y234500D01*

-X191441D01*

-Y239500D01*

-G37*

-G36*

-X174941Y230500D02*X179441D01*

-Y225500D01*

-X174941D01*

-Y230500D01*

-G37*

-G36*

-Y220000D02*X179441D01*

-Y215000D01*

-X174941D01*

-Y220000D01*

-G37*

-G36*

-X182941D02*X187441D01*

-Y215000D01*

-X182941D01*

-Y220000D01*

-G37*

-G36*

-X191441Y215000D02*X195941D01*

-Y210000D01*

-X191441D01*

-Y215000D01*

-G37*

-G36*

-X199941D02*X204441D01*

-Y210000D01*

-X199941D01*

-Y215000D01*

-G37*

-G36*

-X179441Y261000D02*X183941D01*

-Y256000D01*

-X179441D01*

-Y261000D01*

-G37*

-G36*

-X217941Y217500D02*X222441D01*

-Y212500D01*

-X217941D01*

-Y217500D01*

-G37*

-G36*

-X222441Y223000D02*X226941D01*

-Y218000D01*

-X222441D01*

-Y223000D01*

-G37*

-G36*

-X222941Y229000D02*X227441D01*

-Y224000D01*

-X222941D01*

-Y229000D01*

-G37*

-G36*

-X222441Y238000D02*X226941D01*

-Y233000D01*

-X222441D01*

-Y238000D01*

-G37*

-G36*

-X221941Y246500D02*X226441D01*

-Y241500D01*

-X221941D01*

-Y246500D01*

-G37*

-G36*

-X222441Y238000D02*X226941D01*

-Y233000D01*

-X222441D01*

-Y238000D01*

-G37*

-G36*

-X233941D02*X238441D01*

-Y233000D01*

-X233941D01*

-Y238000D01*

-G37*

-G36*

-X237001Y264297D02*X241501D01*

-Y259297D01*

-X237001D01*

-Y264297D01*

-G37*

-G36*

-X195941Y265000D02*X200441D01*

-Y260000D01*

-X195941D01*

-Y265000D01*

-G37*

-G36*

-Y272000D02*X200441D01*

-Y267000D01*

-X195941D01*

-Y272000D01*

-G37*

-G36*

-X202941Y279500D02*X207441D01*

-Y274500D01*

-X202941D01*

-Y279500D01*

-G37*

-G36*

-X210441Y240500D02*X214941D01*

-Y235500D01*

-X210441D01*

-Y240500D01*

-G37*

-G36*

-X253098Y217146D02*X261941Y208303D01*

-Y201500D01*

-X253098D01*

-Y209121D01*

-X253218Y209223D01*

-X253402Y209439D01*

-X253550Y209680D01*

-X253658Y209942D01*

-X253724Y210218D01*

-X253741Y210500D01*

-X253724Y210782D01*

-X253658Y211058D01*

-X253550Y211320D01*

-X253402Y211561D01*

-X253218Y211777D01*

-X253098Y211879D01*

-Y217146D01*

-G37*

-G36*

-Y247050D02*X261941D01*

-Y224806D01*

-X253098Y233649D01*

-Y247050D01*

-G37*

-G36*

-Y264380D02*X261941D01*

-Y256200D01*

-X253098D01*

-Y259780D01*

-X253101Y259780D01*

-X253423Y259805D01*

-X253736Y259880D01*

-X254035Y260004D01*

-X254310Y260172D01*

-X254555Y260382D01*

-X254765Y260627D01*

-X254933Y260902D01*

-X255057Y261201D01*

-X255132Y261514D01*

-X255151Y261836D01*

-X255132Y262158D01*

-X255057Y262471D01*

-X254933Y262770D01*

-X254765Y263045D01*

-X254555Y263290D01*

-X254310Y263500D01*

-X254035Y263668D01*

-X253736Y263792D01*

-X253423Y263867D01*

-X253101Y263892D01*

-X253098Y263892D01*

-Y264380D01*

-G37*

-G36*

-Y270771D02*X261941D01*

-Y270656D01*

-X261816Y270604D01*

-X261541Y270436D01*

-X261296Y270226D01*

-X261086Y269981D01*

-X260918Y269706D01*

-X260794Y269407D01*

-X260719Y269094D01*

-X260694Y268772D01*

-X260719Y268450D01*

-X260794Y268137D01*

-X260918Y267838D01*

-X261086Y267563D01*

-X261296Y267318D01*

-X261541Y267108D01*

-X261816Y266940D01*

-X261941Y266888D01*

-Y266780D01*

-X253098D01*

-Y270771D01*

-G37*

-G36*

-Y273875D02*X261941D01*

-Y273171D01*

-X253098D01*

-Y273875D01*

-G37*

-G36*

-Y279016D02*X254239Y277875D01*

-X253098D01*

-Y279016D01*

-G37*

-G36*

-X239299Y247050D02*X253098D01*

-Y233649D01*

-X248741Y238006D01*

-X248724Y238282D01*

-X248658Y238558D01*

-X248550Y238820D01*

-X248402Y239061D01*

-X248218Y239277D01*

-X248002Y239461D01*

-X247761Y239609D01*

-X247499Y239717D01*

-X247223Y239783D01*

-X246941Y239806D01*

-X246659Y239783D01*

-X246383Y239717D01*

-X246121Y239609D01*

-X245880Y239461D01*

-X245664Y239277D01*

-X245480Y239061D01*

-X245332Y238820D01*

-X245224Y238558D01*

-X245158Y238282D01*

-X245135Y238000D01*

-X245158Y237718D01*

-X245224Y237442D01*

-X245332Y237180D01*

-X245480Y236939D01*

-X245664Y236723D01*

-X245880Y236539D01*

-X246121Y236391D01*

-X246383Y236283D01*

-X246659Y236217D01*

-X246941Y236194D01*

-X247143Y236210D01*

-X251647Y231706D01*

-X251224Y231283D01*

-X251223Y231283D01*

-X250941Y231306D01*

-X250659Y231283D01*

-X250383Y231217D01*

-X250121Y231109D01*

-X249880Y230961D01*

-X249664Y230777D01*

-X249480Y230561D01*

-X249332Y230320D01*

-X249224Y230058D01*

-X249158Y229782D01*

-X249135Y229500D01*

-X248241D01*

-X248224Y229782D01*

-X248158Y230058D01*

-X248050Y230320D01*

-X247902Y230561D01*

-X247718Y230777D01*

-X247502Y230961D01*

-X247261Y231109D01*

-X246999Y231217D01*

-X246723Y231283D01*

-X246441Y231306D01*

-X246159Y231283D01*

-X245883Y231217D01*

-X245621Y231109D01*

-X245380Y230961D01*

-X245164Y230777D01*

-X244980Y230561D01*

-X244832Y230320D01*

-X244724Y230058D01*

-X244658Y229782D01*

-X244635Y229500D01*

-X244241D01*

-X244224Y229782D01*

-X244158Y230058D01*

-X244050Y230320D01*

-X243902Y230561D01*

-X243718Y230777D01*

-X243502Y230961D01*

-X243261Y231109D01*

-X242999Y231217D01*

-X242723Y231283D01*

-X242441Y231306D01*

-X242159Y231283D01*

-X241883Y231217D01*

-X241621Y231109D01*

-X241380Y230961D01*

-X241164Y230777D01*

-X240980Y230561D01*

-X240832Y230320D01*

-X240724Y230058D01*

-X240658Y229782D01*

-X240635Y229500D01*

-X240658Y229218D01*

-X240724Y228942D01*

-X240832Y228680D01*

-X240980Y228439D01*

-X241164Y228223D01*

-X241380Y228039D01*

-X241621Y227891D01*

-X241883Y227783D01*

-X242159Y227717D01*

-X242441Y227694D01*

-X242542Y227702D01*

-X253098Y217146D01*

-Y211879D01*

-X253002Y211961D01*

-X252761Y212109D01*

-X252499Y212217D01*

-X252223Y212283D01*

-X251941Y212306D01*

-X251659Y212283D01*

-X251383Y212217D01*

-X251121Y212109D01*

-X250880Y211961D01*

-X250664Y211777D01*

-X250480Y211561D01*

-X250332Y211320D01*

-X250224Y211058D01*

-X250158Y210782D01*

-X250135Y210500D01*

-X250158Y210218D01*

-X250224Y209942D01*

-X250332Y209680D01*

-X250480Y209439D01*

-X250664Y209223D01*

-X250880Y209039D01*

-X251121Y208891D01*

-X251383Y208783D01*

-X251659Y208717D01*

-X251941Y208694D01*

-X252223Y208717D01*

-X252499Y208783D01*

-X252761Y208891D01*

-X253002Y209039D01*

-X253098Y209121D01*

-Y201500D01*

-X245672D01*

-X245724Y201718D01*

-X245741Y202000D01*

-X245724Y202282D01*

-X245658Y202558D01*

-X245550Y202820D01*

-X245402Y203061D01*

-X245218Y203277D01*

-X245002Y203461D01*

-X244761Y203609D01*

-X244499Y203717D01*

-X244223Y203783D01*

-X243941Y203806D01*

-X243659Y203783D01*

-X243383Y203717D01*

-X243121Y203609D01*

-X242880Y203461D01*

-X242664Y203277D01*

-X242480Y203061D01*

-X242332Y202820D01*

-X242224Y202558D01*

-X242158Y202282D01*

-X242135Y202000D01*

-X242158Y201718D01*

-X242210Y201500D01*

-X239299D01*

-Y247050D01*

-G37*

-G36*

-Y264380D02*X253098D01*

-Y263892D01*

-X252779Y263867D01*

-X252466Y263792D01*

-X252167Y263668D01*

-X251892Y263500D01*

-X251647Y263290D01*

-X251437Y263045D01*

-X251269Y262770D01*

-X251145Y262471D01*

-X251070Y262158D01*

-X251045Y261836D01*

-X251070Y261514D01*

-X251145Y261201D01*

-X251269Y260902D01*

-X251437Y260627D01*

-X251647Y260382D01*

-X251892Y260172D01*

-X252167Y260004D01*

-X252466Y259880D01*

-X252779Y259805D01*

-X253098Y259780D01*

-Y256200D01*

-X239299D01*

-Y260179D01*

-X239302Y260179D01*

-X239624Y260204D01*

-X239937Y260279D01*

-X240236Y260403D01*

-X240511Y260571D01*

-X240756Y260781D01*

-X240966Y261026D01*

-X241134Y261301D01*

-X241258Y261600D01*

-X241333Y261913D01*

-X241352Y262235D01*

-X241333Y262557D01*

-X241258Y262870D01*

-X241134Y263169D01*

-X240966Y263444D01*

-X240756Y263689D01*

-X240511Y263899D01*

-X240236Y264067D01*

-X239937Y264191D01*

-X239624Y264266D01*

-X239302Y264291D01*

-X239299Y264291D01*

-Y264380D01*

-G37*

-G36*

-Y270771D02*X253098D01*

-Y266780D01*

-X239299D01*

-Y270771D01*

-G37*

-G36*

-Y273875D02*X253098D01*

-Y273171D01*

-X239299D01*

-Y273875D01*

-G37*

-G36*

-Y277130D02*X239330Y277103D01*

-X239571Y276955D01*

-X239833Y276847D01*

-X240109Y276781D01*

-X240391Y276758D01*

-X240673Y276781D01*

-X240949Y276847D01*

-X241211Y276955D01*

-X241452Y277103D01*

-X241668Y277287D01*

-X241852Y277503D01*

-X242000Y277744D01*

-X242108Y278006D01*

-X242174Y278282D01*

-X242191Y278564D01*

-X242174Y278846D01*

-X242108Y279122D01*

-X242000Y279384D01*

-X241852Y279625D01*

-X241668Y279841D01*

-X241452Y280025D01*

-X241211Y280173D01*

-X240949Y280281D01*

-X240673Y280347D01*

-X240391Y280370D01*

-X240290Y280362D01*

-X239299Y281353D01*

-Y289533D01*

-X248871Y279961D01*

-X248902Y279925D01*

-X249045Y279802D01*

-X249108Y279764D01*

-X249207Y279703D01*

-X249279Y279674D01*

-X249381Y279631D01*

-X249565Y279587D01*

-X249565Y279587D01*

-X249753Y279572D01*

-X249800Y279576D01*

-X250553D01*

-X250554Y279576D01*

-X250554Y279576D01*

-X252538D01*

-X253098Y279016D01*

-Y277875D01*

-X248887D01*

-X247586Y279176D01*

-X247588Y279186D01*

-X247607Y279508D01*

-X247588Y279830D01*

-X247513Y280143D01*

-X247389Y280442D01*

-X247221Y280717D01*

-X247011Y280962D01*

-X246766Y281172D01*

-X246491Y281340D01*

-X246192Y281464D01*

-X245879Y281539D01*

-X245557Y281564D01*

-X245235Y281539D01*

-X244922Y281464D01*

-X244623Y281340D01*

-X244348Y281172D01*

-X244103Y280962D01*

-X243893Y280717D01*

-X243725Y280442D01*

-X243601Y280143D01*

-X243526Y279830D01*

-X243501Y279508D01*

-X243526Y279186D01*

-X243601Y278873D01*

-X243725Y278574D01*

-X243893Y278299D01*

-X244103Y278054D01*

-X244348Y277844D01*

-X244623Y277676D01*

-X244922Y277552D01*

-X245235Y277477D01*

-X245557Y277452D01*

-X245879Y277477D01*

-X245889Y277479D01*

-X247093Y276275D01*

-X239299D01*

-Y277130D01*

-G37*

-G36*

-Y281353D02*X231641Y289011D01*

-Y290500D01*

-X238332D01*

-X239299Y289533D01*

-Y281353D01*

-G37*

-G36*

-X236438Y247050D02*X239299D01*

-Y201500D01*

-X236845D01*

-X236474Y201589D01*

-X236438Y201592D01*

-Y233695D01*

-X236441Y233694D01*

-X236723Y233717D01*

-X236999Y233783D01*

-X237261Y233891D01*

-X237502Y234039D01*

-X237718Y234223D01*

-X237902Y234439D01*

-X238050Y234680D01*

-X238158Y234942D01*

-X238224Y235218D01*

-X238241Y235500D01*

-X238224Y235782D01*

-X238158Y236058D01*

-X238050Y236320D01*

-X237902Y236561D01*

-X237718Y236777D01*

-X237502Y236961D01*

-X237261Y237109D01*

-X236999Y237217D01*

-X236723Y237283D01*

-X236441Y237306D01*

-X236438Y237305D01*

-Y247050D01*

-G37*

-G36*

-Y264380D02*X239299D01*

-Y264291D01*

-X238980Y264266D01*

-X238667Y264191D01*

-X238368Y264067D01*

-X238093Y263899D01*

-X237848Y263689D01*

-X237638Y263444D01*

-X237470Y263169D01*

-X237346Y262870D01*

-X237271Y262557D01*

-X237246Y262235D01*

-X237271Y261913D01*

-X237346Y261600D01*

-X237470Y261301D01*

-X237638Y261026D01*

-X237848Y260781D01*

-X238093Y260571D01*

-X238368Y260403D01*

-X238667Y260279D01*

-X238980Y260204D01*

-X239299Y260179D01*

-Y256200D01*

-X236438D01*

-Y264380D01*

-G37*

-G36*

-Y270771D02*X239299D01*

-Y266780D01*

-X236438D01*

-Y270771D01*

-G37*

-G36*

-Y273875D02*X239299D01*

-Y273171D01*

-X236438D01*

-Y273875D01*

-G37*

-G36*

-Y280820D02*X238593Y278665D01*

-X238585Y278564D01*

-X238608Y278282D01*

-X238674Y278006D01*

-X238782Y277744D01*

-X238930Y277503D01*

-X239114Y277287D01*

-X239299Y277130D01*

-Y276275D01*

-X236438D01*

-Y280820D01*

-G37*

-G36*

-X224938Y247270D02*X225159Y247217D01*

-X225441Y247194D01*

-X225723Y247217D01*

-X225999Y247283D01*

-X226261Y247391D01*

-X226502Y247539D01*

-X226718Y247723D01*

-X226902Y247939D01*

-X227050Y248180D01*

-X227158Y248442D01*

-X227224Y248718D01*

-X227229Y248800D01*

-X230371D01*

-X230159Y248783D01*

-X229883Y248717D01*

-X229621Y248609D01*

-X229380Y248461D01*

-X229164Y248277D01*

-X228980Y248061D01*

-X228832Y247820D01*

-X228724Y247558D01*

-X228658Y247282D01*

-X228635Y247000D01*

-X228658Y246718D01*

-X228724Y246442D01*

-X228832Y246180D01*

-X228980Y245939D01*

-X229164Y245723D01*

-X229380Y245539D01*

-X229621Y245391D01*

-X229883Y245283D01*

-X230159Y245217D01*

-X230441Y245194D01*

-X230723Y245217D01*

-X230999Y245283D01*

-X231261Y245391D01*

-X231502Y245539D01*

-X231718Y245723D01*

-X231902Y245939D01*

-X232050Y246180D01*

-X232158Y246442D01*

-X232224Y246718D01*

-X232241Y247000D01*

-X232238Y247050D01*

-X236438D01*

-Y237305D01*

-X236159Y237283D01*

-X235883Y237217D01*

-X235621Y237109D01*

-X235380Y236961D01*

-X235164Y236777D01*

-X234980Y236561D01*

-X234832Y236320D01*

-X234724Y236058D01*

-X234658Y235782D01*

-X234635Y235500D01*

-X234658Y235218D01*

-X234724Y234942D01*

-X234832Y234680D01*

-X234980Y234439D01*

-X235164Y234223D01*

-X235380Y234039D01*

-X235621Y233891D01*

-X235883Y233783D01*

-X236159Y233717D01*

-X236438Y233695D01*

-Y201592D01*

-X235799Y201642D01*

-X235124Y201589D01*

-X234753Y201500D01*

-X226845D01*

-X226474Y201589D01*

-X225799Y201642D01*

-X225124Y201589D01*

-X224938Y201544D01*

-Y218695D01*

-X224941Y218694D01*

-X225223Y218717D01*

-X225499Y218783D01*

-X225761Y218891D01*

-X226002Y219039D01*

-X226218Y219223D01*

-X226402Y219439D01*

-X226550Y219680D01*

-X226658Y219942D01*

-X226724Y220218D01*

-X226741Y220500D01*

-X226724Y220782D01*

-X226658Y221058D01*

-X226550Y221320D01*

-X226402Y221561D01*

-X226218Y221777D01*

-X226002Y221961D01*

-X225761Y222109D01*

-X225499Y222217D01*

-X225223Y222283D01*

-X224941Y222306D01*

-X224938Y222305D01*

-Y224770D01*

-X225159Y224717D01*

-X225441Y224694D01*

-X225723Y224717D01*

-X225999Y224783D01*

-X226261Y224891D01*

-X226502Y225039D01*

-X226718Y225223D01*

-X226902Y225439D01*

-X227050Y225680D01*

-X227158Y225942D01*

-X227224Y226218D01*

-X227241Y226500D01*

-X227224Y226782D01*

-X227158Y227058D01*

-X227050Y227320D01*

-X226902Y227561D01*

-X226718Y227777D01*

-X226502Y227961D01*

-X226261Y228109D01*

-X225999Y228217D01*

-X225723Y228283D01*

-X225441Y228306D01*

-X225159Y228283D01*

-X224938Y228230D01*

-Y233695D01*

-X224941Y233694D01*

-X225223Y233717D01*

-X225499Y233783D01*

-X225761Y233891D01*

-X226002Y234039D01*

-X226218Y234223D01*

-X226402Y234439D01*

-X226550Y234680D01*

-X226658Y234942D01*

-X226724Y235218D01*

-X226741Y235500D01*

-X226724Y235782D01*

-X226658Y236058D01*

-X226550Y236320D01*

-X226402Y236561D01*

-X226218Y236777D01*

-X226002Y236961D01*

-X225761Y237109D01*

-X225499Y237217D01*

-X225223Y237283D01*

-X224941Y237306D01*

-X224938Y237305D01*

-Y242268D01*

-X224999Y242283D01*

-X225261Y242391D01*

-X225502Y242539D01*

-X225718Y242723D01*

-X225902Y242939D01*

-X226050Y243180D01*

-X226158Y243442D01*

-X226224Y243718D01*

-X226241Y244000D01*

-X226224Y244282D01*

-X226158Y244558D01*

-X226050Y244820D01*

-X225902Y245061D01*

-X225718Y245277D01*

-X225502Y245461D01*

-X225261Y245609D01*

-X224999Y245717D01*

-X224938Y245732D01*

-Y247270D01*

-G37*

-G36*

-X220438Y252921D02*X220607Y252723D01*

-X220823Y252539D01*

-X221064Y252391D01*

-X221326Y252283D01*

-X221602Y252217D01*

-X221884Y252194D01*

-X222166Y252217D01*

-X222442Y252283D01*

-X222682Y252382D01*

-X222658Y252282D01*

-X222635Y252000D01*

-X222658Y251718D01*

-X222724Y251442D01*

-X222832Y251180D01*

-X222980Y250939D01*

-X223164Y250723D01*

-X223380Y250539D01*

-X223621Y250391D01*

-X223883Y250283D01*

-X224121Y250226D01*

-X223980Y250061D01*

-X223832Y249820D01*

-X223724Y249558D01*

-X223658Y249282D01*

-X223635Y249000D01*

-X223658Y248718D01*

-X223724Y248442D01*

-X223832Y248180D01*

-X223980Y247939D01*

-X224164Y247723D01*

-X224380Y247539D01*

-X224621Y247391D01*

-X224883Y247283D01*

-X224938Y247270D01*

-Y245732D01*

-X224723Y245783D01*

-X224441Y245806D01*

-X224159Y245783D01*

-X223883Y245717D01*

-X223621Y245609D01*

-X223380Y245461D01*

-X223164Y245277D01*

-X222980Y245061D01*

-X222832Y244820D01*

-X222724Y244558D01*

-X222658Y244282D01*

-X222635Y244000D01*

-X222658Y243718D01*

-X222724Y243442D01*

-X222832Y243180D01*

-X222980Y242939D01*

-X223164Y242723D01*

-X223380Y242539D01*

-X223621Y242391D01*

-X223883Y242283D01*

-X224159Y242217D01*

-X224441Y242194D01*

-X224723Y242217D01*

-X224938Y242268D01*

-Y237305D01*

-X224659Y237283D01*

-X224383Y237217D01*

-X224121Y237109D01*

-X223880Y236961D01*

-X223664Y236777D01*

-X223480Y236561D01*

-X223332Y236320D01*

-X223224Y236058D01*

-X223158Y235782D01*

-X223135Y235500D01*

-X223158Y235218D01*

-X223224Y234942D01*

-X223332Y234680D01*

-X223480Y234439D01*

-X223664Y234223D01*

-X223880Y234039D01*

-X224121Y233891D01*

-X224383Y233783D01*

-X224659Y233717D01*

-X224938Y233695D01*

-Y228230D01*

-X224883Y228217D01*

-X224621Y228109D01*

-X224380Y227961D01*

-X224164Y227777D01*

-X223980Y227561D01*

-X223832Y227320D01*

-X223724Y227058D01*

-X223658Y226782D01*

-X223635Y226500D01*

-X223658Y226218D01*

-X223724Y225942D01*

-X223832Y225680D01*

-X223980Y225439D01*

-X224164Y225223D01*

-X224380Y225039D01*

-X224621Y224891D01*

-X224883Y224783D01*

-X224938Y224770D01*

-Y222305D01*

-X224659Y222283D01*

-X224383Y222217D01*

-X224121Y222109D01*

-X223880Y221961D01*

-X223664Y221777D01*

-X223480Y221561D01*

-X223332Y221320D01*

-X223224Y221058D01*

-X223158Y220782D01*

-X223135Y220500D01*

-X223158Y220218D01*

-X223224Y219942D01*

-X223332Y219680D01*

-X223480Y219439D01*

-X223664Y219223D01*

-X223880Y219039D01*

-X224121Y218891D01*

-X224383Y218783D01*

-X224659Y218717D01*

-X224938Y218695D01*

-Y201544D01*

-X224753Y201500D01*

-X220438D01*

-Y213195D01*

-X220441Y213194D01*

-X220723Y213217D01*

-X220999Y213283D01*

-X221261Y213391D01*

-X221502Y213539D01*

-X221718Y213723D01*

-X221902Y213939D01*

-X222050Y214180D01*

-X222158Y214442D01*

-X222224Y214718D01*

-X222241Y215000D01*

-X222224Y215282D01*

-X222158Y215558D01*

-X222050Y215820D01*

-X221902Y216061D01*

-X221718Y216277D01*

-X221502Y216461D01*

-X221261Y216609D01*

-X220999Y216717D01*

-X220723Y216783D01*

-X220441Y216806D01*

-X220438Y216805D01*

-Y252921D01*

-G37*

-G36*

-Y263799D02*X220447Y263797D01*

-X220729Y263774D01*

-X221011Y263797D01*

-X221287Y263863D01*

-X221549Y263971D01*

-X221790Y264119D01*

-X222006Y264303D01*

-X222071Y264380D01*

-X236438D01*

-Y256200D01*

-X222931D01*

-X222884Y256204D01*

-X222696Y256189D01*

-X222512Y256145D01*

-X222338Y256073D01*

-X222176Y255974D01*

-X222176Y255974D01*

-X222033Y255851D01*

-X222002Y255815D01*

-X221985Y255798D01*

-X221884Y255806D01*

-X221602Y255783D01*

-X221326Y255717D01*

-X221064Y255609D01*

-X220823Y255461D01*

-X220607Y255277D01*

-X220438Y255079D01*

-Y257243D01*

-X220441Y257243D01*

-X220794Y257271D01*

-X221138Y257354D01*

-X221466Y257489D01*

-X221768Y257674D01*

-X222037Y257904D01*

-X222267Y258173D01*

-X222452Y258475D01*

-X222587Y258803D01*

-X222670Y259147D01*

-X222698Y259500D01*

-X222670Y259853D01*

-X222587Y260197D01*

-X222452Y260525D01*

-X222267Y260827D01*

-X222032Y261091D01*

-X220438Y262685D01*

-Y263799D01*

-G37*

-G36*

-Y270771D02*X223941D01*

-X223941Y270771D01*

-X236438D01*

-Y266780D01*

-X222071D01*

-X222006Y266857D01*

-X221790Y267041D01*

-X221549Y267189D01*

-X221287Y267297D01*

-X221011Y267363D01*

-X220729Y267386D01*

-X220447Y267363D01*

-X220438Y267361D01*

-Y270771D01*

-G37*

-G36*

-Y274426D02*X220617Y274252D01*

-X220642Y274224D01*

-X220785Y274101D01*

-X220795Y274096D01*

-X220801Y274090D01*

-X220874Y274047D01*

-X220947Y274002D01*

-X220955Y273999D01*

-X220964Y273994D01*

-X221043Y273963D01*

-X221121Y273930D01*

-X221130Y273928D01*

-X221139Y273924D01*

-X221222Y273906D01*

-X221305Y273886D01*

-X221313Y273886D01*

-X221324Y273883D01*

-X221512Y273871D01*

-X221550Y273875D01*

-X236438D01*

-Y273171D01*

-X223941D01*

-X223941Y273171D01*

-X221111D01*

-X221050Y273320D01*

-X220902Y273561D01*

-X220718Y273777D01*

-X220502Y273961D01*

-X220438Y274000D01*

-Y274426D01*

-G37*

-G36*

-Y290500D02*X229241D01*

-Y288561D01*

-X229237Y288514D01*

-X229252Y288326D01*

-X229296Y288142D01*

-X229368Y287968D01*

-X229467Y287806D01*

-X229467Y287806D01*

-X229590Y287663D01*

-X229626Y287632D01*

-X236438Y280820D01*

-Y276275D01*

-X221979D01*

-X220438Y277767D01*

-Y290500D01*

-G37*

-G36*

-Y255079D02*X220423Y255061D01*

-X220275Y254820D01*

-X220167Y254558D01*

-X220101Y254282D01*

-X220078Y254000D01*

-X220101Y253718D01*

-X220167Y253442D01*

-X220275Y253180D01*

-X220423Y252939D01*

-X220438Y252921D01*

-Y216805D01*

-X220159Y216783D01*

-X219883Y216717D01*

-X219621Y216609D01*

-X219380Y216461D01*

-X219164Y216277D01*

-X218980Y216061D01*

-X218832Y215820D01*

-X218724Y215558D01*

-X218658Y215282D01*

-X218635Y215000D01*

-X218658Y214718D01*

-X218724Y214442D01*

-X218832Y214180D01*

-X218980Y213939D01*

-X219164Y213723D01*

-X219380Y213539D01*

-X219621Y213391D01*

-X219883Y213283D01*

-X220159Y213217D01*

-X220438Y213195D01*

-Y201500D01*

-X216845D01*

-X216474Y201589D01*

-X215799Y201642D01*

-X215124Y201589D01*

-X214753Y201500D01*

-X212938D01*

-Y218913D01*

-X214276Y218914D01*

-X214506Y218969D01*

-X214724Y219059D01*

-X214925Y219183D01*

-X215105Y219336D01*

-X215258Y219516D01*

-X215382Y219717D01*

-X215472Y219935D01*

-X215527Y220165D01*

-X215541Y220400D01*

-X215527Y232835D01*

-X215472Y233065D01*

-X215382Y233283D01*

-X215258Y233484D01*

-X215105Y233664D01*

-X214925Y233817D01*

-X214724Y233941D01*

-X214506Y234031D01*

-X214276Y234086D01*

-X214041Y234100D01*

-X212938Y234099D01*

-Y236195D01*

-X212941Y236194D01*

-X213223Y236217D01*

-X213499Y236283D01*

-X213761Y236391D01*

-X214002Y236539D01*

-X214218Y236723D01*

-X214402Y236939D01*

-X214550Y237180D01*

-X214658Y237442D01*

-X214724Y237718D01*

-X214741Y238000D01*

-X214724Y238282D01*

-X214658Y238558D01*

-X214550Y238820D01*

-X214402Y239061D01*

-X214218Y239277D01*

-X214002Y239461D01*

-X213761Y239609D01*

-X213499Y239717D01*

-X213223Y239783D01*

-X212941Y239806D01*

-X212938Y239805D01*

-Y243308D01*

-X215576Y243314D01*

-X215806Y243369D01*

-X216024Y243459D01*

-X216225Y243583D01*

-X216405Y243736D01*

-X216558Y243916D01*

-X216682Y244117D01*

-X216772Y244335D01*

-X216827Y244565D01*

-X216841Y244800D01*

-X216827Y257235D01*

-X216772Y257465D01*

-X216682Y257683D01*

-X216558Y257884D01*

-X216405Y258064D01*

-X216225Y258217D01*

-X216024Y258341D01*

-X215806Y258431D01*

-X215576Y258486D01*

-X215341Y258500D01*

-X214791Y258499D01*

-Y258957D01*

-X214800Y258957D01*

-X214953Y258994D01*

-X215098Y259054D01*

-X215233Y259136D01*

-X215352Y259239D01*

-X215455Y259358D01*

-X215537Y259493D01*

-X215597Y259638D01*

-X215634Y259791D01*

-X215643Y259948D01*

-X215641Y261043D01*

-X215716D01*

-X218850Y257909D01*

-X219114Y257674D01*

-X219416Y257489D01*

-X219744Y257354D01*

-X220088Y257271D01*

-X220438Y257243D01*

-Y255079D01*

-G37*

-G36*

-X212938Y234099D02*X210438Y234098D01*

-Y243302D01*

-X212938Y243308D01*

-Y239805D01*

-X212659Y239783D01*

-X212383Y239717D01*

-X212121Y239609D01*

-X211880Y239461D01*

-X211664Y239277D01*

-X211480Y239061D01*

-X211332Y238820D01*

-X211224Y238558D01*

-X211158Y238282D01*

-X211135Y238000D01*

-X211158Y237718D01*

-X211224Y237442D01*

-X211332Y237180D01*

-X211480Y236939D01*

-X211664Y236723D01*

-X211880Y236539D01*

-X212121Y236391D01*

-X212383Y236283D01*

-X212659Y236217D01*

-X212938Y236195D01*

-Y234099D01*

-G37*

-G36*

-Y201500D02*X210438D01*

-Y210695D01*

-X210441Y210694D01*

-X210723Y210717D01*

-X210999Y210783D01*

-X211261Y210891D01*

-X211502Y211039D01*

-X211718Y211223D01*

-X211902Y211439D01*

-X212050Y211680D01*

-X212158Y211942D01*

-X212224Y212218D01*

-X212241Y212500D01*

-X212224Y212782D01*

-X212158Y213058D01*

-X212050Y213320D01*

-X211902Y213561D01*

-X211718Y213777D01*

-X211502Y213961D01*

-X211261Y214109D01*

-X210999Y214217D01*

-X210723Y214283D01*

-X210441Y214306D01*

-X210438Y214305D01*

-Y218911D01*

-X212938Y218913D01*

-Y201500D01*

-G37*

-G36*

-X210438Y290500D02*X220438D01*

-Y277767D01*

-X219237Y278931D01*

-X219241Y279000D01*

-X219224Y279282D01*

-X219158Y279558D01*

-X219050Y279820D01*

-X218902Y280061D01*

-X218718Y280277D01*

-X218502Y280461D01*

-X218261Y280609D01*

-X217999Y280717D01*

-X217723Y280783D01*

-X217441Y280806D01*

-X217159Y280783D01*

-X216883Y280717D01*

-X216621Y280609D01*

-X216380Y280461D01*

-X216164Y280277D01*

-X215980Y280061D01*

-X215832Y279820D01*

-X215724Y279558D01*

-X215658Y279282D01*

-X215635Y279000D01*

-X215658Y278718D01*

-X215724Y278442D01*

-X215832Y278180D01*

-X215980Y277939D01*

-X216164Y277723D01*

-X216380Y277539D01*

-X216621Y277391D01*

-X216883Y277283D01*

-X217159Y277217D01*

-X217441Y277194D01*

-X217570Y277205D01*

-X220438Y274426D01*

-Y274000D01*

-X220261Y274109D01*

-X219999Y274217D01*

-X219723Y274283D01*

-X219441Y274306D01*

-X219159Y274283D01*

-X218883Y274217D01*

-X218621Y274109D01*

-X218380Y273961D01*

-X218164Y273777D01*

-X217980Y273561D01*

-X217832Y273320D01*

-X217724Y273058D01*

-X217658Y272782D01*

-X217635Y272500D01*

-X217658Y272218D01*

-X217724Y271942D01*

-X217832Y271680D01*

-X217980Y271439D01*

-X218164Y271223D01*

-X218380Y271039D01*

-X218621Y270891D01*

-X218883Y270783D01*

-X219159Y270717D01*

-X219441Y270694D01*

-X219723Y270717D01*

-X219943Y270769D01*

-X219970Y270767D01*

-X220017Y270771D01*

-X220438D01*

-Y267361D01*

-X220171Y267297D01*

-X219909Y267189D01*

-X219668Y267041D01*

-X219452Y266857D01*

-X219268Y266641D01*

-X219120Y266400D01*

-X219012Y266138D01*

-X218946Y265862D01*

-X218923Y265580D01*

-X218946Y265298D01*

-X219012Y265022D01*

-X219120Y264760D01*

-X219268Y264519D01*

-X219452Y264303D01*

-X219668Y264119D01*

-X219909Y263971D01*

-X220171Y263863D01*

-X220438Y263799D01*

-Y262685D01*

-X218301Y264822D01*

-X218244Y264889D01*

-X217975Y265119D01*

-X217975Y265119D01*

-X217860Y265189D01*

-X217673Y265304D01*

-X217441Y265400D01*

-X217345Y265439D01*

-X217001Y265522D01*

-X216648Y265550D01*

-X216560Y265543D01*

-X215634D01*

-X215634Y266009D01*

-X215597Y266162D01*

-X215537Y266307D01*

-X215455Y266442D01*

-X215352Y266561D01*

-X215233Y266664D01*

-X215098Y266746D01*

-X214953Y266806D01*

-X214800Y266843D01*

-X214643Y266852D01*

-X214334Y266851D01*

-Y267948D01*

-X214341Y268036D01*

-X214313Y268389D01*

-X214313Y268389D01*

-X214230Y268733D01*

-X214095Y269061D01*

-X213910Y269363D01*

-X213680Y269632D01*

-X213613Y269689D01*

-X213268Y270034D01*

-X213266Y270954D01*

-X213229Y271107D01*

-X213169Y271252D01*

-X213087Y271387D01*

-X212984Y271506D01*

-X212865Y271609D01*

-X212730Y271691D01*

-X212585Y271751D01*

-X212432Y271788D01*

-X212275Y271797D01*

-X210438Y271792D01*

-Y290500D01*

-G37*

-G36*

-Y234098D02*X203441Y234093D01*

-Y235769D01*

-X203659Y235717D01*

-X203941Y235694D01*

-X204223Y235717D01*

-X204499Y235783D01*

-X204761Y235891D01*

-X205002Y236039D01*

-X205218Y236223D01*

-X205402Y236439D01*

-X205550Y236680D01*

-X205658Y236942D01*

-X205724Y237218D01*

-X205741Y237500D01*

-X205724Y237782D01*

-X205658Y238058D01*

-X205550Y238320D01*

-X205402Y238561D01*

-X205218Y238777D01*

-X205002Y238961D01*

-X204761Y239109D01*

-X204499Y239217D01*

-X204223Y239283D01*

-X203941Y239306D01*

-X203659Y239283D01*

-X203441Y239231D01*

-Y243307D01*

-X206476Y243314D01*

-X206706Y243369D01*

-X206924Y243459D01*

-X207125Y243583D01*

-X207305Y243736D01*

-X207458Y243916D01*

-X207582Y244117D01*

-X207672Y244335D01*

-X207727Y244565D01*

-X207741Y244800D01*

-X207727Y257235D01*

-X207672Y257465D01*

-X207582Y257683D01*

-X207458Y257884D01*

-X207305Y258064D01*

-X207125Y258217D01*

-X206924Y258341D01*

-X206706Y258431D01*

-X206476Y258486D01*

-X206241Y258500D01*

-X203441Y258493D01*

-Y258950D01*

-X207714Y258957D01*

-X207867Y258994D01*

-X208012Y259054D01*

-X208147Y259136D01*

-X208266Y259239D01*

-X208369Y259358D01*

-X208451Y259493D01*

-X208511Y259638D01*

-X208541Y259763D01*

-X208571Y259638D01*

-X208631Y259493D01*

-X208713Y259358D01*

-X208816Y259239D01*

-X208935Y259136D01*

-X209070Y259054D01*

-X209215Y258994D01*

-X209368Y258957D01*

-X209525Y258948D01*

-X210291Y258949D01*

-Y258488D01*

-X209506Y258486D01*

-X209276Y258431D01*

-X209058Y258341D01*

-X208857Y258217D01*

-X208677Y258064D01*

-X208524Y257884D01*

-X208400Y257683D01*

-X208310Y257465D01*

-X208255Y257235D01*

-X208241Y257000D01*

-X208255Y244565D01*

-X208310Y244335D01*

-X208400Y244117D01*

-X208524Y243916D01*

-X208677Y243736D01*

-X208857Y243583D01*

-X209058Y243459D01*

-X209276Y243369D01*

-X209506Y243314D01*

-X209741Y243300D01*

-X210438Y243302D01*

-Y234098D01*

-G37*

-G36*

-Y201500D02*X206845D01*

-X206474Y201589D01*

-X205799Y201642D01*

-X205124Y201589D01*

-X204753Y201500D01*

-X203441D01*

-Y211002D01*

-X203502Y211039D01*

-X203718Y211223D01*

-X203902Y211439D01*

-X204050Y211680D01*

-X204158Y211942D01*

-X204224Y212218D01*

-X204241Y212500D01*

-X204224Y212782D01*

-X204158Y213058D01*

-X204050Y213320D01*

-X203902Y213561D01*

-X203718Y213777D01*

-X203502Y213961D01*

-X203441Y213998D01*

-Y218907D01*

-X210438Y218911D01*

-Y214305D01*

-X210159Y214283D01*

-X209883Y214217D01*

-X209621Y214109D01*

-X209380Y213961D01*

-X209164Y213777D01*

-X208980Y213561D01*

-X208832Y213320D01*

-X208724Y213058D01*

-X208658Y212782D01*

-X208635Y212500D01*

-X208658Y212218D01*

-X208724Y211942D01*

-X208832Y211680D01*

-X208980Y211439D01*

-X209164Y211223D01*

-X209380Y211039D01*

-X209621Y210891D01*

-X209883Y210783D01*

-X210159Y210717D01*

-X210438Y210695D01*

-Y201500D01*

-G37*

-G36*

-X205438Y290500D02*X210438D01*

-Y271792D01*

-X209166Y271788D01*

-X209013Y271751D01*

-X208868Y271691D01*

-X208733Y271609D01*

-X208614Y271506D01*

-X208511Y271387D01*

-X208429Y271252D01*

-X208369Y271107D01*

-X208332Y270954D01*

-X208323Y270797D01*

-X208332Y266704D01*

-X208369Y266551D01*

-X208429Y266406D01*

-X208511Y266271D01*

-X208582Y266189D01*

-X208571Y266162D01*

-X208541Y266037D01*

-X208511Y266162D01*

-X208451Y266307D01*

-X208369Y266442D01*

-X208266Y266561D01*

-X208147Y266664D01*

-X208139Y266668D01*

-X208148Y266704D01*

-X208157Y266861D01*

-X208148Y270954D01*

-X208111Y271107D01*

-X208051Y271252D01*

-X207969Y271387D01*

-X207866Y271506D01*

-X207747Y271609D01*

-X207612Y271691D01*

-X207467Y271751D01*

-X207314Y271788D01*

-X207157Y271797D01*

-X205438Y271792D01*

-Y275195D01*

-X205441Y275194D01*

-X205723Y275217D01*

-X205999Y275283D01*

-X206261Y275391D01*

-X206502Y275539D01*

-X206718Y275723D01*

-X206902Y275939D01*

-X207050Y276180D01*

-X207158Y276442D01*

-X207224Y276718D01*

-X207241Y277000D01*

-X207224Y277282D01*

-X207158Y277558D01*

-X207050Y277820D01*

-X206902Y278061D01*

-X206718Y278277D01*

-X206502Y278461D01*

-X206261Y278609D01*

-X205999Y278717D01*

-X205723Y278783D01*

-X205441Y278806D01*

-X205438Y278805D01*

-Y290500D01*

-G37*

-G36*

-X203441D02*X205438D01*

-Y278805D01*

-X205159Y278783D01*

-X204883Y278717D01*

-X204621Y278609D01*

-X204380Y278461D01*

-X204164Y278277D01*

-X203980Y278061D01*

-X203832Y277820D01*

-X203724Y277558D01*

-X203658Y277282D01*

-X203635Y277000D01*

-X203658Y276718D01*

-X203724Y276442D01*

-X203832Y276180D01*

-X203980Y275939D01*

-X204164Y275723D01*

-X204380Y275539D01*

-X204621Y275391D01*

-X204883Y275283D01*

-X205159Y275217D01*

-X205438Y275195D01*

-Y271792D01*

-X204048Y271788D01*

-X203895Y271751D01*

-X203750Y271691D01*

-X203615Y271609D01*

-X203496Y271506D01*

-X203441Y271442D01*

-Y290500D01*

-G37*

-G36*

-X193938Y218901D02*X203441Y218907D01*

-Y213998D01*

-X203261Y214109D01*

-X202999Y214217D01*

-X202723Y214283D01*

-X202441Y214306D01*

-X202159Y214283D01*

-X201883Y214217D01*

-X201621Y214109D01*

-X201380Y213961D01*

-X201164Y213777D01*

-X200980Y213561D01*

-X200832Y213320D01*

-X200724Y213058D01*

-X200658Y212782D01*

-X200635Y212500D01*

-X200658Y212218D01*

-X200724Y211942D01*

-X200832Y211680D01*

-X200980Y211439D01*

-X201164Y211223D01*

-X201380Y211039D01*

-X201621Y210891D01*

-X201883Y210783D01*

-X202159Y210717D01*

-X202441Y210694D01*

-X202723Y210717D01*

-X202999Y210783D01*

-X203261Y210891D01*

-X203441Y211002D01*

-Y201500D01*

-X199592D01*

-X199554Y201523D01*

-X199409Y201583D01*

-X199256Y201620D01*

-X199099Y201629D01*

-X193938Y201622D01*

-Y210695D01*

-X193941Y210694D01*

-X194223Y210717D01*

-X194499Y210783D01*

-X194761Y210891D01*

-X195002Y211039D01*

-X195218Y211223D01*

-X195402Y211439D01*

-X195550Y211680D01*

-X195658Y211942D01*

-X195724Y212218D01*

-X195741Y212500D01*

-X195724Y212782D01*

-X195658Y213058D01*

-X195550Y213320D01*

-X195402Y213561D01*

-X195218Y213777D01*

-X195002Y213961D01*

-X194761Y214109D01*

-X194499Y214217D01*

-X194223Y214283D01*

-X193941Y214306D01*

-X193938Y214305D01*

-Y218901D01*

-G37*

-G36*

-X198438Y243892D02*X198458Y243916D01*

-X198582Y244117D01*

-X198672Y244335D01*

-X198727Y244565D01*

-X198741Y244800D01*

-X198727Y257235D01*

-X198672Y257465D01*

-X198582Y257683D01*

-X198458Y257884D01*

-X198438Y257908D01*

-Y260695D01*

-X198441Y260694D01*

-X198723Y260717D01*

-X198999Y260783D01*

-X199261Y260891D01*

-X199502Y261039D01*

-X199718Y261223D01*

-X199902Y261439D01*

-X200050Y261680D01*

-X200158Y261942D01*

-X200224Y262218D01*

-X200241Y262500D01*

-X200224Y262782D01*

-X200158Y263058D01*

-X200050Y263320D01*

-X199902Y263561D01*

-X199718Y263777D01*

-X199502Y263961D01*

-X199261Y264109D01*

-X198999Y264217D01*

-X198723Y264283D01*

-X198441Y264306D01*

-X198438Y264305D01*

-Y267695D01*

-X198441Y267694D01*

-X198723Y267717D01*

-X198999Y267783D01*

-X199261Y267891D01*

-X199502Y268039D01*

-X199718Y268223D01*

-X199902Y268439D01*

-X200050Y268680D01*

-X200158Y268942D01*

-X200224Y269218D01*

-X200241Y269500D01*

-X200224Y269782D01*

-X200158Y270058D01*

-X200050Y270320D01*

-X199902Y270561D01*

-X199718Y270777D01*

-X199502Y270961D01*

-X199261Y271109D01*

-X198999Y271217D01*

-X198723Y271283D01*

-X198441Y271306D01*

-X198438Y271305D01*

-Y290500D01*

-X203441D01*

-Y271442D01*

-X203393Y271387D01*

-X203311Y271252D01*

-X203251Y271107D01*

-X203214Y270954D01*

-X203205Y270797D01*

-X203214Y266844D01*

-X202282Y266843D01*

-X202129Y266806D01*

-X201984Y266746D01*

-X201849Y266664D01*

-X201730Y266561D01*

-X201627Y266442D01*

-X201545Y266307D01*

-X201485Y266162D01*

-X201448Y266009D01*

-X201439Y265852D01*

-X201448Y259791D01*

-X201485Y259638D01*

-X201545Y259493D01*

-X201627Y259358D01*

-X201730Y259239D01*

-X201849Y259136D01*

-X201984Y259054D01*

-X202129Y258994D01*

-X202282Y258957D01*

-X202439Y258948D01*

-X203441Y258950D01*

-Y258493D01*

-X200406Y258486D01*

-X200176Y258431D01*

-X199958Y258341D01*

-X199757Y258217D01*

-X199577Y258064D01*

-X199424Y257884D01*

-X199300Y257683D01*

-X199210Y257465D01*

-X199155Y257235D01*

-X199141Y257000D01*

-X199155Y244565D01*

-X199210Y244335D01*

-X199300Y244117D01*

-X199424Y243916D01*

-X199577Y243736D01*

-X199757Y243583D01*

-X199958Y243459D01*

-X200176Y243369D01*

-X200406Y243314D01*

-X200641Y243300D01*

-X203441Y243307D01*

-Y239231D01*

-X203383Y239217D01*

-X203121Y239109D01*

-X202880Y238961D01*

-X202664Y238777D01*

-X202480Y238561D01*

-X202332Y238320D01*

-X202224Y238058D01*

-X202158Y237782D01*

-X202135Y237500D01*

-X202158Y237218D01*

-X202224Y236942D01*

-X202332Y236680D01*

-X202480Y236439D01*

-X202664Y236223D01*

-X202880Y236039D01*

-X203121Y235891D01*

-X203383Y235783D01*

-X203441Y235769D01*

-Y234093D01*

-X198438Y234090D01*

-Y243892D01*

-G37*

-G36*

-Y257908D02*X198305Y258064D01*

-X198125Y258217D01*

-X197924Y258341D01*

-X197706Y258431D01*

-X197476Y258486D01*

-X197241Y258500D01*

-X193938Y258492D01*

-Y290500D01*

-X198438D01*

-Y271305D01*

-X198159Y271283D01*

-X197883Y271217D01*

-X197621Y271109D01*

-X197380Y270961D01*

-X197164Y270777D01*

-X196980Y270561D01*

-X196832Y270320D01*

-X196724Y270058D01*

-X196658Y269782D01*

-X196635Y269500D01*

-X196658Y269218D01*

-X196724Y268942D01*

-X196832Y268680D01*

-X196980Y268439D01*

-X197164Y268223D01*

-X197380Y268039D01*

-X197621Y267891D01*

-X197883Y267783D01*

-X198159Y267717D01*

-X198438Y267695D01*

-Y264305D01*

-X198159Y264283D01*

-X197883Y264217D01*

-X197621Y264109D01*

-X197380Y263961D01*

-X197164Y263777D01*

-X196980Y263561D01*

-X196832Y263320D01*

-X196724Y263058D01*

-X196658Y262782D01*

-X196635Y262500D01*

-X196658Y262218D01*

-X196724Y261942D01*

-X196832Y261680D01*

-X196980Y261439D01*

-X197164Y261223D01*

-X197380Y261039D01*

-X197621Y260891D01*

-X197883Y260783D01*

-X198159Y260717D01*

-X198438Y260695D01*

-Y257908D01*

-G37*

-G36*

-X193938Y243305D02*X197476Y243314D01*

-X197706Y243369D01*

-X197924Y243459D01*

-X198125Y243583D01*

-X198305Y243736D01*

-X198438Y243892D01*

-Y234090D01*

-X193938Y234087D01*

-Y235195D01*

-X193941Y235194D01*

-X194223Y235217D01*

-X194499Y235283D01*

-X194761Y235391D01*

-X195002Y235539D01*

-X195218Y235723D01*

-X195402Y235939D01*

-X195550Y236180D01*

-X195658Y236442D01*

-X195724Y236718D01*

-X195741Y237000D01*

-X195724Y237282D01*

-X195658Y237558D01*

-X195550Y237820D01*

-X195402Y238061D01*

-X195218Y238277D01*

-X195002Y238461D01*

-X194761Y238609D01*

-X194499Y238717D01*

-X194223Y238783D01*

-X193941Y238806D01*

-X193938Y238805D01*

-Y243305D01*

-G37*

-G36*

-Y258492D02*X191406Y258486D01*

-X191176Y258431D01*

-X190958Y258341D01*

-X190757Y258217D01*

-X190577Y258064D01*

-X190424Y257884D01*

-X190300Y257683D01*

-X190210Y257465D01*

-X190155Y257235D01*

-X190141Y257000D01*

-X190142Y256450D01*

-X188729D01*

-X188641Y256457D01*

-X188288Y256429D01*

-X187944Y256346D01*

-X187616Y256211D01*

-X187314Y256026D01*

-X187314Y256026D01*

-X187045Y255796D01*

-X186988Y255729D01*

-X182012Y250753D01*

-X181945Y250696D01*

-X181938Y250688D01*

-Y256695D01*

-X181941Y256694D01*

-X182223Y256717D01*

-X182499Y256783D01*

-X182761Y256891D01*

-X183002Y257039D01*

-X183218Y257223D01*

-X183402Y257439D01*

-X183550Y257680D01*

-X183658Y257942D01*

-X183724Y258218D01*

-X183741Y258500D01*

-X183724Y258782D01*

-X183658Y259058D01*

-X183550Y259320D01*

-X183402Y259561D01*

-X183218Y259777D01*

-X183002Y259961D01*

-X182761Y260109D01*

-X182499Y260217D01*

-X182223Y260283D01*

-X181941Y260306D01*

-X181938Y260305D01*

-Y290500D01*

-X193938D01*

-Y258492D01*

-G37*

-G36*

-X181938Y250688D02*X181715Y250427D01*

-X181530Y250125D01*

-X181395Y249797D01*

-X181312Y249453D01*

-X181312Y249453D01*

-X181284Y249100D01*

-X181291Y249012D01*

-Y245994D01*

-X180432Y245993D01*

-X180279Y245956D01*

-X180134Y245896D01*

-X179999Y245814D01*

-X179880Y245711D01*

-X179777Y245592D01*

-X179695Y245457D01*

-X179635Y245312D01*

-X179598Y245159D01*

-X179589Y245002D01*

-X179590Y244693D01*

-X178472D01*

-X178384Y244700D01*

-X178031Y244672D01*

-X177687Y244589D01*

-X177359Y244454D01*

-X177057Y244269D01*

-X177057Y244269D01*

-X176788Y244039D01*

-X176731Y243972D01*

-X172441Y239682D01*

-Y290500D01*

-X181938D01*

-Y260305D01*

-X181659Y260283D01*

-X181383Y260217D01*

-X181121Y260109D01*

-X180880Y259961D01*

-X180664Y259777D01*

-X180480Y259561D01*

-X180332Y259320D01*

-X180224Y259058D01*

-X180158Y258782D01*

-X180135Y258500D01*

-X180158Y258218D01*

-X180224Y257942D01*

-X180332Y257680D01*

-X180480Y257439D01*

-X180664Y257223D01*

-X180880Y257039D01*

-X181121Y256891D01*

-X181383Y256783D01*

-X181659Y256717D01*

-X181938Y256695D01*

-Y250688D01*

-G37*

-G36*

-X185438Y231805D02*X186650Y231807D01*

-X186803Y231844D01*

-X186948Y231904D01*

-X187083Y231986D01*

-X187202Y232089D01*

-X187305Y232208D01*

-X187387Y232343D01*

-X187447Y232488D01*

-X187484Y232641D01*

-X187493Y232798D01*

-X187484Y238073D01*

-X187447Y238226D01*

-X187387Y238371D01*

-X187305Y238506D01*

-X187202Y238625D01*

-X187083Y238728D01*

-X186948Y238810D01*

-X186803Y238870D01*

-X186678Y238900D01*

-X186803Y238930D01*

-X186948Y238990D01*

-X187083Y239072D01*

-X187202Y239175D01*

-X187305Y239294D01*

-X187387Y239429D01*

-X187447Y239574D01*

-X187484Y239727D01*

-X187493Y239884D01*

-X187484Y245159D01*

-X187447Y245312D01*

-X187387Y245457D01*

-X187305Y245592D01*

-X187202Y245711D01*

-X187083Y245814D01*

-X186948Y245896D01*

-X186803Y245956D01*

-X186650Y245993D01*

-X186493Y246002D01*

-X185791Y246001D01*

-Y248168D01*

-X189573Y251950D01*

-X190147D01*

-X190155Y244565D01*

-X190210Y244335D01*

-X190300Y244117D01*

-X190424Y243916D01*

-X190577Y243736D01*

-X190757Y243583D01*

-X190958Y243459D01*

-X191176Y243369D01*

-X191406Y243314D01*

-X191641Y243300D01*

-X193938Y243305D01*

-Y238805D01*

-X193659Y238783D01*

-X193383Y238717D01*

-X193121Y238609D01*

-X192880Y238461D01*

-X192664Y238277D01*

-X192480Y238061D01*

-X192332Y237820D01*

-X192224Y237558D01*

-X192158Y237282D01*

-X192135Y237000D01*

-X192158Y236718D01*

-X192224Y236442D01*

-X192332Y236180D01*

-X192480Y235939D01*

-X192664Y235723D01*

-X192880Y235539D01*

-X193121Y235391D01*

-X193383Y235283D01*

-X193659Y235217D01*

-X193938Y235195D01*

-Y234087D01*

-X192606Y234086D01*

-X192376Y234031D01*

-X192158Y233941D01*

-X191957Y233817D01*

-X191777Y233664D01*

-X191624Y233484D01*

-X191500Y233283D01*

-X191410Y233065D01*

-X191355Y232835D01*

-X191341Y232600D01*

-X191355Y220165D01*

-X191410Y219935D01*

-X191500Y219717D01*

-X191624Y219516D01*

-X191777Y219336D01*

-X191957Y219183D01*

-X192158Y219059D01*

-X192376Y218969D01*

-X192606Y218914D01*

-X192841Y218900D01*

-X193938Y218901D01*

-Y214305D01*

-X193659Y214283D01*

-X193383Y214217D01*

-X193121Y214109D01*

-X192880Y213961D01*

-X192664Y213777D01*

-X192480Y213561D01*

-X192332Y213320D01*

-X192224Y213058D01*

-X192158Y212782D01*

-X192135Y212500D01*

-X192158Y212218D01*

-X192224Y211942D01*

-X192332Y211680D01*

-X192480Y211439D01*

-X192664Y211223D01*

-X192880Y211039D01*

-X193121Y210891D01*

-X193383Y210783D01*

-X193659Y210717D01*

-X193938Y210695D01*

-Y201622D01*

-X192342Y201620D01*

-X192189Y201583D01*

-X192044Y201523D01*

-X192006Y201500D01*

-X185438D01*

-Y215695D01*

-X185441Y215694D01*

-X185723Y215717D01*

-X185999Y215783D01*

-X186261Y215891D01*

-X186502Y216039D01*

-X186718Y216223D01*

-X186902Y216439D01*

-X187050Y216680D01*

-X187158Y216942D01*

-X187224Y217218D01*

-X187241Y217500D01*

-X187224Y217782D01*

-X187158Y218058D01*

-X187050Y218320D01*

-X186902Y218561D01*

-X186718Y218777D01*

-X186502Y218961D01*

-X186261Y219109D01*

-X185999Y219217D01*

-X185723Y219283D01*

-X185441Y219306D01*

-X185438Y219305D01*

-Y226195D01*

-X185441Y226194D01*

-X185723Y226217D01*

-X185999Y226283D01*

-X186261Y226391D01*

-X186502Y226539D01*

-X186718Y226723D01*

-X186902Y226939D01*

-X187050Y227180D01*

-X187158Y227442D01*

-X187224Y227718D01*

-X187241Y228000D01*

-X187224Y228282D01*

-X187158Y228558D01*

-X187050Y228820D01*

-X186902Y229061D01*

-X186718Y229277D01*

-X186502Y229461D01*

-X186261Y229609D01*

-X185999Y229717D01*

-X185723Y229783D01*

-X185441Y229806D01*

-X185438Y229805D01*

-Y231805D01*

-G37*

-G36*

-X179589Y237916D02*X179598Y232641D01*

-X179635Y232488D01*

-X179695Y232343D01*

-X179777Y232208D01*

-X179880Y232089D01*

-X179999Y231986D01*

-X180134Y231904D01*

-X180279Y231844D01*

-X180432Y231807D01*

-X180589Y231798D01*

-X185438Y231805D01*

-Y229805D01*

-X185159Y229783D01*

-X184883Y229717D01*

-X184621Y229609D01*

-X184380Y229461D01*

-X184164Y229277D01*

-X183980Y229061D01*

-X183832Y228820D01*

-X183724Y228558D01*

-X183658Y228282D01*

-X183635Y228000D01*

-X183658Y227718D01*

-X183724Y227442D01*

-X183832Y227180D01*

-X183980Y226939D01*

-X184164Y226723D01*

-X184380Y226539D01*

-X184621Y226391D01*

-X184883Y226283D01*

-X185159Y226217D01*

-X185438Y226195D01*

-Y219305D01*

-X185159Y219283D01*

-X184883Y219217D01*

-X184621Y219109D01*

-X184380Y218961D01*

-X184164Y218777D01*

-X183980Y218561D01*

-X183832Y218320D01*

-X183724Y218058D01*

-X183658Y217782D01*

-X183635Y217500D01*

-X183658Y217218D01*

-X183724Y216942D01*

-X183832Y216680D01*

-X183980Y216439D01*

-X184164Y216223D01*

-X184380Y216039D01*

-X184621Y215891D01*

-X184883Y215783D01*

-X185159Y215717D01*

-X185438Y215695D01*

-Y201500D01*

-X177438D01*

-Y215695D01*

-X177441Y215694D01*

-X177723Y215717D01*

-X177999Y215783D01*

-X178261Y215891D01*

-X178502Y216039D01*

-X178718Y216223D01*

-X178902Y216439D01*

-X179050Y216680D01*

-X179158Y216942D01*

-X179224Y217218D01*

-X179241Y217500D01*

-X179224Y217782D01*

-X179158Y218058D01*

-X179050Y218320D01*

-X178902Y218561D01*

-X178718Y218777D01*

-X178502Y218961D01*

-X178261Y219109D01*

-X177999Y219217D01*

-X177723Y219283D01*

-X177441Y219306D01*

-X177438Y219305D01*

-Y226195D01*

-X177441Y226194D01*

-X177723Y226217D01*

-X177999Y226283D01*

-X178261Y226391D01*

-X178502Y226539D01*

-X178718Y226723D01*

-X178902Y226939D01*

-X179050Y227180D01*

-X179158Y227442D01*

-X179224Y227718D01*

-X179241Y228000D01*

-X179224Y228282D01*

-X179158Y228558D01*

-X179050Y228820D01*

-X178902Y229061D01*

-X178718Y229277D01*

-X178502Y229461D01*

-X178261Y229609D01*

-X177999Y229717D01*

-X177723Y229783D01*

-X177441Y229806D01*

-X177438Y229805D01*

-Y238315D01*

-X179316Y240193D01*

-X179597D01*

-X179598Y239727D01*

-X179635Y239574D01*

-X179695Y239429D01*

-X179777Y239294D01*

-X179880Y239175D01*

-X179999Y239072D01*

-X180134Y238990D01*

-X180279Y238930D01*

-X180404Y238900D01*

-X180279Y238870D01*

-X180134Y238810D01*

-X179999Y238728D01*

-X179880Y238625D01*

-X179777Y238506D01*

-X179695Y238371D01*

-X179635Y238226D01*

-X179598Y238073D01*

-X179589Y237916D01*

-G37*

-G36*

-X177438Y201500D02*X172441D01*

-Y233318D01*

-X177438Y238315D01*

-Y229805D01*

-X177159Y229783D01*

-X176883Y229717D01*

-X176621Y229609D01*

-X176380Y229461D01*

-X176164Y229277D01*

-X175980Y229061D01*

-X175832Y228820D01*

-X175724Y228558D01*

-X175658Y228282D01*

-X175635Y228000D01*

-X175658Y227718D01*

-X175724Y227442D01*

-X175832Y227180D01*

-X175980Y226939D01*

-X176164Y226723D01*

-X176380Y226539D01*

-X176621Y226391D01*

-X176883Y226283D01*

-X177159Y226217D01*

-X177438Y226195D01*

-Y219305D01*

-X177159Y219283D01*

-X176883Y219217D01*

-X176621Y219109D01*

-X176380Y218961D01*

-X176164Y218777D01*

-X175980Y218561D01*

-X175832Y218320D01*

-X175724Y218058D01*

-X175658Y217782D01*

-X175635Y217500D01*

-X175658Y217218D01*

-X175724Y216942D01*

-X175832Y216680D01*

-X175980Y216439D01*

-X176164Y216223D01*

-X176380Y216039D01*

-X176621Y215891D01*

-X176883Y215783D01*

-X177159Y215717D01*

-X177438Y215695D01*

-Y201500D01*

-G37*

-G54D238*X404250Y300000D02*X376485D01*

-X402250Y305700D02*X391838D01*

-Y309311D02*Y305700D01*

-X394480Y314000D02*X398441D01*

-X394397Y313917D02*X394480Y314000D01*

-X389167Y311726D02*Y302000D01*

-X401750Y295000D02*X379044D01*

-Y290689D01*

-Y292839D02*Y290689D01*

-X382441Y293000D02*X381603Y292162D01*

-X391838Y293000D02*X382441D01*

-G54D239*X391838D02*X396441D01*

-X398441Y291000D01*

-G54D238*X373441Y319000D02*X368441Y314000D01*

-X374441Y317000D02*X369441Y312000D01*

-G54D239*X367441Y319000D02*Y337500D01*

-X363441Y319000D02*Y335904D01*

-X361698Y336799D02*Y320140D01*

-X360013Y337572D02*Y320860D01*

-G54D238*X382720Y319000D02*X373441D01*

-X379441Y317000D02*X374441D01*

-X389279Y324162D02*X387441Y326000D01*

-X381603Y314838D02*X379441Y317000D01*

-X381603Y313917D02*Y314838D01*

-G54D239*X382720Y319000D02*X386720Y315000D01*

-Y311614D01*

-X389279D02*Y324162D01*

-G54D238*X398441Y319441D02*Y314000D01*

-X395882Y324559D02*X393441Y327000D01*

-G54D239*X387441Y326000D02*X391338Y329897D01*

-G54D238*X398441Y324559D02*X395882D01*

-X389653Y278000D02*X371441D01*

-X381441Y282000D02*X371441D01*

-G54D239*Y278000D02*X368170Y281271D01*

-X370153Y283288D02*X371441Y282000D01*

-G54D238*X390441Y278788D02*X389653Y278000D01*

-X390441Y282588D02*Y278788D01*

-X389279Y283750D02*X390441Y282588D01*

-X389279Y290689D02*Y283750D01*

-X384162Y284721D02*X381441Y282000D01*

-X384162Y290689D02*Y284721D01*

-X386720Y288386D02*Y282000D01*

-X379044Y302000D02*X389167D01*

-X379044Y311614D02*Y302000D01*

-X376485Y311614D02*Y300000D01*

-X384162Y311614D02*Y306000D01*

-X381603Y292162D02*Y288386D01*

-X376485Y290689D02*X372441D01*

-X391838Y288386D02*Y293000D01*

-G54D239*Y290689D02*Y284085D01*

-X392388Y283535D01*

-G54D238*X402250Y314532D02*Y305700D01*

-X404250Y300000D02*Y311382D01*

-X402250Y293339D02*Y290653D01*

-Y293339D02*X401750D01*

-Y295000D02*Y293338D01*

-G54D240*X407000Y300618D02*Y294000D01*

-X409382Y303000D02*X407000Y300618D01*

-Y330618D02*Y324000D01*

-X427000Y301508D02*Y294000D01*

-X437000Y301508D02*Y294000D01*

-X453500Y300618D02*Y294000D01*

-X455882Y303000D02*X453500Y300618D01*

-X463500Y302508D02*Y294000D01*

-Y302508D03*

-X467882D02*X463500D01*

-X473500Y324000D02*Y316008D01*

-Y302508D02*Y294000D01*

-Y302508D02*X473000D01*

-X473500Y294000D02*Y286008D01*

-G54D238*X391338Y352897D02*Y348886D01*

-X393897Y341500D03*

-Y346583D02*Y341500D01*

-G54D239*X391338Y329897D02*Y349103D01*

-G54D238*X431882Y365468D03*

-X421882D01*

-X431882D02*Y361508D01*

-G54D240*X427000D02*Y354000D01*

-G54D238*X421882Y365468D02*Y362492D01*

-G54D240*X418441Y362000D02*X417000Y360559D01*

-Y354000D02*Y360500D01*

-X407000Y360618D02*Y354000D01*

-X409382Y363000D02*X407000Y360618D01*

-X421882Y362000D02*X418441D01*

-X417000Y360500D02*X414500Y363000D01*

-G54D238*X431882Y335468D03*

-X421882D01*

-X421823Y348468D02*X402250D01*

-X437433Y341500D02*X393897D01*

-X421882Y335468D02*Y332492D01*

-G54D240*X427000Y331508D02*Y324000D01*

-X437000Y331508D02*Y324000D01*

-X418559Y332000D02*X417000Y330441D01*

-Y330500D02*X414500Y333000D01*

-X409382D02*X407000Y330618D01*

-X421882Y332000D02*X418559D01*

-X473500Y333492D02*X473559D01*

-X473500Y332508D02*Y324000D01*

-X473559Y332508D02*X473500D01*

-X463500D03*

-D03*

-D03*

-D03*

-X468441D02*X463500D01*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y333492D01*

-Y332508D02*X463500D01*

-X461000D02*X463500D01*

-X453500Y330618D02*Y324000D01*

-X455882Y333000D02*X453500Y330618D01*

-X463500Y332508D02*Y324000D01*

-X427000Y354000D03*

-Y346992D01*

-D03*

-Y354000D03*

-G54D238*X421823Y348468D02*Y346008D01*

-G54D240*X427000Y346992D02*X426941D01*

-X427000D01*

-X426941D02*X427000D01*

-G54D238*X421823D02*Y348468D01*

-Y346992D02*Y348468D01*

-G54D240*X427000Y346992D03*

-X437000Y354000D03*

-Y346618D01*

-Y354000D03*

-X463500Y362508D03*

-D03*

-X461059D01*

-X463500D02*X461059D01*

-X463500D03*

-G54D238*X459941Y346500D02*X458441Y345000D01*

-X468500Y346500D02*X459941D01*

-G54D240*X437433Y346618D03*

-D03*

-G54D238*X431882Y335468D02*Y331508D01*

-G54D240*X437000Y361508D02*Y354000D01*

-X463500D03*

-X453500Y360559D02*Y354000D01*

-X455941Y363000D02*X453500Y360559D01*

-X463500Y362508D02*Y354000D01*

-X468441Y362508D02*X463500D01*

-X473500D02*Y354000D01*

-X473559Y362508D02*X473500D01*

-G54D238*X401596Y360000D02*Y354234D01*

-Y348468D02*X402250D01*

-X401596Y360000D02*Y348468D01*

-X421823D03*

-G54D240*X427000Y354000D03*

-X437000D03*

-G54D238*X421823Y348468D03*

-G54D239*X376456Y382000D02*X367546Y373090D01*

-X376024Y378412D02*X369155Y371543D01*

-G54D238*X376394Y367661D02*Y365000D01*

-X378441Y363000D02*X376394Y365047D01*

-X378441Y367500D02*Y372114D01*

-X376394Y370090D03*

-Y369450D03*

-X375985Y369950D02*X376394Y369450D01*

-X375985Y369811D02*X376394Y369450D01*

-Y370090D02*X375985D01*

-X376394D03*

-X375985D02*X376394D01*

-X375985D02*X376394D01*

-X375985Y369950D01*

-X376394Y370090D02*Y369950D01*

-X375985D02*X376394Y370090D01*

-Y369950D02*Y370090D01*

-X375985Y369950D01*

-G54D239*X379029Y378412D02*X376024D01*

-X376456Y382000D02*X384405D01*

-X387441Y378964D01*

-Y377067D01*

-X386220Y375846D01*

-Y372114D01*

-G54D238*X391338Y377051D02*Y372000D01*

-X383662Y372114D02*Y378500D01*

-X388779Y372114D02*Y367500D01*

-X401750Y371500D02*Y365000D01*

-G54D239*X385941Y367500D02*Y366000D01*

-X381103Y374417D02*Y376338D01*

-X379029Y378412D01*

-G54D238*X401596Y360000D02*X378544D01*

-X393441Y355897D02*Y355000D01*

-X391338Y358000D02*X393441Y355897D01*

-X399750Y363000D02*X378441D01*

-X401750Y365000D02*X399750Y363000D01*

-X388779Y367500D02*X378441D01*

-X393441Y355000D02*X391338Y352897D01*

-X378544Y360000D02*Y357210D01*

-X381103Y358000D02*X391338D01*

-X378544Y360000D02*Y354419D01*

-Y355500D02*Y353339D01*

-X376394Y369450D02*Y367661D01*

-Y369450D02*Y367661D01*

-G54D239*X369155Y371543D02*Y344257D01*

-X367546Y373090D02*Y345105D01*

-X369155Y344257D02*X361698Y336799D01*

-X367546Y345105D02*X360013Y337572D01*

-X363441Y335904D02*X372270Y344733D01*

-X372661Y342720D02*X367441Y337500D01*

-G54D238*X386220Y354221D02*X385941Y354500D01*

-X381103Y353500D02*Y358000D01*

-X386220Y348886D02*Y354221D01*

-X381103Y348886D02*Y353500D01*

-X378544Y353339D02*Y351189D01*

-X375985D02*X372441D01*

-X378544Y353339D02*Y351189D01*

-G54D239*X372270Y344733D02*X382441D01*

-X383662Y345954D01*

-Y348886D01*

-X372661Y342720D02*X387161D01*

-X388779Y344338D01*

-Y351189D02*Y344338D01*

-G54D238*X422000Y377051D02*X391338D01*

-X437433Y371500D02*X401750D01*

-X396555Y372114D02*X397441Y373000D01*

-X393897Y372114D02*X396555D01*

-X391338Y376567D02*Y374417D01*

-X431941Y395468D03*

-X421882D01*

-X431941D02*Y391626D01*

-G54D240*X437000Y384000D03*

-X427000D03*

-D03*

-X437000D03*

-Y376618D01*

-Y384000D03*

-X437059Y391626D02*X437000D01*

-Y392610D02*X437059D01*

-Y391626D03*

-X437000D02*X437059D01*

-D03*

-X427000Y391508D02*Y384000D01*

-X437000Y391626D02*Y384000D01*

-X427000D02*Y377051D01*

-X427118D02*X427000D01*

-X427118D01*

-X427000D01*

-Y384000D03*

-X437433Y376618D03*

-D03*

-X427118Y377051D03*

-D03*

-D03*

-D03*

-G54D238*X421882Y395468D02*Y392492D01*

-G54D240*X417000Y390559D02*Y384000D01*

-X418441Y392000D02*X417000Y390559D01*

-X421882Y392000D02*X418441D01*

-X417000Y384000D02*Y390677D01*

-X414559Y393118D01*

-X407000Y390677D02*Y384000D01*

-X409441Y393118D02*X407000Y390677D01*

-X455882Y393000D02*X453500Y390618D01*

-Y384000D01*

-X473500D02*Y376008D01*

-X463500Y392508D02*Y384000D01*

-Y392508D03*

-X468441D02*X463500D01*

-X473500D02*Y384000D01*

-X473559Y392508D02*X473500D01*

-G54D238*X402250Y242000D02*X379394D01*

-X381953Y229157D02*Y234000D01*

-G54D239*X392188Y235000D02*X396441D01*

-G54D238*X381953Y239000D02*X392188D01*

-X387070Y229157D02*Y235000D01*

-X379394Y236000D02*Y231460D01*

-X402250Y242000D02*Y239000D01*

-X392188Y234000D02*Y239000D01*

-X402250Y240000D02*Y228468D01*

-X392188Y229157D02*Y234000D01*

-X375705Y221190D02*X369166Y227729D01*

-X385585Y221190D02*X375705D01*

-X389629Y225234D02*X385585Y221190D01*

-X376441Y223000D02*X370441Y229000D01*

-X381441Y223000D02*X376441D01*

-X384512Y226071D02*X381441Y223000D01*

-X389629Y231460D02*Y225234D01*

-X384512Y231460D02*Y226071D01*

-X379394Y238047D02*Y242000D01*

-X381953Y234000D02*Y239000D01*

-X376835Y229157D02*Y233606D01*

-X375441Y235000D01*

-X379394Y240000D02*Y231460D01*

-G54D239*X360441Y239000D02*X370441Y229000D01*

-X363895Y233000D02*X369168Y227727D01*

-G54D238*X381953Y256250D02*X378003Y260200D01*

-X377244Y250082D02*Y244700D01*

-Y250082D02*X376835D01*

-X379394Y252385D02*Y248000D01*

-G54D239*X378003Y260200D02*X375978D01*

-G54D238*X381953Y254688D02*Y256250D01*

-G54D239*X376441Y262000D02*X385441D01*

-X358839Y279602D02*X376441Y262000D01*

-X375978Y260200D02*X358541Y277637D01*

-X362315Y269515D02*X371602Y260228D01*

-X392388Y283535D02*Y263392D01*

-X390280Y261284D01*

-G54D238*X388441Y259000D02*X385441Y262000D01*

-X388441Y257000D02*Y259000D01*

-X384512Y252385D02*Y258000D01*

-G54D239*X390280Y261284D02*Y256058D01*

-G54D238*X387070Y255629D02*X388441Y257000D01*

-X387070Y254688D02*Y255629D01*

-X389629Y252385D02*Y248000D01*

-G54D239*X390280Y256058D02*X389629Y255407D01*

-Y252385D01*

-G54D238*X402250Y251441D02*Y244700D01*

-X394441Y252000D02*X397441D01*

-X398441Y253000D01*

-X402250Y244700D02*X377244D01*

-G54D239*X379394Y248000D02*X380114Y247280D01*

-X388909D01*

-X389629Y248000D01*

-G54D238*X437000Y191441D02*X411882D01*

-X431882Y185468D03*

-X421882D01*

-X431882D02*Y181508D01*

-X421882Y185468D02*Y182492D01*

-G54D240*Y182000D02*X418559D01*

-X437000Y181508D02*Y174000D01*

-X453500Y180618D02*Y174000D01*

-X455882Y183000D02*X453500Y180618D01*

-X463500Y182508D02*Y174000D01*

-Y182508D03*

-X468382D02*X463500D01*

-X473500D02*Y174000D01*

-Y165508D01*

-G54D238*X386720Y197721D02*X377441Y207000D01*

-X374441Y205000D02*X371441D01*

-X386720Y195917D02*Y197721D01*

-X381603Y197838D02*X374441Y205000D01*

-X381603Y195917D02*Y197838D01*

-X395882Y205559D02*X393441Y208000D01*

-X398441Y205559D02*X395882D01*

-X398441Y200441D02*Y196000D01*

-G54D239*X389279Y195917D02*Y212500D01*

-X392188Y215409D01*

-G54D240*X437492Y196559D03*

-D03*

-X437000Y204000D02*Y196559D01*

-Y204000D03*

-D03*

-D03*

-Y211508D02*Y204000D01*

-X427000D03*

-Y196492D01*

-Y204000D03*

-D03*

-Y196492D03*

-Y211508D02*Y204000D01*

-Y196492D02*X426941D01*

-X427000D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-X417000Y204000D02*Y210500D01*

-X407000Y210618D02*Y204000D01*

-X463500D03*

-D03*

-X453500Y210618D02*Y204000D01*

-X455882Y213000D02*X453500Y210618D01*

-X463500Y212508D02*Y204000D01*

-Y212508D03*

-X473500D02*Y204000D01*

-Y196008D01*

-G54D239*X361041Y205000D02*X371441D01*

-X368441Y198000D02*X363441Y203000D01*

-X362786Y201380D02*X366841Y197325D01*

-X363441Y203000D02*X359930D01*

-X359287Y201380D02*X362786D01*

-X361041Y205000D02*X358941Y207100D01*

-Y208500D01*

-G54D238*X421941Y228468D02*Y226008D01*

-Y228468D02*X402250D01*

-X437492Y221441D02*X394747D01*

-Y226854D02*Y221441D01*

-G54D240*X427059Y226992D02*X427000D01*

-X427059D03*

-X418441Y242000D02*X417000Y240559D01*

-X421882Y242000D02*X418441D01*

-X417000Y240559D02*X414559Y243000D01*

-X417000Y234000D02*Y240559D01*

-X407000D02*Y234000D01*

-X409441Y243000D02*X407000Y240559D01*

-X437000Y241508D02*Y234000D01*

-X437492Y226559D03*

-D03*

-X437000Y234000D03*

-Y226559D01*

-Y234000D03*

-D03*

-G54D238*X431882Y215468D02*X421882D01*

-X431882D03*

-G54D240*X427059Y226992D03*

-D03*

-X427000D01*

-X427059D01*

-D03*

-G54D238*X431882Y215468D02*Y211508D01*

-X421882Y215468D02*Y212492D01*

-G54D240*X418559Y212000D02*X417000Y210441D01*

-X421882Y212000D02*X418559D01*

-X417000Y210500D02*X414500Y213000D01*

-X409382D02*X407000Y210618D01*

-G54D238*X431882Y245468D03*

-Y241508D01*

-Y245468D02*X421882D01*

-Y242492D01*

-G54D240*X427000Y234000D02*Y226992D01*

-Y234000D03*

-D03*

-D03*

-Y241508D02*Y234000D01*

-G54D238*X460441Y256000D02*X458441Y254000D01*

-G54D240*X437492Y256559D03*

-D03*

-G54D238*X468382Y256000D02*X460441D01*

-G54D240*X463500Y264000D03*

-D03*

-X453500Y270618D02*Y264000D01*

-X463500Y272508D02*Y264000D01*

-Y272508D03*

-X473500D02*Y264000D01*

-Y255508D01*

-X468559Y272508D02*X463500D01*

-G54D238*X459941Y226500D02*X458441Y225000D01*

-G54D239*X392188Y215409D02*Y229500D01*

-G54D238*X468382Y226500D02*X459941D01*

-G54D240*X473500Y213492D02*X473559D01*

-X473500Y234000D02*Y226008D01*

-X473559Y212508D02*X473500D01*

-X463500D03*

-D03*

-D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y213492D01*

-Y212508D02*X463500D01*

-X461000D02*X463500D01*

-X468441D02*X463500D01*

-G54D238*X437492Y251441D02*X402250D01*

-X421823Y256008D02*X402250D01*

-Y256838D02*Y256008D01*

-Y256838D02*X392188D01*

-Y254688D01*

-G54D240*X437000Y264000D03*

-Y256559D01*

-Y264000D03*

-D03*

-Y271508D02*Y264000D01*

-X427000D03*

-Y256992D01*

-Y264000D03*

-D03*

-Y256992D03*

-Y271508D02*Y264000D01*

-Y256992D02*X426941D01*

-X427000D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-X417000Y264000D02*Y270559D01*

-X407000D02*Y264000D01*

-X463500Y242508D03*

-D03*

-D03*

-Y234000D01*

-Y242508D03*

-Y234000D03*

-D03*

-X473500Y243492D02*X473559D01*

-X473500Y242508D02*Y234000D01*

-X473559Y242508D02*X473500D01*

-X463500D02*X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y243492D01*

-Y242508D02*X463500D01*

-X461000D02*X463500D01*

-X468441D02*X463500D01*

-X453500Y240618D02*Y234000D01*

-X455882Y243000D02*X453500Y240618D01*

-G54D238*X376485Y183956D02*X380441Y180000D01*

-X376485Y185700D02*Y183956D01*

-X379044Y177000D02*Y172689D01*

-G54D239*X377347Y162178D02*X380228D01*

-X384162Y166112D01*

-Y170386D01*

-G54D238*X381603D02*Y175000D01*

-X376485Y170386D02*X372441D01*

-G54D239*X366841Y192337D02*Y166300D01*

-X368441Y166963D02*Y198000D01*

-X366841Y197325D02*Y192220D01*

-X365241Y191616D02*Y165637D01*

-X363484Y191048D02*Y162503D01*

-X365241Y193163D02*Y190800D01*

-D03*

-X363484Y190957D02*Y192657D01*

-G54D238*X404441Y184000D02*X400441Y180000D01*

-X402441Y185000D02*X394441D01*

-X402250Y177000D02*Y168468D01*

-G54D240*X407000Y180618D02*Y174000D01*

-X409382Y183000D02*X407000Y180618D01*

-G54D239*X398441Y173000D02*X396441Y175000D01*

-G54D238*X404250Y183809D02*X411882Y191441D01*

-X413441Y196000D02*X402441Y185000D01*

-X421823Y196000D02*X413441D01*

-X398441D02*X400441Y194000D01*

-X394441D02*X400441D01*

-G54D240*X418559Y182000D02*X417000Y180441D01*

-Y174000D02*Y180500D01*

-X427000Y181508D02*Y174000D01*

-X417000Y180500D02*X414500Y183000D01*

-G54D238*X437433Y161382D02*X394397D01*

-Y168083D02*Y161382D01*

-X421823Y168468D02*Y166008D01*

-Y168468D02*X402250D01*

-G54D240*X437000Y174000D03*

-G54D238*X386720Y163279D02*X386441Y163000D01*

-X386720Y170386D02*Y163279D01*

-X391441Y164000D02*Y162000D01*

-X389279Y166162D02*X391441Y164000D01*

-X389279Y172689D02*Y166162D01*

-X391441Y162000D02*X388941Y159500D01*

-G54D239*X386023Y157813D02*X387710Y159500D01*

-X388941D01*

-G54D238*X389279Y184162D02*Y193614D01*

-X389441Y184000D02*X389279Y184162D01*

-X391838Y187603D02*X394441Y185000D01*

-X391838Y193614D02*Y187603D01*

-X380441Y180000D02*X400441D01*

-X402250Y177000D02*X379044D01*

-X381603Y175000D02*X391838D01*

-Y170386D02*Y175000D01*

-G54D239*X396441D02*X391838D01*

-G54D238*X384162Y193614D02*Y188000D01*

-X376485Y191311D02*Y185700D01*

-X379044Y184000D02*X389441D01*

-X379044Y193614D02*Y184000D01*

-X429765Y71000D02*X440000D01*

-X429765Y76324D02*Y71000D01*

-X440000Y76000D02*Y71000D01*

-X424647Y76206D02*X423441Y75000D01*

-X424647Y80772D02*Y76206D01*

-X427206Y78469D02*Y48468D01*

-X442559Y78469D02*Y76008D01*

-G54D239*X439941Y71000D02*X440941Y70000D01*

-Y65559D01*

-X440449D02*X434941D01*

-X434449Y60441D02*Y56500D01*

-X440449Y60441D02*Y56500D01*

-G54D238*X468441Y48468D02*Y46008D01*

-Y48468D02*X427206D01*

-G54D240*X473500Y46008D02*X473559D01*

-X463500Y54000D03*

-D03*

-X473500D02*Y46992D01*

-X473559D02*X473500D01*

-X473559Y54000D02*X473500D01*

-G54D238*X468382Y76008D02*X442559D01*

-G54D240*X463500Y84000D03*

-D03*

-X473500D02*Y76992D01*

-X473559Y84000D02*X473500D01*

-X463500Y62508D03*

-D03*

-D03*

-Y54000D01*

-Y62508D03*

-X473559D02*Y54000D01*

-X463500Y62508D02*X461059D01*

-X463500D02*X461059D01*

-X463500D02*X461059Y63492D01*

-Y62508D02*X463500D01*

-X461059D02*X463500D01*

-X468441D02*X463500D01*

-X453500Y60559D02*Y54000D01*

-X455941Y63000D02*X453500Y60559D01*

-G54D238*X418440Y101000D02*Y115875D01*

-X420441Y101546D02*Y115500D01*

-X424647Y134032D02*Y106303D01*

-G54D239*X420441Y127000D02*Y115500D01*

-X418440Y122001D02*Y115875D01*

-G54D238*X432030Y97015D02*X422425D01*

-X428241Y93000D02*X420941D01*

-X427941Y99000D02*X422987D01*

-X429441Y95000D02*X421895D01*

-X428441Y93200D02*X428241Y93000D01*

-X434882Y99867D02*X432030Y97015D01*

-X429765Y100824D02*X427941Y99000D01*

-X429765Y106303D02*Y100824D01*

-X432324Y89317D02*X428441Y93200D01*

-X437441Y87000D02*X429441Y95000D01*

-X437441D02*X440000Y92441D01*

-X432324Y83075D02*Y89317D01*

-X437441Y80000D02*Y87000D01*

-X432441Y80000D02*Y85000D01*

-X440000Y80772D02*Y92441D01*

-X434882Y80772D02*Y75000D01*

-X440000Y80772D02*Y76000D01*

-X434882Y101697D02*Y99867D01*

-X432324Y106303D02*Y111000D01*

-X434882Y106303D02*Y101118D01*

-X437441Y104000D02*Y95000D01*

-X440000Y108453D02*Y106303D01*

-X429765Y80772D02*Y76000D01*

-X422425Y97015D02*X418440Y101000D01*

-X422987Y99000D02*X420441Y101546D01*

-X444441Y104000D02*X446441Y102000D01*

-X442559Y104000D02*X444441D01*

-X427206Y115000D02*X428441D01*

-X427206Y109000D02*Y115000D01*

-X437441D02*X427441D01*

-X437441Y109000D02*Y115000D01*

-X427206Y104000D02*Y109000D01*

-X437441Y104000D02*Y109000D01*

-G54D240*Y115000D02*X440941Y118500D01*

-Y123000D01*

-G54D239*X421895Y95000D02*X416441Y100454D01*

-X420941Y93000D02*X414441Y99500D01*

-X416441Y100454D02*Y106000D01*

-X414441Y99500D02*Y106000D01*

-X416441Y114437D02*Y105455D01*

-X414441Y111546D02*Y105554D01*

-G54D238*X468382Y166000D02*X460441D01*

-G54D240*X463500Y182508D02*X461000D01*

-X463500D02*X461000D01*

-X463500D03*

-X461000D02*X463500D01*

-X461000D02*X463500D01*

-Y174000D03*

-D03*

-G54D238*X459941Y196500D02*X458441Y195000D01*

-X468382Y196500D02*X459941D01*

-G54D240*X463500Y182508D03*

-D03*

-X461000Y183492D01*

-G54D238*X460441Y166000D02*X458441Y164000D01*

-G54D240*X473500Y153492D02*X473559D01*

-X473500Y152508D02*Y144000D01*

-X473559Y152508D02*X473500D01*

-Y144000D02*Y135508D01*

-X463500Y152508D03*

-D03*

-D03*

-X468441D02*X463500D01*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y153492D01*

-Y152508D02*X463500D01*

-X461000D02*X463500D01*

-X455882Y153000D02*X453500Y150618D01*

-X437000Y174000D03*

-Y166500D01*

-Y174000D03*

-X437433Y166500D03*

-D03*

-X427000Y174000D03*

-Y166992D01*

-Y174000D03*

-D03*

-Y166992D02*X426941D01*

-X427000D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-D03*

-G54D239*X368441Y166963D02*X380404Y155000D01*

-X366841Y166300D02*X380141Y153000D01*

-X380404Y155000D02*X392441D01*

-X420441Y127000D01*

-X380141Y153000D02*X387441D01*

-X418440Y122001D01*

-X365241Y165637D02*X416441Y114437D01*

-X363484Y162503D02*X414441Y111546D01*

-X250941Y229500D02*X269858Y210583D01*

-X268458Y207483D02*X246441Y229500D01*

-X242441D02*X267558Y204383D01*

-X272050Y213000D02*X247050Y238000D01*

-X269858Y210583D02*X304706D01*

-X304584Y207483D02*X268458D01*

-X267558Y204383D02*X305280D01*

-X309941Y213000D02*X272050D01*

-G54D240*X165941Y230000D02*Y217500D01*

-X169441Y214000D01*

-G54D239*X377441Y207000D02*X348441Y236000D01*

-X356441Y233000D02*X363895D01*

-X355441Y213124D02*Y207489D01*

-X359930Y203000D02*X355441Y207489D01*

-X353441Y207226D02*X359287Y201380D01*

-X350857Y206000D02*X352404D01*

-X365241Y193163D01*

-X363484Y192657D02*X351741Y204400D01*

-X351791Y204350D02*X350244D01*

-X309941Y213000D02*X334441Y188500D01*

-Y166000D01*

-X337441Y163000D01*

-X291441Y236000D02*X348441D01*

-X292207Y232971D02*X323886D01*

-X323183Y231349D02*X291092D01*

-X323245D02*X322092D01*

-X338441Y230124D02*X355441Y213124D01*

-X338441Y224192D02*X353441Y209192D01*

-Y207226D01*

-X323886Y232971D02*X350857Y206000D01*

-X350244Y204350D02*X323245Y231349D01*

-G54D238*X468382Y135508D02*X466906D01*

-Y134032D01*

-G54D240*X463500Y144000D03*

-D03*

-X453500Y150618D02*Y144000D01*

-X463500Y152508D02*Y144000D01*

-Y152508D03*

-G54D238*X466906Y134032D02*X424647D01*

-G54D240*X455882Y123000D02*X453500Y120618D01*

-X463500Y92508D03*

-D03*

-D03*

-D03*

-Y114000D03*

-D03*

-Y92508D02*X461059Y93492D01*

-X463500Y92508D02*X461059D01*

-X463500D02*X461059D01*

-X463500D01*

-X461059D02*X463500D01*

-Y84000D01*

-X473559Y92508D02*Y84000D01*

-X453500Y90559D02*Y84000D01*

-X455941Y93000D02*X453500Y90559D01*

-X468441Y92508D02*X463500D01*

-G54D238*X468382Y106008D02*X448750D01*

-Y108453D02*Y106008D01*

-Y108453D02*X440000D01*

-G54D240*X463500Y122508D03*

-D03*

-D03*

-Y114000D01*

-Y122508D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y123492D01*

-Y122508D02*X463500D01*

-X461000D02*X463500D01*

-X468441D02*X463500D01*

-X453500Y120618D02*Y114000D01*

-X473500D02*Y106992D01*

-X473559Y122508D02*Y114000D01*

-X473500D01*

-X85441Y47500D02*X79882D01*

-X77441Y49941D01*

-X76949Y55059D02*X79390Y57500D01*

-X85441D01*

-X106949Y55059D02*X109390Y57500D01*

-X108941Y47500D02*X107441Y49000D01*

-X109390Y57500D02*X115441D01*

-Y47500D02*X108941D01*

-G54D239*X85441Y67500D02*X109941Y92000D01*

-G54D240*X136949Y49941D02*X139390Y47500D01*

-X145441D01*

-X166949Y49941D02*X169390Y47500D01*

-X175441D01*

-X145441Y57500D02*X139882D01*

-X137441Y55059D01*

-X166949D02*X169390Y57500D01*

-X175441D01*

-X196949Y55059D02*X199390Y57500D01*

-X205441D01*

-X196949Y49941D02*X199390Y47500D01*

-X205441D01*

-X226949Y49941D02*X229390Y47500D01*

-X235441D01*

-X226949Y55059D02*X229390Y57500D01*

-X235441D01*

-X256949Y55059D02*X259390Y57500D01*

-X265441D01*

-X256949Y49941D02*X259390Y47500D01*

-X265441D01*

-X286949Y49941D02*X289390Y47500D01*

-X295441D01*

-X286949Y55059D02*X289390Y57500D01*

-X295441D01*

-G54D239*Y67500D02*X275941D01*

-X115441D02*Y120500D01*

-X154941Y130500D02*X153441Y132000D01*

-X151941D01*

-X115441Y120500D02*X114441Y121500D01*

-X109941Y92000D02*Y130500D01*

-X111941Y132500D01*

-X115441D01*

-X145441Y67500D02*Y114500D01*

-X152441Y121500D01*

-X175441Y67500D02*X154941Y88000D01*

-Y130500D01*

-X235441Y67500D02*X198441Y104500D01*

-X265441Y67500D02*X234441Y98500D01*

-Y122500D01*

-X275941Y67500D02*X237441Y106000D01*

-Y131500D01*

-X235941Y133000D01*

-X198441Y104500D02*Y122500D01*

-X190941Y82000D02*Y130000D01*

-X193941Y133000D01*

-X195441D01*

-X205441Y67500D02*X190941Y82000D01*

-G54D238*X459941Y376500D02*X458441Y375000D01*

-G54D240*X463500Y384000D03*

-D03*

-X473500Y393492D02*X473559D01*

-X463500Y362508D03*

-X473500Y363492D02*X473559D01*

-X463500Y362508D02*X461059Y363492D01*

-Y362508D02*X463500D01*

-X461059D02*X463500D01*

-Y392508D03*

-D03*

-D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y393492D01*

-Y392508D02*X463500D01*

-X461000D02*X463500D01*

-Y354000D03*

-X473618D02*Y346008D01*

-Y354000D02*X473500D01*

-G54D238*X468382Y376500D02*X459941D01*

-X421823Y316008D02*X420347D01*

-Y314532D01*

-X402250D01*

-X437433Y311382D02*X404250D01*

-X431882Y305468D03*

-X421882D01*

-X431882D02*Y301508D01*

-X421882Y305468D02*Y302492D01*

-G54D240*X418941Y302000D02*X417000Y300059D01*

-Y300500D02*X414500Y303000D01*

-X421882Y302000D02*X418941D01*

-G54D238*X459941Y316500D02*X458441Y315000D01*

-X468382Y316500D02*X459941D01*

-G54D240*X463500Y302508D03*

-D03*

-D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D01*

-X461000D02*X463500D01*

-X461000Y303492D01*

-X473500D02*X473000D01*

-X463500Y324000D03*

-D03*

-X437433Y316500D03*

-D03*

-X437000Y324000D02*Y316500D01*

-Y324000D03*

-X427000Y316992D02*X426941D01*

-X427000Y324000D02*Y316992D01*

-D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-D03*

-X437000Y324000D03*

-X427000D03*

-D03*

-X437000D03*

-X427000D03*

-X417000D02*Y330500D01*

-G54D238*X459941Y286500D02*X458441Y285000D01*

-G54D240*X463500Y294000D03*

-D03*

-G54D238*X468382Y286500D02*X459941D01*

-G54D240*X463500Y272508D03*

-D03*

-D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D01*

-X461000D02*X463500D01*

-X455882Y273000D02*X453500Y270618D01*

-X463500Y272508D02*X461000Y273492D01*

-X473500D02*X473677D01*

-Y272508D02*X473500D01*

-G54D238*X437492Y281441D02*X394397D01*

-X421823Y288468D02*X402250D01*

-Y292839D02*Y288468D01*

-X394397Y286083D02*Y281441D01*

-X431882Y275468D03*

-X421882D01*

-Y272492D01*

-G54D240*X437492Y286559D03*

-D03*

-X437000Y294000D03*

-Y286559D01*

-Y294000D03*

-D03*

-X427000Y286992D02*X426941D01*

-X427000Y294000D02*Y286992D01*

-D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-D03*

-G54D238*X431882Y275468D02*Y271508D01*

-G54D240*X427000Y294000D03*

-D03*

-D03*

-X417000D02*Y300500D01*

-G54D238*X421823Y288468D02*Y286008D01*

-G54D240*X418500Y272000D02*X417000Y270500D01*

-X421882Y272000D02*X418500D01*

-X417000Y270559D02*X414559Y273000D01*

-X409441D02*X407000Y270559D01*

-G54D239*X307716Y275075D02*X221756D01*

-X268735Y280294D02*X259870D01*

-X255221Y278590D02*X272141D01*

-X275815Y282263D01*

-X299852Y276675D02*X248390D01*

-X245557Y279508D01*

-X308992Y271971D02*X223868D01*

-X308872Y266522D02*X308083Y265733D01*

-X262750Y268772D02*X263493Y269515D01*

-X308872Y266522D02*X307930Y265580D01*

-X220729D01*

-X263493Y269515D02*X314645D01*

-X293902Y282263D02*X275804D01*

-X275815D02*X276842D01*

-X300814Y277637D02*X299852Y276675D01*

-X245557Y279508D02*X247216Y277849D01*

-X222884Y255000D02*X275441D01*

-X291441Y239000D01*

-X224441Y252000D02*X275441D01*

-X226441Y250000D02*X275178D01*

-X274191Y248250D02*X231691D01*

-X254740Y298329D02*Y295829D01*

-X266413Y296594D02*X266896Y296111D01*

-X269653Y298631D02*X272165Y296119D01*

-X273229Y298582D02*X271946Y299866D01*

-X254740Y295829D02*X261240Y289329D01*

-X260341Y284249D02*X257845Y286745D01*

-X260253Y288064D02*X259864D01*

-X256818Y291110D01*

-X264034Y284283D02*X260253Y288064D01*

-X259870Y280294D02*X256996Y283168D01*

-X257031Y290897D02*X252105Y295823D01*

-Y301771D01*

-X257850Y286740D02*X250348Y294242D01*

-Y301687D01*

-Y301846D02*Y302277D01*

-X256996Y283168D02*X251412D01*

-X261240Y289329D02*X268849D01*

-X263240Y295329D02*X264568Y294000D01*

-X266441D01*

-X266020Y291283D02*X265474Y291829D01*

-X262740D01*

-X268849Y289329D02*X270178Y288000D01*

-X266413Y296594D02*X268508Y294499D01*

-X266441Y294000D02*X267558Y292883D01*

-X270441Y290000D02*X269158Y291283D01*

-X266020D01*

-X279441Y285000D02*X273441D01*

-X268735Y280294D01*

-X221804Y275075D02*X221493D01*

-X217441Y279000D01*

-X223941Y271971D02*X219970D01*

-X219441Y272500D01*

-X250553Y280776D02*X249753D01*

-X250554D02*X253035D01*

-X247253Y277812D02*X248390Y276675D01*

-X253035Y280776D02*X255221Y278590D01*

-X287917Y302957D02*Y307829D01*

-X296779Y304963D02*X294773Y302957D01*

-X293035D01*

-X278224Y298517D02*Y303063D01*

-X275724Y297363D02*Y301494D01*

-X273634Y303585D01*

-X278224Y303063D02*X285494Y310333D01*

-X277174Y308219D02*X280976Y312022D01*

-X293441Y296111D02*X305330Y308000D01*

-X305993Y306400D02*X292476Y292883D01*

-X272165Y296119D02*X274480D01*

-X275724Y297363D01*

-X268508Y294499D02*X281091D01*

-X282702Y296111D01*

-X293441D01*

-X267558Y292883D02*X292476D01*

-X335673Y279602D02*X358839D01*

-X300104Y277637D02*X358541D01*

-X368170Y281271D02*X324922D01*

-X278225Y279602D02*X335757D01*

-X324922Y281271D02*X318193Y288000D01*

-X270178D02*X318193D01*

-X270441Y290000D02*X319525D01*

-X326237Y283288D01*

-X370153D01*

-X314441Y269515D02*X362315D01*

-X291441Y239000D02*X360441D01*

-X275441Y252000D02*X291441Y236000D01*

-X275178Y250000D02*X292207Y232971D01*

-X291092Y231349D02*X274191Y248250D01*

-X369441Y312000D02*X363841Y306400D01*

-X362441Y308000D02*X368441Y314000D01*

-X358774Y310333D02*X367441Y319000D01*

-X305993Y306400D02*X363841D01*

-X305330Y308000D02*X362441D01*

-X285494Y310333D02*X358774D01*

-X280976Y312022D02*X356463D01*

-X363441Y319000D01*

-X278661Y315434D02*X345216D01*

-X354587D02*X345007D01*

-X361698Y320140D02*X355188Y313631D01*

-X360013Y320860D02*X354587Y315434D01*

-X279121Y313631D02*X355188D01*

-G54D241*X118699Y327729D02*Y308829D01*

-G54D240*X127799Y327729D02*Y310858D01*

-X125941Y309000D01*

-G54D242*X124831Y302385D02*X120556D01*

-X118799Y304142D01*

-G54D243*Y308829D01*

-G54D239*X135724Y374939D02*X142712Y381927D01*

-X176106D01*

-X180672Y377361D01*

-Y361769D01*

-X222441Y320000D02*X180672Y361769D01*

-X187712Y342818D02*X178887D01*

-X218816Y316997D02*X191363Y344449D01*

-X268053Y317646D02*Y323343D01*

-X266453Y318382D02*Y324006D01*

-X295669Y353222D01*

-X268053Y323343D02*X296244Y351534D01*

-X295669Y353222D02*X328442D01*

-X339837Y341827D01*

-X296244Y351534D02*X326886D01*

-X338899Y339521D01*

-X353390D01*

-X249101Y328793D02*X229818Y348075D01*

-Y354988D01*

-X252105Y301698D02*X268053Y317646D01*

-X250348Y302277D02*X266453Y318382D01*

-X273634Y303585D02*Y308144D01*

-X279121Y313631D01*

-X271946Y299866D02*Y308718D01*

-Y308719D02*Y308505D01*

-X278661Y315434D02*X271946Y308719D01*

-X263441Y320000D02*X222441D01*

-X249753Y280776D02*X187712Y342818D01*

-X260568Y316997D02*X218816D01*

-X264034Y282931D02*Y284283D01*

-X240391Y278564D02*X230441Y288514D01*

-Y293000D01*

-X251412Y283168D02*X246731Y287850D01*

-Y303031D01*

-G54D240*X203441Y254200D02*Y237000D01*

-G54D239*X221884Y254000D02*X222884Y255000D01*

-G54D240*X194441Y254200D02*X188641D01*

-X183541Y249100D01*

-Y242443D01*

-X178384D01*

-X165941Y230000D01*

-G54D239*X225441Y249000D02*X226441Y250000D01*

-X231691Y248250D02*X230441Y247000D01*

-G54D240*X203441Y254200D02*X204998Y255757D01*

-Y262900D01*

-X203441Y254200D02*X199941Y257700D01*

-Y261000D01*

-X212084Y262900D02*X212541Y262443D01*

-X212084Y263293D02*X216648D01*

-X220441Y259500D01*

-X212541Y262443D02*Y250900D01*

-X204998Y262900D02*X205681Y263583D01*

-Y268829D01*

-X212084Y268036D02*Y262900D01*

-X204998Y263293D02*X204705Y263000D01*

-X205441Y269561D02*Y273500D01*

-X204705Y263000D02*X194441D01*

-X210799Y269321D02*X212084Y268036D01*

-X205681Y269321D02*X205360Y269000D01*

-X200941D01*

-X205681Y269321D02*X205441Y269561D01*

-G54D244*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D237*G36*

-X403750Y357250D02*Y350750D01*

-X410250D01*

-Y357250D01*

-X403750D01*

-G37*

-G54D245*X345799Y357329D03*

-G54D246*X315799Y337329D03*

-G54D245*X85799Y369829D03*

-G54D247*X105799Y374829D03*

-G54D237*G36*

-X102499Y368129D02*Y361529D01*

-X109099D01*

-Y368129D01*

-X102499D01*

-G37*

-G54D247*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-G54D248*X93299Y342329D03*

-G54D247*X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D237*G36*

-X450250Y267250D02*Y260750D01*

-X456750D01*

-Y267250D01*

-X450250D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X456750D01*

-Y207250D01*

-X450250D01*

-G37*

-G36*

-Y177250D02*Y170750D01*

-X456750D01*

-Y177250D01*

-X450250D01*

-G37*

-G54D244*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D237*G36*

-X450250Y237250D02*Y230750D01*

-X456750D01*

-Y237250D01*

-X450250D01*

-G37*

-G54D244*X463500Y234000D03*

-X473500D03*

-G54D237*G36*

-X450250Y147250D02*Y140750D01*

-X456750D01*

-Y147250D01*

-X450250D01*

-G37*

-G36*

-Y117250D02*Y110750D01*

-X456750D01*

-Y117250D01*

-X450250D01*

-G37*

-G36*

-Y87250D02*Y80750D01*

-X456750D01*

-Y87250D01*

-X450250D01*

-G37*

-G36*

-Y57250D02*Y50750D01*

-X456750D01*

-Y57250D01*

-X450250D01*

-G37*

-G54D244*X463500Y54000D03*

-X473500D03*

-G54D237*G36*

-X450250Y327250D02*Y320750D01*

-X456750D01*

-Y327250D01*

-X450250D01*

-G37*

-G54D244*X463500Y324000D03*

-X473500D03*

-G54D237*G36*

-X450250Y297250D02*Y290750D01*

-X456750D01*

-Y297250D01*

-X450250D01*

-G37*

-G54D244*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D237*G36*

-X309191Y252250D02*Y245750D01*

-X315691D01*

-Y252250D01*

-X309191D01*

-G37*

-G54D244*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D245*X345799Y192329D03*

-G54D237*G36*

-X450250Y387250D02*Y380750D01*

-X456750D01*

-Y387250D01*

-X450250D01*

-G37*

-G54D244*X463500Y384000D03*

-X473500D03*

-G54D237*G36*

-X403750Y387250D02*Y380750D01*

-X410250D01*

-Y387250D01*

-X403750D01*

-G37*

-G36*

-Y297250D02*Y290750D01*

-X410250D01*

-Y297250D01*

-X403750D01*

-G37*

-G36*

-Y327250D02*Y320750D01*

-X410250D01*

-Y327250D01*

-X403750D01*

-G37*

-G54D244*X417000Y324000D03*

-X427000D03*

-G54D237*G36*

-X450250Y357250D02*Y350750D01*

-X456750D01*

-Y357250D01*

-X450250D01*

-G37*

-G54D244*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D237*G36*

-X403750Y177250D02*Y170750D01*

-X410250D01*

-Y177250D01*

-X403750D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X410250D01*

-Y207250D01*

-X403750D01*

-G37*

-G36*

-Y237250D02*Y230750D01*

-X410250D01*

-Y237250D01*

-X403750D01*

-G37*

-G36*

-Y267250D02*Y260750D01*

-X410250D01*

-Y267250D01*

-X403750D01*

-G37*

-G54D244*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D237*G36*

-X202191Y50750D02*Y44250D01*

-X208691D01*

-Y50750D01*

-X202191D01*

-G37*

-G54D244*X205441Y57500D03*

-Y67500D03*

-G54D237*G36*

-X232191Y50750D02*Y44250D01*

-X238691D01*

-Y50750D01*

-X232191D01*

-G37*

-G54D244*X235441Y57500D03*

-Y67500D03*

-G54D237*G36*

-X262191Y50750D02*Y44250D01*

-X268691D01*

-Y50750D01*

-X262191D01*

-G37*

-G36*

-X172191D02*Y44250D01*

-X178691D01*

-Y50750D01*

-X172191D01*

-G37*

-G36*

-X142191D02*Y44250D01*

-X148691D01*

-Y50750D01*

-X142191D01*

-G37*

-G36*

-X112191D02*Y44250D01*

-X118691D01*

-Y50750D01*

-X112191D01*

-G37*

-G36*

-X82191D02*Y44250D01*

-X88691D01*

-Y50750D01*

-X82191D01*

-G37*

-G54D244*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D237*G36*

-X292191Y50750D02*Y44250D01*

-X298691D01*

-Y50750D01*

-X292191D01*

-G37*

-G54D244*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D245*X85799Y179829D03*

-G54D247*X105799Y184829D03*

-G54D237*G36*

-X102499Y178129D02*Y171529D01*

-X109099D01*

-Y178129D01*

-X102499D01*

-G37*

-G54D247*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D237*G36*

-X82191Y243250D02*Y236750D01*

-X88691D01*

-Y243250D01*

-X82191D01*

-G37*

-G54D244*X85441Y230000D03*

-Y220000D03*

-G54D247*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D237*G36*

-X192499Y200629D02*Y194029D01*

-X199099D01*

-Y200629D01*

-X192499D01*

-G37*

-G54D247*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D249*X394397Y172689D02*Y168083D01*

-X391838Y172689D02*Y168083D01*

-X389279Y172689D02*Y168083D01*

-X386720Y172689D02*Y168083D01*

-X384162Y172689D02*Y168083D01*

-X381603Y172689D02*Y168083D01*

-X379044Y172689D02*Y168083D01*

-X376485Y172689D02*Y168083D01*

-G54D250*X461000Y153492D02*Y152508D01*

-X473500Y166492D02*Y165508D01*

-X468382Y166492D02*Y165508D01*

-X468441Y153492D02*Y152508D01*

-X455882Y153492D02*Y152508D01*

-X426941Y166992D02*Y166008D01*

-X421823Y166992D02*Y166008D01*

-X436449Y166500D02*X437433D01*

-X436449Y161382D02*X437433D01*

-X473559Y153492D02*Y152508D01*

-X461000Y123492D02*Y122508D01*

-X455882Y123492D02*Y122508D01*

-X473559Y123492D02*Y122508D01*

-X468441Y123492D02*Y122508D01*

-X473559Y93492D02*Y92508D01*

-X468441Y93492D02*Y92508D01*

-X461059Y93492D02*Y92508D01*

-X455941Y93492D02*Y92508D01*

-X473500Y106992D02*Y106008D01*

-X468382Y106992D02*Y106008D01*

-X473500Y136492D02*Y135508D01*

-X468382Y136492D02*Y135508D01*

-X286949Y49941D02*X287933D01*

-X256949D02*X257933D01*

-X226949D02*X227933D01*

-X196949D02*X197933D01*

-X166949D02*X167933D01*

-X256949Y55059D02*X257933D01*

-X226949D02*X227933D01*

-X196949D02*X197933D01*

-X166949D02*X167933D01*

-X286949D02*X287933D01*

-X434449Y65559D02*X435433D01*

-X434449Y60441D02*X435433D01*

-G54D249*X442559Y83075D02*Y78469D01*

-X440000Y83075D02*Y78469D01*

-G54D251*X437441Y83075D02*Y78469D01*

-G54D249*X434882Y83075D02*Y78469D01*

-X432324Y83075D02*Y78469D01*

-X429765Y83075D02*Y78469D01*

-X427206Y83075D02*Y78469D01*

-X424647Y83075D02*Y78469D01*

-G54D250*X440449Y65559D02*X441433D01*

-X440449Y60441D02*X441433D01*

-G54D249*X424647Y106303D02*Y101697D01*

-X427206Y106303D02*Y101697D01*

-X429765Y106303D02*Y101697D01*

-X432324Y106303D02*Y101697D01*

-X434882Y106303D02*Y101697D01*

-X437441Y106303D02*Y101697D01*

-X440000Y106303D02*Y101697D01*

-X442559Y106303D02*Y101697D01*

-G54D250*X461059Y63492D02*Y62508D01*

-X455941Y63492D02*Y62508D01*

-X468441Y63492D02*Y62508D01*

-X473559Y46992D02*Y46008D01*

-X468441Y46992D02*Y46008D01*

-X473559Y63492D02*Y62508D01*

-X473500Y76992D02*Y76008D01*

-X468382Y76992D02*Y76008D01*

-X461000Y393492D02*Y392508D01*

-X455882Y393492D02*Y392508D01*

-X461059Y363492D02*Y362508D01*

-X473500Y376992D02*Y376008D01*

-X468382Y376992D02*Y376008D01*

-X468441Y363492D02*Y362508D01*

-X468500Y346992D02*Y346008D01*

-X455941Y363492D02*Y362508D01*

-X461000Y333492D02*Y332508D01*

-X455882Y333492D02*Y332508D01*

-X473500Y316992D02*Y316008D01*

-X468382Y316992D02*Y316008D01*

-X468441Y333492D02*Y332508D01*

-X473559Y393492D02*Y392508D01*

-X468441Y393492D02*Y392508D01*

-X427000Y392492D02*Y391508D01*

-X426941Y346992D02*Y346008D01*

-X427118Y377051D02*Y376067D01*

-X421882Y392492D02*Y391508D01*

-X421823Y346992D02*Y346008D01*

-X422000Y377051D02*Y376067D01*

-X427000Y362492D02*Y361508D01*

-X421882Y362492D02*Y361508D01*

-X414500Y363492D02*Y362508D01*

-X409382Y363492D02*Y362508D01*

-X437000Y362492D02*Y361508D01*

-X431882Y362492D02*Y361508D01*

-X436449Y346618D02*X437433D01*

-X437059Y392610D02*Y391626D01*

-X436449Y376618D02*X437433D01*

-X436449Y371500D02*X437433D01*

-X431941Y392610D02*Y391626D01*

-X414559Y393610D02*Y392626D01*

-X409441Y393610D02*Y392626D01*

-X436449Y341500D02*X437433D01*

-X427000Y332492D02*Y331508D01*

-X437000Y332492D02*Y331508D01*

-X431882Y332492D02*Y331508D01*

-X426941Y316992D02*Y316008D01*

-X421823Y316992D02*Y316008D01*

-X436449Y316500D02*X437433D01*

-X414500Y333492D02*Y332508D01*

-X409382Y333492D02*Y332508D01*

-X421882Y332492D02*Y331508D01*

-X397949Y205559D02*X398933D01*

-X397949Y200441D02*X398933D01*

-G54D249*X376485Y195917D02*Y191311D01*

-X379044Y195917D02*Y191311D01*

-X381603Y195917D02*Y191311D01*

-X384162Y195917D02*Y191311D01*

-X386720Y195917D02*Y191311D01*

-X389279Y195917D02*Y191311D01*

-X391838Y195917D02*Y191311D01*

-X394397Y195917D02*Y191311D01*

-X394747Y231460D02*Y226854D01*

-X392188Y231460D02*Y226854D01*

-X389629Y231460D02*Y226854D01*

-X387070Y231460D02*Y226854D01*

-X384512Y231460D02*Y226854D01*

-X381953Y231460D02*Y226854D01*

-X379394Y231460D02*Y226854D01*

-X376835Y231460D02*Y226854D01*

-Y254688D02*Y250082D01*

-X379394Y254688D02*Y250082D01*

-X381953Y254688D02*Y250082D01*

-X384512Y254688D02*Y250082D01*

-X387070Y254688D02*Y250082D01*

-G54D250*X461000Y213492D02*Y212508D01*

-X455882Y213492D02*Y212508D01*

-X461000Y243492D02*Y242508D01*

-X455882Y243492D02*Y242508D01*

-X468382Y226992D02*Y226008D01*

-X468441Y243492D02*Y242508D01*

-Y213492D02*Y212508D01*

-X473500Y196992D02*Y196008D01*

-Y183492D02*Y182508D01*

-X468382Y196992D02*Y196008D01*

-Y183492D02*Y182508D01*

-X461000Y183492D02*Y182508D01*

-X455882Y183492D02*Y182508D01*

-X461000Y273492D02*Y272508D01*

-Y303492D02*Y302508D01*

-X455882Y273492D02*Y272508D01*

-Y303492D02*Y302508D01*

-X436508Y256559D02*X437492D01*

-X436508Y251441D02*X437492D01*

-X437000Y242492D02*Y241508D01*

-X431882Y242492D02*Y241508D01*

-X427059Y226992D02*Y226008D01*

-X436508Y226559D02*X437492D01*

-X436508Y221441D02*X437492D01*

-X421941Y226992D02*Y226008D01*

-X421823Y256992D02*Y256008D01*

-X421882Y242492D02*Y241508D01*

-X414559Y243492D02*Y242508D01*

-X427000Y212492D02*Y211508D01*

-X437000Y212492D02*Y211508D01*

-X431882Y212492D02*Y211508D01*

-X414500Y213492D02*Y212508D01*

-X409382Y213492D02*Y212508D01*

-X421882Y212492D02*Y211508D01*

-X426941Y196492D02*Y195508D01*

-X421823Y196492D02*Y195508D01*

-X437000Y182492D02*Y181508D01*

-X431882Y182492D02*Y181508D01*

-X427000Y182492D02*Y181508D01*

-X421882Y182492D02*Y181508D01*

-X414500Y183492D02*Y182508D01*

-X409382Y183492D02*Y182508D01*

-X473500Y256492D02*Y255508D01*

-X468382Y256492D02*Y255508D01*

-X473677Y273492D02*Y272508D01*

-X468559Y273492D02*Y272508D01*

-X473500Y226992D02*Y226008D01*

-X473559Y243492D02*Y242508D01*

-Y213492D02*Y212508D01*

-Y363492D02*Y362508D01*

-Y333492D02*Y332508D01*

-X473000Y303492D02*Y302508D01*

-X473500Y286992D02*Y286008D01*

-X468382Y286992D02*Y286008D01*

-X467882Y303492D02*Y302508D01*

-X473618Y346992D02*Y346008D01*

-X436449Y311382D02*X437433D01*

-X427000Y302492D02*Y301508D01*

-X421882Y302492D02*Y301508D01*

-X437000Y302492D02*Y301508D01*

-X431882Y302492D02*Y301508D01*

-X436508Y286559D02*X437492D01*

-X414500Y303492D02*Y302508D01*

-X409382Y303492D02*Y302508D01*

-X426941Y286992D02*Y286008D01*

-X427000Y272492D02*Y271508D01*

-X426941Y256992D02*Y256008D01*

-X427000Y242492D02*Y241508D01*

-X421823Y286992D02*Y286008D01*

-X421882Y272492D02*Y271508D01*

-X414559Y273492D02*Y272508D01*

-X409441Y273492D02*Y272508D01*

-X436508Y281441D02*X437492D01*

-X437000Y272492D02*Y271508D01*

-X431882Y272492D02*Y271508D01*

-X409441Y243492D02*Y242508D01*

-X436508Y196559D02*X437492D01*

-X436508Y191441D02*X437492D01*

-G54D249*X388779Y374417D02*Y369811D01*

-X391338Y374417D02*Y369811D01*

-X393897Y374417D02*Y369811D01*

-Y351189D02*Y346583D01*

-X391338Y351189D02*Y346583D01*

-X388779Y351189D02*Y346583D01*

-X386220Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X383662Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X381103Y351189D02*Y346583D01*

-X378544Y351189D02*Y346583D01*

-X375985Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X378544Y374417D02*Y369811D01*

-X381103Y374417D02*Y369811D01*

-X389629Y254688D02*Y250082D01*

-X392188Y254688D02*Y250082D01*

-X391838Y290689D02*Y286083D01*

-X394747Y254688D02*Y250082D01*

-X394397Y290689D02*Y286083D01*

-X389279Y290689D02*Y286083D01*

-X386720Y290689D02*Y286083D01*

-X384162Y290689D02*Y286083D01*

-X381603Y290689D02*Y286083D01*

-X379044Y290689D02*Y286083D01*

-X376485Y290689D02*Y286083D01*

-G54D250*X397949Y324559D02*X398933D01*

-X397949Y319441D02*X398933D01*

-G54D249*X384162Y313917D02*Y309311D01*

-X386720Y313917D02*Y309311D01*

-X381603Y313917D02*Y309311D01*

-X376485Y313917D02*Y309311D01*

-X379044Y313917D02*Y309311D01*

-X389279Y313917D02*Y309311D01*

-X391838Y313917D02*Y309311D01*

-X394397Y313917D02*Y309311D01*

-G54D252*X147048Y344543D02*X147834D01*

-X147048Y337457D02*X147834D01*

-G54D253*X136799Y327729D02*Y321129D01*

-X127799Y327729D02*Y321129D01*

-X118699Y327729D02*Y321129D01*

-G54D254*X123299Y348829D02*X132299D01*

-G54D252*X183148Y235357D02*X183934D01*

-X183148Y242443D02*X183934D01*

-G54D250*X205681Y269321D02*Y268337D01*

-X210799Y269321D02*Y268337D01*

-G54D252*X204998Y263293D02*Y262507D01*

-X212084Y263293D02*Y262507D01*

-G54D253*X194441Y254200D02*Y247600D01*

-X203441Y254200D02*Y247600D01*

-X212541Y254200D02*Y247600D01*

-G54D254*X198941Y226500D02*X207941D01*

-G54D252*X125885Y309222D02*Y308436D01*

-X118799Y309222D02*Y308436D01*

-G54D250*X76949Y49941D02*X77933D01*

-X106949D02*X107933D01*

-X76949Y55059D02*X77933D01*

-X106949D02*X107933D01*

-X136949Y49941D02*X137933D01*

-X136949Y55059D02*X137933D01*

-G54D255*X287917Y303449D02*Y302465D01*

-G54D250*X293035Y303449D02*Y302465D01*

-G54D240*X307716Y275075D03*

-X308992Y271971D03*

-X308872Y266522D03*

-X287917Y307829D03*

-X293902Y282263D03*

-X296779Y304963D03*

-X295937Y243628D03*

-X296727Y256227D03*

-X312157Y300156D03*

-X312122Y295038D03*

-X303365Y330000D03*

-X285430Y325000D03*

-X302941Y340007D03*

-X245557Y279508D03*

-X242456Y293543D03*

-X262750Y268772D03*

-X253101Y261836D03*

-G54D256*X246941Y238000D03*

-X242441Y229500D03*

-X246441D03*

-X250941D03*

-X260941Y191500D03*

-X245863Y191524D03*

-X269441Y198500D03*

-X269941Y231500D03*

-X251941Y210500D03*

-X243941Y202000D03*

-X253441Y102500D03*

-X231441Y148000D03*

-X309441Y141568D03*

-Y136450D03*

-X310941Y115940D03*

-X305696Y107500D03*

-X304584Y207483D03*

-X304706Y210583D03*

-X305280Y204383D03*

-G54D240*X254740Y298329D03*

-X242168Y298800D03*

-G54D256*X246731Y303031D03*

-G54D240*X269653Y298631D03*

-G54D256*X270441Y336000D03*

-Y342500D03*

-Y349500D03*

-G54D240*X268941Y314000D03*

-G54D256*X270441Y357000D03*

-G54D240*X273229Y298582D03*

-X278225Y279602D03*

-X278207Y298612D03*

-X277174Y308219D03*

-X277449Y347500D03*

-G54D256*X263441Y320000D03*

-X260568Y316997D03*

-X261502Y307367D03*

-X249101Y328793D03*

-X229818Y354988D03*

-G54D240*X266413Y296594D03*

-X263240Y295329D03*

-X262740Y291829D03*

-X260341Y284249D03*

-X264034Y282931D03*

-G54D256*X279441Y285000D03*

-G54D257*X386441Y163000D03*

-X400441Y194000D03*

-X389441Y184000D03*

-X400441Y189000D03*

-G54D256*X386023Y157813D03*

-X398441Y173000D03*

-G54D257*X393441Y208000D03*

-X384162Y188000D03*

-X458441Y195000D03*

-Y164000D03*

-X372441Y170386D03*

-G54D256*X377347Y162178D03*

-G54D257*X387441Y326000D03*

-X393441Y355000D03*

-X386720Y282000D03*

-X393441Y327000D03*

-X384162Y306000D03*

-X385941Y354500D03*

-X458441Y375000D03*

-X383662Y378500D03*

-X397441Y373000D03*

-X397941Y367441D03*

-G54D256*X385941Y366000D03*

-G54D257*X458441Y345000D03*

-Y315000D03*

-Y285000D03*

-X398441Y314000D03*

-Y309000D03*

-G54D256*Y291000D03*

-G54D257*X372441Y290689D03*

-Y351189D03*

-G54D256*X339837Y341827D03*

-X353390Y339521D03*

-G54D257*X375441Y235000D03*

-G54D256*X356441Y233000D03*

-X338441Y224192D03*

-Y230124D03*

-X337441Y163000D03*

-X358941Y208500D03*

-G54D257*X384512Y258000D03*

-G54D256*X371602Y260228D03*

-G54D257*X458441Y254000D03*

-Y225000D03*

-X387070Y235000D03*

-X398441Y248000D03*

-Y253000D03*

-G54D256*X396441Y235000D03*

-X392188Y239000D03*

-X388207Y247280D03*

-G54D240*X239302Y262235D03*

-G54D256*X245441Y127500D03*

-X235941Y133000D03*

-X236441Y235500D03*

-X202441Y212500D03*

-X210441D03*

-X220441Y215000D03*

-X224941Y220500D03*

-X225441Y226500D03*

-X224941Y235500D03*

-X224441Y244000D03*

-X212941Y238000D03*

-X203941Y237500D03*

-X193941Y237000D03*

-X181941Y258500D03*

-X183941Y104000D03*

-X112222Y127340D03*

-X114441Y121500D03*

-X115441Y132500D03*

-X101941Y104500D03*

-X166441Y104000D03*

-X127941Y148000D03*

-X106441Y148500D03*

-X149941Y149000D03*

-X138925Y206113D03*

-X138872Y202030D03*

-X138925Y197841D03*

-X161941Y199000D03*

-X166941Y197500D03*

-X138925Y192698D03*

-X161941Y193000D03*

-X166941D03*

-X163941Y127500D03*

-X193390D03*

-X152441Y121500D03*

-X151941Y132000D03*

-X195441Y133000D03*

-X141441Y148000D03*

-X208941D03*

-X223941D03*

-X198441Y122500D03*

-X234441D03*

-X221884Y254000D03*

-X224441Y252000D03*

-X225441Y249000D03*

-X230441Y247000D03*

-X219441Y272500D03*

-X230441Y293000D03*

-X220729Y265580D03*

-X220441Y259500D03*

-X218441Y261500D03*

-X217441Y279000D03*

-X240391Y278564D03*

-X128941Y274500D03*

-Y268500D03*

-Y262500D03*

-Y255000D03*

-Y248500D03*

-Y242500D03*

-X104441Y204500D03*

-X100941D03*

-X141307Y300883D03*

-X124831Y302385D03*

-X158441Y323829D03*

-Y328829D03*

-Y326500D03*

-X153941Y338000D03*

-X154941Y345500D03*

-X135441Y338500D03*

-Y335000D03*

-X139941Y338000D03*

-X111941Y334000D03*

-X117941D03*

-X126441D03*

-X142441Y357500D03*

-Y349500D03*

-X149441D03*

-X126441Y340500D03*

-X111941Y341000D03*

-Y357500D03*

-X121941D03*

-X130941D03*

-X197441Y314500D03*

-Y308500D03*

-X198441Y262500D03*

-Y269500D03*

-X205441Y277000D03*

-X195441Y311500D03*

-X191363Y344449D03*

-X178887Y342818D03*

-X168732Y350833D03*

-X162441Y242500D03*

-X165941Y231000D03*

-Y226500D03*

-X185441Y228000D03*

-X177441D03*

-X162441Y248500D03*

-X161941Y255000D03*

-X162441Y262500D03*

-X162941Y268500D03*

-Y274500D03*

-X165941Y220500D03*

-X169441Y214000D03*

-Y208500D03*

-Y201500D03*

-X177441Y217500D03*

-X185441D03*

-X193941Y212500D03*

-G54D257*X432324Y111000D03*

-X446441Y102000D03*

-X434882Y75000D03*

-G54D258*X440941Y123000D03*

-G54D257*X423441Y75000D03*

-G54D256*X434449Y56500D03*

-X440449D03*

-X354941Y93499D03*

-Y97999D03*

-Y103999D03*

-Y109999D03*

-Y115999D03*

-Y121999D03*

-Y127999D03*

-X387941D03*

-Y121999D03*

-Y115999D03*

-Y109999D03*

-Y97999D03*

-Y93499D03*

-Y103999D03*

-X391441Y84499D03*

-Y79999D03*

-X391941Y74499D03*

-X395441Y66999D03*

-X394441Y59999D03*

-X392941Y53499D03*

-X368941Y48500D03*

-Y43500D03*

-X374941D03*

-Y47000D03*

-G54D238*G54D256*G54D238*G54D256*G54D238*G54D256*G54D238*G54D256*G54D238*G54D256*G54D238*G54D256*G54D238*G54D256*G54D238*G54D256*G54D238*G54D256*G54D259*G54D256*G54D238*G54D260*G54D261*G54D262*G54D261*G54D263*G54D248*G54D263*G54D260*G54D261*G54D260*G54D261*G54D263*G54D260*G54D263*M02*

diff --git a/bbb_cape/schematic/gerbers/20140117/cape.bottommask.gbr b/bbb_cape/schematic/gerbers/20140117/cape.bottommask.gbr
deleted file mode 100644
index d132180..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.bottommask.gbr
+++ /dev/null
@@ -1,687 +0,0 @@
-G04 start of page 9 for group -4062 idx -4062 *

-G04 Title: 971 BBB Cape, soldermask *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Sun Jan 19 01:17:08 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNBOTTOMMASK*%

-%ADD306R,0.0405X0.0405*%

-%ADD305R,0.1280X0.1280*%

-%ADD304R,0.0620X0.0620*%

-%ADD303R,0.0572X0.0572*%

-%ADD302R,0.0280X0.0280*%

-%ADD301R,0.0355X0.0355*%

-%ADD300R,0.0230X0.0230*%

-%ADD299C,0.2500*%

-%ADD298C,0.0860*%

-%ADD297C,0.2400*%

-%ADD296C,0.1890*%

-%ADD295C,0.0001*%

-%ADD294C,0.0710*%

-%ADD293C,0.0250*%

-%ADD292C,0.0080*%

-G54D292*X68000Y42000D02*Y244000D01*

-X74500Y250500D02*X101000D01*

-X107500Y256000D02*Y312500D01*

-X101000Y319000D02*X74500D01*

-X68000Y325500D02*Y393300D01*

-X484600D02*Y42000D01*

-X479100Y35500D02*X73500D01*

-G54D293*X189949Y136059D02*X189890Y136000D01*

-G54D292*X74500Y399800D02*X478100D01*

-X74500Y35500D02*G75*G02X68000Y42000I0J6500D01*G01*

-Y244000D02*G75*G02X74500Y250500I6500J0D01*G01*

-X107500Y257000D02*G75*G02X101000Y250500I-6500J0D01*G01*

-Y319000D02*G75*G02X107500Y312500I0J-6500D01*G01*

-X74500Y319000D02*G75*G02X68000Y325500I0J6500D01*G01*

-X478100Y399800D02*G75*G02X484600Y393300I0J-6500D01*G01*

-Y42000D02*G75*G02X478100Y35500I-6500J0D01*G01*

-X68000Y393300D02*G75*G02X74500Y399800I6500J0D01*G01*

-G54D294*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D295*G36*

-X403450Y357550D02*Y350450D01*

-X410550D01*

-Y357550D01*

-X403450D01*

-G37*

-G54D296*X345799Y357329D03*

-G54D297*X315799Y337329D03*

-G54D296*X85799Y369829D03*

-G54D298*X105799Y374829D03*

-G54D295*G36*

-X101499Y369129D02*Y360529D01*

-X110099D01*

-Y369129D01*

-X101499D01*

-G37*

-G54D298*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-G54D299*X93299Y342329D03*

-G54D298*X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D295*G36*

-X449950Y267550D02*Y260450D01*

-X457050D01*

-Y267550D01*

-X449950D01*

-G37*

-G36*

-Y207550D02*Y200450D01*

-X457050D01*

-Y207550D01*

-X449950D01*

-G37*

-G36*

-Y177550D02*Y170450D01*

-X457050D01*

-Y177550D01*

-X449950D01*

-G37*

-G54D294*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D295*G36*

-X449950Y237550D02*Y230450D01*

-X457050D01*

-Y237550D01*

-X449950D01*

-G37*

-G54D294*X463500Y234000D03*

-X473500D03*

-G54D295*G36*

-X449950Y147550D02*Y140450D01*

-X457050D01*

-Y147550D01*

-X449950D01*

-G37*

-G36*

-Y117550D02*Y110450D01*

-X457050D01*

-Y117550D01*

-X449950D01*

-G37*

-G36*

-Y87550D02*Y80450D01*

-X457050D01*

-Y87550D01*

-X449950D01*

-G37*

-G36*

-Y57550D02*Y50450D01*

-X457050D01*

-Y57550D01*

-X449950D01*

-G37*

-G54D294*X463500Y54000D03*

-X473500D03*

-G54D295*G36*

-X449950Y327550D02*Y320450D01*

-X457050D01*

-Y327550D01*

-X449950D01*

-G37*

-G54D294*X463500Y324000D03*

-X473500D03*

-G54D295*G36*

-X449950Y297550D02*Y290450D01*

-X457050D01*

-Y297550D01*

-X449950D01*

-G37*

-G54D294*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D295*G36*

-X308891Y252550D02*Y245450D01*

-X315991D01*

-Y252550D01*

-X308891D01*

-G37*

-G54D294*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D296*X345799Y192329D03*

-G54D295*G36*

-X449950Y387550D02*Y380450D01*

-X457050D01*

-Y387550D01*

-X449950D01*

-G37*

-G54D294*X463500Y384000D03*

-X473500D03*

-G54D295*G36*

-X403450Y387550D02*Y380450D01*

-X410550D01*

-Y387550D01*

-X403450D01*

-G37*

-G36*

-Y297550D02*Y290450D01*

-X410550D01*

-Y297550D01*

-X403450D01*

-G37*

-G36*

-Y327550D02*Y320450D01*

-X410550D01*

-Y327550D01*

-X403450D01*

-G37*

-G54D294*X417000Y324000D03*

-X427000D03*

-G54D295*G36*

-X449950Y357550D02*Y350450D01*

-X457050D01*

-Y357550D01*

-X449950D01*

-G37*

-G54D294*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D295*G36*

-X403450Y177550D02*Y170450D01*

-X410550D01*

-Y177550D01*

-X403450D01*

-G37*

-G36*

-Y207550D02*Y200450D01*

-X410550D01*

-Y207550D01*

-X403450D01*

-G37*

-G36*

-Y237550D02*Y230450D01*

-X410550D01*

-Y237550D01*

-X403450D01*

-G37*

-G36*

-Y267550D02*Y260450D01*

-X410550D01*

-Y267550D01*

-X403450D01*

-G37*

-G54D294*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D295*G36*

-X201891Y51050D02*Y43950D01*

-X208991D01*

-Y51050D01*

-X201891D01*

-G37*

-G54D294*X205441Y57500D03*

-Y67500D03*

-G54D295*G36*

-X231891Y51050D02*Y43950D01*

-X238991D01*

-Y51050D01*

-X231891D01*

-G37*

-G54D294*X235441Y57500D03*

-Y67500D03*

-G54D295*G36*

-X261891Y51050D02*Y43950D01*

-X268991D01*

-Y51050D01*

-X261891D01*

-G37*

-G36*

-X171891D02*Y43950D01*

-X178991D01*

-Y51050D01*

-X171891D01*

-G37*

-G36*

-X141891D02*Y43950D01*

-X148991D01*

-Y51050D01*

-X141891D01*

-G37*

-G36*

-X111891D02*Y43950D01*

-X118991D01*

-Y51050D01*

-X111891D01*

-G37*

-G36*

-X81891D02*Y43950D01*

-X88991D01*

-Y51050D01*

-X81891D01*

-G37*

-G54D294*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D295*G36*

-X291891Y51050D02*Y43950D01*

-X298991D01*

-Y51050D01*

-X291891D01*

-G37*

-G54D294*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D296*X85799Y179829D03*

-G54D298*X105799Y184829D03*

-G54D295*G36*

-X101499Y179129D02*Y170529D01*

-X110099D01*

-Y179129D01*

-X101499D01*

-G37*

-G54D298*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D295*G36*

-X81891Y243550D02*Y236450D01*

-X88991D01*

-Y243550D01*

-X81891D01*

-G37*

-G54D294*X85441Y230000D03*

-Y220000D03*

-G54D298*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D295*G36*

-X191499Y201629D02*Y193029D01*

-X200099D01*

-Y201629D01*

-X191499D01*

-G37*

-G54D298*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D300*X394397Y172689D02*Y168083D01*

-X391838Y172689D02*Y168083D01*

-X389279Y172689D02*Y168083D01*

-X386720Y172689D02*Y168083D01*

-X384162Y172689D02*Y168083D01*

-X381603Y172689D02*Y168083D01*

-X379044Y172689D02*Y168083D01*

-X376485Y172689D02*Y168083D01*

-G54D301*X461000Y153492D02*Y152508D01*

-X473500Y166492D02*Y165508D01*

-X468382Y166492D02*Y165508D01*

-X468441Y153492D02*Y152508D01*

-X455882Y153492D02*Y152508D01*

-X426941Y166992D02*Y166008D01*

-X421823Y166992D02*Y166008D01*

-X436449Y166500D02*X437433D01*

-X436449Y161382D02*X437433D01*

-X473559Y153492D02*Y152508D01*

-X461000Y123492D02*Y122508D01*

-X455882Y123492D02*Y122508D01*

-X473559Y123492D02*Y122508D01*

-X468441Y123492D02*Y122508D01*

-X473559Y93492D02*Y92508D01*

-X468441Y93492D02*Y92508D01*

-X461059Y93492D02*Y92508D01*

-X455941Y93492D02*Y92508D01*

-X473500Y106992D02*Y106008D01*

-X468382Y106992D02*Y106008D01*

-X473500Y136492D02*Y135508D01*

-X468382Y136492D02*Y135508D01*

-X286949Y49941D02*X287933D01*

-X256949D02*X257933D01*

-X226949D02*X227933D01*

-X196949D02*X197933D01*

-X166949D02*X167933D01*

-X256949Y55059D02*X257933D01*

-X226949D02*X227933D01*

-X196949D02*X197933D01*

-X166949D02*X167933D01*

-X286949D02*X287933D01*

-X434449Y65559D02*X435433D01*

-X434449Y60441D02*X435433D01*

-G54D300*X442559Y83075D02*Y78469D01*

-X440000Y83075D02*Y78469D01*

-G54D302*X437441Y83075D02*Y78469D01*

-G54D300*X434882Y83075D02*Y78469D01*

-X432324Y83075D02*Y78469D01*

-X429765Y83075D02*Y78469D01*

-X427206Y83075D02*Y78469D01*

-X424647Y83075D02*Y78469D01*

-G54D301*X440449Y65559D02*X441433D01*

-X440449Y60441D02*X441433D01*

-G54D300*X424647Y106303D02*Y101697D01*

-X427206Y106303D02*Y101697D01*

-X429765Y106303D02*Y101697D01*

-X432324Y106303D02*Y101697D01*

-X434882Y106303D02*Y101697D01*

-X437441Y106303D02*Y101697D01*

-X440000Y106303D02*Y101697D01*

-X442559Y106303D02*Y101697D01*

-G54D301*X461059Y63492D02*Y62508D01*

-X455941Y63492D02*Y62508D01*

-X468441Y63492D02*Y62508D01*

-X473559Y46992D02*Y46008D01*

-X468441Y46992D02*Y46008D01*

-X473559Y63492D02*Y62508D01*

-X473500Y76992D02*Y76008D01*

-X468382Y76992D02*Y76008D01*

-X461000Y393492D02*Y392508D01*

-X455882Y393492D02*Y392508D01*

-X461059Y363492D02*Y362508D01*

-X473500Y376992D02*Y376008D01*

-X468382Y376992D02*Y376008D01*

-X468441Y363492D02*Y362508D01*

-X468500Y346992D02*Y346008D01*

-X455941Y363492D02*Y362508D01*

-X461000Y333492D02*Y332508D01*

-X455882Y333492D02*Y332508D01*

-X473500Y316992D02*Y316008D01*

-X468382Y316992D02*Y316008D01*

-X468441Y333492D02*Y332508D01*

-X473559Y393492D02*Y392508D01*

-X468441Y393492D02*Y392508D01*

-X427000Y392492D02*Y391508D01*

-X426941Y346992D02*Y346008D01*

-X427118Y377051D02*Y376067D01*

-X421882Y392492D02*Y391508D01*

-X421823Y346992D02*Y346008D01*

-X422000Y377051D02*Y376067D01*

-X427000Y362492D02*Y361508D01*

-X421882Y362492D02*Y361508D01*

-X414500Y363492D02*Y362508D01*

-X409382Y363492D02*Y362508D01*

-X437000Y362492D02*Y361508D01*

-X431882Y362492D02*Y361508D01*

-X436449Y346618D02*X437433D01*

-X437059Y392610D02*Y391626D01*

-X436449Y376618D02*X437433D01*

-X436449Y371500D02*X437433D01*

-X431941Y392610D02*Y391626D01*

-X414559Y393610D02*Y392626D01*

-X409441Y393610D02*Y392626D01*

-X436449Y341500D02*X437433D01*

-X427000Y332492D02*Y331508D01*

-X437000Y332492D02*Y331508D01*

-X431882Y332492D02*Y331508D01*

-X426941Y316992D02*Y316008D01*

-X421823Y316992D02*Y316008D01*

-X436449Y316500D02*X437433D01*

-X414500Y333492D02*Y332508D01*

-X409382Y333492D02*Y332508D01*

-X421882Y332492D02*Y331508D01*

-X397949Y205559D02*X398933D01*

-X397949Y200441D02*X398933D01*

-G54D300*X376485Y195917D02*Y191311D01*

-X379044Y195917D02*Y191311D01*

-X381603Y195917D02*Y191311D01*

-X384162Y195917D02*Y191311D01*

-X386720Y195917D02*Y191311D01*

-X389279Y195917D02*Y191311D01*

-X391838Y195917D02*Y191311D01*

-X394397Y195917D02*Y191311D01*

-X394747Y231460D02*Y226854D01*

-X392188Y231460D02*Y226854D01*

-X389629Y231460D02*Y226854D01*

-X387070Y231460D02*Y226854D01*

-X384512Y231460D02*Y226854D01*

-X381953Y231460D02*Y226854D01*

-X379394Y231460D02*Y226854D01*

-X376835Y231460D02*Y226854D01*

-Y254688D02*Y250082D01*

-X379394Y254688D02*Y250082D01*

-X381953Y254688D02*Y250082D01*

-X384512Y254688D02*Y250082D01*

-X387070Y254688D02*Y250082D01*

-G54D301*X461000Y213492D02*Y212508D01*

-X455882Y213492D02*Y212508D01*

-X461000Y243492D02*Y242508D01*

-X455882Y243492D02*Y242508D01*

-X468382Y226992D02*Y226008D01*

-X468441Y243492D02*Y242508D01*

-Y213492D02*Y212508D01*

-X473500Y196992D02*Y196008D01*

-Y183492D02*Y182508D01*

-X468382Y196992D02*Y196008D01*

-Y183492D02*Y182508D01*

-X461000Y183492D02*Y182508D01*

-X455882Y183492D02*Y182508D01*

-X461000Y273492D02*Y272508D01*

-Y303492D02*Y302508D01*

-X455882Y273492D02*Y272508D01*

-Y303492D02*Y302508D01*

-X436508Y256559D02*X437492D01*

-X436508Y251441D02*X437492D01*

-X437000Y242492D02*Y241508D01*

-X431882Y242492D02*Y241508D01*

-X427059Y226992D02*Y226008D01*

-X436508Y226559D02*X437492D01*

-X436508Y221441D02*X437492D01*

-X421941Y226992D02*Y226008D01*

-X421823Y256992D02*Y256008D01*

-X421882Y242492D02*Y241508D01*

-X414559Y243492D02*Y242508D01*

-X427000Y212492D02*Y211508D01*

-X437000Y212492D02*Y211508D01*

-X431882Y212492D02*Y211508D01*

-X414500Y213492D02*Y212508D01*

-X409382Y213492D02*Y212508D01*

-X421882Y212492D02*Y211508D01*

-X426941Y196492D02*Y195508D01*

-X421823Y196492D02*Y195508D01*

-X437000Y182492D02*Y181508D01*

-X431882Y182492D02*Y181508D01*

-X427000Y182492D02*Y181508D01*

-X421882Y182492D02*Y181508D01*

-X414500Y183492D02*Y182508D01*

-X409382Y183492D02*Y182508D01*

-X473500Y256492D02*Y255508D01*

-X468382Y256492D02*Y255508D01*

-X473677Y273492D02*Y272508D01*

-X468559Y273492D02*Y272508D01*

-X473500Y226992D02*Y226008D01*

-X473559Y243492D02*Y242508D01*

-Y213492D02*Y212508D01*

-Y363492D02*Y362508D01*

-Y333492D02*Y332508D01*

-X473000Y303492D02*Y302508D01*

-X473500Y286992D02*Y286008D01*

-X468382Y286992D02*Y286008D01*

-X467882Y303492D02*Y302508D01*

-X473618Y346992D02*Y346008D01*

-X436449Y311382D02*X437433D01*

-X427000Y302492D02*Y301508D01*

-X421882Y302492D02*Y301508D01*

-X437000Y302492D02*Y301508D01*

-X431882Y302492D02*Y301508D01*

-X436508Y286559D02*X437492D01*

-X414500Y303492D02*Y302508D01*

-X409382Y303492D02*Y302508D01*

-X426941Y286992D02*Y286008D01*

-X427000Y272492D02*Y271508D01*

-X426941Y256992D02*Y256008D01*

-X427000Y242492D02*Y241508D01*

-X421823Y286992D02*Y286008D01*

-X421882Y272492D02*Y271508D01*

-X414559Y273492D02*Y272508D01*

-X409441Y273492D02*Y272508D01*

-X436508Y281441D02*X437492D01*

-X437000Y272492D02*Y271508D01*

-X431882Y272492D02*Y271508D01*

-X409441Y243492D02*Y242508D01*

-X436508Y196559D02*X437492D01*

-X436508Y191441D02*X437492D01*

-G54D300*X388779Y374417D02*Y369811D01*

-X391338Y374417D02*Y369811D01*

-X393897Y374417D02*Y369811D01*

-Y351189D02*Y346583D01*

-X391338Y351189D02*Y346583D01*

-X388779Y351189D02*Y346583D01*

-X386220Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X383662Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X381103Y351189D02*Y346583D01*

-X378544Y351189D02*Y346583D01*

-X375985Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X378544Y374417D02*Y369811D01*

-X381103Y374417D02*Y369811D01*

-X389629Y254688D02*Y250082D01*

-X392188Y254688D02*Y250082D01*

-X391838Y290689D02*Y286083D01*

-X394747Y254688D02*Y250082D01*

-X394397Y290689D02*Y286083D01*

-X389279Y290689D02*Y286083D01*

-X386720Y290689D02*Y286083D01*

-X384162Y290689D02*Y286083D01*

-X381603Y290689D02*Y286083D01*

-X379044Y290689D02*Y286083D01*

-X376485Y290689D02*Y286083D01*

-G54D301*X397949Y324559D02*X398933D01*

-X397949Y319441D02*X398933D01*

-G54D300*X384162Y313917D02*Y309311D01*

-X386720Y313917D02*Y309311D01*

-X381603Y313917D02*Y309311D01*

-X376485Y313917D02*Y309311D01*

-X379044Y313917D02*Y309311D01*

-X389279Y313917D02*Y309311D01*

-X391838Y313917D02*Y309311D01*

-X394397Y313917D02*Y309311D01*

-G54D303*X147048Y344543D02*X147834D01*

-X147048Y337457D02*X147834D01*

-G54D304*X136799Y327729D02*Y321129D01*

-X127799Y327729D02*Y321129D01*

-X118699Y327729D02*Y321129D01*

-G54D305*X123299Y348829D02*X132299D01*

-G54D303*X183148Y235357D02*X183934D01*

-X183148Y242443D02*X183934D01*

-G54D301*X205681Y269321D02*Y268337D01*

-X210799Y269321D02*Y268337D01*

-G54D303*X204998Y263293D02*Y262507D01*

-X212084Y263293D02*Y262507D01*

-G54D304*X194441Y254200D02*Y247600D01*

-X203441Y254200D02*Y247600D01*

-X212541Y254200D02*Y247600D01*

-G54D305*X198941Y226500D02*X207941D01*

-G54D303*X125885Y309222D02*Y308436D01*

-X118799Y309222D02*Y308436D01*

-G54D301*X76949Y49941D02*X77933D01*

-X106949D02*X107933D01*

-X76949Y55059D02*X77933D01*

-X106949D02*X107933D01*

-X136949Y49941D02*X137933D01*

-X136949Y55059D02*X137933D01*

-G54D306*X287917Y303449D02*Y302465D01*

-G54D301*X293035Y303449D02*Y302465D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140117/cape.bottompaste.gbr b/bbb_cape/schematic/gerbers/20140117/cape.bottompaste.gbr
deleted file mode 100644
index 024893d..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.bottompaste.gbr
+++ /dev/null
@@ -1,295 +0,0 @@
-G04 start of page 13 for group -4014 idx -4014 *

-G04 Title: 971 BBB Cape, bottompaste *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Sun Jan 19 01:17:08 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNBOTTOMPASTE*%

-%ADD335R,0.1220X0.1220*%

-%ADD334R,0.0560X0.0560*%

-%ADD333R,0.0345X0.0345*%

-%ADD332R,0.0512X0.0512*%

-%ADD331R,0.0180X0.0180*%

-%ADD330R,0.0295X0.0295*%

-%ADD329R,0.0130X0.0130*%

-G54D329*X394397Y172689D02*Y168083D01*

-X391838Y172689D02*Y168083D01*

-X389279Y172689D02*Y168083D01*

-X386720Y172689D02*Y168083D01*

-X384162Y172689D02*Y168083D01*

-X381603Y172689D02*Y168083D01*

-X379044Y172689D02*Y168083D01*

-X376485Y172689D02*Y168083D01*

-Y195917D02*Y191311D01*

-X379044Y195917D02*Y191311D01*

-X381603Y195917D02*Y191311D01*

-X384162Y195917D02*Y191311D01*

-X386720Y195917D02*Y191311D01*

-X389279Y195917D02*Y191311D01*

-X391838Y195917D02*Y191311D01*

-X394397Y195917D02*Y191311D01*

-G54D330*X397949Y324559D02*X398933D01*

-X397949Y319441D02*X398933D01*

-G54D329*X424647Y106303D02*Y101697D01*

-X427206Y106303D02*Y101697D01*

-X429765Y106303D02*Y101697D01*

-X432324Y106303D02*Y101697D01*

-X434882Y106303D02*Y101697D01*

-X437441Y106303D02*Y101697D01*

-X440000Y106303D02*Y101697D01*

-X442559Y106303D02*Y101697D01*

-Y83075D02*Y78469D01*

-X440000Y83075D02*Y78469D01*

-G54D331*X437441Y83075D02*Y78469D01*

-G54D329*X434882Y83075D02*Y78469D01*

-X432324Y83075D02*Y78469D01*

-X429765Y83075D02*Y78469D01*

-X427206Y83075D02*Y78469D01*

-X424647Y83075D02*Y78469D01*

-G54D330*X427000Y392492D02*Y391508D01*

-X421882Y392492D02*Y391508D01*

-X461000Y153492D02*Y152508D01*

-X455882Y153492D02*Y152508D01*

-X461059Y63492D02*Y62508D01*

-X455941Y63492D02*Y62508D01*

-X461000Y123492D02*Y122508D01*

-X455882Y123492D02*Y122508D01*

-X461000Y213492D02*Y212508D01*

-X455882Y213492D02*Y212508D01*

-X461000Y243492D02*Y242508D01*

-X455882Y243492D02*Y242508D01*

-X461000Y393492D02*Y392508D01*

-X455882Y393492D02*Y392508D01*

-X461059Y363492D02*Y362508D01*

-X455941Y363492D02*Y362508D01*

-X461000Y333492D02*Y332508D01*

-X455882Y333492D02*Y332508D01*

-X473500Y376992D02*Y376008D01*

-X468382Y376992D02*Y376008D01*

-X473500Y316992D02*Y316008D01*

-X468382Y316992D02*Y316008D01*

-X473500Y286992D02*Y286008D01*

-X468382Y286992D02*Y286008D01*

-X473500Y256492D02*Y255508D01*

-X468382Y256492D02*Y255508D01*

-X473500Y226992D02*Y226008D01*

-X468382Y226992D02*Y226008D01*

-X473500Y196992D02*Y196008D01*

-X468382Y196992D02*Y196008D01*

-X473500Y166492D02*Y165508D01*

-X468382Y166492D02*Y165508D01*

-X427000Y362492D02*Y361508D01*

-X421882Y362492D02*Y361508D01*

-X437000Y362492D02*Y361508D01*

-X431882Y362492D02*Y361508D01*

-X426941Y346992D02*Y346008D01*

-X421823Y346992D02*Y346008D01*

-X414500Y363492D02*Y362508D01*

-X409382Y363492D02*Y362508D01*

-X436449Y346618D02*X437433D01*

-X436449Y341500D02*X437433D01*

-X426941Y316992D02*Y316008D01*

-X421823Y316992D02*Y316008D01*

-X436449Y316500D02*X437433D01*

-X436449Y311382D02*X437433D01*

-X414500Y333492D02*Y332508D01*

-X409382Y333492D02*Y332508D01*

-X427000Y332492D02*Y331508D01*

-X421882Y332492D02*Y331508D01*

-X437000Y332492D02*Y331508D01*

-X431882Y332492D02*Y331508D01*

-X427000Y302492D02*Y301508D01*

-X421882Y302492D02*Y301508D01*

-X437000Y302492D02*Y301508D01*

-X431882Y302492D02*Y301508D01*

-X426941Y286992D02*Y286008D01*

-X421823Y286992D02*Y286008D01*

-X436508Y286559D02*X437492D01*

-X436508Y281441D02*X437492D01*

-X414500Y303492D02*Y302508D01*

-X409382Y303492D02*Y302508D01*

-X427000Y272492D02*Y271508D01*

-X421882Y272492D02*Y271508D01*

-X437000Y272492D02*Y271508D01*

-X431882Y272492D02*Y271508D01*

-X426941Y256992D02*Y256008D01*

-X421823Y256992D02*Y256008D01*

-X436508Y256559D02*X437492D01*

-X436508Y251441D02*X437492D01*

-X414559Y273492D02*Y272508D01*

-X409441Y273492D02*Y272508D01*

-X427000Y242492D02*Y241508D01*

-X421882Y242492D02*Y241508D01*

-X437000Y242492D02*Y241508D01*

-X431882Y242492D02*Y241508D01*

-X427059Y226992D02*Y226008D01*

-X421941Y226992D02*Y226008D01*

-X436508Y226559D02*X437492D01*

-X436508Y221441D02*X437492D01*

-X414559Y243492D02*Y242508D01*

-X409441Y243492D02*Y242508D01*

-X427000Y212492D02*Y211508D01*

-X421882Y212492D02*Y211508D01*

-X437000Y212492D02*Y211508D01*

-X431882Y212492D02*Y211508D01*

-X426941Y196492D02*Y195508D01*

-X421823Y196492D02*Y195508D01*

-X414500Y213492D02*Y212508D01*

-X409382Y213492D02*Y212508D01*

-X437000Y182492D02*Y181508D01*

-X431882Y182492D02*Y181508D01*

-X427000Y182492D02*Y181508D01*

-X421882Y182492D02*Y181508D01*

-X426941Y166992D02*Y166008D01*

-X421823Y166992D02*Y166008D01*

-X436449Y166500D02*X437433D01*

-X436449Y161382D02*X437433D01*

-X414500Y183492D02*Y182508D01*

-X409382Y183492D02*Y182508D01*

-X437059Y392610D02*Y391626D01*

-X431941Y392610D02*Y391626D01*

-X427118Y377051D02*Y376067D01*

-X422000Y377051D02*Y376067D01*

-X414559Y393610D02*Y392626D01*

-X409441Y393610D02*Y392626D01*

-X473559Y123492D02*Y122508D01*

-X468441Y123492D02*Y122508D01*

-X473559Y153492D02*Y152508D01*

-X468441Y153492D02*Y152508D01*

-X473559Y93492D02*Y92508D01*

-X468441Y93492D02*Y92508D01*

-X473559Y63492D02*Y62508D01*

-X468441Y63492D02*Y62508D01*

-X473559Y243492D02*Y242508D01*

-X468441Y243492D02*Y242508D01*

-X473677Y273492D02*Y272508D01*

-X468559Y273492D02*Y272508D01*

-X473559Y213492D02*Y212508D01*

-X468441Y213492D02*Y212508D01*

-X473500Y183492D02*Y182508D01*

-X468382Y183492D02*Y182508D01*

-X473559Y363492D02*Y362508D01*

-X468441Y363492D02*Y362508D01*

-X473559Y333492D02*Y332508D01*

-X468441Y333492D02*Y332508D01*

-X473000Y303492D02*Y302508D01*

-X467882Y303492D02*Y302508D01*

-X473559Y393492D02*Y392508D01*

-X468441Y393492D02*Y392508D01*

-X436508Y196559D02*X437492D01*

-X436508Y191441D02*X437492D01*

-X436449Y376618D02*X437433D01*

-X436449Y371500D02*X437433D01*

-X397949Y205559D02*X398933D01*

-X397949Y200441D02*X398933D01*

-X461059Y93492D02*Y92508D01*

-X455941Y93492D02*Y92508D01*

-X473559Y46992D02*Y46008D01*

-X468441Y46992D02*Y46008D01*

-X473500Y76992D02*Y76008D01*

-X468382Y76992D02*Y76008D01*

-X473500Y106992D02*Y106008D01*

-X468382Y106992D02*Y106008D01*

-X473500Y136492D02*Y135508D01*

-X468382Y136492D02*Y135508D01*

-X461000Y273492D02*Y272508D01*

-X455882Y273492D02*Y272508D01*

-X461000Y183492D02*Y182508D01*

-X455882Y183492D02*Y182508D01*

-X473618Y346992D02*Y346008D01*

-X468500Y346992D02*Y346008D01*

-X461000Y303492D02*Y302508D01*

-X455882Y303492D02*Y302508D01*

-X205681Y269321D02*Y268337D01*

-X210799Y269321D02*Y268337D01*

-G54D332*X147048Y344543D02*X147834D01*

-X147048Y337457D02*X147834D01*

-X125885Y309222D02*Y308436D01*

-X118799Y309222D02*Y308436D01*

-G54D333*X287917Y303449D02*Y302465D01*

-G54D330*X293035Y303449D02*Y302465D01*

-G54D332*X183148Y235357D02*X183934D01*

-X183148Y242443D02*X183934D01*

-X204998Y263293D02*Y262507D01*

-X212084Y263293D02*Y262507D01*

-G54D334*X194441Y254200D02*Y247600D01*

-X203441Y254200D02*Y247600D01*

-X212541Y254200D02*Y247600D01*

-G54D335*X198941Y226500D02*X207941D01*

-G54D330*X76949Y49941D02*X77933D01*

-X76949Y55059D02*X77933D01*

-X286949Y49941D02*X287933D01*

-X286949Y55059D02*X287933D01*

-X256949Y49941D02*X257933D01*

-X256949Y55059D02*X257933D01*

-X226949Y49941D02*X227933D01*

-X226949Y55059D02*X227933D01*

-X196949Y49941D02*X197933D01*

-X196949Y55059D02*X197933D01*

-X166949Y49941D02*X167933D01*

-X166949Y55059D02*X167933D01*

-X136949Y49941D02*X137933D01*

-X136949Y55059D02*X137933D01*

-X106949Y49941D02*X107933D01*

-X106949Y55059D02*X107933D01*

-X440449Y65559D02*X441433D01*

-X440449Y60441D02*X441433D01*

-X434449Y65559D02*X435433D01*

-X434449Y60441D02*X435433D01*

-G54D334*X136799Y327729D02*Y321129D01*

-X127799Y327729D02*Y321129D01*

-X118699Y327729D02*Y321129D01*

-G54D335*X123299Y348829D02*X132299D01*

-G54D329*X394747Y231460D02*Y226854D01*

-X392188Y231460D02*Y226854D01*

-X389629Y231460D02*Y226854D01*

-X387070Y231460D02*Y226854D01*

-X384512Y231460D02*Y226854D01*

-X381953Y231460D02*Y226854D01*

-X379394Y231460D02*Y226854D01*

-X376835Y231460D02*Y226854D01*

-Y254688D02*Y250082D01*

-X379394Y254688D02*Y250082D01*

-X381953Y254688D02*Y250082D01*

-X384512Y254688D02*Y250082D01*

-X387070Y254688D02*Y250082D01*

-X389629Y254688D02*Y250082D01*

-X392188Y254688D02*Y250082D01*

-X394747Y254688D02*Y250082D01*

-X394397Y290689D02*Y286083D01*

-X391838Y290689D02*Y286083D01*

-X389279Y290689D02*Y286083D01*

-X386720Y290689D02*Y286083D01*

-X384162Y290689D02*Y286083D01*

-X381603Y290689D02*Y286083D01*

-X379044Y290689D02*Y286083D01*

-X376485Y290689D02*Y286083D01*

-Y313917D02*Y309311D01*

-X379044Y313917D02*Y309311D01*

-X381603Y313917D02*Y309311D01*

-X384162Y313917D02*Y309311D01*

-X386720Y313917D02*Y309311D01*

-X389279Y313917D02*Y309311D01*

-X391838Y313917D02*Y309311D01*

-X394397Y313917D02*Y309311D01*

-X393897Y351189D02*Y346583D01*

-X391338Y351189D02*Y346583D01*

-X388779Y351189D02*Y346583D01*

-X386220Y351189D02*Y346583D01*

-X383662Y351189D02*Y346583D01*

-X381103Y351189D02*Y346583D01*

-X378544Y351189D02*Y346583D01*

-X375985Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X378544Y374417D02*Y369811D01*

-X381103Y374417D02*Y369811D01*

-X383662Y374417D02*Y369811D01*

-X386220Y374417D02*Y369811D01*

-X388779Y374417D02*Y369811D01*

-X391338Y374417D02*Y369811D01*

-X393897Y374417D02*Y369811D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140117/cape.bottomsilk.gbr b/bbb_cape/schematic/gerbers/20140117/cape.bottomsilk.gbr
deleted file mode 100644
index 1e09266..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.bottomsilk.gbr
+++ /dev/null
@@ -1,60 +0,0 @@
-G04 start of page 11 for group -4078 idx -4078 *

-G04 Title: 971 BBB Cape, bottomsilk *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Sun Jan 19 01:17:08 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNBOTTOMSILK*%

-%ADD318C,0.0080*%

-%ADD317C,0.0100*%

-G54D317*X422997Y107952D02*X444209D01*

-Y76820D01*

-X422997D02*X444209D01*

-X422997Y107952D02*Y94886D01*

-Y89886D02*Y76820D01*

-Y89886D02*G75*G03X422997Y94886I0J2500D01*G01*

-X374835Y166434D02*X396047D01*

-X374835Y197566D02*Y166434D01*

-Y197566D02*X396047D01*

-Y179500D02*Y166434D01*

-Y197566D02*Y184500D01*

-G75*G03X396047Y179500I0J-2500D01*G01*

-X375185Y225205D02*X396397D01*

-X375185Y256337D02*Y225205D01*

-Y256337D02*X396397D01*

-Y238271D02*Y225205D01*

-Y256337D02*Y243271D01*

-G75*G03X396397Y238271I0J-2500D01*G01*

-X374335Y344934D02*X395547D01*

-X374335Y376066D02*Y344934D01*

-Y376066D02*X395547D01*

-Y358000D02*Y344934D01*

-Y376066D02*Y363000D01*

-G75*G03X395547Y358000I0J-2500D01*G01*

-X374835Y284434D02*X396047D01*

-X374835Y315566D02*Y284434D01*

-Y315566D02*X396047D01*

-Y297500D02*Y284434D01*

-Y315566D02*Y302500D01*

-G75*G03X396047Y297500I0J-2500D01*G01*

-G54D318*X144686Y341393D02*Y340607D01*

-X150196Y341393D02*Y340607D01*

-X121949Y311584D02*X122735D01*

-X121949Y306074D02*X122735D01*

-G54D317*X141999Y357329D02*Y315929D01*

-X113499D02*X141999D01*

-X113499Y357329D02*Y315929D01*

-Y357329D02*X141999D01*

-G54D318*X208148Y260145D02*X208934D01*

-X208148Y265655D02*X208934D01*

-G54D317*X189241Y218000D02*Y259400D01*

-X217741D01*

-Y218000D01*

-X189241D01*

-G54D318*X186296Y238507D02*Y239293D01*

-X180786Y238507D02*Y239293D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140117/cape.fab.gbr b/bbb_cape/schematic/gerbers/20140117/cape.fab.gbr
deleted file mode 100644
index 4a3fc01..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.fab.gbr
+++ /dev/null
@@ -1,3066 +0,0 @@
-G04 start of page 14 for group -3984 idx -3984 *

-G04 Title: 971 BBB Cape, fab *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Sun Jan 19 01:17:08 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNFAB*%

-%ADD340C,0.0100*%

-%ADD339C,0.0075*%

-%ADD338C,0.0060*%

-%ADD337R,0.0080X0.0080*%

-%ADD336C,0.0001*%

-G54D336*G36*

-X90899Y345295D02*X96265Y339929D01*

-X95699Y339363D01*

-X90333Y344729D01*

-X90899Y345295D01*

-G37*

-G36*

-X90333Y339929D02*X95699Y345295D01*

-X96265Y344729D01*

-X90899Y339363D01*

-X90333Y339929D01*

-G37*

-G54D337*X91699Y343929D02*X94899D01*

-X91699D02*Y340729D01*

-X94899D01*

-Y343929D02*Y340729D01*

-G54D336*G36*

-X12600Y414216D02*X17966Y408850D01*

-X17400Y408284D01*

-X12034Y413650D01*

-X12600Y414216D01*

-G37*

-G36*

-X12034Y408850D02*X17400Y414216D01*

-X17966Y413650D01*

-X12600Y408284D01*

-X12034Y408850D01*

-G37*

-G54D337*X13400Y412850D02*X16600D01*

-X13400D02*Y409650D01*

-X16600D01*

-Y412850D02*Y409650D01*

-G54D338*X135000Y413500D02*X136500Y410500D01*

-X138000Y413500D01*

-X136500Y410500D02*Y407500D01*

-X139800Y410800D02*X142050D01*

-X139800Y407500D02*X142800D01*

-X139800Y413500D02*Y407500D01*

-Y413500D02*X142800D01*

-X147600D02*X148350Y412750D01*

-X145350Y413500D02*X147600D01*

-X144600Y412750D02*X145350Y413500D01*

-X144600Y412750D02*Y411250D01*

-X145350Y410500D01*

-X147600D01*

-X148350Y409750D01*

-Y408250D01*

-X147600Y407500D02*X148350Y408250D01*

-X145350Y407500D02*X147600D01*

-X144600Y408250D02*X145350Y407500D01*

-X98000Y412300D02*X99200Y413500D01*

-Y407500D01*

-X98000D02*X100250D01*

-X45000Y408250D02*X45750Y407500D01*

-X45000Y412750D02*Y408250D01*

-Y412750D02*X45750Y413500D01*

-X47250D01*

-X48000Y412750D01*

-Y408250D01*

-X47250Y407500D02*X48000Y408250D01*

-X45750Y407500D02*X47250D01*

-X45000Y409000D02*X48000Y412000D01*

-X49800Y407500D02*X50550D01*

-X52350Y412750D02*X53100Y413500D01*

-X55350D01*

-X56100Y412750D01*

-Y411250D01*

-X52350Y407500D02*X56100Y411250D01*

-X52350Y407500D02*X56100D01*

-X57900Y413500D02*X60900D01*

-X57900D02*Y410500D01*

-X58650Y411250D01*

-X60150D01*

-X60900Y410500D01*

-Y408250D01*

-X60150Y407500D02*X60900Y408250D01*

-X58650Y407500D02*X60150D01*

-X57900Y408250D02*X58650Y407500D01*

-X62700Y408250D02*X63450Y407500D01*

-X62700Y412750D02*Y408250D01*

-Y412750D02*X63450Y413500D01*

-X64950D01*

-X65700Y412750D01*

-Y408250D01*

-X64950Y407500D02*X65700Y408250D01*

-X63450Y407500D02*X64950D01*

-X62700Y409000D02*X65700Y412000D01*

-X315799Y340529D02*Y334129D01*

-X312599Y337329D02*X318999D01*

-X314199Y338929D02*X317399D01*

-X314199D02*Y335729D01*

-X317399D01*

-Y338929D02*Y335729D01*

-X15000Y429450D02*Y423050D01*

-X11800Y426250D02*X18200D01*

-X13400Y427850D02*X16600D01*

-X13400D02*Y424650D01*

-X16600D01*

-Y427850D02*Y424650D01*

-X135000Y428500D02*X136500Y425500D01*

-X138000Y428500D01*

-X136500Y425500D02*Y422500D01*

-X139800Y425800D02*X142050D01*

-X139800Y422500D02*X142800D01*

-X139800Y428500D02*Y422500D01*

-Y428500D02*X142800D01*

-X147600D02*X148350Y427750D01*

-X145350Y428500D02*X147600D01*

-X144600Y427750D02*X145350Y428500D01*

-X144600Y427750D02*Y426250D01*

-X145350Y425500D01*

-X147600D01*

-X148350Y424750D01*

-Y423250D01*

-X147600Y422500D02*X148350Y423250D01*

-X145350Y422500D02*X147600D01*

-X144600Y423250D02*X145350Y422500D01*

-X98000Y427300D02*X99200Y428500D01*

-Y422500D01*

-X98000D02*X100250D01*

-X45000Y423250D02*X45750Y422500D01*

-X45000Y427750D02*Y423250D01*

-Y427750D02*X45750Y428500D01*

-X47250D01*

-X48000Y427750D01*

-Y423250D01*

-X47250Y422500D02*X48000Y423250D01*

-X45750Y422500D02*X47250D01*

-X45000Y424000D02*X48000Y427000D01*

-X49800Y422500D02*X50550D01*

-X52350Y427750D02*X53100Y428500D01*

-X55350D01*

-X56100Y427750D01*

-Y426250D01*

-X52350Y422500D02*X56100Y426250D01*

-X52350Y422500D02*X56100D01*

-X57900Y423250D02*X58650Y422500D01*

-X57900Y427750D02*Y423250D01*

-Y427750D02*X58650Y428500D01*

-X60150D01*

-X60900Y427750D01*

-Y423250D01*

-X60150Y422500D02*X60900Y423250D01*

-X58650Y422500D02*X60150D01*

-X57900Y424000D02*X60900Y427000D01*

-X62700Y423250D02*X63450Y422500D01*

-X62700Y427750D02*Y423250D01*

-Y427750D02*X63450Y428500D01*

-X64950D01*

-X65700Y427750D01*

-Y423250D01*

-X64950Y422500D02*X65700Y423250D01*

-X63450Y422500D02*X64950D01*

-X62700Y424000D02*X65700Y427000D01*

-X85799Y179829D02*Y176629D01*

-Y179829D02*X88572Y181429D01*

-X85799Y179829D02*X83026Y181429D01*

-X84199Y179829D02*G75*G03X87399Y179829I1600J0D01*G01*

-G75*G03X84199Y179829I-1600J0D01*G01*

-X85799Y369829D02*Y366629D01*

-Y369829D02*X88572Y371429D01*

-X85799Y369829D02*X83026Y371429D01*

-X84199Y369829D02*G75*G03X87399Y369829I1600J0D01*G01*

-G75*G03X84199Y369829I-1600J0D01*G01*

-X345799Y192329D02*Y189129D01*

-Y192329D02*X348572Y193929D01*

-X345799Y192329D02*X343026Y193929D01*

-X344199Y192329D02*G75*G03X347399Y192329I1600J0D01*G01*

-G75*G03X344199Y192329I-1600J0D01*G01*

-X345799Y357329D02*Y354129D01*

-Y357329D02*X348572Y358929D01*

-X345799Y357329D02*X343026Y358929D01*

-X344199Y357329D02*G75*G03X347399Y357329I1600J0D01*G01*

-G75*G03X344199Y357329I-1600J0D01*G01*

-X15000Y441250D02*Y438050D01*

-Y441250D02*X17773Y442850D01*

-X15000Y441250D02*X12227Y442850D01*

-X13400Y441250D02*G75*G03X16600Y441250I1600J0D01*G01*

-G75*G03X13400Y441250I-1600J0D01*G01*

-X135000Y443500D02*X136500Y440500D01*

-X138000Y443500D01*

-X136500Y440500D02*Y437500D01*

-X139800Y440800D02*X142050D01*

-X139800Y437500D02*X142800D01*

-X139800Y443500D02*Y437500D01*

-Y443500D02*X142800D01*

-X147600D02*X148350Y442750D01*

-X145350Y443500D02*X147600D01*

-X144600Y442750D02*X145350Y443500D01*

-X144600Y442750D02*Y441250D01*

-X145350Y440500D01*

-X147600D01*

-X148350Y439750D01*

-Y438250D01*

-X147600Y437500D02*X148350Y438250D01*

-X145350Y437500D02*X147600D01*

-X144600Y438250D02*X145350Y437500D01*

-X98000Y439750D02*X101000Y443500D01*

-X98000Y439750D02*X101750D01*

-X101000Y443500D02*Y437500D01*

-X45000Y438250D02*X45750Y437500D01*

-X45000Y442750D02*Y438250D01*

-Y442750D02*X45750Y443500D01*

-X47250D01*

-X48000Y442750D01*

-Y438250D01*

-X47250Y437500D02*X48000Y438250D01*

-X45750Y437500D02*X47250D01*

-X45000Y439000D02*X48000Y442000D01*

-X49800Y437500D02*X50550D01*

-X52350Y442300D02*X53550Y443500D01*

-Y437500D01*

-X52350D02*X54600D01*

-X56400Y442750D02*X57150Y443500D01*

-X59400D01*

-X60150Y442750D01*

-Y441250D01*

-X56400Y437500D02*X60150Y441250D01*

-X56400Y437500D02*X60150D01*

-X62700D02*X64950Y440500D01*

-Y442750D02*Y440500D01*

-X64200Y443500D02*X64950Y442750D01*

-X62700Y443500D02*X64200D01*

-X61950Y442750D02*X62700Y443500D01*

-X61950Y442750D02*Y441250D01*

-X62700Y440500D01*

-X64950D01*

-X104199Y186429D02*X107399D01*

-X104199D02*Y183229D01*

-X107399D01*

-Y186429D02*Y183229D01*

-X104199Y176429D02*X107399D01*

-X104199D02*Y173229D01*

-X107399D01*

-Y176429D02*Y173229D01*

-X114199Y186429D02*X117399D01*

-X114199D02*Y183229D01*

-X117399D01*

-Y186429D02*Y183229D01*

-X114199Y176429D02*X117399D01*

-X114199D02*Y173229D01*

-X117399D01*

-Y176429D02*Y173229D01*

-X124199Y186429D02*X127399D01*

-X124199D02*Y183229D01*

-X127399D01*

-Y186429D02*Y183229D01*

-X124199Y176429D02*X127399D01*

-X124199D02*Y173229D01*

-X127399D01*

-Y176429D02*Y173229D01*

-X134199Y186429D02*X137399D01*

-X134199D02*Y183229D01*

-X137399D01*

-Y186429D02*Y183229D01*

-X134199Y176429D02*X137399D01*

-X134199D02*Y173229D01*

-X137399D01*

-Y176429D02*Y173229D01*

-X144199Y186429D02*X147399D01*

-X144199D02*Y183229D01*

-X147399D01*

-Y186429D02*Y183229D01*

-X144199Y176429D02*X147399D01*

-X144199D02*Y173229D01*

-X147399D01*

-Y176429D02*Y173229D01*

-X154199Y186429D02*X157399D01*

-X154199D02*Y183229D01*

-X157399D01*

-Y186429D02*Y183229D01*

-X154199Y176429D02*X157399D01*

-X154199D02*Y173229D01*

-X157399D01*

-Y176429D02*Y173229D01*

-X164199Y186429D02*X167399D01*

-X164199D02*Y183229D01*

-X167399D01*

-Y186429D02*Y183229D01*

-X164199Y176429D02*X167399D01*

-X164199D02*Y173229D01*

-X167399D01*

-Y176429D02*Y173229D01*

-X174199Y186429D02*X177399D01*

-X174199D02*Y183229D01*

-X177399D01*

-Y186429D02*Y183229D01*

-X174199Y176429D02*X177399D01*

-X174199D02*Y173229D01*

-X177399D01*

-Y176429D02*Y173229D01*

-X184199Y186429D02*X187399D01*

-X184199D02*Y183229D01*

-X187399D01*

-Y186429D02*Y183229D01*

-X184199Y176429D02*X187399D01*

-X184199D02*Y173229D01*

-X187399D01*

-Y176429D02*Y173229D01*

-X194199Y186429D02*X197399D01*

-X194199D02*Y183229D01*

-X197399D01*

-Y186429D02*Y183229D01*

-X194199Y176429D02*X197399D01*

-X194199D02*Y173229D01*

-X197399D01*

-Y176429D02*Y173229D01*

-X204199Y186429D02*X207399D01*

-X204199D02*Y183229D01*

-X207399D01*

-Y186429D02*Y183229D01*

-X204199Y176429D02*X207399D01*

-X204199D02*Y173229D01*

-X207399D01*

-Y176429D02*Y173229D01*

-X214199Y186429D02*X217399D01*

-X214199D02*Y183229D01*

-X217399D01*

-Y186429D02*Y183229D01*

-X214199Y176429D02*X217399D01*

-X214199D02*Y173229D01*

-X217399D01*

-Y176429D02*Y173229D01*

-X224199Y186429D02*X227399D01*

-X224199D02*Y183229D01*

-X227399D01*

-Y186429D02*Y183229D01*

-X224199Y176429D02*X227399D01*

-X224199D02*Y173229D01*

-X227399D01*

-Y176429D02*Y173229D01*

-X234199Y186429D02*X237399D01*

-X234199D02*Y183229D01*

-X237399D01*

-Y186429D02*Y183229D01*

-X234199Y176429D02*X237399D01*

-X234199D02*Y173229D01*

-X237399D01*

-Y176429D02*Y173229D01*

-X244199Y186429D02*X247399D01*

-X244199D02*Y183229D01*

-X247399D01*

-Y186429D02*Y183229D01*

-X244199Y176429D02*X247399D01*

-X244199D02*Y173229D01*

-X247399D01*

-Y176429D02*Y173229D01*

-X254199Y186429D02*X257399D01*

-X254199D02*Y183229D01*

-X257399D01*

-Y186429D02*Y183229D01*

-X254199Y176429D02*X257399D01*

-X254199D02*Y173229D01*

-X257399D01*

-Y176429D02*Y173229D01*

-X264199Y186429D02*X267399D01*

-X264199D02*Y183229D01*

-X267399D01*

-Y186429D02*Y183229D01*

-X264199Y176429D02*X267399D01*

-X264199D02*Y173229D01*

-X267399D01*

-Y176429D02*Y173229D01*

-X274199Y186429D02*X277399D01*

-X274199D02*Y183229D01*

-X277399D01*

-Y186429D02*Y183229D01*

-X274199Y176429D02*X277399D01*

-X274199D02*Y173229D01*

-X277399D01*

-Y176429D02*Y173229D01*

-X284199Y186429D02*X287399D01*

-X284199D02*Y183229D01*

-X287399D01*

-Y186429D02*Y183229D01*

-X284199Y176429D02*X287399D01*

-X284199D02*Y173229D01*

-X287399D01*

-Y176429D02*Y173229D01*

-X294199Y186429D02*X297399D01*

-X294199D02*Y183229D01*

-X297399D01*

-Y186429D02*Y183229D01*

-X294199Y176429D02*X297399D01*

-X294199D02*Y173229D01*

-X297399D01*

-Y176429D02*Y173229D01*

-X304199Y186429D02*X307399D01*

-X304199D02*Y183229D01*

-X307399D01*

-Y186429D02*Y183229D01*

-X304199Y176429D02*X307399D01*

-X304199D02*Y173229D01*

-X307399D01*

-Y176429D02*Y173229D01*

-X314199Y186429D02*X317399D01*

-X314199D02*Y183229D01*

-X317399D01*

-Y186429D02*Y183229D01*

-X314199Y176429D02*X317399D01*

-X314199D02*Y173229D01*

-X317399D01*

-Y176429D02*Y173229D01*

-X324199Y186429D02*X327399D01*

-X324199D02*Y183229D01*

-X327399D01*

-Y186429D02*Y183229D01*

-X324199Y176429D02*X327399D01*

-X324199D02*Y173229D01*

-X327399D01*

-Y176429D02*Y173229D01*

-X104199Y376429D02*X107399D01*

-X104199D02*Y373229D01*

-X107399D01*

-Y376429D02*Y373229D01*

-X104199Y366429D02*X107399D01*

-X104199D02*Y363229D01*

-X107399D01*

-Y366429D02*Y363229D01*

-X114199Y376429D02*X117399D01*

-X114199D02*Y373229D01*

-X117399D01*

-Y376429D02*Y373229D01*

-X114199Y366429D02*X117399D01*

-X114199D02*Y363229D01*

-X117399D01*

-Y366429D02*Y363229D01*

-X124199Y376429D02*X127399D01*

-X124199D02*Y373229D01*

-X127399D01*

-Y376429D02*Y373229D01*

-X124199Y366429D02*X127399D01*

-X124199D02*Y363229D01*

-X127399D01*

-Y366429D02*Y363229D01*

-X134199Y376429D02*X137399D01*

-X134199D02*Y373229D01*

-X137399D01*

-Y376429D02*Y373229D01*

-X134199Y366429D02*X137399D01*

-X134199D02*Y363229D01*

-X137399D01*

-Y366429D02*Y363229D01*

-X144199Y376429D02*X147399D01*

-X144199D02*Y373229D01*

-X147399D01*

-Y376429D02*Y373229D01*

-X144199Y366429D02*X147399D01*

-X144199D02*Y363229D01*

-X147399D01*

-Y366429D02*Y363229D01*

-X154199Y376429D02*X157399D01*

-X154199D02*Y373229D01*

-X157399D01*

-Y376429D02*Y373229D01*

-X154199Y366429D02*X157399D01*

-X154199D02*Y363229D01*

-X157399D01*

-Y366429D02*Y363229D01*

-X164199Y376429D02*X167399D01*

-X164199D02*Y373229D01*

-X167399D01*

-Y376429D02*Y373229D01*

-X164199Y366429D02*X167399D01*

-X164199D02*Y363229D01*

-X167399D01*

-Y366429D02*Y363229D01*

-X174199Y376429D02*X177399D01*

-X174199D02*Y373229D01*

-X177399D01*

-Y376429D02*Y373229D01*

-X174199Y366429D02*X177399D01*

-X174199D02*Y363229D01*

-X177399D01*

-Y366429D02*Y363229D01*

-X184199Y376429D02*X187399D01*

-X184199D02*Y373229D01*

-X187399D01*

-Y376429D02*Y373229D01*

-X184199Y366429D02*X187399D01*

-X184199D02*Y363229D01*

-X187399D01*

-Y366429D02*Y363229D01*

-X194199Y376429D02*X197399D01*

-X194199D02*Y373229D01*

-X197399D01*

-Y376429D02*Y373229D01*

-X194199Y366429D02*X197399D01*

-X194199D02*Y363229D01*

-X197399D01*

-Y366429D02*Y363229D01*

-X204199Y376429D02*X207399D01*

-X204199D02*Y373229D01*

-X207399D01*

-Y376429D02*Y373229D01*

-X204199Y366429D02*X207399D01*

-X204199D02*Y363229D01*

-X207399D01*

-Y366429D02*Y363229D01*

-X214199Y376429D02*X217399D01*

-X214199D02*Y373229D01*

-X217399D01*

-Y376429D02*Y373229D01*

-X214199Y366429D02*X217399D01*

-X214199D02*Y363229D01*

-X217399D01*

-Y366429D02*Y363229D01*

-X224199Y376429D02*X227399D01*

-X224199D02*Y373229D01*

-X227399D01*

-Y376429D02*Y373229D01*

-X224199Y366429D02*X227399D01*

-X224199D02*Y363229D01*

-X227399D01*

-Y366429D02*Y363229D01*

-X234199Y376429D02*X237399D01*

-X234199D02*Y373229D01*

-X237399D01*

-Y376429D02*Y373229D01*

-X234199Y366429D02*X237399D01*

-X234199D02*Y363229D01*

-X237399D01*

-Y366429D02*Y363229D01*

-X244199Y376429D02*X247399D01*

-X244199D02*Y373229D01*

-X247399D01*

-Y376429D02*Y373229D01*

-X244199Y366429D02*X247399D01*

-X244199D02*Y363229D01*

-X247399D01*

-Y366429D02*Y363229D01*

-X254199Y376429D02*X257399D01*

-X254199D02*Y373229D01*

-X257399D01*

-Y376429D02*Y373229D01*

-X254199Y366429D02*X257399D01*

-X254199D02*Y363229D01*

-X257399D01*

-Y366429D02*Y363229D01*

-X264199Y376429D02*X267399D01*

-X264199D02*Y373229D01*

-X267399D01*

-Y376429D02*Y373229D01*

-X264199Y366429D02*X267399D01*

-X264199D02*Y363229D01*

-X267399D01*

-Y366429D02*Y363229D01*

-X274199Y376429D02*X277399D01*

-X274199D02*Y373229D01*

-X277399D01*

-Y376429D02*Y373229D01*

-X274199Y366429D02*X277399D01*

-X274199D02*Y363229D01*

-X277399D01*

-Y366429D02*Y363229D01*

-X284199Y376429D02*X287399D01*

-X284199D02*Y373229D01*

-X287399D01*

-Y376429D02*Y373229D01*

-X284199Y366429D02*X287399D01*

-X284199D02*Y363229D01*

-X287399D01*

-Y366429D02*Y363229D01*

-X294199Y376429D02*X297399D01*

-X294199D02*Y373229D01*

-X297399D01*

-Y376429D02*Y373229D01*

-X294199Y366429D02*X297399D01*

-X294199D02*Y363229D01*

-X297399D01*

-Y366429D02*Y363229D01*

-X304199Y376429D02*X307399D01*

-X304199D02*Y373229D01*

-X307399D01*

-Y376429D02*Y373229D01*

-X304199Y366429D02*X307399D01*

-X304199D02*Y363229D01*

-X307399D01*

-Y366429D02*Y363229D01*

-X314199Y376429D02*X317399D01*

-X314199D02*Y373229D01*

-X317399D01*

-Y376429D02*Y373229D01*

-X314199Y366429D02*X317399D01*

-X314199D02*Y363229D01*

-X317399D01*

-Y366429D02*Y363229D01*

-X324199Y376429D02*X327399D01*

-X324199D02*Y373229D01*

-X327399D01*

-Y376429D02*Y373229D01*

-X324199Y366429D02*X327399D01*

-X324199D02*Y363229D01*

-X327399D01*

-Y366429D02*Y363229D01*

-X194199Y198929D02*X197399D01*

-X194199D02*Y195729D01*

-X197399D01*

-Y198929D02*Y195729D01*

-X204199Y198929D02*X207399D01*

-X204199D02*Y195729D01*

-X207399D01*

-Y198929D02*Y195729D01*

-X214199Y198929D02*X217399D01*

-X214199D02*Y195729D01*

-X217399D01*

-Y198929D02*Y195729D01*

-X224199Y198929D02*X227399D01*

-X224199D02*Y195729D01*

-X227399D01*

-Y198929D02*Y195729D01*

-X234199Y198929D02*X237399D01*

-X234199D02*Y195729D01*

-X237399D01*

-Y198929D02*Y195729D01*

-X13400Y457850D02*X16600D01*

-X13400D02*Y454650D01*

-X16600D01*

-Y457850D02*Y454650D01*

-X135000Y458500D02*X136500Y455500D01*

-X138000Y458500D01*

-X136500Y455500D02*Y452500D01*

-X139800Y455800D02*X142050D01*

-X139800Y452500D02*X142800D01*

-X139800Y458500D02*Y452500D01*

-Y458500D02*X142800D01*

-X147600D02*X148350Y457750D01*

-X145350Y458500D02*X147600D01*

-X144600Y457750D02*X145350Y458500D01*

-X144600Y457750D02*Y456250D01*

-X145350Y455500D01*

-X147600D01*

-X148350Y454750D01*

-Y453250D01*

-X147600Y452500D02*X148350Y453250D01*

-X145350Y452500D02*X147600D01*

-X144600Y453250D02*X145350Y452500D01*

-X98750D02*X101000Y455500D01*

-Y457750D02*Y455500D01*

-X100250Y458500D02*X101000Y457750D01*

-X98750Y458500D02*X100250D01*

-X98000Y457750D02*X98750Y458500D01*

-X98000Y457750D02*Y456250D01*

-X98750Y455500D01*

-X101000D01*

-X103550Y452500D02*X106550Y458500D01*

-X102800D02*X106550D01*

-X45000Y453250D02*X45750Y452500D01*

-X45000Y457750D02*Y453250D01*

-Y457750D02*X45750Y458500D01*

-X47250D01*

-X48000Y457750D01*

-Y453250D01*

-X47250Y452500D02*X48000Y453250D01*

-X45750Y452500D02*X47250D01*

-X45000Y454000D02*X48000Y457000D01*

-X49800Y452500D02*X50550D01*

-X52350Y453250D02*X53100Y452500D01*

-X52350Y457750D02*Y453250D01*

-Y457750D02*X53100Y458500D01*

-X54600D01*

-X55350Y457750D01*

-Y453250D01*

-X54600Y452500D02*X55350Y453250D01*

-X53100Y452500D02*X54600D01*

-X52350Y454000D02*X55350Y457000D01*

-X57150Y454750D02*X60150Y458500D01*

-X57150Y454750D02*X60900D01*

-X60150Y458500D02*Y452500D01*

-X64950Y458500D02*X65700Y457750D01*

-X63450Y458500D02*X64950D01*

-X62700Y457750D02*X63450Y458500D01*

-X62700Y457750D02*Y453250D01*

-X63450Y452500D01*

-X64950Y455800D02*X65700Y455050D01*

-X62700Y455800D02*X64950D01*

-X63450Y452500D02*X64950D01*

-X65700Y453250D01*

-Y455050D02*Y453250D01*

-X452700Y384000D02*G75*G03X454300Y384000I800J0D01*G01*

-G75*G03X452700Y384000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y384000I800J0D01*G01*

-G75*G03X462700Y384000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y384000I800J0D01*G01*

-G75*G03X472700Y384000I-800J0D01*G01*

-X452700Y324000D02*G75*G03X454300Y324000I800J0D01*G01*

-G75*G03X452700Y324000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y324000I800J0D01*G01*

-G75*G03X462700Y324000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y324000I800J0D01*G01*

-G75*G03X472700Y324000I-800J0D01*G01*

-X452700Y294000D02*G75*G03X454300Y294000I800J0D01*G01*

-G75*G03X452700Y294000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y294000I800J0D01*G01*

-G75*G03X462700Y294000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y294000I800J0D01*G01*

-G75*G03X472700Y294000I-800J0D01*G01*

-X452700Y264000D02*G75*G03X454300Y264000I800J0D01*G01*

-G75*G03X452700Y264000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y264000I800J0D01*G01*

-G75*G03X462700Y264000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y264000I800J0D01*G01*

-G75*G03X472700Y264000I-800J0D01*G01*

-X452700Y234000D02*G75*G03X454300Y234000I800J0D01*G01*

-G75*G03X452700Y234000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y234000I800J0D01*G01*

-G75*G03X462700Y234000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y234000I800J0D01*G01*

-G75*G03X472700Y234000I-800J0D01*G01*

-X452700Y204000D02*G75*G03X454300Y204000I800J0D01*G01*

-G75*G03X452700Y204000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y204000I800J0D01*G01*

-G75*G03X462700Y204000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y204000I800J0D01*G01*

-G75*G03X472700Y204000I-800J0D01*G01*

-X452700Y174000D02*G75*G03X454300Y174000I800J0D01*G01*

-G75*G03X452700Y174000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y174000I800J0D01*G01*

-G75*G03X462700Y174000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y174000I800J0D01*G01*

-G75*G03X472700Y174000I-800J0D01*G01*

-X452700Y144000D02*G75*G03X454300Y144000I800J0D01*G01*

-G75*G03X452700Y144000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y144000I800J0D01*G01*

-G75*G03X462700Y144000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y144000I800J0D01*G01*

-G75*G03X472700Y144000I-800J0D01*G01*

-X452700Y114000D02*G75*G03X454300Y114000I800J0D01*G01*

-G75*G03X452700Y114000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y114000I800J0D01*G01*

-G75*G03X462700Y114000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y114000I800J0D01*G01*

-G75*G03X472700Y114000I-800J0D01*G01*

-X452700Y84000D02*G75*G03X454300Y84000I800J0D01*G01*

-G75*G03X452700Y84000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y84000I800J0D01*G01*

-G75*G03X462700Y84000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y84000I800J0D01*G01*

-G75*G03X472700Y84000I-800J0D01*G01*

-X452700Y54000D02*G75*G03X454300Y54000I800J0D01*G01*

-G75*G03X452700Y54000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y54000I800J0D01*G01*

-G75*G03X462700Y54000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y54000I800J0D01*G01*

-G75*G03X472700Y54000I-800J0D01*G01*

-X406200Y384000D02*G75*G03X407800Y384000I800J0D01*G01*

-G75*G03X406200Y384000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y384000I800J0D01*G01*

-G75*G03X416200Y384000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y384000I800J0D01*G01*

-G75*G03X426200Y384000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y384000I800J0D01*G01*

-G75*G03X436200Y384000I-800J0D01*G01*

-X406200Y174000D02*G75*G03X407800Y174000I800J0D01*G01*

-G75*G03X406200Y174000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y174000I800J0D01*G01*

-G75*G03X416200Y174000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y174000I800J0D01*G01*

-G75*G03X426200Y174000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y174000I800J0D01*G01*

-G75*G03X436200Y174000I-800J0D01*G01*

-X406200Y204000D02*G75*G03X407800Y204000I800J0D01*G01*

-G75*G03X406200Y204000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y204000I800J0D01*G01*

-G75*G03X416200Y204000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y204000I800J0D01*G01*

-G75*G03X426200Y204000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y204000I800J0D01*G01*

-G75*G03X436200Y204000I-800J0D01*G01*

-X406200Y234000D02*G75*G03X407800Y234000I800J0D01*G01*

-G75*G03X406200Y234000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y234000I800J0D01*G01*

-G75*G03X416200Y234000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y234000I800J0D01*G01*

-G75*G03X426200Y234000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y234000I800J0D01*G01*

-G75*G03X436200Y234000I-800J0D01*G01*

-X406200Y264000D02*G75*G03X407800Y264000I800J0D01*G01*

-G75*G03X406200Y264000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y264000I800J0D01*G01*

-G75*G03X416200Y264000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y264000I800J0D01*G01*

-G75*G03X426200Y264000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y264000I800J0D01*G01*

-G75*G03X436200Y264000I-800J0D01*G01*

-X406200Y294000D02*G75*G03X407800Y294000I800J0D01*G01*

-G75*G03X406200Y294000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y294000I800J0D01*G01*

-G75*G03X416200Y294000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y294000I800J0D01*G01*

-G75*G03X426200Y294000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y294000I800J0D01*G01*

-G75*G03X436200Y294000I-800J0D01*G01*

-X406200Y324000D02*G75*G03X407800Y324000I800J0D01*G01*

-G75*G03X406200Y324000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y324000I800J0D01*G01*

-G75*G03X416200Y324000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y324000I800J0D01*G01*

-G75*G03X426200Y324000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y324000I800J0D01*G01*

-G75*G03X436200Y324000I-800J0D01*G01*

-X452700Y354000D02*G75*G03X454300Y354000I800J0D01*G01*

-G75*G03X452700Y354000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y354000I800J0D01*G01*

-G75*G03X462700Y354000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y354000I800J0D01*G01*

-G75*G03X472700Y354000I-800J0D01*G01*

-X406200D02*G75*G03X407800Y354000I800J0D01*G01*

-G75*G03X406200Y354000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y354000I800J0D01*G01*

-G75*G03X416200Y354000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y354000I800J0D01*G01*

-G75*G03X426200Y354000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y354000I800J0D01*G01*

-G75*G03X436200Y354000I-800J0D01*G01*

-X204641Y47500D02*G75*G03X206241Y47500I800J0D01*G01*

-G75*G03X204641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X206241Y57500I800J0D01*G01*

-G75*G03X204641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X206241Y67500I800J0D01*G01*

-G75*G03X204641Y67500I-800J0D01*G01*

-X234641Y47500D02*G75*G03X236241Y47500I800J0D01*G01*

-G75*G03X234641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X236241Y57500I800J0D01*G01*

-G75*G03X234641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X236241Y67500I800J0D01*G01*

-G75*G03X234641Y67500I-800J0D01*G01*

-X264641Y47500D02*G75*G03X266241Y47500I800J0D01*G01*

-G75*G03X264641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X266241Y57500I800J0D01*G01*

-G75*G03X264641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X266241Y67500I800J0D01*G01*

-G75*G03X264641Y67500I-800J0D01*G01*

-X294641Y47500D02*G75*G03X296241Y47500I800J0D01*G01*

-G75*G03X294641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X296241Y57500I800J0D01*G01*

-G75*G03X294641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X296241Y67500I800J0D01*G01*

-G75*G03X294641Y67500I-800J0D01*G01*

-X174641Y47500D02*G75*G03X176241Y47500I800J0D01*G01*

-G75*G03X174641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X176241Y57500I800J0D01*G01*

-G75*G03X174641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X176241Y67500I800J0D01*G01*

-G75*G03X174641Y67500I-800J0D01*G01*

-X144641Y47500D02*G75*G03X146241Y47500I800J0D01*G01*

-G75*G03X144641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X146241Y57500I800J0D01*G01*

-G75*G03X144641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X146241Y67500I800J0D01*G01*

-G75*G03X144641Y67500I-800J0D01*G01*

-X114641Y47500D02*G75*G03X116241Y47500I800J0D01*G01*

-G75*G03X114641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X116241Y57500I800J0D01*G01*

-G75*G03X114641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X116241Y67500I800J0D01*G01*

-G75*G03X114641Y67500I-800J0D01*G01*

-X84641Y47500D02*G75*G03X86241Y47500I800J0D01*G01*

-G75*G03X84641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X86241Y57500I800J0D01*G01*

-G75*G03X84641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X86241Y67500I800J0D01*G01*

-G75*G03X84641Y67500I-800J0D01*G01*

-X311641Y249000D02*G75*G03X313241Y249000I800J0D01*G01*

-G75*G03X311641Y249000I-800J0D01*G01*

-X321641D02*G75*G03X323241Y249000I800J0D01*G01*

-G75*G03X321641Y249000I-800J0D01*G01*

-X331641D02*G75*G03X333241Y249000I800J0D01*G01*

-G75*G03X331641Y249000I-800J0D01*G01*

-X341641D02*G75*G03X343241Y249000I800J0D01*G01*

-G75*G03X341641Y249000I-800J0D01*G01*

-X84641Y240000D02*G75*G03X86241Y240000I800J0D01*G01*

-G75*G03X84641Y240000I-800J0D01*G01*

-Y230000D02*G75*G03X86241Y230000I800J0D01*G01*

-G75*G03X84641Y230000I-800J0D01*G01*

-Y220000D02*G75*G03X86241Y220000I800J0D01*G01*

-G75*G03X84641Y220000I-800J0D01*G01*

-X14200Y471250D02*G75*G03X15800Y471250I800J0D01*G01*

-G75*G03X14200Y471250I-800J0D01*G01*

-X135000Y473500D02*X136500Y470500D01*

-X138000Y473500D01*

-X136500Y470500D02*Y467500D01*

-X139800Y470800D02*X142050D01*

-X139800Y467500D02*X142800D01*

-X139800Y473500D02*Y467500D01*

-Y473500D02*X142800D01*

-X147600D02*X148350Y472750D01*

-X145350Y473500D02*X147600D01*

-X144600Y472750D02*X145350Y473500D01*

-X144600Y472750D02*Y471250D01*

-X145350Y470500D01*

-X147600D01*

-X148350Y469750D01*

-Y468250D01*

-X147600Y467500D02*X148350Y468250D01*

-X145350Y467500D02*X147600D01*

-X144600Y468250D02*X145350Y467500D01*

-X98750D02*X101000Y470500D01*

-Y472750D02*Y470500D01*

-X100250Y473500D02*X101000Y472750D01*

-X98750Y473500D02*X100250D01*

-X98000Y472750D02*X98750Y473500D01*

-X98000Y472750D02*Y471250D01*

-X98750Y470500D01*

-X101000D01*

-X103550Y467500D02*X105800Y470500D01*

-Y472750D02*Y470500D01*

-X105050Y473500D02*X105800Y472750D01*

-X103550Y473500D02*X105050D01*

-X102800Y472750D02*X103550Y473500D01*

-X102800Y472750D02*Y471250D01*

-X103550Y470500D01*

-X105800D01*

-X45000Y468250D02*X45750Y467500D01*

-X45000Y472750D02*Y468250D01*

-Y472750D02*X45750Y473500D01*

-X47250D01*

-X48000Y472750D01*

-Y468250D01*

-X47250Y467500D02*X48000Y468250D01*

-X45750Y467500D02*X47250D01*

-X45000Y469000D02*X48000Y472000D01*

-X49800Y467500D02*X50550D01*

-X52350Y468250D02*X53100Y467500D01*

-X52350Y472750D02*Y468250D01*

-Y472750D02*X53100Y473500D01*

-X54600D01*

-X55350Y472750D01*

-Y468250D01*

-X54600Y467500D02*X55350Y468250D01*

-X53100Y467500D02*X54600D01*

-X52350Y469000D02*X55350Y472000D01*

-X57150Y469750D02*X60150Y473500D01*

-X57150Y469750D02*X60900D01*

-X60150Y473500D02*Y467500D01*

-X62700Y468250D02*X63450Y467500D01*

-X62700Y472750D02*Y468250D01*

-Y472750D02*X63450Y473500D01*

-X64950D01*

-X65700Y472750D01*

-Y468250D01*

-X64950Y467500D02*X65700Y468250D01*

-X63450Y467500D02*X64950D01*

-X62700Y469000D02*X65700Y472000D01*

-X439741Y124200D02*X442141Y121800D01*

-X439741D02*X442141Y124200D01*

-X13800Y487450D02*X16200Y485050D01*

-X13800D02*X16200Y487450D01*

-X135000Y488500D02*X136500Y485500D01*

-X138000Y488500D01*

-X136500Y485500D02*Y482500D01*

-X139800Y485800D02*X142050D01*

-X139800Y482500D02*X142800D01*

-X139800Y488500D02*Y482500D01*

-Y488500D02*X142800D01*

-X147600D02*X148350Y487750D01*

-X145350Y488500D02*X147600D01*

-X144600Y487750D02*X145350Y488500D01*

-X144600Y487750D02*Y486250D01*

-X145350Y485500D01*

-X147600D01*

-X148350Y484750D01*

-Y483250D01*

-X147600Y482500D02*X148350Y483250D01*

-X145350Y482500D02*X147600D01*

-X144600Y483250D02*X145350Y482500D01*

-X98000Y487300D02*X99200Y488500D01*

-Y482500D01*

-X98000D02*X100250D01*

-X45000Y483250D02*X45750Y482500D01*

-X45000Y487750D02*Y483250D01*

-Y487750D02*X45750Y488500D01*

-X47250D01*

-X48000Y487750D01*

-Y483250D01*

-X47250Y482500D02*X48000Y483250D01*

-X45750Y482500D02*X47250D01*

-X45000Y484000D02*X48000Y487000D01*

-X49800Y482500D02*X50550D01*

-X52350Y483250D02*X53100Y482500D01*

-X52350Y487750D02*Y483250D01*

-Y487750D02*X53100Y488500D01*

-X54600D01*

-X55350Y487750D01*

-Y483250D01*

-X54600Y482500D02*X55350Y483250D01*

-X53100Y482500D02*X54600D01*

-X52350Y484000D02*X55350Y487000D01*

-X57150Y487750D02*X57900Y488500D01*

-X59400D01*

-X60150Y487750D01*

-X59400Y482500D02*X60150Y483250D01*

-X57900Y482500D02*X59400D01*

-X57150Y483250D02*X57900Y482500D01*

-Y485800D02*X59400D01*

-X60150Y487750D02*Y486550D01*

-Y485050D02*Y483250D01*

-Y485050D02*X59400Y485800D01*

-X60150Y486550D02*X59400Y485800D01*

-X61950Y488500D02*X64950D01*

-X61950D02*Y485500D01*

-X62700Y486250D01*

-X64200D01*

-X64950Y485500D01*

-Y483250D01*

-X64200Y482500D02*X64950Y483250D01*

-X62700Y482500D02*X64200D01*

-X61950Y483250D02*X62700Y482500D01*

-X432324Y112600D02*Y109400D01*

-X430724Y111000D02*X433924D01*

-X386441Y164600D02*Y161400D01*

-X384841Y163000D02*X388041D01*

-X387441Y327600D02*Y324400D01*

-X385841Y326000D02*X389041D01*

-X393441Y356600D02*Y353400D01*

-X391841Y355000D02*X395041D01*

-X386720Y283600D02*Y280400D01*

-X385120Y282000D02*X388320D01*

-X400441Y195600D02*Y192400D01*

-X398841Y194000D02*X402041D01*

-X389441Y185600D02*Y182400D01*

-X387841Y184000D02*X391041D01*

-X400441Y190600D02*Y187400D01*

-X398841Y189000D02*X402041D01*

-X393441Y209600D02*Y206400D01*

-X391841Y208000D02*X395041D01*

-X393441Y328600D02*Y325400D01*

-X391841Y327000D02*X395041D01*

-X385941Y356100D02*Y352900D01*

-X384341Y354500D02*X387541D01*

-X375441Y236600D02*Y233400D01*

-X373841Y235000D02*X377041D01*

-X384162Y189600D02*Y186400D01*

-X382562Y188000D02*X385762D01*

-X387070Y236600D02*Y233400D01*

-X385470Y235000D02*X388670D01*

-X384162Y307600D02*Y304400D01*

-X382562Y306000D02*X385762D01*

-X458441Y376600D02*Y373400D01*

-X456841Y375000D02*X460041D01*

-X458441Y346600D02*Y343400D01*

-X456841Y345000D02*X460041D01*

-X458441Y316600D02*Y313400D01*

-X456841Y315000D02*X460041D01*

-X458441Y286600D02*Y283400D01*

-X456841Y285000D02*X460041D01*

-X458441Y255600D02*Y252400D01*

-X456841Y254000D02*X460041D01*

-X458441Y226600D02*Y223400D01*

-X456841Y225000D02*X460041D01*

-X458441Y196600D02*Y193400D01*

-X456841Y195000D02*X460041D01*

-X458441Y165600D02*Y162400D01*

-X456841Y164000D02*X460041D01*

-X446441Y103600D02*Y100400D01*

-X444841Y102000D02*X448041D01*

-X434882Y76600D02*Y73400D01*

-X433282Y75000D02*X436482D01*

-X423441Y76600D02*Y73400D01*

-X421841Y75000D02*X425041D01*

-X372441Y171986D02*Y168786D01*

-X370841Y170386D02*X374041D01*

-X398441Y249600D02*Y246400D01*

-X396841Y248000D02*X400041D01*

-X398441Y254600D02*Y251400D01*

-X396841Y253000D02*X400041D01*

-X384512Y259600D02*Y256400D01*

-X382912Y258000D02*X386112D01*

-X398441Y315600D02*Y312400D01*

-X396841Y314000D02*X400041D01*

-X398441Y310600D02*Y307400D01*

-X396841Y309000D02*X400041D01*

-X372441Y292289D02*Y289089D01*

-X370841Y290689D02*X374041D01*

-X372441Y352789D02*Y349589D01*

-X370841Y351189D02*X374041D01*

-X383662Y380100D02*Y376900D01*

-X382062Y378500D02*X385262D01*

-X397441Y374600D02*Y371400D01*

-X395841Y373000D02*X399041D01*

-X397941Y369041D02*Y365841D01*

-X396341Y367441D02*X399541D01*

-X15000Y502850D02*Y499650D01*

-X13400Y501250D02*X16600D01*

-X135000Y503500D02*X136500Y500500D01*

-X138000Y503500D01*

-X136500Y500500D02*Y497500D01*

-X139800Y500800D02*X142050D01*

-X139800Y497500D02*X142800D01*

-X139800Y503500D02*Y497500D01*

-Y503500D02*X142800D01*

-X147600D02*X148350Y502750D01*

-X145350Y503500D02*X147600D01*

-X144600Y502750D02*X145350Y503500D01*

-X144600Y502750D02*Y501250D01*

-X145350Y500500D01*

-X147600D01*

-X148350Y499750D01*

-Y498250D01*

-X147600Y497500D02*X148350Y498250D01*

-X145350Y497500D02*X147600D01*

-X144600Y498250D02*X145350Y497500D01*

-X98000Y502750D02*X98750Y503500D01*

-X100250D01*

-X101000Y502750D01*

-X100250Y497500D02*X101000Y498250D01*

-X98750Y497500D02*X100250D01*

-X98000Y498250D02*X98750Y497500D01*

-Y500800D02*X100250D01*

-X101000Y502750D02*Y501550D01*

-Y500050D02*Y498250D01*

-Y500050D02*X100250Y500800D01*

-X101000Y501550D02*X100250Y500800D01*

-X103550Y497500D02*X106550Y503500D01*

-X102800D02*X106550D01*

-X45000Y498250D02*X45750Y497500D01*

-X45000Y502750D02*Y498250D01*

-Y502750D02*X45750Y503500D01*

-X47250D01*

-X48000Y502750D01*

-Y498250D01*

-X47250Y497500D02*X48000Y498250D01*

-X45750Y497500D02*X47250D01*

-X45000Y499000D02*X48000Y502000D01*

-X49800Y497500D02*X50550D01*

-X52350Y498250D02*X53100Y497500D01*

-X52350Y502750D02*Y498250D01*

-Y502750D02*X53100Y503500D01*

-X54600D01*

-X55350Y502750D01*

-Y498250D01*

-X54600Y497500D02*X55350Y498250D01*

-X53100Y497500D02*X54600D01*

-X52350Y499000D02*X55350Y502000D01*

-X57150Y502750D02*X57900Y503500D01*

-X60150D01*

-X60900Y502750D01*

-Y501250D01*

-X57150Y497500D02*X60900Y501250D01*

-X57150Y497500D02*X60900D01*

-X62700Y498250D02*X63450Y497500D01*

-X62700Y502750D02*Y498250D01*

-Y502750D02*X63450Y503500D01*

-X64950D01*

-X65700Y502750D01*

-Y498250D01*

-X64950Y497500D02*X65700Y498250D01*

-X63450Y497500D02*X64950D01*

-X62700Y499000D02*X65700Y502000D01*

-X307716Y275075D02*Y273475D01*

-Y275075D02*X309103Y275875D01*

-X307716Y275075D02*X306329Y275875D01*

-X308992Y271971D02*Y270371D01*

-Y271971D02*X310379Y272771D01*

-X308992Y271971D02*X307605Y272771D01*

-X308872Y266522D02*Y264922D01*

-Y266522D02*X310259Y267322D01*

-X308872Y266522D02*X307485Y267322D01*

-X245557Y279508D02*Y277908D01*

-Y279508D02*X246944Y280308D01*

-X245557Y279508D02*X244170Y280308D01*

-X266413Y296594D02*Y294994D01*

-Y296594D02*X267800Y297394D01*

-X266413Y296594D02*X265026Y297394D01*

-X263240Y295329D02*Y293729D01*

-Y295329D02*X264627Y296129D01*

-X263240Y295329D02*X261853Y296129D01*

-X262740Y291829D02*Y290229D01*

-Y291829D02*X264127Y292629D01*

-X262740Y291829D02*X261353Y292629D01*

-X254740Y298329D02*Y296729D01*

-Y298329D02*X256127Y299129D01*

-X254740Y298329D02*X253353Y299129D01*

-X287917Y307829D02*Y306229D01*

-Y307829D02*X289304Y308629D01*

-X287917Y307829D02*X286530Y308629D01*

-X269653Y298631D02*Y297031D01*

-Y298631D02*X271040Y299431D01*

-X269653Y298631D02*X268266Y299431D01*

-X273229Y298582D02*Y296982D01*

-Y298582D02*X274616Y299382D01*

-X273229Y298582D02*X271842Y299382D01*

-X278225Y279602D02*Y278002D01*

-Y279602D02*X279612Y280402D01*

-X278225Y279602D02*X276838Y280402D01*

-X262750Y268772D02*Y267172D01*

-Y268772D02*X264137Y269572D01*

-X262750Y268772D02*X261363Y269572D01*

-X293902Y282263D02*Y280663D01*

-Y282263D02*X295289Y283063D01*

-X293902Y282263D02*X292515Y283063D01*

-X260341Y284249D02*Y282649D01*

-Y284249D02*X261728Y285049D01*

-X260341Y284249D02*X258954Y285049D01*

-X296779Y304963D02*Y303363D01*

-Y304963D02*X298166Y305763D01*

-X296779Y304963D02*X295392Y305763D01*

-X253101Y261836D02*Y260236D01*

-Y261836D02*X254488Y262636D01*

-X253101Y261836D02*X251714Y262636D01*

-X239302Y262235D02*Y260635D01*

-Y262235D02*X240689Y263035D01*

-X239302Y262235D02*X237915Y263035D01*

-X295937Y243628D02*Y242028D01*

-Y243628D02*X297324Y244428D01*

-X295937Y243628D02*X294550Y244428D01*

-X278207Y298612D02*Y297012D01*

-Y298612D02*X279594Y299412D01*

-X278207Y298612D02*X276820Y299412D01*

-X277174Y308219D02*Y306619D01*

-Y308219D02*X278561Y309019D01*

-X277174Y308219D02*X275787Y309019D01*

-X242456Y293543D02*Y291943D01*

-Y293543D02*X243843Y294343D01*

-X242456Y293543D02*X241069Y294343D01*

-X242168Y298800D02*Y297200D01*

-Y298800D02*X243555Y299600D01*

-X242168Y298800D02*X240781Y299600D01*

-X312157Y300156D02*Y298556D01*

-Y300156D02*X313544Y300956D01*

-X312157Y300156D02*X310770Y300956D01*

-X312122Y295038D02*Y293438D01*

-Y295038D02*X313509Y295838D01*

-X312122Y295038D02*X310735Y295838D01*

-X277449Y347500D02*Y345900D01*

-Y347500D02*X278836Y348300D01*

-X277449Y347500D02*X276062Y348300D01*

-X303365Y330000D02*Y328400D01*

-Y330000D02*X304752Y330800D01*

-X303365Y330000D02*X301978Y330800D01*

-X285430Y325000D02*Y323400D01*

-Y325000D02*X286817Y325800D01*

-X285430Y325000D02*X284043Y325800D01*

-X302941Y340007D02*Y338407D01*

-Y340007D02*X304328Y340807D01*

-X302941Y340007D02*X301554Y340807D01*

-X371602Y260228D02*Y258628D01*

-Y260228D02*X372989Y261028D01*

-X371602Y260228D02*X370215Y261028D01*

-X396441Y235000D02*Y233400D01*

-Y235000D02*X397828Y235800D01*

-X396441Y235000D02*X395054Y235800D01*

-X385941Y366000D02*Y364400D01*

-Y366000D02*X387328Y366800D01*

-X385941Y366000D02*X384554Y366800D01*

-X398441Y291000D02*Y289400D01*

-Y291000D02*X399828Y291800D01*

-X398441Y291000D02*X397054Y291800D01*

-X386023Y157813D02*Y156213D01*

-Y157813D02*X387410Y158613D01*

-X386023Y157813D02*X384636Y158613D01*

-X398441Y173000D02*Y171400D01*

-Y173000D02*X399828Y173800D01*

-X398441Y173000D02*X397054Y173800D01*

-X434449Y56500D02*Y54900D01*

-Y56500D02*X435836Y57300D01*

-X434449Y56500D02*X433062Y57300D01*

-X440449Y56500D02*Y54900D01*

-Y56500D02*X441836Y57300D01*

-X440449Y56500D02*X439062Y57300D01*

-X163941Y127500D02*Y125900D01*

-Y127500D02*X165328Y128300D01*

-X163941Y127500D02*X162554Y128300D01*

-X193390Y127500D02*Y125900D01*

-Y127500D02*X194777Y128300D01*

-X193390Y127500D02*X192003Y128300D01*

-X112222Y127340D02*Y125740D01*

-Y127340D02*X113609Y128140D01*

-X112222Y127340D02*X110835Y128140D01*

-X245441Y127500D02*Y125900D01*

-Y127500D02*X246828Y128300D01*

-X245441Y127500D02*X244054Y128300D01*

-X114441Y121500D02*Y119900D01*

-Y121500D02*X115828Y122300D01*

-X114441Y121500D02*X113054Y122300D01*

-X115441Y132500D02*Y130900D01*

-Y132500D02*X116828Y133300D01*

-X115441Y132500D02*X114054Y133300D01*

-X152441Y121500D02*Y119900D01*

-Y121500D02*X153828Y122300D01*

-X152441Y121500D02*X151054Y122300D01*

-X151941Y132000D02*Y130400D01*

-Y132000D02*X153328Y132800D01*

-X151941Y132000D02*X150554Y132800D01*

-X127941Y148000D02*Y146400D01*

-Y148000D02*X129328Y148800D01*

-X127941Y148000D02*X126554Y148800D01*

-X141441Y148000D02*Y146400D01*

-Y148000D02*X142828Y148800D01*

-X141441Y148000D02*X140054Y148800D01*

-X198441Y122500D02*Y120900D01*

-Y122500D02*X199828Y123300D01*

-X198441Y122500D02*X197054Y123300D01*

-X195441Y133000D02*Y131400D01*

-Y133000D02*X196828Y133800D01*

-X195441Y133000D02*X194054Y133800D01*

-X208941Y148000D02*Y146400D01*

-Y148000D02*X210328Y148800D01*

-X208941Y148000D02*X207554Y148800D01*

-X223941Y148000D02*Y146400D01*

-Y148000D02*X225328Y148800D01*

-X223941Y148000D02*X222554Y148800D01*

-X234441Y122500D02*Y120900D01*

-Y122500D02*X235828Y123300D01*

-X234441Y122500D02*X233054Y123300D01*

-X235941Y133000D02*Y131400D01*

-Y133000D02*X237328Y133800D01*

-X235941Y133000D02*X234554Y133800D01*

-X128941Y274500D02*Y272900D01*

-Y274500D02*X130328Y275300D01*

-X128941Y274500D02*X127554Y275300D01*

-X128941Y268500D02*Y266900D01*

-Y268500D02*X130328Y269300D01*

-X128941Y268500D02*X127554Y269300D01*

-X128941Y262500D02*Y260900D01*

-Y262500D02*X130328Y263300D01*

-X128941Y262500D02*X127554Y263300D01*

-X128941Y255000D02*Y253400D01*

-Y255000D02*X130328Y255800D01*

-X128941Y255000D02*X127554Y255800D01*

-X128941Y248500D02*Y246900D01*

-Y248500D02*X130328Y249300D01*

-X128941Y248500D02*X127554Y249300D01*

-X128941Y242500D02*Y240900D01*

-Y242500D02*X130328Y243300D01*

-X128941Y242500D02*X127554Y243300D01*

-X162441Y242500D02*Y240900D01*

-Y242500D02*X163828Y243300D01*

-X162441Y242500D02*X161054Y243300D01*

-X162441Y248500D02*Y246900D01*

-Y248500D02*X163828Y249300D01*

-X162441Y248500D02*X161054Y249300D01*

-X161941Y255000D02*Y253400D01*

-Y255000D02*X163328Y255800D01*

-X161941Y255000D02*X160554Y255800D01*

-X162441Y262500D02*Y260900D01*

-Y262500D02*X163828Y263300D01*

-X162441Y262500D02*X161054Y263300D01*

-X162941Y268500D02*Y266900D01*

-Y268500D02*X164328Y269300D01*

-X162941Y268500D02*X161554Y269300D01*

-X162941Y274500D02*Y272900D01*

-Y274500D02*X164328Y275300D01*

-X162941Y274500D02*X161554Y275300D01*

-X165941Y231000D02*Y229400D01*

-Y231000D02*X167328Y231800D01*

-X165941Y231000D02*X164554Y231800D01*

-X165941Y226500D02*Y224900D01*

-Y226500D02*X167328Y227300D01*

-X165941Y226500D02*X164554Y227300D01*

-X165941Y220500D02*Y218900D01*

-Y220500D02*X167328Y221300D01*

-X165941Y220500D02*X164554Y221300D01*

-X169441Y214000D02*Y212400D01*

-Y214000D02*X170828Y214800D01*

-X169441Y214000D02*X168054Y214800D01*

-X169441Y208500D02*Y206900D01*

-Y208500D02*X170828Y209300D01*

-X169441Y208500D02*X168054Y209300D01*

-X169441Y201500D02*Y199900D01*

-Y201500D02*X170828Y202300D01*

-X169441Y201500D02*X168054Y202300D01*

-X141307Y300883D02*Y299283D01*

-Y300883D02*X142694Y301683D01*

-X141307Y300883D02*X139920Y301683D01*

-X158441Y323829D02*Y322229D01*

-Y323829D02*X159828Y324629D01*

-X158441Y323829D02*X157054Y324629D01*

-X158441Y328829D02*Y327229D01*

-Y328829D02*X159828Y329629D01*

-X158441Y328829D02*X157054Y329629D01*

-X158441Y326500D02*Y324900D01*

-Y326500D02*X159828Y327300D01*

-X158441Y326500D02*X157054Y327300D01*

-X197441Y314500D02*Y312900D01*

-Y314500D02*X198828Y315300D01*

-X197441Y314500D02*X196054Y315300D01*

-X195441Y311500D02*Y309900D01*

-Y311500D02*X196828Y312300D01*

-X195441Y311500D02*X194054Y312300D01*

-X197441Y308500D02*Y306900D01*

-Y308500D02*X198828Y309300D01*

-X197441Y308500D02*X196054Y309300D01*

-X124831Y302385D02*Y300785D01*

-Y302385D02*X126218Y303185D01*

-X124831Y302385D02*X123444Y303185D01*

-X135441Y338500D02*Y336900D01*

-Y338500D02*X136828Y339300D01*

-X135441Y338500D02*X134054Y339300D01*

-X135441Y335000D02*Y333400D01*

-Y335000D02*X136828Y335800D01*

-X135441Y335000D02*X134054Y335800D01*

-X139941Y338000D02*Y336400D01*

-Y338000D02*X141328Y338800D01*

-X139941Y338000D02*X138554Y338800D01*

-X153941Y338000D02*Y336400D01*

-Y338000D02*X155328Y338800D01*

-X153941Y338000D02*X152554Y338800D01*

-X111941Y334000D02*Y332400D01*

-Y334000D02*X113328Y334800D01*

-X111941Y334000D02*X110554Y334800D01*

-X117941Y334000D02*Y332400D01*

-Y334000D02*X119328Y334800D01*

-X117941Y334000D02*X116554Y334800D01*

-X126441Y334000D02*Y332400D01*

-Y334000D02*X127828Y334800D01*

-X126441Y334000D02*X125054Y334800D01*

-X126441Y340500D02*Y338900D01*

-Y340500D02*X127828Y341300D01*

-X126441Y340500D02*X125054Y341300D01*

-X111941Y341000D02*Y339400D01*

-Y341000D02*X113328Y341800D01*

-X111941Y341000D02*X110554Y341800D01*

-X111941Y357500D02*Y355900D01*

-Y357500D02*X113328Y358300D01*

-X111941Y357500D02*X110554Y358300D01*

-X142441Y357500D02*Y355900D01*

-Y357500D02*X143828Y358300D01*

-X142441Y357500D02*X141054Y358300D01*

-X142441Y349500D02*Y347900D01*

-Y349500D02*X143828Y350300D01*

-X142441Y349500D02*X141054Y350300D01*

-X154941Y345500D02*Y343900D01*

-Y345500D02*X156328Y346300D01*

-X154941Y345500D02*X153554Y346300D01*

-X149441Y349500D02*Y347900D01*

-Y349500D02*X150828Y350300D01*

-X149441Y349500D02*X148054Y350300D01*

-X121941Y357500D02*Y355900D01*

-Y357500D02*X123328Y358300D01*

-X121941Y357500D02*X120554Y358300D01*

-X130941Y357500D02*Y355900D01*

-Y357500D02*X132328Y358300D01*

-X130941Y357500D02*X129554Y358300D01*

-X309441Y141568D02*Y139968D01*

-Y141568D02*X310828Y142368D01*

-X309441Y141568D02*X308054Y142368D01*

-X309441Y136450D02*Y134850D01*

-Y136450D02*X310828Y137250D01*

-X309441Y136450D02*X308054Y137250D01*

-X310941Y115940D02*Y114340D01*

-Y115940D02*X312328Y116740D01*

-X310941Y115940D02*X309554Y116740D01*

-X305696Y107500D02*Y105900D01*

-Y107500D02*X307083Y108300D01*

-X305696Y107500D02*X304309Y108300D01*

-X263441Y320000D02*Y318400D01*

-Y320000D02*X264828Y320800D01*

-X263441Y320000D02*X262054Y320800D01*

-X304584Y207483D02*Y205883D01*

-Y207483D02*X305971Y208283D01*

-X304584Y207483D02*X303197Y208283D01*

-X304706Y210583D02*Y208983D01*

-Y210583D02*X306093Y211383D01*

-X304706Y210583D02*X303319Y211383D01*

-X305280Y204383D02*Y202783D01*

-Y204383D02*X306667Y205183D01*

-X305280Y204383D02*X303893Y205183D01*

-X246941Y238000D02*Y236400D01*

-Y238000D02*X248328Y238800D01*

-X246941Y238000D02*X245554Y238800D01*

-X242441Y229500D02*Y227900D01*

-Y229500D02*X243828Y230300D01*

-X242441Y229500D02*X241054Y230300D01*

-X246441Y229500D02*Y227900D01*

-Y229500D02*X247828Y230300D01*

-X246441Y229500D02*X245054Y230300D01*

-X250941Y229500D02*Y227900D01*

-Y229500D02*X252328Y230300D01*

-X250941Y229500D02*X249554Y230300D01*

-X221884Y254000D02*Y252400D01*

-Y254000D02*X223271Y254800D01*

-X221884Y254000D02*X220497Y254800D01*

-X224441Y252000D02*Y250400D01*

-Y252000D02*X225828Y252800D01*

-X224441Y252000D02*X223054Y252800D01*

-X356441Y233000D02*Y231400D01*

-Y233000D02*X357828Y233800D01*

-X356441Y233000D02*X355054Y233800D01*

-X338441Y224192D02*Y222592D01*

-Y224192D02*X339828Y224992D01*

-X338441Y224192D02*X337054Y224992D01*

-X338441Y230124D02*Y228524D01*

-Y230124D02*X339828Y230924D01*

-X338441Y230124D02*X337054Y230924D01*

-X225441Y249000D02*Y247400D01*

-Y249000D02*X226828Y249800D01*

-X225441Y249000D02*X224054Y249800D01*

-X219441Y272500D02*Y270900D01*

-Y272500D02*X220828Y273300D01*

-X219441Y272500D02*X218054Y273300D01*

-X220729Y265580D02*Y263980D01*

-Y265580D02*X222116Y266380D01*

-X220729Y265580D02*X219342Y266380D01*

-X217441Y279000D02*Y277400D01*

-Y279000D02*X218828Y279800D01*

-X217441Y279000D02*X216054Y279800D01*

-X260568Y316997D02*Y315397D01*

-Y316997D02*X261955Y317797D01*

-X260568Y316997D02*X259181Y317797D01*

-X240391Y278564D02*Y276964D01*

-Y278564D02*X241778Y279364D01*

-X240391Y278564D02*X239004Y279364D01*

-X230441Y293000D02*Y291400D01*

-Y293000D02*X231828Y293800D01*

-X230441Y293000D02*X229054Y293800D01*

-X264034Y282931D02*Y281331D01*

-Y282931D02*X265421Y283731D01*

-X264034Y282931D02*X262647Y283731D01*

-X279441Y285000D02*Y283400D01*

-Y285000D02*X280828Y285800D01*

-X279441Y285000D02*X278054Y285800D01*

-X246731Y303031D02*Y301431D01*

-Y303031D02*X248118Y303831D01*

-X246731Y303031D02*X245344Y303831D01*

-X270441Y336000D02*Y334400D01*

-Y336000D02*X271828Y336800D01*

-X270441Y336000D02*X269054Y336800D01*

-X270441Y342500D02*Y340900D01*

-Y342500D02*X271828Y343300D01*

-X270441Y342500D02*X269054Y343300D01*

-X270441Y349500D02*Y347900D01*

-Y349500D02*X271828Y350300D01*

-X270441Y349500D02*X269054Y350300D01*

-X392188Y239000D02*Y237400D01*

-Y239000D02*X393575Y239800D01*

-X392188Y239000D02*X390801Y239800D01*

-X388207Y247280D02*Y245680D01*

-Y247280D02*X389594Y248080D01*

-X388207Y247280D02*X386820Y248080D01*

-X191363Y344449D02*Y342849D01*

-Y344449D02*X192750Y345249D01*

-X191363Y344449D02*X189976Y345249D01*

-X178887Y342818D02*Y341218D01*

-Y342818D02*X180274Y343618D01*

-X178887Y342818D02*X177500Y343618D01*

-X168732Y350833D02*Y349233D01*

-Y350833D02*X170119Y351633D01*

-X168732Y350833D02*X167345Y351633D01*

-X296727Y256227D02*Y254627D01*

-Y256227D02*X298114Y257027D01*

-X296727Y256227D02*X295340Y257027D01*

-X339837Y341827D02*Y340227D01*

-Y341827D02*X341224Y342627D01*

-X339837Y341827D02*X338450Y342627D01*

-X353390Y339521D02*Y337921D01*

-Y339521D02*X354777Y340321D01*

-X353390Y339521D02*X352003Y340321D01*

-X337441Y163000D02*Y161400D01*

-Y163000D02*X338828Y163800D01*

-X337441Y163000D02*X336054Y163800D01*

-X377347Y162178D02*Y160578D01*

-Y162178D02*X378734Y162978D01*

-X377347Y162178D02*X375960Y162978D01*

-X230441Y247000D02*Y245400D01*

-Y247000D02*X231828Y247800D01*

-X230441Y247000D02*X229054Y247800D01*

-X358941Y208500D02*Y206900D01*

-Y208500D02*X360328Y209300D01*

-X358941Y208500D02*X357554Y209300D01*

-X220441Y259500D02*Y257900D01*

-Y259500D02*X221828Y260300D01*

-X220441Y259500D02*X219054Y260300D01*

-X218441Y261500D02*Y259900D01*

-Y261500D02*X219828Y262300D01*

-X218441Y261500D02*X217054Y262300D01*

-X198441Y262500D02*Y260900D01*

-Y262500D02*X199828Y263300D01*

-X198441Y262500D02*X197054Y263300D01*

-X198441Y269500D02*Y267900D01*

-Y269500D02*X199828Y270300D01*

-X198441Y269500D02*X197054Y270300D01*

-X205441Y277000D02*Y275400D01*

-Y277000D02*X206828Y277800D01*

-X205441Y277000D02*X204054Y277800D01*

-X185441Y228000D02*Y226400D01*

-Y228000D02*X186828Y228800D01*

-X185441Y228000D02*X184054Y228800D01*

-X177441Y228000D02*Y226400D01*

-Y228000D02*X178828Y228800D01*

-X177441Y228000D02*X176054Y228800D01*

-X177441Y217500D02*Y215900D01*

-Y217500D02*X178828Y218300D01*

-X177441Y217500D02*X176054Y218300D01*

-X185441Y217500D02*Y215900D01*

-Y217500D02*X186828Y218300D01*

-X185441Y217500D02*X184054Y218300D01*

-X193941Y212500D02*Y210900D01*

-Y212500D02*X195328Y213300D01*

-X193941Y212500D02*X192554Y213300D01*

-X202441Y212500D02*Y210900D01*

-Y212500D02*X203828Y213300D01*

-X202441Y212500D02*X201054Y213300D01*

-X210441Y212500D02*Y210900D01*

-Y212500D02*X211828Y213300D01*

-X210441Y212500D02*X209054Y213300D01*

-X220441Y215000D02*Y213400D01*

-Y215000D02*X221828Y215800D01*

-X220441Y215000D02*X219054Y215800D01*

-X224941Y220500D02*Y218900D01*

-Y220500D02*X226328Y221300D01*

-X224941Y220500D02*X223554Y221300D01*

-X225441Y226500D02*Y224900D01*

-Y226500D02*X226828Y227300D01*

-X225441Y226500D02*X224054Y227300D01*

-X224941Y235500D02*Y233900D01*

-Y235500D02*X226328Y236300D01*

-X224941Y235500D02*X223554Y236300D01*

-X224441Y244000D02*Y242400D01*

-Y244000D02*X225828Y244800D01*

-X224441Y244000D02*X223054Y244800D01*

-X212941Y238000D02*Y236400D01*

-Y238000D02*X214328Y238800D01*

-X212941Y238000D02*X211554Y238800D01*

-X203941Y237500D02*Y235900D01*

-Y237500D02*X205328Y238300D01*

-X203941Y237500D02*X202554Y238300D01*

-X193941Y237000D02*Y235400D01*

-Y237000D02*X195328Y237800D01*

-X193941Y237000D02*X192554Y237800D01*

-X236441Y235500D02*Y233900D01*

-Y235500D02*X237828Y236300D01*

-X236441Y235500D02*X235054Y236300D01*

-X181941Y258500D02*Y256900D01*

-Y258500D02*X183328Y259300D01*

-X181941Y258500D02*X180554Y259300D01*

-X104441Y204500D02*Y202900D01*

-Y204500D02*X105828Y205300D01*

-X104441Y204500D02*X103054Y205300D01*

-X100941Y204500D02*Y202900D01*

-Y204500D02*X102328Y205300D01*

-X100941Y204500D02*X99554Y205300D01*

-X260941Y191500D02*Y189900D01*

-Y191500D02*X262328Y192300D01*

-X260941Y191500D02*X259554Y192300D01*

-X269441Y198500D02*Y196900D01*

-Y198500D02*X270828Y199300D01*

-X269441Y198500D02*X268054Y199300D01*

-X269941Y231500D02*Y229900D01*

-Y231500D02*X271328Y232300D01*

-X269941Y231500D02*X268554Y232300D01*

-X251941Y210500D02*Y208900D01*

-Y210500D02*X253328Y211300D01*

-X251941Y210500D02*X250554Y211300D01*

-X243941Y202000D02*Y200400D01*

-Y202000D02*X245328Y202800D01*

-X243941Y202000D02*X242554Y202800D01*

-X245863Y191524D02*Y189924D01*

-Y191524D02*X247250Y192324D01*

-X245863Y191524D02*X244476Y192324D01*

-X261502Y307367D02*Y305767D01*

-Y307367D02*X262889Y308167D01*

-X261502Y307367D02*X260115Y308167D01*

-X268941Y314000D02*Y312400D01*

-Y314000D02*X270328Y314800D01*

-X268941Y314000D02*X267554Y314800D01*

-X249101Y328793D02*Y327193D01*

-Y328793D02*X250488Y329593D01*

-X249101Y328793D02*X247714Y329593D01*

-X229818Y354988D02*Y353388D01*

-Y354988D02*X231205Y355788D01*

-X229818Y354988D02*X228431Y355788D01*

-X270441Y357000D02*Y355400D01*

-Y357000D02*X271828Y357800D01*

-X270441Y357000D02*X269054Y357800D01*

-X138925Y206113D02*Y204513D01*

-Y206113D02*X140312Y206913D01*

-X138925Y206113D02*X137538Y206913D01*

-X138872Y202030D02*Y200430D01*

-Y202030D02*X140259Y202830D01*

-X138872Y202030D02*X137485Y202830D01*

-X138925Y197841D02*Y196241D01*

-Y197841D02*X140312Y198641D01*

-X138925Y197841D02*X137538Y198641D01*

-X138925Y192698D02*Y191098D01*

-Y192698D02*X140312Y193498D01*

-X138925Y192698D02*X137538Y193498D01*

-X161941Y199000D02*Y197400D01*

-Y199000D02*X163328Y199800D01*

-X161941Y199000D02*X160554Y199800D01*

-X161941Y193000D02*Y191400D01*

-Y193000D02*X163328Y193800D01*

-X161941Y193000D02*X160554Y193800D01*

-X166941Y193000D02*Y191400D01*

-Y193000D02*X168328Y193800D01*

-X166941Y193000D02*X165554Y193800D01*

-X166941Y197500D02*Y195900D01*

-Y197500D02*X168328Y198300D01*

-X166941Y197500D02*X165554Y198300D01*

-X354941Y93499D02*Y91899D01*

-Y93499D02*X356328Y94299D01*

-X354941Y93499D02*X353554Y94299D01*

-X354941Y97999D02*Y96399D01*

-Y97999D02*X356328Y98799D01*

-X354941Y97999D02*X353554Y98799D01*

-X354941Y103999D02*Y102399D01*

-Y103999D02*X356328Y104799D01*

-X354941Y103999D02*X353554Y104799D01*

-X354941Y109999D02*Y108399D01*

-Y109999D02*X356328Y110799D01*

-X354941Y109999D02*X353554Y110799D01*

-X354941Y115999D02*Y114399D01*

-Y115999D02*X356328Y116799D01*

-X354941Y115999D02*X353554Y116799D01*

-X354941Y121999D02*Y120399D01*

-Y121999D02*X356328Y122799D01*

-X354941Y121999D02*X353554Y122799D01*

-X354941Y127999D02*Y126399D01*

-Y127999D02*X356328Y128799D01*

-X354941Y127999D02*X353554Y128799D01*

-X387941Y127999D02*Y126399D01*

-Y127999D02*X389328Y128799D01*

-X387941Y127999D02*X386554Y128799D01*

-X387941Y121999D02*Y120399D01*

-Y121999D02*X389328Y122799D01*

-X387941Y121999D02*X386554Y122799D01*

-X387941Y115999D02*Y114399D01*

-Y115999D02*X389328Y116799D01*

-X387941Y115999D02*X386554Y116799D01*

-X387941Y109999D02*Y108399D01*

-Y109999D02*X389328Y110799D01*

-X387941Y109999D02*X386554Y110799D01*

-X387941Y97999D02*Y96399D01*

-Y97999D02*X389328Y98799D01*

-X387941Y97999D02*X386554Y98799D01*

-X387941Y93499D02*Y91899D01*

-Y93499D02*X389328Y94299D01*

-X387941Y93499D02*X386554Y94299D01*

-X387941Y103999D02*Y102399D01*

-Y103999D02*X389328Y104799D01*

-X387941Y103999D02*X386554Y104799D01*

-X391441Y84499D02*Y82899D01*

-Y84499D02*X392828Y85299D01*

-X391441Y84499D02*X390054Y85299D01*

-X391441Y79999D02*Y78399D01*

-Y79999D02*X392828Y80799D01*

-X391441Y79999D02*X390054Y80799D01*

-X391941Y74499D02*Y72899D01*

-Y74499D02*X393328Y75299D01*

-X391941Y74499D02*X390554Y75299D01*

-X395441Y66999D02*Y65399D01*

-Y66999D02*X396828Y67799D01*

-X395441Y66999D02*X394054Y67799D01*

-X394441Y59999D02*Y58399D01*

-Y59999D02*X395828Y60799D01*

-X394441Y59999D02*X393054Y60799D01*

-X392941Y53499D02*Y51899D01*

-Y53499D02*X394328Y54299D01*

-X392941Y53499D02*X391554Y54299D01*

-X368941Y48500D02*Y46900D01*

-Y48500D02*X370328Y49300D01*

-X368941Y48500D02*X367554Y49300D01*

-X368941Y43500D02*Y41900D01*

-Y43500D02*X370328Y44300D01*

-X368941Y43500D02*X367554Y44300D01*

-X374941Y43500D02*Y41900D01*

-Y43500D02*X376328Y44300D01*

-X374941Y43500D02*X373554Y44300D01*

-X374941Y47000D02*Y45400D01*

-Y47000D02*X376328Y47800D01*

-X374941Y47000D02*X373554Y47800D01*

-X106441Y148500D02*Y146900D01*

-Y148500D02*X107828Y149300D01*

-X106441Y148500D02*X105054Y149300D01*

-X101941Y104500D02*Y102900D01*

-Y104500D02*X103328Y105300D01*

-X101941Y104500D02*X100554Y105300D01*

-X149941Y149000D02*Y147400D01*

-Y149000D02*X151328Y149800D01*

-X149941Y149000D02*X148554Y149800D01*

-X166441Y104000D02*Y102400D01*

-Y104000D02*X167828Y104800D01*

-X166441Y104000D02*X165054Y104800D01*

-X183941Y104000D02*Y102400D01*

-Y104000D02*X185328Y104800D01*

-X183941Y104000D02*X182554Y104800D01*

-X253441Y102500D02*Y100900D01*

-Y102500D02*X254828Y103300D01*

-X253441Y102500D02*X252054Y103300D01*

-X231441Y148000D02*Y146400D01*

-Y148000D02*X232828Y148800D01*

-X231441Y148000D02*X230054Y148800D01*

-X15000Y516250D02*Y514650D01*

-Y516250D02*X16387Y517050D01*

-X15000Y516250D02*X13613Y517050D01*

-X135000Y518500D02*X136500Y515500D01*

-X138000Y518500D01*

-X136500Y515500D02*Y512500D01*

-X139800Y515800D02*X142050D01*

-X139800Y512500D02*X142800D01*

-X139800Y518500D02*Y512500D01*

-Y518500D02*X142800D01*

-X147600D02*X148350Y517750D01*

-X145350Y518500D02*X147600D01*

-X144600Y517750D02*X145350Y518500D01*

-X144600Y517750D02*Y516250D01*

-X145350Y515500D01*

-X147600D01*

-X148350Y514750D01*

-Y513250D01*

-X147600Y512500D02*X148350Y513250D01*

-X145350Y512500D02*X147600D01*

-X144600Y513250D02*X145350Y512500D01*

-X98000Y517750D02*X98750Y518500D01*

-X101000D01*

-X101750Y517750D01*

-Y516250D01*

-X98000Y512500D02*X101750Y516250D01*

-X98000Y512500D02*X101750D01*

-X103550Y517300D02*X104750Y518500D01*

-Y512500D01*

-X103550D02*X105800D01*

-X107600Y517300D02*X108800Y518500D01*

-Y512500D01*

-X107600D02*X109850D01*

-X45000Y513250D02*X45750Y512500D01*

-X45000Y517750D02*Y513250D01*

-Y517750D02*X45750Y518500D01*

-X47250D01*

-X48000Y517750D01*

-Y513250D01*

-X47250Y512500D02*X48000Y513250D01*

-X45750Y512500D02*X47250D01*

-X45000Y514000D02*X48000Y517000D01*

-X49800Y512500D02*X50550D01*

-X52350Y513250D02*X53100Y512500D01*

-X52350Y517750D02*Y513250D01*

-Y517750D02*X53100Y518500D01*

-X54600D01*

-X55350Y517750D01*

-Y513250D01*

-X54600Y512500D02*X55350Y513250D01*

-X53100Y512500D02*X54600D01*

-X52350Y514000D02*X55350Y517000D01*

-X57150Y517300D02*X58350Y518500D01*

-Y512500D01*

-X57150D02*X59400D01*

-X61200Y513250D02*X61950Y512500D01*

-X61200Y517750D02*Y513250D01*

-Y517750D02*X61950Y518500D01*

-X63450D01*

-X64200Y517750D01*

-Y513250D01*

-X63450Y512500D02*X64200Y513250D01*

-X61950Y512500D02*X63450D01*

-X61200Y514000D02*X64200Y517000D01*

-X3000Y533500D02*X3750Y532750D01*

-X750Y533500D02*X3000D01*

-X0Y532750D02*X750Y533500D01*

-X0Y532750D02*Y531250D01*

-X750Y530500D01*

-X3000D01*

-X3750Y529750D01*

-Y528250D01*

-X3000Y527500D02*X3750Y528250D01*

-X750Y527500D02*X3000D01*

-X0Y528250D02*X750Y527500D01*

-X5550Y530500D02*Y528250D01*

-X6300Y527500D01*

-X8550Y530500D02*Y526000D01*

-X7800Y525250D02*X8550Y526000D01*

-X6300Y525250D02*X7800D01*

-X5550Y526000D02*X6300Y525250D01*

-Y527500D02*X7800D01*

-X8550Y528250D01*

-X11100Y529750D02*Y527500D01*

-Y529750D02*X11850Y530500D01*

-X12600D01*

-X13350Y529750D01*

-Y527500D01*

-Y529750D02*X14100Y530500D01*

-X14850D01*

-X15600Y529750D01*

-Y527500D01*

-X10350Y530500D02*X11100Y529750D01*

-X17400Y533500D02*Y527500D01*

-Y528250D02*X18150Y527500D01*

-X19650D01*

-X20400Y528250D01*

-Y529750D02*Y528250D01*

-X19650Y530500D02*X20400Y529750D01*

-X18150Y530500D02*X19650D01*

-X17400Y529750D02*X18150Y530500D01*

-X22200Y529750D02*Y528250D01*

-Y529750D02*X22950Y530500D01*

-X24450D01*

-X25200Y529750D01*

-Y528250D01*

-X24450Y527500D02*X25200Y528250D01*

-X22950Y527500D02*X24450D01*

-X22200Y528250D02*X22950Y527500D01*

-X27000Y533500D02*Y528250D01*

-X27750Y527500D01*

-X0Y524250D02*X29250D01*

-X41750Y533500D02*Y527500D01*

-X43700Y533500D02*X44750Y532450D01*

-Y528550D01*

-X43700Y527500D02*X44750Y528550D01*

-X41000Y527500D02*X43700D01*

-X41000Y533500D02*X43700D01*

-G54D339*X46550Y532000D02*Y531850D01*

-G54D338*Y529750D02*Y527500D01*

-X50300Y530500D02*X51050Y529750D01*

-X48800Y530500D02*X50300D01*

-X48050Y529750D02*X48800Y530500D01*

-X48050Y529750D02*Y528250D01*

-X48800Y527500D01*

-X51050Y530500D02*Y528250D01*

-X51800Y527500D01*

-X48800D02*X50300D01*

-X51050Y528250D01*

-X54350Y529750D02*Y527500D01*

-Y529750D02*X55100Y530500D01*

-X55850D01*

-X56600Y529750D01*

-Y527500D01*

-Y529750D02*X57350Y530500D01*

-X58100D01*

-X58850Y529750D01*

-Y527500D01*

-X53600Y530500D02*X54350Y529750D01*

-X60650Y527500D02*X61400D01*

-X65900Y528250D02*X66650Y527500D01*

-X65900Y532750D02*X66650Y533500D01*

-X65900Y532750D02*Y528250D01*

-X68450Y533500D02*X69950D01*

-X69200D02*Y527500D01*

-X68450D02*X69950D01*

-X72500Y529750D02*Y527500D01*

-Y529750D02*X73250Y530500D01*

-X74000D01*

-X74750Y529750D01*

-Y527500D01*

-X71750Y530500D02*X72500Y529750D01*

-X77300Y530500D02*X79550D01*

-X76550Y529750D02*X77300Y530500D01*

-X76550Y529750D02*Y528250D01*

-X77300Y527500D01*

-X79550D01*

-X81350Y533500D02*Y527500D01*

-Y529750D02*X82100Y530500D01*

-X83600D01*

-X84350Y529750D01*

-Y527500D01*

-X86150Y533500D02*X86900Y532750D01*

-Y528250D01*

-X86150Y527500D02*X86900Y528250D01*

-X41000Y524250D02*X88700D01*

-X96050Y527500D02*X98000D01*

-X95000Y528550D02*X96050Y527500D01*

-X95000Y532450D02*Y528550D01*

-Y532450D02*X96050Y533500D01*

-X98000D01*

-X99800Y529750D02*Y528250D01*

-Y529750D02*X100550Y530500D01*

-X102050D01*

-X102800Y529750D01*

-Y528250D01*

-X102050Y527500D02*X102800Y528250D01*

-X100550Y527500D02*X102050D01*

-X99800Y528250D02*X100550Y527500D01*

-X104600Y530500D02*Y528250D01*

-X105350Y527500D01*

-X106850D01*

-X107600Y528250D01*

-Y530500D02*Y528250D01*

-X110150Y529750D02*Y527500D01*

-Y529750D02*X110900Y530500D01*

-X111650D01*

-X112400Y529750D01*

-Y527500D01*

-X109400Y530500D02*X110150Y529750D01*

-X114950Y533500D02*Y528250D01*

-X115700Y527500D01*

-X114200Y531250D02*X115700D01*

-X95000Y524250D02*X117200D01*

-X130750Y533500D02*Y527500D01*

-X130000Y533500D02*X133000D01*

-X133750Y532750D01*

-Y531250D01*

-X133000Y530500D02*X133750Y531250D01*

-X130750Y530500D02*X133000D01*

-X135550Y533500D02*Y528250D01*

-X136300Y527500D01*

-X140050Y530500D02*X140800Y529750D01*

-X138550Y530500D02*X140050D01*

-X137800Y529750D02*X138550Y530500D01*

-X137800Y529750D02*Y528250D01*

-X138550Y527500D01*

-X140800Y530500D02*Y528250D01*

-X141550Y527500D01*

-X138550D02*X140050D01*

-X140800Y528250D01*

-X144100Y533500D02*Y528250D01*

-X144850Y527500D01*

-X143350Y531250D02*X144850D01*

-X147100Y527500D02*X149350D01*

-X146350Y528250D02*X147100Y527500D01*

-X146350Y529750D02*Y528250D01*

-Y529750D02*X147100Y530500D01*

-X148600D01*

-X149350Y529750D01*

-X146350Y529000D02*X149350D01*

-Y529750D02*Y529000D01*

-X154150Y533500D02*Y527500D01*

-X153400D02*X154150Y528250D01*

-X151900Y527500D02*X153400D01*

-X151150Y528250D02*X151900Y527500D01*

-X151150Y529750D02*Y528250D01*

-Y529750D02*X151900Y530500D01*

-X153400D01*

-X154150Y529750D01*

-X157450Y530500D02*Y529750D01*

-Y528250D02*Y527500D01*

-X155950Y532750D02*Y532000D01*

-Y532750D02*X156700Y533500D01*

-X158200D01*

-X158950Y532750D01*

-Y532000D01*

-X157450Y530500D02*X158950Y532000D01*

-X130000Y524250D02*X160750D01*

-X0Y548500D02*X3000D01*

-X1500D02*Y542500D01*

-X4800Y548500D02*Y542500D01*

-Y544750D02*X5550Y545500D01*

-X7050D01*

-X7800Y544750D01*

-Y542500D01*

-X10350D02*X12600D01*

-X9600Y543250D02*X10350Y542500D01*

-X9600Y544750D02*Y543250D01*

-Y544750D02*X10350Y545500D01*

-X11850D01*

-X12600Y544750D01*

-X9600Y544000D02*X12600D01*

-Y544750D02*Y544000D01*

-X15150Y544750D02*Y542500D01*

-Y544750D02*X15900Y545500D01*

-X17400D01*

-X14400D02*X15150Y544750D01*

-X19950Y542500D02*X22200D01*

-X19200Y543250D02*X19950Y542500D01*

-X19200Y544750D02*Y543250D01*

-Y544750D02*X19950Y545500D01*

-X21450D01*

-X22200Y544750D01*

-X19200Y544000D02*X22200D01*

-Y544750D02*Y544000D01*

-X28950Y545500D02*X29700Y544750D01*

-X27450Y545500D02*X28950D01*

-X26700Y544750D02*X27450Y545500D01*

-X26700Y544750D02*Y543250D01*

-X27450Y542500D01*

-X29700Y545500D02*Y543250D01*

-X30450Y542500D01*

-X27450D02*X28950D01*

-X29700Y543250D01*

-X33000Y544750D02*Y542500D01*

-Y544750D02*X33750Y545500D01*

-X35250D01*

-X32250D02*X33000Y544750D01*

-X37800Y542500D02*X40050D01*

-X37050Y543250D02*X37800Y542500D01*

-X37050Y544750D02*Y543250D01*

-Y544750D02*X37800Y545500D01*

-X39300D01*

-X40050Y544750D01*

-X37050Y544000D02*X40050D01*

-Y544750D02*Y544000D01*

-X44550Y543250D02*X45300Y542500D01*

-X44550Y544450D02*Y543250D01*

-Y544450D02*X45600Y545500D01*

-X46500D01*

-X47550Y544450D01*

-Y543250D01*

-X46800Y542500D02*X47550Y543250D01*

-X45300Y542500D02*X46800D01*

-X44550Y546550D02*X45600Y545500D01*

-X44550Y547750D02*Y546550D01*

-Y547750D02*X45300Y548500D01*

-X46800D01*

-X47550Y547750D01*

-Y546550D01*

-X46500Y545500D02*X47550Y546550D01*

-X55050Y548500D02*Y542500D01*

-X54300D02*X55050Y543250D01*

-X52800Y542500D02*X54300D01*

-X52050Y543250D02*X52800Y542500D01*

-X52050Y544750D02*Y543250D01*

-Y544750D02*X52800Y545500D01*

-X54300D01*

-X55050Y544750D01*

-G54D339*X56850Y547000D02*Y546850D01*

-G54D338*Y544750D02*Y542500D01*

-X59100Y547750D02*Y542500D01*

-Y547750D02*X59850Y548500D01*

-X60600D01*

-X58350Y545500D02*X59850D01*

-X62850Y547750D02*Y542500D01*

-Y547750D02*X63600Y548500D01*

-X64350D01*

-X62100Y545500D02*X63600D01*

-X66600Y542500D02*X68850D01*

-X65850Y543250D02*X66600Y542500D01*

-X65850Y544750D02*Y543250D01*

-Y544750D02*X66600Y545500D01*

-X68100D01*

-X68850Y544750D01*

-X65850Y544000D02*X68850D01*

-Y544750D02*Y544000D01*

-X71400Y544750D02*Y542500D01*

-Y544750D02*X72150Y545500D01*

-X73650D01*

-X70650D02*X71400Y544750D01*

-X76200Y542500D02*X78450D01*

-X75450Y543250D02*X76200Y542500D01*

-X75450Y544750D02*Y543250D01*

-Y544750D02*X76200Y545500D01*

-X77700D01*

-X78450Y544750D01*

-X75450Y544000D02*X78450D01*

-Y544750D02*Y544000D01*

-X81000Y544750D02*Y542500D01*

-Y544750D02*X81750Y545500D01*

-X82500D01*

-X83250Y544750D01*

-Y542500D01*

-X80250Y545500D02*X81000Y544750D01*

-X85800Y548500D02*Y543250D01*

-X86550Y542500D01*

-X85050Y546250D02*X86550D01*

-X93750Y548500D02*Y542500D01*

-X93000D02*X93750Y543250D01*

-X91500Y542500D02*X93000D01*

-X90750Y543250D02*X91500Y542500D01*

-X90750Y544750D02*Y543250D01*

-Y544750D02*X91500Y545500D01*

-X93000D01*

-X93750Y544750D01*

-X96300D02*Y542500D01*

-Y544750D02*X97050Y545500D01*

-X98550D01*

-X95550D02*X96300Y544750D01*

-G54D339*X100350Y547000D02*Y546850D01*

-G54D338*Y544750D02*Y542500D01*

-X101850Y548500D02*Y543250D01*

-X102600Y542500D01*

-X104100Y548500D02*Y543250D01*

-X104850Y542500D01*

-X109800D02*X112050D01*

-X112800Y543250D01*

-X112050Y544000D02*X112800Y543250D01*

-X109800Y544000D02*X112050D01*

-X109050Y544750D02*X109800Y544000D01*

-X109050Y544750D02*X109800Y545500D01*

-X112050D01*

-X112800Y544750D01*

-X109050Y543250D02*X109800Y542500D01*

-G54D339*X114600Y547000D02*Y546850D01*

-G54D338*Y544750D02*Y542500D01*

-X116100Y545500D02*X119100D01*

-X116100Y542500D02*X119100Y545500D01*

-X116100Y542500D02*X119100D01*

-X121650D02*X123900D01*

-X120900Y543250D02*X121650Y542500D01*

-X120900Y544750D02*Y543250D01*

-Y544750D02*X121650Y545500D01*

-X123150D01*

-X123900Y544750D01*

-X120900Y544000D02*X123900D01*

-Y544750D02*Y544000D01*

-X126450Y542500D02*X128700D01*

-X129450Y543250D01*

-X128700Y544000D02*X129450Y543250D01*

-X126450Y544000D02*X128700D01*

-X125700Y544750D02*X126450Y544000D01*

-X125700Y544750D02*X126450Y545500D01*

-X128700D01*

-X129450Y544750D01*

-X125700Y543250D02*X126450Y542500D01*

-X133950Y545500D02*Y543250D01*

-X134700Y542500D01*

-X136200D01*

-X136950Y543250D01*

-Y545500D02*Y543250D01*

-X139500Y542500D02*X141750D01*

-X142500Y543250D01*

-X141750Y544000D02*X142500Y543250D01*

-X139500Y544000D02*X141750D01*

-X138750Y544750D02*X139500Y544000D01*

-X138750Y544750D02*X139500Y545500D01*

-X141750D01*

-X142500Y544750D01*

-X138750Y543250D02*X139500Y542500D01*

-X145050D02*X147300D01*

-X144300Y543250D02*X145050Y542500D01*

-X144300Y544750D02*Y543250D01*

-Y544750D02*X145050Y545500D01*

-X146550D01*

-X147300Y544750D01*

-X144300Y544000D02*X147300D01*

-Y544750D02*Y544000D01*

-X152100Y548500D02*Y542500D01*

-X151350D02*X152100Y543250D01*

-X149850Y542500D02*X151350D01*

-X149100Y543250D02*X149850Y542500D01*

-X149100Y544750D02*Y543250D01*

-Y544750D02*X149850Y545500D01*

-X151350D01*

-X152100Y544750D01*

-G54D339*X156600Y547000D02*Y546850D01*

-G54D338*Y544750D02*Y542500D01*

-X158850Y544750D02*Y542500D01*

-Y544750D02*X159600Y545500D01*

-X160350D01*

-X161100Y544750D01*

-Y542500D01*

-X158100Y545500D02*X158850Y544750D01*

-X166350Y548500D02*Y543250D01*

-X167100Y542500D01*

-X165600Y546250D02*X167100D01*

-X168600Y548500D02*Y542500D01*

-Y544750D02*X169350Y545500D01*

-X170850D01*

-X171600Y544750D01*

-Y542500D01*

-G54D339*X173400Y547000D02*Y546850D01*

-G54D338*Y544750D02*Y542500D01*

-X175650D02*X177900D01*

-X178650Y543250D01*

-X177900Y544000D02*X178650Y543250D01*

-X175650Y544000D02*X177900D01*

-X174900Y544750D02*X175650Y544000D01*

-X174900Y544750D02*X175650Y545500D01*

-X177900D01*

-X178650Y544750D01*

-X174900Y543250D02*X175650Y542500D01*

-X183150Y548500D02*Y543250D01*

-X183900Y542500D01*

-X187650Y545500D02*X188400Y544750D01*

-X186150Y545500D02*X187650D01*

-X185400Y544750D02*X186150Y545500D01*

-X185400Y544750D02*Y543250D01*

-X186150Y542500D01*

-X188400Y545500D02*Y543250D01*

-X189150Y542500D01*

-X186150D02*X187650D01*

-X188400Y543250D01*

-X190950Y545500D02*Y543250D01*

-X191700Y542500D01*

-X193950Y545500D02*Y541000D01*

-X193200Y540250D02*X193950Y541000D01*

-X191700Y540250D02*X193200D01*

-X190950Y541000D02*X191700Y540250D01*

-Y542500D02*X193200D01*

-X193950Y543250D01*

-X195750Y544750D02*Y543250D01*

-Y544750D02*X196500Y545500D01*

-X198000D01*

-X198750Y544750D01*

-Y543250D01*

-X198000Y542500D02*X198750Y543250D01*

-X196500Y542500D02*X198000D01*

-X195750Y543250D02*X196500Y542500D01*

-X200550Y545500D02*Y543250D01*

-X201300Y542500D01*

-X202800D01*

-X203550Y543250D01*

-Y545500D02*Y543250D01*

-X206100Y548500D02*Y543250D01*

-X206850Y542500D01*

-X205350Y546250D02*X206850D01*

-X208350Y541000D02*X209850Y542500D01*

-X214350Y544750D02*X217350Y548500D01*

-X214350Y544750D02*X218100D01*

-X217350Y548500D02*Y542500D01*

-X219900Y548500D02*X222900D01*

-X219900D02*Y545500D01*

-X220650Y546250D01*

-X222150D01*

-X222900Y545500D01*

-Y543250D01*

-X222150Y542500D02*X222900Y543250D01*

-X220650Y542500D02*X222150D01*

-X219900Y543250D02*X220650Y542500D01*

-X224700Y547300D02*X225900Y548500D01*

-Y542500D01*

-X224700D02*X226950D01*

-X231450Y548500D02*Y542500D01*

-Y544750D02*X232200Y545500D01*

-X233700D01*

-X234450Y544750D01*

-Y542500D01*

-X236250Y544750D02*Y543250D01*

-Y544750D02*X237000Y545500D01*

-X238500D01*

-X239250Y544750D01*

-Y543250D01*

-X238500Y542500D02*X239250Y543250D01*

-X237000Y542500D02*X238500D01*

-X236250Y543250D02*X237000Y542500D01*

-X241050Y548500D02*Y543250D01*

-X241800Y542500D01*

-X244050D02*X246300D01*

-X243300Y543250D02*X244050Y542500D01*

-X243300Y544750D02*Y543250D01*

-Y544750D02*X244050Y545500D01*

-X245550D01*

-X246300Y544750D01*

-X243300Y544000D02*X246300D01*

-Y544750D02*Y544000D01*

-X248850Y542500D02*X251100D01*

-X251850Y543250D01*

-X251100Y544000D02*X251850Y543250D01*

-X248850Y544000D02*X251100D01*

-X248100Y544750D02*X248850Y544000D01*

-X248100Y544750D02*X248850Y545500D01*

-X251100D01*

-X251850Y544750D01*

-X248100Y543250D02*X248850Y542500D01*

-X257100Y548500D02*Y543250D01*

-X257850Y542500D01*

-X256350Y546250D02*X257850D01*

-X259350Y544750D02*Y543250D01*

-Y544750D02*X260100Y545500D01*

-X261600D01*

-X262350Y544750D01*

-Y543250D01*

-X261600Y542500D02*X262350Y543250D01*

-X260100Y542500D02*X261600D01*

-X259350Y543250D02*X260100Y542500D01*

-X264900Y548500D02*Y543250D01*

-X265650Y542500D01*

-X264150Y546250D02*X265650D01*

-X269400Y545500D02*X270150Y544750D01*

-X267900Y545500D02*X269400D01*

-X267150Y544750D02*X267900Y545500D01*

-X267150Y544750D02*Y543250D01*

-X267900Y542500D01*

-X270150Y545500D02*Y543250D01*

-X270900Y542500D01*

-X267900D02*X269400D01*

-X270150Y543250D01*

-X272700Y548500D02*Y543250D01*

-X273450Y542500D01*

-G54D340*X484600Y393300D02*Y42000D01*

-X479100Y35500D02*X73500D01*

-X68000Y42000D02*Y244000D01*

-X74500Y250500D02*X101000D01*

-X107500Y256000D02*Y312500D01*

-X101000Y319000D02*X74500D01*

-X68000Y325500D02*Y393300D01*

-X74500Y399800D02*X478100D01*

-X189949Y136059D02*X189890Y136000D01*

-X478100Y399800D02*G75*G02X484600Y393300I0J-6500D01*G01*

-Y42000D02*G75*G02X478100Y35500I-6500J0D01*G01*

-X74500D02*G75*G02X68000Y42000I0J6500D01*G01*

-Y244000D02*G75*G02X74500Y250500I6500J0D01*G01*

-X107500Y257000D02*G75*G02X101000Y250500I-6500J0D01*G01*

-Y319000D02*G75*G02X107500Y312500I0J-6500D01*G01*

-X74500Y319000D02*G75*G02X68000Y325500I0J6500D01*G01*

-Y393300D02*G75*G02X74500Y399800I6500J0D01*G01*

-G54D338*X163675Y-9500D02*X166675D01*

-X167425Y-8750D01*

-Y-6950D02*Y-8750D01*

-X166675Y-6200D02*X167425Y-6950D01*

-X164425Y-6200D02*X166675D01*

-X164425Y-3500D02*Y-9500D01*

-X163675Y-3500D02*X166675D01*

-X167425Y-4250D01*

-Y-5450D01*

-X166675Y-6200D02*X167425Y-5450D01*

-X169225Y-7250D02*Y-8750D01*

-Y-7250D02*X169975Y-6500D01*

-X171475D01*

-X172225Y-7250D01*

-Y-8750D01*

-X171475Y-9500D02*X172225Y-8750D01*

-X169975Y-9500D02*X171475D01*

-X169225Y-8750D02*X169975Y-9500D01*

-X176275Y-6500D02*X177025Y-7250D01*

-X174775Y-6500D02*X176275D01*

-X174025Y-7250D02*X174775Y-6500D01*

-X174025Y-7250D02*Y-8750D01*

-X174775Y-9500D01*

-X177025Y-6500D02*Y-8750D01*

-X177775Y-9500D01*

-X174775D02*X176275D01*

-X177025Y-8750D01*

-X180325Y-7250D02*Y-9500D01*

-Y-7250D02*X181075Y-6500D01*

-X182575D01*

-X179575D02*X180325Y-7250D01*

-X187375Y-3500D02*Y-9500D01*

-X186625D02*X187375Y-8750D01*

-X185125Y-9500D02*X186625D01*

-X184375Y-8750D02*X185125Y-9500D01*

-X184375Y-7250D02*Y-8750D01*

-Y-7250D02*X185125Y-6500D01*

-X186625D01*

-X187375Y-7250D01*

-X191875D02*Y-8750D01*

-Y-7250D02*X192625Y-6500D01*

-X194125D01*

-X194875Y-7250D01*

-Y-8750D01*

-X194125Y-9500D02*X194875Y-8750D01*

-X192625Y-9500D02*X194125D01*

-X191875Y-8750D02*X192625Y-9500D01*

-X196675Y-6500D02*Y-8750D01*

-X197425Y-9500D01*

-X198925D01*

-X199675Y-8750D01*

-Y-6500D02*Y-8750D01*

-X202225Y-3500D02*Y-8750D01*

-X202975Y-9500D01*

-X201475Y-5750D02*X202975D01*

-X204475Y-3500D02*Y-8750D01*

-X205225Y-9500D01*

-G54D339*X206725Y-5000D02*Y-5150D01*

-G54D338*Y-7250D02*Y-9500D01*

-X208975Y-7250D02*Y-9500D01*

-Y-7250D02*X209725Y-6500D01*

-X210475D01*

-X211225Y-7250D01*

-Y-9500D01*

-X208225Y-6500D02*X208975Y-7250D01*

-X213775Y-9500D02*X216025D01*

-X213025Y-8750D02*X213775Y-9500D01*

-X213025Y-7250D02*Y-8750D01*

-Y-7250D02*X213775Y-6500D01*

-X215275D01*

-X216025Y-7250D01*

-X213025Y-8000D02*X216025D01*

-Y-7250D02*Y-8000D01*

-G54D339*X220525Y-5000D02*Y-5150D01*

-G54D338*Y-7250D02*Y-9500D01*

-X222775D02*X225025D01*

-X225775Y-8750D01*

-X225025Y-8000D02*X225775Y-8750D01*

-X222775Y-8000D02*X225025D01*

-X222025Y-7250D02*X222775Y-8000D01*

-X222025Y-7250D02*X222775Y-6500D01*

-X225025D01*

-X225775Y-7250D01*

-X222025Y-8750D02*X222775Y-9500D01*

-X231025Y-3500D02*Y-8750D01*

-X231775Y-9500D01*

-X230275Y-5750D02*X231775D01*

-X233275Y-3500D02*Y-9500D01*

-Y-7250D02*X234025Y-6500D01*

-X235525D01*

-X236275Y-7250D01*

-Y-9500D01*

-X238825D02*X241075D01*

-X238075Y-8750D02*X238825Y-9500D01*

-X238075Y-7250D02*Y-8750D01*

-Y-7250D02*X238825Y-6500D01*

-X240325D01*

-X241075Y-7250D01*

-X238075Y-8000D02*X241075D01*

-Y-7250D02*Y-8000D01*

-X246325Y-6500D02*X248575D01*

-X245575Y-7250D02*X246325Y-6500D01*

-X245575Y-7250D02*Y-8750D01*

-X246325Y-9500D01*

-X248575D01*

-X251125D02*X253375D01*

-X250375Y-8750D02*X251125Y-9500D01*

-X250375Y-7250D02*Y-8750D01*

-Y-7250D02*X251125Y-6500D01*

-X252625D01*

-X253375Y-7250D01*

-X250375Y-8000D02*X253375D01*

-Y-7250D02*Y-8000D01*

-X255925Y-7250D02*Y-9500D01*

-Y-7250D02*X256675Y-6500D01*

-X257425D01*

-X258175Y-7250D01*

-Y-9500D01*

-X255175Y-6500D02*X255925Y-7250D01*

-X260725Y-3500D02*Y-8750D01*

-X261475Y-9500D01*

-X259975Y-5750D02*X261475D01*

-X263725Y-9500D02*X265975D01*

-X262975Y-8750D02*X263725Y-9500D01*

-X262975Y-7250D02*Y-8750D01*

-Y-7250D02*X263725Y-6500D01*

-X265225D01*

-X265975Y-7250D01*

-X262975Y-8000D02*X265975D01*

-Y-7250D02*Y-8000D01*

-X268525Y-7250D02*Y-9500D01*

-Y-7250D02*X269275Y-6500D01*

-X270775D01*

-X267775D02*X268525Y-7250D01*

-X272575Y-3500D02*Y-8750D01*

-X273325Y-9500D01*

-G54D339*X274825Y-5000D02*Y-5150D01*

-G54D338*Y-7250D02*Y-9500D01*

-X277075Y-7250D02*Y-9500D01*

-Y-7250D02*X277825Y-6500D01*

-X278575D01*

-X279325Y-7250D01*

-Y-9500D01*

-X276325Y-6500D02*X277075Y-7250D01*

-X281875Y-9500D02*X284125D01*

-X281125Y-8750D02*X281875Y-9500D01*

-X281125Y-7250D02*Y-8750D01*

-Y-7250D02*X281875Y-6500D01*

-X283375D01*

-X284125Y-7250D01*

-X281125Y-8000D02*X284125D01*

-Y-7250D02*Y-8000D01*

-X288625Y-7250D02*Y-8750D01*

-Y-7250D02*X289375Y-6500D01*

-X290875D01*

-X291625Y-7250D01*

-Y-8750D01*

-X290875Y-9500D02*X291625Y-8750D01*

-X289375Y-9500D02*X290875D01*

-X288625Y-8750D02*X289375Y-9500D01*

-X294175Y-4250D02*Y-9500D01*

-Y-4250D02*X294925Y-3500D01*

-X295675D01*

-X293425Y-6500D02*X294925D01*

-X300625Y-3500D02*Y-8750D01*

-X301375Y-9500D01*

-X299875Y-5750D02*X301375D01*

-X302875Y-3500D02*Y-9500D01*

-Y-7250D02*X303625Y-6500D01*

-X305125D01*

-X305875Y-7250D01*

-Y-9500D01*

-G54D339*X307675Y-5000D02*Y-5150D01*

-G54D338*Y-7250D02*Y-9500D01*

-X309925D02*X312175D01*

-X312925Y-8750D01*

-X312175Y-8000D02*X312925Y-8750D01*

-X309925Y-8000D02*X312175D01*

-X309175Y-7250D02*X309925Y-8000D01*

-X309175Y-7250D02*X309925Y-6500D01*

-X312175D01*

-X312925Y-7250D01*

-X309175Y-8750D02*X309925Y-9500D01*

-X318175Y-7250D02*Y-11750D01*

-X317425Y-6500D02*X318175Y-7250D01*

-X318925Y-6500D01*

-X320425D01*

-X321175Y-7250D01*

-Y-8750D01*

-X320425Y-9500D02*X321175Y-8750D01*

-X318925Y-9500D02*X320425D01*

-X318175Y-8750D02*X318925Y-9500D01*

-X325225Y-6500D02*X325975Y-7250D01*

-X323725Y-6500D02*X325225D01*

-X322975Y-7250D02*X323725Y-6500D01*

-X322975Y-7250D02*Y-8750D01*

-X323725Y-9500D01*

-X325975Y-6500D02*Y-8750D01*

-X326725Y-9500D01*

-X323725D02*X325225D01*

-X325975Y-8750D01*

-X329275Y-3500D02*Y-8750D01*

-X330025Y-9500D01*

-X328525Y-5750D02*X330025D01*

-X331525Y-3500D02*Y-9500D01*

-Y-7250D02*X332275Y-6500D01*

-X333775D01*

-X334525Y-7250D01*

-Y-9500D01*

-X200750Y428500D02*Y422500D01*

-X202700Y428500D02*X203750Y427450D01*

-Y423550D01*

-X202700Y422500D02*X203750Y423550D01*

-X200000Y422500D02*X202700D01*

-X200000Y428500D02*X202700D01*

-X207800Y425500D02*X208550Y424750D01*

-X206300Y425500D02*X207800D01*

-X205550Y424750D02*X206300Y425500D01*

-X205550Y424750D02*Y423250D01*

-X206300Y422500D01*

-X208550Y425500D02*Y423250D01*

-X209300Y422500D01*

-X206300D02*X207800D01*

-X208550Y423250D01*

-X211850Y428500D02*Y423250D01*

-X212600Y422500D01*

-X211100Y426250D02*X212600D01*

-X214850Y422500D02*X217100D01*

-X214100Y423250D02*X214850Y422500D01*

-X214100Y424750D02*Y423250D01*

-Y424750D02*X214850Y425500D01*

-X216350D01*

-X217100Y424750D01*

-X214100Y424000D02*X217100D01*

-Y424750D02*Y424000D01*

-X218900Y426250D02*X219650D01*

-X218900Y424750D02*X219650D01*

-X227150Y428500D02*X227900Y427750D01*

-X224900Y428500D02*X227150D01*

-X224150Y427750D02*X224900Y428500D01*

-X224150Y427750D02*Y426250D01*

-X224900Y425500D01*

-X227150D01*

-X227900Y424750D01*

-Y423250D01*

-X227150Y422500D02*X227900Y423250D01*

-X224900Y422500D02*X227150D01*

-X224150Y423250D02*X224900Y422500D01*

-X229700Y425500D02*Y423250D01*

-X230450Y422500D01*

-X231950D01*

-X232700Y423250D01*

-Y425500D02*Y423250D01*

-X235250Y424750D02*Y422500D01*

-Y424750D02*X236000Y425500D01*

-X236750D01*

-X237500Y424750D01*

-Y422500D01*

-X234500Y425500D02*X235250Y424750D01*

-X243050Y428500D02*X244250D01*

-Y423250D01*

-X243500Y422500D02*X244250Y423250D01*

-X242750Y422500D02*X243500D01*

-X242000Y423250D02*X242750Y422500D01*

-X242000Y424000D02*Y423250D01*

-X248300Y425500D02*X249050Y424750D01*

-X246800Y425500D02*X248300D01*

-X246050Y424750D02*X246800Y425500D01*

-X246050Y424750D02*Y423250D01*

-X246800Y422500D01*

-X249050Y425500D02*Y423250D01*

-X249800Y422500D01*

-X246800D02*X248300D01*

-X249050Y423250D01*

-X252350Y424750D02*Y422500D01*

-Y424750D02*X253100Y425500D01*

-X253850D01*

-X254600Y424750D01*

-Y422500D01*

-X251600Y425500D02*X252350Y424750D01*

-X259100Y427300D02*X260300Y428500D01*

-Y422500D01*

-X259100D02*X261350D01*

-X263900D02*X266150Y425500D01*

-Y427750D02*Y425500D01*

-X265400Y428500D02*X266150Y427750D01*

-X263900Y428500D02*X265400D01*

-X263150Y427750D02*X263900Y428500D01*

-X263150Y427750D02*Y426250D01*

-X263900Y425500D01*

-X266150D01*

-X270650Y423250D02*X271400Y422500D01*

-X270650Y427750D02*Y423250D01*

-Y427750D02*X271400Y428500D01*

-X272900D01*

-X273650Y427750D01*

-Y423250D01*

-X272900Y422500D02*X273650Y423250D01*

-X271400Y422500D02*X272900D01*

-X270650Y424000D02*X273650Y427000D01*

-X275450Y427300D02*X276650Y428500D01*

-Y422500D01*

-X275450D02*X277700D01*

-X279500Y426250D02*X280250D01*

-X279500Y424750D02*X280250D01*

-X282050Y427300D02*X283250Y428500D01*

-Y422500D01*

-X282050D02*X284300D01*

-X286850D02*X289850Y428500D01*

-X286100D02*X289850D01*

-X291650Y426250D02*X292400D01*

-X291650Y424750D02*X292400D01*

-X294200Y423250D02*X294950Y422500D01*

-X294200Y427750D02*Y423250D01*

-Y427750D02*X294950Y428500D01*

-X296450D01*

-X297200Y427750D01*

-Y423250D01*

-X296450Y422500D02*X297200Y423250D01*

-X294950Y422500D02*X296450D01*

-X294200Y424000D02*X297200Y427000D01*

-X299000Y423250D02*X299750Y422500D01*

-X299000Y424450D02*Y423250D01*

-Y424450D02*X300050Y425500D01*

-X300950D01*

-X302000Y424450D01*

-Y423250D01*

-X301250Y422500D02*X302000Y423250D01*

-X299750Y422500D02*X301250D01*

-X299000Y426550D02*X300050Y425500D01*

-X299000Y427750D02*Y426550D01*

-Y427750D02*X299750Y428500D01*

-X301250D01*

-X302000Y427750D01*

-Y426550D01*

-X300950Y425500D02*X302000Y426550D01*

-X306500Y427750D02*X307250Y428500D01*

-X309500D01*

-X310250Y427750D01*

-Y426250D01*

-X306500Y422500D02*X310250Y426250D01*

-X306500Y422500D02*X310250D01*

-X312050Y423250D02*X312800Y422500D01*

-X312050Y427750D02*Y423250D01*

-Y427750D02*X312800Y428500D01*

-X314300D01*

-X315050Y427750D01*

-Y423250D01*

-X314300Y422500D02*X315050Y423250D01*

-X312800Y422500D02*X314300D01*

-X312050Y424000D02*X315050Y427000D01*

-X316850Y427300D02*X318050Y428500D01*

-Y422500D01*

-X316850D02*X319100D01*

-X320900Y424750D02*X323900Y428500D01*

-X320900Y424750D02*X324650D01*

-X323900Y428500D02*Y422500D01*

-X329150Y428500D02*Y423250D01*

-X329900Y422500D01*

-X331400D01*

-X332150Y423250D01*

-Y428500D02*Y423250D01*

-X333950Y428500D02*X336950D01*

-X335450D02*Y422500D01*

-X339800D02*X341750D01*

-X338750Y423550D02*X339800Y422500D01*

-X338750Y427450D02*Y423550D01*

-Y427450D02*X339800Y428500D01*

-X341750D01*

-X200000Y442000D02*Y437500D01*

-Y442000D02*X201050Y443500D01*

-X202700D01*

-X203750Y442000D01*

-Y437500D01*

-X200000Y440500D02*X203750D01*

-X205550D02*Y438250D01*

-X206300Y437500D01*

-X207800D01*

-X208550Y438250D01*

-Y440500D02*Y438250D01*

-X211100Y443500D02*Y438250D01*

-X211850Y437500D01*

-X210350Y441250D02*X211850D01*

-X213350Y443500D02*Y437500D01*

-Y439750D02*X214100Y440500D01*

-X215600D01*

-X216350Y439750D01*

-Y437500D01*

-X218150Y439750D02*Y438250D01*

-Y439750D02*X218900Y440500D01*

-X220400D01*

-X221150Y439750D01*

-Y438250D01*

-X220400Y437500D02*X221150Y438250D01*

-X218900Y437500D02*X220400D01*

-X218150Y438250D02*X218900Y437500D01*

-X223700Y439750D02*Y437500D01*

-Y439750D02*X224450Y440500D01*

-X225950D01*

-X222950D02*X223700Y439750D01*

-X227750Y441250D02*X228500D01*

-X227750Y439750D02*X228500D01*

-X233000Y437500D02*X236000D01*

-X236750Y438250D01*

-Y440050D02*Y438250D01*

-X236000Y440800D02*X236750Y440050D01*

-X233750Y440800D02*X236000D01*

-X233750Y443500D02*Y437500D01*

-X233000Y443500D02*X236000D01*

-X236750Y442750D01*

-Y441550D01*

-X236000Y440800D02*X236750Y441550D01*

-X239300Y439750D02*Y437500D01*

-Y439750D02*X240050Y440500D01*

-X241550D01*

-X238550D02*X239300Y439750D01*

-G54D339*X243350Y442000D02*Y441850D01*

-G54D338*Y439750D02*Y437500D01*

-X247100Y440500D02*X247850Y439750D01*

-X245600Y440500D02*X247100D01*

-X244850Y439750D02*X245600Y440500D01*

-X244850Y439750D02*Y438250D01*

-X245600Y437500D01*

-X247850Y440500D02*Y438250D01*

-X248600Y437500D01*

-X245600D02*X247100D01*

-X247850Y438250D01*

-X251150Y439750D02*Y437500D01*

-Y439750D02*X251900Y440500D01*

-X252650D01*

-X253400Y439750D01*

-Y437500D01*

-X250400Y440500D02*X251150Y439750D01*

-X260900Y443500D02*X261650Y442750D01*

-X258650Y443500D02*X260900D01*

-X257900Y442750D02*X258650Y443500D01*

-X257900Y442750D02*Y441250D01*

-X258650Y440500D01*

-X260900D01*

-X261650Y439750D01*

-Y438250D01*

-X260900Y437500D02*X261650Y438250D01*

-X258650Y437500D02*X260900D01*

-X257900Y438250D02*X258650Y437500D01*

-G54D339*X263450Y442000D02*Y441850D01*

-G54D338*Y439750D02*Y437500D01*

-X264950Y443500D02*Y438250D01*

-X265700Y437500D01*

-X267200Y440500D02*X268700Y437500D01*

-X270200Y440500D02*X268700Y437500D01*

-X272750D02*X275000D01*

-X272000Y438250D02*X272750Y437500D01*

-X272000Y439750D02*Y438250D01*

-Y439750D02*X272750Y440500D01*

-X274250D01*

-X275000Y439750D01*

-X272000Y439000D02*X275000D01*

-Y439750D02*Y439000D01*

-X277550Y439750D02*Y437500D01*

-Y439750D02*X278300Y440500D01*

-X279800D01*

-X276800D02*X277550Y439750D01*

-X282350D02*Y437500D01*

-Y439750D02*X283100Y440500D01*

-X283850D01*

-X284600Y439750D01*

-Y437500D01*

-Y439750D02*X285350Y440500D01*

-X286100D01*

-X286850Y439750D01*

-Y437500D01*

-X281600Y440500D02*X282350Y439750D01*

-X290900Y440500D02*X291650Y439750D01*

-X289400Y440500D02*X290900D01*

-X288650Y439750D02*X289400Y440500D01*

-X288650Y439750D02*Y438250D01*

-X289400Y437500D01*

-X291650Y440500D02*Y438250D01*

-X292400Y437500D01*

-X289400D02*X290900D01*

-X291650Y438250D01*

-X294950Y439750D02*Y437500D01*

-Y439750D02*X295700Y440500D01*

-X296450D01*

-X297200Y439750D01*

-Y437500D01*

-X294200Y440500D02*X294950Y439750D01*

-X200000Y458500D02*X203000D01*

-X201500D02*Y452500D01*

-G54D339*X204800Y457000D02*Y456850D01*

-G54D338*Y454750D02*Y452500D01*

-X207050Y458500D02*Y453250D01*

-X207800Y452500D01*

-X206300Y456250D02*X207800D01*

-X209300Y458500D02*Y453250D01*

-X210050Y452500D01*

-X212300D02*X214550D01*

-X211550Y453250D02*X212300Y452500D01*

-X211550Y454750D02*Y453250D01*

-Y454750D02*X212300Y455500D01*

-X213800D01*

-X214550Y454750D01*

-X211550Y454000D02*X214550D01*

-Y454750D02*Y454000D01*

-X216350Y456250D02*X217100D01*

-X216350Y454750D02*X217100D01*

-X222350Y452500D02*X224600Y455500D01*

-Y457750D02*Y455500D01*

-X223850Y458500D02*X224600Y457750D01*

-X222350Y458500D02*X223850D01*

-X221600Y457750D02*X222350Y458500D01*

-X221600Y457750D02*Y456250D01*

-X222350Y455500D01*

-X224600D01*

-X227150Y452500D02*X230150Y458500D01*

-X226400D02*X230150D01*

-X231950Y457300D02*X233150Y458500D01*

-Y452500D01*

-X231950D02*X234200D01*

-X238700D02*X241700D01*

-X242450Y453250D01*

-Y455050D02*Y453250D01*

-X241700Y455800D02*X242450Y455050D01*

-X239450Y455800D02*X241700D01*

-X239450Y458500D02*Y452500D01*

-X238700Y458500D02*X241700D01*

-X242450Y457750D01*

-Y456550D01*

-X241700Y455800D02*X242450Y456550D01*

-X244250Y452500D02*X247250D01*

-X248000Y453250D01*

-Y455050D02*Y453250D01*

-X247250Y455800D02*X248000Y455050D01*

-X245000Y455800D02*X247250D01*

-X245000Y458500D02*Y452500D01*

-X244250Y458500D02*X247250D01*

-X248000Y457750D01*

-Y456550D01*

-X247250Y455800D02*X248000Y456550D01*

-X249800Y452500D02*X252800D01*

-X253550Y453250D01*

-Y455050D02*Y453250D01*

-X252800Y455800D02*X253550Y455050D01*

-X250550Y455800D02*X252800D01*

-X250550Y458500D02*Y452500D01*

-X249800Y458500D02*X252800D01*

-X253550Y457750D01*

-Y456550D01*

-X252800Y455800D02*X253550Y456550D01*

-X259100Y452500D02*X261050D01*

-X258050Y453550D02*X259100Y452500D01*

-X258050Y457450D02*Y453550D01*

-Y457450D02*X259100Y458500D01*

-X261050D01*

-X265100Y455500D02*X265850Y454750D01*

-X263600Y455500D02*X265100D01*

-X262850Y454750D02*X263600Y455500D01*

-X262850Y454750D02*Y453250D01*

-X263600Y452500D01*

-X265850Y455500D02*Y453250D01*

-X266600Y452500D01*

-X263600D02*X265100D01*

-X265850Y453250D01*

-X269150Y454750D02*Y450250D01*

-X268400Y455500D02*X269150Y454750D01*

-X269900Y455500D01*

-X271400D01*

-X272150Y454750D01*

-Y453250D01*

-X271400Y452500D02*X272150Y453250D01*

-X269900Y452500D02*X271400D01*

-X269150Y453250D02*X269900Y452500D01*

-X274700D02*X276950D01*

-X273950Y453250D02*X274700Y452500D01*

-X273950Y454750D02*Y453250D01*

-Y454750D02*X274700Y455500D01*

-X276200D01*

-X276950Y454750D01*

-X273950Y454000D02*X276950D01*

-Y454750D02*Y454000D01*

-X281450Y455500D02*X284450D01*

-X288950Y458500D02*Y452500D01*

-Y458500D02*X291950D01*

-X288950Y455800D02*X291200D01*

-X296000Y455500D02*X296750Y454750D01*

-X294500Y455500D02*X296000D01*

-X293750Y454750D02*X294500Y455500D01*

-X293750Y454750D02*Y453250D01*

-X294500Y452500D01*

-X296750Y455500D02*Y453250D01*

-X297500Y452500D01*

-X294500D02*X296000D01*

-X296750Y453250D01*

-X299300Y458500D02*Y452500D01*

-Y453250D02*X300050Y452500D01*

-X301550D01*

-X302300Y453250D01*

-Y454750D02*Y453250D01*

-X301550Y455500D02*X302300Y454750D01*

-X300050Y455500D02*X301550D01*

-X299300Y454750D02*X300050Y455500D01*

-X304850Y454750D02*Y452500D01*

-Y454750D02*X305600Y455500D01*

-X307100D01*

-X304100D02*X304850Y454750D01*

-G54D339*X308900Y457000D02*Y456850D01*

-G54D338*Y454750D02*Y452500D01*

-X311150Y455500D02*X313400D01*

-X310400Y454750D02*X311150Y455500D01*

-X310400Y454750D02*Y453250D01*

-X311150Y452500D01*

-X313400D01*

-X317450Y455500D02*X318200Y454750D01*

-X315950Y455500D02*X317450D01*

-X315200Y454750D02*X315950Y455500D01*

-X315200Y454750D02*Y453250D01*

-X315950Y452500D01*

-X318200Y455500D02*Y453250D01*

-X318950Y452500D01*

-X315950D02*X317450D01*

-X318200Y453250D01*

-X321500Y458500D02*Y453250D01*

-X322250Y452500D01*

-X320750Y456250D02*X322250D01*

-G54D339*X323750Y457000D02*Y456850D01*

-G54D338*Y454750D02*Y452500D01*

-X325250Y454750D02*Y453250D01*

-Y454750D02*X326000Y455500D01*

-X327500D01*

-X328250Y454750D01*

-Y453250D01*

-X327500Y452500D02*X328250Y453250D01*

-X326000Y452500D02*X327500D01*

-X325250Y453250D02*X326000Y452500D01*

-X330800Y454750D02*Y452500D01*

-Y454750D02*X331550Y455500D01*

-X332300D01*

-X333050Y454750D01*

-Y452500D01*

-X330050Y455500D02*X330800Y454750D01*

-X338300Y458500D02*Y452500D01*

-X340250Y458500D02*X341300Y457450D01*

-Y453550D01*

-X340250Y452500D02*X341300Y453550D01*

-X337550Y452500D02*X340250D01*

-X337550Y458500D02*X340250D01*

-X343850Y454750D02*Y452500D01*

-Y454750D02*X344600Y455500D01*

-X346100D01*

-X343100D02*X343850Y454750D01*

-X350150Y455500D02*X350900Y454750D01*

-X348650Y455500D02*X350150D01*

-X347900Y454750D02*X348650Y455500D01*

-X347900Y454750D02*Y453250D01*

-X348650Y452500D01*

-X350900Y455500D02*Y453250D01*

-X351650Y452500D01*

-X348650D02*X350150D01*

-X350900Y453250D01*

-X353450Y455500D02*Y453250D01*

-X354200Y452500D01*

-X354950D01*

-X355700Y453250D01*

-Y455500D02*Y453250D01*

-X356450Y452500D01*

-X357200D01*

-X357950Y453250D01*

-Y455500D02*Y453250D01*

-G54D339*X359750Y457000D02*Y456850D01*

-G54D338*Y454750D02*Y452500D01*

-X362000Y454750D02*Y452500D01*

-Y454750D02*X362750Y455500D01*

-X363500D01*

-X364250Y454750D01*

-Y452500D01*

-X361250Y455500D02*X362000Y454750D01*

-X368300Y455500D02*X369050Y454750D01*

-X366800Y455500D02*X368300D01*

-X366050Y454750D02*X366800Y455500D01*

-X366050Y454750D02*Y453250D01*

-X366800Y452500D01*

-X368300D01*

-X369050Y453250D01*

-X366050Y451000D02*X366800Y450250D01*

-X368300D01*

-X369050Y451000D01*

-Y455500D02*Y451000D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140117/cape.group1.gbr b/bbb_cape/schematic/gerbers/20140117/cape.group1.gbr
deleted file mode 100644
index c973caa..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.group1.gbr
+++ /dev/null
@@ -1,27290 +0,0 @@
-G04 start of page 3 for group 1 idx 2 *

-G04 Title: 971 BBB Cape, ground *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Sun Jan 19 01:17:08 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNGROUP1*%

-%ADD220C,0.0460*%

-%ADD219C,0.2000*%

-%ADD218C,0.1285*%

-%ADD217C,0.0400*%

-%ADD216C,0.0350*%

-%ADD215C,0.0100*%

-%ADD214C,0.0600*%

-%ADD213C,0.0360*%

-%ADD212C,0.0200*%

-%ADD211C,0.2500*%

-%ADD210C,0.0660*%

-%ADD209C,0.2200*%

-%ADD208C,0.1830*%

-%ADD207C,0.0650*%

-%ADD206C,0.0700*%

-%ADD205C,0.0250*%

-%ADD204C,0.0001*%

-G54D204*G36*

-X107941Y130500D02*X114441D01*

-Y124500D01*

-X107941D01*

-Y130500D01*

-G37*

-G36*

-X159441D02*X165941D01*

-Y124500D01*

-X159441D01*

-Y130500D01*

-G37*

-G36*

-X188941D02*X195441D01*

-Y124500D01*

-X188941D01*

-Y130500D01*

-G37*

-G36*

-X240941D02*X247441D01*

-Y124500D01*

-X240941D01*

-Y130500D01*

-G37*

-G36*

-X137941Y151000D02*X144441D01*

-Y145000D01*

-X137941D01*

-Y151000D01*

-G37*

-G36*

-X220441D02*X226941D01*

-Y145000D01*

-X220441D01*

-Y151000D01*

-G37*

-G36*

-X302196Y110000D02*X308696D01*

-Y104000D01*

-X302196D01*

-Y110000D01*

-G37*

-G36*

-X303941Y138450D02*X310441D01*

-Y132450D01*

-X303941D01*

-Y138450D01*

-G37*

-G36*

-X309441Y138000D02*X315941D01*

-Y135000D01*

-X309441D01*

-Y138000D01*

-G37*

-G36*

-X378441Y383000D02*X389441D01*

-Y375000D01*

-X378441D01*

-Y383000D01*

-G37*

-G36*

-X368441Y355000D02*X379441D01*

-Y347000D01*

-X368441D01*

-Y355000D01*

-G37*

-G36*

-X379162Y309000D02*X390162D01*

-Y301000D01*

-X379162D01*

-Y309000D01*

-G37*

-G36*

-X390441Y330118D02*X396441Y330000D01*

-Y323000D01*

-X390441Y323118D01*

-Y330118D01*

-G37*

-G36*

-X366441Y294689D02*X377441D01*

-Y286689D01*

-X366441D01*

-Y294689D01*

-G37*

-G36*

-X379512Y261000D02*X390512D01*

-Y253000D01*

-X379512D01*

-Y261000D01*

-G37*

-G36*

-X370441Y239157D02*X381441D01*

-Y231157D01*

-X370441D01*

-Y239157D01*

-G37*

-G36*

-X367485Y175386D02*X378485D01*

-Y167386D01*

-X367485D01*

-Y175386D01*

-G37*

-G36*

-X375937Y193161D02*X386937D01*

-Y185161D01*

-X375937D01*

-Y193161D01*

-G37*

-G36*

-X414441Y86000D02*X425441D01*

-Y78000D01*

-X414441D01*

-Y86000D01*

-G37*

-G36*

-X388441Y211000D02*X396441D01*

-Y204000D01*

-X388441D01*

-Y211000D01*

-G37*

-G36*

-X428941Y80000D02*X439941D01*

-Y72000D01*

-X428941D01*

-Y80000D01*

-G37*

-G36*

-X430941Y59500D02*X437441D01*

-Y53500D01*

-X430941D01*

-Y59500D01*

-G37*

-G36*

-X385441Y130500D02*X390941D01*

-Y91000D01*

-X385441D01*

-Y130500D01*

-G37*

-G36*

-X351941Y130000D02*X357441D01*

-Y90500D01*

-X351941D01*

-Y130000D01*

-G37*

-G36*

-X236441Y265000D02*X244441D01*

-Y258000D01*

-X236441D01*

-Y265000D01*

-G37*

-G36*

-X291712Y247147D02*X299712D01*

-Y240147D01*

-X291712D01*

-Y247147D01*

-G37*

-G36*

-X308941Y297500D02*X315441D01*

-Y291500D01*

-X308941D01*

-Y297500D01*

-G37*

-G36*

-X284262Y310800D02*X292262D01*

-Y303800D01*

-X284262D01*

-Y310800D01*

-G37*

-G36*

-X266207Y317716D02*X274207D01*

-Y310716D01*

-X266207D01*

-Y317716D01*

-G37*

-G36*

-X282148Y328134D02*X288648D01*

-Y322134D01*

-X282148D01*

-Y328134D01*

-G37*

-G36*

-X274167Y350634D02*X280667D01*

-Y344634D01*

-X274167D01*

-Y350634D01*

-G37*

-G36*

-X109941Y359500D02*X116441D01*

-Y353500D01*

-X109941D01*

-Y359500D01*

-G37*

-G36*

-X117941D02*X124441D01*

-Y353500D01*

-X117941D01*

-Y359500D01*

-G37*

-G36*

-X126941D02*X133441D01*

-Y353500D01*

-X126941D01*

-Y359500D01*

-G37*

-G36*

-X139441D02*X145941D01*

-Y353500D01*

-X139441D01*

-Y359500D01*

-G37*

-G36*

-Y353500D02*X145941D01*

-Y347500D01*

-X139441D01*

-Y353500D01*

-G37*

-G36*

-X145441D02*X151941D01*

-Y347500D01*

-X145441D01*

-Y353500D01*

-G37*

-G36*

-X150941Y349000D02*X157441D01*

-Y343000D01*

-X150941D01*

-Y349000D01*

-G37*

-G36*

-X165130Y353930D02*X171630D01*

-Y347930D01*

-X165130D01*

-Y353930D01*

-G37*

-G36*

-X123441Y343500D02*X129941D01*

-Y337500D01*

-X123441D01*

-Y343500D01*

-G37*

-G36*

-X113441Y338000D02*X119941D01*

-Y332000D01*

-X113441D01*

-Y338000D01*

-G37*

-G36*

-X109441D02*X115941D01*

-Y332000D01*

-X109441D01*

-Y338000D01*

-G37*

-G36*

-Y344500D02*X115941D01*

-Y338500D01*

-X109441D01*

-Y344500D01*

-G37*

-G36*

-X300719Y333466D02*X304150Y333438D01*

-X307219Y327466D01*

-X300719D01*

-Y333466D01*

-G37*

-G36*

-X155197Y331546D02*X161697D01*

-Y325546D01*

-X155197D01*

-Y331546D01*

-G37*

-G36*

-X155441Y327829D02*X161941D01*

-Y321829D01*

-X155441D01*

-Y327829D01*

-G37*

-G36*

-X236218Y303166D02*X244218D01*

-Y296166D01*

-X236218D01*

-Y303166D01*

-G37*

-G36*

-X194441Y312500D02*X200941D01*

-Y306500D01*

-X194441D01*

-Y312500D01*

-G37*

-G36*

-X192441Y315500D02*X198941D01*

-Y309500D01*

-X192441D01*

-Y315500D01*

-G37*

-G36*

-X194441Y318500D02*X200941D01*

-Y312500D01*

-X194441D01*

-Y318500D01*

-G37*

-G36*

-X123441Y337500D02*X129941D01*

-Y331500D01*

-X123441D01*

-Y337500D01*

-G37*

-G36*

-X159941Y277500D02*X165441D01*

-Y238000D01*

-X159941D01*

-Y277500D01*

-G37*

-G36*

-X125941Y278500D02*X131441D01*

-Y239000D01*

-X125941D01*

-Y278500D01*

-G37*

-G36*

-X138021Y303849D02*X144521D01*

-Y297849D01*

-X138021D01*

-Y303849D01*

-G37*

-G36*

-X201941Y280000D02*X208441D01*

-Y274000D01*

-X201941D01*

-Y280000D01*

-G37*

-G36*

-X194941Y272500D02*X201441D01*

-Y266500D01*

-X194941D01*

-Y272500D01*

-G37*

-G36*

-Y265500D02*X201441D01*

-Y259500D01*

-X194941D01*

-Y265500D01*

-G37*

-G36*

-X178441Y261500D02*X184941D01*

-Y255500D01*

-X178441D01*

-Y261500D01*

-G37*

-G36*

-X98941Y206500D02*X107441D01*

-Y202000D01*

-X98941D01*

-Y206500D01*

-G37*

-G36*

-X481441Y41500D02*X478941Y39000D01*

-X473493D01*

-Y49236D01*

-X473500Y49235D01*

-X474245Y49294D01*

-X474972Y49469D01*

-X475663Y49755D01*

-X476301Y50145D01*

-X476869Y50631D01*

-X477355Y51199D01*

-X477745Y51837D01*

-X478031Y52528D01*

-X478206Y53255D01*

-X478250Y54000D01*

-X478206Y54745D01*

-X478031Y55472D01*

-X477745Y56163D01*

-X477355Y56801D01*

-X476869Y57369D01*

-X476301Y57855D01*

-X475663Y58245D01*

-X474972Y58531D01*

-X474245Y58706D01*

-X473500Y58765D01*

-X473493Y58764D01*

-Y79236D01*

-X473500Y79235D01*

-X474245Y79294D01*

-X474972Y79469D01*

-X475663Y79755D01*

-X476301Y80145D01*

-X476869Y80631D01*

-X477355Y81199D01*

-X477745Y81837D01*

-X478031Y82528D01*

-X478206Y83255D01*

-X478250Y84000D01*

-X478206Y84745D01*

-X478031Y85472D01*

-X477745Y86163D01*

-X477355Y86801D01*

-X476869Y87369D01*

-X476301Y87855D01*

-X475663Y88245D01*

-X474972Y88531D01*

-X474245Y88706D01*

-X473500Y88765D01*

-X473493Y88764D01*

-Y109236D01*

-X473500Y109235D01*

-X474245Y109294D01*

-X474972Y109469D01*

-X475663Y109755D01*

-X476301Y110145D01*

-X476869Y110631D01*

-X477355Y111199D01*

-X477745Y111837D01*

-X478031Y112528D01*

-X478206Y113255D01*

-X478250Y114000D01*

-X478206Y114745D01*

-X478031Y115472D01*

-X477745Y116163D01*

-X477355Y116801D01*

-X476869Y117369D01*

-X476301Y117855D01*

-X475663Y118245D01*

-X474972Y118531D01*

-X474245Y118706D01*

-X473500Y118765D01*

-X473493Y118764D01*

-Y139236D01*

-X473500Y139235D01*

-X474245Y139294D01*

-X474972Y139469D01*

-X475663Y139755D01*

-X476301Y140145D01*

-X476869Y140631D01*

-X477355Y141199D01*

-X477745Y141837D01*

-X478031Y142528D01*

-X478206Y143255D01*

-X478250Y144000D01*

-X478206Y144745D01*

-X478031Y145472D01*

-X477745Y146163D01*

-X477355Y146801D01*

-X476869Y147369D01*

-X476301Y147855D01*

-X475663Y148245D01*

-X474972Y148531D01*

-X474245Y148706D01*

-X473500Y148765D01*

-X473493Y148764D01*

-Y169236D01*

-X473500Y169235D01*

-X474245Y169294D01*

-X474972Y169469D01*

-X475663Y169755D01*

-X476301Y170145D01*

-X476869Y170631D01*

-X477355Y171199D01*

-X477745Y171837D01*

-X478031Y172528D01*

-X478206Y173255D01*

-X478250Y174000D01*

-X478206Y174745D01*

-X478031Y175472D01*

-X477745Y176163D01*

-X477355Y176801D01*

-X476869Y177369D01*

-X476301Y177855D01*

-X475663Y178245D01*

-X474972Y178531D01*

-X474245Y178706D01*

-X473500Y178765D01*

-X473493Y178764D01*

-Y199236D01*

-X473500Y199235D01*

-X474245Y199294D01*

-X474972Y199469D01*

-X475663Y199755D01*

-X476301Y200145D01*

-X476869Y200631D01*

-X477355Y201199D01*

-X477745Y201837D01*

-X478031Y202528D01*

-X478206Y203255D01*

-X478250Y204000D01*

-X478206Y204745D01*

-X478031Y205472D01*

-X477745Y206163D01*

-X477355Y206801D01*

-X476869Y207369D01*

-X476301Y207855D01*

-X475663Y208245D01*

-X474972Y208531D01*

-X474245Y208706D01*

-X473500Y208765D01*

-X473493Y208764D01*

-Y229236D01*

-X473500Y229235D01*

-X474245Y229294D01*

-X474972Y229469D01*

-X475663Y229755D01*

-X476301Y230145D01*

-X476869Y230631D01*

-X477355Y231199D01*

-X477745Y231837D01*

-X478031Y232528D01*

-X478206Y233255D01*

-X478250Y234000D01*

-X478206Y234745D01*

-X478031Y235472D01*

-X477745Y236163D01*

-X477355Y236801D01*

-X476869Y237369D01*

-X476301Y237855D01*

-X475663Y238245D01*

-X474972Y238531D01*

-X474245Y238706D01*

-X473500Y238765D01*

-X473493Y238764D01*

-Y259236D01*

-X473500Y259235D01*

-X474245Y259294D01*

-X474972Y259469D01*

-X475663Y259755D01*

-X476301Y260145D01*

-X476869Y260631D01*

-X477355Y261199D01*

-X477745Y261837D01*

-X478031Y262528D01*

-X478206Y263255D01*

-X478250Y264000D01*

-X478206Y264745D01*

-X478031Y265472D01*

-X477745Y266163D01*

-X477355Y266801D01*

-X476869Y267369D01*

-X476301Y267855D01*

-X475663Y268245D01*

-X474972Y268531D01*

-X474245Y268706D01*

-X473500Y268765D01*

-X473493Y268764D01*

-Y289236D01*

-X473500Y289235D01*

-X474245Y289294D01*

-X474972Y289469D01*

-X475663Y289755D01*

-X476301Y290145D01*

-X476869Y290631D01*

-X477355Y291199D01*

-X477745Y291837D01*

-X478031Y292528D01*

-X478206Y293255D01*

-X478250Y294000D01*

-X478206Y294745D01*

-X478031Y295472D01*

-X477745Y296163D01*

-X477355Y296801D01*

-X476869Y297369D01*

-X476301Y297855D01*

-X475663Y298245D01*

-X474972Y298531D01*

-X474245Y298706D01*

-X473500Y298765D01*

-X473493Y298764D01*

-Y319236D01*

-X473500Y319235D01*

-X474245Y319294D01*

-X474972Y319469D01*

-X475663Y319755D01*

-X476301Y320145D01*

-X476869Y320631D01*

-X477355Y321199D01*

-X477745Y321837D01*

-X478031Y322528D01*

-X478206Y323255D01*

-X478250Y324000D01*

-X478206Y324745D01*

-X478031Y325472D01*

-X477745Y326163D01*

-X477355Y326801D01*

-X476869Y327369D01*

-X476301Y327855D01*

-X475663Y328245D01*

-X474972Y328531D01*

-X474245Y328706D01*

-X473500Y328765D01*

-X473493Y328764D01*

-Y349236D01*

-X473500Y349235D01*

-X474245Y349294D01*

-X474972Y349469D01*

-X475663Y349755D01*

-X476301Y350145D01*

-X476869Y350631D01*

-X477355Y351199D01*

-X477745Y351837D01*

-X478031Y352528D01*

-X478206Y353255D01*

-X478250Y354000D01*

-X478206Y354745D01*

-X478031Y355472D01*

-X477745Y356163D01*

-X477355Y356801D01*

-X476869Y357369D01*

-X476301Y357855D01*

-X475663Y358245D01*

-X474972Y358531D01*

-X474245Y358706D01*

-X473500Y358765D01*

-X473493Y358764D01*

-Y379236D01*

-X473500Y379235D01*

-X474245Y379294D01*

-X474972Y379469D01*

-X475663Y379755D01*

-X476301Y380145D01*

-X476869Y380631D01*

-X477355Y381199D01*

-X477745Y381837D01*

-X478031Y382528D01*

-X478206Y383255D01*

-X478250Y384000D01*

-X478206Y384745D01*

-X478031Y385472D01*

-X477745Y386163D01*

-X477355Y386801D01*

-X476869Y387369D01*

-X476301Y387855D01*

-X475663Y388245D01*

-X474972Y388531D01*

-X474245Y388706D01*

-X473500Y388765D01*

-X473493Y388764D01*

-Y397000D01*

-X478941D01*

-X481441Y394000D01*

-Y41500D01*

-G37*

-G36*

-X473493Y39000D02*X463493D01*

-Y49236D01*

-X463500Y49235D01*

-X464245Y49294D01*

-X464972Y49469D01*

-X465663Y49755D01*

-X466301Y50145D01*

-X466869Y50631D01*

-X467355Y51199D01*

-X467745Y51837D01*

-X468031Y52528D01*

-X468206Y53255D01*

-X468250Y54000D01*

-X468206Y54745D01*

-X468031Y55472D01*

-X467745Y56163D01*

-X467355Y56801D01*

-X466869Y57369D01*

-X466301Y57855D01*

-X465663Y58245D01*

-X464972Y58531D01*

-X464245Y58706D01*

-X463500Y58765D01*

-X463493Y58764D01*

-Y79236D01*

-X463500Y79235D01*

-X464245Y79294D01*

-X464972Y79469D01*

-X465663Y79755D01*

-X466301Y80145D01*

-X466869Y80631D01*

-X467355Y81199D01*

-X467745Y81837D01*

-X468031Y82528D01*

-X468206Y83255D01*

-X468250Y84000D01*

-X468206Y84745D01*

-X468031Y85472D01*

-X467745Y86163D01*

-X467355Y86801D01*

-X466869Y87369D01*

-X466301Y87855D01*

-X465663Y88245D01*

-X464972Y88531D01*

-X464245Y88706D01*

-X463500Y88765D01*

-X463493Y88764D01*

-Y109236D01*

-X463500Y109235D01*

-X464245Y109294D01*

-X464972Y109469D01*

-X465663Y109755D01*

-X466301Y110145D01*

-X466869Y110631D01*

-X467355Y111199D01*

-X467745Y111837D01*

-X468031Y112528D01*

-X468206Y113255D01*

-X468250Y114000D01*

-X468206Y114745D01*

-X468031Y115472D01*

-X467745Y116163D01*

-X467355Y116801D01*

-X466869Y117369D01*

-X466301Y117855D01*

-X465663Y118245D01*

-X464972Y118531D01*

-X464245Y118706D01*

-X463500Y118765D01*

-X463493Y118764D01*

-Y139236D01*

-X463500Y139235D01*

-X464245Y139294D01*

-X464972Y139469D01*

-X465663Y139755D01*

-X466301Y140145D01*

-X466869Y140631D01*

-X467355Y141199D01*

-X467745Y141837D01*

-X468031Y142528D01*

-X468206Y143255D01*

-X468250Y144000D01*

-X468206Y144745D01*

-X468031Y145472D01*

-X467745Y146163D01*

-X467355Y146801D01*

-X466869Y147369D01*

-X466301Y147855D01*

-X465663Y148245D01*

-X464972Y148531D01*

-X464245Y148706D01*

-X463500Y148765D01*

-X463493Y148764D01*

-Y169236D01*

-X463500Y169235D01*

-X464245Y169294D01*

-X464972Y169469D01*

-X465663Y169755D01*

-X466301Y170145D01*

-X466869Y170631D01*

-X467355Y171199D01*

-X467745Y171837D01*

-X468031Y172528D01*

-X468206Y173255D01*

-X468250Y174000D01*

-X468206Y174745D01*

-X468031Y175472D01*

-X467745Y176163D01*

-X467355Y176801D01*

-X466869Y177369D01*

-X466301Y177855D01*

-X465663Y178245D01*

-X464972Y178531D01*

-X464245Y178706D01*

-X463500Y178765D01*

-X463493Y178764D01*

-Y199236D01*

-X463500Y199235D01*

-X464245Y199294D01*

-X464972Y199469D01*

-X465663Y199755D01*

-X466301Y200145D01*

-X466869Y200631D01*

-X467355Y201199D01*

-X467745Y201837D01*

-X468031Y202528D01*

-X468206Y203255D01*

-X468250Y204000D01*

-X468206Y204745D01*

-X468031Y205472D01*

-X467745Y206163D01*

-X467355Y206801D01*

-X466869Y207369D01*

-X466301Y207855D01*

-X465663Y208245D01*

-X464972Y208531D01*

-X464245Y208706D01*

-X463500Y208765D01*

-X463493Y208764D01*

-Y229236D01*

-X463500Y229235D01*

-X464245Y229294D01*

-X464972Y229469D01*

-X465663Y229755D01*

-X466301Y230145D01*

-X466869Y230631D01*

-X467355Y231199D01*

-X467745Y231837D01*

-X468031Y232528D01*

-X468206Y233255D01*

-X468250Y234000D01*

-X468206Y234745D01*

-X468031Y235472D01*

-X467745Y236163D01*

-X467355Y236801D01*

-X466869Y237369D01*

-X466301Y237855D01*

-X465663Y238245D01*

-X464972Y238531D01*

-X464245Y238706D01*

-X463500Y238765D01*

-X463493Y238764D01*

-Y259236D01*

-X463500Y259235D01*

-X464245Y259294D01*

-X464972Y259469D01*

-X465663Y259755D01*

-X466301Y260145D01*

-X466869Y260631D01*

-X467355Y261199D01*

-X467745Y261837D01*

-X468031Y262528D01*

-X468206Y263255D01*

-X468250Y264000D01*

-X468206Y264745D01*

-X468031Y265472D01*

-X467745Y266163D01*

-X467355Y266801D01*

-X466869Y267369D01*

-X466301Y267855D01*

-X465663Y268245D01*

-X464972Y268531D01*

-X464245Y268706D01*

-X463500Y268765D01*

-X463493Y268764D01*

-Y289236D01*

-X463500Y289235D01*

-X464245Y289294D01*

-X464972Y289469D01*

-X465663Y289755D01*

-X466301Y290145D01*

-X466869Y290631D01*

-X467355Y291199D01*

-X467745Y291837D01*

-X468031Y292528D01*

-X468206Y293255D01*

-X468250Y294000D01*

-X468206Y294745D01*

-X468031Y295472D01*

-X467745Y296163D01*

-X467355Y296801D01*

-X466869Y297369D01*

-X466301Y297855D01*

-X465663Y298245D01*

-X464972Y298531D01*

-X464245Y298706D01*

-X463500Y298765D01*

-X463493Y298764D01*

-Y319236D01*

-X463500Y319235D01*

-X464245Y319294D01*

-X464972Y319469D01*

-X465663Y319755D01*

-X466301Y320145D01*

-X466869Y320631D01*

-X467355Y321199D01*

-X467745Y321837D01*

-X468031Y322528D01*

-X468206Y323255D01*

-X468250Y324000D01*

-X468206Y324745D01*

-X468031Y325472D01*

-X467745Y326163D01*

-X467355Y326801D01*

-X466869Y327369D01*

-X466301Y327855D01*

-X465663Y328245D01*

-X464972Y328531D01*

-X464245Y328706D01*

-X463500Y328765D01*

-X463493Y328764D01*

-Y349236D01*

-X463500Y349235D01*

-X464245Y349294D01*

-X464972Y349469D01*

-X465663Y349755D01*

-X466301Y350145D01*

-X466869Y350631D01*

-X467355Y351199D01*

-X467745Y351837D01*

-X468031Y352528D01*

-X468206Y353255D01*

-X468250Y354000D01*

-X468206Y354745D01*

-X468031Y355472D01*

-X467745Y356163D01*

-X467355Y356801D01*

-X466869Y357369D01*

-X466301Y357855D01*

-X465663Y358245D01*

-X464972Y358531D01*

-X464245Y358706D01*

-X463500Y358765D01*

-X463493Y358764D01*

-Y379236D01*

-X463500Y379235D01*

-X464245Y379294D01*

-X464972Y379469D01*

-X465663Y379755D01*

-X466301Y380145D01*

-X466869Y380631D01*

-X467355Y381199D01*

-X467745Y381837D01*

-X468031Y382528D01*

-X468206Y383255D01*

-X468250Y384000D01*

-X468206Y384745D01*

-X468031Y385472D01*

-X467745Y386163D01*

-X467355Y386801D01*

-X466869Y387369D01*

-X466301Y387855D01*

-X465663Y388245D01*

-X464972Y388531D01*

-X464245Y388706D01*

-X463500Y388765D01*

-X463493Y388764D01*

-Y397000D01*

-X473493D01*

-Y388764D01*

-X472755Y388706D01*

-X472028Y388531D01*

-X471337Y388245D01*

-X470699Y387855D01*

-X470131Y387369D01*

-X469645Y386801D01*

-X469255Y386163D01*

-X468969Y385472D01*

-X468794Y384745D01*

-X468735Y384000D01*

-X468794Y383255D01*

-X468969Y382528D01*

-X469255Y381837D01*

-X469645Y381199D01*

-X470131Y380631D01*

-X470699Y380145D01*

-X471337Y379755D01*

-X472028Y379469D01*

-X472755Y379294D01*

-X473493Y379236D01*

-Y358764D01*

-X472755Y358706D01*

-X472028Y358531D01*

-X471337Y358245D01*

-X470699Y357855D01*

-X470131Y357369D01*

-X469645Y356801D01*

-X469255Y356163D01*

-X468969Y355472D01*

-X468794Y354745D01*

-X468735Y354000D01*

-X468794Y353255D01*

-X468969Y352528D01*

-X469255Y351837D01*

-X469645Y351199D01*

-X470131Y350631D01*

-X470699Y350145D01*

-X471337Y349755D01*

-X472028Y349469D01*

-X472755Y349294D01*

-X473493Y349236D01*

-Y328764D01*

-X472755Y328706D01*

-X472028Y328531D01*

-X471337Y328245D01*

-X470699Y327855D01*

-X470131Y327369D01*

-X469645Y326801D01*

-X469255Y326163D01*

-X468969Y325472D01*

-X468794Y324745D01*

-X468735Y324000D01*

-X468794Y323255D01*

-X468969Y322528D01*

-X469255Y321837D01*

-X469645Y321199D01*

-X470131Y320631D01*

-X470699Y320145D01*

-X471337Y319755D01*

-X472028Y319469D01*

-X472755Y319294D01*

-X473493Y319236D01*

-Y298764D01*

-X472755Y298706D01*

-X472028Y298531D01*

-X471337Y298245D01*

-X470699Y297855D01*

-X470131Y297369D01*

-X469645Y296801D01*

-X469255Y296163D01*

-X468969Y295472D01*

-X468794Y294745D01*

-X468735Y294000D01*

-X468794Y293255D01*

-X468969Y292528D01*

-X469255Y291837D01*

-X469645Y291199D01*

-X470131Y290631D01*

-X470699Y290145D01*

-X471337Y289755D01*

-X472028Y289469D01*

-X472755Y289294D01*

-X473493Y289236D01*

-Y268764D01*

-X472755Y268706D01*

-X472028Y268531D01*

-X471337Y268245D01*

-X470699Y267855D01*

-X470131Y267369D01*

-X469645Y266801D01*

-X469255Y266163D01*

-X468969Y265472D01*

-X468794Y264745D01*

-X468735Y264000D01*

-X468794Y263255D01*

-X468969Y262528D01*

-X469255Y261837D01*

-X469645Y261199D01*

-X470131Y260631D01*

-X470699Y260145D01*

-X471337Y259755D01*

-X472028Y259469D01*

-X472755Y259294D01*

-X473493Y259236D01*

-Y238764D01*

-X472755Y238706D01*

-X472028Y238531D01*

-X471337Y238245D01*

-X470699Y237855D01*

-X470131Y237369D01*

-X469645Y236801D01*

-X469255Y236163D01*

-X468969Y235472D01*

-X468794Y234745D01*

-X468735Y234000D01*

-X468794Y233255D01*

-X468969Y232528D01*

-X469255Y231837D01*

-X469645Y231199D01*

-X470131Y230631D01*

-X470699Y230145D01*

-X471337Y229755D01*

-X472028Y229469D01*

-X472755Y229294D01*

-X473493Y229236D01*

-Y208764D01*

-X472755Y208706D01*

-X472028Y208531D01*

-X471337Y208245D01*

-X470699Y207855D01*

-X470131Y207369D01*

-X469645Y206801D01*

-X469255Y206163D01*

-X468969Y205472D01*

-X468794Y204745D01*

-X468735Y204000D01*

-X468794Y203255D01*

-X468969Y202528D01*

-X469255Y201837D01*

-X469645Y201199D01*

-X470131Y200631D01*

-X470699Y200145D01*

-X471337Y199755D01*

-X472028Y199469D01*

-X472755Y199294D01*

-X473493Y199236D01*

-Y178764D01*

-X472755Y178706D01*

-X472028Y178531D01*

-X471337Y178245D01*

-X470699Y177855D01*

-X470131Y177369D01*

-X469645Y176801D01*

-X469255Y176163D01*

-X468969Y175472D01*

-X468794Y174745D01*

-X468735Y174000D01*

-X468794Y173255D01*

-X468969Y172528D01*

-X469255Y171837D01*

-X469645Y171199D01*

-X470131Y170631D01*

-X470699Y170145D01*

-X471337Y169755D01*

-X472028Y169469D01*

-X472755Y169294D01*

-X473493Y169236D01*

-Y148764D01*

-X472755Y148706D01*

-X472028Y148531D01*

-X471337Y148245D01*

-X470699Y147855D01*

-X470131Y147369D01*

-X469645Y146801D01*

-X469255Y146163D01*

-X468969Y145472D01*

-X468794Y144745D01*

-X468735Y144000D01*

-X468794Y143255D01*

-X468969Y142528D01*

-X469255Y141837D01*

-X469645Y141199D01*

-X470131Y140631D01*

-X470699Y140145D01*

-X471337Y139755D01*

-X472028Y139469D01*

-X472755Y139294D01*

-X473493Y139236D01*

-Y118764D01*

-X472755Y118706D01*

-X472028Y118531D01*

-X471337Y118245D01*

-X470699Y117855D01*

-X470131Y117369D01*

-X469645Y116801D01*

-X469255Y116163D01*

-X468969Y115472D01*

-X468794Y114745D01*

-X468735Y114000D01*

-X468794Y113255D01*

-X468969Y112528D01*

-X469255Y111837D01*

-X469645Y111199D01*

-X470131Y110631D01*

-X470699Y110145D01*

-X471337Y109755D01*

-X472028Y109469D01*

-X472755Y109294D01*

-X473493Y109236D01*

-Y88764D01*

-X472755Y88706D01*

-X472028Y88531D01*

-X471337Y88245D01*

-X470699Y87855D01*

-X470131Y87369D01*

-X469645Y86801D01*

-X469255Y86163D01*

-X468969Y85472D01*

-X468794Y84745D01*

-X468735Y84000D01*

-X468794Y83255D01*

-X468969Y82528D01*

-X469255Y81837D01*

-X469645Y81199D01*

-X470131Y80631D01*

-X470699Y80145D01*

-X471337Y79755D01*

-X472028Y79469D01*

-X472755Y79294D01*

-X473493Y79236D01*

-Y58764D01*

-X472755Y58706D01*

-X472028Y58531D01*

-X471337Y58245D01*

-X470699Y57855D01*

-X470131Y57369D01*

-X469645Y56801D01*

-X469255Y56163D01*

-X468969Y55472D01*

-X468794Y54745D01*

-X468735Y54000D01*

-X468794Y53255D01*

-X468969Y52528D01*

-X469255Y51837D01*

-X469645Y51199D01*

-X470131Y50631D01*

-X470699Y50145D01*

-X471337Y49755D01*

-X472028Y49469D01*

-X472755Y49294D01*

-X473493Y49236D01*

-Y39000D01*

-G37*

-G36*

-X463493D02*X458437D01*

-Y161192D01*

-X458441Y161191D01*

-X458880Y161226D01*

-X459309Y161329D01*

-X459716Y161497D01*

-X460092Y161728D01*

-X460427Y162014D01*

-X460713Y162349D01*

-X460944Y162725D01*

-X461112Y163132D01*

-X461215Y163561D01*

-X461241Y164000D01*

-X461215Y164439D01*

-X461112Y164868D01*

-X460944Y165275D01*

-X460713Y165651D01*

-X460427Y165986D01*

-X460092Y166272D01*

-X459716Y166503D01*

-X459309Y166671D01*

-X458880Y166774D01*

-X458441Y166809D01*

-X458437Y166808D01*

-Y192192D01*

-X458441Y192191D01*

-X458880Y192226D01*

-X459309Y192329D01*

-X459716Y192497D01*

-X460092Y192728D01*

-X460427Y193014D01*

-X460713Y193349D01*

-X460944Y193725D01*

-X461112Y194132D01*

-X461215Y194561D01*

-X461241Y195000D01*

-X461215Y195439D01*

-X461112Y195868D01*

-X460944Y196275D01*

-X460713Y196651D01*

-X460427Y196986D01*

-X460092Y197272D01*

-X459716Y197503D01*

-X459309Y197671D01*

-X458880Y197774D01*

-X458441Y197809D01*

-X458437Y197808D01*

-Y222192D01*

-X458441Y222191D01*

-X458880Y222226D01*

-X459309Y222329D01*

-X459716Y222497D01*

-X460092Y222728D01*

-X460427Y223014D01*

-X460713Y223349D01*

-X460944Y223725D01*

-X461112Y224132D01*

-X461215Y224561D01*

-X461241Y225000D01*

-X461215Y225439D01*

-X461112Y225868D01*

-X460944Y226275D01*

-X460713Y226651D01*

-X460427Y226986D01*

-X460092Y227272D01*

-X459716Y227503D01*

-X459309Y227671D01*

-X458880Y227774D01*

-X458441Y227809D01*

-X458437Y227808D01*

-Y251192D01*

-X458441Y251191D01*

-X458880Y251226D01*

-X459309Y251329D01*

-X459716Y251497D01*

-X460092Y251728D01*

-X460427Y252014D01*

-X460713Y252349D01*

-X460944Y252725D01*

-X461112Y253132D01*

-X461215Y253561D01*

-X461241Y254000D01*

-X461215Y254439D01*

-X461112Y254868D01*

-X460944Y255275D01*

-X460713Y255651D01*

-X460427Y255986D01*

-X460092Y256272D01*

-X459716Y256503D01*

-X459309Y256671D01*

-X458880Y256774D01*

-X458441Y256809D01*

-X458437Y256808D01*

-Y282192D01*

-X458441Y282191D01*

-X458880Y282226D01*

-X459309Y282329D01*

-X459716Y282497D01*

-X460092Y282728D01*

-X460427Y283014D01*

-X460713Y283349D01*

-X460944Y283725D01*

-X461112Y284132D01*

-X461215Y284561D01*

-X461241Y285000D01*

-X461215Y285439D01*

-X461112Y285868D01*

-X460944Y286275D01*

-X460713Y286651D01*

-X460427Y286986D01*

-X460092Y287272D01*

-X459716Y287503D01*

-X459309Y287671D01*

-X458880Y287774D01*

-X458441Y287809D01*

-X458437Y287808D01*

-Y312192D01*

-X458441Y312191D01*

-X458880Y312226D01*

-X459309Y312329D01*

-X459716Y312497D01*

-X460092Y312728D01*

-X460427Y313014D01*

-X460713Y313349D01*

-X460944Y313725D01*

-X461112Y314132D01*

-X461215Y314561D01*

-X461241Y315000D01*

-X461215Y315439D01*

-X461112Y315868D01*

-X460944Y316275D01*

-X460713Y316651D01*

-X460427Y316986D01*

-X460092Y317272D01*

-X459716Y317503D01*

-X459309Y317671D01*

-X458880Y317774D01*

-X458441Y317809D01*

-X458437Y317808D01*

-Y342192D01*

-X458441Y342191D01*

-X458880Y342226D01*

-X459309Y342329D01*

-X459716Y342497D01*

-X460092Y342728D01*

-X460427Y343014D01*

-X460713Y343349D01*

-X460944Y343725D01*

-X461112Y344132D01*

-X461215Y344561D01*

-X461241Y345000D01*

-X461215Y345439D01*

-X461112Y345868D01*

-X460944Y346275D01*

-X460713Y346651D01*

-X460427Y346986D01*

-X460092Y347272D01*

-X459716Y347503D01*

-X459309Y347671D01*

-X458880Y347774D01*

-X458441Y347809D01*

-X458437Y347808D01*

-Y372192D01*

-X458441Y372191D01*

-X458880Y372226D01*

-X459309Y372329D01*

-X459716Y372497D01*

-X460092Y372728D01*

-X460427Y373014D01*

-X460713Y373349D01*

-X460944Y373725D01*

-X461112Y374132D01*

-X461215Y374561D01*

-X461241Y375000D01*

-X461215Y375439D01*

-X461112Y375868D01*

-X460944Y376275D01*

-X460713Y376651D01*

-X460427Y376986D01*

-X460092Y377272D01*

-X459716Y377503D01*

-X459309Y377671D01*

-X458880Y377774D01*

-X458441Y377809D01*

-X458437Y377808D01*

-Y397000D01*

-X463493D01*

-Y388764D01*

-X462755Y388706D01*

-X462028Y388531D01*

-X461337Y388245D01*

-X460699Y387855D01*

-X460131Y387369D01*

-X459645Y386801D01*

-X459255Y386163D01*

-X458969Y385472D01*

-X458794Y384745D01*

-X458735Y384000D01*

-X458794Y383255D01*

-X458969Y382528D01*

-X459255Y381837D01*

-X459645Y381199D01*

-X460131Y380631D01*

-X460699Y380145D01*

-X461337Y379755D01*

-X462028Y379469D01*

-X462755Y379294D01*

-X463493Y379236D01*

-Y358764D01*

-X462755Y358706D01*

-X462028Y358531D01*

-X461337Y358245D01*

-X460699Y357855D01*

-X460131Y357369D01*

-X459645Y356801D01*

-X459255Y356163D01*

-X458969Y355472D01*

-X458794Y354745D01*

-X458735Y354000D01*

-X458794Y353255D01*

-X458969Y352528D01*

-X459255Y351837D01*

-X459645Y351199D01*

-X460131Y350631D01*

-X460699Y350145D01*

-X461337Y349755D01*

-X462028Y349469D01*

-X462755Y349294D01*

-X463493Y349236D01*

-Y328764D01*

-X462755Y328706D01*

-X462028Y328531D01*

-X461337Y328245D01*

-X460699Y327855D01*

-X460131Y327369D01*

-X459645Y326801D01*

-X459255Y326163D01*

-X458969Y325472D01*

-X458794Y324745D01*

-X458735Y324000D01*

-X458794Y323255D01*

-X458969Y322528D01*

-X459255Y321837D01*

-X459645Y321199D01*

-X460131Y320631D01*

-X460699Y320145D01*

-X461337Y319755D01*

-X462028Y319469D01*

-X462755Y319294D01*

-X463493Y319236D01*

-Y298764D01*

-X462755Y298706D01*

-X462028Y298531D01*

-X461337Y298245D01*

-X460699Y297855D01*

-X460131Y297369D01*

-X459645Y296801D01*

-X459255Y296163D01*

-X458969Y295472D01*

-X458794Y294745D01*

-X458735Y294000D01*

-X458794Y293255D01*

-X458969Y292528D01*

-X459255Y291837D01*

-X459645Y291199D01*

-X460131Y290631D01*

-X460699Y290145D01*

-X461337Y289755D01*

-X462028Y289469D01*

-X462755Y289294D01*

-X463493Y289236D01*

-Y268764D01*

-X462755Y268706D01*

-X462028Y268531D01*

-X461337Y268245D01*

-X460699Y267855D01*

-X460131Y267369D01*

-X459645Y266801D01*

-X459255Y266163D01*

-X458969Y265472D01*

-X458794Y264745D01*

-X458735Y264000D01*

-X458794Y263255D01*

-X458969Y262528D01*

-X459255Y261837D01*

-X459645Y261199D01*

-X460131Y260631D01*

-X460699Y260145D01*

-X461337Y259755D01*

-X462028Y259469D01*

-X462755Y259294D01*

-X463493Y259236D01*

-Y238764D01*

-X462755Y238706D01*

-X462028Y238531D01*

-X461337Y238245D01*

-X460699Y237855D01*

-X460131Y237369D01*

-X459645Y236801D01*

-X459255Y236163D01*

-X458969Y235472D01*

-X458794Y234745D01*

-X458735Y234000D01*

-X458794Y233255D01*

-X458969Y232528D01*

-X459255Y231837D01*

-X459645Y231199D01*

-X460131Y230631D01*

-X460699Y230145D01*

-X461337Y229755D01*

-X462028Y229469D01*

-X462755Y229294D01*

-X463493Y229236D01*

-Y208764D01*

-X462755Y208706D01*

-X462028Y208531D01*

-X461337Y208245D01*

-X460699Y207855D01*

-X460131Y207369D01*

-X459645Y206801D01*

-X459255Y206163D01*

-X458969Y205472D01*

-X458794Y204745D01*

-X458735Y204000D01*

-X458794Y203255D01*

-X458969Y202528D01*

-X459255Y201837D01*

-X459645Y201199D01*

-X460131Y200631D01*

-X460699Y200145D01*

-X461337Y199755D01*

-X462028Y199469D01*

-X462755Y199294D01*

-X463493Y199236D01*

-Y178764D01*

-X462755Y178706D01*

-X462028Y178531D01*

-X461337Y178245D01*

-X460699Y177855D01*

-X460131Y177369D01*

-X459645Y176801D01*

-X459255Y176163D01*

-X458969Y175472D01*

-X458794Y174745D01*

-X458735Y174000D01*

-X458794Y173255D01*

-X458969Y172528D01*

-X459255Y171837D01*

-X459645Y171199D01*

-X460131Y170631D01*

-X460699Y170145D01*

-X461337Y169755D01*

-X462028Y169469D01*

-X462755Y169294D01*

-X463493Y169236D01*

-Y148764D01*

-X462755Y148706D01*

-X462028Y148531D01*

-X461337Y148245D01*

-X460699Y147855D01*

-X460131Y147369D01*

-X459645Y146801D01*

-X459255Y146163D01*

-X458969Y145472D01*

-X458794Y144745D01*

-X458735Y144000D01*

-X458794Y143255D01*

-X458969Y142528D01*

-X459255Y141837D01*

-X459645Y141199D01*

-X460131Y140631D01*

-X460699Y140145D01*

-X461337Y139755D01*

-X462028Y139469D01*

-X462755Y139294D01*

-X463493Y139236D01*

-Y118764D01*

-X462755Y118706D01*

-X462028Y118531D01*

-X461337Y118245D01*

-X460699Y117855D01*

-X460131Y117369D01*

-X459645Y116801D01*

-X459255Y116163D01*

-X458969Y115472D01*

-X458794Y114745D01*

-X458735Y114000D01*

-X458794Y113255D01*

-X458969Y112528D01*

-X459255Y111837D01*

-X459645Y111199D01*

-X460131Y110631D01*

-X460699Y110145D01*

-X461337Y109755D01*

-X462028Y109469D01*

-X462755Y109294D01*

-X463493Y109236D01*

-Y88764D01*

-X462755Y88706D01*

-X462028Y88531D01*

-X461337Y88245D01*

-X460699Y87855D01*

-X460131Y87369D01*

-X459645Y86801D01*

-X459255Y86163D01*

-X458969Y85472D01*

-X458794Y84745D01*

-X458735Y84000D01*

-X458794Y83255D01*

-X458969Y82528D01*

-X459255Y81837D01*

-X459645Y81199D01*

-X460131Y80631D01*

-X460699Y80145D01*

-X461337Y79755D01*

-X462028Y79469D01*

-X462755Y79294D01*

-X463493Y79236D01*

-Y58764D01*

-X462755Y58706D01*

-X462028Y58531D01*

-X461337Y58245D01*

-X460699Y57855D01*

-X460131Y57369D01*

-X459645Y56801D01*

-X459255Y56163D01*

-X458969Y55472D01*

-X458794Y54745D01*

-X458735Y54000D01*

-X458794Y53255D01*

-X458969Y52528D01*

-X459255Y51837D01*

-X459645Y51199D01*

-X460131Y50631D01*

-X460699Y50145D01*

-X461337Y49755D01*

-X462028Y49469D01*

-X462755Y49294D01*

-X463493Y49236D01*

-Y39000D01*

-G37*

-G36*

-X457500Y192359D02*X457573Y192329D01*

-X458002Y192226D01*

-X458437Y192192D01*

-Y166808D01*

-X458002Y166774D01*

-X457573Y166671D01*

-X457500Y166641D01*

-Y171498D01*

-X457618Y171507D01*

-X457732Y171535D01*

-X457842Y171580D01*

-X457942Y171641D01*

-X458032Y171718D01*

-X458109Y171808D01*

-X458170Y171908D01*

-X458215Y172018D01*

-X458243Y172132D01*

-X458250Y172250D01*

-Y175750D01*

-X458243Y175868D01*

-X458215Y175982D01*

-X458170Y176092D01*

-X458109Y176192D01*

-X458032Y176282D01*

-X457942Y176359D01*

-X457842Y176420D01*

-X457732Y176465D01*

-X457618Y176493D01*

-X457500Y176502D01*

-Y192359D01*

-G37*

-G36*

-Y222359D02*X457573Y222329D01*

-X458002Y222226D01*

-X458437Y222192D01*

-Y197808D01*

-X458002Y197774D01*

-X457573Y197671D01*

-X457500Y197641D01*

-Y201498D01*

-X457618Y201507D01*

-X457732Y201535D01*

-X457842Y201580D01*

-X457942Y201641D01*

-X458032Y201718D01*

-X458109Y201808D01*

-X458170Y201908D01*

-X458215Y202018D01*

-X458243Y202132D01*

-X458250Y202250D01*

-Y205750D01*

-X458243Y205868D01*

-X458215Y205982D01*

-X458170Y206092D01*

-X458109Y206192D01*

-X458032Y206282D01*

-X457942Y206359D01*

-X457842Y206420D01*

-X457732Y206465D01*

-X457618Y206493D01*

-X457500Y206502D01*

-Y222359D01*

-G37*

-G36*

-Y251359D02*X457573Y251329D01*

-X458002Y251226D01*

-X458437Y251192D01*

-Y227808D01*

-X458002Y227774D01*

-X457573Y227671D01*

-X457500Y227641D01*

-Y231498D01*

-X457618Y231507D01*

-X457732Y231535D01*

-X457842Y231580D01*

-X457942Y231641D01*

-X458032Y231718D01*

-X458109Y231808D01*

-X458170Y231908D01*

-X458215Y232018D01*

-X458243Y232132D01*

-X458250Y232250D01*

-Y235750D01*

-X458243Y235868D01*

-X458215Y235982D01*

-X458170Y236092D01*

-X458109Y236192D01*

-X458032Y236282D01*

-X457942Y236359D01*

-X457842Y236420D01*

-X457732Y236465D01*

-X457618Y236493D01*

-X457500Y236502D01*

-Y251359D01*

-G37*

-G36*

-Y282359D02*X457573Y282329D01*

-X458002Y282226D01*

-X458437Y282192D01*

-Y256808D01*

-X458002Y256774D01*

-X457573Y256671D01*

-X457500Y256641D01*

-Y261498D01*

-X457618Y261507D01*

-X457732Y261535D01*

-X457842Y261580D01*

-X457942Y261641D01*

-X458032Y261718D01*

-X458109Y261808D01*

-X458170Y261908D01*

-X458215Y262018D01*

-X458243Y262132D01*

-X458250Y262250D01*

-Y265750D01*

-X458243Y265868D01*

-X458215Y265982D01*

-X458170Y266092D01*

-X458109Y266192D01*

-X458032Y266282D01*

-X457942Y266359D01*

-X457842Y266420D01*

-X457732Y266465D01*

-X457618Y266493D01*

-X457500Y266502D01*

-Y282359D01*

-G37*

-G36*

-Y312359D02*X457573Y312329D01*

-X458002Y312226D01*

-X458437Y312192D01*

-Y287808D01*

-X458002Y287774D01*

-X457573Y287671D01*

-X457500Y287641D01*

-Y291498D01*

-X457618Y291507D01*

-X457732Y291535D01*

-X457842Y291580D01*

-X457942Y291641D01*

-X458032Y291718D01*

-X458109Y291808D01*

-X458170Y291908D01*

-X458215Y292018D01*

-X458243Y292132D01*

-X458250Y292250D01*

-Y295750D01*

-X458243Y295868D01*

-X458215Y295982D01*

-X458170Y296092D01*

-X458109Y296192D01*

-X458032Y296282D01*

-X457942Y296359D01*

-X457842Y296420D01*

-X457732Y296465D01*

-X457618Y296493D01*

-X457500Y296502D01*

-Y312359D01*

-G37*

-G36*

-Y342359D02*X457573Y342329D01*

-X458002Y342226D01*

-X458437Y342192D01*

-Y317808D01*

-X458002Y317774D01*

-X457573Y317671D01*

-X457500Y317641D01*

-Y321498D01*

-X457618Y321507D01*

-X457732Y321535D01*

-X457842Y321580D01*

-X457942Y321641D01*

-X458032Y321718D01*

-X458109Y321808D01*

-X458170Y321908D01*

-X458215Y322018D01*

-X458243Y322132D01*

-X458250Y322250D01*

-Y325750D01*

-X458243Y325868D01*

-X458215Y325982D01*

-X458170Y326092D01*

-X458109Y326192D01*

-X458032Y326282D01*

-X457942Y326359D01*

-X457842Y326420D01*

-X457732Y326465D01*

-X457618Y326493D01*

-X457500Y326502D01*

-Y342359D01*

-G37*

-G36*

-Y372359D02*X457573Y372329D01*

-X458002Y372226D01*

-X458437Y372192D01*

-Y347808D01*

-X458002Y347774D01*

-X457573Y347671D01*

-X457500Y347641D01*

-Y351498D01*

-X457618Y351507D01*

-X457732Y351535D01*

-X457842Y351580D01*

-X457942Y351641D01*

-X458032Y351718D01*

-X458109Y351808D01*

-X458170Y351908D01*

-X458215Y352018D01*

-X458243Y352132D01*

-X458250Y352250D01*

-Y355750D01*

-X458243Y355868D01*

-X458215Y355982D01*

-X458170Y356092D01*

-X458109Y356192D01*

-X458032Y356282D01*

-X457942Y356359D01*

-X457842Y356420D01*

-X457732Y356465D01*

-X457618Y356493D01*

-X457500Y356502D01*

-Y372359D01*

-G37*

-G36*

-Y397000D02*X458437D01*

-Y377808D01*

-X458002Y377774D01*

-X457573Y377671D01*

-X457500Y377641D01*

-Y381498D01*

-X457618Y381507D01*

-X457732Y381535D01*

-X457842Y381580D01*

-X457942Y381641D01*

-X458032Y381718D01*

-X458109Y381808D01*

-X458170Y381908D01*

-X458215Y382018D01*

-X458243Y382132D01*

-X458250Y382250D01*

-Y385750D01*

-X458243Y385868D01*

-X458215Y385982D01*

-X458170Y386092D01*

-X458109Y386192D01*

-X458032Y386282D01*

-X457942Y386359D01*

-X457842Y386420D01*

-X457732Y386465D01*

-X457618Y386493D01*

-X457500Y386502D01*

-Y397000D01*

-G37*

-G36*

-X458437Y39000D02*X457500D01*

-Y51498D01*

-X457618Y51507D01*

-X457732Y51535D01*

-X457842Y51580D01*

-X457942Y51641D01*

-X458032Y51718D01*

-X458109Y51808D01*

-X458170Y51908D01*

-X458215Y52018D01*

-X458243Y52132D01*

-X458250Y52250D01*

-Y55750D01*

-X458243Y55868D01*

-X458215Y55982D01*

-X458170Y56092D01*

-X458109Y56192D01*

-X458032Y56282D01*

-X457942Y56359D01*

-X457842Y56420D01*

-X457732Y56465D01*

-X457618Y56493D01*

-X457500Y56502D01*

-Y81498D01*

-X457618Y81507D01*

-X457732Y81535D01*

-X457842Y81580D01*

-X457942Y81641D01*

-X458032Y81718D01*

-X458109Y81808D01*

-X458170Y81908D01*

-X458215Y82018D01*

-X458243Y82132D01*

-X458250Y82250D01*

-Y85750D01*

-X458243Y85868D01*

-X458215Y85982D01*

-X458170Y86092D01*

-X458109Y86192D01*

-X458032Y86282D01*

-X457942Y86359D01*

-X457842Y86420D01*

-X457732Y86465D01*

-X457618Y86493D01*

-X457500Y86502D01*

-Y111498D01*

-X457618Y111507D01*

-X457732Y111535D01*

-X457842Y111580D01*

-X457942Y111641D01*

-X458032Y111718D01*

-X458109Y111808D01*

-X458170Y111908D01*

-X458215Y112018D01*

-X458243Y112132D01*

-X458250Y112250D01*

-Y115750D01*

-X458243Y115868D01*

-X458215Y115982D01*

-X458170Y116092D01*

-X458109Y116192D01*

-X458032Y116282D01*

-X457942Y116359D01*

-X457842Y116420D01*

-X457732Y116465D01*

-X457618Y116493D01*

-X457500Y116502D01*

-Y141498D01*

-X457618Y141507D01*

-X457732Y141535D01*

-X457842Y141580D01*

-X457942Y141641D01*

-X458032Y141718D01*

-X458109Y141808D01*

-X458170Y141908D01*

-X458215Y142018D01*

-X458243Y142132D01*

-X458250Y142250D01*

-Y145750D01*

-X458243Y145868D01*

-X458215Y145982D01*

-X458170Y146092D01*

-X458109Y146192D01*

-X458032Y146282D01*

-X457942Y146359D01*

-X457842Y146420D01*

-X457732Y146465D01*

-X457618Y146493D01*

-X457500Y146502D01*

-Y161359D01*

-X457573Y161329D01*

-X458002Y161226D01*

-X458437Y161192D01*

-Y39000D01*

-G37*

-G36*

-X457500D02*X453500D01*

-Y49250D01*

-X455250D01*

-X455368Y49257D01*

-X455482Y49285D01*

-X455592Y49330D01*

-X455692Y49391D01*

-X455782Y49468D01*

-X455859Y49558D01*

-X455920Y49658D01*

-X455965Y49768D01*

-X455993Y49882D01*

-X456002Y50000D01*

-X455993Y50118D01*

-X455965Y50232D01*

-X455920Y50342D01*

-X455859Y50442D01*

-X455782Y50532D01*

-X455692Y50609D01*

-X455592Y50670D01*

-X455482Y50715D01*

-X455368Y50743D01*

-X455250Y50750D01*

-X453500D01*

-Y57250D01*

-X455250D01*

-X455368Y57257D01*

-X455482Y57285D01*

-X455592Y57330D01*

-X455692Y57391D01*

-X455782Y57468D01*

-X455859Y57558D01*

-X455920Y57658D01*

-X455965Y57768D01*

-X455993Y57882D01*

-X456002Y58000D01*

-X455993Y58118D01*

-X455965Y58232D01*

-X455920Y58342D01*

-X455859Y58442D01*

-X455782Y58532D01*

-X455692Y58609D01*

-X455592Y58670D01*

-X455482Y58715D01*

-X455368Y58743D01*

-X455250Y58750D01*

-X453500D01*

-Y79250D01*

-X455250D01*

-X455368Y79257D01*

-X455482Y79285D01*

-X455592Y79330D01*

-X455692Y79391D01*

-X455782Y79468D01*

-X455859Y79558D01*

-X455920Y79658D01*

-X455965Y79768D01*

-X455993Y79882D01*

-X456002Y80000D01*

-X455993Y80118D01*

-X455965Y80232D01*

-X455920Y80342D01*

-X455859Y80442D01*

-X455782Y80532D01*

-X455692Y80609D01*

-X455592Y80670D01*

-X455482Y80715D01*

-X455368Y80743D01*

-X455250Y80750D01*

-X453500D01*

-Y87250D01*

-X455250D01*

-X455368Y87257D01*

-X455482Y87285D01*

-X455592Y87330D01*

-X455692Y87391D01*

-X455782Y87468D01*

-X455859Y87558D01*

-X455920Y87658D01*

-X455965Y87768D01*

-X455993Y87882D01*

-X456002Y88000D01*

-X455993Y88118D01*

-X455965Y88232D01*

-X455920Y88342D01*

-X455859Y88442D01*

-X455782Y88532D01*

-X455692Y88609D01*

-X455592Y88670D01*

-X455482Y88715D01*

-X455368Y88743D01*

-X455250Y88750D01*

-X453500D01*

-Y109250D01*

-X455250D01*

-X455368Y109257D01*

-X455482Y109285D01*

-X455592Y109330D01*

-X455692Y109391D01*

-X455782Y109468D01*

-X455859Y109558D01*

-X455920Y109658D01*

-X455965Y109768D01*

-X455993Y109882D01*

-X456002Y110000D01*

-X455993Y110118D01*

-X455965Y110232D01*

-X455920Y110342D01*

-X455859Y110442D01*

-X455782Y110532D01*

-X455692Y110609D01*

-X455592Y110670D01*

-X455482Y110715D01*

-X455368Y110743D01*

-X455250Y110750D01*

-X453500D01*

-Y117250D01*

-X455250D01*

-X455368Y117257D01*

-X455482Y117285D01*

-X455592Y117330D01*

-X455692Y117391D01*

-X455782Y117468D01*

-X455859Y117558D01*

-X455920Y117658D01*

-X455965Y117768D01*

-X455993Y117882D01*

-X456002Y118000D01*

-X455993Y118118D01*

-X455965Y118232D01*

-X455920Y118342D01*

-X455859Y118442D01*

-X455782Y118532D01*

-X455692Y118609D01*

-X455592Y118670D01*

-X455482Y118715D01*

-X455368Y118743D01*

-X455250Y118750D01*

-X453500D01*

-Y139250D01*

-X455250D01*

-X455368Y139257D01*

-X455482Y139285D01*

-X455592Y139330D01*

-X455692Y139391D01*

-X455782Y139468D01*

-X455859Y139558D01*

-X455920Y139658D01*

-X455965Y139768D01*

-X455993Y139882D01*

-X456002Y140000D01*

-X455993Y140118D01*

-X455965Y140232D01*

-X455920Y140342D01*

-X455859Y140442D01*

-X455782Y140532D01*

-X455692Y140609D01*

-X455592Y140670D01*

-X455482Y140715D01*

-X455368Y140743D01*

-X455250Y140750D01*

-X453500D01*

-Y147250D01*

-X455250D01*

-X455368Y147257D01*

-X455482Y147285D01*

-X455592Y147330D01*

-X455692Y147391D01*

-X455782Y147468D01*

-X455859Y147558D01*

-X455920Y147658D01*

-X455965Y147768D01*

-X455993Y147882D01*

-X456002Y148000D01*

-X455993Y148118D01*

-X455965Y148232D01*

-X455920Y148342D01*

-X455859Y148442D01*

-X455782Y148532D01*

-X455692Y148609D01*

-X455592Y148670D01*

-X455482Y148715D01*

-X455368Y148743D01*

-X455250Y148750D01*

-X453500D01*

-Y169250D01*

-X455250D01*

-X455368Y169257D01*

-X455482Y169285D01*

-X455592Y169330D01*

-X455692Y169391D01*

-X455782Y169468D01*

-X455859Y169558D01*

-X455920Y169658D01*

-X455965Y169768D01*

-X455993Y169882D01*

-X456002Y170000D01*

-X455993Y170118D01*

-X455965Y170232D01*

-X455920Y170342D01*

-X455859Y170442D01*

-X455782Y170532D01*

-X455692Y170609D01*

-X455592Y170670D01*

-X455482Y170715D01*

-X455368Y170743D01*

-X455250Y170750D01*

-X453500D01*

-Y177250D01*

-X455250D01*

-X455368Y177257D01*

-X455482Y177285D01*

-X455592Y177330D01*

-X455692Y177391D01*

-X455782Y177468D01*

-X455859Y177558D01*

-X455920Y177658D01*

-X455965Y177768D01*

-X455993Y177882D01*

-X456002Y178000D01*

-X455993Y178118D01*

-X455965Y178232D01*

-X455920Y178342D01*

-X455859Y178442D01*

-X455782Y178532D01*

-X455692Y178609D01*

-X455592Y178670D01*

-X455482Y178715D01*

-X455368Y178743D01*

-X455250Y178750D01*

-X453500D01*

-Y199250D01*

-X455250D01*

-X455368Y199257D01*

-X455482Y199285D01*

-X455592Y199330D01*

-X455692Y199391D01*

-X455782Y199468D01*

-X455859Y199558D01*

-X455920Y199658D01*

-X455965Y199768D01*

-X455993Y199882D01*

-X456002Y200000D01*

-X455993Y200118D01*

-X455965Y200232D01*

-X455920Y200342D01*

-X455859Y200442D01*

-X455782Y200532D01*

-X455692Y200609D01*

-X455592Y200670D01*

-X455482Y200715D01*

-X455368Y200743D01*

-X455250Y200750D01*

-X453500D01*

-Y207250D01*

-X455250D01*

-X455368Y207257D01*

-X455482Y207285D01*

-X455592Y207330D01*

-X455692Y207391D01*

-X455782Y207468D01*

-X455859Y207558D01*

-X455920Y207658D01*

-X455965Y207768D01*

-X455993Y207882D01*

-X456002Y208000D01*

-X455993Y208118D01*

-X455965Y208232D01*

-X455920Y208342D01*

-X455859Y208442D01*

-X455782Y208532D01*

-X455692Y208609D01*

-X455592Y208670D01*

-X455482Y208715D01*

-X455368Y208743D01*

-X455250Y208750D01*

-X453500D01*

-Y229250D01*

-X455250D01*

-X455368Y229257D01*

-X455482Y229285D01*

-X455592Y229330D01*

-X455692Y229391D01*

-X455782Y229468D01*

-X455859Y229558D01*

-X455920Y229658D01*

-X455965Y229768D01*

-X455993Y229882D01*

-X456002Y230000D01*

-X455993Y230118D01*

-X455965Y230232D01*

-X455920Y230342D01*

-X455859Y230442D01*

-X455782Y230532D01*

-X455692Y230609D01*

-X455592Y230670D01*

-X455482Y230715D01*

-X455368Y230743D01*

-X455250Y230750D01*

-X453500D01*

-Y237250D01*

-X455250D01*

-X455368Y237257D01*

-X455482Y237285D01*

-X455592Y237330D01*

-X455692Y237391D01*

-X455782Y237468D01*

-X455859Y237558D01*

-X455920Y237658D01*

-X455965Y237768D01*

-X455993Y237882D01*

-X456002Y238000D01*

-X455993Y238118D01*

-X455965Y238232D01*

-X455920Y238342D01*

-X455859Y238442D01*

-X455782Y238532D01*

-X455692Y238609D01*

-X455592Y238670D01*

-X455482Y238715D01*

-X455368Y238743D01*

-X455250Y238750D01*

-X453500D01*

-Y259250D01*

-X455250D01*

-X455368Y259257D01*

-X455482Y259285D01*

-X455592Y259330D01*

-X455692Y259391D01*

-X455782Y259468D01*

-X455859Y259558D01*

-X455920Y259658D01*

-X455965Y259768D01*

-X455993Y259882D01*

-X456002Y260000D01*

-X455993Y260118D01*

-X455965Y260232D01*

-X455920Y260342D01*

-X455859Y260442D01*

-X455782Y260532D01*

-X455692Y260609D01*

-X455592Y260670D01*

-X455482Y260715D01*

-X455368Y260743D01*

-X455250Y260750D01*

-X453500D01*

-Y267250D01*

-X455250D01*

-X455368Y267257D01*

-X455482Y267285D01*

-X455592Y267330D01*

-X455692Y267391D01*

-X455782Y267468D01*

-X455859Y267558D01*

-X455920Y267658D01*

-X455965Y267768D01*

-X455993Y267882D01*

-X456002Y268000D01*

-X455993Y268118D01*

-X455965Y268232D01*

-X455920Y268342D01*

-X455859Y268442D01*

-X455782Y268532D01*

-X455692Y268609D01*

-X455592Y268670D01*

-X455482Y268715D01*

-X455368Y268743D01*

-X455250Y268750D01*

-X453500D01*

-Y289250D01*

-X455250D01*

-X455368Y289257D01*

-X455482Y289285D01*

-X455592Y289330D01*

-X455692Y289391D01*

-X455782Y289468D01*

-X455859Y289558D01*

-X455920Y289658D01*

-X455965Y289768D01*

-X455993Y289882D01*

-X456002Y290000D01*

-X455993Y290118D01*

-X455965Y290232D01*

-X455920Y290342D01*

-X455859Y290442D01*

-X455782Y290532D01*

-X455692Y290609D01*

-X455592Y290670D01*

-X455482Y290715D01*

-X455368Y290743D01*

-X455250Y290750D01*

-X453500D01*

-Y297250D01*

-X455250D01*

-X455368Y297257D01*

-X455482Y297285D01*

-X455592Y297330D01*

-X455692Y297391D01*

-X455782Y297468D01*

-X455859Y297558D01*

-X455920Y297658D01*

-X455965Y297768D01*

-X455993Y297882D01*

-X456002Y298000D01*

-X455993Y298118D01*

-X455965Y298232D01*

-X455920Y298342D01*

-X455859Y298442D01*

-X455782Y298532D01*

-X455692Y298609D01*

-X455592Y298670D01*

-X455482Y298715D01*

-X455368Y298743D01*

-X455250Y298750D01*

-X453500D01*

-Y319250D01*

-X455250D01*

-X455368Y319257D01*

-X455482Y319285D01*

-X455592Y319330D01*

-X455692Y319391D01*

-X455782Y319468D01*

-X455859Y319558D01*

-X455920Y319658D01*

-X455965Y319768D01*

-X455993Y319882D01*

-X456002Y320000D01*

-X455993Y320118D01*

-X455965Y320232D01*

-X455920Y320342D01*

-X455859Y320442D01*

-X455782Y320532D01*

-X455692Y320609D01*

-X455592Y320670D01*

-X455482Y320715D01*

-X455368Y320743D01*

-X455250Y320750D01*

-X453500D01*

-Y327250D01*

-X455250D01*

-X455368Y327257D01*

-X455482Y327285D01*

-X455592Y327330D01*

-X455692Y327391D01*

-X455782Y327468D01*

-X455859Y327558D01*

-X455920Y327658D01*

-X455965Y327768D01*

-X455993Y327882D01*

-X456002Y328000D01*

-X455993Y328118D01*

-X455965Y328232D01*

-X455920Y328342D01*

-X455859Y328442D01*

-X455782Y328532D01*

-X455692Y328609D01*

-X455592Y328670D01*

-X455482Y328715D01*

-X455368Y328743D01*

-X455250Y328750D01*

-X453500D01*

-Y349250D01*

-X455250D01*

-X455368Y349257D01*

-X455482Y349285D01*

-X455592Y349330D01*

-X455692Y349391D01*

-X455782Y349468D01*

-X455859Y349558D01*

-X455920Y349658D01*

-X455965Y349768D01*

-X455993Y349882D01*

-X456002Y350000D01*

-X455993Y350118D01*

-X455965Y350232D01*

-X455920Y350342D01*

-X455859Y350442D01*

-X455782Y350532D01*

-X455692Y350609D01*

-X455592Y350670D01*

-X455482Y350715D01*

-X455368Y350743D01*

-X455250Y350750D01*

-X453500D01*

-Y357250D01*

-X455250D01*

-X455368Y357257D01*

-X455482Y357285D01*

-X455592Y357330D01*

-X455692Y357391D01*

-X455782Y357468D01*

-X455859Y357558D01*

-X455920Y357658D01*

-X455965Y357768D01*

-X455993Y357882D01*

-X456002Y358000D01*

-X455993Y358118D01*

-X455965Y358232D01*

-X455920Y358342D01*

-X455859Y358442D01*

-X455782Y358532D01*

-X455692Y358609D01*

-X455592Y358670D01*

-X455482Y358715D01*

-X455368Y358743D01*

-X455250Y358750D01*

-X453500D01*

-Y379250D01*

-X455250D01*

-X455368Y379257D01*

-X455482Y379285D01*

-X455592Y379330D01*

-X455692Y379391D01*

-X455782Y379468D01*

-X455859Y379558D01*

-X455920Y379658D01*

-X455965Y379768D01*

-X455993Y379882D01*

-X456002Y380000D01*

-X455993Y380118D01*

-X455965Y380232D01*

-X455920Y380342D01*

-X455859Y380442D01*

-X455782Y380532D01*

-X455692Y380609D01*

-X455592Y380670D01*

-X455482Y380715D01*

-X455368Y380743D01*

-X455250Y380750D01*

-X453500D01*

-Y387250D01*

-X455250D01*

-X455368Y387257D01*

-X455482Y387285D01*

-X455592Y387330D01*

-X455692Y387391D01*

-X455782Y387468D01*

-X455859Y387558D01*

-X455920Y387658D01*

-X455965Y387768D01*

-X455993Y387882D01*

-X456002Y388000D01*

-X455993Y388118D01*

-X455965Y388232D01*

-X455920Y388342D01*

-X455859Y388442D01*

-X455782Y388532D01*

-X455692Y388609D01*

-X455592Y388670D01*

-X455482Y388715D01*

-X455368Y388743D01*

-X455250Y388750D01*

-X453500D01*

-Y397000D01*

-X457500D01*

-Y386502D01*

-X457382Y386493D01*

-X457268Y386465D01*

-X457158Y386420D01*

-X457058Y386359D01*

-X456968Y386282D01*

-X456891Y386192D01*

-X456830Y386092D01*

-X456785Y385982D01*

-X456757Y385868D01*

-X456750Y385750D01*

-Y382250D01*

-X456757Y382132D01*

-X456785Y382018D01*

-X456830Y381908D01*

-X456891Y381808D01*

-X456968Y381718D01*

-X457058Y381641D01*

-X457158Y381580D01*

-X457268Y381535D01*

-X457382Y381507D01*

-X457500Y381498D01*

-Y377641D01*

-X457166Y377503D01*

-X456790Y377272D01*

-X456455Y376986D01*

-X456169Y376651D01*

-X455938Y376275D01*

-X455770Y375868D01*

-X455667Y375439D01*

-X455632Y375000D01*

-X455667Y374561D01*

-X455770Y374132D01*

-X455938Y373725D01*

-X456169Y373349D01*

-X456455Y373014D01*

-X456790Y372728D01*

-X457166Y372497D01*

-X457500Y372359D01*

-Y356502D01*

-X457382Y356493D01*

-X457268Y356465D01*

-X457158Y356420D01*

-X457058Y356359D01*

-X456968Y356282D01*

-X456891Y356192D01*

-X456830Y356092D01*

-X456785Y355982D01*

-X456757Y355868D01*

-X456750Y355750D01*

-Y352250D01*

-X456757Y352132D01*

-X456785Y352018D01*

-X456830Y351908D01*

-X456891Y351808D01*

-X456968Y351718D01*

-X457058Y351641D01*

-X457158Y351580D01*

-X457268Y351535D01*

-X457382Y351507D01*

-X457500Y351498D01*

-Y347641D01*

-X457166Y347503D01*

-X456790Y347272D01*

-X456455Y346986D01*

-X456169Y346651D01*

-X455938Y346275D01*

-X455770Y345868D01*

-X455667Y345439D01*

-X455632Y345000D01*

-X455667Y344561D01*

-X455770Y344132D01*

-X455938Y343725D01*

-X456169Y343349D01*

-X456455Y343014D01*

-X456790Y342728D01*

-X457166Y342497D01*

-X457500Y342359D01*

-Y326502D01*

-X457382Y326493D01*

-X457268Y326465D01*

-X457158Y326420D01*

-X457058Y326359D01*

-X456968Y326282D01*

-X456891Y326192D01*

-X456830Y326092D01*

-X456785Y325982D01*

-X456757Y325868D01*

-X456750Y325750D01*

-Y322250D01*

-X456757Y322132D01*

-X456785Y322018D01*

-X456830Y321908D01*

-X456891Y321808D01*

-X456968Y321718D01*

-X457058Y321641D01*

-X457158Y321580D01*

-X457268Y321535D01*

-X457382Y321507D01*

-X457500Y321498D01*

-Y317641D01*

-X457166Y317503D01*

-X456790Y317272D01*

-X456455Y316986D01*

-X456169Y316651D01*

-X455938Y316275D01*

-X455770Y315868D01*

-X455667Y315439D01*

-X455632Y315000D01*

-X455667Y314561D01*

-X455770Y314132D01*

-X455938Y313725D01*

-X456169Y313349D01*

-X456455Y313014D01*

-X456790Y312728D01*

-X457166Y312497D01*

-X457500Y312359D01*

-Y296502D01*

-X457382Y296493D01*

-X457268Y296465D01*

-X457158Y296420D01*

-X457058Y296359D01*

-X456968Y296282D01*

-X456891Y296192D01*

-X456830Y296092D01*

-X456785Y295982D01*

-X456757Y295868D01*

-X456750Y295750D01*

-Y292250D01*

-X456757Y292132D01*

-X456785Y292018D01*

-X456830Y291908D01*

-X456891Y291808D01*

-X456968Y291718D01*

-X457058Y291641D01*

-X457158Y291580D01*

-X457268Y291535D01*

-X457382Y291507D01*

-X457500Y291498D01*

-Y287641D01*

-X457166Y287503D01*

-X456790Y287272D01*

-X456455Y286986D01*

-X456169Y286651D01*

-X455938Y286275D01*

-X455770Y285868D01*

-X455667Y285439D01*

-X455632Y285000D01*

-X455667Y284561D01*

-X455770Y284132D01*

-X455938Y283725D01*

-X456169Y283349D01*

-X456455Y283014D01*

-X456790Y282728D01*

-X457166Y282497D01*

-X457500Y282359D01*

-Y266502D01*

-X457382Y266493D01*

-X457268Y266465D01*

-X457158Y266420D01*

-X457058Y266359D01*

-X456968Y266282D01*

-X456891Y266192D01*

-X456830Y266092D01*

-X456785Y265982D01*

-X456757Y265868D01*

-X456750Y265750D01*

-Y262250D01*

-X456757Y262132D01*

-X456785Y262018D01*

-X456830Y261908D01*

-X456891Y261808D01*

-X456968Y261718D01*

-X457058Y261641D01*

-X457158Y261580D01*

-X457268Y261535D01*

-X457382Y261507D01*

-X457500Y261498D01*

-Y256641D01*

-X457166Y256503D01*

-X456790Y256272D01*

-X456455Y255986D01*

-X456169Y255651D01*

-X455938Y255275D01*

-X455770Y254868D01*

-X455667Y254439D01*

-X455632Y254000D01*

-X455667Y253561D01*

-X455770Y253132D01*

-X455938Y252725D01*

-X456169Y252349D01*

-X456455Y252014D01*

-X456790Y251728D01*

-X457166Y251497D01*

-X457500Y251359D01*

-Y236502D01*

-X457382Y236493D01*

-X457268Y236465D01*

-X457158Y236420D01*

-X457058Y236359D01*

-X456968Y236282D01*

-X456891Y236192D01*

-X456830Y236092D01*

-X456785Y235982D01*

-X456757Y235868D01*

-X456750Y235750D01*

-Y232250D01*

-X456757Y232132D01*

-X456785Y232018D01*

-X456830Y231908D01*

-X456891Y231808D01*

-X456968Y231718D01*

-X457058Y231641D01*

-X457158Y231580D01*

-X457268Y231535D01*

-X457382Y231507D01*

-X457500Y231498D01*

-Y227641D01*

-X457166Y227503D01*

-X456790Y227272D01*

-X456455Y226986D01*

-X456169Y226651D01*

-X455938Y226275D01*

-X455770Y225868D01*

-X455667Y225439D01*

-X455632Y225000D01*

-X455667Y224561D01*

-X455770Y224132D01*

-X455938Y223725D01*

-X456169Y223349D01*

-X456455Y223014D01*

-X456790Y222728D01*

-X457166Y222497D01*

-X457500Y222359D01*

-Y206502D01*

-X457382Y206493D01*

-X457268Y206465D01*

-X457158Y206420D01*

-X457058Y206359D01*

-X456968Y206282D01*

-X456891Y206192D01*

-X456830Y206092D01*

-X456785Y205982D01*

-X456757Y205868D01*

-X456750Y205750D01*

-Y202250D01*

-X456757Y202132D01*

-X456785Y202018D01*

-X456830Y201908D01*

-X456891Y201808D01*

-X456968Y201718D01*

-X457058Y201641D01*

-X457158Y201580D01*

-X457268Y201535D01*

-X457382Y201507D01*

-X457500Y201498D01*

-Y197641D01*

-X457166Y197503D01*

-X456790Y197272D01*

-X456455Y196986D01*

-X456169Y196651D01*

-X455938Y196275D01*

-X455770Y195868D01*

-X455667Y195439D01*

-X455632Y195000D01*

-X455667Y194561D01*

-X455770Y194132D01*

-X455938Y193725D01*

-X456169Y193349D01*

-X456455Y193014D01*

-X456790Y192728D01*

-X457166Y192497D01*

-X457500Y192359D01*

-Y176502D01*

-X457382Y176493D01*

-X457268Y176465D01*

-X457158Y176420D01*

-X457058Y176359D01*

-X456968Y176282D01*

-X456891Y176192D01*

-X456830Y176092D01*

-X456785Y175982D01*

-X456757Y175868D01*

-X456750Y175750D01*

-Y172250D01*

-X456757Y172132D01*

-X456785Y172018D01*

-X456830Y171908D01*

-X456891Y171808D01*

-X456968Y171718D01*

-X457058Y171641D01*

-X457158Y171580D01*

-X457268Y171535D01*

-X457382Y171507D01*

-X457500Y171498D01*

-Y166641D01*

-X457166Y166503D01*

-X456790Y166272D01*

-X456455Y165986D01*

-X456169Y165651D01*

-X455938Y165275D01*

-X455770Y164868D01*

-X455667Y164439D01*

-X455632Y164000D01*

-X455667Y163561D01*

-X455770Y163132D01*

-X455938Y162725D01*

-X456169Y162349D01*

-X456455Y162014D01*

-X456790Y161728D01*

-X457166Y161497D01*

-X457500Y161359D01*

-Y146502D01*

-X457382Y146493D01*

-X457268Y146465D01*

-X457158Y146420D01*

-X457058Y146359D01*

-X456968Y146282D01*

-X456891Y146192D01*

-X456830Y146092D01*

-X456785Y145982D01*

-X456757Y145868D01*

-X456750Y145750D01*

-Y142250D01*

-X456757Y142132D01*

-X456785Y142018D01*

-X456830Y141908D01*

-X456891Y141808D01*

-X456968Y141718D01*

-X457058Y141641D01*

-X457158Y141580D01*

-X457268Y141535D01*

-X457382Y141507D01*

-X457500Y141498D01*

-Y116502D01*

-X457382Y116493D01*

-X457268Y116465D01*

-X457158Y116420D01*

-X457058Y116359D01*

-X456968Y116282D01*

-X456891Y116192D01*

-X456830Y116092D01*

-X456785Y115982D01*

-X456757Y115868D01*

-X456750Y115750D01*

-Y112250D01*

-X456757Y112132D01*

-X456785Y112018D01*

-X456830Y111908D01*

-X456891Y111808D01*

-X456968Y111718D01*

-X457058Y111641D01*

-X457158Y111580D01*

-X457268Y111535D01*

-X457382Y111507D01*

-X457500Y111498D01*

-Y86502D01*

-X457382Y86493D01*

-X457268Y86465D01*

-X457158Y86420D01*

-X457058Y86359D01*

-X456968Y86282D01*

-X456891Y86192D01*

-X456830Y86092D01*

-X456785Y85982D01*

-X456757Y85868D01*

-X456750Y85750D01*

-Y82250D01*

-X456757Y82132D01*

-X456785Y82018D01*

-X456830Y81908D01*

-X456891Y81808D01*

-X456968Y81718D01*

-X457058Y81641D01*

-X457158Y81580D01*

-X457268Y81535D01*

-X457382Y81507D01*

-X457500Y81498D01*

-Y56502D01*

-X457382Y56493D01*

-X457268Y56465D01*

-X457158Y56420D01*

-X457058Y56359D01*

-X456968Y56282D01*

-X456891Y56192D01*

-X456830Y56092D01*

-X456785Y55982D01*

-X456757Y55868D01*

-X456750Y55750D01*

-Y52250D01*

-X456757Y52132D01*

-X456785Y52018D01*

-X456830Y51908D01*

-X456891Y51808D01*

-X456968Y51718D01*

-X457058Y51641D01*

-X457158Y51580D01*

-X457268Y51535D01*

-X457382Y51507D01*

-X457500Y51498D01*

-Y39000D01*

-G37*

-G36*

-X453500D02*X449500D01*

-Y51498D01*

-X449618Y51507D01*

-X449732Y51535D01*

-X449842Y51580D01*

-X449942Y51641D01*

-X450032Y51718D01*

-X450109Y51808D01*

-X450170Y51908D01*

-X450215Y52018D01*

-X450243Y52132D01*

-X450250Y52250D01*

-Y55750D01*

-X450243Y55868D01*

-X450215Y55982D01*

-X450170Y56092D01*

-X450109Y56192D01*

-X450032Y56282D01*

-X449942Y56359D01*

-X449842Y56420D01*

-X449732Y56465D01*

-X449618Y56493D01*

-X449500Y56502D01*

-Y81498D01*

-X449618Y81507D01*

-X449732Y81535D01*

-X449842Y81580D01*

-X449942Y81641D01*

-X450032Y81718D01*

-X450109Y81808D01*

-X450170Y81908D01*

-X450215Y82018D01*

-X450243Y82132D01*

-X450250Y82250D01*

-Y85750D01*

-X450243Y85868D01*

-X450215Y85982D01*

-X450170Y86092D01*

-X450109Y86192D01*

-X450032Y86282D01*

-X449942Y86359D01*

-X449842Y86420D01*

-X449732Y86465D01*

-X449618Y86493D01*

-X449500Y86502D01*

-Y111498D01*

-X449618Y111507D01*

-X449732Y111535D01*

-X449842Y111580D01*

-X449942Y111641D01*

-X450032Y111718D01*

-X450109Y111808D01*

-X450170Y111908D01*

-X450215Y112018D01*

-X450243Y112132D01*

-X450250Y112250D01*

-Y115750D01*

-X450243Y115868D01*

-X450215Y115982D01*

-X450170Y116092D01*

-X450109Y116192D01*

-X450032Y116282D01*

-X449942Y116359D01*

-X449842Y116420D01*

-X449732Y116465D01*

-X449618Y116493D01*

-X449500Y116502D01*

-Y141498D01*

-X449618Y141507D01*

-X449732Y141535D01*

-X449842Y141580D01*

-X449942Y141641D01*

-X450032Y141718D01*

-X450109Y141808D01*

-X450170Y141908D01*

-X450215Y142018D01*

-X450243Y142132D01*

-X450250Y142250D01*

-Y145750D01*

-X450243Y145868D01*

-X450215Y145982D01*

-X450170Y146092D01*

-X450109Y146192D01*

-X450032Y146282D01*

-X449942Y146359D01*

-X449842Y146420D01*

-X449732Y146465D01*

-X449618Y146493D01*

-X449500Y146502D01*

-Y171498D01*

-X449618Y171507D01*

-X449732Y171535D01*

-X449842Y171580D01*

-X449942Y171641D01*

-X450032Y171718D01*

-X450109Y171808D01*

-X450170Y171908D01*

-X450215Y172018D01*

-X450243Y172132D01*

-X450250Y172250D01*

-Y175750D01*

-X450243Y175868D01*

-X450215Y175982D01*

-X450170Y176092D01*

-X450109Y176192D01*

-X450032Y176282D01*

-X449942Y176359D01*

-X449842Y176420D01*

-X449732Y176465D01*

-X449618Y176493D01*

-X449500Y176502D01*

-Y201498D01*

-X449618Y201507D01*

-X449732Y201535D01*

-X449842Y201580D01*

-X449942Y201641D01*

-X450032Y201718D01*

-X450109Y201808D01*

-X450170Y201908D01*

-X450215Y202018D01*

-X450243Y202132D01*

-X450250Y202250D01*

-Y205750D01*

-X450243Y205868D01*

-X450215Y205982D01*

-X450170Y206092D01*

-X450109Y206192D01*

-X450032Y206282D01*

-X449942Y206359D01*

-X449842Y206420D01*

-X449732Y206465D01*

-X449618Y206493D01*

-X449500Y206502D01*

-Y231498D01*

-X449618Y231507D01*

-X449732Y231535D01*

-X449842Y231580D01*

-X449942Y231641D01*

-X450032Y231718D01*

-X450109Y231808D01*

-X450170Y231908D01*

-X450215Y232018D01*

-X450243Y232132D01*

-X450250Y232250D01*

-Y235750D01*

-X450243Y235868D01*

-X450215Y235982D01*

-X450170Y236092D01*

-X450109Y236192D01*

-X450032Y236282D01*

-X449942Y236359D01*

-X449842Y236420D01*

-X449732Y236465D01*

-X449618Y236493D01*

-X449500Y236502D01*

-Y261498D01*

-X449618Y261507D01*

-X449732Y261535D01*

-X449842Y261580D01*

-X449942Y261641D01*

-X450032Y261718D01*

-X450109Y261808D01*

-X450170Y261908D01*

-X450215Y262018D01*

-X450243Y262132D01*

-X450250Y262250D01*

-Y265750D01*

-X450243Y265868D01*

-X450215Y265982D01*

-X450170Y266092D01*

-X450109Y266192D01*

-X450032Y266282D01*

-X449942Y266359D01*

-X449842Y266420D01*

-X449732Y266465D01*

-X449618Y266493D01*

-X449500Y266502D01*

-Y291498D01*

-X449618Y291507D01*

-X449732Y291535D01*

-X449842Y291580D01*

-X449942Y291641D01*

-X450032Y291718D01*

-X450109Y291808D01*

-X450170Y291908D01*

-X450215Y292018D01*

-X450243Y292132D01*

-X450250Y292250D01*

-Y295750D01*

-X450243Y295868D01*

-X450215Y295982D01*

-X450170Y296092D01*

-X450109Y296192D01*

-X450032Y296282D01*

-X449942Y296359D01*

-X449842Y296420D01*

-X449732Y296465D01*

-X449618Y296493D01*

-X449500Y296502D01*

-Y321498D01*

-X449618Y321507D01*

-X449732Y321535D01*

-X449842Y321580D01*

-X449942Y321641D01*

-X450032Y321718D01*

-X450109Y321808D01*

-X450170Y321908D01*

-X450215Y322018D01*

-X450243Y322132D01*

-X450250Y322250D01*

-Y325750D01*

-X450243Y325868D01*

-X450215Y325982D01*

-X450170Y326092D01*

-X450109Y326192D01*

-X450032Y326282D01*

-X449942Y326359D01*

-X449842Y326420D01*

-X449732Y326465D01*

-X449618Y326493D01*

-X449500Y326502D01*

-Y351498D01*

-X449618Y351507D01*

-X449732Y351535D01*

-X449842Y351580D01*

-X449942Y351641D01*

-X450032Y351718D01*

-X450109Y351808D01*

-X450170Y351908D01*

-X450215Y352018D01*

-X450243Y352132D01*

-X450250Y352250D01*

-Y355750D01*

-X450243Y355868D01*

-X450215Y355982D01*

-X450170Y356092D01*

-X450109Y356192D01*

-X450032Y356282D01*

-X449942Y356359D01*

-X449842Y356420D01*

-X449732Y356465D01*

-X449618Y356493D01*

-X449500Y356502D01*

-Y381498D01*

-X449618Y381507D01*

-X449732Y381535D01*

-X449842Y381580D01*

-X449942Y381641D01*

-X450032Y381718D01*

-X450109Y381808D01*

-X450170Y381908D01*

-X450215Y382018D01*

-X450243Y382132D01*

-X450250Y382250D01*

-Y385750D01*

-X450243Y385868D01*

-X450215Y385982D01*

-X450170Y386092D01*

-X450109Y386192D01*

-X450032Y386282D01*

-X449942Y386359D01*

-X449842Y386420D01*

-X449732Y386465D01*

-X449618Y386493D01*

-X449500Y386502D01*

-Y397000D01*

-X453500D01*

-Y388750D01*

-X451750D01*

-X451632Y388743D01*

-X451518Y388715D01*

-X451408Y388670D01*

-X451308Y388609D01*

-X451218Y388532D01*

-X451141Y388442D01*

-X451080Y388342D01*

-X451035Y388232D01*

-X451007Y388118D01*

-X450998Y388000D01*

-X451007Y387882D01*

-X451035Y387768D01*

-X451080Y387658D01*

-X451141Y387558D01*

-X451218Y387468D01*

-X451308Y387391D01*

-X451408Y387330D01*

-X451518Y387285D01*

-X451632Y387257D01*

-X451750Y387250D01*

-X453500D01*

-Y380750D01*

-X451750D01*

-X451632Y380743D01*

-X451518Y380715D01*

-X451408Y380670D01*

-X451308Y380609D01*

-X451218Y380532D01*

-X451141Y380442D01*

-X451080Y380342D01*

-X451035Y380232D01*

-X451007Y380118D01*

-X450998Y380000D01*

-X451007Y379882D01*

-X451035Y379768D01*

-X451080Y379658D01*

-X451141Y379558D01*

-X451218Y379468D01*

-X451308Y379391D01*

-X451408Y379330D01*

-X451518Y379285D01*

-X451632Y379257D01*

-X451750Y379250D01*

-X453500D01*

-Y358750D01*

-X451750D01*

-X451632Y358743D01*

-X451518Y358715D01*

-X451408Y358670D01*

-X451308Y358609D01*

-X451218Y358532D01*

-X451141Y358442D01*

-X451080Y358342D01*

-X451035Y358232D01*

-X451007Y358118D01*

-X450998Y358000D01*

-X451007Y357882D01*

-X451035Y357768D01*

-X451080Y357658D01*

-X451141Y357558D01*

-X451218Y357468D01*

-X451308Y357391D01*

-X451408Y357330D01*

-X451518Y357285D01*

-X451632Y357257D01*

-X451750Y357250D01*

-X453500D01*

-Y350750D01*

-X451750D01*

-X451632Y350743D01*

-X451518Y350715D01*

-X451408Y350670D01*

-X451308Y350609D01*

-X451218Y350532D01*

-X451141Y350442D01*

-X451080Y350342D01*

-X451035Y350232D01*

-X451007Y350118D01*

-X450998Y350000D01*

-X451007Y349882D01*

-X451035Y349768D01*

-X451080Y349658D01*

-X451141Y349558D01*

-X451218Y349468D01*

-X451308Y349391D01*

-X451408Y349330D01*

-X451518Y349285D01*

-X451632Y349257D01*

-X451750Y349250D01*

-X453500D01*

-Y328750D01*

-X451750D01*

-X451632Y328743D01*

-X451518Y328715D01*

-X451408Y328670D01*

-X451308Y328609D01*

-X451218Y328532D01*

-X451141Y328442D01*

-X451080Y328342D01*

-X451035Y328232D01*

-X451007Y328118D01*

-X450998Y328000D01*

-X451007Y327882D01*

-X451035Y327768D01*

-X451080Y327658D01*

-X451141Y327558D01*

-X451218Y327468D01*

-X451308Y327391D01*

-X451408Y327330D01*

-X451518Y327285D01*

-X451632Y327257D01*

-X451750Y327250D01*

-X453500D01*

-Y320750D01*

-X451750D01*

-X451632Y320743D01*

-X451518Y320715D01*

-X451408Y320670D01*

-X451308Y320609D01*

-X451218Y320532D01*

-X451141Y320442D01*

-X451080Y320342D01*

-X451035Y320232D01*

-X451007Y320118D01*

-X450998Y320000D01*

-X451007Y319882D01*

-X451035Y319768D01*

-X451080Y319658D01*

-X451141Y319558D01*

-X451218Y319468D01*

-X451308Y319391D01*

-X451408Y319330D01*

-X451518Y319285D01*

-X451632Y319257D01*

-X451750Y319250D01*

-X453500D01*

-Y298750D01*

-X451750D01*

-X451632Y298743D01*

-X451518Y298715D01*

-X451408Y298670D01*

-X451308Y298609D01*

-X451218Y298532D01*

-X451141Y298442D01*

-X451080Y298342D01*

-X451035Y298232D01*

-X451007Y298118D01*

-X450998Y298000D01*

-X451007Y297882D01*

-X451035Y297768D01*

-X451080Y297658D01*

-X451141Y297558D01*

-X451218Y297468D01*

-X451308Y297391D01*

-X451408Y297330D01*

-X451518Y297285D01*

-X451632Y297257D01*

-X451750Y297250D01*

-X453500D01*

-Y290750D01*

-X451750D01*

-X451632Y290743D01*

-X451518Y290715D01*

-X451408Y290670D01*

-X451308Y290609D01*

-X451218Y290532D01*

-X451141Y290442D01*

-X451080Y290342D01*

-X451035Y290232D01*

-X451007Y290118D01*

-X450998Y290000D01*

-X451007Y289882D01*

-X451035Y289768D01*

-X451080Y289658D01*

-X451141Y289558D01*

-X451218Y289468D01*

-X451308Y289391D01*

-X451408Y289330D01*

-X451518Y289285D01*

-X451632Y289257D01*

-X451750Y289250D01*

-X453500D01*

-Y268750D01*

-X451750D01*

-X451632Y268743D01*

-X451518Y268715D01*

-X451408Y268670D01*

-X451308Y268609D01*

-X451218Y268532D01*

-X451141Y268442D01*

-X451080Y268342D01*

-X451035Y268232D01*

-X451007Y268118D01*

-X450998Y268000D01*

-X451007Y267882D01*

-X451035Y267768D01*

-X451080Y267658D01*

-X451141Y267558D01*

-X451218Y267468D01*

-X451308Y267391D01*

-X451408Y267330D01*

-X451518Y267285D01*

-X451632Y267257D01*

-X451750Y267250D01*

-X453500D01*

-Y260750D01*

-X451750D01*

-X451632Y260743D01*

-X451518Y260715D01*

-X451408Y260670D01*

-X451308Y260609D01*

-X451218Y260532D01*

-X451141Y260442D01*

-X451080Y260342D01*

-X451035Y260232D01*

-X451007Y260118D01*

-X450998Y260000D01*

-X451007Y259882D01*

-X451035Y259768D01*

-X451080Y259658D01*

-X451141Y259558D01*

-X451218Y259468D01*

-X451308Y259391D01*

-X451408Y259330D01*

-X451518Y259285D01*

-X451632Y259257D01*

-X451750Y259250D01*

-X453500D01*

-Y238750D01*

-X451750D01*

-X451632Y238743D01*

-X451518Y238715D01*

-X451408Y238670D01*

-X451308Y238609D01*

-X451218Y238532D01*

-X451141Y238442D01*

-X451080Y238342D01*

-X451035Y238232D01*

-X451007Y238118D01*

-X450998Y238000D01*

-X451007Y237882D01*

-X451035Y237768D01*

-X451080Y237658D01*

-X451141Y237558D01*

-X451218Y237468D01*

-X451308Y237391D01*

-X451408Y237330D01*

-X451518Y237285D01*

-X451632Y237257D01*

-X451750Y237250D01*

-X453500D01*

-Y230750D01*

-X451750D01*

-X451632Y230743D01*

-X451518Y230715D01*

-X451408Y230670D01*

-X451308Y230609D01*

-X451218Y230532D01*

-X451141Y230442D01*

-X451080Y230342D01*

-X451035Y230232D01*

-X451007Y230118D01*

-X450998Y230000D01*

-X451007Y229882D01*

-X451035Y229768D01*

-X451080Y229658D01*

-X451141Y229558D01*

-X451218Y229468D01*

-X451308Y229391D01*

-X451408Y229330D01*

-X451518Y229285D01*

-X451632Y229257D01*

-X451750Y229250D01*

-X453500D01*

-Y208750D01*

-X451750D01*

-X451632Y208743D01*

-X451518Y208715D01*

-X451408Y208670D01*

-X451308Y208609D01*

-X451218Y208532D01*

-X451141Y208442D01*

-X451080Y208342D01*

-X451035Y208232D01*

-X451007Y208118D01*

-X450998Y208000D01*

-X451007Y207882D01*

-X451035Y207768D01*

-X451080Y207658D01*

-X451141Y207558D01*

-X451218Y207468D01*

-X451308Y207391D01*

-X451408Y207330D01*

-X451518Y207285D01*

-X451632Y207257D01*

-X451750Y207250D01*

-X453500D01*

-Y200750D01*

-X451750D01*

-X451632Y200743D01*

-X451518Y200715D01*

-X451408Y200670D01*

-X451308Y200609D01*

-X451218Y200532D01*

-X451141Y200442D01*

-X451080Y200342D01*

-X451035Y200232D01*

-X451007Y200118D01*

-X450998Y200000D01*

-X451007Y199882D01*

-X451035Y199768D01*

-X451080Y199658D01*

-X451141Y199558D01*

-X451218Y199468D01*

-X451308Y199391D01*

-X451408Y199330D01*

-X451518Y199285D01*

-X451632Y199257D01*

-X451750Y199250D01*

-X453500D01*

-Y178750D01*

-X451750D01*

-X451632Y178743D01*

-X451518Y178715D01*

-X451408Y178670D01*

-X451308Y178609D01*

-X451218Y178532D01*

-X451141Y178442D01*

-X451080Y178342D01*

-X451035Y178232D01*

-X451007Y178118D01*

-X450998Y178000D01*

-X451007Y177882D01*

-X451035Y177768D01*

-X451080Y177658D01*

-X451141Y177558D01*

-X451218Y177468D01*

-X451308Y177391D01*

-X451408Y177330D01*

-X451518Y177285D01*

-X451632Y177257D01*

-X451750Y177250D01*

-X453500D01*

-Y170750D01*

-X451750D01*

-X451632Y170743D01*

-X451518Y170715D01*

-X451408Y170670D01*

-X451308Y170609D01*

-X451218Y170532D01*

-X451141Y170442D01*

-X451080Y170342D01*

-X451035Y170232D01*

-X451007Y170118D01*

-X450998Y170000D01*

-X451007Y169882D01*

-X451035Y169768D01*

-X451080Y169658D01*

-X451141Y169558D01*

-X451218Y169468D01*

-X451308Y169391D01*

-X451408Y169330D01*

-X451518Y169285D01*

-X451632Y169257D01*

-X451750Y169250D01*

-X453500D01*

-Y148750D01*

-X451750D01*

-X451632Y148743D01*

-X451518Y148715D01*

-X451408Y148670D01*

-X451308Y148609D01*

-X451218Y148532D01*

-X451141Y148442D01*

-X451080Y148342D01*

-X451035Y148232D01*

-X451007Y148118D01*

-X450998Y148000D01*

-X451007Y147882D01*

-X451035Y147768D01*

-X451080Y147658D01*

-X451141Y147558D01*

-X451218Y147468D01*

-X451308Y147391D01*

-X451408Y147330D01*

-X451518Y147285D01*

-X451632Y147257D01*

-X451750Y147250D01*

-X453500D01*

-Y140750D01*

-X451750D01*

-X451632Y140743D01*

-X451518Y140715D01*

-X451408Y140670D01*

-X451308Y140609D01*

-X451218Y140532D01*

-X451141Y140442D01*

-X451080Y140342D01*

-X451035Y140232D01*

-X451007Y140118D01*

-X450998Y140000D01*

-X451007Y139882D01*

-X451035Y139768D01*

-X451080Y139658D01*

-X451141Y139558D01*

-X451218Y139468D01*

-X451308Y139391D01*

-X451408Y139330D01*

-X451518Y139285D01*

-X451632Y139257D01*

-X451750Y139250D01*

-X453500D01*

-Y118750D01*

-X451750D01*

-X451632Y118743D01*

-X451518Y118715D01*

-X451408Y118670D01*

-X451308Y118609D01*

-X451218Y118532D01*

-X451141Y118442D01*

-X451080Y118342D01*

-X451035Y118232D01*

-X451007Y118118D01*

-X450998Y118000D01*

-X451007Y117882D01*

-X451035Y117768D01*

-X451080Y117658D01*

-X451141Y117558D01*

-X451218Y117468D01*

-X451308Y117391D01*

-X451408Y117330D01*

-X451518Y117285D01*

-X451632Y117257D01*

-X451750Y117250D01*

-X453500D01*

-Y110750D01*

-X451750D01*

-X451632Y110743D01*

-X451518Y110715D01*

-X451408Y110670D01*

-X451308Y110609D01*

-X451218Y110532D01*

-X451141Y110442D01*

-X451080Y110342D01*

-X451035Y110232D01*

-X451007Y110118D01*

-X450998Y110000D01*

-X451007Y109882D01*

-X451035Y109768D01*

-X451080Y109658D01*

-X451141Y109558D01*

-X451218Y109468D01*

-X451308Y109391D01*

-X451408Y109330D01*

-X451518Y109285D01*

-X451632Y109257D01*

-X451750Y109250D01*

-X453500D01*

-Y88750D01*

-X451750D01*

-X451632Y88743D01*

-X451518Y88715D01*

-X451408Y88670D01*

-X451308Y88609D01*

-X451218Y88532D01*

-X451141Y88442D01*

-X451080Y88342D01*

-X451035Y88232D01*

-X451007Y88118D01*

-X450998Y88000D01*

-X451007Y87882D01*

-X451035Y87768D01*

-X451080Y87658D01*

-X451141Y87558D01*

-X451218Y87468D01*

-X451308Y87391D01*

-X451408Y87330D01*

-X451518Y87285D01*

-X451632Y87257D01*

-X451750Y87250D01*

-X453500D01*

-Y80750D01*

-X451750D01*

-X451632Y80743D01*

-X451518Y80715D01*

-X451408Y80670D01*

-X451308Y80609D01*

-X451218Y80532D01*

-X451141Y80442D01*

-X451080Y80342D01*

-X451035Y80232D01*

-X451007Y80118D01*

-X450998Y80000D01*

-X451007Y79882D01*

-X451035Y79768D01*

-X451080Y79658D01*

-X451141Y79558D01*

-X451218Y79468D01*

-X451308Y79391D01*

-X451408Y79330D01*

-X451518Y79285D01*

-X451632Y79257D01*

-X451750Y79250D01*

-X453500D01*

-Y58750D01*

-X451750D01*

-X451632Y58743D01*

-X451518Y58715D01*

-X451408Y58670D01*

-X451308Y58609D01*

-X451218Y58532D01*

-X451141Y58442D01*

-X451080Y58342D01*

-X451035Y58232D01*

-X451007Y58118D01*

-X450998Y58000D01*

-X451007Y57882D01*

-X451035Y57768D01*

-X451080Y57658D01*

-X451141Y57558D01*

-X451218Y57468D01*

-X451308Y57391D01*

-X451408Y57330D01*

-X451518Y57285D01*

-X451632Y57257D01*

-X451750Y57250D01*

-X453500D01*

-Y50750D01*

-X451750D01*

-X451632Y50743D01*

-X451518Y50715D01*

-X451408Y50670D01*

-X451308Y50609D01*

-X451218Y50532D01*

-X451141Y50442D01*

-X451080Y50342D01*

-X451035Y50232D01*

-X451007Y50118D01*

-X450998Y50000D01*

-X451007Y49882D01*

-X451035Y49768D01*

-X451080Y49658D01*

-X451141Y49558D01*

-X451218Y49468D01*

-X451308Y49391D01*

-X451408Y49330D01*

-X451518Y49285D01*

-X451632Y49257D01*

-X451750Y49250D01*

-X453500D01*

-Y39000D01*

-G37*

-G36*

-X449500D02*X440446D01*

-Y54695D01*

-X440449Y54694D01*

-X440731Y54717D01*

-X441007Y54783D01*

-X441269Y54891D01*

-X441510Y55039D01*

-X441726Y55223D01*

-X441910Y55439D01*

-X442058Y55680D01*

-X442166Y55942D01*

-X442232Y56218D01*

-X442249Y56500D01*

-X442232Y56782D01*

-X442166Y57058D01*

-X442058Y57320D01*

-X441910Y57561D01*

-X441726Y57777D01*

-X441510Y57961D01*

-X441269Y58109D01*

-X441007Y58217D01*

-X440731Y58283D01*

-X440449Y58306D01*

-X440446Y58305D01*

-Y70000D01*

-X447441D01*

-X447773Y99532D01*

-X448092Y99728D01*

-X448427Y100014D01*

-X448713Y100349D01*

-X448944Y100725D01*

-X449112Y101132D01*

-X449215Y101561D01*

-X449241Y102000D01*

-X449215Y102439D01*

-X449112Y102868D01*

-X448944Y103275D01*

-X448713Y103651D01*

-X448427Y103986D01*

-X448092Y104272D01*

-X447828Y104434D01*

-X448441Y159000D01*

-X440446D01*

-Y170721D01*

-X440855Y171199D01*

-X441245Y171837D01*

-X441531Y172528D01*

-X441706Y173255D01*

-X441750Y174000D01*

-X441706Y174745D01*

-X441531Y175472D01*

-X441245Y176163D01*

-X440855Y176801D01*

-X440446Y177279D01*

-Y200721D01*

-X440855Y201199D01*

-X441245Y201837D01*

-X441531Y202528D01*

-X441706Y203255D01*

-X441750Y204000D01*

-X441706Y204745D01*

-X441531Y205472D01*

-X441245Y206163D01*

-X440855Y206801D01*

-X440446Y207279D01*

-Y230721D01*

-X440855Y231199D01*

-X441245Y231837D01*

-X441531Y232528D01*

-X441706Y233255D01*

-X441750Y234000D01*

-X441706Y234745D01*

-X441531Y235472D01*

-X441245Y236163D01*

-X440855Y236801D01*

-X440446Y237279D01*

-Y260721D01*

-X440855Y261199D01*

-X441245Y261837D01*

-X441531Y262528D01*

-X441706Y263255D01*

-X441750Y264000D01*

-X441706Y264745D01*

-X441531Y265472D01*

-X441245Y266163D01*

-X440855Y266801D01*

-X440446Y267279D01*

-Y290721D01*

-X440855Y291199D01*

-X441245Y291837D01*

-X441531Y292528D01*

-X441706Y293255D01*

-X441750Y294000D01*

-X441706Y294745D01*

-X441531Y295472D01*

-X441245Y296163D01*

-X440855Y296801D01*

-X440446Y297279D01*

-Y320721D01*

-X440855Y321199D01*

-X441245Y321837D01*

-X441531Y322528D01*

-X441706Y323255D01*

-X441750Y324000D01*

-X441706Y324745D01*

-X441531Y325472D01*

-X441245Y326163D01*

-X440855Y326801D01*

-X440446Y327279D01*

-Y350721D01*

-X440855Y351199D01*

-X441245Y351837D01*

-X441531Y352528D01*

-X441706Y353255D01*

-X441750Y354000D01*

-X441706Y354745D01*

-X441531Y355472D01*

-X441245Y356163D01*

-X440855Y356801D01*

-X440446Y357279D01*

-Y380721D01*

-X440855Y381199D01*

-X441245Y381837D01*

-X441531Y382528D01*

-X441706Y383255D01*

-X441750Y384000D01*

-X441706Y384745D01*

-X441531Y385472D01*

-X441245Y386163D01*

-X440855Y386801D01*

-X440446Y387279D01*

-Y397000D01*

-X449500D01*

-Y386502D01*

-X449382Y386493D01*

-X449268Y386465D01*

-X449158Y386420D01*

-X449058Y386359D01*

-X448968Y386282D01*

-X448891Y386192D01*

-X448830Y386092D01*

-X448785Y385982D01*

-X448757Y385868D01*

-X448750Y385750D01*

-Y382250D01*

-X448757Y382132D01*

-X448785Y382018D01*

-X448830Y381908D01*

-X448891Y381808D01*

-X448968Y381718D01*

-X449058Y381641D01*

-X449158Y381580D01*

-X449268Y381535D01*

-X449382Y381507D01*

-X449500Y381498D01*

-Y356502D01*

-X449382Y356493D01*

-X449268Y356465D01*

-X449158Y356420D01*

-X449058Y356359D01*

-X448968Y356282D01*

-X448891Y356192D01*

-X448830Y356092D01*

-X448785Y355982D01*

-X448757Y355868D01*

-X448750Y355750D01*

-Y352250D01*

-X448757Y352132D01*

-X448785Y352018D01*

-X448830Y351908D01*

-X448891Y351808D01*

-X448968Y351718D01*

-X449058Y351641D01*

-X449158Y351580D01*

-X449268Y351535D01*

-X449382Y351507D01*

-X449500Y351498D01*

-Y326502D01*

-X449382Y326493D01*

-X449268Y326465D01*

-X449158Y326420D01*

-X449058Y326359D01*

-X448968Y326282D01*

-X448891Y326192D01*

-X448830Y326092D01*

-X448785Y325982D01*

-X448757Y325868D01*

-X448750Y325750D01*

-Y322250D01*

-X448757Y322132D01*

-X448785Y322018D01*

-X448830Y321908D01*

-X448891Y321808D01*

-X448968Y321718D01*

-X449058Y321641D01*

-X449158Y321580D01*

-X449268Y321535D01*

-X449382Y321507D01*

-X449500Y321498D01*

-Y296502D01*

-X449382Y296493D01*

-X449268Y296465D01*

-X449158Y296420D01*

-X449058Y296359D01*

-X448968Y296282D01*

-X448891Y296192D01*

-X448830Y296092D01*

-X448785Y295982D01*

-X448757Y295868D01*

-X448750Y295750D01*

-Y292250D01*

-X448757Y292132D01*

-X448785Y292018D01*

-X448830Y291908D01*

-X448891Y291808D01*

-X448968Y291718D01*

-X449058Y291641D01*

-X449158Y291580D01*

-X449268Y291535D01*

-X449382Y291507D01*

-X449500Y291498D01*

-Y266502D01*

-X449382Y266493D01*

-X449268Y266465D01*

-X449158Y266420D01*

-X449058Y266359D01*

-X448968Y266282D01*

-X448891Y266192D01*

-X448830Y266092D01*

-X448785Y265982D01*

-X448757Y265868D01*

-X448750Y265750D01*

-Y262250D01*

-X448757Y262132D01*

-X448785Y262018D01*

-X448830Y261908D01*

-X448891Y261808D01*

-X448968Y261718D01*

-X449058Y261641D01*

-X449158Y261580D01*

-X449268Y261535D01*

-X449382Y261507D01*

-X449500Y261498D01*

-Y236502D01*

-X449382Y236493D01*

-X449268Y236465D01*

-X449158Y236420D01*

-X449058Y236359D01*

-X448968Y236282D01*

-X448891Y236192D01*

-X448830Y236092D01*

-X448785Y235982D01*

-X448757Y235868D01*

-X448750Y235750D01*

-Y232250D01*

-X448757Y232132D01*

-X448785Y232018D01*

-X448830Y231908D01*

-X448891Y231808D01*

-X448968Y231718D01*

-X449058Y231641D01*

-X449158Y231580D01*

-X449268Y231535D01*

-X449382Y231507D01*

-X449500Y231498D01*

-Y206502D01*

-X449382Y206493D01*

-X449268Y206465D01*

-X449158Y206420D01*

-X449058Y206359D01*

-X448968Y206282D01*

-X448891Y206192D01*

-X448830Y206092D01*

-X448785Y205982D01*

-X448757Y205868D01*

-X448750Y205750D01*

-Y202250D01*

-X448757Y202132D01*

-X448785Y202018D01*

-X448830Y201908D01*

-X448891Y201808D01*

-X448968Y201718D01*

-X449058Y201641D01*

-X449158Y201580D01*

-X449268Y201535D01*

-X449382Y201507D01*

-X449500Y201498D01*

-Y176502D01*

-X449382Y176493D01*

-X449268Y176465D01*

-X449158Y176420D01*

-X449058Y176359D01*

-X448968Y176282D01*

-X448891Y176192D01*

-X448830Y176092D01*

-X448785Y175982D01*

-X448757Y175868D01*

-X448750Y175750D01*

-Y172250D01*

-X448757Y172132D01*

-X448785Y172018D01*

-X448830Y171908D01*

-X448891Y171808D01*

-X448968Y171718D01*

-X449058Y171641D01*

-X449158Y171580D01*

-X449268Y171535D01*

-X449382Y171507D01*

-X449500Y171498D01*

-Y146502D01*

-X449382Y146493D01*

-X449268Y146465D01*

-X449158Y146420D01*

-X449058Y146359D01*

-X448968Y146282D01*

-X448891Y146192D01*

-X448830Y146092D01*

-X448785Y145982D01*

-X448757Y145868D01*

-X448750Y145750D01*

-Y142250D01*

-X448757Y142132D01*

-X448785Y142018D01*

-X448830Y141908D01*

-X448891Y141808D01*

-X448968Y141718D01*

-X449058Y141641D01*

-X449158Y141580D01*

-X449268Y141535D01*

-X449382Y141507D01*

-X449500Y141498D01*

-Y116502D01*

-X449382Y116493D01*

-X449268Y116465D01*

-X449158Y116420D01*

-X449058Y116359D01*

-X448968Y116282D01*

-X448891Y116192D01*

-X448830Y116092D01*

-X448785Y115982D01*

-X448757Y115868D01*

-X448750Y115750D01*

-Y112250D01*

-X448757Y112132D01*

-X448785Y112018D01*

-X448830Y111908D01*

-X448891Y111808D01*

-X448968Y111718D01*

-X449058Y111641D01*

-X449158Y111580D01*

-X449268Y111535D01*

-X449382Y111507D01*

-X449500Y111498D01*

-Y86502D01*

-X449382Y86493D01*

-X449268Y86465D01*

-X449158Y86420D01*

-X449058Y86359D01*

-X448968Y86282D01*

-X448891Y86192D01*

-X448830Y86092D01*

-X448785Y85982D01*

-X448757Y85868D01*

-X448750Y85750D01*

-Y82250D01*

-X448757Y82132D01*

-X448785Y82018D01*

-X448830Y81908D01*

-X448891Y81808D01*

-X448968Y81718D01*

-X449058Y81641D01*

-X449158Y81580D01*

-X449268Y81535D01*

-X449382Y81507D01*

-X449500Y81498D01*

-Y56502D01*

-X449382Y56493D01*

-X449268Y56465D01*

-X449158Y56420D01*

-X449058Y56359D01*

-X448968Y56282D01*

-X448891Y56192D01*

-X448830Y56092D01*

-X448785Y55982D01*

-X448757Y55868D01*

-X448750Y55750D01*

-Y52250D01*

-X448757Y52132D01*

-X448785Y52018D01*

-X448830Y51908D01*

-X448891Y51808D01*

-X448968Y51718D01*

-X449058Y51641D01*

-X449158Y51580D01*

-X449268Y51535D01*

-X449382Y51507D01*

-X449500Y51498D01*

-Y39000D01*

-G37*

-G36*

-X440446Y387279D02*X440369Y387369D01*

-X439801Y387855D01*

-X439163Y388245D01*

-X438472Y388531D01*

-X437745Y388706D01*

-X437000Y388765D01*

-X436255Y388706D01*

-X435528Y388531D01*

-X434837Y388245D01*

-X434446Y388006D01*

-Y397000D01*

-X440446D01*

-Y387279D01*

-G37*

-G36*

-Y357279D02*X440369Y357369D01*

-X439801Y357855D01*

-X439163Y358245D01*

-X438472Y358531D01*

-X437745Y358706D01*

-X437000Y358765D01*

-X436255Y358706D01*

-X435528Y358531D01*

-X434837Y358245D01*

-X434446Y358006D01*

-Y379994D01*

-X434837Y379755D01*

-X435528Y379469D01*

-X436255Y379294D01*

-X437000Y379235D01*

-X437745Y379294D01*

-X438472Y379469D01*

-X439163Y379755D01*

-X439801Y380145D01*

-X440369Y380631D01*

-X440446Y380721D01*

-Y357279D01*

-G37*

-G36*

-Y327279D02*X440369Y327369D01*

-X439801Y327855D01*

-X439163Y328245D01*

-X438472Y328531D01*

-X437745Y328706D01*

-X437000Y328765D01*

-X436255Y328706D01*

-X435528Y328531D01*

-X434837Y328245D01*

-X434446Y328006D01*

-Y349994D01*

-X434837Y349755D01*

-X435528Y349469D01*

-X436255Y349294D01*

-X437000Y349235D01*

-X437745Y349294D01*

-X438472Y349469D01*

-X439163Y349755D01*

-X439801Y350145D01*

-X440369Y350631D01*

-X440446Y350721D01*

-Y327279D01*

-G37*

-G36*

-Y297279D02*X440369Y297369D01*

-X439801Y297855D01*

-X439163Y298245D01*

-X438472Y298531D01*

-X437745Y298706D01*

-X437000Y298765D01*

-X436255Y298706D01*

-X435528Y298531D01*

-X434837Y298245D01*

-X434446Y298006D01*

-Y319994D01*

-X434837Y319755D01*

-X435528Y319469D01*

-X436255Y319294D01*

-X437000Y319235D01*

-X437745Y319294D01*

-X438472Y319469D01*

-X439163Y319755D01*

-X439801Y320145D01*

-X440369Y320631D01*

-X440446Y320721D01*

-Y297279D01*

-G37*

-G36*

-Y267279D02*X440369Y267369D01*

-X439801Y267855D01*

-X439163Y268245D01*

-X438472Y268531D01*

-X437745Y268706D01*

-X437000Y268765D01*

-X436255Y268706D01*

-X435528Y268531D01*

-X434837Y268245D01*

-X434446Y268006D01*

-Y289994D01*

-X434837Y289755D01*

-X435528Y289469D01*

-X436255Y289294D01*

-X437000Y289235D01*

-X437745Y289294D01*

-X438472Y289469D01*

-X439163Y289755D01*

-X439801Y290145D01*

-X440369Y290631D01*

-X440446Y290721D01*

-Y267279D01*

-G37*

-G36*

-Y237279D02*X440369Y237369D01*

-X439801Y237855D01*

-X439163Y238245D01*

-X438472Y238531D01*

-X437745Y238706D01*

-X437000Y238765D01*

-X436255Y238706D01*

-X435528Y238531D01*

-X434837Y238245D01*

-X434446Y238006D01*

-Y259994D01*

-X434837Y259755D01*

-X435528Y259469D01*

-X436255Y259294D01*

-X437000Y259235D01*

-X437745Y259294D01*

-X438472Y259469D01*

-X439163Y259755D01*

-X439801Y260145D01*

-X440369Y260631D01*

-X440446Y260721D01*

-Y237279D01*

-G37*

-G36*

-Y207279D02*X440369Y207369D01*

-X439801Y207855D01*

-X439163Y208245D01*

-X438472Y208531D01*

-X437745Y208706D01*

-X437000Y208765D01*

-X436255Y208706D01*

-X435528Y208531D01*

-X434837Y208245D01*

-X434446Y208006D01*

-Y229994D01*

-X434837Y229755D01*

-X435528Y229469D01*

-X436255Y229294D01*

-X437000Y229235D01*

-X437745Y229294D01*

-X438472Y229469D01*

-X439163Y229755D01*

-X439801Y230145D01*

-X440369Y230631D01*

-X440446Y230721D01*

-Y207279D01*

-G37*

-G36*

-Y177279D02*X440369Y177369D01*

-X439801Y177855D01*

-X439163Y178245D01*

-X438472Y178531D01*

-X437745Y178706D01*

-X437000Y178765D01*

-X436255Y178706D01*

-X435528Y178531D01*

-X434837Y178245D01*

-X434446Y178006D01*

-Y199994D01*

-X434837Y199755D01*

-X435528Y199469D01*

-X436255Y199294D01*

-X437000Y199235D01*

-X437745Y199294D01*

-X438472Y199469D01*

-X439163Y199755D01*

-X439801Y200145D01*

-X440369Y200631D01*

-X440446Y200721D01*

-Y177279D01*

-G37*

-G36*

-Y159000D02*X434446D01*

-Y169994D01*

-X434837Y169755D01*

-X435528Y169469D01*

-X436255Y169294D01*

-X437000Y169235D01*

-X437745Y169294D01*

-X438472Y169469D01*

-X439163Y169755D01*

-X439801Y170145D01*

-X440369Y170631D01*

-X440446Y170721D01*

-Y159000D01*

-G37*

-G36*

-Y39000D02*X434446D01*

-Y54695D01*

-X434449Y54694D01*

-X434731Y54717D01*

-X435007Y54783D01*

-X435269Y54891D01*

-X435510Y55039D01*

-X435726Y55223D01*

-X435910Y55439D01*

-X436058Y55680D01*

-X436166Y55942D01*

-X436232Y56218D01*

-X436249Y56500D01*

-X436232Y56782D01*

-X436166Y57058D01*

-X436058Y57320D01*

-X435910Y57561D01*

-X435726Y57777D01*

-X435510Y57961D01*

-X435269Y58109D01*

-X435007Y58217D01*

-X434731Y58283D01*

-X434449Y58306D01*

-X434446Y58305D01*

-Y70000D01*

-X440446D01*

-Y58305D01*

-X440167Y58283D01*

-X439891Y58217D01*

-X439629Y58109D01*

-X439388Y57961D01*

-X439172Y57777D01*

-X438988Y57561D01*

-X438840Y57320D01*

-X438732Y57058D01*

-X438666Y56782D01*

-X438643Y56500D01*

-X438666Y56218D01*

-X438732Y55942D01*

-X438840Y55680D01*

-X438988Y55439D01*

-X439172Y55223D01*

-X439388Y55039D01*

-X439629Y54891D01*

-X439891Y54783D01*

-X440167Y54717D01*

-X440446Y54695D01*

-Y39000D01*

-G37*

-G36*

-X434446Y159000D02*X426993D01*

-Y169236D01*

-X427000Y169235D01*

-X427745Y169294D01*

-X428472Y169469D01*

-X429163Y169755D01*

-X429801Y170145D01*

-X430369Y170631D01*

-X430855Y171199D01*

-X431245Y171837D01*

-X431531Y172528D01*

-X431706Y173255D01*

-X431750Y174000D01*

-X431706Y174745D01*

-X431531Y175472D01*

-X431245Y176163D01*

-X430855Y176801D01*

-X430369Y177369D01*

-X429801Y177855D01*

-X429163Y178245D01*

-X428472Y178531D01*

-X427745Y178706D01*

-X427000Y178765D01*

-X426993Y178764D01*

-Y199236D01*

-X427000Y199235D01*

-X427745Y199294D01*

-X428472Y199469D01*

-X429163Y199755D01*

-X429801Y200145D01*

-X430369Y200631D01*

-X430855Y201199D01*

-X431245Y201837D01*

-X431531Y202528D01*

-X431706Y203255D01*

-X431750Y204000D01*

-X431706Y204745D01*

-X431531Y205472D01*

-X431245Y206163D01*

-X430855Y206801D01*

-X430369Y207369D01*

-X429801Y207855D01*

-X429163Y208245D01*

-X428472Y208531D01*

-X427745Y208706D01*

-X427000Y208765D01*

-X426993Y208764D01*

-Y229236D01*

-X427000Y229235D01*

-X427745Y229294D01*

-X428472Y229469D01*

-X429163Y229755D01*

-X429801Y230145D01*

-X430369Y230631D01*

-X430855Y231199D01*

-X431245Y231837D01*

-X431531Y232528D01*

-X431706Y233255D01*

-X431750Y234000D01*

-X431706Y234745D01*

-X431531Y235472D01*

-X431245Y236163D01*

-X430855Y236801D01*

-X430369Y237369D01*

-X429801Y237855D01*

-X429163Y238245D01*

-X428472Y238531D01*

-X427745Y238706D01*

-X427000Y238765D01*

-X426993Y238764D01*

-Y259236D01*

-X427000Y259235D01*

-X427745Y259294D01*

-X428472Y259469D01*

-X429163Y259755D01*

-X429801Y260145D01*

-X430369Y260631D01*

-X430855Y261199D01*

-X431245Y261837D01*

-X431531Y262528D01*

-X431706Y263255D01*

-X431750Y264000D01*

-X431706Y264745D01*

-X431531Y265472D01*

-X431245Y266163D01*

-X430855Y266801D01*

-X430369Y267369D01*

-X429801Y267855D01*

-X429163Y268245D01*

-X428472Y268531D01*

-X427745Y268706D01*

-X427000Y268765D01*

-X426993Y268764D01*

-Y289236D01*

-X427000Y289235D01*

-X427745Y289294D01*

-X428472Y289469D01*

-X429163Y289755D01*

-X429801Y290145D01*

-X430369Y290631D01*

-X430855Y291199D01*

-X431245Y291837D01*

-X431531Y292528D01*

-X431706Y293255D01*

-X431750Y294000D01*

-X431706Y294745D01*

-X431531Y295472D01*

-X431245Y296163D01*

-X430855Y296801D01*

-X430369Y297369D01*

-X429801Y297855D01*

-X429163Y298245D01*

-X428472Y298531D01*

-X427745Y298706D01*

-X427000Y298765D01*

-X426993Y298764D01*

-Y319236D01*

-X427000Y319235D01*

-X427745Y319294D01*

-X428472Y319469D01*

-X429163Y319755D01*

-X429801Y320145D01*

-X430369Y320631D01*

-X430855Y321199D01*

-X431245Y321837D01*

-X431531Y322528D01*

-X431706Y323255D01*

-X431750Y324000D01*

-X431706Y324745D01*

-X431531Y325472D01*

-X431245Y326163D01*

-X430855Y326801D01*

-X430369Y327369D01*

-X429801Y327855D01*

-X429163Y328245D01*

-X428472Y328531D01*

-X427745Y328706D01*

-X427000Y328765D01*

-X426993Y328764D01*

-Y349236D01*

-X427000Y349235D01*

-X427745Y349294D01*

-X428472Y349469D01*

-X429163Y349755D01*

-X429801Y350145D01*

-X430369Y350631D01*

-X430855Y351199D01*

-X431245Y351837D01*

-X431531Y352528D01*

-X431706Y353255D01*

-X431750Y354000D01*

-X431706Y354745D01*

-X431531Y355472D01*

-X431245Y356163D01*

-X430855Y356801D01*

-X430369Y357369D01*

-X429801Y357855D01*

-X429163Y358245D01*

-X428472Y358531D01*

-X427745Y358706D01*

-X427000Y358765D01*

-X426993Y358764D01*

-Y379236D01*

-X427000Y379235D01*

-X427745Y379294D01*

-X428472Y379469D01*

-X429163Y379755D01*

-X429801Y380145D01*

-X430369Y380631D01*

-X430855Y381199D01*

-X431245Y381837D01*

-X431531Y382528D01*

-X431706Y383255D01*

-X431750Y384000D01*

-X431706Y384745D01*

-X431531Y385472D01*

-X431245Y386163D01*

-X430855Y386801D01*

-X430369Y387369D01*

-X429801Y387855D01*

-X429163Y388245D01*

-X428472Y388531D01*

-X427745Y388706D01*

-X427000Y388765D01*

-X426993Y388764D01*

-Y397000D01*

-X434446D01*

-Y388006D01*

-X434199Y387855D01*

-X433631Y387369D01*

-X433145Y386801D01*

-X432755Y386163D01*

-X432469Y385472D01*

-X432294Y384745D01*

-X432235Y384000D01*

-X432294Y383255D01*

-X432469Y382528D01*

-X432755Y381837D01*

-X433145Y381199D01*

-X433631Y380631D01*

-X434199Y380145D01*

-X434446Y379994D01*

-Y358006D01*

-X434199Y357855D01*

-X433631Y357369D01*

-X433145Y356801D01*

-X432755Y356163D01*

-X432469Y355472D01*

-X432294Y354745D01*

-X432235Y354000D01*

-X432294Y353255D01*

-X432469Y352528D01*

-X432755Y351837D01*

-X433145Y351199D01*

-X433631Y350631D01*

-X434199Y350145D01*

-X434446Y349994D01*

-Y328006D01*

-X434199Y327855D01*

-X433631Y327369D01*

-X433145Y326801D01*

-X432755Y326163D01*

-X432469Y325472D01*

-X432294Y324745D01*

-X432235Y324000D01*

-X432294Y323255D01*

-X432469Y322528D01*

-X432755Y321837D01*

-X433145Y321199D01*

-X433631Y320631D01*

-X434199Y320145D01*

-X434446Y319994D01*

-Y298006D01*

-X434199Y297855D01*

-X433631Y297369D01*

-X433145Y296801D01*

-X432755Y296163D01*

-X432469Y295472D01*

-X432294Y294745D01*

-X432235Y294000D01*

-X432294Y293255D01*

-X432469Y292528D01*

-X432755Y291837D01*

-X433145Y291199D01*

-X433631Y290631D01*

-X434199Y290145D01*

-X434446Y289994D01*

-Y268006D01*

-X434199Y267855D01*

-X433631Y267369D01*

-X433145Y266801D01*

-X432755Y266163D01*

-X432469Y265472D01*

-X432294Y264745D01*

-X432235Y264000D01*

-X432294Y263255D01*

-X432469Y262528D01*

-X432755Y261837D01*

-X433145Y261199D01*

-X433631Y260631D01*

-X434199Y260145D01*

-X434446Y259994D01*

-Y238006D01*

-X434199Y237855D01*

-X433631Y237369D01*

-X433145Y236801D01*

-X432755Y236163D01*

-X432469Y235472D01*

-X432294Y234745D01*

-X432235Y234000D01*

-X432294Y233255D01*

-X432469Y232528D01*

-X432755Y231837D01*

-X433145Y231199D01*

-X433631Y230631D01*

-X434199Y230145D01*

-X434446Y229994D01*

-Y208006D01*

-X434199Y207855D01*

-X433631Y207369D01*

-X433145Y206801D01*

-X432755Y206163D01*

-X432469Y205472D01*

-X432294Y204745D01*

-X432235Y204000D01*

-X432294Y203255D01*

-X432469Y202528D01*

-X432755Y201837D01*

-X433145Y201199D01*

-X433631Y200631D01*

-X434199Y200145D01*

-X434446Y199994D01*

-Y178006D01*

-X434199Y177855D01*

-X433631Y177369D01*

-X433145Y176801D01*

-X432755Y176163D01*

-X432469Y175472D01*

-X432294Y174745D01*

-X432235Y174000D01*

-X432294Y173255D01*

-X432469Y172528D01*

-X432755Y171837D01*

-X433145Y171199D01*

-X433631Y170631D01*

-X434199Y170145D01*

-X434446Y169994D01*

-Y159000D01*

-G37*

-G36*

-X426993D02*X416993D01*

-Y169236D01*

-X417000Y169235D01*

-X417745Y169294D01*

-X418472Y169469D01*

-X419163Y169755D01*

-X419801Y170145D01*

-X420369Y170631D01*

-X420855Y171199D01*

-X421245Y171837D01*

-X421531Y172528D01*

-X421706Y173255D01*

-X421750Y174000D01*

-X421706Y174745D01*

-X421531Y175472D01*

-X421245Y176163D01*

-X420855Y176801D01*

-X420369Y177369D01*

-X419801Y177855D01*

-X419163Y178245D01*

-X418472Y178531D01*

-X417745Y178706D01*

-X417000Y178765D01*

-X416993Y178764D01*

-Y199236D01*

-X417000Y199235D01*

-X417745Y199294D01*

-X418472Y199469D01*

-X419163Y199755D01*

-X419801Y200145D01*

-X420369Y200631D01*

-X420855Y201199D01*

-X421245Y201837D01*

-X421531Y202528D01*

-X421706Y203255D01*

-X421750Y204000D01*

-X421706Y204745D01*

-X421531Y205472D01*

-X421245Y206163D01*

-X420855Y206801D01*

-X420369Y207369D01*

-X419801Y207855D01*

-X419163Y208245D01*

-X418472Y208531D01*

-X417745Y208706D01*

-X417000Y208765D01*

-X416993Y208764D01*

-Y229236D01*

-X417000Y229235D01*

-X417745Y229294D01*

-X418472Y229469D01*

-X419163Y229755D01*

-X419801Y230145D01*

-X420369Y230631D01*

-X420855Y231199D01*

-X421245Y231837D01*

-X421531Y232528D01*

-X421706Y233255D01*

-X421750Y234000D01*

-X421706Y234745D01*

-X421531Y235472D01*

-X421245Y236163D01*

-X420855Y236801D01*

-X420369Y237369D01*

-X419801Y237855D01*

-X419163Y238245D01*

-X418472Y238531D01*

-X417745Y238706D01*

-X417000Y238765D01*

-X416993Y238764D01*

-Y259236D01*

-X417000Y259235D01*

-X417745Y259294D01*

-X418472Y259469D01*

-X419163Y259755D01*

-X419801Y260145D01*

-X420369Y260631D01*

-X420855Y261199D01*

-X421245Y261837D01*

-X421531Y262528D01*

-X421706Y263255D01*

-X421750Y264000D01*

-X421706Y264745D01*

-X421531Y265472D01*

-X421245Y266163D01*

-X420855Y266801D01*

-X420369Y267369D01*

-X419801Y267855D01*

-X419163Y268245D01*

-X418472Y268531D01*

-X417745Y268706D01*

-X417000Y268765D01*

-X416993Y268764D01*

-Y289236D01*

-X417000Y289235D01*

-X417745Y289294D01*

-X418472Y289469D01*

-X419163Y289755D01*

-X419801Y290145D01*

-X420369Y290631D01*

-X420855Y291199D01*

-X421245Y291837D01*

-X421531Y292528D01*

-X421706Y293255D01*

-X421750Y294000D01*

-X421706Y294745D01*

-X421531Y295472D01*

-X421245Y296163D01*

-X420855Y296801D01*

-X420369Y297369D01*

-X419801Y297855D01*

-X419163Y298245D01*

-X418472Y298531D01*

-X417745Y298706D01*

-X417000Y298765D01*

-X416993Y298764D01*

-Y319236D01*

-X417000Y319235D01*

-X417745Y319294D01*

-X418472Y319469D01*

-X419163Y319755D01*

-X419801Y320145D01*

-X420369Y320631D01*

-X420855Y321199D01*

-X421245Y321837D01*

-X421531Y322528D01*

-X421706Y323255D01*

-X421750Y324000D01*

-X421706Y324745D01*

-X421531Y325472D01*

-X421245Y326163D01*

-X420855Y326801D01*

-X420369Y327369D01*

-X419801Y327855D01*

-X419163Y328245D01*

-X418472Y328531D01*

-X417745Y328706D01*

-X417000Y328765D01*

-X416993Y328764D01*

-Y349236D01*

-X417000Y349235D01*

-X417745Y349294D01*

-X418472Y349469D01*

-X419163Y349755D01*

-X419801Y350145D01*

-X420369Y350631D01*

-X420855Y351199D01*

-X421245Y351837D01*

-X421531Y352528D01*

-X421706Y353255D01*

-X421750Y354000D01*

-X421706Y354745D01*

-X421531Y355472D01*

-X421245Y356163D01*

-X420855Y356801D01*

-X420369Y357369D01*

-X419801Y357855D01*

-X419163Y358245D01*

-X418472Y358531D01*

-X417745Y358706D01*

-X417000Y358765D01*

-X416993Y358764D01*

-Y379236D01*

-X417000Y379235D01*

-X417745Y379294D01*

-X418472Y379469D01*

-X419163Y379755D01*

-X419801Y380145D01*

-X420369Y380631D01*

-X420855Y381199D01*

-X421245Y381837D01*

-X421531Y382528D01*

-X421706Y383255D01*

-X421750Y384000D01*

-X421706Y384745D01*

-X421531Y385472D01*

-X421245Y386163D01*

-X420855Y386801D01*

-X420369Y387369D01*

-X419801Y387855D01*

-X419163Y388245D01*

-X418472Y388531D01*

-X417745Y388706D01*

-X417000Y388765D01*

-X416993Y388764D01*

-Y397000D01*

-X426993D01*

-Y388764D01*

-X426255Y388706D01*

-X425528Y388531D01*

-X424837Y388245D01*

-X424199Y387855D01*

-X423631Y387369D01*

-X423145Y386801D01*

-X422755Y386163D01*

-X422469Y385472D01*

-X422294Y384745D01*

-X422235Y384000D01*

-X422294Y383255D01*

-X422469Y382528D01*

-X422755Y381837D01*

-X423145Y381199D01*

-X423631Y380631D01*

-X424199Y380145D01*

-X424837Y379755D01*

-X425528Y379469D01*

-X426255Y379294D01*

-X426993Y379236D01*

-Y358764D01*

-X426255Y358706D01*

-X425528Y358531D01*

-X424837Y358245D01*

-X424199Y357855D01*

-X423631Y357369D01*

-X423145Y356801D01*

-X422755Y356163D01*

-X422469Y355472D01*

-X422294Y354745D01*

-X422235Y354000D01*

-X422294Y353255D01*

-X422469Y352528D01*

-X422755Y351837D01*

-X423145Y351199D01*

-X423631Y350631D01*

-X424199Y350145D01*

-X424837Y349755D01*

-X425528Y349469D01*

-X426255Y349294D01*

-X426993Y349236D01*

-Y328764D01*

-X426255Y328706D01*

-X425528Y328531D01*

-X424837Y328245D01*

-X424199Y327855D01*

-X423631Y327369D01*

-X423145Y326801D01*

-X422755Y326163D01*

-X422469Y325472D01*

-X422294Y324745D01*

-X422235Y324000D01*

-X422294Y323255D01*

-X422469Y322528D01*

-X422755Y321837D01*

-X423145Y321199D01*

-X423631Y320631D01*

-X424199Y320145D01*

-X424837Y319755D01*

-X425528Y319469D01*

-X426255Y319294D01*

-X426993Y319236D01*

-Y298764D01*

-X426255Y298706D01*

-X425528Y298531D01*

-X424837Y298245D01*

-X424199Y297855D01*

-X423631Y297369D01*

-X423145Y296801D01*

-X422755Y296163D01*

-X422469Y295472D01*

-X422294Y294745D01*

-X422235Y294000D01*

-X422294Y293255D01*

-X422469Y292528D01*

-X422755Y291837D01*

-X423145Y291199D01*

-X423631Y290631D01*

-X424199Y290145D01*

-X424837Y289755D01*

-X425528Y289469D01*

-X426255Y289294D01*

-X426993Y289236D01*

-Y268764D01*

-X426255Y268706D01*

-X425528Y268531D01*

-X424837Y268245D01*

-X424199Y267855D01*

-X423631Y267369D01*

-X423145Y266801D01*

-X422755Y266163D01*

-X422469Y265472D01*

-X422294Y264745D01*

-X422235Y264000D01*

-X422294Y263255D01*

-X422469Y262528D01*

-X422755Y261837D01*

-X423145Y261199D01*

-X423631Y260631D01*

-X424199Y260145D01*

-X424837Y259755D01*

-X425528Y259469D01*

-X426255Y259294D01*

-X426993Y259236D01*

-Y238764D01*

-X426255Y238706D01*

-X425528Y238531D01*

-X424837Y238245D01*

-X424199Y237855D01*

-X423631Y237369D01*

-X423145Y236801D01*

-X422755Y236163D01*

-X422469Y235472D01*

-X422294Y234745D01*

-X422235Y234000D01*

-X422294Y233255D01*

-X422469Y232528D01*

-X422755Y231837D01*

-X423145Y231199D01*

-X423631Y230631D01*

-X424199Y230145D01*

-X424837Y229755D01*

-X425528Y229469D01*

-X426255Y229294D01*

-X426993Y229236D01*

-Y208764D01*

-X426255Y208706D01*

-X425528Y208531D01*

-X424837Y208245D01*

-X424199Y207855D01*

-X423631Y207369D01*

-X423145Y206801D01*

-X422755Y206163D01*

-X422469Y205472D01*

-X422294Y204745D01*

-X422235Y204000D01*

-X422294Y203255D01*

-X422469Y202528D01*

-X422755Y201837D01*

-X423145Y201199D01*

-X423631Y200631D01*

-X424199Y200145D01*

-X424837Y199755D01*

-X425528Y199469D01*

-X426255Y199294D01*

-X426993Y199236D01*

-Y178764D01*

-X426255Y178706D01*

-X425528Y178531D01*

-X424837Y178245D01*

-X424199Y177855D01*

-X423631Y177369D01*

-X423145Y176801D01*

-X422755Y176163D01*

-X422469Y175472D01*

-X422294Y174745D01*

-X422235Y174000D01*

-X422294Y173255D01*

-X422469Y172528D01*

-X422755Y171837D01*

-X423145Y171199D01*

-X423631Y170631D01*

-X424199Y170145D01*

-X424837Y169755D01*

-X425528Y169469D01*

-X426255Y169294D01*

-X426993Y169236D01*

-Y159000D01*

-G37*

-G36*

-X416993D02*X411000D01*

-Y171498D01*

-X411118Y171507D01*

-X411232Y171535D01*

-X411342Y171580D01*

-X411442Y171641D01*

-X411532Y171718D01*

-X411609Y171808D01*

-X411670Y171908D01*

-X411715Y172018D01*

-X411743Y172132D01*

-X411750Y172250D01*

-Y175750D01*

-X411743Y175868D01*

-X411715Y175982D01*

-X411670Y176092D01*

-X411609Y176192D01*

-X411532Y176282D01*

-X411442Y176359D01*

-X411342Y176420D01*

-X411232Y176465D01*

-X411118Y176493D01*

-X411000Y176502D01*

-Y201498D01*

-X411118Y201507D01*

-X411232Y201535D01*

-X411342Y201580D01*

-X411442Y201641D01*

-X411532Y201718D01*

-X411609Y201808D01*

-X411670Y201908D01*

-X411715Y202018D01*

-X411743Y202132D01*

-X411750Y202250D01*

-Y205750D01*

-X411743Y205868D01*

-X411715Y205982D01*

-X411670Y206092D01*

-X411609Y206192D01*

-X411532Y206282D01*

-X411442Y206359D01*

-X411342Y206420D01*

-X411232Y206465D01*

-X411118Y206493D01*

-X411000Y206502D01*

-Y231498D01*

-X411118Y231507D01*

-X411232Y231535D01*

-X411342Y231580D01*

-X411442Y231641D01*

-X411532Y231718D01*

-X411609Y231808D01*

-X411670Y231908D01*

-X411715Y232018D01*

-X411743Y232132D01*

-X411750Y232250D01*

-Y235750D01*

-X411743Y235868D01*

-X411715Y235982D01*

-X411670Y236092D01*

-X411609Y236192D01*

-X411532Y236282D01*

-X411442Y236359D01*

-X411342Y236420D01*

-X411232Y236465D01*

-X411118Y236493D01*

-X411000Y236502D01*

-Y261498D01*

-X411118Y261507D01*

-X411232Y261535D01*

-X411342Y261580D01*

-X411442Y261641D01*

-X411532Y261718D01*

-X411609Y261808D01*

-X411670Y261908D01*

-X411715Y262018D01*

-X411743Y262132D01*

-X411750Y262250D01*

-Y265750D01*

-X411743Y265868D01*

-X411715Y265982D01*

-X411670Y266092D01*

-X411609Y266192D01*

-X411532Y266282D01*

-X411442Y266359D01*

-X411342Y266420D01*

-X411232Y266465D01*

-X411118Y266493D01*

-X411000Y266502D01*

-Y291498D01*

-X411118Y291507D01*

-X411232Y291535D01*

-X411342Y291580D01*

-X411442Y291641D01*

-X411532Y291718D01*

-X411609Y291808D01*

-X411670Y291908D01*

-X411715Y292018D01*

-X411743Y292132D01*

-X411750Y292250D01*

-Y295750D01*

-X411743Y295868D01*

-X411715Y295982D01*

-X411670Y296092D01*

-X411609Y296192D01*

-X411532Y296282D01*

-X411442Y296359D01*

-X411342Y296420D01*

-X411232Y296465D01*

-X411118Y296493D01*

-X411000Y296502D01*

-Y321498D01*

-X411118Y321507D01*

-X411232Y321535D01*

-X411342Y321580D01*

-X411442Y321641D01*

-X411532Y321718D01*

-X411609Y321808D01*

-X411670Y321908D01*

-X411715Y322018D01*

-X411743Y322132D01*

-X411750Y322250D01*

-Y325750D01*

-X411743Y325868D01*

-X411715Y325982D01*

-X411670Y326092D01*

-X411609Y326192D01*

-X411532Y326282D01*

-X411442Y326359D01*

-X411342Y326420D01*

-X411232Y326465D01*

-X411118Y326493D01*

-X411000Y326502D01*

-Y351498D01*

-X411118Y351507D01*

-X411232Y351535D01*

-X411342Y351580D01*

-X411442Y351641D01*

-X411532Y351718D01*

-X411609Y351808D01*

-X411670Y351908D01*

-X411715Y352018D01*

-X411743Y352132D01*

-X411750Y352250D01*

-Y355750D01*

-X411743Y355868D01*

-X411715Y355982D01*

-X411670Y356092D01*

-X411609Y356192D01*

-X411532Y356282D01*

-X411442Y356359D01*

-X411342Y356420D01*

-X411232Y356465D01*

-X411118Y356493D01*

-X411000Y356502D01*

-Y381498D01*

-X411118Y381507D01*

-X411232Y381535D01*

-X411342Y381580D01*

-X411442Y381641D01*

-X411532Y381718D01*

-X411609Y381808D01*

-X411670Y381908D01*

-X411715Y382018D01*

-X411743Y382132D01*

-X411750Y382250D01*

-Y385750D01*

-X411743Y385868D01*

-X411715Y385982D01*

-X411670Y386092D01*

-X411609Y386192D01*

-X411532Y386282D01*

-X411442Y386359D01*

-X411342Y386420D01*

-X411232Y386465D01*

-X411118Y386493D01*

-X411000Y386502D01*

-Y397000D01*

-X416993D01*

-Y388764D01*

-X416255Y388706D01*

-X415528Y388531D01*

-X414837Y388245D01*

-X414199Y387855D01*

-X413631Y387369D01*

-X413145Y386801D01*

-X412755Y386163D01*

-X412469Y385472D01*

-X412294Y384745D01*

-X412235Y384000D01*

-X412294Y383255D01*

-X412469Y382528D01*

-X412755Y381837D01*

-X413145Y381199D01*

-X413631Y380631D01*

-X414199Y380145D01*

-X414837Y379755D01*

-X415528Y379469D01*

-X416255Y379294D01*

-X416993Y379236D01*

-Y358764D01*

-X416255Y358706D01*

-X415528Y358531D01*

-X414837Y358245D01*

-X414199Y357855D01*

-X413631Y357369D01*

-X413145Y356801D01*

-X412755Y356163D01*

-X412469Y355472D01*

-X412294Y354745D01*

-X412235Y354000D01*

-X412294Y353255D01*

-X412469Y352528D01*

-X412755Y351837D01*

-X413145Y351199D01*

-X413631Y350631D01*

-X414199Y350145D01*

-X414837Y349755D01*

-X415528Y349469D01*

-X416255Y349294D01*

-X416993Y349236D01*

-Y328764D01*

-X416255Y328706D01*

-X415528Y328531D01*

-X414837Y328245D01*

-X414199Y327855D01*

-X413631Y327369D01*

-X413145Y326801D01*

-X412755Y326163D01*

-X412469Y325472D01*

-X412294Y324745D01*

-X412235Y324000D01*

-X412294Y323255D01*

-X412469Y322528D01*

-X412755Y321837D01*

-X413145Y321199D01*

-X413631Y320631D01*

-X414199Y320145D01*

-X414837Y319755D01*

-X415528Y319469D01*

-X416255Y319294D01*

-X416993Y319236D01*

-Y298764D01*

-X416255Y298706D01*

-X415528Y298531D01*

-X414837Y298245D01*

-X414199Y297855D01*

-X413631Y297369D01*

-X413145Y296801D01*

-X412755Y296163D01*

-X412469Y295472D01*

-X412294Y294745D01*

-X412235Y294000D01*

-X412294Y293255D01*

-X412469Y292528D01*

-X412755Y291837D01*

-X413145Y291199D01*

-X413631Y290631D01*

-X414199Y290145D01*

-X414837Y289755D01*

-X415528Y289469D01*

-X416255Y289294D01*

-X416993Y289236D01*

-Y268764D01*

-X416255Y268706D01*

-X415528Y268531D01*

-X414837Y268245D01*

-X414199Y267855D01*

-X413631Y267369D01*

-X413145Y266801D01*

-X412755Y266163D01*

-X412469Y265472D01*

-X412294Y264745D01*

-X412235Y264000D01*

-X412294Y263255D01*

-X412469Y262528D01*

-X412755Y261837D01*

-X413145Y261199D01*

-X413631Y260631D01*

-X414199Y260145D01*

-X414837Y259755D01*

-X415528Y259469D01*

-X416255Y259294D01*

-X416993Y259236D01*

-Y238764D01*

-X416255Y238706D01*

-X415528Y238531D01*

-X414837Y238245D01*

-X414199Y237855D01*

-X413631Y237369D01*

-X413145Y236801D01*

-X412755Y236163D01*

-X412469Y235472D01*

-X412294Y234745D01*

-X412235Y234000D01*

-X412294Y233255D01*

-X412469Y232528D01*

-X412755Y231837D01*

-X413145Y231199D01*

-X413631Y230631D01*

-X414199Y230145D01*

-X414837Y229755D01*

-X415528Y229469D01*

-X416255Y229294D01*

-X416993Y229236D01*

-Y208764D01*

-X416255Y208706D01*

-X415528Y208531D01*

-X414837Y208245D01*

-X414199Y207855D01*

-X413631Y207369D01*

-X413145Y206801D01*

-X412755Y206163D01*

-X412469Y205472D01*

-X412294Y204745D01*

-X412235Y204000D01*

-X412294Y203255D01*

-X412469Y202528D01*

-X412755Y201837D01*

-X413145Y201199D01*

-X413631Y200631D01*

-X414199Y200145D01*

-X414837Y199755D01*

-X415528Y199469D01*

-X416255Y199294D01*

-X416993Y199236D01*

-Y178764D01*

-X416255Y178706D01*

-X415528Y178531D01*

-X414837Y178245D01*

-X414199Y177855D01*

-X413631Y177369D01*

-X413145Y176801D01*

-X412755Y176163D01*

-X412469Y175472D01*

-X412294Y174745D01*

-X412235Y174000D01*

-X412294Y173255D01*

-X412469Y172528D01*

-X412755Y171837D01*

-X413145Y171199D01*

-X413631Y170631D01*

-X414199Y170145D01*

-X414837Y169755D01*

-X415528Y169469D01*

-X416255Y169294D01*

-X416993Y169236D01*

-Y159000D01*

-G37*

-G36*

-X411000D02*X407000D01*

-Y169250D01*

-X408750D01*

-X408868Y169257D01*

-X408982Y169285D01*

-X409092Y169330D01*

-X409192Y169391D01*

-X409282Y169468D01*

-X409359Y169558D01*

-X409420Y169658D01*

-X409465Y169768D01*

-X409493Y169882D01*

-X409502Y170000D01*

-X409493Y170118D01*

-X409465Y170232D01*

-X409420Y170342D01*

-X409359Y170442D01*

-X409282Y170532D01*

-X409192Y170609D01*

-X409092Y170670D01*

-X408982Y170715D01*

-X408868Y170743D01*

-X408750Y170750D01*

-X407000D01*

-Y177250D01*

-X408750D01*

-X408868Y177257D01*

-X408982Y177285D01*

-X409092Y177330D01*

-X409192Y177391D01*

-X409282Y177468D01*

-X409359Y177558D01*

-X409420Y177658D01*

-X409465Y177768D01*

-X409493Y177882D01*

-X409502Y178000D01*

-X409493Y178118D01*

-X409465Y178232D01*

-X409420Y178342D01*

-X409359Y178442D01*

-X409282Y178532D01*

-X409192Y178609D01*

-X409092Y178670D01*

-X408982Y178715D01*

-X408868Y178743D01*

-X408750Y178750D01*

-X407000D01*

-Y199250D01*

-X408750D01*

-X408868Y199257D01*

-X408982Y199285D01*

-X409092Y199330D01*

-X409192Y199391D01*

-X409282Y199468D01*

-X409359Y199558D01*

-X409420Y199658D01*

-X409465Y199768D01*

-X409493Y199882D01*

-X409502Y200000D01*

-X409493Y200118D01*

-X409465Y200232D01*

-X409420Y200342D01*

-X409359Y200442D01*

-X409282Y200532D01*

-X409192Y200609D01*

-X409092Y200670D01*

-X408982Y200715D01*

-X408868Y200743D01*

-X408750Y200750D01*

-X407000D01*

-Y207250D01*

-X408750D01*

-X408868Y207257D01*

-X408982Y207285D01*

-X409092Y207330D01*

-X409192Y207391D01*

-X409282Y207468D01*

-X409359Y207558D01*

-X409420Y207658D01*

-X409465Y207768D01*

-X409493Y207882D01*

-X409502Y208000D01*

-X409493Y208118D01*

-X409465Y208232D01*

-X409420Y208342D01*

-X409359Y208442D01*

-X409282Y208532D01*

-X409192Y208609D01*

-X409092Y208670D01*

-X408982Y208715D01*

-X408868Y208743D01*

-X408750Y208750D01*

-X407000D01*

-Y229250D01*

-X408750D01*

-X408868Y229257D01*

-X408982Y229285D01*

-X409092Y229330D01*

-X409192Y229391D01*

-X409282Y229468D01*

-X409359Y229558D01*

-X409420Y229658D01*

-X409465Y229768D01*

-X409493Y229882D01*

-X409502Y230000D01*

-X409493Y230118D01*

-X409465Y230232D01*

-X409420Y230342D01*

-X409359Y230442D01*

-X409282Y230532D01*

-X409192Y230609D01*

-X409092Y230670D01*

-X408982Y230715D01*

-X408868Y230743D01*

-X408750Y230750D01*

-X407000D01*

-Y237250D01*

-X408750D01*

-X408868Y237257D01*

-X408982Y237285D01*

-X409092Y237330D01*

-X409192Y237391D01*

-X409282Y237468D01*

-X409359Y237558D01*

-X409420Y237658D01*

-X409465Y237768D01*

-X409493Y237882D01*

-X409502Y238000D01*

-X409493Y238118D01*

-X409465Y238232D01*

-X409420Y238342D01*

-X409359Y238442D01*

-X409282Y238532D01*

-X409192Y238609D01*

-X409092Y238670D01*

-X408982Y238715D01*

-X408868Y238743D01*

-X408750Y238750D01*

-X407000D01*

-Y259250D01*

-X408750D01*

-X408868Y259257D01*

-X408982Y259285D01*

-X409092Y259330D01*

-X409192Y259391D01*

-X409282Y259468D01*

-X409359Y259558D01*

-X409420Y259658D01*

-X409465Y259768D01*

-X409493Y259882D01*

-X409502Y260000D01*

-X409493Y260118D01*

-X409465Y260232D01*

-X409420Y260342D01*

-X409359Y260442D01*

-X409282Y260532D01*

-X409192Y260609D01*

-X409092Y260670D01*

-X408982Y260715D01*

-X408868Y260743D01*

-X408750Y260750D01*

-X407000D01*

-Y267250D01*

-X408750D01*

-X408868Y267257D01*

-X408982Y267285D01*

-X409092Y267330D01*

-X409192Y267391D01*

-X409282Y267468D01*

-X409359Y267558D01*

-X409420Y267658D01*

-X409465Y267768D01*

-X409493Y267882D01*

-X409502Y268000D01*

-X409493Y268118D01*

-X409465Y268232D01*

-X409420Y268342D01*

-X409359Y268442D01*

-X409282Y268532D01*

-X409192Y268609D01*

-X409092Y268670D01*

-X408982Y268715D01*

-X408868Y268743D01*

-X408750Y268750D01*

-X407000D01*

-Y289250D01*

-X408750D01*

-X408868Y289257D01*

-X408982Y289285D01*

-X409092Y289330D01*

-X409192Y289391D01*

-X409282Y289468D01*

-X409359Y289558D01*

-X409420Y289658D01*

-X409465Y289768D01*

-X409493Y289882D01*

-X409502Y290000D01*

-X409493Y290118D01*

-X409465Y290232D01*

-X409420Y290342D01*

-X409359Y290442D01*

-X409282Y290532D01*

-X409192Y290609D01*

-X409092Y290670D01*

-X408982Y290715D01*

-X408868Y290743D01*

-X408750Y290750D01*

-X407000D01*

-Y297250D01*

-X408750D01*

-X408868Y297257D01*

-X408982Y297285D01*

-X409092Y297330D01*

-X409192Y297391D01*

-X409282Y297468D01*

-X409359Y297558D01*

-X409420Y297658D01*

-X409465Y297768D01*

-X409493Y297882D01*

-X409502Y298000D01*

-X409493Y298118D01*

-X409465Y298232D01*

-X409420Y298342D01*

-X409359Y298442D01*

-X409282Y298532D01*

-X409192Y298609D01*

-X409092Y298670D01*

-X408982Y298715D01*

-X408868Y298743D01*

-X408750Y298750D01*

-X407000D01*

-Y319250D01*

-X408750D01*

-X408868Y319257D01*

-X408982Y319285D01*

-X409092Y319330D01*

-X409192Y319391D01*

-X409282Y319468D01*

-X409359Y319558D01*

-X409420Y319658D01*

-X409465Y319768D01*

-X409493Y319882D01*

-X409502Y320000D01*

-X409493Y320118D01*

-X409465Y320232D01*

-X409420Y320342D01*

-X409359Y320442D01*

-X409282Y320532D01*

-X409192Y320609D01*

-X409092Y320670D01*

-X408982Y320715D01*

-X408868Y320743D01*

-X408750Y320750D01*

-X407000D01*

-Y327250D01*

-X408750D01*

-X408868Y327257D01*

-X408982Y327285D01*

-X409092Y327330D01*

-X409192Y327391D01*

-X409282Y327468D01*

-X409359Y327558D01*

-X409420Y327658D01*

-X409465Y327768D01*

-X409493Y327882D01*

-X409502Y328000D01*

-X409493Y328118D01*

-X409465Y328232D01*

-X409420Y328342D01*

-X409359Y328442D01*

-X409282Y328532D01*

-X409192Y328609D01*

-X409092Y328670D01*

-X408982Y328715D01*

-X408868Y328743D01*

-X408750Y328750D01*

-X407000D01*

-Y349250D01*

-X408750D01*

-X408868Y349257D01*

-X408982Y349285D01*

-X409092Y349330D01*

-X409192Y349391D01*

-X409282Y349468D01*

-X409359Y349558D01*

-X409420Y349658D01*

-X409465Y349768D01*

-X409493Y349882D01*

-X409502Y350000D01*

-X409493Y350118D01*

-X409465Y350232D01*

-X409420Y350342D01*

-X409359Y350442D01*

-X409282Y350532D01*

-X409192Y350609D01*

-X409092Y350670D01*

-X408982Y350715D01*

-X408868Y350743D01*

-X408750Y350750D01*

-X407000D01*

-Y357250D01*

-X408750D01*

-X408868Y357257D01*

-X408982Y357285D01*

-X409092Y357330D01*

-X409192Y357391D01*

-X409282Y357468D01*

-X409359Y357558D01*

-X409420Y357658D01*

-X409465Y357768D01*

-X409493Y357882D01*

-X409502Y358000D01*

-X409493Y358118D01*

-X409465Y358232D01*

-X409420Y358342D01*

-X409359Y358442D01*

-X409282Y358532D01*

-X409192Y358609D01*

-X409092Y358670D01*

-X408982Y358715D01*

-X408868Y358743D01*

-X408750Y358750D01*

-X407000D01*

-Y379250D01*

-X408750D01*

-X408868Y379257D01*

-X408982Y379285D01*

-X409092Y379330D01*

-X409192Y379391D01*

-X409282Y379468D01*

-X409359Y379558D01*

-X409420Y379658D01*

-X409465Y379768D01*

-X409493Y379882D01*

-X409502Y380000D01*

-X409493Y380118D01*

-X409465Y380232D01*

-X409420Y380342D01*

-X409359Y380442D01*

-X409282Y380532D01*

-X409192Y380609D01*

-X409092Y380670D01*

-X408982Y380715D01*

-X408868Y380743D01*

-X408750Y380750D01*

-X407000D01*

-Y387250D01*

-X408750D01*

-X408868Y387257D01*

-X408982Y387285D01*

-X409092Y387330D01*

-X409192Y387391D01*

-X409282Y387468D01*

-X409359Y387558D01*

-X409420Y387658D01*

-X409465Y387768D01*

-X409493Y387882D01*

-X409502Y388000D01*

-X409493Y388118D01*

-X409465Y388232D01*

-X409420Y388342D01*

-X409359Y388442D01*

-X409282Y388532D01*

-X409192Y388609D01*

-X409092Y388670D01*

-X408982Y388715D01*

-X408868Y388743D01*

-X408750Y388750D01*

-X407000D01*

-Y397000D01*

-X411000D01*

-Y386502D01*

-X410882Y386493D01*

-X410768Y386465D01*

-X410658Y386420D01*

-X410558Y386359D01*

-X410468Y386282D01*

-X410391Y386192D01*

-X410330Y386092D01*

-X410285Y385982D01*

-X410257Y385868D01*

-X410250Y385750D01*

-Y382250D01*

-X410257Y382132D01*

-X410285Y382018D01*

-X410330Y381908D01*

-X410391Y381808D01*

-X410468Y381718D01*

-X410558Y381641D01*

-X410658Y381580D01*

-X410768Y381535D01*

-X410882Y381507D01*

-X411000Y381498D01*

-Y356502D01*

-X410882Y356493D01*

-X410768Y356465D01*

-X410658Y356420D01*

-X410558Y356359D01*

-X410468Y356282D01*

-X410391Y356192D01*

-X410330Y356092D01*

-X410285Y355982D01*

-X410257Y355868D01*

-X410250Y355750D01*

-Y352250D01*

-X410257Y352132D01*

-X410285Y352018D01*

-X410330Y351908D01*

-X410391Y351808D01*

-X410468Y351718D01*

-X410558Y351641D01*

-X410658Y351580D01*

-X410768Y351535D01*

-X410882Y351507D01*

-X411000Y351498D01*

-Y326502D01*

-X410882Y326493D01*

-X410768Y326465D01*

-X410658Y326420D01*

-X410558Y326359D01*

-X410468Y326282D01*

-X410391Y326192D01*

-X410330Y326092D01*

-X410285Y325982D01*

-X410257Y325868D01*

-X410250Y325750D01*

-Y322250D01*

-X410257Y322132D01*

-X410285Y322018D01*

-X410330Y321908D01*

-X410391Y321808D01*

-X410468Y321718D01*

-X410558Y321641D01*

-X410658Y321580D01*

-X410768Y321535D01*

-X410882Y321507D01*

-X411000Y321498D01*

-Y296502D01*

-X410882Y296493D01*

-X410768Y296465D01*

-X410658Y296420D01*

-X410558Y296359D01*

-X410468Y296282D01*

-X410391Y296192D01*

-X410330Y296092D01*

-X410285Y295982D01*

-X410257Y295868D01*

-X410250Y295750D01*

-Y292250D01*

-X410257Y292132D01*

-X410285Y292018D01*

-X410330Y291908D01*

-X410391Y291808D01*

-X410468Y291718D01*

-X410558Y291641D01*

-X410658Y291580D01*

-X410768Y291535D01*

-X410882Y291507D01*

-X411000Y291498D01*

-Y266502D01*

-X410882Y266493D01*

-X410768Y266465D01*

-X410658Y266420D01*

-X410558Y266359D01*

-X410468Y266282D01*

-X410391Y266192D01*

-X410330Y266092D01*

-X410285Y265982D01*

-X410257Y265868D01*

-X410250Y265750D01*

-Y262250D01*

-X410257Y262132D01*

-X410285Y262018D01*

-X410330Y261908D01*

-X410391Y261808D01*

-X410468Y261718D01*

-X410558Y261641D01*

-X410658Y261580D01*

-X410768Y261535D01*

-X410882Y261507D01*

-X411000Y261498D01*

-Y236502D01*

-X410882Y236493D01*

-X410768Y236465D01*

-X410658Y236420D01*

-X410558Y236359D01*

-X410468Y236282D01*

-X410391Y236192D01*

-X410330Y236092D01*

-X410285Y235982D01*

-X410257Y235868D01*

-X410250Y235750D01*

-Y232250D01*

-X410257Y232132D01*

-X410285Y232018D01*

-X410330Y231908D01*

-X410391Y231808D01*

-X410468Y231718D01*

-X410558Y231641D01*

-X410658Y231580D01*

-X410768Y231535D01*

-X410882Y231507D01*

-X411000Y231498D01*

-Y206502D01*

-X410882Y206493D01*

-X410768Y206465D01*

-X410658Y206420D01*

-X410558Y206359D01*

-X410468Y206282D01*

-X410391Y206192D01*

-X410330Y206092D01*

-X410285Y205982D01*

-X410257Y205868D01*

-X410250Y205750D01*

-Y202250D01*

-X410257Y202132D01*

-X410285Y202018D01*

-X410330Y201908D01*

-X410391Y201808D01*

-X410468Y201718D01*

-X410558Y201641D01*

-X410658Y201580D01*

-X410768Y201535D01*

-X410882Y201507D01*

-X411000Y201498D01*

-Y176502D01*

-X410882Y176493D01*

-X410768Y176465D01*

-X410658Y176420D01*

-X410558Y176359D01*

-X410468Y176282D01*

-X410391Y176192D01*

-X410330Y176092D01*

-X410285Y175982D01*

-X410257Y175868D01*

-X410250Y175750D01*

-Y172250D01*

-X410257Y172132D01*

-X410285Y172018D01*

-X410330Y171908D01*

-X410391Y171808D01*

-X410468Y171718D01*

-X410558Y171641D01*

-X410658Y171580D01*

-X410768Y171535D01*

-X410882Y171507D01*

-X411000Y171498D01*

-Y159000D01*

-G37*

-G36*

-X407000D02*X403000D01*

-Y171498D01*

-X403118Y171507D01*

-X403232Y171535D01*

-X403342Y171580D01*

-X403442Y171641D01*

-X403532Y171718D01*

-X403609Y171808D01*

-X403670Y171908D01*

-X403715Y172018D01*

-X403743Y172132D01*

-X403750Y172250D01*

-Y175750D01*

-X403743Y175868D01*

-X403715Y175982D01*

-X403670Y176092D01*

-X403609Y176192D01*

-X403532Y176282D01*

-X403442Y176359D01*

-X403342Y176420D01*

-X403232Y176465D01*

-X403118Y176493D01*

-X403000Y176502D01*

-Y187861D01*

-X403112Y188132D01*

-X403215Y188561D01*

-X403241Y189000D01*

-X403215Y189439D01*

-X403112Y189868D01*

-X403000Y190139D01*

-Y192861D01*

-X403112Y193132D01*

-X403215Y193561D01*

-X403241Y194000D01*

-X403215Y194439D01*

-X403112Y194868D01*

-X403000Y195139D01*

-Y201498D01*

-X403118Y201507D01*

-X403232Y201535D01*

-X403342Y201580D01*

-X403442Y201641D01*

-X403532Y201718D01*

-X403609Y201808D01*

-X403670Y201908D01*

-X403715Y202018D01*

-X403743Y202132D01*

-X403750Y202250D01*

-Y205750D01*

-X403743Y205868D01*

-X403715Y205982D01*

-X403670Y206092D01*

-X403609Y206192D01*

-X403532Y206282D01*

-X403442Y206359D01*

-X403342Y206420D01*

-X403232Y206465D01*

-X403118Y206493D01*

-X403000Y206502D01*

-Y231498D01*

-X403118Y231507D01*

-X403232Y231535D01*

-X403342Y231580D01*

-X403442Y231641D01*

-X403532Y231718D01*

-X403609Y231808D01*

-X403670Y231908D01*

-X403715Y232018D01*

-X403743Y232132D01*

-X403750Y232250D01*

-Y235750D01*

-X403743Y235868D01*

-X403715Y235982D01*

-X403670Y236092D01*

-X403609Y236192D01*

-X403532Y236282D01*

-X403442Y236359D01*

-X403342Y236420D01*

-X403232Y236465D01*

-X403118Y236493D01*

-X403000Y236502D01*

-Y261498D01*

-X403118Y261507D01*

-X403232Y261535D01*

-X403342Y261580D01*

-X403442Y261641D01*

-X403532Y261718D01*

-X403609Y261808D01*

-X403670Y261908D01*

-X403715Y262018D01*

-X403743Y262132D01*

-X403750Y262250D01*

-Y265750D01*

-X403743Y265868D01*

-X403715Y265982D01*

-X403670Y266092D01*

-X403609Y266192D01*

-X403532Y266282D01*

-X403442Y266359D01*

-X403342Y266420D01*

-X403232Y266465D01*

-X403118Y266493D01*

-X403000Y266502D01*

-Y291498D01*

-X403118Y291507D01*

-X403232Y291535D01*

-X403342Y291580D01*

-X403442Y291641D01*

-X403532Y291718D01*

-X403609Y291808D01*

-X403670Y291908D01*

-X403715Y292018D01*

-X403743Y292132D01*

-X403750Y292250D01*

-Y295750D01*

-X403743Y295868D01*

-X403715Y295982D01*

-X403670Y296092D01*

-X403609Y296192D01*

-X403532Y296282D01*

-X403442Y296359D01*

-X403342Y296420D01*

-X403232Y296465D01*

-X403118Y296493D01*

-X403000Y296502D01*

-Y321498D01*

-X403118Y321507D01*

-X403232Y321535D01*

-X403342Y321580D01*

-X403442Y321641D01*

-X403532Y321718D01*

-X403609Y321808D01*

-X403670Y321908D01*

-X403715Y322018D01*

-X403743Y322132D01*

-X403750Y322250D01*

-Y325750D01*

-X403743Y325868D01*

-X403715Y325982D01*

-X403670Y326092D01*

-X403609Y326192D01*

-X403532Y326282D01*

-X403442Y326359D01*

-X403342Y326420D01*

-X403232Y326465D01*

-X403118Y326493D01*

-X403000Y326502D01*

-Y351498D01*

-X403118Y351507D01*

-X403232Y351535D01*

-X403342Y351580D01*

-X403442Y351641D01*

-X403532Y351718D01*

-X403609Y351808D01*

-X403670Y351908D01*

-X403715Y352018D01*

-X403743Y352132D01*

-X403750Y352250D01*

-Y355750D01*

-X403743Y355868D01*

-X403715Y355982D01*

-X403670Y356092D01*

-X403609Y356192D01*

-X403532Y356282D01*

-X403442Y356359D01*

-X403342Y356420D01*

-X403232Y356465D01*

-X403118Y356493D01*

-X403000Y356502D01*

-Y381498D01*

-X403118Y381507D01*

-X403232Y381535D01*

-X403342Y381580D01*

-X403442Y381641D01*

-X403532Y381718D01*

-X403609Y381808D01*

-X403670Y381908D01*

-X403715Y382018D01*

-X403743Y382132D01*

-X403750Y382250D01*

-Y385750D01*

-X403743Y385868D01*

-X403715Y385982D01*

-X403670Y386092D01*

-X403609Y386192D01*

-X403532Y386282D01*

-X403442Y386359D01*

-X403342Y386420D01*

-X403232Y386465D01*

-X403118Y386493D01*

-X403000Y386502D01*

-Y397000D01*

-X407000D01*

-Y388750D01*

-X405250D01*

-X405132Y388743D01*

-X405018Y388715D01*

-X404908Y388670D01*

-X404808Y388609D01*

-X404718Y388532D01*

-X404641Y388442D01*

-X404580Y388342D01*

-X404535Y388232D01*

-X404507Y388118D01*

-X404498Y388000D01*

-X404507Y387882D01*

-X404535Y387768D01*

-X404580Y387658D01*

-X404641Y387558D01*

-X404718Y387468D01*

-X404808Y387391D01*

-X404908Y387330D01*

-X405018Y387285D01*

-X405132Y387257D01*

-X405250Y387250D01*

-X407000D01*

-Y380750D01*

-X405250D01*

-X405132Y380743D01*

-X405018Y380715D01*

-X404908Y380670D01*

-X404808Y380609D01*

-X404718Y380532D01*

-X404641Y380442D01*

-X404580Y380342D01*

-X404535Y380232D01*

-X404507Y380118D01*

-X404498Y380000D01*

-X404507Y379882D01*

-X404535Y379768D01*

-X404580Y379658D01*

-X404641Y379558D01*

-X404718Y379468D01*

-X404808Y379391D01*

-X404908Y379330D01*

-X405018Y379285D01*

-X405132Y379257D01*

-X405250Y379250D01*

-X407000D01*

-Y358750D01*

-X405250D01*

-X405132Y358743D01*

-X405018Y358715D01*

-X404908Y358670D01*

-X404808Y358609D01*

-X404718Y358532D01*

-X404641Y358442D01*

-X404580Y358342D01*

-X404535Y358232D01*

-X404507Y358118D01*

-X404498Y358000D01*

-X404507Y357882D01*

-X404535Y357768D01*

-X404580Y357658D01*

-X404641Y357558D01*

-X404718Y357468D01*

-X404808Y357391D01*

-X404908Y357330D01*

-X405018Y357285D01*

-X405132Y357257D01*

-X405250Y357250D01*

-X407000D01*

-Y350750D01*

-X405250D01*

-X405132Y350743D01*

-X405018Y350715D01*

-X404908Y350670D01*

-X404808Y350609D01*

-X404718Y350532D01*

-X404641Y350442D01*

-X404580Y350342D01*

-X404535Y350232D01*

-X404507Y350118D01*

-X404498Y350000D01*

-X404507Y349882D01*

-X404535Y349768D01*

-X404580Y349658D01*

-X404641Y349558D01*

-X404718Y349468D01*

-X404808Y349391D01*

-X404908Y349330D01*

-X405018Y349285D01*

-X405132Y349257D01*

-X405250Y349250D01*

-X407000D01*

-Y328750D01*

-X405250D01*

-X405132Y328743D01*

-X405018Y328715D01*

-X404908Y328670D01*

-X404808Y328609D01*

-X404718Y328532D01*

-X404641Y328442D01*

-X404580Y328342D01*

-X404535Y328232D01*

-X404507Y328118D01*

-X404498Y328000D01*

-X404507Y327882D01*

-X404535Y327768D01*

-X404580Y327658D01*

-X404641Y327558D01*

-X404718Y327468D01*

-X404808Y327391D01*

-X404908Y327330D01*

-X405018Y327285D01*

-X405132Y327257D01*

-X405250Y327250D01*

-X407000D01*

-Y320750D01*

-X405250D01*

-X405132Y320743D01*

-X405018Y320715D01*

-X404908Y320670D01*

-X404808Y320609D01*

-X404718Y320532D01*

-X404641Y320442D01*

-X404580Y320342D01*

-X404535Y320232D01*

-X404507Y320118D01*

-X404498Y320000D01*

-X404507Y319882D01*

-X404535Y319768D01*

-X404580Y319658D01*

-X404641Y319558D01*

-X404718Y319468D01*

-X404808Y319391D01*

-X404908Y319330D01*

-X405018Y319285D01*

-X405132Y319257D01*

-X405250Y319250D01*

-X407000D01*

-Y298750D01*

-X405250D01*

-X405132Y298743D01*

-X405018Y298715D01*

-X404908Y298670D01*

-X404808Y298609D01*

-X404718Y298532D01*

-X404641Y298442D01*

-X404580Y298342D01*

-X404535Y298232D01*

-X404507Y298118D01*

-X404498Y298000D01*

-X404507Y297882D01*

-X404535Y297768D01*

-X404580Y297658D01*

-X404641Y297558D01*

-X404718Y297468D01*

-X404808Y297391D01*

-X404908Y297330D01*

-X405018Y297285D01*

-X405132Y297257D01*

-X405250Y297250D01*

-X407000D01*

-Y290750D01*

-X405250D01*

-X405132Y290743D01*

-X405018Y290715D01*

-X404908Y290670D01*

-X404808Y290609D01*

-X404718Y290532D01*

-X404641Y290442D01*

-X404580Y290342D01*

-X404535Y290232D01*

-X404507Y290118D01*

-X404498Y290000D01*

-X404507Y289882D01*

-X404535Y289768D01*

-X404580Y289658D01*

-X404641Y289558D01*

-X404718Y289468D01*

-X404808Y289391D01*

-X404908Y289330D01*

-X405018Y289285D01*

-X405132Y289257D01*

-X405250Y289250D01*

-X407000D01*

-Y268750D01*

-X405250D01*

-X405132Y268743D01*

-X405018Y268715D01*

-X404908Y268670D01*

-X404808Y268609D01*

-X404718Y268532D01*

-X404641Y268442D01*

-X404580Y268342D01*

-X404535Y268232D01*

-X404507Y268118D01*

-X404498Y268000D01*

-X404507Y267882D01*

-X404535Y267768D01*

-X404580Y267658D01*

-X404641Y267558D01*

-X404718Y267468D01*

-X404808Y267391D01*

-X404908Y267330D01*

-X405018Y267285D01*

-X405132Y267257D01*

-X405250Y267250D01*

-X407000D01*

-Y260750D01*

-X405250D01*

-X405132Y260743D01*

-X405018Y260715D01*

-X404908Y260670D01*

-X404808Y260609D01*

-X404718Y260532D01*

-X404641Y260442D01*

-X404580Y260342D01*

-X404535Y260232D01*

-X404507Y260118D01*

-X404498Y260000D01*

-X404507Y259882D01*

-X404535Y259768D01*

-X404580Y259658D01*

-X404641Y259558D01*

-X404718Y259468D01*

-X404808Y259391D01*

-X404908Y259330D01*

-X405018Y259285D01*

-X405132Y259257D01*

-X405250Y259250D01*

-X407000D01*

-Y238750D01*

-X405250D01*

-X405132Y238743D01*

-X405018Y238715D01*

-X404908Y238670D01*

-X404808Y238609D01*

-X404718Y238532D01*

-X404641Y238442D01*

-X404580Y238342D01*

-X404535Y238232D01*

-X404507Y238118D01*

-X404498Y238000D01*

-X404507Y237882D01*

-X404535Y237768D01*

-X404580Y237658D01*

-X404641Y237558D01*

-X404718Y237468D01*

-X404808Y237391D01*

-X404908Y237330D01*

-X405018Y237285D01*

-X405132Y237257D01*

-X405250Y237250D01*

-X407000D01*

-Y230750D01*

-X405250D01*

-X405132Y230743D01*

-X405018Y230715D01*

-X404908Y230670D01*

-X404808Y230609D01*

-X404718Y230532D01*

-X404641Y230442D01*

-X404580Y230342D01*

-X404535Y230232D01*

-X404507Y230118D01*

-X404498Y230000D01*

-X404507Y229882D01*

-X404535Y229768D01*

-X404580Y229658D01*

-X404641Y229558D01*

-X404718Y229468D01*

-X404808Y229391D01*

-X404908Y229330D01*

-X405018Y229285D01*

-X405132Y229257D01*

-X405250Y229250D01*

-X407000D01*

-Y208750D01*

-X405250D01*

-X405132Y208743D01*

-X405018Y208715D01*

-X404908Y208670D01*

-X404808Y208609D01*

-X404718Y208532D01*

-X404641Y208442D01*

-X404580Y208342D01*

-X404535Y208232D01*

-X404507Y208118D01*

-X404498Y208000D01*

-X404507Y207882D01*

-X404535Y207768D01*

-X404580Y207658D01*

-X404641Y207558D01*

-X404718Y207468D01*

-X404808Y207391D01*

-X404908Y207330D01*

-X405018Y207285D01*

-X405132Y207257D01*

-X405250Y207250D01*

-X407000D01*

-Y200750D01*

-X405250D01*

-X405132Y200743D01*

-X405018Y200715D01*

-X404908Y200670D01*

-X404808Y200609D01*

-X404718Y200532D01*

-X404641Y200442D01*

-X404580Y200342D01*

-X404535Y200232D01*

-X404507Y200118D01*

-X404498Y200000D01*

-X404507Y199882D01*

-X404535Y199768D01*

-X404580Y199658D01*

-X404641Y199558D01*

-X404718Y199468D01*

-X404808Y199391D01*

-X404908Y199330D01*

-X405018Y199285D01*

-X405132Y199257D01*

-X405250Y199250D01*

-X407000D01*

-Y178750D01*

-X405250D01*

-X405132Y178743D01*

-X405018Y178715D01*

-X404908Y178670D01*

-X404808Y178609D01*

-X404718Y178532D01*

-X404641Y178442D01*

-X404580Y178342D01*

-X404535Y178232D01*

-X404507Y178118D01*

-X404498Y178000D01*

-X404507Y177882D01*

-X404535Y177768D01*

-X404580Y177658D01*

-X404641Y177558D01*

-X404718Y177468D01*

-X404808Y177391D01*

-X404908Y177330D01*

-X405018Y177285D01*

-X405132Y177257D01*

-X405250Y177250D01*

-X407000D01*

-Y170750D01*

-X405250D01*

-X405132Y170743D01*

-X405018Y170715D01*

-X404908Y170670D01*

-X404808Y170609D01*

-X404718Y170532D01*

-X404641Y170442D01*

-X404580Y170342D01*

-X404535Y170232D01*

-X404507Y170118D01*

-X404498Y170000D01*

-X404507Y169882D01*

-X404535Y169768D01*

-X404580Y169658D01*

-X404641Y169558D01*

-X404718Y169468D01*

-X404808Y169391D01*

-X404908Y169330D01*

-X405018Y169285D01*

-X405132Y169257D01*

-X405250Y169250D01*

-X407000D01*

-Y159000D01*

-G37*

-G36*

-X403000Y386502D02*X402882Y386493D01*

-X402768Y386465D01*

-X402658Y386420D01*

-X402558Y386359D01*

-X402468Y386282D01*

-X402396Y386197D01*

-X402441Y397000D01*

-X403000D01*

-Y386502D01*

-G37*

-G36*

-Y356502D02*X402882Y356493D01*

-X402768Y356465D01*

-X402658Y356420D01*

-X402558Y356359D01*

-X402468Y356282D01*

-X402391Y356192D01*

-X402330Y356092D01*

-X402285Y355982D01*

-X402268Y355915D01*

-X402377Y381831D01*

-X402391Y381808D01*

-X402468Y381718D01*

-X402558Y381641D01*

-X402658Y381580D01*

-X402768Y381535D01*

-X402882Y381507D01*

-X403000Y381498D01*

-Y356502D01*

-G37*

-G36*

-Y195139D02*X402944Y195275D01*

-X402713Y195651D01*

-X402427Y195986D01*

-X402092Y196272D01*

-X401716Y196503D01*

-X401599Y196551D01*

-X402253Y352203D01*

-X402257Y352132D01*

-X402285Y352018D01*

-X402330Y351908D01*

-X402391Y351808D01*

-X402468Y351718D01*

-X402558Y351641D01*

-X402658Y351580D01*

-X402768Y351535D01*

-X402882Y351507D01*

-X403000Y351498D01*

-Y326502D01*

-X402882Y326493D01*

-X402768Y326465D01*

-X402658Y326420D01*

-X402558Y326359D01*

-X402468Y326282D01*

-X402391Y326192D01*

-X402330Y326092D01*

-X402285Y325982D01*

-X402257Y325868D01*

-X402250Y325750D01*

-Y322250D01*

-X402257Y322132D01*

-X402285Y322018D01*

-X402330Y321908D01*

-X402391Y321808D01*

-X402468Y321718D01*

-X402558Y321641D01*

-X402658Y321580D01*

-X402768Y321535D01*

-X402882Y321507D01*

-X403000Y321498D01*

-Y296502D01*

-X402882Y296493D01*

-X402768Y296465D01*

-X402658Y296420D01*

-X402558Y296359D01*

-X402468Y296282D01*

-X402391Y296192D01*

-X402330Y296092D01*

-X402285Y295982D01*

-X402257Y295868D01*

-X402250Y295750D01*

-Y292250D01*

-X402257Y292132D01*

-X402285Y292018D01*

-X402330Y291908D01*

-X402391Y291808D01*

-X402468Y291718D01*

-X402558Y291641D01*

-X402658Y291580D01*

-X402768Y291535D01*

-X402882Y291507D01*

-X403000Y291498D01*

-Y266502D01*

-X402882Y266493D01*

-X402768Y266465D01*

-X402658Y266420D01*

-X402558Y266359D01*

-X402468Y266282D01*

-X402391Y266192D01*

-X402330Y266092D01*

-X402285Y265982D01*

-X402257Y265868D01*

-X402250Y265750D01*

-Y262250D01*

-X402257Y262132D01*

-X402285Y262018D01*

-X402330Y261908D01*

-X402391Y261808D01*

-X402468Y261718D01*

-X402558Y261641D01*

-X402658Y261580D01*

-X402768Y261535D01*

-X402882Y261507D01*

-X403000Y261498D01*

-Y236502D01*

-X402882Y236493D01*

-X402768Y236465D01*

-X402658Y236420D01*

-X402558Y236359D01*

-X402468Y236282D01*

-X402391Y236192D01*

-X402330Y236092D01*

-X402285Y235982D01*

-X402257Y235868D01*

-X402250Y235750D01*

-Y232250D01*

-X402257Y232132D01*

-X402285Y232018D01*

-X402330Y231908D01*

-X402391Y231808D01*

-X402468Y231718D01*

-X402558Y231641D01*

-X402658Y231580D01*

-X402768Y231535D01*

-X402882Y231507D01*

-X403000Y231498D01*

-Y206502D01*

-X402882Y206493D01*

-X402768Y206465D01*

-X402658Y206420D01*

-X402558Y206359D01*

-X402468Y206282D01*

-X402391Y206192D01*

-X402330Y206092D01*

-X402285Y205982D01*

-X402257Y205868D01*

-X402250Y205750D01*

-Y202250D01*

-X402257Y202132D01*

-X402285Y202018D01*

-X402330Y201908D01*

-X402391Y201808D01*

-X402468Y201718D01*

-X402558Y201641D01*

-X402658Y201580D01*

-X402768Y201535D01*

-X402882Y201507D01*

-X403000Y201498D01*

-Y195139D01*

-G37*

-G36*

-Y190139D02*X402944Y190275D01*

-X402713Y190651D01*

-X402427Y190986D01*

-X402092Y191272D01*

-X401720Y191500D01*

-X402092Y191728D01*

-X402427Y192014D01*

-X402713Y192349D01*

-X402944Y192725D01*

-X403000Y192861D01*

-Y190139D01*

-G37*

-G36*

-Y159000D02*X401441D01*

-X401556Y186431D01*

-X401716Y186497D01*

-X402092Y186728D01*

-X402427Y187014D01*

-X402713Y187349D01*

-X402944Y187725D01*

-X403000Y187861D01*

-Y176502D01*

-X402882Y176493D01*

-X402768Y176465D01*

-X402658Y176420D01*

-X402558Y176359D01*

-X402468Y176282D01*

-X402391Y176192D01*

-X402330Y176092D01*

-X402285Y175982D01*

-X402257Y175868D01*

-X402250Y175750D01*

-Y172250D01*

-X402257Y172132D01*

-X402285Y172018D01*

-X402330Y171908D01*

-X402391Y171808D01*

-X402468Y171718D01*

-X402558Y171641D01*

-X402658Y171580D01*

-X402768Y171535D01*

-X402882Y171507D01*

-X403000Y171498D01*

-Y159000D01*

-G37*

-G36*

-X434446Y39000D02*X395438D01*

-Y58499D01*

-X395502Y58538D01*

-X395718Y58722D01*

-X395902Y58938D01*

-X396050Y59179D01*

-X396158Y59441D01*

-X396224Y59717D01*

-X396241Y59999D01*

-X396224Y60281D01*

-X396158Y60557D01*

-X396050Y60819D01*

-X395902Y61060D01*

-X395718Y61276D01*

-X395502Y61460D01*

-X395438Y61499D01*

-Y65194D01*

-X395441Y65193D01*

-X395723Y65216D01*

-X395999Y65282D01*

-X396261Y65390D01*

-X396502Y65538D01*

-X396718Y65722D01*

-X396902Y65938D01*

-X397050Y66179D01*

-X397158Y66441D01*

-X397224Y66717D01*

-X397241Y66999D01*

-X397224Y67281D01*

-X397158Y67557D01*

-X397050Y67819D01*

-X396902Y68060D01*

-X396718Y68276D01*

-X396502Y68460D01*

-X396261Y68608D01*

-X395999Y68716D01*

-X395723Y68782D01*

-X395441Y68805D01*

-X395438Y68804D01*

-Y132000D01*

-X407941D01*

-Y70000D01*

-X434446D01*

-Y58305D01*

-X434167Y58283D01*

-X433891Y58217D01*

-X433629Y58109D01*

-X433388Y57961D01*

-X433172Y57777D01*

-X432988Y57561D01*

-X432840Y57320D01*

-X432732Y57058D01*

-X432666Y56782D01*

-X432643Y56500D01*

-X432666Y56218D01*

-X432732Y55942D01*

-X432840Y55680D01*

-X432988Y55439D01*

-X433172Y55223D01*

-X433388Y55039D01*

-X433629Y54891D01*

-X433891Y54783D01*

-X434167Y54717D01*

-X434446Y54695D01*

-Y39000D01*

-G37*

-G36*

-X395438D02*X391438D01*

-Y52506D01*

-X391480Y52438D01*

-X391664Y52222D01*

-X391880Y52038D01*

-X392121Y51890D01*

-X392383Y51782D01*

-X392659Y51716D01*

-X392941Y51693D01*

-X393223Y51716D01*

-X393499Y51782D01*

-X393761Y51890D01*

-X394002Y52038D01*

-X394218Y52222D01*

-X394402Y52438D01*

-X394550Y52679D01*

-X394658Y52941D01*

-X394724Y53217D01*

-X394741Y53499D01*

-X394724Y53781D01*

-X394658Y54057D01*

-X394550Y54319D01*

-X394402Y54560D01*

-X394218Y54776D01*

-X394002Y54960D01*

-X393761Y55108D01*

-X393499Y55216D01*

-X393223Y55282D01*

-X392941Y55305D01*

-X392659Y55282D01*

-X392383Y55216D01*

-X392121Y55108D01*

-X391880Y54960D01*

-X391664Y54776D01*

-X391480Y54560D01*

-X391438Y54492D01*

-Y72769D01*

-X391659Y72716D01*

-X391941Y72693D01*

-X392223Y72716D01*

-X392499Y72782D01*

-X392761Y72890D01*

-X393002Y73038D01*

-X393218Y73222D01*

-X393402Y73438D01*

-X393550Y73679D01*

-X393658Y73941D01*

-X393724Y74217D01*

-X393741Y74499D01*

-X393724Y74781D01*

-X393658Y75057D01*

-X393550Y75319D01*

-X393402Y75560D01*

-X393218Y75776D01*

-X393002Y75960D01*

-X392761Y76108D01*

-X392499Y76216D01*

-X392223Y76282D01*

-X391941Y76305D01*

-X391659Y76282D01*

-X391438Y76229D01*

-Y78194D01*

-X391441Y78193D01*

-X391723Y78216D01*

-X391999Y78282D01*

-X392261Y78390D01*

-X392502Y78538D01*

-X392718Y78722D01*

-X392902Y78938D01*

-X393050Y79179D01*

-X393158Y79441D01*

-X393224Y79717D01*

-X393241Y79999D01*

-X393224Y80281D01*

-X393158Y80557D01*

-X393050Y80819D01*

-X392902Y81060D01*

-X392718Y81276D01*

-X392502Y81460D01*

-X392261Y81608D01*

-X391999Y81716D01*

-X391723Y81782D01*

-X391441Y81805D01*

-X391438Y81804D01*

-Y82694D01*

-X391441Y82693D01*

-X391723Y82716D01*

-X391999Y82782D01*

-X392261Y82890D01*

-X392502Y83038D01*

-X392718Y83222D01*

-X392902Y83438D01*

-X393050Y83679D01*

-X393158Y83941D01*

-X393224Y84217D01*

-X393241Y84499D01*

-X393224Y84781D01*

-X393158Y85057D01*

-X393050Y85319D01*

-X392902Y85560D01*

-X392718Y85776D01*

-X392502Y85960D01*

-X392261Y86108D01*

-X391999Y86216D01*

-X391723Y86282D01*

-X391441Y86305D01*

-X391438Y86304D01*

-Y132000D01*

-X395438D01*

-Y68804D01*

-X395159Y68782D01*

-X394883Y68716D01*

-X394621Y68608D01*

-X394380Y68460D01*

-X394164Y68276D01*

-X393980Y68060D01*

-X393832Y67819D01*

-X393724Y67557D01*

-X393658Y67281D01*

-X393635Y66999D01*

-X393658Y66717D01*

-X393724Y66441D01*

-X393832Y66179D01*

-X393980Y65938D01*

-X394164Y65722D01*

-X394380Y65538D01*

-X394621Y65390D01*

-X394883Y65282D01*

-X395159Y65216D01*

-X395438Y65194D01*

-Y61499D01*

-X395261Y61608D01*

-X394999Y61716D01*

-X394723Y61782D01*

-X394441Y61805D01*

-X394159Y61782D01*

-X393883Y61716D01*

-X393621Y61608D01*

-X393380Y61460D01*

-X393164Y61276D01*

-X392980Y61060D01*

-X392832Y60819D01*

-X392724Y60557D01*

-X392658Y60281D01*

-X392635Y59999D01*

-X392658Y59717D01*

-X392724Y59441D01*

-X392832Y59179D01*

-X392980Y58938D01*

-X393164Y58722D01*

-X393380Y58538D01*

-X393621Y58390D01*

-X393883Y58282D01*

-X394159Y58216D01*

-X394441Y58193D01*

-X394723Y58216D01*

-X394999Y58282D01*

-X395261Y58390D01*

-X395438Y58499D01*

-Y39000D01*

-G37*

-G36*

-X391438D02*X387938D01*

-Y91694D01*

-X387941Y91693D01*

-X388223Y91716D01*

-X388499Y91782D01*

-X388761Y91890D01*

-X389002Y92038D01*

-X389218Y92222D01*

-X389402Y92438D01*

-X389550Y92679D01*

-X389658Y92941D01*

-X389724Y93217D01*

-X389741Y93499D01*

-X389724Y93781D01*

-X389658Y94057D01*

-X389550Y94319D01*

-X389402Y94560D01*

-X389218Y94776D01*

-X389002Y94960D01*

-X388761Y95108D01*

-X388499Y95216D01*

-X388223Y95282D01*

-X387941Y95305D01*

-X387938Y95304D01*

-Y96194D01*

-X387941Y96193D01*

-X388223Y96216D01*

-X388499Y96282D01*

-X388761Y96390D01*

-X389002Y96538D01*

-X389218Y96722D01*

-X389402Y96938D01*

-X389550Y97179D01*

-X389658Y97441D01*

-X389724Y97717D01*

-X389741Y97999D01*

-X389724Y98281D01*

-X389658Y98557D01*

-X389550Y98819D01*

-X389402Y99060D01*

-X389218Y99276D01*

-X389002Y99460D01*

-X388761Y99608D01*

-X388499Y99716D01*

-X388223Y99782D01*

-X387941Y99805D01*

-X387938Y99804D01*

-Y102194D01*

-X387941Y102193D01*

-X388223Y102216D01*

-X388499Y102282D01*

-X388761Y102390D01*

-X389002Y102538D01*

-X389218Y102722D01*

-X389402Y102938D01*

-X389550Y103179D01*

-X389658Y103441D01*

-X389724Y103717D01*

-X389741Y103999D01*

-X389724Y104281D01*

-X389658Y104557D01*

-X389550Y104819D01*

-X389402Y105060D01*

-X389218Y105276D01*

-X389002Y105460D01*

-X388761Y105608D01*

-X388499Y105716D01*

-X388223Y105782D01*

-X387941Y105805D01*

-X387938Y105804D01*

-Y108194D01*

-X387941Y108193D01*

-X388223Y108216D01*

-X388499Y108282D01*

-X388761Y108390D01*

-X389002Y108538D01*

-X389218Y108722D01*

-X389402Y108938D01*

-X389550Y109179D01*

-X389658Y109441D01*

-X389724Y109717D01*

-X389741Y109999D01*

-X389724Y110281D01*

-X389658Y110557D01*

-X389550Y110819D01*

-X389402Y111060D01*

-X389218Y111276D01*

-X389002Y111460D01*

-X388761Y111608D01*

-X388499Y111716D01*

-X388223Y111782D01*

-X387941Y111805D01*

-X387938Y111804D01*

-Y114194D01*

-X387941Y114193D01*

-X388223Y114216D01*

-X388499Y114282D01*

-X388761Y114390D01*

-X389002Y114538D01*

-X389218Y114722D01*

-X389402Y114938D01*

-X389550Y115179D01*

-X389658Y115441D01*

-X389724Y115717D01*

-X389741Y115999D01*

-X389724Y116281D01*

-X389658Y116557D01*

-X389550Y116819D01*

-X389402Y117060D01*

-X389218Y117276D01*

-X389002Y117460D01*

-X388761Y117608D01*

-X388499Y117716D01*

-X388223Y117782D01*

-X387941Y117805D01*

-X387938Y117804D01*

-Y120194D01*

-X387941Y120193D01*

-X388223Y120216D01*

-X388499Y120282D01*

-X388761Y120390D01*

-X389002Y120538D01*

-X389218Y120722D01*

-X389402Y120938D01*

-X389550Y121179D01*

-X389658Y121441D01*

-X389724Y121717D01*

-X389741Y121999D01*

-X389724Y122281D01*

-X389658Y122557D01*

-X389550Y122819D01*

-X389402Y123060D01*

-X389218Y123276D01*

-X389002Y123460D01*

-X388761Y123608D01*

-X388499Y123716D01*

-X388223Y123782D01*

-X387941Y123805D01*

-X387938Y123804D01*

-Y126194D01*

-X387941Y126193D01*

-X388223Y126216D01*

-X388499Y126282D01*

-X388761Y126390D01*

-X389002Y126538D01*

-X389218Y126722D01*

-X389402Y126938D01*

-X389550Y127179D01*

-X389658Y127441D01*

-X389724Y127717D01*

-X389741Y127999D01*

-X389724Y128281D01*

-X389658Y128557D01*

-X389550Y128819D01*

-X389402Y129060D01*

-X389218Y129276D01*

-X389002Y129460D01*

-X388761Y129608D01*

-X388499Y129716D01*

-X388223Y129782D01*

-X387941Y129805D01*

-X387938Y129804D01*

-Y132000D01*

-X391438D01*

-Y86304D01*

-X391159Y86282D01*

-X390883Y86216D01*

-X390621Y86108D01*

-X390380Y85960D01*

-X390164Y85776D01*

-X389980Y85560D01*

-X389832Y85319D01*

-X389724Y85057D01*

-X389658Y84781D01*

-X389635Y84499D01*

-X389658Y84217D01*

-X389724Y83941D01*

-X389832Y83679D01*

-X389980Y83438D01*

-X390164Y83222D01*

-X390380Y83038D01*

-X390621Y82890D01*

-X390883Y82782D01*

-X391159Y82716D01*

-X391438Y82694D01*

-Y81804D01*

-X391159Y81782D01*

-X390883Y81716D01*

-X390621Y81608D01*

-X390380Y81460D01*

-X390164Y81276D01*

-X389980Y81060D01*

-X389832Y80819D01*

-X389724Y80557D01*

-X389658Y80281D01*

-X389635Y79999D01*

-X389658Y79717D01*

-X389724Y79441D01*

-X389832Y79179D01*

-X389980Y78938D01*

-X390164Y78722D01*

-X390380Y78538D01*

-X390621Y78390D01*

-X390883Y78282D01*

-X391159Y78216D01*

-X391438Y78194D01*

-Y76229D01*

-X391383Y76216D01*

-X391121Y76108D01*

-X390880Y75960D01*

-X390664Y75776D01*

-X390480Y75560D01*

-X390332Y75319D01*

-X390224Y75057D01*

-X390158Y74781D01*

-X390135Y74499D01*

-X390158Y74217D01*

-X390224Y73941D01*

-X390332Y73679D01*

-X390480Y73438D01*

-X390664Y73222D01*

-X390880Y73038D01*

-X391121Y72890D01*

-X391383Y72782D01*

-X391438Y72769D01*

-Y54492D01*

-X391332Y54319D01*

-X391224Y54057D01*

-X391158Y53781D01*

-X391135Y53499D01*

-X391158Y53217D01*

-X391224Y52941D01*

-X391332Y52679D01*

-X391438Y52506D01*

-Y39000D01*

-G37*

-G36*

-X387938D02*X374938D01*

-Y41695D01*

-X374941Y41694D01*

-X375223Y41717D01*

-X375499Y41783D01*

-X375761Y41891D01*

-X376002Y42039D01*

-X376218Y42223D01*

-X376402Y42439D01*

-X376550Y42680D01*

-X376658Y42942D01*

-X376724Y43218D01*

-X376741Y43500D01*

-X376724Y43782D01*

-X376658Y44058D01*

-X376550Y44320D01*

-X376402Y44561D01*

-X376218Y44777D01*

-X376002Y44961D01*

-X375761Y45109D01*

-X375499Y45217D01*

-X375362Y45250D01*

-X375499Y45283D01*

-X375761Y45391D01*

-X376002Y45539D01*

-X376218Y45723D01*

-X376402Y45939D01*

-X376550Y46180D01*

-X376658Y46442D01*

-X376724Y46718D01*

-X376741Y47000D01*

-X376724Y47282D01*

-X376658Y47558D01*

-X376550Y47820D01*

-X376402Y48061D01*

-X376218Y48277D01*

-X376002Y48461D01*

-X375761Y48609D01*

-X375499Y48717D01*

-X375223Y48783D01*

-X374941Y48806D01*

-X374938Y48805D01*

-Y132000D01*

-X387938D01*

-Y129804D01*

-X387659Y129782D01*

-X387383Y129716D01*

-X387121Y129608D01*

-X386880Y129460D01*

-X386664Y129276D01*

-X386480Y129060D01*

-X386332Y128819D01*

-X386224Y128557D01*

-X386158Y128281D01*

-X386135Y127999D01*

-X386158Y127717D01*

-X386224Y127441D01*

-X386332Y127179D01*

-X386480Y126938D01*

-X386664Y126722D01*

-X386880Y126538D01*

-X387121Y126390D01*

-X387383Y126282D01*

-X387659Y126216D01*

-X387938Y126194D01*

-Y123804D01*

-X387659Y123782D01*

-X387383Y123716D01*

-X387121Y123608D01*

-X386880Y123460D01*

-X386664Y123276D01*

-X386480Y123060D01*

-X386332Y122819D01*

-X386224Y122557D01*

-X386158Y122281D01*

-X386135Y121999D01*

-X386158Y121717D01*

-X386224Y121441D01*

-X386332Y121179D01*

-X386480Y120938D01*

-X386664Y120722D01*

-X386880Y120538D01*

-X387121Y120390D01*

-X387383Y120282D01*

-X387659Y120216D01*

-X387938Y120194D01*

-Y117804D01*

-X387659Y117782D01*

-X387383Y117716D01*

-X387121Y117608D01*

-X386880Y117460D01*

-X386664Y117276D01*

-X386480Y117060D01*

-X386332Y116819D01*

-X386224Y116557D01*

-X386158Y116281D01*

-X386135Y115999D01*

-X386158Y115717D01*

-X386224Y115441D01*

-X386332Y115179D01*

-X386480Y114938D01*

-X386664Y114722D01*

-X386880Y114538D01*

-X387121Y114390D01*

-X387383Y114282D01*

-X387659Y114216D01*

-X387938Y114194D01*

-Y111804D01*

-X387659Y111782D01*

-X387383Y111716D01*

-X387121Y111608D01*

-X386880Y111460D01*

-X386664Y111276D01*

-X386480Y111060D01*

-X386332Y110819D01*

-X386224Y110557D01*

-X386158Y110281D01*

-X386135Y109999D01*

-X386158Y109717D01*

-X386224Y109441D01*

-X386332Y109179D01*

-X386480Y108938D01*

-X386664Y108722D01*

-X386880Y108538D01*

-X387121Y108390D01*

-X387383Y108282D01*

-X387659Y108216D01*

-X387938Y108194D01*

-Y105804D01*

-X387659Y105782D01*

-X387383Y105716D01*

-X387121Y105608D01*

-X386880Y105460D01*

-X386664Y105276D01*

-X386480Y105060D01*

-X386332Y104819D01*

-X386224Y104557D01*

-X386158Y104281D01*

-X386135Y103999D01*

-X386158Y103717D01*

-X386224Y103441D01*

-X386332Y103179D01*

-X386480Y102938D01*

-X386664Y102722D01*

-X386880Y102538D01*

-X387121Y102390D01*

-X387383Y102282D01*

-X387659Y102216D01*

-X387938Y102194D01*

-Y99804D01*

-X387659Y99782D01*

-X387383Y99716D01*

-X387121Y99608D01*

-X386880Y99460D01*

-X386664Y99276D01*

-X386480Y99060D01*

-X386332Y98819D01*

-X386224Y98557D01*

-X386158Y98281D01*

-X386135Y97999D01*

-X386158Y97717D01*

-X386224Y97441D01*

-X386332Y97179D01*

-X386480Y96938D01*

-X386664Y96722D01*

-X386880Y96538D01*

-X387121Y96390D01*

-X387383Y96282D01*

-X387659Y96216D01*

-X387938Y96194D01*

-Y95304D01*

-X387659Y95282D01*

-X387383Y95216D01*

-X387121Y95108D01*

-X386880Y94960D01*

-X386664Y94776D01*

-X386480Y94560D01*

-X386332Y94319D01*

-X386224Y94057D01*

-X386158Y93781D01*

-X386135Y93499D01*

-X386158Y93217D01*

-X386224Y92941D01*

-X386332Y92679D01*

-X386480Y92438D01*

-X386664Y92222D01*

-X386880Y92038D01*

-X387121Y91890D01*

-X387383Y91782D01*

-X387659Y91716D01*

-X387938Y91694D01*

-Y39000D01*

-G37*

-G36*

-X374938D02*X368938D01*

-Y41695D01*

-X368941Y41694D01*

-X369223Y41717D01*

-X369499Y41783D01*

-X369761Y41891D01*

-X370002Y42039D01*

-X370218Y42223D01*

-X370402Y42439D01*

-X370550Y42680D01*

-X370658Y42942D01*

-X370724Y43218D01*

-X370741Y43500D01*

-X370724Y43782D01*

-X370658Y44058D01*

-X370550Y44320D01*

-X370402Y44561D01*

-X370218Y44777D01*

-X370002Y44961D01*

-X369761Y45109D01*

-X369499Y45217D01*

-X369223Y45283D01*

-X368941Y45306D01*

-X368938Y45305D01*

-Y46695D01*

-X368941Y46694D01*

-X369223Y46717D01*

-X369499Y46783D01*

-X369761Y46891D01*

-X370002Y47039D01*

-X370218Y47223D01*

-X370402Y47439D01*

-X370550Y47680D01*

-X370658Y47942D01*

-X370724Y48218D01*

-X370741Y48500D01*

-X370724Y48782D01*

-X370658Y49058D01*

-X370550Y49320D01*

-X370402Y49561D01*

-X370218Y49777D01*

-X370002Y49961D01*

-X369761Y50109D01*

-X369499Y50217D01*

-X369223Y50283D01*

-X368941Y50306D01*

-X368938Y50305D01*

-Y132000D01*

-X374938D01*

-Y48805D01*

-X374659Y48783D01*

-X374383Y48717D01*

-X374121Y48609D01*

-X373880Y48461D01*

-X373664Y48277D01*

-X373480Y48061D01*

-X373332Y47820D01*

-X373224Y47558D01*

-X373158Y47282D01*

-X373135Y47000D01*

-X373158Y46718D01*

-X373224Y46442D01*

-X373332Y46180D01*

-X373480Y45939D01*

-X373664Y45723D01*

-X373880Y45539D01*

-X374121Y45391D01*

-X374383Y45283D01*

-X374520Y45250D01*

-X374383Y45217D01*

-X374121Y45109D01*

-X373880Y44961D01*

-X373664Y44777D01*

-X373480Y44561D01*

-X373332Y44320D01*

-X373224Y44058D01*

-X373158Y43782D01*

-X373135Y43500D01*

-X373158Y43218D01*

-X373224Y42942D01*

-X373332Y42680D01*

-X373480Y42439D01*

-X373664Y42223D01*

-X373880Y42039D01*

-X374121Y41891D01*

-X374383Y41783D01*

-X374659Y41717D01*

-X374938Y41695D01*

-Y39000D01*

-G37*

-G36*

-X368938D02*X354938D01*

-Y91694D01*

-X354941Y91693D01*

-X355223Y91716D01*

-X355499Y91782D01*

-X355761Y91890D01*

-X356002Y92038D01*

-X356218Y92222D01*

-X356402Y92438D01*

-X356550Y92679D01*

-X356658Y92941D01*

-X356724Y93217D01*

-X356741Y93499D01*

-X356724Y93781D01*

-X356658Y94057D01*

-X356550Y94319D01*

-X356402Y94560D01*

-X356218Y94776D01*

-X356002Y94960D01*

-X355761Y95108D01*

-X355499Y95216D01*

-X355223Y95282D01*

-X354941Y95305D01*

-X354938Y95304D01*

-Y96194D01*

-X354941Y96193D01*

-X355223Y96216D01*

-X355499Y96282D01*

-X355761Y96390D01*

-X356002Y96538D01*

-X356218Y96722D01*

-X356402Y96938D01*

-X356550Y97179D01*

-X356658Y97441D01*

-X356724Y97717D01*

-X356741Y97999D01*

-X356724Y98281D01*

-X356658Y98557D01*

-X356550Y98819D01*

-X356402Y99060D01*

-X356218Y99276D01*

-X356002Y99460D01*

-X355761Y99608D01*

-X355499Y99716D01*

-X355223Y99782D01*

-X354941Y99805D01*

-X354938Y99804D01*

-Y102194D01*

-X354941Y102193D01*

-X355223Y102216D01*

-X355499Y102282D01*

-X355761Y102390D01*

-X356002Y102538D01*

-X356218Y102722D01*

-X356402Y102938D01*

-X356550Y103179D01*

-X356658Y103441D01*

-X356724Y103717D01*

-X356741Y103999D01*

-X356724Y104281D01*

-X356658Y104557D01*

-X356550Y104819D01*

-X356402Y105060D01*

-X356218Y105276D01*

-X356002Y105460D01*

-X355761Y105608D01*

-X355499Y105716D01*

-X355223Y105782D01*

-X354941Y105805D01*

-X354938Y105804D01*

-Y108194D01*

-X354941Y108193D01*

-X355223Y108216D01*

-X355499Y108282D01*

-X355761Y108390D01*

-X356002Y108538D01*

-X356218Y108722D01*

-X356402Y108938D01*

-X356550Y109179D01*

-X356658Y109441D01*

-X356724Y109717D01*

-X356741Y109999D01*

-X356724Y110281D01*

-X356658Y110557D01*

-X356550Y110819D01*

-X356402Y111060D01*

-X356218Y111276D01*

-X356002Y111460D01*

-X355761Y111608D01*

-X355499Y111716D01*

-X355223Y111782D01*

-X354941Y111805D01*

-X354938Y111804D01*

-Y114194D01*

-X354941Y114193D01*

-X355223Y114216D01*

-X355499Y114282D01*

-X355761Y114390D01*

-X356002Y114538D01*

-X356218Y114722D01*

-X356402Y114938D01*

-X356550Y115179D01*

-X356658Y115441D01*

-X356724Y115717D01*

-X356741Y115999D01*

-X356724Y116281D01*

-X356658Y116557D01*

-X356550Y116819D01*

-X356402Y117060D01*

-X356218Y117276D01*

-X356002Y117460D01*

-X355761Y117608D01*

-X355499Y117716D01*

-X355223Y117782D01*

-X354941Y117805D01*

-X354938Y117804D01*

-Y120194D01*

-X354941Y120193D01*

-X355223Y120216D01*

-X355499Y120282D01*

-X355761Y120390D01*

-X356002Y120538D01*

-X356218Y120722D01*

-X356402Y120938D01*

-X356550Y121179D01*

-X356658Y121441D01*

-X356724Y121717D01*

-X356741Y121999D01*

-X356724Y122281D01*

-X356658Y122557D01*

-X356550Y122819D01*

-X356402Y123060D01*

-X356218Y123276D01*

-X356002Y123460D01*

-X355761Y123608D01*

-X355499Y123716D01*

-X355223Y123782D01*

-X354941Y123805D01*

-X354938Y123804D01*

-Y126194D01*

-X354941Y126193D01*

-X355223Y126216D01*

-X355499Y126282D01*

-X355761Y126390D01*

-X356002Y126538D01*

-X356218Y126722D01*

-X356402Y126938D01*

-X356550Y127179D01*

-X356658Y127441D01*

-X356724Y127717D01*

-X356741Y127999D01*

-X356724Y128281D01*

-X356658Y128557D01*

-X356550Y128819D01*

-X356402Y129060D01*

-X356218Y129276D01*

-X356002Y129460D01*

-X355761Y129608D01*

-X355499Y129716D01*

-X355223Y129782D01*

-X354941Y129805D01*

-X354938Y129804D01*

-Y132000D01*

-X368938D01*

-Y50305D01*

-X368659Y50283D01*

-X368383Y50217D01*

-X368121Y50109D01*

-X367880Y49961D01*

-X367664Y49777D01*

-X367480Y49561D01*

-X367332Y49320D01*

-X367224Y49058D01*

-X367158Y48782D01*

-X367135Y48500D01*

-X367158Y48218D01*

-X367224Y47942D01*

-X367332Y47680D01*

-X367480Y47439D01*

-X367664Y47223D01*

-X367880Y47039D01*

-X368121Y46891D01*

-X368383Y46783D01*

-X368659Y46717D01*

-X368938Y46695D01*

-Y45305D01*

-X368659Y45283D01*

-X368383Y45217D01*

-X368121Y45109D01*

-X367880Y44961D01*

-X367664Y44777D01*

-X367480Y44561D01*

-X367332Y44320D01*

-X367224Y44058D01*

-X367158Y43782D01*

-X367135Y43500D01*

-X367158Y43218D01*

-X367224Y42942D01*

-X367332Y42680D01*

-X367480Y42439D01*

-X367664Y42223D01*

-X367880Y42039D01*

-X368121Y41891D01*

-X368383Y41783D01*

-X368659Y41717D01*

-X368938Y41695D01*

-Y39000D01*

-G37*

-G36*

-X354938D02*X299441D01*

-Y44998D01*

-X299559Y45007D01*

-X299673Y45035D01*

-X299783Y45080D01*

-X299883Y45141D01*

-X299973Y45218D01*

-X300050Y45308D01*

-X300111Y45408D01*

-X300156Y45518D01*

-X300184Y45632D01*

-X300191Y45750D01*

-Y49250D01*

-X300184Y49368D01*

-X300156Y49482D01*

-X300111Y49592D01*

-X300050Y49692D01*

-X299973Y49782D01*

-X299883Y49859D01*

-X299783Y49920D01*

-X299673Y49965D01*

-X299559Y49993D01*

-X299441Y50002D01*

-Y54937D01*

-X299686Y55337D01*

-X299972Y56028D01*

-X300147Y56755D01*

-X300191Y57500D01*

-X300147Y58245D01*

-X299972Y58972D01*

-X299686Y59663D01*

-X299441Y60063D01*

-Y64937D01*

-X299686Y65337D01*

-X299972Y66028D01*

-X300147Y66755D01*

-X300191Y67500D01*

-X300147Y68245D01*

-X299972Y68972D01*

-X299686Y69663D01*

-X299441Y70063D01*

-Y76000D01*

-X313941D01*

-Y132000D01*

-X354938D01*

-Y129804D01*

-X354659Y129782D01*

-X354383Y129716D01*

-X354121Y129608D01*

-X353880Y129460D01*

-X353664Y129276D01*

-X353480Y129060D01*

-X353332Y128819D01*

-X353224Y128557D01*

-X353158Y128281D01*

-X353135Y127999D01*

-X353158Y127717D01*

-X353224Y127441D01*

-X353332Y127179D01*

-X353480Y126938D01*

-X353664Y126722D01*

-X353880Y126538D01*

-X354121Y126390D01*

-X354383Y126282D01*

-X354659Y126216D01*

-X354938Y126194D01*

-Y123804D01*

-X354659Y123782D01*

-X354383Y123716D01*

-X354121Y123608D01*

-X353880Y123460D01*

-X353664Y123276D01*

-X353480Y123060D01*

-X353332Y122819D01*

-X353224Y122557D01*

-X353158Y122281D01*

-X353135Y121999D01*

-X353158Y121717D01*

-X353224Y121441D01*

-X353332Y121179D01*

-X353480Y120938D01*

-X353664Y120722D01*

-X353880Y120538D01*

-X354121Y120390D01*

-X354383Y120282D01*

-X354659Y120216D01*

-X354938Y120194D01*

-Y117804D01*

-X354659Y117782D01*

-X354383Y117716D01*

-X354121Y117608D01*

-X353880Y117460D01*

-X353664Y117276D01*

-X353480Y117060D01*

-X353332Y116819D01*

-X353224Y116557D01*

-X353158Y116281D01*

-X353135Y115999D01*

-X353158Y115717D01*

-X353224Y115441D01*

-X353332Y115179D01*

-X353480Y114938D01*

-X353664Y114722D01*

-X353880Y114538D01*

-X354121Y114390D01*

-X354383Y114282D01*

-X354659Y114216D01*

-X354938Y114194D01*

-Y111804D01*

-X354659Y111782D01*

-X354383Y111716D01*

-X354121Y111608D01*

-X353880Y111460D01*

-X353664Y111276D01*

-X353480Y111060D01*

-X353332Y110819D01*

-X353224Y110557D01*

-X353158Y110281D01*

-X353135Y109999D01*

-X353158Y109717D01*

-X353224Y109441D01*

-X353332Y109179D01*

-X353480Y108938D01*

-X353664Y108722D01*

-X353880Y108538D01*

-X354121Y108390D01*

-X354383Y108282D01*

-X354659Y108216D01*

-X354938Y108194D01*

-Y105804D01*

-X354659Y105782D01*

-X354383Y105716D01*

-X354121Y105608D01*

-X353880Y105460D01*

-X353664Y105276D01*

-X353480Y105060D01*

-X353332Y104819D01*

-X353224Y104557D01*

-X353158Y104281D01*

-X353135Y103999D01*

-X353158Y103717D01*

-X353224Y103441D01*

-X353332Y103179D01*

-X353480Y102938D01*

-X353664Y102722D01*

-X353880Y102538D01*

-X354121Y102390D01*

-X354383Y102282D01*

-X354659Y102216D01*

-X354938Y102194D01*

-Y99804D01*

-X354659Y99782D01*

-X354383Y99716D01*

-X354121Y99608D01*

-X353880Y99460D01*

-X353664Y99276D01*

-X353480Y99060D01*

-X353332Y98819D01*

-X353224Y98557D01*

-X353158Y98281D01*

-X353135Y97999D01*

-X353158Y97717D01*

-X353224Y97441D01*

-X353332Y97179D01*

-X353480Y96938D01*

-X353664Y96722D01*

-X353880Y96538D01*

-X354121Y96390D01*

-X354383Y96282D01*

-X354659Y96216D01*

-X354938Y96194D01*

-Y95304D01*

-X354659Y95282D01*

-X354383Y95216D01*

-X354121Y95108D01*

-X353880Y94960D01*

-X353664Y94776D01*

-X353480Y94560D01*

-X353332Y94319D01*

-X353224Y94057D01*

-X353158Y93781D01*

-X353135Y93499D01*

-X353158Y93217D01*

-X353224Y92941D01*

-X353332Y92679D01*

-X353480Y92438D01*

-X353664Y92222D01*

-X353880Y92038D01*

-X354121Y91890D01*

-X354383Y91782D01*

-X354659Y91716D01*

-X354938Y91694D01*

-Y39000D01*

-G37*

-G36*

-X299441Y70063D02*X299296Y70301D01*

-X298810Y70869D01*

-X298242Y71355D01*

-X297604Y71745D01*

-X296913Y72031D01*

-X296186Y72206D01*

-X295441Y72265D01*

-Y76000D01*

-X299441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X299296Y60301D01*

-X298810Y60869D01*

-X298242Y61355D01*

-X297604Y61745D01*

-X296913Y62031D01*

-X296186Y62206D01*

-X295441Y62265D01*

-Y62735D01*

-X296186Y62794D01*

-X296913Y62969D01*

-X297604Y63255D01*

-X298242Y63645D01*

-X298810Y64131D01*

-X299296Y64699D01*

-X299441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X295441D01*

-Y42750D01*

-X297191D01*

-X297309Y42757D01*

-X297423Y42785D01*

-X297533Y42830D01*

-X297633Y42891D01*

-X297723Y42968D01*

-X297800Y43058D01*

-X297861Y43158D01*

-X297906Y43268D01*

-X297934Y43382D01*

-X297943Y43500D01*

-X297934Y43618D01*

-X297906Y43732D01*

-X297861Y43842D01*

-X297800Y43942D01*

-X297723Y44032D01*

-X297633Y44109D01*

-X297533Y44170D01*

-X297423Y44215D01*

-X297309Y44243D01*

-X297191Y44250D01*

-X295441D01*

-Y50750D01*

-X297191D01*

-X297309Y50757D01*

-X297423Y50785D01*

-X297533Y50830D01*

-X297633Y50891D01*

-X297723Y50968D01*

-X297800Y51058D01*

-X297861Y51158D01*

-X297906Y51268D01*

-X297934Y51382D01*

-X297943Y51500D01*

-X297934Y51618D01*

-X297906Y51732D01*

-X297861Y51842D01*

-X297800Y51942D01*

-X297723Y52032D01*

-X297633Y52109D01*

-X297533Y52170D01*

-X297423Y52215D01*

-X297309Y52243D01*

-X297191Y52250D01*

-X295441D01*

-Y52735D01*

-X296186Y52794D01*

-X296913Y52969D01*

-X297604Y53255D01*

-X298242Y53645D01*

-X298810Y54131D01*

-X299296Y54699D01*

-X299441Y54937D01*

-Y50002D01*

-X299323Y49993D01*

-X299209Y49965D01*

-X299099Y49920D01*

-X298999Y49859D01*

-X298909Y49782D01*

-X298832Y49692D01*

-X298771Y49592D01*

-X298726Y49482D01*

-X298698Y49368D01*

-X298691Y49250D01*

-Y45750D01*

-X298698Y45632D01*

-X298726Y45518D01*

-X298771Y45408D01*

-X298832Y45308D01*

-X298909Y45218D01*

-X298999Y45141D01*

-X299099Y45080D01*

-X299209Y45035D01*

-X299323Y45007D01*

-X299441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X291441Y64937D02*X291586Y64699D01*

-X292072Y64131D01*

-X292640Y63645D01*

-X293278Y63255D01*

-X293969Y62969D01*

-X294696Y62794D01*

-X295441Y62735D01*

-X295441D01*

-Y62265D01*

-X295441D01*

-X294696Y62206D01*

-X293969Y62031D01*

-X293278Y61745D01*

-X292640Y61355D01*

-X292072Y60869D01*

-X291586Y60301D01*

-X291441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X295441D01*

-Y72265D01*

-X295441D01*

-X294696Y72206D01*

-X293969Y72031D01*

-X293278Y71745D01*

-X292640Y71355D01*

-X292072Y70869D01*

-X291586Y70301D01*

-X291441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X295441Y39000D02*X291441D01*

-Y44998D01*

-X291559Y45007D01*

-X291673Y45035D01*

-X291783Y45080D01*

-X291883Y45141D01*

-X291973Y45218D01*

-X292050Y45308D01*

-X292111Y45408D01*

-X292156Y45518D01*

-X292184Y45632D01*

-X292191Y45750D01*

-Y49250D01*

-X292184Y49368D01*

-X292156Y49482D01*

-X292111Y49592D01*

-X292050Y49692D01*

-X291973Y49782D01*

-X291883Y49859D01*

-X291783Y49920D01*

-X291673Y49965D01*

-X291559Y49993D01*

-X291441Y50002D01*

-Y54937D01*

-X291586Y54699D01*

-X292072Y54131D01*

-X292640Y53645D01*

-X293278Y53255D01*

-X293969Y52969D01*

-X294696Y52794D01*

-X295441Y52735D01*

-X295441D01*

-Y52250D01*

-X293691D01*

-X293573Y52243D01*

-X293459Y52215D01*

-X293349Y52170D01*

-X293249Y52109D01*

-X293159Y52032D01*

-X293082Y51942D01*

-X293021Y51842D01*

-X292976Y51732D01*

-X292948Y51618D01*

-X292939Y51500D01*

-X292948Y51382D01*

-X292976Y51268D01*

-X293021Y51158D01*

-X293082Y51058D01*

-X293159Y50968D01*

-X293249Y50891D01*

-X293349Y50830D01*

-X293459Y50785D01*

-X293573Y50757D01*

-X293691Y50750D01*

-X295441D01*

-Y44250D01*

-X293691D01*

-X293573Y44243D01*

-X293459Y44215D01*

-X293349Y44170D01*

-X293249Y44109D01*

-X293159Y44032D01*

-X293082Y43942D01*

-X293021Y43842D01*

-X292976Y43732D01*

-X292948Y43618D01*

-X292939Y43500D01*

-X292948Y43382D01*

-X292976Y43268D01*

-X293021Y43158D01*

-X293082Y43058D01*

-X293159Y42968D01*

-X293249Y42891D01*

-X293349Y42830D01*

-X293459Y42785D01*

-X293573Y42757D01*

-X293691Y42750D01*

-X295441D01*

-Y39000D01*

-G37*

-G36*

-X291441D02*X269441D01*

-Y44998D01*

-X269559Y45007D01*

-X269673Y45035D01*

-X269783Y45080D01*

-X269883Y45141D01*

-X269973Y45218D01*

-X270050Y45308D01*

-X270111Y45408D01*

-X270156Y45518D01*

-X270184Y45632D01*

-X270191Y45750D01*

-Y49250D01*

-X270184Y49368D01*

-X270156Y49482D01*

-X270111Y49592D01*

-X270050Y49692D01*

-X269973Y49782D01*

-X269883Y49859D01*

-X269783Y49920D01*

-X269673Y49965D01*

-X269559Y49993D01*

-X269441Y50002D01*

-Y54937D01*

-X269686Y55337D01*

-X269972Y56028D01*

-X270147Y56755D01*

-X270191Y57500D01*

-X270147Y58245D01*

-X269972Y58972D01*

-X269686Y59663D01*

-X269441Y60063D01*

-Y64937D01*

-X269686Y65337D01*

-X269972Y66028D01*

-X270147Y66755D01*

-X270191Y67500D01*

-X270147Y68245D01*

-X269972Y68972D01*

-X269686Y69663D01*

-X269441Y70063D01*

-Y76000D01*

-X291441D01*

-Y70063D01*

-X291196Y69663D01*

-X290910Y68972D01*

-X290735Y68245D01*

-X290676Y67500D01*

-X290735Y66755D01*

-X290910Y66028D01*

-X291196Y65337D01*

-X291441Y64937D01*

-Y60063D01*

-X291196Y59663D01*

-X290910Y58972D01*

-X290735Y58245D01*

-X290676Y57500D01*

-X290735Y56755D01*

-X290910Y56028D01*

-X291196Y55337D01*

-X291441Y54937D01*

-Y50002D01*

-X291323Y49993D01*

-X291209Y49965D01*

-X291099Y49920D01*

-X290999Y49859D01*

-X290909Y49782D01*

-X290832Y49692D01*

-X290771Y49592D01*

-X290726Y49482D01*

-X290698Y49368D01*

-X290691Y49250D01*

-Y45750D01*

-X290698Y45632D01*

-X290726Y45518D01*

-X290771Y45408D01*

-X290832Y45308D01*

-X290909Y45218D01*

-X290999Y45141D01*

-X291099Y45080D01*

-X291209Y45035D01*

-X291323Y45007D01*

-X291441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X269441Y70063D02*X269296Y70301D01*

-X268810Y70869D01*

-X268242Y71355D01*

-X267604Y71745D01*

-X266913Y72031D01*

-X266186Y72206D01*

-X265441Y72265D01*

-Y76000D01*

-X269441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X269296Y60301D01*

-X268810Y60869D01*

-X268242Y61355D01*

-X267604Y61745D01*

-X266913Y62031D01*

-X266186Y62206D01*

-X265441Y62265D01*

-Y62735D01*

-X266186Y62794D01*

-X266913Y62969D01*

-X267604Y63255D01*

-X268242Y63645D01*

-X268810Y64131D01*

-X269296Y64699D01*

-X269441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X265441D01*

-Y42750D01*

-X267191D01*

-X267309Y42757D01*

-X267423Y42785D01*

-X267533Y42830D01*

-X267633Y42891D01*

-X267723Y42968D01*

-X267800Y43058D01*

-X267861Y43158D01*

-X267906Y43268D01*

-X267934Y43382D01*

-X267943Y43500D01*

-X267934Y43618D01*

-X267906Y43732D01*

-X267861Y43842D01*

-X267800Y43942D01*

-X267723Y44032D01*

-X267633Y44109D01*

-X267533Y44170D01*

-X267423Y44215D01*

-X267309Y44243D01*

-X267191Y44250D01*

-X265441D01*

-Y50750D01*

-X267191D01*

-X267309Y50757D01*

-X267423Y50785D01*

-X267533Y50830D01*

-X267633Y50891D01*

-X267723Y50968D01*

-X267800Y51058D01*

-X267861Y51158D01*

-X267906Y51268D01*

-X267934Y51382D01*

-X267943Y51500D01*

-X267934Y51618D01*

-X267906Y51732D01*

-X267861Y51842D01*

-X267800Y51942D01*

-X267723Y52032D01*

-X267633Y52109D01*

-X267533Y52170D01*

-X267423Y52215D01*

-X267309Y52243D01*

-X267191Y52250D01*

-X265441D01*

-Y52735D01*

-X266186Y52794D01*

-X266913Y52969D01*

-X267604Y53255D01*

-X268242Y53645D01*

-X268810Y54131D01*

-X269296Y54699D01*

-X269441Y54937D01*

-Y50002D01*

-X269323Y49993D01*

-X269209Y49965D01*

-X269099Y49920D01*

-X268999Y49859D01*

-X268909Y49782D01*

-X268832Y49692D01*

-X268771Y49592D01*

-X268726Y49482D01*

-X268698Y49368D01*

-X268691Y49250D01*

-Y45750D01*

-X268698Y45632D01*

-X268726Y45518D01*

-X268771Y45408D01*

-X268832Y45308D01*

-X268909Y45218D01*

-X268999Y45141D01*

-X269099Y45080D01*

-X269209Y45035D01*

-X269323Y45007D01*

-X269441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X261441Y64937D02*X261586Y64699D01*

-X262072Y64131D01*

-X262640Y63645D01*

-X263278Y63255D01*

-X263969Y62969D01*

-X264696Y62794D01*

-X265441Y62735D01*

-X265441D01*

-Y62265D01*

-X265441D01*

-X264696Y62206D01*

-X263969Y62031D01*

-X263278Y61745D01*

-X262640Y61355D01*

-X262072Y60869D01*

-X261586Y60301D01*

-X261441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X265441D01*

-Y72265D01*

-X265441D01*

-X264696Y72206D01*

-X263969Y72031D01*

-X263278Y71745D01*

-X262640Y71355D01*

-X262072Y70869D01*

-X261586Y70301D01*

-X261441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X265441Y39000D02*X261441D01*

-Y44998D01*

-X261559Y45007D01*

-X261673Y45035D01*

-X261783Y45080D01*

-X261883Y45141D01*

-X261973Y45218D01*

-X262050Y45308D01*

-X262111Y45408D01*

-X262156Y45518D01*

-X262184Y45632D01*

-X262191Y45750D01*

-Y49250D01*

-X262184Y49368D01*

-X262156Y49482D01*

-X262111Y49592D01*

-X262050Y49692D01*

-X261973Y49782D01*

-X261883Y49859D01*

-X261783Y49920D01*

-X261673Y49965D01*

-X261559Y49993D01*

-X261441Y50002D01*

-Y54937D01*

-X261586Y54699D01*

-X262072Y54131D01*

-X262640Y53645D01*

-X263278Y53255D01*

-X263969Y52969D01*

-X264696Y52794D01*

-X265441Y52735D01*

-X265441D01*

-Y52250D01*

-X263691D01*

-X263573Y52243D01*

-X263459Y52215D01*

-X263349Y52170D01*

-X263249Y52109D01*

-X263159Y52032D01*

-X263082Y51942D01*

-X263021Y51842D01*

-X262976Y51732D01*

-X262948Y51618D01*

-X262939Y51500D01*

-X262948Y51382D01*

-X262976Y51268D01*

-X263021Y51158D01*

-X263082Y51058D01*

-X263159Y50968D01*

-X263249Y50891D01*

-X263349Y50830D01*

-X263459Y50785D01*

-X263573Y50757D01*

-X263691Y50750D01*

-X265441D01*

-Y44250D01*

-X263691D01*

-X263573Y44243D01*

-X263459Y44215D01*

-X263349Y44170D01*

-X263249Y44109D01*

-X263159Y44032D01*

-X263082Y43942D01*

-X263021Y43842D01*

-X262976Y43732D01*

-X262948Y43618D01*

-X262939Y43500D01*

-X262948Y43382D01*

-X262976Y43268D01*

-X263021Y43158D01*

-X263082Y43058D01*

-X263159Y42968D01*

-X263249Y42891D01*

-X263349Y42830D01*

-X263459Y42785D01*

-X263573Y42757D01*

-X263691Y42750D01*

-X265441D01*

-Y39000D01*

-G37*

-G36*

-X261441D02*X239441D01*

-Y44998D01*

-X239559Y45007D01*

-X239673Y45035D01*

-X239783Y45080D01*

-X239883Y45141D01*

-X239973Y45218D01*

-X240050Y45308D01*

-X240111Y45408D01*

-X240156Y45518D01*

-X240184Y45632D01*

-X240191Y45750D01*

-Y49250D01*

-X240184Y49368D01*

-X240156Y49482D01*

-X240111Y49592D01*

-X240050Y49692D01*

-X239973Y49782D01*

-X239883Y49859D01*

-X239783Y49920D01*

-X239673Y49965D01*

-X239559Y49993D01*

-X239441Y50002D01*

-Y54937D01*

-X239686Y55337D01*

-X239972Y56028D01*

-X240147Y56755D01*

-X240191Y57500D01*

-X240147Y58245D01*

-X239972Y58972D01*

-X239686Y59663D01*

-X239441Y60063D01*

-Y64937D01*

-X239686Y65337D01*

-X239972Y66028D01*

-X240147Y66755D01*

-X240191Y67500D01*

-X240147Y68245D01*

-X239972Y68972D01*

-X239686Y69663D01*

-X239441Y70063D01*

-Y76000D01*

-X261441D01*

-Y70063D01*

-X261196Y69663D01*

-X260910Y68972D01*

-X260735Y68245D01*

-X260676Y67500D01*

-X260735Y66755D01*

-X260910Y66028D01*

-X261196Y65337D01*

-X261441Y64937D01*

-Y60063D01*

-X261196Y59663D01*

-X260910Y58972D01*

-X260735Y58245D01*

-X260676Y57500D01*

-X260735Y56755D01*

-X260910Y56028D01*

-X261196Y55337D01*

-X261441Y54937D01*

-Y50002D01*

-X261323Y49993D01*

-X261209Y49965D01*

-X261099Y49920D01*

-X260999Y49859D01*

-X260909Y49782D01*

-X260832Y49692D01*

-X260771Y49592D01*

-X260726Y49482D01*

-X260698Y49368D01*

-X260691Y49250D01*

-Y45750D01*

-X260698Y45632D01*

-X260726Y45518D01*

-X260771Y45408D01*

-X260832Y45308D01*

-X260909Y45218D01*

-X260999Y45141D01*

-X261099Y45080D01*

-X261209Y45035D01*

-X261323Y45007D01*

-X261441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X239441Y70063D02*X239296Y70301D01*

-X238810Y70869D01*

-X238242Y71355D01*

-X237604Y71745D01*

-X236913Y72031D01*

-X236186Y72206D01*

-X235441Y72265D01*

-Y76000D01*

-X239441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X239296Y60301D01*

-X238810Y60869D01*

-X238242Y61355D01*

-X237604Y61745D01*

-X236913Y62031D01*

-X236186Y62206D01*

-X235441Y62265D01*

-Y62735D01*

-X236186Y62794D01*

-X236913Y62969D01*

-X237604Y63255D01*

-X238242Y63645D01*

-X238810Y64131D01*

-X239296Y64699D01*

-X239441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X235441D01*

-Y42750D01*

-X237191D01*

-X237309Y42757D01*

-X237423Y42785D01*

-X237533Y42830D01*

-X237633Y42891D01*

-X237723Y42968D01*

-X237800Y43058D01*

-X237861Y43158D01*

-X237906Y43268D01*

-X237934Y43382D01*

-X237943Y43500D01*

-X237934Y43618D01*

-X237906Y43732D01*

-X237861Y43842D01*

-X237800Y43942D01*

-X237723Y44032D01*

-X237633Y44109D01*

-X237533Y44170D01*

-X237423Y44215D01*

-X237309Y44243D01*

-X237191Y44250D01*

-X235441D01*

-Y50750D01*

-X237191D01*

-X237309Y50757D01*

-X237423Y50785D01*

-X237533Y50830D01*

-X237633Y50891D01*

-X237723Y50968D01*

-X237800Y51058D01*

-X237861Y51158D01*

-X237906Y51268D01*

-X237934Y51382D01*

-X237943Y51500D01*

-X237934Y51618D01*

-X237906Y51732D01*

-X237861Y51842D01*

-X237800Y51942D01*

-X237723Y52032D01*

-X237633Y52109D01*

-X237533Y52170D01*

-X237423Y52215D01*

-X237309Y52243D01*

-X237191Y52250D01*

-X235441D01*

-Y52735D01*

-X236186Y52794D01*

-X236913Y52969D01*

-X237604Y53255D01*

-X238242Y53645D01*

-X238810Y54131D01*

-X239296Y54699D01*

-X239441Y54937D01*

-Y50002D01*

-X239323Y49993D01*

-X239209Y49965D01*

-X239099Y49920D01*

-X238999Y49859D01*

-X238909Y49782D01*

-X238832Y49692D01*

-X238771Y49592D01*

-X238726Y49482D01*

-X238698Y49368D01*

-X238691Y49250D01*

-Y45750D01*

-X238698Y45632D01*

-X238726Y45518D01*

-X238771Y45408D01*

-X238832Y45308D01*

-X238909Y45218D01*

-X238999Y45141D01*

-X239099Y45080D01*

-X239209Y45035D01*

-X239323Y45007D01*

-X239441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X231441Y64937D02*X231586Y64699D01*

-X232072Y64131D01*

-X232640Y63645D01*

-X233278Y63255D01*

-X233969Y62969D01*

-X234696Y62794D01*

-X235441Y62735D01*

-X235441D01*

-Y62265D01*

-X235441D01*

-X234696Y62206D01*

-X233969Y62031D01*

-X233278Y61745D01*

-X232640Y61355D01*

-X232072Y60869D01*

-X231586Y60301D01*

-X231441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X235441D01*

-Y72265D01*

-X235441D01*

-X234696Y72206D01*

-X233969Y72031D01*

-X233278Y71745D01*

-X232640Y71355D01*

-X232072Y70869D01*

-X231586Y70301D01*

-X231441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X235441Y39000D02*X231441D01*

-Y44998D01*

-X231559Y45007D01*

-X231673Y45035D01*

-X231783Y45080D01*

-X231883Y45141D01*

-X231973Y45218D01*

-X232050Y45308D01*

-X232111Y45408D01*

-X232156Y45518D01*

-X232184Y45632D01*

-X232191Y45750D01*

-Y49250D01*

-X232184Y49368D01*

-X232156Y49482D01*

-X232111Y49592D01*

-X232050Y49692D01*

-X231973Y49782D01*

-X231883Y49859D01*

-X231783Y49920D01*

-X231673Y49965D01*

-X231559Y49993D01*

-X231441Y50002D01*

-Y54937D01*

-X231586Y54699D01*

-X232072Y54131D01*

-X232640Y53645D01*

-X233278Y53255D01*

-X233969Y52969D01*

-X234696Y52794D01*

-X235441Y52735D01*

-X235441D01*

-Y52250D01*

-X233691D01*

-X233573Y52243D01*

-X233459Y52215D01*

-X233349Y52170D01*

-X233249Y52109D01*

-X233159Y52032D01*

-X233082Y51942D01*

-X233021Y51842D01*

-X232976Y51732D01*

-X232948Y51618D01*

-X232939Y51500D01*

-X232948Y51382D01*

-X232976Y51268D01*

-X233021Y51158D01*

-X233082Y51058D01*

-X233159Y50968D01*

-X233249Y50891D01*

-X233349Y50830D01*

-X233459Y50785D01*

-X233573Y50757D01*

-X233691Y50750D01*

-X235441D01*

-Y44250D01*

-X233691D01*

-X233573Y44243D01*

-X233459Y44215D01*

-X233349Y44170D01*

-X233249Y44109D01*

-X233159Y44032D01*

-X233082Y43942D01*

-X233021Y43842D01*

-X232976Y43732D01*

-X232948Y43618D01*

-X232939Y43500D01*

-X232948Y43382D01*

-X232976Y43268D01*

-X233021Y43158D01*

-X233082Y43058D01*

-X233159Y42968D01*

-X233249Y42891D01*

-X233349Y42830D01*

-X233459Y42785D01*

-X233573Y42757D01*

-X233691Y42750D01*

-X235441D01*

-Y39000D01*

-G37*

-G36*

-X231441D02*X209441D01*

-Y44998D01*

-X209559Y45007D01*

-X209673Y45035D01*

-X209783Y45080D01*

-X209883Y45141D01*

-X209973Y45218D01*

-X210050Y45308D01*

-X210111Y45408D01*

-X210156Y45518D01*

-X210184Y45632D01*

-X210191Y45750D01*

-Y49250D01*

-X210184Y49368D01*

-X210156Y49482D01*

-X210111Y49592D01*

-X210050Y49692D01*

-X209973Y49782D01*

-X209883Y49859D01*

-X209783Y49920D01*

-X209673Y49965D01*

-X209559Y49993D01*

-X209441Y50002D01*

-Y54937D01*

-X209686Y55337D01*

-X209972Y56028D01*

-X210147Y56755D01*

-X210191Y57500D01*

-X210147Y58245D01*

-X209972Y58972D01*

-X209686Y59663D01*

-X209441Y60063D01*

-Y64937D01*

-X209686Y65337D01*

-X209972Y66028D01*

-X210147Y66755D01*

-X210191Y67500D01*

-X210147Y68245D01*

-X209972Y68972D01*

-X209686Y69663D01*

-X209441Y70063D01*

-Y76000D01*

-X231441D01*

-Y70063D01*

-X231196Y69663D01*

-X230910Y68972D01*

-X230735Y68245D01*

-X230676Y67500D01*

-X230735Y66755D01*

-X230910Y66028D01*

-X231196Y65337D01*

-X231441Y64937D01*

-Y60063D01*

-X231196Y59663D01*

-X230910Y58972D01*

-X230735Y58245D01*

-X230676Y57500D01*

-X230735Y56755D01*

-X230910Y56028D01*

-X231196Y55337D01*

-X231441Y54937D01*

-Y50002D01*

-X231323Y49993D01*

-X231209Y49965D01*

-X231099Y49920D01*

-X230999Y49859D01*

-X230909Y49782D01*

-X230832Y49692D01*

-X230771Y49592D01*

-X230726Y49482D01*

-X230698Y49368D01*

-X230691Y49250D01*

-Y45750D01*

-X230698Y45632D01*

-X230726Y45518D01*

-X230771Y45408D01*

-X230832Y45308D01*

-X230909Y45218D01*

-X230999Y45141D01*

-X231099Y45080D01*

-X231209Y45035D01*

-X231323Y45007D01*

-X231441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X209441Y70063D02*X209296Y70301D01*

-X208810Y70869D01*

-X208242Y71355D01*

-X207604Y71745D01*

-X206913Y72031D01*

-X206186Y72206D01*

-X205441Y72265D01*

-Y76000D01*

-X209441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X209296Y60301D01*

-X208810Y60869D01*

-X208242Y61355D01*

-X207604Y61745D01*

-X206913Y62031D01*

-X206186Y62206D01*

-X205441Y62265D01*

-Y62735D01*

-X206186Y62794D01*

-X206913Y62969D01*

-X207604Y63255D01*

-X208242Y63645D01*

-X208810Y64131D01*

-X209296Y64699D01*

-X209441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X205441D01*

-Y42750D01*

-X207191D01*

-X207309Y42757D01*

-X207423Y42785D01*

-X207533Y42830D01*

-X207633Y42891D01*

-X207723Y42968D01*

-X207800Y43058D01*

-X207861Y43158D01*

-X207906Y43268D01*

-X207934Y43382D01*

-X207943Y43500D01*

-X207934Y43618D01*

-X207906Y43732D01*

-X207861Y43842D01*

-X207800Y43942D01*

-X207723Y44032D01*

-X207633Y44109D01*

-X207533Y44170D01*

-X207423Y44215D01*

-X207309Y44243D01*

-X207191Y44250D01*

-X205441D01*

-Y50750D01*

-X207191D01*

-X207309Y50757D01*

-X207423Y50785D01*

-X207533Y50830D01*

-X207633Y50891D01*

-X207723Y50968D01*

-X207800Y51058D01*

-X207861Y51158D01*

-X207906Y51268D01*

-X207934Y51382D01*

-X207943Y51500D01*

-X207934Y51618D01*

-X207906Y51732D01*

-X207861Y51842D01*

-X207800Y51942D01*

-X207723Y52032D01*

-X207633Y52109D01*

-X207533Y52170D01*

-X207423Y52215D01*

-X207309Y52243D01*

-X207191Y52250D01*

-X205441D01*

-Y52735D01*

-X206186Y52794D01*

-X206913Y52969D01*

-X207604Y53255D01*

-X208242Y53645D01*

-X208810Y54131D01*

-X209296Y54699D01*

-X209441Y54937D01*

-Y50002D01*

-X209323Y49993D01*

-X209209Y49965D01*

-X209099Y49920D01*

-X208999Y49859D01*

-X208909Y49782D01*

-X208832Y49692D01*

-X208771Y49592D01*

-X208726Y49482D01*

-X208698Y49368D01*

-X208691Y49250D01*

-Y45750D01*

-X208698Y45632D01*

-X208726Y45518D01*

-X208771Y45408D01*

-X208832Y45308D01*

-X208909Y45218D01*

-X208999Y45141D01*

-X209099Y45080D01*

-X209209Y45035D01*

-X209323Y45007D01*

-X209441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X201441Y64937D02*X201586Y64699D01*

-X202072Y64131D01*

-X202640Y63645D01*

-X203278Y63255D01*

-X203969Y62969D01*

-X204696Y62794D01*

-X205441Y62735D01*

-X205441D01*

-Y62265D01*

-X205441D01*

-X204696Y62206D01*

-X203969Y62031D01*

-X203278Y61745D01*

-X202640Y61355D01*

-X202072Y60869D01*

-X201586Y60301D01*

-X201441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X205441D01*

-Y72265D01*

-X205441D01*

-X204696Y72206D01*

-X203969Y72031D01*

-X203278Y71745D01*

-X202640Y71355D01*

-X202072Y70869D01*

-X201586Y70301D01*

-X201441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X205441Y39000D02*X201441D01*

-Y44998D01*

-X201559Y45007D01*

-X201673Y45035D01*

-X201783Y45080D01*

-X201883Y45141D01*

-X201973Y45218D01*

-X202050Y45308D01*

-X202111Y45408D01*

-X202156Y45518D01*

-X202184Y45632D01*

-X202191Y45750D01*

-Y49250D01*

-X202184Y49368D01*

-X202156Y49482D01*

-X202111Y49592D01*

-X202050Y49692D01*

-X201973Y49782D01*

-X201883Y49859D01*

-X201783Y49920D01*

-X201673Y49965D01*

-X201559Y49993D01*

-X201441Y50002D01*

-Y54937D01*

-X201586Y54699D01*

-X202072Y54131D01*

-X202640Y53645D01*

-X203278Y53255D01*

-X203969Y52969D01*

-X204696Y52794D01*

-X205441Y52735D01*

-X205441D01*

-Y52250D01*

-X203691D01*

-X203573Y52243D01*

-X203459Y52215D01*

-X203349Y52170D01*

-X203249Y52109D01*

-X203159Y52032D01*

-X203082Y51942D01*

-X203021Y51842D01*

-X202976Y51732D01*

-X202948Y51618D01*

-X202939Y51500D01*

-X202948Y51382D01*

-X202976Y51268D01*

-X203021Y51158D01*

-X203082Y51058D01*

-X203159Y50968D01*

-X203249Y50891D01*

-X203349Y50830D01*

-X203459Y50785D01*

-X203573Y50757D01*

-X203691Y50750D01*

-X205441D01*

-Y44250D01*

-X203691D01*

-X203573Y44243D01*

-X203459Y44215D01*

-X203349Y44170D01*

-X203249Y44109D01*

-X203159Y44032D01*

-X203082Y43942D01*

-X203021Y43842D01*

-X202976Y43732D01*

-X202948Y43618D01*

-X202939Y43500D01*

-X202948Y43382D01*

-X202976Y43268D01*

-X203021Y43158D01*

-X203082Y43058D01*

-X203159Y42968D01*

-X203249Y42891D01*

-X203349Y42830D01*

-X203459Y42785D01*

-X203573Y42757D01*

-X203691Y42750D01*

-X205441D01*

-Y39000D01*

-G37*

-G36*

-X201441D02*X179441D01*

-Y44998D01*

-X179559Y45007D01*

-X179673Y45035D01*

-X179783Y45080D01*

-X179883Y45141D01*

-X179973Y45218D01*

-X180050Y45308D01*

-X180111Y45408D01*

-X180156Y45518D01*

-X180184Y45632D01*

-X180191Y45750D01*

-Y49250D01*

-X180184Y49368D01*

-X180156Y49482D01*

-X180111Y49592D01*

-X180050Y49692D01*

-X179973Y49782D01*

-X179883Y49859D01*

-X179783Y49920D01*

-X179673Y49965D01*

-X179559Y49993D01*

-X179441Y50002D01*

-Y54937D01*

-X179686Y55337D01*

-X179972Y56028D01*

-X180147Y56755D01*

-X180191Y57500D01*

-X180147Y58245D01*

-X179972Y58972D01*

-X179686Y59663D01*

-X179441Y60063D01*

-Y64937D01*

-X179686Y65337D01*

-X179972Y66028D01*

-X180147Y66755D01*

-X180191Y67500D01*

-X180147Y68245D01*

-X179972Y68972D01*

-X179686Y69663D01*

-X179441Y70063D01*

-Y76000D01*

-X201441D01*

-Y70063D01*

-X201196Y69663D01*

-X200910Y68972D01*

-X200735Y68245D01*

-X200676Y67500D01*

-X200735Y66755D01*

-X200910Y66028D01*

-X201196Y65337D01*

-X201441Y64937D01*

-Y60063D01*

-X201196Y59663D01*

-X200910Y58972D01*

-X200735Y58245D01*

-X200676Y57500D01*

-X200735Y56755D01*

-X200910Y56028D01*

-X201196Y55337D01*

-X201441Y54937D01*

-Y50002D01*

-X201323Y49993D01*

-X201209Y49965D01*

-X201099Y49920D01*

-X200999Y49859D01*

-X200909Y49782D01*

-X200832Y49692D01*

-X200771Y49592D01*

-X200726Y49482D01*

-X200698Y49368D01*

-X200691Y49250D01*

-Y45750D01*

-X200698Y45632D01*

-X200726Y45518D01*

-X200771Y45408D01*

-X200832Y45308D01*

-X200909Y45218D01*

-X200999Y45141D01*

-X201099Y45080D01*

-X201209Y45035D01*

-X201323Y45007D01*

-X201441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X179441Y70063D02*X179296Y70301D01*

-X178810Y70869D01*

-X178242Y71355D01*

-X177604Y71745D01*

-X176913Y72031D01*

-X176186Y72206D01*

-X175441Y72265D01*

-Y76000D01*

-X179441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X179296Y60301D01*

-X178810Y60869D01*

-X178242Y61355D01*

-X177604Y61745D01*

-X176913Y62031D01*

-X176186Y62206D01*

-X175441Y62265D01*

-Y62735D01*

-X176186Y62794D01*

-X176913Y62969D01*

-X177604Y63255D01*

-X178242Y63645D01*

-X178810Y64131D01*

-X179296Y64699D01*

-X179441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X175441D01*

-Y42750D01*

-X177191D01*

-X177309Y42757D01*

-X177423Y42785D01*

-X177533Y42830D01*

-X177633Y42891D01*

-X177723Y42968D01*

-X177800Y43058D01*

-X177861Y43158D01*

-X177906Y43268D01*

-X177934Y43382D01*

-X177943Y43500D01*

-X177934Y43618D01*

-X177906Y43732D01*

-X177861Y43842D01*

-X177800Y43942D01*

-X177723Y44032D01*

-X177633Y44109D01*

-X177533Y44170D01*

-X177423Y44215D01*

-X177309Y44243D01*

-X177191Y44250D01*

-X175441D01*

-Y50750D01*

-X177191D01*

-X177309Y50757D01*

-X177423Y50785D01*

-X177533Y50830D01*

-X177633Y50891D01*

-X177723Y50968D01*

-X177800Y51058D01*

-X177861Y51158D01*

-X177906Y51268D01*

-X177934Y51382D01*

-X177943Y51500D01*

-X177934Y51618D01*

-X177906Y51732D01*

-X177861Y51842D01*

-X177800Y51942D01*

-X177723Y52032D01*

-X177633Y52109D01*

-X177533Y52170D01*

-X177423Y52215D01*

-X177309Y52243D01*

-X177191Y52250D01*

-X175441D01*

-Y52735D01*

-X176186Y52794D01*

-X176913Y52969D01*

-X177604Y53255D01*

-X178242Y53645D01*

-X178810Y54131D01*

-X179296Y54699D01*

-X179441Y54937D01*

-Y50002D01*

-X179323Y49993D01*

-X179209Y49965D01*

-X179099Y49920D01*

-X178999Y49859D01*

-X178909Y49782D01*

-X178832Y49692D01*

-X178771Y49592D01*

-X178726Y49482D01*

-X178698Y49368D01*

-X178691Y49250D01*

-Y45750D01*

-X178698Y45632D01*

-X178726Y45518D01*

-X178771Y45408D01*

-X178832Y45308D01*

-X178909Y45218D01*

-X178999Y45141D01*

-X179099Y45080D01*

-X179209Y45035D01*

-X179323Y45007D01*

-X179441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X171441Y64937D02*X171586Y64699D01*

-X172072Y64131D01*

-X172640Y63645D01*

-X173278Y63255D01*

-X173969Y62969D01*

-X174696Y62794D01*

-X175441Y62735D01*

-X175441D01*

-Y62265D01*

-X175441D01*

-X174696Y62206D01*

-X173969Y62031D01*

-X173278Y61745D01*

-X172640Y61355D01*

-X172072Y60869D01*

-X171586Y60301D01*

-X171441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X175441D01*

-Y72265D01*

-X175441D01*

-X174696Y72206D01*

-X173969Y72031D01*

-X173278Y71745D01*

-X172640Y71355D01*

-X172072Y70869D01*

-X171586Y70301D01*

-X171441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X175441Y39000D02*X171441D01*

-Y44998D01*

-X171559Y45007D01*

-X171673Y45035D01*

-X171783Y45080D01*

-X171883Y45141D01*

-X171973Y45218D01*

-X172050Y45308D01*

-X172111Y45408D01*

-X172156Y45518D01*

-X172184Y45632D01*

-X172191Y45750D01*

-Y49250D01*

-X172184Y49368D01*

-X172156Y49482D01*

-X172111Y49592D01*

-X172050Y49692D01*

-X171973Y49782D01*

-X171883Y49859D01*

-X171783Y49920D01*

-X171673Y49965D01*

-X171559Y49993D01*

-X171441Y50002D01*

-Y54937D01*

-X171586Y54699D01*

-X172072Y54131D01*

-X172640Y53645D01*

-X173278Y53255D01*

-X173969Y52969D01*

-X174696Y52794D01*

-X175441Y52735D01*

-X175441D01*

-Y52250D01*

-X173691D01*

-X173573Y52243D01*

-X173459Y52215D01*

-X173349Y52170D01*

-X173249Y52109D01*

-X173159Y52032D01*

-X173082Y51942D01*

-X173021Y51842D01*

-X172976Y51732D01*

-X172948Y51618D01*

-X172939Y51500D01*

-X172948Y51382D01*

-X172976Y51268D01*

-X173021Y51158D01*

-X173082Y51058D01*

-X173159Y50968D01*

-X173249Y50891D01*

-X173349Y50830D01*

-X173459Y50785D01*

-X173573Y50757D01*

-X173691Y50750D01*

-X175441D01*

-Y44250D01*

-X173691D01*

-X173573Y44243D01*

-X173459Y44215D01*

-X173349Y44170D01*

-X173249Y44109D01*

-X173159Y44032D01*

-X173082Y43942D01*

-X173021Y43842D01*

-X172976Y43732D01*

-X172948Y43618D01*

-X172939Y43500D01*

-X172948Y43382D01*

-X172976Y43268D01*

-X173021Y43158D01*

-X173082Y43058D01*

-X173159Y42968D01*

-X173249Y42891D01*

-X173349Y42830D01*

-X173459Y42785D01*

-X173573Y42757D01*

-X173691Y42750D01*

-X175441D01*

-Y39000D01*

-G37*

-G36*

-X171441D02*X149441D01*

-Y44998D01*

-X149559Y45007D01*

-X149673Y45035D01*

-X149783Y45080D01*

-X149883Y45141D01*

-X149973Y45218D01*

-X150050Y45308D01*

-X150111Y45408D01*

-X150156Y45518D01*

-X150184Y45632D01*

-X150191Y45750D01*

-Y49250D01*

-X150184Y49368D01*

-X150156Y49482D01*

-X150111Y49592D01*

-X150050Y49692D01*

-X149973Y49782D01*

-X149883Y49859D01*

-X149783Y49920D01*

-X149673Y49965D01*

-X149559Y49993D01*

-X149441Y50002D01*

-Y54937D01*

-X149686Y55337D01*

-X149972Y56028D01*

-X150147Y56755D01*

-X150191Y57500D01*

-X150147Y58245D01*

-X149972Y58972D01*

-X149686Y59663D01*

-X149441Y60063D01*

-Y64937D01*

-X149686Y65337D01*

-X149972Y66028D01*

-X150147Y66755D01*

-X150191Y67500D01*

-X150147Y68245D01*

-X149972Y68972D01*

-X149686Y69663D01*

-X149441Y70063D01*

-Y76000D01*

-X171441D01*

-Y70063D01*

-X171196Y69663D01*

-X170910Y68972D01*

-X170735Y68245D01*

-X170676Y67500D01*

-X170735Y66755D01*

-X170910Y66028D01*

-X171196Y65337D01*

-X171441Y64937D01*

-Y60063D01*

-X171196Y59663D01*

-X170910Y58972D01*

-X170735Y58245D01*

-X170676Y57500D01*

-X170735Y56755D01*

-X170910Y56028D01*

-X171196Y55337D01*

-X171441Y54937D01*

-Y50002D01*

-X171323Y49993D01*

-X171209Y49965D01*

-X171099Y49920D01*

-X170999Y49859D01*

-X170909Y49782D01*

-X170832Y49692D01*

-X170771Y49592D01*

-X170726Y49482D01*

-X170698Y49368D01*

-X170691Y49250D01*

-Y45750D01*

-X170698Y45632D01*

-X170726Y45518D01*

-X170771Y45408D01*

-X170832Y45308D01*

-X170909Y45218D01*

-X170999Y45141D01*

-X171099Y45080D01*

-X171209Y45035D01*

-X171323Y45007D01*

-X171441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X149441Y70063D02*X149296Y70301D01*

-X148810Y70869D01*

-X148242Y71355D01*

-X147604Y71745D01*

-X146913Y72031D01*

-X146186Y72206D01*

-X145441Y72265D01*

-Y76000D01*

-X149441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X149296Y60301D01*

-X148810Y60869D01*

-X148242Y61355D01*

-X147604Y61745D01*

-X146913Y62031D01*

-X146186Y62206D01*

-X145441Y62265D01*

-Y62735D01*

-X146186Y62794D01*

-X146913Y62969D01*

-X147604Y63255D01*

-X148242Y63645D01*

-X148810Y64131D01*

-X149296Y64699D01*

-X149441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X145441D01*

-Y42750D01*

-X147191D01*

-X147309Y42757D01*

-X147423Y42785D01*

-X147533Y42830D01*

-X147633Y42891D01*

-X147723Y42968D01*

-X147800Y43058D01*

-X147861Y43158D01*

-X147906Y43268D01*

-X147934Y43382D01*

-X147943Y43500D01*

-X147934Y43618D01*

-X147906Y43732D01*

-X147861Y43842D01*

-X147800Y43942D01*

-X147723Y44032D01*

-X147633Y44109D01*

-X147533Y44170D01*

-X147423Y44215D01*

-X147309Y44243D01*

-X147191Y44250D01*

-X145441D01*

-Y50750D01*

-X147191D01*

-X147309Y50757D01*

-X147423Y50785D01*

-X147533Y50830D01*

-X147633Y50891D01*

-X147723Y50968D01*

-X147800Y51058D01*

-X147861Y51158D01*

-X147906Y51268D01*

-X147934Y51382D01*

-X147943Y51500D01*

-X147934Y51618D01*

-X147906Y51732D01*

-X147861Y51842D01*

-X147800Y51942D01*

-X147723Y52032D01*

-X147633Y52109D01*

-X147533Y52170D01*

-X147423Y52215D01*

-X147309Y52243D01*

-X147191Y52250D01*

-X145441D01*

-Y52735D01*

-X146186Y52794D01*

-X146913Y52969D01*

-X147604Y53255D01*

-X148242Y53645D01*

-X148810Y54131D01*

-X149296Y54699D01*

-X149441Y54937D01*

-Y50002D01*

-X149323Y49993D01*

-X149209Y49965D01*

-X149099Y49920D01*

-X148999Y49859D01*

-X148909Y49782D01*

-X148832Y49692D01*

-X148771Y49592D01*

-X148726Y49482D01*

-X148698Y49368D01*

-X148691Y49250D01*

-Y45750D01*

-X148698Y45632D01*

-X148726Y45518D01*

-X148771Y45408D01*

-X148832Y45308D01*

-X148909Y45218D01*

-X148999Y45141D01*

-X149099Y45080D01*

-X149209Y45035D01*

-X149323Y45007D01*

-X149441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X141441Y64937D02*X141586Y64699D01*

-X142072Y64131D01*

-X142640Y63645D01*

-X143278Y63255D01*

-X143969Y62969D01*

-X144696Y62794D01*

-X145441Y62735D01*

-X145441D01*

-Y62265D01*

-X145441D01*

-X144696Y62206D01*

-X143969Y62031D01*

-X143278Y61745D01*

-X142640Y61355D01*

-X142072Y60869D01*

-X141586Y60301D01*

-X141441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X145441D01*

-Y72265D01*

-X145441D01*

-X144696Y72206D01*

-X143969Y72031D01*

-X143278Y71745D01*

-X142640Y71355D01*

-X142072Y70869D01*

-X141586Y70301D01*

-X141441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X145441Y39000D02*X141441D01*

-Y44998D01*

-X141559Y45007D01*

-X141673Y45035D01*

-X141783Y45080D01*

-X141883Y45141D01*

-X141973Y45218D01*

-X142050Y45308D01*

-X142111Y45408D01*

-X142156Y45518D01*

-X142184Y45632D01*

-X142191Y45750D01*

-Y49250D01*

-X142184Y49368D01*

-X142156Y49482D01*

-X142111Y49592D01*

-X142050Y49692D01*

-X141973Y49782D01*

-X141883Y49859D01*

-X141783Y49920D01*

-X141673Y49965D01*

-X141559Y49993D01*

-X141441Y50002D01*

-Y54937D01*

-X141586Y54699D01*

-X142072Y54131D01*

-X142640Y53645D01*

-X143278Y53255D01*

-X143969Y52969D01*

-X144696Y52794D01*

-X145441Y52735D01*

-X145441D01*

-Y52250D01*

-X143691D01*

-X143573Y52243D01*

-X143459Y52215D01*

-X143349Y52170D01*

-X143249Y52109D01*

-X143159Y52032D01*

-X143082Y51942D01*

-X143021Y51842D01*

-X142976Y51732D01*

-X142948Y51618D01*

-X142939Y51500D01*

-X142948Y51382D01*

-X142976Y51268D01*

-X143021Y51158D01*

-X143082Y51058D01*

-X143159Y50968D01*

-X143249Y50891D01*

-X143349Y50830D01*

-X143459Y50785D01*

-X143573Y50757D01*

-X143691Y50750D01*

-X145441D01*

-Y44250D01*

-X143691D01*

-X143573Y44243D01*

-X143459Y44215D01*

-X143349Y44170D01*

-X143249Y44109D01*

-X143159Y44032D01*

-X143082Y43942D01*

-X143021Y43842D01*

-X142976Y43732D01*

-X142948Y43618D01*

-X142939Y43500D01*

-X142948Y43382D01*

-X142976Y43268D01*

-X143021Y43158D01*

-X143082Y43058D01*

-X143159Y42968D01*

-X143249Y42891D01*

-X143349Y42830D01*

-X143459Y42785D01*

-X143573Y42757D01*

-X143691Y42750D01*

-X145441D01*

-Y39000D01*

-G37*

-G36*

-X141441D02*X119441D01*

-Y44998D01*

-X119559Y45007D01*

-X119673Y45035D01*

-X119783Y45080D01*

-X119883Y45141D01*

-X119973Y45218D01*

-X120050Y45308D01*

-X120111Y45408D01*

-X120156Y45518D01*

-X120184Y45632D01*

-X120191Y45750D01*

-Y49250D01*

-X120184Y49368D01*

-X120156Y49482D01*

-X120111Y49592D01*

-X120050Y49692D01*

-X119973Y49782D01*

-X119883Y49859D01*

-X119783Y49920D01*

-X119673Y49965D01*

-X119559Y49993D01*

-X119441Y50002D01*

-Y54937D01*

-X119686Y55337D01*

-X119972Y56028D01*

-X120147Y56755D01*

-X120191Y57500D01*

-X120147Y58245D01*

-X119972Y58972D01*

-X119686Y59663D01*

-X119441Y60063D01*

-Y64937D01*

-X119686Y65337D01*

-X119972Y66028D01*

-X120147Y66755D01*

-X120191Y67500D01*

-X120147Y68245D01*

-X119972Y68972D01*

-X119686Y69663D01*

-X119441Y70063D01*

-Y76000D01*

-X141441D01*

-Y70063D01*

-X141196Y69663D01*

-X140910Y68972D01*

-X140735Y68245D01*

-X140676Y67500D01*

-X140735Y66755D01*

-X140910Y66028D01*

-X141196Y65337D01*

-X141441Y64937D01*

-Y60063D01*

-X141196Y59663D01*

-X140910Y58972D01*

-X140735Y58245D01*

-X140676Y57500D01*

-X140735Y56755D01*

-X140910Y56028D01*

-X141196Y55337D01*

-X141441Y54937D01*

-Y50002D01*

-X141323Y49993D01*

-X141209Y49965D01*

-X141099Y49920D01*

-X140999Y49859D01*

-X140909Y49782D01*

-X140832Y49692D01*

-X140771Y49592D01*

-X140726Y49482D01*

-X140698Y49368D01*

-X140691Y49250D01*

-Y45750D01*

-X140698Y45632D01*

-X140726Y45518D01*

-X140771Y45408D01*

-X140832Y45308D01*

-X140909Y45218D01*

-X140999Y45141D01*

-X141099Y45080D01*

-X141209Y45035D01*

-X141323Y45007D01*

-X141441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X119441Y70063D02*X119296Y70301D01*

-X118810Y70869D01*

-X118242Y71355D01*

-X117604Y71745D01*

-X116913Y72031D01*

-X116186Y72206D01*

-X115441Y72265D01*

-Y76000D01*

-X119441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X119296Y60301D01*

-X118810Y60869D01*

-X118242Y61355D01*

-X117604Y61745D01*

-X116913Y62031D01*

-X116186Y62206D01*

-X115441Y62265D01*

-Y62735D01*

-X116186Y62794D01*

-X116913Y62969D01*

-X117604Y63255D01*

-X118242Y63645D01*

-X118810Y64131D01*

-X119296Y64699D01*

-X119441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X115441D01*

-Y42750D01*

-X117191D01*

-X117309Y42757D01*

-X117423Y42785D01*

-X117533Y42830D01*

-X117633Y42891D01*

-X117723Y42968D01*

-X117800Y43058D01*

-X117861Y43158D01*

-X117906Y43268D01*

-X117934Y43382D01*

-X117943Y43500D01*

-X117934Y43618D01*

-X117906Y43732D01*

-X117861Y43842D01*

-X117800Y43942D01*

-X117723Y44032D01*

-X117633Y44109D01*

-X117533Y44170D01*

-X117423Y44215D01*

-X117309Y44243D01*

-X117191Y44250D01*

-X115441D01*

-Y50750D01*

-X117191D01*

-X117309Y50757D01*

-X117423Y50785D01*

-X117533Y50830D01*

-X117633Y50891D01*

-X117723Y50968D01*

-X117800Y51058D01*

-X117861Y51158D01*

-X117906Y51268D01*

-X117934Y51382D01*

-X117943Y51500D01*

-X117934Y51618D01*

-X117906Y51732D01*

-X117861Y51842D01*

-X117800Y51942D01*

-X117723Y52032D01*

-X117633Y52109D01*

-X117533Y52170D01*

-X117423Y52215D01*

-X117309Y52243D01*

-X117191Y52250D01*

-X115441D01*

-Y52735D01*

-X116186Y52794D01*

-X116913Y52969D01*

-X117604Y53255D01*

-X118242Y53645D01*

-X118810Y54131D01*

-X119296Y54699D01*

-X119441Y54937D01*

-Y50002D01*

-X119323Y49993D01*

-X119209Y49965D01*

-X119099Y49920D01*

-X118999Y49859D01*

-X118909Y49782D01*

-X118832Y49692D01*

-X118771Y49592D01*

-X118726Y49482D01*

-X118698Y49368D01*

-X118691Y49250D01*

-Y45750D01*

-X118698Y45632D01*

-X118726Y45518D01*

-X118771Y45408D01*

-X118832Y45308D01*

-X118909Y45218D01*

-X118999Y45141D01*

-X119099Y45080D01*

-X119209Y45035D01*

-X119323Y45007D01*

-X119441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X111441Y64937D02*X111586Y64699D01*

-X112072Y64131D01*

-X112640Y63645D01*

-X113278Y63255D01*

-X113969Y62969D01*

-X114696Y62794D01*

-X115441Y62735D01*

-X115441D01*

-Y62265D01*

-X115441D01*

-X114696Y62206D01*

-X113969Y62031D01*

-X113278Y61745D01*

-X112640Y61355D01*

-X112072Y60869D01*

-X111586Y60301D01*

-X111441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X115441D01*

-Y72265D01*

-X115441D01*

-X114696Y72206D01*

-X113969Y72031D01*

-X113278Y71745D01*

-X112640Y71355D01*

-X112072Y70869D01*

-X111586Y70301D01*

-X111441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X115441Y39000D02*X111441D01*

-Y44998D01*

-X111559Y45007D01*

-X111673Y45035D01*

-X111783Y45080D01*

-X111883Y45141D01*

-X111973Y45218D01*

-X112050Y45308D01*

-X112111Y45408D01*

-X112156Y45518D01*

-X112184Y45632D01*

-X112191Y45750D01*

-Y49250D01*

-X112184Y49368D01*

-X112156Y49482D01*

-X112111Y49592D01*

-X112050Y49692D01*

-X111973Y49782D01*

-X111883Y49859D01*

-X111783Y49920D01*

-X111673Y49965D01*

-X111559Y49993D01*

-X111441Y50002D01*

-Y54937D01*

-X111586Y54699D01*

-X112072Y54131D01*

-X112640Y53645D01*

-X113278Y53255D01*

-X113969Y52969D01*

-X114696Y52794D01*

-X115441Y52735D01*

-X115441D01*

-Y52250D01*

-X113691D01*

-X113573Y52243D01*

-X113459Y52215D01*

-X113349Y52170D01*

-X113249Y52109D01*

-X113159Y52032D01*

-X113082Y51942D01*

-X113021Y51842D01*

-X112976Y51732D01*

-X112948Y51618D01*

-X112939Y51500D01*

-X112948Y51382D01*

-X112976Y51268D01*

-X113021Y51158D01*

-X113082Y51058D01*

-X113159Y50968D01*

-X113249Y50891D01*

-X113349Y50830D01*

-X113459Y50785D01*

-X113573Y50757D01*

-X113691Y50750D01*

-X115441D01*

-Y44250D01*

-X113691D01*

-X113573Y44243D01*

-X113459Y44215D01*

-X113349Y44170D01*

-X113249Y44109D01*

-X113159Y44032D01*

-X113082Y43942D01*

-X113021Y43842D01*

-X112976Y43732D01*

-X112948Y43618D01*

-X112939Y43500D01*

-X112948Y43382D01*

-X112976Y43268D01*

-X113021Y43158D01*

-X113082Y43058D01*

-X113159Y42968D01*

-X113249Y42891D01*

-X113349Y42830D01*

-X113459Y42785D01*

-X113573Y42757D01*

-X113691Y42750D01*

-X115441D01*

-Y39000D01*

-G37*

-G36*

-X111441D02*X89441D01*

-Y44998D01*

-X89559Y45007D01*

-X89673Y45035D01*

-X89783Y45080D01*

-X89883Y45141D01*

-X89973Y45218D01*

-X90050Y45308D01*

-X90111Y45408D01*

-X90156Y45518D01*

-X90184Y45632D01*

-X90191Y45750D01*

-Y49250D01*

-X90184Y49368D01*

-X90156Y49482D01*

-X90111Y49592D01*

-X90050Y49692D01*

-X89973Y49782D01*

-X89883Y49859D01*

-X89783Y49920D01*

-X89673Y49965D01*

-X89559Y49993D01*

-X89441Y50002D01*

-Y54937D01*

-X89686Y55337D01*

-X89972Y56028D01*

-X90147Y56755D01*

-X90191Y57500D01*

-X90147Y58245D01*

-X89972Y58972D01*

-X89686Y59663D01*

-X89441Y60063D01*

-Y64937D01*

-X89686Y65337D01*

-X89972Y66028D01*

-X90147Y66755D01*

-X90191Y67500D01*

-X90147Y68245D01*

-X89972Y68972D01*

-X89686Y69663D01*

-X89441Y70063D01*

-Y76000D01*

-X111441D01*

-Y70063D01*

-X111196Y69663D01*

-X110910Y68972D01*

-X110735Y68245D01*

-X110676Y67500D01*

-X110735Y66755D01*

-X110910Y66028D01*

-X111196Y65337D01*

-X111441Y64937D01*

-Y60063D01*

-X111196Y59663D01*

-X110910Y58972D01*

-X110735Y58245D01*

-X110676Y57500D01*

-X110735Y56755D01*

-X110910Y56028D01*

-X111196Y55337D01*

-X111441Y54937D01*

-Y50002D01*

-X111323Y49993D01*

-X111209Y49965D01*

-X111099Y49920D01*

-X110999Y49859D01*

-X110909Y49782D01*

-X110832Y49692D01*

-X110771Y49592D01*

-X110726Y49482D01*

-X110698Y49368D01*

-X110691Y49250D01*

-Y45750D01*

-X110698Y45632D01*

-X110726Y45518D01*

-X110771Y45408D01*

-X110832Y45308D01*

-X110909Y45218D01*

-X110999Y45141D01*

-X111099Y45080D01*

-X111209Y45035D01*

-X111323Y45007D01*

-X111441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X89441Y70063D02*X89296Y70301D01*

-X88810Y70869D01*

-X88242Y71355D01*

-X87604Y71745D01*

-X86913Y72031D01*

-X86186Y72206D01*

-X85441Y72265D01*

-Y76000D01*

-X89441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X89296Y60301D01*

-X88810Y60869D01*

-X88242Y61355D01*

-X87604Y61745D01*

-X86913Y62031D01*

-X86186Y62206D01*

-X85441Y62265D01*

-Y62735D01*

-X86186Y62794D01*

-X86913Y62969D01*

-X87604Y63255D01*

-X88242Y63645D01*

-X88810Y64131D01*

-X89296Y64699D01*

-X89441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X85441D01*

-Y42750D01*

-X87191D01*

-X87309Y42757D01*

-X87423Y42785D01*

-X87533Y42830D01*

-X87633Y42891D01*

-X87723Y42968D01*

-X87800Y43058D01*

-X87861Y43158D01*

-X87906Y43268D01*

-X87934Y43382D01*

-X87943Y43500D01*

-X87934Y43618D01*

-X87906Y43732D01*

-X87861Y43842D01*

-X87800Y43942D01*

-X87723Y44032D01*

-X87633Y44109D01*

-X87533Y44170D01*

-X87423Y44215D01*

-X87309Y44243D01*

-X87191Y44250D01*

-X85441D01*

-Y50750D01*

-X87191D01*

-X87309Y50757D01*

-X87423Y50785D01*

-X87533Y50830D01*

-X87633Y50891D01*

-X87723Y50968D01*

-X87800Y51058D01*

-X87861Y51158D01*

-X87906Y51268D01*

-X87934Y51382D01*

-X87943Y51500D01*

-X87934Y51618D01*

-X87906Y51732D01*

-X87861Y51842D01*

-X87800Y51942D01*

-X87723Y52032D01*

-X87633Y52109D01*

-X87533Y52170D01*

-X87423Y52215D01*

-X87309Y52243D01*

-X87191Y52250D01*

-X85441D01*

-Y52735D01*

-X86186Y52794D01*

-X86913Y52969D01*

-X87604Y53255D01*

-X88242Y53645D01*

-X88810Y54131D01*

-X89296Y54699D01*

-X89441Y54937D01*

-Y50002D01*

-X89323Y49993D01*

-X89209Y49965D01*

-X89099Y49920D01*

-X88999Y49859D01*

-X88909Y49782D01*

-X88832Y49692D01*

-X88771Y49592D01*

-X88726Y49482D01*

-X88698Y49368D01*

-X88691Y49250D01*

-Y45750D01*

-X88698Y45632D01*

-X88726Y45518D01*

-X88771Y45408D01*

-X88832Y45308D01*

-X88909Y45218D01*

-X88999Y45141D01*

-X89099Y45080D01*

-X89209Y45035D01*

-X89323Y45007D01*

-X89441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X81441Y64937D02*X81586Y64699D01*

-X82072Y64131D01*

-X82640Y63645D01*

-X83278Y63255D01*

-X83969Y62969D01*

-X84696Y62794D01*

-X85441Y62735D01*

-X85441D01*

-Y62265D01*

-X85441D01*

-X84696Y62206D01*

-X83969Y62031D01*

-X83278Y61745D01*

-X82640Y61355D01*

-X82072Y60869D01*

-X81586Y60301D01*

-X81441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X85441D01*

-Y72265D01*

-X85441D01*

-X84696Y72206D01*

-X83969Y72031D01*

-X83278Y71745D01*

-X82640Y71355D01*

-X82072Y70869D01*

-X81586Y70301D01*

-X81441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X85441Y39000D02*X81441D01*

-Y44998D01*

-X81559Y45007D01*

-X81673Y45035D01*

-X81783Y45080D01*

-X81883Y45141D01*

-X81973Y45218D01*

-X82050Y45308D01*

-X82111Y45408D01*

-X82156Y45518D01*

-X82184Y45632D01*

-X82191Y45750D01*

-Y49250D01*

-X82184Y49368D01*

-X82156Y49482D01*

-X82111Y49592D01*

-X82050Y49692D01*

-X81973Y49782D01*

-X81883Y49859D01*

-X81783Y49920D01*

-X81673Y49965D01*

-X81559Y49993D01*

-X81441Y50002D01*

-Y54937D01*

-X81586Y54699D01*

-X82072Y54131D01*

-X82640Y53645D01*

-X83278Y53255D01*

-X83969Y52969D01*

-X84696Y52794D01*

-X85441Y52735D01*

-X85441D01*

-Y52250D01*

-X83691D01*

-X83573Y52243D01*

-X83459Y52215D01*

-X83349Y52170D01*

-X83249Y52109D01*

-X83159Y52032D01*

-X83082Y51942D01*

-X83021Y51842D01*

-X82976Y51732D01*

-X82948Y51618D01*

-X82939Y51500D01*

-X82948Y51382D01*

-X82976Y51268D01*

-X83021Y51158D01*

-X83082Y51058D01*

-X83159Y50968D01*

-X83249Y50891D01*

-X83349Y50830D01*

-X83459Y50785D01*

-X83573Y50757D01*

-X83691Y50750D01*

-X85441D01*

-Y44250D01*

-X83691D01*

-X83573Y44243D01*

-X83459Y44215D01*

-X83349Y44170D01*

-X83249Y44109D01*

-X83159Y44032D01*

-X83082Y43942D01*

-X83021Y43842D01*

-X82976Y43732D01*

-X82948Y43618D01*

-X82939Y43500D01*

-X82948Y43382D01*

-X82976Y43268D01*

-X83021Y43158D01*

-X83082Y43058D01*

-X83159Y42968D01*

-X83249Y42891D01*

-X83349Y42830D01*

-X83459Y42785D01*

-X83573Y42757D01*

-X83691Y42750D01*

-X85441D01*

-Y39000D01*

-G37*

-G36*

-X81441D02*X75441D01*

-X72941Y41500D01*

-Y76000D01*

-X81441D01*

-Y70063D01*

-X81196Y69663D01*

-X80910Y68972D01*

-X80735Y68245D01*

-X80676Y67500D01*

-X80735Y66755D01*

-X80910Y66028D01*

-X81196Y65337D01*

-X81441Y64937D01*

-Y60063D01*

-X81196Y59663D01*

-X80910Y58972D01*

-X80735Y58245D01*

-X80676Y57500D01*

-X80735Y56755D01*

-X80910Y56028D01*

-X81196Y55337D01*

-X81441Y54937D01*

-Y50002D01*

-X81323Y49993D01*

-X81209Y49965D01*

-X81099Y49920D01*

-X80999Y49859D01*

-X80909Y49782D01*

-X80832Y49692D01*

-X80771Y49592D01*

-X80726Y49482D01*

-X80698Y49368D01*

-X80691Y49250D01*

-Y45750D01*

-X80698Y45632D01*

-X80726Y45518D01*

-X80771Y45408D01*

-X80832Y45308D01*

-X80909Y45218D01*

-X80999Y45141D01*

-X81099Y45080D01*

-X81209Y45035D01*

-X81323Y45007D01*

-X81441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X365696Y51500D02*X372196D01*

-Y45500D01*

-X365696D01*

-Y51500D01*

-G37*

-G36*

-Y46500D02*X372196D01*

-Y40500D01*

-X365696D01*

-Y46500D01*

-G37*

-G36*

-X371696D02*X378196D01*

-Y40500D01*

-X371696D01*

-Y46500D01*

-G37*

-G36*

-Y50000D02*X378196D01*

-Y44000D01*

-X371696D01*

-Y50000D01*

-G37*

-G36*

-X440935Y153000D02*X445441D01*

-Y104616D01*

-X445166Y104503D01*

-X444790Y104272D01*

-X444455Y103986D01*

-X444169Y103651D01*

-X443938Y103275D01*

-X443770Y102868D01*

-X443667Y102439D01*

-X443632Y102000D01*

-X443667Y101561D01*

-X443770Y101132D01*

-X443938Y100725D01*

-X444169Y100349D01*

-X444455Y100014D01*

-X444790Y99728D01*

-X445166Y99497D01*

-X445441Y99384D01*

-Y69000D01*

-X440935D01*

-Y118988D01*

-X440941Y118988D01*

-X441569Y119037D01*

-X442181Y119184D01*

-X442763Y119425D01*

-X443299Y119754D01*

-X443778Y120163D01*

-X444187Y120642D01*

-X444516Y121178D01*

-X444757Y121760D01*

-X444904Y122372D01*

-X444941Y123000D01*

-X444904Y123628D01*

-X444757Y124240D01*

-X444516Y124822D01*

-X444187Y125358D01*

-X443778Y125837D01*

-X443299Y126246D01*

-X442763Y126575D01*

-X442181Y126816D01*

-X441569Y126963D01*

-X440941Y127012D01*

-X440935Y127012D01*

-Y153000D01*

-G37*

-G36*

-X432320D02*X440935D01*

-Y127012D01*

-X440313Y126963D01*

-X439701Y126816D01*

-X439119Y126575D01*

-X438583Y126246D01*

-X438104Y125837D01*

-X437695Y125358D01*

-X437366Y124822D01*

-X437125Y124240D01*

-X436978Y123628D01*

-X436929Y123000D01*

-X436978Y122372D01*

-X437125Y121760D01*

-X437366Y121178D01*

-X437695Y120642D01*

-X438104Y120163D01*

-X438583Y119754D01*

-X439119Y119425D01*

-X439701Y119184D01*

-X440313Y119037D01*

-X440935Y118988D01*

-Y69000D01*

-X432320D01*

-Y73869D01*

-X432379Y73725D01*

-X432610Y73349D01*

-X432896Y73014D01*

-X433231Y72728D01*

-X433607Y72497D01*

-X434014Y72329D01*

-X434443Y72226D01*

-X434882Y72191D01*

-X435321Y72226D01*

-X435750Y72329D01*

-X436157Y72497D01*

-X436533Y72728D01*

-X436868Y73014D01*

-X437154Y73349D01*

-X437385Y73725D01*

-X437553Y74132D01*

-X437656Y74561D01*

-X437682Y75000D01*

-X437656Y75439D01*

-X437553Y75868D01*

-X437385Y76275D01*

-X437154Y76651D01*

-X436868Y76986D01*

-X436533Y77272D01*

-X436157Y77503D01*

-X435750Y77671D01*

-X435321Y77774D01*

-X434882Y77809D01*

-X434443Y77774D01*

-X434014Y77671D01*

-X433607Y77503D01*

-X433231Y77272D01*

-X432896Y76986D01*

-X432610Y76651D01*

-X432379Y76275D01*

-X432320Y76131D01*

-Y108192D01*

-X432324Y108191D01*

-X432763Y108226D01*

-X433192Y108329D01*

-X433599Y108497D01*

-X433975Y108728D01*

-X434310Y109014D01*

-X434596Y109349D01*

-X434827Y109725D01*

-X434995Y110132D01*

-X435098Y110561D01*

-X435124Y111000D01*

-X435098Y111439D01*

-X434995Y111868D01*

-X434827Y112275D01*

-X434596Y112651D01*

-X434310Y112986D01*

-X433975Y113272D01*

-X433599Y113503D01*

-X433192Y113671D01*

-X432763Y113774D01*

-X432324Y113809D01*

-X432320Y113808D01*

-Y153000D01*

-G37*

-G36*

-X423437D02*X432320D01*

-Y113808D01*

-X431885Y113774D01*

-X431456Y113671D01*

-X431049Y113503D01*

-X430673Y113272D01*

-X430338Y112986D01*

-X430052Y112651D01*

-X429821Y112275D01*

-X429653Y111868D01*

-X429550Y111439D01*

-X429515Y111000D01*

-X429550Y110561D01*

-X429653Y110132D01*

-X429821Y109725D01*

-X430052Y109349D01*

-X430338Y109014D01*

-X430673Y108728D01*

-X431049Y108497D01*

-X431456Y108329D01*

-X431885Y108226D01*

-X432320Y108192D01*

-Y76131D01*

-X432211Y75868D01*

-X432108Y75439D01*

-X432073Y75000D01*

-X432108Y74561D01*

-X432211Y74132D01*

-X432320Y73869D01*

-Y69000D01*

-X423437D01*

-Y72192D01*

-X423441Y72191D01*

-X423880Y72226D01*

-X424309Y72329D01*

-X424716Y72497D01*

-X425092Y72728D01*

-X425427Y73014D01*

-X425713Y73349D01*

-X425944Y73725D01*

-X426112Y74132D01*

-X426215Y74561D01*

-X426241Y75000D01*

-X426215Y75439D01*

-X426112Y75868D01*

-X425944Y76275D01*

-X425713Y76651D01*

-X425427Y76986D01*

-X425092Y77272D01*

-X424716Y77503D01*

-X424309Y77671D01*

-X423880Y77774D01*

-X423441Y77809D01*

-X423437Y77808D01*

-Y153000D01*

-G37*

-G36*

-X396441D02*X423437D01*

-Y77808D01*

-X423002Y77774D01*

-X422573Y77671D01*

-X422166Y77503D01*

-X421790Y77272D01*

-X421455Y76986D01*

-X421169Y76651D01*

-X420938Y76275D01*

-X420770Y75868D01*

-X420667Y75439D01*

-X420632Y75000D01*

-X420667Y74561D01*

-X420770Y74132D01*

-X420938Y73725D01*

-X421169Y73349D01*

-X421455Y73014D01*

-X421790Y72728D01*

-X422166Y72497D01*

-X422573Y72329D01*

-X423002Y72226D01*

-X423437Y72192D01*

-Y69000D01*

-X411941D01*

-X411441Y135000D01*

-X392185D01*

-Y183436D01*

-X392215Y183561D01*

-X392241Y184000D01*

-X392215Y184439D01*

-X392185Y184564D01*

-Y205489D01*

-X392573Y205329D01*

-X393002Y205226D01*

-X393441Y205191D01*

-X393880Y205226D01*

-X394309Y205329D01*

-X394716Y205497D01*

-X395092Y205728D01*

-X395427Y206014D01*

-X395713Y206349D01*

-X395944Y206725D01*

-X396112Y207132D01*

-X396215Y207561D01*

-X396241Y208000D01*

-X396215Y208439D01*

-X396112Y208868D01*

-X395944Y209275D01*

-X395713Y209651D01*

-X395427Y209986D01*

-X395092Y210272D01*

-X394716Y210503D01*

-X394309Y210671D01*

-X393880Y210774D01*

-X393441Y210809D01*

-X393002Y210774D01*

-X392573Y210671D01*

-X392185Y210511D01*

-Y237195D01*

-X392188Y237194D01*

-X392470Y237217D01*

-X392746Y237283D01*

-X393008Y237391D01*

-X393249Y237539D01*

-X393465Y237723D01*

-X393649Y237939D01*

-X393797Y238180D01*

-X393905Y238442D01*

-X393971Y238718D01*

-X393988Y239000D01*

-X393971Y239282D01*

-X393905Y239558D01*

-X393797Y239820D01*

-X393649Y240061D01*

-X393465Y240277D01*

-X393249Y240461D01*

-X393008Y240609D01*

-X392746Y240717D01*

-X392470Y240783D01*

-X392188Y240806D01*

-X392185Y240805D01*

-Y324489D01*

-X392573Y324329D01*

-X393002Y324226D01*

-X393441Y324191D01*

-X393880Y324226D01*

-X394309Y324329D01*

-X394716Y324497D01*

-X395092Y324728D01*

-X395427Y325014D01*

-X395713Y325349D01*

-X395944Y325725D01*

-X396112Y326132D01*

-X396215Y326561D01*

-X396241Y327000D01*

-X396215Y327439D01*

-X396112Y327868D01*

-X395944Y328275D01*

-X395713Y328651D01*

-X395427Y328986D01*

-X395092Y329272D01*

-X394716Y329503D01*

-X394309Y329671D01*

-X393880Y329774D01*

-X393441Y329809D01*

-X393002Y329774D01*

-X392573Y329671D01*

-X392185Y329511D01*

-Y352489D01*

-X392573Y352329D01*

-X393002Y352226D01*

-X393441Y352191D01*

-X393880Y352226D01*

-X394309Y352329D01*

-X394716Y352497D01*

-X395092Y352728D01*

-X395427Y353014D01*

-X395713Y353349D01*

-X395944Y353725D01*

-X396112Y354132D01*

-X396215Y354561D01*

-X396241Y355000D01*

-X396215Y355439D01*

-X396112Y355868D01*

-X395944Y356275D01*

-X395713Y356651D01*

-X395427Y356986D01*

-X395092Y357272D01*

-X394716Y357503D01*

-X394309Y357671D01*

-X393880Y357774D01*

-X393441Y357809D01*

-X393002Y357774D01*

-X392573Y357671D01*

-X392185Y357511D01*

-Y397000D01*

-X396441D01*

-Y375616D01*

-X396166Y375503D01*

-X395790Y375272D01*

-X395455Y374986D01*

-X395169Y374651D01*

-X394938Y374275D01*

-X394770Y373868D01*

-X394667Y373439D01*

-X394632Y373000D01*

-X394667Y372561D01*

-X394770Y372132D01*

-X394938Y371725D01*

-X395169Y371349D01*

-X395455Y371014D01*

-X395790Y370728D01*

-X396166Y370497D01*

-X396441Y370384D01*

-Y369806D01*

-X396290Y369713D01*

-X395955Y369427D01*

-X395669Y369092D01*

-X395438Y368716D01*

-X395270Y368309D01*

-X395167Y367880D01*

-X395132Y367441D01*

-X395167Y367002D01*

-X395270Y366573D01*

-X395438Y366166D01*

-X395669Y365790D01*

-X395955Y365455D01*

-X396290Y365169D01*

-X396441Y365076D01*

-Y315970D01*

-X396169Y315651D01*

-X395938Y315275D01*

-X395770Y314868D01*

-X395667Y314439D01*

-X395632Y314000D01*

-X395667Y313561D01*

-X395770Y313132D01*

-X395938Y312725D01*

-X396169Y312349D01*

-X396441Y312030D01*

-Y310970D01*

-X396169Y310651D01*

-X395938Y310275D01*

-X395770Y309868D01*

-X395667Y309439D01*

-X395632Y309000D01*

-X395667Y308561D01*

-X395770Y308132D01*

-X395938Y307725D01*

-X396169Y307349D01*

-X396441Y307030D01*

-Y254970D01*

-X396169Y254651D01*

-X395938Y254275D01*

-X395770Y253868D01*

-X395667Y253439D01*

-X395632Y253000D01*

-X395667Y252561D01*

-X395770Y252132D01*

-X395938Y251725D01*

-X396169Y251349D01*

-X396441Y251030D01*

-Y249970D01*

-X396169Y249651D01*

-X395938Y249275D01*

-X395770Y248868D01*

-X395667Y248439D01*

-X395632Y248000D01*

-X395667Y247561D01*

-X395770Y247132D01*

-X395938Y246725D01*

-X396169Y246349D01*

-X396441Y246030D01*

-Y236806D01*

-X396159Y236783D01*

-X395883Y236717D01*

-X395621Y236609D01*

-X395380Y236461D01*

-X395164Y236277D01*

-X394980Y236061D01*

-X394832Y235820D01*

-X394724Y235558D01*

-X394658Y235282D01*

-X394635Y235000D01*

-X394658Y234718D01*

-X394724Y234442D01*

-X394832Y234180D01*

-X394980Y233939D01*

-X395164Y233723D01*

-X395380Y233539D01*

-X395621Y233391D01*

-X395883Y233283D01*

-X396159Y233217D01*

-X396441Y233194D01*

-Y153000D01*

-G37*

-G36*

-X388204Y397000D02*X392185D01*

-Y357511D01*

-X392166Y357503D01*

-X391790Y357272D01*

-X391455Y356986D01*

-X391169Y356651D01*

-X390938Y356275D01*

-X390770Y355868D01*

-X390667Y355439D01*

-X390632Y355000D01*

-X390667Y354561D01*

-X390770Y354132D01*

-X390938Y353725D01*

-X391169Y353349D01*

-X391455Y353014D01*

-X391790Y352728D01*

-X392166Y352497D01*

-X392185Y352489D01*

-Y329511D01*

-X392166Y329503D01*

-X391790Y329272D01*

-X391455Y328986D01*

-X391169Y328651D01*

-X390938Y328275D01*

-X390770Y327868D01*

-X390667Y327439D01*

-X390632Y327000D01*

-X390667Y326561D01*

-X390770Y326132D01*

-X390938Y325725D01*

-X391169Y325349D01*

-X391455Y325014D01*

-X391790Y324728D01*

-X392166Y324497D01*

-X392185Y324489D01*

-Y240805D01*

-X391906Y240783D01*

-X391630Y240717D01*

-X391368Y240609D01*

-X391127Y240461D01*

-X390911Y240277D01*

-X390727Y240061D01*

-X390579Y239820D01*

-X390471Y239558D01*

-X390405Y239282D01*

-X390382Y239000D01*

-X390405Y238718D01*

-X390471Y238442D01*

-X390579Y238180D01*

-X390727Y237939D01*

-X390911Y237723D01*

-X391127Y237539D01*

-X391368Y237391D01*

-X391630Y237283D01*

-X391906Y237217D01*

-X392185Y237195D01*

-Y210511D01*

-X392166Y210503D01*

-X391790Y210272D01*

-X391455Y209986D01*

-X391169Y209651D01*

-X390938Y209275D01*

-X390770Y208868D01*

-X390667Y208439D01*

-X390632Y208000D01*

-X390667Y207561D01*

-X390770Y207132D01*

-X390938Y206725D01*

-X391169Y206349D01*

-X391455Y206014D01*

-X391790Y205728D01*

-X392166Y205497D01*

-X392185Y205489D01*

-Y184564D01*

-X392112Y184868D01*

-X391944Y185275D01*

-X391713Y185651D01*

-X391427Y185986D01*

-X391092Y186272D01*

-X390716Y186503D01*

-X390309Y186671D01*

-X389880Y186774D01*

-X389441Y186809D01*

-X389002Y186774D01*

-X388573Y186671D01*

-X388204Y186518D01*

-Y232439D01*

-X388345Y232497D01*

-X388721Y232728D01*

-X389056Y233014D01*

-X389342Y233349D01*

-X389573Y233725D01*

-X389741Y234132D01*

-X389844Y234561D01*

-X389870Y235000D01*

-X389844Y235439D01*

-X389741Y235868D01*

-X389573Y236275D01*

-X389342Y236651D01*

-X389056Y236986D01*

-X388721Y237272D01*

-X388345Y237503D01*

-X388204Y237561D01*

-Y245475D01*

-X388207Y245474D01*

-X388489Y245497D01*

-X388765Y245563D01*

-X389027Y245671D01*

-X389268Y245819D01*

-X389484Y246003D01*

-X389668Y246219D01*

-X389816Y246460D01*

-X389924Y246722D01*

-X389990Y246998D01*

-X390007Y247280D01*

-X389990Y247562D01*

-X389924Y247838D01*

-X389816Y248100D01*

-X389668Y248341D01*

-X389484Y248557D01*

-X389268Y248741D01*

-X389027Y248889D01*

-X388765Y248997D01*

-X388489Y249063D01*

-X388207Y249086D01*

-X388204Y249085D01*

-Y279626D01*

-X388371Y279728D01*

-X388706Y280014D01*

-X388992Y280349D01*

-X389223Y280725D01*

-X389391Y281132D01*

-X389494Y281561D01*

-X389520Y282000D01*

-X389494Y282439D01*

-X389391Y282868D01*

-X389223Y283275D01*

-X388992Y283651D01*

-X388706Y283986D01*

-X388371Y284272D01*

-X388204Y284374D01*

-Y323304D01*

-X388309Y323329D01*

-X388716Y323497D01*

-X389092Y323728D01*

-X389427Y324014D01*

-X389713Y324349D01*

-X389944Y324725D01*

-X390112Y325132D01*

-X390215Y325561D01*

-X390241Y326000D01*

-X390215Y326439D01*

-X390112Y326868D01*

-X389944Y327275D01*

-X389713Y327651D01*

-X389427Y327986D01*

-X389092Y328272D01*

-X388716Y328503D01*

-X388309Y328671D01*

-X388204Y328696D01*

-Y352839D01*

-X388213Y352849D01*

-X388444Y353225D01*

-X388612Y353632D01*

-X388715Y354061D01*

-X388741Y354500D01*

-X388715Y354939D01*

-X388612Y355368D01*

-X388444Y355775D01*

-X388213Y356151D01*

-X388204Y356161D01*

-Y397000D01*

-G37*

-G36*

-X392185Y135000D02*X388204D01*

-Y160824D01*

-X388427Y161014D01*

-X388713Y161349D01*

-X388944Y161725D01*

-X389112Y162132D01*

-X389215Y162561D01*

-X389241Y163000D01*

-X389215Y163439D01*

-X389112Y163868D01*

-X388944Y164275D01*

-X388713Y164651D01*

-X388427Y164986D01*

-X388204Y165176D01*

-Y181482D01*

-X388573Y181329D01*

-X389002Y181226D01*

-X389441Y181191D01*

-X389880Y181226D01*

-X390309Y181329D01*

-X390716Y181497D01*

-X391092Y181728D01*

-X391427Y182014D01*

-X391713Y182349D01*

-X391944Y182725D01*

-X392112Y183132D01*

-X392185Y183436D01*

-Y135000D01*

-G37*

-G36*

-X386020Y232404D02*X386202Y232329D01*

-X386631Y232226D01*

-X387070Y232191D01*

-X387509Y232226D01*

-X387938Y232329D01*

-X388204Y232439D01*

-Y186518D01*

-X388166Y186503D01*

-X387790Y186272D01*

-X387455Y185986D01*

-X387169Y185651D01*

-X386938Y185275D01*

-X386770Y184868D01*

-X386667Y184439D01*

-X386632Y184000D01*

-X386667Y183561D01*

-X386770Y183132D01*

-X386938Y182725D01*

-X387169Y182349D01*

-X387455Y182014D01*

-X387790Y181728D01*

-X388166Y181497D01*

-X388204Y181482D01*

-Y165176D01*

-X388092Y165272D01*

-X387716Y165503D01*

-X387309Y165671D01*

-X386880Y165774D01*

-X386441Y165809D01*

-X386020Y165776D01*

-Y185905D01*

-X386148Y186014D01*

-X386434Y186349D01*

-X386665Y186725D01*

-X386833Y187132D01*

-X386936Y187561D01*

-X386962Y188000D01*

-X386936Y188439D01*

-X386833Y188868D01*

-X386665Y189275D01*

-X386434Y189651D01*

-X386148Y189986D01*

-X386020Y190095D01*

-Y232404D01*

-G37*

-G36*

-Y279288D02*X386281Y279226D01*

-X386720Y279191D01*

-X387159Y279226D01*

-X387588Y279329D01*

-X387995Y279497D01*

-X388204Y279626D01*

-Y249085D01*

-X387925Y249063D01*

-X387649Y248997D01*

-X387387Y248889D01*

-X387146Y248741D01*

-X386930Y248557D01*

-X386746Y248341D01*

-X386598Y248100D01*

-X386490Y247838D01*

-X386424Y247562D01*

-X386401Y247280D01*

-X386424Y246998D01*

-X386490Y246722D01*

-X386598Y246460D01*

-X386746Y246219D01*

-X386930Y246003D01*

-X387146Y245819D01*

-X387387Y245671D01*

-X387649Y245563D01*

-X387925Y245497D01*

-X388204Y245475D01*

-Y237561D01*

-X387938Y237671D01*

-X387509Y237774D01*

-X387070Y237809D01*

-X386631Y237774D01*

-X386202Y237671D01*

-X386020Y237596D01*

-Y255640D01*

-X386163Y255728D01*

-X386498Y256014D01*

-X386784Y256349D01*

-X387015Y256725D01*

-X387183Y257132D01*

-X387286Y257561D01*

-X387312Y258000D01*

-X387286Y258439D01*

-X387183Y258868D01*

-X387015Y259275D01*

-X386784Y259651D01*

-X386498Y259986D01*

-X386163Y260272D01*

-X386020Y260360D01*

-Y279288D01*

-G37*

-G36*

-Y323587D02*X386166Y323497D01*

-X386573Y323329D01*

-X387002Y323226D01*

-X387441Y323191D01*

-X387880Y323226D01*

-X388204Y323304D01*

-Y284374D01*

-X387995Y284503D01*

-X387588Y284671D01*

-X387159Y284774D01*

-X386720Y284809D01*

-X386281Y284774D01*

-X386020Y284712D01*

-Y303905D01*

-X386148Y304014D01*

-X386434Y304349D01*

-X386665Y304725D01*

-X386833Y305132D01*

-X386936Y305561D01*

-X386962Y306000D01*

-X386936Y306439D01*

-X386833Y306868D01*

-X386665Y307275D01*

-X386434Y307651D01*

-X386148Y307986D01*

-X386020Y308095D01*

-Y323587D01*

-G37*

-G36*

-Y351698D02*X386380Y351726D01*

-X386809Y351829D01*

-X387216Y351997D01*

-X387592Y352228D01*

-X387927Y352514D01*

-X388204Y352839D01*

-Y328696D01*

-X387880Y328774D01*

-X387441Y328809D01*

-X387002Y328774D01*

-X386573Y328671D01*

-X386166Y328503D01*

-X386020Y328413D01*

-Y351698D01*

-G37*

-G36*

-Y397000D02*X388204D01*

-Y356161D01*

-X387927Y356486D01*

-X387592Y356772D01*

-X387216Y357003D01*

-X386809Y357171D01*

-X386380Y357274D01*

-X386020Y357302D01*

-Y364201D01*

-X386223Y364217D01*

-X386499Y364283D01*

-X386761Y364391D01*

-X387002Y364539D01*

-X387218Y364723D01*

-X387402Y364939D01*

-X387550Y365180D01*

-X387658Y365442D01*

-X387724Y365718D01*

-X387741Y366000D01*

-X387724Y366282D01*

-X387658Y366558D01*

-X387550Y366820D01*

-X387402Y367061D01*

-X387218Y367277D01*

-X387002Y367461D01*

-X386761Y367609D01*

-X386499Y367717D01*

-X386223Y367783D01*

-X386020Y367799D01*

-Y376989D01*

-X386165Y377225D01*

-X386333Y377632D01*

-X386436Y378061D01*

-X386462Y378500D01*

-X386436Y378939D01*

-X386333Y379368D01*

-X386165Y379775D01*

-X386020Y380011D01*

-Y397000D01*

-G37*

-G36*

-X388204Y135000D02*X386020D01*

-Y156008D01*

-X386023Y156007D01*

-X386305Y156030D01*

-X386581Y156096D01*

-X386843Y156204D01*

-X387084Y156352D01*

-X387300Y156536D01*

-X387484Y156752D01*

-X387632Y156993D01*

-X387740Y157255D01*

-X387806Y157531D01*

-X387823Y157813D01*

-X387806Y158095D01*

-X387740Y158371D01*

-X387632Y158633D01*

-X387484Y158874D01*

-X387300Y159090D01*

-X387084Y159274D01*

-X386843Y159422D01*

-X386581Y159530D01*

-X386305Y159596D01*

-X386023Y159619D01*

-X386020Y159618D01*

-Y160224D01*

-X386441Y160191D01*

-X386880Y160226D01*

-X387309Y160329D01*

-X387716Y160497D01*

-X388092Y160728D01*

-X388204Y160824D01*

-Y135000D01*

-G37*

-G36*

-X386020D02*X377344D01*

-Y160373D01*

-X377347Y160372D01*

-X377629Y160395D01*

-X377905Y160461D01*

-X378167Y160569D01*

-X378408Y160717D01*

-X378624Y160901D01*

-X378808Y161117D01*

-X378956Y161358D01*

-X379064Y161620D01*

-X379130Y161896D01*

-X379147Y162178D01*

-X379130Y162460D01*

-X379064Y162736D01*

-X378956Y162998D01*

-X378808Y163239D01*

-X378624Y163455D01*

-X378408Y163639D01*

-X378167Y163787D01*

-X377905Y163895D01*

-X377629Y163961D01*

-X377347Y163984D01*

-X377344Y163983D01*

-Y232943D01*

-X377427Y233014D01*

-X377713Y233349D01*

-X377944Y233725D01*

-X378112Y234132D01*

-X378215Y234561D01*

-X378241Y235000D01*

-X378215Y235439D01*

-X378112Y235868D01*

-X377944Y236275D01*

-X377713Y236651D01*

-X377427Y236986D01*

-X377344Y237057D01*

-Y397000D01*

-X386020D01*

-Y380011D01*

-X385934Y380151D01*

-X385648Y380486D01*

-X385313Y380772D01*

-X384937Y381003D01*

-X384530Y381171D01*

-X384101Y381274D01*

-X383662Y381309D01*

-X383223Y381274D01*

-X382794Y381171D01*

-X382387Y381003D01*

-X382011Y380772D01*

-X381676Y380486D01*

-X381390Y380151D01*

-X381159Y379775D01*

-X380991Y379368D01*

-X380888Y378939D01*

-X380853Y378500D01*

-X380888Y378061D01*

-X380991Y377632D01*

-X381159Y377225D01*

-X381390Y376849D01*

-X381676Y376514D01*

-X382011Y376228D01*

-X382387Y375997D01*

-X382794Y375829D01*

-X383223Y375726D01*

-X383662Y375691D01*

-X384101Y375726D01*

-X384530Y375829D01*

-X384937Y375997D01*

-X385313Y376228D01*

-X385648Y376514D01*

-X385934Y376849D01*

-X386020Y376989D01*

-Y367799D01*

-X385941Y367806D01*

-X385659Y367783D01*

-X385383Y367717D01*

-X385121Y367609D01*

-X384880Y367461D01*

-X384664Y367277D01*

-X384480Y367061D01*

-X384332Y366820D01*

-X384224Y366558D01*

-X384158Y366282D01*

-X384135Y366000D01*

-X384158Y365718D01*

-X384224Y365442D01*

-X384332Y365180D01*

-X384480Y364939D01*

-X384664Y364723D01*

-X384880Y364539D01*

-X385121Y364391D01*

-X385383Y364283D01*

-X385659Y364217D01*

-X385941Y364194D01*

-X386020Y364201D01*

-Y357302D01*

-X385941Y357309D01*

-X385502Y357274D01*

-X385073Y357171D01*

-X384666Y357003D01*

-X384290Y356772D01*

-X383955Y356486D01*

-X383669Y356151D01*

-X383438Y355775D01*

-X383270Y355368D01*

-X383167Y354939D01*

-X383132Y354500D01*

-X383167Y354061D01*

-X383270Y353632D01*

-X383438Y353225D01*

-X383669Y352849D01*

-X383955Y352514D01*

-X384290Y352228D01*

-X384666Y351997D01*

-X385073Y351829D01*

-X385502Y351726D01*

-X385941Y351691D01*

-X386020Y351698D01*

-Y328413D01*

-X385790Y328272D01*

-X385455Y327986D01*

-X385169Y327651D01*

-X384938Y327275D01*

-X384770Y326868D01*

-X384667Y326439D01*

-X384632Y326000D01*

-X384667Y325561D01*

-X384770Y325132D01*

-X384938Y324725D01*

-X385169Y324349D01*

-X385455Y324014D01*

-X385790Y323728D01*

-X386020Y323587D01*

-Y308095D01*

-X385813Y308272D01*

-X385437Y308503D01*

-X385030Y308671D01*

-X384601Y308774D01*

-X384162Y308809D01*

-X383723Y308774D01*

-X383294Y308671D01*

-X382887Y308503D01*

-X382511Y308272D01*

-X382176Y307986D01*

-X381890Y307651D01*

-X381659Y307275D01*

-X381491Y306868D01*

-X381388Y306439D01*

-X381353Y306000D01*

-X381388Y305561D01*

-X381491Y305132D01*

-X381659Y304725D01*

-X381890Y304349D01*

-X382176Y304014D01*

-X382511Y303728D01*

-X382887Y303497D01*

-X383294Y303329D01*

-X383723Y303226D01*

-X384162Y303191D01*

-X384601Y303226D01*

-X385030Y303329D01*

-X385437Y303497D01*

-X385813Y303728D01*

-X386020Y303905D01*

-Y284712D01*

-X385852Y284671D01*

-X385445Y284503D01*

-X385069Y284272D01*

-X384734Y283986D01*

-X384448Y283651D01*

-X384217Y283275D01*

-X384049Y282868D01*

-X383946Y282439D01*

-X383911Y282000D01*

-X383946Y281561D01*

-X384049Y281132D01*

-X384217Y280725D01*

-X384448Y280349D01*

-X384734Y280014D01*

-X385069Y279728D01*

-X385445Y279497D01*

-X385852Y279329D01*

-X386020Y279288D01*

-Y260360D01*

-X385787Y260503D01*

-X385380Y260671D01*

-X384951Y260774D01*

-X384512Y260809D01*

-X384073Y260774D01*

-X383644Y260671D01*

-X383237Y260503D01*

-X382861Y260272D01*

-X382526Y259986D01*

-X382240Y259651D01*

-X382009Y259275D01*

-X381841Y258868D01*

-X381738Y258439D01*

-X381703Y258000D01*

-X381738Y257561D01*

-X381841Y257132D01*

-X382009Y256725D01*

-X382240Y256349D01*

-X382526Y256014D01*

-X382861Y255728D01*

-X383237Y255497D01*

-X383644Y255329D01*

-X384073Y255226D01*

-X384512Y255191D01*

-X384951Y255226D01*

-X385380Y255329D01*

-X385787Y255497D01*

-X386020Y255640D01*

-Y237596D01*

-X385795Y237503D01*

-X385419Y237272D01*

-X385084Y236986D01*

-X384798Y236651D01*

-X384567Y236275D01*

-X384399Y235868D01*

-X384296Y235439D01*

-X384261Y235000D01*

-X384296Y234561D01*

-X384399Y234132D01*

-X384567Y233725D01*

-X384798Y233349D01*

-X385084Y233014D01*

-X385419Y232728D01*

-X385795Y232497D01*

-X386020Y232404D01*

-Y190095D01*

-X385813Y190272D01*

-X385437Y190503D01*

-X385030Y190671D01*

-X384601Y190774D01*

-X384162Y190809D01*

-X383723Y190774D01*

-X383294Y190671D01*

-X382887Y190503D01*

-X382511Y190272D01*

-X382176Y189986D01*

-X381890Y189651D01*

-X381659Y189275D01*

-X381491Y188868D01*

-X381388Y188439D01*

-X381353Y188000D01*

-X381388Y187561D01*

-X381491Y187132D01*

-X381659Y186725D01*

-X381890Y186349D01*

-X382176Y186014D01*

-X382511Y185728D01*

-X382887Y185497D01*

-X383294Y185329D01*

-X383723Y185226D01*

-X384162Y185191D01*

-X384601Y185226D01*

-X385030Y185329D01*

-X385437Y185497D01*

-X385813Y185728D01*

-X386020Y185905D01*

-Y165776D01*

-X386002Y165774D01*

-X385573Y165671D01*

-X385166Y165503D01*

-X384790Y165272D01*

-X384455Y164986D01*

-X384169Y164651D01*

-X383938Y164275D01*

-X383770Y163868D01*

-X383667Y163439D01*

-X383632Y163000D01*

-X383667Y162561D01*

-X383770Y162132D01*

-X383938Y161725D01*

-X384169Y161349D01*

-X384455Y161014D01*

-X384790Y160728D01*

-X385166Y160497D01*

-X385573Y160329D01*

-X386002Y160226D01*

-X386020Y160224D01*

-Y159618D01*

-X385741Y159596D01*

-X385465Y159530D01*

-X385203Y159422D01*

-X384962Y159274D01*

-X384746Y159090D01*

-X384562Y158874D01*

-X384414Y158633D01*

-X384306Y158371D01*

-X384240Y158095D01*

-X384217Y157813D01*

-X384240Y157531D01*

-X384306Y157255D01*

-X384414Y156993D01*

-X384562Y156752D01*

-X384746Y156536D01*

-X384962Y156352D01*

-X385203Y156204D01*

-X385465Y156096D01*

-X385741Y156030D01*

-X386020Y156008D01*

-Y135000D01*

-G37*

-G36*

-X377344D02*X372437D01*

-Y167578D01*

-X372441Y167577D01*

-X372880Y167612D01*

-X373309Y167715D01*

-X373716Y167883D01*

-X374092Y168114D01*

-X374427Y168400D01*

-X374713Y168735D01*

-X374944Y169111D01*

-X375112Y169518D01*

-X375215Y169947D01*

-X375241Y170386D01*

-X375215Y170825D01*

-X375112Y171254D01*

-X374944Y171661D01*

-X374713Y172037D01*

-X374427Y172372D01*

-X374092Y172658D01*

-X373716Y172889D01*

-X373309Y173057D01*

-X372880Y173160D01*

-X372441Y173195D01*

-X372437Y173194D01*

-Y258628D01*

-X372663Y258767D01*

-X372879Y258951D01*

-X373063Y259167D01*

-X373211Y259408D01*

-X373319Y259670D01*

-X373385Y259946D01*

-X373402Y260228D01*

-X373385Y260510D01*

-X373319Y260786D01*

-X373211Y261048D01*

-X373063Y261289D01*

-X372879Y261505D01*

-X372663Y261689D01*

-X372437Y261828D01*

-Y287881D01*

-X372441Y287880D01*

-X372880Y287915D01*

-X373309Y288018D01*

-X373716Y288186D01*

-X374092Y288417D01*

-X374427Y288703D01*

-X374713Y289038D01*

-X374944Y289414D01*

-X375112Y289821D01*

-X375215Y290250D01*

-X375241Y290689D01*

-X375215Y291128D01*

-X375112Y291557D01*

-X374944Y291964D01*

-X374713Y292340D01*

-X374427Y292675D01*

-X374092Y292961D01*

-X373716Y293192D01*

-X373309Y293360D01*

-X372880Y293463D01*

-X372441Y293498D01*

-X372437Y293497D01*

-Y348381D01*

-X372441Y348380D01*

-X372880Y348415D01*

-X373309Y348518D01*

-X373716Y348686D01*

-X374092Y348917D01*

-X374427Y349203D01*

-X374713Y349538D01*

-X374944Y349914D01*

-X375112Y350321D01*

-X375215Y350750D01*

-X375241Y351189D01*

-X375215Y351628D01*

-X375112Y352057D01*

-X374944Y352464D01*

-X374713Y352840D01*

-X374427Y353175D01*

-X374092Y353461D01*

-X373716Y353692D01*

-X373309Y353860D01*

-X372880Y353963D01*

-X372441Y353998D01*

-X372437Y353997D01*

-Y397000D01*

-X377344D01*

-Y237057D01*

-X377092Y237272D01*

-X376716Y237503D01*

-X376309Y237671D01*

-X375880Y237774D01*

-X375441Y237809D01*

-X375002Y237774D01*

-X374573Y237671D01*

-X374166Y237503D01*

-X373790Y237272D01*

-X373455Y236986D01*

-X373169Y236651D01*

-X372938Y236275D01*

-X372770Y235868D01*

-X372667Y235439D01*

-X372632Y235000D01*

-X372667Y234561D01*

-X372770Y234132D01*

-X372938Y233725D01*

-X373169Y233349D01*

-X373455Y233014D01*

-X373790Y232728D01*

-X374166Y232497D01*

-X374573Y232329D01*

-X375002Y232226D01*

-X375441Y232191D01*

-X375880Y232226D01*

-X376309Y232329D01*

-X376716Y232497D01*

-X377092Y232728D01*

-X377344Y232943D01*

-Y163983D01*

-X377065Y163961D01*

-X376789Y163895D01*

-X376527Y163787D01*

-X376286Y163639D01*

-X376070Y163455D01*

-X375886Y163239D01*

-X375738Y162998D01*

-X375630Y162736D01*

-X375564Y162460D01*

-X375541Y162178D01*

-X375564Y161896D01*

-X375630Y161620D01*

-X375738Y161358D01*

-X375886Y161117D01*

-X376070Y160901D01*

-X376286Y160717D01*

-X376527Y160569D01*

-X376789Y160461D01*

-X377065Y160395D01*

-X377344Y160373D01*

-Y135000D01*

-G37*

-G36*

-X372437D02*X358938D01*

-Y206695D01*

-X358941Y206694D01*

-X359223Y206717D01*

-X359499Y206783D01*

-X359761Y206891D01*

-X360002Y207039D01*

-X360218Y207223D01*

-X360402Y207439D01*

-X360550Y207680D01*

-X360658Y207942D01*

-X360724Y208218D01*

-X360741Y208500D01*

-X360724Y208782D01*

-X360658Y209058D01*

-X360550Y209320D01*

-X360402Y209561D01*

-X360218Y209777D01*

-X360002Y209961D01*

-X359761Y210109D01*

-X359499Y210217D01*

-X359223Y210283D01*

-X358941Y210306D01*

-X358938Y210305D01*

-Y397000D01*

-X372437D01*

-Y353997D01*

-X372002Y353963D01*

-X371573Y353860D01*

-X371166Y353692D01*

-X370790Y353461D01*

-X370455Y353175D01*

-X370169Y352840D01*

-X369938Y352464D01*

-X369770Y352057D01*

-X369667Y351628D01*

-X369632Y351189D01*

-X369667Y350750D01*

-X369770Y350321D01*

-X369938Y349914D01*

-X370169Y349538D01*

-X370455Y349203D01*

-X370790Y348917D01*

-X371166Y348686D01*

-X371573Y348518D01*

-X372002Y348415D01*

-X372437Y348381D01*

-Y293497D01*

-X372002Y293463D01*

-X371573Y293360D01*

-X371166Y293192D01*

-X370790Y292961D01*

-X370455Y292675D01*

-X370169Y292340D01*

-X369938Y291964D01*

-X369770Y291557D01*

-X369667Y291128D01*

-X369632Y290689D01*

-X369667Y290250D01*

-X369770Y289821D01*

-X369938Y289414D01*

-X370169Y289038D01*

-X370455Y288703D01*

-X370790Y288417D01*

-X371166Y288186D01*

-X371573Y288018D01*

-X372002Y287915D01*

-X372437Y287881D01*

-Y261828D01*

-X372422Y261837D01*

-X372160Y261945D01*

-X371884Y262011D01*

-X371602Y262034D01*

-X371320Y262011D01*

-X371044Y261945D01*

-X370782Y261837D01*

-X370541Y261689D01*

-X370325Y261505D01*

-X370141Y261289D01*

-X369993Y261048D01*

-X369885Y260786D01*

-X369819Y260510D01*

-X369796Y260228D01*

-X369819Y259946D01*

-X369885Y259670D01*

-X369993Y259408D01*

-X370141Y259167D01*

-X370325Y258951D01*

-X370541Y258767D01*

-X370782Y258619D01*

-X371044Y258511D01*

-X371320Y258445D01*

-X371602Y258422D01*

-X371884Y258445D01*

-X372160Y258511D01*

-X372422Y258619D01*

-X372437Y258628D01*

-Y173194D01*

-X372002Y173160D01*

-X371573Y173057D01*

-X371166Y172889D01*

-X370790Y172658D01*

-X370455Y172372D01*

-X370169Y172037D01*

-X369938Y171661D01*

-X369770Y171254D01*

-X369667Y170825D01*

-X369632Y170386D01*

-X369667Y169947D01*

-X369770Y169518D01*

-X369938Y169111D01*

-X370169Y168735D01*

-X370455Y168400D01*

-X370790Y168114D01*

-X371166Y167883D01*

-X371573Y167715D01*

-X372002Y167612D01*

-X372437Y167578D01*

-Y135000D01*

-G37*

-G36*

-X358938D02*X356438D01*

-Y231195D01*

-X356441Y231194D01*

-X356723Y231217D01*

-X356999Y231283D01*

-X357261Y231391D01*

-X357502Y231539D01*

-X357718Y231723D01*

-X357902Y231939D01*

-X358050Y232180D01*

-X358158Y232442D01*

-X358224Y232718D01*

-X358241Y233000D01*

-X358224Y233282D01*

-X358158Y233558D01*

-X358050Y233820D01*

-X357902Y234061D01*

-X357718Y234277D01*

-X357502Y234461D01*

-X357261Y234609D01*

-X356999Y234717D01*

-X356723Y234783D01*

-X356441Y234806D01*

-X356438Y234805D01*

-Y397000D01*

-X358938D01*

-Y210305D01*

-X358659Y210283D01*

-X358383Y210217D01*

-X358121Y210109D01*

-X357880Y209961D01*

-X357664Y209777D01*

-X357480Y209561D01*

-X357332Y209320D01*

-X357224Y209058D01*

-X357158Y208782D01*

-X357135Y208500D01*

-X357158Y208218D01*

-X357224Y207942D01*

-X357332Y207680D01*

-X357480Y207439D01*

-X357664Y207223D01*

-X357880Y207039D01*

-X358121Y206891D01*

-X358383Y206783D01*

-X358659Y206717D01*

-X358938Y206695D01*

-Y135000D01*

-G37*

-G36*

-X356438D02*X353387D01*

-Y185739D01*

-X353955Y186404D01*

-X354781Y187752D01*

-X355387Y189214D01*

-X355756Y190752D01*

-X355849Y192329D01*

-X355756Y193906D01*

-X355387Y195444D01*

-X354781Y196906D01*

-X353955Y198254D01*

-X353387Y198919D01*

-Y337716D01*

-X353390Y337715D01*

-X353672Y337738D01*

-X353948Y337804D01*

-X354210Y337912D01*

-X354451Y338060D01*

-X354667Y338244D01*

-X354851Y338460D01*

-X354999Y338701D01*

-X355107Y338963D01*

-X355173Y339239D01*

-X355190Y339521D01*

-X355173Y339803D01*

-X355107Y340079D01*

-X354999Y340341D01*

-X354851Y340582D01*

-X354667Y340798D01*

-X354451Y340982D01*

-X354210Y341130D01*

-X353948Y341238D01*

-X353672Y341304D01*

-X353390Y341327D01*

-X353387Y341326D01*

-Y350739D01*

-X353955Y351404D01*

-X354781Y352752D01*

-X355387Y354214D01*

-X355756Y355752D01*

-X355849Y357329D01*

-X355756Y358906D01*

-X355387Y360444D01*

-X354781Y361906D01*

-X353955Y363254D01*

-X353387Y363919D01*

-Y397000D01*

-X356438D01*

-Y234805D01*

-X356159Y234783D01*

-X355883Y234717D01*

-X355621Y234609D01*

-X355380Y234461D01*

-X355164Y234277D01*

-X354980Y234061D01*

-X354832Y233820D01*

-X354724Y233558D01*

-X354658Y233282D01*

-X354635Y233000D01*

-X354658Y232718D01*

-X354724Y232442D01*

-X354832Y232180D01*

-X354980Y231939D01*

-X355164Y231723D01*

-X355380Y231539D01*

-X355621Y231391D01*

-X355883Y231283D01*

-X356159Y231217D01*

-X356438Y231195D01*

-Y135000D01*

-G37*

-G36*

-X353387Y363919D02*X352927Y364457D01*

-X351724Y365485D01*

-X350376Y366311D01*

-X348914Y366917D01*

-X347376Y367286D01*

-X345799Y367410D01*

-X344222Y367286D01*

-X342684Y366917D01*

-X341222Y366311D01*

-X339874Y365485D01*

-X339834Y365451D01*

-Y397000D01*

-X353387D01*

-Y363919D01*

-G37*

-G36*

-Y198919D02*X352927Y199457D01*

-X351724Y200485D01*

-X350376Y201311D01*

-X348914Y201917D01*

-X347376Y202286D01*

-X345799Y202410D01*

-X344222Y202286D01*

-X342684Y201917D01*

-X341222Y201311D01*

-X339874Y200485D01*

-X339834Y200451D01*

-Y223052D01*

-X339902Y223131D01*

-X340050Y223372D01*

-X340158Y223634D01*

-X340224Y223910D01*

-X340241Y224192D01*

-X340224Y224474D01*

-X340158Y224750D01*

-X340050Y225012D01*

-X339902Y225253D01*

-X339834Y225332D01*

-Y228984D01*

-X339902Y229063D01*

-X340050Y229304D01*

-X340158Y229566D01*

-X340224Y229842D01*

-X340241Y230124D01*

-X340224Y230406D01*

-X340158Y230682D01*

-X340050Y230944D01*

-X339902Y231185D01*

-X339834Y231264D01*

-Y245027D01*

-X340278Y244755D01*

-X340969Y244469D01*

-X341696Y244294D01*

-X342441Y244235D01*

-X343186Y244294D01*

-X343913Y244469D01*

-X344604Y244755D01*

-X345242Y245145D01*

-X345810Y245631D01*

-X346296Y246199D01*

-X346686Y246837D01*

-X346972Y247528D01*

-X347147Y248255D01*

-X347191Y249000D01*

-X347147Y249745D01*

-X346972Y250472D01*

-X346686Y251163D01*

-X346296Y251801D01*

-X345810Y252369D01*

-X345242Y252855D01*

-X344604Y253245D01*

-X343913Y253531D01*

-X343186Y253706D01*

-X342441Y253765D01*

-X341696Y253706D01*

-X340969Y253531D01*

-X340278Y253245D01*

-X339834Y252973D01*

-Y340022D01*

-X339837Y340021D01*

-X340119Y340044D01*

-X340395Y340110D01*

-X340657Y340218D01*

-X340898Y340366D01*

-X341114Y340550D01*

-X341298Y340766D01*

-X341446Y341007D01*

-X341554Y341269D01*

-X341620Y341545D01*

-X341637Y341827D01*

-X341620Y342109D01*

-X341554Y342385D01*

-X341446Y342647D01*

-X341298Y342888D01*

-X341114Y343104D01*

-X340898Y343288D01*

-X340657Y343436D01*

-X340395Y343544D01*

-X340119Y343610D01*

-X339837Y343633D01*

-X339834Y343632D01*

-Y349207D01*

-X339874Y349173D01*

-X341222Y348347D01*

-X342684Y347741D01*

-X344222Y347372D01*

-X345799Y347248D01*

-X347376Y347372D01*

-X348914Y347741D01*

-X350376Y348347D01*

-X351724Y349173D01*

-X352927Y350201D01*

-X353387Y350739D01*

-Y341326D01*

-X353108Y341304D01*

-X352832Y341238D01*

-X352570Y341130D01*

-X352329Y340982D01*

-X352113Y340798D01*

-X351929Y340582D01*

-X351781Y340341D01*

-X351673Y340079D01*

-X351607Y339803D01*

-X351584Y339521D01*

-X351607Y339239D01*

-X351673Y338963D01*

-X351781Y338701D01*

-X351929Y338460D01*

-X352113Y338244D01*

-X352329Y338060D01*

-X352570Y337912D01*

-X352832Y337804D01*

-X353108Y337738D01*

-X353387Y337716D01*

-Y198919D01*

-G37*

-G36*

-Y135000D02*X339834D01*

-Y184207D01*

-X339874Y184173D01*

-X341222Y183347D01*

-X342684Y182741D01*

-X344222Y182372D01*

-X345799Y182248D01*

-X347376Y182372D01*

-X348914Y182741D01*

-X350376Y183347D01*

-X351724Y184173D01*

-X352927Y185201D01*

-X353387Y185739D01*

-Y135000D01*

-G37*

-G36*

-X337438Y222695D02*X337621Y222583D01*

-X337883Y222475D01*

-X338159Y222409D01*

-X338441Y222386D01*

-X338723Y222409D01*

-X338999Y222475D01*

-X339261Y222583D01*

-X339502Y222731D01*

-X339718Y222915D01*

-X339834Y223052D01*

-Y200451D01*

-X338671Y199457D01*

-X337643Y198254D01*

-X337438Y197920D01*

-Y222695D01*

-G37*

-G36*

-Y228627D02*X337621Y228515D01*

-X337883Y228407D01*

-X338159Y228341D01*

-X338441Y228318D01*

-X338723Y228341D01*

-X338999Y228407D01*

-X339261Y228515D01*

-X339502Y228663D01*

-X339718Y228847D01*

-X339834Y228984D01*

-Y225332D01*

-X339718Y225469D01*

-X339502Y225653D01*

-X339261Y225801D01*

-X338999Y225909D01*

-X338723Y225975D01*

-X338441Y225998D01*

-X338159Y225975D01*

-X337883Y225909D01*

-X337621Y225801D01*

-X337438Y225689D01*

-Y228627D01*

-G37*

-G36*

-Y351738D02*X337643Y351404D01*

-X338671Y350201D01*

-X339834Y349207D01*

-Y343632D01*

-X339555Y343610D01*

-X339279Y343544D01*

-X339017Y343436D01*

-X338776Y343288D01*

-X338560Y343104D01*

-X338376Y342888D01*

-X338228Y342647D01*

-X338120Y342385D01*

-X338054Y342109D01*

-X338031Y341827D01*

-X338054Y341545D01*

-X338120Y341269D01*

-X338228Y341007D01*

-X338376Y340766D01*

-X338560Y340550D01*

-X338776Y340366D01*

-X339017Y340218D01*

-X339279Y340110D01*

-X339555Y340044D01*

-X339834Y340022D01*

-Y252973D01*

-X339640Y252855D01*

-X339072Y252369D01*

-X338586Y251801D01*

-X338196Y251163D01*

-X337910Y250472D01*

-X337735Y249745D01*

-X337676Y249000D01*

-X337735Y248255D01*

-X337910Y247528D01*

-X338196Y246837D01*

-X338586Y246199D01*

-X339072Y245631D01*

-X339640Y245145D01*

-X339834Y245027D01*

-Y231264D01*

-X339718Y231401D01*

-X339502Y231585D01*

-X339261Y231733D01*

-X338999Y231841D01*

-X338723Y231907D01*

-X338441Y231930D01*

-X338159Y231907D01*

-X337883Y231841D01*

-X337621Y231733D01*

-X337438Y231621D01*

-Y351738D01*

-G37*

-G36*

-Y397000D02*X339834D01*

-Y365451D01*

-X338671Y364457D01*

-X337643Y363254D01*

-X337438Y362920D01*

-Y397000D01*

-G37*

-G36*

-X339834Y135000D02*X337438D01*

-Y161195D01*

-X337441Y161194D01*

-X337723Y161217D01*

-X337999Y161283D01*

-X338261Y161391D01*

-X338502Y161539D01*

-X338718Y161723D01*

-X338902Y161939D01*

-X339050Y162180D01*

-X339158Y162442D01*

-X339224Y162718D01*

-X339241Y163000D01*

-X339224Y163282D01*

-X339158Y163558D01*

-X339050Y163820D01*

-X338902Y164061D01*

-X338718Y164277D01*

-X338502Y164461D01*

-X338261Y164609D01*

-X337999Y164717D01*

-X337723Y164783D01*

-X337441Y164806D01*

-X337438Y164805D01*

-Y186738D01*

-X337643Y186404D01*

-X338671Y185201D01*

-X339834Y184207D01*

-Y135000D01*

-G37*

-G36*

-X337438D02*X332434D01*

-Y244236D01*

-X332441Y244235D01*

-X333186Y244294D01*

-X333913Y244469D01*

-X334604Y244755D01*

-X335242Y245145D01*

-X335810Y245631D01*

-X336296Y246199D01*

-X336686Y246837D01*

-X336972Y247528D01*

-X337147Y248255D01*

-X337191Y249000D01*

-X337147Y249745D01*

-X336972Y250472D01*

-X336686Y251163D01*

-X336296Y251801D01*

-X335810Y252369D01*

-X335242Y252855D01*

-X334604Y253245D01*

-X333913Y253531D01*

-X333186Y253706D01*

-X332441Y253765D01*

-X332434Y253764D01*

-Y397000D01*

-X337438D01*

-Y362920D01*

-X336817Y361906D01*

-X336211Y360444D01*

-X335842Y358906D01*

-X335718Y357329D01*

-X335842Y355752D01*

-X336211Y354214D01*

-X336817Y352752D01*

-X337438Y351738D01*

-Y231621D01*

-X337380Y231585D01*

-X337164Y231401D01*

-X336980Y231185D01*

-X336832Y230944D01*

-X336724Y230682D01*

-X336658Y230406D01*

-X336635Y230124D01*

-X336658Y229842D01*

-X336724Y229566D01*

-X336832Y229304D01*

-X336980Y229063D01*

-X337164Y228847D01*

-X337380Y228663D01*

-X337438Y228627D01*

-Y225689D01*

-X337380Y225653D01*

-X337164Y225469D01*

-X336980Y225253D01*

-X336832Y225012D01*

-X336724Y224750D01*

-X336658Y224474D01*

-X336635Y224192D01*

-X336658Y223910D01*

-X336724Y223634D01*

-X336832Y223372D01*

-X336980Y223131D01*

-X337164Y222915D01*

-X337380Y222731D01*

-X337438Y222695D01*

-Y197920D01*

-X336817Y196906D01*

-X336211Y195444D01*

-X335842Y193906D01*

-X335718Y192329D01*

-X335842Y190752D01*

-X336211Y189214D01*

-X336817Y187752D01*

-X337438Y186738D01*

-Y164805D01*

-X337159Y164783D01*

-X336883Y164717D01*

-X336621Y164609D01*

-X336380Y164461D01*

-X336164Y164277D01*

-X335980Y164061D01*

-X335832Y163820D01*

-X335724Y163558D01*

-X335658Y163282D01*

-X335635Y163000D01*

-X335658Y162718D01*

-X335724Y162442D01*

-X335832Y162180D01*

-X335980Y161939D01*

-X336164Y161723D01*

-X336380Y161539D01*

-X336621Y161391D01*

-X336883Y161283D01*

-X337159Y161217D01*

-X337438Y161195D01*

-Y135000D01*

-G37*

-G36*

-X332434D02*X325792D01*

-Y170516D01*

-X325799Y170516D01*

-X326474Y170569D01*

-X327132Y170727D01*

-X327757Y170986D01*

-X328334Y171339D01*

-X328849Y171779D01*

-X329289Y172294D01*

-X329642Y172871D01*

-X329901Y173496D01*

-X330059Y174154D01*

-X330099Y174829D01*

-X330059Y175504D01*

-X329901Y176162D01*

-X329642Y176787D01*

-X329289Y177364D01*

-X328849Y177879D01*

-X328334Y178319D01*

-X327757Y178672D01*

-X327132Y178931D01*

-X326474Y179089D01*

-X325799Y179142D01*

-X325792Y179142D01*

-Y180516D01*

-X325799Y180516D01*

-X326474Y180569D01*

-X327132Y180727D01*

-X327757Y180986D01*

-X328334Y181339D01*

-X328849Y181779D01*

-X329289Y182294D01*

-X329642Y182871D01*

-X329901Y183496D01*

-X330059Y184154D01*

-X330099Y184829D01*

-X330059Y185504D01*

-X329901Y186162D01*

-X329642Y186787D01*

-X329289Y187364D01*

-X328849Y187879D01*

-X328334Y188319D01*

-X327757Y188672D01*

-X327132Y188931D01*

-X326474Y189089D01*

-X325799Y189142D01*

-X325792Y189142D01*

-Y245616D01*

-X325810Y245631D01*

-X326296Y246199D01*

-X326686Y246837D01*

-X326972Y247528D01*

-X327147Y248255D01*

-X327191Y249000D01*

-X327147Y249745D01*

-X326972Y250472D01*

-X326686Y251163D01*

-X326296Y251801D01*

-X325810Y252369D01*

-X325792Y252384D01*

-Y330862D01*

-X326435Y331910D01*

-X327151Y333640D01*

-X327589Y335462D01*

-X327699Y337329D01*

-X327589Y339196D01*

-X327151Y341018D01*

-X326435Y342748D01*

-X325792Y343796D01*

-Y360516D01*

-X325799Y360516D01*

-X326474Y360569D01*

-X327132Y360727D01*

-X327757Y360986D01*

-X328334Y361339D01*

-X328849Y361779D01*

-X329289Y362294D01*

-X329642Y362871D01*

-X329901Y363496D01*

-X330059Y364154D01*

-X330099Y364829D01*

-X330059Y365504D01*

-X329901Y366162D01*

-X329642Y366787D01*

-X329289Y367364D01*

-X328849Y367879D01*

-X328334Y368319D01*

-X327757Y368672D01*

-X327132Y368931D01*

-X326474Y369089D01*

-X325799Y369142D01*

-X325792Y369142D01*

-Y370516D01*

-X325799Y370516D01*

-X326474Y370569D01*

-X327132Y370727D01*

-X327757Y370986D01*

-X328334Y371339D01*

-X328849Y371779D01*

-X329289Y372294D01*

-X329642Y372871D01*

-X329901Y373496D01*

-X330059Y374154D01*

-X330099Y374829D01*

-X330059Y375504D01*

-X329901Y376162D01*

-X329642Y376787D01*

-X329289Y377364D01*

-X328849Y377879D01*

-X328334Y378319D01*

-X327757Y378672D01*

-X327132Y378931D01*

-X326474Y379089D01*

-X325799Y379142D01*

-X325792Y379142D01*

-Y397000D01*

-X332434D01*

-Y253764D01*

-X331696Y253706D01*

-X330969Y253531D01*

-X330278Y253245D01*

-X329640Y252855D01*

-X329072Y252369D01*

-X328586Y251801D01*

-X328196Y251163D01*

-X327910Y250472D01*

-X327735Y249745D01*

-X327676Y249000D01*

-X327735Y248255D01*

-X327910Y247528D01*

-X328196Y246837D01*

-X328586Y246199D01*

-X329072Y245631D01*

-X329640Y245145D01*

-X330278Y244755D01*

-X330969Y244469D01*

-X331696Y244294D01*

-X332434Y244236D01*

-Y135000D01*

-G37*

-G36*

-X325792Y343796D02*X325456Y344345D01*

-X324240Y345770D01*

-X322815Y346986D01*

-X321218Y347965D01*

-X319488Y348681D01*

-X317666Y349119D01*

-X315799Y349266D01*

-X315792Y349265D01*

-Y360516D01*

-X315799Y360516D01*

-X316474Y360569D01*

-X317132Y360727D01*

-X317757Y360986D01*

-X318334Y361339D01*

-X318849Y361779D01*

-X319289Y362294D01*

-X319642Y362871D01*

-X319901Y363496D01*

-X320059Y364154D01*

-X320099Y364829D01*

-X320059Y365504D01*

-X319901Y366162D01*

-X319642Y366787D01*

-X319289Y367364D01*

-X318849Y367879D01*

-X318334Y368319D01*

-X317757Y368672D01*

-X317132Y368931D01*

-X316474Y369089D01*

-X315799Y369142D01*

-X315792Y369142D01*

-Y370516D01*

-X315799Y370516D01*

-X316474Y370569D01*

-X317132Y370727D01*

-X317757Y370986D01*

-X318334Y371339D01*

-X318849Y371779D01*

-X319289Y372294D01*

-X319642Y372871D01*

-X319901Y373496D01*

-X320059Y374154D01*

-X320099Y374829D01*

-X320059Y375504D01*

-X319901Y376162D01*

-X319642Y376787D01*

-X319289Y377364D01*

-X318849Y377879D01*

-X318334Y378319D01*

-X317757Y378672D01*

-X317132Y378931D01*

-X316474Y379089D01*

-X315799Y379142D01*

-X315792Y379142D01*

-Y397000D01*

-X325792D01*

-Y379142D01*

-X325124Y379089D01*

-X324466Y378931D01*

-X323841Y378672D01*

-X323264Y378319D01*

-X322749Y377879D01*

-X322309Y377364D01*

-X321956Y376787D01*

-X321697Y376162D01*

-X321539Y375504D01*

-X321486Y374829D01*

-X321539Y374154D01*

-X321697Y373496D01*

-X321956Y372871D01*

-X322309Y372294D01*

-X322749Y371779D01*

-X323264Y371339D01*

-X323841Y370986D01*

-X324466Y370727D01*

-X325124Y370569D01*

-X325792Y370516D01*

-Y369142D01*

-X325124Y369089D01*

-X324466Y368931D01*

-X323841Y368672D01*

-X323264Y368319D01*

-X322749Y367879D01*

-X322309Y367364D01*

-X321956Y366787D01*

-X321697Y366162D01*

-X321539Y365504D01*

-X321486Y364829D01*

-X321539Y364154D01*

-X321697Y363496D01*

-X321956Y362871D01*

-X322309Y362294D01*

-X322749Y361779D01*

-X323264Y361339D01*

-X323841Y360986D01*

-X324466Y360727D01*

-X325124Y360569D01*

-X325792Y360516D01*

-Y343796D01*

-G37*

-G36*

-Y135000D02*X315792D01*

-Y170516D01*

-X315799Y170516D01*

-X316474Y170569D01*

-X317132Y170727D01*

-X317757Y170986D01*

-X318334Y171339D01*

-X318849Y171779D01*

-X319289Y172294D01*

-X319642Y172871D01*

-X319901Y173496D01*

-X320059Y174154D01*

-X320099Y174829D01*

-X320059Y175504D01*

-X319901Y176162D01*

-X319642Y176787D01*

-X319289Y177364D01*

-X318849Y177879D01*

-X318334Y178319D01*

-X317757Y178672D01*

-X317132Y178931D01*

-X316474Y179089D01*

-X315799Y179142D01*

-X315792Y179142D01*

-Y180516D01*

-X315799Y180516D01*

-X316474Y180569D01*

-X317132Y180727D01*

-X317757Y180986D01*

-X318334Y181339D01*

-X318849Y181779D01*

-X319289Y182294D01*

-X319642Y182871D01*

-X319901Y183496D01*

-X320059Y184154D01*

-X320099Y184829D01*

-X320059Y185504D01*

-X319901Y186162D01*

-X319642Y186787D01*

-X319289Y187364D01*

-X318849Y187879D01*

-X318334Y188319D01*

-X317757Y188672D01*

-X317132Y188931D01*

-X316474Y189089D01*

-X315799Y189142D01*

-X315792Y189142D01*

-Y246873D01*

-X315832Y246808D01*

-X315909Y246718D01*

-X315999Y246641D01*

-X316099Y246580D01*

-X316209Y246535D01*

-X316323Y246507D01*

-X316441Y246498D01*

-X316559Y246507D01*

-X316673Y246535D01*

-X316783Y246580D01*

-X316883Y246641D01*

-X316973Y246718D01*

-X317050Y246808D01*

-X317111Y246908D01*

-X317156Y247018D01*

-X317184Y247132D01*

-X317191Y247250D01*

-Y250750D01*

-X317184Y250868D01*

-X317156Y250982D01*

-X317111Y251092D01*

-X317050Y251192D01*

-X316973Y251282D01*

-X316883Y251359D01*

-X316783Y251420D01*

-X316673Y251465D01*

-X316559Y251493D01*

-X316441Y251502D01*

-X316323Y251493D01*

-X316209Y251465D01*

-X316099Y251420D01*

-X315999Y251359D01*

-X315909Y251282D01*

-X315832Y251192D01*

-X315792Y251127D01*

-Y325393D01*

-X315799Y325392D01*

-X317666Y325539D01*

-X319488Y325977D01*

-X321218Y326693D01*

-X322815Y327672D01*

-X324240Y328888D01*

-X325456Y330313D01*

-X325792Y330862D01*

-Y252384D01*

-X325242Y252855D01*

-X324604Y253245D01*

-X323913Y253531D01*

-X323186Y253706D01*

-X322441Y253765D01*

-X321696Y253706D01*

-X320969Y253531D01*

-X320278Y253245D01*

-X319640Y252855D01*

-X319072Y252369D01*

-X318586Y251801D01*

-X318196Y251163D01*

-X317910Y250472D01*

-X317735Y249745D01*

-X317676Y249000D01*

-X317735Y248255D01*

-X317910Y247528D01*

-X318196Y246837D01*

-X318586Y246199D01*

-X319072Y245631D01*

-X319640Y245145D01*

-X320278Y244755D01*

-X320969Y244469D01*

-X321696Y244294D01*

-X322441Y244235D01*

-X323186Y244294D01*

-X323913Y244469D01*

-X324604Y244755D01*

-X325242Y245145D01*

-X325792Y245616D01*

-Y189142D01*

-X325124Y189089D01*

-X324466Y188931D01*

-X323841Y188672D01*

-X323264Y188319D01*

-X322749Y187879D01*

-X322309Y187364D01*

-X321956Y186787D01*

-X321697Y186162D01*

-X321539Y185504D01*

-X321486Y184829D01*

-X321539Y184154D01*

-X321697Y183496D01*

-X321956Y182871D01*

-X322309Y182294D01*

-X322749Y181779D01*

-X323264Y181339D01*

-X323841Y180986D01*

-X324466Y180727D01*

-X325124Y180569D01*

-X325792Y180516D01*

-Y179142D01*

-X325124Y179089D01*

-X324466Y178931D01*

-X323841Y178672D01*

-X323264Y178319D01*

-X322749Y177879D01*

-X322309Y177364D01*

-X321956Y176787D01*

-X321697Y176162D01*

-X321539Y175504D01*

-X321486Y174829D01*

-X321539Y174154D01*

-X321697Y173496D01*

-X321956Y172871D01*

-X322309Y172294D01*

-X322749Y171779D01*

-X323264Y171339D01*

-X323841Y170986D01*

-X324466Y170727D01*

-X325124Y170569D01*

-X325792Y170516D01*

-Y135000D01*

-G37*

-G36*

-X315792Y349265D02*X313932Y349119D01*

-X312110Y348681D01*

-X310380Y347965D01*

-X308783Y346986D01*

-X307358Y345770D01*

-X306142Y344345D01*

-X305792Y343775D01*

-Y360516D01*

-X305799Y360516D01*

-X306474Y360569D01*

-X307132Y360727D01*

-X307757Y360986D01*

-X308334Y361339D01*

-X308849Y361779D01*

-X309289Y362294D01*

-X309642Y362871D01*

-X309901Y363496D01*

-X310059Y364154D01*

-X310099Y364829D01*

-X310059Y365504D01*

-X309901Y366162D01*

-X309642Y366787D01*

-X309289Y367364D01*

-X308849Y367879D01*

-X308334Y368319D01*

-X307757Y368672D01*

-X307132Y368931D01*

-X306474Y369089D01*

-X305799Y369142D01*

-X305792Y369142D01*

-Y370516D01*

-X305799Y370516D01*

-X306474Y370569D01*

-X307132Y370727D01*

-X307757Y370986D01*

-X308334Y371339D01*

-X308849Y371779D01*

-X309289Y372294D01*

-X309642Y372871D01*

-X309901Y373496D01*

-X310059Y374154D01*

-X310099Y374829D01*

-X310059Y375504D01*

-X309901Y376162D01*

-X309642Y376787D01*

-X309289Y377364D01*

-X308849Y377879D01*

-X308334Y378319D01*

-X307757Y378672D01*

-X307132Y378931D01*

-X306474Y379089D01*

-X305799Y379142D01*

-X305792Y379142D01*

-Y397000D01*

-X315792D01*

-Y379142D01*

-X315124Y379089D01*

-X314466Y378931D01*

-X313841Y378672D01*

-X313264Y378319D01*

-X312749Y377879D01*

-X312309Y377364D01*

-X311956Y376787D01*

-X311697Y376162D01*

-X311539Y375504D01*

-X311486Y374829D01*

-X311539Y374154D01*

-X311697Y373496D01*

-X311956Y372871D01*

-X312309Y372294D01*

-X312749Y371779D01*

-X313264Y371339D01*

-X313841Y370986D01*

-X314466Y370727D01*

-X315124Y370569D01*

-X315792Y370516D01*

-Y369142D01*

-X315124Y369089D01*

-X314466Y368931D01*

-X313841Y368672D01*

-X313264Y368319D01*

-X312749Y367879D01*

-X312309Y367364D01*

-X311956Y366787D01*

-X311697Y366162D01*

-X311539Y365504D01*

-X311486Y364829D01*

-X311539Y364154D01*

-X311697Y363496D01*

-X311956Y362871D01*

-X312309Y362294D01*

-X312749Y361779D01*

-X313264Y361339D01*

-X313841Y360986D01*

-X314466Y360727D01*

-X315124Y360569D01*

-X315792Y360516D01*

-Y349265D01*

-G37*

-G36*

-X308869Y134739D02*X308883Y134733D01*

-X309159Y134667D01*

-X309441Y134644D01*

-X309723Y134667D01*

-X309999Y134733D01*

-X310261Y134841D01*

-X310441Y134952D01*

-Y117671D01*

-X310383Y117657D01*

-X310121Y117549D01*

-X309880Y117401D01*

-X309664Y117217D01*

-X309480Y117001D01*

-X309332Y116760D01*

-X309224Y116498D01*

-X309158Y116222D01*

-X309135Y115940D01*

-X309158Y115658D01*

-X309224Y115382D01*

-X309332Y115120D01*

-X309480Y114879D01*

-X309664Y114663D01*

-X309880Y114479D01*

-X310121Y114331D01*

-X310383Y114223D01*

-X310441Y114209D01*

-Y97000D01*

-X308869D01*

-Y134739D01*

-G37*

-G36*

-X312154Y182548D02*X312309Y182294D01*

-X312749Y181779D01*

-X313264Y181339D01*

-X313841Y180986D01*

-X314466Y180727D01*

-X315124Y180569D01*

-X315792Y180516D01*

-Y179142D01*

-X315124Y179089D01*

-X314466Y178931D01*

-X313841Y178672D01*

-X313264Y178319D01*

-X312749Y177879D01*

-X312309Y177364D01*

-X312154Y177110D01*

-Y182548D01*

-G37*

-G36*

-Y325966D02*X313932Y325539D01*

-X315792Y325393D01*

-Y251127D01*

-X315771Y251092D01*

-X315726Y250982D01*

-X315698Y250868D01*

-X315691Y250750D01*

-Y247250D01*

-X315698Y247132D01*

-X315726Y247018D01*

-X315771Y246908D01*

-X315792Y246873D01*

-Y189142D01*

-X315124Y189089D01*

-X314466Y188931D01*

-X313841Y188672D01*

-X313264Y188319D01*

-X312749Y187879D01*

-X312309Y187364D01*

-X312154Y187110D01*

-Y244250D01*

-X314191D01*

-X314309Y244257D01*

-X314423Y244285D01*

-X314533Y244330D01*

-X314633Y244391D01*

-X314723Y244468D01*

-X314800Y244558D01*

-X314861Y244658D01*

-X314906Y244768D01*

-X314934Y244882D01*

-X314943Y245000D01*

-X314934Y245118D01*

-X314906Y245232D01*

-X314861Y245342D01*

-X314800Y245442D01*

-X314723Y245532D01*

-X314633Y245609D01*

-X314533Y245670D01*

-X314423Y245715D01*

-X314309Y245743D01*

-X314191Y245750D01*

-X312154D01*

-Y252250D01*

-X314191D01*

-X314309Y252257D01*

-X314423Y252285D01*

-X314533Y252330D01*

-X314633Y252391D01*

-X314723Y252468D01*

-X314800Y252558D01*

-X314861Y252658D01*

-X314906Y252768D01*

-X314934Y252882D01*

-X314943Y253000D01*

-X314934Y253118D01*

-X314906Y253232D01*

-X314861Y253342D01*

-X314800Y253442D01*

-X314723Y253532D01*

-X314633Y253609D01*

-X314533Y253670D01*

-X314423Y253715D01*

-X314309Y253743D01*

-X314191Y253750D01*

-X312154D01*

-Y292984D01*

-X312444Y293007D01*

-X312757Y293082D01*

-X313056Y293206D01*

-X313331Y293374D01*

-X313576Y293584D01*

-X313786Y293829D01*

-X313954Y294104D01*

-X314078Y294403D01*

-X314153Y294716D01*

-X314172Y295038D01*

-X314153Y295360D01*

-X314078Y295673D01*

-X313954Y295972D01*

-X313786Y296247D01*

-X313576Y296492D01*

-X313331Y296702D01*

-X313056Y296870D01*

-X312757Y296994D01*

-X312444Y297069D01*

-X312154Y297092D01*

-Y298100D01*

-X312157Y298100D01*

-X312479Y298125D01*

-X312792Y298200D01*

-X313091Y298324D01*

-X313366Y298492D01*

-X313611Y298702D01*

-X313821Y298947D01*

-X313989Y299222D01*

-X314113Y299521D01*

-X314188Y299834D01*

-X314207Y300156D01*

-X314188Y300478D01*

-X314113Y300791D01*

-X313989Y301090D01*

-X313821Y301365D01*

-X313611Y301610D01*

-X313366Y301820D01*

-X313091Y301988D01*

-X312792Y302112D01*

-X312479Y302187D01*

-X312157Y302212D01*

-X312154Y302212D01*

-Y325966D01*

-G37*

-G36*

-X315792Y135000D02*X312154D01*

-Y172548D01*

-X312309Y172294D01*

-X312749Y171779D01*

-X313264Y171339D01*

-X313841Y170986D01*

-X314466Y170727D01*

-X315124Y170569D01*

-X315792Y170516D01*

-Y135000D01*

-G37*

-G36*

-X312154D02*X310515D01*

-X310718Y135173D01*

-X310902Y135389D01*

-X311050Y135630D01*

-X311158Y135892D01*

-X311224Y136168D01*

-X311241Y136450D01*

-X311224Y136732D01*

-X311158Y137008D01*

-X311050Y137270D01*

-X310902Y137511D01*

-X310718Y137727D01*

-X310502Y137911D01*

-X310261Y138059D01*

-X309999Y138167D01*

-X309723Y138233D01*

-X309441Y138256D01*

-X309159Y138233D01*

-X308883Y138167D01*

-X308869Y138161D01*

-Y139857D01*

-X308883Y139851D01*

-X309159Y139785D01*

-X309441Y139762D01*

-X309723Y139785D01*

-X309999Y139851D01*

-X310261Y139959D01*

-X310502Y140107D01*

-X310718Y140291D01*

-X310902Y140507D01*

-X311050Y140748D01*

-X311158Y141010D01*

-X311224Y141286D01*

-X311241Y141568D01*

-X311224Y141850D01*

-X311158Y142126D01*

-X311050Y142388D01*

-X310902Y142629D01*

-X310718Y142845D01*

-X310502Y143029D01*

-X310261Y143177D01*

-X309999Y143285D01*

-X309723Y143351D01*

-X309441Y143374D01*

-X309159Y143351D01*

-X308883Y143285D01*

-X308869Y143279D01*

-Y171802D01*

-X309289Y172294D01*

-X309642Y172871D01*

-X309901Y173496D01*

-X310059Y174154D01*

-X310099Y174829D01*

-X310059Y175504D01*

-X309901Y176162D01*

-X309642Y176787D01*

-X309289Y177364D01*

-X308869Y177856D01*

-Y181802D01*

-X309289Y182294D01*

-X309642Y182871D01*

-X309901Y183496D01*

-X310059Y184154D01*

-X310099Y184829D01*

-X310059Y185504D01*

-X309901Y186162D01*

-X309642Y186787D01*

-X309289Y187364D01*

-X308869Y187856D01*

-Y246633D01*

-X308883Y246641D01*

-X308973Y246718D01*

-X309050Y246808D01*

-X309111Y246908D01*

-X309156Y247018D01*

-X309184Y247132D01*

-X309191Y247250D01*

-Y250750D01*

-X309184Y250868D01*

-X309156Y250982D01*

-X309111Y251092D01*

-X309050Y251192D01*

-X308973Y251282D01*

-X308883Y251359D01*

-X308869Y251367D01*

-Y264466D01*

-X308872Y264466D01*

-X309194Y264491D01*

-X309507Y264566D01*

-X309806Y264690D01*

-X310081Y264858D01*

-X310326Y265068D01*

-X310536Y265313D01*

-X310704Y265588D01*

-X310828Y265887D01*

-X310903Y266200D01*

-X310922Y266522D01*

-X310903Y266844D01*

-X310828Y267157D01*

-X310704Y267456D01*

-X310536Y267731D01*

-X310326Y267976D01*

-X310081Y268186D01*

-X309806Y268354D01*

-X309507Y268478D01*

-X309194Y268553D01*

-X308872Y268578D01*

-X308869Y268578D01*

-Y269924D01*

-X308992Y269915D01*

-X309314Y269940D01*

-X309627Y270015D01*

-X309926Y270139D01*

-X310201Y270307D01*

-X310446Y270517D01*

-X310656Y270762D01*

-X310824Y271037D01*

-X310948Y271336D01*

-X311023Y271649D01*

-X311042Y271971D01*

-X311023Y272293D01*

-X310948Y272606D01*

-X310824Y272905D01*

-X310656Y273180D01*

-X310446Y273425D01*

-X310201Y273635D01*

-X309926Y273803D01*

-X309627Y273927D01*

-X309444Y273971D01*

-X309548Y274141D01*

-X309672Y274440D01*

-X309747Y274753D01*

-X309766Y275075D01*

-X309747Y275397D01*

-X309672Y275710D01*

-X309548Y276009D01*

-X309380Y276284D01*

-X309170Y276529D01*

-X308925Y276739D01*

-X308869Y276773D01*

-Y327619D01*

-X310380Y326693D01*

-X312110Y325977D01*

-X312154Y325966D01*

-Y302212D01*

-X311835Y302187D01*

-X311522Y302112D01*

-X311223Y301988D01*

-X310948Y301820D01*

-X310703Y301610D01*

-X310493Y301365D01*

-X310325Y301090D01*

-X310201Y300791D01*

-X310126Y300478D01*

-X310101Y300156D01*

-X310126Y299834D01*

-X310201Y299521D01*

-X310325Y299222D01*

-X310493Y298947D01*

-X310703Y298702D01*

-X310948Y298492D01*

-X311223Y298324D01*

-X311522Y298200D01*

-X311835Y298125D01*

-X312154Y298100D01*

-Y297092D01*

-X312122Y297094D01*

-X311800Y297069D01*

-X311487Y296994D01*

-X311188Y296870D01*

-X310913Y296702D01*

-X310668Y296492D01*

-X310458Y296247D01*

-X310290Y295972D01*

-X310166Y295673D01*

-X310091Y295360D01*

-X310066Y295038D01*

-X310091Y294716D01*

-X310166Y294403D01*

-X310290Y294104D01*

-X310458Y293829D01*

-X310668Y293584D01*

-X310913Y293374D01*

-X311188Y293206D01*

-X311487Y293082D01*

-X311800Y293007D01*

-X312122Y292982D01*

-X312154Y292984D01*

-Y253750D01*

-X310691D01*

-X310573Y253743D01*

-X310459Y253715D01*

-X310349Y253670D01*

-X310249Y253609D01*

-X310159Y253532D01*

-X310082Y253442D01*

-X310021Y253342D01*

-X309976Y253232D01*

-X309948Y253118D01*

-X309939Y253000D01*

-X309948Y252882D01*

-X309976Y252768D01*

-X310021Y252658D01*

-X310082Y252558D01*

-X310159Y252468D01*

-X310249Y252391D01*

-X310349Y252330D01*

-X310459Y252285D01*

-X310573Y252257D01*

-X310691Y252250D01*

-X312154D01*

-Y245750D01*

-X310691D01*

-X310573Y245743D01*

-X310459Y245715D01*

-X310349Y245670D01*

-X310249Y245609D01*

-X310159Y245532D01*

-X310082Y245442D01*

-X310021Y245342D01*

-X309976Y245232D01*

-X309948Y245118D01*

-X309939Y245000D01*

-X309948Y244882D01*

-X309976Y244768D01*

-X310021Y244658D01*

-X310082Y244558D01*

-X310159Y244468D01*

-X310249Y244391D01*

-X310349Y244330D01*

-X310459Y244285D01*

-X310573Y244257D01*

-X310691Y244250D01*

-X312154D01*

-Y187110D01*

-X311956Y186787D01*

-X311697Y186162D01*

-X311539Y185504D01*

-X311486Y184829D01*

-X311539Y184154D01*

-X311697Y183496D01*

-X311956Y182871D01*

-X312154Y182548D01*

-Y177110D01*

-X311956Y176787D01*

-X311697Y176162D01*

-X311539Y175504D01*

-X311486Y174829D01*

-X311539Y174154D01*

-X311697Y173496D01*

-X311956Y172871D01*

-X312154Y172548D01*

-Y135000D01*

-G37*

-G36*

-X308869Y276773D02*X308650Y276907D01*

-X308351Y277031D01*

-X308038Y277106D01*

-X307716Y277131D01*

-X307394Y277106D01*

-X307081Y277031D01*

-X306782Y276907D01*

-X306507Y276739D01*

-X306262Y276529D01*

-X306052Y276284D01*

-X305884Y276009D01*

-X305792Y275788D01*

-Y330883D01*

-X306142Y330313D01*

-X307358Y328888D01*

-X308783Y327672D01*

-X308869Y327619D01*

-Y276773D01*

-G37*

-G36*

-Y187856D02*X308849Y187879D01*

-X308334Y188319D01*

-X307757Y188672D01*

-X307132Y188931D01*

-X306474Y189089D01*

-X305799Y189142D01*

-X305792Y189142D01*

-Y202655D01*

-X305838Y202666D01*

-X306100Y202774D01*

-X306341Y202922D01*

-X306557Y203106D01*

-X306741Y203322D01*

-X306889Y203563D01*

-X306997Y203825D01*

-X307063Y204101D01*

-X307080Y204383D01*

-X307063Y204665D01*

-X306997Y204941D01*

-X306889Y205203D01*

-X306741Y205444D01*

-X306557Y205660D01*

-X306341Y205844D01*

-X306100Y205992D01*

-X305838Y206100D01*

-X305792Y206111D01*

-Y206148D01*

-X305861Y206206D01*

-X306045Y206422D01*

-X306193Y206663D01*

-X306301Y206925D01*

-X306367Y207201D01*

-X306384Y207483D01*

-X306367Y207765D01*

-X306301Y208041D01*

-X306193Y208303D01*

-X306045Y208544D01*

-X305861Y208760D01*

-X305792Y208818D01*

-Y209144D01*

-X305983Y209306D01*

-X306167Y209522D01*

-X306315Y209763D01*

-X306423Y210025D01*

-X306489Y210301D01*

-X306506Y210583D01*

-X306489Y210865D01*

-X306423Y211141D01*

-X306315Y211403D01*

-X306167Y211644D01*

-X305983Y211860D01*

-X305792Y212022D01*

-Y274362D01*

-X305884Y274141D01*

-X306052Y273866D01*

-X306262Y273621D01*

-X306507Y273411D01*

-X306782Y273243D01*

-X307081Y273119D01*

-X307264Y273075D01*

-X307160Y272905D01*

-X307036Y272606D01*

-X306961Y272293D01*

-X306936Y271971D01*

-X306961Y271649D01*

-X307036Y271336D01*

-X307160Y271037D01*

-X307328Y270762D01*

-X307538Y270517D01*

-X307783Y270307D01*

-X308058Y270139D01*

-X308357Y270015D01*

-X308670Y269940D01*

-X308869Y269924D01*

-Y268578D01*

-X308550Y268553D01*

-X308237Y268478D01*

-X307938Y268354D01*

-X307663Y268186D01*

-X307418Y267976D01*

-X307208Y267731D01*

-X307040Y267456D01*

-X306916Y267157D01*

-X306841Y266844D01*

-X306816Y266522D01*

-X306841Y266200D01*

-X306916Y265887D01*

-X307040Y265588D01*

-X307208Y265313D01*

-X307418Y265068D01*

-X307663Y264858D01*

-X307938Y264690D01*

-X308237Y264566D01*

-X308550Y264491D01*

-X308869Y264466D01*

-Y251367D01*

-X308783Y251420D01*

-X308673Y251465D01*

-X308559Y251493D01*

-X308441Y251502D01*

-X308323Y251493D01*

-X308209Y251465D01*

-X308099Y251420D01*

-X307999Y251359D01*

-X307909Y251282D01*

-X307832Y251192D01*

-X307771Y251092D01*

-X307726Y250982D01*

-X307698Y250868D01*

-X307691Y250750D01*

-Y247250D01*

-X307698Y247132D01*

-X307726Y247018D01*

-X307771Y246908D01*

-X307832Y246808D01*

-X307909Y246718D01*

-X307999Y246641D01*

-X308099Y246580D01*

-X308209Y246535D01*

-X308323Y246507D01*

-X308441Y246498D01*

-X308559Y246507D01*

-X308673Y246535D01*

-X308783Y246580D01*

-X308869Y246633D01*

-Y187856D01*

-G37*

-G36*

-Y177856D02*X308849Y177879D01*

-X308334Y178319D01*

-X307757Y178672D01*

-X307132Y178931D01*

-X306474Y179089D01*

-X305799Y179142D01*

-X305792Y179142D01*

-Y180516D01*

-X305799Y180516D01*

-X306474Y180569D01*

-X307132Y180727D01*

-X307757Y180986D01*

-X308334Y181339D01*

-X308849Y181779D01*

-X308869Y181802D01*

-Y177856D01*

-G37*

-G36*

-Y138161D02*X308621Y138059D01*

-X308380Y137911D01*

-X308164Y137727D01*

-X307980Y137511D01*

-X307832Y137270D01*

-X307724Y137008D01*

-X307658Y136732D01*

-X307635Y136450D01*

-X307658Y136168D01*

-X307724Y135892D01*

-X307832Y135630D01*

-X307980Y135389D01*

-X308164Y135173D01*

-X308380Y134989D01*

-X308621Y134841D01*

-X308869Y134739D01*

-Y97000D01*

-X305792D01*

-Y105702D01*

-X305978Y105717D01*

-X306254Y105783D01*

-X306516Y105891D01*

-X306757Y106039D01*

-X306973Y106223D01*

-X307157Y106439D01*

-X307305Y106680D01*

-X307413Y106942D01*

-X307479Y107218D01*

-X307496Y107500D01*

-X307479Y107782D01*

-X307413Y108058D01*

-X307305Y108320D01*

-X307157Y108561D01*

-X306973Y108777D01*

-X306757Y108961D01*

-X306516Y109109D01*

-X306254Y109217D01*

-X305978Y109283D01*

-X305792Y109298D01*

-Y170516D01*

-X305799Y170516D01*

-X306474Y170569D01*

-X307132Y170727D01*

-X307757Y170986D01*

-X308334Y171339D01*

-X308849Y171779D01*

-X308869Y171802D01*

-Y143279D01*

-X308621Y143177D01*

-X308380Y143029D01*

-X308164Y142845D01*

-X307980Y142629D01*

-X307832Y142388D01*

-X307724Y142126D01*

-X307658Y141850D01*

-X307635Y141568D01*

-X307658Y141286D01*

-X307724Y141010D01*

-X307832Y140748D01*

-X307980Y140507D01*

-X308164Y140291D01*

-X308380Y140107D01*

-X308621Y139959D01*

-X308869Y139857D01*

-Y138161D01*

-G37*

-G36*

-X305792Y206111D02*X305759Y206119D01*

-X305792Y206148D01*

-Y206111D01*

-G37*

-G36*

-Y208818D02*X305645Y208944D01*

-X305561Y208996D01*

-X305767Y209122D01*

-X305792Y209144D01*

-Y208818D01*

-G37*

-G36*

-X303362Y181279D02*X303841Y180986D01*

-X304466Y180727D01*

-X305124Y180569D01*

-X305792Y180516D01*

-Y179142D01*

-X305124Y179089D01*

-X304466Y178931D01*

-X303841Y178672D01*

-X303362Y178379D01*

-Y181279D01*

-G37*

-G36*

-Y206160D02*X303523Y206022D01*

-X303764Y205874D01*

-X304026Y205766D01*

-X304105Y205747D01*

-X304003Y205660D01*

-X303819Y205444D01*

-X303671Y205203D01*

-X303563Y204941D01*

-X303497Y204665D01*

-X303474Y204383D01*

-X303497Y204101D01*

-X303563Y203825D01*

-X303671Y203563D01*

-X303819Y203322D01*

-X304003Y203106D01*

-X304219Y202922D01*

-X304460Y202774D01*

-X304722Y202666D01*

-X304998Y202600D01*

-X305280Y202577D01*

-X305562Y202600D01*

-X305792Y202655D01*

-Y189142D01*

-X305124Y189089D01*

-X304466Y188931D01*

-X303841Y188672D01*

-X303362Y188379D01*

-Y206160D01*

-G37*

-G36*

-Y209385D02*X303429Y209306D01*

-X303645Y209122D01*

-X303729Y209070D01*

-X303523Y208944D01*

-X303362Y208806D01*

-Y209385D01*

-G37*

-G36*

-Y338000D02*X303576Y338051D01*

-X303875Y338175D01*

-X303932Y338210D01*

-X303862Y337329D01*

-X304009Y335462D01*

-X304447Y333640D01*

-X305163Y331910D01*

-X305792Y330883D01*

-Y275788D01*

-X305760Y275710D01*

-X305685Y275397D01*

-X305660Y275075D01*

-X305685Y274753D01*

-X305760Y274440D01*

-X305792Y274362D01*

-Y212022D01*

-X305767Y212044D01*

-X305526Y212192D01*

-X305264Y212300D01*

-X304988Y212366D01*

-X304706Y212389D01*

-X304424Y212366D01*

-X304148Y212300D01*

-X303886Y212192D01*

-X303645Y212044D01*

-X303429Y211860D01*

-X303362Y211781D01*

-Y327944D01*

-X303365Y327944D01*

-X303687Y327969D01*

-X304000Y328044D01*

-X304299Y328168D01*

-X304574Y328336D01*

-X304819Y328546D01*

-X305029Y328791D01*

-X305197Y329066D01*

-X305321Y329365D01*

-X305396Y329678D01*

-X305415Y330000D01*

-X305396Y330322D01*

-X305321Y330635D01*

-X305197Y330934D01*

-X305029Y331209D01*

-X304819Y331454D01*

-X304574Y331664D01*

-X304299Y331832D01*

-X304000Y331956D01*

-X303687Y332031D01*

-X303365Y332056D01*

-X303362Y332056D01*

-Y338000D01*

-G37*

-G36*

-Y361279D02*X303841Y360986D01*

-X304466Y360727D01*

-X305124Y360569D01*

-X305792Y360516D01*

-Y343775D01*

-X305163Y342748D01*

-X304553Y341276D01*

-X304395Y341461D01*

-X304150Y341671D01*

-X303875Y341839D01*

-X303576Y341963D01*

-X303362Y342014D01*

-Y361279D01*

-G37*

-G36*

-Y371279D02*X303841Y370986D01*

-X304466Y370727D01*

-X305124Y370569D01*

-X305792Y370516D01*

-Y369142D01*

-X305124Y369089D01*

-X304466Y368931D01*

-X303841Y368672D01*

-X303362Y368379D01*

-Y371279D01*

-G37*

-G36*

-Y397000D02*X305792D01*

-Y379142D01*

-X305124Y379089D01*

-X304466Y378931D01*

-X303841Y378672D01*

-X303362Y378379D01*

-Y397000D01*

-G37*

-G36*

-X305792Y97000D02*X303362D01*

-Y171279D01*

-X303841Y170986D01*

-X304466Y170727D01*

-X305124Y170569D01*

-X305792Y170516D01*

-Y109298D01*

-X305696Y109306D01*

-X305414Y109283D01*

-X305138Y109217D01*

-X304876Y109109D01*

-X304635Y108961D01*

-X304419Y108777D01*

-X304235Y108561D01*

-X304087Y108320D01*

-X303979Y108058D01*

-X303913Y107782D01*

-X303890Y107500D01*

-X303913Y107218D01*

-X303979Y106942D01*

-X304087Y106680D01*

-X304235Y106439D01*

-X304419Y106223D01*

-X304635Y106039D01*

-X304876Y105891D01*

-X305138Y105783D01*

-X305414Y105717D01*

-X305696Y105694D01*

-X305792Y105702D01*

-Y97000D01*

-G37*

-G36*

-X303362D02*X295792D01*

-Y170516D01*

-X295799Y170516D01*

-X296474Y170569D01*

-X297132Y170727D01*

-X297757Y170986D01*

-X298334Y171339D01*

-X298849Y171779D01*

-X299289Y172294D01*

-X299642Y172871D01*

-X299901Y173496D01*

-X300059Y174154D01*

-X300099Y174829D01*

-X300059Y175504D01*

-X299901Y176162D01*

-X299642Y176787D01*

-X299289Y177364D01*

-X298849Y177879D01*

-X298334Y178319D01*

-X297757Y178672D01*

-X297132Y178931D01*

-X296474Y179089D01*

-X295799Y179142D01*

-X295792Y179142D01*

-Y180516D01*

-X295799Y180516D01*

-X296474Y180569D01*

-X297132Y180727D01*

-X297757Y180986D01*

-X298334Y181339D01*

-X298849Y181779D01*

-X299289Y182294D01*

-X299642Y182871D01*

-X299901Y183496D01*

-X300059Y184154D01*

-X300099Y184829D01*

-X300059Y185504D01*

-X299901Y186162D01*

-X299642Y186787D01*

-X299289Y187364D01*

-X298849Y187879D01*

-X298334Y188319D01*

-X297757Y188672D01*

-X297132Y188931D01*

-X296474Y189089D01*

-X295799Y189142D01*

-X295792Y189142D01*

-Y241583D01*

-X295937Y241572D01*

-X296259Y241597D01*

-X296572Y241672D01*

-X296871Y241796D01*

-X297146Y241964D01*

-X297391Y242174D01*

-X297601Y242419D01*

-X297769Y242694D01*

-X297893Y242993D01*

-X297968Y243306D01*

-X297987Y243628D01*

-X297968Y243950D01*

-X297893Y244263D01*

-X297769Y244562D01*

-X297601Y244837D01*

-X297391Y245082D01*

-X297146Y245292D01*

-X296871Y245460D01*

-X296572Y245584D01*

-X296259Y245659D01*

-X295937Y245684D01*

-X295792Y245673D01*

-Y254395D01*

-X295793Y254395D01*

-X296092Y254271D01*

-X296405Y254196D01*

-X296727Y254171D01*

-X297049Y254196D01*

-X297362Y254271D01*

-X297661Y254395D01*

-X297936Y254563D01*

-X298181Y254773D01*

-X298391Y255018D01*

-X298559Y255293D01*

-X298683Y255592D01*

-X298758Y255905D01*

-X298777Y256227D01*

-X298758Y256549D01*

-X298683Y256862D01*

-X298559Y257161D01*

-X298391Y257436D01*

-X298181Y257681D01*

-X297936Y257891D01*

-X297661Y258059D01*

-X297362Y258183D01*

-X297049Y258258D01*

-X296727Y258283D01*

-X296405Y258258D01*

-X296092Y258183D01*

-X295793Y258059D01*

-X295792Y258059D01*

-Y281470D01*

-X295858Y281628D01*

-X295933Y281941D01*

-X295952Y282263D01*

-X295933Y282585D01*

-X295858Y282898D01*

-X295792Y283056D01*

-Y303163D01*

-X295845Y303131D01*

-X296144Y303007D01*

-X296457Y302932D01*

-X296779Y302907D01*

-X297101Y302932D01*

-X297414Y303007D01*

-X297713Y303131D01*

-X297988Y303299D01*

-X298233Y303509D01*

-X298443Y303754D01*

-X298611Y304029D01*

-X298735Y304328D01*

-X298810Y304641D01*

-X298829Y304963D01*

-X298810Y305285D01*

-X298735Y305598D01*

-X298611Y305897D01*

-X298443Y306172D01*

-X298233Y306417D01*

-X297988Y306627D01*

-X297713Y306795D01*

-X297414Y306919D01*

-X297101Y306994D01*

-X296779Y307019D01*

-X296457Y306994D01*

-X296144Y306919D01*

-X295845Y306795D01*

-X295792Y306763D01*

-Y360516D01*

-X295799Y360516D01*

-X296474Y360569D01*

-X297132Y360727D01*

-X297757Y360986D01*

-X298334Y361339D01*

-X298849Y361779D01*

-X299289Y362294D01*

-X299642Y362871D01*

-X299901Y363496D01*

-X300059Y364154D01*

-X300099Y364829D01*

-X300059Y365504D01*

-X299901Y366162D01*

-X299642Y366787D01*

-X299289Y367364D01*

-X298849Y367879D01*

-X298334Y368319D01*

-X297757Y368672D01*

-X297132Y368931D01*

-X296474Y369089D01*

-X295799Y369142D01*

-X295792Y369142D01*

-Y370516D01*

-X295799Y370516D01*

-X296474Y370569D01*

-X297132Y370727D01*

-X297757Y370986D01*

-X298334Y371339D01*

-X298849Y371779D01*

-X299289Y372294D01*

-X299642Y372871D01*

-X299901Y373496D01*

-X300059Y374154D01*

-X300099Y374829D01*

-X300059Y375504D01*

-X299901Y376162D01*

-X299642Y376787D01*

-X299289Y377364D01*

-X298849Y377879D01*

-X298334Y378319D01*

-X297757Y378672D01*

-X297132Y378931D01*

-X296474Y379089D01*

-X295799Y379142D01*

-X295792Y379142D01*

-Y397000D01*

-X303362D01*

-Y378379D01*

-X303264Y378319D01*

-X302749Y377879D01*

-X302309Y377364D01*

-X301956Y376787D01*

-X301697Y376162D01*

-X301539Y375504D01*

-X301486Y374829D01*

-X301539Y374154D01*

-X301697Y373496D01*

-X301956Y372871D01*

-X302309Y372294D01*

-X302749Y371779D01*

-X303264Y371339D01*

-X303362Y371279D01*

-Y368379D01*

-X303264Y368319D01*

-X302749Y367879D01*

-X302309Y367364D01*

-X301956Y366787D01*

-X301697Y366162D01*

-X301539Y365504D01*

-X301486Y364829D01*

-X301539Y364154D01*

-X301697Y363496D01*

-X301956Y362871D01*

-X302309Y362294D01*

-X302749Y361779D01*

-X303264Y361339D01*

-X303362Y361279D01*

-Y342014D01*

-X303263Y342038D01*

-X302941Y342063D01*

-X302619Y342038D01*

-X302306Y341963D01*

-X302007Y341839D01*

-X301732Y341671D01*

-X301487Y341461D01*

-X301277Y341216D01*

-X301109Y340941D01*

-X300985Y340642D01*

-X300910Y340329D01*

-X300885Y340007D01*

-X300910Y339685D01*

-X300985Y339372D01*

-X301109Y339073D01*

-X301277Y338798D01*

-X301487Y338553D01*

-X301732Y338343D01*

-X302007Y338175D01*

-X302306Y338051D01*

-X302619Y337976D01*

-X302941Y337951D01*

-X303263Y337976D01*

-X303362Y338000D01*

-Y332056D01*

-X303043Y332031D01*

-X302730Y331956D01*

-X302431Y331832D01*

-X302156Y331664D01*

-X301911Y331454D01*

-X301701Y331209D01*

-X301533Y330934D01*

-X301409Y330635D01*

-X301334Y330322D01*

-X301309Y330000D01*

-X301334Y329678D01*

-X301409Y329365D01*

-X301533Y329066D01*

-X301701Y328791D01*

-X301911Y328546D01*

-X302156Y328336D01*

-X302431Y328168D01*

-X302730Y328044D01*

-X303043Y327969D01*

-X303362Y327944D01*

-Y211781D01*

-X303245Y211644D01*

-X303097Y211403D01*

-X302989Y211141D01*

-X302923Y210865D01*

-X302900Y210583D01*

-X302923Y210301D01*

-X302989Y210025D01*

-X303097Y209763D01*

-X303245Y209522D01*

-X303362Y209385D01*

-Y208806D01*

-X303307Y208760D01*

-X303123Y208544D01*

-X302975Y208303D01*

-X302867Y208041D01*

-X302801Y207765D01*

-X302778Y207483D01*

-X302801Y207201D01*

-X302867Y206925D01*

-X302975Y206663D01*

-X303123Y206422D01*

-X303307Y206206D01*

-X303362Y206160D01*

-Y188379D01*

-X303264Y188319D01*

-X302749Y187879D01*

-X302309Y187364D01*

-X301956Y186787D01*

-X301697Y186162D01*

-X301539Y185504D01*

-X301486Y184829D01*

-X301539Y184154D01*

-X301697Y183496D01*

-X301956Y182871D01*

-X302309Y182294D01*

-X302749Y181779D01*

-X303264Y181339D01*

-X303362Y181279D01*

-Y178379D01*

-X303264Y178319D01*

-X302749Y177879D01*

-X302309Y177364D01*

-X301956Y176787D01*

-X301697Y176162D01*

-X301539Y175504D01*

-X301486Y174829D01*

-X301539Y174154D01*

-X301697Y173496D01*

-X301956Y172871D01*

-X302309Y172294D01*

-X302749Y171779D01*

-X303264Y171339D01*

-X303362Y171279D01*

-Y97000D01*

-G37*

-G36*

-X295792D02*X287914D01*

-Y171082D01*

-X288334Y171339D01*

-X288849Y171779D01*

-X289289Y172294D01*

-X289642Y172871D01*

-X289901Y173496D01*

-X290059Y174154D01*

-X290099Y174829D01*

-X290059Y175504D01*

-X289901Y176162D01*

-X289642Y176787D01*

-X289289Y177364D01*

-X288849Y177879D01*

-X288334Y178319D01*

-X287914Y178576D01*

-Y181082D01*

-X288334Y181339D01*

-X288849Y181779D01*

-X289289Y182294D01*

-X289642Y182871D01*

-X289901Y183496D01*

-X290059Y184154D01*

-X290099Y184829D01*

-X290059Y185504D01*

-X289901Y186162D01*

-X289642Y186787D01*

-X289289Y187364D01*

-X288849Y187879D01*

-X288334Y188319D01*

-X287914Y188576D01*

-Y305773D01*

-X287917Y305773D01*

-X288239Y305798D01*

-X288552Y305873D01*

-X288851Y305997D01*

-X289126Y306165D01*

-X289371Y306375D01*

-X289581Y306620D01*

-X289749Y306895D01*

-X289873Y307194D01*

-X289948Y307507D01*

-X289967Y307829D01*

-X289948Y308151D01*

-X289873Y308464D01*

-X289749Y308763D01*

-X289581Y309038D01*

-X289371Y309283D01*

-X289126Y309493D01*

-X288851Y309661D01*

-X288552Y309785D01*

-X288239Y309860D01*

-X287917Y309885D01*

-X287914Y309885D01*

-Y361082D01*

-X288334Y361339D01*

-X288849Y361779D01*

-X289289Y362294D01*

-X289642Y362871D01*

-X289901Y363496D01*

-X290059Y364154D01*

-X290099Y364829D01*

-X290059Y365504D01*

-X289901Y366162D01*

-X289642Y366787D01*

-X289289Y367364D01*

-X288849Y367879D01*

-X288334Y368319D01*

-X287914Y368576D01*

-Y371082D01*

-X288334Y371339D01*

-X288849Y371779D01*

-X289289Y372294D01*

-X289642Y372871D01*

-X289901Y373496D01*

-X290059Y374154D01*

-X290099Y374829D01*

-X290059Y375504D01*

-X289901Y376162D01*

-X289642Y376787D01*

-X289289Y377364D01*

-X288849Y377879D01*

-X288334Y378319D01*

-X287914Y378576D01*

-Y397000D01*

-X295792D01*

-Y379142D01*

-X295124Y379089D01*

-X294466Y378931D01*

-X293841Y378672D01*

-X293264Y378319D01*

-X292749Y377879D01*

-X292309Y377364D01*

-X291956Y376787D01*

-X291697Y376162D01*

-X291539Y375504D01*

-X291486Y374829D01*

-X291539Y374154D01*

-X291697Y373496D01*

-X291956Y372871D01*

-X292309Y372294D01*

-X292749Y371779D01*

-X293264Y371339D01*

-X293841Y370986D01*

-X294466Y370727D01*

-X295124Y370569D01*

-X295792Y370516D01*

-Y369142D01*

-X295124Y369089D01*

-X294466Y368931D01*

-X293841Y368672D01*

-X293264Y368319D01*

-X292749Y367879D01*

-X292309Y367364D01*

-X291956Y366787D01*

-X291697Y366162D01*

-X291539Y365504D01*

-X291486Y364829D01*

-X291539Y364154D01*

-X291697Y363496D01*

-X291956Y362871D01*

-X292309Y362294D01*

-X292749Y361779D01*

-X293264Y361339D01*

-X293841Y360986D01*

-X294466Y360727D01*

-X295124Y360569D01*

-X295792Y360516D01*

-Y306763D01*

-X295570Y306627D01*

-X295325Y306417D01*

-X295115Y306172D01*

-X294947Y305897D01*

-X294823Y305598D01*

-X294748Y305285D01*

-X294723Y304963D01*

-X294748Y304641D01*

-X294823Y304328D01*

-X294947Y304029D01*

-X295115Y303754D01*

-X295325Y303509D01*

-X295570Y303299D01*

-X295792Y303163D01*

-Y283056D01*

-X295734Y283197D01*

-X295566Y283472D01*

-X295356Y283717D01*

-X295111Y283927D01*

-X294836Y284095D01*

-X294537Y284219D01*

-X294224Y284294D01*

-X293902Y284319D01*

-X293580Y284294D01*

-X293267Y284219D01*

-X292968Y284095D01*

-X292693Y283927D01*

-X292448Y283717D01*

-X292238Y283472D01*

-X292070Y283197D01*

-X291946Y282898D01*

-X291871Y282585D01*

-X291846Y282263D01*

-X291871Y281941D01*

-X291946Y281628D01*

-X292070Y281329D01*

-X292238Y281054D01*

-X292448Y280809D01*

-X292693Y280599D01*

-X292968Y280431D01*

-X293267Y280307D01*

-X293580Y280232D01*

-X293902Y280207D01*

-X294224Y280232D01*

-X294537Y280307D01*

-X294836Y280431D01*

-X295111Y280599D01*

-X295356Y280809D01*

-X295566Y281054D01*

-X295734Y281329D01*

-X295792Y281470D01*

-Y258059D01*

-X295518Y257891D01*

-X295273Y257681D01*

-X295063Y257436D01*

-X294895Y257161D01*

-X294771Y256862D01*

-X294696Y256549D01*

-X294671Y256227D01*

-X294696Y255905D01*

-X294771Y255592D01*

-X294895Y255293D01*

-X295063Y255018D01*

-X295273Y254773D01*

-X295518Y254563D01*

-X295792Y254395D01*

-Y245673D01*

-X295615Y245659D01*

-X295302Y245584D01*

-X295003Y245460D01*

-X294728Y245292D01*

-X294483Y245082D01*

-X294273Y244837D01*

-X294105Y244562D01*

-X293981Y244263D01*

-X293906Y243950D01*

-X293881Y243628D01*

-X293906Y243306D01*

-X293981Y242993D01*

-X294105Y242694D01*

-X294273Y242419D01*

-X294483Y242174D01*

-X294728Y241964D01*

-X295003Y241796D01*

-X295302Y241672D01*

-X295615Y241597D01*

-X295792Y241583D01*

-Y189142D01*

-X295124Y189089D01*

-X294466Y188931D01*

-X293841Y188672D01*

-X293264Y188319D01*

-X292749Y187879D01*

-X292309Y187364D01*

-X291956Y186787D01*

-X291697Y186162D01*

-X291539Y185504D01*

-X291486Y184829D01*

-X291539Y184154D01*

-X291697Y183496D01*

-X291956Y182871D01*

-X292309Y182294D01*

-X292749Y181779D01*

-X293264Y181339D01*

-X293841Y180986D01*

-X294466Y180727D01*

-X295124Y180569D01*

-X295792Y180516D01*

-Y179142D01*

-X295124Y179089D01*

-X294466Y178931D01*

-X293841Y178672D01*

-X293264Y178319D01*

-X292749Y177879D01*

-X292309Y177364D01*

-X291956Y176787D01*

-X291697Y176162D01*

-X291539Y175504D01*

-X291486Y174829D01*

-X291539Y174154D01*

-X291697Y173496D01*

-X291956Y172871D01*

-X292309Y172294D01*

-X292749Y171779D01*

-X293264Y171339D01*

-X293841Y170986D01*

-X294466Y170727D01*

-X295124Y170569D01*

-X295792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X287914Y378576D02*X287757Y378672D01*

-X287132Y378931D01*

-X286474Y379089D01*

-X285799Y379142D01*

-X285792Y379142D01*

-Y397000D01*

-X287914D01*

-Y378576D01*

-G37*

-G36*

-Y368576D02*X287757Y368672D01*

-X287132Y368931D01*

-X286474Y369089D01*

-X285799Y369142D01*

-X285792Y369142D01*

-Y370516D01*

-X285799Y370516D01*

-X286474Y370569D01*

-X287132Y370727D01*

-X287757Y370986D01*

-X287914Y371082D01*

-Y368576D01*

-G37*

-G36*

-Y188576D02*X287757Y188672D01*

-X287132Y188931D01*

-X286474Y189089D01*

-X285799Y189142D01*

-X285792Y189142D01*

-Y322979D01*

-X286065Y323044D01*

-X286364Y323168D01*

-X286639Y323336D01*

-X286884Y323546D01*

-X287094Y323791D01*

-X287262Y324066D01*

-X287386Y324365D01*

-X287461Y324678D01*

-X287480Y325000D01*

-X287461Y325322D01*

-X287386Y325635D01*

-X287262Y325934D01*

-X287094Y326209D01*

-X286884Y326454D01*

-X286639Y326664D01*

-X286364Y326832D01*

-X286065Y326956D01*

-X285792Y327021D01*

-Y360516D01*

-X285799Y360516D01*

-X286474Y360569D01*

-X287132Y360727D01*

-X287757Y360986D01*

-X287914Y361082D01*

-Y309885D01*

-X287595Y309860D01*

-X287282Y309785D01*

-X286983Y309661D01*

-X286708Y309493D01*

-X286463Y309283D01*

-X286253Y309038D01*

-X286085Y308763D01*

-X285961Y308464D01*

-X285886Y308151D01*

-X285861Y307829D01*

-X285886Y307507D01*

-X285961Y307194D01*

-X286085Y306895D01*

-X286253Y306620D01*

-X286463Y306375D01*

-X286708Y306165D01*

-X286983Y305997D01*

-X287282Y305873D01*

-X287595Y305798D01*

-X287914Y305773D01*

-Y188576D01*

-G37*

-G36*

-Y178576D02*X287757Y178672D01*

-X287132Y178931D01*

-X286474Y179089D01*

-X285799Y179142D01*

-X285792Y179142D01*

-Y180516D01*

-X285799Y180516D01*

-X286474Y180569D01*

-X287132Y180727D01*

-X287757Y180986D01*

-X287914Y181082D01*

-Y178576D01*

-G37*

-G36*

-Y97000D02*X285792D01*

-Y170516D01*

-X285799Y170516D01*

-X286474Y170569D01*

-X287132Y170727D01*

-X287757Y170986D01*

-X287914Y171082D01*

-Y97000D01*

-G37*

-G36*

-X285792D02*X278222D01*

-Y171271D01*

-X278334Y171339D01*

-X278849Y171779D01*

-X279289Y172294D01*

-X279642Y172871D01*

-X279901Y173496D01*

-X280059Y174154D01*

-X280099Y174829D01*

-X280059Y175504D01*

-X279901Y176162D01*

-X279642Y176787D01*

-X279289Y177364D01*

-X278849Y177879D01*

-X278334Y178319D01*

-X278222Y178387D01*

-Y181271D01*

-X278334Y181339D01*

-X278849Y181779D01*

-X279289Y182294D01*

-X279642Y182871D01*

-X279901Y183496D01*

-X280059Y184154D01*

-X280099Y184829D01*

-X280059Y185504D01*

-X279901Y186162D01*

-X279642Y186787D01*

-X279289Y187364D01*

-X278849Y187879D01*

-X278334Y188319D01*

-X278222Y188387D01*

-Y277546D01*

-X278225Y277546D01*

-X278547Y277571D01*

-X278860Y277646D01*

-X279159Y277770D01*

-X279434Y277938D01*

-X279679Y278148D01*

-X279889Y278393D01*

-X280057Y278668D01*

-X280181Y278967D01*

-X280256Y279280D01*

-X280275Y279602D01*

-X280256Y279924D01*

-X280181Y280237D01*

-X280057Y280536D01*

-X279889Y280811D01*

-X279679Y281056D01*

-X279434Y281266D01*

-X279159Y281434D01*

-X278860Y281558D01*

-X278547Y281633D01*

-X278225Y281658D01*

-X278222Y281658D01*

-Y283674D01*

-X278380Y283539D01*

-X278621Y283391D01*

-X278883Y283283D01*

-X279159Y283217D01*

-X279441Y283194D01*

-X279723Y283217D01*

-X279999Y283283D01*

-X280261Y283391D01*

-X280502Y283539D01*

-X280718Y283723D01*

-X280902Y283939D01*

-X281050Y284180D01*

-X281158Y284442D01*

-X281224Y284718D01*

-X281241Y285000D01*

-X281224Y285282D01*

-X281158Y285558D01*

-X281050Y285820D01*

-X280902Y286061D01*

-X280718Y286277D01*

-X280502Y286461D01*

-X280261Y286609D01*

-X279999Y286717D01*

-X279723Y286783D01*

-X279441Y286806D01*

-X279159Y286783D01*

-X278883Y286717D01*

-X278621Y286609D01*

-X278380Y286461D01*

-X278222Y286326D01*

-Y296557D01*

-X278529Y296581D01*

-X278842Y296656D01*

-X279141Y296780D01*

-X279416Y296948D01*

-X279661Y297158D01*

-X279871Y297403D01*

-X280039Y297678D01*

-X280163Y297977D01*

-X280238Y298290D01*

-X280257Y298612D01*

-X280238Y298934D01*

-X280163Y299247D01*

-X280039Y299546D01*

-X279871Y299821D01*

-X279661Y300066D01*

-X279416Y300276D01*

-X279141Y300444D01*

-X278842Y300568D01*

-X278529Y300643D01*

-X278222Y300667D01*

-Y306457D01*

-X278383Y306555D01*

-X278628Y306765D01*

-X278838Y307010D01*

-X279006Y307285D01*

-X279130Y307584D01*

-X279205Y307897D01*

-X279224Y308219D01*

-X279205Y308541D01*

-X279130Y308854D01*

-X279006Y309153D01*

-X278838Y309428D01*

-X278628Y309673D01*

-X278383Y309883D01*

-X278222Y309981D01*

-Y345601D01*

-X278383Y345668D01*

-X278658Y345836D01*

-X278903Y346046D01*

-X279113Y346291D01*

-X279281Y346566D01*

-X279405Y346865D01*

-X279480Y347178D01*

-X279499Y347500D01*

-X279480Y347822D01*

-X279405Y348135D01*

-X279281Y348434D01*

-X279113Y348709D01*

-X278903Y348954D01*

-X278658Y349164D01*

-X278383Y349332D01*

-X278222Y349399D01*

-Y361271D01*

-X278334Y361339D01*

-X278849Y361779D01*

-X279289Y362294D01*

-X279642Y362871D01*

-X279901Y363496D01*

-X280059Y364154D01*

-X280099Y364829D01*

-X280059Y365504D01*

-X279901Y366162D01*

-X279642Y366787D01*

-X279289Y367364D01*

-X278849Y367879D01*

-X278334Y368319D01*

-X278222Y368387D01*

-Y371271D01*

-X278334Y371339D01*

-X278849Y371779D01*

-X279289Y372294D01*

-X279642Y372871D01*

-X279901Y373496D01*

-X280059Y374154D01*

-X280099Y374829D01*

-X280059Y375504D01*

-X279901Y376162D01*

-X279642Y376787D01*

-X279289Y377364D01*

-X278849Y377879D01*

-X278334Y378319D01*

-X278222Y378387D01*

-Y397000D01*

-X285792D01*

-Y379142D01*

-X285124Y379089D01*

-X284466Y378931D01*

-X283841Y378672D01*

-X283264Y378319D01*

-X282749Y377879D01*

-X282309Y377364D01*

-X281956Y376787D01*

-X281697Y376162D01*

-X281539Y375504D01*

-X281486Y374829D01*

-X281539Y374154D01*

-X281697Y373496D01*

-X281956Y372871D01*

-X282309Y372294D01*

-X282749Y371779D01*

-X283264Y371339D01*

-X283841Y370986D01*

-X284466Y370727D01*

-X285124Y370569D01*

-X285792Y370516D01*

-Y369142D01*

-X285124Y369089D01*

-X284466Y368931D01*

-X283841Y368672D01*

-X283264Y368319D01*

-X282749Y367879D01*

-X282309Y367364D01*

-X281956Y366787D01*

-X281697Y366162D01*

-X281539Y365504D01*

-X281486Y364829D01*

-X281539Y364154D01*

-X281697Y363496D01*

-X281956Y362871D01*

-X282309Y362294D01*

-X282749Y361779D01*

-X283264Y361339D01*

-X283841Y360986D01*

-X284466Y360727D01*

-X285124Y360569D01*

-X285792Y360516D01*

-Y327021D01*

-X285752Y327031D01*

-X285430Y327056D01*

-X285108Y327031D01*

-X284795Y326956D01*

-X284496Y326832D01*

-X284221Y326664D01*

-X283976Y326454D01*

-X283766Y326209D01*

-X283598Y325934D01*

-X283474Y325635D01*

-X283399Y325322D01*

-X283374Y325000D01*

-X283399Y324678D01*

-X283474Y324365D01*

-X283598Y324066D01*

-X283766Y323791D01*

-X283976Y323546D01*

-X284221Y323336D01*

-X284496Y323168D01*

-X284795Y323044D01*

-X285108Y322969D01*

-X285430Y322944D01*

-X285752Y322969D01*

-X285792Y322979D01*

-Y189142D01*

-X285124Y189089D01*

-X284466Y188931D01*

-X283841Y188672D01*

-X283264Y188319D01*

-X282749Y187879D01*

-X282309Y187364D01*

-X281956Y186787D01*

-X281697Y186162D01*

-X281539Y185504D01*

-X281486Y184829D01*

-X281539Y184154D01*

-X281697Y183496D01*

-X281956Y182871D01*

-X282309Y182294D01*

-X282749Y181779D01*

-X283264Y181339D01*

-X283841Y180986D01*

-X284466Y180727D01*

-X285124Y180569D01*

-X285792Y180516D01*

-Y179142D01*

-X285124Y179089D01*

-X284466Y178931D01*

-X283841Y178672D01*

-X283264Y178319D01*

-X282749Y177879D01*

-X282309Y177364D01*

-X281956Y176787D01*

-X281697Y176162D01*

-X281539Y175504D01*

-X281486Y174829D01*

-X281539Y174154D01*

-X281697Y173496D01*

-X281956Y172871D01*

-X282309Y172294D01*

-X282749Y171779D01*

-X283264Y171339D01*

-X283841Y170986D01*

-X284466Y170727D01*

-X285124Y170569D01*

-X285792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X278222Y378387D02*X277757Y378672D01*

-X277132Y378931D01*

-X276474Y379089D01*

-X275799Y379142D01*

-X275792Y379142D01*

-Y397000D01*

-X278222D01*

-Y378387D01*

-G37*

-G36*

-Y368387D02*X277757Y368672D01*

-X277132Y368931D01*

-X276474Y369089D01*

-X275799Y369142D01*

-X275792Y369142D01*

-Y370516D01*

-X275799Y370516D01*

-X276474Y370569D01*

-X277132Y370727D01*

-X277757Y370986D01*

-X278222Y371271D01*

-Y368387D01*

-G37*

-G36*

-Y349399D02*X278084Y349456D01*

-X277771Y349531D01*

-X277449Y349556D01*

-X277127Y349531D01*

-X276814Y349456D01*

-X276515Y349332D01*

-X276240Y349164D01*

-X275995Y348954D01*

-X275792Y348717D01*

-Y360516D01*

-X275799Y360516D01*

-X276474Y360569D01*

-X277132Y360727D01*

-X277757Y360986D01*

-X278222Y361271D01*

-Y349399D01*

-G37*

-G36*

-Y309981D02*X278108Y310051D01*

-X277809Y310175D01*

-X277496Y310250D01*

-X277174Y310275D01*

-X276852Y310250D01*

-X276539Y310175D01*

-X276240Y310051D01*

-X275965Y309883D01*

-X275792Y309735D01*

-Y346283D01*

-X275995Y346046D01*

-X276240Y345836D01*

-X276515Y345668D01*

-X276814Y345544D01*

-X277127Y345469D01*

-X277449Y345444D01*

-X277771Y345469D01*

-X278084Y345544D01*

-X278222Y345601D01*

-Y309981D01*

-G37*

-G36*

-Y188387D02*X277757Y188672D01*

-X277132Y188931D01*

-X276474Y189089D01*

-X275799Y189142D01*

-X275792Y189142D01*

-Y306703D01*

-X275965Y306555D01*

-X276240Y306387D01*

-X276539Y306263D01*

-X276852Y306188D01*

-X277174Y306163D01*

-X277496Y306188D01*

-X277809Y306263D01*

-X278108Y306387D01*

-X278222Y306457D01*

-Y300667D01*

-X278207Y300668D01*

-X277885Y300643D01*

-X277572Y300568D01*

-X277273Y300444D01*

-X276998Y300276D01*

-X276753Y300066D01*

-X276543Y299821D01*

-X276375Y299546D01*

-X276251Y299247D01*

-X276176Y298934D01*

-X276151Y298612D01*

-X276176Y298290D01*

-X276251Y297977D01*

-X276375Y297678D01*

-X276543Y297403D01*

-X276753Y297158D01*

-X276998Y296948D01*

-X277273Y296780D01*

-X277572Y296656D01*

-X277885Y296581D01*

-X278207Y296556D01*

-X278222Y296557D01*

-Y286326D01*

-X278164Y286277D01*

-X277980Y286061D01*

-X277832Y285820D01*

-X277724Y285558D01*

-X277658Y285282D01*

-X277635Y285000D01*

-X277658Y284718D01*

-X277724Y284442D01*

-X277832Y284180D01*

-X277980Y283939D01*

-X278164Y283723D01*

-X278222Y283674D01*

-Y281658D01*

-X277903Y281633D01*

-X277590Y281558D01*

-X277291Y281434D01*

-X277016Y281266D01*

-X276771Y281056D01*

-X276561Y280811D01*

-X276393Y280536D01*

-X276269Y280237D01*

-X276194Y279924D01*

-X276169Y279602D01*

-X276194Y279280D01*

-X276269Y278967D01*

-X276393Y278668D01*

-X276561Y278393D01*

-X276771Y278148D01*

-X277016Y277938D01*

-X277291Y277770D01*

-X277590Y277646D01*

-X277903Y277571D01*

-X278222Y277546D01*

-Y188387D01*

-G37*

-G36*

-Y178387D02*X277757Y178672D01*

-X277132Y178931D01*

-X276474Y179089D01*

-X275799Y179142D01*

-X275792Y179142D01*

-Y180516D01*

-X275799Y180516D01*

-X276474Y180569D01*

-X277132Y180727D01*

-X277757Y180986D01*

-X278222Y181271D01*

-Y178387D01*

-G37*

-G36*

-Y97000D02*X275792D01*

-Y170516D01*

-X275799Y170516D01*

-X276474Y170569D01*

-X277132Y170727D01*

-X277757Y170986D01*

-X278222Y171271D01*

-Y97000D01*

-G37*

-G36*

-X275792D02*X269438D01*

-Y172538D01*

-X269642Y172871D01*

-X269901Y173496D01*

-X270059Y174154D01*

-X270099Y174829D01*

-X270059Y175504D01*

-X269901Y176162D01*

-X269642Y176787D01*

-X269438Y177120D01*

-Y182538D01*

-X269642Y182871D01*

-X269901Y183496D01*

-X270059Y184154D01*

-X270099Y184829D01*

-X270059Y185504D01*

-X269901Y186162D01*

-X269642Y186787D01*

-X269438Y187120D01*

-Y196695D01*

-X269441Y196694D01*

-X269723Y196717D01*

-X269999Y196783D01*

-X270261Y196891D01*

-X270502Y197039D01*

-X270718Y197223D01*

-X270902Y197439D01*

-X271050Y197680D01*

-X271158Y197942D01*

-X271224Y198218D01*

-X271241Y198500D01*

-X271224Y198782D01*

-X271158Y199058D01*

-X271050Y199320D01*

-X270902Y199561D01*

-X270718Y199777D01*

-X270502Y199961D01*

-X270261Y200109D01*

-X269999Y200217D01*

-X269723Y200283D01*

-X269441Y200306D01*

-X269438Y200305D01*

-Y229770D01*

-X269659Y229717D01*

-X269941Y229694D01*

-X270223Y229717D01*

-X270499Y229783D01*

-X270761Y229891D01*

-X271002Y230039D01*

-X271218Y230223D01*

-X271402Y230439D01*

-X271550Y230680D01*

-X271658Y230942D01*

-X271724Y231218D01*

-X271741Y231500D01*

-X271724Y231782D01*

-X271658Y232058D01*

-X271550Y232320D01*

-X271402Y232561D01*

-X271218Y232777D01*

-X271002Y232961D01*

-X270761Y233109D01*

-X270499Y233217D01*

-X270223Y233283D01*

-X269941Y233306D01*

-X269659Y233283D01*

-X269438Y233230D01*

-Y296592D01*

-X269653Y296575D01*

-X269975Y296600D01*

-X270288Y296675D01*

-X270587Y296799D01*

-X270862Y296967D01*

-X271107Y297177D01*

-X271317Y297422D01*

-X271426Y297601D01*

-X271565Y297373D01*

-X271775Y297128D01*

-X272020Y296918D01*

-X272295Y296750D01*

-X272594Y296626D01*

-X272907Y296551D01*

-X273229Y296526D01*

-X273551Y296551D01*

-X273864Y296626D01*

-X274163Y296750D01*

-X274438Y296918D01*

-X274683Y297128D01*

-X274893Y297373D01*

-X275061Y297648D01*

-X275185Y297947D01*

-X275260Y298260D01*

-X275279Y298582D01*

-X275260Y298904D01*

-X275185Y299217D01*

-X275061Y299516D01*

-X274893Y299791D01*

-X274683Y300036D01*

-X274438Y300246D01*

-X274163Y300414D01*

-X273864Y300538D01*

-X273551Y300613D01*

-X273229Y300638D01*

-X272907Y300613D01*

-X272594Y300538D01*

-X272295Y300414D01*

-X272020Y300246D01*

-X271775Y300036D01*

-X271565Y299791D01*

-X271456Y299612D01*

-X271317Y299840D01*

-X271107Y300085D01*

-X270862Y300295D01*

-X270587Y300463D01*

-X270288Y300587D01*

-X269975Y300662D01*

-X269653Y300687D01*

-X269438Y300670D01*

-Y312011D01*

-X269576Y312044D01*

-X269875Y312168D01*

-X270150Y312336D01*

-X270395Y312546D01*

-X270605Y312791D01*

-X270773Y313066D01*

-X270897Y313365D01*

-X270972Y313678D01*

-X270991Y314000D01*

-X270972Y314322D01*

-X270897Y314635D01*

-X270773Y314934D01*

-X270605Y315209D01*

-X270395Y315454D01*

-X270150Y315664D01*

-X269875Y315832D01*

-X269576Y315956D01*

-X269438Y315989D01*

-Y334503D01*

-X269621Y334391D01*

-X269883Y334283D01*

-X270159Y334217D01*

-X270441Y334194D01*

-X270723Y334217D01*

-X270999Y334283D01*

-X271261Y334391D01*

-X271502Y334539D01*

-X271718Y334723D01*

-X271902Y334939D01*

-X272050Y335180D01*

-X272158Y335442D01*

-X272224Y335718D01*

-X272241Y336000D01*

-X272224Y336282D01*

-X272158Y336558D01*

-X272050Y336820D01*

-X271902Y337061D01*

-X271718Y337277D01*

-X271502Y337461D01*

-X271261Y337609D01*

-X270999Y337717D01*

-X270723Y337783D01*

-X270441Y337806D01*

-X270159Y337783D01*

-X269883Y337717D01*

-X269621Y337609D01*

-X269438Y337497D01*

-Y341003D01*

-X269621Y340891D01*

-X269883Y340783D01*

-X270159Y340717D01*

-X270441Y340694D01*

-X270723Y340717D01*

-X270999Y340783D01*

-X271261Y340891D01*

-X271502Y341039D01*

-X271718Y341223D01*

-X271902Y341439D01*

-X272050Y341680D01*

-X272158Y341942D01*

-X272224Y342218D01*

-X272241Y342500D01*

-X272224Y342782D01*

-X272158Y343058D01*

-X272050Y343320D01*

-X271902Y343561D01*

-X271718Y343777D01*

-X271502Y343961D01*

-X271261Y344109D01*

-X270999Y344217D01*

-X270723Y344283D01*

-X270441Y344306D01*

-X270159Y344283D01*

-X269883Y344217D01*

-X269621Y344109D01*

-X269438Y343997D01*

-Y348003D01*

-X269621Y347891D01*

-X269883Y347783D01*

-X270159Y347717D01*

-X270441Y347694D01*

-X270723Y347717D01*

-X270999Y347783D01*

-X271261Y347891D01*

-X271502Y348039D01*

-X271718Y348223D01*

-X271902Y348439D01*

-X272050Y348680D01*

-X272158Y348942D01*

-X272224Y349218D01*

-X272241Y349500D01*

-X272224Y349782D01*

-X272158Y350058D01*

-X272050Y350320D01*

-X271902Y350561D01*

-X271718Y350777D01*

-X271502Y350961D01*

-X271261Y351109D01*

-X270999Y351217D01*

-X270723Y351283D01*

-X270441Y351306D01*

-X270159Y351283D01*

-X269883Y351217D01*

-X269621Y351109D01*

-X269438Y350997D01*

-Y355503D01*

-X269621Y355391D01*

-X269883Y355283D01*

-X270159Y355217D01*

-X270441Y355194D01*

-X270723Y355217D01*

-X270999Y355283D01*

-X271261Y355391D01*

-X271502Y355539D01*

-X271718Y355723D01*

-X271902Y355939D01*

-X272050Y356180D01*

-X272158Y356442D01*

-X272224Y356718D01*

-X272241Y357000D01*

-X272224Y357282D01*

-X272158Y357558D01*

-X272050Y357820D01*

-X271902Y358061D01*

-X271718Y358277D01*

-X271502Y358461D01*

-X271261Y358609D01*

-X270999Y358717D01*

-X270723Y358783D01*

-X270441Y358806D01*

-X270159Y358783D01*

-X269883Y358717D01*

-X269621Y358609D01*

-X269438Y358497D01*

-Y362538D01*

-X269642Y362871D01*

-X269901Y363496D01*

-X270059Y364154D01*

-X270099Y364829D01*

-X270059Y365504D01*

-X269901Y366162D01*

-X269642Y366787D01*

-X269438Y367120D01*

-Y372538D01*

-X269642Y372871D01*

-X269901Y373496D01*

-X270059Y374154D01*

-X270099Y374829D01*

-X270059Y375504D01*

-X269901Y376162D01*

-X269642Y376787D01*

-X269438Y377120D01*

-Y397000D01*

-X275792D01*

-Y379142D01*

-X275124Y379089D01*

-X274466Y378931D01*

-X273841Y378672D01*

-X273264Y378319D01*

-X272749Y377879D01*

-X272309Y377364D01*

-X271956Y376787D01*

-X271697Y376162D01*

-X271539Y375504D01*

-X271486Y374829D01*

-X271539Y374154D01*

-X271697Y373496D01*

-X271956Y372871D01*

-X272309Y372294D01*

-X272749Y371779D01*

-X273264Y371339D01*

-X273841Y370986D01*

-X274466Y370727D01*

-X275124Y370569D01*

-X275792Y370516D01*

-Y369142D01*

-X275124Y369089D01*

-X274466Y368931D01*

-X273841Y368672D01*

-X273264Y368319D01*

-X272749Y367879D01*

-X272309Y367364D01*

-X271956Y366787D01*

-X271697Y366162D01*

-X271539Y365504D01*

-X271486Y364829D01*

-X271539Y364154D01*

-X271697Y363496D01*

-X271956Y362871D01*

-X272309Y362294D01*

-X272749Y361779D01*

-X273264Y361339D01*

-X273841Y360986D01*

-X274466Y360727D01*

-X275124Y360569D01*

-X275792Y360516D01*

-Y348717D01*

-X275785Y348709D01*

-X275617Y348434D01*

-X275493Y348135D01*

-X275418Y347822D01*

-X275393Y347500D01*

-X275418Y347178D01*

-X275493Y346865D01*

-X275617Y346566D01*

-X275785Y346291D01*

-X275792Y346283D01*

-Y309735D01*

-X275720Y309673D01*

-X275510Y309428D01*

-X275342Y309153D01*

-X275218Y308854D01*

-X275143Y308541D01*

-X275118Y308219D01*

-X275143Y307897D01*

-X275218Y307584D01*

-X275342Y307285D01*

-X275510Y307010D01*

-X275720Y306765D01*

-X275792Y306703D01*

-Y189142D01*

-X275124Y189089D01*

-X274466Y188931D01*

-X273841Y188672D01*

-X273264Y188319D01*

-X272749Y187879D01*

-X272309Y187364D01*

-X271956Y186787D01*

-X271697Y186162D01*

-X271539Y185504D01*

-X271486Y184829D01*

-X271539Y184154D01*

-X271697Y183496D01*

-X271956Y182871D01*

-X272309Y182294D01*

-X272749Y181779D01*

-X273264Y181339D01*

-X273841Y180986D01*

-X274466Y180727D01*

-X275124Y180569D01*

-X275792Y180516D01*

-Y179142D01*

-X275124Y179089D01*

-X274466Y178931D01*

-X273841Y178672D01*

-X273264Y178319D01*

-X272749Y177879D01*

-X272309Y177364D01*

-X271956Y176787D01*

-X271697Y176162D01*

-X271539Y175504D01*

-X271486Y174829D01*

-X271539Y174154D01*

-X271697Y173496D01*

-X271956Y172871D01*

-X272309Y172294D01*

-X272749Y171779D01*

-X273264Y171339D01*

-X273841Y170986D01*

-X274466Y170727D01*

-X275124Y170569D01*

-X275792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X269438Y377120D02*X269289Y377364D01*

-X268849Y377879D01*

-X268334Y378319D01*

-X267757Y378672D01*

-X267132Y378931D01*

-X266474Y379089D01*

-X265799Y379142D01*

-X265792Y379142D01*

-Y397000D01*

-X269438D01*

-Y377120D01*

-G37*

-G36*

-Y367120D02*X269289Y367364D01*

-X268849Y367879D01*

-X268334Y368319D01*

-X267757Y368672D01*

-X267132Y368931D01*

-X266474Y369089D01*

-X265799Y369142D01*

-X265792Y369142D01*

-Y370516D01*

-X265799Y370516D01*

-X266474Y370569D01*

-X267132Y370727D01*

-X267757Y370986D01*

-X268334Y371339D01*

-X268849Y371779D01*

-X269289Y372294D01*

-X269438Y372538D01*

-Y367120D01*

-G37*

-G36*

-Y300670D02*X269331Y300662D01*

-X269018Y300587D01*

-X268719Y300463D01*

-X268444Y300295D01*

-X268199Y300085D01*

-X267989Y299840D01*

-X267821Y299565D01*

-X267697Y299266D01*

-X267622Y298953D01*

-X267597Y298631D01*

-X267622Y298309D01*

-X267638Y298244D01*

-X267622Y298258D01*

-X267347Y298426D01*

-X267048Y298550D01*

-X266735Y298625D01*

-X266413Y298650D01*

-X266091Y298625D01*

-X265792Y298553D01*

-Y360516D01*

-X265799Y360516D01*

-X266474Y360569D01*

-X267132Y360727D01*

-X267757Y360986D01*

-X268334Y361339D01*

-X268849Y361779D01*

-X269289Y362294D01*

-X269438Y362538D01*

-Y358497D01*

-X269380Y358461D01*

-X269164Y358277D01*

-X268980Y358061D01*

-X268832Y357820D01*

-X268724Y357558D01*

-X268658Y357282D01*

-X268635Y357000D01*

-X268658Y356718D01*

-X268724Y356442D01*

-X268832Y356180D01*

-X268980Y355939D01*

-X269164Y355723D01*

-X269380Y355539D01*

-X269438Y355503D01*

-Y350997D01*

-X269380Y350961D01*

-X269164Y350777D01*

-X268980Y350561D01*

-X268832Y350320D01*

-X268724Y350058D01*

-X268658Y349782D01*

-X268635Y349500D01*

-X268658Y349218D01*

-X268724Y348942D01*

-X268832Y348680D01*

-X268980Y348439D01*

-X269164Y348223D01*

-X269380Y348039D01*

-X269438Y348003D01*

-Y343997D01*

-X269380Y343961D01*

-X269164Y343777D01*

-X268980Y343561D01*

-X268832Y343320D01*

-X268724Y343058D01*

-X268658Y342782D01*

-X268635Y342500D01*

-X268658Y342218D01*

-X268724Y341942D01*

-X268832Y341680D01*

-X268980Y341439D01*

-X269164Y341223D01*

-X269380Y341039D01*

-X269438Y341003D01*

-Y337497D01*

-X269380Y337461D01*

-X269164Y337277D01*

-X268980Y337061D01*

-X268832Y336820D01*

-X268724Y336558D01*

-X268658Y336282D01*

-X268635Y336000D01*

-X268658Y335718D01*

-X268724Y335442D01*

-X268832Y335180D01*

-X268980Y334939D01*

-X269164Y334723D01*

-X269380Y334539D01*

-X269438Y334503D01*

-Y315989D01*

-X269263Y316031D01*

-X268941Y316056D01*

-X268619Y316031D01*

-X268306Y315956D01*

-X268007Y315832D01*

-X267732Y315664D01*

-X267487Y315454D01*

-X267277Y315209D01*

-X267109Y314934D01*

-X266985Y314635D01*

-X266910Y314322D01*

-X266885Y314000D01*

-X266910Y313678D01*

-X266985Y313365D01*

-X267109Y313066D01*

-X267277Y312791D01*

-X267487Y312546D01*

-X267732Y312336D01*

-X268007Y312168D01*

-X268306Y312044D01*

-X268619Y311969D01*

-X268941Y311944D01*

-X269263Y311969D01*

-X269438Y312011D01*

-Y300670D01*

-G37*

-G36*

-Y187120D02*X269289Y187364D01*

-X268849Y187879D01*

-X268334Y188319D01*

-X267757Y188672D01*

-X267132Y188931D01*

-X266474Y189089D01*

-X265799Y189142D01*

-X265792Y189142D01*

-Y281877D01*

-X265866Y281997D01*

-X265990Y282296D01*

-X266065Y282609D01*

-X266084Y282931D01*

-X266065Y283253D01*

-X265990Y283566D01*

-X265866Y283865D01*

-X265792Y283985D01*

-Y294635D01*

-X266091Y294563D01*

-X266413Y294538D01*

-X266735Y294563D01*

-X267048Y294638D01*

-X267347Y294762D01*

-X267622Y294930D01*

-X267867Y295140D01*

-X268077Y295385D01*

-X268245Y295660D01*

-X268369Y295959D01*

-X268444Y296272D01*

-X268463Y296594D01*

-X268444Y296916D01*

-X268428Y296981D01*

-X268444Y296967D01*

-X268719Y296799D01*

-X269018Y296675D01*

-X269331Y296600D01*

-X269438Y296592D01*

-Y233230D01*

-X269383Y233217D01*

-X269121Y233109D01*

-X268880Y232961D01*

-X268664Y232777D01*

-X268480Y232561D01*

-X268332Y232320D01*

-X268224Y232058D01*

-X268158Y231782D01*

-X268135Y231500D01*

-X268158Y231218D01*

-X268224Y230942D01*

-X268332Y230680D01*

-X268480Y230439D01*

-X268664Y230223D01*

-X268880Y230039D01*

-X269121Y229891D01*

-X269383Y229783D01*

-X269438Y229770D01*

-Y200305D01*

-X269159Y200283D01*

-X268883Y200217D01*

-X268621Y200109D01*

-X268380Y199961D01*

-X268164Y199777D01*

-X267980Y199561D01*

-X267832Y199320D01*

-X267724Y199058D01*

-X267658Y198782D01*

-X267635Y198500D01*

-X267658Y198218D01*

-X267724Y197942D01*

-X267832Y197680D01*

-X267980Y197439D01*

-X268164Y197223D01*

-X268380Y197039D01*

-X268621Y196891D01*

-X268883Y196783D01*

-X269159Y196717D01*

-X269438Y196695D01*

-Y187120D01*

-G37*

-G36*

-Y177120D02*X269289Y177364D01*

-X268849Y177879D01*

-X268334Y178319D01*

-X267757Y178672D01*

-X267132Y178931D01*

-X266474Y179089D01*

-X265799Y179142D01*

-X265792Y179142D01*

-Y180516D01*

-X265799Y180516D01*

-X266474Y180569D01*

-X267132Y180727D01*

-X267757Y180986D01*

-X268334Y181339D01*

-X268849Y181779D01*

-X269289Y182294D01*

-X269438Y182538D01*

-Y177120D01*

-G37*

-G36*

-Y97000D02*X265792D01*

-Y170516D01*

-X265799Y170516D01*

-X266474Y170569D01*

-X267132Y170727D01*

-X267757Y170986D01*

-X268334Y171339D01*

-X268849Y171779D01*

-X269289Y172294D01*

-X269438Y172538D01*

-Y97000D01*

-G37*

-G36*

-X262747Y181782D02*X262749Y181779D01*

-X263264Y181339D01*

-X263841Y180986D01*

-X264466Y180727D01*

-X265124Y180569D01*

-X265792Y180516D01*

-Y179142D01*

-X265124Y179089D01*

-X264466Y178931D01*

-X263841Y178672D01*

-X263264Y178319D01*

-X262749Y177879D01*

-X262747Y177876D01*

-Y181782D01*

-G37*

-G36*

-Y281334D02*X262825Y281267D01*

-X263100Y281099D01*

-X263399Y280975D01*

-X263712Y280900D01*

-X264034Y280875D01*

-X264356Y280900D01*

-X264669Y280975D01*

-X264968Y281099D01*

-X265243Y281267D01*

-X265488Y281477D01*

-X265698Y281722D01*

-X265792Y281877D01*

-Y189142D01*

-X265124Y189089D01*

-X264466Y188931D01*

-X263841Y188672D01*

-X263264Y188319D01*

-X262749Y187879D01*

-X262747Y187876D01*

-Y266716D01*

-X262750Y266716D01*

-X263072Y266741D01*

-X263385Y266816D01*

-X263684Y266940D01*

-X263959Y267108D01*

-X264204Y267318D01*

-X264414Y267563D01*

-X264582Y267838D01*

-X264706Y268137D01*

-X264781Y268450D01*

-X264800Y268772D01*

-X264781Y269094D01*

-X264706Y269407D01*

-X264582Y269706D01*

-X264414Y269981D01*

-X264204Y270226D01*

-X263959Y270436D01*

-X263684Y270604D01*

-X263385Y270728D01*

-X263072Y270803D01*

-X262750Y270828D01*

-X262747Y270828D01*

-Y281334D01*

-G37*

-G36*

-Y289773D02*X263062Y289798D01*

-X263375Y289873D01*

-X263674Y289997D01*

-X263949Y290165D01*

-X264194Y290375D01*

-X264404Y290620D01*

-X264572Y290895D01*

-X264696Y291194D01*

-X264771Y291507D01*

-X264790Y291829D01*

-X264771Y292151D01*

-X264696Y292464D01*

-X264572Y292763D01*

-X264404Y293038D01*

-X264194Y293283D01*

-X264019Y293433D01*

-X264174Y293497D01*

-X264449Y293665D01*

-X264694Y293875D01*

-X264904Y294120D01*

-X265072Y294395D01*

-X265196Y294694D01*

-X265246Y294905D01*

-X265479Y294762D01*

-X265778Y294638D01*

-X265792Y294635D01*

-Y283985D01*

-X265698Y284140D01*

-X265488Y284385D01*

-X265243Y284595D01*

-X264968Y284763D01*

-X264669Y284887D01*

-X264356Y284962D01*

-X264034Y284987D01*

-X263712Y284962D01*

-X263399Y284887D01*

-X263100Y284763D01*

-X262825Y284595D01*

-X262747Y284528D01*

-Y289773D01*

-G37*

-G36*

-Y361782D02*X262749Y361779D01*

-X263264Y361339D01*

-X263841Y360986D01*

-X264466Y360727D01*

-X265124Y360569D01*

-X265792Y360516D01*

-Y298553D01*

-X265778Y298550D01*

-X265479Y298426D01*

-X265204Y298258D01*

-X264959Y298048D01*

-X264749Y297803D01*

-X264581Y297528D01*

-X264457Y297229D01*

-X264407Y297018D01*

-X264174Y297161D01*

-X263875Y297285D01*

-X263562Y297360D01*

-X263240Y297385D01*

-X262918Y297360D01*

-X262747Y297319D01*

-Y306063D01*

-X262779Y306090D01*

-X262963Y306306D01*

-X263111Y306547D01*

-X263219Y306809D01*

-X263285Y307085D01*

-X263302Y307367D01*

-X263285Y307649D01*

-X263219Y307925D01*

-X263111Y308187D01*

-X262963Y308428D01*

-X262779Y308644D01*

-X262747Y308671D01*

-Y318339D01*

-X262883Y318283D01*

-X263159Y318217D01*

-X263441Y318194D01*

-X263723Y318217D01*

-X263999Y318283D01*

-X264261Y318391D01*

-X264502Y318539D01*

-X264718Y318723D01*

-X264902Y318939D01*

-X265050Y319180D01*

-X265158Y319442D01*

-X265224Y319718D01*

-X265241Y320000D01*

-X265224Y320282D01*

-X265158Y320558D01*

-X265050Y320820D01*

-X264902Y321061D01*

-X264718Y321277D01*

-X264502Y321461D01*

-X264261Y321609D01*

-X263999Y321717D01*

-X263723Y321783D01*

-X263441Y321806D01*

-X263159Y321783D01*

-X262883Y321717D01*

-X262747Y321661D01*

-Y361782D01*

-G37*

-G36*

-Y371782D02*X262749Y371779D01*

-X263264Y371339D01*

-X263841Y370986D01*

-X264466Y370727D01*

-X265124Y370569D01*

-X265792Y370516D01*

-Y369142D01*

-X265124Y369089D01*

-X264466Y368931D01*

-X263841Y368672D01*

-X263264Y368319D01*

-X262749Y367879D01*

-X262747Y367876D01*

-Y371782D01*

-G37*

-G36*

-Y397000D02*X265792D01*

-Y379142D01*

-X265124Y379089D01*

-X264466Y378931D01*

-X263841Y378672D01*

-X263264Y378319D01*

-X262749Y377879D01*

-X262747Y377876D01*

-Y397000D01*

-G37*

-G36*

-X265792Y97000D02*X262747D01*

-Y171782D01*

-X262749Y171779D01*

-X263264Y171339D01*

-X263841Y170986D01*

-X264466Y170727D01*

-X265124Y170569D01*

-X265792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X260938Y282284D02*X260976Y282293D01*

-X261275Y282417D01*

-X261550Y282585D01*

-X261795Y282795D01*

-X261984Y283017D01*

-X261978Y282931D01*

-X262003Y282609D01*

-X262078Y282296D01*

-X262202Y281997D01*

-X262370Y281722D01*

-X262580Y281477D01*

-X262747Y281334D01*

-Y270828D01*

-X262428Y270803D01*

-X262115Y270728D01*

-X261816Y270604D01*

-X261541Y270436D01*

-X261296Y270226D01*

-X261086Y269981D01*

-X260938Y269739D01*

-Y282284D01*

-G37*

-G36*

-Y290846D02*X261076Y290620D01*

-X261286Y290375D01*

-X261531Y290165D01*

-X261806Y289997D01*

-X262105Y289873D01*

-X262418Y289798D01*

-X262740Y289773D01*

-X262747Y289773D01*

-Y284528D01*

-X262580Y284385D01*

-X262386Y284157D01*

-X262391Y284249D01*

-X262372Y284571D01*

-X262297Y284884D01*

-X262173Y285183D01*

-X262005Y285458D01*

-X261795Y285703D01*

-X261550Y285913D01*

-X261275Y286081D01*

-X260976Y286205D01*

-X260938Y286214D01*

-Y290846D01*

-G37*

-G36*

-Y305652D02*X260944Y305650D01*

-X261220Y305584D01*

-X261502Y305561D01*

-X261784Y305584D01*

-X262060Y305650D01*

-X262322Y305758D01*

-X262563Y305906D01*

-X262747Y306063D01*

-Y297319D01*

-X262605Y297285D01*

-X262306Y297161D01*

-X262031Y296993D01*

-X261786Y296783D01*

-X261576Y296538D01*

-X261408Y296263D01*

-X261284Y295964D01*

-X261209Y295651D01*

-X261184Y295329D01*

-X261209Y295007D01*

-X261284Y294694D01*

-X261408Y294395D01*

-X261576Y294120D01*

-X261786Y293875D01*

-X261961Y293725D01*

-X261806Y293661D01*

-X261531Y293493D01*

-X261286Y293283D01*

-X261076Y293038D01*

-X260938Y292812D01*

-Y305652D01*

-G37*

-G36*

-Y397000D02*X262747D01*

-Y377876D01*

-X262309Y377364D01*

-X261956Y376787D01*

-X261697Y376162D01*

-X261539Y375504D01*

-X261486Y374829D01*

-X261539Y374154D01*

-X261697Y373496D01*

-X261956Y372871D01*

-X262309Y372294D01*

-X262747Y371782D01*

-Y367876D01*

-X262309Y367364D01*

-X261956Y366787D01*

-X261697Y366162D01*

-X261539Y365504D01*

-X261486Y364829D01*

-X261539Y364154D01*

-X261697Y363496D01*

-X261956Y362871D01*

-X262309Y362294D01*

-X262747Y361782D01*

-Y321661D01*

-X262621Y321609D01*

-X262380Y321461D01*

-X262164Y321277D01*

-X261980Y321061D01*

-X261832Y320820D01*

-X261724Y320558D01*

-X261658Y320282D01*

-X261635Y320000D01*

-X261658Y319718D01*

-X261724Y319442D01*

-X261832Y319180D01*

-X261980Y318939D01*

-X262164Y318723D01*

-X262380Y318539D01*

-X262621Y318391D01*

-X262747Y318339D01*

-Y308671D01*

-X262563Y308828D01*

-X262322Y308976D01*

-X262060Y309084D01*

-X261784Y309150D01*

-X261502Y309173D01*

-X261220Y309150D01*

-X260944Y309084D01*

-X260938Y309082D01*

-Y315235D01*

-X261126Y315280D01*

-X261388Y315388D01*

-X261629Y315536D01*

-X261845Y315720D01*

-X262029Y315936D01*

-X262177Y316177D01*

-X262285Y316439D01*

-X262351Y316715D01*

-X262368Y316997D01*

-X262351Y317279D01*

-X262285Y317555D01*

-X262177Y317817D01*

-X262029Y318058D01*

-X261845Y318274D01*

-X261629Y318458D01*

-X261388Y318606D01*

-X261126Y318714D01*

-X260938Y318759D01*

-Y397000D01*

-G37*

-G36*

-X262747Y97000D02*X260938D01*

-Y189695D01*

-X260941Y189694D01*

-X261223Y189717D01*

-X261499Y189783D01*

-X261761Y189891D01*

-X262002Y190039D01*

-X262218Y190223D01*

-X262402Y190439D01*

-X262550Y190680D01*

-X262658Y190942D01*

-X262724Y191218D01*

-X262741Y191500D01*

-X262724Y191782D01*

-X262658Y192058D01*

-X262550Y192320D01*

-X262402Y192561D01*

-X262218Y192777D01*

-X262002Y192961D01*

-X261761Y193109D01*

-X261499Y193217D01*

-X261223Y193283D01*

-X260941Y193306D01*

-X260938Y193305D01*

-Y267805D01*

-X261086Y267563D01*

-X261296Y267318D01*

-X261541Y267108D01*

-X261816Y266940D01*

-X262115Y266816D01*

-X262428Y266741D01*

-X262747Y266716D01*

-Y187876D01*

-X262309Y187364D01*

-X261956Y186787D01*

-X261697Y186162D01*

-X261539Y185504D01*

-X261486Y184829D01*

-X261539Y184154D01*

-X261697Y183496D01*

-X261956Y182871D01*

-X262309Y182294D01*

-X262747Y181782D01*

-Y177876D01*

-X262309Y177364D01*

-X261956Y176787D01*

-X261697Y176162D01*

-X261539Y175504D01*

-X261486Y174829D01*

-X261539Y174154D01*

-X261697Y173496D01*

-X261956Y172871D01*

-X262309Y172294D01*

-X262747Y171782D01*

-Y97000D01*

-G37*

-G36*

-X260938D02*X255792D01*

-Y170516D01*

-X255799Y170516D01*

-X256474Y170569D01*

-X257132Y170727D01*

-X257757Y170986D01*

-X258334Y171339D01*

-X258849Y171779D01*

-X259289Y172294D01*

-X259642Y172871D01*

-X259901Y173496D01*

-X260059Y174154D01*

-X260099Y174829D01*

-X260059Y175504D01*

-X259901Y176162D01*

-X259642Y176787D01*

-X259289Y177364D01*

-X258849Y177879D01*

-X258334Y178319D01*

-X257757Y178672D01*

-X257132Y178931D01*

-X256474Y179089D01*

-X255799Y179142D01*

-X255792Y179142D01*

-Y180516D01*

-X255799Y180516D01*

-X256474Y180569D01*

-X257132Y180727D01*

-X257757Y180986D01*

-X258334Y181339D01*

-X258849Y181779D01*

-X259289Y182294D01*

-X259642Y182871D01*

-X259901Y183496D01*

-X260059Y184154D01*

-X260099Y184829D01*

-X260059Y185504D01*

-X259901Y186162D01*

-X259642Y186787D01*

-X259289Y187364D01*

-X258849Y187879D01*

-X258334Y188319D01*

-X257757Y188672D01*

-X257132Y188931D01*

-X256474Y189089D01*

-X255799Y189142D01*

-X255792Y189142D01*

-Y296570D01*

-X255949Y296665D01*

-X256194Y296875D01*

-X256404Y297120D01*

-X256572Y297395D01*

-X256696Y297694D01*

-X256771Y298007D01*

-X256790Y298329D01*

-X256771Y298651D01*

-X256696Y298964D01*

-X256572Y299263D01*

-X256404Y299538D01*

-X256194Y299783D01*

-X255949Y299993D01*

-X255792Y300088D01*

-Y360516D01*

-X255799Y360516D01*

-X256474Y360569D01*

-X257132Y360727D01*

-X257757Y360986D01*

-X258334Y361339D01*

-X258849Y361779D01*

-X259289Y362294D01*

-X259642Y362871D01*

-X259901Y363496D01*

-X260059Y364154D01*

-X260099Y364829D01*

-X260059Y365504D01*

-X259901Y366162D01*

-X259642Y366787D01*

-X259289Y367364D01*

-X258849Y367879D01*

-X258334Y368319D01*

-X257757Y368672D01*

-X257132Y368931D01*

-X256474Y369089D01*

-X255799Y369142D01*

-X255792Y369142D01*

-Y370516D01*

-X255799Y370516D01*

-X256474Y370569D01*

-X257132Y370727D01*

-X257757Y370986D01*

-X258334Y371339D01*

-X258849Y371779D01*

-X259289Y372294D01*

-X259642Y372871D01*

-X259901Y373496D01*

-X260059Y374154D01*

-X260099Y374829D01*

-X260059Y375504D01*

-X259901Y376162D01*

-X259642Y376787D01*

-X259289Y377364D01*

-X258849Y377879D01*

-X258334Y378319D01*

-X257757Y378672D01*

-X257132Y378931D01*

-X256474Y379089D01*

-X255799Y379142D01*

-X255792Y379142D01*

-Y397000D01*

-X260938D01*

-Y318759D01*

-X260850Y318780D01*

-X260568Y318803D01*

-X260286Y318780D01*

-X260010Y318714D01*

-X259748Y318606D01*

-X259507Y318458D01*

-X259291Y318274D01*

-X259107Y318058D01*

-X258959Y317817D01*

-X258851Y317555D01*

-X258785Y317279D01*

-X258762Y316997D01*

-X258785Y316715D01*

-X258851Y316439D01*

-X258959Y316177D01*

-X259107Y315936D01*

-X259291Y315720D01*

-X259507Y315536D01*

-X259748Y315388D01*

-X260010Y315280D01*

-X260286Y315214D01*

-X260568Y315191D01*

-X260850Y315214D01*

-X260938Y315235D01*

-Y309082D01*

-X260682Y308976D01*

-X260441Y308828D01*

-X260225Y308644D01*

-X260041Y308428D01*

-X259893Y308187D01*

-X259785Y307925D01*

-X259719Y307649D01*

-X259696Y307367D01*

-X259719Y307085D01*

-X259785Y306809D01*

-X259893Y306547D01*

-X260041Y306306D01*

-X260225Y306090D01*

-X260441Y305906D01*

-X260682Y305758D01*

-X260938Y305652D01*

-Y292812D01*

-X260908Y292763D01*

-X260784Y292464D01*

-X260709Y292151D01*

-X260684Y291829D01*

-X260709Y291507D01*

-X260784Y291194D01*

-X260908Y290895D01*

-X260938Y290846D01*

-Y286214D01*

-X260663Y286280D01*

-X260341Y286305D01*

-X260019Y286280D01*

-X259706Y286205D01*

-X259407Y286081D01*

-X259132Y285913D01*

-X258887Y285703D01*

-X258677Y285458D01*

-X258509Y285183D01*

-X258385Y284884D01*

-X258310Y284571D01*

-X258285Y284249D01*

-X258310Y283927D01*

-X258385Y283614D01*

-X258509Y283315D01*

-X258677Y283040D01*

-X258887Y282795D01*

-X259132Y282585D01*

-X259407Y282417D01*

-X259706Y282293D01*

-X260019Y282218D01*

-X260341Y282193D01*

-X260663Y282218D01*

-X260938Y282284D01*

-Y269739D01*

-X260918Y269706D01*

-X260794Y269407D01*

-X260719Y269094D01*

-X260694Y268772D01*

-X260719Y268450D01*

-X260794Y268137D01*

-X260918Y267838D01*

-X260938Y267805D01*

-Y193305D01*

-X260659Y193283D01*

-X260383Y193217D01*

-X260121Y193109D01*

-X259880Y192961D01*

-X259664Y192777D01*

-X259480Y192561D01*

-X259332Y192320D01*

-X259224Y192058D01*

-X259158Y191782D01*

-X259135Y191500D01*

-X259158Y191218D01*

-X259224Y190942D01*

-X259332Y190680D01*

-X259480Y190439D01*

-X259664Y190223D01*

-X259880Y190039D01*

-X260121Y189891D01*

-X260383Y189783D01*

-X260659Y189717D01*

-X260938Y189695D01*

-Y97000D01*

-G37*

-G36*

-X253098Y181481D02*X253264Y181339D01*

-X253841Y180986D01*

-X254466Y180727D01*

-X255124Y180569D01*

-X255792Y180516D01*

-Y179142D01*

-X255124Y179089D01*

-X254466Y178931D01*

-X253841Y178672D01*

-X253264Y178319D01*

-X253098Y178177D01*

-Y181481D01*

-G37*

-G36*

-Y297095D02*X253286Y296875D01*

-X253531Y296665D01*

-X253806Y296497D01*

-X254105Y296373D01*

-X254418Y296298D01*

-X254740Y296273D01*

-X255062Y296298D01*

-X255375Y296373D01*

-X255674Y296497D01*

-X255792Y296570D01*

-Y189142D01*

-X255124Y189089D01*

-X254466Y188931D01*

-X253841Y188672D01*

-X253264Y188319D01*

-X253098Y188177D01*

-Y209121D01*

-X253218Y209223D01*

-X253402Y209439D01*

-X253550Y209680D01*

-X253658Y209942D01*

-X253724Y210218D01*

-X253741Y210500D01*

-X253724Y210782D01*

-X253658Y211058D01*

-X253550Y211320D01*

-X253402Y211561D01*

-X253218Y211777D01*

-X253098Y211879D01*

-Y259780D01*

-X253101Y259780D01*

-X253423Y259805D01*

-X253736Y259880D01*

-X254035Y260004D01*

-X254310Y260172D01*

-X254555Y260382D01*

-X254765Y260627D01*

-X254933Y260902D01*

-X255057Y261201D01*

-X255132Y261514D01*

-X255151Y261836D01*

-X255132Y262158D01*

-X255057Y262471D01*

-X254933Y262770D01*

-X254765Y263045D01*

-X254555Y263290D01*

-X254310Y263500D01*

-X254035Y263668D01*

-X253736Y263792D01*

-X253423Y263867D01*

-X253101Y263892D01*

-X253098Y263892D01*

-Y297095D01*

-G37*

-G36*

-Y361481D02*X253264Y361339D01*

-X253841Y360986D01*

-X254466Y360727D01*

-X255124Y360569D01*

-X255792Y360516D01*

-Y300088D01*

-X255674Y300161D01*

-X255375Y300285D01*

-X255062Y300360D01*

-X254740Y300385D01*

-X254418Y300360D01*

-X254105Y300285D01*

-X253806Y300161D01*

-X253531Y299993D01*

-X253286Y299783D01*

-X253098Y299563D01*

-Y361481D01*

-G37*

-G36*

-Y371481D02*X253264Y371339D01*

-X253841Y370986D01*

-X254466Y370727D01*

-X255124Y370569D01*

-X255792Y370516D01*

-Y369142D01*

-X255124Y369089D01*

-X254466Y368931D01*

-X253841Y368672D01*

-X253264Y368319D01*

-X253098Y368177D01*

-Y371481D01*

-G37*

-G36*

-Y397000D02*X255792D01*

-Y379142D01*

-X255124Y379089D01*

-X254466Y378931D01*

-X253841Y378672D01*

-X253264Y378319D01*

-X253098Y378177D01*

-Y397000D01*

-G37*

-G36*

-X255792Y97000D02*X253098D01*

-Y100731D01*

-X253159Y100717D01*

-X253441Y100694D01*

-X253723Y100717D01*

-X253999Y100783D01*

-X254261Y100891D01*

-X254502Y101039D01*

-X254718Y101223D01*

-X254902Y101439D01*

-X255050Y101680D01*

-X255158Y101942D01*

-X255224Y102218D01*

-X255241Y102500D01*

-X255224Y102782D01*

-X255158Y103058D01*

-X255050Y103320D01*

-X254902Y103561D01*

-X254718Y103777D01*

-X254502Y103961D01*

-X254261Y104109D01*

-X253999Y104217D01*

-X253723Y104283D01*

-X253441Y104306D01*

-X253159Y104283D01*

-X253098Y104269D01*

-Y171481D01*

-X253264Y171339D01*

-X253841Y170986D01*

-X254466Y170727D01*

-X255124Y170569D01*

-X255792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X250938Y397000D02*X253098D01*

-Y378177D01*

-X252749Y377879D01*

-X252309Y377364D01*

-X251956Y376787D01*

-X251697Y376162D01*

-X251539Y375504D01*

-X251486Y374829D01*

-X251539Y374154D01*

-X251697Y373496D01*

-X251956Y372871D01*

-X252309Y372294D01*

-X252749Y371779D01*

-X253098Y371481D01*

-Y368177D01*

-X252749Y367879D01*

-X252309Y367364D01*

-X251956Y366787D01*

-X251697Y366162D01*

-X251539Y365504D01*

-X251486Y364829D01*

-X251539Y364154D01*

-X251697Y363496D01*

-X251956Y362871D01*

-X252309Y362294D01*

-X252749Y361779D01*

-X253098Y361481D01*

-Y299563D01*

-X253076Y299538D01*

-X252908Y299263D01*

-X252784Y298964D01*

-X252709Y298651D01*

-X252684Y298329D01*

-X252709Y298007D01*

-X252784Y297694D01*

-X252908Y297395D01*

-X253076Y297120D01*

-X253098Y297095D01*

-Y263892D01*

-X252779Y263867D01*

-X252466Y263792D01*

-X252167Y263668D01*

-X251892Y263500D01*

-X251647Y263290D01*

-X251437Y263045D01*

-X251269Y262770D01*

-X251145Y262471D01*

-X251070Y262158D01*

-X251045Y261836D01*

-X251070Y261514D01*

-X251145Y261201D01*

-X251269Y260902D01*

-X251437Y260627D01*

-X251647Y260382D01*

-X251892Y260172D01*

-X252167Y260004D01*

-X252466Y259880D01*

-X252779Y259805D01*

-X253098Y259780D01*

-Y211879D01*

-X253002Y211961D01*

-X252761Y212109D01*

-X252499Y212217D01*

-X252223Y212283D01*

-X251941Y212306D01*

-X251659Y212283D01*

-X251383Y212217D01*

-X251121Y212109D01*

-X250938Y211997D01*

-Y227695D01*

-X250941Y227694D01*

-X251223Y227717D01*

-X251499Y227783D01*

-X251761Y227891D01*

-X252002Y228039D01*

-X252218Y228223D01*

-X252402Y228439D01*

-X252550Y228680D01*

-X252658Y228942D01*

-X252724Y229218D01*

-X252741Y229500D01*

-X252724Y229782D01*

-X252658Y230058D01*

-X252550Y230320D01*

-X252402Y230561D01*

-X252218Y230777D01*

-X252002Y230961D01*

-X251761Y231109D01*

-X251499Y231217D01*

-X251223Y231283D01*

-X250941Y231306D01*

-X250938Y231305D01*

-Y397000D01*

-G37*

-G36*

-X253098Y97000D02*X250938D01*

-Y209003D01*

-X251121Y208891D01*

-X251383Y208783D01*

-X251659Y208717D01*

-X251941Y208694D01*

-X252223Y208717D01*

-X252499Y208783D01*

-X252761Y208891D01*

-X253002Y209039D01*

-X253098Y209121D01*

-Y188177D01*

-X252749Y187879D01*

-X252309Y187364D01*

-X251956Y186787D01*

-X251697Y186162D01*

-X251539Y185504D01*

-X251486Y184829D01*

-X251539Y184154D01*

-X251697Y183496D01*

-X251956Y182871D01*

-X252309Y182294D01*

-X252749Y181779D01*

-X253098Y181481D01*

-Y178177D01*

-X252749Y177879D01*

-X252309Y177364D01*

-X251956Y176787D01*

-X251697Y176162D01*

-X251539Y175504D01*

-X251486Y174829D01*

-X251539Y174154D01*

-X251697Y173496D01*

-X251956Y172871D01*

-X252309Y172294D01*

-X252749Y171779D01*

-X253098Y171481D01*

-Y104269D01*

-X252883Y104217D01*

-X252621Y104109D01*

-X252380Y103961D01*

-X252164Y103777D01*

-X251980Y103561D01*

-X251832Y103320D01*

-X251724Y103058D01*

-X251658Y102782D01*

-X251635Y102500D01*

-X251658Y102218D01*

-X251724Y101942D01*

-X251832Y101680D01*

-X251980Y101439D01*

-X252164Y101223D01*

-X252380Y101039D01*

-X252621Y100891D01*

-X252883Y100783D01*

-X253098Y100731D01*

-Y97000D01*

-G37*

-G36*

-X250938D02*X249098D01*

-Y172071D01*

-X249289Y172294D01*

-X249642Y172871D01*

-X249901Y173496D01*

-X250059Y174154D01*

-X250099Y174829D01*

-X250059Y175504D01*

-X249901Y176162D01*

-X249642Y176787D01*

-X249289Y177364D01*

-X249098Y177587D01*

-Y182071D01*

-X249289Y182294D01*

-X249642Y182871D01*

-X249901Y183496D01*

-X250059Y184154D01*

-X250099Y184829D01*

-X250059Y185504D01*

-X249901Y186162D01*

-X249642Y186787D01*

-X249289Y187364D01*

-X249098Y187587D01*

-Y326988D01*

-X249101Y326987D01*

-X249383Y327010D01*

-X249659Y327076D01*

-X249921Y327184D01*

-X250162Y327332D01*

-X250378Y327516D01*

-X250562Y327732D01*

-X250710Y327973D01*

-X250818Y328235D01*

-X250884Y328511D01*

-X250901Y328793D01*

-X250884Y329075D01*

-X250818Y329351D01*

-X250710Y329613D01*

-X250562Y329854D01*

-X250378Y330070D01*

-X250162Y330254D01*

-X249921Y330402D01*

-X249659Y330510D01*

-X249383Y330576D01*

-X249101Y330599D01*

-X249098Y330598D01*

-Y362071D01*

-X249289Y362294D01*

-X249642Y362871D01*

-X249901Y363496D01*

-X250059Y364154D01*

-X250099Y364829D01*

-X250059Y365504D01*

-X249901Y366162D01*

-X249642Y366787D01*

-X249289Y367364D01*

-X249098Y367587D01*

-Y372071D01*

-X249289Y372294D01*

-X249642Y372871D01*

-X249901Y373496D01*

-X250059Y374154D01*

-X250099Y374829D01*

-X250059Y375504D01*

-X249901Y376162D01*

-X249642Y376787D01*

-X249289Y377364D01*

-X249098Y377587D01*

-Y397000D01*

-X250938D01*

-Y231305D01*

-X250659Y231283D01*

-X250383Y231217D01*

-X250121Y231109D01*

-X249880Y230961D01*

-X249664Y230777D01*

-X249480Y230561D01*

-X249332Y230320D01*

-X249224Y230058D01*

-X249158Y229782D01*

-X249135Y229500D01*

-X249158Y229218D01*

-X249224Y228942D01*

-X249332Y228680D01*

-X249480Y228439D01*

-X249664Y228223D01*

-X249880Y228039D01*

-X250121Y227891D01*

-X250383Y227783D01*

-X250659Y227717D01*

-X250938Y227695D01*

-Y211997D01*

-X250880Y211961D01*

-X250664Y211777D01*

-X250480Y211561D01*

-X250332Y211320D01*

-X250224Y211058D01*

-X250158Y210782D01*

-X250135Y210500D01*

-X250158Y210218D01*

-X250224Y209942D01*

-X250332Y209680D01*

-X250480Y209439D01*

-X250664Y209223D01*

-X250880Y209039D01*

-X250938Y209003D01*

-Y97000D01*

-G37*

-G36*

-X249098Y377587D02*X248849Y377879D01*

-X248334Y378319D01*

-X247757Y378672D01*

-X247132Y378931D01*

-X246474Y379089D01*

-X245799Y379142D01*

-X245792Y379142D01*

-Y397000D01*

-X249098D01*

-Y377587D01*

-G37*

-G36*

-Y367587D02*X248849Y367879D01*

-X248334Y368319D01*

-X247757Y368672D01*

-X247132Y368931D01*

-X246474Y369089D01*

-X245799Y369142D01*

-X245792Y369142D01*

-Y370516D01*

-X245799Y370516D01*

-X246474Y370569D01*

-X247132Y370727D01*

-X247757Y370986D01*

-X248334Y371339D01*

-X248849Y371779D01*

-X249098Y372071D01*

-Y367587D01*

-G37*

-G36*

-Y187587D02*X248849Y187879D01*

-X248334Y188319D01*

-X247757Y188672D01*

-X247132Y188931D01*

-X246474Y189089D01*

-X245799Y189142D01*

-X245792Y189142D01*

-Y189724D01*

-X245863Y189718D01*

-X246145Y189741D01*

-X246421Y189807D01*

-X246683Y189915D01*

-X246924Y190063D01*

-X247140Y190247D01*

-X247324Y190463D01*

-X247472Y190704D01*

-X247580Y190966D01*

-X247646Y191242D01*

-X247663Y191524D01*

-X247646Y191806D01*

-X247580Y192082D01*

-X247472Y192344D01*

-X247324Y192585D01*

-X247140Y192801D01*

-X246924Y192985D01*

-X246683Y193133D01*

-X246421Y193241D01*

-X246145Y193307D01*

-X245863Y193330D01*

-X245792Y193324D01*

-Y227820D01*

-X245883Y227783D01*

-X246159Y227717D01*

-X246441Y227694D01*

-X246723Y227717D01*

-X246999Y227783D01*

-X247261Y227891D01*

-X247502Y228039D01*

-X247718Y228223D01*

-X247902Y228439D01*

-X248050Y228680D01*

-X248158Y228942D01*

-X248224Y229218D01*

-X248241Y229500D01*

-X248224Y229782D01*

-X248158Y230058D01*

-X248050Y230320D01*

-X247902Y230561D01*

-X247718Y230777D01*

-X247502Y230961D01*

-X247261Y231109D01*

-X246999Y231217D01*

-X246723Y231283D01*

-X246441Y231306D01*

-X246159Y231283D01*

-X245883Y231217D01*

-X245792Y231180D01*

-Y236614D01*

-X245880Y236539D01*

-X246121Y236391D01*

-X246383Y236283D01*

-X246659Y236217D01*

-X246941Y236194D01*

-X247223Y236217D01*

-X247499Y236283D01*

-X247761Y236391D01*

-X248002Y236539D01*

-X248218Y236723D01*

-X248402Y236939D01*

-X248550Y237180D01*

-X248658Y237442D01*

-X248724Y237718D01*

-X248741Y238000D01*

-X248724Y238282D01*

-X248658Y238558D01*

-X248550Y238820D01*

-X248402Y239061D01*

-X248218Y239277D01*

-X248002Y239461D01*

-X247761Y239609D01*

-X247499Y239717D01*

-X247223Y239783D01*

-X246941Y239806D01*

-X246659Y239783D01*

-X246383Y239717D01*

-X246121Y239609D01*

-X245880Y239461D01*

-X245792Y239386D01*

-Y277470D01*

-X245879Y277477D01*

-X246192Y277552D01*

-X246491Y277676D01*

-X246766Y277844D01*

-X247011Y278054D01*

-X247221Y278299D01*

-X247389Y278574D01*

-X247513Y278873D01*

-X247588Y279186D01*

-X247607Y279508D01*

-X247588Y279830D01*

-X247513Y280143D01*

-X247389Y280442D01*

-X247221Y280717D01*

-X247011Y280962D01*

-X246766Y281172D01*

-X246491Y281340D01*

-X246192Y281464D01*

-X245879Y281539D01*

-X245792Y281546D01*

-Y301495D01*

-X245911Y301422D01*

-X246173Y301314D01*

-X246449Y301248D01*

-X246731Y301225D01*

-X247013Y301248D01*

-X247289Y301314D01*

-X247551Y301422D01*

-X247792Y301570D01*

-X248008Y301754D01*

-X248192Y301970D01*

-X248340Y302211D01*

-X248448Y302473D01*

-X248514Y302749D01*

-X248531Y303031D01*

-X248514Y303313D01*

-X248448Y303589D01*

-X248340Y303851D01*

-X248192Y304092D01*

-X248008Y304308D01*

-X247792Y304492D01*

-X247551Y304640D01*

-X247289Y304748D01*

-X247013Y304814D01*

-X246731Y304837D01*

-X246449Y304814D01*

-X246173Y304748D01*

-X245911Y304640D01*

-X245792Y304567D01*

-Y360516D01*

-X245799Y360516D01*

-X246474Y360569D01*

-X247132Y360727D01*

-X247757Y360986D01*

-X248334Y361339D01*

-X248849Y361779D01*

-X249098Y362071D01*

-Y330598D01*

-X248819Y330576D01*

-X248543Y330510D01*

-X248281Y330402D01*

-X248040Y330254D01*

-X247824Y330070D01*

-X247640Y329854D01*

-X247492Y329613D01*

-X247384Y329351D01*

-X247318Y329075D01*

-X247295Y328793D01*

-X247318Y328511D01*

-X247384Y328235D01*

-X247492Y327973D01*

-X247640Y327732D01*

-X247824Y327516D01*

-X248040Y327332D01*

-X248281Y327184D01*

-X248543Y327076D01*

-X248819Y327010D01*

-X249098Y326988D01*

-Y187587D01*

-G37*

-G36*

-Y177587D02*X248849Y177879D01*

-X248334Y178319D01*

-X247757Y178672D01*

-X247132Y178931D01*

-X246474Y179089D01*

-X245799Y179142D01*

-X245792Y179142D01*

-Y180516D01*

-X245799Y180516D01*

-X246474Y180569D01*

-X247132Y180727D01*

-X247757Y180986D01*

-X248334Y181339D01*

-X248849Y181779D01*

-X249098Y182071D01*

-Y177587D01*

-G37*

-G36*

-Y97000D02*X245792D01*

-Y125733D01*

-X245999Y125783D01*

-X246261Y125891D01*

-X246502Y126039D01*

-X246718Y126223D01*

-X246902Y126439D01*

-X247050Y126680D01*

-X247158Y126942D01*

-X247224Y127218D01*

-X247241Y127500D01*

-X247224Y127782D01*

-X247158Y128058D01*

-X247050Y128320D01*

-X246902Y128561D01*

-X246718Y128777D01*

-X246502Y128961D01*

-X246261Y129109D01*

-X245999Y129217D01*

-X245792Y129267D01*

-Y170516D01*

-X245799Y170516D01*

-X246474Y170569D01*

-X247132Y170727D01*

-X247757Y170986D01*

-X248334Y171339D01*

-X248849Y171779D01*

-X249098Y172071D01*

-Y97000D01*

-G37*

-G36*

-X242453Y182126D02*X242749Y181779D01*

-X243264Y181339D01*

-X243841Y180986D01*

-X244466Y180727D01*

-X245124Y180569D01*

-X245792Y180516D01*

-Y179142D01*

-X245124Y179089D01*

-X244466Y178931D01*

-X243841Y178672D01*

-X243264Y178319D01*

-X242749Y177879D01*

-X242453Y177532D01*

-Y182126D01*

-G37*

-G36*

-Y362126D02*X242749Y361779D01*

-X243264Y361339D01*

-X243841Y360986D01*

-X244466Y360727D01*

-X245124Y360569D01*

-X245792Y360516D01*

-Y304567D01*

-X245670Y304492D01*

-X245454Y304308D01*

-X245270Y304092D01*

-X245122Y303851D01*

-X245014Y303589D01*

-X244948Y303313D01*

-X244925Y303031D01*

-X244948Y302749D01*

-X245014Y302473D01*

-X245122Y302211D01*

-X245270Y301970D01*

-X245454Y301754D01*

-X245670Y301570D01*

-X245792Y301495D01*

-Y281546D01*

-X245557Y281564D01*

-X245235Y281539D01*

-X244922Y281464D01*

-X244623Y281340D01*

-X244348Y281172D01*

-X244103Y280962D01*

-X243893Y280717D01*

-X243725Y280442D01*

-X243601Y280143D01*

-X243526Y279830D01*

-X243501Y279508D01*

-X243526Y279186D01*

-X243601Y278873D01*

-X243725Y278574D01*

-X243893Y278299D01*

-X244103Y278054D01*

-X244348Y277844D01*

-X244623Y277676D01*

-X244922Y277552D01*

-X245235Y277477D01*

-X245557Y277452D01*

-X245792Y277470D01*

-Y239386D01*

-X245664Y239277D01*

-X245480Y239061D01*

-X245332Y238820D01*

-X245224Y238558D01*

-X245158Y238282D01*

-X245135Y238000D01*

-X245158Y237718D01*

-X245224Y237442D01*

-X245332Y237180D01*

-X245480Y236939D01*

-X245664Y236723D01*

-X245792Y236614D01*

-Y231180D01*

-X245621Y231109D01*

-X245380Y230961D01*

-X245164Y230777D01*

-X244980Y230561D01*

-X244832Y230320D01*

-X244724Y230058D01*

-X244658Y229782D01*

-X244635Y229500D01*

-X244658Y229218D01*

-X244724Y228942D01*

-X244832Y228680D01*

-X244980Y228439D01*

-X245164Y228223D01*

-X245380Y228039D01*

-X245621Y227891D01*

-X245792Y227820D01*

-Y193324D01*

-X245581Y193307D01*

-X245305Y193241D01*

-X245043Y193133D01*

-X244802Y192985D01*

-X244586Y192801D01*

-X244402Y192585D01*

-X244254Y192344D01*

-X244146Y192082D01*

-X244080Y191806D01*

-X244057Y191524D01*

-X244080Y191242D01*

-X244146Y190966D01*

-X244254Y190704D01*

-X244402Y190463D01*

-X244586Y190247D01*

-X244802Y190063D01*

-X245043Y189915D01*

-X245305Y189807D01*

-X245581Y189741D01*

-X245792Y189724D01*

-Y189142D01*

-X245124Y189089D01*

-X244466Y188931D01*

-X243841Y188672D01*

-X243264Y188319D01*

-X242749Y187879D01*

-X242453Y187532D01*

-Y200984D01*

-X242480Y200939D01*

-X242664Y200723D01*

-X242880Y200539D01*

-X243121Y200391D01*

-X243383Y200283D01*

-X243659Y200217D01*

-X243941Y200194D01*

-X244223Y200217D01*

-X244499Y200283D01*

-X244761Y200391D01*

-X245002Y200539D01*

-X245218Y200723D01*

-X245402Y200939D01*

-X245550Y201180D01*

-X245658Y201442D01*

-X245724Y201718D01*

-X245741Y202000D01*

-X245724Y202282D01*

-X245658Y202558D01*

-X245550Y202820D01*

-X245402Y203061D01*

-X245218Y203277D01*

-X245002Y203461D01*

-X244761Y203609D01*

-X244499Y203717D01*

-X244223Y203783D01*

-X243941Y203806D01*

-X243659Y203783D01*

-X243383Y203717D01*

-X243121Y203609D01*

-X242880Y203461D01*

-X242664Y203277D01*

-X242480Y203061D01*

-X242453Y203016D01*

-Y227695D01*

-X242723Y227717D01*

-X242999Y227783D01*

-X243261Y227891D01*

-X243502Y228039D01*

-X243718Y228223D01*

-X243902Y228439D01*

-X244050Y228680D01*

-X244158Y228942D01*

-X244224Y229218D01*

-X244241Y229500D01*

-X244224Y229782D01*

-X244158Y230058D01*

-X244050Y230320D01*

-X243902Y230561D01*

-X243718Y230777D01*

-X243502Y230961D01*

-X243261Y231109D01*

-X242999Y231217D01*

-X242723Y231283D01*

-X242453Y231305D01*

-Y291487D01*

-X242456Y291487D01*

-X242778Y291512D01*

-X243091Y291587D01*

-X243390Y291711D01*

-X243665Y291879D01*

-X243910Y292089D01*

-X244120Y292334D01*

-X244288Y292609D01*

-X244412Y292908D01*

-X244487Y293221D01*

-X244506Y293543D01*

-X244487Y293865D01*

-X244412Y294178D01*

-X244288Y294477D01*

-X244120Y294752D01*

-X243910Y294997D01*

-X243665Y295207D01*

-X243390Y295375D01*

-X243091Y295499D01*

-X242778Y295574D01*

-X242456Y295599D01*

-X242453Y295599D01*

-Y296766D01*

-X242490Y296769D01*

-X242803Y296844D01*

-X243102Y296968D01*

-X243377Y297136D01*

-X243622Y297346D01*

-X243832Y297591D01*

-X244000Y297866D01*

-X244124Y298165D01*

-X244199Y298478D01*

-X244218Y298800D01*

-X244199Y299122D01*

-X244124Y299435D01*

-X244000Y299734D01*

-X243832Y300009D01*

-X243622Y300254D01*

-X243377Y300464D01*

-X243102Y300632D01*

-X242803Y300756D01*

-X242490Y300831D01*

-X242453Y300834D01*

-Y362126D01*

-G37*

-G36*

-Y372126D02*X242749Y371779D01*

-X243264Y371339D01*

-X243841Y370986D01*

-X244466Y370727D01*

-X245124Y370569D01*

-X245792Y370516D01*

-Y369142D01*

-X245124Y369089D01*

-X244466Y368931D01*

-X243841Y368672D01*

-X243264Y368319D01*

-X242749Y367879D01*

-X242453Y367532D01*

-Y372126D01*

-G37*

-G36*

-Y397000D02*X245792D01*

-Y379142D01*

-X245124Y379089D01*

-X244466Y378931D01*

-X243841Y378672D01*

-X243264Y378319D01*

-X242749Y377879D01*

-X242453Y377532D01*

-Y397000D01*

-G37*

-G36*

-X245792Y97000D02*X242453D01*

-Y172126D01*

-X242749Y171779D01*

-X243264Y171339D01*

-X243841Y170986D01*

-X244466Y170727D01*

-X245124Y170569D01*

-X245792Y170516D01*

-Y129267D01*

-X245723Y129283D01*

-X245441Y129306D01*

-X245159Y129283D01*

-X244883Y129217D01*

-X244621Y129109D01*

-X244380Y128961D01*

-X244164Y128777D01*

-X243980Y128561D01*

-X243832Y128320D01*

-X243724Y128058D01*

-X243658Y127782D01*

-X243635Y127500D01*

-X243658Y127218D01*

-X243724Y126942D01*

-X243832Y126680D01*

-X243980Y126439D01*

-X244164Y126223D01*

-X244380Y126039D01*

-X244621Y125891D01*

-X244883Y125783D01*

-X245159Y125717D01*

-X245441Y125694D01*

-X245723Y125717D01*

-X245792Y125733D01*

-Y97000D01*

-G37*

-G36*

-X242453D02*X239299D01*

-Y172311D01*

-X239642Y172871D01*

-X239901Y173496D01*

-X240059Y174154D01*

-X240099Y174829D01*

-X240059Y175504D01*

-X239901Y176162D01*

-X239642Y176787D01*

-X239299Y177347D01*

-Y182311D01*

-X239642Y182871D01*

-X239901Y183496D01*

-X240059Y184154D01*

-X240099Y184829D01*

-X240059Y185504D01*

-X239901Y186162D01*

-X239642Y186787D01*

-X239299Y187347D01*

-Y194811D01*

-X239642Y195371D01*

-X239901Y195996D01*

-X240059Y196654D01*

-X240099Y197329D01*

-X240059Y198004D01*

-X239901Y198662D01*

-X239642Y199287D01*

-X239299Y199847D01*

-Y260179D01*

-X239302Y260179D01*

-X239624Y260204D01*

-X239937Y260279D01*

-X240236Y260403D01*

-X240511Y260571D01*

-X240756Y260781D01*

-X240966Y261026D01*

-X241134Y261301D01*

-X241258Y261600D01*

-X241333Y261913D01*

-X241352Y262235D01*

-X241333Y262557D01*

-X241258Y262870D01*

-X241134Y263169D01*

-X240966Y263444D01*

-X240756Y263689D01*

-X240511Y263899D01*

-X240236Y264067D01*

-X239937Y264191D01*

-X239624Y264266D01*

-X239302Y264291D01*

-X239299Y264291D01*

-Y277130D01*

-X239330Y277103D01*

-X239571Y276955D01*

-X239833Y276847D01*

-X240109Y276781D01*

-X240391Y276758D01*

-X240673Y276781D01*

-X240949Y276847D01*

-X241211Y276955D01*

-X241452Y277103D01*

-X241668Y277287D01*

-X241852Y277503D01*

-X242000Y277744D01*

-X242108Y278006D01*

-X242174Y278282D01*

-X242191Y278564D01*

-X242174Y278846D01*

-X242108Y279122D01*

-X242000Y279384D01*

-X241852Y279625D01*

-X241668Y279841D01*

-X241452Y280025D01*

-X241211Y280173D01*

-X240949Y280281D01*

-X240673Y280347D01*

-X240391Y280370D01*

-X240109Y280347D01*

-X239833Y280281D01*

-X239571Y280173D01*

-X239330Y280025D01*

-X239299Y279998D01*

-Y362311D01*

-X239642Y362871D01*

-X239901Y363496D01*

-X240059Y364154D01*

-X240099Y364829D01*

-X240059Y365504D01*

-X239901Y366162D01*

-X239642Y366787D01*

-X239299Y367347D01*

-Y372311D01*

-X239642Y372871D01*

-X239901Y373496D01*

-X240059Y374154D01*

-X240099Y374829D01*

-X240059Y375504D01*

-X239901Y376162D01*

-X239642Y376787D01*

-X239299Y377347D01*

-Y397000D01*

-X242453D01*

-Y377532D01*

-X242309Y377364D01*

-X241956Y376787D01*

-X241697Y376162D01*

-X241539Y375504D01*

-X241486Y374829D01*

-X241539Y374154D01*

-X241697Y373496D01*

-X241956Y372871D01*

-X242309Y372294D01*

-X242453Y372126D01*

-Y367532D01*

-X242309Y367364D01*

-X241956Y366787D01*

-X241697Y366162D01*

-X241539Y365504D01*

-X241486Y364829D01*

-X241539Y364154D01*

-X241697Y363496D01*

-X241956Y362871D01*

-X242309Y362294D01*

-X242453Y362126D01*

-Y300834D01*

-X242168Y300856D01*

-X241846Y300831D01*

-X241533Y300756D01*

-X241234Y300632D01*

-X240959Y300464D01*

-X240714Y300254D01*

-X240504Y300009D01*

-X240336Y299734D01*

-X240212Y299435D01*

-X240137Y299122D01*

-X240112Y298800D01*

-X240137Y298478D01*

-X240212Y298165D01*

-X240336Y297866D01*

-X240504Y297591D01*

-X240714Y297346D01*

-X240959Y297136D01*

-X241234Y296968D01*

-X241533Y296844D01*

-X241846Y296769D01*

-X242168Y296744D01*

-X242453Y296766D01*

-Y295599D01*

-X242134Y295574D01*

-X241821Y295499D01*

-X241522Y295375D01*

-X241247Y295207D01*

-X241002Y294997D01*

-X240792Y294752D01*

-X240624Y294477D01*

-X240500Y294178D01*

-X240425Y293865D01*

-X240400Y293543D01*

-X240425Y293221D01*

-X240500Y292908D01*

-X240624Y292609D01*

-X240792Y292334D01*

-X241002Y292089D01*

-X241247Y291879D01*

-X241522Y291711D01*

-X241821Y291587D01*

-X242134Y291512D01*

-X242453Y291487D01*

-Y231305D01*

-X242441Y231306D01*

-X242159Y231283D01*

-X241883Y231217D01*

-X241621Y231109D01*

-X241380Y230961D01*

-X241164Y230777D01*

-X240980Y230561D01*

-X240832Y230320D01*

-X240724Y230058D01*

-X240658Y229782D01*

-X240635Y229500D01*

-X240658Y229218D01*

-X240724Y228942D01*

-X240832Y228680D01*

-X240980Y228439D01*

-X241164Y228223D01*

-X241380Y228039D01*

-X241621Y227891D01*

-X241883Y227783D01*

-X242159Y227717D01*

-X242441Y227694D01*

-X242453Y227695D01*

-Y203016D01*

-X242332Y202820D01*

-X242224Y202558D01*

-X242158Y202282D01*

-X242135Y202000D01*

-X242158Y201718D01*

-X242224Y201442D01*

-X242332Y201180D01*

-X242453Y200984D01*

-Y187532D01*

-X242309Y187364D01*

-X241956Y186787D01*

-X241697Y186162D01*

-X241539Y185504D01*

-X241486Y184829D01*

-X241539Y184154D01*

-X241697Y183496D01*

-X241956Y182871D01*

-X242309Y182294D01*

-X242453Y182126D01*

-Y177532D01*

-X242309Y177364D01*

-X241956Y176787D01*

-X241697Y176162D01*

-X241539Y175504D01*

-X241486Y174829D01*

-X241539Y174154D01*

-X241697Y173496D01*

-X241956Y172871D01*

-X242309Y172294D01*

-X242453Y172126D01*

-Y97000D01*

-G37*

-G36*

-X239299Y377347D02*X239289Y377364D01*

-X238849Y377879D01*

-X238334Y378319D01*

-X237757Y378672D01*

-X237132Y378931D01*

-X236474Y379089D01*

-X235799Y379142D01*

-X235792Y379142D01*

-Y397000D01*

-X239299D01*

-Y377347D01*

-G37*

-G36*

-Y367347D02*X239289Y367364D01*

-X238849Y367879D01*

-X238334Y368319D01*

-X237757Y368672D01*

-X237132Y368931D01*

-X236474Y369089D01*

-X235799Y369142D01*

-X235792Y369142D01*

-Y370516D01*

-X235799Y370516D01*

-X236474Y370569D01*

-X237132Y370727D01*

-X237757Y370986D01*

-X238334Y371339D01*

-X238849Y371779D01*

-X239289Y372294D01*

-X239299Y372311D01*

-Y367347D01*

-G37*

-G36*

-Y199847D02*X239289Y199864D01*

-X238849Y200379D01*

-X238334Y200819D01*

-X237757Y201172D01*

-X237132Y201431D01*

-X236474Y201589D01*

-X235799Y201642D01*

-X235792Y201642D01*

-Y233820D01*

-X235883Y233783D01*

-X236159Y233717D01*

-X236441Y233694D01*

-X236723Y233717D01*

-X236999Y233783D01*

-X237261Y233891D01*

-X237502Y234039D01*

-X237718Y234223D01*

-X237902Y234439D01*

-X238050Y234680D01*

-X238158Y234942D01*

-X238224Y235218D01*

-X238241Y235500D01*

-X238224Y235782D01*

-X238158Y236058D01*

-X238050Y236320D01*

-X237902Y236561D01*

-X237718Y236777D01*

-X237502Y236961D01*

-X237261Y237109D01*

-X236999Y237217D01*

-X236723Y237283D01*

-X236441Y237306D01*

-X236159Y237283D01*

-X235883Y237217D01*

-X235792Y237180D01*

-Y360516D01*

-X235799Y360516D01*

-X236474Y360569D01*

-X237132Y360727D01*

-X237757Y360986D01*

-X238334Y361339D01*

-X238849Y361779D01*

-X239289Y362294D01*

-X239299Y362311D01*

-Y279998D01*

-X239114Y279841D01*

-X238930Y279625D01*

-X238782Y279384D01*

-X238674Y279122D01*

-X238608Y278846D01*

-X238585Y278564D01*

-X238608Y278282D01*

-X238674Y278006D01*

-X238782Y277744D01*

-X238930Y277503D01*

-X239114Y277287D01*

-X239299Y277130D01*

-Y264291D01*

-X238980Y264266D01*

-X238667Y264191D01*

-X238368Y264067D01*

-X238093Y263899D01*

-X237848Y263689D01*

-X237638Y263444D01*

-X237470Y263169D01*

-X237346Y262870D01*

-X237271Y262557D01*

-X237246Y262235D01*

-X237271Y261913D01*

-X237346Y261600D01*

-X237470Y261301D01*

-X237638Y261026D01*

-X237848Y260781D01*

-X238093Y260571D01*

-X238368Y260403D01*

-X238667Y260279D01*

-X238980Y260204D01*

-X239299Y260179D01*

-Y199847D01*

-G37*

-G36*

-Y187347D02*X239289Y187364D01*

-X238849Y187879D01*

-X238334Y188319D01*

-X237757Y188672D01*

-X237132Y188931D01*

-X236474Y189089D01*

-X235799Y189142D01*

-X235792Y189142D01*

-Y193016D01*

-X235799Y193016D01*

-X236474Y193069D01*

-X237132Y193227D01*

-X237757Y193486D01*

-X238334Y193839D01*

-X238849Y194279D01*

-X239289Y194794D01*

-X239299Y194811D01*

-Y187347D01*

-G37*

-G36*

-Y177347D02*X239289Y177364D01*

-X238849Y177879D01*

-X238334Y178319D01*

-X237757Y178672D01*

-X237132Y178931D01*

-X236474Y179089D01*

-X235799Y179142D01*

-X235792Y179142D01*

-Y180516D01*

-X235799Y180516D01*

-X236474Y180569D01*

-X237132Y180727D01*

-X237757Y180986D01*

-X238334Y181339D01*

-X238849Y181779D01*

-X239289Y182294D01*

-X239299Y182311D01*

-Y177347D01*

-G37*

-G36*

-Y97000D02*X235792D01*

-Y121311D01*

-X235902Y121439D01*

-X236050Y121680D01*

-X236158Y121942D01*

-X236224Y122218D01*

-X236241Y122500D01*

-X236224Y122782D01*

-X236158Y123058D01*

-X236050Y123320D01*

-X235902Y123561D01*

-X235792Y123689D01*

-Y131206D01*

-X235941Y131194D01*

-X236223Y131217D01*

-X236499Y131283D01*

-X236761Y131391D01*

-X237002Y131539D01*

-X237218Y131723D01*

-X237402Y131939D01*

-X237550Y132180D01*

-X237658Y132442D01*

-X237724Y132718D01*

-X237741Y133000D01*

-X237724Y133282D01*

-X237658Y133558D01*

-X237550Y133820D01*

-X237402Y134061D01*

-X237218Y134277D01*

-X237002Y134461D01*

-X236761Y134609D01*

-X236499Y134717D01*

-X236223Y134783D01*

-X235941Y134806D01*

-X235792Y134794D01*

-Y170516D01*

-X235799Y170516D01*

-X236474Y170569D01*

-X237132Y170727D01*

-X237757Y170986D01*

-X238334Y171339D01*

-X238849Y171779D01*

-X239289Y172294D01*

-X239299Y172311D01*

-Y97000D01*

-G37*

-G36*

-X235792D02*X230438D01*

-Y146503D01*

-X230621Y146391D01*

-X230883Y146283D01*

-X231159Y146217D01*

-X231441Y146194D01*

-X231723Y146217D01*

-X231999Y146283D01*

-X232261Y146391D01*

-X232502Y146539D01*

-X232718Y146723D01*

-X232902Y146939D01*

-X233050Y147180D01*

-X233158Y147442D01*

-X233224Y147718D01*

-X233241Y148000D01*

-X233224Y148282D01*

-X233158Y148558D01*

-X233050Y148820D01*

-X232902Y149061D01*

-X232718Y149277D01*

-X232502Y149461D01*

-X232261Y149609D01*

-X231999Y149717D01*

-X231723Y149783D01*

-X231441Y149806D01*

-X231159Y149783D01*

-X230883Y149717D01*

-X230621Y149609D01*

-X230438Y149497D01*

-Y245195D01*

-X230441Y245194D01*

-X230723Y245217D01*

-X230999Y245283D01*

-X231261Y245391D01*

-X231502Y245539D01*

-X231718Y245723D01*

-X231902Y245939D01*

-X232050Y246180D01*

-X232158Y246442D01*

-X232224Y246718D01*

-X232241Y247000D01*

-X232224Y247282D01*

-X232158Y247558D01*

-X232050Y247820D01*

-X231902Y248061D01*

-X231718Y248277D01*

-X231502Y248461D01*

-X231261Y248609D01*

-X230999Y248717D01*

-X230723Y248783D01*

-X230441Y248806D01*

-X230438Y248805D01*

-Y291195D01*

-X230441Y291194D01*

-X230723Y291217D01*

-X230999Y291283D01*

-X231261Y291391D01*

-X231502Y291539D01*

-X231718Y291723D01*

-X231902Y291939D01*

-X232050Y292180D01*

-X232158Y292442D01*

-X232224Y292718D01*

-X232241Y293000D01*

-X232224Y293282D01*

-X232158Y293558D01*

-X232050Y293820D01*

-X231902Y294061D01*

-X231718Y294277D01*

-X231502Y294461D01*

-X231261Y294609D01*

-X230999Y294717D01*

-X230723Y294783D01*

-X230441Y294806D01*

-X230438Y294805D01*

-Y353297D01*

-X230638Y353379D01*

-X230879Y353527D01*

-X231095Y353711D01*

-X231279Y353927D01*

-X231427Y354168D01*

-X231535Y354430D01*

-X231601Y354706D01*

-X231618Y354988D01*

-X231601Y355270D01*

-X231535Y355546D01*

-X231427Y355808D01*

-X231279Y356049D01*

-X231095Y356265D01*

-X230879Y356449D01*

-X230638Y356597D01*

-X230438Y356679D01*

-Y397000D01*

-X235792D01*

-Y379142D01*

-X235124Y379089D01*

-X234466Y378931D01*

-X233841Y378672D01*

-X233264Y378319D01*

-X232749Y377879D01*

-X232309Y377364D01*

-X231956Y376787D01*

-X231697Y376162D01*

-X231539Y375504D01*

-X231486Y374829D01*

-X231539Y374154D01*

-X231697Y373496D01*

-X231956Y372871D01*

-X232309Y372294D01*

-X232749Y371779D01*

-X233264Y371339D01*

-X233841Y370986D01*

-X234466Y370727D01*

-X235124Y370569D01*

-X235792Y370516D01*

-Y369142D01*

-X235124Y369089D01*

-X234466Y368931D01*

-X233841Y368672D01*

-X233264Y368319D01*

-X232749Y367879D01*

-X232309Y367364D01*

-X231956Y366787D01*

-X231697Y366162D01*

-X231539Y365504D01*

-X231486Y364829D01*

-X231539Y364154D01*

-X231697Y363496D01*

-X231956Y362871D01*

-X232309Y362294D01*

-X232749Y361779D01*

-X233264Y361339D01*

-X233841Y360986D01*

-X234466Y360727D01*

-X235124Y360569D01*

-X235792Y360516D01*

-Y237180D01*

-X235621Y237109D01*

-X235380Y236961D01*

-X235164Y236777D01*

-X234980Y236561D01*

-X234832Y236320D01*

-X234724Y236058D01*

-X234658Y235782D01*

-X234635Y235500D01*

-X234658Y235218D01*

-X234724Y234942D01*

-X234832Y234680D01*

-X234980Y234439D01*

-X235164Y234223D01*

-X235380Y234039D01*

-X235621Y233891D01*

-X235792Y233820D01*

-Y201642D01*

-X235124Y201589D01*

-X234466Y201431D01*

-X233841Y201172D01*

-X233264Y200819D01*

-X232749Y200379D01*

-X232309Y199864D01*

-X231956Y199287D01*

-X231697Y198662D01*

-X231539Y198004D01*

-X231486Y197329D01*

-X231539Y196654D01*

-X231697Y195996D01*

-X231956Y195371D01*

-X232309Y194794D01*

-X232749Y194279D01*

-X233264Y193839D01*

-X233841Y193486D01*

-X234466Y193227D01*

-X235124Y193069D01*

-X235792Y193016D01*

-Y189142D01*

-X235124Y189089D01*

-X234466Y188931D01*

-X233841Y188672D01*

-X233264Y188319D01*

-X232749Y187879D01*

-X232309Y187364D01*

-X231956Y186787D01*

-X231697Y186162D01*

-X231539Y185504D01*

-X231486Y184829D01*

-X231539Y184154D01*

-X231697Y183496D01*

-X231956Y182871D01*

-X232309Y182294D01*

-X232749Y181779D01*

-X233264Y181339D01*

-X233841Y180986D01*

-X234466Y180727D01*

-X235124Y180569D01*

-X235792Y180516D01*

-Y179142D01*

-X235124Y179089D01*

-X234466Y178931D01*

-X233841Y178672D01*

-X233264Y178319D01*

-X232749Y177879D01*

-X232309Y177364D01*

-X231956Y176787D01*

-X231697Y176162D01*

-X231539Y175504D01*

-X231486Y174829D01*

-X231539Y174154D01*

-X231697Y173496D01*

-X231956Y172871D01*

-X232309Y172294D01*

-X232749Y171779D01*

-X233264Y171339D01*

-X233841Y170986D01*

-X234466Y170727D01*

-X235124Y170569D01*

-X235792Y170516D01*

-Y134794D01*

-X235659Y134783D01*

-X235383Y134717D01*

-X235121Y134609D01*

-X234880Y134461D01*

-X234664Y134277D01*

-X234480Y134061D01*

-X234332Y133820D01*

-X234224Y133558D01*

-X234158Y133282D01*

-X234135Y133000D01*

-X234158Y132718D01*

-X234224Y132442D01*

-X234332Y132180D01*

-X234480Y131939D01*

-X234664Y131723D01*

-X234880Y131539D01*

-X235121Y131391D01*

-X235383Y131283D01*

-X235659Y131217D01*

-X235792Y131206D01*

-Y123689D01*

-X235718Y123777D01*

-X235502Y123961D01*

-X235261Y124109D01*

-X234999Y124217D01*

-X234723Y124283D01*

-X234441Y124306D01*

-X234159Y124283D01*

-X233883Y124217D01*

-X233621Y124109D01*

-X233380Y123961D01*

-X233164Y123777D01*

-X232980Y123561D01*

-X232832Y123320D01*

-X232724Y123058D01*

-X232658Y122782D01*

-X232635Y122500D01*

-X232658Y122218D01*

-X232724Y121942D01*

-X232832Y121680D01*

-X232980Y121439D01*

-X233164Y121223D01*

-X233380Y121039D01*

-X233621Y120891D01*

-X233883Y120783D01*

-X234159Y120717D01*

-X234441Y120694D01*

-X234723Y120717D01*

-X234999Y120783D01*

-X235261Y120891D01*

-X235502Y121039D01*

-X235718Y121223D01*

-X235792Y121311D01*

-Y97000D01*

-G37*

-G36*

-X230438D02*X225792D01*

-Y170516D01*

-X225799Y170516D01*

-X226474Y170569D01*

-X227132Y170727D01*

-X227757Y170986D01*

-X228334Y171339D01*

-X228849Y171779D01*

-X229289Y172294D01*

-X229642Y172871D01*

-X229901Y173496D01*

-X230059Y174154D01*

-X230099Y174829D01*

-X230059Y175504D01*

-X229901Y176162D01*

-X229642Y176787D01*

-X229289Y177364D01*

-X228849Y177879D01*

-X228334Y178319D01*

-X227757Y178672D01*

-X227132Y178931D01*

-X226474Y179089D01*

-X225799Y179142D01*

-X225792Y179142D01*

-Y180516D01*

-X225799Y180516D01*

-X226474Y180569D01*

-X227132Y180727D01*

-X227757Y180986D01*

-X228334Y181339D01*

-X228849Y181779D01*

-X229289Y182294D01*

-X229642Y182871D01*

-X229901Y183496D01*

-X230059Y184154D01*

-X230099Y184829D01*

-X230059Y185504D01*

-X229901Y186162D01*

-X229642Y186787D01*

-X229289Y187364D01*

-X228849Y187879D01*

-X228334Y188319D01*

-X227757Y188672D01*

-X227132Y188931D01*

-X226474Y189089D01*

-X225799Y189142D01*

-X225792Y189142D01*

-Y193016D01*

-X225799Y193016D01*

-X226474Y193069D01*

-X227132Y193227D01*

-X227757Y193486D01*

-X228334Y193839D01*

-X228849Y194279D01*

-X229289Y194794D01*

-X229642Y195371D01*

-X229901Y195996D01*

-X230059Y196654D01*

-X230099Y197329D01*

-X230059Y198004D01*

-X229901Y198662D01*

-X229642Y199287D01*

-X229289Y199864D01*

-X228849Y200379D01*

-X228334Y200819D01*

-X227757Y201172D01*

-X227132Y201431D01*

-X226474Y201589D01*

-X225799Y201642D01*

-X225792Y201642D01*

-Y218911D01*

-X226002Y219039D01*

-X226218Y219223D01*

-X226402Y219439D01*

-X226550Y219680D01*

-X226658Y219942D01*

-X226724Y220218D01*

-X226741Y220500D01*

-X226724Y220782D01*

-X226658Y221058D01*

-X226550Y221320D01*

-X226402Y221561D01*

-X226218Y221777D01*

-X226002Y221961D01*

-X225792Y222089D01*

-Y224733D01*

-X225999Y224783D01*

-X226261Y224891D01*

-X226502Y225039D01*

-X226718Y225223D01*

-X226902Y225439D01*

-X227050Y225680D01*

-X227158Y225942D01*

-X227224Y226218D01*

-X227241Y226500D01*

-X227224Y226782D01*

-X227158Y227058D01*

-X227050Y227320D01*

-X226902Y227561D01*

-X226718Y227777D01*

-X226502Y227961D01*

-X226261Y228109D01*

-X225999Y228217D01*

-X225792Y228267D01*

-Y233911D01*

-X226002Y234039D01*

-X226218Y234223D01*

-X226402Y234439D01*

-X226550Y234680D01*

-X226658Y234942D01*

-X226724Y235218D01*

-X226741Y235500D01*

-X226724Y235782D01*

-X226658Y236058D01*

-X226550Y236320D01*

-X226402Y236561D01*

-X226218Y236777D01*

-X226002Y236961D01*

-X225792Y237089D01*

-Y242811D01*

-X225902Y242939D01*

-X226050Y243180D01*

-X226158Y243442D01*

-X226224Y243718D01*

-X226241Y244000D01*

-X226224Y244282D01*

-X226158Y244558D01*

-X226050Y244820D01*

-X225902Y245061D01*

-X225792Y245189D01*

-Y247233D01*

-X225999Y247283D01*

-X226261Y247391D01*

-X226502Y247539D01*

-X226718Y247723D01*

-X226902Y247939D01*

-X227050Y248180D01*

-X227158Y248442D01*

-X227224Y248718D01*

-X227241Y249000D01*

-X227224Y249282D01*

-X227158Y249558D01*

-X227050Y249820D01*

-X226902Y250061D01*

-X226718Y250277D01*

-X226502Y250461D01*

-X226261Y250609D01*

-X225999Y250717D01*

-X225792Y250767D01*

-Y250811D01*

-X225902Y250939D01*

-X226050Y251180D01*

-X226158Y251442D01*

-X226224Y251718D01*

-X226241Y252000D01*

-X226224Y252282D01*

-X226158Y252558D01*

-X226050Y252820D01*

-X225902Y253061D01*

-X225792Y253189D01*

-Y360516D01*

-X225799Y360516D01*

-X226474Y360569D01*

-X227132Y360727D01*

-X227757Y360986D01*

-X228334Y361339D01*

-X228849Y361779D01*

-X229289Y362294D01*

-X229642Y362871D01*

-X229901Y363496D01*

-X230059Y364154D01*

-X230099Y364829D01*

-X230059Y365504D01*

-X229901Y366162D01*

-X229642Y366787D01*

-X229289Y367364D01*

-X228849Y367879D01*

-X228334Y368319D01*

-X227757Y368672D01*

-X227132Y368931D01*

-X226474Y369089D01*

-X225799Y369142D01*

-X225792Y369142D01*

-Y370516D01*

-X225799Y370516D01*

-X226474Y370569D01*

-X227132Y370727D01*

-X227757Y370986D01*

-X228334Y371339D01*

-X228849Y371779D01*

-X229289Y372294D01*

-X229642Y372871D01*

-X229901Y373496D01*

-X230059Y374154D01*

-X230099Y374829D01*

-X230059Y375504D01*

-X229901Y376162D01*

-X229642Y376787D01*

-X229289Y377364D01*

-X228849Y377879D01*

-X228334Y378319D01*

-X227757Y378672D01*

-X227132Y378931D01*

-X226474Y379089D01*

-X225799Y379142D01*

-X225792Y379142D01*

-Y397000D01*

-X230438D01*

-Y356679D01*

-X230376Y356705D01*

-X230100Y356771D01*

-X229818Y356794D01*

-X229536Y356771D01*

-X229260Y356705D01*

-X228998Y356597D01*

-X228757Y356449D01*

-X228541Y356265D01*

-X228357Y356049D01*

-X228209Y355808D01*

-X228101Y355546D01*

-X228035Y355270D01*

-X228012Y354988D01*

-X228035Y354706D01*

-X228101Y354430D01*

-X228209Y354168D01*

-X228357Y353927D01*

-X228541Y353711D01*

-X228757Y353527D01*

-X228998Y353379D01*

-X229260Y353271D01*

-X229536Y353205D01*

-X229818Y353182D01*

-X230100Y353205D01*

-X230376Y353271D01*

-X230438Y353297D01*

-Y294805D01*

-X230159Y294783D01*

-X229883Y294717D01*

-X229621Y294609D01*

-X229380Y294461D01*

-X229164Y294277D01*

-X228980Y294061D01*

-X228832Y293820D01*

-X228724Y293558D01*

-X228658Y293282D01*

-X228635Y293000D01*

-X228658Y292718D01*

-X228724Y292442D01*

-X228832Y292180D01*

-X228980Y291939D01*

-X229164Y291723D01*

-X229380Y291539D01*

-X229621Y291391D01*

-X229883Y291283D01*

-X230159Y291217D01*

-X230438Y291195D01*

-Y248805D01*

-X230159Y248783D01*

-X229883Y248717D01*

-X229621Y248609D01*

-X229380Y248461D01*

-X229164Y248277D01*

-X228980Y248061D01*

-X228832Y247820D01*

-X228724Y247558D01*

-X228658Y247282D01*

-X228635Y247000D01*

-X228658Y246718D01*

-X228724Y246442D01*

-X228832Y246180D01*

-X228980Y245939D01*

-X229164Y245723D01*

-X229380Y245539D01*

-X229621Y245391D01*

-X229883Y245283D01*

-X230159Y245217D01*

-X230438Y245195D01*

-Y149497D01*

-X230380Y149461D01*

-X230164Y149277D01*

-X229980Y149061D01*

-X229832Y148820D01*

-X229724Y148558D01*

-X229658Y148282D01*

-X229635Y148000D01*

-X229658Y147718D01*

-X229724Y147442D01*

-X229832Y147180D01*

-X229980Y146939D01*

-X230164Y146723D01*

-X230380Y146539D01*

-X230438Y146503D01*

-Y97000D01*

-G37*

-G36*

-X225792Y250767D02*X225761Y250774D01*

-X225792Y250811D01*

-Y250767D01*

-G37*

-G36*

-X220438Y397000D02*X225792D01*

-Y379142D01*

-X225124Y379089D01*

-X224466Y378931D01*

-X223841Y378672D01*

-X223264Y378319D01*

-X222749Y377879D01*

-X222309Y377364D01*

-X221956Y376787D01*

-X221697Y376162D01*

-X221539Y375504D01*

-X221486Y374829D01*

-X221539Y374154D01*

-X221697Y373496D01*

-X221956Y372871D01*

-X222309Y372294D01*

-X222749Y371779D01*

-X223264Y371339D01*

-X223841Y370986D01*

-X224466Y370727D01*

-X225124Y370569D01*

-X225792Y370516D01*

-Y369142D01*

-X225124Y369089D01*

-X224466Y368931D01*

-X223841Y368672D01*

-X223264Y368319D01*

-X222749Y367879D01*

-X222309Y367364D01*

-X221956Y366787D01*

-X221697Y366162D01*

-X221539Y365504D01*

-X221486Y364829D01*

-X221539Y364154D01*

-X221697Y363496D01*

-X221956Y362871D01*

-X222309Y362294D01*

-X222749Y361779D01*

-X223264Y361339D01*

-X223841Y360986D01*

-X224466Y360727D01*

-X225124Y360569D01*

-X225792Y360516D01*

-Y253189D01*

-X225718Y253277D01*

-X225502Y253461D01*

-X225261Y253609D01*

-X224999Y253717D01*

-X224723Y253783D01*

-X224441Y253806D01*

-X224159Y253783D01*

-X223883Y253717D01*

-X223643Y253618D01*

-X223667Y253718D01*

-X223684Y254000D01*

-X223667Y254282D01*

-X223601Y254558D01*

-X223493Y254820D01*

-X223345Y255061D01*

-X223161Y255277D01*

-X222945Y255461D01*

-X222704Y255609D01*

-X222442Y255717D01*

-X222166Y255783D01*

-X221884Y255806D01*

-X221602Y255783D01*

-X221326Y255717D01*

-X221064Y255609D01*

-X220823Y255461D01*

-X220607Y255277D01*

-X220438Y255079D01*

-Y257695D01*

-X220441Y257694D01*

-X220723Y257717D01*

-X220999Y257783D01*

-X221261Y257891D01*

-X221502Y258039D01*

-X221718Y258223D01*

-X221902Y258439D01*

-X222050Y258680D01*

-X222158Y258942D01*

-X222224Y259218D01*

-X222241Y259500D01*

-X222224Y259782D01*

-X222158Y260058D01*

-X222050Y260320D01*

-X221902Y260561D01*

-X221718Y260777D01*

-X221502Y260961D01*

-X221261Y261109D01*

-X220999Y261217D01*

-X220723Y261283D01*

-X220441Y261306D01*

-X220438Y261305D01*

-Y263799D01*

-X220447Y263797D01*

-X220729Y263774D01*

-X221011Y263797D01*

-X221287Y263863D01*

-X221549Y263971D01*

-X221790Y264119D01*

-X222006Y264303D01*

-X222190Y264519D01*

-X222338Y264760D01*

-X222446Y265022D01*

-X222512Y265298D01*

-X222529Y265580D01*

-X222512Y265862D01*

-X222446Y266138D01*

-X222338Y266400D01*

-X222190Y266641D01*

-X222006Y266857D01*

-X221790Y267041D01*

-X221549Y267189D01*

-X221287Y267297D01*

-X221011Y267363D01*

-X220729Y267386D01*

-X220447Y267363D01*

-X220438Y267361D01*

-Y271000D01*

-X220502Y271039D01*

-X220718Y271223D01*

-X220902Y271439D01*

-X221050Y271680D01*

-X221158Y271942D01*

-X221224Y272218D01*

-X221241Y272500D01*

-X221224Y272782D01*

-X221158Y273058D01*

-X221050Y273320D01*

-X220902Y273561D01*

-X220718Y273777D01*

-X220502Y273961D01*

-X220438Y274000D01*

-Y397000D01*

-G37*

-G36*

-X223938Y180946D02*X224466Y180727D01*

-X225124Y180569D01*

-X225792Y180516D01*

-Y179142D01*

-X225124Y179089D01*

-X224466Y178931D01*

-X223938Y178712D01*

-Y180946D01*

-G37*

-G36*

-Y193446D02*X224466Y193227D01*

-X225124Y193069D01*

-X225792Y193016D01*

-Y189142D01*

-X225124Y189089D01*

-X224466Y188931D01*

-X223938Y188712D01*

-Y193446D01*

-G37*

-G36*

-Y219003D02*X224121Y218891D01*

-X224383Y218783D01*

-X224659Y218717D01*

-X224941Y218694D01*

-X225223Y218717D01*

-X225499Y218783D01*

-X225761Y218891D01*

-X225792Y218911D01*

-Y201642D01*

-X225124Y201589D01*

-X224466Y201431D01*

-X223938Y201212D01*

-Y219003D01*

-G37*

-G36*

-Y225507D02*X223980Y225439D01*

-X224164Y225223D01*

-X224380Y225039D01*

-X224621Y224891D01*

-X224883Y224783D01*

-X225159Y224717D01*

-X225441Y224694D01*

-X225723Y224717D01*

-X225792Y224733D01*

-Y222089D01*

-X225761Y222109D01*

-X225499Y222217D01*

-X225223Y222283D01*

-X224941Y222306D01*

-X224659Y222283D01*

-X224383Y222217D01*

-X224121Y222109D01*

-X223938Y221997D01*

-Y225507D01*

-G37*

-G36*

-Y234003D02*X224121Y233891D01*

-X224383Y233783D01*

-X224659Y233717D01*

-X224941Y233694D01*

-X225223Y233717D01*

-X225499Y233783D01*

-X225761Y233891D01*

-X225792Y233911D01*

-Y228267D01*

-X225723Y228283D01*

-X225441Y228306D01*

-X225159Y228283D01*

-X224883Y228217D01*

-X224621Y228109D01*

-X224380Y227961D01*

-X224164Y227777D01*

-X223980Y227561D01*

-X223938Y227493D01*

-Y234003D01*

-G37*

-G36*

-Y242270D02*X224159Y242217D01*

-X224441Y242194D01*

-X224723Y242217D01*

-X224999Y242283D01*

-X225261Y242391D01*

-X225502Y242539D01*

-X225718Y242723D01*

-X225792Y242811D01*

-Y237089D01*

-X225761Y237109D01*

-X225499Y237217D01*

-X225223Y237283D01*

-X224941Y237306D01*

-X224659Y237283D01*

-X224383Y237217D01*

-X224121Y237109D01*

-X223938Y236997D01*

-Y242270D01*

-G37*

-G36*

-Y248007D02*X223980Y247939D01*

-X224164Y247723D01*

-X224380Y247539D01*

-X224621Y247391D01*

-X224883Y247283D01*

-X225159Y247217D01*

-X225441Y247194D01*

-X225723Y247217D01*

-X225792Y247233D01*

-Y245189D01*

-X225718Y245277D01*

-X225502Y245461D01*

-X225261Y245609D01*

-X224999Y245717D01*

-X224723Y245783D01*

-X224441Y245806D01*

-X224159Y245783D01*

-X223938Y245730D01*

-Y248007D01*

-G37*

-G36*

-Y250270D02*X224121Y250226D01*

-X223980Y250061D01*

-X223938Y249993D01*

-Y250270D01*

-G37*

-G36*

-X225792Y97000D02*X223938D01*

-Y146195D01*

-X223941Y146194D01*

-X224223Y146217D01*

-X224499Y146283D01*

-X224761Y146391D01*

-X225002Y146539D01*

-X225218Y146723D01*

-X225402Y146939D01*

-X225550Y147180D01*

-X225658Y147442D01*

-X225724Y147718D01*

-X225741Y148000D01*

-X225724Y148282D01*

-X225658Y148558D01*

-X225550Y148820D01*

-X225402Y149061D01*

-X225218Y149277D01*

-X225002Y149461D01*

-X224761Y149609D01*

-X224499Y149717D01*

-X224223Y149783D01*

-X223941Y149806D01*

-X223938Y149805D01*

-Y170946D01*

-X224466Y170727D01*

-X225124Y170569D01*

-X225792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X223938D02*X220438D01*

-Y213195D01*

-X220441Y213194D01*

-X220723Y213217D01*

-X220999Y213283D01*

-X221261Y213391D01*

-X221502Y213539D01*

-X221718Y213723D01*

-X221902Y213939D01*

-X222050Y214180D01*

-X222158Y214442D01*

-X222224Y214718D01*

-X222241Y215000D01*

-X222224Y215282D01*

-X222158Y215558D01*

-X222050Y215820D01*

-X221902Y216061D01*

-X221718Y216277D01*

-X221502Y216461D01*

-X221261Y216609D01*

-X220999Y216717D01*

-X220723Y216783D01*

-X220441Y216806D01*

-X220438Y216805D01*

-Y252921D01*

-X220607Y252723D01*

-X220823Y252539D01*

-X221064Y252391D01*

-X221326Y252283D01*

-X221602Y252217D01*

-X221884Y252194D01*

-X222166Y252217D01*

-X222442Y252283D01*

-X222682Y252382D01*

-X222658Y252282D01*

-X222635Y252000D01*

-X222658Y251718D01*

-X222724Y251442D01*

-X222832Y251180D01*

-X222980Y250939D01*

-X223164Y250723D01*

-X223380Y250539D01*

-X223621Y250391D01*

-X223883Y250283D01*

-X223938Y250270D01*

-Y249993D01*

-X223832Y249820D01*

-X223724Y249558D01*

-X223658Y249282D01*

-X223635Y249000D01*

-X223658Y248718D01*

-X223724Y248442D01*

-X223832Y248180D01*

-X223938Y248007D01*

-Y245730D01*

-X223883Y245717D01*

-X223621Y245609D01*

-X223380Y245461D01*

-X223164Y245277D01*

-X222980Y245061D01*

-X222832Y244820D01*

-X222724Y244558D01*

-X222658Y244282D01*

-X222635Y244000D01*

-X222658Y243718D01*

-X222724Y243442D01*

-X222832Y243180D01*

-X222980Y242939D01*

-X223164Y242723D01*

-X223380Y242539D01*

-X223621Y242391D01*

-X223883Y242283D01*

-X223938Y242270D01*

-Y236997D01*

-X223880Y236961D01*

-X223664Y236777D01*

-X223480Y236561D01*

-X223332Y236320D01*

-X223224Y236058D01*

-X223158Y235782D01*

-X223135Y235500D01*

-X223158Y235218D01*

-X223224Y234942D01*

-X223332Y234680D01*

-X223480Y234439D01*

-X223664Y234223D01*

-X223880Y234039D01*

-X223938Y234003D01*

-Y227493D01*

-X223832Y227320D01*

-X223724Y227058D01*

-X223658Y226782D01*

-X223635Y226500D01*

-X223658Y226218D01*

-X223724Y225942D01*

-X223832Y225680D01*

-X223938Y225507D01*

-Y221997D01*

-X223880Y221961D01*

-X223664Y221777D01*

-X223480Y221561D01*

-X223332Y221320D01*

-X223224Y221058D01*

-X223158Y220782D01*

-X223135Y220500D01*

-X223158Y220218D01*

-X223224Y219942D01*

-X223332Y219680D01*

-X223480Y219439D01*

-X223664Y219223D01*

-X223880Y219039D01*

-X223938Y219003D01*

-Y201212D01*

-X223841Y201172D01*

-X223264Y200819D01*

-X222749Y200379D01*

-X222309Y199864D01*

-X221956Y199287D01*

-X221697Y198662D01*

-X221539Y198004D01*

-X221486Y197329D01*

-X221539Y196654D01*

-X221697Y195996D01*

-X221956Y195371D01*

-X222309Y194794D01*

-X222749Y194279D01*

-X223264Y193839D01*

-X223841Y193486D01*

-X223938Y193446D01*

-Y188712D01*

-X223841Y188672D01*

-X223264Y188319D01*

-X222749Y187879D01*

-X222309Y187364D01*

-X221956Y186787D01*

-X221697Y186162D01*

-X221539Y185504D01*

-X221486Y184829D01*

-X221539Y184154D01*

-X221697Y183496D01*

-X221956Y182871D01*

-X222309Y182294D01*

-X222749Y181779D01*

-X223264Y181339D01*

-X223841Y180986D01*

-X223938Y180946D01*

-Y178712D01*

-X223841Y178672D01*

-X223264Y178319D01*

-X222749Y177879D01*

-X222309Y177364D01*

-X221956Y176787D01*

-X221697Y176162D01*

-X221539Y175504D01*

-X221486Y174829D01*

-X221539Y174154D01*

-X221697Y173496D01*

-X221956Y172871D01*

-X222309Y172294D01*

-X222749Y171779D01*

-X223264Y171339D01*

-X223841Y170986D01*

-X223938Y170946D01*

-Y149805D01*

-X223659Y149783D01*

-X223383Y149717D01*

-X223121Y149609D01*

-X222880Y149461D01*

-X222664Y149277D01*

-X222480Y149061D01*

-X222332Y148820D01*

-X222224Y148558D01*

-X222158Y148282D01*

-X222135Y148000D01*

-X222158Y147718D01*

-X222224Y147442D01*

-X222332Y147180D01*

-X222480Y146939D01*

-X222664Y146723D01*

-X222880Y146539D01*

-X223121Y146391D01*

-X223383Y146283D01*

-X223659Y146217D01*

-X223938Y146195D01*

-Y97000D01*

-G37*

-G36*

-X220438D02*X215792D01*

-Y170516D01*

-X215799Y170516D01*

-X216474Y170569D01*

-X217132Y170727D01*

-X217757Y170986D01*

-X218334Y171339D01*

-X218849Y171779D01*

-X219289Y172294D01*

-X219642Y172871D01*

-X219901Y173496D01*

-X220059Y174154D01*

-X220099Y174829D01*

-X220059Y175504D01*

-X219901Y176162D01*

-X219642Y176787D01*

-X219289Y177364D01*

-X218849Y177879D01*

-X218334Y178319D01*

-X217757Y178672D01*

-X217132Y178931D01*

-X216474Y179089D01*

-X215799Y179142D01*

-X215792Y179142D01*

-Y180516D01*

-X215799Y180516D01*

-X216474Y180569D01*

-X217132Y180727D01*

-X217757Y180986D01*

-X218334Y181339D01*

-X218849Y181779D01*

-X219289Y182294D01*

-X219642Y182871D01*

-X219901Y183496D01*

-X220059Y184154D01*

-X220099Y184829D01*

-X220059Y185504D01*

-X219901Y186162D01*

-X219642Y186787D01*

-X219289Y187364D01*

-X218849Y187879D01*

-X218334Y188319D01*

-X217757Y188672D01*

-X217132Y188931D01*

-X216474Y189089D01*

-X215799Y189142D01*

-X215792Y189142D01*

-Y193016D01*

-X215799Y193016D01*

-X216474Y193069D01*

-X217132Y193227D01*

-X217757Y193486D01*

-X218334Y193839D01*

-X218849Y194279D01*

-X219289Y194794D01*

-X219642Y195371D01*

-X219901Y195996D01*

-X220059Y196654D01*

-X220099Y197329D01*

-X220059Y198004D01*

-X219901Y198662D01*

-X219642Y199287D01*

-X219289Y199864D01*

-X218849Y200379D01*

-X218334Y200819D01*

-X217757Y201172D01*

-X217132Y201431D01*

-X216474Y201589D01*

-X215799Y201642D01*

-X215792Y201642D01*

-Y278277D01*

-X215832Y278180D01*

-X215980Y277939D01*

-X216164Y277723D01*

-X216380Y277539D01*

-X216621Y277391D01*

-X216883Y277283D01*

-X217159Y277217D01*

-X217441Y277194D01*

-X217723Y277217D01*

-X217999Y277283D01*

-X218261Y277391D01*

-X218502Y277539D01*

-X218718Y277723D01*

-X218902Y277939D01*

-X219050Y278180D01*

-X219158Y278442D01*

-X219224Y278718D01*

-X219241Y279000D01*

-X219224Y279282D01*

-X219158Y279558D01*

-X219050Y279820D01*

-X218902Y280061D01*

-X218718Y280277D01*

-X218502Y280461D01*

-X218261Y280609D01*

-X217999Y280717D01*

-X217723Y280783D01*

-X217441Y280806D01*

-X217159Y280783D01*

-X216883Y280717D01*

-X216621Y280609D01*

-X216380Y280461D01*

-X216164Y280277D01*

-X215980Y280061D01*

-X215832Y279820D01*

-X215792Y279723D01*

-Y360516D01*

-X215799Y360516D01*

-X216474Y360569D01*

-X217132Y360727D01*

-X217757Y360986D01*

-X218334Y361339D01*

-X218849Y361779D01*

-X219289Y362294D01*

-X219642Y362871D01*

-X219901Y363496D01*

-X220059Y364154D01*

-X220099Y364829D01*

-X220059Y365504D01*

-X219901Y366162D01*

-X219642Y366787D01*

-X219289Y367364D01*

-X218849Y367879D01*

-X218334Y368319D01*

-X217757Y368672D01*

-X217132Y368931D01*

-X216474Y369089D01*

-X215799Y369142D01*

-X215792Y369142D01*

-Y370516D01*

-X215799Y370516D01*

-X216474Y370569D01*

-X217132Y370727D01*

-X217757Y370986D01*

-X218334Y371339D01*

-X218849Y371779D01*

-X219289Y372294D01*

-X219642Y372871D01*

-X219901Y373496D01*

-X220059Y374154D01*

-X220099Y374829D01*

-X220059Y375504D01*

-X219901Y376162D01*

-X219642Y376787D01*

-X219289Y377364D01*

-X218849Y377879D01*

-X218334Y378319D01*

-X217757Y378672D01*

-X217132Y378931D01*

-X216474Y379089D01*

-X215799Y379142D01*

-X215792Y379142D01*

-Y397000D01*

-X220438D01*

-Y274000D01*

-X220261Y274109D01*

-X219999Y274217D01*

-X219723Y274283D01*

-X219441Y274306D01*

-X219159Y274283D01*

-X218883Y274217D01*

-X218621Y274109D01*

-X218380Y273961D01*

-X218164Y273777D01*

-X217980Y273561D01*

-X217832Y273320D01*

-X217724Y273058D01*

-X217658Y272782D01*

-X217635Y272500D01*

-X217658Y272218D01*

-X217724Y271942D01*

-X217832Y271680D01*

-X217980Y271439D01*

-X218164Y271223D01*

-X218380Y271039D01*

-X218621Y270891D01*

-X218883Y270783D01*

-X219159Y270717D01*

-X219441Y270694D01*

-X219723Y270717D01*

-X219999Y270783D01*

-X220261Y270891D01*

-X220438Y271000D01*

-Y267361D01*

-X220171Y267297D01*

-X219909Y267189D01*

-X219668Y267041D01*

-X219452Y266857D01*

-X219268Y266641D01*

-X219120Y266400D01*

-X219012Y266138D01*

-X218946Y265862D01*

-X218923Y265580D01*

-X218946Y265298D01*

-X219012Y265022D01*

-X219120Y264760D01*

-X219268Y264519D01*

-X219452Y264303D01*

-X219668Y264119D01*

-X219909Y263971D01*

-X220171Y263863D01*

-X220438Y263799D01*

-Y261305D01*

-X220229Y261289D01*

-X220241Y261500D01*

-X220224Y261782D01*

-X220158Y262058D01*

-X220050Y262320D01*

-X219902Y262561D01*

-X219718Y262777D01*

-X219502Y262961D01*

-X219261Y263109D01*

-X218999Y263217D01*

-X218723Y263283D01*

-X218441Y263306D01*

-X218159Y263283D01*

-X217883Y263217D01*

-X217621Y263109D01*

-X217380Y262961D01*

-X217164Y262777D01*

-X216980Y262561D01*

-X216832Y262320D01*

-X216724Y262058D01*

-X216658Y261782D01*

-X216635Y261500D01*

-X216658Y261218D01*

-X216724Y260942D01*

-X216832Y260680D01*

-X216980Y260439D01*

-X217164Y260223D01*

-X217380Y260039D01*

-X217621Y259891D01*

-X217883Y259783D01*

-X218159Y259717D01*

-X218441Y259694D01*

-X218652Y259711D01*

-X218635Y259500D01*

-X218658Y259218D01*

-X218724Y258942D01*

-X218832Y258680D01*

-X218980Y258439D01*

-X219164Y258223D01*

-X219380Y258039D01*

-X219621Y257891D01*

-X219883Y257783D01*

-X220159Y257717D01*

-X220438Y257695D01*

-Y255079D01*

-X220423Y255061D01*

-X220275Y254820D01*

-X220167Y254558D01*

-X220101Y254282D01*

-X220078Y254000D01*

-X220101Y253718D01*

-X220167Y253442D01*

-X220275Y253180D01*

-X220423Y252939D01*

-X220438Y252921D01*

-Y216805D01*

-X220159Y216783D01*

-X219883Y216717D01*

-X219621Y216609D01*

-X219380Y216461D01*

-X219164Y216277D01*

-X218980Y216061D01*

-X218832Y215820D01*

-X218724Y215558D01*

-X218658Y215282D01*

-X218635Y215000D01*

-X218658Y214718D01*

-X218724Y214442D01*

-X218832Y214180D01*

-X218980Y213939D01*

-X219164Y213723D01*

-X219380Y213539D01*

-X219621Y213391D01*

-X219883Y213283D01*

-X220159Y213217D01*

-X220438Y213195D01*

-Y97000D01*

-G37*

-G36*

-X212938Y181618D02*X213264Y181339D01*

-X213841Y180986D01*

-X214466Y180727D01*

-X215124Y180569D01*

-X215792Y180516D01*

-Y179142D01*

-X215124Y179089D01*

-X214466Y178931D01*

-X213841Y178672D01*

-X213264Y178319D01*

-X212938Y178040D01*

-Y181618D01*

-G37*

-G36*

-Y194118D02*X213264Y193839D01*

-X213841Y193486D01*

-X214466Y193227D01*

-X215124Y193069D01*

-X215792Y193016D01*

-Y189142D01*

-X215124Y189089D01*

-X214466Y188931D01*

-X213841Y188672D01*

-X213264Y188319D01*

-X212938Y188040D01*

-Y194118D01*

-G37*

-G36*

-Y361618D02*X213264Y361339D01*

-X213841Y360986D01*

-X214466Y360727D01*

-X215124Y360569D01*

-X215792Y360516D01*

-Y279723D01*

-X215724Y279558D01*

-X215658Y279282D01*

-X215635Y279000D01*

-X215658Y278718D01*

-X215724Y278442D01*

-X215792Y278277D01*

-Y201642D01*

-X215124Y201589D01*

-X214466Y201431D01*

-X213841Y201172D01*

-X213264Y200819D01*

-X212938Y200540D01*

-Y236195D01*

-X212941Y236194D01*

-X213223Y236217D01*

-X213499Y236283D01*

-X213761Y236391D01*

-X214002Y236539D01*

-X214218Y236723D01*

-X214402Y236939D01*

-X214550Y237180D01*

-X214658Y237442D01*

-X214724Y237718D01*

-X214741Y238000D01*

-X214724Y238282D01*

-X214658Y238558D01*

-X214550Y238820D01*

-X214402Y239061D01*

-X214218Y239277D01*

-X214002Y239461D01*

-X213761Y239609D01*

-X213499Y239717D01*

-X213223Y239783D01*

-X212941Y239806D01*

-X212938Y239805D01*

-Y361618D01*

-G37*

-G36*

-Y371618D02*X213264Y371339D01*

-X213841Y370986D01*

-X214466Y370727D01*

-X215124Y370569D01*

-X215792Y370516D01*

-Y369142D01*

-X215124Y369089D01*

-X214466Y368931D01*

-X213841Y368672D01*

-X213264Y368319D01*

-X212938Y368040D01*

-Y371618D01*

-G37*

-G36*

-Y397000D02*X215792D01*

-Y379142D01*

-X215124Y379089D01*

-X214466Y378931D01*

-X213841Y378672D01*

-X213264Y378319D01*

-X212938Y378040D01*

-Y397000D01*

-G37*

-G36*

-X215792Y97000D02*X212938D01*

-Y171618D01*

-X213264Y171339D01*

-X213841Y170986D01*

-X214466Y170727D01*

-X215124Y170569D01*

-X215792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X212938D02*X210438D01*

-Y146998D01*

-X210550Y147180D01*

-X210658Y147442D01*

-X210724Y147718D01*

-X210741Y148000D01*

-X210724Y148282D01*

-X210658Y148558D01*

-X210550Y148820D01*

-X210438Y149002D01*

-Y210695D01*

-X210441Y210694D01*

-X210723Y210717D01*

-X210999Y210783D01*

-X211261Y210891D01*

-X211502Y211039D01*

-X211718Y211223D01*

-X211902Y211439D01*

-X212050Y211680D01*

-X212158Y211942D01*

-X212224Y212218D01*

-X212241Y212500D01*

-X212224Y212782D01*

-X212158Y213058D01*

-X212050Y213320D01*

-X211902Y213561D01*

-X211718Y213777D01*

-X211502Y213961D01*

-X211261Y214109D01*

-X210999Y214217D01*

-X210723Y214283D01*

-X210441Y214306D01*

-X210438Y214305D01*

-Y397000D01*

-X212938D01*

-Y378040D01*

-X212749Y377879D01*

-X212309Y377364D01*

-X211956Y376787D01*

-X211697Y376162D01*

-X211539Y375504D01*

-X211486Y374829D01*

-X211539Y374154D01*

-X211697Y373496D01*

-X211956Y372871D01*

-X212309Y372294D01*

-X212749Y371779D01*

-X212938Y371618D01*

-Y368040D01*

-X212749Y367879D01*

-X212309Y367364D01*

-X211956Y366787D01*

-X211697Y366162D01*

-X211539Y365504D01*

-X211486Y364829D01*

-X211539Y364154D01*

-X211697Y363496D01*

-X211956Y362871D01*

-X212309Y362294D01*

-X212749Y361779D01*

-X212938Y361618D01*

-Y239805D01*

-X212659Y239783D01*

-X212383Y239717D01*

-X212121Y239609D01*

-X211880Y239461D01*

-X211664Y239277D01*

-X211480Y239061D01*

-X211332Y238820D01*

-X211224Y238558D01*

-X211158Y238282D01*

-X211135Y238000D01*

-X211158Y237718D01*

-X211224Y237442D01*

-X211332Y237180D01*

-X211480Y236939D01*

-X211664Y236723D01*

-X211880Y236539D01*

-X212121Y236391D01*

-X212383Y236283D01*

-X212659Y236217D01*

-X212938Y236195D01*

-Y200540D01*

-X212749Y200379D01*

-X212309Y199864D01*

-X211956Y199287D01*

-X211697Y198662D01*

-X211539Y198004D01*

-X211486Y197329D01*

-X211539Y196654D01*

-X211697Y195996D01*

-X211956Y195371D01*

-X212309Y194794D01*

-X212749Y194279D01*

-X212938Y194118D01*

-Y188040D01*

-X212749Y187879D01*

-X212309Y187364D01*

-X211956Y186787D01*

-X211697Y186162D01*

-X211539Y185504D01*

-X211486Y184829D01*

-X211539Y184154D01*

-X211697Y183496D01*

-X211956Y182871D01*

-X212309Y182294D01*

-X212749Y181779D01*

-X212938Y181618D01*

-Y178040D01*

-X212749Y177879D01*

-X212309Y177364D01*

-X211956Y176787D01*

-X211697Y176162D01*

-X211539Y175504D01*

-X211486Y174829D01*

-X211539Y174154D01*

-X211697Y173496D01*

-X211956Y172871D01*

-X212309Y172294D01*

-X212749Y171779D01*

-X212938Y171618D01*

-Y97000D01*

-G37*

-G36*

-X210438D02*X205792D01*

-Y170516D01*

-X205799Y170516D01*

-X206474Y170569D01*

-X207132Y170727D01*

-X207757Y170986D01*

-X208334Y171339D01*

-X208849Y171779D01*

-X209289Y172294D01*

-X209642Y172871D01*

-X209901Y173496D01*

-X210059Y174154D01*

-X210099Y174829D01*

-X210059Y175504D01*

-X209901Y176162D01*

-X209642Y176787D01*

-X209289Y177364D01*

-X208849Y177879D01*

-X208334Y178319D01*

-X207757Y178672D01*

-X207132Y178931D01*

-X206474Y179089D01*

-X205799Y179142D01*

-X205792Y179142D01*

-Y180516D01*

-X205799Y180516D01*

-X206474Y180569D01*

-X207132Y180727D01*

-X207757Y180986D01*

-X208334Y181339D01*

-X208849Y181779D01*

-X209289Y182294D01*

-X209642Y182871D01*

-X209901Y183496D01*

-X210059Y184154D01*

-X210099Y184829D01*

-X210059Y185504D01*

-X209901Y186162D01*

-X209642Y186787D01*

-X209289Y187364D01*

-X208849Y187879D01*

-X208334Y188319D01*

-X207757Y188672D01*

-X207132Y188931D01*

-X206474Y189089D01*

-X205799Y189142D01*

-X205792Y189142D01*

-Y193016D01*

-X205799Y193016D01*

-X206474Y193069D01*

-X207132Y193227D01*

-X207757Y193486D01*

-X208334Y193839D01*

-X208849Y194279D01*

-X209289Y194794D01*

-X209642Y195371D01*

-X209901Y195996D01*

-X210059Y196654D01*

-X210099Y197329D01*

-X210059Y198004D01*

-X209901Y198662D01*

-X209642Y199287D01*

-X209289Y199864D01*

-X208849Y200379D01*

-X208334Y200819D01*

-X207757Y201172D01*

-X207132Y201431D01*

-X206474Y201589D01*

-X205799Y201642D01*

-X205792Y201642D01*

-Y275233D01*

-X205999Y275283D01*

-X206261Y275391D01*

-X206502Y275539D01*

-X206718Y275723D01*

-X206902Y275939D01*

-X207050Y276180D01*

-X207158Y276442D01*

-X207224Y276718D01*

-X207241Y277000D01*

-X207224Y277282D01*

-X207158Y277558D01*

-X207050Y277820D01*

-X206902Y278061D01*

-X206718Y278277D01*

-X206502Y278461D01*

-X206261Y278609D01*

-X205999Y278717D01*

-X205792Y278767D01*

-Y360516D01*

-X205799Y360516D01*

-X206474Y360569D01*

-X207132Y360727D01*

-X207757Y360986D01*

-X208334Y361339D01*

-X208849Y361779D01*

-X209289Y362294D01*

-X209642Y362871D01*

-X209901Y363496D01*

-X210059Y364154D01*

-X210099Y364829D01*

-X210059Y365504D01*

-X209901Y366162D01*

-X209642Y366787D01*

-X209289Y367364D01*

-X208849Y367879D01*

-X208334Y368319D01*

-X207757Y368672D01*

-X207132Y368931D01*

-X206474Y369089D01*

-X205799Y369142D01*

-X205792Y369142D01*

-Y370516D01*

-X205799Y370516D01*

-X206474Y370569D01*

-X207132Y370727D01*

-X207757Y370986D01*

-X208334Y371339D01*

-X208849Y371779D01*

-X209289Y372294D01*

-X209642Y372871D01*

-X209901Y373496D01*

-X210059Y374154D01*

-X210099Y374829D01*

-X210059Y375504D01*

-X209901Y376162D01*

-X209642Y376787D01*

-X209289Y377364D01*

-X208849Y377879D01*

-X208334Y378319D01*

-X207757Y378672D01*

-X207132Y378931D01*

-X206474Y379089D01*

-X205799Y379142D01*

-X205792Y379142D01*

-Y397000D01*

-X210438D01*

-Y214305D01*

-X210159Y214283D01*

-X209883Y214217D01*

-X209621Y214109D01*

-X209380Y213961D01*

-X209164Y213777D01*

-X208980Y213561D01*

-X208832Y213320D01*

-X208724Y213058D01*

-X208658Y212782D01*

-X208635Y212500D01*

-X208658Y212218D01*

-X208724Y211942D01*

-X208832Y211680D01*

-X208980Y211439D01*

-X209164Y211223D01*

-X209380Y211039D01*

-X209621Y210891D01*

-X209883Y210783D01*

-X210159Y210717D01*

-X210438Y210695D01*

-Y149002D01*

-X210402Y149061D01*

-X210218Y149277D01*

-X210002Y149461D01*

-X209761Y149609D01*

-X209499Y149717D01*

-X209223Y149783D01*

-X208941Y149806D01*

-X208659Y149783D01*

-X208383Y149717D01*

-X208121Y149609D01*

-X207880Y149461D01*

-X207664Y149277D01*

-X207480Y149061D01*

-X207332Y148820D01*

-X207224Y148558D01*

-X207158Y148282D01*

-X207135Y148000D01*

-X207158Y147718D01*

-X207224Y147442D01*

-X207332Y147180D01*

-X207480Y146939D01*

-X207664Y146723D01*

-X207880Y146539D01*

-X208121Y146391D01*

-X208383Y146283D01*

-X208659Y146217D01*

-X208941Y146194D01*

-X209223Y146217D01*

-X209499Y146283D01*

-X209761Y146391D01*

-X210002Y146539D01*

-X210218Y146723D01*

-X210402Y146939D01*

-X210438Y146998D01*

-Y97000D01*

-G37*

-G36*

-X202438Y182143D02*X202749Y181779D01*

-X203264Y181339D01*

-X203841Y180986D01*

-X204466Y180727D01*

-X205124Y180569D01*

-X205792Y180516D01*

-Y179142D01*

-X205124Y179089D01*

-X204466Y178931D01*

-X203841Y178672D01*

-X203264Y178319D01*

-X202749Y177879D01*

-X202438Y177515D01*

-Y182143D01*

-G37*

-G36*

-Y194643D02*X202749Y194279D01*

-X203264Y193839D01*

-X203841Y193486D01*

-X204466Y193227D01*

-X205124Y193069D01*

-X205792Y193016D01*

-Y189142D01*

-X205124Y189089D01*

-X204466Y188931D01*

-X203841Y188672D01*

-X203264Y188319D01*

-X202749Y187879D01*

-X202438Y187515D01*

-Y194643D01*

-G37*

-G36*

-Y362143D02*X202749Y361779D01*

-X203264Y361339D01*

-X203841Y360986D01*

-X204466Y360727D01*

-X205124Y360569D01*

-X205792Y360516D01*

-Y278767D01*

-X205723Y278783D01*

-X205441Y278806D01*

-X205159Y278783D01*

-X204883Y278717D01*

-X204621Y278609D01*

-X204380Y278461D01*

-X204164Y278277D01*

-X203980Y278061D01*

-X203832Y277820D01*

-X203724Y277558D01*

-X203658Y277282D01*

-X203635Y277000D01*

-X203658Y276718D01*

-X203724Y276442D01*

-X203832Y276180D01*

-X203980Y275939D01*

-X204164Y275723D01*

-X204380Y275539D01*

-X204621Y275391D01*

-X204883Y275283D01*

-X205159Y275217D01*

-X205441Y275194D01*

-X205723Y275217D01*

-X205792Y275233D01*

-Y201642D01*

-X205124Y201589D01*

-X204466Y201431D01*

-X203841Y201172D01*

-X203264Y200819D01*

-X202749Y200379D01*

-X202438Y200015D01*

-Y210695D01*

-X202441Y210694D01*

-X202723Y210717D01*

-X202999Y210783D01*

-X203261Y210891D01*

-X203502Y211039D01*

-X203718Y211223D01*

-X203902Y211439D01*

-X204050Y211680D01*

-X204158Y211942D01*

-X204224Y212218D01*

-X204241Y212500D01*

-X204224Y212782D01*

-X204158Y213058D01*

-X204050Y213320D01*

-X203902Y213561D01*

-X203718Y213777D01*

-X203502Y213961D01*

-X203261Y214109D01*

-X202999Y214217D01*

-X202723Y214283D01*

-X202441Y214306D01*

-X202438Y214305D01*

-Y236507D01*

-X202480Y236439D01*

-X202664Y236223D01*

-X202880Y236039D01*

-X203121Y235891D01*

-X203383Y235783D01*

-X203659Y235717D01*

-X203941Y235694D01*

-X204223Y235717D01*

-X204499Y235783D01*

-X204761Y235891D01*

-X205002Y236039D01*

-X205218Y236223D01*

-X205402Y236439D01*

-X205550Y236680D01*

-X205658Y236942D01*

-X205724Y237218D01*

-X205741Y237500D01*

-X205724Y237782D01*

-X205658Y238058D01*

-X205550Y238320D01*

-X205402Y238561D01*

-X205218Y238777D01*

-X205002Y238961D01*

-X204761Y239109D01*

-X204499Y239217D01*

-X204223Y239283D01*

-X203941Y239306D01*

-X203659Y239283D01*

-X203383Y239217D01*

-X203121Y239109D01*

-X202880Y238961D01*

-X202664Y238777D01*

-X202480Y238561D01*

-X202438Y238493D01*

-Y362143D01*

-G37*

-G36*

-Y372143D02*X202749Y371779D01*

-X203264Y371339D01*

-X203841Y370986D01*

-X204466Y370727D01*

-X205124Y370569D01*

-X205792Y370516D01*

-Y369142D01*

-X205124Y369089D01*

-X204466Y368931D01*

-X203841Y368672D01*

-X203264Y368319D01*

-X202749Y367879D01*

-X202438Y367515D01*

-Y372143D01*

-G37*

-G36*

-Y397000D02*X205792D01*

-Y379142D01*

-X205124Y379089D01*

-X204466Y378931D01*

-X203841Y378672D01*

-X203264Y378319D01*

-X202749Y377879D01*

-X202438Y377515D01*

-Y397000D01*

-G37*

-G36*

-X205792Y97000D02*X202438D01*

-Y172143D01*

-X202749Y171779D01*

-X203264Y171339D01*

-X203841Y170986D01*

-X204466Y170727D01*

-X205124Y170569D01*

-X205792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X202438D02*X198438D01*

-Y120695D01*

-X198441Y120694D01*

-X198723Y120717D01*

-X198999Y120783D01*

-X199261Y120891D01*

-X199502Y121039D01*

-X199718Y121223D01*

-X199902Y121439D01*

-X200050Y121680D01*

-X200158Y121942D01*

-X200224Y122218D01*

-X200241Y122500D01*

-X200224Y122782D01*

-X200158Y123058D01*

-X200050Y123320D01*

-X199902Y123561D01*

-X199718Y123777D01*

-X199502Y123961D01*

-X199261Y124109D01*

-X198999Y124217D01*

-X198723Y124283D01*

-X198441Y124306D01*

-X198438Y124305D01*

-Y171428D01*

-X198849Y171779D01*

-X199289Y172294D01*

-X199642Y172871D01*

-X199901Y173496D01*

-X200059Y174154D01*

-X200099Y174829D01*

-X200059Y175504D01*

-X199901Y176162D01*

-X199642Y176787D01*

-X199289Y177364D01*

-X198849Y177879D01*

-X198438Y178230D01*

-Y181428D01*

-X198849Y181779D01*

-X199289Y182294D01*

-X199642Y182871D01*

-X199901Y183496D01*

-X200059Y184154D01*

-X200099Y184829D01*

-X200059Y185504D01*

-X199901Y186162D01*

-X199642Y186787D01*

-X199289Y187364D01*

-X198849Y187879D01*

-X198438Y188230D01*

-Y193037D01*

-X199256Y193038D01*

-X199409Y193075D01*

-X199554Y193135D01*

-X199689Y193217D01*

-X199808Y193320D01*

-X199911Y193439D01*

-X199993Y193574D01*

-X200053Y193719D01*

-X200090Y193872D01*

-X200099Y194029D01*

-X200090Y200786D01*

-X200053Y200939D01*

-X199993Y201084D01*

-X199911Y201219D01*

-X199808Y201338D01*

-X199689Y201441D01*

-X199554Y201523D01*

-X199409Y201583D01*

-X199256Y201620D01*

-X199099Y201629D01*

-X198438Y201628D01*

-Y260695D01*

-X198441Y260694D01*

-X198723Y260717D01*

-X198999Y260783D01*

-X199261Y260891D01*

-X199502Y261039D01*

-X199718Y261223D01*

-X199902Y261439D01*

-X200050Y261680D01*

-X200158Y261942D01*

-X200224Y262218D01*

-X200241Y262500D01*

-X200224Y262782D01*

-X200158Y263058D01*

-X200050Y263320D01*

-X199902Y263561D01*

-X199718Y263777D01*

-X199502Y263961D01*

-X199261Y264109D01*

-X198999Y264217D01*

-X198723Y264283D01*

-X198441Y264306D01*

-X198438Y264305D01*

-Y267695D01*

-X198441Y267694D01*

-X198723Y267717D01*

-X198999Y267783D01*

-X199261Y267891D01*

-X199502Y268039D01*

-X199718Y268223D01*

-X199902Y268439D01*

-X200050Y268680D01*

-X200158Y268942D01*

-X200224Y269218D01*

-X200241Y269500D01*

-X200224Y269782D01*

-X200158Y270058D01*

-X200050Y270320D01*

-X199902Y270561D01*

-X199718Y270777D01*

-X199502Y270961D01*

-X199261Y271109D01*

-X198999Y271217D01*

-X198723Y271283D01*

-X198441Y271306D01*

-X198438Y271305D01*

-Y307000D01*

-X198502Y307039D01*

-X198718Y307223D01*

-X198902Y307439D01*

-X199050Y307680D01*

-X199158Y307942D01*

-X199224Y308218D01*

-X199241Y308500D01*

-X199224Y308782D01*

-X199158Y309058D01*

-X199050Y309320D01*

-X198902Y309561D01*

-X198718Y309777D01*

-X198502Y309961D01*

-X198438Y310000D01*

-Y313000D01*

-X198502Y313039D01*

-X198718Y313223D01*

-X198902Y313439D01*

-X199050Y313680D01*

-X199158Y313942D01*

-X199224Y314218D01*

-X199241Y314500D01*

-X199224Y314782D01*

-X199158Y315058D01*

-X199050Y315320D01*

-X198902Y315561D01*

-X198718Y315777D01*

-X198502Y315961D01*

-X198438Y316000D01*

-Y361428D01*

-X198849Y361779D01*

-X199289Y362294D01*

-X199642Y362871D01*

-X199901Y363496D01*

-X200059Y364154D01*

-X200099Y364829D01*

-X200059Y365504D01*

-X199901Y366162D01*

-X199642Y366787D01*

-X199289Y367364D01*

-X198849Y367879D01*

-X198438Y368230D01*

-Y371428D01*

-X198849Y371779D01*

-X199289Y372294D01*

-X199642Y372871D01*

-X199901Y373496D01*

-X200059Y374154D01*

-X200099Y374829D01*

-X200059Y375504D01*

-X199901Y376162D01*

-X199642Y376787D01*

-X199289Y377364D01*

-X198849Y377879D01*

-X198438Y378230D01*

-Y397000D01*

-X202438D01*

-Y377515D01*

-X202309Y377364D01*

-X201956Y376787D01*

-X201697Y376162D01*

-X201539Y375504D01*

-X201486Y374829D01*

-X201539Y374154D01*

-X201697Y373496D01*

-X201956Y372871D01*

-X202309Y372294D01*

-X202438Y372143D01*

-Y367515D01*

-X202309Y367364D01*

-X201956Y366787D01*

-X201697Y366162D01*

-X201539Y365504D01*

-X201486Y364829D01*

-X201539Y364154D01*

-X201697Y363496D01*

-X201956Y362871D01*

-X202309Y362294D01*

-X202438Y362143D01*

-Y238493D01*

-X202332Y238320D01*

-X202224Y238058D01*

-X202158Y237782D01*

-X202135Y237500D01*

-X202158Y237218D01*

-X202224Y236942D01*

-X202332Y236680D01*

-X202438Y236507D01*

-Y214305D01*

-X202159Y214283D01*

-X201883Y214217D01*

-X201621Y214109D01*

-X201380Y213961D01*

-X201164Y213777D01*

-X200980Y213561D01*

-X200832Y213320D01*

-X200724Y213058D01*

-X200658Y212782D01*

-X200635Y212500D01*

-X200658Y212218D01*

-X200724Y211942D01*

-X200832Y211680D01*

-X200980Y211439D01*

-X201164Y211223D01*

-X201380Y211039D01*

-X201621Y210891D01*

-X201883Y210783D01*

-X202159Y210717D01*

-X202438Y210695D01*

-Y200015D01*

-X202309Y199864D01*

-X201956Y199287D01*

-X201697Y198662D01*

-X201539Y198004D01*

-X201486Y197329D01*

-X201539Y196654D01*

-X201697Y195996D01*

-X201956Y195371D01*

-X202309Y194794D01*

-X202438Y194643D01*

-Y187515D01*

-X202309Y187364D01*

-X201956Y186787D01*

-X201697Y186162D01*

-X201539Y185504D01*

-X201486Y184829D01*

-X201539Y184154D01*

-X201697Y183496D01*

-X201956Y182871D01*

-X202309Y182294D01*

-X202438Y182143D01*

-Y177515D01*

-X202309Y177364D01*

-X201956Y176787D01*

-X201697Y176162D01*

-X201539Y175504D01*

-X201486Y174829D01*

-X201539Y174154D01*

-X201697Y173496D01*

-X201956Y172871D01*

-X202309Y172294D01*

-X202438Y172143D01*

-Y97000D01*

-G37*

-G36*

-X198438Y378230D02*X198334Y378319D01*

-X197757Y378672D01*

-X197132Y378931D01*

-X196474Y379089D01*

-X195799Y379142D01*

-X195792Y379142D01*

-Y397000D01*

-X198438D01*

-Y378230D01*

-G37*

-G36*

-Y368230D02*X198334Y368319D01*

-X197757Y368672D01*

-X197132Y368931D01*

-X196474Y369089D01*

-X195799Y369142D01*

-X195792Y369142D01*

-Y370516D01*

-X195799Y370516D01*

-X196474Y370569D01*

-X197132Y370727D01*

-X197757Y370986D01*

-X198334Y371339D01*

-X198438Y371428D01*

-Y368230D01*

-G37*

-G36*

-Y316000D02*X198261Y316109D01*

-X197999Y316217D01*

-X197723Y316283D01*

-X197441Y316306D01*

-X197159Y316283D01*

-X196883Y316217D01*

-X196621Y316109D01*

-X196380Y315961D01*

-X196164Y315777D01*

-X195980Y315561D01*

-X195832Y315320D01*

-X195792Y315223D01*

-Y360516D01*

-X195799Y360516D01*

-X196474Y360569D01*

-X197132Y360727D01*

-X197757Y360986D01*

-X198334Y361339D01*

-X198438Y361428D01*

-Y316000D01*

-G37*

-G36*

-Y310000D02*X198261Y310109D01*

-X197999Y310217D01*

-X197723Y310283D01*

-X197441Y310306D01*

-X197159Y310283D01*

-X196883Y310217D01*

-X196621Y310109D01*

-X196380Y309961D01*

-X196164Y309777D01*

-X195980Y309561D01*

-X195832Y309320D01*

-X195792Y309223D01*

-Y309733D01*

-X195999Y309783D01*

-X196261Y309891D01*

-X196502Y310039D01*

-X196718Y310223D01*

-X196902Y310439D01*

-X197050Y310680D01*

-X197158Y310942D01*

-X197224Y311218D01*

-X197241Y311500D01*

-X197224Y311782D01*

-X197158Y312058D01*

-X197050Y312320D01*

-X196902Y312561D01*

-X196718Y312777D01*

-X196502Y312961D01*

-X196261Y313109D01*

-X195999Y313217D01*

-X195792Y313267D01*

-Y313777D01*

-X195832Y313680D01*

-X195980Y313439D01*

-X196164Y313223D01*

-X196380Y313039D01*

-X196621Y312891D01*

-X196883Y312783D01*

-X197159Y312717D01*

-X197441Y312694D01*

-X197723Y312717D01*

-X197999Y312783D01*

-X198261Y312891D01*

-X198438Y313000D01*

-Y310000D01*

-G37*

-G36*

-Y201628D02*X195792Y201624D01*

-Y307777D01*

-X195832Y307680D01*

-X195980Y307439D01*

-X196164Y307223D01*

-X196380Y307039D01*

-X196621Y306891D01*

-X196883Y306783D01*

-X197159Y306717D01*

-X197441Y306694D01*

-X197723Y306717D01*

-X197999Y306783D01*

-X198261Y306891D01*

-X198438Y307000D01*

-Y271305D01*

-X198159Y271283D01*

-X197883Y271217D01*

-X197621Y271109D01*

-X197380Y270961D01*

-X197164Y270777D01*

-X196980Y270561D01*

-X196832Y270320D01*

-X196724Y270058D01*

-X196658Y269782D01*

-X196635Y269500D01*

-X196658Y269218D01*

-X196724Y268942D01*

-X196832Y268680D01*

-X196980Y268439D01*

-X197164Y268223D01*

-X197380Y268039D01*

-X197621Y267891D01*

-X197883Y267783D01*

-X198159Y267717D01*

-X198438Y267695D01*

-Y264305D01*

-X198159Y264283D01*

-X197883Y264217D01*

-X197621Y264109D01*

-X197380Y263961D01*

-X197164Y263777D01*

-X196980Y263561D01*

-X196832Y263320D01*

-X196724Y263058D01*

-X196658Y262782D01*

-X196635Y262500D01*

-X196658Y262218D01*

-X196724Y261942D01*

-X196832Y261680D01*

-X196980Y261439D01*

-X197164Y261223D01*

-X197380Y261039D01*

-X197621Y260891D01*

-X197883Y260783D01*

-X198159Y260717D01*

-X198438Y260695D01*

-Y201628D01*

-G37*

-G36*

-Y188230D02*X198334Y188319D01*

-X197757Y188672D01*

-X197132Y188931D01*

-X196474Y189089D01*

-X195799Y189142D01*

-X195792Y189142D01*

-Y193034D01*

-X198438Y193037D01*

-Y188230D01*

-G37*

-G36*

-Y178230D02*X198334Y178319D01*

-X197757Y178672D01*

-X197132Y178931D01*

-X196474Y179089D01*

-X195799Y179142D01*

-X195792Y179142D01*

-Y180516D01*

-X195799Y180516D01*

-X196474Y180569D01*

-X197132Y180727D01*

-X197757Y180986D01*

-X198334Y181339D01*

-X198438Y181428D01*

-Y178230D01*

-G37*

-G36*

-Y97000D02*X195792D01*

-Y131233D01*

-X195999Y131283D01*

-X196261Y131391D01*

-X196502Y131539D01*

-X196718Y131723D01*

-X196902Y131939D01*

-X197050Y132180D01*

-X197158Y132442D01*

-X197224Y132718D01*

-X197241Y133000D01*

-X197224Y133282D01*

-X197158Y133558D01*

-X197050Y133820D01*

-X196902Y134061D01*

-X196718Y134277D01*

-X196502Y134461D01*

-X196261Y134609D01*

-X195999Y134717D01*

-X195792Y134767D01*

-Y170516D01*

-X195799Y170516D01*

-X196474Y170569D01*

-X197132Y170727D01*

-X197757Y170986D01*

-X198334Y171339D01*

-X198438Y171428D01*

-Y124305D01*

-X198159Y124283D01*

-X197883Y124217D01*

-X197621Y124109D01*

-X197380Y123961D01*

-X197164Y123777D01*

-X196980Y123561D01*

-X196832Y123320D01*

-X196724Y123058D01*

-X196658Y122782D01*

-X196635Y122500D01*

-X196658Y122218D01*

-X196724Y121942D01*

-X196832Y121680D01*

-X196980Y121439D01*

-X197164Y121223D01*

-X197380Y121039D01*

-X197621Y120891D01*

-X197883Y120783D01*

-X198159Y120717D01*

-X198438Y120695D01*

-Y97000D01*

-G37*

-G36*

-X193938Y170946D02*X194466Y170727D01*

-X195124Y170569D01*

-X195792Y170516D01*

-Y134767D01*

-X195723Y134783D01*

-X195441Y134806D01*

-X195159Y134783D01*

-X194883Y134717D01*

-X194621Y134609D01*

-X194380Y134461D01*

-X194164Y134277D01*

-X193980Y134061D01*

-X193938Y133993D01*

-Y170946D01*

-G37*

-G36*

-Y180946D02*X194466Y180727D01*

-X195124Y180569D01*

-X195792Y180516D01*

-Y179142D01*

-X195124Y179089D01*

-X194466Y178931D01*

-X193938Y178712D01*

-Y180946D01*

-G37*

-G36*

-Y193031D02*X195792Y193034D01*

-Y189142D01*

-X195124Y189089D01*

-X194466Y188931D01*

-X193938Y188712D01*

-Y193031D01*

-G37*

-G36*

-Y310507D02*X193980Y310439D01*

-X194164Y310223D01*

-X194380Y310039D01*

-X194621Y309891D01*

-X194883Y309783D01*

-X195159Y309717D01*

-X195441Y309694D01*

-X195723Y309717D01*

-X195792Y309733D01*

-Y309223D01*

-X195724Y309058D01*

-X195658Y308782D01*

-X195635Y308500D01*

-X195658Y308218D01*

-X195724Y307942D01*

-X195792Y307777D01*

-Y201624D01*

-X193938Y201622D01*

-Y210695D01*

-X193941Y210694D01*

-X194223Y210717D01*

-X194499Y210783D01*

-X194761Y210891D01*

-X195002Y211039D01*

-X195218Y211223D01*

-X195402Y211439D01*

-X195550Y211680D01*

-X195658Y211942D01*

-X195724Y212218D01*

-X195741Y212500D01*

-X195724Y212782D01*

-X195658Y213058D01*

-X195550Y213320D01*

-X195402Y213561D01*

-X195218Y213777D01*

-X195002Y213961D01*

-X194761Y214109D01*

-X194499Y214217D01*

-X194223Y214283D01*

-X193941Y214306D01*

-X193938Y214305D01*

-Y235195D01*

-X193941Y235194D01*

-X194223Y235217D01*

-X194499Y235283D01*

-X194761Y235391D01*

-X195002Y235539D01*

-X195218Y235723D01*

-X195402Y235939D01*

-X195550Y236180D01*

-X195658Y236442D01*

-X195724Y236718D01*

-X195741Y237000D01*

-X195724Y237282D01*

-X195658Y237558D01*

-X195550Y237820D01*

-X195402Y238061D01*

-X195218Y238277D01*

-X195002Y238461D01*

-X194761Y238609D01*

-X194499Y238717D01*

-X194223Y238783D01*

-X193941Y238806D01*

-X193938Y238805D01*

-Y310507D01*

-G37*

-G36*

-Y360946D02*X194466Y360727D01*

-X195124Y360569D01*

-X195792Y360516D01*

-Y315223D01*

-X195724Y315058D01*

-X195658Y314782D01*

-X195635Y314500D01*

-X195658Y314218D01*

-X195724Y313942D01*

-X195792Y313777D01*

-Y313267D01*

-X195723Y313283D01*

-X195441Y313306D01*

-X195159Y313283D01*

-X194883Y313217D01*

-X194621Y313109D01*

-X194380Y312961D01*

-X194164Y312777D01*

-X193980Y312561D01*

-X193938Y312493D01*

-Y360946D01*

-G37*

-G36*

-Y370946D02*X194466Y370727D01*

-X195124Y370569D01*

-X195792Y370516D01*

-Y369142D01*

-X195124Y369089D01*

-X194466Y368931D01*

-X193938Y368712D01*

-Y370946D01*

-G37*

-G36*

-Y397000D02*X195792D01*

-Y379142D01*

-X195124Y379089D01*

-X194466Y378931D01*

-X193938Y378712D01*

-Y397000D01*

-G37*

-G36*

-X195792Y97000D02*X193938D01*

-Y125780D01*

-X193948Y125783D01*

-X194210Y125891D01*

-X194451Y126039D01*

-X194667Y126223D01*

-X194851Y126439D01*

-X194999Y126680D01*

-X195107Y126942D01*

-X195173Y127218D01*

-X195190Y127500D01*

-X195173Y127782D01*

-X195107Y128058D01*

-X194999Y128320D01*

-X194851Y128561D01*

-X194667Y128777D01*

-X194451Y128961D01*

-X194210Y129109D01*

-X193948Y129217D01*

-X193938Y129220D01*

-Y132007D01*

-X193980Y131939D01*

-X194164Y131723D01*

-X194380Y131539D01*

-X194621Y131391D01*

-X194883Y131283D01*

-X195159Y131217D01*

-X195441Y131194D01*

-X195723Y131217D01*

-X195792Y131233D01*

-Y97000D01*

-G37*

-G36*

-X193938D02*X191360D01*

-Y342644D01*

-X191363Y342643D01*

-X191645Y342666D01*

-X191921Y342732D01*

-X192183Y342840D01*

-X192424Y342988D01*

-X192640Y343172D01*

-X192824Y343388D01*

-X192972Y343629D01*

-X193080Y343891D01*

-X193146Y344167D01*

-X193163Y344449D01*

-X193146Y344731D01*

-X193080Y345007D01*

-X192972Y345269D01*

-X192824Y345510D01*

-X192640Y345726D01*

-X192424Y345910D01*

-X192183Y346058D01*

-X191921Y346166D01*

-X191645Y346232D01*

-X191363Y346255D01*

-X191360Y346254D01*

-Y397000D01*

-X193938D01*

-Y378712D01*

-X193841Y378672D01*

-X193264Y378319D01*

-X192749Y377879D01*

-X192309Y377364D01*

-X191956Y376787D01*

-X191697Y376162D01*

-X191539Y375504D01*

-X191486Y374829D01*

-X191539Y374154D01*

-X191697Y373496D01*

-X191956Y372871D01*

-X192309Y372294D01*

-X192749Y371779D01*

-X193264Y371339D01*

-X193841Y370986D01*

-X193938Y370946D01*

-Y368712D01*

-X193841Y368672D01*

-X193264Y368319D01*

-X192749Y367879D01*

-X192309Y367364D01*

-X191956Y366787D01*

-X191697Y366162D01*

-X191539Y365504D01*

-X191486Y364829D01*

-X191539Y364154D01*

-X191697Y363496D01*

-X191956Y362871D01*

-X192309Y362294D01*

-X192749Y361779D01*

-X193264Y361339D01*

-X193841Y360986D01*

-X193938Y360946D01*

-Y312493D01*

-X193832Y312320D01*

-X193724Y312058D01*

-X193658Y311782D01*

-X193635Y311500D01*

-X193658Y311218D01*

-X193724Y310942D01*

-X193832Y310680D01*

-X193938Y310507D01*

-Y238805D01*

-X193659Y238783D01*

-X193383Y238717D01*

-X193121Y238609D01*

-X192880Y238461D01*

-X192664Y238277D01*

-X192480Y238061D01*

-X192332Y237820D01*

-X192224Y237558D01*

-X192158Y237282D01*

-X192135Y237000D01*

-X192158Y236718D01*

-X192224Y236442D01*

-X192332Y236180D01*

-X192480Y235939D01*

-X192664Y235723D01*

-X192880Y235539D01*

-X193121Y235391D01*

-X193383Y235283D01*

-X193659Y235217D01*

-X193938Y235195D01*

-Y214305D01*

-X193659Y214283D01*

-X193383Y214217D01*

-X193121Y214109D01*

-X192880Y213961D01*

-X192664Y213777D01*

-X192480Y213561D01*

-X192332Y213320D01*

-X192224Y213058D01*

-X192158Y212782D01*

-X192135Y212500D01*

-X192158Y212218D01*

-X192224Y211942D01*

-X192332Y211680D01*

-X192480Y211439D01*

-X192664Y211223D01*

-X192880Y211039D01*

-X193121Y210891D01*

-X193383Y210783D01*

-X193659Y210717D01*

-X193938Y210695D01*

-Y201622D01*

-X192342Y201620D01*

-X192189Y201583D01*

-X192044Y201523D01*

-X191909Y201441D01*

-X191790Y201338D01*

-X191687Y201219D01*

-X191605Y201084D01*

-X191545Y200939D01*

-X191508Y200786D01*

-X191499Y200629D01*

-X191508Y193872D01*

-X191545Y193719D01*

-X191605Y193574D01*

-X191687Y193439D01*

-X191790Y193320D01*

-X191909Y193217D01*

-X192044Y193135D01*

-X192189Y193075D01*

-X192342Y193038D01*

-X192499Y193029D01*

-X193938Y193031D01*

-Y188712D01*

-X193841Y188672D01*

-X193264Y188319D01*

-X192749Y187879D01*

-X192309Y187364D01*

-X191956Y186787D01*

-X191697Y186162D01*

-X191539Y185504D01*

-X191486Y184829D01*

-X191539Y184154D01*

-X191697Y183496D01*

-X191956Y182871D01*

-X192309Y182294D01*

-X192749Y181779D01*

-X193264Y181339D01*

-X193841Y180986D01*

-X193938Y180946D01*

-Y178712D01*

-X193841Y178672D01*

-X193264Y178319D01*

-X192749Y177879D01*

-X192309Y177364D01*

-X191956Y176787D01*

-X191697Y176162D01*

-X191539Y175504D01*

-X191486Y174829D01*

-X191539Y174154D01*

-X191697Y173496D01*

-X191956Y172871D01*

-X192309Y172294D01*

-X192749Y171779D01*

-X193264Y171339D01*

-X193841Y170986D01*

-X193938Y170946D01*

-Y133993D01*

-X193832Y133820D01*

-X193724Y133558D01*

-X193658Y133282D01*

-X193635Y133000D01*

-X193658Y132718D01*

-X193724Y132442D01*

-X193832Y132180D01*

-X193938Y132007D01*

-Y129220D01*

-X193672Y129283D01*

-X193390Y129306D01*

-X193108Y129283D01*

-X192832Y129217D01*

-X192570Y129109D01*

-X192329Y128961D01*

-X192113Y128777D01*

-X191929Y128561D01*

-X191781Y128320D01*

-X191673Y128058D01*

-X191607Y127782D01*

-X191584Y127500D01*

-X191607Y127218D01*

-X191673Y126942D01*

-X191781Y126680D01*

-X191929Y126439D01*

-X192113Y126223D01*

-X192329Y126039D01*

-X192570Y125891D01*

-X192832Y125783D01*

-X193108Y125717D01*

-X193390Y125694D01*

-X193672Y125717D01*

-X193938Y125780D01*

-Y97000D01*

-G37*

-G36*

-X191360D02*X185792D01*

-Y170516D01*

-X185799Y170516D01*

-X186474Y170569D01*

-X187132Y170727D01*

-X187757Y170986D01*

-X188334Y171339D01*

-X188849Y171779D01*

-X189289Y172294D01*

-X189642Y172871D01*

-X189901Y173496D01*

-X190059Y174154D01*

-X190099Y174829D01*

-X190059Y175504D01*

-X189901Y176162D01*

-X189642Y176787D01*

-X189289Y177364D01*

-X188849Y177879D01*

-X188334Y178319D01*

-X187757Y178672D01*

-X187132Y178931D01*

-X186474Y179089D01*

-X185799Y179142D01*

-X185792Y179142D01*

-Y180516D01*

-X185799Y180516D01*

-X186474Y180569D01*

-X187132Y180727D01*

-X187757Y180986D01*

-X188334Y181339D01*

-X188849Y181779D01*

-X189289Y182294D01*

-X189642Y182871D01*

-X189901Y183496D01*

-X190059Y184154D01*

-X190099Y184829D01*

-X190059Y185504D01*

-X189901Y186162D01*

-X189642Y186787D01*

-X189289Y187364D01*

-X188849Y187879D01*

-X188334Y188319D01*

-X187757Y188672D01*

-X187132Y188931D01*

-X186474Y189089D01*

-X185799Y189142D01*

-X185792Y189142D01*

-Y215733D01*

-X185999Y215783D01*

-X186261Y215891D01*

-X186502Y216039D01*

-X186718Y216223D01*

-X186902Y216439D01*

-X187050Y216680D01*

-X187158Y216942D01*

-X187224Y217218D01*

-X187241Y217500D01*

-X187224Y217782D01*

-X187158Y218058D01*

-X187050Y218320D01*

-X186902Y218561D01*

-X186718Y218777D01*

-X186502Y218961D01*

-X186261Y219109D01*

-X185999Y219217D01*

-X185792Y219267D01*

-Y226233D01*

-X185999Y226283D01*

-X186261Y226391D01*

-X186502Y226539D01*

-X186718Y226723D01*

-X186902Y226939D01*

-X187050Y227180D01*

-X187158Y227442D01*

-X187224Y227718D01*

-X187241Y228000D01*

-X187224Y228282D01*

-X187158Y228558D01*

-X187050Y228820D01*

-X186902Y229061D01*

-X186718Y229277D01*

-X186502Y229461D01*

-X186261Y229609D01*

-X185999Y229717D01*

-X185792Y229767D01*

-Y360516D01*

-X185799Y360516D01*

-X186474Y360569D01*

-X187132Y360727D01*

-X187757Y360986D01*

-X188334Y361339D01*

-X188849Y361779D01*

-X189289Y362294D01*

-X189642Y362871D01*

-X189901Y363496D01*

-X190059Y364154D01*

-X190099Y364829D01*

-X190059Y365504D01*

-X189901Y366162D01*

-X189642Y366787D01*

-X189289Y367364D01*

-X188849Y367879D01*

-X188334Y368319D01*

-X187757Y368672D01*

-X187132Y368931D01*

-X186474Y369089D01*

-X185799Y369142D01*

-X185792Y369142D01*

-Y370516D01*

-X185799Y370516D01*

-X186474Y370569D01*

-X187132Y370727D01*

-X187757Y370986D01*

-X188334Y371339D01*

-X188849Y371779D01*

-X189289Y372294D01*

-X189642Y372871D01*

-X189901Y373496D01*

-X190059Y374154D01*

-X190099Y374829D01*

-X190059Y375504D01*

-X189901Y376162D01*

-X189642Y376787D01*

-X189289Y377364D01*

-X188849Y377879D01*

-X188334Y378319D01*

-X187757Y378672D01*

-X187132Y378931D01*

-X186474Y379089D01*

-X185799Y379142D01*

-X185792Y379142D01*

-Y397000D01*

-X191360D01*

-Y346254D01*

-X191081Y346232D01*

-X190805Y346166D01*

-X190543Y346058D01*

-X190302Y345910D01*

-X190086Y345726D01*

-X189902Y345510D01*

-X189754Y345269D01*

-X189646Y345007D01*

-X189580Y344731D01*

-X189557Y344449D01*

-X189580Y344167D01*

-X189646Y343891D01*

-X189754Y343629D01*

-X189902Y343388D01*

-X190086Y343172D01*

-X190302Y342988D01*

-X190543Y342840D01*

-X190805Y342732D01*

-X191081Y342666D01*

-X191360Y342644D01*

-Y97000D01*

-G37*

-G36*

-X181938Y182913D02*X181956Y182871D01*

-X182309Y182294D01*

-X182749Y181779D01*

-X183264Y181339D01*

-X183841Y180986D01*

-X184466Y180727D01*

-X185124Y180569D01*

-X185792Y180516D01*

-Y179142D01*

-X185124Y179089D01*

-X184466Y178931D01*

-X183841Y178672D01*

-X183264Y178319D01*

-X182749Y177879D01*

-X182309Y177364D01*

-X181956Y176787D01*

-X181938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y362913D02*X181956Y362871D01*

-X182309Y362294D01*

-X182749Y361779D01*

-X183264Y361339D01*

-X183841Y360986D01*

-X184466Y360727D01*

-X185124Y360569D01*

-X185792Y360516D01*

-Y229767D01*

-X185723Y229783D01*

-X185441Y229806D01*

-X185159Y229783D01*

-X184883Y229717D01*

-X184621Y229609D01*

-X184380Y229461D01*

-X184164Y229277D01*

-X183980Y229061D01*

-X183832Y228820D01*

-X183724Y228558D01*

-X183658Y228282D01*

-X183635Y228000D01*

-X183658Y227718D01*

-X183724Y227442D01*

-X183832Y227180D01*

-X183980Y226939D01*

-X184164Y226723D01*

-X184380Y226539D01*

-X184621Y226391D01*

-X184883Y226283D01*

-X185159Y226217D01*

-X185441Y226194D01*

-X185723Y226217D01*

-X185792Y226233D01*

-Y219267D01*

-X185723Y219283D01*

-X185441Y219306D01*

-X185159Y219283D01*

-X184883Y219217D01*

-X184621Y219109D01*

-X184380Y218961D01*

-X184164Y218777D01*

-X183980Y218561D01*

-X183832Y218320D01*

-X183724Y218058D01*

-X183658Y217782D01*

-X183635Y217500D01*

-X183658Y217218D01*

-X183724Y216942D01*

-X183832Y216680D01*

-X183980Y216439D01*

-X184164Y216223D01*

-X184380Y216039D01*

-X184621Y215891D01*

-X184883Y215783D01*

-X185159Y215717D01*

-X185441Y215694D01*

-X185723Y215717D01*

-X185792Y215733D01*

-Y189142D01*

-X185124Y189089D01*

-X184466Y188931D01*

-X183841Y188672D01*

-X183264Y188319D01*

-X182749Y187879D01*

-X182309Y187364D01*

-X181956Y186787D01*

-X181938Y186745D01*

-Y256695D01*

-X181941Y256694D01*

-X182223Y256717D01*

-X182499Y256783D01*

-X182761Y256891D01*

-X183002Y257039D01*

-X183218Y257223D01*

-X183402Y257439D01*

-X183550Y257680D01*

-X183658Y257942D01*

-X183724Y258218D01*

-X183741Y258500D01*

-X183724Y258782D01*

-X183658Y259058D01*

-X183550Y259320D01*

-X183402Y259561D01*

-X183218Y259777D01*

-X183002Y259961D01*

-X182761Y260109D01*

-X182499Y260217D01*

-X182223Y260283D01*

-X181941Y260306D01*

-X181938Y260305D01*

-Y362913D01*

-G37*

-G36*

-Y372913D02*X181956Y372871D01*

-X182309Y372294D01*

-X182749Y371779D01*

-X183264Y371339D01*

-X183841Y370986D01*

-X184466Y370727D01*

-X185124Y370569D01*

-X185792Y370516D01*

-Y369142D01*

-X185124Y369089D01*

-X184466Y368931D01*

-X183841Y368672D01*

-X183264Y368319D01*

-X182749Y367879D01*

-X182309Y367364D01*

-X181956Y366787D01*

-X181938Y366745D01*

-Y372913D01*

-G37*

-G36*

-Y397000D02*X185792D01*

-Y379142D01*

-X185124Y379089D01*

-X184466Y378931D01*

-X183841Y378672D01*

-X183264Y378319D01*

-X182749Y377879D01*

-X182309Y377364D01*

-X181956Y376787D01*

-X181938Y376745D01*

-Y397000D01*

-G37*

-G36*

-X185792Y97000D02*X183938D01*

-Y102195D01*

-X183941Y102194D01*

-X184223Y102217D01*

-X184499Y102283D01*

-X184761Y102391D01*

-X185002Y102539D01*

-X185218Y102723D01*

-X185402Y102939D01*

-X185550Y103180D01*

-X185658Y103442D01*

-X185724Y103718D01*

-X185741Y104000D01*

-X185724Y104282D01*

-X185658Y104558D01*

-X185550Y104820D01*

-X185402Y105061D01*

-X185218Y105277D01*

-X185002Y105461D01*

-X184761Y105609D01*

-X184499Y105717D01*

-X184223Y105783D01*

-X183941Y105806D01*

-X183938Y105805D01*

-Y170946D01*

-X184466Y170727D01*

-X185124Y170569D01*

-X185792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X183938D02*X181938D01*

-Y172913D01*

-X181956Y172871D01*

-X182309Y172294D01*

-X182749Y171779D01*

-X183264Y171339D01*

-X183841Y170986D01*

-X183938Y170946D01*

-Y105805D01*

-X183659Y105783D01*

-X183383Y105717D01*

-X183121Y105609D01*

-X182880Y105461D01*

-X182664Y105277D01*

-X182480Y105061D01*

-X182332Y104820D01*

-X182224Y104558D01*

-X182158Y104282D01*

-X182135Y104000D01*

-X182158Y103718D01*

-X182224Y103442D01*

-X182332Y103180D01*

-X182480Y102939D01*

-X182664Y102723D01*

-X182880Y102539D01*

-X183121Y102391D01*

-X183383Y102283D01*

-X183659Y102217D01*

-X183938Y102195D01*

-Y97000D01*

-G37*

-G36*

-X181938D02*X178884D01*

-Y171820D01*

-X179289Y172294D01*

-X179642Y172871D01*

-X179901Y173496D01*

-X180059Y174154D01*

-X180099Y174829D01*

-X180059Y175504D01*

-X179901Y176162D01*

-X179642Y176787D01*

-X179289Y177364D01*

-X178884Y177838D01*

-Y181820D01*

-X179289Y182294D01*

-X179642Y182871D01*

-X179901Y183496D01*

-X180059Y184154D01*

-X180099Y184829D01*

-X180059Y185504D01*

-X179901Y186162D01*

-X179642Y186787D01*

-X179289Y187364D01*

-X178884Y187838D01*

-Y216418D01*

-X178902Y216439D01*

-X179050Y216680D01*

-X179158Y216942D01*

-X179224Y217218D01*

-X179241Y217500D01*

-X179224Y217782D01*

-X179158Y218058D01*

-X179050Y218320D01*

-X178902Y218561D01*

-X178884Y218582D01*

-Y226918D01*

-X178902Y226939D01*

-X179050Y227180D01*

-X179158Y227442D01*

-X179224Y227718D01*

-X179241Y228000D01*

-X179224Y228282D01*

-X179158Y228558D01*

-X179050Y228820D01*

-X178902Y229061D01*

-X178884Y229082D01*

-Y341013D01*

-X178887Y341012D01*

-X179169Y341035D01*

-X179445Y341101D01*

-X179707Y341209D01*

-X179948Y341357D01*

-X180164Y341541D01*

-X180348Y341757D01*

-X180496Y341998D01*

-X180604Y342260D01*

-X180670Y342536D01*

-X180687Y342818D01*

-X180670Y343100D01*

-X180604Y343376D01*

-X180496Y343638D01*

-X180348Y343879D01*

-X180164Y344095D01*

-X179948Y344279D01*

-X179707Y344427D01*

-X179445Y344535D01*

-X179169Y344601D01*

-X178887Y344624D01*

-X178884Y344623D01*

-Y361820D01*

-X179289Y362294D01*

-X179642Y362871D01*

-X179901Y363496D01*

-X180059Y364154D01*

-X180099Y364829D01*

-X180059Y365504D01*

-X179901Y366162D01*

-X179642Y366787D01*

-X179289Y367364D01*

-X178884Y367838D01*

-Y371820D01*

-X179289Y372294D01*

-X179642Y372871D01*

-X179901Y373496D01*

-X180059Y374154D01*

-X180099Y374829D01*

-X180059Y375504D01*

-X179901Y376162D01*

-X179642Y376787D01*

-X179289Y377364D01*

-X178884Y377838D01*

-Y397000D01*

-X181938D01*

-Y376745D01*

-X181697Y376162D01*

-X181539Y375504D01*

-X181486Y374829D01*

-X181539Y374154D01*

-X181697Y373496D01*

-X181938Y372913D01*

-Y366745D01*

-X181697Y366162D01*

-X181539Y365504D01*

-X181486Y364829D01*

-X181539Y364154D01*

-X181697Y363496D01*

-X181938Y362913D01*

-Y260305D01*

-X181659Y260283D01*

-X181383Y260217D01*

-X181121Y260109D01*

-X180880Y259961D01*

-X180664Y259777D01*

-X180480Y259561D01*

-X180332Y259320D01*

-X180224Y259058D01*

-X180158Y258782D01*

-X180135Y258500D01*

-X180158Y258218D01*

-X180224Y257942D01*

-X180332Y257680D01*

-X180480Y257439D01*

-X180664Y257223D01*

-X180880Y257039D01*

-X181121Y256891D01*

-X181383Y256783D01*

-X181659Y256717D01*

-X181938Y256695D01*

-Y186745D01*

-X181697Y186162D01*

-X181539Y185504D01*

-X181486Y184829D01*

-X181539Y184154D01*

-X181697Y183496D01*

-X181938Y182913D01*

-Y176745D01*

-X181697Y176162D01*

-X181539Y175504D01*

-X181486Y174829D01*

-X181539Y174154D01*

-X181697Y173496D01*

-X181938Y172913D01*

-Y97000D01*

-G37*

-G36*

-X178884Y377838D02*X178849Y377879D01*

-X178334Y378319D01*

-X177757Y378672D01*

-X177132Y378931D01*

-X176474Y379089D01*

-X175799Y379142D01*

-X175792Y379142D01*

-Y397000D01*

-X178884D01*

-Y377838D01*

-G37*

-G36*

-Y367838D02*X178849Y367879D01*

-X178334Y368319D01*

-X177757Y368672D01*

-X177132Y368931D01*

-X176474Y369089D01*

-X175799Y369142D01*

-X175792Y369142D01*

-Y370516D01*

-X175799Y370516D01*

-X176474Y370569D01*

-X177132Y370727D01*

-X177757Y370986D01*

-X178334Y371339D01*

-X178849Y371779D01*

-X178884Y371820D01*

-Y367838D01*

-G37*

-G36*

-Y229082D02*X178718Y229277D01*

-X178502Y229461D01*

-X178261Y229609D01*

-X177999Y229717D01*

-X177723Y229783D01*

-X177441Y229806D01*

-X177159Y229783D01*

-X176883Y229717D01*

-X176621Y229609D01*

-X176380Y229461D01*

-X176164Y229277D01*

-X175980Y229061D01*

-X175832Y228820D01*

-X175792Y228723D01*

-Y360516D01*

-X175799Y360516D01*

-X176474Y360569D01*

-X177132Y360727D01*

-X177757Y360986D01*

-X178334Y361339D01*

-X178849Y361779D01*

-X178884Y361820D01*

-Y344623D01*

-X178605Y344601D01*

-X178329Y344535D01*

-X178067Y344427D01*

-X177826Y344279D01*

-X177610Y344095D01*

-X177426Y343879D01*

-X177278Y343638D01*

-X177170Y343376D01*

-X177104Y343100D01*

-X177081Y342818D01*

-X177104Y342536D01*

-X177170Y342260D01*

-X177278Y341998D01*

-X177426Y341757D01*

-X177610Y341541D01*

-X177826Y341357D01*

-X178067Y341209D01*

-X178329Y341101D01*

-X178605Y341035D01*

-X178884Y341013D01*

-Y229082D01*

-G37*

-G36*

-Y218582D02*X178718Y218777D01*

-X178502Y218961D01*

-X178261Y219109D01*

-X177999Y219217D01*

-X177723Y219283D01*

-X177441Y219306D01*

-X177159Y219283D01*

-X176883Y219217D01*

-X176621Y219109D01*

-X176380Y218961D01*

-X176164Y218777D01*

-X175980Y218561D01*

-X175832Y218320D01*

-X175792Y218223D01*

-Y227277D01*

-X175832Y227180D01*

-X175980Y226939D01*

-X176164Y226723D01*

-X176380Y226539D01*

-X176621Y226391D01*

-X176883Y226283D01*

-X177159Y226217D01*

-X177441Y226194D01*

-X177723Y226217D01*

-X177999Y226283D01*

-X178261Y226391D01*

-X178502Y226539D01*

-X178718Y226723D01*

-X178884Y226918D01*

-Y218582D01*

-G37*

-G36*

-Y187838D02*X178849Y187879D01*

-X178334Y188319D01*

-X177757Y188672D01*

-X177132Y188931D01*

-X176474Y189089D01*

-X175799Y189142D01*

-X175792Y189142D01*

-Y216777D01*

-X175832Y216680D01*

-X175980Y216439D01*

-X176164Y216223D01*

-X176380Y216039D01*

-X176621Y215891D01*

-X176883Y215783D01*

-X177159Y215717D01*

-X177441Y215694D01*

-X177723Y215717D01*

-X177999Y215783D01*

-X178261Y215891D01*

-X178502Y216039D01*

-X178718Y216223D01*

-X178884Y216418D01*

-Y187838D01*

-G37*

-G36*

-Y177838D02*X178849Y177879D01*

-X178334Y178319D01*

-X177757Y178672D01*

-X177132Y178931D01*

-X176474Y179089D01*

-X175799Y179142D01*

-X175792Y179142D01*

-Y180516D01*

-X175799Y180516D01*

-X176474Y180569D01*

-X177132Y180727D01*

-X177757Y180986D01*

-X178334Y181339D01*

-X178849Y181779D01*

-X178884Y181820D01*

-Y177838D01*

-G37*

-G36*

-Y97000D02*X175792D01*

-Y170516D01*

-X175799Y170516D01*

-X176474Y170569D01*

-X177132Y170727D01*

-X177757Y170986D01*

-X178334Y171339D01*

-X178849Y171779D01*

-X178884Y171820D01*

-Y97000D01*

-G37*

-G36*

-X175792D02*X168729D01*

-Y171677D01*

-X168849Y171779D01*

-X169289Y172294D01*

-X169642Y172871D01*

-X169901Y173496D01*

-X170059Y174154D01*

-X170099Y174829D01*

-X170059Y175504D01*

-X169901Y176162D01*

-X169642Y176787D01*

-X169289Y177364D01*

-X168849Y177879D01*

-X168729Y177981D01*

-Y181677D01*

-X168849Y181779D01*

-X169289Y182294D01*

-X169642Y182871D01*

-X169901Y183496D01*

-X170059Y184154D01*

-X170099Y184829D01*

-X170059Y185504D01*

-X169901Y186162D01*

-X169642Y186787D01*

-X169289Y187364D01*

-X168849Y187879D01*

-X168729Y187981D01*

-Y192801D01*

-X168741Y193000D01*

-X168729Y193199D01*

-Y197301D01*

-X168741Y197500D01*

-X168729Y197699D01*

-Y199847D01*

-X168883Y199783D01*

-X169159Y199717D01*

-X169441Y199694D01*

-X169723Y199717D01*

-X169999Y199783D01*

-X170261Y199891D01*

-X170502Y200039D01*

-X170718Y200223D01*

-X170902Y200439D01*

-X171050Y200680D01*

-X171158Y200942D01*

-X171224Y201218D01*

-X171241Y201500D01*

-X171224Y201782D01*

-X171158Y202058D01*

-X171050Y202320D01*

-X170902Y202561D01*

-X170718Y202777D01*

-X170502Y202961D01*

-X170261Y203109D01*

-X169999Y203217D01*

-X169723Y203283D01*

-X169441Y203306D01*

-X169159Y203283D01*

-X168883Y203217D01*

-X168729Y203153D01*

-Y206847D01*

-X168883Y206783D01*

-X169159Y206717D01*

-X169441Y206694D01*

-X169723Y206717D01*

-X169999Y206783D01*

-X170261Y206891D01*

-X170502Y207039D01*

-X170718Y207223D01*

-X170902Y207439D01*

-X171050Y207680D01*

-X171158Y207942D01*

-X171224Y208218D01*

-X171241Y208500D01*

-X171224Y208782D01*

-X171158Y209058D01*

-X171050Y209320D01*

-X170902Y209561D01*

-X170718Y209777D01*

-X170502Y209961D01*

-X170261Y210109D01*

-X169999Y210217D01*

-X169723Y210283D01*

-X169441Y210306D01*

-X169159Y210283D01*

-X168883Y210217D01*

-X168729Y210153D01*

-Y212347D01*

-X168883Y212283D01*

-X169159Y212217D01*

-X169441Y212194D01*

-X169723Y212217D01*

-X169999Y212283D01*

-X170261Y212391D01*

-X170502Y212539D01*

-X170718Y212723D01*

-X170902Y212939D01*

-X171050Y213180D01*

-X171158Y213442D01*

-X171224Y213718D01*

-X171241Y214000D01*

-X171224Y214282D01*

-X171158Y214558D01*

-X171050Y214820D01*

-X170902Y215061D01*

-X170718Y215277D01*

-X170502Y215461D01*

-X170261Y215609D01*

-X169999Y215717D01*

-X169723Y215783D01*

-X169441Y215806D01*

-X169159Y215783D01*

-X168883Y215717D01*

-X168729Y215653D01*

-Y349028D01*

-X168732Y349027D01*

-X169014Y349050D01*

-X169290Y349116D01*

-X169552Y349224D01*

-X169793Y349372D01*

-X170009Y349556D01*

-X170193Y349772D01*

-X170341Y350013D01*

-X170449Y350275D01*

-X170515Y350551D01*

-X170532Y350833D01*

-X170515Y351115D01*

-X170449Y351391D01*

-X170341Y351653D01*

-X170193Y351894D01*

-X170009Y352110D01*

-X169793Y352294D01*

-X169552Y352442D01*

-X169290Y352550D01*

-X169014Y352616D01*

-X168732Y352639D01*

-X168729Y352638D01*

-Y361677D01*

-X168849Y361779D01*

-X169289Y362294D01*

-X169642Y362871D01*

-X169901Y363496D01*

-X170059Y364154D01*

-X170099Y364829D01*

-X170059Y365504D01*

-X169901Y366162D01*

-X169642Y366787D01*

-X169289Y367364D01*

-X168849Y367879D01*

-X168729Y367981D01*

-Y371677D01*

-X168849Y371779D01*

-X169289Y372294D01*

-X169642Y372871D01*

-X169901Y373496D01*

-X170059Y374154D01*

-X170099Y374829D01*

-X170059Y375504D01*

-X169901Y376162D01*

-X169642Y376787D01*

-X169289Y377364D01*

-X168849Y377879D01*

-X168729Y377981D01*

-Y397000D01*

-X175792D01*

-Y379142D01*

-X175124Y379089D01*

-X174466Y378931D01*

-X173841Y378672D01*

-X173264Y378319D01*

-X172749Y377879D01*

-X172309Y377364D01*

-X171956Y376787D01*

-X171697Y376162D01*

-X171539Y375504D01*

-X171486Y374829D01*

-X171539Y374154D01*

-X171697Y373496D01*

-X171956Y372871D01*

-X172309Y372294D01*

-X172749Y371779D01*

-X173264Y371339D01*

-X173841Y370986D01*

-X174466Y370727D01*

-X175124Y370569D01*

-X175792Y370516D01*

-Y369142D01*

-X175124Y369089D01*

-X174466Y368931D01*

-X173841Y368672D01*

-X173264Y368319D01*

-X172749Y367879D01*

-X172309Y367364D01*

-X171956Y366787D01*

-X171697Y366162D01*

-X171539Y365504D01*

-X171486Y364829D01*

-X171539Y364154D01*

-X171697Y363496D01*

-X171956Y362871D01*

-X172309Y362294D01*

-X172749Y361779D01*

-X173264Y361339D01*

-X173841Y360986D01*

-X174466Y360727D01*

-X175124Y360569D01*

-X175792Y360516D01*

-Y228723D01*

-X175724Y228558D01*

-X175658Y228282D01*

-X175635Y228000D01*

-X175658Y227718D01*

-X175724Y227442D01*

-X175792Y227277D01*

-Y218223D01*

-X175724Y218058D01*

-X175658Y217782D01*

-X175635Y217500D01*

-X175658Y217218D01*

-X175724Y216942D01*

-X175792Y216777D01*

-Y189142D01*

-X175124Y189089D01*

-X174466Y188931D01*

-X173841Y188672D01*

-X173264Y188319D01*

-X172749Y187879D01*

-X172309Y187364D01*

-X171956Y186787D01*

-X171697Y186162D01*

-X171539Y185504D01*

-X171486Y184829D01*

-X171539Y184154D01*

-X171697Y183496D01*

-X171956Y182871D01*

-X172309Y182294D01*

-X172749Y181779D01*

-X173264Y181339D01*

-X173841Y180986D01*

-X174466Y180727D01*

-X175124Y180569D01*

-X175792Y180516D01*

-Y179142D01*

-X175124Y179089D01*

-X174466Y178931D01*

-X173841Y178672D01*

-X173264Y178319D01*

-X172749Y177879D01*

-X172309Y177364D01*

-X171956Y176787D01*

-X171697Y176162D01*

-X171539Y175504D01*

-X171486Y174829D01*

-X171539Y174154D01*

-X171697Y173496D01*

-X171956Y172871D01*

-X172309Y172294D01*

-X172749Y171779D01*

-X173264Y171339D01*

-X173841Y170986D01*

-X174466Y170727D01*

-X175124Y170569D01*

-X175792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X168729Y377981D02*X168334Y378319D01*

-X167757Y378672D01*

-X167132Y378931D01*

-X166474Y379089D01*

-X165799Y379142D01*

-X165792Y379142D01*

-Y397000D01*

-X168729D01*

-Y377981D01*

-G37*

-G36*

-Y367981D02*X168334Y368319D01*

-X167757Y368672D01*

-X167132Y368931D01*

-X166474Y369089D01*

-X165799Y369142D01*

-X165792Y369142D01*

-Y370516D01*

-X165799Y370516D01*

-X166474Y370569D01*

-X167132Y370727D01*

-X167757Y370986D01*

-X168334Y371339D01*

-X168729Y371677D01*

-Y367981D01*

-G37*

-G36*

-Y197699D02*X168724Y197782D01*

-X168658Y198058D01*

-X168550Y198320D01*

-X168402Y198561D01*

-X168218Y198777D01*

-X168002Y198961D01*

-X167761Y199109D01*

-X167499Y199217D01*

-X167223Y199283D01*

-X166941Y199306D01*

-X166659Y199283D01*

-X166383Y199217D01*

-X166121Y199109D01*

-X165880Y198961D01*

-X165792Y198886D01*

-Y218706D01*

-X165941Y218694D01*

-X166223Y218717D01*

-X166499Y218783D01*

-X166761Y218891D01*

-X167002Y219039D01*

-X167218Y219223D01*

-X167402Y219439D01*

-X167550Y219680D01*

-X167658Y219942D01*

-X167724Y220218D01*

-X167741Y220500D01*

-X167724Y220782D01*

-X167658Y221058D01*

-X167550Y221320D01*

-X167402Y221561D01*

-X167218Y221777D01*

-X167002Y221961D01*

-X166761Y222109D01*

-X166499Y222217D01*

-X166223Y222283D01*

-X165941Y222306D01*

-X165792Y222294D01*

-Y224706D01*

-X165941Y224694D01*

-X166223Y224717D01*

-X166499Y224783D01*

-X166761Y224891D01*

-X167002Y225039D01*

-X167218Y225223D01*

-X167402Y225439D01*

-X167550Y225680D01*

-X167658Y225942D01*

-X167724Y226218D01*

-X167741Y226500D01*

-X167724Y226782D01*

-X167658Y227058D01*

-X167550Y227320D01*

-X167402Y227561D01*

-X167218Y227777D01*

-X167002Y227961D01*

-X166761Y228109D01*

-X166499Y228217D01*

-X166223Y228283D01*

-X165941Y228306D01*

-X165792Y228294D01*

-Y229206D01*

-X165941Y229194D01*

-X166223Y229217D01*

-X166499Y229283D01*

-X166761Y229391D01*

-X167002Y229539D01*

-X167218Y229723D01*

-X167402Y229939D01*

-X167550Y230180D01*

-X167658Y230442D01*

-X167724Y230718D01*

-X167741Y231000D01*

-X167724Y231282D01*

-X167658Y231558D01*

-X167550Y231820D01*

-X167402Y232061D01*

-X167218Y232277D01*

-X167002Y232461D01*

-X166761Y232609D01*

-X166499Y232717D01*

-X166223Y232783D01*

-X165941Y232806D01*

-X165792Y232794D01*

-Y360516D01*

-X165799Y360516D01*

-X166474Y360569D01*

-X167132Y360727D01*

-X167757Y360986D01*

-X168334Y361339D01*

-X168729Y361677D01*

-Y352638D01*

-X168450Y352616D01*

-X168174Y352550D01*

-X167912Y352442D01*

-X167671Y352294D01*

-X167455Y352110D01*

-X167271Y351894D01*

-X167123Y351653D01*

-X167015Y351391D01*

-X166949Y351115D01*

-X166926Y350833D01*

-X166949Y350551D01*

-X167015Y350275D01*

-X167123Y350013D01*

-X167271Y349772D01*

-X167455Y349556D01*

-X167671Y349372D01*

-X167912Y349224D01*

-X168174Y349116D01*

-X168450Y349050D01*

-X168729Y349028D01*

-Y215653D01*

-X168621Y215609D01*

-X168380Y215461D01*

-X168164Y215277D01*

-X167980Y215061D01*

-X167832Y214820D01*

-X167724Y214558D01*

-X167658Y214282D01*

-X167635Y214000D01*

-X167658Y213718D01*

-X167724Y213442D01*

-X167832Y213180D01*

-X167980Y212939D01*

-X168164Y212723D01*

-X168380Y212539D01*

-X168621Y212391D01*

-X168729Y212347D01*

-Y210153D01*

-X168621Y210109D01*

-X168380Y209961D01*

-X168164Y209777D01*

-X167980Y209561D01*

-X167832Y209320D01*

-X167724Y209058D01*

-X167658Y208782D01*

-X167635Y208500D01*

-X167658Y208218D01*

-X167724Y207942D01*

-X167832Y207680D01*

-X167980Y207439D01*

-X168164Y207223D01*

-X168380Y207039D01*

-X168621Y206891D01*

-X168729Y206847D01*

-Y203153D01*

-X168621Y203109D01*

-X168380Y202961D01*

-X168164Y202777D01*

-X167980Y202561D01*

-X167832Y202320D01*

-X167724Y202058D01*

-X167658Y201782D01*

-X167635Y201500D01*

-X167658Y201218D01*

-X167724Y200942D01*

-X167832Y200680D01*

-X167980Y200439D01*

-X168164Y200223D01*

-X168380Y200039D01*

-X168621Y199891D01*

-X168729Y199847D01*

-Y197699D01*

-G37*

-G36*

-Y193199D02*X168724Y193282D01*

-X168658Y193558D01*

-X168550Y193820D01*

-X168402Y194061D01*

-X168218Y194277D01*

-X168002Y194461D01*

-X167761Y194609D01*

-X167499Y194717D01*

-X167223Y194783D01*

-X166941Y194806D01*

-X166659Y194783D01*

-X166383Y194717D01*

-X166121Y194609D01*

-X165880Y194461D01*

-X165792Y194386D01*

-Y196114D01*

-X165880Y196039D01*

-X166121Y195891D01*

-X166383Y195783D01*

-X166659Y195717D01*

-X166941Y195694D01*

-X167223Y195717D01*

-X167499Y195783D01*

-X167761Y195891D01*

-X168002Y196039D01*

-X168218Y196223D01*

-X168402Y196439D01*

-X168550Y196680D01*

-X168658Y196942D01*

-X168724Y197218D01*

-X168729Y197301D01*

-Y193199D01*

-G37*

-G36*

-Y187981D02*X168334Y188319D01*

-X167757Y188672D01*

-X167132Y188931D01*

-X166474Y189089D01*

-X165799Y189142D01*

-X165792Y189142D01*

-Y191614D01*

-X165880Y191539D01*

-X166121Y191391D01*

-X166383Y191283D01*

-X166659Y191217D01*

-X166941Y191194D01*

-X167223Y191217D01*

-X167499Y191283D01*

-X167761Y191391D01*

-X168002Y191539D01*

-X168218Y191723D01*

-X168402Y191939D01*

-X168550Y192180D01*

-X168658Y192442D01*

-X168724Y192718D01*

-X168729Y192801D01*

-Y187981D01*

-G37*

-G36*

-Y177981D02*X168334Y178319D01*

-X167757Y178672D01*

-X167132Y178931D01*

-X166474Y179089D01*

-X165799Y179142D01*

-X165792Y179142D01*

-Y180516D01*

-X165799Y180516D01*

-X166474Y180569D01*

-X167132Y180727D01*

-X167757Y180986D01*

-X168334Y181339D01*

-X168729Y181677D01*

-Y177981D01*

-G37*

-G36*

-Y97000D02*X165792D01*

-Y102320D01*

-X165883Y102283D01*

-X166159Y102217D01*

-X166441Y102194D01*

-X166723Y102217D01*

-X166999Y102283D01*

-X167261Y102391D01*

-X167502Y102539D01*

-X167718Y102723D01*

-X167902Y102939D01*

-X168050Y103180D01*

-X168158Y103442D01*

-X168224Y103718D01*

-X168241Y104000D01*

-X168224Y104282D01*

-X168158Y104558D01*

-X168050Y104820D01*

-X167902Y105061D01*

-X167718Y105277D01*

-X167502Y105461D01*

-X167261Y105609D01*

-X166999Y105717D01*

-X166723Y105783D01*

-X166441Y105806D01*

-X166159Y105783D01*

-X165883Y105717D01*

-X165792Y105680D01*

-Y170516D01*

-X165799Y170516D01*

-X166474Y170569D01*

-X167132Y170727D01*

-X167757Y170986D01*

-X168334Y171339D01*

-X168729Y171677D01*

-Y97000D01*

-G37*

-G36*

-X161938Y182913D02*X161956Y182871D01*

-X162309Y182294D01*

-X162749Y181779D01*

-X163264Y181339D01*

-X163841Y180986D01*

-X164466Y180727D01*

-X165124Y180569D01*

-X165792Y180516D01*

-Y179142D01*

-X165124Y179089D01*

-X164466Y178931D01*

-X163841Y178672D01*

-X163264Y178319D01*

-X162749Y177879D01*

-X162309Y177364D01*

-X161956Y176787D01*

-X161938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y362913D02*X161956Y362871D01*

-X162309Y362294D01*

-X162749Y361779D01*

-X163264Y361339D01*

-X163841Y360986D01*

-X164466Y360727D01*

-X165124Y360569D01*

-X165792Y360516D01*

-Y232794D01*

-X165659Y232783D01*

-X165383Y232717D01*

-X165121Y232609D01*

-X164880Y232461D01*

-X164664Y232277D01*

-X164480Y232061D01*

-X164332Y231820D01*

-X164224Y231558D01*

-X164158Y231282D01*

-X164135Y231000D01*

-X164158Y230718D01*

-X164224Y230442D01*

-X164332Y230180D01*

-X164480Y229939D01*

-X164664Y229723D01*

-X164880Y229539D01*

-X165121Y229391D01*

-X165383Y229283D01*

-X165659Y229217D01*

-X165792Y229206D01*

-Y228294D01*

-X165659Y228283D01*

-X165383Y228217D01*

-X165121Y228109D01*

-X164880Y227961D01*

-X164664Y227777D01*

-X164480Y227561D01*

-X164332Y227320D01*

-X164224Y227058D01*

-X164158Y226782D01*

-X164135Y226500D01*

-X164158Y226218D01*

-X164224Y225942D01*

-X164332Y225680D01*

-X164480Y225439D01*

-X164664Y225223D01*

-X164880Y225039D01*

-X165121Y224891D01*

-X165383Y224783D01*

-X165659Y224717D01*

-X165792Y224706D01*

-Y222294D01*

-X165659Y222283D01*

-X165383Y222217D01*

-X165121Y222109D01*

-X164880Y221961D01*

-X164664Y221777D01*

-X164480Y221561D01*

-X164332Y221320D01*

-X164224Y221058D01*

-X164158Y220782D01*

-X164135Y220500D01*

-X164158Y220218D01*

-X164224Y219942D01*

-X164332Y219680D01*

-X164480Y219439D01*

-X164664Y219223D01*

-X164880Y219039D01*

-X165121Y218891D01*

-X165383Y218783D01*

-X165659Y218717D01*

-X165792Y218706D01*

-Y198886D01*

-X165664Y198777D01*

-X165480Y198561D01*

-X165332Y198320D01*

-X165224Y198058D01*

-X165158Y197782D01*

-X165135Y197500D01*

-X165158Y197218D01*

-X165224Y196942D01*

-X165332Y196680D01*

-X165480Y196439D01*

-X165664Y196223D01*

-X165792Y196114D01*

-Y194386D01*

-X165664Y194277D01*

-X165480Y194061D01*

-X165332Y193820D01*

-X165224Y193558D01*

-X165158Y193282D01*

-X165135Y193000D01*

-X165158Y192718D01*

-X165224Y192442D01*

-X165332Y192180D01*

-X165480Y191939D01*

-X165664Y191723D01*

-X165792Y191614D01*

-Y189142D01*

-X165124Y189089D01*

-X164466Y188931D01*

-X163841Y188672D01*

-X163264Y188319D01*

-X162749Y187879D01*

-X162309Y187364D01*

-X161956Y186787D01*

-X161938Y186745D01*

-Y191195D01*

-X161941Y191194D01*

-X162223Y191217D01*

-X162499Y191283D01*

-X162761Y191391D01*

-X163002Y191539D01*

-X163218Y191723D01*

-X163402Y191939D01*

-X163550Y192180D01*

-X163658Y192442D01*

-X163724Y192718D01*

-X163741Y193000D01*

-X163724Y193282D01*

-X163658Y193558D01*

-X163550Y193820D01*

-X163402Y194061D01*

-X163218Y194277D01*

-X163002Y194461D01*

-X162761Y194609D01*

-X162499Y194717D01*

-X162223Y194783D01*

-X161941Y194806D01*

-X161938Y194805D01*

-Y197195D01*

-X161941Y197194D01*

-X162223Y197217D01*

-X162499Y197283D01*

-X162761Y197391D01*

-X163002Y197539D01*

-X163218Y197723D01*

-X163402Y197939D01*

-X163550Y198180D01*

-X163658Y198442D01*

-X163724Y198718D01*

-X163741Y199000D01*

-X163724Y199282D01*

-X163658Y199558D01*

-X163550Y199820D01*

-X163402Y200061D01*

-X163218Y200277D01*

-X163002Y200461D01*

-X162761Y200609D01*

-X162499Y200717D01*

-X162223Y200783D01*

-X161941Y200806D01*

-X161938Y200805D01*

-Y240770D01*

-X162159Y240717D01*

-X162441Y240694D01*

-X162723Y240717D01*

-X162999Y240783D01*

-X163261Y240891D01*

-X163502Y241039D01*

-X163718Y241223D01*

-X163902Y241439D01*

-X164050Y241680D01*

-X164158Y241942D01*

-X164224Y242218D01*

-X164241Y242500D01*

-X164224Y242782D01*

-X164158Y243058D01*

-X164050Y243320D01*

-X163902Y243561D01*

-X163718Y243777D01*

-X163502Y243961D01*

-X163261Y244109D01*

-X162999Y244217D01*

-X162723Y244283D01*

-X162441Y244306D01*

-X162159Y244283D01*

-X161938Y244230D01*

-Y246770D01*

-X162159Y246717D01*

-X162441Y246694D01*

-X162723Y246717D01*

-X162999Y246783D01*

-X163261Y246891D01*

-X163502Y247039D01*

-X163718Y247223D01*

-X163902Y247439D01*

-X164050Y247680D01*

-X164158Y247942D01*

-X164224Y248218D01*

-X164241Y248500D01*

-X164224Y248782D01*

-X164158Y249058D01*

-X164050Y249320D01*

-X163902Y249561D01*

-X163718Y249777D01*

-X163502Y249961D01*

-X163261Y250109D01*

-X162999Y250217D01*

-X162723Y250283D01*

-X162441Y250306D01*

-X162159Y250283D01*

-X161938Y250230D01*

-Y253195D01*

-X161941Y253194D01*

-X162223Y253217D01*

-X162499Y253283D01*

-X162761Y253391D01*

-X163002Y253539D01*

-X163218Y253723D01*

-X163402Y253939D01*

-X163550Y254180D01*

-X163658Y254442D01*

-X163724Y254718D01*

-X163741Y255000D01*

-X163724Y255282D01*

-X163658Y255558D01*

-X163550Y255820D01*

-X163402Y256061D01*

-X163218Y256277D01*

-X163002Y256461D01*

-X162761Y256609D01*

-X162499Y256717D01*

-X162223Y256783D01*

-X161941Y256806D01*

-X161938Y256805D01*

-Y260770D01*

-X162159Y260717D01*

-X162441Y260694D01*

-X162723Y260717D01*

-X162999Y260783D01*

-X163261Y260891D01*

-X163502Y261039D01*

-X163718Y261223D01*

-X163902Y261439D01*

-X164050Y261680D01*

-X164158Y261942D01*

-X164224Y262218D01*

-X164241Y262500D01*

-X164224Y262782D01*

-X164158Y263058D01*

-X164050Y263320D01*

-X163902Y263561D01*

-X163718Y263777D01*

-X163502Y263961D01*

-X163261Y264109D01*

-X162999Y264217D01*

-X162723Y264283D01*

-X162441Y264306D01*

-X162159Y264283D01*

-X161938Y264230D01*

-Y267003D01*

-X162121Y266891D01*

-X162383Y266783D01*

-X162659Y266717D01*

-X162941Y266694D01*

-X163223Y266717D01*

-X163499Y266783D01*

-X163761Y266891D01*

-X164002Y267039D01*

-X164218Y267223D01*

-X164402Y267439D01*

-X164550Y267680D01*

-X164658Y267942D01*

-X164724Y268218D01*

-X164741Y268500D01*

-X164724Y268782D01*

-X164658Y269058D01*

-X164550Y269320D01*

-X164402Y269561D01*

-X164218Y269777D01*

-X164002Y269961D01*

-X163761Y270109D01*

-X163499Y270217D01*

-X163223Y270283D01*

-X162941Y270306D01*

-X162659Y270283D01*

-X162383Y270217D01*

-X162121Y270109D01*

-X161938Y269997D01*

-Y273003D01*

-X162121Y272891D01*

-X162383Y272783D01*

-X162659Y272717D01*

-X162941Y272694D01*

-X163223Y272717D01*

-X163499Y272783D01*

-X163761Y272891D01*

-X164002Y273039D01*

-X164218Y273223D01*

-X164402Y273439D01*

-X164550Y273680D01*

-X164658Y273942D01*

-X164724Y274218D01*

-X164741Y274500D01*

-X164724Y274782D01*

-X164658Y275058D01*

-X164550Y275320D01*

-X164402Y275561D01*

-X164218Y275777D01*

-X164002Y275961D01*

-X163761Y276109D01*

-X163499Y276217D01*

-X163223Y276283D01*

-X162941Y276306D01*

-X162659Y276283D01*

-X162383Y276217D01*

-X162121Y276109D01*

-X161938Y275997D01*

-Y362913D01*

-G37*

-G36*

-Y372913D02*X161956Y372871D01*

-X162309Y372294D01*

-X162749Y371779D01*

-X163264Y371339D01*

-X163841Y370986D01*

-X164466Y370727D01*

-X165124Y370569D01*

-X165792Y370516D01*

-Y369142D01*

-X165124Y369089D01*

-X164466Y368931D01*

-X163841Y368672D01*

-X163264Y368319D01*

-X162749Y367879D01*

-X162309Y367364D01*

-X161956Y366787D01*

-X161938Y366745D01*

-Y372913D01*

-G37*

-G36*

-Y397000D02*X165792D01*

-Y379142D01*

-X165124Y379089D01*

-X164466Y378931D01*

-X163841Y378672D01*

-X163264Y378319D01*

-X162749Y377879D01*

-X162309Y377364D01*

-X161956Y376787D01*

-X161938Y376745D01*

-Y397000D01*

-G37*

-G36*

-X165792Y97000D02*X163938D01*

-Y125695D01*

-X163941Y125694D01*

-X164223Y125717D01*

-X164499Y125783D01*

-X164761Y125891D01*

-X165002Y126039D01*

-X165218Y126223D01*

-X165402Y126439D01*

-X165550Y126680D01*

-X165658Y126942D01*

-X165724Y127218D01*

-X165741Y127500D01*

-X165724Y127782D01*

-X165658Y128058D01*

-X165550Y128320D01*

-X165402Y128561D01*

-X165218Y128777D01*

-X165002Y128961D01*

-X164761Y129109D01*

-X164499Y129217D01*

-X164223Y129283D01*

-X163941Y129306D01*

-X163938Y129305D01*

-Y170946D01*

-X164466Y170727D01*

-X165124Y170569D01*

-X165792Y170516D01*

-Y105680D01*

-X165621Y105609D01*

-X165380Y105461D01*

-X165164Y105277D01*

-X164980Y105061D01*

-X164832Y104820D01*

-X164724Y104558D01*

-X164658Y104282D01*

-X164635Y104000D01*

-X164658Y103718D01*

-X164724Y103442D01*

-X164832Y103180D01*

-X164980Y102939D01*

-X165164Y102723D01*

-X165380Y102539D01*

-X165621Y102391D01*

-X165792Y102320D01*

-Y97000D01*

-G37*

-G36*

-X163938D02*X161938D01*

-Y172913D01*

-X161956Y172871D01*

-X162309Y172294D01*

-X162749Y171779D01*

-X163264Y171339D01*

-X163841Y170986D01*

-X163938Y170946D01*

-Y129305D01*

-X163659Y129283D01*

-X163383Y129217D01*

-X163121Y129109D01*

-X162880Y128961D01*

-X162664Y128777D01*

-X162480Y128561D01*

-X162332Y128320D01*

-X162224Y128058D01*

-X162158Y127782D01*

-X162135Y127500D01*

-X162158Y127218D01*

-X162224Y126942D01*

-X162332Y126680D01*

-X162480Y126439D01*

-X162664Y126223D01*

-X162880Y126039D01*

-X163121Y125891D01*

-X163383Y125783D01*

-X163659Y125717D01*

-X163938Y125695D01*

-Y97000D01*

-G37*

-G36*

-X161938D02*X158438D01*

-Y171428D01*

-X158849Y171779D01*

-X159289Y172294D01*

-X159642Y172871D01*

-X159901Y173496D01*

-X160059Y174154D01*

-X160099Y174829D01*

-X160059Y175504D01*

-X159901Y176162D01*

-X159642Y176787D01*

-X159289Y177364D01*

-X158849Y177879D01*

-X158438Y178230D01*

-Y181428D01*

-X158849Y181779D01*

-X159289Y182294D01*

-X159642Y182871D01*

-X159901Y183496D01*

-X160059Y184154D01*

-X160099Y184829D01*

-X160059Y185504D01*

-X159901Y186162D01*

-X159642Y186787D01*

-X159289Y187364D01*

-X158849Y187879D01*

-X158438Y188230D01*

-Y322024D01*

-X158441Y322023D01*

-X158723Y322046D01*

-X158999Y322112D01*

-X159261Y322220D01*

-X159502Y322368D01*

-X159718Y322552D01*

-X159902Y322768D01*

-X160050Y323009D01*

-X160158Y323271D01*

-X160224Y323547D01*

-X160241Y323829D01*

-X160224Y324111D01*

-X160158Y324387D01*

-X160050Y324649D01*

-X159902Y324890D01*

-X159718Y325106D01*

-X159649Y325164D01*

-X159718Y325223D01*

-X159902Y325439D01*

-X160050Y325680D01*

-X160158Y325942D01*

-X160224Y326218D01*

-X160241Y326500D01*

-X160224Y326782D01*

-X160158Y327058D01*

-X160050Y327320D01*

-X159902Y327561D01*

-X159814Y327664D01*

-X159902Y327768D01*

-X160050Y328009D01*

-X160158Y328271D01*

-X160224Y328547D01*

-X160241Y328829D01*

-X160224Y329111D01*

-X160158Y329387D01*

-X160050Y329649D01*

-X159902Y329890D01*

-X159718Y330106D01*

-X159502Y330290D01*

-X159261Y330438D01*

-X158999Y330546D01*

-X158723Y330612D01*

-X158441Y330635D01*

-X158438Y330634D01*

-Y361428D01*

-X158849Y361779D01*

-X159289Y362294D01*

-X159642Y362871D01*

-X159901Y363496D01*

-X160059Y364154D01*

-X160099Y364829D01*

-X160059Y365504D01*

-X159901Y366162D01*

-X159642Y366787D01*

-X159289Y367364D01*

-X158849Y367879D01*

-X158438Y368230D01*

-Y371428D01*

-X158849Y371779D01*

-X159289Y372294D01*

-X159642Y372871D01*

-X159901Y373496D01*

-X160059Y374154D01*

-X160099Y374829D01*

-X160059Y375504D01*

-X159901Y376162D01*

-X159642Y376787D01*

-X159289Y377364D01*

-X158849Y377879D01*

-X158438Y378230D01*

-Y397000D01*

-X161938D01*

-Y376745D01*

-X161697Y376162D01*

-X161539Y375504D01*

-X161486Y374829D01*

-X161539Y374154D01*

-X161697Y373496D01*

-X161938Y372913D01*

-Y366745D01*

-X161697Y366162D01*

-X161539Y365504D01*

-X161486Y364829D01*

-X161539Y364154D01*

-X161697Y363496D01*

-X161938Y362913D01*

-Y275997D01*

-X161880Y275961D01*

-X161664Y275777D01*

-X161480Y275561D01*

-X161332Y275320D01*

-X161224Y275058D01*

-X161158Y274782D01*

-X161135Y274500D01*

-X161158Y274218D01*

-X161224Y273942D01*

-X161332Y273680D01*

-X161480Y273439D01*

-X161664Y273223D01*

-X161880Y273039D01*

-X161938Y273003D01*

-Y269997D01*

-X161880Y269961D01*

-X161664Y269777D01*

-X161480Y269561D01*

-X161332Y269320D01*

-X161224Y269058D01*

-X161158Y268782D01*

-X161135Y268500D01*

-X161158Y268218D01*

-X161224Y267942D01*

-X161332Y267680D01*

-X161480Y267439D01*

-X161664Y267223D01*

-X161880Y267039D01*

-X161938Y267003D01*

-Y264230D01*

-X161883Y264217D01*

-X161621Y264109D01*

-X161380Y263961D01*

-X161164Y263777D01*

-X160980Y263561D01*

-X160832Y263320D01*

-X160724Y263058D01*

-X160658Y262782D01*

-X160635Y262500D01*

-X160658Y262218D01*

-X160724Y261942D01*

-X160832Y261680D01*

-X160980Y261439D01*

-X161164Y261223D01*

-X161380Y261039D01*

-X161621Y260891D01*

-X161883Y260783D01*

-X161938Y260770D01*

-Y256805D01*

-X161659Y256783D01*

-X161383Y256717D01*

-X161121Y256609D01*

-X160880Y256461D01*

-X160664Y256277D01*

-X160480Y256061D01*

-X160332Y255820D01*

-X160224Y255558D01*

-X160158Y255282D01*

-X160135Y255000D01*

-X160158Y254718D01*

-X160224Y254442D01*

-X160332Y254180D01*

-X160480Y253939D01*

-X160664Y253723D01*

-X160880Y253539D01*

-X161121Y253391D01*

-X161383Y253283D01*

-X161659Y253217D01*

-X161938Y253195D01*

-Y250230D01*

-X161883Y250217D01*

-X161621Y250109D01*

-X161380Y249961D01*

-X161164Y249777D01*

-X160980Y249561D01*

-X160832Y249320D01*

-X160724Y249058D01*

-X160658Y248782D01*

-X160635Y248500D01*

-X160658Y248218D01*

-X160724Y247942D01*

-X160832Y247680D01*

-X160980Y247439D01*

-X161164Y247223D01*

-X161380Y247039D01*

-X161621Y246891D01*

-X161883Y246783D01*

-X161938Y246770D01*

-Y244230D01*

-X161883Y244217D01*

-X161621Y244109D01*

-X161380Y243961D01*

-X161164Y243777D01*

-X160980Y243561D01*

-X160832Y243320D01*

-X160724Y243058D01*

-X160658Y242782D01*

-X160635Y242500D01*

-X160658Y242218D01*

-X160724Y241942D01*

-X160832Y241680D01*

-X160980Y241439D01*

-X161164Y241223D01*

-X161380Y241039D01*

-X161621Y240891D01*

-X161883Y240783D01*

-X161938Y240770D01*

-Y200805D01*

-X161659Y200783D01*

-X161383Y200717D01*

-X161121Y200609D01*

-X160880Y200461D01*

-X160664Y200277D01*

-X160480Y200061D01*

-X160332Y199820D01*

-X160224Y199558D01*

-X160158Y199282D01*

-X160135Y199000D01*

-X160158Y198718D01*

-X160224Y198442D01*

-X160332Y198180D01*

-X160480Y197939D01*

-X160664Y197723D01*

-X160880Y197539D01*

-X161121Y197391D01*

-X161383Y197283D01*

-X161659Y197217D01*

-X161938Y197195D01*

-Y194805D01*

-X161659Y194783D01*

-X161383Y194717D01*

-X161121Y194609D01*

-X160880Y194461D01*

-X160664Y194277D01*

-X160480Y194061D01*

-X160332Y193820D01*

-X160224Y193558D01*

-X160158Y193282D01*

-X160135Y193000D01*

-X160158Y192718D01*

-X160224Y192442D01*

-X160332Y192180D01*

-X160480Y191939D01*

-X160664Y191723D01*

-X160880Y191539D01*

-X161121Y191391D01*

-X161383Y191283D01*

-X161659Y191217D01*

-X161938Y191195D01*

-Y186745D01*

-X161697Y186162D01*

-X161539Y185504D01*

-X161486Y184829D01*

-X161539Y184154D01*

-X161697Y183496D01*

-X161938Y182913D01*

-Y176745D01*

-X161697Y176162D01*

-X161539Y175504D01*

-X161486Y174829D01*

-X161539Y174154D01*

-X161697Y173496D01*

-X161938Y172913D01*

-Y97000D01*

-G37*

-G36*

-X158438Y378230D02*X158334Y378319D01*

-X157757Y378672D01*

-X157132Y378931D01*

-X156474Y379089D01*

-X155799Y379142D01*

-X155792Y379142D01*

-Y397000D01*

-X158438D01*

-Y378230D01*

-G37*

-G36*

-Y368230D02*X158334Y368319D01*

-X157757Y368672D01*

-X157132Y368931D01*

-X156474Y369089D01*

-X155799Y369142D01*

-X155792Y369142D01*

-Y370516D01*

-X155799Y370516D01*

-X156474Y370569D01*

-X157132Y370727D01*

-X157757Y370986D01*

-X158334Y371339D01*

-X158438Y371428D01*

-Y368230D01*

-G37*

-G36*

-Y188230D02*X158334Y188319D01*

-X157757Y188672D01*

-X157132Y188931D01*

-X156474Y189089D01*

-X155799Y189142D01*

-X155792Y189142D01*

-Y343911D01*

-X156002Y344039D01*

-X156218Y344223D01*

-X156402Y344439D01*

-X156550Y344680D01*

-X156658Y344942D01*

-X156724Y345218D01*

-X156741Y345500D01*

-X156724Y345782D01*

-X156658Y346058D01*

-X156550Y346320D01*

-X156402Y346561D01*

-X156218Y346777D01*

-X156002Y346961D01*

-X155792Y347089D01*

-Y360516D01*

-X155799Y360516D01*

-X156474Y360569D01*

-X157132Y360727D01*

-X157757Y360986D01*

-X158334Y361339D01*

-X158438Y361428D01*

-Y330634D01*

-X158159Y330612D01*

-X157883Y330546D01*

-X157621Y330438D01*

-X157380Y330290D01*

-X157164Y330106D01*

-X156980Y329890D01*

-X156832Y329649D01*

-X156724Y329387D01*

-X156658Y329111D01*

-X156635Y328829D01*

-X156658Y328547D01*

-X156724Y328271D01*

-X156832Y328009D01*

-X156980Y327768D01*

-X157068Y327664D01*

-X156980Y327561D01*

-X156832Y327320D01*

-X156724Y327058D01*

-X156658Y326782D01*

-X156635Y326500D01*

-X156658Y326218D01*

-X156724Y325942D01*

-X156832Y325680D01*

-X156980Y325439D01*

-X157164Y325223D01*

-X157233Y325164D01*

-X157164Y325106D01*

-X156980Y324890D01*

-X156832Y324649D01*

-X156724Y324387D01*

-X156658Y324111D01*

-X156635Y323829D01*

-X156658Y323547D01*

-X156724Y323271D01*

-X156832Y323009D01*

-X156980Y322768D01*

-X157164Y322552D01*

-X157380Y322368D01*

-X157621Y322220D01*

-X157883Y322112D01*

-X158159Y322046D01*

-X158438Y322024D01*

-Y188230D01*

-G37*

-G36*

-Y178230D02*X158334Y178319D01*

-X157757Y178672D01*

-X157132Y178931D01*

-X156474Y179089D01*

-X155799Y179142D01*

-X155792Y179142D01*

-Y180516D01*

-X155799Y180516D01*

-X156474Y180569D01*

-X157132Y180727D01*

-X157757Y180986D01*

-X158334Y181339D01*

-X158438Y181428D01*

-Y178230D01*

-G37*

-G36*

-Y97000D02*X155792D01*

-Y170516D01*

-X155799Y170516D01*

-X156474Y170569D01*

-X157132Y170727D01*

-X157757Y170986D01*

-X158334Y171339D01*

-X158438Y171428D01*

-Y97000D01*

-G37*

-G36*

-X152438Y182143D02*X152749Y181779D01*

-X153264Y181339D01*

-X153841Y180986D01*

-X154466Y180727D01*

-X155124Y180569D01*

-X155792Y180516D01*

-Y179142D01*

-X155124Y179089D01*

-X154466Y178931D01*

-X153841Y178672D01*

-X153264Y178319D01*

-X152749Y177879D01*

-X152438Y177515D01*

-Y182143D01*

-G37*

-G36*

-Y362143D02*X152749Y361779D01*

-X153264Y361339D01*

-X153841Y360986D01*

-X154466Y360727D01*

-X155124Y360569D01*

-X155792Y360516D01*

-Y347089D01*

-X155761Y347109D01*

-X155499Y347217D01*

-X155223Y347283D01*

-X154941Y347306D01*

-X154659Y347283D01*

-X154383Y347217D01*

-X154121Y347109D01*

-X153880Y346961D01*

-X153664Y346777D01*

-X153480Y346561D01*

-X153332Y346320D01*

-X153224Y346058D01*

-X153158Y345782D01*

-X153135Y345500D01*

-X153158Y345218D01*

-X153224Y344942D01*

-X153332Y344680D01*

-X153480Y344439D01*

-X153664Y344223D01*

-X153880Y344039D01*

-X154121Y343891D01*

-X154383Y343783D01*

-X154659Y343717D01*

-X154941Y343694D01*

-X155223Y343717D01*

-X155499Y343783D01*

-X155761Y343891D01*

-X155792Y343911D01*

-Y189142D01*

-X155124Y189089D01*

-X154466Y188931D01*

-X153841Y188672D01*

-X153264Y188319D01*

-X152749Y187879D01*

-X152438Y187515D01*

-Y337007D01*

-X152480Y336939D01*

-X152664Y336723D01*

-X152880Y336539D01*

-X153121Y336391D01*

-X153383Y336283D01*

-X153659Y336217D01*

-X153941Y336194D01*

-X154223Y336217D01*

-X154499Y336283D01*

-X154761Y336391D01*

-X155002Y336539D01*

-X155218Y336723D01*

-X155402Y336939D01*

-X155550Y337180D01*

-X155658Y337442D01*

-X155724Y337718D01*

-X155741Y338000D01*

-X155724Y338282D01*

-X155658Y338558D01*

-X155550Y338820D01*

-X155402Y339061D01*

-X155218Y339277D01*

-X155002Y339461D01*

-X154761Y339609D01*

-X154499Y339717D01*

-X154223Y339783D01*

-X153941Y339806D01*

-X153659Y339783D01*

-X153383Y339717D01*

-X153121Y339609D01*

-X152880Y339461D01*

-X152664Y339277D01*

-X152480Y339061D01*

-X152438Y338993D01*

-Y362143D01*

-G37*

-G36*

-Y372143D02*X152749Y371779D01*

-X153264Y371339D01*

-X153841Y370986D01*

-X154466Y370727D01*

-X155124Y370569D01*

-X155792Y370516D01*

-Y369142D01*

-X155124Y369089D01*

-X154466Y368931D01*

-X153841Y368672D01*

-X153264Y368319D01*

-X152749Y367879D01*

-X152438Y367515D01*

-Y372143D01*

-G37*

-G36*

-Y397000D02*X155792D01*

-Y379142D01*

-X155124Y379089D01*

-X154466Y378931D01*

-X153841Y378672D01*

-X153264Y378319D01*

-X152749Y377879D01*

-X152438Y377515D01*

-Y397000D01*

-G37*

-G36*

-X155792Y97000D02*X152438D01*

-Y119695D01*

-X152441Y119694D01*

-X152723Y119717D01*

-X152999Y119783D01*

-X153261Y119891D01*

-X153502Y120039D01*

-X153718Y120223D01*

-X153902Y120439D01*

-X154050Y120680D01*

-X154158Y120942D01*

-X154224Y121218D01*

-X154241Y121500D01*

-X154224Y121782D01*

-X154158Y122058D01*

-X154050Y122320D01*

-X153902Y122561D01*

-X153718Y122777D01*

-X153502Y122961D01*

-X153261Y123109D01*

-X152999Y123217D01*

-X152723Y123283D01*

-X152441Y123306D01*

-X152438Y123305D01*

-Y130268D01*

-X152499Y130283D01*

-X152761Y130391D01*

-X153002Y130539D01*

-X153218Y130723D01*

-X153402Y130939D01*

-X153550Y131180D01*

-X153658Y131442D01*

-X153724Y131718D01*

-X153741Y132000D01*

-X153724Y132282D01*

-X153658Y132558D01*

-X153550Y132820D01*

-X153402Y133061D01*

-X153218Y133277D01*

-X153002Y133461D01*

-X152761Y133609D01*

-X152499Y133717D01*

-X152438Y133732D01*

-Y172143D01*

-X152749Y171779D01*

-X153264Y171339D01*

-X153841Y170986D01*

-X154466Y170727D01*

-X155124Y170569D01*

-X155792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X152438D02*X149938D01*

-Y147195D01*

-X149941Y147194D01*

-X150223Y147217D01*

-X150499Y147283D01*

-X150761Y147391D01*

-X151002Y147539D01*

-X151218Y147723D01*

-X151402Y147939D01*

-X151550Y148180D01*

-X151658Y148442D01*

-X151724Y148718D01*

-X151741Y149000D01*

-X151724Y149282D01*

-X151658Y149558D01*

-X151550Y149820D01*

-X151402Y150061D01*

-X151218Y150277D01*

-X151002Y150461D01*

-X150761Y150609D01*

-X150499Y150717D01*

-X150223Y150783D01*

-X149941Y150806D01*

-X149938Y150805D01*

-Y173651D01*

-X150059Y174154D01*

-X150099Y174829D01*

-X150059Y175504D01*

-X149938Y176007D01*

-Y183651D01*

-X150059Y184154D01*

-X150099Y184829D01*

-X150059Y185504D01*

-X149938Y186007D01*

-Y347768D01*

-X149999Y347783D01*

-X150261Y347891D01*

-X150502Y348039D01*

-X150718Y348223D01*

-X150902Y348439D01*

-X151050Y348680D01*

-X151158Y348942D01*

-X151224Y349218D01*

-X151241Y349500D01*

-X151224Y349782D01*

-X151158Y350058D01*

-X151050Y350320D01*

-X150902Y350561D01*

-X150718Y350777D01*

-X150502Y350961D01*

-X150261Y351109D01*

-X149999Y351217D01*

-X149938Y351232D01*

-Y363651D01*

-X150059Y364154D01*

-X150099Y364829D01*

-X150059Y365504D01*

-X149938Y366007D01*

-Y373651D01*

-X150059Y374154D01*

-X150099Y374829D01*

-X150059Y375504D01*

-X149938Y376007D01*

-Y397000D01*

-X152438D01*

-Y377515D01*

-X152309Y377364D01*

-X151956Y376787D01*

-X151697Y376162D01*

-X151539Y375504D01*

-X151486Y374829D01*

-X151539Y374154D01*

-X151697Y373496D01*

-X151956Y372871D01*

-X152309Y372294D01*

-X152438Y372143D01*

-Y367515D01*

-X152309Y367364D01*

-X151956Y366787D01*

-X151697Y366162D01*

-X151539Y365504D01*

-X151486Y364829D01*

-X151539Y364154D01*

-X151697Y363496D01*

-X151956Y362871D01*

-X152309Y362294D01*

-X152438Y362143D01*

-Y338993D01*

-X152332Y338820D01*

-X152224Y338558D01*

-X152158Y338282D01*

-X152135Y338000D01*

-X152158Y337718D01*

-X152224Y337442D01*

-X152332Y337180D01*

-X152438Y337007D01*

-Y187515D01*

-X152309Y187364D01*

-X151956Y186787D01*

-X151697Y186162D01*

-X151539Y185504D01*

-X151486Y184829D01*

-X151539Y184154D01*

-X151697Y183496D01*

-X151956Y182871D01*

-X152309Y182294D01*

-X152438Y182143D01*

-Y177515D01*

-X152309Y177364D01*

-X151956Y176787D01*

-X151697Y176162D01*

-X151539Y175504D01*

-X151486Y174829D01*

-X151539Y174154D01*

-X151697Y173496D01*

-X151956Y172871D01*

-X152309Y172294D01*

-X152438Y172143D01*

-Y133732D01*

-X152223Y133783D01*

-X151941Y133806D01*

-X151659Y133783D01*

-X151383Y133717D01*

-X151121Y133609D01*

-X150880Y133461D01*

-X150664Y133277D01*

-X150480Y133061D01*

-X150332Y132820D01*

-X150224Y132558D01*

-X150158Y132282D01*

-X150135Y132000D01*

-X150158Y131718D01*

-X150224Y131442D01*

-X150332Y131180D01*

-X150480Y130939D01*

-X150664Y130723D01*

-X150880Y130539D01*

-X151121Y130391D01*

-X151383Y130283D01*

-X151659Y130217D01*

-X151941Y130194D01*

-X152223Y130217D01*

-X152438Y130268D01*

-Y123305D01*

-X152159Y123283D01*

-X151883Y123217D01*

-X151621Y123109D01*

-X151380Y122961D01*

-X151164Y122777D01*

-X150980Y122561D01*

-X150832Y122320D01*

-X150724Y122058D01*

-X150658Y121782D01*

-X150635Y121500D01*

-X150658Y121218D01*

-X150724Y120942D01*

-X150832Y120680D01*

-X150980Y120439D01*

-X151164Y120223D01*

-X151380Y120039D01*

-X151621Y119891D01*

-X151883Y119783D01*

-X152159Y119717D01*

-X152438Y119695D01*

-Y97000D01*

-G37*

-G36*

-X149938Y376007D02*X149901Y376162D01*

-X149642Y376787D01*

-X149289Y377364D01*

-X148849Y377879D01*

-X148334Y378319D01*

-X147757Y378672D01*

-X147132Y378931D01*

-X146474Y379089D01*

-X145799Y379142D01*

-X145792Y379142D01*

-Y397000D01*

-X149938D01*

-Y376007D01*

-G37*

-G36*

-Y366007D02*X149901Y366162D01*

-X149642Y366787D01*

-X149289Y367364D01*

-X148849Y367879D01*

-X148334Y368319D01*

-X147757Y368672D01*

-X147132Y368931D01*

-X146474Y369089D01*

-X145799Y369142D01*

-X145792Y369142D01*

-Y370516D01*

-X145799Y370516D01*

-X146474Y370569D01*

-X147132Y370727D01*

-X147757Y370986D01*

-X148334Y371339D01*

-X148849Y371779D01*

-X149289Y372294D01*

-X149642Y372871D01*

-X149901Y373496D01*

-X149938Y373651D01*

-Y366007D01*

-G37*

-G36*

-Y186007D02*X149901Y186162D01*

-X149642Y186787D01*

-X149289Y187364D01*

-X148849Y187879D01*

-X148334Y188319D01*

-X147757Y188672D01*

-X147132Y188931D01*

-X146474Y189089D01*

-X145799Y189142D01*

-X145792Y189142D01*

-Y360516D01*

-X145799Y360516D01*

-X146474Y360569D01*

-X147132Y360727D01*

-X147757Y360986D01*

-X148334Y361339D01*

-X148849Y361779D01*

-X149289Y362294D01*

-X149642Y362871D01*

-X149901Y363496D01*

-X149938Y363651D01*

-Y351232D01*

-X149723Y351283D01*

-X149441Y351306D01*

-X149159Y351283D01*

-X148883Y351217D01*

-X148621Y351109D01*

-X148380Y350961D01*

-X148164Y350777D01*

-X147980Y350561D01*

-X147832Y350320D01*

-X147724Y350058D01*

-X147658Y349782D01*

-X147635Y349500D01*

-X147658Y349218D01*

-X147724Y348942D01*

-X147832Y348680D01*

-X147980Y348439D01*

-X148164Y348223D01*

-X148380Y348039D01*

-X148621Y347891D01*

-X148883Y347783D01*

-X149159Y347717D01*

-X149441Y347694D01*

-X149723Y347717D01*

-X149938Y347768D01*

-Y186007D01*

-G37*

-G36*

-Y176007D02*X149901Y176162D01*

-X149642Y176787D01*

-X149289Y177364D01*

-X148849Y177879D01*

-X148334Y178319D01*

-X147757Y178672D01*

-X147132Y178931D01*

-X146474Y179089D01*

-X145799Y179142D01*

-X145792Y179142D01*

-Y180516D01*

-X145799Y180516D01*

-X146474Y180569D01*

-X147132Y180727D01*

-X147757Y180986D01*

-X148334Y181339D01*

-X148849Y181779D01*

-X149289Y182294D01*

-X149642Y182871D01*

-X149901Y183496D01*

-X149938Y183651D01*

-Y176007D01*

-G37*

-G36*

-Y97000D02*X145792D01*

-Y170516D01*

-X145799Y170516D01*

-X146474Y170569D01*

-X147132Y170727D01*

-X147757Y170986D01*

-X148334Y171339D01*

-X148849Y171779D01*

-X149289Y172294D01*

-X149642Y172871D01*

-X149901Y173496D01*

-X149938Y173651D01*

-Y150805D01*

-X149659Y150783D01*

-X149383Y150717D01*

-X149121Y150609D01*

-X148880Y150461D01*

-X148664Y150277D01*

-X148480Y150061D01*

-X148332Y149820D01*

-X148224Y149558D01*

-X148158Y149282D01*

-X148135Y149000D01*

-X148158Y148718D01*

-X148224Y148442D01*

-X148332Y148180D01*

-X148480Y147939D01*

-X148664Y147723D01*

-X148880Y147539D01*

-X149121Y147391D01*

-X149383Y147283D01*

-X149659Y147217D01*

-X149938Y147195D01*

-Y97000D01*

-G37*

-G36*

-X145792D02*X141438D01*

-Y146195D01*

-X141441Y146194D01*

-X141723Y146217D01*

-X141999Y146283D01*

-X142261Y146391D01*

-X142502Y146539D01*

-X142718Y146723D01*

-X142902Y146939D01*

-X143050Y147180D01*

-X143158Y147442D01*

-X143224Y147718D01*

-X143241Y148000D01*

-X143224Y148282D01*

-X143158Y148558D01*

-X143050Y148820D01*

-X142902Y149061D01*

-X142718Y149277D01*

-X142502Y149461D01*

-X142261Y149609D01*

-X141999Y149717D01*

-X141723Y149783D01*

-X141441Y149806D01*

-X141438Y149805D01*

-Y299088D01*

-X141589Y299100D01*

-X141865Y299166D01*

-X142127Y299274D01*

-X142368Y299422D01*

-X142584Y299606D01*

-X142768Y299822D01*

-X142916Y300063D01*

-X143024Y300325D01*

-X143090Y300601D01*

-X143107Y300883D01*

-X143090Y301165D01*

-X143024Y301441D01*

-X142916Y301703D01*

-X142768Y301944D01*

-X142584Y302160D01*

-X142368Y302344D01*

-X142127Y302492D01*

-X141865Y302600D01*

-X141589Y302666D01*

-X141438Y302678D01*

-Y336998D01*

-X141550Y337180D01*

-X141658Y337442D01*

-X141724Y337718D01*

-X141741Y338000D01*

-X141724Y338282D01*

-X141658Y338558D01*

-X141550Y338820D01*

-X141438Y339002D01*

-Y348003D01*

-X141621Y347891D01*

-X141883Y347783D01*

-X142159Y347717D01*

-X142441Y347694D01*

-X142723Y347717D01*

-X142999Y347783D01*

-X143261Y347891D01*

-X143502Y348039D01*

-X143718Y348223D01*

-X143902Y348439D01*

-X144050Y348680D01*

-X144158Y348942D01*

-X144224Y349218D01*

-X144241Y349500D01*

-X144224Y349782D01*

-X144158Y350058D01*

-X144050Y350320D01*

-X143902Y350561D01*

-X143718Y350777D01*

-X143502Y350961D01*

-X143261Y351109D01*

-X142999Y351217D01*

-X142723Y351283D01*

-X142441Y351306D01*

-X142159Y351283D01*

-X141883Y351217D01*

-X141621Y351109D01*

-X141438Y350997D01*

-Y356003D01*

-X141621Y355891D01*

-X141883Y355783D01*

-X142159Y355717D01*

-X142441Y355694D01*

-X142723Y355717D01*

-X142999Y355783D01*

-X143261Y355891D01*

-X143502Y356039D01*

-X143718Y356223D01*

-X143902Y356439D01*

-X144050Y356680D01*

-X144158Y356942D01*

-X144224Y357218D01*

-X144241Y357500D01*

-X144224Y357782D01*

-X144158Y358058D01*

-X144050Y358320D01*

-X143902Y358561D01*

-X143718Y358777D01*

-X143502Y358961D01*

-X143261Y359109D01*

-X142999Y359217D01*

-X142723Y359283D01*

-X142441Y359306D01*

-X142159Y359283D01*

-X141883Y359217D01*

-X141621Y359109D01*

-X141438Y358997D01*

-Y397000D01*

-X145792D01*

-Y379142D01*

-X145124Y379089D01*

-X144466Y378931D01*

-X143841Y378672D01*

-X143264Y378319D01*

-X142749Y377879D01*

-X142309Y377364D01*

-X141956Y376787D01*

-X141697Y376162D01*

-X141539Y375504D01*

-X141486Y374829D01*

-X141539Y374154D01*

-X141697Y373496D01*

-X141956Y372871D01*

-X142309Y372294D01*

-X142749Y371779D01*

-X143264Y371339D01*

-X143841Y370986D01*

-X144466Y370727D01*

-X145124Y370569D01*

-X145792Y370516D01*

-Y369142D01*

-X145124Y369089D01*

-X144466Y368931D01*

-X143841Y368672D01*

-X143264Y368319D01*

-X142749Y367879D01*

-X142309Y367364D01*

-X141956Y366787D01*

-X141697Y366162D01*

-X141539Y365504D01*

-X141486Y364829D01*

-X141539Y364154D01*

-X141697Y363496D01*

-X141956Y362871D01*

-X142309Y362294D01*

-X142749Y361779D01*

-X143264Y361339D01*

-X143841Y360986D01*

-X144466Y360727D01*

-X145124Y360569D01*

-X145792Y360516D01*

-Y189142D01*

-X145124Y189089D01*

-X144466Y188931D01*

-X143841Y188672D01*

-X143264Y188319D01*

-X142749Y187879D01*

-X142309Y187364D01*

-X141956Y186787D01*

-X141697Y186162D01*

-X141539Y185504D01*

-X141486Y184829D01*

-X141539Y184154D01*

-X141697Y183496D01*

-X141956Y182871D01*

-X142309Y182294D01*

-X142749Y181779D01*

-X143264Y181339D01*

-X143841Y180986D01*

-X144466Y180727D01*

-X145124Y180569D01*

-X145792Y180516D01*

-Y179142D01*

-X145124Y179089D01*

-X144466Y178931D01*

-X143841Y178672D01*

-X143264Y178319D01*

-X142749Y177879D01*

-X142309Y177364D01*

-X141956Y176787D01*

-X141697Y176162D01*

-X141539Y175504D01*

-X141486Y174829D01*

-X141539Y174154D01*

-X141697Y173496D01*

-X141956Y172871D01*

-X142309Y172294D01*

-X142749Y171779D01*

-X143264Y171339D01*

-X143841Y170986D01*

-X144466Y170727D01*

-X145124Y170569D01*

-X145792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X141438Y339002D02*X141402Y339061D01*

-X141218Y339277D01*

-X141002Y339461D01*

-X140761Y339609D01*

-X140499Y339717D01*

-X140223Y339783D01*

-X139941Y339806D01*

-X139659Y339783D01*

-X139383Y339717D01*

-X139121Y339609D01*

-X138922Y339487D01*

-Y361865D01*

-X139289Y362294D01*

-X139642Y362871D01*

-X139901Y363496D01*

-X140059Y364154D01*

-X140099Y364829D01*

-X140059Y365504D01*

-X139901Y366162D01*

-X139642Y366787D01*

-X139289Y367364D01*

-X138922Y367793D01*

-Y371865D01*

-X139289Y372294D01*

-X139642Y372871D01*

-X139901Y373496D01*

-X140059Y374154D01*

-X140099Y374829D01*

-X140059Y375504D01*

-X139901Y376162D01*

-X139642Y376787D01*

-X139289Y377364D01*

-X138922Y377793D01*

-Y397000D01*

-X141438D01*

-Y358997D01*

-X141380Y358961D01*

-X141164Y358777D01*

-X140980Y358561D01*

-X140832Y358320D01*

-X140724Y358058D01*

-X140658Y357782D01*

-X140635Y357500D01*

-X140658Y357218D01*

-X140724Y356942D01*

-X140832Y356680D01*

-X140980Y356439D01*

-X141164Y356223D01*

-X141380Y356039D01*

-X141438Y356003D01*

-Y350997D01*

-X141380Y350961D01*

-X141164Y350777D01*

-X140980Y350561D01*

-X140832Y350320D01*

-X140724Y350058D01*

-X140658Y349782D01*

-X140635Y349500D01*

-X140658Y349218D01*

-X140724Y348942D01*

-X140832Y348680D01*

-X140980Y348439D01*

-X141164Y348223D01*

-X141380Y348039D01*

-X141438Y348003D01*

-Y339002D01*

-G37*

-G36*

-Y97000D02*X138922D01*

-Y171865D01*

-X139289Y172294D01*

-X139642Y172871D01*

-X139901Y173496D01*

-X140059Y174154D01*

-X140099Y174829D01*

-X140059Y175504D01*

-X139901Y176162D01*

-X139642Y176787D01*

-X139289Y177364D01*

-X138922Y177793D01*

-Y181865D01*

-X139289Y182294D01*

-X139642Y182871D01*

-X139901Y183496D01*

-X140059Y184154D01*

-X140099Y184829D01*

-X140059Y185504D01*

-X139901Y186162D01*

-X139642Y186787D01*

-X139289Y187364D01*

-X138922Y187793D01*

-Y190893D01*

-X138925Y190892D01*

-X139207Y190915D01*

-X139483Y190981D01*

-X139745Y191089D01*

-X139986Y191237D01*

-X140202Y191421D01*

-X140386Y191637D01*

-X140534Y191878D01*

-X140642Y192140D01*

-X140708Y192416D01*

-X140725Y192698D01*

-X140708Y192980D01*

-X140642Y193256D01*

-X140534Y193518D01*

-X140386Y193759D01*

-X140202Y193975D01*

-X139986Y194159D01*

-X139745Y194307D01*

-X139483Y194415D01*

-X139207Y194481D01*

-X138925Y194504D01*

-X138922Y194503D01*

-Y196036D01*

-X138925Y196035D01*

-X139207Y196058D01*

-X139483Y196124D01*

-X139745Y196232D01*

-X139986Y196380D01*

-X140202Y196564D01*

-X140386Y196780D01*

-X140534Y197021D01*

-X140642Y197283D01*

-X140708Y197559D01*

-X140725Y197841D01*

-X140708Y198123D01*

-X140642Y198399D01*

-X140534Y198661D01*

-X140386Y198902D01*

-X140202Y199118D01*

-X139986Y199302D01*

-X139745Y199450D01*

-X139483Y199558D01*

-X139207Y199624D01*

-X138925Y199647D01*

-X138922Y199646D01*

-Y200228D01*

-X139154Y200247D01*

-X139430Y200313D01*

-X139692Y200421D01*

-X139933Y200569D01*

-X140149Y200753D01*

-X140333Y200969D01*

-X140481Y201210D01*

-X140589Y201472D01*

-X140655Y201748D01*

-X140672Y202030D01*

-X140655Y202312D01*

-X140589Y202588D01*

-X140481Y202850D01*

-X140333Y203091D01*

-X140149Y203307D01*

-X139933Y203491D01*

-X139692Y203639D01*

-X139430Y203747D01*

-X139154Y203813D01*

-X138922Y203832D01*

-Y204308D01*

-X138925Y204307D01*

-X139207Y204330D01*

-X139483Y204396D01*

-X139745Y204504D01*

-X139986Y204652D01*

-X140202Y204836D01*

-X140386Y205052D01*

-X140534Y205293D01*

-X140642Y205555D01*

-X140708Y205831D01*

-X140725Y206113D01*

-X140708Y206395D01*

-X140642Y206671D01*

-X140534Y206933D01*

-X140386Y207174D01*

-X140202Y207390D01*

-X139986Y207574D01*

-X139745Y207722D01*

-X139483Y207830D01*

-X139207Y207896D01*

-X138925Y207919D01*

-X138922Y207918D01*

-Y336513D01*

-X139121Y336391D01*

-X139383Y336283D01*

-X139659Y336217D01*

-X139941Y336194D01*

-X140223Y336217D01*

-X140499Y336283D01*

-X140761Y336391D01*

-X141002Y336539D01*

-X141218Y336723D01*

-X141402Y336939D01*

-X141438Y336998D01*

-Y302678D01*

-X141307Y302689D01*

-X141025Y302666D01*

-X140749Y302600D01*

-X140487Y302492D01*

-X140246Y302344D01*

-X140030Y302160D01*

-X139846Y301944D01*

-X139698Y301703D01*

-X139590Y301441D01*

-X139524Y301165D01*

-X139501Y300883D01*

-X139524Y300601D01*

-X139590Y300325D01*

-X139698Y300063D01*

-X139846Y299822D01*

-X140030Y299606D01*

-X140246Y299422D01*

-X140487Y299274D01*

-X140749Y299166D01*

-X141025Y299100D01*

-X141307Y299077D01*

-X141438Y299088D01*

-Y149805D01*

-X141159Y149783D01*

-X140883Y149717D01*

-X140621Y149609D01*

-X140380Y149461D01*

-X140164Y149277D01*

-X139980Y149061D01*

-X139832Y148820D01*

-X139724Y148558D01*

-X139658Y148282D01*

-X139635Y148000D01*

-X139658Y147718D01*

-X139724Y147442D01*

-X139832Y147180D01*

-X139980Y146939D01*

-X140164Y146723D01*

-X140380Y146539D01*

-X140621Y146391D01*

-X140883Y146283D01*

-X141159Y146217D01*

-X141438Y146195D01*

-Y97000D01*

-G37*

-G36*

-X138922Y377793D02*X138849Y377879D01*

-X138334Y378319D01*

-X137757Y378672D01*

-X137132Y378931D01*

-X136474Y379089D01*

-X135799Y379142D01*

-X135792Y379142D01*

-Y397000D01*

-X138922D01*

-Y377793D01*

-G37*

-G36*

-Y367793D02*X138849Y367879D01*

-X138334Y368319D01*

-X137757Y368672D01*

-X137132Y368931D01*

-X136474Y369089D01*

-X135799Y369142D01*

-X135792Y369142D01*

-Y370516D01*

-X135799Y370516D01*

-X136474Y370569D01*

-X137132Y370727D01*

-X137757Y370986D01*

-X138334Y371339D01*

-X138849Y371779D01*

-X138922Y371865D01*

-Y367793D01*

-G37*

-G36*

-Y187793D02*X138849Y187879D01*

-X138334Y188319D01*

-X137757Y188672D01*

-X137132Y188931D01*

-X136474Y189089D01*

-X135799Y189142D01*

-X135792Y189142D01*

-Y333233D01*

-X135999Y333283D01*

-X136261Y333391D01*

-X136502Y333539D01*

-X136718Y333723D01*

-X136902Y333939D01*

-X137050Y334180D01*

-X137158Y334442D01*

-X137224Y334718D01*

-X137241Y335000D01*

-X137224Y335282D01*

-X137158Y335558D01*

-X137050Y335820D01*

-X136902Y336061D01*

-X136718Y336277D01*

-X136502Y336461D01*

-X136261Y336609D01*

-X135999Y336717D01*

-X135862Y336750D01*

-X135999Y336783D01*

-X136261Y336891D01*

-X136502Y337039D01*

-X136718Y337223D01*

-X136902Y337439D01*

-X137050Y337680D01*

-X137158Y337942D01*

-X137224Y338218D01*

-X137241Y338500D01*

-X137224Y338782D01*

-X137158Y339058D01*

-X137050Y339320D01*

-X136902Y339561D01*

-X136718Y339777D01*

-X136502Y339961D01*

-X136261Y340109D01*

-X135999Y340217D01*

-X135792Y340267D01*

-Y360516D01*

-X135799Y360516D01*

-X136474Y360569D01*

-X137132Y360727D01*

-X137757Y360986D01*

-X138334Y361339D01*

-X138849Y361779D01*

-X138922Y361865D01*

-Y339487D01*

-X138880Y339461D01*

-X138664Y339277D01*

-X138480Y339061D01*

-X138332Y338820D01*

-X138224Y338558D01*

-X138158Y338282D01*

-X138135Y338000D01*

-X138158Y337718D01*

-X138224Y337442D01*

-X138332Y337180D01*

-X138480Y336939D01*

-X138664Y336723D01*

-X138880Y336539D01*

-X138922Y336513D01*

-Y207918D01*

-X138643Y207896D01*

-X138367Y207830D01*

-X138105Y207722D01*

-X137864Y207574D01*

-X137648Y207390D01*

-X137464Y207174D01*

-X137316Y206933D01*

-X137208Y206671D01*

-X137142Y206395D01*

-X137119Y206113D01*

-X137142Y205831D01*

-X137208Y205555D01*

-X137316Y205293D01*

-X137464Y205052D01*

-X137648Y204836D01*

-X137864Y204652D01*

-X138105Y204504D01*

-X138367Y204396D01*

-X138643Y204330D01*

-X138922Y204308D01*

-Y203832D01*

-X138872Y203836D01*

-X138590Y203813D01*

-X138314Y203747D01*

-X138052Y203639D01*

-X137811Y203491D01*

-X137595Y203307D01*

-X137411Y203091D01*

-X137263Y202850D01*

-X137155Y202588D01*

-X137089Y202312D01*

-X137066Y202030D01*

-X137089Y201748D01*

-X137155Y201472D01*

-X137263Y201210D01*

-X137411Y200969D01*

-X137595Y200753D01*

-X137811Y200569D01*

-X138052Y200421D01*

-X138314Y200313D01*

-X138590Y200247D01*

-X138872Y200224D01*

-X138922Y200228D01*

-Y199646D01*

-X138643Y199624D01*

-X138367Y199558D01*

-X138105Y199450D01*

-X137864Y199302D01*

-X137648Y199118D01*

-X137464Y198902D01*

-X137316Y198661D01*

-X137208Y198399D01*

-X137142Y198123D01*

-X137119Y197841D01*

-X137142Y197559D01*

-X137208Y197283D01*

-X137316Y197021D01*

-X137464Y196780D01*

-X137648Y196564D01*

-X137864Y196380D01*

-X138105Y196232D01*

-X138367Y196124D01*

-X138643Y196058D01*

-X138922Y196036D01*

-Y194503D01*

-X138643Y194481D01*

-X138367Y194415D01*

-X138105Y194307D01*

-X137864Y194159D01*

-X137648Y193975D01*

-X137464Y193759D01*

-X137316Y193518D01*

-X137208Y193256D01*

-X137142Y192980D01*

-X137119Y192698D01*

-X137142Y192416D01*

-X137208Y192140D01*

-X137316Y191878D01*

-X137464Y191637D01*

-X137648Y191421D01*

-X137864Y191237D01*

-X138105Y191089D01*

-X138367Y190981D01*

-X138643Y190915D01*

-X138922Y190893D01*

-Y187793D01*

-G37*

-G36*

-Y177793D02*X138849Y177879D01*

-X138334Y178319D01*

-X137757Y178672D01*

-X137132Y178931D01*

-X136474Y179089D01*

-X135799Y179142D01*

-X135792Y179142D01*

-Y180516D01*

-X135799Y180516D01*

-X136474Y180569D01*

-X137132Y180727D01*

-X137757Y180986D01*

-X138334Y181339D01*

-X138849Y181779D01*

-X138922Y181865D01*

-Y177793D01*

-G37*

-G36*

-Y97000D02*X135792D01*

-Y170516D01*

-X135799Y170516D01*

-X136474Y170569D01*

-X137132Y170727D01*

-X137757Y170986D01*

-X138334Y171339D01*

-X138849Y171779D01*

-X138922Y171865D01*

-Y97000D01*

-G37*

-G36*

-X135792D02*X130938D01*

-Y355695D01*

-X130941Y355694D01*

-X131223Y355717D01*

-X131499Y355783D01*

-X131761Y355891D01*

-X132002Y356039D01*

-X132218Y356223D01*

-X132402Y356439D01*

-X132550Y356680D01*

-X132658Y356942D01*

-X132724Y357218D01*

-X132741Y357500D01*

-X132724Y357782D01*

-X132658Y358058D01*

-X132550Y358320D01*

-X132402Y358561D01*

-X132218Y358777D01*

-X132002Y358961D01*

-X131761Y359109D01*

-X131499Y359217D01*

-X131223Y359283D01*

-X130941Y359306D01*

-X130938Y359305D01*

-Y397000D01*

-X135792D01*

-Y379142D01*

-X135124Y379089D01*

-X134466Y378931D01*

-X133841Y378672D01*

-X133264Y378319D01*

-X132749Y377879D01*

-X132309Y377364D01*

-X131956Y376787D01*

-X131697Y376162D01*

-X131539Y375504D01*

-X131486Y374829D01*

-X131539Y374154D01*

-X131697Y373496D01*

-X131956Y372871D01*

-X132309Y372294D01*

-X132749Y371779D01*

-X133264Y371339D01*

-X133841Y370986D01*

-X134466Y370727D01*

-X135124Y370569D01*

-X135792Y370516D01*

-Y369142D01*

-X135124Y369089D01*

-X134466Y368931D01*

-X133841Y368672D01*

-X133264Y368319D01*

-X132749Y367879D01*

-X132309Y367364D01*

-X131956Y366787D01*

-X131697Y366162D01*

-X131539Y365504D01*

-X131486Y364829D01*

-X131539Y364154D01*

-X131697Y363496D01*

-X131956Y362871D01*

-X132309Y362294D01*

-X132749Y361779D01*

-X133264Y361339D01*

-X133841Y360986D01*

-X134466Y360727D01*

-X135124Y360569D01*

-X135792Y360516D01*

-Y340267D01*

-X135723Y340283D01*

-X135441Y340306D01*

-X135159Y340283D01*

-X134883Y340217D01*

-X134621Y340109D01*

-X134380Y339961D01*

-X134164Y339777D01*

-X133980Y339561D01*

-X133832Y339320D01*

-X133724Y339058D01*

-X133658Y338782D01*

-X133635Y338500D01*

-X133658Y338218D01*

-X133724Y337942D01*

-X133832Y337680D01*

-X133980Y337439D01*

-X134164Y337223D01*

-X134380Y337039D01*

-X134621Y336891D01*

-X134883Y336783D01*

-X135020Y336750D01*

-X134883Y336717D01*

-X134621Y336609D01*

-X134380Y336461D01*

-X134164Y336277D01*

-X133980Y336061D01*

-X133832Y335820D01*

-X133724Y335558D01*

-X133658Y335282D01*

-X133635Y335000D01*

-X133658Y334718D01*

-X133724Y334442D01*

-X133832Y334180D01*

-X133980Y333939D01*

-X134164Y333723D01*

-X134380Y333539D01*

-X134621Y333391D01*

-X134883Y333283D01*

-X135159Y333217D01*

-X135441Y333194D01*

-X135723Y333217D01*

-X135792Y333233D01*

-Y189142D01*

-X135124Y189089D01*

-X134466Y188931D01*

-X133841Y188672D01*

-X133264Y188319D01*

-X132749Y187879D01*

-X132309Y187364D01*

-X131956Y186787D01*

-X131697Y186162D01*

-X131539Y185504D01*

-X131486Y184829D01*

-X131539Y184154D01*

-X131697Y183496D01*

-X131956Y182871D01*

-X132309Y182294D01*

-X132749Y181779D01*

-X133264Y181339D01*

-X133841Y180986D01*

-X134466Y180727D01*

-X135124Y180569D01*

-X135792Y180516D01*

-Y179142D01*

-X135124Y179089D01*

-X134466Y178931D01*

-X133841Y178672D01*

-X133264Y178319D01*

-X132749Y177879D01*

-X132309Y177364D01*

-X131956Y176787D01*

-X131697Y176162D01*

-X131539Y175504D01*

-X131486Y174829D01*

-X131539Y174154D01*

-X131697Y173496D01*

-X131956Y172871D01*

-X132309Y172294D01*

-X132749Y171779D01*

-X133264Y171339D01*

-X133841Y170986D01*

-X134466Y170727D01*

-X135124Y170569D01*

-X135792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X130938D02*X127938D01*

-Y146195D01*

-X127941Y146194D01*

-X128223Y146217D01*

-X128499Y146283D01*

-X128761Y146391D01*

-X129002Y146539D01*

-X129218Y146723D01*

-X129402Y146939D01*

-X129550Y147180D01*

-X129658Y147442D01*

-X129724Y147718D01*

-X129741Y148000D01*

-X129724Y148282D01*

-X129658Y148558D01*

-X129550Y148820D01*

-X129402Y149061D01*

-X129218Y149277D01*

-X129002Y149461D01*

-X128761Y149609D01*

-X128499Y149717D01*

-X128223Y149783D01*

-X127941Y149806D01*

-X127938Y149805D01*

-Y171097D01*

-X128334Y171339D01*

-X128849Y171779D01*

-X129289Y172294D01*

-X129642Y172871D01*

-X129901Y173496D01*

-X130059Y174154D01*

-X130099Y174829D01*

-X130059Y175504D01*

-X129901Y176162D01*

-X129642Y176787D01*

-X129289Y177364D01*

-X128849Y177879D01*

-X128334Y178319D01*

-X127938Y178561D01*

-Y181097D01*

-X128334Y181339D01*

-X128849Y181779D01*

-X129289Y182294D01*

-X129642Y182871D01*

-X129901Y183496D01*

-X130059Y184154D01*

-X130099Y184829D01*

-X130059Y185504D01*

-X129901Y186162D01*

-X129642Y186787D01*

-X129289Y187364D01*

-X128849Y187879D01*

-X128334Y188319D01*

-X127938Y188561D01*

-Y241003D01*

-X128121Y240891D01*

-X128383Y240783D01*

-X128659Y240717D01*

-X128941Y240694D01*

-X129223Y240717D01*

-X129499Y240783D01*

-X129761Y240891D01*

-X130002Y241039D01*

-X130218Y241223D01*

-X130402Y241439D01*

-X130550Y241680D01*

-X130658Y241942D01*

-X130724Y242218D01*

-X130741Y242500D01*

-X130724Y242782D01*

-X130658Y243058D01*

-X130550Y243320D01*

-X130402Y243561D01*

-X130218Y243777D01*

-X130002Y243961D01*

-X129761Y244109D01*

-X129499Y244217D01*

-X129223Y244283D01*

-X128941Y244306D01*

-X128659Y244283D01*

-X128383Y244217D01*

-X128121Y244109D01*

-X127938Y243997D01*

-Y247003D01*

-X128121Y246891D01*

-X128383Y246783D01*

-X128659Y246717D01*

-X128941Y246694D01*

-X129223Y246717D01*

-X129499Y246783D01*

-X129761Y246891D01*

-X130002Y247039D01*

-X130218Y247223D01*

-X130402Y247439D01*

-X130550Y247680D01*

-X130658Y247942D01*

-X130724Y248218D01*

-X130741Y248500D01*

-X130724Y248782D01*

-X130658Y249058D01*

-X130550Y249320D01*

-X130402Y249561D01*

-X130218Y249777D01*

-X130002Y249961D01*

-X129761Y250109D01*

-X129499Y250217D01*

-X129223Y250283D01*

-X128941Y250306D01*

-X128659Y250283D01*

-X128383Y250217D01*

-X128121Y250109D01*

-X127938Y249997D01*

-Y253503D01*

-X128121Y253391D01*

-X128383Y253283D01*

-X128659Y253217D01*

-X128941Y253194D01*

-X129223Y253217D01*

-X129499Y253283D01*

-X129761Y253391D01*

-X130002Y253539D01*

-X130218Y253723D01*

-X130402Y253939D01*

-X130550Y254180D01*

-X130658Y254442D01*

-X130724Y254718D01*

-X130741Y255000D01*

-X130724Y255282D01*

-X130658Y255558D01*

-X130550Y255820D01*

-X130402Y256061D01*

-X130218Y256277D01*

-X130002Y256461D01*

-X129761Y256609D01*

-X129499Y256717D01*

-X129223Y256783D01*

-X128941Y256806D01*

-X128659Y256783D01*

-X128383Y256717D01*

-X128121Y256609D01*

-X127938Y256497D01*

-Y261003D01*

-X128121Y260891D01*

-X128383Y260783D01*

-X128659Y260717D01*

-X128941Y260694D01*

-X129223Y260717D01*

-X129499Y260783D01*

-X129761Y260891D01*

-X130002Y261039D01*

-X130218Y261223D01*

-X130402Y261439D01*

-X130550Y261680D01*

-X130658Y261942D01*

-X130724Y262218D01*

-X130741Y262500D01*

-X130724Y262782D01*

-X130658Y263058D01*

-X130550Y263320D01*

-X130402Y263561D01*

-X130218Y263777D01*

-X130002Y263961D01*

-X129761Y264109D01*

-X129499Y264217D01*

-X129223Y264283D01*

-X128941Y264306D01*

-X128659Y264283D01*

-X128383Y264217D01*

-X128121Y264109D01*

-X127938Y263997D01*

-Y267003D01*

-X128121Y266891D01*

-X128383Y266783D01*

-X128659Y266717D01*

-X128941Y266694D01*

-X129223Y266717D01*

-X129499Y266783D01*

-X129761Y266891D01*

-X130002Y267039D01*

-X130218Y267223D01*

-X130402Y267439D01*

-X130550Y267680D01*

-X130658Y267942D01*

-X130724Y268218D01*

-X130741Y268500D01*

-X130724Y268782D01*

-X130658Y269058D01*

-X130550Y269320D01*

-X130402Y269561D01*

-X130218Y269777D01*

-X130002Y269961D01*

-X129761Y270109D01*

-X129499Y270217D01*

-X129223Y270283D01*

-X128941Y270306D01*

-X128659Y270283D01*

-X128383Y270217D01*

-X128121Y270109D01*

-X127938Y269997D01*

-Y273003D01*

-X128121Y272891D01*

-X128383Y272783D01*

-X128659Y272717D01*

-X128941Y272694D01*

-X129223Y272717D01*

-X129499Y272783D01*

-X129761Y272891D01*

-X130002Y273039D01*

-X130218Y273223D01*

-X130402Y273439D01*

-X130550Y273680D01*

-X130658Y273942D01*

-X130724Y274218D01*

-X130741Y274500D01*

-X130724Y274782D01*

-X130658Y275058D01*

-X130550Y275320D01*

-X130402Y275561D01*

-X130218Y275777D01*

-X130002Y275961D01*

-X129761Y276109D01*

-X129499Y276217D01*

-X129223Y276283D01*

-X128941Y276306D01*

-X128659Y276283D01*

-X128383Y276217D01*

-X128121Y276109D01*

-X127938Y275997D01*

-Y332998D01*

-X128050Y333180D01*

-X128158Y333442D01*

-X128224Y333718D01*

-X128241Y334000D01*

-X128224Y334282D01*

-X128158Y334558D01*

-X128050Y334820D01*

-X127938Y335002D01*

-Y339498D01*

-X128050Y339680D01*

-X128158Y339942D01*

-X128224Y340218D01*

-X128241Y340500D01*

-X128224Y340782D01*

-X128158Y341058D01*

-X128050Y341320D01*

-X127938Y341502D01*

-Y361097D01*

-X128334Y361339D01*

-X128849Y361779D01*

-X129289Y362294D01*

-X129642Y362871D01*

-X129901Y363496D01*

-X130059Y364154D01*

-X130099Y364829D01*

-X130059Y365504D01*

-X129901Y366162D01*

-X129642Y366787D01*

-X129289Y367364D01*

-X128849Y367879D01*

-X128334Y368319D01*

-X127938Y368561D01*

-Y371097D01*

-X128334Y371339D01*

-X128849Y371779D01*

-X129289Y372294D01*

-X129642Y372871D01*

-X129901Y373496D01*

-X130059Y374154D01*

-X130099Y374829D01*

-X130059Y375504D01*

-X129901Y376162D01*

-X129642Y376787D01*

-X129289Y377364D01*

-X128849Y377879D01*

-X128334Y378319D01*

-X127938Y378561D01*

-Y397000D01*

-X130938D01*

-Y359305D01*

-X130659Y359283D01*

-X130383Y359217D01*

-X130121Y359109D01*

-X129880Y358961D01*

-X129664Y358777D01*

-X129480Y358561D01*

-X129332Y358320D01*

-X129224Y358058D01*

-X129158Y357782D01*

-X129135Y357500D01*

-X129158Y357218D01*

-X129224Y356942D01*

-X129332Y356680D01*

-X129480Y356439D01*

-X129664Y356223D01*

-X129880Y356039D01*

-X130121Y355891D01*

-X130383Y355783D01*

-X130659Y355717D01*

-X130938Y355695D01*

-Y97000D01*

-G37*

-G36*

-X127938Y378561D02*X127757Y378672D01*

-X127132Y378931D01*

-X126474Y379089D01*

-X125799Y379142D01*

-X125792Y379142D01*

-Y397000D01*

-X127938D01*

-Y378561D01*

-G37*

-G36*

-Y368561D02*X127757Y368672D01*

-X127132Y368931D01*

-X126474Y369089D01*

-X125799Y369142D01*

-X125792Y369142D01*

-Y370516D01*

-X125799Y370516D01*

-X126474Y370569D01*

-X127132Y370727D01*

-X127757Y370986D01*

-X127938Y371097D01*

-Y368561D01*

-G37*

-G36*

-Y341502D02*X127902Y341561D01*

-X127718Y341777D01*

-X127502Y341961D01*

-X127261Y342109D01*

-X126999Y342217D01*

-X126723Y342283D01*

-X126441Y342306D01*

-X126159Y342283D01*

-X125883Y342217D01*

-X125792Y342180D01*

-Y360516D01*

-X125799Y360516D01*

-X126474Y360569D01*

-X127132Y360727D01*

-X127757Y360986D01*

-X127938Y361097D01*

-Y341502D01*

-G37*

-G36*

-Y335002D02*X127902Y335061D01*

-X127718Y335277D01*

-X127502Y335461D01*

-X127261Y335609D01*

-X126999Y335717D01*

-X126723Y335783D01*

-X126441Y335806D01*

-X126159Y335783D01*

-X125883Y335717D01*

-X125792Y335680D01*

-Y338820D01*

-X125883Y338783D01*

-X126159Y338717D01*

-X126441Y338694D01*

-X126723Y338717D01*

-X126999Y338783D01*

-X127261Y338891D01*

-X127502Y339039D01*

-X127718Y339223D01*

-X127902Y339439D01*

-X127938Y339498D01*

-Y335002D01*

-G37*

-G36*

-Y188561D02*X127757Y188672D01*

-X127132Y188931D01*

-X126474Y189089D01*

-X125799Y189142D01*

-X125792Y189142D01*

-Y300863D01*

-X125892Y300924D01*

-X126108Y301108D01*

-X126292Y301324D01*

-X126440Y301565D01*

-X126548Y301827D01*

-X126614Y302103D01*

-X126631Y302385D01*

-X126614Y302667D01*

-X126548Y302943D01*

-X126440Y303205D01*

-X126292Y303446D01*

-X126108Y303662D01*

-X125892Y303846D01*

-X125792Y303907D01*

-Y332320D01*

-X125883Y332283D01*

-X126159Y332217D01*

-X126441Y332194D01*

-X126723Y332217D01*

-X126999Y332283D01*

-X127261Y332391D01*

-X127502Y332539D01*

-X127718Y332723D01*

-X127902Y332939D01*

-X127938Y332998D01*

-Y275997D01*

-X127880Y275961D01*

-X127664Y275777D01*

-X127480Y275561D01*

-X127332Y275320D01*

-X127224Y275058D01*

-X127158Y274782D01*

-X127135Y274500D01*

-X127158Y274218D01*

-X127224Y273942D01*

-X127332Y273680D01*

-X127480Y273439D01*

-X127664Y273223D01*

-X127880Y273039D01*

-X127938Y273003D01*

-Y269997D01*

-X127880Y269961D01*

-X127664Y269777D01*

-X127480Y269561D01*

-X127332Y269320D01*

-X127224Y269058D01*

-X127158Y268782D01*

-X127135Y268500D01*

-X127158Y268218D01*

-X127224Y267942D01*

-X127332Y267680D01*

-X127480Y267439D01*

-X127664Y267223D01*

-X127880Y267039D01*

-X127938Y267003D01*

-Y263997D01*

-X127880Y263961D01*

-X127664Y263777D01*

-X127480Y263561D01*

-X127332Y263320D01*

-X127224Y263058D01*

-X127158Y262782D01*

-X127135Y262500D01*

-X127158Y262218D01*

-X127224Y261942D01*

-X127332Y261680D01*

-X127480Y261439D01*

-X127664Y261223D01*

-X127880Y261039D01*

-X127938Y261003D01*

-Y256497D01*

-X127880Y256461D01*

-X127664Y256277D01*

-X127480Y256061D01*

-X127332Y255820D01*

-X127224Y255558D01*

-X127158Y255282D01*

-X127135Y255000D01*

-X127158Y254718D01*

-X127224Y254442D01*

-X127332Y254180D01*

-X127480Y253939D01*

-X127664Y253723D01*

-X127880Y253539D01*

-X127938Y253503D01*

-Y249997D01*

-X127880Y249961D01*

-X127664Y249777D01*

-X127480Y249561D01*

-X127332Y249320D01*

-X127224Y249058D01*

-X127158Y248782D01*

-X127135Y248500D01*

-X127158Y248218D01*

-X127224Y247942D01*

-X127332Y247680D01*

-X127480Y247439D01*

-X127664Y247223D01*

-X127880Y247039D01*

-X127938Y247003D01*

-Y243997D01*

-X127880Y243961D01*

-X127664Y243777D01*

-X127480Y243561D01*

-X127332Y243320D01*

-X127224Y243058D01*

-X127158Y242782D01*

-X127135Y242500D01*

-X127158Y242218D01*

-X127224Y241942D01*

-X127332Y241680D01*

-X127480Y241439D01*

-X127664Y241223D01*

-X127880Y241039D01*

-X127938Y241003D01*

-Y188561D01*

-G37*

-G36*

-Y178561D02*X127757Y178672D01*

-X127132Y178931D01*

-X126474Y179089D01*

-X125799Y179142D01*

-X125792Y179142D01*

-Y180516D01*

-X125799Y180516D01*

-X126474Y180569D01*

-X127132Y180727D01*

-X127757Y180986D01*

-X127938Y181097D01*

-Y178561D01*

-G37*

-G36*

-Y97000D02*X125792D01*

-Y170516D01*

-X125799Y170516D01*

-X126474Y170569D01*

-X127132Y170727D01*

-X127757Y170986D01*

-X127938Y171097D01*

-Y149805D01*

-X127659Y149783D01*

-X127383Y149717D01*

-X127121Y149609D01*

-X126880Y149461D01*

-X126664Y149277D01*

-X126480Y149061D01*

-X126332Y148820D01*

-X126224Y148558D01*

-X126158Y148282D01*

-X126135Y148000D01*

-X126158Y147718D01*

-X126224Y147442D01*

-X126332Y147180D01*

-X126480Y146939D01*

-X126664Y146723D01*

-X126880Y146539D01*

-X127121Y146391D01*

-X127383Y146283D01*

-X127659Y146217D01*

-X127938Y146195D01*

-Y97000D01*

-G37*

-G36*

-X121938Y182913D02*X121956Y182871D01*

-X122309Y182294D01*

-X122749Y181779D01*

-X123264Y181339D01*

-X123841Y180986D01*

-X124466Y180727D01*

-X125124Y180569D01*

-X125792Y180516D01*

-Y179142D01*

-X125124Y179089D01*

-X124466Y178931D01*

-X123841Y178672D01*

-X123264Y178319D01*

-X122749Y177879D01*

-X122309Y177364D01*

-X121956Y176787D01*

-X121938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y362913D02*X121956Y362871D01*

-X122309Y362294D01*

-X122749Y361779D01*

-X123264Y361339D01*

-X123841Y360986D01*

-X124466Y360727D01*

-X125124Y360569D01*

-X125792Y360516D01*

-Y342180D01*

-X125621Y342109D01*

-X125380Y341961D01*

-X125164Y341777D01*

-X124980Y341561D01*

-X124832Y341320D01*

-X124724Y341058D01*

-X124658Y340782D01*

-X124635Y340500D01*

-X124658Y340218D01*

-X124724Y339942D01*

-X124832Y339680D01*

-X124980Y339439D01*

-X125164Y339223D01*

-X125380Y339039D01*

-X125621Y338891D01*

-X125792Y338820D01*

-Y335680D01*

-X125621Y335609D01*

-X125380Y335461D01*

-X125164Y335277D01*

-X124980Y335061D01*

-X124832Y334820D01*

-X124724Y334558D01*

-X124658Y334282D01*

-X124635Y334000D01*

-X124658Y333718D01*

-X124724Y333442D01*

-X124832Y333180D01*

-X124980Y332939D01*

-X125164Y332723D01*

-X125380Y332539D01*

-X125621Y332391D01*

-X125792Y332320D01*

-Y303907D01*

-X125651Y303994D01*

-X125389Y304102D01*

-X125113Y304168D01*

-X124831Y304191D01*

-X124549Y304168D01*

-X124273Y304102D01*

-X124011Y303994D01*

-X123770Y303846D01*

-X123554Y303662D01*

-X123370Y303446D01*

-X123222Y303205D01*

-X123114Y302943D01*

-X123048Y302667D01*

-X123025Y302385D01*

-X123048Y302103D01*

-X123114Y301827D01*

-X123222Y301565D01*

-X123370Y301324D01*

-X123554Y301108D01*

-X123770Y300924D01*

-X124011Y300776D01*

-X124273Y300668D01*

-X124549Y300602D01*

-X124831Y300579D01*

-X125113Y300602D01*

-X125389Y300668D01*

-X125651Y300776D01*

-X125792Y300863D01*

-Y189142D01*

-X125124Y189089D01*

-X124466Y188931D01*

-X123841Y188672D01*

-X123264Y188319D01*

-X122749Y187879D01*

-X122309Y187364D01*

-X121956Y186787D01*

-X121938Y186745D01*

-Y355695D01*

-X121941Y355694D01*

-X122223Y355717D01*

-X122499Y355783D01*

-X122761Y355891D01*

-X123002Y356039D01*

-X123218Y356223D01*

-X123402Y356439D01*

-X123550Y356680D01*

-X123658Y356942D01*

-X123724Y357218D01*

-X123741Y357500D01*

-X123724Y357782D01*

-X123658Y358058D01*

-X123550Y358320D01*

-X123402Y358561D01*

-X123218Y358777D01*

-X123002Y358961D01*

-X122761Y359109D01*

-X122499Y359217D01*

-X122223Y359283D01*

-X121941Y359306D01*

-X121938Y359305D01*

-Y362913D01*

-G37*

-G36*

-Y372913D02*X121956Y372871D01*

-X122309Y372294D01*

-X122749Y371779D01*

-X123264Y371339D01*

-X123841Y370986D01*

-X124466Y370727D01*

-X125124Y370569D01*

-X125792Y370516D01*

-Y369142D01*

-X125124Y369089D01*

-X124466Y368931D01*

-X123841Y368672D01*

-X123264Y368319D01*

-X122749Y367879D01*

-X122309Y367364D01*

-X121956Y366787D01*

-X121938Y366745D01*

-Y372913D01*

-G37*

-G36*

-Y397000D02*X125792D01*

-Y379142D01*

-X125124Y379089D01*

-X124466Y378931D01*

-X123841Y378672D01*

-X123264Y378319D01*

-X122749Y377879D01*

-X122309Y377364D01*

-X121956Y376787D01*

-X121938Y376745D01*

-Y397000D01*

-G37*

-G36*

-X125792Y97000D02*X121938D01*

-Y172913D01*

-X121956Y172871D01*

-X122309Y172294D01*

-X122749Y171779D01*

-X123264Y171339D01*

-X123841Y170986D01*

-X124466Y170727D01*

-X125124Y170569D01*

-X125792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X121938D02*X117938D01*

-Y171097D01*

-X118334Y171339D01*

-X118849Y171779D01*

-X119289Y172294D01*

-X119642Y172871D01*

-X119901Y173496D01*

-X120059Y174154D01*

-X120099Y174829D01*

-X120059Y175504D01*

-X119901Y176162D01*

-X119642Y176787D01*

-X119289Y177364D01*

-X118849Y177879D01*

-X118334Y178319D01*

-X117938Y178561D01*

-Y181097D01*

-X118334Y181339D01*

-X118849Y181779D01*

-X119289Y182294D01*

-X119642Y182871D01*

-X119901Y183496D01*

-X120059Y184154D01*

-X120099Y184829D01*

-X120059Y185504D01*

-X119901Y186162D01*

-X119642Y186787D01*

-X119289Y187364D01*

-X118849Y187879D01*

-X118334Y188319D01*

-X117938Y188561D01*

-Y332195D01*

-X117941Y332194D01*

-X118223Y332217D01*

-X118499Y332283D01*

-X118761Y332391D01*

-X119002Y332539D01*

-X119218Y332723D01*

-X119402Y332939D01*

-X119550Y333180D01*

-X119658Y333442D01*

-X119724Y333718D01*

-X119741Y334000D01*

-X119724Y334282D01*

-X119658Y334558D01*

-X119550Y334820D01*

-X119402Y335061D01*

-X119218Y335277D01*

-X119002Y335461D01*

-X118761Y335609D01*

-X118499Y335717D01*

-X118223Y335783D01*

-X117941Y335806D01*

-X117938Y335805D01*

-Y361097D01*

-X118334Y361339D01*

-X118849Y361779D01*

-X119289Y362294D01*

-X119642Y362871D01*

-X119901Y363496D01*

-X120059Y364154D01*

-X120099Y364829D01*

-X120059Y365504D01*

-X119901Y366162D01*

-X119642Y366787D01*

-X119289Y367364D01*

-X118849Y367879D01*

-X118334Y368319D01*

-X117938Y368561D01*

-Y371097D01*

-X118334Y371339D01*

-X118849Y371779D01*

-X119289Y372294D01*

-X119642Y372871D01*

-X119901Y373496D01*

-X120059Y374154D01*

-X120099Y374829D01*

-X120059Y375504D01*

-X119901Y376162D01*

-X119642Y376787D01*

-X119289Y377364D01*

-X118849Y377879D01*

-X118334Y378319D01*

-X117938Y378561D01*

-Y397000D01*

-X121938D01*

-Y376745D01*

-X121697Y376162D01*

-X121539Y375504D01*

-X121486Y374829D01*

-X121539Y374154D01*

-X121697Y373496D01*

-X121938Y372913D01*

-Y366745D01*

-X121697Y366162D01*

-X121539Y365504D01*

-X121486Y364829D01*

-X121539Y364154D01*

-X121697Y363496D01*

-X121938Y362913D01*

-Y359305D01*

-X121659Y359283D01*

-X121383Y359217D01*

-X121121Y359109D01*

-X120880Y358961D01*

-X120664Y358777D01*

-X120480Y358561D01*

-X120332Y358320D01*

-X120224Y358058D01*

-X120158Y357782D01*

-X120135Y357500D01*

-X120158Y357218D01*

-X120224Y356942D01*

-X120332Y356680D01*

-X120480Y356439D01*

-X120664Y356223D01*

-X120880Y356039D01*

-X121121Y355891D01*

-X121383Y355783D01*

-X121659Y355717D01*

-X121938Y355695D01*

-Y186745D01*

-X121697Y186162D01*

-X121539Y185504D01*

-X121486Y184829D01*

-X121539Y184154D01*

-X121697Y183496D01*

-X121938Y182913D01*

-Y176745D01*

-X121697Y176162D01*

-X121539Y175504D01*

-X121486Y174829D01*

-X121539Y174154D01*

-X121697Y173496D01*

-X121938Y172913D01*

-Y97000D01*

-G37*

-G36*

-X117938Y378561D02*X117757Y378672D01*

-X117132Y378931D01*

-X116474Y379089D01*

-X115799Y379142D01*

-X115792Y379142D01*

-Y397000D01*

-X117938D01*

-Y378561D01*

-G37*

-G36*

-Y368561D02*X117757Y368672D01*

-X117132Y368931D01*

-X116474Y369089D01*

-X115799Y369142D01*

-X115792Y369142D01*

-Y370516D01*

-X115799Y370516D01*

-X116474Y370569D01*

-X117132Y370727D01*

-X117757Y370986D01*

-X117938Y371097D01*

-Y368561D01*

-G37*

-G36*

-Y188561D02*X117757Y188672D01*

-X117132Y188931D01*

-X116474Y189089D01*

-X115799Y189142D01*

-X115792Y189142D01*

-Y360516D01*

-X115799Y360516D01*

-X116474Y360569D01*

-X117132Y360727D01*

-X117757Y360986D01*

-X117938Y361097D01*

-Y335805D01*

-X117659Y335783D01*

-X117383Y335717D01*

-X117121Y335609D01*

-X116880Y335461D01*

-X116664Y335277D01*

-X116480Y335061D01*

-X116332Y334820D01*

-X116224Y334558D01*

-X116158Y334282D01*

-X116135Y334000D01*

-X116158Y333718D01*

-X116224Y333442D01*

-X116332Y333180D01*

-X116480Y332939D01*

-X116664Y332723D01*

-X116880Y332539D01*

-X117121Y332391D01*

-X117383Y332283D01*

-X117659Y332217D01*

-X117938Y332195D01*

-Y188561D01*

-G37*

-G36*

-Y178561D02*X117757Y178672D01*

-X117132Y178931D01*

-X116474Y179089D01*

-X115799Y179142D01*

-X115792Y179142D01*

-Y180516D01*

-X115799Y180516D01*

-X116474Y180569D01*

-X117132Y180727D01*

-X117757Y180986D01*

-X117938Y181097D01*

-Y178561D01*

-G37*

-G36*

-Y97000D02*X115792D01*

-Y120311D01*

-X115902Y120439D01*

-X116050Y120680D01*

-X116158Y120942D01*

-X116224Y121218D01*

-X116241Y121500D01*

-X116224Y121782D01*

-X116158Y122058D01*

-X116050Y122320D01*

-X115902Y122561D01*

-X115792Y122689D01*

-Y130733D01*

-X115999Y130783D01*

-X116261Y130891D01*

-X116502Y131039D01*

-X116718Y131223D01*

-X116902Y131439D01*

-X117050Y131680D01*

-X117158Y131942D01*

-X117224Y132218D01*

-X117241Y132500D01*

-X117224Y132782D01*

-X117158Y133058D01*

-X117050Y133320D01*

-X116902Y133561D01*

-X116718Y133777D01*

-X116502Y133961D01*

-X116261Y134109D01*

-X115999Y134217D01*

-X115792Y134267D01*

-Y170516D01*

-X115799Y170516D01*

-X116474Y170569D01*

-X117132Y170727D01*

-X117757Y170986D01*

-X117938Y171097D01*

-Y97000D01*

-G37*

-G36*

-X112219Y182441D02*X112309Y182294D01*

-X112749Y181779D01*

-X113264Y181339D01*

-X113841Y180986D01*

-X114466Y180727D01*

-X115124Y180569D01*

-X115792Y180516D01*

-Y179142D01*

-X115124Y179089D01*

-X114466Y178931D01*

-X113841Y178672D01*

-X113264Y178319D01*

-X112749Y177879D01*

-X112309Y177364D01*

-X112219Y177217D01*

-Y182441D01*

-G37*

-G36*

-Y362441D02*X112309Y362294D01*

-X112749Y361779D01*

-X113264Y361339D01*

-X113841Y360986D01*

-X114466Y360727D01*

-X115124Y360569D01*

-X115792Y360516D01*

-Y189142D01*

-X115124Y189089D01*

-X114466Y188931D01*

-X113841Y188672D01*

-X113264Y188319D01*

-X112749Y187879D01*

-X112309Y187364D01*

-X112219Y187217D01*

-Y332216D01*

-X112223Y332217D01*

-X112499Y332283D01*

-X112761Y332391D01*

-X113002Y332539D01*

-X113218Y332723D01*

-X113402Y332939D01*

-X113550Y333180D01*

-X113658Y333442D01*

-X113724Y333718D01*

-X113741Y334000D01*

-X113724Y334282D01*

-X113658Y334558D01*

-X113550Y334820D01*

-X113402Y335061D01*

-X113218Y335277D01*

-X113002Y335461D01*

-X112761Y335609D01*

-X112499Y335717D01*

-X112223Y335783D01*

-X112219Y335784D01*

-Y339216D01*

-X112223Y339217D01*

-X112499Y339283D01*

-X112761Y339391D01*

-X113002Y339539D01*

-X113218Y339723D01*

-X113402Y339939D01*

-X113550Y340180D01*

-X113658Y340442D01*

-X113724Y340718D01*

-X113741Y341000D01*

-X113724Y341282D01*

-X113658Y341558D01*

-X113550Y341820D01*

-X113402Y342061D01*

-X113218Y342277D01*

-X113002Y342461D01*

-X112761Y342609D01*

-X112499Y342717D01*

-X112223Y342783D01*

-X112219Y342784D01*

-Y355716D01*

-X112223Y355717D01*

-X112499Y355783D01*

-X112761Y355891D01*

-X113002Y356039D01*

-X113218Y356223D01*

-X113402Y356439D01*

-X113550Y356680D01*

-X113658Y356942D01*

-X113724Y357218D01*

-X113741Y357500D01*

-X113724Y357782D01*

-X113658Y358058D01*

-X113550Y358320D01*

-X113402Y358561D01*

-X113218Y358777D01*

-X113002Y358961D01*

-X112761Y359109D01*

-X112499Y359217D01*

-X112223Y359283D01*

-X112219Y359284D01*

-Y362441D01*

-G37*

-G36*

-Y372441D02*X112309Y372294D01*

-X112749Y371779D01*

-X113264Y371339D01*

-X113841Y370986D01*

-X114466Y370727D01*

-X115124Y370569D01*

-X115792Y370516D01*

-Y369142D01*

-X115124Y369089D01*

-X114466Y368931D01*

-X113841Y368672D01*

-X113264Y368319D01*

-X112749Y367879D01*

-X112309Y367364D01*

-X112219Y367217D01*

-Y372441D01*

-G37*

-G36*

-Y397000D02*X115792D01*

-Y379142D01*

-X115124Y379089D01*

-X114466Y378931D01*

-X113841Y378672D01*

-X113264Y378319D01*

-X112749Y377879D01*

-X112309Y377364D01*

-X112219Y377217D01*

-Y397000D01*

-G37*

-G36*

-X115792Y97000D02*X112219D01*

-Y125535D01*

-X112222Y125534D01*

-X112504Y125557D01*

-X112780Y125623D01*

-X113042Y125731D01*

-X113283Y125879D01*

-X113499Y126063D01*

-X113683Y126279D01*

-X113831Y126520D01*

-X113939Y126782D01*

-X114005Y127058D01*

-X114022Y127340D01*

-X114005Y127622D01*

-X113939Y127898D01*

-X113831Y128160D01*

-X113683Y128401D01*

-X113499Y128617D01*

-X113283Y128801D01*

-X113042Y128949D01*

-X112780Y129057D01*

-X112504Y129123D01*

-X112222Y129146D01*

-X112219Y129145D01*

-Y172441D01*

-X112309Y172294D01*

-X112749Y171779D01*

-X113264Y171339D01*

-X113841Y170986D01*

-X114466Y170727D01*

-X115124Y170569D01*

-X115792Y170516D01*

-Y134267D01*

-X115723Y134283D01*

-X115441Y134306D01*

-X115159Y134283D01*

-X114883Y134217D01*

-X114621Y134109D01*

-X114380Y133961D01*

-X114164Y133777D01*

-X113980Y133561D01*

-X113832Y133320D01*

-X113724Y133058D01*

-X113658Y132782D01*

-X113635Y132500D01*

-X113658Y132218D01*

-X113724Y131942D01*

-X113832Y131680D01*

-X113980Y131439D01*

-X114164Y131223D01*

-X114380Y131039D01*

-X114621Y130891D01*

-X114883Y130783D01*

-X115159Y130717D01*

-X115441Y130694D01*

-X115723Y130717D01*

-X115792Y130733D01*

-Y122689D01*

-X115718Y122777D01*

-X115502Y122961D01*

-X115261Y123109D01*

-X114999Y123217D01*

-X114723Y123283D01*

-X114441Y123306D01*

-X114159Y123283D01*

-X113883Y123217D01*

-X113621Y123109D01*

-X113380Y122961D01*

-X113164Y122777D01*

-X112980Y122561D01*

-X112832Y122320D01*

-X112724Y122058D01*

-X112658Y121782D01*

-X112635Y121500D01*

-X112658Y121218D01*

-X112724Y120942D01*

-X112832Y120680D01*

-X112980Y120439D01*

-X113164Y120223D01*

-X113380Y120039D01*

-X113621Y119891D01*

-X113883Y119783D01*

-X114159Y119717D01*

-X114441Y119694D01*

-X114723Y119717D01*

-X114999Y119783D01*

-X115261Y119891D01*

-X115502Y120039D01*

-X115718Y120223D01*

-X115792Y120311D01*

-Y97000D01*

-G37*

-G36*

-X112219D02*X109343D01*

-Y172099D01*

-X109371Y172082D01*

-X109444Y172052D01*

-X109521Y172034D01*

-X109599Y172027D01*

-X109677Y172034D01*

-X109754Y172052D01*

-X109827Y172082D01*

-X109894Y172123D01*

-X109954Y172174D01*

-X110005Y172234D01*

-X110046Y172301D01*

-X110076Y172374D01*

-X110094Y172451D01*

-X110099Y172529D01*

-Y177129D01*

-X110094Y177207D01*

-X110076Y177284D01*

-X110046Y177357D01*

-X110005Y177424D01*

-X109954Y177484D01*

-X109894Y177535D01*

-X109827Y177576D01*

-X109754Y177606D01*

-X109677Y177624D01*

-X109599Y177631D01*

-X109521Y177624D01*

-X109444Y177606D01*

-X109371Y177576D01*

-X109343Y177559D01*

-Y182501D01*

-X109366Y182513D01*

-X109429Y182561D01*

-X109483Y182618D01*

-X109526Y182684D01*

-X109717Y183045D01*

-X109868Y183425D01*

-X109983Y183817D01*

-X110060Y184218D01*

-X110099Y184625D01*

-Y185033D01*

-X110060Y185440D01*

-X109983Y185841D01*

-X109868Y186233D01*

-X109717Y186613D01*

-X109530Y186976D01*

-X109486Y187042D01*

-X109431Y187100D01*

-X109368Y187148D01*

-X109343Y187161D01*

-Y247000D01*

-X109941D01*

-Y322000D01*

-X109343D01*

-Y362099D01*

-X109371Y362082D01*

-X109444Y362052D01*

-X109521Y362034D01*

-X109599Y362027D01*

-X109677Y362034D01*

-X109754Y362052D01*

-X109827Y362082D01*

-X109894Y362123D01*

-X109954Y362174D01*

-X110005Y362234D01*

-X110046Y362301D01*

-X110076Y362374D01*

-X110094Y362451D01*

-X110099Y362529D01*

-Y367129D01*

-X110094Y367207D01*

-X110076Y367284D01*

-X110046Y367357D01*

-X110005Y367424D01*

-X109954Y367484D01*

-X109894Y367535D01*

-X109827Y367576D01*

-X109754Y367606D01*

-X109677Y367624D01*

-X109599Y367631D01*

-X109521Y367624D01*

-X109444Y367606D01*

-X109371Y367576D01*

-X109343Y367559D01*

-Y372501D01*

-X109366Y372513D01*

-X109429Y372561D01*

-X109483Y372618D01*

-X109526Y372684D01*

-X109717Y373045D01*

-X109868Y373425D01*

-X109983Y373817D01*

-X110060Y374218D01*

-X110099Y374625D01*

-Y375033D01*

-X110060Y375440D01*

-X109983Y375841D01*

-X109868Y376233D01*

-X109717Y376613D01*

-X109530Y376976D01*

-X109486Y377042D01*

-X109431Y377100D01*

-X109368Y377148D01*

-X109343Y377161D01*

-Y397000D01*

-X112219D01*

-Y377217D01*

-X111956Y376787D01*

-X111697Y376162D01*

-X111539Y375504D01*

-X111486Y374829D01*

-X111539Y374154D01*

-X111697Y373496D01*

-X111956Y372871D01*

-X112219Y372441D01*

-Y367217D01*

-X111956Y366787D01*

-X111697Y366162D01*

-X111539Y365504D01*

-X111486Y364829D01*

-X111539Y364154D01*

-X111697Y363496D01*

-X111956Y362871D01*

-X112219Y362441D01*

-Y359284D01*

-X111941Y359306D01*

-X111659Y359283D01*

-X111383Y359217D01*

-X111121Y359109D01*

-X110880Y358961D01*

-X110664Y358777D01*

-X110480Y358561D01*

-X110332Y358320D01*

-X110224Y358058D01*

-X110158Y357782D01*

-X110135Y357500D01*

-X110158Y357218D01*

-X110224Y356942D01*

-X110332Y356680D01*

-X110480Y356439D01*

-X110664Y356223D01*

-X110880Y356039D01*

-X111121Y355891D01*

-X111383Y355783D01*

-X111659Y355717D01*

-X111941Y355694D01*

-X112219Y355716D01*

-Y342784D01*

-X111941Y342806D01*

-X111659Y342783D01*

-X111383Y342717D01*

-X111121Y342609D01*

-X110880Y342461D01*

-X110664Y342277D01*

-X110480Y342061D01*

-X110332Y341820D01*

-X110224Y341558D01*

-X110158Y341282D01*

-X110135Y341000D01*

-X110158Y340718D01*

-X110224Y340442D01*

-X110332Y340180D01*

-X110480Y339939D01*

-X110664Y339723D01*

-X110880Y339539D01*

-X111121Y339391D01*

-X111383Y339283D01*

-X111659Y339217D01*

-X111941Y339194D01*

-X112219Y339216D01*

-Y335784D01*

-X111941Y335806D01*

-X111659Y335783D01*

-X111383Y335717D01*

-X111121Y335609D01*

-X110880Y335461D01*

-X110664Y335277D01*

-X110480Y335061D01*

-X110332Y334820D01*

-X110224Y334558D01*

-X110158Y334282D01*

-X110135Y334000D01*

-X110158Y333718D01*

-X110224Y333442D01*

-X110332Y333180D01*

-X110480Y332939D01*

-X110664Y332723D01*

-X110880Y332539D01*

-X111121Y332391D01*

-X111383Y332283D01*

-X111659Y332217D01*

-X111941Y332194D01*

-X112219Y332216D01*

-Y187217D01*

-X111956Y186787D01*

-X111697Y186162D01*

-X111539Y185504D01*

-X111486Y184829D01*

-X111539Y184154D01*

-X111697Y183496D01*

-X111956Y182871D01*

-X112219Y182441D01*

-Y177217D01*

-X111956Y176787D01*

-X111697Y176162D01*

-X111539Y175504D01*

-X111486Y174829D01*

-X111539Y174154D01*

-X111697Y173496D01*

-X111956Y172871D01*

-X112219Y172441D01*

-Y129145D01*

-X111940Y129123D01*

-X111664Y129057D01*

-X111402Y128949D01*

-X111161Y128801D01*

-X110945Y128617D01*

-X110761Y128401D01*

-X110613Y128160D01*

-X110505Y127898D01*

-X110439Y127622D01*

-X110416Y127340D01*

-X110439Y127058D01*

-X110505Y126782D01*

-X110613Y126520D01*

-X110761Y126279D01*

-X110945Y126063D01*

-X111161Y125879D01*

-X111402Y125731D01*

-X111664Y125623D01*

-X111940Y125557D01*

-X112219Y125535D01*

-Y97000D01*

-G37*

-G36*

-X109343Y322000D02*X105801D01*

-Y337234D01*

-X106178Y338144D01*

-X106674Y340211D01*

-X106799Y342329D01*

-X106674Y344447D01*

-X106178Y346514D01*

-X105801Y347424D01*

-Y360529D01*

-X108099D01*

-X108177Y360534D01*

-X108254Y360552D01*

-X108327Y360582D01*

-X108394Y360623D01*

-X108454Y360674D01*

-X108505Y360734D01*

-X108546Y360801D01*

-X108576Y360874D01*

-X108594Y360951D01*

-X108601Y361029D01*

-X108594Y361107D01*

-X108576Y361184D01*

-X108546Y361257D01*

-X108505Y361324D01*

-X108454Y361384D01*

-X108394Y361435D01*

-X108327Y361476D01*

-X108254Y361506D01*

-X108177Y361524D01*

-X108099Y361529D01*

-X105801D01*

-Y368129D01*

-X108099D01*

-X108177Y368134D01*

-X108254Y368152D01*

-X108327Y368182D01*

-X108394Y368223D01*

-X108454Y368274D01*

-X108505Y368334D01*

-X108546Y368401D01*

-X108576Y368474D01*

-X108594Y368551D01*

-X108601Y368629D01*

-X108594Y368707D01*

-X108576Y368784D01*

-X108546Y368857D01*

-X108505Y368924D01*

-X108454Y368984D01*

-X108394Y369035D01*

-X108327Y369076D01*

-X108254Y369106D01*

-X108177Y369124D01*

-X108099Y369129D01*

-X105801D01*

-Y370529D01*

-X106003D01*

-X106410Y370568D01*

-X106811Y370645D01*

-X107203Y370760D01*

-X107583Y370911D01*

-X107946Y371098D01*

-X108012Y371142D01*

-X108070Y371197D01*

-X108118Y371260D01*

-X108156Y371329D01*

-X108182Y371404D01*

-X108197Y371482D01*

-X108199Y371561D01*

-X108189Y371640D01*

-X108166Y371716D01*

-X108132Y371788D01*

-X108088Y371853D01*

-X108033Y371911D01*

-X107970Y371959D01*

-X107901Y371997D01*

-X107826Y372023D01*

-X107748Y372038D01*

-X107669Y372040D01*

-X107590Y372030D01*

-X107514Y372007D01*

-X107443Y371972D01*

-X107167Y371826D01*

-X106876Y371710D01*

-X106575Y371622D01*

-X106267Y371562D01*

-X105956Y371533D01*

-X105801D01*

-Y378125D01*

-X105956D01*

-X106267Y378096D01*

-X106575Y378036D01*

-X106876Y377948D01*

-X107167Y377832D01*

-X107445Y377689D01*

-X107515Y377654D01*

-X107591Y377632D01*

-X107669Y377622D01*

-X107748Y377624D01*

-X107825Y377638D01*

-X107899Y377665D01*

-X107968Y377702D01*

-X108031Y377750D01*

-X108085Y377807D01*

-X108129Y377872D01*

-X108163Y377943D01*

-X108185Y378019D01*

-X108195Y378097D01*

-X108193Y378176D01*

-X108179Y378253D01*

-X108152Y378327D01*

-X108115Y378396D01*

-X108067Y378459D01*

-X108010Y378513D01*

-X107944Y378556D01*

-X107583Y378747D01*

-X107203Y378898D01*

-X106811Y379013D01*

-X106410Y379090D01*

-X106003Y379129D01*

-X105801D01*

-Y397000D01*

-X109343D01*

-Y377161D01*

-X109299Y377186D01*

-X109224Y377212D01*

-X109146Y377227D01*

-X109067Y377229D01*

-X108988Y377219D01*

-X108912Y377196D01*

-X108840Y377162D01*

-X108775Y377118D01*

-X108717Y377063D01*

-X108669Y377000D01*

-X108631Y376931D01*

-X108605Y376856D01*

-X108590Y376778D01*

-X108588Y376699D01*

-X108598Y376620D01*

-X108621Y376544D01*

-X108656Y376473D01*

-X108802Y376197D01*

-X108918Y375906D01*

-X109006Y375605D01*

-X109066Y375297D01*

-X109095Y374986D01*

-Y374672D01*

-X109066Y374361D01*

-X109006Y374053D01*

-X108918Y373752D01*

-X108802Y373461D01*

-X108659Y373183D01*

-X108624Y373113D01*

-X108602Y373037D01*

-X108592Y372959D01*

-X108594Y372880D01*

-X108608Y372803D01*

-X108635Y372729D01*

-X108672Y372660D01*

-X108720Y372597D01*

-X108777Y372543D01*

-X108842Y372499D01*

-X108913Y372465D01*

-X108989Y372443D01*

-X109067Y372433D01*

-X109146Y372435D01*

-X109223Y372449D01*

-X109297Y372476D01*

-X109343Y372501D01*

-Y367559D01*

-X109304Y367535D01*

-X109244Y367484D01*

-X109193Y367424D01*

-X109152Y367357D01*

-X109122Y367284D01*

-X109104Y367207D01*

-X109099Y367129D01*

-Y362529D01*

-X109104Y362451D01*

-X109122Y362374D01*

-X109152Y362301D01*

-X109193Y362234D01*

-X109244Y362174D01*

-X109304Y362123D01*

-X109343Y362099D01*

-Y322000D01*

-G37*

-G36*

-Y97000D02*X105801D01*

-Y146817D01*

-X105883Y146783D01*

-X106159Y146717D01*

-X106441Y146694D01*

-X106723Y146717D01*

-X106999Y146783D01*

-X107261Y146891D01*

-X107502Y147039D01*

-X107718Y147223D01*

-X107902Y147439D01*

-X108050Y147680D01*

-X108158Y147942D01*

-X108224Y148218D01*

-X108241Y148500D01*

-X108224Y148782D01*

-X108158Y149058D01*

-X108050Y149320D01*

-X107902Y149561D01*

-X107718Y149777D01*

-X107502Y149961D01*

-X107261Y150109D01*

-X106999Y150217D01*

-X106723Y150283D01*

-X106441Y150306D01*

-X106159Y150283D01*

-X105883Y150217D01*

-X105801Y150183D01*

-Y170529D01*

-X108099D01*

-X108177Y170534D01*

-X108254Y170552D01*

-X108327Y170582D01*

-X108394Y170623D01*

-X108454Y170674D01*

-X108505Y170734D01*

-X108546Y170801D01*

-X108576Y170874D01*

-X108594Y170951D01*

-X108601Y171029D01*

-X108594Y171107D01*

-X108576Y171184D01*

-X108546Y171257D01*

-X108505Y171324D01*

-X108454Y171384D01*

-X108394Y171435D01*

-X108327Y171476D01*

-X108254Y171506D01*

-X108177Y171524D01*

-X108099Y171529D01*

-X105801D01*

-Y178129D01*

-X108099D01*

-X108177Y178134D01*

-X108254Y178152D01*

-X108327Y178182D01*

-X108394Y178223D01*

-X108454Y178274D01*

-X108505Y178334D01*

-X108546Y178401D01*

-X108576Y178474D01*

-X108594Y178551D01*

-X108601Y178629D01*

-X108594Y178707D01*

-X108576Y178784D01*

-X108546Y178857D01*

-X108505Y178924D01*

-X108454Y178984D01*

-X108394Y179035D01*

-X108327Y179076D01*

-X108254Y179106D01*

-X108177Y179124D01*

-X108099Y179129D01*

-X105801D01*

-Y180529D01*

-X106003D01*

-X106410Y180568D01*

-X106811Y180645D01*

-X107203Y180760D01*

-X107583Y180911D01*

-X107946Y181098D01*

-X108012Y181142D01*

-X108070Y181197D01*

-X108118Y181260D01*

-X108156Y181329D01*

-X108182Y181404D01*

-X108197Y181482D01*

-X108199Y181561D01*

-X108189Y181640D01*

-X108166Y181716D01*

-X108132Y181788D01*

-X108088Y181853D01*

-X108033Y181911D01*

-X107970Y181959D01*

-X107901Y181997D01*

-X107826Y182023D01*

-X107748Y182038D01*

-X107669Y182040D01*

-X107590Y182030D01*

-X107514Y182007D01*

-X107443Y181972D01*

-X107167Y181826D01*

-X106876Y181710D01*

-X106575Y181622D01*

-X106267Y181562D01*

-X105956Y181533D01*

-X105801D01*

-Y188125D01*

-X105956D01*

-X106267Y188096D01*

-X106575Y188036D01*

-X106876Y187948D01*

-X107167Y187832D01*

-X107445Y187689D01*

-X107515Y187654D01*

-X107591Y187632D01*

-X107669Y187622D01*

-X107748Y187624D01*

-X107825Y187638D01*

-X107899Y187665D01*

-X107968Y187702D01*

-X108031Y187750D01*

-X108085Y187807D01*

-X108129Y187872D01*

-X108163Y187943D01*

-X108185Y188019D01*

-X108195Y188097D01*

-X108193Y188176D01*

-X108179Y188253D01*

-X108152Y188327D01*

-X108115Y188396D01*

-X108067Y188459D01*

-X108010Y188513D01*

-X107944Y188556D01*

-X107583Y188747D01*

-X107203Y188898D01*

-X106811Y189013D01*

-X106410Y189090D01*

-X106003Y189129D01*

-X105801D01*

-Y203321D01*

-X105902Y203439D01*

-X106050Y203680D01*

-X106158Y203942D01*

-X106224Y204218D01*

-X106241Y204500D01*

-X106224Y204782D01*

-X106158Y205058D01*

-X106050Y205320D01*

-X105902Y205561D01*

-X105801Y205679D01*

-Y247000D01*

-X109343D01*

-Y187161D01*

-X109299Y187186D01*

-X109224Y187212D01*

-X109146Y187227D01*

-X109067Y187229D01*

-X108988Y187219D01*

-X108912Y187196D01*

-X108840Y187162D01*

-X108775Y187118D01*

-X108717Y187063D01*

-X108669Y187000D01*

-X108631Y186931D01*

-X108605Y186856D01*

-X108590Y186778D01*

-X108588Y186699D01*

-X108598Y186620D01*

-X108621Y186544D01*

-X108656Y186473D01*

-X108802Y186197D01*

-X108918Y185906D01*

-X109006Y185605D01*

-X109066Y185297D01*

-X109095Y184986D01*

-Y184672D01*

-X109066Y184361D01*

-X109006Y184053D01*

-X108918Y183752D01*

-X108802Y183461D01*

-X108659Y183183D01*

-X108624Y183113D01*

-X108602Y183037D01*

-X108592Y182959D01*

-X108594Y182880D01*

-X108608Y182803D01*

-X108635Y182729D01*

-X108672Y182660D01*

-X108720Y182597D01*

-X108777Y182543D01*

-X108842Y182499D01*

-X108913Y182465D01*

-X108989Y182443D01*

-X109067Y182433D01*

-X109146Y182435D01*

-X109223Y182449D01*

-X109297Y182476D01*

-X109343Y182501D01*

-Y177559D01*

-X109304Y177535D01*

-X109244Y177484D01*

-X109193Y177424D01*

-X109152Y177357D01*

-X109122Y177284D01*

-X109104Y177207D01*

-X109099Y177129D01*

-Y172529D01*

-X109104Y172451D01*

-X109122Y172374D01*

-X109152Y172301D01*

-X109193Y172234D01*

-X109244Y172174D01*

-X109304Y172123D01*

-X109343Y172099D01*

-Y97000D01*

-G37*

-G36*

-X105801Y347424D02*X105365Y348477D01*

-X104254Y350289D01*

-X102874Y351904D01*

-X102255Y352434D01*

-Y362099D01*

-X102294Y362123D01*

-X102354Y362174D01*

-X102405Y362234D01*

-X102446Y362301D01*

-X102476Y362374D01*

-X102494Y362451D01*

-X102499Y362529D01*

-Y367129D01*

-X102494Y367207D01*

-X102476Y367284D01*

-X102446Y367357D01*

-X102405Y367424D01*

-X102354Y367484D01*

-X102294Y367535D01*

-X102255Y367559D01*

-Y372497D01*

-X102299Y372472D01*

-X102374Y372446D01*

-X102452Y372431D01*

-X102531Y372429D01*

-X102610Y372439D01*

-X102686Y372462D01*

-X102758Y372496D01*

-X102823Y372540D01*

-X102881Y372595D01*

-X102929Y372658D01*

-X102967Y372727D01*

-X102993Y372802D01*

-X103008Y372880D01*

-X103010Y372959D01*

-X103000Y373038D01*

-X102977Y373114D01*

-X102942Y373185D01*

-X102796Y373461D01*

-X102680Y373752D01*

-X102592Y374053D01*

-X102532Y374361D01*

-X102503Y374672D01*

-Y374986D01*

-X102532Y375297D01*

-X102592Y375605D01*

-X102680Y375906D01*

-X102796Y376197D01*

-X102939Y376475D01*

-X102974Y376545D01*

-X102996Y376621D01*

-X103006Y376699D01*

-X103004Y376778D01*

-X102990Y376855D01*

-X102963Y376929D01*

-X102926Y376998D01*

-X102878Y377061D01*

-X102821Y377115D01*

-X102756Y377159D01*

-X102685Y377193D01*

-X102609Y377215D01*

-X102531Y377225D01*

-X102452Y377223D01*

-X102375Y377209D01*

-X102301Y377182D01*

-X102255Y377157D01*

-Y397000D01*

-X105801D01*

-Y379129D01*

-X105595D01*

-X105188Y379090D01*

-X104787Y379013D01*

-X104395Y378898D01*

-X104015Y378747D01*

-X103652Y378560D01*

-X103586Y378516D01*

-X103528Y378461D01*

-X103480Y378398D01*

-X103442Y378329D01*

-X103416Y378254D01*

-X103401Y378176D01*

-X103399Y378097D01*

-X103409Y378018D01*

-X103432Y377942D01*

-X103466Y377870D01*

-X103510Y377805D01*

-X103565Y377747D01*

-X103628Y377699D01*

-X103697Y377661D01*

-X103772Y377635D01*

-X103850Y377620D01*

-X103929Y377618D01*

-X104008Y377628D01*

-X104084Y377651D01*

-X104155Y377686D01*

-X104431Y377832D01*

-X104722Y377948D01*

-X105023Y378036D01*

-X105331Y378096D01*

-X105642Y378125D01*

-X105801D01*

-Y371533D01*

-X105642D01*

-X105331Y371562D01*

-X105023Y371622D01*

-X104722Y371710D01*

-X104431Y371826D01*

-X104153Y371969D01*

-X104083Y372004D01*

-X104007Y372026D01*

-X103929Y372036D01*

-X103850Y372034D01*

-X103773Y372020D01*

-X103699Y371993D01*

-X103630Y371956D01*

-X103567Y371908D01*

-X103513Y371851D01*

-X103469Y371786D01*

-X103435Y371715D01*

-X103413Y371639D01*

-X103403Y371561D01*

-X103405Y371482D01*

-X103419Y371405D01*

-X103446Y371331D01*

-X103483Y371262D01*

-X103531Y371199D01*

-X103588Y371145D01*

-X103654Y371102D01*

-X104015Y370911D01*

-X104395Y370760D01*

-X104787Y370645D01*

-X105188Y370568D01*

-X105595Y370529D01*

-X105801D01*

-Y369129D01*

-X103499D01*

-X103421Y369124D01*

-X103344Y369106D01*

-X103271Y369076D01*

-X103204Y369035D01*

-X103144Y368984D01*

-X103093Y368924D01*

-X103052Y368857D01*

-X103022Y368784D01*

-X103004Y368707D01*

-X102997Y368629D01*

-X103004Y368551D01*

-X103022Y368474D01*

-X103052Y368401D01*

-X103093Y368334D01*

-X103144Y368274D01*

-X103204Y368223D01*

-X103271Y368182D01*

-X103344Y368152D01*

-X103421Y368134D01*

-X103499Y368129D01*

-X105801D01*

-Y361529D01*

-X103499D01*

-X103421Y361524D01*

-X103344Y361506D01*

-X103271Y361476D01*

-X103204Y361435D01*

-X103144Y361384D01*

-X103093Y361324D01*

-X103052Y361257D01*

-X103022Y361184D01*

-X103004Y361107D01*

-X102997Y361029D01*

-X103004Y360951D01*

-X103022Y360874D01*

-X103052Y360801D01*

-X103093Y360734D01*

-X103144Y360674D01*

-X103204Y360623D01*

-X103271Y360582D01*

-X103344Y360552D01*

-X103421Y360534D01*

-X103499Y360529D01*

-X105801D01*

-Y347424D01*

-G37*

-G36*

-X102255Y352434D02*X101259Y353284D01*

-X99447Y354395D01*

-X97484Y355208D01*

-X95417Y355704D01*

-X93299Y355871D01*

-X91181Y355704D01*

-X89114Y355208D01*

-X87151Y354395D01*

-X85784Y353557D01*

-Y359749D01*

-X85799Y359748D01*

-X87376Y359872D01*

-X88914Y360241D01*

-X90376Y360847D01*

-X91724Y361673D01*

-X92927Y362701D01*

-X93955Y363904D01*

-X94781Y365252D01*

-X95387Y366714D01*

-X95756Y368252D01*

-X95849Y369829D01*

-X95756Y371406D01*

-X95387Y372944D01*

-X94781Y374406D01*

-X93955Y375754D01*

-X92927Y376957D01*

-X91724Y377985D01*

-X90376Y378811D01*

-X88914Y379417D01*

-X87376Y379786D01*

-X85799Y379910D01*

-X85784Y379909D01*

-Y397000D01*

-X102255D01*

-Y377157D01*

-X102232Y377145D01*

-X102169Y377097D01*

-X102115Y377040D01*

-X102072Y376974D01*

-X101881Y376613D01*

-X101730Y376233D01*

-X101615Y375841D01*

-X101538Y375440D01*

-X101499Y375033D01*

-Y374625D01*

-X101538Y374218D01*

-X101615Y373817D01*

-X101730Y373425D01*

-X101881Y373045D01*

-X102068Y372682D01*

-X102112Y372616D01*

-X102167Y372558D01*

-X102230Y372510D01*

-X102255Y372497D01*

-Y367559D01*

-X102227Y367576D01*

-X102154Y367606D01*

-X102077Y367624D01*

-X101999Y367631D01*

-X101921Y367624D01*

-X101844Y367606D01*

-X101771Y367576D01*

-X101704Y367535D01*

-X101644Y367484D01*

-X101593Y367424D01*

-X101552Y367357D01*

-X101522Y367284D01*

-X101504Y367207D01*

-X101499Y367129D01*

-Y362529D01*

-X101504Y362451D01*

-X101522Y362374D01*

-X101552Y362301D01*

-X101593Y362234D01*

-X101644Y362174D01*

-X101704Y362123D01*

-X101771Y362082D01*

-X101844Y362052D01*

-X101921Y362034D01*

-X101999Y362027D01*

-X102077Y362034D01*

-X102154Y362052D01*

-X102227Y362082D01*

-X102255Y362099D01*

-Y352434D01*

-G37*

-G36*

-X105801Y322000D02*X85784D01*

-Y331101D01*

-X87151Y330263D01*

-X89114Y329450D01*

-X91181Y328954D01*

-X93299Y328787D01*

-X95417Y328954D01*

-X97484Y329450D01*

-X99447Y330263D01*

-X101259Y331374D01*

-X102874Y332754D01*

-X104254Y334369D01*

-X105365Y336181D01*

-X105801Y337234D01*

-Y322000D01*

-G37*

-G36*

-X102255Y247000D02*X105801D01*

-Y205679D01*

-X105718Y205777D01*

-X105502Y205961D01*

-X105261Y206109D01*

-X104999Y206217D01*

-X104723Y206283D01*

-X104441Y206306D01*

-X104159Y206283D01*

-X103883Y206217D01*

-X103621Y206109D01*

-X103380Y205961D01*

-X103164Y205777D01*

-X102980Y205561D01*

-X102832Y205320D01*

-X102724Y205058D01*

-X102691Y204921D01*

-X102658Y205058D01*

-X102550Y205320D01*

-X102402Y205561D01*

-X102255Y205734D01*

-Y247000D01*

-G37*

-G36*

-X105801Y97000D02*X102255D01*

-Y102724D01*

-X102499Y102783D01*

-X102761Y102891D01*

-X103002Y103039D01*

-X103218Y103223D01*

-X103402Y103439D01*

-X103550Y103680D01*

-X103658Y103942D01*

-X103724Y104218D01*

-X103741Y104500D01*

-X103724Y104782D01*

-X103658Y105058D01*

-X103550Y105320D01*

-X103402Y105561D01*

-X103218Y105777D01*

-X103002Y105961D01*

-X102761Y106109D01*

-X102499Y106217D01*

-X102255Y106276D01*

-Y172099D01*

-X102294Y172123D01*

-X102354Y172174D01*

-X102405Y172234D01*

-X102446Y172301D01*

-X102476Y172374D01*

-X102494Y172451D01*

-X102499Y172529D01*

-Y177129D01*

-X102494Y177207D01*

-X102476Y177284D01*

-X102446Y177357D01*

-X102405Y177424D01*

-X102354Y177484D01*

-X102294Y177535D01*

-X102255Y177559D01*

-Y182497D01*

-X102299Y182472D01*

-X102374Y182446D01*

-X102452Y182431D01*

-X102531Y182429D01*

-X102610Y182439D01*

-X102686Y182462D01*

-X102758Y182496D01*

-X102823Y182540D01*

-X102881Y182595D01*

-X102929Y182658D01*

-X102967Y182727D01*

-X102993Y182802D01*

-X103008Y182880D01*

-X103010Y182959D01*

-X103000Y183038D01*

-X102977Y183114D01*

-X102942Y183185D01*

-X102796Y183461D01*

-X102680Y183752D01*

-X102592Y184053D01*

-X102532Y184361D01*

-X102503Y184672D01*

-Y184986D01*

-X102532Y185297D01*

-X102592Y185605D01*

-X102680Y185906D01*

-X102796Y186197D01*

-X102939Y186475D01*

-X102974Y186545D01*

-X102996Y186621D01*

-X103006Y186699D01*

-X103004Y186778D01*

-X102990Y186855D01*

-X102963Y186929D01*

-X102926Y186998D01*

-X102878Y187061D01*

-X102821Y187115D01*

-X102756Y187159D01*

-X102685Y187193D01*

-X102609Y187215D01*

-X102531Y187225D01*

-X102452Y187223D01*

-X102375Y187209D01*

-X102301Y187182D01*

-X102255Y187157D01*

-Y203266D01*

-X102402Y203439D01*

-X102550Y203680D01*

-X102658Y203942D01*

-X102691Y204079D01*

-X102724Y203942D01*

-X102832Y203680D01*

-X102980Y203439D01*

-X103164Y203223D01*

-X103380Y203039D01*

-X103621Y202891D01*

-X103883Y202783D01*

-X104159Y202717D01*

-X104441Y202694D01*

-X104723Y202717D01*

-X104999Y202783D01*

-X105261Y202891D01*

-X105502Y203039D01*

-X105718Y203223D01*

-X105801Y203321D01*

-Y189129D01*

-X105595D01*

-X105188Y189090D01*

-X104787Y189013D01*

-X104395Y188898D01*

-X104015Y188747D01*

-X103652Y188560D01*

-X103586Y188516D01*

-X103528Y188461D01*

-X103480Y188398D01*

-X103442Y188329D01*

-X103416Y188254D01*

-X103401Y188176D01*

-X103399Y188097D01*

-X103409Y188018D01*

-X103432Y187942D01*

-X103466Y187870D01*

-X103510Y187805D01*

-X103565Y187747D01*

-X103628Y187699D01*

-X103697Y187661D01*

-X103772Y187635D01*

-X103850Y187620D01*

-X103929Y187618D01*

-X104008Y187628D01*

-X104084Y187651D01*

-X104155Y187686D01*

-X104431Y187832D01*

-X104722Y187948D01*

-X105023Y188036D01*

-X105331Y188096D01*

-X105642Y188125D01*

-X105801D01*

-Y181533D01*

-X105642D01*

-X105331Y181562D01*

-X105023Y181622D01*

-X104722Y181710D01*

-X104431Y181826D01*

-X104153Y181969D01*

-X104083Y182004D01*

-X104007Y182026D01*

-X103929Y182036D01*

-X103850Y182034D01*

-X103773Y182020D01*

-X103699Y181993D01*

-X103630Y181956D01*

-X103567Y181908D01*

-X103513Y181851D01*

-X103469Y181786D01*

-X103435Y181715D01*

-X103413Y181639D01*

-X103403Y181561D01*

-X103405Y181482D01*

-X103419Y181405D01*

-X103446Y181331D01*

-X103483Y181262D01*

-X103531Y181199D01*

-X103588Y181145D01*

-X103654Y181102D01*

-X104015Y180911D01*

-X104395Y180760D01*

-X104787Y180645D01*

-X105188Y180568D01*

-X105595Y180529D01*

-X105801D01*

-Y179129D01*

-X103499D01*

-X103421Y179124D01*

-X103344Y179106D01*

-X103271Y179076D01*

-X103204Y179035D01*

-X103144Y178984D01*

-X103093Y178924D01*

-X103052Y178857D01*

-X103022Y178784D01*

-X103004Y178707D01*

-X102997Y178629D01*

-X103004Y178551D01*

-X103022Y178474D01*

-X103052Y178401D01*

-X103093Y178334D01*

-X103144Y178274D01*

-X103204Y178223D01*

-X103271Y178182D01*

-X103344Y178152D01*

-X103421Y178134D01*

-X103499Y178129D01*

-X105801D01*

-Y171529D01*

-X103499D01*

-X103421Y171524D01*

-X103344Y171506D01*

-X103271Y171476D01*

-X103204Y171435D01*

-X103144Y171384D01*

-X103093Y171324D01*

-X103052Y171257D01*

-X103022Y171184D01*

-X103004Y171107D01*

-X102997Y171029D01*

-X103004Y170951D01*

-X103022Y170874D01*

-X103052Y170801D01*

-X103093Y170734D01*

-X103144Y170674D01*

-X103204Y170623D01*

-X103271Y170582D01*

-X103344Y170552D01*

-X103421Y170534D01*

-X103499Y170529D01*

-X105801D01*

-Y150183D01*

-X105621Y150109D01*

-X105380Y149961D01*

-X105164Y149777D01*

-X104980Y149561D01*

-X104832Y149320D01*

-X104724Y149058D01*

-X104658Y148782D01*

-X104635Y148500D01*

-X104658Y148218D01*

-X104724Y147942D01*

-X104832Y147680D01*

-X104980Y147439D01*

-X105164Y147223D01*

-X105380Y147039D01*

-X105621Y146891D01*

-X105801Y146817D01*

-Y97000D01*

-G37*

-G36*

-X102255D02*X89441D01*

-Y170460D01*

-X90376Y170847D01*

-X91724Y171673D01*

-X92927Y172701D01*

-X93955Y173904D01*

-X94781Y175252D01*

-X95387Y176714D01*

-X95756Y178252D01*

-X95849Y179829D01*

-X95756Y181406D01*

-X95387Y182944D01*

-X94781Y184406D01*

-X93955Y185754D01*

-X92927Y186957D01*

-X91724Y187985D01*

-X90376Y188811D01*

-X89441Y189198D01*

-Y217437D01*

-X89686Y217837D01*

-X89972Y218528D01*

-X90147Y219255D01*

-X90191Y220000D01*

-X90147Y220745D01*

-X89972Y221472D01*

-X89686Y222163D01*

-X89441Y222563D01*

-Y227437D01*

-X89686Y227837D01*

-X89972Y228528D01*

-X90147Y229255D01*

-X90191Y230000D01*

-X90147Y230745D01*

-X89972Y231472D01*

-X89686Y232163D01*

-X89441Y232563D01*

-Y237498D01*

-X89559Y237507D01*

-X89673Y237535D01*

-X89783Y237580D01*

-X89883Y237641D01*

-X89973Y237718D01*

-X90050Y237808D01*

-X90111Y237908D01*

-X90156Y238018D01*

-X90184Y238132D01*

-X90191Y238250D01*

-Y241750D01*

-X90184Y241868D01*

-X90156Y241982D01*

-X90111Y242092D01*

-X90050Y242192D01*

-X89973Y242282D01*

-X89883Y242359D01*

-X89783Y242420D01*

-X89673Y242465D01*

-X89559Y242493D01*

-X89441Y242502D01*

-Y247000D01*

-X102255D01*

-Y205734D01*

-X102218Y205777D01*

-X102002Y205961D01*

-X101761Y206109D01*

-X101499Y206217D01*

-X101223Y206283D01*

-X100941Y206306D01*

-X100659Y206283D01*

-X100383Y206217D01*

-X100121Y206109D01*

-X99880Y205961D01*

-X99664Y205777D01*

-X99480Y205561D01*

-X99332Y205320D01*

-X99224Y205058D01*

-X99158Y204782D01*

-X99135Y204500D01*

-X99158Y204218D01*

-X99224Y203942D01*

-X99332Y203680D01*

-X99480Y203439D01*

-X99664Y203223D01*

-X99880Y203039D01*

-X100121Y202891D01*

-X100383Y202783D01*

-X100659Y202717D01*

-X100941Y202694D01*

-X101223Y202717D01*

-X101499Y202783D01*

-X101761Y202891D01*

-X102002Y203039D01*

-X102218Y203223D01*

-X102255Y203266D01*

-Y187157D01*

-X102232Y187145D01*

-X102169Y187097D01*

-X102115Y187040D01*

-X102072Y186974D01*

-X101881Y186613D01*

-X101730Y186233D01*

-X101615Y185841D01*

-X101538Y185440D01*

-X101499Y185033D01*

-Y184625D01*

-X101538Y184218D01*

-X101615Y183817D01*

-X101730Y183425D01*

-X101881Y183045D01*

-X102068Y182682D01*

-X102112Y182616D01*

-X102167Y182558D01*

-X102230Y182510D01*

-X102255Y182497D01*

-Y177559D01*

-X102227Y177576D01*

-X102154Y177606D01*

-X102077Y177624D01*

-X101999Y177631D01*

-X101921Y177624D01*

-X101844Y177606D01*

-X101771Y177576D01*

-X101704Y177535D01*

-X101644Y177484D01*

-X101593Y177424D01*

-X101552Y177357D01*

-X101522Y177284D01*

-X101504Y177207D01*

-X101499Y177129D01*

-Y172529D01*

-X101504Y172451D01*

-X101522Y172374D01*

-X101552Y172301D01*

-X101593Y172234D01*

-X101644Y172174D01*

-X101704Y172123D01*

-X101771Y172082D01*

-X101844Y172052D01*

-X101921Y172034D01*

-X101999Y172027D01*

-X102077Y172034D01*

-X102154Y172052D01*

-X102227Y172082D01*

-X102255Y172099D01*

-Y106276D01*

-X102223Y106283D01*

-X101941Y106306D01*

-X101659Y106283D01*

-X101383Y106217D01*

-X101121Y106109D01*

-X100880Y105961D01*

-X100664Y105777D01*

-X100480Y105561D01*

-X100332Y105320D01*

-X100224Y105058D01*

-X100158Y104782D01*

-X100135Y104500D01*

-X100158Y104218D01*

-X100224Y103942D01*

-X100332Y103680D01*

-X100480Y103439D01*

-X100664Y103223D01*

-X100880Y103039D01*

-X101121Y102891D01*

-X101383Y102783D01*

-X101659Y102717D01*

-X101941Y102694D01*

-X102223Y102717D01*

-X102255Y102724D01*

-Y97000D01*

-G37*

-G36*

-X89441Y232563D02*X89296Y232801D01*

-X88810Y233369D01*

-X88242Y233855D01*

-X87604Y234245D01*

-X86913Y234531D01*

-X86186Y234706D01*

-X85784Y234738D01*

-Y235250D01*

-X87191D01*

-X87309Y235257D01*

-X87423Y235285D01*

-X87533Y235330D01*

-X87633Y235391D01*

-X87723Y235468D01*

-X87800Y235558D01*

-X87861Y235658D01*

-X87906Y235768D01*

-X87934Y235882D01*

-X87943Y236000D01*

-X87934Y236118D01*

-X87906Y236232D01*

-X87861Y236342D01*

-X87800Y236442D01*

-X87723Y236532D01*

-X87633Y236609D01*

-X87533Y236670D01*

-X87423Y236715D01*

-X87309Y236743D01*

-X87191Y236750D01*

-X85784D01*

-Y243250D01*

-X87191D01*

-X87309Y243257D01*

-X87423Y243285D01*

-X87533Y243330D01*

-X87633Y243391D01*

-X87723Y243468D01*

-X87800Y243558D01*

-X87861Y243658D01*

-X87906Y243768D01*

-X87934Y243882D01*

-X87943Y244000D01*

-X87934Y244118D01*

-X87906Y244232D01*

-X87861Y244342D01*

-X87800Y244442D01*

-X87723Y244532D01*

-X87633Y244609D01*

-X87533Y244670D01*

-X87423Y244715D01*

-X87309Y244743D01*

-X87191Y244750D01*

-X85784D01*

-Y247000D01*

-X89441D01*

-Y242502D01*

-X89323Y242493D01*

-X89209Y242465D01*

-X89099Y242420D01*

-X88999Y242359D01*

-X88909Y242282D01*

-X88832Y242192D01*

-X88771Y242092D01*

-X88726Y241982D01*

-X88698Y241868D01*

-X88691Y241750D01*

-Y238250D01*

-X88698Y238132D01*

-X88726Y238018D01*

-X88771Y237908D01*

-X88832Y237808D01*

-X88909Y237718D01*

-X88999Y237641D01*

-X89099Y237580D01*

-X89209Y237535D01*

-X89323Y237507D01*

-X89441Y237498D01*

-Y232563D01*

-G37*

-G36*

-Y222563D02*X89296Y222801D01*

-X88810Y223369D01*

-X88242Y223855D01*

-X87604Y224245D01*

-X86913Y224531D01*

-X86186Y224706D01*

-X85784Y224738D01*

-Y225262D01*

-X86186Y225294D01*

-X86913Y225469D01*

-X87604Y225755D01*

-X88242Y226145D01*

-X88810Y226631D01*

-X89296Y227199D01*

-X89441Y227437D01*

-Y222563D01*

-G37*

-G36*

-Y189198D02*X88914Y189417D01*

-X87376Y189786D01*

-X85799Y189910D01*

-X85784Y189909D01*

-Y215262D01*

-X86186Y215294D01*

-X86913Y215469D01*

-X87604Y215755D01*

-X88242Y216145D01*

-X88810Y216631D01*

-X89296Y217199D01*

-X89441Y217437D01*

-Y189198D01*

-G37*

-G36*

-Y97000D02*X85784D01*

-Y169749D01*

-X85799Y169748D01*

-X87376Y169872D01*

-X88914Y170241D01*

-X89441Y170460D01*

-Y97000D01*

-G37*

-G36*

-X85784Y322000D02*X73941D01*

-X71441Y324500D01*

-Y394500D01*

-X73941Y397000D01*

-X85784D01*

-Y379909D01*

-X84222Y379786D01*

-X82684Y379417D01*

-X81222Y378811D01*

-X79874Y377985D01*

-X78671Y376957D01*

-X77643Y375754D01*

-X76817Y374406D01*

-X76211Y372944D01*

-X75842Y371406D01*

-X75718Y369829D01*

-X75842Y368252D01*

-X76211Y366714D01*

-X76817Y365252D01*

-X77643Y363904D01*

-X78671Y362701D01*

-X79874Y361673D01*

-X81222Y360847D01*

-X82684Y360241D01*

-X84222Y359872D01*

-X85784Y359749D01*

-Y353557D01*

-X85339Y353284D01*

-X83724Y351904D01*

-X82344Y350289D01*

-X81233Y348477D01*

-X80420Y346514D01*

-X79924Y344447D01*

-X79757Y342329D01*

-X79924Y340211D01*

-X80420Y338144D01*

-X81233Y336181D01*

-X82344Y334369D01*

-X83724Y332754D01*

-X85339Y331374D01*

-X85784Y331101D01*

-Y322000D01*

-G37*

-G36*

-X81441Y217437D02*X81586Y217199D01*

-X82072Y216631D01*

-X82640Y216145D01*

-X83278Y215755D01*

-X83969Y215469D01*

-X84696Y215294D01*

-X85441Y215235D01*

-X85784Y215262D01*

-Y189909D01*

-X84222Y189786D01*

-X82684Y189417D01*

-X81441Y188902D01*

-Y217437D01*

-G37*

-G36*

-Y227437D02*X81586Y227199D01*

-X82072Y226631D01*

-X82640Y226145D01*

-X83278Y225755D01*

-X83969Y225469D01*

-X84696Y225294D01*

-X85441Y225235D01*

-X85784Y225262D01*

-Y224738D01*

-X85441Y224765D01*

-X84696Y224706D01*

-X83969Y224531D01*

-X83278Y224245D01*

-X82640Y223855D01*

-X82072Y223369D01*

-X81586Y222801D01*

-X81441Y222563D01*

-Y227437D01*

-G37*

-G36*

-Y247000D02*X85784D01*

-Y244750D01*

-X83691D01*

-X83573Y244743D01*

-X83459Y244715D01*

-X83349Y244670D01*

-X83249Y244609D01*

-X83159Y244532D01*

-X83082Y244442D01*

-X83021Y244342D01*

-X82976Y244232D01*

-X82948Y244118D01*

-X82939Y244000D01*

-X82948Y243882D01*

-X82976Y243768D01*

-X83021Y243658D01*

-X83082Y243558D01*

-X83159Y243468D01*

-X83249Y243391D01*

-X83349Y243330D01*

-X83459Y243285D01*

-X83573Y243257D01*

-X83691Y243250D01*

-X85784D01*

-Y236750D01*

-X83691D01*

-X83573Y236743D01*

-X83459Y236715D01*

-X83349Y236670D01*

-X83249Y236609D01*

-X83159Y236532D01*

-X83082Y236442D01*

-X83021Y236342D01*

-X82976Y236232D01*

-X82948Y236118D01*

-X82939Y236000D01*

-X82948Y235882D01*

-X82976Y235768D01*

-X83021Y235658D01*

-X83082Y235558D01*

-X83159Y235468D01*

-X83249Y235391D01*

-X83349Y235330D01*

-X83459Y235285D01*

-X83573Y235257D01*

-X83691Y235250D01*

-X85784D01*

-Y234738D01*

-X85441Y234765D01*

-X84696Y234706D01*

-X83969Y234531D01*

-X83278Y234245D01*

-X82640Y233855D01*

-X82072Y233369D01*

-X81586Y232801D01*

-X81441Y232563D01*

-Y237498D01*

-X81559Y237507D01*

-X81673Y237535D01*

-X81783Y237580D01*

-X81883Y237641D01*

-X81973Y237718D01*

-X82050Y237808D01*

-X82111Y237908D01*

-X82156Y238018D01*

-X82184Y238132D01*

-X82191Y238250D01*

-Y241750D01*

-X82184Y241868D01*

-X82156Y241982D01*

-X82111Y242092D01*

-X82050Y242192D01*

-X81973Y242282D01*

-X81883Y242359D01*

-X81783Y242420D01*

-X81673Y242465D01*

-X81559Y242493D01*

-X81441Y242502D01*

-Y247000D01*

-G37*

-G36*

-X85784Y97000D02*X81441D01*

-Y170756D01*

-X82684Y170241D01*

-X84222Y169872D01*

-X85784Y169749D01*

-Y97000D01*

-G37*

-G36*

-X81441D02*X71441D01*

-Y244500D01*

-X73941Y247000D01*

-X81441D01*

-Y242502D01*

-X81323Y242493D01*

-X81209Y242465D01*

-X81099Y242420D01*

-X80999Y242359D01*

-X80909Y242282D01*

-X80832Y242192D01*

-X80771Y242092D01*

-X80726Y241982D01*

-X80698Y241868D01*

-X80691Y241750D01*

-Y238250D01*

-X80698Y238132D01*

-X80726Y238018D01*

-X80771Y237908D01*

-X80832Y237808D01*

-X80909Y237718D01*

-X80999Y237641D01*

-X81099Y237580D01*

-X81209Y237535D01*

-X81323Y237507D01*

-X81441Y237498D01*

-Y232563D01*

-X81196Y232163D01*

-X80910Y231472D01*

-X80735Y230745D01*

-X80676Y230000D01*

-X80735Y229255D01*

-X80910Y228528D01*

-X81196Y227837D01*

-X81441Y227437D01*

-Y222563D01*

-X81196Y222163D01*

-X80910Y221472D01*

-X80735Y220745D01*

-X80676Y220000D01*

-X80735Y219255D01*

-X80910Y218528D01*

-X81196Y217837D01*

-X81441Y217437D01*

-Y188902D01*

-X81222Y188811D01*

-X79874Y187985D01*

-X78671Y186957D01*

-X77643Y185754D01*

-X76817Y184406D01*

-X76211Y182944D01*

-X75842Y181406D01*

-X75718Y179829D01*

-X75842Y178252D01*

-X76211Y176714D01*

-X76817Y175252D01*

-X77643Y173904D01*

-X78671Y172701D01*

-X79874Y171673D01*

-X81222Y170847D01*

-X81441Y170756D01*

-Y97000D01*

-G37*

-G36*

-X209441Y241000D02*X215941D01*

-Y235000D01*

-X209441D01*

-Y241000D01*

-G37*

-G36*

-X200441Y240500D02*X206941D01*

-Y234500D01*

-X200441D01*

-Y240500D01*

-G37*

-G36*

-X190441Y240000D02*X196941D01*

-Y234000D01*

-X190441D01*

-Y240000D01*

-G37*

-G36*

-X220941Y247000D02*X227441D01*

-Y241000D01*

-X220941D01*

-Y247000D01*

-G37*

-G36*

-X221441Y238500D02*X227941D01*

-Y232500D01*

-X221441D01*

-Y238500D01*

-G37*

-G36*

-X232941D02*X239441D01*

-Y232500D01*

-X232941D01*

-Y238500D01*

-G37*

-G36*

-X221941Y229500D02*X228441D01*

-Y223500D01*

-X221941D01*

-Y229500D01*

-G37*

-G36*

-X221441Y223500D02*X227941D01*

-Y217500D01*

-X221441D01*

-Y223500D01*

-G37*

-G36*

-X216941Y218000D02*X223441D01*

-Y212000D01*

-X216941D01*

-Y218000D01*

-G37*

-G36*

-X206941Y215500D02*X213441D01*

-Y209500D01*

-X206941D01*

-Y215500D01*

-G37*

-G36*

-X198941D02*X205441D01*

-Y209500D01*

-X198941D01*

-Y215500D01*

-G37*

-G36*

-X190441D02*X196941D01*

-Y209500D01*

-X190441D01*

-Y215500D01*

-G37*

-G36*

-X181941Y220500D02*X188441D01*

-Y214500D01*

-X181941D01*

-Y220500D01*

-G37*

-G36*

-X173941D02*X180441D01*

-Y214500D01*

-X173941D01*

-Y220500D01*

-G37*

-G36*

-Y231000D02*X180441D01*

-Y225000D01*

-X173941D01*

-Y231000D01*

-G37*

-G36*

-X181941D02*X188441D01*

-Y225000D01*

-X181941D01*

-Y231000D01*

-G37*

-G36*

-X266441Y202000D02*X272941D01*

-Y195000D01*

-X266441D01*

-Y202000D01*

-G37*

-G36*

-X266941Y235000D02*X273441D01*

-Y228000D01*

-X266941D01*

-Y235000D01*

-G37*

-G36*

-X257941Y196500D02*X264441D01*

-Y189500D01*

-X257941D01*

-Y196500D01*

-G37*

-G36*

-X242941D02*X249441D01*

-Y189500D01*

-X242941D01*

-Y196500D01*

-G37*

-G36*

-X240941Y205500D02*X247441D01*

-Y198500D01*

-X240941D01*

-Y205500D01*

-G37*

-G36*

-X248941Y214000D02*X255441D01*

-Y207000D01*

-X248941D01*

-Y214000D01*

-G37*

-G54D205*X446441Y102000D02*X442441D01*

-G54D206*X319941Y87000D02*X98441D01*

-G54D205*X397941Y367441D02*X394441D01*

-X398441Y309000D02*X395441D01*

-X398441Y248000D02*X395441D01*

-X400441Y189000D02*X395441D01*

-X302941Y340007D02*X300453D01*

-G54D206*X98441Y87000D02*X86941Y98500D01*

-Y111500D01*

-G54D207*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D204*G36*

-X403750Y357250D02*Y350750D01*

-X410250D01*

-Y357250D01*

-X403750D01*

-G37*

-G54D208*X345799Y357329D03*

-G54D209*X315799Y337329D03*

-G54D208*X85799Y369829D03*

-G54D210*X105799Y374829D03*

-G54D204*G36*

-X102499Y368129D02*Y361529D01*

-X109099D01*

-Y368129D01*

-X102499D01*

-G37*

-G54D210*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-G54D211*X93299Y342329D03*

-G54D210*X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D204*G36*

-X450250Y267250D02*Y260750D01*

-X456750D01*

-Y267250D01*

-X450250D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X456750D01*

-Y207250D01*

-X450250D01*

-G37*

-G36*

-Y177250D02*Y170750D01*

-X456750D01*

-Y177250D01*

-X450250D01*

-G37*

-G54D207*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D204*G36*

-X450250Y237250D02*Y230750D01*

-X456750D01*

-Y237250D01*

-X450250D01*

-G37*

-G54D207*X463500Y234000D03*

-X473500D03*

-G54D204*G36*

-X450250Y147250D02*Y140750D01*

-X456750D01*

-Y147250D01*

-X450250D01*

-G37*

-G36*

-Y117250D02*Y110750D01*

-X456750D01*

-Y117250D01*

-X450250D01*

-G37*

-G36*

-Y87250D02*Y80750D01*

-X456750D01*

-Y87250D01*

-X450250D01*

-G37*

-G36*

-Y57250D02*Y50750D01*

-X456750D01*

-Y57250D01*

-X450250D01*

-G37*

-G54D207*X463500Y54000D03*

-X473500D03*

-G54D204*G36*

-X450250Y327250D02*Y320750D01*

-X456750D01*

-Y327250D01*

-X450250D01*

-G37*

-G54D207*X463500Y324000D03*

-X473500D03*

-G54D204*G36*

-X450250Y297250D02*Y290750D01*

-X456750D01*

-Y297250D01*

-X450250D01*

-G37*

-G54D207*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D204*G36*

-X309191Y252250D02*Y245750D01*

-X315691D01*

-Y252250D01*

-X309191D01*

-G37*

-G54D207*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D208*X345799Y192329D03*

-G54D204*G36*

-X450250Y387250D02*Y380750D01*

-X456750D01*

-Y387250D01*

-X450250D01*

-G37*

-G54D207*X463500Y384000D03*

-X473500D03*

-G54D204*G36*

-X403750Y387250D02*Y380750D01*

-X410250D01*

-Y387250D01*

-X403750D01*

-G37*

-G36*

-Y297250D02*Y290750D01*

-X410250D01*

-Y297250D01*

-X403750D01*

-G37*

-G36*

-Y327250D02*Y320750D01*

-X410250D01*

-Y327250D01*

-X403750D01*

-G37*

-G54D207*X417000Y324000D03*

-X427000D03*

-G54D204*G36*

-X450250Y357250D02*Y350750D01*

-X456750D01*

-Y357250D01*

-X450250D01*

-G37*

-G54D207*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D204*G36*

-X403750Y177250D02*Y170750D01*

-X410250D01*

-Y177250D01*

-X403750D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X410250D01*

-Y207250D01*

-X403750D01*

-G37*

-G36*

-Y237250D02*Y230750D01*

-X410250D01*

-Y237250D01*

-X403750D01*

-G37*

-G36*

-Y267250D02*Y260750D01*

-X410250D01*

-Y267250D01*

-X403750D01*

-G37*

-G54D207*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D204*G36*

-X202191Y50750D02*Y44250D01*

-X208691D01*

-Y50750D01*

-X202191D01*

-G37*

-G54D207*X205441Y57500D03*

-Y67500D03*

-G54D204*G36*

-X232191Y50750D02*Y44250D01*

-X238691D01*

-Y50750D01*

-X232191D01*

-G37*

-G54D207*X235441Y57500D03*

-Y67500D03*

-G54D204*G36*

-X262191Y50750D02*Y44250D01*

-X268691D01*

-Y50750D01*

-X262191D01*

-G37*

-G36*

-X172191D02*Y44250D01*

-X178691D01*

-Y50750D01*

-X172191D01*

-G37*

-G36*

-X142191D02*Y44250D01*

-X148691D01*

-Y50750D01*

-X142191D01*

-G37*

-G36*

-X112191D02*Y44250D01*

-X118691D01*

-Y50750D01*

-X112191D01*

-G37*

-G36*

-X82191D02*Y44250D01*

-X88691D01*

-Y50750D01*

-X82191D01*

-G37*

-G54D207*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D204*G36*

-X292191Y50750D02*Y44250D01*

-X298691D01*

-Y50750D01*

-X292191D01*

-G37*

-G54D207*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D208*X85799Y179829D03*

-G54D210*X105799Y184829D03*

-G54D204*G36*

-X102499Y178129D02*Y171529D01*

-X109099D01*

-Y178129D01*

-X102499D01*

-G37*

-G54D210*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D204*G36*

-X82191Y243250D02*Y236750D01*

-X88691D01*

-Y243250D01*

-X82191D01*

-G37*

-G54D207*X85441Y230000D03*

-Y220000D03*

-G54D210*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D204*G36*

-X192499Y200629D02*Y194029D01*

-X199099D01*

-Y200629D01*

-X192499D01*

-G37*

-G54D210*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D205*X307716Y275075D03*

-X308992Y271971D03*

-X308872Y266522D03*

-X287917Y307829D03*

-X293902Y282263D03*

-X296779Y304963D03*

-X295937Y243628D03*

-X296727Y256227D03*

-X312157Y300156D03*

-X312122Y295038D03*

-X303365Y330000D03*

-X285430Y325000D03*

-X302941Y340007D03*

-X245557Y279508D03*

-X242456Y293543D03*

-X262750Y268772D03*

-X253101Y261836D03*

-G54D212*X246941Y238000D03*

-X242441Y229500D03*

-X246441D03*

-X250941D03*

-X260941Y191500D03*

-X245863Y191524D03*

-X269441Y198500D03*

-X269941Y231500D03*

-X251941Y210500D03*

-X243941Y202000D03*

-X253441Y102500D03*

-X231441Y148000D03*

-X309441Y141568D03*

-Y136450D03*

-X310941Y115940D03*

-X305696Y107500D03*

-X304584Y207483D03*

-X304706Y210583D03*

-X305280Y204383D03*

-G54D205*X254740Y298329D03*

-X242168Y298800D03*

-G54D212*X246731Y303031D03*

-G54D205*X269653Y298631D03*

-G54D212*X270441Y336000D03*

-Y342500D03*

-Y349500D03*

-G54D205*X268941Y314000D03*

-G54D212*X270441Y357000D03*

-G54D205*X273229Y298582D03*

-X278225Y279602D03*

-X278207Y298612D03*

-X277174Y308219D03*

-X277449Y347500D03*

-G54D212*X263441Y320000D03*

-X260568Y316997D03*

-X261502Y307367D03*

-X249101Y328793D03*

-X229818Y354988D03*

-G54D205*X266413Y296594D03*

-X263240Y295329D03*

-X262740Y291829D03*

-X260341Y284249D03*

-X264034Y282931D03*

-G54D212*X279441Y285000D03*

-G54D213*X386441Y163000D03*

-X400441Y194000D03*

-X389441Y184000D03*

-X400441Y189000D03*

-G54D212*X386023Y157813D03*

-X398441Y173000D03*

-G54D213*X393441Y208000D03*

-X384162Y188000D03*

-X458441Y195000D03*

-Y164000D03*

-X372441Y170386D03*

-G54D212*X377347Y162178D03*

-G54D213*X387441Y326000D03*

-X393441Y355000D03*

-X386720Y282000D03*

-X393441Y327000D03*

-X384162Y306000D03*

-X385941Y354500D03*

-X458441Y375000D03*

-X383662Y378500D03*

-X397441Y373000D03*

-X397941Y367441D03*

-G54D212*X385941Y366000D03*

-G54D213*X458441Y345000D03*

-Y315000D03*

-Y285000D03*

-X398441Y314000D03*

-Y309000D03*

-G54D212*Y291000D03*

-G54D213*X372441Y290689D03*

-Y351189D03*

-G54D212*X339837Y341827D03*

-X353390Y339521D03*

-G54D213*X375441Y235000D03*

-G54D212*X356441Y233000D03*

-X338441Y224192D03*

-Y230124D03*

-X337441Y163000D03*

-X358941Y208500D03*

-G54D213*X384512Y258000D03*

-G54D212*X371602Y260228D03*

-G54D213*X458441Y254000D03*

-Y225000D03*

-X387070Y235000D03*

-X398441Y248000D03*

-Y253000D03*

-G54D212*X396441Y235000D03*

-X392188Y239000D03*

-X388207Y247280D03*

-G54D205*X239302Y262235D03*

-G54D212*X245441Y127500D03*

-X235941Y133000D03*

-X236441Y235500D03*

-X202441Y212500D03*

-X210441D03*

-X220441Y215000D03*

-X224941Y220500D03*

-X225441Y226500D03*

-X224941Y235500D03*

-X224441Y244000D03*

-X212941Y238000D03*

-X203941Y237500D03*

-X193941Y237000D03*

-X181941Y258500D03*

-X183941Y104000D03*

-X112222Y127340D03*

-X114441Y121500D03*

-X115441Y132500D03*

-X101941Y104500D03*

-X166441Y104000D03*

-X127941Y148000D03*

-X106441Y148500D03*

-X149941Y149000D03*

-X138925Y206113D03*

-X138872Y202030D03*

-X138925Y197841D03*

-X161941Y199000D03*

-X166941Y197500D03*

-X138925Y192698D03*

-X161941Y193000D03*

-X166941D03*

-X163941Y127500D03*

-X193390D03*

-X152441Y121500D03*

-X151941Y132000D03*

-X195441Y133000D03*

-X141441Y148000D03*

-X208941D03*

-X223941D03*

-X198441Y122500D03*

-X234441D03*

-X221884Y254000D03*

-X224441Y252000D03*

-X225441Y249000D03*

-X230441Y247000D03*

-X219441Y272500D03*

-X230441Y293000D03*

-X220729Y265580D03*

-X220441Y259500D03*

-X218441Y261500D03*

-X217441Y279000D03*

-X240391Y278564D03*

-X128941Y274500D03*

-Y268500D03*

-Y262500D03*

-Y255000D03*

-Y248500D03*

-Y242500D03*

-X104441Y204500D03*

-X100941D03*

-X141307Y300883D03*

-X124831Y302385D03*

-X158441Y323829D03*

-Y328829D03*

-Y326500D03*

-X153941Y338000D03*

-X154941Y345500D03*

-X135441Y338500D03*

-Y335000D03*

-X139941Y338000D03*

-X111941Y334000D03*

-X117941D03*

-X126441D03*

-X142441Y357500D03*

-Y349500D03*

-X149441D03*

-X126441Y340500D03*

-X111941Y341000D03*

-Y357500D03*

-X121941D03*

-X130941D03*

-X197441Y314500D03*

-Y308500D03*

-X198441Y262500D03*

-Y269500D03*

-X205441Y277000D03*

-X195441Y311500D03*

-X191363Y344449D03*

-X178887Y342818D03*

-X168732Y350833D03*

-X162441Y242500D03*

-X165941Y231000D03*

-Y226500D03*

-X185441Y228000D03*

-X177441D03*

-X162441Y248500D03*

-X161941Y255000D03*

-X162441Y262500D03*

-X162941Y268500D03*

-Y274500D03*

-X165941Y220500D03*

-X169441Y214000D03*

-Y208500D03*

-Y201500D03*

-X177441Y217500D03*

-X185441D03*

-X193941Y212500D03*

-G54D213*X432324Y111000D03*

-X446441Y102000D03*

-X434882Y75000D03*

-G54D214*X440941Y123000D03*

-G54D213*X423441Y75000D03*

-G54D212*X434449Y56500D03*

-X440449D03*

-X354941Y93499D03*

-Y97999D03*

-Y103999D03*

-Y109999D03*

-Y115999D03*

-Y121999D03*

-Y127999D03*

-X387941D03*

-Y121999D03*

-Y115999D03*

-Y109999D03*

-Y97999D03*

-Y93499D03*

-Y103999D03*

-X391441Y84499D03*

-Y79999D03*

-X391941Y74499D03*

-X395441Y66999D03*

-X394441Y59999D03*

-X392941Y53499D03*

-X368941Y48500D03*

-Y43500D03*

-X374941D03*

-Y47000D03*

-G54D215*G54D212*G54D215*G54D212*G54D215*G54D212*G54D215*G54D212*G54D215*G54D212*G54D215*G54D212*G54D215*G54D212*G54D215*G54D212*G54D215*G54D212*G54D216*G54D212*G54D215*G54D217*G54D218*G54D219*G54D218*G54D220*G54D211*G54D220*G54D217*G54D218*G54D217*G54D218*G54D220*G54D217*G54D220*M02*

diff --git a/bbb_cape/schematic/gerbers/20140117/cape.group2.gbr b/bbb_cape/schematic/gerbers/20140117/cape.group2.gbr
deleted file mode 100644
index afeacbf..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.group2.gbr
+++ /dev/null
@@ -1,25993 +0,0 @@
-G04 start of page 4 for group 2 idx 1 *

-G04 Title: 971 BBB Cape, power *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Sun Jan 19 01:17:08 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNGROUP2*%

-%ADD236C,0.0460*%

-%ADD235C,0.2000*%

-%ADD234C,0.1285*%

-%ADD233C,0.0400*%

-%ADD232C,0.0350*%

-%ADD231C,0.0100*%

-%ADD230C,0.0600*%

-%ADD229C,0.0360*%

-%ADD228C,0.0200*%

-%ADD227C,0.2500*%

-%ADD226C,0.0660*%

-%ADD225C,0.2200*%

-%ADD224C,0.1830*%

-%ADD223C,0.0650*%

-%ADD222C,0.0250*%

-%ADD221C,0.0001*%

-G54D221*G36*

-X382941Y350500D02*Y358500D01*

-X389441D01*

-Y350500D01*

-X382941D01*

-G37*

-G36*

-X383941Y277500D02*Y285500D01*

-X390441D01*

-Y277500D01*

-X383941D01*

-G37*

-G36*

-X383441Y231000D02*Y239000D01*

-X389941D01*

-Y231000D01*

-X383441D01*

-G37*

-G36*

-X292922Y301042D02*Y309042D01*

-X299422D01*

-Y301042D01*

-X292922D01*

-G37*

-G36*

-X292941Y253000D02*Y261000D01*

-X299441D01*

-Y253000D01*

-X292941D01*

-G37*

-G36*

-X309441Y298000D02*Y303000D01*

-X314941D01*

-Y298000D01*

-X309441D01*

-G37*

-G36*

-X258902Y303109D02*Y311109D01*

-X265402D01*

-Y303109D01*

-X258902D01*

-G37*

-G36*

-X267941Y347000D02*Y352000D01*

-X273441D01*

-Y347000D01*

-X267941D01*

-G37*

-G36*

-Y340000D02*Y345000D01*

-X273441D01*

-Y340000D01*

-X267941D01*

-G37*

-G36*

-Y333500D02*Y338500D01*

-X273441D01*

-Y333500D01*

-X267941D01*

-G37*

-G36*

-X383441Y160000D02*Y168000D01*

-X389941D01*

-Y160000D01*

-X383441D01*

-G37*

-G36*

-X428941Y106500D02*Y114500D01*

-X435441D01*

-Y106500D01*

-X428941D01*

-G37*

-G36*

-X419441Y72000D02*Y78000D01*

-X426441D01*

-Y72000D01*

-X419441D01*

-G37*

-G36*

-X388723Y82123D02*Y87123D01*

-X394223D01*

-Y82123D01*

-X388723D01*

-G37*

-G36*

-X249877Y257055D02*Y265055D01*

-X256377D01*

-Y257055D01*

-X249877D01*

-G37*

-G36*

-X238701Y288207D02*Y296207D01*

-X245201D01*

-Y288207D01*

-X238701D01*

-G37*

-G36*

-X481441Y394000D02*Y41500D01*

-X478941Y39000D01*

-X473493D01*

-Y49236D01*

-X473500Y49235D01*

-X474245Y49294D01*

-X474972Y49469D01*

-X475663Y49755D01*

-X476301Y50145D01*

-X476869Y50631D01*

-X477355Y51199D01*

-X477745Y51837D01*

-X478031Y52528D01*

-X478206Y53255D01*

-X478250Y54000D01*

-X478206Y54745D01*

-X478031Y55472D01*

-X477745Y56163D01*

-X477355Y56801D01*

-X476869Y57369D01*

-X476301Y57855D01*

-X475663Y58245D01*

-X474972Y58531D01*

-X474245Y58706D01*

-X473500Y58765D01*

-X473493Y58764D01*

-Y79236D01*

-X473500Y79235D01*

-X474245Y79294D01*

-X474972Y79469D01*

-X475663Y79755D01*

-X476301Y80145D01*

-X476869Y80631D01*

-X477355Y81199D01*

-X477745Y81837D01*

-X478031Y82528D01*

-X478206Y83255D01*

-X478250Y84000D01*

-X478206Y84745D01*

-X478031Y85472D01*

-X477745Y86163D01*

-X477355Y86801D01*

-X476869Y87369D01*

-X476301Y87855D01*

-X475663Y88245D01*

-X474972Y88531D01*

-X474245Y88706D01*

-X473500Y88765D01*

-X473493Y88764D01*

-Y109236D01*

-X473500Y109235D01*

-X474245Y109294D01*

-X474972Y109469D01*

-X475663Y109755D01*

-X476301Y110145D01*

-X476869Y110631D01*

-X477355Y111199D01*

-X477745Y111837D01*

-X478031Y112528D01*

-X478206Y113255D01*

-X478250Y114000D01*

-X478206Y114745D01*

-X478031Y115472D01*

-X477745Y116163D01*

-X477355Y116801D01*

-X476869Y117369D01*

-X476301Y117855D01*

-X475663Y118245D01*

-X474972Y118531D01*

-X474245Y118706D01*

-X473500Y118765D01*

-X473493Y118764D01*

-Y139236D01*

-X473500Y139235D01*

-X474245Y139294D01*

-X474972Y139469D01*

-X475663Y139755D01*

-X476301Y140145D01*

-X476869Y140631D01*

-X477355Y141199D01*

-X477745Y141837D01*

-X478031Y142528D01*

-X478206Y143255D01*

-X478250Y144000D01*

-X478206Y144745D01*

-X478031Y145472D01*

-X477745Y146163D01*

-X477355Y146801D01*

-X476869Y147369D01*

-X476301Y147855D01*

-X475663Y148245D01*

-X474972Y148531D01*

-X474245Y148706D01*

-X473500Y148765D01*

-X473493Y148764D01*

-Y169236D01*

-X473500Y169235D01*

-X474245Y169294D01*

-X474972Y169469D01*

-X475663Y169755D01*

-X476301Y170145D01*

-X476869Y170631D01*

-X477355Y171199D01*

-X477745Y171837D01*

-X478031Y172528D01*

-X478206Y173255D01*

-X478250Y174000D01*

-X478206Y174745D01*

-X478031Y175472D01*

-X477745Y176163D01*

-X477355Y176801D01*

-X476869Y177369D01*

-X476301Y177855D01*

-X475663Y178245D01*

-X474972Y178531D01*

-X474245Y178706D01*

-X473500Y178765D01*

-X473493Y178764D01*

-Y199236D01*

-X473500Y199235D01*

-X474245Y199294D01*

-X474972Y199469D01*

-X475663Y199755D01*

-X476301Y200145D01*

-X476869Y200631D01*

-X477355Y201199D01*

-X477745Y201837D01*

-X478031Y202528D01*

-X478206Y203255D01*

-X478250Y204000D01*

-X478206Y204745D01*

-X478031Y205472D01*

-X477745Y206163D01*

-X477355Y206801D01*

-X476869Y207369D01*

-X476301Y207855D01*

-X475663Y208245D01*

-X474972Y208531D01*

-X474245Y208706D01*

-X473500Y208765D01*

-X473493Y208764D01*

-Y229236D01*

-X473500Y229235D01*

-X474245Y229294D01*

-X474972Y229469D01*

-X475663Y229755D01*

-X476301Y230145D01*

-X476869Y230631D01*

-X477355Y231199D01*

-X477745Y231837D01*

-X478031Y232528D01*

-X478206Y233255D01*

-X478250Y234000D01*

-X478206Y234745D01*

-X478031Y235472D01*

-X477745Y236163D01*

-X477355Y236801D01*

-X476869Y237369D01*

-X476301Y237855D01*

-X475663Y238245D01*

-X474972Y238531D01*

-X474245Y238706D01*

-X473500Y238765D01*

-X473493Y238764D01*

-Y259236D01*

-X473500Y259235D01*

-X474245Y259294D01*

-X474972Y259469D01*

-X475663Y259755D01*

-X476301Y260145D01*

-X476869Y260631D01*

-X477355Y261199D01*

-X477745Y261837D01*

-X478031Y262528D01*

-X478206Y263255D01*

-X478250Y264000D01*

-X478206Y264745D01*

-X478031Y265472D01*

-X477745Y266163D01*

-X477355Y266801D01*

-X476869Y267369D01*

-X476301Y267855D01*

-X475663Y268245D01*

-X474972Y268531D01*

-X474245Y268706D01*

-X473500Y268765D01*

-X473493Y268764D01*

-Y289236D01*

-X473500Y289235D01*

-X474245Y289294D01*

-X474972Y289469D01*

-X475663Y289755D01*

-X476301Y290145D01*

-X476869Y290631D01*

-X477355Y291199D01*

-X477745Y291837D01*

-X478031Y292528D01*

-X478206Y293255D01*

-X478250Y294000D01*

-X478206Y294745D01*

-X478031Y295472D01*

-X477745Y296163D01*

-X477355Y296801D01*

-X476869Y297369D01*

-X476301Y297855D01*

-X475663Y298245D01*

-X474972Y298531D01*

-X474245Y298706D01*

-X473500Y298765D01*

-X473493Y298764D01*

-Y319236D01*

-X473500Y319235D01*

-X474245Y319294D01*

-X474972Y319469D01*

-X475663Y319755D01*

-X476301Y320145D01*

-X476869Y320631D01*

-X477355Y321199D01*

-X477745Y321837D01*

-X478031Y322528D01*

-X478206Y323255D01*

-X478250Y324000D01*

-X478206Y324745D01*

-X478031Y325472D01*

-X477745Y326163D01*

-X477355Y326801D01*

-X476869Y327369D01*

-X476301Y327855D01*

-X475663Y328245D01*

-X474972Y328531D01*

-X474245Y328706D01*

-X473500Y328765D01*

-X473493Y328764D01*

-Y349236D01*

-X473500Y349235D01*

-X474245Y349294D01*

-X474972Y349469D01*

-X475663Y349755D01*

-X476301Y350145D01*

-X476869Y350631D01*

-X477355Y351199D01*

-X477745Y351837D01*

-X478031Y352528D01*

-X478206Y353255D01*

-X478250Y354000D01*

-X478206Y354745D01*

-X478031Y355472D01*

-X477745Y356163D01*

-X477355Y356801D01*

-X476869Y357369D01*

-X476301Y357855D01*

-X475663Y358245D01*

-X474972Y358531D01*

-X474245Y358706D01*

-X473500Y358765D01*

-X473493Y358764D01*

-Y379236D01*

-X473500Y379235D01*

-X474245Y379294D01*

-X474972Y379469D01*

-X475663Y379755D01*

-X476301Y380145D01*

-X476869Y380631D01*

-X477355Y381199D01*

-X477745Y381837D01*

-X478031Y382528D01*

-X478206Y383255D01*

-X478250Y384000D01*

-X478206Y384745D01*

-X478031Y385472D01*

-X477745Y386163D01*

-X477355Y386801D01*

-X476869Y387369D01*

-X476301Y387855D01*

-X475663Y388245D01*

-X474972Y388531D01*

-X474245Y388706D01*

-X473500Y388765D01*

-X473493Y388764D01*

-Y397000D01*

-X478941D01*

-X481441Y394000D01*

-G37*

-G36*

-X473493Y39000D02*X467332D01*

-Y51670D01*

-X467443Y51704D01*

-X467550Y51756D01*

-X467646Y51823D01*

-X467731Y51905D01*

-X467802Y52000D01*

-X467856Y52105D01*

-X468015Y52508D01*

-X468132Y52925D01*

-X468211Y53352D01*

-X468250Y53783D01*

-Y54217D01*

-X468211Y54648D01*

-X468132Y55075D01*

-X468015Y55492D01*

-X467860Y55897D01*

-X467805Y56002D01*

-X467734Y56097D01*

-X467648Y56179D01*

-X467551Y56247D01*

-X467445Y56299D01*

-X467332Y56334D01*

-Y81670D01*

-X467443Y81704D01*

-X467550Y81756D01*

-X467646Y81823D01*

-X467731Y81905D01*

-X467802Y82000D01*

-X467856Y82105D01*

-X468015Y82508D01*

-X468132Y82925D01*

-X468211Y83352D01*

-X468250Y83783D01*

-Y84217D01*

-X468211Y84648D01*

-X468132Y85075D01*

-X468015Y85492D01*

-X467860Y85897D01*

-X467805Y86002D01*

-X467734Y86097D01*

-X467648Y86179D01*

-X467551Y86247D01*

-X467445Y86299D01*

-X467332Y86334D01*

-Y111670D01*

-X467443Y111704D01*

-X467550Y111756D01*

-X467646Y111823D01*

-X467731Y111905D01*

-X467802Y112000D01*

-X467856Y112105D01*

-X468015Y112508D01*

-X468132Y112925D01*

-X468211Y113352D01*

-X468250Y113783D01*

-Y114217D01*

-X468211Y114648D01*

-X468132Y115075D01*

-X468015Y115492D01*

-X467860Y115897D01*

-X467805Y116002D01*

-X467734Y116097D01*

-X467648Y116179D01*

-X467551Y116247D01*

-X467445Y116299D01*

-X467332Y116334D01*

-Y141670D01*

-X467443Y141704D01*

-X467550Y141756D01*

-X467646Y141823D01*

-X467731Y141905D01*

-X467802Y142000D01*

-X467856Y142105D01*

-X468015Y142508D01*

-X468132Y142925D01*

-X468211Y143352D01*

-X468250Y143783D01*

-Y144217D01*

-X468211Y144648D01*

-X468132Y145075D01*

-X468015Y145492D01*

-X467860Y145897D01*

-X467805Y146002D01*

-X467734Y146097D01*

-X467648Y146179D01*

-X467551Y146247D01*

-X467445Y146299D01*

-X467332Y146334D01*

-Y171670D01*

-X467443Y171704D01*

-X467550Y171756D01*

-X467646Y171823D01*

-X467731Y171905D01*

-X467802Y172000D01*

-X467856Y172105D01*

-X468015Y172508D01*

-X468132Y172925D01*

-X468211Y173352D01*

-X468250Y173783D01*

-Y174217D01*

-X468211Y174648D01*

-X468132Y175075D01*

-X468015Y175492D01*

-X467860Y175897D01*

-X467805Y176002D01*

-X467734Y176097D01*

-X467648Y176179D01*

-X467551Y176247D01*

-X467445Y176299D01*

-X467332Y176334D01*

-Y201670D01*

-X467443Y201704D01*

-X467550Y201756D01*

-X467646Y201823D01*

-X467731Y201905D01*

-X467802Y202000D01*

-X467856Y202105D01*

-X468015Y202508D01*

-X468132Y202925D01*

-X468211Y203352D01*

-X468250Y203783D01*

-Y204217D01*

-X468211Y204648D01*

-X468132Y205075D01*

-X468015Y205492D01*

-X467860Y205897D01*

-X467805Y206002D01*

-X467734Y206097D01*

-X467648Y206179D01*

-X467551Y206247D01*

-X467445Y206299D01*

-X467332Y206334D01*

-Y231670D01*

-X467443Y231704D01*

-X467550Y231756D01*

-X467646Y231823D01*

-X467731Y231905D01*

-X467802Y232000D01*

-X467856Y232105D01*

-X468015Y232508D01*

-X468132Y232925D01*

-X468211Y233352D01*

-X468250Y233783D01*

-Y234217D01*

-X468211Y234648D01*

-X468132Y235075D01*

-X468015Y235492D01*

-X467860Y235897D01*

-X467805Y236002D01*

-X467734Y236097D01*

-X467648Y236179D01*

-X467551Y236247D01*

-X467445Y236299D01*

-X467332Y236334D01*

-Y261670D01*

-X467443Y261704D01*

-X467550Y261756D01*

-X467646Y261823D01*

-X467731Y261905D01*

-X467802Y262000D01*

-X467856Y262105D01*

-X468015Y262508D01*

-X468132Y262925D01*

-X468211Y263352D01*

-X468250Y263783D01*

-Y264217D01*

-X468211Y264648D01*

-X468132Y265075D01*

-X468015Y265492D01*

-X467860Y265897D01*

-X467805Y266002D01*

-X467734Y266097D01*

-X467648Y266179D01*

-X467551Y266247D01*

-X467445Y266299D01*

-X467332Y266334D01*

-Y291670D01*

-X467443Y291704D01*

-X467550Y291756D01*

-X467646Y291823D01*

-X467731Y291905D01*

-X467802Y292000D01*

-X467856Y292105D01*

-X468015Y292508D01*

-X468132Y292925D01*

-X468211Y293352D01*

-X468250Y293783D01*

-Y294217D01*

-X468211Y294648D01*

-X468132Y295075D01*

-X468015Y295492D01*

-X467860Y295897D01*

-X467805Y296002D01*

-X467734Y296097D01*

-X467648Y296179D01*

-X467551Y296247D01*

-X467445Y296299D01*

-X467332Y296334D01*

-Y321670D01*

-X467443Y321704D01*

-X467550Y321756D01*

-X467646Y321823D01*

-X467731Y321905D01*

-X467802Y322000D01*

-X467856Y322105D01*

-X468015Y322508D01*

-X468132Y322925D01*

-X468211Y323352D01*

-X468250Y323783D01*

-Y324217D01*

-X468211Y324648D01*

-X468132Y325075D01*

-X468015Y325492D01*

-X467860Y325897D01*

-X467805Y326002D01*

-X467734Y326097D01*

-X467648Y326179D01*

-X467551Y326247D01*

-X467445Y326299D01*

-X467332Y326334D01*

-Y351670D01*

-X467443Y351704D01*

-X467550Y351756D01*

-X467646Y351823D01*

-X467731Y351905D01*

-X467802Y352000D01*

-X467856Y352105D01*

-X468015Y352508D01*

-X468132Y352925D01*

-X468211Y353352D01*

-X468250Y353783D01*

-Y354217D01*

-X468211Y354648D01*

-X468132Y355075D01*

-X468015Y355492D01*

-X467860Y355897D01*

-X467805Y356002D01*

-X467734Y356097D01*

-X467648Y356179D01*

-X467551Y356247D01*

-X467445Y356299D01*

-X467332Y356334D01*

-Y381670D01*

-X467443Y381704D01*

-X467550Y381756D01*

-X467646Y381823D01*

-X467731Y381905D01*

-X467802Y382000D01*

-X467856Y382105D01*

-X468015Y382508D01*

-X468132Y382925D01*

-X468211Y383352D01*

-X468250Y383783D01*

-Y384217D01*

-X468211Y384648D01*

-X468132Y385075D01*

-X468015Y385492D01*

-X467860Y385897D01*

-X467805Y386002D01*

-X467734Y386097D01*

-X467648Y386179D01*

-X467551Y386247D01*

-X467445Y386299D01*

-X467332Y386334D01*

-Y397000D01*

-X473493D01*

-Y388764D01*

-X472755Y388706D01*

-X472028Y388531D01*

-X471337Y388245D01*

-X470699Y387855D01*

-X470131Y387369D01*

-X469645Y386801D01*

-X469255Y386163D01*

-X468969Y385472D01*

-X468794Y384745D01*

-X468735Y384000D01*

-X468794Y383255D01*

-X468969Y382528D01*

-X469255Y381837D01*

-X469645Y381199D01*

-X470131Y380631D01*

-X470699Y380145D01*

-X471337Y379755D01*

-X472028Y379469D01*

-X472755Y379294D01*

-X473493Y379236D01*

-Y358764D01*

-X472755Y358706D01*

-X472028Y358531D01*

-X471337Y358245D01*

-X470699Y357855D01*

-X470131Y357369D01*

-X469645Y356801D01*

-X469255Y356163D01*

-X468969Y355472D01*

-X468794Y354745D01*

-X468735Y354000D01*

-X468794Y353255D01*

-X468969Y352528D01*

-X469255Y351837D01*

-X469645Y351199D01*

-X470131Y350631D01*

-X470699Y350145D01*

-X471337Y349755D01*

-X472028Y349469D01*

-X472755Y349294D01*

-X473493Y349236D01*

-Y328764D01*

-X472755Y328706D01*

-X472028Y328531D01*

-X471337Y328245D01*

-X470699Y327855D01*

-X470131Y327369D01*

-X469645Y326801D01*

-X469255Y326163D01*

-X468969Y325472D01*

-X468794Y324745D01*

-X468735Y324000D01*

-X468794Y323255D01*

-X468969Y322528D01*

-X469255Y321837D01*

-X469645Y321199D01*

-X470131Y320631D01*

-X470699Y320145D01*

-X471337Y319755D01*

-X472028Y319469D01*

-X472755Y319294D01*

-X473493Y319236D01*

-Y298764D01*

-X472755Y298706D01*

-X472028Y298531D01*

-X471337Y298245D01*

-X470699Y297855D01*

-X470131Y297369D01*

-X469645Y296801D01*

-X469255Y296163D01*

-X468969Y295472D01*

-X468794Y294745D01*

-X468735Y294000D01*

-X468794Y293255D01*

-X468969Y292528D01*

-X469255Y291837D01*

-X469645Y291199D01*

-X470131Y290631D01*

-X470699Y290145D01*

-X471337Y289755D01*

-X472028Y289469D01*

-X472755Y289294D01*

-X473493Y289236D01*

-Y268764D01*

-X472755Y268706D01*

-X472028Y268531D01*

-X471337Y268245D01*

-X470699Y267855D01*

-X470131Y267369D01*

-X469645Y266801D01*

-X469255Y266163D01*

-X468969Y265472D01*

-X468794Y264745D01*

-X468735Y264000D01*

-X468794Y263255D01*

-X468969Y262528D01*

-X469255Y261837D01*

-X469645Y261199D01*

-X470131Y260631D01*

-X470699Y260145D01*

-X471337Y259755D01*

-X472028Y259469D01*

-X472755Y259294D01*

-X473493Y259236D01*

-Y238764D01*

-X472755Y238706D01*

-X472028Y238531D01*

-X471337Y238245D01*

-X470699Y237855D01*

-X470131Y237369D01*

-X469645Y236801D01*

-X469255Y236163D01*

-X468969Y235472D01*

-X468794Y234745D01*

-X468735Y234000D01*

-X468794Y233255D01*

-X468969Y232528D01*

-X469255Y231837D01*

-X469645Y231199D01*

-X470131Y230631D01*

-X470699Y230145D01*

-X471337Y229755D01*

-X472028Y229469D01*

-X472755Y229294D01*

-X473493Y229236D01*

-Y208764D01*

-X472755Y208706D01*

-X472028Y208531D01*

-X471337Y208245D01*

-X470699Y207855D01*

-X470131Y207369D01*

-X469645Y206801D01*

-X469255Y206163D01*

-X468969Y205472D01*

-X468794Y204745D01*

-X468735Y204000D01*

-X468794Y203255D01*

-X468969Y202528D01*

-X469255Y201837D01*

-X469645Y201199D01*

-X470131Y200631D01*

-X470699Y200145D01*

-X471337Y199755D01*

-X472028Y199469D01*

-X472755Y199294D01*

-X473493Y199236D01*

-Y178764D01*

-X472755Y178706D01*

-X472028Y178531D01*

-X471337Y178245D01*

-X470699Y177855D01*

-X470131Y177369D01*

-X469645Y176801D01*

-X469255Y176163D01*

-X468969Y175472D01*

-X468794Y174745D01*

-X468735Y174000D01*

-X468794Y173255D01*

-X468969Y172528D01*

-X469255Y171837D01*

-X469645Y171199D01*

-X470131Y170631D01*

-X470699Y170145D01*

-X471337Y169755D01*

-X472028Y169469D01*

-X472755Y169294D01*

-X473493Y169236D01*

-Y148764D01*

-X472755Y148706D01*

-X472028Y148531D01*

-X471337Y148245D01*

-X470699Y147855D01*

-X470131Y147369D01*

-X469645Y146801D01*

-X469255Y146163D01*

-X468969Y145472D01*

-X468794Y144745D01*

-X468735Y144000D01*

-X468794Y143255D01*

-X468969Y142528D01*

-X469255Y141837D01*

-X469645Y141199D01*

-X470131Y140631D01*

-X470699Y140145D01*

-X471337Y139755D01*

-X472028Y139469D01*

-X472755Y139294D01*

-X473493Y139236D01*

-Y118764D01*

-X472755Y118706D01*

-X472028Y118531D01*

-X471337Y118245D01*

-X470699Y117855D01*

-X470131Y117369D01*

-X469645Y116801D01*

-X469255Y116163D01*

-X468969Y115472D01*

-X468794Y114745D01*

-X468735Y114000D01*

-X468794Y113255D01*

-X468969Y112528D01*

-X469255Y111837D01*

-X469645Y111199D01*

-X470131Y110631D01*

-X470699Y110145D01*

-X471337Y109755D01*

-X472028Y109469D01*

-X472755Y109294D01*

-X473493Y109236D01*

-Y88764D01*

-X472755Y88706D01*

-X472028Y88531D01*

-X471337Y88245D01*

-X470699Y87855D01*

-X470131Y87369D01*

-X469645Y86801D01*

-X469255Y86163D01*

-X468969Y85472D01*

-X468794Y84745D01*

-X468735Y84000D01*

-X468794Y83255D01*

-X468969Y82528D01*

-X469255Y81837D01*

-X469645Y81199D01*

-X470131Y80631D01*

-X470699Y80145D01*

-X471337Y79755D01*

-X472028Y79469D01*

-X472755Y79294D01*

-X473493Y79236D01*

-Y58764D01*

-X472755Y58706D01*

-X472028Y58531D01*

-X471337Y58245D01*

-X470699Y57855D01*

-X470131Y57369D01*

-X469645Y56801D01*

-X469255Y56163D01*

-X468969Y55472D01*

-X468794Y54745D01*

-X468735Y54000D01*

-X468794Y53255D01*

-X468969Y52528D01*

-X469255Y51837D01*

-X469645Y51199D01*

-X470131Y50631D01*

-X470699Y50145D01*

-X471337Y49755D01*

-X472028Y49469D01*

-X472755Y49294D01*

-X473493Y49236D01*

-Y39000D01*

-G37*

-G36*

-X467332D02*X463502D01*

-Y49250D01*

-X463717D01*

-X464148Y49289D01*

-X464575Y49368D01*

-X464992Y49485D01*

-X465397Y49640D01*

-X465502Y49695D01*

-X465597Y49766D01*

-X465679Y49852D01*

-X465747Y49949D01*

-X465799Y50055D01*

-X465834Y50169D01*

-X465850Y50286D01*

-X465848Y50405D01*

-X465827Y50522D01*

-X465789Y50634D01*

-X465733Y50738D01*

-X465662Y50833D01*

-X465576Y50915D01*

-X465479Y50983D01*

-X465373Y51035D01*

-X465259Y51070D01*

-X465142Y51086D01*

-X465023Y51084D01*

-X464906Y51064D01*

-X464795Y51023D01*

-X464520Y50914D01*

-X464235Y50834D01*

-X463943Y50780D01*

-X463648Y50753D01*

-X463502D01*

-Y57247D01*

-X463648D01*

-X463943Y57220D01*

-X464235Y57166D01*

-X464520Y57086D01*

-X464797Y56980D01*

-X464907Y56940D01*

-X465024Y56919D01*

-X465142Y56917D01*

-X465259Y56933D01*

-X465371Y56968D01*

-X465478Y57020D01*

-X465574Y57087D01*

-X465659Y57169D01*

-X465730Y57263D01*

-X465786Y57368D01*

-X465824Y57479D01*

-X465845Y57596D01*

-X465847Y57714D01*

-X465830Y57830D01*

-X465796Y57943D01*

-X465744Y58050D01*

-X465677Y58146D01*

-X465595Y58231D01*

-X465500Y58302D01*

-X465395Y58356D01*

-X464992Y58515D01*

-X464575Y58632D01*

-X464148Y58711D01*

-X463717Y58750D01*

-X463502D01*

-Y79250D01*

-X463717D01*

-X464148Y79289D01*

-X464575Y79368D01*

-X464992Y79485D01*

-X465397Y79640D01*

-X465502Y79695D01*

-X465597Y79766D01*

-X465679Y79852D01*

-X465747Y79949D01*

-X465799Y80055D01*

-X465834Y80169D01*

-X465850Y80286D01*

-X465848Y80405D01*

-X465827Y80522D01*

-X465789Y80634D01*

-X465733Y80738D01*

-X465662Y80833D01*

-X465576Y80915D01*

-X465479Y80983D01*

-X465373Y81035D01*

-X465259Y81070D01*

-X465142Y81086D01*

-X465023Y81084D01*

-X464906Y81064D01*

-X464795Y81023D01*

-X464520Y80914D01*

-X464235Y80834D01*

-X463943Y80780D01*

-X463648Y80753D01*

-X463502D01*

-Y87247D01*

-X463648D01*

-X463943Y87220D01*

-X464235Y87166D01*

-X464520Y87086D01*

-X464797Y86980D01*

-X464907Y86940D01*

-X465024Y86919D01*

-X465142Y86917D01*

-X465259Y86933D01*

-X465371Y86968D01*

-X465478Y87020D01*

-X465574Y87087D01*

-X465659Y87169D01*

-X465730Y87263D01*

-X465786Y87368D01*

-X465824Y87479D01*

-X465845Y87596D01*

-X465847Y87714D01*

-X465830Y87830D01*

-X465796Y87943D01*

-X465744Y88050D01*

-X465677Y88146D01*

-X465595Y88231D01*

-X465500Y88302D01*

-X465395Y88356D01*

-X464992Y88515D01*

-X464575Y88632D01*

-X464148Y88711D01*

-X463717Y88750D01*

-X463502D01*

-Y109250D01*

-X463717D01*

-X464148Y109289D01*

-X464575Y109368D01*

-X464992Y109485D01*

-X465397Y109640D01*

-X465502Y109695D01*

-X465597Y109766D01*

-X465679Y109852D01*

-X465747Y109949D01*

-X465799Y110055D01*

-X465834Y110169D01*

-X465850Y110286D01*

-X465848Y110405D01*

-X465827Y110522D01*

-X465789Y110634D01*

-X465733Y110738D01*

-X465662Y110833D01*

-X465576Y110915D01*

-X465479Y110983D01*

-X465373Y111035D01*

-X465259Y111070D01*

-X465142Y111086D01*

-X465023Y111084D01*

-X464906Y111064D01*

-X464795Y111023D01*

-X464520Y110914D01*

-X464235Y110834D01*

-X463943Y110780D01*

-X463648Y110753D01*

-X463502D01*

-Y117247D01*

-X463648D01*

-X463943Y117220D01*

-X464235Y117166D01*

-X464520Y117086D01*

-X464797Y116980D01*

-X464907Y116940D01*

-X465024Y116919D01*

-X465142Y116917D01*

-X465259Y116933D01*

-X465371Y116968D01*

-X465478Y117020D01*

-X465574Y117087D01*

-X465659Y117169D01*

-X465730Y117263D01*

-X465786Y117368D01*

-X465824Y117479D01*

-X465845Y117596D01*

-X465847Y117714D01*

-X465830Y117830D01*

-X465796Y117943D01*

-X465744Y118050D01*

-X465677Y118146D01*

-X465595Y118231D01*

-X465500Y118302D01*

-X465395Y118356D01*

-X464992Y118515D01*

-X464575Y118632D01*

-X464148Y118711D01*

-X463717Y118750D01*

-X463502D01*

-Y139250D01*

-X463717D01*

-X464148Y139289D01*

-X464575Y139368D01*

-X464992Y139485D01*

-X465397Y139640D01*

-X465502Y139695D01*

-X465597Y139766D01*

-X465679Y139852D01*

-X465747Y139949D01*

-X465799Y140055D01*

-X465834Y140169D01*

-X465850Y140286D01*

-X465848Y140405D01*

-X465827Y140522D01*

-X465789Y140634D01*

-X465733Y140738D01*

-X465662Y140833D01*

-X465576Y140915D01*

-X465479Y140983D01*

-X465373Y141035D01*

-X465259Y141070D01*

-X465142Y141086D01*

-X465023Y141084D01*

-X464906Y141064D01*

-X464795Y141023D01*

-X464520Y140914D01*

-X464235Y140834D01*

-X463943Y140780D01*

-X463648Y140753D01*

-X463502D01*

-Y147247D01*

-X463648D01*

-X463943Y147220D01*

-X464235Y147166D01*

-X464520Y147086D01*

-X464797Y146980D01*

-X464907Y146940D01*

-X465024Y146919D01*

-X465142Y146917D01*

-X465259Y146933D01*

-X465371Y146968D01*

-X465478Y147020D01*

-X465574Y147087D01*

-X465659Y147169D01*

-X465730Y147263D01*

-X465786Y147368D01*

-X465824Y147479D01*

-X465845Y147596D01*

-X465847Y147714D01*

-X465830Y147830D01*

-X465796Y147943D01*

-X465744Y148050D01*

-X465677Y148146D01*

-X465595Y148231D01*

-X465500Y148302D01*

-X465395Y148356D01*

-X464992Y148515D01*

-X464575Y148632D01*

-X464148Y148711D01*

-X463717Y148750D01*

-X463502D01*

-Y169250D01*

-X463717D01*

-X464148Y169289D01*

-X464575Y169368D01*

-X464992Y169485D01*

-X465397Y169640D01*

-X465502Y169695D01*

-X465597Y169766D01*

-X465679Y169852D01*

-X465747Y169949D01*

-X465799Y170055D01*

-X465834Y170169D01*

-X465850Y170286D01*

-X465848Y170405D01*

-X465827Y170522D01*

-X465789Y170634D01*

-X465733Y170738D01*

-X465662Y170833D01*

-X465576Y170915D01*

-X465479Y170983D01*

-X465373Y171035D01*

-X465259Y171070D01*

-X465142Y171086D01*

-X465023Y171084D01*

-X464906Y171064D01*

-X464795Y171023D01*

-X464520Y170914D01*

-X464235Y170834D01*

-X463943Y170780D01*

-X463648Y170753D01*

-X463502D01*

-Y177247D01*

-X463648D01*

-X463943Y177220D01*

-X464235Y177166D01*

-X464520Y177086D01*

-X464797Y176980D01*

-X464907Y176940D01*

-X465024Y176919D01*

-X465142Y176917D01*

-X465259Y176933D01*

-X465371Y176968D01*

-X465478Y177020D01*

-X465574Y177087D01*

-X465659Y177169D01*

-X465730Y177263D01*

-X465786Y177368D01*

-X465824Y177479D01*

-X465845Y177596D01*

-X465847Y177714D01*

-X465830Y177830D01*

-X465796Y177943D01*

-X465744Y178050D01*

-X465677Y178146D01*

-X465595Y178231D01*

-X465500Y178302D01*

-X465395Y178356D01*

-X464992Y178515D01*

-X464575Y178632D01*

-X464148Y178711D01*

-X463717Y178750D01*

-X463502D01*

-Y199250D01*

-X463717D01*

-X464148Y199289D01*

-X464575Y199368D01*

-X464992Y199485D01*

-X465397Y199640D01*

-X465502Y199695D01*

-X465597Y199766D01*

-X465679Y199852D01*

-X465747Y199949D01*

-X465799Y200055D01*

-X465834Y200169D01*

-X465850Y200286D01*

-X465848Y200405D01*

-X465827Y200522D01*

-X465789Y200634D01*

-X465733Y200738D01*

-X465662Y200833D01*

-X465576Y200915D01*

-X465479Y200983D01*

-X465373Y201035D01*

-X465259Y201070D01*

-X465142Y201086D01*

-X465023Y201084D01*

-X464906Y201064D01*

-X464795Y201023D01*

-X464520Y200914D01*

-X464235Y200834D01*

-X463943Y200780D01*

-X463648Y200753D01*

-X463502D01*

-Y207247D01*

-X463648D01*

-X463943Y207220D01*

-X464235Y207166D01*

-X464520Y207086D01*

-X464797Y206980D01*

-X464907Y206940D01*

-X465024Y206919D01*

-X465142Y206917D01*

-X465259Y206933D01*

-X465371Y206968D01*

-X465478Y207020D01*

-X465574Y207087D01*

-X465659Y207169D01*

-X465730Y207263D01*

-X465786Y207368D01*

-X465824Y207479D01*

-X465845Y207596D01*

-X465847Y207714D01*

-X465830Y207830D01*

-X465796Y207943D01*

-X465744Y208050D01*

-X465677Y208146D01*

-X465595Y208231D01*

-X465500Y208302D01*

-X465395Y208356D01*

-X464992Y208515D01*

-X464575Y208632D01*

-X464148Y208711D01*

-X463717Y208750D01*

-X463502D01*

-Y229250D01*

-X463717D01*

-X464148Y229289D01*

-X464575Y229368D01*

-X464992Y229485D01*

-X465397Y229640D01*

-X465502Y229695D01*

-X465597Y229766D01*

-X465679Y229852D01*

-X465747Y229949D01*

-X465799Y230055D01*

-X465834Y230169D01*

-X465850Y230286D01*

-X465848Y230405D01*

-X465827Y230522D01*

-X465789Y230634D01*

-X465733Y230738D01*

-X465662Y230833D01*

-X465576Y230915D01*

-X465479Y230983D01*

-X465373Y231035D01*

-X465259Y231070D01*

-X465142Y231086D01*

-X465023Y231084D01*

-X464906Y231064D01*

-X464795Y231023D01*

-X464520Y230914D01*

-X464235Y230834D01*

-X463943Y230780D01*

-X463648Y230753D01*

-X463502D01*

-Y237247D01*

-X463648D01*

-X463943Y237220D01*

-X464235Y237166D01*

-X464520Y237086D01*

-X464797Y236980D01*

-X464907Y236940D01*

-X465024Y236919D01*

-X465142Y236917D01*

-X465259Y236933D01*

-X465371Y236968D01*

-X465478Y237020D01*

-X465574Y237087D01*

-X465659Y237169D01*

-X465730Y237263D01*

-X465786Y237368D01*

-X465824Y237479D01*

-X465845Y237596D01*

-X465847Y237714D01*

-X465830Y237830D01*

-X465796Y237943D01*

-X465744Y238050D01*

-X465677Y238146D01*

-X465595Y238231D01*

-X465500Y238302D01*

-X465395Y238356D01*

-X464992Y238515D01*

-X464575Y238632D01*

-X464148Y238711D01*

-X463717Y238750D01*

-X463502D01*

-Y259250D01*

-X463717D01*

-X464148Y259289D01*

-X464575Y259368D01*

-X464992Y259485D01*

-X465397Y259640D01*

-X465502Y259695D01*

-X465597Y259766D01*

-X465679Y259852D01*

-X465747Y259949D01*

-X465799Y260055D01*

-X465834Y260169D01*

-X465850Y260286D01*

-X465848Y260405D01*

-X465827Y260522D01*

-X465789Y260634D01*

-X465733Y260738D01*

-X465662Y260833D01*

-X465576Y260915D01*

-X465479Y260983D01*

-X465373Y261035D01*

-X465259Y261070D01*

-X465142Y261086D01*

-X465023Y261084D01*

-X464906Y261064D01*

-X464795Y261023D01*

-X464520Y260914D01*

-X464235Y260834D01*

-X463943Y260780D01*

-X463648Y260753D01*

-X463502D01*

-Y267247D01*

-X463648D01*

-X463943Y267220D01*

-X464235Y267166D01*

-X464520Y267086D01*

-X464797Y266980D01*

-X464907Y266940D01*

-X465024Y266919D01*

-X465142Y266917D01*

-X465259Y266933D01*

-X465371Y266968D01*

-X465478Y267020D01*

-X465574Y267087D01*

-X465659Y267169D01*

-X465730Y267263D01*

-X465786Y267368D01*

-X465824Y267479D01*

-X465845Y267596D01*

-X465847Y267714D01*

-X465830Y267830D01*

-X465796Y267943D01*

-X465744Y268050D01*

-X465677Y268146D01*

-X465595Y268231D01*

-X465500Y268302D01*

-X465395Y268356D01*

-X464992Y268515D01*

-X464575Y268632D01*

-X464148Y268711D01*

-X463717Y268750D01*

-X463502D01*

-Y289250D01*

-X463717D01*

-X464148Y289289D01*

-X464575Y289368D01*

-X464992Y289485D01*

-X465397Y289640D01*

-X465502Y289695D01*

-X465597Y289766D01*

-X465679Y289852D01*

-X465747Y289949D01*

-X465799Y290055D01*

-X465834Y290169D01*

-X465850Y290286D01*

-X465848Y290405D01*

-X465827Y290522D01*

-X465789Y290634D01*

-X465733Y290738D01*

-X465662Y290833D01*

-X465576Y290915D01*

-X465479Y290983D01*

-X465373Y291035D01*

-X465259Y291070D01*

-X465142Y291086D01*

-X465023Y291084D01*

-X464906Y291064D01*

-X464795Y291023D01*

-X464520Y290914D01*

-X464235Y290834D01*

-X463943Y290780D01*

-X463648Y290753D01*

-X463502D01*

-Y297247D01*

-X463648D01*

-X463943Y297220D01*

-X464235Y297166D01*

-X464520Y297086D01*

-X464797Y296980D01*

-X464907Y296940D01*

-X465024Y296919D01*

-X465142Y296917D01*

-X465259Y296933D01*

-X465371Y296968D01*

-X465478Y297020D01*

-X465574Y297087D01*

-X465659Y297169D01*

-X465730Y297263D01*

-X465786Y297368D01*

-X465824Y297479D01*

-X465845Y297596D01*

-X465847Y297714D01*

-X465830Y297830D01*

-X465796Y297943D01*

-X465744Y298050D01*

-X465677Y298146D01*

-X465595Y298231D01*

-X465500Y298302D01*

-X465395Y298356D01*

-X464992Y298515D01*

-X464575Y298632D01*

-X464148Y298711D01*

-X463717Y298750D01*

-X463502D01*

-Y319250D01*

-X463717D01*

-X464148Y319289D01*

-X464575Y319368D01*

-X464992Y319485D01*

-X465397Y319640D01*

-X465502Y319695D01*

-X465597Y319766D01*

-X465679Y319852D01*

-X465747Y319949D01*

-X465799Y320055D01*

-X465834Y320169D01*

-X465850Y320286D01*

-X465848Y320405D01*

-X465827Y320522D01*

-X465789Y320634D01*

-X465733Y320738D01*

-X465662Y320833D01*

-X465576Y320915D01*

-X465479Y320983D01*

-X465373Y321035D01*

-X465259Y321070D01*

-X465142Y321086D01*

-X465023Y321084D01*

-X464906Y321064D01*

-X464795Y321023D01*

-X464520Y320914D01*

-X464235Y320834D01*

-X463943Y320780D01*

-X463648Y320753D01*

-X463502D01*

-Y327247D01*

-X463648D01*

-X463943Y327220D01*

-X464235Y327166D01*

-X464520Y327086D01*

-X464797Y326980D01*

-X464907Y326940D01*

-X465024Y326919D01*

-X465142Y326917D01*

-X465259Y326933D01*

-X465371Y326968D01*

-X465478Y327020D01*

-X465574Y327087D01*

-X465659Y327169D01*

-X465730Y327263D01*

-X465786Y327368D01*

-X465824Y327479D01*

-X465845Y327596D01*

-X465847Y327714D01*

-X465830Y327830D01*

-X465796Y327943D01*

-X465744Y328050D01*

-X465677Y328146D01*

-X465595Y328231D01*

-X465500Y328302D01*

-X465395Y328356D01*

-X464992Y328515D01*

-X464575Y328632D01*

-X464148Y328711D01*

-X463717Y328750D01*

-X463502D01*

-Y349250D01*

-X463717D01*

-X464148Y349289D01*

-X464575Y349368D01*

-X464992Y349485D01*

-X465397Y349640D01*

-X465502Y349695D01*

-X465597Y349766D01*

-X465679Y349852D01*

-X465747Y349949D01*

-X465799Y350055D01*

-X465834Y350169D01*

-X465850Y350286D01*

-X465848Y350405D01*

-X465827Y350522D01*

-X465789Y350634D01*

-X465733Y350738D01*

-X465662Y350833D01*

-X465576Y350915D01*

-X465479Y350983D01*

-X465373Y351035D01*

-X465259Y351070D01*

-X465142Y351086D01*

-X465023Y351084D01*

-X464906Y351064D01*

-X464795Y351023D01*

-X464520Y350914D01*

-X464235Y350834D01*

-X463943Y350780D01*

-X463648Y350753D01*

-X463502D01*

-Y357247D01*

-X463648D01*

-X463943Y357220D01*

-X464235Y357166D01*

-X464520Y357086D01*

-X464797Y356980D01*

-X464907Y356940D01*

-X465024Y356919D01*

-X465142Y356917D01*

-X465259Y356933D01*

-X465371Y356968D01*

-X465478Y357020D01*

-X465574Y357087D01*

-X465659Y357169D01*

-X465730Y357263D01*

-X465786Y357368D01*

-X465824Y357479D01*

-X465845Y357596D01*

-X465847Y357714D01*

-X465830Y357830D01*

-X465796Y357943D01*

-X465744Y358050D01*

-X465677Y358146D01*

-X465595Y358231D01*

-X465500Y358302D01*

-X465395Y358356D01*

-X464992Y358515D01*

-X464575Y358632D01*

-X464148Y358711D01*

-X463717Y358750D01*

-X463502D01*

-Y379250D01*

-X463717D01*

-X464148Y379289D01*

-X464575Y379368D01*

-X464992Y379485D01*

-X465397Y379640D01*

-X465502Y379695D01*

-X465597Y379766D01*

-X465679Y379852D01*

-X465747Y379949D01*

-X465799Y380055D01*

-X465834Y380169D01*

-X465850Y380286D01*

-X465848Y380405D01*

-X465827Y380522D01*

-X465789Y380634D01*

-X465733Y380738D01*

-X465662Y380833D01*

-X465576Y380915D01*

-X465479Y380983D01*

-X465373Y381035D01*

-X465259Y381070D01*

-X465142Y381086D01*

-X465023Y381084D01*

-X464906Y381064D01*

-X464795Y381023D01*

-X464520Y380914D01*

-X464235Y380834D01*

-X463943Y380780D01*

-X463648Y380753D01*

-X463502D01*

-Y387247D01*

-X463648D01*

-X463943Y387220D01*

-X464235Y387166D01*

-X464520Y387086D01*

-X464797Y386980D01*

-X464907Y386940D01*

-X465024Y386919D01*

-X465142Y386917D01*

-X465259Y386933D01*

-X465371Y386968D01*

-X465478Y387020D01*

-X465574Y387087D01*

-X465659Y387169D01*

-X465730Y387263D01*

-X465786Y387368D01*

-X465824Y387479D01*

-X465845Y387596D01*

-X465847Y387714D01*

-X465830Y387830D01*

-X465796Y387943D01*

-X465744Y388050D01*

-X465677Y388146D01*

-X465595Y388231D01*

-X465500Y388302D01*

-X465395Y388356D01*

-X464992Y388515D01*

-X464575Y388632D01*

-X464148Y388711D01*

-X463717Y388750D01*

-X463502D01*

-Y397000D01*

-X467332D01*

-Y386334D01*

-X467331Y386334D01*

-X467214Y386350D01*

-X467095Y386348D01*

-X466978Y386327D01*

-X466866Y386289D01*

-X466762Y386233D01*

-X466667Y386162D01*

-X466585Y386076D01*

-X466517Y385979D01*

-X466465Y385873D01*

-X466430Y385759D01*

-X466414Y385642D01*

-X466416Y385523D01*

-X466436Y385407D01*

-X466477Y385295D01*

-X466586Y385020D01*

-X466666Y384735D01*

-X466720Y384443D01*

-X466747Y384148D01*

-Y383852D01*

-X466720Y383557D01*

-X466666Y383265D01*

-X466586Y382980D01*

-X466480Y382703D01*

-X466440Y382593D01*

-X466419Y382476D01*

-X466417Y382358D01*

-X466433Y382241D01*

-X466468Y382129D01*

-X466520Y382022D01*

-X466587Y381926D01*

-X466669Y381841D01*

-X466763Y381770D01*

-X466868Y381714D01*

-X466979Y381676D01*

-X467096Y381655D01*

-X467214Y381653D01*

-X467330Y381670D01*

-X467332Y381670D01*

-Y356334D01*

-X467331Y356334D01*

-X467214Y356350D01*

-X467095Y356348D01*

-X466978Y356327D01*

-X466866Y356289D01*

-X466762Y356233D01*

-X466667Y356162D01*

-X466585Y356076D01*

-X466517Y355979D01*

-X466465Y355873D01*

-X466430Y355759D01*

-X466414Y355642D01*

-X466416Y355523D01*

-X466436Y355407D01*

-X466477Y355295D01*

-X466586Y355020D01*

-X466666Y354735D01*

-X466720Y354443D01*

-X466747Y354148D01*

-Y353852D01*

-X466720Y353557D01*

-X466666Y353265D01*

-X466586Y352980D01*

-X466480Y352703D01*

-X466440Y352593D01*

-X466419Y352476D01*

-X466417Y352358D01*

-X466433Y352241D01*

-X466468Y352129D01*

-X466520Y352022D01*

-X466587Y351926D01*

-X466669Y351841D01*

-X466763Y351770D01*

-X466868Y351714D01*

-X466979Y351676D01*

-X467096Y351655D01*

-X467214Y351653D01*

-X467330Y351670D01*

-X467332Y351670D01*

-Y326334D01*

-X467331Y326334D01*

-X467214Y326350D01*

-X467095Y326348D01*

-X466978Y326327D01*

-X466866Y326289D01*

-X466762Y326233D01*

-X466667Y326162D01*

-X466585Y326076D01*

-X466517Y325979D01*

-X466465Y325873D01*

-X466430Y325759D01*

-X466414Y325642D01*

-X466416Y325523D01*

-X466436Y325407D01*

-X466477Y325295D01*

-X466586Y325020D01*

-X466666Y324735D01*

-X466720Y324443D01*

-X466747Y324148D01*

-Y323852D01*

-X466720Y323557D01*

-X466666Y323265D01*

-X466586Y322980D01*

-X466480Y322703D01*

-X466440Y322593D01*

-X466419Y322476D01*

-X466417Y322358D01*

-X466433Y322241D01*

-X466468Y322129D01*

-X466520Y322022D01*

-X466587Y321926D01*

-X466669Y321841D01*

-X466763Y321770D01*

-X466868Y321714D01*

-X466979Y321676D01*

-X467096Y321655D01*

-X467214Y321653D01*

-X467330Y321670D01*

-X467332Y321670D01*

-Y296334D01*

-X467331Y296334D01*

-X467214Y296350D01*

-X467095Y296348D01*

-X466978Y296327D01*

-X466866Y296289D01*

-X466762Y296233D01*

-X466667Y296162D01*

-X466585Y296076D01*

-X466517Y295979D01*

-X466465Y295873D01*

-X466430Y295759D01*

-X466414Y295642D01*

-X466416Y295523D01*

-X466436Y295407D01*

-X466477Y295295D01*

-X466586Y295020D01*

-X466666Y294735D01*

-X466720Y294443D01*

-X466747Y294148D01*

-Y293852D01*

-X466720Y293557D01*

-X466666Y293265D01*

-X466586Y292980D01*

-X466480Y292703D01*

-X466440Y292593D01*

-X466419Y292476D01*

-X466417Y292358D01*

-X466433Y292241D01*

-X466468Y292129D01*

-X466520Y292022D01*

-X466587Y291926D01*

-X466669Y291841D01*

-X466763Y291770D01*

-X466868Y291714D01*

-X466979Y291676D01*

-X467096Y291655D01*

-X467214Y291653D01*

-X467330Y291670D01*

-X467332Y291670D01*

-Y266334D01*

-X467331Y266334D01*

-X467214Y266350D01*

-X467095Y266348D01*

-X466978Y266327D01*

-X466866Y266289D01*

-X466762Y266233D01*

-X466667Y266162D01*

-X466585Y266076D01*

-X466517Y265979D01*

-X466465Y265873D01*

-X466430Y265759D01*

-X466414Y265642D01*

-X466416Y265523D01*

-X466436Y265407D01*

-X466477Y265295D01*

-X466586Y265020D01*

-X466666Y264735D01*

-X466720Y264443D01*

-X466747Y264148D01*

-Y263852D01*

-X466720Y263557D01*

-X466666Y263265D01*

-X466586Y262980D01*

-X466480Y262703D01*

-X466440Y262593D01*

-X466419Y262476D01*

-X466417Y262358D01*

-X466433Y262241D01*

-X466468Y262129D01*

-X466520Y262022D01*

-X466587Y261926D01*

-X466669Y261841D01*

-X466763Y261770D01*

-X466868Y261714D01*

-X466979Y261676D01*

-X467096Y261655D01*

-X467214Y261653D01*

-X467330Y261670D01*

-X467332Y261670D01*

-Y236334D01*

-X467331Y236334D01*

-X467214Y236350D01*

-X467095Y236348D01*

-X466978Y236327D01*

-X466866Y236289D01*

-X466762Y236233D01*

-X466667Y236162D01*

-X466585Y236076D01*

-X466517Y235979D01*

-X466465Y235873D01*

-X466430Y235759D01*

-X466414Y235642D01*

-X466416Y235523D01*

-X466436Y235407D01*

-X466477Y235295D01*

-X466586Y235020D01*

-X466666Y234735D01*

-X466720Y234443D01*

-X466747Y234148D01*

-Y233852D01*

-X466720Y233557D01*

-X466666Y233265D01*

-X466586Y232980D01*

-X466480Y232703D01*

-X466440Y232593D01*

-X466419Y232476D01*

-X466417Y232358D01*

-X466433Y232241D01*

-X466468Y232129D01*

-X466520Y232022D01*

-X466587Y231926D01*

-X466669Y231841D01*

-X466763Y231770D01*

-X466868Y231714D01*

-X466979Y231676D01*

-X467096Y231655D01*

-X467214Y231653D01*

-X467330Y231670D01*

-X467332Y231670D01*

-Y206334D01*

-X467331Y206334D01*

-X467214Y206350D01*

-X467095Y206348D01*

-X466978Y206327D01*

-X466866Y206289D01*

-X466762Y206233D01*

-X466667Y206162D01*

-X466585Y206076D01*

-X466517Y205979D01*

-X466465Y205873D01*

-X466430Y205759D01*

-X466414Y205642D01*

-X466416Y205523D01*

-X466436Y205407D01*

-X466477Y205295D01*

-X466586Y205020D01*

-X466666Y204735D01*

-X466720Y204443D01*

-X466747Y204148D01*

-Y203852D01*

-X466720Y203557D01*

-X466666Y203265D01*

-X466586Y202980D01*

-X466480Y202703D01*

-X466440Y202593D01*

-X466419Y202476D01*

-X466417Y202358D01*

-X466433Y202241D01*

-X466468Y202129D01*

-X466520Y202022D01*

-X466587Y201926D01*

-X466669Y201841D01*

-X466763Y201770D01*

-X466868Y201714D01*

-X466979Y201676D01*

-X467096Y201655D01*

-X467214Y201653D01*

-X467330Y201670D01*

-X467332Y201670D01*

-Y176334D01*

-X467331Y176334D01*

-X467214Y176350D01*

-X467095Y176348D01*

-X466978Y176327D01*

-X466866Y176289D01*

-X466762Y176233D01*

-X466667Y176162D01*

-X466585Y176076D01*

-X466517Y175979D01*

-X466465Y175873D01*

-X466430Y175759D01*

-X466414Y175642D01*

-X466416Y175523D01*

-X466436Y175407D01*

-X466477Y175295D01*

-X466586Y175020D01*

-X466666Y174735D01*

-X466720Y174443D01*

-X466747Y174148D01*

-Y173852D01*

-X466720Y173557D01*

-X466666Y173265D01*

-X466586Y172980D01*

-X466480Y172703D01*

-X466440Y172593D01*

-X466419Y172476D01*

-X466417Y172358D01*

-X466433Y172241D01*

-X466468Y172129D01*

-X466520Y172022D01*

-X466587Y171926D01*

-X466669Y171841D01*

-X466763Y171770D01*

-X466868Y171714D01*

-X466979Y171676D01*

-X467096Y171655D01*

-X467214Y171653D01*

-X467330Y171670D01*

-X467332Y171670D01*

-Y146334D01*

-X467331Y146334D01*

-X467214Y146350D01*

-X467095Y146348D01*

-X466978Y146327D01*

-X466866Y146289D01*

-X466762Y146233D01*

-X466667Y146162D01*

-X466585Y146076D01*

-X466517Y145979D01*

-X466465Y145873D01*

-X466430Y145759D01*

-X466414Y145642D01*

-X466416Y145523D01*

-X466436Y145407D01*

-X466477Y145295D01*

-X466586Y145020D01*

-X466666Y144735D01*

-X466720Y144443D01*

-X466747Y144148D01*

-Y143852D01*

-X466720Y143557D01*

-X466666Y143265D01*

-X466586Y142980D01*

-X466480Y142703D01*

-X466440Y142593D01*

-X466419Y142476D01*

-X466417Y142358D01*

-X466433Y142241D01*

-X466468Y142129D01*

-X466520Y142022D01*

-X466587Y141926D01*

-X466669Y141841D01*

-X466763Y141770D01*

-X466868Y141714D01*

-X466979Y141676D01*

-X467096Y141655D01*

-X467214Y141653D01*

-X467330Y141670D01*

-X467332Y141670D01*

-Y116334D01*

-X467331Y116334D01*

-X467214Y116350D01*

-X467095Y116348D01*

-X466978Y116327D01*

-X466866Y116289D01*

-X466762Y116233D01*

-X466667Y116162D01*

-X466585Y116076D01*

-X466517Y115979D01*

-X466465Y115873D01*

-X466430Y115759D01*

-X466414Y115642D01*

-X466416Y115523D01*

-X466436Y115407D01*

-X466477Y115295D01*

-X466586Y115020D01*

-X466666Y114735D01*

-X466720Y114443D01*

-X466747Y114148D01*

-Y113852D01*

-X466720Y113557D01*

-X466666Y113265D01*

-X466586Y112980D01*

-X466480Y112703D01*

-X466440Y112593D01*

-X466419Y112476D01*

-X466417Y112358D01*

-X466433Y112241D01*

-X466468Y112129D01*

-X466520Y112022D01*

-X466587Y111926D01*

-X466669Y111841D01*

-X466763Y111770D01*

-X466868Y111714D01*

-X466979Y111676D01*

-X467096Y111655D01*

-X467214Y111653D01*

-X467330Y111670D01*

-X467332Y111670D01*

-Y86334D01*

-X467331Y86334D01*

-X467214Y86350D01*

-X467095Y86348D01*

-X466978Y86327D01*

-X466866Y86289D01*

-X466762Y86233D01*

-X466667Y86162D01*

-X466585Y86076D01*

-X466517Y85979D01*

-X466465Y85873D01*

-X466430Y85759D01*

-X466414Y85642D01*

-X466416Y85523D01*

-X466436Y85407D01*

-X466477Y85295D01*

-X466586Y85020D01*

-X466666Y84735D01*

-X466720Y84443D01*

-X466747Y84148D01*

-Y83852D01*

-X466720Y83557D01*

-X466666Y83265D01*

-X466586Y82980D01*

-X466480Y82703D01*

-X466440Y82593D01*

-X466419Y82476D01*

-X466417Y82358D01*

-X466433Y82241D01*

-X466468Y82129D01*

-X466520Y82022D01*

-X466587Y81926D01*

-X466669Y81841D01*

-X466763Y81770D01*

-X466868Y81714D01*

-X466979Y81676D01*

-X467096Y81655D01*

-X467214Y81653D01*

-X467330Y81670D01*

-X467332Y81670D01*

-Y56334D01*

-X467331Y56334D01*

-X467214Y56350D01*

-X467095Y56348D01*

-X466978Y56327D01*

-X466866Y56289D01*

-X466762Y56233D01*

-X466667Y56162D01*

-X466585Y56076D01*

-X466517Y55979D01*

-X466465Y55873D01*

-X466430Y55759D01*

-X466414Y55642D01*

-X466416Y55523D01*

-X466436Y55407D01*

-X466477Y55295D01*

-X466586Y55020D01*

-X466666Y54735D01*

-X466720Y54443D01*

-X466747Y54148D01*

-Y53852D01*

-X466720Y53557D01*

-X466666Y53265D01*

-X466586Y52980D01*

-X466480Y52703D01*

-X466440Y52593D01*

-X466419Y52476D01*

-X466417Y52358D01*

-X466433Y52241D01*

-X466468Y52129D01*

-X466520Y52022D01*

-X466587Y51926D01*

-X466669Y51841D01*

-X466763Y51770D01*

-X466868Y51714D01*

-X466979Y51676D01*

-X467096Y51655D01*

-X467214Y51653D01*

-X467330Y51670D01*

-X467332Y51670D01*

-Y39000D01*

-G37*

-G36*

-X463502D02*X459668D01*

-Y51666D01*

-X459669Y51666D01*

-X459786Y51650D01*

-X459905Y51652D01*

-X460022Y51673D01*

-X460134Y51711D01*

-X460238Y51767D01*

-X460333Y51838D01*

-X460415Y51924D01*

-X460483Y52021D01*

-X460535Y52127D01*

-X460570Y52241D01*

-X460586Y52358D01*

-X460584Y52477D01*

-X460564Y52593D01*

-X460523Y52705D01*

-X460414Y52980D01*

-X460334Y53265D01*

-X460280Y53557D01*

-X460253Y53852D01*

-Y54148D01*

-X460280Y54443D01*

-X460334Y54735D01*

-X460414Y55020D01*

-X460520Y55297D01*

-X460560Y55407D01*

-X460581Y55524D01*

-X460583Y55642D01*

-X460567Y55759D01*

-X460532Y55871D01*

-X460480Y55978D01*

-X460413Y56074D01*

-X460331Y56159D01*

-X460237Y56230D01*

-X460132Y56286D01*

-X460021Y56324D01*

-X459904Y56345D01*

-X459786Y56347D01*

-X459670Y56330D01*

-X459668Y56330D01*

-Y81666D01*

-X459669Y81666D01*

-X459786Y81650D01*

-X459905Y81652D01*

-X460022Y81673D01*

-X460134Y81711D01*

-X460238Y81767D01*

-X460333Y81838D01*

-X460415Y81924D01*

-X460483Y82021D01*

-X460535Y82127D01*

-X460570Y82241D01*

-X460586Y82358D01*

-X460584Y82477D01*

-X460564Y82594D01*

-X460523Y82705D01*

-X460414Y82980D01*

-X460334Y83265D01*

-X460280Y83557D01*

-X460253Y83852D01*

-Y84148D01*

-X460280Y84443D01*

-X460334Y84735D01*

-X460414Y85020D01*

-X460520Y85297D01*

-X460560Y85407D01*

-X460581Y85524D01*

-X460583Y85642D01*

-X460567Y85759D01*

-X460532Y85871D01*

-X460480Y85978D01*

-X460413Y86074D01*

-X460331Y86159D01*

-X460237Y86230D01*

-X460132Y86286D01*

-X460021Y86324D01*

-X459904Y86345D01*

-X459786Y86347D01*

-X459670Y86330D01*

-X459668Y86330D01*

-Y111666D01*

-X459669Y111666D01*

-X459786Y111650D01*

-X459905Y111652D01*

-X460022Y111673D01*

-X460134Y111711D01*

-X460238Y111767D01*

-X460333Y111838D01*

-X460415Y111924D01*

-X460483Y112021D01*

-X460535Y112127D01*

-X460570Y112241D01*

-X460586Y112358D01*

-X460584Y112477D01*

-X460564Y112594D01*

-X460523Y112705D01*

-X460414Y112980D01*

-X460334Y113265D01*

-X460280Y113557D01*

-X460253Y113852D01*

-Y114148D01*

-X460280Y114443D01*

-X460334Y114735D01*

-X460414Y115020D01*

-X460520Y115297D01*

-X460560Y115407D01*

-X460581Y115524D01*

-X460583Y115642D01*

-X460567Y115759D01*

-X460532Y115871D01*

-X460480Y115978D01*

-X460413Y116074D01*

-X460331Y116159D01*

-X460237Y116230D01*

-X460132Y116286D01*

-X460021Y116324D01*

-X459904Y116345D01*

-X459786Y116347D01*

-X459670Y116330D01*

-X459668Y116330D01*

-Y141666D01*

-X459669Y141666D01*

-X459786Y141650D01*

-X459905Y141652D01*

-X460022Y141673D01*

-X460134Y141711D01*

-X460238Y141767D01*

-X460333Y141838D01*

-X460415Y141924D01*

-X460483Y142021D01*

-X460535Y142127D01*

-X460570Y142241D01*

-X460586Y142358D01*

-X460584Y142477D01*

-X460564Y142594D01*

-X460523Y142705D01*

-X460414Y142980D01*

-X460334Y143265D01*

-X460280Y143557D01*

-X460253Y143852D01*

-Y144148D01*

-X460280Y144443D01*

-X460334Y144735D01*

-X460414Y145020D01*

-X460520Y145297D01*

-X460560Y145407D01*

-X460581Y145524D01*

-X460583Y145642D01*

-X460567Y145759D01*

-X460532Y145871D01*

-X460480Y145978D01*

-X460413Y146074D01*

-X460331Y146159D01*

-X460237Y146230D01*

-X460132Y146286D01*

-X460021Y146324D01*

-X459904Y146345D01*

-X459786Y146347D01*

-X459670Y146330D01*

-X459668Y146330D01*

-Y161478D01*

-X459716Y161497D01*

-X460092Y161728D01*

-X460427Y162014D01*

-X460713Y162349D01*

-X460944Y162725D01*

-X461112Y163132D01*

-X461215Y163561D01*

-X461241Y164000D01*

-X461215Y164439D01*

-X461112Y164868D01*

-X460944Y165275D01*

-X460713Y165651D01*

-X460427Y165986D01*

-X460092Y166272D01*

-X459716Y166503D01*

-X459668Y166522D01*

-Y171666D01*

-X459669Y171666D01*

-X459786Y171650D01*

-X459905Y171652D01*

-X460022Y171673D01*

-X460134Y171711D01*

-X460238Y171767D01*

-X460333Y171838D01*

-X460415Y171924D01*

-X460483Y172021D01*

-X460535Y172127D01*

-X460570Y172241D01*

-X460586Y172358D01*

-X460584Y172477D01*

-X460564Y172594D01*

-X460523Y172705D01*

-X460414Y172980D01*

-X460334Y173265D01*

-X460280Y173557D01*

-X460253Y173852D01*

-Y174148D01*

-X460280Y174443D01*

-X460334Y174735D01*

-X460414Y175020D01*

-X460520Y175297D01*

-X460560Y175407D01*

-X460581Y175524D01*

-X460583Y175642D01*

-X460567Y175759D01*

-X460532Y175871D01*

-X460480Y175978D01*

-X460413Y176074D01*

-X460331Y176159D01*

-X460237Y176230D01*

-X460132Y176286D01*

-X460021Y176324D01*

-X459904Y176345D01*

-X459786Y176347D01*

-X459670Y176330D01*

-X459668Y176330D01*

-Y192478D01*

-X459716Y192497D01*

-X460092Y192728D01*

-X460427Y193014D01*

-X460713Y193349D01*

-X460944Y193725D01*

-X461112Y194132D01*

-X461215Y194561D01*

-X461241Y195000D01*

-X461215Y195439D01*

-X461112Y195868D01*

-X460944Y196275D01*

-X460713Y196651D01*

-X460427Y196986D01*

-X460092Y197272D01*

-X459716Y197503D01*

-X459668Y197522D01*

-Y201666D01*

-X459669Y201666D01*

-X459786Y201650D01*

-X459905Y201652D01*

-X460022Y201673D01*

-X460134Y201711D01*

-X460238Y201767D01*

-X460333Y201838D01*

-X460415Y201924D01*

-X460483Y202021D01*

-X460535Y202127D01*

-X460570Y202241D01*

-X460586Y202358D01*

-X460584Y202477D01*

-X460564Y202594D01*

-X460523Y202705D01*

-X460414Y202980D01*

-X460334Y203265D01*

-X460280Y203557D01*

-X460253Y203852D01*

-Y204148D01*

-X460280Y204443D01*

-X460334Y204735D01*

-X460414Y205020D01*

-X460520Y205297D01*

-X460560Y205407D01*

-X460581Y205524D01*

-X460583Y205642D01*

-X460567Y205759D01*

-X460532Y205871D01*

-X460480Y205978D01*

-X460413Y206074D01*

-X460331Y206159D01*

-X460237Y206230D01*

-X460132Y206286D01*

-X460021Y206324D01*

-X459904Y206345D01*

-X459786Y206347D01*

-X459670Y206330D01*

-X459668Y206330D01*

-Y222478D01*

-X459716Y222497D01*

-X460092Y222728D01*

-X460427Y223014D01*

-X460713Y223349D01*

-X460944Y223725D01*

-X461112Y224132D01*

-X461215Y224561D01*

-X461241Y225000D01*

-X461215Y225439D01*

-X461112Y225868D01*

-X460944Y226275D01*

-X460713Y226651D01*

-X460427Y226986D01*

-X460092Y227272D01*

-X459716Y227503D01*

-X459668Y227522D01*

-Y231666D01*

-X459669Y231666D01*

-X459786Y231650D01*

-X459905Y231652D01*

-X460022Y231673D01*

-X460134Y231711D01*

-X460238Y231767D01*

-X460333Y231838D01*

-X460415Y231924D01*

-X460483Y232021D01*

-X460535Y232127D01*

-X460570Y232241D01*

-X460586Y232358D01*

-X460584Y232477D01*

-X460564Y232594D01*

-X460523Y232705D01*

-X460414Y232980D01*

-X460334Y233265D01*

-X460280Y233557D01*

-X460253Y233852D01*

-Y234148D01*

-X460280Y234443D01*

-X460334Y234735D01*

-X460414Y235020D01*

-X460520Y235297D01*

-X460560Y235407D01*

-X460581Y235524D01*

-X460583Y235642D01*

-X460567Y235759D01*

-X460532Y235871D01*

-X460480Y235978D01*

-X460413Y236074D01*

-X460331Y236159D01*

-X460237Y236230D01*

-X460132Y236286D01*

-X460021Y236324D01*

-X459904Y236345D01*

-X459786Y236347D01*

-X459670Y236330D01*

-X459668Y236330D01*

-Y251478D01*

-X459716Y251497D01*

-X460092Y251728D01*

-X460427Y252014D01*

-X460713Y252349D01*

-X460944Y252725D01*

-X461112Y253132D01*

-X461215Y253561D01*

-X461241Y254000D01*

-X461215Y254439D01*

-X461112Y254868D01*

-X460944Y255275D01*

-X460713Y255651D01*

-X460427Y255986D01*

-X460092Y256272D01*

-X459716Y256503D01*

-X459668Y256522D01*

-Y261666D01*

-X459669Y261666D01*

-X459786Y261650D01*

-X459905Y261652D01*

-X460022Y261673D01*

-X460134Y261711D01*

-X460238Y261767D01*

-X460333Y261838D01*

-X460415Y261924D01*

-X460483Y262021D01*

-X460535Y262127D01*

-X460570Y262241D01*

-X460586Y262358D01*

-X460584Y262477D01*

-X460564Y262594D01*

-X460523Y262705D01*

-X460414Y262980D01*

-X460334Y263265D01*

-X460280Y263557D01*

-X460253Y263852D01*

-Y264148D01*

-X460280Y264443D01*

-X460334Y264735D01*

-X460414Y265020D01*

-X460520Y265297D01*

-X460560Y265407D01*

-X460581Y265524D01*

-X460583Y265642D01*

-X460567Y265759D01*

-X460532Y265871D01*

-X460480Y265978D01*

-X460413Y266074D01*

-X460331Y266159D01*

-X460237Y266230D01*

-X460132Y266286D01*

-X460021Y266324D01*

-X459904Y266345D01*

-X459786Y266347D01*

-X459670Y266330D01*

-X459668Y266330D01*

-Y282478D01*

-X459716Y282497D01*

-X460092Y282728D01*

-X460427Y283014D01*

-X460713Y283349D01*

-X460944Y283725D01*

-X461112Y284132D01*

-X461215Y284561D01*

-X461241Y285000D01*

-X461215Y285439D01*

-X461112Y285868D01*

-X460944Y286275D01*

-X460713Y286651D01*

-X460427Y286986D01*

-X460092Y287272D01*

-X459716Y287503D01*

-X459668Y287522D01*

-Y291666D01*

-X459669Y291666D01*

-X459786Y291650D01*

-X459905Y291652D01*

-X460022Y291673D01*

-X460134Y291711D01*

-X460238Y291767D01*

-X460333Y291838D01*

-X460415Y291924D01*

-X460483Y292021D01*

-X460535Y292127D01*

-X460570Y292241D01*

-X460586Y292358D01*

-X460584Y292477D01*

-X460564Y292594D01*

-X460523Y292705D01*

-X460414Y292980D01*

-X460334Y293265D01*

-X460280Y293557D01*

-X460253Y293852D01*

-Y294148D01*

-X460280Y294443D01*

-X460334Y294735D01*

-X460414Y295020D01*

-X460520Y295297D01*

-X460560Y295407D01*

-X460581Y295524D01*

-X460583Y295642D01*

-X460567Y295759D01*

-X460532Y295871D01*

-X460480Y295978D01*

-X460413Y296074D01*

-X460331Y296159D01*

-X460237Y296230D01*

-X460132Y296286D01*

-X460021Y296324D01*

-X459904Y296345D01*

-X459786Y296347D01*

-X459670Y296330D01*

-X459668Y296330D01*

-Y312478D01*

-X459716Y312497D01*

-X460092Y312728D01*

-X460427Y313014D01*

-X460713Y313349D01*

-X460944Y313725D01*

-X461112Y314132D01*

-X461215Y314561D01*

-X461241Y315000D01*

-X461215Y315439D01*

-X461112Y315868D01*

-X460944Y316275D01*

-X460713Y316651D01*

-X460427Y316986D01*

-X460092Y317272D01*

-X459716Y317503D01*

-X459668Y317522D01*

-Y321666D01*

-X459669Y321666D01*

-X459786Y321650D01*

-X459905Y321652D01*

-X460022Y321673D01*

-X460134Y321711D01*

-X460238Y321767D01*

-X460333Y321838D01*

-X460415Y321924D01*

-X460483Y322021D01*

-X460535Y322127D01*

-X460570Y322241D01*

-X460586Y322358D01*

-X460584Y322477D01*

-X460564Y322594D01*

-X460523Y322705D01*

-X460414Y322980D01*

-X460334Y323265D01*

-X460280Y323557D01*

-X460253Y323852D01*

-Y324148D01*

-X460280Y324443D01*

-X460334Y324735D01*

-X460414Y325020D01*

-X460520Y325297D01*

-X460560Y325407D01*

-X460581Y325524D01*

-X460583Y325642D01*

-X460567Y325759D01*

-X460532Y325871D01*

-X460480Y325978D01*

-X460413Y326074D01*

-X460331Y326159D01*

-X460237Y326230D01*

-X460132Y326286D01*

-X460021Y326324D01*

-X459904Y326345D01*

-X459786Y326347D01*

-X459670Y326330D01*

-X459668Y326330D01*

-Y342478D01*

-X459716Y342497D01*

-X460092Y342728D01*

-X460427Y343014D01*

-X460713Y343349D01*

-X460944Y343725D01*

-X461112Y344132D01*

-X461215Y344561D01*

-X461241Y345000D01*

-X461215Y345439D01*

-X461112Y345868D01*

-X460944Y346275D01*

-X460713Y346651D01*

-X460427Y346986D01*

-X460092Y347272D01*

-X459716Y347503D01*

-X459668Y347522D01*

-Y351666D01*

-X459669Y351666D01*

-X459786Y351650D01*

-X459905Y351652D01*

-X460022Y351673D01*

-X460134Y351711D01*

-X460238Y351767D01*

-X460333Y351838D01*

-X460415Y351924D01*

-X460483Y352021D01*

-X460535Y352127D01*

-X460570Y352241D01*

-X460586Y352358D01*

-X460584Y352477D01*

-X460564Y352594D01*

-X460523Y352705D01*

-X460414Y352980D01*

-X460334Y353265D01*

-X460280Y353557D01*

-X460253Y353852D01*

-Y354148D01*

-X460280Y354443D01*

-X460334Y354735D01*

-X460414Y355020D01*

-X460520Y355297D01*

-X460560Y355407D01*

-X460581Y355524D01*

-X460583Y355642D01*

-X460567Y355759D01*

-X460532Y355871D01*

-X460480Y355978D01*

-X460413Y356074D01*

-X460331Y356159D01*

-X460237Y356230D01*

-X460132Y356286D01*

-X460021Y356324D01*

-X459904Y356345D01*

-X459786Y356347D01*

-X459670Y356330D01*

-X459668Y356330D01*

-Y372478D01*

-X459716Y372497D01*

-X460092Y372728D01*

-X460427Y373014D01*

-X460713Y373349D01*

-X460944Y373725D01*

-X461112Y374132D01*

-X461215Y374561D01*

-X461241Y375000D01*

-X461215Y375439D01*

-X461112Y375868D01*

-X460944Y376275D01*

-X460713Y376651D01*

-X460427Y376986D01*

-X460092Y377272D01*

-X459716Y377503D01*

-X459668Y377522D01*

-Y381666D01*

-X459669Y381666D01*

-X459786Y381650D01*

-X459905Y381652D01*

-X460022Y381673D01*

-X460134Y381711D01*

-X460238Y381767D01*

-X460333Y381838D01*

-X460415Y381924D01*

-X460483Y382021D01*

-X460535Y382127D01*

-X460570Y382241D01*

-X460586Y382358D01*

-X460584Y382477D01*

-X460564Y382594D01*

-X460523Y382705D01*

-X460414Y382980D01*

-X460334Y383265D01*

-X460280Y383557D01*

-X460253Y383852D01*

-Y384148D01*

-X460280Y384443D01*

-X460334Y384735D01*

-X460414Y385020D01*

-X460520Y385297D01*

-X460560Y385407D01*

-X460581Y385524D01*

-X460583Y385642D01*

-X460567Y385759D01*

-X460532Y385871D01*

-X460480Y385978D01*

-X460413Y386074D01*

-X460331Y386159D01*

-X460237Y386230D01*

-X460132Y386286D01*

-X460021Y386324D01*

-X459904Y386345D01*

-X459786Y386347D01*

-X459670Y386330D01*

-X459668Y386330D01*

-Y397000D01*

-X463502D01*

-Y388750D01*

-X463283D01*

-X462852Y388711D01*

-X462425Y388632D01*

-X462008Y388515D01*

-X461603Y388360D01*

-X461498Y388305D01*

-X461403Y388234D01*

-X461321Y388148D01*

-X461253Y388051D01*

-X461201Y387945D01*

-X461166Y387831D01*

-X461150Y387714D01*

-X461152Y387595D01*

-X461173Y387478D01*

-X461211Y387366D01*

-X461267Y387262D01*

-X461338Y387167D01*

-X461424Y387085D01*

-X461521Y387017D01*

-X461627Y386965D01*

-X461741Y386930D01*

-X461858Y386914D01*

-X461977Y386916D01*

-X462093Y386936D01*

-X462205Y386977D01*

-X462480Y387086D01*

-X462765Y387166D01*

-X463057Y387220D01*

-X463352Y387247D01*

-X463502D01*

-Y380753D01*

-X463352D01*

-X463057Y380780D01*

-X462765Y380834D01*

-X462480Y380914D01*

-X462203Y381020D01*

-X462093Y381060D01*

-X461976Y381081D01*

-X461858Y381083D01*

-X461741Y381067D01*

-X461629Y381032D01*

-X461522Y380980D01*

-X461426Y380913D01*

-X461341Y380831D01*

-X461270Y380737D01*

-X461214Y380632D01*

-X461176Y380521D01*

-X461155Y380404D01*

-X461153Y380286D01*

-X461170Y380170D01*

-X461204Y380057D01*

-X461256Y379950D01*

-X461323Y379854D01*

-X461405Y379769D01*

-X461500Y379698D01*

-X461605Y379644D01*

-X462008Y379485D01*

-X462425Y379368D01*

-X462852Y379289D01*

-X463283Y379250D01*

-X463502D01*

-Y358750D01*

-X463283D01*

-X462852Y358711D01*

-X462425Y358632D01*

-X462008Y358515D01*

-X461603Y358360D01*

-X461498Y358305D01*

-X461403Y358234D01*

-X461321Y358148D01*

-X461253Y358051D01*

-X461201Y357945D01*

-X461166Y357831D01*

-X461150Y357714D01*

-X461152Y357595D01*

-X461173Y357478D01*

-X461211Y357366D01*

-X461267Y357262D01*

-X461338Y357167D01*

-X461424Y357085D01*

-X461521Y357017D01*

-X461627Y356965D01*

-X461741Y356930D01*

-X461858Y356914D01*

-X461977Y356916D01*

-X462093Y356936D01*

-X462205Y356977D01*

-X462480Y357086D01*

-X462765Y357166D01*

-X463057Y357220D01*

-X463352Y357247D01*

-X463502D01*

-Y350753D01*

-X463352D01*

-X463057Y350780D01*

-X462765Y350834D01*

-X462480Y350914D01*

-X462203Y351020D01*

-X462093Y351060D01*

-X461976Y351081D01*

-X461858Y351083D01*

-X461741Y351067D01*

-X461629Y351032D01*

-X461522Y350980D01*

-X461426Y350913D01*

-X461341Y350831D01*

-X461270Y350737D01*

-X461214Y350632D01*

-X461176Y350521D01*

-X461155Y350404D01*

-X461153Y350286D01*

-X461170Y350170D01*

-X461204Y350057D01*

-X461256Y349950D01*

-X461323Y349854D01*

-X461405Y349769D01*

-X461500Y349698D01*

-X461605Y349644D01*

-X462008Y349485D01*

-X462425Y349368D01*

-X462852Y349289D01*

-X463283Y349250D01*

-X463502D01*

-Y328750D01*

-X463283D01*

-X462852Y328711D01*

-X462425Y328632D01*

-X462008Y328515D01*

-X461603Y328360D01*

-X461498Y328305D01*

-X461403Y328234D01*

-X461321Y328148D01*

-X461253Y328051D01*

-X461201Y327945D01*

-X461166Y327831D01*

-X461150Y327714D01*

-X461152Y327595D01*

-X461173Y327478D01*

-X461211Y327366D01*

-X461267Y327262D01*

-X461338Y327167D01*

-X461424Y327085D01*

-X461521Y327017D01*

-X461627Y326965D01*

-X461741Y326930D01*

-X461858Y326914D01*

-X461977Y326916D01*

-X462093Y326936D01*

-X462205Y326977D01*

-X462480Y327086D01*

-X462765Y327166D01*

-X463057Y327220D01*

-X463352Y327247D01*

-X463502D01*

-Y320753D01*

-X463352D01*

-X463057Y320780D01*

-X462765Y320834D01*

-X462480Y320914D01*

-X462203Y321020D01*

-X462093Y321060D01*

-X461976Y321081D01*

-X461858Y321083D01*

-X461741Y321067D01*

-X461629Y321032D01*

-X461522Y320980D01*

-X461426Y320913D01*

-X461341Y320831D01*

-X461270Y320737D01*

-X461214Y320632D01*

-X461176Y320521D01*

-X461155Y320404D01*

-X461153Y320286D01*

-X461170Y320170D01*

-X461204Y320057D01*

-X461256Y319950D01*

-X461323Y319854D01*

-X461405Y319769D01*

-X461500Y319698D01*

-X461605Y319644D01*

-X462008Y319485D01*

-X462425Y319368D01*

-X462852Y319289D01*

-X463283Y319250D01*

-X463502D01*

-Y298750D01*

-X463283D01*

-X462852Y298711D01*

-X462425Y298632D01*

-X462008Y298515D01*

-X461603Y298360D01*

-X461498Y298305D01*

-X461403Y298234D01*

-X461321Y298148D01*

-X461253Y298051D01*

-X461201Y297945D01*

-X461166Y297831D01*

-X461150Y297714D01*

-X461152Y297595D01*

-X461173Y297478D01*

-X461211Y297366D01*

-X461267Y297262D01*

-X461338Y297167D01*

-X461424Y297085D01*

-X461521Y297017D01*

-X461627Y296965D01*

-X461741Y296930D01*

-X461858Y296914D01*

-X461977Y296916D01*

-X462093Y296936D01*

-X462205Y296977D01*

-X462480Y297086D01*

-X462765Y297166D01*

-X463057Y297220D01*

-X463352Y297247D01*

-X463502D01*

-Y290753D01*

-X463352D01*

-X463057Y290780D01*

-X462765Y290834D01*

-X462480Y290914D01*

-X462203Y291020D01*

-X462093Y291060D01*

-X461976Y291081D01*

-X461858Y291083D01*

-X461741Y291067D01*

-X461629Y291032D01*

-X461522Y290980D01*

-X461426Y290913D01*

-X461341Y290831D01*

-X461270Y290737D01*

-X461214Y290632D01*

-X461176Y290521D01*

-X461155Y290404D01*

-X461153Y290286D01*

-X461170Y290170D01*

-X461204Y290057D01*

-X461256Y289950D01*

-X461323Y289854D01*

-X461405Y289769D01*

-X461500Y289698D01*

-X461605Y289644D01*

-X462008Y289485D01*

-X462425Y289368D01*

-X462852Y289289D01*

-X463283Y289250D01*

-X463502D01*

-Y268750D01*

-X463283D01*

-X462852Y268711D01*

-X462425Y268632D01*

-X462008Y268515D01*

-X461603Y268360D01*

-X461498Y268305D01*

-X461403Y268234D01*

-X461321Y268148D01*

-X461253Y268051D01*

-X461201Y267945D01*

-X461166Y267831D01*

-X461150Y267714D01*

-X461152Y267595D01*

-X461173Y267478D01*

-X461211Y267366D01*

-X461267Y267262D01*

-X461338Y267167D01*

-X461424Y267085D01*

-X461521Y267017D01*

-X461627Y266965D01*

-X461741Y266930D01*

-X461858Y266914D01*

-X461977Y266916D01*

-X462093Y266936D01*

-X462205Y266977D01*

-X462480Y267086D01*

-X462765Y267166D01*

-X463057Y267220D01*

-X463352Y267247D01*

-X463502D01*

-Y260753D01*

-X463352D01*

-X463057Y260780D01*

-X462765Y260834D01*

-X462480Y260914D01*

-X462203Y261020D01*

-X462093Y261060D01*

-X461976Y261081D01*

-X461858Y261083D01*

-X461741Y261067D01*

-X461629Y261032D01*

-X461522Y260980D01*

-X461426Y260913D01*

-X461341Y260831D01*

-X461270Y260737D01*

-X461214Y260632D01*

-X461176Y260521D01*

-X461155Y260404D01*

-X461153Y260286D01*

-X461170Y260170D01*

-X461204Y260057D01*

-X461256Y259950D01*

-X461323Y259854D01*

-X461405Y259769D01*

-X461500Y259698D01*

-X461605Y259644D01*

-X462008Y259485D01*

-X462425Y259368D01*

-X462852Y259289D01*

-X463283Y259250D01*

-X463502D01*

-Y238750D01*

-X463283D01*

-X462852Y238711D01*

-X462425Y238632D01*

-X462008Y238515D01*

-X461603Y238360D01*

-X461498Y238305D01*

-X461403Y238234D01*

-X461321Y238148D01*

-X461253Y238051D01*

-X461201Y237945D01*

-X461166Y237831D01*

-X461150Y237714D01*

-X461152Y237595D01*

-X461173Y237478D01*

-X461211Y237366D01*

-X461267Y237262D01*

-X461338Y237167D01*

-X461424Y237085D01*

-X461521Y237017D01*

-X461627Y236965D01*

-X461741Y236930D01*

-X461858Y236914D01*

-X461977Y236916D01*

-X462093Y236936D01*

-X462205Y236977D01*

-X462480Y237086D01*

-X462765Y237166D01*

-X463057Y237220D01*

-X463352Y237247D01*

-X463502D01*

-Y230753D01*

-X463352D01*

-X463057Y230780D01*

-X462765Y230834D01*

-X462480Y230914D01*

-X462203Y231020D01*

-X462093Y231060D01*

-X461976Y231081D01*

-X461858Y231083D01*

-X461741Y231067D01*

-X461629Y231032D01*

-X461522Y230980D01*

-X461426Y230913D01*

-X461341Y230831D01*

-X461270Y230737D01*

-X461214Y230632D01*

-X461176Y230521D01*

-X461155Y230404D01*

-X461153Y230286D01*

-X461170Y230170D01*

-X461204Y230057D01*

-X461256Y229950D01*

-X461323Y229854D01*

-X461405Y229769D01*

-X461500Y229698D01*

-X461605Y229644D01*

-X462008Y229485D01*

-X462425Y229368D01*

-X462852Y229289D01*

-X463283Y229250D01*

-X463502D01*

-Y208750D01*

-X463283D01*

-X462852Y208711D01*

-X462425Y208632D01*

-X462008Y208515D01*

-X461603Y208360D01*

-X461498Y208305D01*

-X461403Y208234D01*

-X461321Y208148D01*

-X461253Y208051D01*

-X461201Y207945D01*

-X461166Y207831D01*

-X461150Y207714D01*

-X461152Y207595D01*

-X461173Y207478D01*

-X461211Y207366D01*

-X461267Y207262D01*

-X461338Y207167D01*

-X461424Y207085D01*

-X461521Y207017D01*

-X461627Y206965D01*

-X461741Y206930D01*

-X461858Y206914D01*

-X461977Y206916D01*

-X462093Y206936D01*

-X462205Y206977D01*

-X462480Y207086D01*

-X462765Y207166D01*

-X463057Y207220D01*

-X463352Y207247D01*

-X463502D01*

-Y200753D01*

-X463352D01*

-X463057Y200780D01*

-X462765Y200834D01*

-X462480Y200914D01*

-X462203Y201020D01*

-X462093Y201060D01*

-X461976Y201081D01*

-X461858Y201083D01*

-X461741Y201067D01*

-X461629Y201032D01*

-X461522Y200980D01*

-X461426Y200913D01*

-X461341Y200831D01*

-X461270Y200737D01*

-X461214Y200632D01*

-X461176Y200521D01*

-X461155Y200404D01*

-X461153Y200286D01*

-X461170Y200170D01*

-X461204Y200057D01*

-X461256Y199950D01*

-X461323Y199854D01*

-X461405Y199769D01*

-X461500Y199698D01*

-X461605Y199644D01*

-X462008Y199485D01*

-X462425Y199368D01*

-X462852Y199289D01*

-X463283Y199250D01*

-X463502D01*

-Y178750D01*

-X463283D01*

-X462852Y178711D01*

-X462425Y178632D01*

-X462008Y178515D01*

-X461603Y178360D01*

-X461498Y178305D01*

-X461403Y178234D01*

-X461321Y178148D01*

-X461253Y178051D01*

-X461201Y177945D01*

-X461166Y177831D01*

-X461150Y177714D01*

-X461152Y177595D01*

-X461173Y177478D01*

-X461211Y177366D01*

-X461267Y177262D01*

-X461338Y177167D01*

-X461424Y177085D01*

-X461521Y177017D01*

-X461627Y176965D01*

-X461741Y176930D01*

-X461858Y176914D01*

-X461977Y176916D01*

-X462093Y176936D01*

-X462205Y176977D01*

-X462480Y177086D01*

-X462765Y177166D01*

-X463057Y177220D01*

-X463352Y177247D01*

-X463502D01*

-Y170753D01*

-X463352D01*

-X463057Y170780D01*

-X462765Y170834D01*

-X462480Y170914D01*

-X462203Y171020D01*

-X462093Y171060D01*

-X461976Y171081D01*

-X461858Y171083D01*

-X461741Y171067D01*

-X461629Y171032D01*

-X461522Y170980D01*

-X461426Y170913D01*

-X461341Y170831D01*

-X461270Y170737D01*

-X461214Y170632D01*

-X461176Y170521D01*

-X461155Y170404D01*

-X461153Y170286D01*

-X461170Y170170D01*

-X461204Y170057D01*

-X461256Y169950D01*

-X461323Y169854D01*

-X461405Y169769D01*

-X461500Y169698D01*

-X461605Y169644D01*

-X462008Y169485D01*

-X462425Y169368D01*

-X462852Y169289D01*

-X463283Y169250D01*

-X463502D01*

-Y148750D01*

-X463283D01*

-X462852Y148711D01*

-X462425Y148632D01*

-X462008Y148515D01*

-X461603Y148360D01*

-X461498Y148305D01*

-X461403Y148234D01*

-X461321Y148148D01*

-X461253Y148051D01*

-X461201Y147945D01*

-X461166Y147831D01*

-X461150Y147714D01*

-X461152Y147595D01*

-X461173Y147478D01*

-X461211Y147366D01*

-X461267Y147262D01*

-X461338Y147167D01*

-X461424Y147085D01*

-X461521Y147017D01*

-X461627Y146965D01*

-X461741Y146930D01*

-X461858Y146914D01*

-X461977Y146916D01*

-X462093Y146936D01*

-X462205Y146977D01*

-X462480Y147086D01*

-X462765Y147166D01*

-X463057Y147220D01*

-X463352Y147247D01*

-X463502D01*

-Y140753D01*

-X463352D01*

-X463057Y140780D01*

-X462765Y140834D01*

-X462480Y140914D01*

-X462203Y141020D01*

-X462093Y141060D01*

-X461976Y141081D01*

-X461858Y141083D01*

-X461741Y141067D01*

-X461629Y141032D01*

-X461522Y140980D01*

-X461426Y140913D01*

-X461341Y140831D01*

-X461270Y140737D01*

-X461214Y140632D01*

-X461176Y140521D01*

-X461155Y140404D01*

-X461153Y140286D01*

-X461170Y140170D01*

-X461204Y140057D01*

-X461256Y139950D01*

-X461323Y139854D01*

-X461405Y139769D01*

-X461500Y139698D01*

-X461605Y139644D01*

-X462008Y139485D01*

-X462425Y139368D01*

-X462852Y139289D01*

-X463283Y139250D01*

-X463502D01*

-Y118750D01*

-X463283D01*

-X462852Y118711D01*

-X462425Y118632D01*

-X462008Y118515D01*

-X461603Y118360D01*

-X461498Y118305D01*

-X461403Y118234D01*

-X461321Y118148D01*

-X461253Y118051D01*

-X461201Y117945D01*

-X461166Y117831D01*

-X461150Y117714D01*

-X461152Y117595D01*

-X461173Y117478D01*

-X461211Y117366D01*

-X461267Y117262D01*

-X461338Y117167D01*

-X461424Y117085D01*

-X461521Y117017D01*

-X461627Y116965D01*

-X461741Y116930D01*

-X461858Y116914D01*

-X461977Y116916D01*

-X462093Y116936D01*

-X462205Y116977D01*

-X462480Y117086D01*

-X462765Y117166D01*

-X463057Y117220D01*

-X463352Y117247D01*

-X463502D01*

-Y110753D01*

-X463352D01*

-X463057Y110780D01*

-X462765Y110834D01*

-X462480Y110914D01*

-X462203Y111020D01*

-X462093Y111060D01*

-X461976Y111081D01*

-X461858Y111083D01*

-X461741Y111067D01*

-X461629Y111032D01*

-X461522Y110980D01*

-X461426Y110913D01*

-X461341Y110831D01*

-X461270Y110737D01*

-X461214Y110632D01*

-X461176Y110521D01*

-X461155Y110404D01*

-X461153Y110286D01*

-X461170Y110170D01*

-X461204Y110057D01*

-X461256Y109950D01*

-X461323Y109854D01*

-X461405Y109769D01*

-X461500Y109698D01*

-X461605Y109644D01*

-X462008Y109485D01*

-X462425Y109368D01*

-X462852Y109289D01*

-X463283Y109250D01*

-X463502D01*

-Y88750D01*

-X463283D01*

-X462852Y88711D01*

-X462425Y88632D01*

-X462008Y88515D01*

-X461603Y88360D01*

-X461498Y88305D01*

-X461403Y88234D01*

-X461321Y88148D01*

-X461253Y88051D01*

-X461201Y87945D01*

-X461166Y87831D01*

-X461150Y87714D01*

-X461152Y87595D01*

-X461173Y87478D01*

-X461211Y87366D01*

-X461267Y87262D01*

-X461338Y87167D01*

-X461424Y87085D01*

-X461521Y87017D01*

-X461627Y86965D01*

-X461741Y86930D01*

-X461858Y86914D01*

-X461977Y86916D01*

-X462093Y86936D01*

-X462205Y86977D01*

-X462480Y87086D01*

-X462765Y87166D01*

-X463057Y87220D01*

-X463352Y87247D01*

-X463502D01*

-Y80753D01*

-X463352D01*

-X463057Y80780D01*

-X462765Y80834D01*

-X462480Y80914D01*

-X462203Y81020D01*

-X462093Y81060D01*

-X461976Y81081D01*

-X461858Y81083D01*

-X461741Y81067D01*

-X461629Y81032D01*

-X461522Y80980D01*

-X461426Y80913D01*

-X461341Y80831D01*

-X461270Y80737D01*

-X461214Y80632D01*

-X461176Y80521D01*

-X461155Y80404D01*

-X461153Y80286D01*

-X461170Y80170D01*

-X461204Y80057D01*

-X461256Y79950D01*

-X461323Y79854D01*

-X461405Y79769D01*

-X461500Y79698D01*

-X461605Y79644D01*

-X462008Y79485D01*

-X462425Y79368D01*

-X462852Y79289D01*

-X463283Y79250D01*

-X463502D01*

-Y58750D01*

-X463283D01*

-X462852Y58711D01*

-X462425Y58632D01*

-X462008Y58515D01*

-X461603Y58360D01*

-X461498Y58305D01*

-X461403Y58234D01*

-X461321Y58148D01*

-X461253Y58051D01*

-X461201Y57945D01*

-X461166Y57831D01*

-X461150Y57714D01*

-X461152Y57595D01*

-X461173Y57478D01*

-X461211Y57366D01*

-X461267Y57262D01*

-X461338Y57167D01*

-X461424Y57085D01*

-X461521Y57017D01*

-X461627Y56965D01*

-X461741Y56930D01*

-X461858Y56914D01*

-X461977Y56916D01*

-X462093Y56936D01*

-X462205Y56977D01*

-X462480Y57086D01*

-X462765Y57166D01*

-X463057Y57220D01*

-X463352Y57247D01*

-X463502D01*

-Y50753D01*

-X463352D01*

-X463057Y50780D01*

-X462765Y50834D01*

-X462480Y50914D01*

-X462203Y51020D01*

-X462093Y51060D01*

-X461976Y51081D01*

-X461858Y51083D01*

-X461741Y51067D01*

-X461629Y51032D01*

-X461522Y50980D01*

-X461426Y50913D01*

-X461341Y50831D01*

-X461270Y50737D01*

-X461214Y50632D01*

-X461176Y50521D01*

-X461155Y50404D01*

-X461153Y50286D01*

-X461170Y50170D01*

-X461204Y50057D01*

-X461256Y49950D01*

-X461323Y49854D01*

-X461405Y49769D01*

-X461500Y49698D01*

-X461605Y49644D01*

-X462008Y49485D01*

-X462425Y49368D01*

-X462852Y49289D01*

-X463283Y49250D01*

-X463502D01*

-Y39000D01*

-G37*

-G36*

-X459668Y377522D02*X459309Y377671D01*

-X458880Y377774D01*

-X458441Y377809D01*

-X458437Y377808D01*

-Y397000D01*

-X459668D01*

-Y386330D01*

-X459557Y386296D01*

-X459450Y386244D01*

-X459354Y386177D01*

-X459269Y386095D01*

-X459198Y386000D01*

-X459144Y385895D01*

-X458985Y385492D01*

-X458868Y385075D01*

-X458789Y384648D01*

-X458750Y384217D01*

-Y383783D01*

-X458789Y383352D01*

-X458868Y382925D01*

-X458985Y382508D01*

-X459140Y382103D01*

-X459195Y381998D01*

-X459266Y381903D01*

-X459352Y381821D01*

-X459449Y381753D01*

-X459555Y381701D01*

-X459668Y381666D01*

-Y377522D01*

-G37*

-G36*

-Y347522D02*X459309Y347671D01*

-X458880Y347774D01*

-X458441Y347809D01*

-X458437Y347808D01*

-Y372192D01*

-X458441Y372191D01*

-X458880Y372226D01*

-X459309Y372329D01*

-X459668Y372478D01*

-Y356330D01*

-X459557Y356296D01*

-X459450Y356244D01*

-X459354Y356177D01*

-X459269Y356095D01*

-X459198Y356000D01*

-X459144Y355895D01*

-X458985Y355492D01*

-X458868Y355075D01*

-X458789Y354648D01*

-X458750Y354217D01*

-Y353783D01*

-X458789Y353352D01*

-X458868Y352925D01*

-X458985Y352508D01*

-X459140Y352103D01*

-X459195Y351998D01*

-X459266Y351903D01*

-X459352Y351821D01*

-X459449Y351753D01*

-X459555Y351701D01*

-X459668Y351666D01*

-Y347522D01*

-G37*

-G36*

-Y317522D02*X459309Y317671D01*

-X458880Y317774D01*

-X458441Y317809D01*

-X458437Y317808D01*

-Y342192D01*

-X458441Y342191D01*

-X458880Y342226D01*

-X459309Y342329D01*

-X459668Y342478D01*

-Y326330D01*

-X459557Y326296D01*

-X459450Y326244D01*

-X459354Y326177D01*

-X459269Y326095D01*

-X459198Y326000D01*

-X459144Y325895D01*

-X458985Y325492D01*

-X458868Y325075D01*

-X458789Y324648D01*

-X458750Y324217D01*

-Y323783D01*

-X458789Y323352D01*

-X458868Y322925D01*

-X458985Y322508D01*

-X459140Y322103D01*

-X459195Y321998D01*

-X459266Y321903D01*

-X459352Y321821D01*

-X459449Y321753D01*

-X459555Y321701D01*

-X459668Y321666D01*

-Y317522D01*

-G37*

-G36*

-Y287522D02*X459309Y287671D01*

-X458880Y287774D01*

-X458441Y287809D01*

-X458437Y287808D01*

-Y312192D01*

-X458441Y312191D01*

-X458880Y312226D01*

-X459309Y312329D01*

-X459668Y312478D01*

-Y296330D01*

-X459557Y296296D01*

-X459450Y296244D01*

-X459354Y296177D01*

-X459269Y296095D01*

-X459198Y296000D01*

-X459144Y295895D01*

-X458985Y295492D01*

-X458868Y295075D01*

-X458789Y294648D01*

-X458750Y294217D01*

-Y293783D01*

-X458789Y293352D01*

-X458868Y292925D01*

-X458985Y292508D01*

-X459140Y292103D01*

-X459195Y291998D01*

-X459266Y291903D01*

-X459352Y291821D01*

-X459449Y291753D01*

-X459555Y291701D01*

-X459668Y291666D01*

-Y287522D01*

-G37*

-G36*

-Y256522D02*X459309Y256671D01*

-X458880Y256774D01*

-X458441Y256809D01*

-X458437Y256808D01*

-Y282192D01*

-X458441Y282191D01*

-X458880Y282226D01*

-X459309Y282329D01*

-X459668Y282478D01*

-Y266330D01*

-X459557Y266296D01*

-X459450Y266244D01*

-X459354Y266177D01*

-X459269Y266095D01*

-X459198Y266000D01*

-X459144Y265895D01*

-X458985Y265492D01*

-X458868Y265075D01*

-X458789Y264648D01*

-X458750Y264217D01*

-Y263783D01*

-X458789Y263352D01*

-X458868Y262925D01*

-X458985Y262508D01*

-X459140Y262103D01*

-X459195Y261998D01*

-X459266Y261903D01*

-X459352Y261821D01*

-X459449Y261753D01*

-X459555Y261701D01*

-X459668Y261666D01*

-Y256522D01*

-G37*

-G36*

-Y227522D02*X459309Y227671D01*

-X458880Y227774D01*

-X458441Y227809D01*

-X458437Y227808D01*

-Y251192D01*

-X458441Y251191D01*

-X458880Y251226D01*

-X459309Y251329D01*

-X459668Y251478D01*

-Y236330D01*

-X459557Y236296D01*

-X459450Y236244D01*

-X459354Y236177D01*

-X459269Y236095D01*

-X459198Y236000D01*

-X459144Y235895D01*

-X458985Y235492D01*

-X458868Y235075D01*

-X458789Y234648D01*

-X458750Y234217D01*

-Y233783D01*

-X458789Y233352D01*

-X458868Y232925D01*

-X458985Y232508D01*

-X459140Y232103D01*

-X459195Y231998D01*

-X459266Y231903D01*

-X459352Y231821D01*

-X459449Y231753D01*

-X459555Y231701D01*

-X459668Y231666D01*

-Y227522D01*

-G37*

-G36*

-Y197522D02*X459309Y197671D01*

-X458880Y197774D01*

-X458441Y197809D01*

-X458437Y197808D01*

-Y222192D01*

-X458441Y222191D01*

-X458880Y222226D01*

-X459309Y222329D01*

-X459668Y222478D01*

-Y206330D01*

-X459557Y206296D01*

-X459450Y206244D01*

-X459354Y206177D01*

-X459269Y206095D01*

-X459198Y206000D01*

-X459144Y205895D01*

-X458985Y205492D01*

-X458868Y205075D01*

-X458789Y204648D01*

-X458750Y204217D01*

-Y203783D01*

-X458789Y203352D01*

-X458868Y202925D01*

-X458985Y202508D01*

-X459140Y202103D01*

-X459195Y201998D01*

-X459266Y201903D01*

-X459352Y201821D01*

-X459449Y201753D01*

-X459555Y201701D01*

-X459668Y201666D01*

-Y197522D01*

-G37*

-G36*

-Y166522D02*X459309Y166671D01*

-X458880Y166774D01*

-X458441Y166809D01*

-X458437Y166808D01*

-Y192192D01*

-X458441Y192191D01*

-X458880Y192226D01*

-X459309Y192329D01*

-X459668Y192478D01*

-Y176330D01*

-X459557Y176296D01*

-X459450Y176244D01*

-X459354Y176177D01*

-X459269Y176095D01*

-X459198Y176000D01*

-X459144Y175895D01*

-X458985Y175492D01*

-X458868Y175075D01*

-X458789Y174648D01*

-X458750Y174217D01*

-Y173783D01*

-X458789Y173352D01*

-X458868Y172925D01*

-X458985Y172508D01*

-X459140Y172103D01*

-X459195Y171998D01*

-X459266Y171903D01*

-X459352Y171821D01*

-X459449Y171753D01*

-X459555Y171701D01*

-X459668Y171666D01*

-Y166522D01*

-G37*

-G36*

-Y39000D02*X458437D01*

-Y161192D01*

-X458441Y161191D01*

-X458880Y161226D01*

-X459309Y161329D01*

-X459668Y161478D01*

-Y146330D01*

-X459557Y146296D01*

-X459450Y146244D01*

-X459354Y146177D01*

-X459269Y146095D01*

-X459198Y146000D01*

-X459144Y145895D01*

-X458985Y145492D01*

-X458868Y145075D01*

-X458789Y144648D01*

-X458750Y144217D01*

-Y143783D01*

-X458789Y143352D01*

-X458868Y142925D01*

-X458985Y142508D01*

-X459140Y142103D01*

-X459195Y141998D01*

-X459266Y141903D01*

-X459352Y141821D01*

-X459449Y141753D01*

-X459555Y141701D01*

-X459668Y141666D01*

-Y116330D01*

-X459557Y116296D01*

-X459450Y116244D01*

-X459354Y116177D01*

-X459269Y116095D01*

-X459198Y116000D01*

-X459144Y115895D01*

-X458985Y115492D01*

-X458868Y115075D01*

-X458789Y114648D01*

-X458750Y114217D01*

-Y113783D01*

-X458789Y113352D01*

-X458868Y112925D01*

-X458985Y112508D01*

-X459140Y112103D01*

-X459195Y111998D01*

-X459266Y111903D01*

-X459352Y111821D01*

-X459449Y111753D01*

-X459555Y111701D01*

-X459668Y111666D01*

-Y86330D01*

-X459557Y86296D01*

-X459450Y86244D01*

-X459354Y86177D01*

-X459269Y86095D01*

-X459198Y86000D01*

-X459144Y85895D01*

-X458985Y85492D01*

-X458868Y85075D01*

-X458789Y84648D01*

-X458750Y84217D01*

-Y83783D01*

-X458789Y83352D01*

-X458868Y82925D01*

-X458985Y82508D01*

-X459140Y82103D01*

-X459195Y81998D01*

-X459266Y81903D01*

-X459352Y81821D01*

-X459449Y81753D01*

-X459555Y81701D01*

-X459668Y81666D01*

-Y56330D01*

-X459557Y56296D01*

-X459450Y56244D01*

-X459354Y56177D01*

-X459269Y56095D01*

-X459198Y56000D01*

-X459144Y55895D01*

-X458985Y55492D01*

-X458868Y55075D01*

-X458789Y54648D01*

-X458750Y54217D01*

-Y53783D01*

-X458789Y53352D01*

-X458868Y52925D01*

-X458985Y52508D01*

-X459140Y52103D01*

-X459195Y51998D01*

-X459266Y51903D01*

-X459352Y51821D01*

-X459449Y51753D01*

-X459555Y51701D01*

-X459668Y51666D01*

-Y39000D01*

-G37*

-G36*

-X458437D02*X453500D01*

-Y49257D01*

-X456985Y49264D01*

-X457215Y49319D01*

-X457433Y49409D01*

-X457634Y49533D01*

-X457814Y49686D01*

-X457967Y49866D01*

-X458091Y50067D01*

-X458181Y50285D01*

-X458236Y50515D01*

-X458250Y50750D01*

-X458236Y57485D01*

-X458181Y57715D01*

-X458091Y57933D01*

-X457967Y58134D01*

-X457814Y58314D01*

-X457634Y58467D01*

-X457433Y58591D01*

-X457215Y58681D01*

-X456985Y58736D01*

-X456750Y58750D01*

-X453500Y58743D01*

-Y79257D01*

-X456985Y79264D01*

-X457215Y79319D01*

-X457433Y79409D01*

-X457634Y79533D01*

-X457814Y79686D01*

-X457967Y79866D01*

-X458091Y80067D01*

-X458181Y80285D01*

-X458236Y80515D01*

-X458250Y80750D01*

-X458236Y87485D01*

-X458181Y87715D01*

-X458091Y87933D01*

-X457967Y88134D01*

-X457814Y88314D01*

-X457634Y88467D01*

-X457433Y88591D01*

-X457215Y88681D01*

-X456985Y88736D01*

-X456750Y88750D01*

-X453500Y88743D01*

-Y109257D01*

-X456985Y109264D01*

-X457215Y109319D01*

-X457433Y109409D01*

-X457634Y109533D01*

-X457814Y109686D01*

-X457967Y109866D01*

-X458091Y110067D01*

-X458181Y110285D01*

-X458236Y110515D01*

-X458250Y110750D01*

-X458236Y117485D01*

-X458181Y117715D01*

-X458091Y117933D01*

-X457967Y118134D01*

-X457814Y118314D01*

-X457634Y118467D01*

-X457433Y118591D01*

-X457215Y118681D01*

-X456985Y118736D01*

-X456750Y118750D01*

-X453500Y118743D01*

-Y139257D01*

-X456985Y139264D01*

-X457215Y139319D01*

-X457433Y139409D01*

-X457634Y139533D01*

-X457814Y139686D01*

-X457967Y139866D01*

-X458091Y140067D01*

-X458181Y140285D01*

-X458236Y140515D01*

-X458250Y140750D01*

-X458236Y147485D01*

-X458181Y147715D01*

-X458091Y147933D01*

-X457967Y148134D01*

-X457814Y148314D01*

-X457634Y148467D01*

-X457433Y148591D01*

-X457215Y148681D01*

-X456985Y148736D01*

-X456750Y148750D01*

-X453500Y148743D01*

-Y169257D01*

-X456985Y169264D01*

-X457215Y169319D01*

-X457433Y169409D01*

-X457634Y169533D01*

-X457814Y169686D01*

-X457967Y169866D01*

-X458091Y170067D01*

-X458181Y170285D01*

-X458236Y170515D01*

-X458250Y170750D01*

-X458236Y177485D01*

-X458181Y177715D01*

-X458091Y177933D01*

-X457967Y178134D01*

-X457814Y178314D01*

-X457634Y178467D01*

-X457433Y178591D01*

-X457215Y178681D01*

-X456985Y178736D01*

-X456750Y178750D01*

-X453500Y178743D01*

-Y199257D01*

-X456985Y199264D01*

-X457215Y199319D01*

-X457433Y199409D01*

-X457634Y199533D01*

-X457814Y199686D01*

-X457967Y199866D01*

-X458091Y200067D01*

-X458181Y200285D01*

-X458236Y200515D01*

-X458250Y200750D01*

-X458236Y207485D01*

-X458181Y207715D01*

-X458091Y207933D01*

-X457967Y208134D01*

-X457814Y208314D01*

-X457634Y208467D01*

-X457433Y208591D01*

-X457215Y208681D01*

-X456985Y208736D01*

-X456750Y208750D01*

-X453500Y208743D01*

-Y229257D01*

-X456985Y229264D01*

-X457215Y229319D01*

-X457433Y229409D01*

-X457634Y229533D01*

-X457814Y229686D01*

-X457967Y229866D01*

-X458091Y230067D01*

-X458181Y230285D01*

-X458236Y230515D01*

-X458250Y230750D01*

-X458236Y237485D01*

-X458181Y237715D01*

-X458091Y237933D01*

-X457967Y238134D01*

-X457814Y238314D01*

-X457634Y238467D01*

-X457433Y238591D01*

-X457215Y238681D01*

-X456985Y238736D01*

-X456750Y238750D01*

-X453500Y238743D01*

-Y259257D01*

-X456985Y259264D01*

-X457215Y259319D01*

-X457433Y259409D01*

-X457634Y259533D01*

-X457814Y259686D01*

-X457967Y259866D01*

-X458091Y260067D01*

-X458181Y260285D01*

-X458236Y260515D01*

-X458250Y260750D01*

-X458236Y267485D01*

-X458181Y267715D01*

-X458091Y267933D01*

-X457967Y268134D01*

-X457814Y268314D01*

-X457634Y268467D01*

-X457433Y268591D01*

-X457215Y268681D01*

-X456985Y268736D01*

-X456750Y268750D01*

-X453500Y268743D01*

-Y289257D01*

-X456985Y289264D01*

-X457215Y289319D01*

-X457433Y289409D01*

-X457634Y289533D01*

-X457814Y289686D01*

-X457967Y289866D01*

-X458091Y290067D01*

-X458181Y290285D01*

-X458236Y290515D01*

-X458250Y290750D01*

-X458236Y297485D01*

-X458181Y297715D01*

-X458091Y297933D01*

-X457967Y298134D01*

-X457814Y298314D01*

-X457634Y298467D01*

-X457433Y298591D01*

-X457215Y298681D01*

-X456985Y298736D01*

-X456750Y298750D01*

-X453500Y298743D01*

-Y319257D01*

-X456985Y319264D01*

-X457215Y319319D01*

-X457433Y319409D01*

-X457634Y319533D01*

-X457814Y319686D01*

-X457967Y319866D01*

-X458091Y320067D01*

-X458181Y320285D01*

-X458236Y320515D01*

-X458250Y320750D01*

-X458236Y327485D01*

-X458181Y327715D01*

-X458091Y327933D01*

-X457967Y328134D01*

-X457814Y328314D01*

-X457634Y328467D01*

-X457433Y328591D01*

-X457215Y328681D01*

-X456985Y328736D01*

-X456750Y328750D01*

-X453500Y328743D01*

-Y349257D01*

-X456985Y349264D01*

-X457215Y349319D01*

-X457433Y349409D01*

-X457634Y349533D01*

-X457814Y349686D01*

-X457967Y349866D01*

-X458091Y350067D01*

-X458181Y350285D01*

-X458236Y350515D01*

-X458250Y350750D01*

-X458236Y357485D01*

-X458181Y357715D01*

-X458091Y357933D01*

-X457967Y358134D01*

-X457814Y358314D01*

-X457634Y358467D01*

-X457433Y358591D01*

-X457215Y358681D01*

-X456985Y358736D01*

-X456750Y358750D01*

-X453500Y358743D01*

-Y379257D01*

-X456985Y379264D01*

-X457215Y379319D01*

-X457433Y379409D01*

-X457634Y379533D01*

-X457814Y379686D01*

-X457967Y379866D01*

-X458091Y380067D01*

-X458181Y380285D01*

-X458236Y380515D01*

-X458250Y380750D01*

-X458236Y387485D01*

-X458181Y387715D01*

-X458091Y387933D01*

-X457967Y388134D01*

-X457814Y388314D01*

-X457634Y388467D01*

-X457433Y388591D01*

-X457215Y388681D01*

-X456985Y388736D01*

-X456750Y388750D01*

-X453500Y388743D01*

-Y397000D01*

-X458437D01*

-Y377808D01*

-X458002Y377774D01*

-X457573Y377671D01*

-X457166Y377503D01*

-X456790Y377272D01*

-X456455Y376986D01*

-X456169Y376651D01*

-X455938Y376275D01*

-X455770Y375868D01*

-X455667Y375439D01*

-X455632Y375000D01*

-X455667Y374561D01*

-X455770Y374132D01*

-X455938Y373725D01*

-X456169Y373349D01*

-X456455Y373014D01*

-X456790Y372728D01*

-X457166Y372497D01*

-X457573Y372329D01*

-X458002Y372226D01*

-X458437Y372192D01*

-Y347808D01*

-X458002Y347774D01*

-X457573Y347671D01*

-X457166Y347503D01*

-X456790Y347272D01*

-X456455Y346986D01*

-X456169Y346651D01*

-X455938Y346275D01*

-X455770Y345868D01*

-X455667Y345439D01*

-X455632Y345000D01*

-X455667Y344561D01*

-X455770Y344132D01*

-X455938Y343725D01*

-X456169Y343349D01*

-X456455Y343014D01*

-X456790Y342728D01*

-X457166Y342497D01*

-X457573Y342329D01*

-X458002Y342226D01*

-X458437Y342192D01*

-Y317808D01*

-X458002Y317774D01*

-X457573Y317671D01*

-X457166Y317503D01*

-X456790Y317272D01*

-X456455Y316986D01*

-X456169Y316651D01*

-X455938Y316275D01*

-X455770Y315868D01*

-X455667Y315439D01*

-X455632Y315000D01*

-X455667Y314561D01*

-X455770Y314132D01*

-X455938Y313725D01*

-X456169Y313349D01*

-X456455Y313014D01*

-X456790Y312728D01*

-X457166Y312497D01*

-X457573Y312329D01*

-X458002Y312226D01*

-X458437Y312192D01*

-Y287808D01*

-X458002Y287774D01*

-X457573Y287671D01*

-X457166Y287503D01*

-X456790Y287272D01*

-X456455Y286986D01*

-X456169Y286651D01*

-X455938Y286275D01*

-X455770Y285868D01*

-X455667Y285439D01*

-X455632Y285000D01*

-X455667Y284561D01*

-X455770Y284132D01*

-X455938Y283725D01*

-X456169Y283349D01*

-X456455Y283014D01*

-X456790Y282728D01*

-X457166Y282497D01*

-X457573Y282329D01*

-X458002Y282226D01*

-X458437Y282192D01*

-Y256808D01*

-X458002Y256774D01*

-X457573Y256671D01*

-X457166Y256503D01*

-X456790Y256272D01*

-X456455Y255986D01*

-X456169Y255651D01*

-X455938Y255275D01*

-X455770Y254868D01*

-X455667Y254439D01*

-X455632Y254000D01*

-X455667Y253561D01*

-X455770Y253132D01*

-X455938Y252725D01*

-X456169Y252349D01*

-X456455Y252014D01*

-X456790Y251728D01*

-X457166Y251497D01*

-X457573Y251329D01*

-X458002Y251226D01*

-X458437Y251192D01*

-Y227808D01*

-X458002Y227774D01*

-X457573Y227671D01*

-X457166Y227503D01*

-X456790Y227272D01*

-X456455Y226986D01*

-X456169Y226651D01*

-X455938Y226275D01*

-X455770Y225868D01*

-X455667Y225439D01*

-X455632Y225000D01*

-X455667Y224561D01*

-X455770Y224132D01*

-X455938Y223725D01*

-X456169Y223349D01*

-X456455Y223014D01*

-X456790Y222728D01*

-X457166Y222497D01*

-X457573Y222329D01*

-X458002Y222226D01*

-X458437Y222192D01*

-Y197808D01*

-X458002Y197774D01*

-X457573Y197671D01*

-X457166Y197503D01*

-X456790Y197272D01*

-X456455Y196986D01*

-X456169Y196651D01*

-X455938Y196275D01*

-X455770Y195868D01*

-X455667Y195439D01*

-X455632Y195000D01*

-X455667Y194561D01*

-X455770Y194132D01*

-X455938Y193725D01*

-X456169Y193349D01*

-X456455Y193014D01*

-X456790Y192728D01*

-X457166Y192497D01*

-X457573Y192329D01*

-X458002Y192226D01*

-X458437Y192192D01*

-Y166808D01*

-X458002Y166774D01*

-X457573Y166671D01*

-X457166Y166503D01*

-X456790Y166272D01*

-X456455Y165986D01*

-X456169Y165651D01*

-X455938Y165275D01*

-X455770Y164868D01*

-X455667Y164439D01*

-X455632Y164000D01*

-X455667Y163561D01*

-X455770Y163132D01*

-X455938Y162725D01*

-X456169Y162349D01*

-X456455Y162014D01*

-X456790Y161728D01*

-X457166Y161497D01*

-X457573Y161329D01*

-X458002Y161226D01*

-X458437Y161192D01*

-Y39000D01*

-G37*

-G36*

-X453500Y148743D02*X453441Y148743D01*

-Y154000D01*

-X440446D01*

-Y170721D01*

-X440855Y171199D01*

-X441245Y171837D01*

-X441531Y172528D01*

-X441706Y173255D01*

-X441750Y174000D01*

-X441706Y174745D01*

-X441531Y175472D01*

-X441245Y176163D01*

-X440855Y176801D01*

-X440446Y177279D01*

-Y200721D01*

-X440855Y201199D01*

-X441245Y201837D01*

-X441531Y202528D01*

-X441706Y203255D01*

-X441750Y204000D01*

-X441706Y204745D01*

-X441531Y205472D01*

-X441245Y206163D01*

-X440855Y206801D01*

-X440446Y207279D01*

-Y230721D01*

-X440855Y231199D01*

-X441245Y231837D01*

-X441531Y232528D01*

-X441706Y233255D01*

-X441750Y234000D01*

-X441706Y234745D01*

-X441531Y235472D01*

-X441245Y236163D01*

-X440855Y236801D01*

-X440446Y237279D01*

-Y260721D01*

-X440855Y261199D01*

-X441245Y261837D01*

-X441531Y262528D01*

-X441706Y263255D01*

-X441750Y264000D01*

-X441706Y264745D01*

-X441531Y265472D01*

-X441245Y266163D01*

-X440855Y266801D01*

-X440446Y267279D01*

-Y290721D01*

-X440855Y291199D01*

-X441245Y291837D01*

-X441531Y292528D01*

-X441706Y293255D01*

-X441750Y294000D01*

-X441706Y294745D01*

-X441531Y295472D01*

-X441245Y296163D01*

-X440855Y296801D01*

-X440446Y297279D01*

-Y320721D01*

-X440855Y321199D01*

-X441245Y321837D01*

-X441531Y322528D01*

-X441706Y323255D01*

-X441750Y324000D01*

-X441706Y324745D01*

-X441531Y325472D01*

-X441245Y326163D01*

-X440855Y326801D01*

-X440446Y327279D01*

-Y350721D01*

-X440855Y351199D01*

-X441245Y351837D01*

-X441531Y352528D01*

-X441706Y353255D01*

-X441750Y354000D01*

-X441706Y354745D01*

-X441531Y355472D01*

-X441245Y356163D01*

-X440855Y356801D01*

-X440446Y357279D01*

-Y380721D01*

-X440855Y381199D01*

-X441245Y381837D01*

-X441531Y382528D01*

-X441706Y383255D01*

-X441750Y384000D01*

-X441706Y384745D01*

-X441531Y385472D01*

-X441245Y386163D01*

-X440855Y386801D01*

-X440446Y387279D01*

-Y397000D01*

-X453500D01*

-Y388743D01*

-X450015Y388736D01*

-X449785Y388681D01*

-X449567Y388591D01*

-X449366Y388467D01*

-X449186Y388314D01*

-X449033Y388134D01*

-X448909Y387933D01*

-X448819Y387715D01*

-X448764Y387485D01*

-X448750Y387250D01*

-X448764Y380515D01*

-X448819Y380285D01*

-X448909Y380067D01*

-X449033Y379866D01*

-X449186Y379686D01*

-X449366Y379533D01*

-X449567Y379409D01*

-X449785Y379319D01*

-X450015Y379264D01*

-X450250Y379250D01*

-X453500Y379257D01*

-Y358743D01*

-X450015Y358736D01*

-X449785Y358681D01*

-X449567Y358591D01*

-X449366Y358467D01*

-X449186Y358314D01*

-X449033Y358134D01*

-X448909Y357933D01*

-X448819Y357715D01*

-X448764Y357485D01*

-X448750Y357250D01*

-X448764Y350515D01*

-X448819Y350285D01*

-X448909Y350067D01*

-X449033Y349866D01*

-X449186Y349686D01*

-X449366Y349533D01*

-X449567Y349409D01*

-X449785Y349319D01*

-X450015Y349264D01*

-X450250Y349250D01*

-X453500Y349257D01*

-Y328743D01*

-X450015Y328736D01*

-X449785Y328681D01*

-X449567Y328591D01*

-X449366Y328467D01*

-X449186Y328314D01*

-X449033Y328134D01*

-X448909Y327933D01*

-X448819Y327715D01*

-X448764Y327485D01*

-X448750Y327250D01*

-X448764Y320515D01*

-X448819Y320285D01*

-X448909Y320067D01*

-X449033Y319866D01*

-X449186Y319686D01*

-X449366Y319533D01*

-X449567Y319409D01*

-X449785Y319319D01*

-X450015Y319264D01*

-X450250Y319250D01*

-X453500Y319257D01*

-Y298743D01*

-X450015Y298736D01*

-X449785Y298681D01*

-X449567Y298591D01*

-X449366Y298467D01*

-X449186Y298314D01*

-X449033Y298134D01*

-X448909Y297933D01*

-X448819Y297715D01*

-X448764Y297485D01*

-X448750Y297250D01*

-X448764Y290515D01*

-X448819Y290285D01*

-X448909Y290067D01*

-X449033Y289866D01*

-X449186Y289686D01*

-X449366Y289533D01*

-X449567Y289409D01*

-X449785Y289319D01*

-X450015Y289264D01*

-X450250Y289250D01*

-X453500Y289257D01*

-Y268743D01*

-X450015Y268736D01*

-X449785Y268681D01*

-X449567Y268591D01*

-X449366Y268467D01*

-X449186Y268314D01*

-X449033Y268134D01*

-X448909Y267933D01*

-X448819Y267715D01*

-X448764Y267485D01*

-X448750Y267250D01*

-X448764Y260515D01*

-X448819Y260285D01*

-X448909Y260067D01*

-X449033Y259866D01*

-X449186Y259686D01*

-X449366Y259533D01*

-X449567Y259409D01*

-X449785Y259319D01*

-X450015Y259264D01*

-X450250Y259250D01*

-X453500Y259257D01*

-Y238743D01*

-X450015Y238736D01*

-X449785Y238681D01*

-X449567Y238591D01*

-X449366Y238467D01*

-X449186Y238314D01*

-X449033Y238134D01*

-X448909Y237933D01*

-X448819Y237715D01*

-X448764Y237485D01*

-X448750Y237250D01*

-X448764Y230515D01*

-X448819Y230285D01*

-X448909Y230067D01*

-X449033Y229866D01*

-X449186Y229686D01*

-X449366Y229533D01*

-X449567Y229409D01*

-X449785Y229319D01*

-X450015Y229264D01*

-X450250Y229250D01*

-X453500Y229257D01*

-Y208743D01*

-X450015Y208736D01*

-X449785Y208681D01*

-X449567Y208591D01*

-X449366Y208467D01*

-X449186Y208314D01*

-X449033Y208134D01*

-X448909Y207933D01*

-X448819Y207715D01*

-X448764Y207485D01*

-X448750Y207250D01*

-X448764Y200515D01*

-X448819Y200285D01*

-X448909Y200067D01*

-X449033Y199866D01*

-X449186Y199686D01*

-X449366Y199533D01*

-X449567Y199409D01*

-X449785Y199319D01*

-X450015Y199264D01*

-X450250Y199250D01*

-X453500Y199257D01*

-Y178743D01*

-X450015Y178736D01*

-X449785Y178681D01*

-X449567Y178591D01*

-X449366Y178467D01*

-X449186Y178314D01*

-X449033Y178134D01*

-X448909Y177933D01*

-X448819Y177715D01*

-X448764Y177485D01*

-X448750Y177250D01*

-X448764Y170515D01*

-X448819Y170285D01*

-X448909Y170067D01*

-X449033Y169866D01*

-X449186Y169686D01*

-X449366Y169533D01*

-X449567Y169409D01*

-X449785Y169319D01*

-X450015Y169264D01*

-X450250Y169250D01*

-X453500Y169257D01*

-Y148743D01*

-G37*

-G36*

-Y118743D02*X453441Y118743D01*

-Y139257D01*

-X453500Y139257D01*

-Y118743D01*

-G37*

-G36*

-Y88743D02*X453441Y88743D01*

-Y109257D01*

-X453500Y109257D01*

-Y88743D01*

-G37*

-G36*

-Y39000D02*X440446D01*

-Y54695D01*

-X440449Y54694D01*

-X440731Y54717D01*

-X441007Y54783D01*

-X441269Y54891D01*

-X441510Y55039D01*

-X441726Y55223D01*

-X441910Y55439D01*

-X442058Y55680D01*

-X442166Y55942D01*

-X442232Y56218D01*

-X442249Y56500D01*

-X442232Y56782D01*

-X442166Y57058D01*

-X442058Y57320D01*

-X441910Y57561D01*

-X441726Y57777D01*

-X441510Y57961D01*

-X441269Y58109D01*

-X441007Y58217D01*

-X440731Y58283D01*

-X440449Y58306D01*

-X440446Y58305D01*

-Y67000D01*

-X453441D01*

-Y79257D01*

-X453500Y79257D01*

-Y58743D01*

-X450015Y58736D01*

-X449785Y58681D01*

-X449567Y58591D01*

-X449366Y58467D01*

-X449186Y58314D01*

-X449033Y58134D01*

-X448909Y57933D01*

-X448819Y57715D01*

-X448764Y57485D01*

-X448750Y57250D01*

-X448764Y50515D01*

-X448819Y50285D01*

-X448909Y50067D01*

-X449033Y49866D01*

-X449186Y49686D01*

-X449366Y49533D01*

-X449567Y49409D01*

-X449785Y49319D01*

-X450015Y49264D01*

-X450250Y49250D01*

-X453500Y49257D01*

-Y39000D01*

-G37*

-G36*

-X440446Y387279D02*X440369Y387369D01*

-X439801Y387855D01*

-X439163Y388245D01*

-X438472Y388531D01*

-X437745Y388706D01*

-X437000Y388765D01*

-X436255Y388706D01*

-X435528Y388531D01*

-X434837Y388245D01*

-X434446Y388006D01*

-Y397000D01*

-X440446D01*

-Y387279D01*

-G37*

-G36*

-Y357279D02*X440369Y357369D01*

-X439801Y357855D01*

-X439163Y358245D01*

-X438472Y358531D01*

-X437745Y358706D01*

-X437000Y358765D01*

-X436255Y358706D01*

-X435528Y358531D01*

-X434837Y358245D01*

-X434446Y358006D01*

-Y379994D01*

-X434837Y379755D01*

-X435528Y379469D01*

-X436255Y379294D01*

-X437000Y379235D01*

-X437745Y379294D01*

-X438472Y379469D01*

-X439163Y379755D01*

-X439801Y380145D01*

-X440369Y380631D01*

-X440446Y380721D01*

-Y357279D01*

-G37*

-G36*

-Y327279D02*X440369Y327369D01*

-X439801Y327855D01*

-X439163Y328245D01*

-X438472Y328531D01*

-X437745Y328706D01*

-X437000Y328765D01*

-X436255Y328706D01*

-X435528Y328531D01*

-X434837Y328245D01*

-X434446Y328006D01*

-Y349994D01*

-X434837Y349755D01*

-X435528Y349469D01*

-X436255Y349294D01*

-X437000Y349235D01*

-X437745Y349294D01*

-X438472Y349469D01*

-X439163Y349755D01*

-X439801Y350145D01*

-X440369Y350631D01*

-X440446Y350721D01*

-Y327279D01*

-G37*

-G36*

-Y297279D02*X440369Y297369D01*

-X439801Y297855D01*

-X439163Y298245D01*

-X438472Y298531D01*

-X437745Y298706D01*

-X437000Y298765D01*

-X436255Y298706D01*

-X435528Y298531D01*

-X434837Y298245D01*

-X434446Y298006D01*

-Y319994D01*

-X434837Y319755D01*

-X435528Y319469D01*

-X436255Y319294D01*

-X437000Y319235D01*

-X437745Y319294D01*

-X438472Y319469D01*

-X439163Y319755D01*

-X439801Y320145D01*

-X440369Y320631D01*

-X440446Y320721D01*

-Y297279D01*

-G37*

-G36*

-Y267279D02*X440369Y267369D01*

-X439801Y267855D01*

-X439163Y268245D01*

-X438472Y268531D01*

-X437745Y268706D01*

-X437000Y268765D01*

-X436255Y268706D01*

-X435528Y268531D01*

-X434837Y268245D01*

-X434446Y268006D01*

-Y289994D01*

-X434837Y289755D01*

-X435528Y289469D01*

-X436255Y289294D01*

-X437000Y289235D01*

-X437745Y289294D01*

-X438472Y289469D01*

-X439163Y289755D01*

-X439801Y290145D01*

-X440369Y290631D01*

-X440446Y290721D01*

-Y267279D01*

-G37*

-G36*

-Y237279D02*X440369Y237369D01*

-X439801Y237855D01*

-X439163Y238245D01*

-X438472Y238531D01*

-X437745Y238706D01*

-X437000Y238765D01*

-X436255Y238706D01*

-X435528Y238531D01*

-X434837Y238245D01*

-X434446Y238006D01*

-Y259994D01*

-X434837Y259755D01*

-X435528Y259469D01*

-X436255Y259294D01*

-X437000Y259235D01*

-X437745Y259294D01*

-X438472Y259469D01*

-X439163Y259755D01*

-X439801Y260145D01*

-X440369Y260631D01*

-X440446Y260721D01*

-Y237279D01*

-G37*

-G36*

-Y207279D02*X440369Y207369D01*

-X439801Y207855D01*

-X439163Y208245D01*

-X438472Y208531D01*

-X437745Y208706D01*

-X437000Y208765D01*

-X436255Y208706D01*

-X435528Y208531D01*

-X434837Y208245D01*

-X434446Y208006D01*

-Y229994D01*

-X434837Y229755D01*

-X435528Y229469D01*

-X436255Y229294D01*

-X437000Y229235D01*

-X437745Y229294D01*

-X438472Y229469D01*

-X439163Y229755D01*

-X439801Y230145D01*

-X440369Y230631D01*

-X440446Y230721D01*

-Y207279D01*

-G37*

-G36*

-Y177279D02*X440369Y177369D01*

-X439801Y177855D01*

-X439163Y178245D01*

-X438472Y178531D01*

-X437745Y178706D01*

-X437000Y178765D01*

-X436255Y178706D01*

-X435528Y178531D01*

-X434837Y178245D01*

-X434446Y178006D01*

-Y199994D01*

-X434837Y199755D01*

-X435528Y199469D01*

-X436255Y199294D01*

-X437000Y199235D01*

-X437745Y199294D01*

-X438472Y199469D01*

-X439163Y199755D01*

-X439801Y200145D01*

-X440369Y200631D01*

-X440446Y200721D01*

-Y177279D01*

-G37*

-G36*

-Y154000D02*X434446D01*

-Y169994D01*

-X434837Y169755D01*

-X435528Y169469D01*

-X436255Y169294D01*

-X437000Y169235D01*

-X437745Y169294D01*

-X438472Y169469D01*

-X439163Y169755D01*

-X439801Y170145D01*

-X440369Y170631D01*

-X440446Y170721D01*

-Y154000D01*

-G37*

-G36*

-Y39000D02*X434446D01*

-Y54695D01*

-X434449Y54694D01*

-X434731Y54717D01*

-X435007Y54783D01*

-X435269Y54891D01*

-X435510Y55039D01*

-X435726Y55223D01*

-X435910Y55439D01*

-X436058Y55680D01*

-X436166Y55942D01*

-X436232Y56218D01*

-X436249Y56500D01*

-X436232Y56782D01*

-X436166Y57058D01*

-X436058Y57320D01*

-X435910Y57561D01*

-X435726Y57777D01*

-X435510Y57961D01*

-X435269Y58109D01*

-X435007Y58217D01*

-X434731Y58283D01*

-X434449Y58306D01*

-X434446Y58305D01*

-Y67000D01*

-X440446D01*

-Y58305D01*

-X440167Y58283D01*

-X439891Y58217D01*

-X439629Y58109D01*

-X439388Y57961D01*

-X439172Y57777D01*

-X438988Y57561D01*

-X438840Y57320D01*

-X438732Y57058D01*

-X438666Y56782D01*

-X438643Y56500D01*

-X438666Y56218D01*

-X438732Y55942D01*

-X438840Y55680D01*

-X438988Y55439D01*

-X439172Y55223D01*

-X439388Y55039D01*

-X439629Y54891D01*

-X439891Y54783D01*

-X440167Y54717D01*

-X440446Y54695D01*

-Y39000D01*

-G37*

-G36*

-X434446Y154000D02*X426993D01*

-Y169236D01*

-X427000Y169235D01*

-X427745Y169294D01*

-X428472Y169469D01*

-X429163Y169755D01*

-X429801Y170145D01*

-X430369Y170631D01*

-X430855Y171199D01*

-X431245Y171837D01*

-X431531Y172528D01*

-X431706Y173255D01*

-X431750Y174000D01*

-X431706Y174745D01*

-X431531Y175472D01*

-X431245Y176163D01*

-X430855Y176801D01*

-X430369Y177369D01*

-X429801Y177855D01*

-X429163Y178245D01*

-X428472Y178531D01*

-X427745Y178706D01*

-X427000Y178765D01*

-X426993Y178764D01*

-Y199236D01*

-X427000Y199235D01*

-X427745Y199294D01*

-X428472Y199469D01*

-X429163Y199755D01*

-X429801Y200145D01*

-X430369Y200631D01*

-X430855Y201199D01*

-X431245Y201837D01*

-X431531Y202528D01*

-X431706Y203255D01*

-X431750Y204000D01*

-X431706Y204745D01*

-X431531Y205472D01*

-X431245Y206163D01*

-X430855Y206801D01*

-X430369Y207369D01*

-X429801Y207855D01*

-X429163Y208245D01*

-X428472Y208531D01*

-X427745Y208706D01*

-X427000Y208765D01*

-X426993Y208764D01*

-Y229236D01*

-X427000Y229235D01*

-X427745Y229294D01*

-X428472Y229469D01*

-X429163Y229755D01*

-X429801Y230145D01*

-X430369Y230631D01*

-X430855Y231199D01*

-X431245Y231837D01*

-X431531Y232528D01*

-X431706Y233255D01*

-X431750Y234000D01*

-X431706Y234745D01*

-X431531Y235472D01*

-X431245Y236163D01*

-X430855Y236801D01*

-X430369Y237369D01*

-X429801Y237855D01*

-X429163Y238245D01*

-X428472Y238531D01*

-X427745Y238706D01*

-X427000Y238765D01*

-X426993Y238764D01*

-Y259236D01*

-X427000Y259235D01*

-X427745Y259294D01*

-X428472Y259469D01*

-X429163Y259755D01*

-X429801Y260145D01*

-X430369Y260631D01*

-X430855Y261199D01*

-X431245Y261837D01*

-X431531Y262528D01*

-X431706Y263255D01*

-X431750Y264000D01*

-X431706Y264745D01*

-X431531Y265472D01*

-X431245Y266163D01*

-X430855Y266801D01*

-X430369Y267369D01*

-X429801Y267855D01*

-X429163Y268245D01*

-X428472Y268531D01*

-X427745Y268706D01*

-X427000Y268765D01*

-X426993Y268764D01*

-Y289236D01*

-X427000Y289235D01*

-X427745Y289294D01*

-X428472Y289469D01*

-X429163Y289755D01*

-X429801Y290145D01*

-X430369Y290631D01*

-X430855Y291199D01*

-X431245Y291837D01*

-X431531Y292528D01*

-X431706Y293255D01*

-X431750Y294000D01*

-X431706Y294745D01*

-X431531Y295472D01*

-X431245Y296163D01*

-X430855Y296801D01*

-X430369Y297369D01*

-X429801Y297855D01*

-X429163Y298245D01*

-X428472Y298531D01*

-X427745Y298706D01*

-X427000Y298765D01*

-X426993Y298764D01*

-Y319236D01*

-X427000Y319235D01*

-X427745Y319294D01*

-X428472Y319469D01*

-X429163Y319755D01*

-X429801Y320145D01*

-X430369Y320631D01*

-X430855Y321199D01*

-X431245Y321837D01*

-X431531Y322528D01*

-X431706Y323255D01*

-X431750Y324000D01*

-X431706Y324745D01*

-X431531Y325472D01*

-X431245Y326163D01*

-X430855Y326801D01*

-X430369Y327369D01*

-X429801Y327855D01*

-X429163Y328245D01*

-X428472Y328531D01*

-X427745Y328706D01*

-X427000Y328765D01*

-X426993Y328764D01*

-Y349236D01*

-X427000Y349235D01*

-X427745Y349294D01*

-X428472Y349469D01*

-X429163Y349755D01*

-X429801Y350145D01*

-X430369Y350631D01*

-X430855Y351199D01*

-X431245Y351837D01*

-X431531Y352528D01*

-X431706Y353255D01*

-X431750Y354000D01*

-X431706Y354745D01*

-X431531Y355472D01*

-X431245Y356163D01*

-X430855Y356801D01*

-X430369Y357369D01*

-X429801Y357855D01*

-X429163Y358245D01*

-X428472Y358531D01*

-X427745Y358706D01*

-X427000Y358765D01*

-X426993Y358764D01*

-Y379236D01*

-X427000Y379235D01*

-X427745Y379294D01*

-X428472Y379469D01*

-X429163Y379755D01*

-X429801Y380145D01*

-X430369Y380631D01*

-X430855Y381199D01*

-X431245Y381837D01*

-X431531Y382528D01*

-X431706Y383255D01*

-X431750Y384000D01*

-X431706Y384745D01*

-X431531Y385472D01*

-X431245Y386163D01*

-X430855Y386801D01*

-X430369Y387369D01*

-X429801Y387855D01*

-X429163Y388245D01*

-X428472Y388531D01*

-X427745Y388706D01*

-X427000Y388765D01*

-X426993Y388764D01*

-Y397000D01*

-X434446D01*

-Y388006D01*

-X434199Y387855D01*

-X433631Y387369D01*

-X433145Y386801D01*

-X432755Y386163D01*

-X432469Y385472D01*

-X432294Y384745D01*

-X432235Y384000D01*

-X432294Y383255D01*

-X432469Y382528D01*

-X432755Y381837D01*

-X433145Y381199D01*

-X433631Y380631D01*

-X434199Y380145D01*

-X434446Y379994D01*

-Y358006D01*

-X434199Y357855D01*

-X433631Y357369D01*

-X433145Y356801D01*

-X432755Y356163D01*

-X432469Y355472D01*

-X432294Y354745D01*

-X432235Y354000D01*

-X432294Y353255D01*

-X432469Y352528D01*

-X432755Y351837D01*

-X433145Y351199D01*

-X433631Y350631D01*

-X434199Y350145D01*

-X434446Y349994D01*

-Y328006D01*

-X434199Y327855D01*

-X433631Y327369D01*

-X433145Y326801D01*

-X432755Y326163D01*

-X432469Y325472D01*

-X432294Y324745D01*

-X432235Y324000D01*

-X432294Y323255D01*

-X432469Y322528D01*

-X432755Y321837D01*

-X433145Y321199D01*

-X433631Y320631D01*

-X434199Y320145D01*

-X434446Y319994D01*

-Y298006D01*

-X434199Y297855D01*

-X433631Y297369D01*

-X433145Y296801D01*

-X432755Y296163D01*

-X432469Y295472D01*

-X432294Y294745D01*

-X432235Y294000D01*

-X432294Y293255D01*

-X432469Y292528D01*

-X432755Y291837D01*

-X433145Y291199D01*

-X433631Y290631D01*

-X434199Y290145D01*

-X434446Y289994D01*

-Y268006D01*

-X434199Y267855D01*

-X433631Y267369D01*

-X433145Y266801D01*

-X432755Y266163D01*

-X432469Y265472D01*

-X432294Y264745D01*

-X432235Y264000D01*

-X432294Y263255D01*

-X432469Y262528D01*

-X432755Y261837D01*

-X433145Y261199D01*

-X433631Y260631D01*

-X434199Y260145D01*

-X434446Y259994D01*

-Y238006D01*

-X434199Y237855D01*

-X433631Y237369D01*

-X433145Y236801D01*

-X432755Y236163D01*

-X432469Y235472D01*

-X432294Y234745D01*

-X432235Y234000D01*

-X432294Y233255D01*

-X432469Y232528D01*

-X432755Y231837D01*

-X433145Y231199D01*

-X433631Y230631D01*

-X434199Y230145D01*

-X434446Y229994D01*

-Y208006D01*

-X434199Y207855D01*

-X433631Y207369D01*

-X433145Y206801D01*

-X432755Y206163D01*

-X432469Y205472D01*

-X432294Y204745D01*

-X432235Y204000D01*

-X432294Y203255D01*

-X432469Y202528D01*

-X432755Y201837D01*

-X433145Y201199D01*

-X433631Y200631D01*

-X434199Y200145D01*

-X434446Y199994D01*

-Y178006D01*

-X434199Y177855D01*

-X433631Y177369D01*

-X433145Y176801D01*

-X432755Y176163D01*

-X432469Y175472D01*

-X432294Y174745D01*

-X432235Y174000D01*

-X432294Y173255D01*

-X432469Y172528D01*

-X432755Y171837D01*

-X433145Y171199D01*

-X433631Y170631D01*

-X434199Y170145D01*

-X434446Y169994D01*

-Y154000D01*

-G37*

-G36*

-X426993D02*X420832D01*

-Y171670D01*

-X420943Y171704D01*

-X421050Y171756D01*

-X421146Y171823D01*

-X421231Y171905D01*

-X421302Y172000D01*

-X421356Y172105D01*

-X421515Y172508D01*

-X421632Y172925D01*

-X421711Y173352D01*

-X421750Y173783D01*

-Y174217D01*

-X421711Y174648D01*

-X421632Y175075D01*

-X421515Y175492D01*

-X421360Y175897D01*

-X421305Y176002D01*

-X421234Y176097D01*

-X421148Y176179D01*

-X421051Y176247D01*

-X420945Y176299D01*

-X420832Y176334D01*

-Y201670D01*

-X420943Y201704D01*

-X421050Y201756D01*

-X421146Y201823D01*

-X421231Y201905D01*

-X421302Y202000D01*

-X421356Y202105D01*

-X421515Y202508D01*

-X421632Y202925D01*

-X421711Y203352D01*

-X421750Y203783D01*

-Y204217D01*

-X421711Y204648D01*

-X421632Y205075D01*

-X421515Y205492D01*

-X421360Y205897D01*

-X421305Y206002D01*

-X421234Y206097D01*

-X421148Y206179D01*

-X421051Y206247D01*

-X420945Y206299D01*

-X420832Y206334D01*

-Y231670D01*

-X420943Y231704D01*

-X421050Y231756D01*

-X421146Y231823D01*

-X421231Y231905D01*

-X421302Y232000D01*

-X421356Y232105D01*

-X421515Y232508D01*

-X421632Y232925D01*

-X421711Y233352D01*

-X421750Y233783D01*

-Y234217D01*

-X421711Y234648D01*

-X421632Y235075D01*

-X421515Y235492D01*

-X421360Y235897D01*

-X421305Y236002D01*

-X421234Y236097D01*

-X421148Y236179D01*

-X421051Y236247D01*

-X420945Y236299D01*

-X420832Y236334D01*

-Y261670D01*

-X420943Y261704D01*

-X421050Y261756D01*

-X421146Y261823D01*

-X421231Y261905D01*

-X421302Y262000D01*

-X421356Y262105D01*

-X421515Y262508D01*

-X421632Y262925D01*

-X421711Y263352D01*

-X421750Y263783D01*

-Y264217D01*

-X421711Y264648D01*

-X421632Y265075D01*

-X421515Y265492D01*

-X421360Y265897D01*

-X421305Y266002D01*

-X421234Y266097D01*

-X421148Y266179D01*

-X421051Y266247D01*

-X420945Y266299D01*

-X420832Y266334D01*

-Y291670D01*

-X420943Y291704D01*

-X421050Y291756D01*

-X421146Y291823D01*

-X421231Y291905D01*

-X421302Y292000D01*

-X421356Y292105D01*

-X421515Y292508D01*

-X421632Y292925D01*

-X421711Y293352D01*

-X421750Y293783D01*

-Y294217D01*

-X421711Y294648D01*

-X421632Y295075D01*

-X421515Y295492D01*

-X421360Y295897D01*

-X421305Y296002D01*

-X421234Y296097D01*

-X421148Y296179D01*

-X421051Y296247D01*

-X420945Y296299D01*

-X420832Y296334D01*

-Y321670D01*

-X420943Y321704D01*

-X421050Y321756D01*

-X421146Y321823D01*

-X421231Y321905D01*

-X421302Y322000D01*

-X421356Y322105D01*

-X421515Y322508D01*

-X421632Y322925D01*

-X421711Y323352D01*

-X421750Y323783D01*

-Y324217D01*

-X421711Y324648D01*

-X421632Y325075D01*

-X421515Y325492D01*

-X421360Y325897D01*

-X421305Y326002D01*

-X421234Y326097D01*

-X421148Y326179D01*

-X421051Y326247D01*

-X420945Y326299D01*

-X420832Y326334D01*

-Y351670D01*

-X420943Y351704D01*

-X421050Y351756D01*

-X421146Y351823D01*

-X421231Y351905D01*

-X421302Y352000D01*

-X421356Y352105D01*

-X421515Y352508D01*

-X421632Y352925D01*

-X421711Y353352D01*

-X421750Y353783D01*

-Y354217D01*

-X421711Y354648D01*

-X421632Y355075D01*

-X421515Y355492D01*

-X421360Y355897D01*

-X421305Y356002D01*

-X421234Y356097D01*

-X421148Y356179D01*

-X421051Y356247D01*

-X420945Y356299D01*

-X420832Y356334D01*

-Y381670D01*

-X420943Y381704D01*

-X421050Y381756D01*

-X421146Y381823D01*

-X421231Y381905D01*

-X421302Y382000D01*

-X421356Y382105D01*

-X421515Y382508D01*

-X421632Y382925D01*

-X421711Y383352D01*

-X421750Y383783D01*

-Y384217D01*

-X421711Y384648D01*

-X421632Y385075D01*

-X421515Y385492D01*

-X421360Y385897D01*

-X421305Y386002D01*

-X421234Y386097D01*

-X421148Y386179D01*

-X421051Y386247D01*

-X420945Y386299D01*

-X420832Y386334D01*

-Y397000D01*

-X426993D01*

-Y388764D01*

-X426255Y388706D01*

-X425528Y388531D01*

-X424837Y388245D01*

-X424199Y387855D01*

-X423631Y387369D01*

-X423145Y386801D01*

-X422755Y386163D01*

-X422469Y385472D01*

-X422294Y384745D01*

-X422235Y384000D01*

-X422294Y383255D01*

-X422469Y382528D01*

-X422755Y381837D01*

-X423145Y381199D01*

-X423631Y380631D01*

-X424199Y380145D01*

-X424837Y379755D01*

-X425528Y379469D01*

-X426255Y379294D01*

-X426993Y379236D01*

-Y358764D01*

-X426255Y358706D01*

-X425528Y358531D01*

-X424837Y358245D01*

-X424199Y357855D01*

-X423631Y357369D01*

-X423145Y356801D01*

-X422755Y356163D01*

-X422469Y355472D01*

-X422294Y354745D01*

-X422235Y354000D01*

-X422294Y353255D01*

-X422469Y352528D01*

-X422755Y351837D01*

-X423145Y351199D01*

-X423631Y350631D01*

-X424199Y350145D01*

-X424837Y349755D01*

-X425528Y349469D01*

-X426255Y349294D01*

-X426993Y349236D01*

-Y328764D01*

-X426255Y328706D01*

-X425528Y328531D01*

-X424837Y328245D01*

-X424199Y327855D01*

-X423631Y327369D01*

-X423145Y326801D01*

-X422755Y326163D01*

-X422469Y325472D01*

-X422294Y324745D01*

-X422235Y324000D01*

-X422294Y323255D01*

-X422469Y322528D01*

-X422755Y321837D01*

-X423145Y321199D01*

-X423631Y320631D01*

-X424199Y320145D01*

-X424837Y319755D01*

-X425528Y319469D01*

-X426255Y319294D01*

-X426993Y319236D01*

-Y298764D01*

-X426255Y298706D01*

-X425528Y298531D01*

-X424837Y298245D01*

-X424199Y297855D01*

-X423631Y297369D01*

-X423145Y296801D01*

-X422755Y296163D01*

-X422469Y295472D01*

-X422294Y294745D01*

-X422235Y294000D01*

-X422294Y293255D01*

-X422469Y292528D01*

-X422755Y291837D01*

-X423145Y291199D01*

-X423631Y290631D01*

-X424199Y290145D01*

-X424837Y289755D01*

-X425528Y289469D01*

-X426255Y289294D01*

-X426993Y289236D01*

-Y268764D01*

-X426255Y268706D01*

-X425528Y268531D01*

-X424837Y268245D01*

-X424199Y267855D01*

-X423631Y267369D01*

-X423145Y266801D01*

-X422755Y266163D01*

-X422469Y265472D01*

-X422294Y264745D01*

-X422235Y264000D01*

-X422294Y263255D01*

-X422469Y262528D01*

-X422755Y261837D01*

-X423145Y261199D01*

-X423631Y260631D01*

-X424199Y260145D01*

-X424837Y259755D01*

-X425528Y259469D01*

-X426255Y259294D01*

-X426993Y259236D01*

-Y238764D01*

-X426255Y238706D01*

-X425528Y238531D01*

-X424837Y238245D01*

-X424199Y237855D01*

-X423631Y237369D01*

-X423145Y236801D01*

-X422755Y236163D01*

-X422469Y235472D01*

-X422294Y234745D01*

-X422235Y234000D01*

-X422294Y233255D01*

-X422469Y232528D01*

-X422755Y231837D01*

-X423145Y231199D01*

-X423631Y230631D01*

-X424199Y230145D01*

-X424837Y229755D01*

-X425528Y229469D01*

-X426255Y229294D01*

-X426993Y229236D01*

-Y208764D01*

-X426255Y208706D01*

-X425528Y208531D01*

-X424837Y208245D01*

-X424199Y207855D01*

-X423631Y207369D01*

-X423145Y206801D01*

-X422755Y206163D01*

-X422469Y205472D01*

-X422294Y204745D01*

-X422235Y204000D01*

-X422294Y203255D01*

-X422469Y202528D01*

-X422755Y201837D01*

-X423145Y201199D01*

-X423631Y200631D01*

-X424199Y200145D01*

-X424837Y199755D01*

-X425528Y199469D01*

-X426255Y199294D01*

-X426993Y199236D01*

-Y178764D01*

-X426255Y178706D01*

-X425528Y178531D01*

-X424837Y178245D01*

-X424199Y177855D01*

-X423631Y177369D01*

-X423145Y176801D01*

-X422755Y176163D01*

-X422469Y175472D01*

-X422294Y174745D01*

-X422235Y174000D01*

-X422294Y173255D01*

-X422469Y172528D01*

-X422755Y171837D01*

-X423145Y171199D01*

-X423631Y170631D01*

-X424199Y170145D01*

-X424837Y169755D01*

-X425528Y169469D01*

-X426255Y169294D01*

-X426993Y169236D01*

-Y154000D01*

-G37*

-G36*

-X420832D02*X417002D01*

-Y169250D01*

-X417217D01*

-X417648Y169289D01*

-X418075Y169368D01*

-X418492Y169485D01*

-X418897Y169640D01*

-X419002Y169695D01*

-X419097Y169766D01*

-X419179Y169852D01*

-X419247Y169949D01*

-X419299Y170055D01*

-X419334Y170169D01*

-X419350Y170286D01*

-X419348Y170405D01*

-X419327Y170522D01*

-X419289Y170634D01*

-X419233Y170738D01*

-X419162Y170833D01*

-X419076Y170915D01*

-X418979Y170983D01*

-X418873Y171035D01*

-X418759Y171070D01*

-X418642Y171086D01*

-X418523Y171084D01*

-X418406Y171064D01*

-X418295Y171023D01*

-X418020Y170914D01*

-X417735Y170834D01*

-X417443Y170780D01*

-X417148Y170753D01*

-X417002D01*

-Y177247D01*

-X417148D01*

-X417443Y177220D01*

-X417735Y177166D01*

-X418020Y177086D01*

-X418297Y176980D01*

-X418407Y176940D01*

-X418524Y176919D01*

-X418642Y176917D01*

-X418759Y176933D01*

-X418871Y176968D01*

-X418978Y177020D01*

-X419074Y177087D01*

-X419159Y177169D01*

-X419230Y177263D01*

-X419286Y177368D01*

-X419324Y177479D01*

-X419345Y177596D01*

-X419347Y177714D01*

-X419330Y177830D01*

-X419296Y177943D01*

-X419244Y178050D01*

-X419177Y178146D01*

-X419095Y178231D01*

-X419000Y178302D01*

-X418895Y178356D01*

-X418492Y178515D01*

-X418075Y178632D01*

-X417648Y178711D01*

-X417217Y178750D01*

-X417002D01*

-Y199250D01*

-X417217D01*

-X417648Y199289D01*

-X418075Y199368D01*

-X418492Y199485D01*

-X418897Y199640D01*

-X419002Y199695D01*

-X419097Y199766D01*

-X419179Y199852D01*

-X419247Y199949D01*

-X419299Y200055D01*

-X419334Y200169D01*

-X419350Y200286D01*

-X419348Y200405D01*

-X419327Y200522D01*

-X419289Y200634D01*

-X419233Y200738D01*

-X419162Y200833D01*

-X419076Y200915D01*

-X418979Y200983D01*

-X418873Y201035D01*

-X418759Y201070D01*

-X418642Y201086D01*

-X418523Y201084D01*

-X418406Y201064D01*

-X418295Y201023D01*

-X418020Y200914D01*

-X417735Y200834D01*

-X417443Y200780D01*

-X417148Y200753D01*

-X417002D01*

-Y207247D01*

-X417148D01*

-X417443Y207220D01*

-X417735Y207166D01*

-X418020Y207086D01*

-X418297Y206980D01*

-X418407Y206940D01*

-X418524Y206919D01*

-X418642Y206917D01*

-X418759Y206933D01*

-X418871Y206968D01*

-X418978Y207020D01*

-X419074Y207087D01*

-X419159Y207169D01*

-X419230Y207263D01*

-X419286Y207368D01*

-X419324Y207479D01*

-X419345Y207596D01*

-X419347Y207714D01*

-X419330Y207830D01*

-X419296Y207943D01*

-X419244Y208050D01*

-X419177Y208146D01*

-X419095Y208231D01*

-X419000Y208302D01*

-X418895Y208356D01*

-X418492Y208515D01*

-X418075Y208632D01*

-X417648Y208711D01*

-X417217Y208750D01*

-X417002D01*

-Y229250D01*

-X417217D01*

-X417648Y229289D01*

-X418075Y229368D01*

-X418492Y229485D01*

-X418897Y229640D01*

-X419002Y229695D01*

-X419097Y229766D01*

-X419179Y229852D01*

-X419247Y229949D01*

-X419299Y230055D01*

-X419334Y230169D01*

-X419350Y230286D01*

-X419348Y230405D01*

-X419327Y230522D01*

-X419289Y230634D01*

-X419233Y230738D01*

-X419162Y230833D01*

-X419076Y230915D01*

-X418979Y230983D01*

-X418873Y231035D01*

-X418759Y231070D01*

-X418642Y231086D01*

-X418523Y231084D01*

-X418406Y231064D01*

-X418295Y231023D01*

-X418020Y230914D01*

-X417735Y230834D01*

-X417443Y230780D01*

-X417148Y230753D01*

-X417002D01*

-Y237247D01*

-X417148D01*

-X417443Y237220D01*

-X417735Y237166D01*

-X418020Y237086D01*

-X418297Y236980D01*

-X418407Y236940D01*

-X418524Y236919D01*

-X418642Y236917D01*

-X418759Y236933D01*

-X418871Y236968D01*

-X418978Y237020D01*

-X419074Y237087D01*

-X419159Y237169D01*

-X419230Y237263D01*

-X419286Y237368D01*

-X419324Y237479D01*

-X419345Y237596D01*

-X419347Y237714D01*

-X419330Y237830D01*

-X419296Y237943D01*

-X419244Y238050D01*

-X419177Y238146D01*

-X419095Y238231D01*

-X419000Y238302D01*

-X418895Y238356D01*

-X418492Y238515D01*

-X418075Y238632D01*

-X417648Y238711D01*

-X417217Y238750D01*

-X417002D01*

-Y259250D01*

-X417217D01*

-X417648Y259289D01*

-X418075Y259368D01*

-X418492Y259485D01*

-X418897Y259640D01*

-X419002Y259695D01*

-X419097Y259766D01*

-X419179Y259852D01*

-X419247Y259949D01*

-X419299Y260055D01*

-X419334Y260169D01*

-X419350Y260286D01*

-X419348Y260405D01*

-X419327Y260522D01*

-X419289Y260634D01*

-X419233Y260738D01*

-X419162Y260833D01*

-X419076Y260915D01*

-X418979Y260983D01*

-X418873Y261035D01*

-X418759Y261070D01*

-X418642Y261086D01*

-X418523Y261084D01*

-X418406Y261064D01*

-X418295Y261023D01*

-X418020Y260914D01*

-X417735Y260834D01*

-X417443Y260780D01*

-X417148Y260753D01*

-X417002D01*

-Y267247D01*

-X417148D01*

-X417443Y267220D01*

-X417735Y267166D01*

-X418020Y267086D01*

-X418297Y266980D01*

-X418407Y266940D01*

-X418524Y266919D01*

-X418642Y266917D01*

-X418759Y266933D01*

-X418871Y266968D01*

-X418978Y267020D01*

-X419074Y267087D01*

-X419159Y267169D01*

-X419230Y267263D01*

-X419286Y267368D01*

-X419324Y267479D01*

-X419345Y267596D01*

-X419347Y267714D01*

-X419330Y267830D01*

-X419296Y267943D01*

-X419244Y268050D01*

-X419177Y268146D01*

-X419095Y268231D01*

-X419000Y268302D01*

-X418895Y268356D01*

-X418492Y268515D01*

-X418075Y268632D01*

-X417648Y268711D01*

-X417217Y268750D01*

-X417002D01*

-Y289250D01*

-X417217D01*

-X417648Y289289D01*

-X418075Y289368D01*

-X418492Y289485D01*

-X418897Y289640D01*

-X419002Y289695D01*

-X419097Y289766D01*

-X419179Y289852D01*

-X419247Y289949D01*

-X419299Y290055D01*

-X419334Y290169D01*

-X419350Y290286D01*

-X419348Y290405D01*

-X419327Y290522D01*

-X419289Y290634D01*

-X419233Y290738D01*

-X419162Y290833D01*

-X419076Y290915D01*

-X418979Y290983D01*

-X418873Y291035D01*

-X418759Y291070D01*

-X418642Y291086D01*

-X418523Y291084D01*

-X418406Y291064D01*

-X418295Y291023D01*

-X418020Y290914D01*

-X417735Y290834D01*

-X417443Y290780D01*

-X417148Y290753D01*

-X417002D01*

-Y297247D01*

-X417148D01*

-X417443Y297220D01*

-X417735Y297166D01*

-X418020Y297086D01*

-X418297Y296980D01*

-X418407Y296940D01*

-X418524Y296919D01*

-X418642Y296917D01*

-X418759Y296933D01*

-X418871Y296968D01*

-X418978Y297020D01*

-X419074Y297087D01*

-X419159Y297169D01*

-X419230Y297263D01*

-X419286Y297368D01*

-X419324Y297479D01*

-X419345Y297596D01*

-X419347Y297714D01*

-X419330Y297830D01*

-X419296Y297943D01*

-X419244Y298050D01*

-X419177Y298146D01*

-X419095Y298231D01*

-X419000Y298302D01*

-X418895Y298356D01*

-X418492Y298515D01*

-X418075Y298632D01*

-X417648Y298711D01*

-X417217Y298750D01*

-X417002D01*

-Y319250D01*

-X417217D01*

-X417648Y319289D01*

-X418075Y319368D01*

-X418492Y319485D01*

-X418897Y319640D01*

-X419002Y319695D01*

-X419097Y319766D01*

-X419179Y319852D01*

-X419247Y319949D01*

-X419299Y320055D01*

-X419334Y320169D01*

-X419350Y320286D01*

-X419348Y320405D01*

-X419327Y320522D01*

-X419289Y320634D01*

-X419233Y320738D01*

-X419162Y320833D01*

-X419076Y320915D01*

-X418979Y320983D01*

-X418873Y321035D01*

-X418759Y321070D01*

-X418642Y321086D01*

-X418523Y321084D01*

-X418406Y321064D01*

-X418295Y321023D01*

-X418020Y320914D01*

-X417735Y320834D01*

-X417443Y320780D01*

-X417148Y320753D01*

-X417002D01*

-Y327247D01*

-X417148D01*

-X417443Y327220D01*

-X417735Y327166D01*

-X418020Y327086D01*

-X418297Y326980D01*

-X418407Y326940D01*

-X418524Y326919D01*

-X418642Y326917D01*

-X418759Y326933D01*

-X418871Y326968D01*

-X418978Y327020D01*

-X419074Y327087D01*

-X419159Y327169D01*

-X419230Y327263D01*

-X419286Y327368D01*

-X419324Y327479D01*

-X419345Y327596D01*

-X419347Y327714D01*

-X419330Y327830D01*

-X419296Y327943D01*

-X419244Y328050D01*

-X419177Y328146D01*

-X419095Y328231D01*

-X419000Y328302D01*

-X418895Y328356D01*

-X418492Y328515D01*

-X418075Y328632D01*

-X417648Y328711D01*

-X417217Y328750D01*

-X417002D01*

-Y349250D01*

-X417217D01*

-X417648Y349289D01*

-X418075Y349368D01*

-X418492Y349485D01*

-X418897Y349640D01*

-X419002Y349695D01*

-X419097Y349766D01*

-X419179Y349852D01*

-X419247Y349949D01*

-X419299Y350055D01*

-X419334Y350169D01*

-X419350Y350286D01*

-X419348Y350405D01*

-X419327Y350522D01*

-X419289Y350634D01*

-X419233Y350738D01*

-X419162Y350833D01*

-X419076Y350915D01*

-X418979Y350983D01*

-X418873Y351035D01*

-X418759Y351070D01*

-X418642Y351086D01*

-X418523Y351084D01*

-X418406Y351064D01*

-X418295Y351023D01*

-X418020Y350914D01*

-X417735Y350834D01*

-X417443Y350780D01*

-X417148Y350753D01*

-X417002D01*

-Y357247D01*

-X417148D01*

-X417443Y357220D01*

-X417735Y357166D01*

-X418020Y357086D01*

-X418297Y356980D01*

-X418407Y356940D01*

-X418524Y356919D01*

-X418642Y356917D01*

-X418759Y356933D01*

-X418871Y356968D01*

-X418978Y357020D01*

-X419074Y357087D01*

-X419159Y357169D01*

-X419230Y357263D01*

-X419286Y357368D01*

-X419324Y357479D01*

-X419345Y357596D01*

-X419347Y357714D01*

-X419330Y357830D01*

-X419296Y357943D01*

-X419244Y358050D01*

-X419177Y358146D01*

-X419095Y358231D01*

-X419000Y358302D01*

-X418895Y358356D01*

-X418492Y358515D01*

-X418075Y358632D01*

-X417648Y358711D01*

-X417217Y358750D01*

-X417002D01*

-Y379250D01*

-X417217D01*

-X417648Y379289D01*

-X418075Y379368D01*

-X418492Y379485D01*

-X418897Y379640D01*

-X419002Y379695D01*

-X419097Y379766D01*

-X419179Y379852D01*

-X419247Y379949D01*

-X419299Y380055D01*

-X419334Y380169D01*

-X419350Y380286D01*

-X419348Y380405D01*

-X419327Y380522D01*

-X419289Y380634D01*

-X419233Y380738D01*

-X419162Y380833D01*

-X419076Y380915D01*

-X418979Y380983D01*

-X418873Y381035D01*

-X418759Y381070D01*

-X418642Y381086D01*

-X418523Y381084D01*

-X418406Y381064D01*

-X418295Y381023D01*

-X418020Y380914D01*

-X417735Y380834D01*

-X417443Y380780D01*

-X417148Y380753D01*

-X417002D01*

-Y387247D01*

-X417148D01*

-X417443Y387220D01*

-X417735Y387166D01*

-X418020Y387086D01*

-X418297Y386980D01*

-X418407Y386940D01*

-X418524Y386919D01*

-X418642Y386917D01*

-X418759Y386933D01*

-X418871Y386968D01*

-X418978Y387020D01*

-X419074Y387087D01*

-X419159Y387169D01*

-X419230Y387263D01*

-X419286Y387368D01*

-X419324Y387479D01*

-X419345Y387596D01*

-X419347Y387714D01*

-X419330Y387830D01*

-X419296Y387943D01*

-X419244Y388050D01*

-X419177Y388146D01*

-X419095Y388231D01*

-X419000Y388302D01*

-X418895Y388356D01*

-X418492Y388515D01*

-X418075Y388632D01*

-X417648Y388711D01*

-X417217Y388750D01*

-X417002D01*

-Y397000D01*

-X420832D01*

-Y386334D01*

-X420831Y386334D01*

-X420714Y386350D01*

-X420595Y386348D01*

-X420478Y386327D01*

-X420366Y386289D01*

-X420262Y386233D01*

-X420167Y386162D01*

-X420085Y386076D01*

-X420017Y385979D01*

-X419965Y385873D01*

-X419930Y385759D01*

-X419914Y385642D01*

-X419916Y385523D01*

-X419936Y385407D01*

-X419977Y385295D01*

-X420086Y385020D01*

-X420166Y384735D01*

-X420220Y384443D01*

-X420247Y384148D01*

-Y383852D01*

-X420220Y383557D01*

-X420166Y383265D01*

-X420086Y382980D01*

-X419980Y382703D01*

-X419940Y382593D01*

-X419919Y382476D01*

-X419917Y382358D01*

-X419933Y382241D01*

-X419968Y382129D01*

-X420020Y382022D01*

-X420087Y381926D01*

-X420169Y381841D01*

-X420263Y381770D01*

-X420368Y381714D01*

-X420479Y381676D01*

-X420596Y381655D01*

-X420714Y381653D01*

-X420830Y381670D01*

-X420832Y381670D01*

-Y356334D01*

-X420831Y356334D01*

-X420714Y356350D01*

-X420595Y356348D01*

-X420478Y356327D01*

-X420366Y356289D01*

-X420262Y356233D01*

-X420167Y356162D01*

-X420085Y356076D01*

-X420017Y355979D01*

-X419965Y355873D01*

-X419930Y355759D01*

-X419914Y355642D01*

-X419916Y355523D01*

-X419936Y355407D01*

-X419977Y355295D01*

-X420086Y355020D01*

-X420166Y354735D01*

-X420220Y354443D01*

-X420247Y354148D01*

-Y353852D01*

-X420220Y353557D01*

-X420166Y353265D01*

-X420086Y352980D01*

-X419980Y352703D01*

-X419940Y352593D01*

-X419919Y352476D01*

-X419917Y352358D01*

-X419933Y352241D01*

-X419968Y352129D01*

-X420020Y352022D01*

-X420087Y351926D01*

-X420169Y351841D01*

-X420263Y351770D01*

-X420368Y351714D01*

-X420479Y351676D01*

-X420596Y351655D01*

-X420714Y351653D01*

-X420830Y351670D01*

-X420832Y351670D01*

-Y326334D01*

-X420831Y326334D01*

-X420714Y326350D01*

-X420595Y326348D01*

-X420478Y326327D01*

-X420366Y326289D01*

-X420262Y326233D01*

-X420167Y326162D01*

-X420085Y326076D01*

-X420017Y325979D01*

-X419965Y325873D01*

-X419930Y325759D01*

-X419914Y325642D01*

-X419916Y325523D01*

-X419936Y325407D01*

-X419977Y325295D01*

-X420086Y325020D01*

-X420166Y324735D01*

-X420220Y324443D01*

-X420247Y324148D01*

-Y323852D01*

-X420220Y323557D01*

-X420166Y323265D01*

-X420086Y322980D01*

-X419980Y322703D01*

-X419940Y322593D01*

-X419919Y322476D01*

-X419917Y322358D01*

-X419933Y322241D01*

-X419968Y322129D01*

-X420020Y322022D01*

-X420087Y321926D01*

-X420169Y321841D01*

-X420263Y321770D01*

-X420368Y321714D01*

-X420479Y321676D01*

-X420596Y321655D01*

-X420714Y321653D01*

-X420830Y321670D01*

-X420832Y321670D01*

-Y296334D01*

-X420831Y296334D01*

-X420714Y296350D01*

-X420595Y296348D01*

-X420478Y296327D01*

-X420366Y296289D01*

-X420262Y296233D01*

-X420167Y296162D01*

-X420085Y296076D01*

-X420017Y295979D01*

-X419965Y295873D01*

-X419930Y295759D01*

-X419914Y295642D01*

-X419916Y295523D01*

-X419936Y295407D01*

-X419977Y295295D01*

-X420086Y295020D01*

-X420166Y294735D01*

-X420220Y294443D01*

-X420247Y294148D01*

-Y293852D01*

-X420220Y293557D01*

-X420166Y293265D01*

-X420086Y292980D01*

-X419980Y292703D01*

-X419940Y292593D01*

-X419919Y292476D01*

-X419917Y292358D01*

-X419933Y292241D01*

-X419968Y292129D01*

-X420020Y292022D01*

-X420087Y291926D01*

-X420169Y291841D01*

-X420263Y291770D01*

-X420368Y291714D01*

-X420479Y291676D01*

-X420596Y291655D01*

-X420714Y291653D01*

-X420830Y291670D01*

-X420832Y291670D01*

-Y266334D01*

-X420831Y266334D01*

-X420714Y266350D01*

-X420595Y266348D01*

-X420478Y266327D01*

-X420366Y266289D01*

-X420262Y266233D01*

-X420167Y266162D01*

-X420085Y266076D01*

-X420017Y265979D01*

-X419965Y265873D01*

-X419930Y265759D01*

-X419914Y265642D01*

-X419916Y265523D01*

-X419936Y265407D01*

-X419977Y265295D01*

-X420086Y265020D01*

-X420166Y264735D01*

-X420220Y264443D01*

-X420247Y264148D01*

-Y263852D01*

-X420220Y263557D01*

-X420166Y263265D01*

-X420086Y262980D01*

-X419980Y262703D01*

-X419940Y262593D01*

-X419919Y262476D01*

-X419917Y262358D01*

-X419933Y262241D01*

-X419968Y262129D01*

-X420020Y262022D01*

-X420087Y261926D01*

-X420169Y261841D01*

-X420263Y261770D01*

-X420368Y261714D01*

-X420479Y261676D01*

-X420596Y261655D01*

-X420714Y261653D01*

-X420830Y261670D01*

-X420832Y261670D01*

-Y236334D01*

-X420831Y236334D01*

-X420714Y236350D01*

-X420595Y236348D01*

-X420478Y236327D01*

-X420366Y236289D01*

-X420262Y236233D01*

-X420167Y236162D01*

-X420085Y236076D01*

-X420017Y235979D01*

-X419965Y235873D01*

-X419930Y235759D01*

-X419914Y235642D01*

-X419916Y235523D01*

-X419936Y235407D01*

-X419977Y235295D01*

-X420086Y235020D01*

-X420166Y234735D01*

-X420220Y234443D01*

-X420247Y234148D01*

-Y233852D01*

-X420220Y233557D01*

-X420166Y233265D01*

-X420086Y232980D01*

-X419980Y232703D01*

-X419940Y232593D01*

-X419919Y232476D01*

-X419917Y232358D01*

-X419933Y232241D01*

-X419968Y232129D01*

-X420020Y232022D01*

-X420087Y231926D01*

-X420169Y231841D01*

-X420263Y231770D01*

-X420368Y231714D01*

-X420479Y231676D01*

-X420596Y231655D01*

-X420714Y231653D01*

-X420830Y231670D01*

-X420832Y231670D01*

-Y206334D01*

-X420831Y206334D01*

-X420714Y206350D01*

-X420595Y206348D01*

-X420478Y206327D01*

-X420366Y206289D01*

-X420262Y206233D01*

-X420167Y206162D01*

-X420085Y206076D01*

-X420017Y205979D01*

-X419965Y205873D01*

-X419930Y205759D01*

-X419914Y205642D01*

-X419916Y205523D01*

-X419936Y205407D01*

-X419977Y205295D01*

-X420086Y205020D01*

-X420166Y204735D01*

-X420220Y204443D01*

-X420247Y204148D01*

-Y203852D01*

-X420220Y203557D01*

-X420166Y203265D01*

-X420086Y202980D01*

-X419980Y202703D01*

-X419940Y202593D01*

-X419919Y202476D01*

-X419917Y202358D01*

-X419933Y202241D01*

-X419968Y202129D01*

-X420020Y202022D01*

-X420087Y201926D01*

-X420169Y201841D01*

-X420263Y201770D01*

-X420368Y201714D01*

-X420479Y201676D01*

-X420596Y201655D01*

-X420714Y201653D01*

-X420830Y201670D01*

-X420832Y201670D01*

-Y176334D01*

-X420831Y176334D01*

-X420714Y176350D01*

-X420595Y176348D01*

-X420478Y176327D01*

-X420366Y176289D01*

-X420262Y176233D01*

-X420167Y176162D01*

-X420085Y176076D01*

-X420017Y175979D01*

-X419965Y175873D01*

-X419930Y175759D01*

-X419914Y175642D01*

-X419916Y175523D01*

-X419936Y175407D01*

-X419977Y175295D01*

-X420086Y175020D01*

-X420166Y174735D01*

-X420220Y174443D01*

-X420247Y174148D01*

-Y173852D01*

-X420220Y173557D01*

-X420166Y173265D01*

-X420086Y172980D01*

-X419980Y172703D01*

-X419940Y172593D01*

-X419919Y172476D01*

-X419917Y172358D01*

-X419933Y172241D01*

-X419968Y172129D01*

-X420020Y172022D01*

-X420087Y171926D01*

-X420169Y171841D01*

-X420263Y171770D01*

-X420368Y171714D01*

-X420479Y171676D01*

-X420596Y171655D01*

-X420714Y171653D01*

-X420830Y171670D01*

-X420832Y171670D01*

-Y154000D01*

-G37*

-G36*

-X417002D02*X413168D01*

-Y171666D01*

-X413169Y171666D01*

-X413286Y171650D01*

-X413405Y171652D01*

-X413522Y171673D01*

-X413634Y171711D01*

-X413738Y171767D01*

-X413833Y171838D01*

-X413915Y171924D01*

-X413983Y172021D01*

-X414035Y172127D01*

-X414070Y172241D01*

-X414086Y172358D01*

-X414084Y172477D01*

-X414064Y172594D01*

-X414023Y172705D01*

-X413914Y172980D01*

-X413834Y173265D01*

-X413780Y173557D01*

-X413753Y173852D01*

-Y174148D01*

-X413780Y174443D01*

-X413834Y174735D01*

-X413914Y175020D01*

-X414020Y175297D01*

-X414060Y175407D01*

-X414081Y175524D01*

-X414083Y175642D01*

-X414067Y175759D01*

-X414032Y175871D01*

-X413980Y175978D01*

-X413913Y176074D01*

-X413831Y176159D01*

-X413737Y176230D01*

-X413632Y176286D01*

-X413521Y176324D01*

-X413404Y176345D01*

-X413286Y176347D01*

-X413170Y176330D01*

-X413168Y176330D01*

-Y201666D01*

-X413169Y201666D01*

-X413286Y201650D01*

-X413405Y201652D01*

-X413522Y201673D01*

-X413634Y201711D01*

-X413738Y201767D01*

-X413833Y201838D01*

-X413915Y201924D01*

-X413983Y202021D01*

-X414035Y202127D01*

-X414070Y202241D01*

-X414086Y202358D01*

-X414084Y202477D01*

-X414064Y202594D01*

-X414023Y202705D01*

-X413914Y202980D01*

-X413834Y203265D01*

-X413780Y203557D01*

-X413753Y203852D01*

-Y204148D01*

-X413780Y204443D01*

-X413834Y204735D01*

-X413914Y205020D01*

-X414020Y205297D01*

-X414060Y205407D01*

-X414081Y205524D01*

-X414083Y205642D01*

-X414067Y205759D01*

-X414032Y205871D01*

-X413980Y205978D01*

-X413913Y206074D01*

-X413831Y206159D01*

-X413737Y206230D01*

-X413632Y206286D01*

-X413521Y206324D01*

-X413404Y206345D01*

-X413286Y206347D01*

-X413170Y206330D01*

-X413168Y206330D01*

-Y231666D01*

-X413169Y231666D01*

-X413286Y231650D01*

-X413405Y231652D01*

-X413522Y231673D01*

-X413634Y231711D01*

-X413738Y231767D01*

-X413833Y231838D01*

-X413915Y231924D01*

-X413983Y232021D01*

-X414035Y232127D01*

-X414070Y232241D01*

-X414086Y232358D01*

-X414084Y232477D01*

-X414064Y232594D01*

-X414023Y232705D01*

-X413914Y232980D01*

-X413834Y233265D01*

-X413780Y233557D01*

-X413753Y233852D01*

-Y234148D01*

-X413780Y234443D01*

-X413834Y234735D01*

-X413914Y235020D01*

-X414020Y235297D01*

-X414060Y235407D01*

-X414081Y235524D01*

-X414083Y235642D01*

-X414067Y235759D01*

-X414032Y235871D01*

-X413980Y235978D01*

-X413913Y236074D01*

-X413831Y236159D01*

-X413737Y236230D01*

-X413632Y236286D01*

-X413521Y236324D01*

-X413404Y236345D01*

-X413286Y236347D01*

-X413170Y236330D01*

-X413168Y236330D01*

-Y261666D01*

-X413169Y261666D01*

-X413286Y261650D01*

-X413405Y261652D01*

-X413522Y261673D01*

-X413634Y261711D01*

-X413738Y261767D01*

-X413833Y261838D01*

-X413915Y261924D01*

-X413983Y262021D01*

-X414035Y262127D01*

-X414070Y262241D01*

-X414086Y262358D01*

-X414084Y262477D01*

-X414064Y262594D01*

-X414023Y262705D01*

-X413914Y262980D01*

-X413834Y263265D01*

-X413780Y263557D01*

-X413753Y263852D01*

-Y264148D01*

-X413780Y264443D01*

-X413834Y264735D01*

-X413914Y265020D01*

-X414020Y265297D01*

-X414060Y265407D01*

-X414081Y265524D01*

-X414083Y265642D01*

-X414067Y265759D01*

-X414032Y265871D01*

-X413980Y265978D01*

-X413913Y266074D01*

-X413831Y266159D01*

-X413737Y266230D01*

-X413632Y266286D01*

-X413521Y266324D01*

-X413404Y266345D01*

-X413286Y266347D01*

-X413170Y266330D01*

-X413168Y266330D01*

-Y291666D01*

-X413169Y291666D01*

-X413286Y291650D01*

-X413405Y291652D01*

-X413522Y291673D01*

-X413634Y291711D01*

-X413738Y291767D01*

-X413833Y291838D01*

-X413915Y291924D01*

-X413983Y292021D01*

-X414035Y292127D01*

-X414070Y292241D01*

-X414086Y292358D01*

-X414084Y292477D01*

-X414064Y292594D01*

-X414023Y292705D01*

-X413914Y292980D01*

-X413834Y293265D01*

-X413780Y293557D01*

-X413753Y293852D01*

-Y294148D01*

-X413780Y294443D01*

-X413834Y294735D01*

-X413914Y295020D01*

-X414020Y295297D01*

-X414060Y295407D01*

-X414081Y295524D01*

-X414083Y295642D01*

-X414067Y295759D01*

-X414032Y295871D01*

-X413980Y295978D01*

-X413913Y296074D01*

-X413831Y296159D01*

-X413737Y296230D01*

-X413632Y296286D01*

-X413521Y296324D01*

-X413404Y296345D01*

-X413286Y296347D01*

-X413170Y296330D01*

-X413168Y296330D01*

-Y321666D01*

-X413169Y321666D01*

-X413286Y321650D01*

-X413405Y321652D01*

-X413522Y321673D01*

-X413634Y321711D01*

-X413738Y321767D01*

-X413833Y321838D01*

-X413915Y321924D01*

-X413983Y322021D01*

-X414035Y322127D01*

-X414070Y322241D01*

-X414086Y322358D01*

-X414084Y322477D01*

-X414064Y322594D01*

-X414023Y322705D01*

-X413914Y322980D01*

-X413834Y323265D01*

-X413780Y323557D01*

-X413753Y323852D01*

-Y324148D01*

-X413780Y324443D01*

-X413834Y324735D01*

-X413914Y325020D01*

-X414020Y325297D01*

-X414060Y325407D01*

-X414081Y325524D01*

-X414083Y325642D01*

-X414067Y325759D01*

-X414032Y325871D01*

-X413980Y325978D01*

-X413913Y326074D01*

-X413831Y326159D01*

-X413737Y326230D01*

-X413632Y326286D01*

-X413521Y326324D01*

-X413404Y326345D01*

-X413286Y326347D01*

-X413170Y326330D01*

-X413168Y326330D01*

-Y351666D01*

-X413169Y351666D01*

-X413286Y351650D01*

-X413405Y351652D01*

-X413522Y351673D01*

-X413634Y351711D01*

-X413738Y351767D01*

-X413833Y351838D01*

-X413915Y351924D01*

-X413983Y352021D01*

-X414035Y352127D01*

-X414070Y352241D01*

-X414086Y352358D01*

-X414084Y352477D01*

-X414064Y352594D01*

-X414023Y352705D01*

-X413914Y352980D01*

-X413834Y353265D01*

-X413780Y353557D01*

-X413753Y353852D01*

-Y354148D01*

-X413780Y354443D01*

-X413834Y354735D01*

-X413914Y355020D01*

-X414020Y355297D01*

-X414060Y355407D01*

-X414081Y355524D01*

-X414083Y355642D01*

-X414067Y355759D01*

-X414032Y355871D01*

-X413980Y355978D01*

-X413913Y356074D01*

-X413831Y356159D01*

-X413737Y356230D01*

-X413632Y356286D01*

-X413521Y356324D01*

-X413404Y356345D01*

-X413286Y356347D01*

-X413170Y356330D01*

-X413168Y356330D01*

-Y381666D01*

-X413169Y381666D01*

-X413286Y381650D01*

-X413405Y381652D01*

-X413522Y381673D01*

-X413634Y381711D01*

-X413738Y381767D01*

-X413833Y381838D01*

-X413915Y381924D01*

-X413983Y382021D01*

-X414035Y382127D01*

-X414070Y382241D01*

-X414086Y382358D01*

-X414084Y382477D01*

-X414064Y382594D01*

-X414023Y382705D01*

-X413914Y382980D01*

-X413834Y383265D01*

-X413780Y383557D01*

-X413753Y383852D01*

-Y384148D01*

-X413780Y384443D01*

-X413834Y384735D01*

-X413914Y385020D01*

-X414020Y385297D01*

-X414060Y385407D01*

-X414081Y385524D01*

-X414083Y385642D01*

-X414067Y385759D01*

-X414032Y385871D01*

-X413980Y385978D01*

-X413913Y386074D01*

-X413831Y386159D01*

-X413737Y386230D01*

-X413632Y386286D01*

-X413521Y386324D01*

-X413404Y386345D01*

-X413286Y386347D01*

-X413170Y386330D01*

-X413168Y386330D01*

-Y397000D01*

-X417002D01*

-Y388750D01*

-X416783D01*

-X416352Y388711D01*

-X415925Y388632D01*

-X415508Y388515D01*

-X415103Y388360D01*

-X414998Y388305D01*

-X414903Y388234D01*

-X414821Y388148D01*

-X414753Y388051D01*

-X414701Y387945D01*

-X414666Y387831D01*

-X414650Y387714D01*

-X414652Y387595D01*

-X414673Y387478D01*

-X414711Y387366D01*

-X414767Y387262D01*

-X414838Y387167D01*

-X414924Y387085D01*

-X415021Y387017D01*

-X415127Y386965D01*

-X415241Y386930D01*

-X415358Y386914D01*

-X415477Y386916D01*

-X415593Y386936D01*

-X415705Y386977D01*

-X415980Y387086D01*

-X416265Y387166D01*

-X416557Y387220D01*

-X416852Y387247D01*

-X417002D01*

-Y380753D01*

-X416852D01*

-X416557Y380780D01*

-X416265Y380834D01*

-X415980Y380914D01*

-X415703Y381020D01*

-X415593Y381060D01*

-X415476Y381081D01*

-X415358Y381083D01*

-X415241Y381067D01*

-X415129Y381032D01*

-X415022Y380980D01*

-X414926Y380913D01*

-X414841Y380831D01*

-X414770Y380737D01*

-X414714Y380632D01*

-X414676Y380521D01*

-X414655Y380404D01*

-X414653Y380286D01*

-X414670Y380170D01*

-X414704Y380057D01*

-X414756Y379950D01*

-X414823Y379854D01*

-X414905Y379769D01*

-X415000Y379698D01*

-X415105Y379644D01*

-X415508Y379485D01*

-X415925Y379368D01*

-X416352Y379289D01*

-X416783Y379250D01*

-X417002D01*

-Y358750D01*

-X416783D01*

-X416352Y358711D01*

-X415925Y358632D01*

-X415508Y358515D01*

-X415103Y358360D01*

-X414998Y358305D01*

-X414903Y358234D01*

-X414821Y358148D01*

-X414753Y358051D01*

-X414701Y357945D01*

-X414666Y357831D01*

-X414650Y357714D01*

-X414652Y357595D01*

-X414673Y357478D01*

-X414711Y357366D01*

-X414767Y357262D01*

-X414838Y357167D01*

-X414924Y357085D01*

-X415021Y357017D01*

-X415127Y356965D01*

-X415241Y356930D01*

-X415358Y356914D01*

-X415477Y356916D01*

-X415593Y356936D01*

-X415705Y356977D01*

-X415980Y357086D01*

-X416265Y357166D01*

-X416557Y357220D01*

-X416852Y357247D01*

-X417002D01*

-Y350753D01*

-X416852D01*

-X416557Y350780D01*

-X416265Y350834D01*

-X415980Y350914D01*

-X415703Y351020D01*

-X415593Y351060D01*

-X415476Y351081D01*

-X415358Y351083D01*

-X415241Y351067D01*

-X415129Y351032D01*

-X415022Y350980D01*

-X414926Y350913D01*

-X414841Y350831D01*

-X414770Y350737D01*

-X414714Y350632D01*

-X414676Y350521D01*

-X414655Y350404D01*

-X414653Y350286D01*

-X414670Y350170D01*

-X414704Y350057D01*

-X414756Y349950D01*

-X414823Y349854D01*

-X414905Y349769D01*

-X415000Y349698D01*

-X415105Y349644D01*

-X415508Y349485D01*

-X415925Y349368D01*

-X416352Y349289D01*

-X416783Y349250D01*

-X417002D01*

-Y328750D01*

-X416783D01*

-X416352Y328711D01*

-X415925Y328632D01*

-X415508Y328515D01*

-X415103Y328360D01*

-X414998Y328305D01*

-X414903Y328234D01*

-X414821Y328148D01*

-X414753Y328051D01*

-X414701Y327945D01*

-X414666Y327831D01*

-X414650Y327714D01*

-X414652Y327595D01*

-X414673Y327478D01*

-X414711Y327366D01*

-X414767Y327262D01*

-X414838Y327167D01*

-X414924Y327085D01*

-X415021Y327017D01*

-X415127Y326965D01*

-X415241Y326930D01*

-X415358Y326914D01*

-X415477Y326916D01*

-X415593Y326936D01*

-X415705Y326977D01*

-X415980Y327086D01*

-X416265Y327166D01*

-X416557Y327220D01*

-X416852Y327247D01*

-X417002D01*

-Y320753D01*

-X416852D01*

-X416557Y320780D01*

-X416265Y320834D01*

-X415980Y320914D01*

-X415703Y321020D01*

-X415593Y321060D01*

-X415476Y321081D01*

-X415358Y321083D01*

-X415241Y321067D01*

-X415129Y321032D01*

-X415022Y320980D01*

-X414926Y320913D01*

-X414841Y320831D01*

-X414770Y320737D01*

-X414714Y320632D01*

-X414676Y320521D01*

-X414655Y320404D01*

-X414653Y320286D01*

-X414670Y320170D01*

-X414704Y320057D01*

-X414756Y319950D01*

-X414823Y319854D01*

-X414905Y319769D01*

-X415000Y319698D01*

-X415105Y319644D01*

-X415508Y319485D01*

-X415925Y319368D01*

-X416352Y319289D01*

-X416783Y319250D01*

-X417002D01*

-Y298750D01*

-X416783D01*

-X416352Y298711D01*

-X415925Y298632D01*

-X415508Y298515D01*

-X415103Y298360D01*

-X414998Y298305D01*

-X414903Y298234D01*

-X414821Y298148D01*

-X414753Y298051D01*

-X414701Y297945D01*

-X414666Y297831D01*

-X414650Y297714D01*

-X414652Y297595D01*

-X414673Y297478D01*

-X414711Y297366D01*

-X414767Y297262D01*

-X414838Y297167D01*

-X414924Y297085D01*

-X415021Y297017D01*

-X415127Y296965D01*

-X415241Y296930D01*

-X415358Y296914D01*

-X415477Y296916D01*

-X415593Y296936D01*

-X415705Y296977D01*

-X415980Y297086D01*

-X416265Y297166D01*

-X416557Y297220D01*

-X416852Y297247D01*

-X417002D01*

-Y290753D01*

-X416852D01*

-X416557Y290780D01*

-X416265Y290834D01*

-X415980Y290914D01*

-X415703Y291020D01*

-X415593Y291060D01*

-X415476Y291081D01*

-X415358Y291083D01*

-X415241Y291067D01*

-X415129Y291032D01*

-X415022Y290980D01*

-X414926Y290913D01*

-X414841Y290831D01*

-X414770Y290737D01*

-X414714Y290632D01*

-X414676Y290521D01*

-X414655Y290404D01*

-X414653Y290286D01*

-X414670Y290170D01*

-X414704Y290057D01*

-X414756Y289950D01*

-X414823Y289854D01*

-X414905Y289769D01*

-X415000Y289698D01*

-X415105Y289644D01*

-X415508Y289485D01*

-X415925Y289368D01*

-X416352Y289289D01*

-X416783Y289250D01*

-X417002D01*

-Y268750D01*

-X416783D01*

-X416352Y268711D01*

-X415925Y268632D01*

-X415508Y268515D01*

-X415103Y268360D01*

-X414998Y268305D01*

-X414903Y268234D01*

-X414821Y268148D01*

-X414753Y268051D01*

-X414701Y267945D01*

-X414666Y267831D01*

-X414650Y267714D01*

-X414652Y267595D01*

-X414673Y267478D01*

-X414711Y267366D01*

-X414767Y267262D01*

-X414838Y267167D01*

-X414924Y267085D01*

-X415021Y267017D01*

-X415127Y266965D01*

-X415241Y266930D01*

-X415358Y266914D01*

-X415477Y266916D01*

-X415593Y266936D01*

-X415705Y266977D01*

-X415980Y267086D01*

-X416265Y267166D01*

-X416557Y267220D01*

-X416852Y267247D01*

-X417002D01*

-Y260753D01*

-X416852D01*

-X416557Y260780D01*

-X416265Y260834D01*

-X415980Y260914D01*

-X415703Y261020D01*

-X415593Y261060D01*

-X415476Y261081D01*

-X415358Y261083D01*

-X415241Y261067D01*

-X415129Y261032D01*

-X415022Y260980D01*

-X414926Y260913D01*

-X414841Y260831D01*

-X414770Y260737D01*

-X414714Y260632D01*

-X414676Y260521D01*

-X414655Y260404D01*

-X414653Y260286D01*

-X414670Y260170D01*

-X414704Y260057D01*

-X414756Y259950D01*

-X414823Y259854D01*

-X414905Y259769D01*

-X415000Y259698D01*

-X415105Y259644D01*

-X415508Y259485D01*

-X415925Y259368D01*

-X416352Y259289D01*

-X416783Y259250D01*

-X417002D01*

-Y238750D01*

-X416783D01*

-X416352Y238711D01*

-X415925Y238632D01*

-X415508Y238515D01*

-X415103Y238360D01*

-X414998Y238305D01*

-X414903Y238234D01*

-X414821Y238148D01*

-X414753Y238051D01*

-X414701Y237945D01*

-X414666Y237831D01*

-X414650Y237714D01*

-X414652Y237595D01*

-X414673Y237478D01*

-X414711Y237366D01*

-X414767Y237262D01*

-X414838Y237167D01*

-X414924Y237085D01*

-X415021Y237017D01*

-X415127Y236965D01*

-X415241Y236930D01*

-X415358Y236914D01*

-X415477Y236916D01*

-X415593Y236936D01*

-X415705Y236977D01*

-X415980Y237086D01*

-X416265Y237166D01*

-X416557Y237220D01*

-X416852Y237247D01*

-X417002D01*

-Y230753D01*

-X416852D01*

-X416557Y230780D01*

-X416265Y230834D01*

-X415980Y230914D01*

-X415703Y231020D01*

-X415593Y231060D01*

-X415476Y231081D01*

-X415358Y231083D01*

-X415241Y231067D01*

-X415129Y231032D01*

-X415022Y230980D01*

-X414926Y230913D01*

-X414841Y230831D01*

-X414770Y230737D01*

-X414714Y230632D01*

-X414676Y230521D01*

-X414655Y230404D01*

-X414653Y230286D01*

-X414670Y230170D01*

-X414704Y230057D01*

-X414756Y229950D01*

-X414823Y229854D01*

-X414905Y229769D01*

-X415000Y229698D01*

-X415105Y229644D01*

-X415508Y229485D01*

-X415925Y229368D01*

-X416352Y229289D01*

-X416783Y229250D01*

-X417002D01*

-Y208750D01*

-X416783D01*

-X416352Y208711D01*

-X415925Y208632D01*

-X415508Y208515D01*

-X415103Y208360D01*

-X414998Y208305D01*

-X414903Y208234D01*

-X414821Y208148D01*

-X414753Y208051D01*

-X414701Y207945D01*

-X414666Y207831D01*

-X414650Y207714D01*

-X414652Y207595D01*

-X414673Y207478D01*

-X414711Y207366D01*

-X414767Y207262D01*

-X414838Y207167D01*

-X414924Y207085D01*

-X415021Y207017D01*

-X415127Y206965D01*

-X415241Y206930D01*

-X415358Y206914D01*

-X415477Y206916D01*

-X415593Y206936D01*

-X415705Y206977D01*

-X415980Y207086D01*

-X416265Y207166D01*

-X416557Y207220D01*

-X416852Y207247D01*

-X417002D01*

-Y200753D01*

-X416852D01*

-X416557Y200780D01*

-X416265Y200834D01*

-X415980Y200914D01*

-X415703Y201020D01*

-X415593Y201060D01*

-X415476Y201081D01*

-X415358Y201083D01*

-X415241Y201067D01*

-X415129Y201032D01*

-X415022Y200980D01*

-X414926Y200913D01*

-X414841Y200831D01*

-X414770Y200737D01*

-X414714Y200632D01*

-X414676Y200521D01*

-X414655Y200404D01*

-X414653Y200286D01*

-X414670Y200170D01*

-X414704Y200057D01*

-X414756Y199950D01*

-X414823Y199854D01*

-X414905Y199769D01*

-X415000Y199698D01*

-X415105Y199644D01*

-X415508Y199485D01*

-X415925Y199368D01*

-X416352Y199289D01*

-X416783Y199250D01*

-X417002D01*

-Y178750D01*

-X416783D01*

-X416352Y178711D01*

-X415925Y178632D01*

-X415508Y178515D01*

-X415103Y178360D01*

-X414998Y178305D01*

-X414903Y178234D01*

-X414821Y178148D01*

-X414753Y178051D01*

-X414701Y177945D01*

-X414666Y177831D01*

-X414650Y177714D01*

-X414652Y177595D01*

-X414673Y177478D01*

-X414711Y177366D01*

-X414767Y177262D01*

-X414838Y177167D01*

-X414924Y177085D01*

-X415021Y177017D01*

-X415127Y176965D01*

-X415241Y176930D01*

-X415358Y176914D01*

-X415477Y176916D01*

-X415593Y176936D01*

-X415705Y176977D01*

-X415980Y177086D01*

-X416265Y177166D01*

-X416557Y177220D01*

-X416852Y177247D01*

-X417002D01*

-Y170753D01*

-X416852D01*

-X416557Y170780D01*

-X416265Y170834D01*

-X415980Y170914D01*

-X415703Y171020D01*

-X415593Y171060D01*

-X415476Y171081D01*

-X415358Y171083D01*

-X415241Y171067D01*

-X415129Y171032D01*

-X415022Y170980D01*

-X414926Y170913D01*

-X414841Y170831D01*

-X414770Y170737D01*

-X414714Y170632D01*

-X414676Y170521D01*

-X414655Y170404D01*

-X414653Y170286D01*

-X414670Y170170D01*

-X414704Y170057D01*

-X414756Y169950D01*

-X414823Y169854D01*

-X414905Y169769D01*

-X415000Y169698D01*

-X415105Y169644D01*

-X415508Y169485D01*

-X415925Y169368D01*

-X416352Y169289D01*

-X416783Y169250D01*

-X417002D01*

-Y154000D01*

-G37*

-G36*

-X413168D02*X406441D01*

-X406504Y169256D01*

-X410485Y169264D01*

-X410715Y169319D01*

-X410933Y169409D01*

-X411134Y169533D01*

-X411314Y169686D01*

-X411467Y169866D01*

-X411591Y170067D01*

-X411681Y170285D01*

-X411736Y170515D01*

-X411750Y170750D01*

-X411736Y177485D01*

-X411681Y177715D01*

-X411591Y177933D01*

-X411467Y178134D01*

-X411314Y178314D01*

-X411134Y178467D01*

-X410933Y178591D01*

-X410715Y178681D01*

-X410485Y178736D01*

-X410250Y178750D01*

-X406543Y178742D01*

-X406627Y199256D01*

-X410485Y199264D01*

-X410715Y199319D01*

-X410933Y199409D01*

-X411134Y199533D01*

-X411314Y199686D01*

-X411467Y199866D01*

-X411591Y200067D01*

-X411681Y200285D01*

-X411736Y200515D01*

-X411750Y200750D01*

-X411736Y207485D01*

-X411681Y207715D01*

-X411591Y207933D01*

-X411467Y208134D01*

-X411314Y208314D01*

-X411134Y208467D01*

-X410933Y208591D01*

-X410715Y208681D01*

-X410485Y208736D01*

-X410250Y208750D01*

-X406666Y208743D01*

-X406751Y229256D01*

-X410485Y229264D01*

-X410715Y229319D01*

-X410933Y229409D01*

-X411134Y229533D01*

-X411314Y229686D01*

-X411467Y229866D01*

-X411591Y230067D01*

-X411681Y230285D01*

-X411736Y230515D01*

-X411750Y230750D01*

-X411736Y237485D01*

-X411681Y237715D01*

-X411591Y237933D01*

-X411467Y238134D01*

-X411314Y238314D01*

-X411134Y238467D01*

-X410933Y238591D01*

-X410715Y238681D01*

-X410485Y238736D01*

-X410250Y238750D01*

-X406790Y238743D01*

-X406874Y259256D01*

-X410485Y259264D01*

-X410715Y259319D01*

-X410933Y259409D01*

-X411134Y259533D01*

-X411314Y259686D01*

-X411467Y259866D01*

-X411591Y260067D01*

-X411681Y260285D01*

-X411736Y260515D01*

-X411750Y260750D01*

-X411736Y267485D01*

-X411681Y267715D01*

-X411591Y267933D01*

-X411467Y268134D01*

-X411314Y268314D01*

-X411134Y268467D01*

-X410933Y268591D01*

-X410715Y268681D01*

-X410485Y268736D01*

-X410250Y268750D01*

-X406913Y268743D01*

-X406998Y289257D01*

-X410485Y289264D01*

-X410715Y289319D01*

-X410933Y289409D01*

-X411134Y289533D01*

-X411314Y289686D01*

-X411467Y289866D01*

-X411591Y290067D01*

-X411681Y290285D01*

-X411736Y290515D01*

-X411750Y290750D01*

-X411736Y297485D01*

-X411681Y297715D01*

-X411591Y297933D01*

-X411467Y298134D01*

-X411314Y298314D01*

-X411134Y298467D01*

-X410933Y298591D01*

-X410715Y298681D01*

-X410485Y298736D01*

-X410250Y298750D01*

-X407037Y298743D01*

-X407121Y319257D01*

-X410485Y319264D01*

-X410715Y319319D01*

-X410933Y319409D01*

-X411134Y319533D01*

-X411314Y319686D01*

-X411467Y319866D01*

-X411591Y320067D01*

-X411681Y320285D01*

-X411736Y320515D01*

-X411750Y320750D01*

-X411736Y327485D01*

-X411681Y327715D01*

-X411591Y327933D01*

-X411467Y328134D01*

-X411314Y328314D01*

-X411134Y328467D01*

-X410933Y328591D01*

-X410715Y328681D01*

-X410485Y328736D01*

-X410250Y328750D01*

-X407160Y328744D01*

-X407245Y349257D01*

-X410485Y349264D01*

-X410715Y349319D01*

-X410933Y349409D01*

-X411134Y349533D01*

-X411314Y349686D01*

-X411467Y349866D01*

-X411591Y350067D01*

-X411681Y350285D01*

-X411736Y350515D01*

-X411750Y350750D01*

-X411736Y357485D01*

-X411681Y357715D01*

-X411591Y357933D01*

-X411467Y358134D01*

-X411314Y358314D01*

-X411134Y358467D01*

-X410933Y358591D01*

-X410715Y358681D01*

-X410485Y358736D01*

-X410250Y358750D01*

-X407284Y358744D01*

-X407368Y379257D01*

-X410485Y379264D01*

-X410715Y379319D01*

-X410933Y379409D01*

-X411134Y379533D01*

-X411314Y379686D01*

-X411467Y379866D01*

-X411591Y380067D01*

-X411681Y380285D01*

-X411736Y380515D01*

-X411750Y380750D01*

-X411736Y387485D01*

-X411681Y387715D01*

-X411591Y387933D01*

-X411467Y388134D01*

-X411314Y388314D01*

-X411134Y388467D01*

-X410933Y388591D01*

-X410715Y388681D01*

-X410485Y388736D01*

-X410250Y388750D01*

-X407407Y388744D01*

-X407441Y397000D01*

-X413168D01*

-Y386330D01*

-X413057Y386296D01*

-X412950Y386244D01*

-X412854Y386177D01*

-X412769Y386095D01*

-X412698Y386000D01*

-X412644Y385895D01*

-X412485Y385492D01*

-X412368Y385075D01*

-X412289Y384648D01*

-X412250Y384217D01*

-Y383783D01*

-X412289Y383352D01*

-X412368Y382925D01*

-X412485Y382508D01*

-X412640Y382103D01*

-X412695Y381998D01*

-X412766Y381903D01*

-X412852Y381821D01*

-X412949Y381753D01*

-X413055Y381701D01*

-X413168Y381666D01*

-Y356330D01*

-X413057Y356296D01*

-X412950Y356244D01*

-X412854Y356177D01*

-X412769Y356095D01*

-X412698Y356000D01*

-X412644Y355895D01*

-X412485Y355492D01*

-X412368Y355075D01*

-X412289Y354648D01*

-X412250Y354217D01*

-Y353783D01*

-X412289Y353352D01*

-X412368Y352925D01*

-X412485Y352508D01*

-X412640Y352103D01*

-X412695Y351998D01*

-X412766Y351903D01*

-X412852Y351821D01*

-X412949Y351753D01*

-X413055Y351701D01*

-X413168Y351666D01*

-Y326330D01*

-X413057Y326296D01*

-X412950Y326244D01*

-X412854Y326177D01*

-X412769Y326095D01*

-X412698Y326000D01*

-X412644Y325895D01*

-X412485Y325492D01*

-X412368Y325075D01*

-X412289Y324648D01*

-X412250Y324217D01*

-Y323783D01*

-X412289Y323352D01*

-X412368Y322925D01*

-X412485Y322508D01*

-X412640Y322103D01*

-X412695Y321998D01*

-X412766Y321903D01*

-X412852Y321821D01*

-X412949Y321753D01*

-X413055Y321701D01*

-X413168Y321666D01*

-Y296330D01*

-X413057Y296296D01*

-X412950Y296244D01*

-X412854Y296177D01*

-X412769Y296095D01*

-X412698Y296000D01*

-X412644Y295895D01*

-X412485Y295492D01*

-X412368Y295075D01*

-X412289Y294648D01*

-X412250Y294217D01*

-Y293783D01*

-X412289Y293352D01*

-X412368Y292925D01*

-X412485Y292508D01*

-X412640Y292103D01*

-X412695Y291998D01*

-X412766Y291903D01*

-X412852Y291821D01*

-X412949Y291753D01*

-X413055Y291701D01*

-X413168Y291666D01*

-Y266330D01*

-X413057Y266296D01*

-X412950Y266244D01*

-X412854Y266177D01*

-X412769Y266095D01*

-X412698Y266000D01*

-X412644Y265895D01*

-X412485Y265492D01*

-X412368Y265075D01*

-X412289Y264648D01*

-X412250Y264217D01*

-Y263783D01*

-X412289Y263352D01*

-X412368Y262925D01*

-X412485Y262508D01*

-X412640Y262103D01*

-X412695Y261998D01*

-X412766Y261903D01*

-X412852Y261821D01*

-X412949Y261753D01*

-X413055Y261701D01*

-X413168Y261666D01*

-Y236330D01*

-X413057Y236296D01*

-X412950Y236244D01*

-X412854Y236177D01*

-X412769Y236095D01*

-X412698Y236000D01*

-X412644Y235895D01*

-X412485Y235492D01*

-X412368Y235075D01*

-X412289Y234648D01*

-X412250Y234217D01*

-Y233783D01*

-X412289Y233352D01*

-X412368Y232925D01*

-X412485Y232508D01*

-X412640Y232103D01*

-X412695Y231998D01*

-X412766Y231903D01*

-X412852Y231821D01*

-X412949Y231753D01*

-X413055Y231701D01*

-X413168Y231666D01*

-Y206330D01*

-X413057Y206296D01*

-X412950Y206244D01*

-X412854Y206177D01*

-X412769Y206095D01*

-X412698Y206000D01*

-X412644Y205895D01*

-X412485Y205492D01*

-X412368Y205075D01*

-X412289Y204648D01*

-X412250Y204217D01*

-Y203783D01*

-X412289Y203352D01*

-X412368Y202925D01*

-X412485Y202508D01*

-X412640Y202103D01*

-X412695Y201998D01*

-X412766Y201903D01*

-X412852Y201821D01*

-X412949Y201753D01*

-X413055Y201701D01*

-X413168Y201666D01*

-Y176330D01*

-X413057Y176296D01*

-X412950Y176244D01*

-X412854Y176177D01*

-X412769Y176095D01*

-X412698Y176000D01*

-X412644Y175895D01*

-X412485Y175492D01*

-X412368Y175075D01*

-X412289Y174648D01*

-X412250Y174217D01*

-Y173783D01*

-X412289Y173352D01*

-X412368Y172925D01*

-X412485Y172508D01*

-X412640Y172103D01*

-X412695Y171998D01*

-X412766Y171903D01*

-X412852Y171821D01*

-X412949Y171753D01*

-X413055Y171701D01*

-X413168Y171666D01*

-Y154000D01*

-G37*

-G36*

-X434446Y39000D02*X395438D01*

-Y58499D01*

-X395502Y58538D01*

-X395718Y58722D01*

-X395902Y58938D01*

-X396050Y59179D01*

-X396158Y59441D01*

-X396224Y59717D01*

-X396241Y59999D01*

-X396224Y60281D01*

-X396158Y60557D01*

-X396050Y60819D01*

-X395902Y61060D01*

-X395718Y61276D01*

-X395502Y61460D01*

-X395438Y61499D01*

-Y65194D01*

-X395441Y65193D01*

-X395723Y65216D01*

-X395999Y65282D01*

-X396261Y65390D01*

-X396502Y65538D01*

-X396718Y65722D01*

-X396902Y65938D01*

-X397050Y66179D01*

-X397158Y66441D01*

-X397224Y66717D01*

-X397241Y66999D01*

-X397224Y67281D01*

-X397158Y67557D01*

-X397050Y67819D01*

-X396902Y68060D01*

-X396718Y68276D01*

-X396502Y68460D01*

-X396261Y68608D01*

-X395999Y68716D01*

-X395723Y68782D01*

-X395441Y68805D01*

-X395438Y68804D01*

-Y132000D01*

-X408941D01*

-Y67000D01*

-X434446D01*

-Y58305D01*

-X434167Y58283D01*

-X433891Y58217D01*

-X433629Y58109D01*

-X433388Y57961D01*

-X433172Y57777D01*

-X432988Y57561D01*

-X432840Y57320D01*

-X432732Y57058D01*

-X432666Y56782D01*

-X432643Y56500D01*

-X432666Y56218D01*

-X432732Y55942D01*

-X432840Y55680D01*

-X432988Y55439D01*

-X433172Y55223D01*

-X433388Y55039D01*

-X433629Y54891D01*

-X433891Y54783D01*

-X434167Y54717D01*

-X434446Y54695D01*

-Y39000D01*

-G37*

-G36*

-X395438D02*X391438D01*

-Y52506D01*

-X391480Y52438D01*

-X391664Y52222D01*

-X391880Y52038D01*

-X392121Y51890D01*

-X392383Y51782D01*

-X392659Y51716D01*

-X392941Y51693D01*

-X393223Y51716D01*

-X393499Y51782D01*

-X393761Y51890D01*

-X394002Y52038D01*

-X394218Y52222D01*

-X394402Y52438D01*

-X394550Y52679D01*

-X394658Y52941D01*

-X394724Y53217D01*

-X394741Y53499D01*

-X394724Y53781D01*

-X394658Y54057D01*

-X394550Y54319D01*

-X394402Y54560D01*

-X394218Y54776D01*

-X394002Y54960D01*

-X393761Y55108D01*

-X393499Y55216D01*

-X393223Y55282D01*

-X392941Y55305D01*

-X392659Y55282D01*

-X392383Y55216D01*

-X392121Y55108D01*

-X391880Y54960D01*

-X391664Y54776D01*

-X391480Y54560D01*

-X391438Y54492D01*

-Y72769D01*

-X391659Y72716D01*

-X391941Y72693D01*

-X392223Y72716D01*

-X392499Y72782D01*

-X392761Y72890D01*

-X393002Y73038D01*

-X393218Y73222D01*

-X393402Y73438D01*

-X393550Y73679D01*

-X393658Y73941D01*

-X393724Y74217D01*

-X393741Y74499D01*

-X393724Y74781D01*

-X393658Y75057D01*

-X393550Y75319D01*

-X393402Y75560D01*

-X393218Y75776D01*

-X393002Y75960D01*

-X392761Y76108D01*

-X392499Y76216D01*

-X392223Y76282D01*

-X391941Y76305D01*

-X391659Y76282D01*

-X391438Y76229D01*

-Y78194D01*

-X391441Y78193D01*

-X391723Y78216D01*

-X391999Y78282D01*

-X392261Y78390D01*

-X392502Y78538D01*

-X392718Y78722D01*

-X392902Y78938D01*

-X393050Y79179D01*

-X393158Y79441D01*

-X393224Y79717D01*

-X393241Y79999D01*

-X393224Y80281D01*

-X393158Y80557D01*

-X393050Y80819D01*

-X392902Y81060D01*

-X392718Y81276D01*

-X392502Y81460D01*

-X392261Y81608D01*

-X391999Y81716D01*

-X391723Y81782D01*

-X391441Y81805D01*

-X391438Y81804D01*

-Y82694D01*

-X391441Y82693D01*

-X391723Y82716D01*

-X391999Y82782D01*

-X392261Y82890D01*

-X392502Y83038D01*

-X392718Y83222D01*

-X392902Y83438D01*

-X393050Y83679D01*

-X393158Y83941D01*

-X393224Y84217D01*

-X393241Y84499D01*

-X393224Y84781D01*

-X393158Y85057D01*

-X393050Y85319D01*

-X392902Y85560D01*

-X392718Y85776D01*

-X392502Y85960D01*

-X392261Y86108D01*

-X391999Y86216D01*

-X391723Y86282D01*

-X391441Y86305D01*

-X391438Y86304D01*

-Y132000D01*

-X395438D01*

-Y68804D01*

-X395159Y68782D01*

-X394883Y68716D01*

-X394621Y68608D01*

-X394380Y68460D01*

-X394164Y68276D01*

-X393980Y68060D01*

-X393832Y67819D01*

-X393724Y67557D01*

-X393658Y67281D01*

-X393635Y66999D01*

-X393658Y66717D01*

-X393724Y66441D01*

-X393832Y66179D01*

-X393980Y65938D01*

-X394164Y65722D01*

-X394380Y65538D01*

-X394621Y65390D01*

-X394883Y65282D01*

-X395159Y65216D01*

-X395438Y65194D01*

-Y61499D01*

-X395261Y61608D01*

-X394999Y61716D01*

-X394723Y61782D01*

-X394441Y61805D01*

-X394159Y61782D01*

-X393883Y61716D01*

-X393621Y61608D01*

-X393380Y61460D01*

-X393164Y61276D01*

-X392980Y61060D01*

-X392832Y60819D01*

-X392724Y60557D01*

-X392658Y60281D01*

-X392635Y59999D01*

-X392658Y59717D01*

-X392724Y59441D01*

-X392832Y59179D01*

-X392980Y58938D01*

-X393164Y58722D01*

-X393380Y58538D01*

-X393621Y58390D01*

-X393883Y58282D01*

-X394159Y58216D01*

-X394441Y58193D01*

-X394723Y58216D01*

-X394999Y58282D01*

-X395261Y58390D01*

-X395438Y58499D01*

-Y39000D01*

-G37*

-G36*

-X391438D02*X387938D01*

-Y91694D01*

-X387941Y91693D01*

-X388223Y91716D01*

-X388499Y91782D01*

-X388761Y91890D01*

-X389002Y92038D01*

-X389218Y92222D01*

-X389402Y92438D01*

-X389550Y92679D01*

-X389658Y92941D01*

-X389724Y93217D01*

-X389741Y93499D01*

-X389724Y93781D01*

-X389658Y94057D01*

-X389550Y94319D01*

-X389402Y94560D01*

-X389218Y94776D01*

-X389002Y94960D01*

-X388761Y95108D01*

-X388499Y95216D01*

-X388223Y95282D01*

-X387941Y95305D01*

-X387938Y95304D01*

-Y96194D01*

-X387941Y96193D01*

-X388223Y96216D01*

-X388499Y96282D01*

-X388761Y96390D01*

-X389002Y96538D01*

-X389218Y96722D01*

-X389402Y96938D01*

-X389550Y97179D01*

-X389658Y97441D01*

-X389724Y97717D01*

-X389741Y97999D01*

-X389724Y98281D01*

-X389658Y98557D01*

-X389550Y98819D01*

-X389402Y99060D01*

-X389218Y99276D01*

-X389002Y99460D01*

-X388761Y99608D01*

-X388499Y99716D01*

-X388223Y99782D01*

-X387941Y99805D01*

-X387938Y99804D01*

-Y102194D01*

-X387941Y102193D01*

-X388223Y102216D01*

-X388499Y102282D01*

-X388761Y102390D01*

-X389002Y102538D01*

-X389218Y102722D01*

-X389402Y102938D01*

-X389550Y103179D01*

-X389658Y103441D01*

-X389724Y103717D01*

-X389741Y103999D01*

-X389724Y104281D01*

-X389658Y104557D01*

-X389550Y104819D01*

-X389402Y105060D01*

-X389218Y105276D01*

-X389002Y105460D01*

-X388761Y105608D01*

-X388499Y105716D01*

-X388223Y105782D01*

-X387941Y105805D01*

-X387938Y105804D01*

-Y108194D01*

-X387941Y108193D01*

-X388223Y108216D01*

-X388499Y108282D01*

-X388761Y108390D01*

-X389002Y108538D01*

-X389218Y108722D01*

-X389402Y108938D01*

-X389550Y109179D01*

-X389658Y109441D01*

-X389724Y109717D01*

-X389741Y109999D01*

-X389724Y110281D01*

-X389658Y110557D01*

-X389550Y110819D01*

-X389402Y111060D01*

-X389218Y111276D01*

-X389002Y111460D01*

-X388761Y111608D01*

-X388499Y111716D01*

-X388223Y111782D01*

-X387941Y111805D01*

-X387938Y111804D01*

-Y114194D01*

-X387941Y114193D01*

-X388223Y114216D01*

-X388499Y114282D01*

-X388761Y114390D01*

-X389002Y114538D01*

-X389218Y114722D01*

-X389402Y114938D01*

-X389550Y115179D01*

-X389658Y115441D01*

-X389724Y115717D01*

-X389741Y115999D01*

-X389724Y116281D01*

-X389658Y116557D01*

-X389550Y116819D01*

-X389402Y117060D01*

-X389218Y117276D01*

-X389002Y117460D01*

-X388761Y117608D01*

-X388499Y117716D01*

-X388223Y117782D01*

-X387941Y117805D01*

-X387938Y117804D01*

-Y120194D01*

-X387941Y120193D01*

-X388223Y120216D01*

-X388499Y120282D01*

-X388761Y120390D01*

-X389002Y120538D01*

-X389218Y120722D01*

-X389402Y120938D01*

-X389550Y121179D01*

-X389658Y121441D01*

-X389724Y121717D01*

-X389741Y121999D01*

-X389724Y122281D01*

-X389658Y122557D01*

-X389550Y122819D01*

-X389402Y123060D01*

-X389218Y123276D01*

-X389002Y123460D01*

-X388761Y123608D01*

-X388499Y123716D01*

-X388223Y123782D01*

-X387941Y123805D01*

-X387938Y123804D01*

-Y126194D01*

-X387941Y126193D01*

-X388223Y126216D01*

-X388499Y126282D01*

-X388761Y126390D01*

-X389002Y126538D01*

-X389218Y126722D01*

-X389402Y126938D01*

-X389550Y127179D01*

-X389658Y127441D01*

-X389724Y127717D01*

-X389741Y127999D01*

-X389724Y128281D01*

-X389658Y128557D01*

-X389550Y128819D01*

-X389402Y129060D01*

-X389218Y129276D01*

-X389002Y129460D01*

-X388761Y129608D01*

-X388499Y129716D01*

-X388223Y129782D01*

-X387941Y129805D01*

-X387938Y129804D01*

-Y132000D01*

-X391438D01*

-Y86304D01*

-X391159Y86282D01*

-X390883Y86216D01*

-X390621Y86108D01*

-X390380Y85960D01*

-X390164Y85776D01*

-X389980Y85560D01*

-X389832Y85319D01*

-X389724Y85057D01*

-X389658Y84781D01*

-X389635Y84499D01*

-X389658Y84217D01*

-X389724Y83941D01*

-X389832Y83679D01*

-X389980Y83438D01*

-X390164Y83222D01*

-X390380Y83038D01*

-X390621Y82890D01*

-X390883Y82782D01*

-X391159Y82716D01*

-X391438Y82694D01*

-Y81804D01*

-X391159Y81782D01*

-X390883Y81716D01*

-X390621Y81608D01*

-X390380Y81460D01*

-X390164Y81276D01*

-X389980Y81060D01*

-X389832Y80819D01*

-X389724Y80557D01*

-X389658Y80281D01*

-X389635Y79999D01*

-X389658Y79717D01*

-X389724Y79441D01*

-X389832Y79179D01*

-X389980Y78938D01*

-X390164Y78722D01*

-X390380Y78538D01*

-X390621Y78390D01*

-X390883Y78282D01*

-X391159Y78216D01*

-X391438Y78194D01*

-Y76229D01*

-X391383Y76216D01*

-X391121Y76108D01*

-X390880Y75960D01*

-X390664Y75776D01*

-X390480Y75560D01*

-X390332Y75319D01*

-X390224Y75057D01*

-X390158Y74781D01*

-X390135Y74499D01*

-X390158Y74217D01*

-X390224Y73941D01*

-X390332Y73679D01*

-X390480Y73438D01*

-X390664Y73222D01*

-X390880Y73038D01*

-X391121Y72890D01*

-X391383Y72782D01*

-X391438Y72769D01*

-Y54492D01*

-X391332Y54319D01*

-X391224Y54057D01*

-X391158Y53781D01*

-X391135Y53499D01*

-X391158Y53217D01*

-X391224Y52941D01*

-X391332Y52679D01*

-X391438Y52506D01*

-Y39000D01*

-G37*

-G36*

-X387938D02*X374938D01*

-Y41695D01*

-X374941Y41694D01*

-X375223Y41717D01*

-X375499Y41783D01*

-X375761Y41891D01*

-X376002Y42039D01*

-X376218Y42223D01*

-X376402Y42439D01*

-X376550Y42680D01*

-X376658Y42942D01*

-X376724Y43218D01*

-X376741Y43500D01*

-X376724Y43782D01*

-X376658Y44058D01*

-X376550Y44320D01*

-X376402Y44561D01*

-X376218Y44777D01*

-X376002Y44961D01*

-X375761Y45109D01*

-X375499Y45217D01*

-X375362Y45250D01*

-X375499Y45283D01*

-X375761Y45391D01*

-X376002Y45539D01*

-X376218Y45723D01*

-X376402Y45939D01*

-X376550Y46180D01*

-X376658Y46442D01*

-X376724Y46718D01*

-X376741Y47000D01*

-X376724Y47282D01*

-X376658Y47558D01*

-X376550Y47820D01*

-X376402Y48061D01*

-X376218Y48277D01*

-X376002Y48461D01*

-X375761Y48609D01*

-X375499Y48717D01*

-X375223Y48783D01*

-X374941Y48806D01*

-X374938Y48805D01*

-Y132000D01*

-X387938D01*

-Y129804D01*

-X387659Y129782D01*

-X387383Y129716D01*

-X387121Y129608D01*

-X386880Y129460D01*

-X386664Y129276D01*

-X386480Y129060D01*

-X386332Y128819D01*

-X386224Y128557D01*

-X386158Y128281D01*

-X386135Y127999D01*

-X386158Y127717D01*

-X386224Y127441D01*

-X386332Y127179D01*

-X386480Y126938D01*

-X386664Y126722D01*

-X386880Y126538D01*

-X387121Y126390D01*

-X387383Y126282D01*

-X387659Y126216D01*

-X387938Y126194D01*

-Y123804D01*

-X387659Y123782D01*

-X387383Y123716D01*

-X387121Y123608D01*

-X386880Y123460D01*

-X386664Y123276D01*

-X386480Y123060D01*

-X386332Y122819D01*

-X386224Y122557D01*

-X386158Y122281D01*

-X386135Y121999D01*

-X386158Y121717D01*

-X386224Y121441D01*

-X386332Y121179D01*

-X386480Y120938D01*

-X386664Y120722D01*

-X386880Y120538D01*

-X387121Y120390D01*

-X387383Y120282D01*

-X387659Y120216D01*

-X387938Y120194D01*

-Y117804D01*

-X387659Y117782D01*

-X387383Y117716D01*

-X387121Y117608D01*

-X386880Y117460D01*

-X386664Y117276D01*

-X386480Y117060D01*

-X386332Y116819D01*

-X386224Y116557D01*

-X386158Y116281D01*

-X386135Y115999D01*

-X386158Y115717D01*

-X386224Y115441D01*

-X386332Y115179D01*

-X386480Y114938D01*

-X386664Y114722D01*

-X386880Y114538D01*

-X387121Y114390D01*

-X387383Y114282D01*

-X387659Y114216D01*

-X387938Y114194D01*

-Y111804D01*

-X387659Y111782D01*

-X387383Y111716D01*

-X387121Y111608D01*

-X386880Y111460D01*

-X386664Y111276D01*

-X386480Y111060D01*

-X386332Y110819D01*

-X386224Y110557D01*

-X386158Y110281D01*

-X386135Y109999D01*

-X386158Y109717D01*

-X386224Y109441D01*

-X386332Y109179D01*

-X386480Y108938D01*

-X386664Y108722D01*

-X386880Y108538D01*

-X387121Y108390D01*

-X387383Y108282D01*

-X387659Y108216D01*

-X387938Y108194D01*

-Y105804D01*

-X387659Y105782D01*

-X387383Y105716D01*

-X387121Y105608D01*

-X386880Y105460D01*

-X386664Y105276D01*

-X386480Y105060D01*

-X386332Y104819D01*

-X386224Y104557D01*

-X386158Y104281D01*

-X386135Y103999D01*

-X386158Y103717D01*

-X386224Y103441D01*

-X386332Y103179D01*

-X386480Y102938D01*

-X386664Y102722D01*

-X386880Y102538D01*

-X387121Y102390D01*

-X387383Y102282D01*

-X387659Y102216D01*

-X387938Y102194D01*

-Y99804D01*

-X387659Y99782D01*

-X387383Y99716D01*

-X387121Y99608D01*

-X386880Y99460D01*

-X386664Y99276D01*

-X386480Y99060D01*

-X386332Y98819D01*

-X386224Y98557D01*

-X386158Y98281D01*

-X386135Y97999D01*

-X386158Y97717D01*

-X386224Y97441D01*

-X386332Y97179D01*

-X386480Y96938D01*

-X386664Y96722D01*

-X386880Y96538D01*

-X387121Y96390D01*

-X387383Y96282D01*

-X387659Y96216D01*

-X387938Y96194D01*

-Y95304D01*

-X387659Y95282D01*

-X387383Y95216D01*

-X387121Y95108D01*

-X386880Y94960D01*

-X386664Y94776D01*

-X386480Y94560D01*

-X386332Y94319D01*

-X386224Y94057D01*

-X386158Y93781D01*

-X386135Y93499D01*

-X386158Y93217D01*

-X386224Y92941D01*

-X386332Y92679D01*

-X386480Y92438D01*

-X386664Y92222D01*

-X386880Y92038D01*

-X387121Y91890D01*

-X387383Y91782D01*

-X387659Y91716D01*

-X387938Y91694D01*

-Y39000D01*

-G37*

-G36*

-X374938D02*X368938D01*

-Y41695D01*

-X368941Y41694D01*

-X369223Y41717D01*

-X369499Y41783D01*

-X369761Y41891D01*

-X370002Y42039D01*

-X370218Y42223D01*

-X370402Y42439D01*

-X370550Y42680D01*

-X370658Y42942D01*

-X370724Y43218D01*

-X370741Y43500D01*

-X370724Y43782D01*

-X370658Y44058D01*

-X370550Y44320D01*

-X370402Y44561D01*

-X370218Y44777D01*

-X370002Y44961D01*

-X369761Y45109D01*

-X369499Y45217D01*

-X369223Y45283D01*

-X368941Y45306D01*

-X368938Y45305D01*

-Y46695D01*

-X368941Y46694D01*

-X369223Y46717D01*

-X369499Y46783D01*

-X369761Y46891D01*

-X370002Y47039D01*

-X370218Y47223D01*

-X370402Y47439D01*

-X370550Y47680D01*

-X370658Y47942D01*

-X370724Y48218D01*

-X370741Y48500D01*

-X370724Y48782D01*

-X370658Y49058D01*

-X370550Y49320D01*

-X370402Y49561D01*

-X370218Y49777D01*

-X370002Y49961D01*

-X369761Y50109D01*

-X369499Y50217D01*

-X369223Y50283D01*

-X368941Y50306D01*

-X368938Y50305D01*

-Y132000D01*

-X374938D01*

-Y48805D01*

-X374659Y48783D01*

-X374383Y48717D01*

-X374121Y48609D01*

-X373880Y48461D01*

-X373664Y48277D01*

-X373480Y48061D01*

-X373332Y47820D01*

-X373224Y47558D01*

-X373158Y47282D01*

-X373135Y47000D01*

-X373158Y46718D01*

-X373224Y46442D01*

-X373332Y46180D01*

-X373480Y45939D01*

-X373664Y45723D01*

-X373880Y45539D01*

-X374121Y45391D01*

-X374383Y45283D01*

-X374520Y45250D01*

-X374383Y45217D01*

-X374121Y45109D01*

-X373880Y44961D01*

-X373664Y44777D01*

-X373480Y44561D01*

-X373332Y44320D01*

-X373224Y44058D01*

-X373158Y43782D01*

-X373135Y43500D01*

-X373158Y43218D01*

-X373224Y42942D01*

-X373332Y42680D01*

-X373480Y42439D01*

-X373664Y42223D01*

-X373880Y42039D01*

-X374121Y41891D01*

-X374383Y41783D01*

-X374659Y41717D01*

-X374938Y41695D01*

-Y39000D01*

-G37*

-G36*

-X368938D02*X354938D01*

-Y91694D01*

-X354941Y91693D01*

-X355223Y91716D01*

-X355499Y91782D01*

-X355761Y91890D01*

-X356002Y92038D01*

-X356218Y92222D01*

-X356402Y92438D01*

-X356550Y92679D01*

-X356658Y92941D01*

-X356724Y93217D01*

-X356741Y93499D01*

-X356724Y93781D01*

-X356658Y94057D01*

-X356550Y94319D01*

-X356402Y94560D01*

-X356218Y94776D01*

-X356002Y94960D01*

-X355761Y95108D01*

-X355499Y95216D01*

-X355223Y95282D01*

-X354941Y95305D01*

-X354938Y95304D01*

-Y96194D01*

-X354941Y96193D01*

-X355223Y96216D01*

-X355499Y96282D01*

-X355761Y96390D01*

-X356002Y96538D01*

-X356218Y96722D01*

-X356402Y96938D01*

-X356550Y97179D01*

-X356658Y97441D01*

-X356724Y97717D01*

-X356741Y97999D01*

-X356724Y98281D01*

-X356658Y98557D01*

-X356550Y98819D01*

-X356402Y99060D01*

-X356218Y99276D01*

-X356002Y99460D01*

-X355761Y99608D01*

-X355499Y99716D01*

-X355223Y99782D01*

-X354941Y99805D01*

-X354938Y99804D01*

-Y102194D01*

-X354941Y102193D01*

-X355223Y102216D01*

-X355499Y102282D01*

-X355761Y102390D01*

-X356002Y102538D01*

-X356218Y102722D01*

-X356402Y102938D01*

-X356550Y103179D01*

-X356658Y103441D01*

-X356724Y103717D01*

-X356741Y103999D01*

-X356724Y104281D01*

-X356658Y104557D01*

-X356550Y104819D01*

-X356402Y105060D01*

-X356218Y105276D01*

-X356002Y105460D01*

-X355761Y105608D01*

-X355499Y105716D01*

-X355223Y105782D01*

-X354941Y105805D01*

-X354938Y105804D01*

-Y108194D01*

-X354941Y108193D01*

-X355223Y108216D01*

-X355499Y108282D01*

-X355761Y108390D01*

-X356002Y108538D01*

-X356218Y108722D01*

-X356402Y108938D01*

-X356550Y109179D01*

-X356658Y109441D01*

-X356724Y109717D01*

-X356741Y109999D01*

-X356724Y110281D01*

-X356658Y110557D01*

-X356550Y110819D01*

-X356402Y111060D01*

-X356218Y111276D01*

-X356002Y111460D01*

-X355761Y111608D01*

-X355499Y111716D01*

-X355223Y111782D01*

-X354941Y111805D01*

-X354938Y111804D01*

-Y114194D01*

-X354941Y114193D01*

-X355223Y114216D01*

-X355499Y114282D01*

-X355761Y114390D01*

-X356002Y114538D01*

-X356218Y114722D01*

-X356402Y114938D01*

-X356550Y115179D01*

-X356658Y115441D01*

-X356724Y115717D01*

-X356741Y115999D01*

-X356724Y116281D01*

-X356658Y116557D01*

-X356550Y116819D01*

-X356402Y117060D01*

-X356218Y117276D01*

-X356002Y117460D01*

-X355761Y117608D01*

-X355499Y117716D01*

-X355223Y117782D01*

-X354941Y117805D01*

-X354938Y117804D01*

-Y120194D01*

-X354941Y120193D01*

-X355223Y120216D01*

-X355499Y120282D01*

-X355761Y120390D01*

-X356002Y120538D01*

-X356218Y120722D01*

-X356402Y120938D01*

-X356550Y121179D01*

-X356658Y121441D01*

-X356724Y121717D01*

-X356741Y121999D01*

-X356724Y122281D01*

-X356658Y122557D01*

-X356550Y122819D01*

-X356402Y123060D01*

-X356218Y123276D01*

-X356002Y123460D01*

-X355761Y123608D01*

-X355499Y123716D01*

-X355223Y123782D01*

-X354941Y123805D01*

-X354938Y123804D01*

-Y126194D01*

-X354941Y126193D01*

-X355223Y126216D01*

-X355499Y126282D01*

-X355761Y126390D01*

-X356002Y126538D01*

-X356218Y126722D01*

-X356402Y126938D01*

-X356550Y127179D01*

-X356658Y127441D01*

-X356724Y127717D01*

-X356741Y127999D01*

-X356724Y128281D01*

-X356658Y128557D01*

-X356550Y128819D01*

-X356402Y129060D01*

-X356218Y129276D01*

-X356002Y129460D01*

-X355761Y129608D01*

-X355499Y129716D01*

-X355223Y129782D01*

-X354941Y129805D01*

-X354938Y129804D01*

-Y132000D01*

-X368938D01*

-Y50305D01*

-X368659Y50283D01*

-X368383Y50217D01*

-X368121Y50109D01*

-X367880Y49961D01*

-X367664Y49777D01*

-X367480Y49561D01*

-X367332Y49320D01*

-X367224Y49058D01*

-X367158Y48782D01*

-X367135Y48500D01*

-X367158Y48218D01*

-X367224Y47942D01*

-X367332Y47680D01*

-X367480Y47439D01*

-X367664Y47223D01*

-X367880Y47039D01*

-X368121Y46891D01*

-X368383Y46783D01*

-X368659Y46717D01*

-X368938Y46695D01*

-Y45305D01*

-X368659Y45283D01*

-X368383Y45217D01*

-X368121Y45109D01*

-X367880Y44961D01*

-X367664Y44777D01*

-X367480Y44561D01*

-X367332Y44320D01*

-X367224Y44058D01*

-X367158Y43782D01*

-X367135Y43500D01*

-X367158Y43218D01*

-X367224Y42942D01*

-X367332Y42680D01*

-X367480Y42439D01*

-X367664Y42223D01*

-X367880Y42039D01*

-X368121Y41891D01*

-X368383Y41783D01*

-X368659Y41717D01*

-X368938Y41695D01*

-Y39000D01*

-G37*

-G36*

-X354938D02*X299273D01*

-Y42867D01*

-X299374Y42909D01*

-X299575Y43033D01*

-X299755Y43186D01*

-X299908Y43366D01*

-X300032Y43567D01*

-X300122Y43785D01*

-X300177Y44015D01*

-X300191Y44250D01*

-X300177Y50985D01*

-X300122Y51215D01*

-X300032Y51433D01*

-X299908Y51634D01*

-X299755Y51814D01*

-X299575Y51967D01*

-X299374Y52091D01*

-X299273Y52133D01*

-Y55170D01*

-X299384Y55204D01*

-X299491Y55256D01*

-X299587Y55323D01*

-X299672Y55405D01*

-X299743Y55500D01*

-X299797Y55605D01*

-X299956Y56008D01*

-X300073Y56425D01*

-X300152Y56852D01*

-X300191Y57283D01*

-Y57717D01*

-X300152Y58148D01*

-X300073Y58575D01*

-X299956Y58992D01*

-X299801Y59397D01*

-X299746Y59502D01*

-X299675Y59597D01*

-X299589Y59679D01*

-X299492Y59747D01*

-X299386Y59799D01*

-X299273Y59834D01*

-Y64673D01*

-X299296Y64699D01*

-X299686Y65337D01*

-X299972Y66028D01*

-X300147Y66755D01*

-X300191Y67500D01*

-X300147Y68245D01*

-X299972Y68972D01*

-X299686Y69663D01*

-X299296Y70301D01*

-X299273Y70327D01*

-Y72500D01*

-X328441D01*

-Y132000D01*

-X354938D01*

-Y129804D01*

-X354659Y129782D01*

-X354383Y129716D01*

-X354121Y129608D01*

-X353880Y129460D01*

-X353664Y129276D01*

-X353480Y129060D01*

-X353332Y128819D01*

-X353224Y128557D01*

-X353158Y128281D01*

-X353135Y127999D01*

-X353158Y127717D01*

-X353224Y127441D01*

-X353332Y127179D01*

-X353480Y126938D01*

-X353664Y126722D01*

-X353880Y126538D01*

-X354121Y126390D01*

-X354383Y126282D01*

-X354659Y126216D01*

-X354938Y126194D01*

-Y123804D01*

-X354659Y123782D01*

-X354383Y123716D01*

-X354121Y123608D01*

-X353880Y123460D01*

-X353664Y123276D01*

-X353480Y123060D01*

-X353332Y122819D01*

-X353224Y122557D01*

-X353158Y122281D01*

-X353135Y121999D01*

-X353158Y121717D01*

-X353224Y121441D01*

-X353332Y121179D01*

-X353480Y120938D01*

-X353664Y120722D01*

-X353880Y120538D01*

-X354121Y120390D01*

-X354383Y120282D01*

-X354659Y120216D01*

-X354938Y120194D01*

-Y117804D01*

-X354659Y117782D01*

-X354383Y117716D01*

-X354121Y117608D01*

-X353880Y117460D01*

-X353664Y117276D01*

-X353480Y117060D01*

-X353332Y116819D01*

-X353224Y116557D01*

-X353158Y116281D01*

-X353135Y115999D01*

-X353158Y115717D01*

-X353224Y115441D01*

-X353332Y115179D01*

-X353480Y114938D01*

-X353664Y114722D01*

-X353880Y114538D01*

-X354121Y114390D01*

-X354383Y114282D01*

-X354659Y114216D01*

-X354938Y114194D01*

-Y111804D01*

-X354659Y111782D01*

-X354383Y111716D01*

-X354121Y111608D01*

-X353880Y111460D01*

-X353664Y111276D01*

-X353480Y111060D01*

-X353332Y110819D01*

-X353224Y110557D01*

-X353158Y110281D01*

-X353135Y109999D01*

-X353158Y109717D01*

-X353224Y109441D01*

-X353332Y109179D01*

-X353480Y108938D01*

-X353664Y108722D01*

-X353880Y108538D01*

-X354121Y108390D01*

-X354383Y108282D01*

-X354659Y108216D01*

-X354938Y108194D01*

-Y105804D01*

-X354659Y105782D01*

-X354383Y105716D01*

-X354121Y105608D01*

-X353880Y105460D01*

-X353664Y105276D01*

-X353480Y105060D01*

-X353332Y104819D01*

-X353224Y104557D01*

-X353158Y104281D01*

-X353135Y103999D01*

-X353158Y103717D01*

-X353224Y103441D01*

-X353332Y103179D01*

-X353480Y102938D01*

-X353664Y102722D01*

-X353880Y102538D01*

-X354121Y102390D01*

-X354383Y102282D01*

-X354659Y102216D01*

-X354938Y102194D01*

-Y99804D01*

-X354659Y99782D01*

-X354383Y99716D01*

-X354121Y99608D01*

-X353880Y99460D01*

-X353664Y99276D01*

-X353480Y99060D01*

-X353332Y98819D01*

-X353224Y98557D01*

-X353158Y98281D01*

-X353135Y97999D01*

-X353158Y97717D01*

-X353224Y97441D01*

-X353332Y97179D01*

-X353480Y96938D01*

-X353664Y96722D01*

-X353880Y96538D01*

-X354121Y96390D01*

-X354383Y96282D01*

-X354659Y96216D01*

-X354938Y96194D01*

-Y95304D01*

-X354659Y95282D01*

-X354383Y95216D01*

-X354121Y95108D01*

-X353880Y94960D01*

-X353664Y94776D01*

-X353480Y94560D01*

-X353332Y94319D01*

-X353224Y94057D01*

-X353158Y93781D01*

-X353135Y93499D01*

-X353158Y93217D01*

-X353224Y92941D01*

-X353332Y92679D01*

-X353480Y92438D01*

-X353664Y92222D01*

-X353880Y92038D01*

-X354121Y91890D01*

-X354383Y91782D01*

-X354659Y91716D01*

-X354938Y91694D01*

-Y39000D01*

-G37*

-G36*

-X299273Y70327D02*X298810Y70869D01*

-X298242Y71355D01*

-X297604Y71745D01*

-X296913Y72031D01*

-X296186Y72206D01*

-X295441Y72265D01*

-Y72500D01*

-X299273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X299156Y52181D01*

-X298926Y52236D01*

-X298691Y52250D01*

-X295441Y52243D01*

-Y52750D01*

-X295658D01*

-X296089Y52789D01*

-X296516Y52868D01*

-X296933Y52985D01*

-X297338Y53140D01*

-X297443Y53195D01*

-X297538Y53266D01*

-X297620Y53352D01*

-X297688Y53449D01*

-X297740Y53555D01*

-X297775Y53669D01*

-X297791Y53786D01*

-X297789Y53905D01*

-X297768Y54022D01*

-X297730Y54134D01*

-X297674Y54238D01*

-X297603Y54333D01*

-X297517Y54415D01*

-X297420Y54483D01*

-X297314Y54535D01*

-X297200Y54570D01*

-X297083Y54586D01*

-X296964Y54584D01*

-X296848Y54564D01*

-X296736Y54523D01*

-X296461Y54414D01*

-X296176Y54334D01*

-X295884Y54280D01*

-X295589Y54253D01*

-X295441D01*

-Y60747D01*

-X295589D01*

-X295884Y60720D01*

-X296176Y60666D01*

-X296461Y60586D01*

-X296738Y60480D01*

-X296848Y60440D01*

-X296965Y60419D01*

-X297083Y60417D01*

-X297200Y60433D01*

-X297312Y60468D01*

-X297419Y60520D01*

-X297515Y60587D01*

-X297600Y60669D01*

-X297671Y60763D01*

-X297727Y60868D01*

-X297765Y60979D01*

-X297786Y61096D01*

-X297788Y61214D01*

-X297771Y61330D01*

-X297737Y61443D01*

-X297685Y61550D01*

-X297618Y61646D01*

-X297536Y61731D01*

-X297441Y61802D01*

-X297336Y61856D01*

-X296933Y62015D01*

-X296516Y62132D01*

-X296089Y62211D01*

-X295658Y62250D01*

-X295441D01*

-Y62735D01*

-X296186Y62794D01*

-X296913Y62969D01*

-X297604Y63255D01*

-X298242Y63645D01*

-X298810Y64131D01*

-X299273Y64673D01*

-Y59834D01*

-X299272Y59834D01*

-X299155Y59850D01*

-X299036Y59848D01*

-X298919Y59827D01*

-X298807Y59789D01*

-X298703Y59733D01*

-X298608Y59662D01*

-X298526Y59576D01*

-X298458Y59479D01*

-X298406Y59373D01*

-X298371Y59259D01*

-X298355Y59142D01*

-X298357Y59023D01*

-X298377Y58907D01*

-X298418Y58795D01*

-X298527Y58520D01*

-X298607Y58235D01*

-X298661Y57943D01*

-X298688Y57648D01*

-Y57352D01*

-X298661Y57057D01*

-X298607Y56765D01*

-X298527Y56480D01*

-X298421Y56203D01*

-X298381Y56093D01*

-X298360Y55976D01*

-X298358Y55858D01*

-X298374Y55741D01*

-X298409Y55629D01*

-X298461Y55522D01*

-X298528Y55426D01*

-X298610Y55341D01*

-X298704Y55270D01*

-X298809Y55214D01*

-X298920Y55176D01*

-X299037Y55155D01*

-X299155Y55153D01*

-X299271Y55170D01*

-X299273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X295441D01*

-Y42757D01*

-X298926Y42764D01*

-X299156Y42819D01*

-X299273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X291609Y64673D02*X292072Y64131D01*

-X292640Y63645D01*

-X293278Y63255D01*

-X293969Y62969D01*

-X294696Y62794D01*

-X295441Y62735D01*

-Y62250D01*

-X295224D01*

-X294793Y62211D01*

-X294366Y62132D01*

-X293949Y62015D01*

-X293544Y61860D01*

-X293439Y61805D01*

-X293344Y61734D01*

-X293262Y61648D01*

-X293194Y61551D01*

-X293142Y61445D01*

-X293107Y61331D01*

-X293091Y61214D01*

-X293093Y61095D01*

-X293114Y60978D01*

-X293152Y60866D01*

-X293208Y60762D01*

-X293279Y60667D01*

-X293365Y60585D01*

-X293462Y60517D01*

-X293568Y60465D01*

-X293682Y60430D01*

-X293799Y60414D01*

-X293918Y60416D01*

-X294034Y60436D01*

-X294146Y60477D01*

-X294421Y60586D01*

-X294706Y60666D01*

-X294998Y60720D01*

-X295293Y60747D01*

-X295441D01*

-Y54253D01*

-X295293D01*

-X294998Y54280D01*

-X294706Y54334D01*

-X294421Y54414D01*

-X294144Y54520D01*

-X294034Y54560D01*

-X293917Y54581D01*

-X293799Y54583D01*

-X293682Y54567D01*

-X293570Y54532D01*

-X293463Y54480D01*

-X293367Y54413D01*

-X293282Y54331D01*

-X293211Y54237D01*

-X293155Y54132D01*

-X293117Y54021D01*

-X293096Y53904D01*

-X293094Y53786D01*

-X293111Y53670D01*

-X293145Y53557D01*

-X293197Y53450D01*

-X293264Y53354D01*

-X293346Y53269D01*

-X293441Y53198D01*

-X293546Y53144D01*

-X293949Y52985D01*

-X294366Y52868D01*

-X294793Y52789D01*

-X295224Y52750D01*

-X295441D01*

-Y52243D01*

-X291956Y52236D01*

-X291726Y52181D01*

-X291609Y52133D01*

-Y55166D01*

-X291610Y55166D01*

-X291727Y55150D01*

-X291846Y55152D01*

-X291963Y55173D01*

-X292075Y55211D01*

-X292179Y55267D01*

-X292274Y55338D01*

-X292356Y55424D01*

-X292424Y55521D01*

-X292476Y55627D01*

-X292511Y55741D01*

-X292527Y55858D01*

-X292525Y55977D01*

-X292505Y56093D01*

-X292464Y56205D01*

-X292355Y56480D01*

-X292275Y56765D01*

-X292221Y57057D01*

-X292194Y57352D01*

-Y57648D01*

-X292221Y57943D01*

-X292275Y58235D01*

-X292355Y58520D01*

-X292461Y58797D01*

-X292501Y58907D01*

-X292522Y59024D01*

-X292524Y59142D01*

-X292508Y59259D01*

-X292473Y59371D01*

-X292421Y59478D01*

-X292354Y59574D01*

-X292272Y59659D01*

-X292178Y59730D01*

-X292073Y59786D01*

-X291962Y59824D01*

-X291845Y59845D01*

-X291727Y59847D01*

-X291610Y59830D01*

-X291609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X295441D01*

-Y72265D01*

-X294696Y72206D01*

-X293969Y72031D01*

-X293278Y71745D01*

-X292640Y71355D01*

-X292072Y70869D01*

-X291609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X295441Y39000D02*X291609D01*

-Y42867D01*

-X291726Y42819D01*

-X291956Y42764D01*

-X292191Y42750D01*

-X295441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X291609D02*X269273D01*

-Y42867D01*

-X269374Y42909D01*

-X269575Y43033D01*

-X269755Y43186D01*

-X269908Y43366D01*

-X270032Y43567D01*

-X270122Y43785D01*

-X270177Y44015D01*

-X270191Y44250D01*

-X270177Y50985D01*

-X270122Y51215D01*

-X270032Y51433D01*

-X269908Y51634D01*

-X269755Y51814D01*

-X269575Y51967D01*

-X269374Y52091D01*

-X269273Y52133D01*

-Y55170D01*

-X269384Y55204D01*

-X269491Y55256D01*

-X269587Y55323D01*

-X269672Y55405D01*

-X269743Y55500D01*

-X269797Y55605D01*

-X269956Y56008D01*

-X270073Y56425D01*

-X270152Y56852D01*

-X270191Y57283D01*

-Y57717D01*

-X270152Y58148D01*

-X270073Y58575D01*

-X269956Y58992D01*

-X269801Y59397D01*

-X269746Y59502D01*

-X269675Y59597D01*

-X269589Y59679D01*

-X269492Y59747D01*

-X269386Y59799D01*

-X269273Y59834D01*

-Y64673D01*

-X269296Y64699D01*

-X269686Y65337D01*

-X269972Y66028D01*

-X270147Y66755D01*

-X270191Y67500D01*

-X270147Y68245D01*

-X269972Y68972D01*

-X269686Y69663D01*

-X269296Y70301D01*

-X269273Y70327D01*

-Y72500D01*

-X291609D01*

-Y70327D01*

-X291586Y70301D01*

-X291196Y69663D01*

-X290910Y68972D01*

-X290735Y68245D01*

-X290676Y67500D01*

-X290735Y66755D01*

-X290910Y66028D01*

-X291196Y65337D01*

-X291586Y64699D01*

-X291609Y64673D01*

-Y59830D01*

-X291498Y59796D01*

-X291391Y59744D01*

-X291295Y59677D01*

-X291210Y59595D01*

-X291139Y59500D01*

-X291085Y59395D01*

-X290926Y58992D01*

-X290809Y58575D01*

-X290730Y58148D01*

-X290691Y57717D01*

-Y57283D01*

-X290730Y56852D01*

-X290809Y56425D01*

-X290926Y56008D01*

-X291081Y55603D01*

-X291136Y55498D01*

-X291207Y55403D01*

-X291293Y55321D01*

-X291390Y55253D01*

-X291496Y55201D01*

-X291609Y55166D01*

-Y52133D01*

-X291508Y52091D01*

-X291307Y51967D01*

-X291127Y51814D01*

-X290974Y51634D01*

-X290850Y51433D01*

-X290760Y51215D01*

-X290705Y50985D01*

-X290691Y50750D01*

-X290705Y44015D01*

-X290760Y43785D01*

-X290850Y43567D01*

-X290974Y43366D01*

-X291127Y43186D01*

-X291307Y43033D01*

-X291508Y42909D01*

-X291609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X269273Y70327D02*X268810Y70869D01*

-X268242Y71355D01*

-X267604Y71745D01*

-X266913Y72031D01*

-X266186Y72206D01*

-X265441Y72265D01*

-Y72500D01*

-X269273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X269156Y52181D01*

-X268926Y52236D01*

-X268691Y52250D01*

-X265441Y52243D01*

-Y52750D01*

-X265658D01*

-X266089Y52789D01*

-X266516Y52868D01*

-X266933Y52985D01*

-X267338Y53140D01*

-X267443Y53195D01*

-X267538Y53266D01*

-X267620Y53352D01*

-X267688Y53449D01*

-X267740Y53555D01*

-X267775Y53669D01*

-X267791Y53786D01*

-X267789Y53905D01*

-X267768Y54022D01*

-X267730Y54134D01*

-X267674Y54238D01*

-X267603Y54333D01*

-X267517Y54415D01*

-X267420Y54483D01*

-X267314Y54535D01*

-X267200Y54570D01*

-X267083Y54586D01*

-X266964Y54584D01*

-X266848Y54564D01*

-X266736Y54523D01*

-X266461Y54414D01*

-X266176Y54334D01*

-X265884Y54280D01*

-X265589Y54253D01*

-X265441D01*

-Y60747D01*

-X265589D01*

-X265884Y60720D01*

-X266176Y60666D01*

-X266461Y60586D01*

-X266738Y60480D01*

-X266848Y60440D01*

-X266965Y60419D01*

-X267083Y60417D01*

-X267200Y60433D01*

-X267312Y60468D01*

-X267419Y60520D01*

-X267515Y60587D01*

-X267600Y60669D01*

-X267671Y60763D01*

-X267727Y60868D01*

-X267765Y60979D01*

-X267786Y61096D01*

-X267788Y61214D01*

-X267771Y61330D01*

-X267737Y61443D01*

-X267685Y61550D01*

-X267618Y61646D01*

-X267536Y61731D01*

-X267441Y61802D01*

-X267336Y61856D01*

-X266933Y62015D01*

-X266516Y62132D01*

-X266089Y62211D01*

-X265658Y62250D01*

-X265441D01*

-Y62735D01*

-X266186Y62794D01*

-X266913Y62969D01*

-X267604Y63255D01*

-X268242Y63645D01*

-X268810Y64131D01*

-X269273Y64673D01*

-Y59834D01*

-X269272Y59834D01*

-X269155Y59850D01*

-X269036Y59848D01*

-X268919Y59827D01*

-X268807Y59789D01*

-X268703Y59733D01*

-X268608Y59662D01*

-X268526Y59576D01*

-X268458Y59479D01*

-X268406Y59373D01*

-X268371Y59259D01*

-X268355Y59142D01*

-X268357Y59023D01*

-X268377Y58907D01*

-X268418Y58795D01*

-X268527Y58520D01*

-X268607Y58235D01*

-X268661Y57943D01*

-X268688Y57648D01*

-Y57352D01*

-X268661Y57057D01*

-X268607Y56765D01*

-X268527Y56480D01*

-X268421Y56203D01*

-X268381Y56093D01*

-X268360Y55976D01*

-X268358Y55858D01*

-X268374Y55741D01*

-X268409Y55629D01*

-X268461Y55522D01*

-X268528Y55426D01*

-X268610Y55341D01*

-X268704Y55270D01*

-X268809Y55214D01*

-X268920Y55176D01*

-X269037Y55155D01*

-X269155Y55153D01*

-X269271Y55170D01*

-X269273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X265441D01*

-Y42757D01*

-X268926Y42764D01*

-X269156Y42819D01*

-X269273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X261609Y64673D02*X262072Y64131D01*

-X262640Y63645D01*

-X263278Y63255D01*

-X263969Y62969D01*

-X264696Y62794D01*

-X265441Y62735D01*

-Y62250D01*

-X265224D01*

-X264793Y62211D01*

-X264366Y62132D01*

-X263949Y62015D01*

-X263544Y61860D01*

-X263439Y61805D01*

-X263344Y61734D01*

-X263262Y61648D01*

-X263194Y61551D01*

-X263142Y61445D01*

-X263107Y61331D01*

-X263091Y61214D01*

-X263093Y61095D01*

-X263114Y60978D01*

-X263152Y60866D01*

-X263208Y60762D01*

-X263279Y60667D01*

-X263365Y60585D01*

-X263462Y60517D01*

-X263568Y60465D01*

-X263682Y60430D01*

-X263799Y60414D01*

-X263918Y60416D01*

-X264034Y60436D01*

-X264146Y60477D01*

-X264421Y60586D01*

-X264706Y60666D01*

-X264998Y60720D01*

-X265293Y60747D01*

-X265441D01*

-Y54253D01*

-X265293D01*

-X264998Y54280D01*

-X264706Y54334D01*

-X264421Y54414D01*

-X264144Y54520D01*

-X264034Y54560D01*

-X263917Y54581D01*

-X263799Y54583D01*

-X263682Y54567D01*

-X263570Y54532D01*

-X263463Y54480D01*

-X263367Y54413D01*

-X263282Y54331D01*

-X263211Y54237D01*

-X263155Y54132D01*

-X263117Y54021D01*

-X263096Y53904D01*

-X263094Y53786D01*

-X263111Y53670D01*

-X263145Y53557D01*

-X263197Y53450D01*

-X263264Y53354D01*

-X263346Y53269D01*

-X263441Y53198D01*

-X263546Y53144D01*

-X263949Y52985D01*

-X264366Y52868D01*

-X264793Y52789D01*

-X265224Y52750D01*

-X265441D01*

-Y52243D01*

-X261956Y52236D01*

-X261726Y52181D01*

-X261609Y52133D01*

-Y55166D01*

-X261610Y55166D01*

-X261727Y55150D01*

-X261846Y55152D01*

-X261963Y55173D01*

-X262075Y55211D01*

-X262179Y55267D01*

-X262274Y55338D01*

-X262356Y55424D01*

-X262424Y55521D01*

-X262476Y55627D01*

-X262511Y55741D01*

-X262527Y55858D01*

-X262525Y55977D01*

-X262505Y56093D01*

-X262464Y56205D01*

-X262355Y56480D01*

-X262275Y56765D01*

-X262221Y57057D01*

-X262194Y57352D01*

-Y57648D01*

-X262221Y57943D01*

-X262275Y58235D01*

-X262355Y58520D01*

-X262461Y58797D01*

-X262501Y58907D01*

-X262522Y59024D01*

-X262524Y59142D01*

-X262508Y59259D01*

-X262473Y59371D01*

-X262421Y59478D01*

-X262354Y59574D01*

-X262272Y59659D01*

-X262178Y59730D01*

-X262073Y59786D01*

-X261962Y59824D01*

-X261845Y59845D01*

-X261727Y59847D01*

-X261610Y59830D01*

-X261609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X265441D01*

-Y72265D01*

-X264696Y72206D01*

-X263969Y72031D01*

-X263278Y71745D01*

-X262640Y71355D01*

-X262072Y70869D01*

-X261609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X265441Y39000D02*X261609D01*

-Y42867D01*

-X261726Y42819D01*

-X261956Y42764D01*

-X262191Y42750D01*

-X265441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X261609D02*X239273D01*

-Y42867D01*

-X239374Y42909D01*

-X239575Y43033D01*

-X239755Y43186D01*

-X239908Y43366D01*

-X240032Y43567D01*

-X240122Y43785D01*

-X240177Y44015D01*

-X240191Y44250D01*

-X240177Y50985D01*

-X240122Y51215D01*

-X240032Y51433D01*

-X239908Y51634D01*

-X239755Y51814D01*

-X239575Y51967D01*

-X239374Y52091D01*

-X239273Y52133D01*

-Y55170D01*

-X239384Y55204D01*

-X239491Y55256D01*

-X239587Y55323D01*

-X239672Y55405D01*

-X239743Y55500D01*

-X239797Y55605D01*

-X239956Y56008D01*

-X240073Y56425D01*

-X240152Y56852D01*

-X240191Y57283D01*

-Y57717D01*

-X240152Y58148D01*

-X240073Y58575D01*

-X239956Y58992D01*

-X239801Y59397D01*

-X239746Y59502D01*

-X239675Y59597D01*

-X239589Y59679D01*

-X239492Y59747D01*

-X239386Y59799D01*

-X239273Y59834D01*

-Y64673D01*

-X239296Y64699D01*

-X239686Y65337D01*

-X239972Y66028D01*

-X240147Y66755D01*

-X240191Y67500D01*

-X240147Y68245D01*

-X239972Y68972D01*

-X239686Y69663D01*

-X239296Y70301D01*

-X239273Y70327D01*

-Y72500D01*

-X261609D01*

-Y70327D01*

-X261586Y70301D01*

-X261196Y69663D01*

-X260910Y68972D01*

-X260735Y68245D01*

-X260676Y67500D01*

-X260735Y66755D01*

-X260910Y66028D01*

-X261196Y65337D01*

-X261586Y64699D01*

-X261609Y64673D01*

-Y59830D01*

-X261498Y59796D01*

-X261391Y59744D01*

-X261295Y59677D01*

-X261210Y59595D01*

-X261139Y59500D01*

-X261085Y59395D01*

-X260926Y58992D01*

-X260809Y58575D01*

-X260730Y58148D01*

-X260691Y57717D01*

-Y57283D01*

-X260730Y56852D01*

-X260809Y56425D01*

-X260926Y56008D01*

-X261081Y55603D01*

-X261136Y55498D01*

-X261207Y55403D01*

-X261293Y55321D01*

-X261390Y55253D01*

-X261496Y55201D01*

-X261609Y55166D01*

-Y52133D01*

-X261508Y52091D01*

-X261307Y51967D01*

-X261127Y51814D01*

-X260974Y51634D01*

-X260850Y51433D01*

-X260760Y51215D01*

-X260705Y50985D01*

-X260691Y50750D01*

-X260705Y44015D01*

-X260760Y43785D01*

-X260850Y43567D01*

-X260974Y43366D01*

-X261127Y43186D01*

-X261307Y43033D01*

-X261508Y42909D01*

-X261609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X239273Y70327D02*X238810Y70869D01*

-X238242Y71355D01*

-X237604Y71745D01*

-X236913Y72031D01*

-X236186Y72206D01*

-X235441Y72265D01*

-Y72500D01*

-X239273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X239156Y52181D01*

-X238926Y52236D01*

-X238691Y52250D01*

-X235441Y52243D01*

-Y52750D01*

-X235658D01*

-X236089Y52789D01*

-X236516Y52868D01*

-X236933Y52985D01*

-X237338Y53140D01*

-X237443Y53195D01*

-X237538Y53266D01*

-X237620Y53352D01*

-X237688Y53449D01*

-X237740Y53555D01*

-X237775Y53669D01*

-X237791Y53786D01*

-X237789Y53905D01*

-X237768Y54022D01*

-X237730Y54134D01*

-X237674Y54238D01*

-X237603Y54333D01*

-X237517Y54415D01*

-X237420Y54483D01*

-X237314Y54535D01*

-X237200Y54570D01*

-X237083Y54586D01*

-X236964Y54584D01*

-X236848Y54564D01*

-X236736Y54523D01*

-X236461Y54414D01*

-X236176Y54334D01*

-X235884Y54280D01*

-X235589Y54253D01*

-X235441D01*

-Y60747D01*

-X235589D01*

-X235884Y60720D01*

-X236176Y60666D01*

-X236461Y60586D01*

-X236738Y60480D01*

-X236848Y60440D01*

-X236965Y60419D01*

-X237083Y60417D01*

-X237200Y60433D01*

-X237312Y60468D01*

-X237419Y60520D01*

-X237515Y60587D01*

-X237600Y60669D01*

-X237671Y60763D01*

-X237727Y60868D01*

-X237765Y60979D01*

-X237786Y61096D01*

-X237788Y61214D01*

-X237771Y61330D01*

-X237737Y61443D01*

-X237685Y61550D01*

-X237618Y61646D01*

-X237536Y61731D01*

-X237441Y61802D01*

-X237336Y61856D01*

-X236933Y62015D01*

-X236516Y62132D01*

-X236089Y62211D01*

-X235658Y62250D01*

-X235441D01*

-Y62735D01*

-X236186Y62794D01*

-X236913Y62969D01*

-X237604Y63255D01*

-X238242Y63645D01*

-X238810Y64131D01*

-X239273Y64673D01*

-Y59834D01*

-X239272Y59834D01*

-X239155Y59850D01*

-X239036Y59848D01*

-X238919Y59827D01*

-X238807Y59789D01*

-X238703Y59733D01*

-X238608Y59662D01*

-X238526Y59576D01*

-X238458Y59479D01*

-X238406Y59373D01*

-X238371Y59259D01*

-X238355Y59142D01*

-X238357Y59023D01*

-X238377Y58907D01*

-X238418Y58795D01*

-X238527Y58520D01*

-X238607Y58235D01*

-X238661Y57943D01*

-X238688Y57648D01*

-Y57352D01*

-X238661Y57057D01*

-X238607Y56765D01*

-X238527Y56480D01*

-X238421Y56203D01*

-X238381Y56093D01*

-X238360Y55976D01*

-X238358Y55858D01*

-X238374Y55741D01*

-X238409Y55629D01*

-X238461Y55522D01*

-X238528Y55426D01*

-X238610Y55341D01*

-X238704Y55270D01*

-X238809Y55214D01*

-X238920Y55176D01*

-X239037Y55155D01*

-X239155Y55153D01*

-X239271Y55170D01*

-X239273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X235441D01*

-Y42757D01*

-X238926Y42764D01*

-X239156Y42819D01*

-X239273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X231609Y64673D02*X232072Y64131D01*

-X232640Y63645D01*

-X233278Y63255D01*

-X233969Y62969D01*

-X234696Y62794D01*

-X235441Y62735D01*

-Y62250D01*

-X235224D01*

-X234793Y62211D01*

-X234366Y62132D01*

-X233949Y62015D01*

-X233544Y61860D01*

-X233439Y61805D01*

-X233344Y61734D01*

-X233262Y61648D01*

-X233194Y61551D01*

-X233142Y61445D01*

-X233107Y61331D01*

-X233091Y61214D01*

-X233093Y61095D01*

-X233114Y60978D01*

-X233152Y60866D01*

-X233208Y60762D01*

-X233279Y60667D01*

-X233365Y60585D01*

-X233462Y60517D01*

-X233568Y60465D01*

-X233682Y60430D01*

-X233799Y60414D01*

-X233918Y60416D01*

-X234034Y60436D01*

-X234146Y60477D01*

-X234421Y60586D01*

-X234706Y60666D01*

-X234998Y60720D01*

-X235293Y60747D01*

-X235441D01*

-Y54253D01*

-X235293D01*

-X234998Y54280D01*

-X234706Y54334D01*

-X234421Y54414D01*

-X234144Y54520D01*

-X234034Y54560D01*

-X233917Y54581D01*

-X233799Y54583D01*

-X233682Y54567D01*

-X233570Y54532D01*

-X233463Y54480D01*

-X233367Y54413D01*

-X233282Y54331D01*

-X233211Y54237D01*

-X233155Y54132D01*

-X233117Y54021D01*

-X233096Y53904D01*

-X233094Y53786D01*

-X233111Y53670D01*

-X233145Y53557D01*

-X233197Y53450D01*

-X233264Y53354D01*

-X233346Y53269D01*

-X233441Y53198D01*

-X233546Y53144D01*

-X233949Y52985D01*

-X234366Y52868D01*

-X234793Y52789D01*

-X235224Y52750D01*

-X235441D01*

-Y52243D01*

-X231956Y52236D01*

-X231726Y52181D01*

-X231609Y52133D01*

-Y55166D01*

-X231610Y55166D01*

-X231727Y55150D01*

-X231846Y55152D01*

-X231963Y55173D01*

-X232075Y55211D01*

-X232179Y55267D01*

-X232274Y55338D01*

-X232356Y55424D01*

-X232424Y55521D01*

-X232476Y55627D01*

-X232511Y55741D01*

-X232527Y55858D01*

-X232525Y55977D01*

-X232505Y56093D01*

-X232464Y56205D01*

-X232355Y56480D01*

-X232275Y56765D01*

-X232221Y57057D01*

-X232194Y57352D01*

-Y57648D01*

-X232221Y57943D01*

-X232275Y58235D01*

-X232355Y58520D01*

-X232461Y58797D01*

-X232501Y58907D01*

-X232522Y59024D01*

-X232524Y59142D01*

-X232508Y59259D01*

-X232473Y59371D01*

-X232421Y59478D01*

-X232354Y59574D01*

-X232272Y59659D01*

-X232178Y59730D01*

-X232073Y59786D01*

-X231962Y59824D01*

-X231845Y59845D01*

-X231727Y59847D01*

-X231610Y59830D01*

-X231609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X235441D01*

-Y72265D01*

-X234696Y72206D01*

-X233969Y72031D01*

-X233278Y71745D01*

-X232640Y71355D01*

-X232072Y70869D01*

-X231609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X235441Y39000D02*X231609D01*

-Y42867D01*

-X231726Y42819D01*

-X231956Y42764D01*

-X232191Y42750D01*

-X235441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X231609D02*X209273D01*

-Y42867D01*

-X209374Y42909D01*

-X209575Y43033D01*

-X209755Y43186D01*

-X209908Y43366D01*

-X210032Y43567D01*

-X210122Y43785D01*

-X210177Y44015D01*

-X210191Y44250D01*

-X210177Y50985D01*

-X210122Y51215D01*

-X210032Y51433D01*

-X209908Y51634D01*

-X209755Y51814D01*

-X209575Y51967D01*

-X209374Y52091D01*

-X209273Y52133D01*

-Y55170D01*

-X209384Y55204D01*

-X209491Y55256D01*

-X209587Y55323D01*

-X209672Y55405D01*

-X209743Y55500D01*

-X209797Y55605D01*

-X209956Y56008D01*

-X210073Y56425D01*

-X210152Y56852D01*

-X210191Y57283D01*

-Y57717D01*

-X210152Y58148D01*

-X210073Y58575D01*

-X209956Y58992D01*

-X209801Y59397D01*

-X209746Y59502D01*

-X209675Y59597D01*

-X209589Y59679D01*

-X209492Y59747D01*

-X209386Y59799D01*

-X209273Y59834D01*

-Y64673D01*

-X209296Y64699D01*

-X209686Y65337D01*

-X209972Y66028D01*

-X210147Y66755D01*

-X210191Y67500D01*

-X210147Y68245D01*

-X209972Y68972D01*

-X209686Y69663D01*

-X209296Y70301D01*

-X209273Y70327D01*

-Y72500D01*

-X231609D01*

-Y70327D01*

-X231586Y70301D01*

-X231196Y69663D01*

-X230910Y68972D01*

-X230735Y68245D01*

-X230676Y67500D01*

-X230735Y66755D01*

-X230910Y66028D01*

-X231196Y65337D01*

-X231586Y64699D01*

-X231609Y64673D01*

-Y59830D01*

-X231498Y59796D01*

-X231391Y59744D01*

-X231295Y59677D01*

-X231210Y59595D01*

-X231139Y59500D01*

-X231085Y59395D01*

-X230926Y58992D01*

-X230809Y58575D01*

-X230730Y58148D01*

-X230691Y57717D01*

-Y57283D01*

-X230730Y56852D01*

-X230809Y56425D01*

-X230926Y56008D01*

-X231081Y55603D01*

-X231136Y55498D01*

-X231207Y55403D01*

-X231293Y55321D01*

-X231390Y55253D01*

-X231496Y55201D01*

-X231609Y55166D01*

-Y52133D01*

-X231508Y52091D01*

-X231307Y51967D01*

-X231127Y51814D01*

-X230974Y51634D01*

-X230850Y51433D01*

-X230760Y51215D01*

-X230705Y50985D01*

-X230691Y50750D01*

-X230705Y44015D01*

-X230760Y43785D01*

-X230850Y43567D01*

-X230974Y43366D01*

-X231127Y43186D01*

-X231307Y43033D01*

-X231508Y42909D01*

-X231609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X209273Y70327D02*X208810Y70869D01*

-X208242Y71355D01*

-X207604Y71745D01*

-X206913Y72031D01*

-X206186Y72206D01*

-X205441Y72265D01*

-Y72500D01*

-X209273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X209156Y52181D01*

-X208926Y52236D01*

-X208691Y52250D01*

-X205441Y52243D01*

-Y52750D01*

-X205658D01*

-X206089Y52789D01*

-X206516Y52868D01*

-X206933Y52985D01*

-X207338Y53140D01*

-X207443Y53195D01*

-X207538Y53266D01*

-X207620Y53352D01*

-X207688Y53449D01*

-X207740Y53555D01*

-X207775Y53669D01*

-X207791Y53786D01*

-X207789Y53905D01*

-X207768Y54022D01*

-X207730Y54134D01*

-X207674Y54238D01*

-X207603Y54333D01*

-X207517Y54415D01*

-X207420Y54483D01*

-X207314Y54535D01*

-X207200Y54570D01*

-X207083Y54586D01*

-X206964Y54584D01*

-X206848Y54564D01*

-X206736Y54523D01*

-X206461Y54414D01*

-X206176Y54334D01*

-X205884Y54280D01*

-X205589Y54253D01*

-X205441D01*

-Y60747D01*

-X205589D01*

-X205884Y60720D01*

-X206176Y60666D01*

-X206461Y60586D01*

-X206738Y60480D01*

-X206848Y60440D01*

-X206965Y60419D01*

-X207083Y60417D01*

-X207200Y60433D01*

-X207312Y60468D01*

-X207419Y60520D01*

-X207515Y60587D01*

-X207600Y60669D01*

-X207671Y60763D01*

-X207727Y60868D01*

-X207765Y60979D01*

-X207786Y61096D01*

-X207788Y61214D01*

-X207771Y61330D01*

-X207737Y61443D01*

-X207685Y61550D01*

-X207618Y61646D01*

-X207536Y61731D01*

-X207441Y61802D01*

-X207336Y61856D01*

-X206933Y62015D01*

-X206516Y62132D01*

-X206089Y62211D01*

-X205658Y62250D01*

-X205441D01*

-Y62735D01*

-X206186Y62794D01*

-X206913Y62969D01*

-X207604Y63255D01*

-X208242Y63645D01*

-X208810Y64131D01*

-X209273Y64673D01*

-Y59834D01*

-X209272Y59834D01*

-X209155Y59850D01*

-X209036Y59848D01*

-X208919Y59827D01*

-X208807Y59789D01*

-X208703Y59733D01*

-X208608Y59662D01*

-X208526Y59576D01*

-X208458Y59479D01*

-X208406Y59373D01*

-X208371Y59259D01*

-X208355Y59142D01*

-X208357Y59023D01*

-X208377Y58907D01*

-X208418Y58795D01*

-X208527Y58520D01*

-X208607Y58235D01*

-X208661Y57943D01*

-X208688Y57648D01*

-Y57352D01*

-X208661Y57057D01*

-X208607Y56765D01*

-X208527Y56480D01*

-X208421Y56203D01*

-X208381Y56093D01*

-X208360Y55976D01*

-X208358Y55858D01*

-X208374Y55741D01*

-X208409Y55629D01*

-X208461Y55522D01*

-X208528Y55426D01*

-X208610Y55341D01*

-X208704Y55270D01*

-X208809Y55214D01*

-X208920Y55176D01*

-X209037Y55155D01*

-X209155Y55153D01*

-X209271Y55170D01*

-X209273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X205441D01*

-Y42757D01*

-X208926Y42764D01*

-X209156Y42819D01*

-X209273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X201609Y64673D02*X202072Y64131D01*

-X202640Y63645D01*

-X203278Y63255D01*

-X203969Y62969D01*

-X204696Y62794D01*

-X205441Y62735D01*

-Y62250D01*

-X205224D01*

-X204793Y62211D01*

-X204366Y62132D01*

-X203949Y62015D01*

-X203544Y61860D01*

-X203439Y61805D01*

-X203344Y61734D01*

-X203262Y61648D01*

-X203194Y61551D01*

-X203142Y61445D01*

-X203107Y61331D01*

-X203091Y61214D01*

-X203093Y61095D01*

-X203114Y60978D01*

-X203152Y60866D01*

-X203208Y60762D01*

-X203279Y60667D01*

-X203365Y60585D01*

-X203462Y60517D01*

-X203568Y60465D01*

-X203682Y60430D01*

-X203799Y60414D01*

-X203918Y60416D01*

-X204034Y60436D01*

-X204146Y60477D01*

-X204421Y60586D01*

-X204706Y60666D01*

-X204998Y60720D01*

-X205293Y60747D01*

-X205441D01*

-Y54253D01*

-X205293D01*

-X204998Y54280D01*

-X204706Y54334D01*

-X204421Y54414D01*

-X204144Y54520D01*

-X204034Y54560D01*

-X203917Y54581D01*

-X203799Y54583D01*

-X203682Y54567D01*

-X203570Y54532D01*

-X203463Y54480D01*

-X203367Y54413D01*

-X203282Y54331D01*

-X203211Y54237D01*

-X203155Y54132D01*

-X203117Y54021D01*

-X203096Y53904D01*

-X203094Y53786D01*

-X203111Y53670D01*

-X203145Y53557D01*

-X203197Y53450D01*

-X203264Y53354D01*

-X203346Y53269D01*

-X203441Y53198D01*

-X203546Y53144D01*

-X203949Y52985D01*

-X204366Y52868D01*

-X204793Y52789D01*

-X205224Y52750D01*

-X205441D01*

-Y52243D01*

-X201956Y52236D01*

-X201726Y52181D01*

-X201609Y52133D01*

-Y55166D01*

-X201610Y55166D01*

-X201727Y55150D01*

-X201846Y55152D01*

-X201963Y55173D01*

-X202075Y55211D01*

-X202179Y55267D01*

-X202274Y55338D01*

-X202356Y55424D01*

-X202424Y55521D01*

-X202476Y55627D01*

-X202511Y55741D01*

-X202527Y55858D01*

-X202525Y55977D01*

-X202505Y56093D01*

-X202464Y56205D01*

-X202355Y56480D01*

-X202275Y56765D01*

-X202221Y57057D01*

-X202194Y57352D01*

-Y57648D01*

-X202221Y57943D01*

-X202275Y58235D01*

-X202355Y58520D01*

-X202461Y58797D01*

-X202501Y58907D01*

-X202522Y59024D01*

-X202524Y59142D01*

-X202508Y59259D01*

-X202473Y59371D01*

-X202421Y59478D01*

-X202354Y59574D01*

-X202272Y59659D01*

-X202178Y59730D01*

-X202073Y59786D01*

-X201962Y59824D01*

-X201845Y59845D01*

-X201727Y59847D01*

-X201610Y59830D01*

-X201609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X205441D01*

-Y72265D01*

-X204696Y72206D01*

-X203969Y72031D01*

-X203278Y71745D01*

-X202640Y71355D01*

-X202072Y70869D01*

-X201609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X205441Y39000D02*X201609D01*

-Y42867D01*

-X201726Y42819D01*

-X201956Y42764D01*

-X202191Y42750D01*

-X205441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X201609D02*X179273D01*

-Y42867D01*

-X179374Y42909D01*

-X179575Y43033D01*

-X179755Y43186D01*

-X179908Y43366D01*

-X180032Y43567D01*

-X180122Y43785D01*

-X180177Y44015D01*

-X180191Y44250D01*

-X180177Y50985D01*

-X180122Y51215D01*

-X180032Y51433D01*

-X179908Y51634D01*

-X179755Y51814D01*

-X179575Y51967D01*

-X179374Y52091D01*

-X179273Y52133D01*

-Y55170D01*

-X179384Y55204D01*

-X179491Y55256D01*

-X179587Y55323D01*

-X179672Y55405D01*

-X179743Y55500D01*

-X179797Y55605D01*

-X179956Y56008D01*

-X180073Y56425D01*

-X180152Y56852D01*

-X180191Y57283D01*

-Y57717D01*

-X180152Y58148D01*

-X180073Y58575D01*

-X179956Y58992D01*

-X179801Y59397D01*

-X179746Y59502D01*

-X179675Y59597D01*

-X179589Y59679D01*

-X179492Y59747D01*

-X179386Y59799D01*

-X179273Y59834D01*

-Y64673D01*

-X179296Y64699D01*

-X179686Y65337D01*

-X179972Y66028D01*

-X180147Y66755D01*

-X180191Y67500D01*

-X180147Y68245D01*

-X179972Y68972D01*

-X179686Y69663D01*

-X179296Y70301D01*

-X179273Y70327D01*

-Y72500D01*

-X201609D01*

-Y70327D01*

-X201586Y70301D01*

-X201196Y69663D01*

-X200910Y68972D01*

-X200735Y68245D01*

-X200676Y67500D01*

-X200735Y66755D01*

-X200910Y66028D01*

-X201196Y65337D01*

-X201586Y64699D01*

-X201609Y64673D01*

-Y59830D01*

-X201498Y59796D01*

-X201391Y59744D01*

-X201295Y59677D01*

-X201210Y59595D01*

-X201139Y59500D01*

-X201085Y59395D01*

-X200926Y58992D01*

-X200809Y58575D01*

-X200730Y58148D01*

-X200691Y57717D01*

-Y57283D01*

-X200730Y56852D01*

-X200809Y56425D01*

-X200926Y56008D01*

-X201081Y55603D01*

-X201136Y55498D01*

-X201207Y55403D01*

-X201293Y55321D01*

-X201390Y55253D01*

-X201496Y55201D01*

-X201609Y55166D01*

-Y52133D01*

-X201508Y52091D01*

-X201307Y51967D01*

-X201127Y51814D01*

-X200974Y51634D01*

-X200850Y51433D01*

-X200760Y51215D01*

-X200705Y50985D01*

-X200691Y50750D01*

-X200705Y44015D01*

-X200760Y43785D01*

-X200850Y43567D01*

-X200974Y43366D01*

-X201127Y43186D01*

-X201307Y43033D01*

-X201508Y42909D01*

-X201609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X179273Y70327D02*X178810Y70869D01*

-X178242Y71355D01*

-X177604Y71745D01*

-X176913Y72031D01*

-X176186Y72206D01*

-X175441Y72265D01*

-Y72500D01*

-X179273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X179156Y52181D01*

-X178926Y52236D01*

-X178691Y52250D01*

-X175441Y52243D01*

-Y52750D01*

-X175658D01*

-X176089Y52789D01*

-X176516Y52868D01*

-X176933Y52985D01*

-X177338Y53140D01*

-X177443Y53195D01*

-X177538Y53266D01*

-X177620Y53352D01*

-X177688Y53449D01*

-X177740Y53555D01*

-X177775Y53669D01*

-X177791Y53786D01*

-X177789Y53905D01*

-X177768Y54022D01*

-X177730Y54134D01*

-X177674Y54238D01*

-X177603Y54333D01*

-X177517Y54415D01*

-X177420Y54483D01*

-X177314Y54535D01*

-X177200Y54570D01*

-X177083Y54586D01*

-X176964Y54584D01*

-X176848Y54564D01*

-X176736Y54523D01*

-X176461Y54414D01*

-X176176Y54334D01*

-X175884Y54280D01*

-X175589Y54253D01*

-X175441D01*

-Y60747D01*

-X175589D01*

-X175884Y60720D01*

-X176176Y60666D01*

-X176461Y60586D01*

-X176738Y60480D01*

-X176848Y60440D01*

-X176965Y60419D01*

-X177083Y60417D01*

-X177200Y60433D01*

-X177312Y60468D01*

-X177419Y60520D01*

-X177515Y60587D01*

-X177600Y60669D01*

-X177671Y60763D01*

-X177727Y60868D01*

-X177765Y60979D01*

-X177786Y61096D01*

-X177788Y61214D01*

-X177771Y61330D01*

-X177737Y61443D01*

-X177685Y61550D01*

-X177618Y61646D01*

-X177536Y61731D01*

-X177441Y61802D01*

-X177336Y61856D01*

-X176933Y62015D01*

-X176516Y62132D01*

-X176089Y62211D01*

-X175658Y62250D01*

-X175441D01*

-Y62735D01*

-X176186Y62794D01*

-X176913Y62969D01*

-X177604Y63255D01*

-X178242Y63645D01*

-X178810Y64131D01*

-X179273Y64673D01*

-Y59834D01*

-X179272Y59834D01*

-X179155Y59850D01*

-X179036Y59848D01*

-X178919Y59827D01*

-X178807Y59789D01*

-X178703Y59733D01*

-X178608Y59662D01*

-X178526Y59576D01*

-X178458Y59479D01*

-X178406Y59373D01*

-X178371Y59259D01*

-X178355Y59142D01*

-X178357Y59023D01*

-X178377Y58907D01*

-X178418Y58795D01*

-X178527Y58520D01*

-X178607Y58235D01*

-X178661Y57943D01*

-X178688Y57648D01*

-Y57352D01*

-X178661Y57057D01*

-X178607Y56765D01*

-X178527Y56480D01*

-X178421Y56203D01*

-X178381Y56093D01*

-X178360Y55976D01*

-X178358Y55858D01*

-X178374Y55741D01*

-X178409Y55629D01*

-X178461Y55522D01*

-X178528Y55426D01*

-X178610Y55341D01*

-X178704Y55270D01*

-X178809Y55214D01*

-X178920Y55176D01*

-X179037Y55155D01*

-X179155Y55153D01*

-X179271Y55170D01*

-X179273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X175441D01*

-Y42757D01*

-X178926Y42764D01*

-X179156Y42819D01*

-X179273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X171609Y64673D02*X172072Y64131D01*

-X172640Y63645D01*

-X173278Y63255D01*

-X173969Y62969D01*

-X174696Y62794D01*

-X175441Y62735D01*

-Y62250D01*

-X175224D01*

-X174793Y62211D01*

-X174366Y62132D01*

-X173949Y62015D01*

-X173544Y61860D01*

-X173439Y61805D01*

-X173344Y61734D01*

-X173262Y61648D01*

-X173194Y61551D01*

-X173142Y61445D01*

-X173107Y61331D01*

-X173091Y61214D01*

-X173093Y61095D01*

-X173114Y60978D01*

-X173152Y60866D01*

-X173208Y60762D01*

-X173279Y60667D01*

-X173365Y60585D01*

-X173462Y60517D01*

-X173568Y60465D01*

-X173682Y60430D01*

-X173799Y60414D01*

-X173918Y60416D01*

-X174034Y60436D01*

-X174146Y60477D01*

-X174421Y60586D01*

-X174706Y60666D01*

-X174998Y60720D01*

-X175293Y60747D01*

-X175441D01*

-Y54253D01*

-X175293D01*

-X174998Y54280D01*

-X174706Y54334D01*

-X174421Y54414D01*

-X174144Y54520D01*

-X174034Y54560D01*

-X173917Y54581D01*

-X173799Y54583D01*

-X173682Y54567D01*

-X173570Y54532D01*

-X173463Y54480D01*

-X173367Y54413D01*

-X173282Y54331D01*

-X173211Y54237D01*

-X173155Y54132D01*

-X173117Y54021D01*

-X173096Y53904D01*

-X173094Y53786D01*

-X173111Y53670D01*

-X173145Y53557D01*

-X173197Y53450D01*

-X173264Y53354D01*

-X173346Y53269D01*

-X173441Y53198D01*

-X173546Y53144D01*

-X173949Y52985D01*

-X174366Y52868D01*

-X174793Y52789D01*

-X175224Y52750D01*

-X175441D01*

-Y52243D01*

-X171956Y52236D01*

-X171726Y52181D01*

-X171609Y52133D01*

-Y55166D01*

-X171610Y55166D01*

-X171727Y55150D01*

-X171846Y55152D01*

-X171963Y55173D01*

-X172075Y55211D01*

-X172179Y55267D01*

-X172274Y55338D01*

-X172356Y55424D01*

-X172424Y55521D01*

-X172476Y55627D01*

-X172511Y55741D01*

-X172527Y55858D01*

-X172525Y55977D01*

-X172505Y56093D01*

-X172464Y56205D01*

-X172355Y56480D01*

-X172275Y56765D01*

-X172221Y57057D01*

-X172194Y57352D01*

-Y57648D01*

-X172221Y57943D01*

-X172275Y58235D01*

-X172355Y58520D01*

-X172461Y58797D01*

-X172501Y58907D01*

-X172522Y59024D01*

-X172524Y59142D01*

-X172508Y59259D01*

-X172473Y59371D01*

-X172421Y59478D01*

-X172354Y59574D01*

-X172272Y59659D01*

-X172178Y59730D01*

-X172073Y59786D01*

-X171962Y59824D01*

-X171845Y59845D01*

-X171727Y59847D01*

-X171610Y59830D01*

-X171609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X175441D01*

-Y72265D01*

-X174696Y72206D01*

-X173969Y72031D01*

-X173278Y71745D01*

-X172640Y71355D01*

-X172072Y70869D01*

-X171609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X175441Y39000D02*X171609D01*

-Y42867D01*

-X171726Y42819D01*

-X171956Y42764D01*

-X172191Y42750D01*

-X175441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X171609D02*X149273D01*

-Y42867D01*

-X149374Y42909D01*

-X149575Y43033D01*

-X149755Y43186D01*

-X149908Y43366D01*

-X150032Y43567D01*

-X150122Y43785D01*

-X150177Y44015D01*

-X150191Y44250D01*

-X150177Y50985D01*

-X150122Y51215D01*

-X150032Y51433D01*

-X149908Y51634D01*

-X149755Y51814D01*

-X149575Y51967D01*

-X149374Y52091D01*

-X149273Y52133D01*

-Y55170D01*

-X149384Y55204D01*

-X149491Y55256D01*

-X149587Y55323D01*

-X149672Y55405D01*

-X149743Y55500D01*

-X149797Y55605D01*

-X149956Y56008D01*

-X150073Y56425D01*

-X150152Y56852D01*

-X150191Y57283D01*

-Y57717D01*

-X150152Y58148D01*

-X150073Y58575D01*

-X149956Y58992D01*

-X149801Y59397D01*

-X149746Y59502D01*

-X149675Y59597D01*

-X149589Y59679D01*

-X149492Y59747D01*

-X149386Y59799D01*

-X149273Y59834D01*

-Y64673D01*

-X149296Y64699D01*

-X149686Y65337D01*

-X149972Y66028D01*

-X150147Y66755D01*

-X150191Y67500D01*

-X150147Y68245D01*

-X149972Y68972D01*

-X149686Y69663D01*

-X149296Y70301D01*

-X149273Y70327D01*

-Y72500D01*

-X171609D01*

-Y70327D01*

-X171586Y70301D01*

-X171196Y69663D01*

-X170910Y68972D01*

-X170735Y68245D01*

-X170676Y67500D01*

-X170735Y66755D01*

-X170910Y66028D01*

-X171196Y65337D01*

-X171586Y64699D01*

-X171609Y64673D01*

-Y59830D01*

-X171498Y59796D01*

-X171391Y59744D01*

-X171295Y59677D01*

-X171210Y59595D01*

-X171139Y59500D01*

-X171085Y59395D01*

-X170926Y58992D01*

-X170809Y58575D01*

-X170730Y58148D01*

-X170691Y57717D01*

-Y57283D01*

-X170730Y56852D01*

-X170809Y56425D01*

-X170926Y56008D01*

-X171081Y55603D01*

-X171136Y55498D01*

-X171207Y55403D01*

-X171293Y55321D01*

-X171390Y55253D01*

-X171496Y55201D01*

-X171609Y55166D01*

-Y52133D01*

-X171508Y52091D01*

-X171307Y51967D01*

-X171127Y51814D01*

-X170974Y51634D01*

-X170850Y51433D01*

-X170760Y51215D01*

-X170705Y50985D01*

-X170691Y50750D01*

-X170705Y44015D01*

-X170760Y43785D01*

-X170850Y43567D01*

-X170974Y43366D01*

-X171127Y43186D01*

-X171307Y43033D01*

-X171508Y42909D01*

-X171609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X149273Y70327D02*X148810Y70869D01*

-X148242Y71355D01*

-X147604Y71745D01*

-X146913Y72031D01*

-X146186Y72206D01*

-X145441Y72265D01*

-Y72500D01*

-X149273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X149156Y52181D01*

-X148926Y52236D01*

-X148691Y52250D01*

-X145441Y52243D01*

-Y52750D01*

-X145658D01*

-X146089Y52789D01*

-X146516Y52868D01*

-X146933Y52985D01*

-X147338Y53140D01*

-X147443Y53195D01*

-X147538Y53266D01*

-X147620Y53352D01*

-X147688Y53449D01*

-X147740Y53555D01*

-X147775Y53669D01*

-X147791Y53786D01*

-X147789Y53905D01*

-X147768Y54022D01*

-X147730Y54134D01*

-X147674Y54238D01*

-X147603Y54333D01*

-X147517Y54415D01*

-X147420Y54483D01*

-X147314Y54535D01*

-X147200Y54570D01*

-X147083Y54586D01*

-X146964Y54584D01*

-X146848Y54564D01*

-X146736Y54523D01*

-X146461Y54414D01*

-X146176Y54334D01*

-X145884Y54280D01*

-X145589Y54253D01*

-X145441D01*

-Y60747D01*

-X145589D01*

-X145884Y60720D01*

-X146176Y60666D01*

-X146461Y60586D01*

-X146738Y60480D01*

-X146848Y60440D01*

-X146965Y60419D01*

-X147083Y60417D01*

-X147200Y60433D01*

-X147312Y60468D01*

-X147419Y60520D01*

-X147515Y60587D01*

-X147600Y60669D01*

-X147671Y60763D01*

-X147727Y60868D01*

-X147765Y60979D01*

-X147786Y61096D01*

-X147788Y61214D01*

-X147771Y61330D01*

-X147737Y61443D01*

-X147685Y61550D01*

-X147618Y61646D01*

-X147536Y61731D01*

-X147441Y61802D01*

-X147336Y61856D01*

-X146933Y62015D01*

-X146516Y62132D01*

-X146089Y62211D01*

-X145658Y62250D01*

-X145441D01*

-Y62735D01*

-X146186Y62794D01*

-X146913Y62969D01*

-X147604Y63255D01*

-X148242Y63645D01*

-X148810Y64131D01*

-X149273Y64673D01*

-Y59834D01*

-X149272Y59834D01*

-X149155Y59850D01*

-X149036Y59848D01*

-X148919Y59827D01*

-X148807Y59789D01*

-X148703Y59733D01*

-X148608Y59662D01*

-X148526Y59576D01*

-X148458Y59479D01*

-X148406Y59373D01*

-X148371Y59259D01*

-X148355Y59142D01*

-X148357Y59023D01*

-X148377Y58907D01*

-X148418Y58795D01*

-X148527Y58520D01*

-X148607Y58235D01*

-X148661Y57943D01*

-X148688Y57648D01*

-Y57352D01*

-X148661Y57057D01*

-X148607Y56765D01*

-X148527Y56480D01*

-X148421Y56203D01*

-X148381Y56093D01*

-X148360Y55976D01*

-X148358Y55858D01*

-X148374Y55741D01*

-X148409Y55629D01*

-X148461Y55522D01*

-X148528Y55426D01*

-X148610Y55341D01*

-X148704Y55270D01*

-X148809Y55214D01*

-X148920Y55176D01*

-X149037Y55155D01*

-X149155Y55153D01*

-X149271Y55170D01*

-X149273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X145441D01*

-Y42757D01*

-X148926Y42764D01*

-X149156Y42819D01*

-X149273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X141609Y64673D02*X142072Y64131D01*

-X142640Y63645D01*

-X143278Y63255D01*

-X143969Y62969D01*

-X144696Y62794D01*

-X145441Y62735D01*

-Y62250D01*

-X145224D01*

-X144793Y62211D01*

-X144366Y62132D01*

-X143949Y62015D01*

-X143544Y61860D01*

-X143439Y61805D01*

-X143344Y61734D01*

-X143262Y61648D01*

-X143194Y61551D01*

-X143142Y61445D01*

-X143107Y61331D01*

-X143091Y61214D01*

-X143093Y61095D01*

-X143114Y60978D01*

-X143152Y60866D01*

-X143208Y60762D01*

-X143279Y60667D01*

-X143365Y60585D01*

-X143462Y60517D01*

-X143568Y60465D01*

-X143682Y60430D01*

-X143799Y60414D01*

-X143918Y60416D01*

-X144034Y60436D01*

-X144146Y60477D01*

-X144421Y60586D01*

-X144706Y60666D01*

-X144998Y60720D01*

-X145293Y60747D01*

-X145441D01*

-Y54253D01*

-X145293D01*

-X144998Y54280D01*

-X144706Y54334D01*

-X144421Y54414D01*

-X144144Y54520D01*

-X144034Y54560D01*

-X143917Y54581D01*

-X143799Y54583D01*

-X143682Y54567D01*

-X143570Y54532D01*

-X143463Y54480D01*

-X143367Y54413D01*

-X143282Y54331D01*

-X143211Y54237D01*

-X143155Y54132D01*

-X143117Y54021D01*

-X143096Y53904D01*

-X143094Y53786D01*

-X143111Y53670D01*

-X143145Y53557D01*

-X143197Y53450D01*

-X143264Y53354D01*

-X143346Y53269D01*

-X143441Y53198D01*

-X143546Y53144D01*

-X143949Y52985D01*

-X144366Y52868D01*

-X144793Y52789D01*

-X145224Y52750D01*

-X145441D01*

-Y52243D01*

-X141956Y52236D01*

-X141726Y52181D01*

-X141609Y52133D01*

-Y55166D01*

-X141610Y55166D01*

-X141727Y55150D01*

-X141846Y55152D01*

-X141963Y55173D01*

-X142075Y55211D01*

-X142179Y55267D01*

-X142274Y55338D01*

-X142356Y55424D01*

-X142424Y55521D01*

-X142476Y55627D01*

-X142511Y55741D01*

-X142527Y55858D01*

-X142525Y55977D01*

-X142505Y56093D01*

-X142464Y56205D01*

-X142355Y56480D01*

-X142275Y56765D01*

-X142221Y57057D01*

-X142194Y57352D01*

-Y57648D01*

-X142221Y57943D01*

-X142275Y58235D01*

-X142355Y58520D01*

-X142461Y58797D01*

-X142501Y58907D01*

-X142522Y59024D01*

-X142524Y59142D01*

-X142508Y59259D01*

-X142473Y59371D01*

-X142421Y59478D01*

-X142354Y59574D01*

-X142272Y59659D01*

-X142178Y59730D01*

-X142073Y59786D01*

-X141962Y59824D01*

-X141845Y59845D01*

-X141727Y59847D01*

-X141610Y59830D01*

-X141609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X145441D01*

-Y72265D01*

-X144696Y72206D01*

-X143969Y72031D01*

-X143278Y71745D01*

-X142640Y71355D01*

-X142072Y70869D01*

-X141609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X145441Y39000D02*X141609D01*

-Y42867D01*

-X141726Y42819D01*

-X141956Y42764D01*

-X142191Y42750D01*

-X145441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X141609D02*X119273D01*

-Y42867D01*

-X119374Y42909D01*

-X119575Y43033D01*

-X119755Y43186D01*

-X119908Y43366D01*

-X120032Y43567D01*

-X120122Y43785D01*

-X120177Y44015D01*

-X120191Y44250D01*

-X120177Y50985D01*

-X120122Y51215D01*

-X120032Y51433D01*

-X119908Y51634D01*

-X119755Y51814D01*

-X119575Y51967D01*

-X119374Y52091D01*

-X119273Y52133D01*

-Y55170D01*

-X119384Y55204D01*

-X119491Y55256D01*

-X119587Y55323D01*

-X119672Y55405D01*

-X119743Y55500D01*

-X119797Y55605D01*

-X119956Y56008D01*

-X120073Y56425D01*

-X120152Y56852D01*

-X120191Y57283D01*

-Y57717D01*

-X120152Y58148D01*

-X120073Y58575D01*

-X119956Y58992D01*

-X119801Y59397D01*

-X119746Y59502D01*

-X119675Y59597D01*

-X119589Y59679D01*

-X119492Y59747D01*

-X119386Y59799D01*

-X119273Y59834D01*

-Y64673D01*

-X119296Y64699D01*

-X119686Y65337D01*

-X119972Y66028D01*

-X120147Y66755D01*

-X120191Y67500D01*

-X120147Y68245D01*

-X119972Y68972D01*

-X119686Y69663D01*

-X119296Y70301D01*

-X119273Y70327D01*

-Y72500D01*

-X141609D01*

-Y70327D01*

-X141586Y70301D01*

-X141196Y69663D01*

-X140910Y68972D01*

-X140735Y68245D01*

-X140676Y67500D01*

-X140735Y66755D01*

-X140910Y66028D01*

-X141196Y65337D01*

-X141586Y64699D01*

-X141609Y64673D01*

-Y59830D01*

-X141498Y59796D01*

-X141391Y59744D01*

-X141295Y59677D01*

-X141210Y59595D01*

-X141139Y59500D01*

-X141085Y59395D01*

-X140926Y58992D01*

-X140809Y58575D01*

-X140730Y58148D01*

-X140691Y57717D01*

-Y57283D01*

-X140730Y56852D01*

-X140809Y56425D01*

-X140926Y56008D01*

-X141081Y55603D01*

-X141136Y55498D01*

-X141207Y55403D01*

-X141293Y55321D01*

-X141390Y55253D01*

-X141496Y55201D01*

-X141609Y55166D01*

-Y52133D01*

-X141508Y52091D01*

-X141307Y51967D01*

-X141127Y51814D01*

-X140974Y51634D01*

-X140850Y51433D01*

-X140760Y51215D01*

-X140705Y50985D01*

-X140691Y50750D01*

-X140705Y44015D01*

-X140760Y43785D01*

-X140850Y43567D01*

-X140974Y43366D01*

-X141127Y43186D01*

-X141307Y43033D01*

-X141508Y42909D01*

-X141609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X119273Y70327D02*X118810Y70869D01*

-X118242Y71355D01*

-X117604Y71745D01*

-X116913Y72031D01*

-X116186Y72206D01*

-X115441Y72265D01*

-Y72500D01*

-X119273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X119156Y52181D01*

-X118926Y52236D01*

-X118691Y52250D01*

-X115441Y52243D01*

-Y52750D01*

-X115658D01*

-X116089Y52789D01*

-X116516Y52868D01*

-X116933Y52985D01*

-X117338Y53140D01*

-X117443Y53195D01*

-X117538Y53266D01*

-X117620Y53352D01*

-X117688Y53449D01*

-X117740Y53555D01*

-X117775Y53669D01*

-X117791Y53786D01*

-X117789Y53905D01*

-X117768Y54022D01*

-X117730Y54134D01*

-X117674Y54238D01*

-X117603Y54333D01*

-X117517Y54415D01*

-X117420Y54483D01*

-X117314Y54535D01*

-X117200Y54570D01*

-X117083Y54586D01*

-X116964Y54584D01*

-X116847Y54564D01*

-X116736Y54523D01*

-X116461Y54414D01*

-X116176Y54334D01*

-X115884Y54280D01*

-X115589Y54253D01*

-X115441D01*

-Y60747D01*

-X115589D01*

-X115884Y60720D01*

-X116176Y60666D01*

-X116461Y60586D01*

-X116738Y60480D01*

-X116848Y60440D01*

-X116965Y60419D01*

-X117083Y60417D01*

-X117200Y60433D01*

-X117312Y60468D01*

-X117419Y60520D01*

-X117515Y60587D01*

-X117600Y60669D01*

-X117671Y60763D01*

-X117727Y60868D01*

-X117765Y60979D01*

-X117786Y61096D01*

-X117788Y61214D01*

-X117771Y61330D01*

-X117737Y61443D01*

-X117685Y61550D01*

-X117618Y61646D01*

-X117536Y61731D01*

-X117441Y61802D01*

-X117336Y61856D01*

-X116933Y62015D01*

-X116516Y62132D01*

-X116089Y62211D01*

-X115658Y62250D01*

-X115441D01*

-Y62735D01*

-X116186Y62794D01*

-X116913Y62969D01*

-X117604Y63255D01*

-X118242Y63645D01*

-X118810Y64131D01*

-X119273Y64673D01*

-Y59834D01*

-X119272Y59834D01*

-X119155Y59850D01*

-X119036Y59848D01*

-X118919Y59827D01*

-X118807Y59789D01*

-X118703Y59733D01*

-X118608Y59662D01*

-X118526Y59576D01*

-X118458Y59479D01*

-X118406Y59373D01*

-X118371Y59259D01*

-X118355Y59142D01*

-X118357Y59023D01*

-X118377Y58907D01*

-X118418Y58795D01*

-X118527Y58520D01*

-X118607Y58235D01*

-X118661Y57943D01*

-X118688Y57648D01*

-Y57352D01*

-X118661Y57057D01*

-X118607Y56765D01*

-X118527Y56480D01*

-X118421Y56203D01*

-X118381Y56093D01*

-X118360Y55976D01*

-X118358Y55858D01*

-X118374Y55741D01*

-X118409Y55629D01*

-X118461Y55522D01*

-X118528Y55426D01*

-X118610Y55341D01*

-X118704Y55270D01*

-X118809Y55214D01*

-X118920Y55176D01*

-X119037Y55155D01*

-X119155Y55153D01*

-X119271Y55170D01*

-X119273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X115441D01*

-Y42757D01*

-X118926Y42764D01*

-X119156Y42819D01*

-X119273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X111609Y64673D02*X112072Y64131D01*

-X112640Y63645D01*

-X113278Y63255D01*

-X113969Y62969D01*

-X114696Y62794D01*

-X115441Y62735D01*

-Y62250D01*

-X115224D01*

-X114793Y62211D01*

-X114366Y62132D01*

-X113949Y62015D01*

-X113544Y61860D01*

-X113439Y61805D01*

-X113344Y61734D01*

-X113262Y61648D01*

-X113194Y61551D01*

-X113142Y61445D01*

-X113107Y61331D01*

-X113091Y61214D01*

-X113093Y61095D01*

-X113114Y60978D01*

-X113152Y60866D01*

-X113208Y60762D01*

-X113279Y60667D01*

-X113365Y60585D01*

-X113462Y60517D01*

-X113568Y60465D01*

-X113682Y60430D01*

-X113799Y60414D01*

-X113918Y60416D01*

-X114034Y60436D01*

-X114146Y60477D01*

-X114421Y60586D01*

-X114706Y60666D01*

-X114998Y60720D01*

-X115293Y60747D01*

-X115441D01*

-Y54253D01*

-X115293D01*

-X114998Y54280D01*

-X114706Y54334D01*

-X114421Y54414D01*

-X114144Y54520D01*

-X114034Y54560D01*

-X113917Y54581D01*

-X113799Y54583D01*

-X113682Y54567D01*

-X113570Y54532D01*

-X113463Y54480D01*

-X113367Y54413D01*

-X113282Y54331D01*

-X113211Y54237D01*

-X113155Y54132D01*

-X113117Y54021D01*

-X113096Y53904D01*

-X113094Y53786D01*

-X113111Y53670D01*

-X113145Y53557D01*

-X113197Y53450D01*

-X113264Y53354D01*

-X113346Y53269D01*

-X113441Y53198D01*

-X113546Y53144D01*

-X113949Y52985D01*

-X114366Y52868D01*

-X114793Y52789D01*

-X115224Y52750D01*

-X115441D01*

-Y52243D01*

-X111956Y52236D01*

-X111726Y52181D01*

-X111609Y52133D01*

-Y55166D01*

-X111610Y55166D01*

-X111727Y55150D01*

-X111846Y55152D01*

-X111963Y55173D01*

-X112075Y55211D01*

-X112179Y55267D01*

-X112274Y55338D01*

-X112356Y55424D01*

-X112424Y55521D01*

-X112476Y55627D01*

-X112511Y55741D01*

-X112527Y55858D01*

-X112525Y55977D01*

-X112505Y56093D01*

-X112464Y56205D01*

-X112355Y56480D01*

-X112275Y56765D01*

-X112221Y57057D01*

-X112194Y57352D01*

-Y57648D01*

-X112221Y57943D01*

-X112275Y58235D01*

-X112355Y58520D01*

-X112461Y58797D01*

-X112501Y58907D01*

-X112522Y59024D01*

-X112524Y59142D01*

-X112508Y59259D01*

-X112473Y59371D01*

-X112421Y59478D01*

-X112354Y59574D01*

-X112272Y59659D01*

-X112178Y59730D01*

-X112073Y59786D01*

-X111962Y59824D01*

-X111845Y59845D01*

-X111727Y59847D01*

-X111610Y59830D01*

-X111609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X115441D01*

-Y72265D01*

-X114696Y72206D01*

-X113969Y72031D01*

-X113278Y71745D01*

-X112640Y71355D01*

-X112072Y70869D01*

-X111609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X115441Y39000D02*X111609D01*

-Y42867D01*

-X111726Y42819D01*

-X111956Y42764D01*

-X112191Y42750D01*

-X115441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X111609D02*X89273D01*

-Y42867D01*

-X89374Y42909D01*

-X89575Y43033D01*

-X89755Y43186D01*

-X89908Y43366D01*

-X90032Y43567D01*

-X90122Y43785D01*

-X90177Y44015D01*

-X90191Y44250D01*

-X90177Y50985D01*

-X90122Y51215D01*

-X90032Y51433D01*

-X89908Y51634D01*

-X89755Y51814D01*

-X89575Y51967D01*

-X89374Y52091D01*

-X89273Y52133D01*

-Y55170D01*

-X89384Y55204D01*

-X89491Y55256D01*

-X89587Y55323D01*

-X89672Y55405D01*

-X89743Y55500D01*

-X89797Y55605D01*

-X89956Y56008D01*

-X90073Y56425D01*

-X90152Y56852D01*

-X90191Y57283D01*

-Y57717D01*

-X90152Y58148D01*

-X90073Y58575D01*

-X89956Y58992D01*

-X89801Y59397D01*

-X89746Y59502D01*

-X89675Y59597D01*

-X89589Y59679D01*

-X89492Y59747D01*

-X89386Y59799D01*

-X89273Y59834D01*

-Y64673D01*

-X89296Y64699D01*

-X89686Y65337D01*

-X89972Y66028D01*

-X90147Y66755D01*

-X90191Y67500D01*

-X90147Y68245D01*

-X89972Y68972D01*

-X89686Y69663D01*

-X89296Y70301D01*

-X89273Y70327D01*

-Y72500D01*

-X111609D01*

-Y70327D01*

-X111586Y70301D01*

-X111196Y69663D01*

-X110910Y68972D01*

-X110735Y68245D01*

-X110676Y67500D01*

-X110735Y66755D01*

-X110910Y66028D01*

-X111196Y65337D01*

-X111586Y64699D01*

-X111609Y64673D01*

-Y59830D01*

-X111498Y59796D01*

-X111391Y59744D01*

-X111295Y59677D01*

-X111210Y59595D01*

-X111139Y59500D01*

-X111085Y59395D01*

-X110926Y58992D01*

-X110809Y58575D01*

-X110730Y58148D01*

-X110691Y57717D01*

-Y57283D01*

-X110730Y56852D01*

-X110809Y56425D01*

-X110926Y56008D01*

-X111081Y55603D01*

-X111136Y55498D01*

-X111207Y55403D01*

-X111293Y55321D01*

-X111390Y55253D01*

-X111496Y55201D01*

-X111609Y55166D01*

-Y52133D01*

-X111508Y52091D01*

-X111307Y51967D01*

-X111127Y51814D01*

-X110974Y51634D01*

-X110850Y51433D01*

-X110760Y51215D01*

-X110705Y50985D01*

-X110691Y50750D01*

-X110705Y44015D01*

-X110760Y43785D01*

-X110850Y43567D01*

-X110974Y43366D01*

-X111127Y43186D01*

-X111307Y43033D01*

-X111508Y42909D01*

-X111609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X89273Y70327D02*X88810Y70869D01*

-X88242Y71355D01*

-X87604Y71745D01*

-X86913Y72031D01*

-X86186Y72206D01*

-X85441Y72265D01*

-Y72500D01*

-X89273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X89156Y52181D01*

-X88926Y52236D01*

-X88691Y52250D01*

-X85441Y52243D01*

-Y52750D01*

-X85658D01*

-X86089Y52789D01*

-X86516Y52868D01*

-X86933Y52985D01*

-X87338Y53140D01*

-X87443Y53195D01*

-X87538Y53266D01*

-X87620Y53352D01*

-X87688Y53449D01*

-X87740Y53555D01*

-X87775Y53669D01*

-X87791Y53786D01*

-X87789Y53905D01*

-X87768Y54022D01*

-X87730Y54134D01*

-X87674Y54238D01*

-X87603Y54333D01*

-X87517Y54415D01*

-X87420Y54483D01*

-X87314Y54535D01*

-X87200Y54570D01*

-X87083Y54586D01*

-X86964Y54584D01*

-X86848Y54564D01*

-X86736Y54523D01*

-X86461Y54414D01*

-X86176Y54334D01*

-X85884Y54280D01*

-X85589Y54253D01*

-X85441D01*

-Y60747D01*

-X85589D01*

-X85884Y60720D01*

-X86176Y60666D01*

-X86461Y60586D01*

-X86738Y60480D01*

-X86848Y60440D01*

-X86965Y60419D01*

-X87083Y60417D01*

-X87200Y60433D01*

-X87312Y60468D01*

-X87419Y60520D01*

-X87515Y60587D01*

-X87600Y60669D01*

-X87671Y60763D01*

-X87727Y60868D01*

-X87765Y60979D01*

-X87786Y61096D01*

-X87788Y61214D01*

-X87771Y61330D01*

-X87737Y61443D01*

-X87685Y61550D01*

-X87618Y61646D01*

-X87536Y61731D01*

-X87441Y61802D01*

-X87336Y61856D01*

-X86933Y62015D01*

-X86516Y62132D01*

-X86089Y62211D01*

-X85658Y62250D01*

-X85441D01*

-Y62735D01*

-X86186Y62794D01*

-X86913Y62969D01*

-X87604Y63255D01*

-X88242Y63645D01*

-X88810Y64131D01*

-X89273Y64673D01*

-Y59834D01*

-X89272Y59834D01*

-X89155Y59850D01*

-X89036Y59848D01*

-X88919Y59827D01*

-X88807Y59789D01*

-X88703Y59733D01*

-X88608Y59662D01*

-X88526Y59576D01*

-X88458Y59479D01*

-X88406Y59373D01*

-X88371Y59259D01*

-X88355Y59142D01*

-X88357Y59023D01*

-X88377Y58907D01*

-X88418Y58795D01*

-X88527Y58520D01*

-X88607Y58235D01*

-X88661Y57943D01*

-X88688Y57648D01*

-Y57352D01*

-X88661Y57057D01*

-X88607Y56765D01*

-X88527Y56480D01*

-X88421Y56203D01*

-X88381Y56093D01*

-X88360Y55976D01*

-X88358Y55858D01*

-X88374Y55741D01*

-X88409Y55629D01*

-X88461Y55522D01*

-X88528Y55426D01*

-X88610Y55341D01*

-X88704Y55270D01*

-X88809Y55214D01*

-X88920Y55176D01*

-X89037Y55155D01*

-X89155Y55153D01*

-X89271Y55170D01*

-X89273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X85441D01*

-Y42757D01*

-X88926Y42764D01*

-X89156Y42819D01*

-X89273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X81609Y64673D02*X82072Y64131D01*

-X82640Y63645D01*

-X83278Y63255D01*

-X83969Y62969D01*

-X84696Y62794D01*

-X85441Y62735D01*

-Y62250D01*

-X85224D01*

-X84793Y62211D01*

-X84366Y62132D01*

-X83949Y62015D01*

-X83544Y61860D01*

-X83439Y61805D01*

-X83344Y61734D01*

-X83262Y61648D01*

-X83194Y61551D01*

-X83142Y61445D01*

-X83107Y61331D01*

-X83091Y61214D01*

-X83093Y61095D01*

-X83114Y60978D01*

-X83152Y60866D01*

-X83208Y60762D01*

-X83279Y60667D01*

-X83365Y60585D01*

-X83462Y60517D01*

-X83568Y60465D01*

-X83682Y60430D01*

-X83799Y60414D01*

-X83918Y60416D01*

-X84034Y60436D01*

-X84146Y60477D01*

-X84421Y60586D01*

-X84706Y60666D01*

-X84998Y60720D01*

-X85293Y60747D01*

-X85441D01*

-Y54253D01*

-X85293D01*

-X84998Y54280D01*

-X84706Y54334D01*

-X84421Y54414D01*

-X84144Y54520D01*

-X84034Y54560D01*

-X83917Y54581D01*

-X83799Y54583D01*

-X83682Y54567D01*

-X83570Y54532D01*

-X83463Y54480D01*

-X83367Y54413D01*

-X83282Y54331D01*

-X83211Y54237D01*

-X83155Y54132D01*

-X83117Y54021D01*

-X83096Y53904D01*

-X83094Y53786D01*

-X83111Y53670D01*

-X83145Y53557D01*

-X83197Y53450D01*

-X83264Y53354D01*

-X83346Y53269D01*

-X83441Y53198D01*

-X83546Y53144D01*

-X83949Y52985D01*

-X84366Y52868D01*

-X84793Y52789D01*

-X85224Y52750D01*

-X85441D01*

-Y52243D01*

-X81956Y52236D01*

-X81726Y52181D01*

-X81609Y52133D01*

-Y55166D01*

-X81610Y55166D01*

-X81727Y55150D01*

-X81846Y55152D01*

-X81963Y55173D01*

-X82075Y55211D01*

-X82179Y55267D01*

-X82274Y55338D01*

-X82356Y55424D01*

-X82424Y55521D01*

-X82476Y55627D01*

-X82511Y55741D01*

-X82527Y55858D01*

-X82525Y55977D01*

-X82505Y56093D01*

-X82464Y56205D01*

-X82355Y56480D01*

-X82275Y56765D01*

-X82221Y57057D01*

-X82194Y57352D01*

-Y57648D01*

-X82221Y57943D01*

-X82275Y58235D01*

-X82355Y58520D01*

-X82461Y58797D01*

-X82501Y58907D01*

-X82522Y59024D01*

-X82524Y59142D01*

-X82508Y59259D01*

-X82473Y59371D01*

-X82421Y59478D01*

-X82354Y59574D01*

-X82272Y59659D01*

-X82178Y59730D01*

-X82073Y59786D01*

-X81962Y59824D01*

-X81845Y59845D01*

-X81727Y59847D01*

-X81610Y59830D01*

-X81609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X85441D01*

-Y72265D01*

-X84696Y72206D01*

-X83969Y72031D01*

-X83278Y71745D01*

-X82640Y71355D01*

-X82072Y70869D01*

-X81609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X85441Y39000D02*X81609D01*

-Y42867D01*

-X81726Y42819D01*

-X81956Y42764D01*

-X82191Y42750D01*

-X85441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X81609D02*X75441D01*

-X72941Y41500D01*

-Y72500D01*

-X81609D01*

-Y70327D01*

-X81586Y70301D01*

-X81196Y69663D01*

-X80910Y68972D01*

-X80735Y68245D01*

-X80676Y67500D01*

-X80735Y66755D01*

-X80910Y66028D01*

-X81196Y65337D01*

-X81586Y64699D01*

-X81609Y64673D01*

-Y59830D01*

-X81498Y59796D01*

-X81391Y59744D01*

-X81295Y59677D01*

-X81210Y59595D01*

-X81139Y59500D01*

-X81085Y59395D01*

-X80926Y58992D01*

-X80809Y58575D01*

-X80730Y58148D01*

-X80691Y57717D01*

-Y57283D01*

-X80730Y56852D01*

-X80809Y56425D01*

-X80926Y56008D01*

-X81081Y55603D01*

-X81136Y55498D01*

-X81207Y55403D01*

-X81293Y55321D01*

-X81390Y55253D01*

-X81496Y55201D01*

-X81609Y55166D01*

-Y52133D01*

-X81508Y52091D01*

-X81307Y51967D01*

-X81127Y51814D01*

-X80974Y51634D01*

-X80850Y51433D01*

-X80760Y51215D01*

-X80705Y50985D01*

-X80691Y50750D01*

-X80705Y44015D01*

-X80760Y43785D01*

-X80850Y43567D01*

-X80974Y43366D01*

-X81127Y43186D01*

-X81307Y43033D01*

-X81508Y42909D01*

-X81609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X214941Y258500D02*Y263500D01*

-X220441D01*

-Y258500D01*

-X214941D01*

-G37*

-G36*

-X218441Y257000D02*Y262000D01*

-X223941D01*

-Y257000D01*

-X218441D01*

-G37*

-G36*

-X312154Y172548D02*X312309Y172294D01*

-X312749Y171779D01*

-X313076Y171500D01*

-X312154D01*

-Y172548D01*

-G37*

-G36*

-X432320Y73869D02*X432379Y73725D01*

-X432610Y73349D01*

-X432896Y73014D01*

-X433231Y72728D01*

-X433603Y72500D01*

-X432320D01*

-Y73869D01*

-G37*

-G36*

-X446437Y153000D02*X449441D01*

-Y148513D01*

-X449366Y148467D01*

-X449186Y148314D01*

-X449033Y148134D01*

-X448909Y147933D01*

-X448819Y147715D01*

-X448764Y147485D01*

-X448750Y147250D01*

-X448764Y140515D01*

-X448819Y140285D01*

-X448909Y140067D01*

-X449033Y139866D01*

-X449186Y139686D01*

-X449366Y139533D01*

-X449441Y139487D01*

-Y118513D01*

-X449366Y118467D01*

-X449186Y118314D01*

-X449033Y118134D01*

-X448909Y117933D01*

-X448819Y117715D01*

-X448764Y117485D01*

-X448750Y117250D01*

-X448764Y110515D01*

-X448819Y110285D01*

-X448909Y110067D01*

-X449033Y109866D01*

-X449186Y109686D01*

-X449366Y109533D01*

-X449441Y109487D01*

-Y88513D01*

-X449366Y88467D01*

-X449186Y88314D01*

-X449033Y88134D01*

-X448909Y87933D01*

-X448819Y87715D01*

-X448764Y87485D01*

-X448750Y87250D01*

-X448764Y80515D01*

-X448819Y80285D01*

-X448909Y80067D01*

-X449033Y79866D01*

-X449186Y79686D01*

-X449366Y79533D01*

-X449441Y79487D01*

-Y72500D01*

-X446437D01*

-Y99192D01*

-X446441Y99191D01*

-X446880Y99226D01*

-X447309Y99329D01*

-X447716Y99497D01*

-X448092Y99728D01*

-X448427Y100014D01*

-X448713Y100349D01*

-X448944Y100725D01*

-X449112Y101132D01*

-X449215Y101561D01*

-X449241Y102000D01*

-X449215Y102439D01*

-X449112Y102868D01*

-X448944Y103275D01*

-X448713Y103651D01*

-X448427Y103986D01*

-X448092Y104272D01*

-X447716Y104503D01*

-X447309Y104671D01*

-X446880Y104774D01*

-X446441Y104809D01*

-X446437Y104808D01*

-Y153000D01*

-G37*

-G36*

-X440935D02*X446437D01*

-Y104808D01*

-X446002Y104774D01*

-X445573Y104671D01*

-X445166Y104503D01*

-X444790Y104272D01*

-X444455Y103986D01*

-X444169Y103651D01*

-X443938Y103275D01*

-X443770Y102868D01*

-X443667Y102439D01*

-X443632Y102000D01*

-X443667Y101561D01*

-X443770Y101132D01*

-X443938Y100725D01*

-X444169Y100349D01*

-X444455Y100014D01*

-X444790Y99728D01*

-X445166Y99497D01*

-X445573Y99329D01*

-X446002Y99226D01*

-X446437Y99192D01*

-Y72500D01*

-X440935D01*

-Y118988D01*

-X440941Y118988D01*

-X441569Y119037D01*

-X442181Y119184D01*

-X442763Y119425D01*

-X443299Y119754D01*

-X443778Y120163D01*

-X444187Y120642D01*

-X444516Y121178D01*

-X444757Y121760D01*

-X444904Y122372D01*

-X444941Y123000D01*

-X444904Y123628D01*

-X444757Y124240D01*

-X444516Y124822D01*

-X444187Y125358D01*

-X443778Y125837D01*

-X443299Y126246D01*

-X442763Y126575D01*

-X442181Y126816D01*

-X441569Y126963D01*

-X440941Y127012D01*

-X440935Y127012D01*

-Y153000D01*

-G37*

-G36*

-X432320D02*X440935D01*

-Y127012D01*

-X440313Y126963D01*

-X439701Y126816D01*

-X439119Y126575D01*

-X438583Y126246D01*

-X438104Y125837D01*

-X437695Y125358D01*

-X437366Y124822D01*

-X437125Y124240D01*

-X436978Y123628D01*

-X436929Y123000D01*

-X436978Y122372D01*

-X437125Y121760D01*

-X437366Y121178D01*

-X437695Y120642D01*

-X438104Y120163D01*

-X438583Y119754D01*

-X439119Y119425D01*

-X439701Y119184D01*

-X440313Y119037D01*

-X440935Y118988D01*

-Y72500D01*

-X436161D01*

-X436533Y72728D01*

-X436868Y73014D01*

-X437154Y73349D01*

-X437385Y73725D01*

-X437553Y74132D01*

-X437656Y74561D01*

-X437682Y75000D01*

-X437656Y75439D01*

-X437553Y75868D01*

-X437385Y76275D01*

-X437154Y76651D01*

-X436868Y76986D01*

-X436533Y77272D01*

-X436157Y77503D01*

-X435750Y77671D01*

-X435321Y77774D01*

-X434882Y77809D01*

-X434443Y77774D01*

-X434014Y77671D01*

-X433607Y77503D01*

-X433231Y77272D01*

-X432896Y76986D01*

-X432610Y76651D01*

-X432379Y76275D01*

-X432320Y76131D01*

-Y108192D01*

-X432324Y108191D01*

-X432763Y108226D01*

-X433192Y108329D01*

-X433599Y108497D01*

-X433975Y108728D01*

-X434310Y109014D01*

-X434596Y109349D01*

-X434827Y109725D01*

-X434995Y110132D01*

-X435098Y110561D01*

-X435124Y111000D01*

-X435098Y111439D01*

-X434995Y111868D01*

-X434827Y112275D01*

-X434596Y112651D01*

-X434310Y112986D01*

-X433975Y113272D01*

-X433599Y113503D01*

-X433192Y113671D01*

-X432763Y113774D01*

-X432324Y113809D01*

-X432320Y113808D01*

-Y153000D01*

-G37*

-G36*

-X398438Y187034D02*X398455Y187014D01*

-X398790Y186728D01*

-X399166Y186497D01*

-X399573Y186329D01*

-X400002Y186226D01*

-X400441Y186191D01*

-Y153000D01*

-X432320D01*

-Y113808D01*

-X431885Y113774D01*

-X431456Y113671D01*

-X431049Y113503D01*

-X430673Y113272D01*

-X430338Y112986D01*

-X430052Y112651D01*

-X429821Y112275D01*

-X429653Y111868D01*

-X429550Y111439D01*

-X429515Y111000D01*

-X429550Y110561D01*

-X429653Y110132D01*

-X429821Y109725D01*

-X430052Y109349D01*

-X430338Y109014D01*

-X430673Y108728D01*

-X431049Y108497D01*

-X431456Y108329D01*

-X431885Y108226D01*

-X432320Y108192D01*

-Y76131D01*

-X432211Y75868D01*

-X432108Y75439D01*

-X432073Y75000D01*

-X432108Y74561D01*

-X432211Y74132D01*

-X432320Y73869D01*

-Y72500D01*

-X424720D01*

-X425092Y72728D01*

-X425427Y73014D01*

-X425713Y73349D01*

-X425944Y73725D01*

-X426112Y74132D01*

-X426215Y74561D01*

-X426241Y75000D01*

-X426215Y75439D01*

-X426112Y75868D01*

-X425944Y76275D01*

-X425713Y76651D01*

-X425427Y76986D01*

-X425092Y77272D01*

-X424716Y77503D01*

-X424309Y77671D01*

-X423880Y77774D01*

-X423441Y77809D01*

-X423002Y77774D01*

-X422573Y77671D01*

-X422166Y77503D01*

-X421790Y77272D01*

-X421455Y76986D01*

-X421169Y76651D01*

-X420938Y76275D01*

-X420770Y75868D01*

-X420667Y75439D01*

-X420632Y75000D01*

-X420667Y74561D01*

-X420770Y74132D01*

-X420938Y73725D01*

-X421169Y73349D01*

-X421455Y73014D01*

-X421790Y72728D01*

-X422162Y72500D01*

-X412441D01*

-Y136500D01*

-X398438D01*

-Y171195D01*

-X398441Y171194D01*

-X398723Y171217D01*

-X398999Y171283D01*

-X399261Y171391D01*

-X399502Y171539D01*

-X399718Y171723D01*

-X399902Y171939D01*

-X400050Y172180D01*

-X400158Y172442D01*

-X400224Y172718D01*

-X400241Y173000D01*

-X400224Y173282D01*

-X400158Y173558D01*

-X400050Y173820D01*

-X399902Y174061D01*

-X399718Y174277D01*

-X399502Y174461D01*

-X399261Y174609D01*

-X398999Y174717D01*

-X398723Y174783D01*

-X398441Y174806D01*

-X398438Y174805D01*

-Y187034D01*

-G37*

-G36*

-Y192034D02*X398455Y192014D01*

-X398790Y191728D01*

-X399162Y191500D01*

-X398790Y191272D01*

-X398455Y190986D01*

-X398438Y190966D01*

-Y192034D01*

-G37*

-G36*

-Y245192D02*X398441Y245191D01*

-X398880Y245226D01*

-X399309Y245329D01*

-X399716Y245497D01*

-X400092Y245728D01*

-X400427Y246014D01*

-X400441Y246030D01*

-Y196809D01*

-X400002Y196774D01*

-X399573Y196671D01*

-X399166Y196503D01*

-X398790Y196272D01*

-X398455Y195986D01*

-X398438Y195966D01*

-Y245192D01*

-G37*

-G36*

-Y306192D02*X398441Y306191D01*

-X398880Y306226D01*

-X399309Y306329D01*

-X399716Y306497D01*

-X400092Y306728D01*

-X400427Y307014D01*

-X400441Y307030D01*

-Y254970D01*

-X400427Y254986D01*

-X400092Y255272D01*

-X399716Y255503D01*

-X399309Y255671D01*

-X398880Y255774D01*

-X398441Y255809D01*

-X398438Y255808D01*

-Y289195D01*

-X398441Y289194D01*

-X398723Y289217D01*

-X398999Y289283D01*

-X399261Y289391D01*

-X399502Y289539D01*

-X399718Y289723D01*

-X399902Y289939D01*

-X400050Y290180D01*

-X400158Y290442D01*

-X400224Y290718D01*

-X400241Y291000D01*

-X400224Y291282D01*

-X400158Y291558D01*

-X400050Y291820D01*

-X399902Y292061D01*

-X399718Y292277D01*

-X399502Y292461D01*

-X399261Y292609D01*

-X398999Y292717D01*

-X398723Y292783D01*

-X398441Y292806D01*

-X398438Y292805D01*

-Y306192D01*

-G37*

-G36*

-Y364681D02*X398809Y364770D01*

-X399216Y364938D01*

-X399592Y365169D01*

-X399927Y365455D01*

-X400213Y365790D01*

-X400441Y366162D01*

-Y315970D01*

-X400427Y315986D01*

-X400092Y316272D01*

-X399716Y316503D01*

-X399309Y316671D01*

-X398880Y316774D01*

-X398441Y316809D01*

-X398438Y316808D01*

-Y364681D01*

-G37*

-G36*

-X400441Y397000D02*Y368720D01*

-X400213Y369092D01*

-X399927Y369427D01*

-X399592Y369713D01*

-X399216Y369944D01*

-X398809Y370112D01*

-X398438Y370201D01*

-Y370382D01*

-X398716Y370497D01*

-X399092Y370728D01*

-X399427Y371014D01*

-X399713Y371349D01*

-X399944Y371725D01*

-X400112Y372132D01*

-X400215Y372561D01*

-X400241Y373000D01*

-X400215Y373439D01*

-X400112Y373868D01*

-X399944Y374275D01*

-X399713Y374651D01*

-X399427Y374986D01*

-X399092Y375272D01*

-X398716Y375503D01*

-X398438Y375618D01*

-Y397000D01*

-X400441D01*

-G37*

-G36*

-X396438Y246034D02*X396455Y246014D01*

-X396790Y245728D01*

-X397166Y245497D01*

-X397573Y245329D01*

-X398002Y245226D01*

-X398438Y245192D01*

-Y195966D01*

-X398169Y195651D01*

-X397938Y195275D01*

-X397770Y194868D01*

-X397667Y194439D01*

-X397632Y194000D01*

-X397667Y193561D01*

-X397770Y193132D01*

-X397938Y192725D01*

-X398169Y192349D01*

-X398438Y192034D01*

-Y190966D01*

-X398169Y190651D01*

-X397938Y190275D01*

-X397770Y189868D01*

-X397667Y189439D01*

-X397632Y189000D01*

-X397667Y188561D01*

-X397770Y188132D01*

-X397938Y187725D01*

-X398169Y187349D01*

-X398438Y187034D01*

-Y174805D01*

-X398159Y174783D01*

-X397883Y174717D01*

-X397621Y174609D01*

-X397380Y174461D01*

-X397164Y174277D01*

-X396980Y174061D01*

-X396832Y173820D01*

-X396724Y173558D01*

-X396658Y173282D01*

-X396635Y173000D01*

-X396658Y172718D01*

-X396724Y172442D01*

-X396832Y172180D01*

-X396980Y171939D01*

-X397164Y171723D01*

-X397380Y171539D01*

-X397621Y171391D01*

-X397883Y171283D01*

-X398159Y171217D01*

-X398438Y171195D01*

-Y136500D01*

-X396438D01*

-Y233195D01*

-X396441Y233194D01*

-X396723Y233217D01*

-X396999Y233283D01*

-X397261Y233391D01*

-X397502Y233539D01*

-X397718Y233723D01*

-X397902Y233939D01*

-X398050Y234180D01*

-X398158Y234442D01*

-X398224Y234718D01*

-X398241Y235000D01*

-X398224Y235282D01*

-X398158Y235558D01*

-X398050Y235820D01*

-X397902Y236061D01*

-X397718Y236277D01*

-X397502Y236461D01*

-X397261Y236609D01*

-X396999Y236717D01*

-X396723Y236783D01*

-X396441Y236806D01*

-X396438Y236805D01*

-Y246034D01*

-G37*

-G36*

-Y251034D02*X396455Y251014D01*

-X396790Y250728D01*

-X397162Y250500D01*

-X396790Y250272D01*

-X396455Y249986D01*

-X396438Y249966D01*

-Y251034D01*

-G37*

-G36*

-Y307034D02*X396455Y307014D01*

-X396790Y306728D01*

-X397166Y306497D01*

-X397573Y306329D01*

-X398002Y306226D01*

-X398438Y306192D01*

-Y292805D01*

-X398159Y292783D01*

-X397883Y292717D01*

-X397621Y292609D01*

-X397380Y292461D01*

-X397164Y292277D01*

-X396980Y292061D01*

-X396832Y291820D01*

-X396724Y291558D01*

-X396658Y291282D01*

-X396635Y291000D01*

-X396658Y290718D01*

-X396724Y290442D01*

-X396832Y290180D01*

-X396980Y289939D01*

-X397164Y289723D01*

-X397380Y289539D01*

-X397621Y289391D01*

-X397883Y289283D01*

-X398159Y289217D01*

-X398438Y289195D01*

-Y255808D01*

-X398002Y255774D01*

-X397573Y255671D01*

-X397166Y255503D01*

-X396790Y255272D01*

-X396455Y254986D01*

-X396438Y254966D01*

-Y307034D01*

-G37*

-G36*

-Y312034D02*X396455Y312014D01*

-X396790Y311728D01*

-X397162Y311500D01*

-X396790Y311272D01*

-X396455Y310986D01*

-X396438Y310966D01*

-Y312034D01*

-G37*

-G36*

-Y365078D02*X396666Y364938D01*

-X397073Y364770D01*

-X397502Y364667D01*

-X397941Y364632D01*

-X398380Y364667D01*

-X398438Y364681D01*

-Y316808D01*

-X398002Y316774D01*

-X397573Y316671D01*

-X397166Y316503D01*

-X396790Y316272D01*

-X396455Y315986D01*

-X396438Y315966D01*

-Y365078D01*

-G37*

-G36*

-Y370385D02*X396573Y370329D01*

-X397002Y370226D01*

-X397412Y370194D01*

-X397073Y370112D01*

-X396666Y369944D01*

-X396438Y369804D01*

-Y370385D01*

-G37*

-G36*

-X398438Y375618D02*X398309Y375671D01*

-X397880Y375774D01*

-X397441Y375809D01*

-X397002Y375774D01*

-X396573Y375671D01*

-X396438Y375615D01*

-Y397000D01*

-X398438D01*

-Y375618D01*

-G37*

-G36*

-X396438Y375615D02*X396166Y375503D01*

-X395790Y375272D01*

-X395455Y374986D01*

-X395169Y374651D01*

-X394938Y374275D01*

-X394770Y373868D01*

-X394667Y373439D01*

-X394632Y373000D01*

-X394667Y372561D01*

-X394770Y372132D01*

-X394938Y371725D01*

-X395169Y371349D01*

-X395455Y371014D01*

-X395790Y370728D01*

-X396166Y370497D01*

-X396438Y370385D01*

-Y369804D01*

-X396290Y369713D01*

-X395955Y369427D01*

-X395669Y369092D01*

-X395438Y368716D01*

-X395270Y368309D01*

-X395167Y367880D01*

-X395132Y367441D01*

-X395167Y367002D01*

-X395270Y366573D01*

-X395438Y366166D01*

-X395669Y365790D01*

-X395955Y365455D01*

-X396290Y365169D01*

-X396438Y365078D01*

-Y315966D01*

-X396169Y315651D01*

-X395938Y315275D01*

-X395770Y314868D01*

-X395667Y314439D01*

-X395632Y314000D01*

-X395667Y313561D01*

-X395770Y313132D01*

-X395938Y312725D01*

-X396169Y312349D01*

-X396438Y312034D01*

-Y310966D01*

-X396169Y310651D01*

-X395938Y310275D01*

-X395770Y309868D01*

-X395667Y309439D01*

-X395632Y309000D01*

-X395667Y308561D01*

-X395770Y308132D01*

-X395938Y307725D01*

-X396169Y307349D01*

-X396438Y307034D01*

-Y254966D01*

-X396169Y254651D01*

-X395938Y254275D01*

-X395770Y253868D01*

-X395667Y253439D01*

-X395632Y253000D01*

-X395667Y252561D01*

-X395770Y252132D01*

-X395938Y251725D01*

-X396169Y251349D01*

-X396438Y251034D01*

-Y249966D01*

-X396169Y249651D01*

-X395938Y249275D01*

-X395770Y248868D01*

-X395667Y248439D01*

-X395632Y248000D01*

-X395667Y247561D01*

-X395770Y247132D01*

-X395938Y246725D01*

-X396169Y246349D01*

-X396438Y246034D01*

-Y236805D01*

-X396159Y236783D01*

-X395883Y236717D01*

-X395621Y236609D01*

-X395380Y236461D01*

-X395164Y236277D01*

-X394980Y236061D01*

-X394832Y235820D01*

-X394724Y235558D01*

-X394658Y235282D01*

-X394635Y235000D01*

-X394658Y234718D01*

-X394724Y234442D01*

-X394832Y234180D01*

-X394980Y233939D01*

-X395164Y233723D01*

-X395380Y233539D01*

-X395621Y233391D01*

-X395883Y233283D01*

-X396159Y233217D01*

-X396438Y233195D01*

-Y136500D01*

-X393437D01*

-Y205192D01*

-X393441Y205191D01*

-X393880Y205226D01*

-X394309Y205329D01*

-X394716Y205497D01*

-X395092Y205728D01*

-X395427Y206014D01*

-X395713Y206349D01*

-X395944Y206725D01*

-X396112Y207132D01*

-X396215Y207561D01*

-X396241Y208000D01*

-X396215Y208439D01*

-X396112Y208868D01*

-X395944Y209275D01*

-X395713Y209651D01*

-X395427Y209986D01*

-X395092Y210272D01*

-X394716Y210503D01*

-X394309Y210671D01*

-X393880Y210774D01*

-X393441Y210809D01*

-X393437Y210808D01*

-Y237699D01*

-X393465Y237723D01*

-X393649Y237939D01*

-X393797Y238180D01*

-X393905Y238442D01*

-X393971Y238718D01*

-X393988Y239000D01*

-X393971Y239282D01*

-X393905Y239558D01*

-X393797Y239820D01*

-X393649Y240061D01*

-X393465Y240277D01*

-X393437Y240301D01*

-Y324192D01*

-X393441Y324191D01*

-X393880Y324226D01*

-X394309Y324329D01*

-X394716Y324497D01*

-X395092Y324728D01*

-X395427Y325014D01*

-X395713Y325349D01*

-X395944Y325725D01*

-X396112Y326132D01*

-X396215Y326561D01*

-X396241Y327000D01*

-X396215Y327439D01*

-X396112Y327868D01*

-X395944Y328275D01*

-X395713Y328651D01*

-X395427Y328986D01*

-X395092Y329272D01*

-X394716Y329503D01*

-X394309Y329671D01*

-X393880Y329774D01*

-X393441Y329809D01*

-X393437Y329808D01*

-Y352192D01*

-X393441Y352191D01*

-X393880Y352226D01*

-X394309Y352329D01*

-X394716Y352497D01*

-X395092Y352728D01*

-X395427Y353014D01*

-X395713Y353349D01*

-X395944Y353725D01*

-X396112Y354132D01*

-X396215Y354561D01*

-X396241Y355000D01*

-X396215Y355439D01*

-X396112Y355868D01*

-X395944Y356275D01*

-X395713Y356651D01*

-X395427Y356986D01*

-X395092Y357272D01*

-X394716Y357503D01*

-X394309Y357671D01*

-X393880Y357774D01*

-X393441Y357809D01*

-X393437Y357808D01*

-Y397000D01*

-X396438D01*

-Y375615D01*

-G37*

-G36*

-X393437Y136500D02*X389437D01*

-Y181192D01*

-X389441Y181191D01*

-X389880Y181226D01*

-X390309Y181329D01*

-X390716Y181497D01*

-X391092Y181728D01*

-X391427Y182014D01*

-X391713Y182349D01*

-X391944Y182725D01*

-X392112Y183132D01*

-X392215Y183561D01*

-X392241Y184000D01*

-X392215Y184439D01*

-X392112Y184868D01*

-X391944Y185275D01*

-X391713Y185651D01*

-X391427Y185986D01*

-X391092Y186272D01*

-X390716Y186503D01*

-X390309Y186671D01*

-X389880Y186774D01*

-X389441Y186809D01*

-X389437Y186808D01*

-Y233503D01*

-X389573Y233725D01*

-X389741Y234132D01*

-X389844Y234561D01*

-X389870Y235000D01*

-X389844Y235439D01*

-X389741Y235868D01*

-X389573Y236275D01*

-X389437Y236497D01*

-Y245963D01*

-X389484Y246003D01*

-X389668Y246219D01*

-X389816Y246460D01*

-X389924Y246722D01*

-X389990Y246998D01*

-X390007Y247280D01*

-X389990Y247562D01*

-X389924Y247838D01*

-X389816Y248100D01*

-X389668Y248341D01*

-X389484Y248557D01*

-X389437Y248597D01*

-Y281322D01*

-X389494Y281561D01*

-X389520Y282000D01*

-X389494Y282439D01*

-X389437Y282678D01*

-Y324025D01*

-X389713Y324349D01*

-X389944Y324725D01*

-X390112Y325132D01*

-X390215Y325561D01*

-X390241Y326000D01*

-X390215Y326439D01*

-X390112Y326868D01*

-X389944Y327275D01*

-X389713Y327651D01*

-X389437Y327975D01*

-Y397000D01*

-X393437D01*

-Y357808D01*

-X393002Y357774D01*

-X392573Y357671D01*

-X392166Y357503D01*

-X391790Y357272D01*

-X391455Y356986D01*

-X391169Y356651D01*

-X390938Y356275D01*

-X390770Y355868D01*

-X390667Y355439D01*

-X390632Y355000D01*

-X390667Y354561D01*

-X390770Y354132D01*

-X390938Y353725D01*

-X391169Y353349D01*

-X391455Y353014D01*

-X391790Y352728D01*

-X392166Y352497D01*

-X392573Y352329D01*

-X393002Y352226D01*

-X393437Y352192D01*

-Y329808D01*

-X393002Y329774D01*

-X392573Y329671D01*

-X392166Y329503D01*

-X391790Y329272D01*

-X391455Y328986D01*

-X391169Y328651D01*

-X390938Y328275D01*

-X390770Y327868D01*

-X390667Y327439D01*

-X390632Y327000D01*

-X390667Y326561D01*

-X390770Y326132D01*

-X390938Y325725D01*

-X391169Y325349D01*

-X391455Y325014D01*

-X391790Y324728D01*

-X392166Y324497D01*

-X392573Y324329D01*

-X393002Y324226D01*

-X393437Y324192D01*

-Y240301D01*

-X393249Y240461D01*

-X393008Y240609D01*

-X392746Y240717D01*

-X392470Y240783D01*

-X392188Y240806D01*

-X391906Y240783D01*

-X391630Y240717D01*

-X391368Y240609D01*

-X391127Y240461D01*

-X390911Y240277D01*

-X390727Y240061D01*

-X390579Y239820D01*

-X390471Y239558D01*

-X390405Y239282D01*

-X390382Y239000D01*

-X390405Y238718D01*

-X390471Y238442D01*

-X390579Y238180D01*

-X390727Y237939D01*

-X390911Y237723D01*

-X391127Y237539D01*

-X391368Y237391D01*

-X391630Y237283D01*

-X391906Y237217D01*

-X392188Y237194D01*

-X392470Y237217D01*

-X392746Y237283D01*

-X393008Y237391D01*

-X393249Y237539D01*

-X393437Y237699D01*

-Y210808D01*

-X393002Y210774D01*

-X392573Y210671D01*

-X392166Y210503D01*

-X391790Y210272D01*

-X391455Y209986D01*

-X391169Y209651D01*

-X390938Y209275D01*

-X390770Y208868D01*

-X390667Y208439D01*

-X390632Y208000D01*

-X390667Y207561D01*

-X390770Y207132D01*

-X390938Y206725D01*

-X391169Y206349D01*

-X391455Y206014D01*

-X391790Y205728D01*

-X392166Y205497D01*

-X392573Y205329D01*

-X393002Y205226D01*

-X393437Y205192D01*

-Y136500D01*

-G37*

-G36*

-X398438Y370201D02*X398380Y370215D01*

-X397970Y370247D01*

-X398309Y370329D01*

-X398438Y370382D01*

-Y370201D01*

-G37*

-G36*

-X389437Y327975D02*X389427Y327986D01*

-X389092Y328272D01*

-X388716Y328503D01*

-X388309Y328671D01*

-X387880Y328774D01*

-X387441Y328809D01*

-X387002Y328774D01*

-X386573Y328671D01*

-X386437Y328615D01*

-Y351739D01*

-X386809Y351829D01*

-X387216Y351997D01*

-X387592Y352228D01*

-X387927Y352514D01*

-X388213Y352849D01*

-X388444Y353225D01*

-X388612Y353632D01*

-X388715Y354061D01*

-X388741Y354500D01*

-X388715Y354939D01*

-X388612Y355368D01*

-X388444Y355775D01*

-X388213Y356151D01*

-X387927Y356486D01*

-X387592Y356772D01*

-X387216Y357003D01*

-X386809Y357171D01*

-X386437Y357261D01*

-Y364268D01*

-X386499Y364283D01*

-X386761Y364391D01*

-X387002Y364539D01*

-X387218Y364723D01*

-X387402Y364939D01*

-X387550Y365180D01*

-X387658Y365442D01*

-X387724Y365718D01*

-X387741Y366000D01*

-X387724Y366282D01*

-X387658Y366558D01*

-X387550Y366820D01*

-X387402Y367061D01*

-X387218Y367277D01*

-X387002Y367461D01*

-X386761Y367609D01*

-X386499Y367717D01*

-X386437Y367732D01*

-Y378071D01*

-X386462Y378500D01*

-X386437Y378929D01*

-Y397000D01*

-X389437D01*

-Y327975D01*

-G37*

-G36*

-Y282678D02*X389391Y282868D01*

-X389223Y283275D01*

-X388992Y283651D01*

-X388706Y283986D01*

-X388371Y284272D01*

-X387995Y284503D01*

-X387588Y284671D01*

-X387159Y284774D01*

-X386720Y284809D01*

-X386437Y284786D01*

-Y304353D01*

-X386665Y304725D01*

-X386833Y305132D01*

-X386936Y305561D01*

-X386962Y306000D01*

-X386936Y306439D01*

-X386833Y306868D01*

-X386665Y307275D01*

-X386437Y307647D01*

-Y323385D01*

-X386573Y323329D01*

-X387002Y323226D01*

-X387441Y323191D01*

-X387880Y323226D01*

-X388309Y323329D01*

-X388716Y323497D01*

-X389092Y323728D01*

-X389427Y324014D01*

-X389437Y324025D01*

-Y282678D01*

-G37*

-G36*

-Y248597D02*X389268Y248741D01*

-X389027Y248889D01*

-X388765Y248997D01*

-X388489Y249063D01*

-X388207Y249086D01*

-X387925Y249063D01*

-X387649Y248997D01*

-X387387Y248889D01*

-X387146Y248741D01*

-X386930Y248557D01*

-X386746Y248341D01*

-X386598Y248100D01*

-X386490Y247838D01*

-X386437Y247617D01*

-Y255962D01*

-X386498Y256014D01*

-X386784Y256349D01*

-X387015Y256725D01*

-X387183Y257132D01*

-X387286Y257561D01*

-X387312Y258000D01*

-X387286Y258439D01*

-X387183Y258868D01*

-X387015Y259275D01*

-X386784Y259651D01*

-X386498Y259986D01*

-X386437Y260038D01*

-Y279214D01*

-X386720Y279191D01*

-X387159Y279226D01*

-X387588Y279329D01*

-X387995Y279497D01*

-X388371Y279728D01*

-X388706Y280014D01*

-X388992Y280349D01*

-X389223Y280725D01*

-X389391Y281132D01*

-X389437Y281322D01*

-Y248597D01*

-G37*

-G36*

-Y236497D02*X389342Y236651D01*

-X389056Y236986D01*

-X388721Y237272D01*

-X388345Y237503D01*

-X387938Y237671D01*

-X387509Y237774D01*

-X387070Y237809D01*

-X386631Y237774D01*

-X386437Y237727D01*

-Y246943D01*

-X386490Y246722D01*

-X386598Y246460D01*

-X386746Y246219D01*

-X386930Y246003D01*

-X387146Y245819D01*

-X387387Y245671D01*

-X387649Y245563D01*

-X387925Y245497D01*

-X388207Y245474D01*

-X388489Y245497D01*

-X388765Y245563D01*

-X389027Y245671D01*

-X389268Y245819D01*

-X389437Y245963D01*

-Y236497D01*

-G37*

-G36*

-Y136500D02*X386437D01*

-Y156061D01*

-X386581Y156096D01*

-X386843Y156204D01*

-X387084Y156352D01*

-X387300Y156536D01*

-X387484Y156752D01*

-X387632Y156993D01*

-X387740Y157255D01*

-X387806Y157531D01*

-X387823Y157813D01*

-X387806Y158095D01*

-X387740Y158371D01*

-X387632Y158633D01*

-X387484Y158874D01*

-X387300Y159090D01*

-X387084Y159274D01*

-X386843Y159422D01*

-X386581Y159530D01*

-X386437Y159565D01*

-Y160192D01*

-X386441Y160191D01*

-X386880Y160226D01*

-X387309Y160329D01*

-X387716Y160497D01*

-X388092Y160728D01*

-X388427Y161014D01*

-X388713Y161349D01*

-X388944Y161725D01*

-X389112Y162132D01*

-X389215Y162561D01*

-X389241Y163000D01*

-X389215Y163439D01*

-X389112Y163868D01*

-X388944Y164275D01*

-X388713Y164651D01*

-X388427Y164986D01*

-X388092Y165272D01*

-X387716Y165503D01*

-X387309Y165671D01*

-X386880Y165774D01*

-X386441Y165809D01*

-X386437Y165808D01*

-Y186353D01*

-X386665Y186725D01*

-X386833Y187132D01*

-X386936Y187561D01*

-X386962Y188000D01*

-X386936Y188439D01*

-X386833Y188868D01*

-X386665Y189275D01*

-X386437Y189647D01*

-Y232273D01*

-X386631Y232226D01*

-X387070Y232191D01*

-X387509Y232226D01*

-X387938Y232329D01*

-X388345Y232497D01*

-X388721Y232728D01*

-X389056Y233014D01*

-X389342Y233349D01*

-X389437Y233503D01*

-Y186808D01*

-X389002Y186774D01*

-X388573Y186671D01*

-X388166Y186503D01*

-X387790Y186272D01*

-X387455Y185986D01*

-X387169Y185651D01*

-X386938Y185275D01*

-X386770Y184868D01*

-X386667Y184439D01*

-X386632Y184000D01*

-X386667Y183561D01*

-X386770Y183132D01*

-X386938Y182725D01*

-X387169Y182349D01*

-X387455Y182014D01*

-X387790Y181728D01*

-X388166Y181497D01*

-X388573Y181329D01*

-X389002Y181226D01*

-X389437Y181192D01*

-Y136500D01*

-G37*

-G36*

-X386437D02*X377344D01*

-Y160373D01*

-X377347Y160372D01*

-X377629Y160395D01*

-X377905Y160461D01*

-X378167Y160569D01*

-X378408Y160717D01*

-X378624Y160901D01*

-X378808Y161117D01*

-X378956Y161358D01*

-X379064Y161620D01*

-X379130Y161896D01*

-X379147Y162178D01*

-X379130Y162460D01*

-X379064Y162736D01*

-X378956Y162998D01*

-X378808Y163239D01*

-X378624Y163455D01*

-X378408Y163639D01*

-X378167Y163787D01*

-X377905Y163895D01*

-X377629Y163961D01*

-X377347Y163984D01*

-X377344Y163983D01*

-Y232943D01*

-X377427Y233014D01*

-X377713Y233349D01*

-X377944Y233725D01*

-X378112Y234132D01*

-X378215Y234561D01*

-X378241Y235000D01*

-X378215Y235439D01*

-X378112Y235868D01*

-X377944Y236275D01*

-X377713Y236651D01*

-X377427Y236986D01*

-X377344Y237057D01*

-Y397000D01*

-X386437D01*

-Y378929D01*

-X386436Y378939D01*

-X386333Y379368D01*

-X386165Y379775D01*

-X385934Y380151D01*

-X385648Y380486D01*

-X385313Y380772D01*

-X384937Y381003D01*

-X384530Y381171D01*

-X384101Y381274D01*

-X383662Y381309D01*

-X383223Y381274D01*

-X382794Y381171D01*

-X382387Y381003D01*

-X382011Y380772D01*

-X381676Y380486D01*

-X381390Y380151D01*

-X381159Y379775D01*

-X380991Y379368D01*

-X380888Y378939D01*

-X380853Y378500D01*

-X380888Y378061D01*

-X380991Y377632D01*

-X381159Y377225D01*

-X381390Y376849D01*

-X381676Y376514D01*

-X382011Y376228D01*

-X382387Y375997D01*

-X382794Y375829D01*

-X383223Y375726D01*

-X383662Y375691D01*

-X384101Y375726D01*

-X384530Y375829D01*

-X384937Y375997D01*

-X385313Y376228D01*

-X385648Y376514D01*

-X385934Y376849D01*

-X386165Y377225D01*

-X386333Y377632D01*

-X386436Y378061D01*

-X386437Y378071D01*

-Y367732D01*

-X386223Y367783D01*

-X385941Y367806D01*

-X385659Y367783D01*

-X385383Y367717D01*

-X385121Y367609D01*

-X384880Y367461D01*

-X384664Y367277D01*

-X384480Y367061D01*

-X384332Y366820D01*

-X384224Y366558D01*

-X384158Y366282D01*

-X384135Y366000D01*

-X384158Y365718D01*

-X384224Y365442D01*

-X384332Y365180D01*

-X384480Y364939D01*

-X384664Y364723D01*

-X384880Y364539D01*

-X385121Y364391D01*

-X385383Y364283D01*

-X385659Y364217D01*

-X385941Y364194D01*

-X386223Y364217D01*

-X386437Y364268D01*

-Y357261D01*

-X386380Y357274D01*

-X385941Y357309D01*

-X385502Y357274D01*

-X385073Y357171D01*

-X384666Y357003D01*

-X384290Y356772D01*

-X383955Y356486D01*

-X383669Y356151D01*

-X383438Y355775D01*

-X383270Y355368D01*

-X383167Y354939D01*

-X383132Y354500D01*

-X383167Y354061D01*

-X383270Y353632D01*

-X383438Y353225D01*

-X383669Y352849D01*

-X383955Y352514D01*

-X384290Y352228D01*

-X384666Y351997D01*

-X385073Y351829D01*

-X385502Y351726D01*

-X385941Y351691D01*

-X386380Y351726D01*

-X386437Y351739D01*

-Y328615D01*

-X386166Y328503D01*

-X385790Y328272D01*

-X385455Y327986D01*

-X385169Y327651D01*

-X384938Y327275D01*

-X384770Y326868D01*

-X384667Y326439D01*

-X384632Y326000D01*

-X384667Y325561D01*

-X384770Y325132D01*

-X384938Y324725D01*

-X385169Y324349D01*

-X385455Y324014D01*

-X385790Y323728D01*

-X386166Y323497D01*

-X386437Y323385D01*

-Y307647D01*

-X386434Y307651D01*

-X386148Y307986D01*

-X385813Y308272D01*

-X385437Y308503D01*

-X385030Y308671D01*

-X384601Y308774D01*

-X384162Y308809D01*

-X383723Y308774D01*

-X383294Y308671D01*

-X382887Y308503D01*

-X382511Y308272D01*

-X382176Y307986D01*

-X381890Y307651D01*

-X381659Y307275D01*

-X381491Y306868D01*

-X381388Y306439D01*

-X381353Y306000D01*

-X381388Y305561D01*

-X381491Y305132D01*

-X381659Y304725D01*

-X381890Y304349D01*

-X382176Y304014D01*

-X382511Y303728D01*

-X382887Y303497D01*

-X383294Y303329D01*

-X383723Y303226D01*

-X384162Y303191D01*

-X384601Y303226D01*

-X385030Y303329D01*

-X385437Y303497D01*

-X385813Y303728D01*

-X386148Y304014D01*

-X386434Y304349D01*

-X386437Y304353D01*

-Y284786D01*

-X386281Y284774D01*

-X385852Y284671D01*

-X385445Y284503D01*

-X385069Y284272D01*

-X384734Y283986D01*

-X384448Y283651D01*

-X384217Y283275D01*

-X384049Y282868D01*

-X383946Y282439D01*

-X383911Y282000D01*

-X383946Y281561D01*

-X384049Y281132D01*

-X384217Y280725D01*

-X384448Y280349D01*

-X384734Y280014D01*

-X385069Y279728D01*

-X385445Y279497D01*

-X385852Y279329D01*

-X386281Y279226D01*

-X386437Y279214D01*

-Y260038D01*

-X386163Y260272D01*

-X385787Y260503D01*

-X385380Y260671D01*

-X384951Y260774D01*

-X384512Y260809D01*

-X384073Y260774D01*

-X383644Y260671D01*

-X383237Y260503D01*

-X382861Y260272D01*

-X382526Y259986D01*

-X382240Y259651D01*

-X382009Y259275D01*

-X381841Y258868D01*

-X381738Y258439D01*

-X381703Y258000D01*

-X381738Y257561D01*

-X381841Y257132D01*

-X382009Y256725D01*

-X382240Y256349D01*

-X382526Y256014D01*

-X382861Y255728D01*

-X383237Y255497D01*

-X383644Y255329D01*

-X384073Y255226D01*

-X384512Y255191D01*

-X384951Y255226D01*

-X385380Y255329D01*

-X385787Y255497D01*

-X386163Y255728D01*

-X386437Y255962D01*

-Y247617D01*

-X386424Y247562D01*

-X386401Y247280D01*

-X386424Y246998D01*

-X386437Y246943D01*

-Y237727D01*

-X386202Y237671D01*

-X385795Y237503D01*

-X385419Y237272D01*

-X385084Y236986D01*

-X384798Y236651D01*

-X384567Y236275D01*

-X384399Y235868D01*

-X384296Y235439D01*

-X384261Y235000D01*

-X384296Y234561D01*

-X384399Y234132D01*

-X384567Y233725D01*

-X384798Y233349D01*

-X385084Y233014D01*

-X385419Y232728D01*

-X385795Y232497D01*

-X386202Y232329D01*

-X386437Y232273D01*

-Y189647D01*

-X386434Y189651D01*

-X386148Y189986D01*

-X385813Y190272D01*

-X385437Y190503D01*

-X385030Y190671D01*

-X384601Y190774D01*

-X384162Y190809D01*

-X383723Y190774D01*

-X383294Y190671D01*

-X382887Y190503D01*

-X382511Y190272D01*

-X382176Y189986D01*

-X381890Y189651D01*

-X381659Y189275D01*

-X381491Y188868D01*

-X381388Y188439D01*

-X381353Y188000D01*

-X381388Y187561D01*

-X381491Y187132D01*

-X381659Y186725D01*

-X381890Y186349D01*

-X382176Y186014D01*

-X382511Y185728D01*

-X382887Y185497D01*

-X383294Y185329D01*

-X383723Y185226D01*

-X384162Y185191D01*

-X384601Y185226D01*

-X385030Y185329D01*

-X385437Y185497D01*

-X385813Y185728D01*

-X386148Y186014D01*

-X386434Y186349D01*

-X386437Y186353D01*

-Y165808D01*

-X386002Y165774D01*

-X385573Y165671D01*

-X385166Y165503D01*

-X384790Y165272D01*

-X384455Y164986D01*

-X384169Y164651D01*

-X383938Y164275D01*

-X383770Y163868D01*

-X383667Y163439D01*

-X383632Y163000D01*

-X383667Y162561D01*

-X383770Y162132D01*

-X383938Y161725D01*

-X384169Y161349D01*

-X384455Y161014D01*

-X384790Y160728D01*

-X385166Y160497D01*

-X385573Y160329D01*

-X386002Y160226D01*

-X386437Y160192D01*

-Y159565D01*

-X386305Y159596D01*

-X386023Y159619D01*

-X385741Y159596D01*

-X385465Y159530D01*

-X385203Y159422D01*

-X384962Y159274D01*

-X384746Y159090D01*

-X384562Y158874D01*

-X384414Y158633D01*

-X384306Y158371D01*

-X384240Y158095D01*

-X384217Y157813D01*

-X384240Y157531D01*

-X384306Y157255D01*

-X384414Y156993D01*

-X384562Y156752D01*

-X384746Y156536D01*

-X384962Y156352D01*

-X385203Y156204D01*

-X385465Y156096D01*

-X385741Y156030D01*

-X386023Y156007D01*

-X386305Y156030D01*

-X386437Y156061D01*

-Y136500D01*

-G37*

-G36*

-X377344D02*X372437D01*

-Y167578D01*

-X372441Y167577D01*

-X372880Y167612D01*

-X373309Y167715D01*

-X373716Y167883D01*

-X374092Y168114D01*

-X374427Y168400D01*

-X374713Y168735D01*

-X374944Y169111D01*

-X375112Y169518D01*

-X375215Y169947D01*

-X375241Y170386D01*

-X375215Y170825D01*

-X375112Y171254D01*

-X374944Y171661D01*

-X374713Y172037D01*

-X374427Y172372D01*

-X374092Y172658D01*

-X373716Y172889D01*

-X373309Y173057D01*

-X372880Y173160D01*

-X372441Y173195D01*

-X372437Y173194D01*

-Y258628D01*

-X372663Y258767D01*

-X372879Y258951D01*

-X373063Y259167D01*

-X373211Y259408D01*

-X373319Y259670D01*

-X373385Y259946D01*

-X373402Y260228D01*

-X373385Y260510D01*

-X373319Y260786D01*

-X373211Y261048D01*

-X373063Y261289D01*

-X372879Y261505D01*

-X372663Y261689D01*

-X372437Y261828D01*

-Y287881D01*

-X372441Y287880D01*

-X372880Y287915D01*

-X373309Y288018D01*

-X373716Y288186D01*

-X374092Y288417D01*

-X374427Y288703D01*

-X374713Y289038D01*

-X374944Y289414D01*

-X375112Y289821D01*

-X375215Y290250D01*

-X375241Y290689D01*

-X375215Y291128D01*

-X375112Y291557D01*

-X374944Y291964D01*

-X374713Y292340D01*

-X374427Y292675D01*

-X374092Y292961D01*

-X373716Y293192D01*

-X373309Y293360D01*

-X372880Y293463D01*

-X372441Y293498D01*

-X372437Y293497D01*

-Y348381D01*

-X372441Y348380D01*

-X372880Y348415D01*

-X373309Y348518D01*

-X373716Y348686D01*

-X374092Y348917D01*

-X374427Y349203D01*

-X374713Y349538D01*

-X374944Y349914D01*

-X375112Y350321D01*

-X375215Y350750D01*

-X375241Y351189D01*

-X375215Y351628D01*

-X375112Y352057D01*

-X374944Y352464D01*

-X374713Y352840D01*

-X374427Y353175D01*

-X374092Y353461D01*

-X373716Y353692D01*

-X373309Y353860D01*

-X372880Y353963D01*

-X372441Y353998D01*

-X372437Y353997D01*

-Y397000D01*

-X377344D01*

-Y237057D01*

-X377092Y237272D01*

-X376716Y237503D01*

-X376309Y237671D01*

-X375880Y237774D01*

-X375441Y237809D01*

-X375002Y237774D01*

-X374573Y237671D01*

-X374166Y237503D01*

-X373790Y237272D01*

-X373455Y236986D01*

-X373169Y236651D01*

-X372938Y236275D01*

-X372770Y235868D01*

-X372667Y235439D01*

-X372632Y235000D01*

-X372667Y234561D01*

-X372770Y234132D01*

-X372938Y233725D01*

-X373169Y233349D01*

-X373455Y233014D01*

-X373790Y232728D01*

-X374166Y232497D01*

-X374573Y232329D01*

-X375002Y232226D01*

-X375441Y232191D01*

-X375880Y232226D01*

-X376309Y232329D01*

-X376716Y232497D01*

-X377092Y232728D01*

-X377344Y232943D01*

-Y163983D01*

-X377065Y163961D01*

-X376789Y163895D01*

-X376527Y163787D01*

-X376286Y163639D01*

-X376070Y163455D01*

-X375886Y163239D01*

-X375738Y162998D01*

-X375630Y162736D01*

-X375564Y162460D01*

-X375541Y162178D01*

-X375564Y161896D01*

-X375630Y161620D01*

-X375738Y161358D01*

-X375886Y161117D01*

-X376070Y160901D01*

-X376286Y160717D01*

-X376527Y160569D01*

-X376789Y160461D01*

-X377065Y160395D01*

-X377344Y160373D01*

-Y136500D01*

-G37*

-G36*

-X372437D02*X368441D01*

-Y171500D01*

-X358938D01*

-Y206695D01*

-X358941Y206694D01*

-X359223Y206717D01*

-X359499Y206783D01*

-X359761Y206891D01*

-X360002Y207039D01*

-X360218Y207223D01*

-X360402Y207439D01*

-X360550Y207680D01*

-X360658Y207942D01*

-X360724Y208218D01*

-X360741Y208500D01*

-X360724Y208782D01*

-X360658Y209058D01*

-X360550Y209320D01*

-X360402Y209561D01*

-X360218Y209777D01*

-X360002Y209961D01*

-X359761Y210109D01*

-X359499Y210217D01*

-X359223Y210283D01*

-X358941Y210306D01*

-X358938Y210305D01*

-Y397000D01*

-X372437D01*

-Y353997D01*

-X372002Y353963D01*

-X371573Y353860D01*

-X371166Y353692D01*

-X370790Y353461D01*

-X370455Y353175D01*

-X370169Y352840D01*

-X369938Y352464D01*

-X369770Y352057D01*

-X369667Y351628D01*

-X369632Y351189D01*

-X369667Y350750D01*

-X369770Y350321D01*

-X369938Y349914D01*

-X370169Y349538D01*

-X370455Y349203D01*

-X370790Y348917D01*

-X371166Y348686D01*

-X371573Y348518D01*

-X372002Y348415D01*

-X372437Y348381D01*

-Y293497D01*

-X372002Y293463D01*

-X371573Y293360D01*

-X371166Y293192D01*

-X370790Y292961D01*

-X370455Y292675D01*

-X370169Y292340D01*

-X369938Y291964D01*

-X369770Y291557D01*

-X369667Y291128D01*

-X369632Y290689D01*

-X369667Y290250D01*

-X369770Y289821D01*

-X369938Y289414D01*

-X370169Y289038D01*

-X370455Y288703D01*

-X370790Y288417D01*

-X371166Y288186D01*

-X371573Y288018D01*

-X372002Y287915D01*

-X372437Y287881D01*

-Y261828D01*

-X372422Y261837D01*

-X372160Y261945D01*

-X371884Y262011D01*

-X371602Y262034D01*

-X371320Y262011D01*

-X371044Y261945D01*

-X370782Y261837D01*

-X370541Y261689D01*

-X370325Y261505D01*

-X370141Y261289D01*

-X369993Y261048D01*

-X369885Y260786D01*

-X369819Y260510D01*

-X369796Y260228D01*

-X369819Y259946D01*

-X369885Y259670D01*

-X369993Y259408D01*

-X370141Y259167D01*

-X370325Y258951D01*

-X370541Y258767D01*

-X370782Y258619D01*

-X371044Y258511D01*

-X371320Y258445D01*

-X371602Y258422D01*

-X371884Y258445D01*

-X372160Y258511D01*

-X372422Y258619D01*

-X372437Y258628D01*

-Y173194D01*

-X372002Y173160D01*

-X371573Y173057D01*

-X371166Y172889D01*

-X370790Y172658D01*

-X370455Y172372D01*

-X370169Y172037D01*

-X369938Y171661D01*

-X369770Y171254D01*

-X369667Y170825D01*

-X369632Y170386D01*

-X369667Y169947D01*

-X369770Y169518D01*

-X369938Y169111D01*

-X370169Y168735D01*

-X370455Y168400D01*

-X370790Y168114D01*

-X371166Y167883D01*

-X371573Y167715D01*

-X372002Y167612D01*

-X372437Y167578D01*

-Y136500D01*

-G37*

-G36*

-X358938Y171500D02*X356438D01*

-Y231195D01*

-X356441Y231194D01*

-X356723Y231217D01*

-X356999Y231283D01*

-X357261Y231391D01*

-X357502Y231539D01*

-X357718Y231723D01*

-X357902Y231939D01*

-X358050Y232180D01*

-X358158Y232442D01*

-X358224Y232718D01*

-X358241Y233000D01*

-X358224Y233282D01*

-X358158Y233558D01*

-X358050Y233820D01*

-X357902Y234061D01*

-X357718Y234277D01*

-X357502Y234461D01*

-X357261Y234609D01*

-X356999Y234717D01*

-X356723Y234783D01*

-X356441Y234806D01*

-X356438Y234805D01*

-Y397000D01*

-X358938D01*

-Y210305D01*

-X358659Y210283D01*

-X358383Y210217D01*

-X358121Y210109D01*

-X357880Y209961D01*

-X357664Y209777D01*

-X357480Y209561D01*

-X357332Y209320D01*

-X357224Y209058D01*

-X357158Y208782D01*

-X357135Y208500D01*

-X357158Y208218D01*

-X357224Y207942D01*

-X357332Y207680D01*

-X357480Y207439D01*

-X357664Y207223D01*

-X357880Y207039D01*

-X358121Y206891D01*

-X358383Y206783D01*

-X358659Y206717D01*

-X358938Y206695D01*

-Y171500D01*

-G37*

-G36*

-X356438D02*X353387D01*

-Y185739D01*

-X353955Y186404D01*

-X354781Y187752D01*

-X355387Y189214D01*

-X355756Y190752D01*

-X355849Y192329D01*

-X355756Y193906D01*

-X355387Y195444D01*

-X354781Y196906D01*

-X353955Y198254D01*

-X353387Y198919D01*

-Y337716D01*

-X353390Y337715D01*

-X353672Y337738D01*

-X353948Y337804D01*

-X354210Y337912D01*

-X354451Y338060D01*

-X354667Y338244D01*

-X354851Y338460D01*

-X354999Y338701D01*

-X355107Y338963D01*

-X355173Y339239D01*

-X355190Y339521D01*

-X355173Y339803D01*

-X355107Y340079D01*

-X354999Y340341D01*

-X354851Y340582D01*

-X354667Y340798D01*

-X354451Y340982D01*

-X354210Y341130D01*

-X353948Y341238D01*

-X353672Y341304D01*

-X353390Y341327D01*

-X353387Y341326D01*

-Y350739D01*

-X353955Y351404D01*

-X354781Y352752D01*

-X355387Y354214D01*

-X355756Y355752D01*

-X355849Y357329D01*

-X355756Y358906D01*

-X355387Y360444D01*

-X354781Y361906D01*

-X353955Y363254D01*

-X353387Y363919D01*

-Y397000D01*

-X356438D01*

-Y234805D01*

-X356159Y234783D01*

-X355883Y234717D01*

-X355621Y234609D01*

-X355380Y234461D01*

-X355164Y234277D01*

-X354980Y234061D01*

-X354832Y233820D01*

-X354724Y233558D01*

-X354658Y233282D01*

-X354635Y233000D01*

-X354658Y232718D01*

-X354724Y232442D01*

-X354832Y232180D01*

-X354980Y231939D01*

-X355164Y231723D01*

-X355380Y231539D01*

-X355621Y231391D01*

-X355883Y231283D01*

-X356159Y231217D01*

-X356438Y231195D01*

-Y171500D01*

-G37*

-G36*

-X353387Y363919D02*X352927Y364457D01*

-X351724Y365485D01*

-X350376Y366311D01*

-X348914Y366917D01*

-X347376Y367286D01*

-X345799Y367410D01*

-X344222Y367286D01*

-X342684Y366917D01*

-X341222Y366311D01*

-X339874Y365485D01*

-X339834Y365451D01*

-Y397000D01*

-X353387D01*

-Y363919D01*

-G37*

-G36*

-Y198919D02*X352927Y199457D01*

-X351724Y200485D01*

-X350376Y201311D01*

-X348914Y201917D01*

-X347376Y202286D01*

-X345799Y202410D01*

-X344222Y202286D01*

-X342684Y201917D01*

-X341222Y201311D01*

-X339874Y200485D01*

-X339834Y200451D01*

-Y223052D01*

-X339902Y223131D01*

-X340050Y223372D01*

-X340158Y223634D01*

-X340224Y223910D01*

-X340241Y224192D01*

-X340224Y224474D01*

-X340158Y224750D01*

-X340050Y225012D01*

-X339902Y225253D01*

-X339834Y225332D01*

-Y228984D01*

-X339902Y229063D01*

-X340050Y229304D01*

-X340158Y229566D01*

-X340224Y229842D01*

-X340241Y230124D01*

-X340224Y230406D01*

-X340158Y230682D01*

-X340050Y230944D01*

-X339902Y231185D01*

-X339834Y231264D01*

-Y245027D01*

-X340278Y244755D01*

-X340969Y244469D01*

-X341696Y244294D01*

-X342441Y244235D01*

-X343186Y244294D01*

-X343913Y244469D01*

-X344604Y244755D01*

-X345242Y245145D01*

-X345810Y245631D01*

-X346296Y246199D01*

-X346686Y246837D01*

-X346972Y247528D01*

-X347147Y248255D01*

-X347191Y249000D01*

-X347147Y249745D01*

-X346972Y250472D01*

-X346686Y251163D01*

-X346296Y251801D01*

-X345810Y252369D01*

-X345242Y252855D01*

-X344604Y253245D01*

-X343913Y253531D01*

-X343186Y253706D01*

-X342441Y253765D01*

-X341696Y253706D01*

-X340969Y253531D01*

-X340278Y253245D01*

-X339834Y252973D01*

-Y340022D01*

-X339837Y340021D01*

-X340119Y340044D01*

-X340395Y340110D01*

-X340657Y340218D01*

-X340898Y340366D01*

-X341114Y340550D01*

-X341298Y340766D01*

-X341446Y341007D01*

-X341554Y341269D01*

-X341620Y341545D01*

-X341637Y341827D01*

-X341620Y342109D01*

-X341554Y342385D01*

-X341446Y342647D01*

-X341298Y342888D01*

-X341114Y343104D01*

-X340898Y343288D01*

-X340657Y343436D01*

-X340395Y343544D01*

-X340119Y343610D01*

-X339837Y343633D01*

-X339834Y343632D01*

-Y349207D01*

-X339874Y349173D01*

-X341222Y348347D01*

-X342684Y347741D01*

-X344222Y347372D01*

-X345799Y347248D01*

-X347376Y347372D01*

-X348914Y347741D01*

-X350376Y348347D01*

-X351724Y349173D01*

-X352927Y350201D01*

-X353387Y350739D01*

-Y341326D01*

-X353108Y341304D01*

-X352832Y341238D01*

-X352570Y341130D01*

-X352329Y340982D01*

-X352113Y340798D01*

-X351929Y340582D01*

-X351781Y340341D01*

-X351673Y340079D01*

-X351607Y339803D01*

-X351584Y339521D01*

-X351607Y339239D01*

-X351673Y338963D01*

-X351781Y338701D01*

-X351929Y338460D01*

-X352113Y338244D01*

-X352329Y338060D01*

-X352570Y337912D01*

-X352832Y337804D01*

-X353108Y337738D01*

-X353387Y337716D01*

-Y198919D01*

-G37*

-G36*

-Y171500D02*X339834D01*

-Y184207D01*

-X339874Y184173D01*

-X341222Y183347D01*

-X342684Y182741D01*

-X344222Y182372D01*

-X345799Y182248D01*

-X347376Y182372D01*

-X348914Y182741D01*

-X350376Y183347D01*

-X351724Y184173D01*

-X352927Y185201D01*

-X353387Y185739D01*

-Y171500D01*

-G37*

-G36*

-X339834D02*X332434D01*

-Y244236D01*

-X332441Y244235D01*

-X333186Y244294D01*

-X333913Y244469D01*

-X334604Y244755D01*

-X335242Y245145D01*

-X335810Y245631D01*

-X336296Y246199D01*

-X336686Y246837D01*

-X336972Y247528D01*

-X337147Y248255D01*

-X337191Y249000D01*

-X337147Y249745D01*

-X336972Y250472D01*

-X336686Y251163D01*

-X336296Y251801D01*

-X335810Y252369D01*

-X335242Y252855D01*

-X334604Y253245D01*

-X333913Y253531D01*

-X333186Y253706D01*

-X332441Y253765D01*

-X332434Y253764D01*

-Y397000D01*

-X339834D01*

-Y365451D01*

-X338671Y364457D01*

-X337643Y363254D01*

-X336817Y361906D01*

-X336211Y360444D01*

-X335842Y358906D01*

-X335718Y357329D01*

-X335842Y355752D01*

-X336211Y354214D01*

-X336817Y352752D01*

-X337643Y351404D01*

-X338671Y350201D01*

-X339834Y349207D01*

-Y343632D01*

-X339555Y343610D01*

-X339279Y343544D01*

-X339017Y343436D01*

-X338776Y343288D01*

-X338560Y343104D01*

-X338376Y342888D01*

-X338228Y342647D01*

-X338120Y342385D01*

-X338054Y342109D01*

-X338031Y341827D01*

-X338054Y341545D01*

-X338120Y341269D01*

-X338228Y341007D01*

-X338376Y340766D01*

-X338560Y340550D01*

-X338776Y340366D01*

-X339017Y340218D01*

-X339279Y340110D01*

-X339555Y340044D01*

-X339834Y340022D01*

-Y252973D01*

-X339640Y252855D01*

-X339072Y252369D01*

-X338586Y251801D01*

-X338196Y251163D01*

-X337910Y250472D01*

-X337735Y249745D01*

-X337676Y249000D01*

-X337735Y248255D01*

-X337910Y247528D01*

-X338196Y246837D01*

-X338586Y246199D01*

-X339072Y245631D01*

-X339640Y245145D01*

-X339834Y245027D01*

-Y231264D01*

-X339718Y231401D01*

-X339502Y231585D01*

-X339261Y231733D01*

-X338999Y231841D01*

-X338723Y231907D01*

-X338441Y231930D01*

-X338159Y231907D01*

-X337883Y231841D01*

-X337621Y231733D01*

-X337380Y231585D01*

-X337164Y231401D01*

-X336980Y231185D01*

-X336832Y230944D01*

-X336724Y230682D01*

-X336658Y230406D01*

-X336635Y230124D01*

-X336658Y229842D01*

-X336724Y229566D01*

-X336832Y229304D01*

-X336980Y229063D01*

-X337164Y228847D01*

-X337380Y228663D01*

-X337621Y228515D01*

-X337883Y228407D01*

-X338159Y228341D01*

-X338441Y228318D01*

-X338723Y228341D01*

-X338999Y228407D01*

-X339261Y228515D01*

-X339502Y228663D01*

-X339718Y228847D01*

-X339834Y228984D01*

-Y225332D01*

-X339718Y225469D01*

-X339502Y225653D01*

-X339261Y225801D01*

-X338999Y225909D01*

-X338723Y225975D01*

-X338441Y225998D01*

-X338159Y225975D01*

-X337883Y225909D01*

-X337621Y225801D01*

-X337380Y225653D01*

-X337164Y225469D01*

-X336980Y225253D01*

-X336832Y225012D01*

-X336724Y224750D01*

-X336658Y224474D01*

-X336635Y224192D01*

-X336658Y223910D01*

-X336724Y223634D01*

-X336832Y223372D01*

-X336980Y223131D01*

-X337164Y222915D01*

-X337380Y222731D01*

-X337621Y222583D01*

-X337883Y222475D01*

-X338159Y222409D01*

-X338441Y222386D01*

-X338723Y222409D01*

-X338999Y222475D01*

-X339261Y222583D01*

-X339502Y222731D01*

-X339718Y222915D01*

-X339834Y223052D01*

-Y200451D01*

-X338671Y199457D01*

-X337643Y198254D01*

-X336817Y196906D01*

-X336211Y195444D01*

-X335842Y193906D01*

-X335718Y192329D01*

-X335842Y190752D01*

-X336211Y189214D01*

-X336817Y187752D01*

-X337643Y186404D01*

-X338671Y185201D01*

-X339834Y184207D01*

-Y171500D01*

-G37*

-G36*

-X332434D02*X328522D01*

-X328849Y171779D01*

-X329289Y172294D01*

-X329642Y172871D01*

-X329901Y173496D01*

-X330059Y174154D01*

-X330099Y174829D01*

-X330059Y175504D01*

-X329901Y176162D01*

-X329642Y176787D01*

-X329289Y177364D01*

-X328849Y177879D01*

-X328334Y178319D01*

-X327757Y178672D01*

-X327132Y178931D01*

-X326474Y179089D01*

-X325799Y179142D01*

-X325792Y179142D01*

-Y180516D01*

-X325799Y180516D01*

-X326474Y180569D01*

-X327132Y180727D01*

-X327757Y180986D01*

-X328334Y181339D01*

-X328849Y181779D01*

-X329289Y182294D01*

-X329642Y182871D01*

-X329901Y183496D01*

-X330059Y184154D01*

-X330099Y184829D01*

-X330059Y185504D01*

-X329901Y186162D01*

-X329642Y186787D01*

-X329289Y187364D01*

-X328849Y187879D01*

-X328334Y188319D01*

-X327757Y188672D01*

-X327132Y188931D01*

-X326474Y189089D01*

-X325799Y189142D01*

-X325792Y189142D01*

-Y245616D01*

-X325810Y245631D01*

-X326296Y246199D01*

-X326686Y246837D01*

-X326972Y247528D01*

-X327147Y248255D01*

-X327191Y249000D01*

-X327147Y249745D01*

-X326972Y250472D01*

-X326686Y251163D01*

-X326296Y251801D01*

-X325810Y252369D01*

-X325792Y252384D01*

-Y330862D01*

-X326435Y331910D01*

-X327151Y333640D01*

-X327589Y335462D01*

-X327699Y337329D01*

-X327589Y339196D01*

-X327151Y341018D01*

-X326435Y342748D01*

-X325792Y343796D01*

-Y360516D01*

-X325799Y360516D01*

-X326474Y360569D01*

-X327132Y360727D01*

-X327757Y360986D01*

-X328334Y361339D01*

-X328849Y361779D01*

-X329289Y362294D01*

-X329642Y362871D01*

-X329901Y363496D01*

-X330059Y364154D01*

-X330099Y364829D01*

-X330059Y365504D01*

-X329901Y366162D01*

-X329642Y366787D01*

-X329289Y367364D01*

-X328849Y367879D01*

-X328334Y368319D01*

-X327757Y368672D01*

-X327132Y368931D01*

-X326474Y369089D01*

-X325799Y369142D01*

-X325792Y369142D01*

-Y370516D01*

-X325799Y370516D01*

-X326474Y370569D01*

-X327132Y370727D01*

-X327757Y370986D01*

-X328334Y371339D01*

-X328849Y371779D01*

-X329289Y372294D01*

-X329642Y372871D01*

-X329901Y373496D01*

-X330059Y374154D01*

-X330099Y374829D01*

-X330059Y375504D01*

-X329901Y376162D01*

-X329642Y376787D01*

-X329289Y377364D01*

-X328849Y377879D01*

-X328334Y378319D01*

-X327757Y378672D01*

-X327132Y378931D01*

-X326474Y379089D01*

-X325799Y379142D01*

-X325792Y379142D01*

-Y397000D01*

-X332434D01*

-Y253764D01*

-X331696Y253706D01*

-X330969Y253531D01*

-X330278Y253245D01*

-X329640Y252855D01*

-X329072Y252369D01*

-X328586Y251801D01*

-X328196Y251163D01*

-X327910Y250472D01*

-X327735Y249745D01*

-X327676Y249000D01*

-X327735Y248255D01*

-X327910Y247528D01*

-X328196Y246837D01*

-X328586Y246199D01*

-X329072Y245631D01*

-X329640Y245145D01*

-X330278Y244755D01*

-X330969Y244469D01*

-X331696Y244294D01*

-X332434Y244236D01*

-Y171500D01*

-G37*

-G36*

-X325792Y343796D02*X325456Y344345D01*

-X324240Y345770D01*

-X322815Y346986D01*

-X321218Y347965D01*

-X319488Y348681D01*

-X317666Y349119D01*

-X315799Y349266D01*

-X313932Y349119D01*

-X312154Y348692D01*

-Y362548D01*

-X312309Y362294D01*

-X312749Y361779D01*

-X313264Y361339D01*

-X313841Y360986D01*

-X314466Y360727D01*

-X315124Y360569D01*

-X315799Y360516D01*

-X316474Y360569D01*

-X317132Y360727D01*

-X317757Y360986D01*

-X318334Y361339D01*

-X318849Y361779D01*

-X319289Y362294D01*

-X319642Y362871D01*

-X319901Y363496D01*

-X320059Y364154D01*

-X320099Y364829D01*

-X320059Y365504D01*

-X319901Y366162D01*

-X319642Y366787D01*

-X319289Y367364D01*

-X318849Y367879D01*

-X318334Y368319D01*

-X317757Y368672D01*

-X317132Y368931D01*

-X316474Y369089D01*

-X315799Y369142D01*

-X315124Y369089D01*

-X314466Y368931D01*

-X313841Y368672D01*

-X313264Y368319D01*

-X312749Y367879D01*

-X312309Y367364D01*

-X312154Y367110D01*

-Y372548D01*

-X312309Y372294D01*

-X312749Y371779D01*

-X313264Y371339D01*

-X313841Y370986D01*

-X314466Y370727D01*

-X315124Y370569D01*

-X315799Y370516D01*

-X316474Y370569D01*

-X317132Y370727D01*

-X317757Y370986D01*

-X318334Y371339D01*

-X318849Y371779D01*

-X319289Y372294D01*

-X319642Y372871D01*

-X319901Y373496D01*

-X320059Y374154D01*

-X320099Y374829D01*

-X320059Y375504D01*

-X319901Y376162D01*

-X319642Y376787D01*

-X319289Y377364D01*

-X318849Y377879D01*

-X318334Y378319D01*

-X317757Y378672D01*

-X317132Y378931D01*

-X316474Y379089D01*

-X315799Y379142D01*

-X315124Y379089D01*

-X314466Y378931D01*

-X313841Y378672D01*

-X313264Y378319D01*

-X312749Y377879D01*

-X312309Y377364D01*

-X312154Y377110D01*

-Y397000D01*

-X325792D01*

-Y379142D01*

-X325124Y379089D01*

-X324466Y378931D01*

-X323841Y378672D01*

-X323264Y378319D01*

-X322749Y377879D01*

-X322309Y377364D01*

-X321956Y376787D01*

-X321697Y376162D01*

-X321539Y375504D01*

-X321486Y374829D01*

-X321539Y374154D01*

-X321697Y373496D01*

-X321956Y372871D01*

-X322309Y372294D01*

-X322749Y371779D01*

-X323264Y371339D01*

-X323841Y370986D01*

-X324466Y370727D01*

-X325124Y370569D01*

-X325792Y370516D01*

-Y369142D01*

-X325124Y369089D01*

-X324466Y368931D01*

-X323841Y368672D01*

-X323264Y368319D01*

-X322749Y367879D01*

-X322309Y367364D01*

-X321956Y366787D01*

-X321697Y366162D01*

-X321539Y365504D01*

-X321486Y364829D01*

-X321539Y364154D01*

-X321697Y363496D01*

-X321956Y362871D01*

-X322309Y362294D01*

-X322749Y361779D01*

-X323264Y361339D01*

-X323841Y360986D01*

-X324466Y360727D01*

-X325124Y360569D01*

-X325792Y360516D01*

-Y343796D01*

-G37*

-G36*

-Y179142D02*X325124Y179089D01*

-X324466Y178931D01*

-X323841Y178672D01*

-X323264Y178319D01*

-X322749Y177879D01*

-X322309Y177364D01*

-X321956Y176787D01*

-X321697Y176162D01*

-X321539Y175504D01*

-X321486Y174829D01*

-X321539Y174154D01*

-X321697Y173496D01*

-X321956Y172871D01*

-X322309Y172294D01*

-X322749Y171779D01*

-X323076Y171500D01*

-X318522D01*

-X318849Y171779D01*

-X319289Y172294D01*

-X319642Y172871D01*

-X319901Y173496D01*

-X320059Y174154D01*

-X320099Y174829D01*

-X320059Y175504D01*

-X319901Y176162D01*

-X319642Y176787D01*

-X319289Y177364D01*

-X318849Y177879D01*

-X318334Y178319D01*

-X317757Y178672D01*

-X317132Y178931D01*

-X316474Y179089D01*

-X315799Y179142D01*

-X315124Y179089D01*

-X314466Y178931D01*

-X313841Y178672D01*

-X313264Y178319D01*

-X312749Y177879D01*

-X312309Y177364D01*

-X312154Y177110D01*

-Y182548D01*

-X312309Y182294D01*

-X312749Y181779D01*

-X313264Y181339D01*

-X313841Y180986D01*

-X314466Y180727D01*

-X315124Y180569D01*

-X315799Y180516D01*

-X316474Y180569D01*

-X317132Y180727D01*

-X317757Y180986D01*

-X318334Y181339D01*

-X318849Y181779D01*

-X319289Y182294D01*

-X319642Y182871D01*

-X319901Y183496D01*

-X320059Y184154D01*

-X320099Y184829D01*

-X320059Y185504D01*

-X319901Y186162D01*

-X319642Y186787D01*

-X319289Y187364D01*

-X318849Y187879D01*

-X318334Y188319D01*

-X317757Y188672D01*

-X317132Y188931D01*

-X316474Y189089D01*

-X315799Y189142D01*

-X315124Y189089D01*

-X314466Y188931D01*

-X313841Y188672D01*

-X313264Y188319D01*

-X312749Y187879D01*

-X312309Y187364D01*

-X312154Y187110D01*

-Y244256D01*

-X315926Y244264D01*

-X316156Y244319D01*

-X316374Y244409D01*

-X316575Y244533D01*

-X316755Y244686D01*

-X316908Y244866D01*

-X317032Y245067D01*

-X317122Y245285D01*

-X317177Y245515D01*

-X317191Y245750D01*

-X317177Y252485D01*

-X317122Y252715D01*

-X317032Y252933D01*

-X316908Y253134D01*

-X316755Y253314D01*

-X316575Y253467D01*

-X316374Y253591D01*

-X316156Y253681D01*

-X315926Y253736D01*

-X315691Y253750D01*

-X312154Y253743D01*

-Y292984D01*

-X312444Y293007D01*

-X312757Y293082D01*

-X313056Y293206D01*

-X313331Y293374D01*

-X313576Y293584D01*

-X313786Y293829D01*

-X313954Y294104D01*

-X314078Y294403D01*

-X314153Y294716D01*

-X314172Y295038D01*

-X314153Y295360D01*

-X314078Y295673D01*

-X313954Y295972D01*

-X313786Y296247D01*

-X313576Y296492D01*

-X313331Y296702D01*

-X313056Y296870D01*

-X312757Y296994D01*

-X312444Y297069D01*

-X312154Y297092D01*

-Y298100D01*

-X312157Y298100D01*

-X312479Y298125D01*

-X312792Y298200D01*

-X313091Y298324D01*

-X313366Y298492D01*

-X313611Y298702D01*

-X313821Y298947D01*

-X313989Y299222D01*

-X314113Y299521D01*

-X314188Y299834D01*

-X314207Y300156D01*

-X314188Y300478D01*

-X314113Y300791D01*

-X313989Y301090D01*

-X313821Y301365D01*

-X313611Y301610D01*

-X313366Y301820D01*

-X313091Y301988D01*

-X312792Y302112D01*

-X312479Y302187D01*

-X312157Y302212D01*

-X312154Y302212D01*

-Y325966D01*

-X313932Y325539D01*

-X315799Y325392D01*

-X317666Y325539D01*

-X319488Y325977D01*

-X321218Y326693D01*

-X322815Y327672D01*

-X324240Y328888D01*

-X325456Y330313D01*

-X325792Y330862D01*

-Y252384D01*

-X325242Y252855D01*

-X324604Y253245D01*

-X323913Y253531D01*

-X323186Y253706D01*

-X322441Y253765D01*

-X321696Y253706D01*

-X320969Y253531D01*

-X320278Y253245D01*

-X319640Y252855D01*

-X319072Y252369D01*

-X318586Y251801D01*

-X318196Y251163D01*

-X317910Y250472D01*

-X317735Y249745D01*

-X317676Y249000D01*

-X317735Y248255D01*

-X317910Y247528D01*

-X318196Y246837D01*

-X318586Y246199D01*

-X319072Y245631D01*

-X319640Y245145D01*

-X320278Y244755D01*

-X320969Y244469D01*

-X321696Y244294D01*

-X322441Y244235D01*

-X323186Y244294D01*

-X323913Y244469D01*

-X324604Y244755D01*

-X325242Y245145D01*

-X325792Y245616D01*

-Y189142D01*

-X325124Y189089D01*

-X324466Y188931D01*

-X323841Y188672D01*

-X323264Y188319D01*

-X322749Y187879D01*

-X322309Y187364D01*

-X321956Y186787D01*

-X321697Y186162D01*

-X321539Y185504D01*

-X321486Y184829D01*

-X321539Y184154D01*

-X321697Y183496D01*

-X321956Y182871D01*

-X322309Y182294D01*

-X322749Y181779D01*

-X323264Y181339D01*

-X323841Y180986D01*

-X324466Y180727D01*

-X325124Y180569D01*

-X325792Y180516D01*

-Y179142D01*

-G37*

-G36*

-X312154Y348692D02*X312110Y348681D01*

-X310380Y347965D01*

-X308783Y346986D01*

-X308351Y346617D01*

-Y361354D01*

-X308849Y361779D01*

-X309289Y362294D01*

-X309642Y362871D01*

-X309901Y363496D01*

-X310059Y364154D01*

-X310099Y364829D01*

-X310059Y365504D01*

-X309901Y366162D01*

-X309642Y366787D01*

-X309289Y367364D01*

-X308849Y367879D01*

-X308351Y368304D01*

-Y371354D01*

-X308849Y371779D01*

-X309289Y372294D01*

-X309642Y372871D01*

-X309901Y373496D01*

-X310059Y374154D01*

-X310099Y374829D01*

-X310059Y375504D01*

-X309901Y376162D01*

-X309642Y376787D01*

-X309289Y377364D01*

-X308849Y377879D01*

-X308351Y378304D01*

-Y397000D01*

-X312154D01*

-Y377110D01*

-X311956Y376787D01*

-X311697Y376162D01*

-X311539Y375504D01*

-X311486Y374829D01*

-X311539Y374154D01*

-X311697Y373496D01*

-X311956Y372871D01*

-X312154Y372548D01*

-Y367110D01*

-X311956Y366787D01*

-X311697Y366162D01*

-X311539Y365504D01*

-X311486Y364829D01*

-X311539Y364154D01*

-X311697Y363496D01*

-X311956Y362871D01*

-X312154Y362548D01*

-Y348692D01*

-G37*

-G36*

-Y253743D02*X308956Y253736D01*

-X308726Y253681D01*

-X308508Y253591D01*

-X308351Y253494D01*

-Y264539D01*

-X308550Y264491D01*

-X308872Y264466D01*

-X309194Y264491D01*

-X309507Y264566D01*

-X309806Y264690D01*

-X310081Y264858D01*

-X310326Y265068D01*

-X310536Y265313D01*

-X310704Y265588D01*

-X310828Y265887D01*

-X310903Y266200D01*

-X310922Y266522D01*

-X310903Y266844D01*

-X310828Y267157D01*

-X310704Y267456D01*

-X310536Y267731D01*

-X310326Y267976D01*

-X310081Y268186D01*

-X309806Y268354D01*

-X309507Y268478D01*

-X309194Y268553D01*

-X308872Y268578D01*

-X308550Y268553D01*

-X308351Y268505D01*

-Y270018D01*

-X308357Y270015D01*

-X308670Y269940D01*

-X308992Y269915D01*

-X309314Y269940D01*

-X309627Y270015D01*

-X309926Y270139D01*

-X310201Y270307D01*

-X310446Y270517D01*

-X310656Y270762D01*

-X310824Y271037D01*

-X310948Y271336D01*

-X311023Y271649D01*

-X311042Y271971D01*

-X311023Y272293D01*

-X310948Y272606D01*

-X310824Y272905D01*

-X310656Y273180D01*

-X310446Y273425D01*

-X310201Y273635D01*

-X309926Y273803D01*

-X309627Y273927D01*

-X309444Y273971D01*

-X309548Y274141D01*

-X309672Y274440D01*

-X309747Y274753D01*

-X309766Y275075D01*

-X309747Y275397D01*

-X309672Y275710D01*

-X309548Y276009D01*

-X309380Y276284D01*

-X309170Y276529D01*

-X308925Y276739D01*

-X308650Y276907D01*

-X308351Y277031D01*

-X308351Y277031D01*

-Y328041D01*

-X308783Y327672D01*

-X310380Y326693D01*

-X312110Y325977D01*

-X312154Y325966D01*

-Y302212D01*

-X311835Y302187D01*

-X311522Y302112D01*

-X311223Y301988D01*

-X310948Y301820D01*

-X310703Y301610D01*

-X310493Y301365D01*

-X310325Y301090D01*

-X310201Y300791D01*

-X310126Y300478D01*

-X310101Y300156D01*

-X310126Y299834D01*

-X310201Y299521D01*

-X310325Y299222D01*

-X310493Y298947D01*

-X310703Y298702D01*

-X310948Y298492D01*

-X311223Y298324D01*

-X311522Y298200D01*

-X311835Y298125D01*

-X312154Y298100D01*

-Y297092D01*

-X312122Y297094D01*

-X311800Y297069D01*

-X311487Y296994D01*

-X311188Y296870D01*

-X310913Y296702D01*

-X310668Y296492D01*

-X310458Y296247D01*

-X310290Y295972D01*

-X310166Y295673D01*

-X310091Y295360D01*

-X310066Y295038D01*

-X310091Y294716D01*

-X310166Y294403D01*

-X310290Y294104D01*

-X310458Y293829D01*

-X310668Y293584D01*

-X310913Y293374D01*

-X311188Y293206D01*

-X311487Y293082D01*

-X311800Y293007D01*

-X312122Y292982D01*

-X312154Y292984D01*

-Y253743D01*

-G37*

-G36*

-Y177110D02*X311956Y176787D01*

-X311697Y176162D01*

-X311539Y175504D01*

-X311486Y174829D01*

-X311539Y174154D01*

-X311697Y173496D01*

-X311956Y172871D01*

-X312154Y172548D01*

-Y171500D01*

-X308522D01*

-X308849Y171779D01*

-X309289Y172294D01*

-X309642Y172871D01*

-X309901Y173496D01*

-X310059Y174154D01*

-X310099Y174829D01*

-X310059Y175504D01*

-X309901Y176162D01*

-X309642Y176787D01*

-X309289Y177364D01*

-X308849Y177879D01*

-X308351Y178304D01*

-Y181354D01*

-X308849Y181779D01*

-X309289Y182294D01*

-X309642Y182871D01*

-X309901Y183496D01*

-X310059Y184154D01*

-X310099Y184829D01*

-X310059Y185504D01*

-X309901Y186162D01*

-X309642Y186787D01*

-X309289Y187364D01*

-X308849Y187879D01*

-X308351Y188304D01*

-Y244506D01*

-X308508Y244409D01*

-X308726Y244319D01*

-X308956Y244264D01*

-X309191Y244250D01*

-X312154Y244256D01*

-Y187110D01*

-X311956Y186787D01*

-X311697Y186162D01*

-X311539Y185504D01*

-X311486Y184829D01*

-X311539Y184154D01*

-X311697Y183496D01*

-X311956Y182871D01*

-X312154Y182548D01*

-Y177110D01*

-G37*

-G36*

-X303362Y209385D02*X303429Y209306D01*

-X303645Y209122D01*

-X303729Y209070D01*

-X303523Y208944D01*

-X303362Y208806D01*

-Y209385D01*

-G37*

-G36*

-Y338000D02*X303576Y338051D01*

-X303875Y338175D01*

-X303932Y338210D01*

-X303862Y337329D01*

-X304009Y335462D01*

-X304447Y333640D01*

-X305163Y331910D01*

-X306142Y330313D01*

-X307358Y328888D01*

-X308351Y328041D01*

-Y277031D01*

-X308038Y277106D01*

-X307716Y277131D01*

-X307394Y277106D01*

-X307081Y277031D01*

-X306782Y276907D01*

-X306507Y276739D01*

-X306262Y276529D01*

-X306052Y276284D01*

-X305884Y276009D01*

-X305760Y275710D01*

-X305685Y275397D01*

-X305660Y275075D01*

-X305685Y274753D01*

-X305760Y274440D01*

-X305884Y274141D01*

-X306052Y273866D01*

-X306262Y273621D01*

-X306507Y273411D01*

-X306782Y273243D01*

-X307081Y273119D01*

-X307264Y273075D01*

-X307160Y272905D01*

-X307036Y272606D01*

-X306961Y272293D01*

-X306936Y271971D01*

-X306961Y271649D01*

-X307036Y271336D01*

-X307160Y271037D01*

-X307328Y270762D01*

-X307538Y270517D01*

-X307783Y270307D01*

-X308058Y270139D01*

-X308351Y270018D01*

-Y268505D01*

-X308237Y268478D01*

-X307938Y268354D01*

-X307663Y268186D01*

-X307418Y267976D01*

-X307208Y267731D01*

-X307040Y267456D01*

-X306916Y267157D01*

-X306841Y266844D01*

-X306816Y266522D01*

-X306841Y266200D01*

-X306916Y265887D01*

-X307040Y265588D01*

-X307208Y265313D01*

-X307418Y265068D01*

-X307663Y264858D01*

-X307938Y264690D01*

-X308237Y264566D01*

-X308351Y264539D01*

-Y253494D01*

-X308307Y253467D01*

-X308127Y253314D01*

-X307974Y253134D01*

-X307850Y252933D01*

-X307760Y252715D01*

-X307705Y252485D01*

-X307691Y252250D01*

-X307705Y245515D01*

-X307760Y245285D01*

-X307850Y245067D01*

-X307974Y244866D01*

-X308127Y244686D01*

-X308307Y244533D01*

-X308351Y244506D01*

-Y188304D01*

-X308334Y188319D01*

-X307757Y188672D01*

-X307132Y188931D01*

-X306474Y189089D01*

-X305799Y189142D01*

-X305124Y189089D01*

-X304466Y188931D01*

-X303841Y188672D01*

-X303362Y188379D01*

-Y206160D01*

-X303523Y206022D01*

-X303764Y205874D01*

-X304026Y205766D01*

-X304105Y205747D01*

-X304003Y205660D01*

-X303819Y205444D01*

-X303671Y205203D01*

-X303563Y204941D01*

-X303497Y204665D01*

-X303474Y204383D01*

-X303497Y204101D01*

-X303563Y203825D01*

-X303671Y203563D01*

-X303819Y203322D01*

-X304003Y203106D01*

-X304219Y202922D01*

-X304460Y202774D01*

-X304722Y202666D01*

-X304998Y202600D01*

-X305280Y202577D01*

-X305562Y202600D01*

-X305838Y202666D01*

-X306100Y202774D01*

-X306341Y202922D01*

-X306557Y203106D01*

-X306741Y203322D01*

-X306889Y203563D01*

-X306997Y203825D01*

-X307063Y204101D01*

-X307080Y204383D01*

-X307063Y204665D01*

-X306997Y204941D01*

-X306889Y205203D01*

-X306741Y205444D01*

-X306557Y205660D01*

-X306341Y205844D01*

-X306100Y205992D01*

-X305838Y206100D01*

-X305759Y206119D01*

-X305861Y206206D01*

-X306045Y206422D01*

-X306193Y206663D01*

-X306301Y206925D01*

-X306367Y207201D01*

-X306384Y207483D01*

-X306367Y207765D01*

-X306301Y208041D01*

-X306193Y208303D01*

-X306045Y208544D01*

-X305861Y208760D01*

-X305645Y208944D01*

-X305561Y208996D01*

-X305767Y209122D01*

-X305983Y209306D01*

-X306167Y209522D01*

-X306315Y209763D01*

-X306423Y210025D01*

-X306489Y210301D01*

-X306506Y210583D01*

-X306489Y210865D01*

-X306423Y211141D01*

-X306315Y211403D01*

-X306167Y211644D01*

-X305983Y211860D01*

-X305767Y212044D01*

-X305526Y212192D01*

-X305264Y212300D01*

-X304988Y212366D01*

-X304706Y212389D01*

-X304424Y212366D01*

-X304148Y212300D01*

-X303886Y212192D01*

-X303645Y212044D01*

-X303429Y211860D01*

-X303362Y211781D01*

-Y327944D01*

-X303365Y327944D01*

-X303687Y327969D01*

-X304000Y328044D01*

-X304299Y328168D01*

-X304574Y328336D01*

-X304819Y328546D01*

-X305029Y328791D01*

-X305197Y329066D01*

-X305321Y329365D01*

-X305396Y329678D01*

-X305415Y330000D01*

-X305396Y330322D01*

-X305321Y330635D01*

-X305197Y330934D01*

-X305029Y331209D01*

-X304819Y331454D01*

-X304574Y331664D01*

-X304299Y331832D01*

-X304000Y331956D01*

-X303687Y332031D01*

-X303365Y332056D01*

-X303362Y332056D01*

-Y338000D01*

-G37*

-G36*

-Y361279D02*X303841Y360986D01*

-X304466Y360727D01*

-X305124Y360569D01*

-X305799Y360516D01*

-X306474Y360569D01*

-X307132Y360727D01*

-X307757Y360986D01*

-X308334Y361339D01*

-X308351Y361354D01*

-Y346617D01*

-X307358Y345770D01*

-X306142Y344345D01*

-X305163Y342748D01*

-X304553Y341276D01*

-X304395Y341461D01*

-X304150Y341671D01*

-X303875Y341839D01*

-X303576Y341963D01*

-X303362Y342014D01*

-Y361279D01*

-G37*

-G36*

-Y371279D02*X303841Y370986D01*

-X304466Y370727D01*

-X305124Y370569D01*

-X305799Y370516D01*

-X306474Y370569D01*

-X307132Y370727D01*

-X307757Y370986D01*

-X308334Y371339D01*

-X308351Y371354D01*

-Y368304D01*

-X308334Y368319D01*

-X307757Y368672D01*

-X307132Y368931D01*

-X306474Y369089D01*

-X305799Y369142D01*

-X305124Y369089D01*

-X304466Y368931D01*

-X303841Y368672D01*

-X303362Y368379D01*

-Y371279D01*

-G37*

-G36*

-Y397000D02*X308351D01*

-Y378304D01*

-X308334Y378319D01*

-X307757Y378672D01*

-X307132Y378931D01*

-X306474Y379089D01*

-X305799Y379142D01*

-X305124Y379089D01*

-X304466Y378931D01*

-X303841Y378672D01*

-X303362Y378379D01*

-Y397000D01*

-G37*

-G36*

-X308351Y178304D02*X308334Y178319D01*

-X307757Y178672D01*

-X307132Y178931D01*

-X306474Y179089D01*

-X305799Y179142D01*

-X305124Y179089D01*

-X304466Y178931D01*

-X303841Y178672D01*

-X303362Y178379D01*

-Y181279D01*

-X303841Y180986D01*

-X304466Y180727D01*

-X305124Y180569D01*

-X305799Y180516D01*

-X306474Y180569D01*

-X307132Y180727D01*

-X307757Y180986D01*

-X308334Y181339D01*

-X308351Y181354D01*

-Y178304D01*

-G37*

-G36*

-X303362Y178379D02*X303264Y178319D01*

-X302749Y177879D01*

-X302309Y177364D01*

-X301956Y176787D01*

-X301697Y176162D01*

-X301539Y175504D01*

-X301486Y174829D01*

-X301539Y174154D01*

-X301697Y173496D01*

-X301956Y172871D01*

-X302309Y172294D01*

-X302749Y171779D01*

-X303076Y171500D01*

-X298522D01*

-X298849Y171779D01*

-X299289Y172294D01*

-X299642Y172871D01*

-X299901Y173496D01*

-X300059Y174154D01*

-X300099Y174829D01*

-X300059Y175504D01*

-X299901Y176162D01*

-X299642Y176787D01*

-X299289Y177364D01*

-X298849Y177879D01*

-X298334Y178319D01*

-X297757Y178672D01*

-X297132Y178931D01*

-X296776Y179017D01*

-Y180641D01*

-X297132Y180727D01*

-X297757Y180986D01*

-X298334Y181339D01*

-X298849Y181779D01*

-X299289Y182294D01*

-X299642Y182871D01*

-X299901Y183496D01*

-X300059Y184154D01*

-X300099Y184829D01*

-X300059Y185504D01*

-X299901Y186162D01*

-X299642Y186787D01*

-X299289Y187364D01*

-X298849Y187879D01*

-X298334Y188319D01*

-X297757Y188672D01*

-X297132Y188931D01*

-X296776Y189017D01*

-Y241757D01*

-X296871Y241796D01*

-X297146Y241964D01*

-X297391Y242174D01*

-X297601Y242419D01*

-X297769Y242694D01*

-X297893Y242993D01*

-X297968Y243306D01*

-X297987Y243628D01*

-X297968Y243950D01*

-X297893Y244263D01*

-X297769Y244562D01*

-X297601Y244837D01*

-X297391Y245082D01*

-X297146Y245292D01*

-X296871Y245460D01*

-X296776Y245499D01*

-Y254175D01*

-X297049Y254196D01*

-X297362Y254271D01*

-X297661Y254395D01*

-X297936Y254563D01*

-X298181Y254773D01*

-X298391Y255018D01*

-X298559Y255293D01*

-X298683Y255592D01*

-X298758Y255905D01*

-X298777Y256227D01*

-X298758Y256549D01*

-X298683Y256862D01*

-X298559Y257161D01*

-X298391Y257436D01*

-X298181Y257681D01*

-X297936Y257891D01*

-X297661Y258059D01*

-X297362Y258183D01*

-X297049Y258258D01*

-X296776Y258279D01*

-Y302907D01*

-X296779Y302907D01*

-X297101Y302932D01*

-X297414Y303007D01*

-X297713Y303131D01*

-X297988Y303299D01*

-X298233Y303509D01*

-X298443Y303754D01*

-X298611Y304029D01*

-X298735Y304328D01*

-X298810Y304641D01*

-X298829Y304963D01*

-X298810Y305285D01*

-X298735Y305598D01*

-X298611Y305897D01*

-X298443Y306172D01*

-X298233Y306417D01*

-X297988Y306627D01*

-X297713Y306795D01*

-X297414Y306919D01*

-X297101Y306994D01*

-X296779Y307019D01*

-X296776Y307019D01*

-Y360641D01*

-X297132Y360727D01*

-X297757Y360986D01*

-X298334Y361339D01*

-X298849Y361779D01*

-X299289Y362294D01*

-X299642Y362871D01*

-X299901Y363496D01*

-X300059Y364154D01*

-X300099Y364829D01*

-X300059Y365504D01*

-X299901Y366162D01*

-X299642Y366787D01*

-X299289Y367364D01*

-X298849Y367879D01*

-X298334Y368319D01*

-X297757Y368672D01*

-X297132Y368931D01*

-X296776Y369017D01*

-Y370641D01*

-X297132Y370727D01*

-X297757Y370986D01*

-X298334Y371339D01*

-X298849Y371779D01*

-X299289Y372294D01*

-X299642Y372871D01*

-X299901Y373496D01*

-X300059Y374154D01*

-X300099Y374829D01*

-X300059Y375504D01*

-X299901Y376162D01*

-X299642Y376787D01*

-X299289Y377364D01*

-X298849Y377879D01*

-X298334Y378319D01*

-X297757Y378672D01*

-X297132Y378931D01*

-X296776Y379017D01*

-Y397000D01*

-X303362D01*

-Y378379D01*

-X303264Y378319D01*

-X302749Y377879D01*

-X302309Y377364D01*

-X301956Y376787D01*

-X301697Y376162D01*

-X301539Y375504D01*

-X301486Y374829D01*

-X301539Y374154D01*

-X301697Y373496D01*

-X301956Y372871D01*

-X302309Y372294D01*

-X302749Y371779D01*

-X303264Y371339D01*

-X303362Y371279D01*

-Y368379D01*

-X303264Y368319D01*

-X302749Y367879D01*

-X302309Y367364D01*

-X301956Y366787D01*

-X301697Y366162D01*

-X301539Y365504D01*

-X301486Y364829D01*

-X301539Y364154D01*

-X301697Y363496D01*

-X301956Y362871D01*

-X302309Y362294D01*

-X302749Y361779D01*

-X303264Y361339D01*

-X303362Y361279D01*

-Y342014D01*

-X303263Y342038D01*

-X302941Y342063D01*

-X302619Y342038D01*

-X302306Y341963D01*

-X302007Y341839D01*

-X301732Y341671D01*

-X301487Y341461D01*

-X301277Y341216D01*

-X301109Y340941D01*

-X300985Y340642D01*

-X300910Y340329D01*

-X300885Y340007D01*

-X300910Y339685D01*

-X300985Y339372D01*

-X301109Y339073D01*

-X301277Y338798D01*

-X301487Y338553D01*

-X301732Y338343D01*

-X302007Y338175D01*

-X302306Y338051D01*

-X302619Y337976D01*

-X302941Y337951D01*

-X303263Y337976D01*

-X303362Y338000D01*

-Y332056D01*

-X303043Y332031D01*

-X302730Y331956D01*

-X302431Y331832D01*

-X302156Y331664D01*

-X301911Y331454D01*

-X301701Y331209D01*

-X301533Y330934D01*

-X301409Y330635D01*

-X301334Y330322D01*

-X301309Y330000D01*

-X301334Y329678D01*

-X301409Y329365D01*

-X301533Y329066D01*

-X301701Y328791D01*

-X301911Y328546D01*

-X302156Y328336D01*

-X302431Y328168D01*

-X302730Y328044D01*

-X303043Y327969D01*

-X303362Y327944D01*

-Y211781D01*

-X303245Y211644D01*

-X303097Y211403D01*

-X302989Y211141D01*

-X302923Y210865D01*

-X302900Y210583D01*

-X302923Y210301D01*

-X302989Y210025D01*

-X303097Y209763D01*

-X303245Y209522D01*

-X303362Y209385D01*

-Y208806D01*

-X303307Y208760D01*

-X303123Y208544D01*

-X302975Y208303D01*

-X302867Y208041D01*

-X302801Y207765D01*

-X302778Y207483D01*

-X302801Y207201D01*

-X302867Y206925D01*

-X302975Y206663D01*

-X303123Y206422D01*

-X303307Y206206D01*

-X303362Y206160D01*

-Y188379D01*

-X303264Y188319D01*

-X302749Y187879D01*

-X302309Y187364D01*

-X301956Y186787D01*

-X301697Y186162D01*

-X301539Y185504D01*

-X301486Y184829D01*

-X301539Y184154D01*

-X301697Y183496D01*

-X301956Y182871D01*

-X302309Y182294D01*

-X302749Y181779D01*

-X303264Y181339D01*

-X303362Y181279D01*

-Y178379D01*

-G37*

-G36*

-X296776Y379017D02*X296474Y379089D01*

-X295799Y379142D01*

-X295124Y379089D01*

-X294466Y378931D01*

-X293899Y378696D01*

-Y397000D01*

-X296776D01*

-Y379017D01*

-G37*

-G36*

-Y369017D02*X296474Y369089D01*

-X295799Y369142D01*

-X295124Y369089D01*

-X294466Y368931D01*

-X293899Y368696D01*

-Y370962D01*

-X294466Y370727D01*

-X295124Y370569D01*

-X295799Y370516D01*

-X296474Y370569D01*

-X296776Y370641D01*

-Y369017D01*

-G37*

-G36*

-Y245499D02*X296572Y245584D01*

-X296259Y245659D01*

-X295937Y245684D01*

-X295615Y245659D01*

-X295302Y245584D01*

-X295003Y245460D01*

-X294728Y245292D01*

-X294483Y245082D01*

-X294273Y244837D01*

-X294105Y244562D01*

-X293981Y244263D01*

-X293906Y243950D01*

-X293899Y243859D01*

-Y280207D01*

-X293902Y280207D01*

-X294224Y280232D01*

-X294537Y280307D01*

-X294836Y280431D01*

-X295111Y280599D01*

-X295356Y280809D01*

-X295566Y281054D01*

-X295734Y281329D01*

-X295858Y281628D01*

-X295933Y281941D01*

-X295952Y282263D01*

-X295933Y282585D01*

-X295858Y282898D01*

-X295734Y283197D01*

-X295566Y283472D01*

-X295356Y283717D01*

-X295111Y283927D01*

-X294836Y284095D01*

-X294537Y284219D01*

-X294224Y284294D01*

-X293902Y284319D01*

-X293899Y284319D01*

-Y360962D01*

-X294466Y360727D01*

-X295124Y360569D01*

-X295799Y360516D01*

-X296474Y360569D01*

-X296776Y360641D01*

-Y307019D01*

-X296457Y306994D01*

-X296144Y306919D01*

-X295845Y306795D01*

-X295570Y306627D01*

-X295325Y306417D01*

-X295115Y306172D01*

-X294947Y305897D01*

-X294823Y305598D01*

-X294748Y305285D01*

-X294723Y304963D01*

-X294748Y304641D01*

-X294823Y304328D01*

-X294947Y304029D01*

-X295115Y303754D01*

-X295325Y303509D01*

-X295570Y303299D01*

-X295845Y303131D01*

-X296144Y303007D01*

-X296457Y302932D01*

-X296776Y302907D01*

-Y258279D01*

-X296727Y258283D01*

-X296405Y258258D01*

-X296092Y258183D01*

-X295793Y258059D01*

-X295518Y257891D01*

-X295273Y257681D01*

-X295063Y257436D01*

-X294895Y257161D01*

-X294771Y256862D01*

-X294696Y256549D01*

-X294671Y256227D01*

-X294696Y255905D01*

-X294771Y255592D01*

-X294895Y255293D01*

-X295063Y255018D01*

-X295273Y254773D01*

-X295518Y254563D01*

-X295793Y254395D01*

-X296092Y254271D01*

-X296405Y254196D01*

-X296727Y254171D01*

-X296776Y254175D01*

-Y245499D01*

-G37*

-G36*

-Y189017D02*X296474Y189089D01*

-X295799Y189142D01*

-X295124Y189089D01*

-X294466Y188931D01*

-X293899Y188696D01*

-Y243397D01*

-X293906Y243306D01*

-X293981Y242993D01*

-X294105Y242694D01*

-X294273Y242419D01*

-X294483Y242174D01*

-X294728Y241964D01*

-X295003Y241796D01*

-X295302Y241672D01*

-X295615Y241597D01*

-X295937Y241572D01*

-X296259Y241597D01*

-X296572Y241672D01*

-X296776Y241757D01*

-Y189017D01*

-G37*

-G36*

-Y179017D02*X296474Y179089D01*

-X295799Y179142D01*

-X295124Y179089D01*

-X294466Y178931D01*

-X293899Y178696D01*

-Y180962D01*

-X294466Y180727D01*

-X295124Y180569D01*

-X295799Y180516D01*

-X296474Y180569D01*

-X296776Y180641D01*

-Y179017D01*

-G37*

-G36*

-X293899Y178696D02*X293841Y178672D01*

-X293264Y178319D01*

-X292749Y177879D01*

-X292309Y177364D01*

-X291956Y176787D01*

-X291697Y176162D01*

-X291539Y175504D01*

-X291486Y174829D01*

-X291539Y174154D01*

-X291697Y173496D01*

-X291956Y172871D01*

-X292309Y172294D01*

-X292749Y171779D01*

-X293076Y171500D01*

-X288522D01*

-X288849Y171779D01*

-X289289Y172294D01*

-X289642Y172871D01*

-X289901Y173496D01*

-X290059Y174154D01*

-X290099Y174829D01*

-X290059Y175504D01*

-X289901Y176162D01*

-X289642Y176787D01*

-X289289Y177364D01*

-X288849Y177879D01*

-X288334Y178319D01*

-X287914Y178576D01*

-Y181082D01*

-X288334Y181339D01*

-X288849Y181779D01*

-X289289Y182294D01*

-X289642Y182871D01*

-X289901Y183496D01*

-X290059Y184154D01*

-X290099Y184829D01*

-X290059Y185504D01*

-X289901Y186162D01*

-X289642Y186787D01*

-X289289Y187364D01*

-X288849Y187879D01*

-X288334Y188319D01*

-X287914Y188576D01*

-Y305773D01*

-X287917Y305773D01*

-X288239Y305798D01*

-X288552Y305873D01*

-X288851Y305997D01*

-X289126Y306165D01*

-X289371Y306375D01*

-X289581Y306620D01*

-X289749Y306895D01*

-X289873Y307194D01*

-X289948Y307507D01*

-X289967Y307829D01*

-X289948Y308151D01*

-X289873Y308464D01*

-X289749Y308763D01*

-X289581Y309038D01*

-X289371Y309283D01*

-X289126Y309493D01*

-X288851Y309661D01*

-X288552Y309785D01*

-X288239Y309860D01*

-X287917Y309885D01*

-X287914Y309885D01*

-Y361082D01*

-X288334Y361339D01*

-X288849Y361779D01*

-X289289Y362294D01*

-X289642Y362871D01*

-X289901Y363496D01*

-X290059Y364154D01*

-X290099Y364829D01*

-X290059Y365504D01*

-X289901Y366162D01*

-X289642Y366787D01*

-X289289Y367364D01*

-X288849Y367879D01*

-X288334Y368319D01*

-X287914Y368576D01*

-Y371082D01*

-X288334Y371339D01*

-X288849Y371779D01*

-X289289Y372294D01*

-X289642Y372871D01*

-X289901Y373496D01*

-X290059Y374154D01*

-X290099Y374829D01*

-X290059Y375504D01*

-X289901Y376162D01*

-X289642Y376787D01*

-X289289Y377364D01*

-X288849Y377879D01*

-X288334Y378319D01*

-X287914Y378576D01*

-Y397000D01*

-X293899D01*

-Y378696D01*

-X293841Y378672D01*

-X293264Y378319D01*

-X292749Y377879D01*

-X292309Y377364D01*

-X291956Y376787D01*

-X291697Y376162D01*

-X291539Y375504D01*

-X291486Y374829D01*

-X291539Y374154D01*

-X291697Y373496D01*

-X291956Y372871D01*

-X292309Y372294D01*

-X292749Y371779D01*

-X293264Y371339D01*

-X293841Y370986D01*

-X293899Y370962D01*

-Y368696D01*

-X293841Y368672D01*

-X293264Y368319D01*

-X292749Y367879D01*

-X292309Y367364D01*

-X291956Y366787D01*

-X291697Y366162D01*

-X291539Y365504D01*

-X291486Y364829D01*

-X291539Y364154D01*

-X291697Y363496D01*

-X291956Y362871D01*

-X292309Y362294D01*

-X292749Y361779D01*

-X293264Y361339D01*

-X293841Y360986D01*

-X293899Y360962D01*

-Y284319D01*

-X293580Y284294D01*

-X293267Y284219D01*

-X292968Y284095D01*

-X292693Y283927D01*

-X292448Y283717D01*

-X292238Y283472D01*

-X292070Y283197D01*

-X291946Y282898D01*

-X291871Y282585D01*

-X291846Y282263D01*

-X291871Y281941D01*

-X291946Y281628D01*

-X292070Y281329D01*

-X292238Y281054D01*

-X292448Y280809D01*

-X292693Y280599D01*

-X292968Y280431D01*

-X293267Y280307D01*

-X293580Y280232D01*

-X293899Y280207D01*

-Y243859D01*

-X293881Y243628D01*

-X293899Y243397D01*

-Y188696D01*

-X293841Y188672D01*

-X293264Y188319D01*

-X292749Y187879D01*

-X292309Y187364D01*

-X291956Y186787D01*

-X291697Y186162D01*

-X291539Y185504D01*

-X291486Y184829D01*

-X291539Y184154D01*

-X291697Y183496D01*

-X291956Y182871D01*

-X292309Y182294D01*

-X292749Y181779D01*

-X293264Y181339D01*

-X293841Y180986D01*

-X293899Y180962D01*

-Y178696D01*

-G37*

-G36*

-X285427Y360545D02*X285799Y360516D01*

-X286474Y360569D01*

-X287132Y360727D01*

-X287757Y360986D01*

-X287914Y361082D01*

-Y309885D01*

-X287595Y309860D01*

-X287282Y309785D01*

-X286983Y309661D01*

-X286708Y309493D01*

-X286463Y309283D01*

-X286253Y309038D01*

-X286085Y308763D01*

-X285961Y308464D01*

-X285886Y308151D01*

-X285861Y307829D01*

-X285886Y307507D01*

-X285961Y307194D01*

-X286085Y306895D01*

-X286253Y306620D01*

-X286463Y306375D01*

-X286708Y306165D01*

-X286983Y305997D01*

-X287282Y305873D01*

-X287595Y305798D01*

-X287914Y305773D01*

-Y188576D01*

-X287757Y188672D01*

-X287132Y188931D01*

-X286474Y189089D01*

-X285799Y189142D01*

-X285427Y189113D01*

-Y322944D01*

-X285430Y322944D01*

-X285752Y322969D01*

-X286065Y323044D01*

-X286364Y323168D01*

-X286639Y323336D01*

-X286884Y323546D01*

-X287094Y323791D01*

-X287262Y324066D01*

-X287386Y324365D01*

-X287461Y324678D01*

-X287480Y325000D01*

-X287461Y325322D01*

-X287386Y325635D01*

-X287262Y325934D01*

-X287094Y326209D01*

-X286884Y326454D01*

-X286639Y326664D01*

-X286364Y326832D01*

-X286065Y326956D01*

-X285752Y327031D01*

-X285430Y327056D01*

-X285427Y327056D01*

-Y360545D01*

-G37*

-G36*

-Y370545D02*X285799Y370516D01*

-X286474Y370569D01*

-X287132Y370727D01*

-X287757Y370986D01*

-X287914Y371082D01*

-Y368576D01*

-X287757Y368672D01*

-X287132Y368931D01*

-X286474Y369089D01*

-X285799Y369142D01*

-X285427Y369113D01*

-Y370545D01*

-G37*

-G36*

-Y397000D02*X287914D01*

-Y378576D01*

-X287757Y378672D01*

-X287132Y378931D01*

-X286474Y379089D01*

-X285799Y379142D01*

-X285427Y379113D01*

-Y397000D01*

-G37*

-G36*

-X287914Y178576D02*X287757Y178672D01*

-X287132Y178931D01*

-X286474Y179089D01*

-X285799Y179142D01*

-X285427Y179113D01*

-Y180545D01*

-X285799Y180516D01*

-X286474Y180569D01*

-X287132Y180727D01*

-X287757Y180986D01*

-X287914Y181082D01*

-Y178576D01*

-G37*

-G36*

-X262747Y171782D02*X262749Y171779D01*

-X263076Y171500D01*

-X262747D01*

-Y171782D01*

-G37*

-G36*

-X285427Y179113D02*X285124Y179089D01*

-X284466Y178931D01*

-X283841Y178672D01*

-X283264Y178319D01*

-X282749Y177879D01*

-X282309Y177364D01*

-X281956Y176787D01*

-X281697Y176162D01*

-X281539Y175504D01*

-X281486Y174829D01*

-X281539Y174154D01*

-X281697Y173496D01*

-X281956Y172871D01*

-X282309Y172294D01*

-X282749Y171779D01*

-X283076Y171500D01*

-X278522D01*

-X278849Y171779D01*

-X279289Y172294D01*

-X279642Y172871D01*

-X279901Y173496D01*

-X280059Y174154D01*

-X280099Y174829D01*

-X280059Y175504D01*

-X279901Y176162D01*

-X279642Y176787D01*

-X279289Y177364D01*

-X278849Y177879D01*

-X278334Y178319D01*

-X278222Y178387D01*

-Y181271D01*

-X278334Y181339D01*

-X278849Y181779D01*

-X279289Y182294D01*

-X279642Y182871D01*

-X279901Y183496D01*

-X280059Y184154D01*

-X280099Y184829D01*

-X280059Y185504D01*

-X279901Y186162D01*

-X279642Y186787D01*

-X279289Y187364D01*

-X278849Y187879D01*

-X278334Y188319D01*

-X278222Y188387D01*

-Y277546D01*

-X278225Y277546D01*

-X278547Y277571D01*

-X278860Y277646D01*

-X279159Y277770D01*

-X279434Y277938D01*

-X279679Y278148D01*

-X279889Y278393D01*

-X280057Y278668D01*

-X280181Y278967D01*

-X280256Y279280D01*

-X280275Y279602D01*

-X280256Y279924D01*

-X280181Y280237D01*

-X280057Y280536D01*

-X279889Y280811D01*

-X279679Y281056D01*

-X279434Y281266D01*

-X279159Y281434D01*

-X278860Y281558D01*

-X278547Y281633D01*

-X278225Y281658D01*

-X278222Y281658D01*

-Y283674D01*

-X278380Y283539D01*

-X278621Y283391D01*

-X278883Y283283D01*

-X279159Y283217D01*

-X279441Y283194D01*

-X279723Y283217D01*

-X279999Y283283D01*

-X280261Y283391D01*

-X280502Y283539D01*

-X280718Y283723D01*

-X280902Y283939D01*

-X281050Y284180D01*

-X281158Y284442D01*

-X281224Y284718D01*

-X281241Y285000D01*

-X281224Y285282D01*

-X281158Y285558D01*

-X281050Y285820D01*

-X280902Y286061D01*

-X280718Y286277D01*

-X280502Y286461D01*

-X280261Y286609D01*

-X279999Y286717D01*

-X279723Y286783D01*

-X279441Y286806D01*

-X279159Y286783D01*

-X278883Y286717D01*

-X278621Y286609D01*

-X278380Y286461D01*

-X278222Y286326D01*

-Y296557D01*

-X278529Y296581D01*

-X278842Y296656D01*

-X279141Y296780D01*

-X279416Y296948D01*

-X279661Y297158D01*

-X279871Y297403D01*

-X280039Y297678D01*

-X280163Y297977D01*

-X280238Y298290D01*

-X280257Y298612D01*

-X280238Y298934D01*

-X280163Y299247D01*

-X280039Y299546D01*

-X279871Y299821D01*

-X279661Y300066D01*

-X279416Y300276D01*

-X279141Y300444D01*

-X278842Y300568D01*

-X278529Y300643D01*

-X278222Y300667D01*

-Y306457D01*

-X278383Y306555D01*

-X278628Y306765D01*

-X278838Y307010D01*

-X279006Y307285D01*

-X279130Y307584D01*

-X279205Y307897D01*

-X279224Y308219D01*

-X279205Y308541D01*

-X279130Y308854D01*

-X279006Y309153D01*

-X278838Y309428D01*

-X278628Y309673D01*

-X278383Y309883D01*

-X278222Y309981D01*

-Y345601D01*

-X278383Y345668D01*

-X278658Y345836D01*

-X278903Y346046D01*

-X279113Y346291D01*

-X279281Y346566D01*

-X279405Y346865D01*

-X279480Y347178D01*

-X279499Y347500D01*

-X279480Y347822D01*

-X279405Y348135D01*

-X279281Y348434D01*

-X279113Y348709D01*

-X278903Y348954D01*

-X278658Y349164D01*

-X278383Y349332D01*

-X278222Y349399D01*

-Y361271D01*

-X278334Y361339D01*

-X278849Y361779D01*

-X279289Y362294D01*

-X279642Y362871D01*

-X279901Y363496D01*

-X280059Y364154D01*

-X280099Y364829D01*

-X280059Y365504D01*

-X279901Y366162D01*

-X279642Y366787D01*

-X279289Y367364D01*

-X278849Y367879D01*

-X278334Y368319D01*

-X278222Y368387D01*

-Y371271D01*

-X278334Y371339D01*

-X278849Y371779D01*

-X279289Y372294D01*

-X279642Y372871D01*

-X279901Y373496D01*

-X280059Y374154D01*

-X280099Y374829D01*

-X280059Y375504D01*

-X279901Y376162D01*

-X279642Y376787D01*

-X279289Y377364D01*

-X278849Y377879D01*

-X278334Y378319D01*

-X278222Y378387D01*

-Y397000D01*

-X285427D01*

-Y379113D01*

-X285124Y379089D01*

-X284466Y378931D01*

-X283841Y378672D01*

-X283264Y378319D01*

-X282749Y377879D01*

-X282309Y377364D01*

-X281956Y376787D01*

-X281697Y376162D01*

-X281539Y375504D01*

-X281486Y374829D01*

-X281539Y374154D01*

-X281697Y373496D01*

-X281956Y372871D01*

-X282309Y372294D01*

-X282749Y371779D01*

-X283264Y371339D01*

-X283841Y370986D01*

-X284466Y370727D01*

-X285124Y370569D01*

-X285427Y370545D01*

-Y369113D01*

-X285124Y369089D01*

-X284466Y368931D01*

-X283841Y368672D01*

-X283264Y368319D01*

-X282749Y367879D01*

-X282309Y367364D01*

-X281956Y366787D01*

-X281697Y366162D01*

-X281539Y365504D01*

-X281486Y364829D01*

-X281539Y364154D01*

-X281697Y363496D01*

-X281956Y362871D01*

-X282309Y362294D01*

-X282749Y361779D01*

-X283264Y361339D01*

-X283841Y360986D01*

-X284466Y360727D01*

-X285124Y360569D01*

-X285427Y360545D01*

-Y327056D01*

-X285108Y327031D01*

-X284795Y326956D01*

-X284496Y326832D01*

-X284221Y326664D01*

-X283976Y326454D01*

-X283766Y326209D01*

-X283598Y325934D01*

-X283474Y325635D01*

-X283399Y325322D01*

-X283374Y325000D01*

-X283399Y324678D01*

-X283474Y324365D01*

-X283598Y324066D01*

-X283766Y323791D01*

-X283976Y323546D01*

-X284221Y323336D01*

-X284496Y323168D01*

-X284795Y323044D01*

-X285108Y322969D01*

-X285427Y322944D01*

-Y189113D01*

-X285124Y189089D01*

-X284466Y188931D01*

-X283841Y188672D01*

-X283264Y188319D01*

-X282749Y187879D01*

-X282309Y187364D01*

-X281956Y186787D01*

-X281697Y186162D01*

-X281539Y185504D01*

-X281486Y184829D01*

-X281539Y184154D01*

-X281697Y183496D01*

-X281956Y182871D01*

-X282309Y182294D01*

-X282749Y181779D01*

-X283264Y181339D01*

-X283841Y180986D01*

-X284466Y180727D01*

-X285124Y180569D01*

-X285427Y180545D01*

-Y179113D01*

-G37*

-G36*

-X278222Y178387D02*X277757Y178672D01*

-X277132Y178931D01*

-X276474Y179089D01*

-X275799Y179142D01*

-X275124Y179089D01*

-X274466Y178931D01*

-X273841Y178672D01*

-X273264Y178319D01*

-X272749Y177879D01*

-X272309Y177364D01*

-X271956Y176787D01*

-X271697Y176162D01*

-X271539Y175504D01*

-X271486Y174829D01*

-X271539Y174154D01*

-X271697Y173496D01*

-X271956Y172871D01*

-X272309Y172294D01*

-X272749Y171779D01*

-X273076Y171500D01*

-X269438D01*

-Y172538D01*

-X269642Y172871D01*

-X269901Y173496D01*

-X270059Y174154D01*

-X270099Y174829D01*

-X270059Y175504D01*

-X269901Y176162D01*

-X269642Y176787D01*

-X269438Y177120D01*

-Y182538D01*

-X269642Y182871D01*

-X269901Y183496D01*

-X270059Y184154D01*

-X270099Y184829D01*

-X270059Y185504D01*

-X269901Y186162D01*

-X269642Y186787D01*

-X269438Y187120D01*

-Y196695D01*

-X269441Y196694D01*

-X269723Y196717D01*

-X269999Y196783D01*

-X270261Y196891D01*

-X270502Y197039D01*

-X270718Y197223D01*

-X270902Y197439D01*

-X271050Y197680D01*

-X271158Y197942D01*

-X271224Y198218D01*

-X271241Y198500D01*

-X271224Y198782D01*

-X271158Y199058D01*

-X271050Y199320D01*

-X270902Y199561D01*

-X270718Y199777D01*

-X270502Y199961D01*

-X270261Y200109D01*

-X269999Y200217D01*

-X269723Y200283D01*

-X269441Y200306D01*

-X269438Y200305D01*

-Y229770D01*

-X269659Y229717D01*

-X269941Y229694D01*

-X270223Y229717D01*

-X270499Y229783D01*

-X270761Y229891D01*

-X271002Y230039D01*

-X271218Y230223D01*

-X271402Y230439D01*

-X271550Y230680D01*

-X271658Y230942D01*

-X271724Y231218D01*

-X271741Y231500D01*

-X271724Y231782D01*

-X271658Y232058D01*

-X271550Y232320D01*

-X271402Y232561D01*

-X271218Y232777D01*

-X271002Y232961D01*

-X270761Y233109D01*

-X270499Y233217D01*

-X270223Y233283D01*

-X269941Y233306D01*

-X269659Y233283D01*

-X269438Y233230D01*

-Y296592D01*

-X269653Y296575D01*

-X269975Y296600D01*

-X270288Y296675D01*

-X270587Y296799D01*

-X270862Y296967D01*

-X271107Y297177D01*

-X271317Y297422D01*

-X271426Y297601D01*

-X271565Y297373D01*

-X271775Y297128D01*

-X272020Y296918D01*

-X272295Y296750D01*

-X272594Y296626D01*

-X272907Y296551D01*

-X273229Y296526D01*

-X273551Y296551D01*

-X273864Y296626D01*

-X274163Y296750D01*

-X274438Y296918D01*

-X274683Y297128D01*

-X274893Y297373D01*

-X275061Y297648D01*

-X275185Y297947D01*

-X275260Y298260D01*

-X275279Y298582D01*

-X275260Y298904D01*

-X275185Y299217D01*

-X275061Y299516D01*

-X274893Y299791D01*

-X274683Y300036D01*

-X274438Y300246D01*

-X274163Y300414D01*

-X273864Y300538D01*

-X273551Y300613D01*

-X273229Y300638D01*

-X272907Y300613D01*

-X272594Y300538D01*

-X272295Y300414D01*

-X272020Y300246D01*

-X271775Y300036D01*

-X271565Y299791D01*

-X271456Y299612D01*

-X271317Y299840D01*

-X271107Y300085D01*

-X270862Y300295D01*

-X270587Y300463D01*

-X270288Y300587D01*

-X269975Y300662D01*

-X269653Y300687D01*

-X269438Y300670D01*

-Y312011D01*

-X269576Y312044D01*

-X269875Y312168D01*

-X270150Y312336D01*

-X270395Y312546D01*

-X270605Y312791D01*

-X270773Y313066D01*

-X270897Y313365D01*

-X270972Y313678D01*

-X270991Y314000D01*

-X270972Y314322D01*

-X270897Y314635D01*

-X270773Y314934D01*

-X270605Y315209D01*

-X270395Y315454D01*

-X270150Y315664D01*

-X269875Y315832D01*

-X269576Y315956D01*

-X269438Y315989D01*

-Y334503D01*

-X269621Y334391D01*

-X269883Y334283D01*

-X270159Y334217D01*

-X270441Y334194D01*

-X270723Y334217D01*

-X270999Y334283D01*

-X271261Y334391D01*

-X271502Y334539D01*

-X271718Y334723D01*

-X271902Y334939D01*

-X272050Y335180D01*

-X272158Y335442D01*

-X272224Y335718D01*

-X272241Y336000D01*

-X272224Y336282D01*

-X272158Y336558D01*

-X272050Y336820D01*

-X271902Y337061D01*

-X271718Y337277D01*

-X271502Y337461D01*

-X271261Y337609D01*

-X270999Y337717D01*

-X270723Y337783D01*

-X270441Y337806D01*

-X270159Y337783D01*

-X269883Y337717D01*

-X269621Y337609D01*

-X269438Y337497D01*

-Y341003D01*

-X269621Y340891D01*

-X269883Y340783D01*

-X270159Y340717D01*

-X270441Y340694D01*

-X270723Y340717D01*

-X270999Y340783D01*

-X271261Y340891D01*

-X271502Y341039D01*

-X271718Y341223D01*

-X271902Y341439D01*

-X272050Y341680D01*

-X272158Y341942D01*

-X272224Y342218D01*

-X272241Y342500D01*

-X272224Y342782D01*

-X272158Y343058D01*

-X272050Y343320D01*

-X271902Y343561D01*

-X271718Y343777D01*

-X271502Y343961D01*

-X271261Y344109D01*

-X270999Y344217D01*

-X270723Y344283D01*

-X270441Y344306D01*

-X270159Y344283D01*

-X269883Y344217D01*

-X269621Y344109D01*

-X269438Y343997D01*

-Y348003D01*

-X269621Y347891D01*

-X269883Y347783D01*

-X270159Y347717D01*

-X270441Y347694D01*

-X270723Y347717D01*

-X270999Y347783D01*

-X271261Y347891D01*

-X271502Y348039D01*

-X271718Y348223D01*

-X271902Y348439D01*

-X272050Y348680D01*

-X272158Y348942D01*

-X272224Y349218D01*

-X272241Y349500D01*

-X272224Y349782D01*

-X272158Y350058D01*

-X272050Y350320D01*

-X271902Y350561D01*

-X271718Y350777D01*

-X271502Y350961D01*

-X271261Y351109D01*

-X270999Y351217D01*

-X270723Y351283D01*

-X270441Y351306D01*

-X270159Y351283D01*

-X269883Y351217D01*

-X269621Y351109D01*

-X269438Y350997D01*

-Y355503D01*

-X269621Y355391D01*

-X269883Y355283D01*

-X270159Y355217D01*

-X270441Y355194D01*

-X270723Y355217D01*

-X270999Y355283D01*

-X271261Y355391D01*

-X271502Y355539D01*

-X271718Y355723D01*

-X271902Y355939D01*

-X272050Y356180D01*

-X272158Y356442D01*

-X272224Y356718D01*

-X272241Y357000D01*

-X272224Y357282D01*

-X272158Y357558D01*

-X272050Y357820D01*

-X271902Y358061D01*

-X271718Y358277D01*

-X271502Y358461D01*

-X271261Y358609D01*

-X270999Y358717D01*

-X270723Y358783D01*

-X270441Y358806D01*

-X270159Y358783D01*

-X269883Y358717D01*

-X269621Y358609D01*

-X269438Y358497D01*

-Y362538D01*

-X269642Y362871D01*

-X269901Y363496D01*

-X270059Y364154D01*

-X270099Y364829D01*

-X270059Y365504D01*

-X269901Y366162D01*

-X269642Y366787D01*

-X269438Y367120D01*

-Y372538D01*

-X269642Y372871D01*

-X269901Y373496D01*

-X270059Y374154D01*

-X270099Y374829D01*

-X270059Y375504D01*

-X269901Y376162D01*

-X269642Y376787D01*

-X269438Y377120D01*

-Y397000D01*

-X278222D01*

-Y378387D01*

-X277757Y378672D01*

-X277132Y378931D01*

-X276474Y379089D01*

-X275799Y379142D01*

-X275124Y379089D01*

-X274466Y378931D01*

-X273841Y378672D01*

-X273264Y378319D01*

-X272749Y377879D01*

-X272309Y377364D01*

-X271956Y376787D01*

-X271697Y376162D01*

-X271539Y375504D01*

-X271486Y374829D01*

-X271539Y374154D01*

-X271697Y373496D01*

-X271956Y372871D01*

-X272309Y372294D01*

-X272749Y371779D01*

-X273264Y371339D01*

-X273841Y370986D01*

-X274466Y370727D01*

-X275124Y370569D01*

-X275799Y370516D01*

-X276474Y370569D01*

-X277132Y370727D01*

-X277757Y370986D01*

-X278222Y371271D01*

-Y368387D01*

-X277757Y368672D01*

-X277132Y368931D01*

-X276474Y369089D01*

-X275799Y369142D01*

-X275124Y369089D01*

-X274466Y368931D01*

-X273841Y368672D01*

-X273264Y368319D01*

-X272749Y367879D01*

-X272309Y367364D01*

-X271956Y366787D01*

-X271697Y366162D01*

-X271539Y365504D01*

-X271486Y364829D01*

-X271539Y364154D01*

-X271697Y363496D01*

-X271956Y362871D01*

-X272309Y362294D01*

-X272749Y361779D01*

-X273264Y361339D01*

-X273841Y360986D01*

-X274466Y360727D01*

-X275124Y360569D01*

-X275799Y360516D01*

-X276474Y360569D01*

-X277132Y360727D01*

-X277757Y360986D01*

-X278222Y361271D01*

-Y349399D01*

-X278084Y349456D01*

-X277771Y349531D01*

-X277449Y349556D01*

-X277127Y349531D01*

-X276814Y349456D01*

-X276515Y349332D01*

-X276240Y349164D01*

-X275995Y348954D01*

-X275785Y348709D01*

-X275617Y348434D01*

-X275493Y348135D01*

-X275418Y347822D01*

-X275393Y347500D01*

-X275418Y347178D01*

-X275493Y346865D01*

-X275617Y346566D01*

-X275785Y346291D01*

-X275995Y346046D01*

-X276240Y345836D01*

-X276515Y345668D01*

-X276814Y345544D01*

-X277127Y345469D01*

-X277449Y345444D01*

-X277771Y345469D01*

-X278084Y345544D01*

-X278222Y345601D01*

-Y309981D01*

-X278108Y310051D01*

-X277809Y310175D01*

-X277496Y310250D01*

-X277174Y310275D01*

-X276852Y310250D01*

-X276539Y310175D01*

-X276240Y310051D01*

-X275965Y309883D01*

-X275720Y309673D01*

-X275510Y309428D01*

-X275342Y309153D01*

-X275218Y308854D01*

-X275143Y308541D01*

-X275118Y308219D01*

-X275143Y307897D01*

-X275218Y307584D01*

-X275342Y307285D01*

-X275510Y307010D01*

-X275720Y306765D01*

-X275965Y306555D01*

-X276240Y306387D01*

-X276539Y306263D01*

-X276852Y306188D01*

-X277174Y306163D01*

-X277496Y306188D01*

-X277809Y306263D01*

-X278108Y306387D01*

-X278222Y306457D01*

-Y300667D01*

-X278207Y300668D01*

-X277885Y300643D01*

-X277572Y300568D01*

-X277273Y300444D01*

-X276998Y300276D01*

-X276753Y300066D01*

-X276543Y299821D01*

-X276375Y299546D01*

-X276251Y299247D01*

-X276176Y298934D01*

-X276151Y298612D01*

-X276176Y298290D01*

-X276251Y297977D01*

-X276375Y297678D01*

-X276543Y297403D01*

-X276753Y297158D01*

-X276998Y296948D01*

-X277273Y296780D01*

-X277572Y296656D01*

-X277885Y296581D01*

-X278207Y296556D01*

-X278222Y296557D01*

-Y286326D01*

-X278164Y286277D01*

-X277980Y286061D01*

-X277832Y285820D01*

-X277724Y285558D01*

-X277658Y285282D01*

-X277635Y285000D01*

-X277658Y284718D01*

-X277724Y284442D01*

-X277832Y284180D01*

-X277980Y283939D01*

-X278164Y283723D01*

-X278222Y283674D01*

-Y281658D01*

-X277903Y281633D01*

-X277590Y281558D01*

-X277291Y281434D01*

-X277016Y281266D01*

-X276771Y281056D01*

-X276561Y280811D01*

-X276393Y280536D01*

-X276269Y280237D01*

-X276194Y279924D01*

-X276169Y279602D01*

-X276194Y279280D01*

-X276269Y278967D01*

-X276393Y278668D01*

-X276561Y278393D01*

-X276771Y278148D01*

-X277016Y277938D01*

-X277291Y277770D01*

-X277590Y277646D01*

-X277903Y277571D01*

-X278222Y277546D01*

-Y188387D01*

-X277757Y188672D01*

-X277132Y188931D01*

-X276474Y189089D01*

-X275799Y189142D01*

-X275124Y189089D01*

-X274466Y188931D01*

-X273841Y188672D01*

-X273264Y188319D01*

-X272749Y187879D01*

-X272309Y187364D01*

-X271956Y186787D01*

-X271697Y186162D01*

-X271539Y185504D01*

-X271486Y184829D01*

-X271539Y184154D01*

-X271697Y183496D01*

-X271956Y182871D01*

-X272309Y182294D01*

-X272749Y181779D01*

-X273264Y181339D01*

-X273841Y180986D01*

-X274466Y180727D01*

-X275124Y180569D01*

-X275799Y180516D01*

-X276474Y180569D01*

-X277132Y180727D01*

-X277757Y180986D01*

-X278222Y181271D01*

-Y178387D01*

-G37*

-G36*

-X269438Y377120D02*X269289Y377364D01*

-X268849Y377879D01*

-X268334Y378319D01*

-X267757Y378672D01*

-X267132Y378931D01*

-X266474Y379089D01*

-X265799Y379142D01*

-X265124Y379089D01*

-X264466Y378931D01*

-X263841Y378672D01*

-X263264Y378319D01*

-X262749Y377879D01*

-X262747Y377876D01*

-Y397000D01*

-X269438D01*

-Y377120D01*

-G37*

-G36*

-Y367120D02*X269289Y367364D01*

-X268849Y367879D01*

-X268334Y368319D01*

-X267757Y368672D01*

-X267132Y368931D01*

-X266474Y369089D01*

-X265799Y369142D01*

-X265124Y369089D01*

-X264466Y368931D01*

-X263841Y368672D01*

-X263264Y368319D01*

-X262749Y367879D01*

-X262747Y367876D01*

-Y371782D01*

-X262749Y371779D01*

-X263264Y371339D01*

-X263841Y370986D01*

-X264466Y370727D01*

-X265124Y370569D01*

-X265799Y370516D01*

-X266474Y370569D01*

-X267132Y370727D01*

-X267757Y370986D01*

-X268334Y371339D01*

-X268849Y371779D01*

-X269289Y372294D01*

-X269438Y372538D01*

-Y367120D01*

-G37*

-G36*

-Y300670D02*X269331Y300662D01*

-X269018Y300587D01*

-X268719Y300463D01*

-X268444Y300295D01*

-X268199Y300085D01*

-X267989Y299840D01*

-X267821Y299565D01*

-X267697Y299266D01*

-X267622Y298953D01*

-X267597Y298631D01*

-X267622Y298309D01*

-X267638Y298244D01*

-X267622Y298258D01*

-X267347Y298426D01*

-X267048Y298550D01*

-X266735Y298625D01*

-X266413Y298650D01*

-X266091Y298625D01*

-X265778Y298550D01*

-X265479Y298426D01*

-X265204Y298258D01*

-X264959Y298048D01*

-X264749Y297803D01*

-X264581Y297528D01*

-X264457Y297229D01*

-X264407Y297018D01*

-X264174Y297161D01*

-X263875Y297285D01*

-X263562Y297360D01*

-X263240Y297385D01*

-X262918Y297360D01*

-X262747Y297319D01*

-Y306063D01*

-X262779Y306090D01*

-X262963Y306306D01*

-X263111Y306547D01*

-X263219Y306809D01*

-X263285Y307085D01*

-X263302Y307367D01*

-X263285Y307649D01*

-X263219Y307925D01*

-X263111Y308187D01*

-X262963Y308428D01*

-X262779Y308644D01*

-X262747Y308671D01*

-Y318339D01*

-X262883Y318283D01*

-X263159Y318217D01*

-X263441Y318194D01*

-X263723Y318217D01*

-X263999Y318283D01*

-X264261Y318391D01*

-X264502Y318539D01*

-X264718Y318723D01*

-X264902Y318939D01*

-X265050Y319180D01*

-X265158Y319442D01*

-X265224Y319718D01*

-X265241Y320000D01*

-X265224Y320282D01*

-X265158Y320558D01*

-X265050Y320820D01*

-X264902Y321061D01*

-X264718Y321277D01*

-X264502Y321461D01*

-X264261Y321609D01*

-X263999Y321717D01*

-X263723Y321783D01*

-X263441Y321806D01*

-X263159Y321783D01*

-X262883Y321717D01*

-X262747Y321661D01*

-Y361782D01*

-X262749Y361779D01*

-X263264Y361339D01*

-X263841Y360986D01*

-X264466Y360727D01*

-X265124Y360569D01*

-X265799Y360516D01*

-X266474Y360569D01*

-X267132Y360727D01*

-X267757Y360986D01*

-X268334Y361339D01*

-X268849Y361779D01*

-X269289Y362294D01*

-X269438Y362538D01*

-Y358497D01*

-X269380Y358461D01*

-X269164Y358277D01*

-X268980Y358061D01*

-X268832Y357820D01*

-X268724Y357558D01*

-X268658Y357282D01*

-X268635Y357000D01*

-X268658Y356718D01*

-X268724Y356442D01*

-X268832Y356180D01*

-X268980Y355939D01*

-X269164Y355723D01*

-X269380Y355539D01*

-X269438Y355503D01*

-Y350997D01*

-X269380Y350961D01*

-X269164Y350777D01*

-X268980Y350561D01*

-X268832Y350320D01*

-X268724Y350058D01*

-X268658Y349782D01*

-X268635Y349500D01*

-X268658Y349218D01*

-X268724Y348942D01*

-X268832Y348680D01*

-X268980Y348439D01*

-X269164Y348223D01*

-X269380Y348039D01*

-X269438Y348003D01*

-Y343997D01*

-X269380Y343961D01*

-X269164Y343777D01*

-X268980Y343561D01*

-X268832Y343320D01*

-X268724Y343058D01*

-X268658Y342782D01*

-X268635Y342500D01*

-X268658Y342218D01*

-X268724Y341942D01*

-X268832Y341680D01*

-X268980Y341439D01*

-X269164Y341223D01*

-X269380Y341039D01*

-X269438Y341003D01*

-Y337497D01*

-X269380Y337461D01*

-X269164Y337277D01*

-X268980Y337061D01*

-X268832Y336820D01*

-X268724Y336558D01*

-X268658Y336282D01*

-X268635Y336000D01*

-X268658Y335718D01*

-X268724Y335442D01*

-X268832Y335180D01*

-X268980Y334939D01*

-X269164Y334723D01*

-X269380Y334539D01*

-X269438Y334503D01*

-Y315989D01*

-X269263Y316031D01*

-X268941Y316056D01*

-X268619Y316031D01*

-X268306Y315956D01*

-X268007Y315832D01*

-X267732Y315664D01*

-X267487Y315454D01*

-X267277Y315209D01*

-X267109Y314934D01*

-X266985Y314635D01*

-X266910Y314322D01*

-X266885Y314000D01*

-X266910Y313678D01*

-X266985Y313365D01*

-X267109Y313066D01*

-X267277Y312791D01*

-X267487Y312546D01*

-X267732Y312336D01*

-X268007Y312168D01*

-X268306Y312044D01*

-X268619Y311969D01*

-X268941Y311944D01*

-X269263Y311969D01*

-X269438Y312011D01*

-Y300670D01*

-G37*

-G36*

-Y187120D02*X269289Y187364D01*

-X268849Y187879D01*

-X268334Y188319D01*

-X267757Y188672D01*

-X267132Y188931D01*

-X266474Y189089D01*

-X265799Y189142D01*

-X265124Y189089D01*

-X264466Y188931D01*

-X263841Y188672D01*

-X263264Y188319D01*

-X262749Y187879D01*

-X262747Y187876D01*

-Y266716D01*

-X262750Y266716D01*

-X263072Y266741D01*

-X263385Y266816D01*

-X263684Y266940D01*

-X263959Y267108D01*

-X264204Y267318D01*

-X264414Y267563D01*

-X264582Y267838D01*

-X264706Y268137D01*

-X264781Y268450D01*

-X264800Y268772D01*

-X264781Y269094D01*

-X264706Y269407D01*

-X264582Y269706D01*

-X264414Y269981D01*

-X264204Y270226D01*

-X263959Y270436D01*

-X263684Y270604D01*

-X263385Y270728D01*

-X263072Y270803D01*

-X262750Y270828D01*

-X262747Y270828D01*

-Y281334D01*

-X262825Y281267D01*

-X263100Y281099D01*

-X263399Y280975D01*

-X263712Y280900D01*

-X264034Y280875D01*

-X264356Y280900D01*

-X264669Y280975D01*

-X264968Y281099D01*

-X265243Y281267D01*

-X265488Y281477D01*

-X265698Y281722D01*

-X265866Y281997D01*

-X265990Y282296D01*

-X266065Y282609D01*

-X266084Y282931D01*

-X266065Y283253D01*

-X265990Y283566D01*

-X265866Y283865D01*

-X265698Y284140D01*

-X265488Y284385D01*

-X265243Y284595D01*

-X264968Y284763D01*

-X264669Y284887D01*

-X264356Y284962D01*

-X264034Y284987D01*

-X263712Y284962D01*

-X263399Y284887D01*

-X263100Y284763D01*

-X262825Y284595D01*

-X262747Y284528D01*

-Y289773D01*

-X263062Y289798D01*

-X263375Y289873D01*

-X263674Y289997D01*

-X263949Y290165D01*

-X264194Y290375D01*

-X264404Y290620D01*

-X264572Y290895D01*

-X264696Y291194D01*

-X264771Y291507D01*

-X264790Y291829D01*

-X264771Y292151D01*

-X264696Y292464D01*

-X264572Y292763D01*

-X264404Y293038D01*

-X264194Y293283D01*

-X264019Y293433D01*

-X264174Y293497D01*

-X264449Y293665D01*

-X264694Y293875D01*

-X264904Y294120D01*

-X265072Y294395D01*

-X265196Y294694D01*

-X265246Y294905D01*

-X265479Y294762D01*

-X265778Y294638D01*

-X266091Y294563D01*

-X266413Y294538D01*

-X266735Y294563D01*

-X267048Y294638D01*

-X267347Y294762D01*

-X267622Y294930D01*

-X267867Y295140D01*

-X268077Y295385D01*

-X268245Y295660D01*

-X268369Y295959D01*

-X268444Y296272D01*

-X268463Y296594D01*

-X268444Y296916D01*

-X268428Y296981D01*

-X268444Y296967D01*

-X268719Y296799D01*

-X269018Y296675D01*

-X269331Y296600D01*

-X269438Y296592D01*

-Y233230D01*

-X269383Y233217D01*

-X269121Y233109D01*

-X268880Y232961D01*

-X268664Y232777D01*

-X268480Y232561D01*

-X268332Y232320D01*

-X268224Y232058D01*

-X268158Y231782D01*

-X268135Y231500D01*

-X268158Y231218D01*

-X268224Y230942D01*

-X268332Y230680D01*

-X268480Y230439D01*

-X268664Y230223D01*

-X268880Y230039D01*

-X269121Y229891D01*

-X269383Y229783D01*

-X269438Y229770D01*

-Y200305D01*

-X269159Y200283D01*

-X268883Y200217D01*

-X268621Y200109D01*

-X268380Y199961D01*

-X268164Y199777D01*

-X267980Y199561D01*

-X267832Y199320D01*

-X267724Y199058D01*

-X267658Y198782D01*

-X267635Y198500D01*

-X267658Y198218D01*

-X267724Y197942D01*

-X267832Y197680D01*

-X267980Y197439D01*

-X268164Y197223D01*

-X268380Y197039D01*

-X268621Y196891D01*

-X268883Y196783D01*

-X269159Y196717D01*

-X269438Y196695D01*

-Y187120D01*

-G37*

-G36*

-Y177120D02*X269289Y177364D01*

-X268849Y177879D01*

-X268334Y178319D01*

-X267757Y178672D01*

-X267132Y178931D01*

-X266474Y179089D01*

-X265799Y179142D01*

-X265124Y179089D01*

-X264466Y178931D01*

-X263841Y178672D01*

-X263264Y178319D01*

-X262749Y177879D01*

-X262747Y177876D01*

-Y181782D01*

-X262749Y181779D01*

-X263264Y181339D01*

-X263841Y180986D01*

-X264466Y180727D01*

-X265124Y180569D01*

-X265799Y180516D01*

-X266474Y180569D01*

-X267132Y180727D01*

-X267757Y180986D01*

-X268334Y181339D01*

-X268849Y181779D01*

-X269289Y182294D01*

-X269438Y182538D01*

-Y177120D01*

-G37*

-G36*

-Y171500D02*X268522D01*

-X268849Y171779D01*

-X269289Y172294D01*

-X269438Y172538D01*

-Y171500D01*

-G37*

-G36*

-X260938Y282284D02*X260976Y282293D01*

-X261275Y282417D01*

-X261550Y282585D01*

-X261795Y282795D01*

-X261984Y283017D01*

-X261978Y282931D01*

-X262003Y282609D01*

-X262078Y282296D01*

-X262202Y281997D01*

-X262370Y281722D01*

-X262580Y281477D01*

-X262747Y281334D01*

-Y270828D01*

-X262428Y270803D01*

-X262115Y270728D01*

-X261816Y270604D01*

-X261541Y270436D01*

-X261296Y270226D01*

-X261086Y269981D01*

-X260938Y269739D01*

-Y282284D01*

-G37*

-G36*

-Y290846D02*X261076Y290620D01*

-X261286Y290375D01*

-X261531Y290165D01*

-X261806Y289997D01*

-X262105Y289873D01*

-X262418Y289798D01*

-X262740Y289773D01*

-X262747Y289773D01*

-Y284528D01*

-X262580Y284385D01*

-X262386Y284157D01*

-X262391Y284249D01*

-X262372Y284571D01*

-X262297Y284884D01*

-X262173Y285183D01*

-X262005Y285458D01*

-X261795Y285703D01*

-X261550Y285913D01*

-X261275Y286081D01*

-X260976Y286205D01*

-X260938Y286214D01*

-Y290846D01*

-G37*

-G36*

-Y305652D02*X260944Y305650D01*

-X261220Y305584D01*

-X261502Y305561D01*

-X261784Y305584D01*

-X262060Y305650D01*

-X262322Y305758D01*

-X262563Y305906D01*

-X262747Y306063D01*

-Y297319D01*

-X262605Y297285D01*

-X262306Y297161D01*

-X262031Y296993D01*

-X261786Y296783D01*

-X261576Y296538D01*

-X261408Y296263D01*

-X261284Y295964D01*

-X261209Y295651D01*

-X261184Y295329D01*

-X261209Y295007D01*

-X261284Y294694D01*

-X261408Y294395D01*

-X261576Y294120D01*

-X261786Y293875D01*

-X261961Y293725D01*

-X261806Y293661D01*

-X261531Y293493D01*

-X261286Y293283D01*

-X261076Y293038D01*

-X260938Y292812D01*

-Y305652D01*

-G37*

-G36*

-Y397000D02*X262747D01*

-Y377876D01*

-X262309Y377364D01*

-X261956Y376787D01*

-X261697Y376162D01*

-X261539Y375504D01*

-X261486Y374829D01*

-X261539Y374154D01*

-X261697Y373496D01*

-X261956Y372871D01*

-X262309Y372294D01*

-X262747Y371782D01*

-Y367876D01*

-X262309Y367364D01*

-X261956Y366787D01*

-X261697Y366162D01*

-X261539Y365504D01*

-X261486Y364829D01*

-X261539Y364154D01*

-X261697Y363496D01*

-X261956Y362871D01*

-X262309Y362294D01*

-X262747Y361782D01*

-Y321661D01*

-X262621Y321609D01*

-X262380Y321461D01*

-X262164Y321277D01*

-X261980Y321061D01*

-X261832Y320820D01*

-X261724Y320558D01*

-X261658Y320282D01*

-X261635Y320000D01*

-X261658Y319718D01*

-X261724Y319442D01*

-X261832Y319180D01*

-X261980Y318939D01*

-X262164Y318723D01*

-X262380Y318539D01*

-X262621Y318391D01*

-X262747Y318339D01*

-Y308671D01*

-X262563Y308828D01*

-X262322Y308976D01*

-X262060Y309084D01*

-X261784Y309150D01*

-X261502Y309173D01*

-X261220Y309150D01*

-X260944Y309084D01*

-X260938Y309082D01*

-Y315235D01*

-X261126Y315280D01*

-X261388Y315388D01*

-X261629Y315536D01*

-X261845Y315720D01*

-X262029Y315936D01*

-X262177Y316177D01*

-X262285Y316439D01*

-X262351Y316715D01*

-X262368Y316997D01*

-X262351Y317279D01*

-X262285Y317555D01*

-X262177Y317817D01*

-X262029Y318058D01*

-X261845Y318274D01*

-X261629Y318458D01*

-X261388Y318606D01*

-X261126Y318714D01*

-X260938Y318759D01*

-Y397000D01*

-G37*

-G36*

-X262747Y177876D02*X262309Y177364D01*

-X261956Y176787D01*

-X261697Y176162D01*

-X261539Y175504D01*

-X261486Y174829D01*

-X261539Y174154D01*

-X261697Y173496D01*

-X261956Y172871D01*

-X262309Y172294D01*

-X262747Y171782D01*

-Y171500D01*

-X260938D01*

-Y189695D01*

-X260941Y189694D01*

-X261223Y189717D01*

-X261499Y189783D01*

-X261761Y189891D01*

-X262002Y190039D01*

-X262218Y190223D01*

-X262402Y190439D01*

-X262550Y190680D01*

-X262658Y190942D01*

-X262724Y191218D01*

-X262741Y191500D01*

-X262724Y191782D01*

-X262658Y192058D01*

-X262550Y192320D01*

-X262402Y192561D01*

-X262218Y192777D01*

-X262002Y192961D01*

-X261761Y193109D01*

-X261499Y193217D01*

-X261223Y193283D01*

-X260941Y193306D01*

-X260938Y193305D01*

-Y267805D01*

-X261086Y267563D01*

-X261296Y267318D01*

-X261541Y267108D01*

-X261816Y266940D01*

-X262115Y266816D01*

-X262428Y266741D01*

-X262747Y266716D01*

-Y187876D01*

-X262309Y187364D01*

-X261956Y186787D01*

-X261697Y186162D01*

-X261539Y185504D01*

-X261486Y184829D01*

-X261539Y184154D01*

-X261697Y183496D01*

-X261956Y182871D01*

-X262309Y182294D01*

-X262747Y181782D01*

-Y177876D01*

-G37*

-G36*

-X260938Y171500D02*X258522D01*

-X258849Y171779D01*

-X259289Y172294D01*

-X259642Y172871D01*

-X259901Y173496D01*

-X260059Y174154D01*

-X260099Y174829D01*

-X260059Y175504D01*

-X259901Y176162D01*

-X259642Y176787D01*

-X259289Y177364D01*

-X258849Y177879D01*

-X258334Y178319D01*

-X257757Y178672D01*

-X257132Y178931D01*

-X256474Y179089D01*

-X255799Y179142D01*

-X255124Y179089D01*

-X254466Y178931D01*

-X253841Y178672D01*

-X253264Y178319D01*

-X253098Y178177D01*

-Y181481D01*

-X253264Y181339D01*

-X253841Y180986D01*

-X254466Y180727D01*

-X255124Y180569D01*

-X255799Y180516D01*

-X256474Y180569D01*

-X257132Y180727D01*

-X257757Y180986D01*

-X258334Y181339D01*

-X258849Y181779D01*

-X259289Y182294D01*

-X259642Y182871D01*

-X259901Y183496D01*

-X260059Y184154D01*

-X260099Y184829D01*

-X260059Y185504D01*

-X259901Y186162D01*

-X259642Y186787D01*

-X259289Y187364D01*

-X258849Y187879D01*

-X258334Y188319D01*

-X257757Y188672D01*

-X257132Y188931D01*

-X256474Y189089D01*

-X255799Y189142D01*

-X255124Y189089D01*

-X254466Y188931D01*

-X253841Y188672D01*

-X253264Y188319D01*

-X253098Y188177D01*

-Y209121D01*

-X253218Y209223D01*

-X253402Y209439D01*

-X253550Y209680D01*

-X253658Y209942D01*

-X253724Y210218D01*

-X253741Y210500D01*

-X253724Y210782D01*

-X253658Y211058D01*

-X253550Y211320D01*

-X253402Y211561D01*

-X253218Y211777D01*

-X253098Y211879D01*

-Y259780D01*

-X253101Y259780D01*

-X253423Y259805D01*

-X253736Y259880D01*

-X254035Y260004D01*

-X254310Y260172D01*

-X254555Y260382D01*

-X254765Y260627D01*

-X254933Y260902D01*

-X255057Y261201D01*

-X255132Y261514D01*

-X255151Y261836D01*

-X255132Y262158D01*

-X255057Y262471D01*

-X254933Y262770D01*

-X254765Y263045D01*

-X254555Y263290D01*

-X254310Y263500D01*

-X254035Y263668D01*

-X253736Y263792D01*

-X253423Y263867D01*

-X253101Y263892D01*

-X253098Y263892D01*

-Y297095D01*

-X253286Y296875D01*

-X253531Y296665D01*

-X253806Y296497D01*

-X254105Y296373D01*

-X254418Y296298D01*

-X254740Y296273D01*

-X255062Y296298D01*

-X255375Y296373D01*

-X255674Y296497D01*

-X255949Y296665D01*

-X256194Y296875D01*

-X256404Y297120D01*

-X256572Y297395D01*

-X256696Y297694D01*

-X256771Y298007D01*

-X256790Y298329D01*

-X256771Y298651D01*

-X256696Y298964D01*

-X256572Y299263D01*

-X256404Y299538D01*

-X256194Y299783D01*

-X255949Y299993D01*

-X255674Y300161D01*

-X255375Y300285D01*

-X255062Y300360D01*

-X254740Y300385D01*

-X254418Y300360D01*

-X254105Y300285D01*

-X253806Y300161D01*

-X253531Y299993D01*

-X253286Y299783D01*

-X253098Y299563D01*

-Y361481D01*

-X253264Y361339D01*

-X253841Y360986D01*

-X254466Y360727D01*

-X255124Y360569D01*

-X255799Y360516D01*

-X256474Y360569D01*

-X257132Y360727D01*

-X257757Y360986D01*

-X258334Y361339D01*

-X258849Y361779D01*

-X259289Y362294D01*

-X259642Y362871D01*

-X259901Y363496D01*

-X260059Y364154D01*

-X260099Y364829D01*

-X260059Y365504D01*

-X259901Y366162D01*

-X259642Y366787D01*

-X259289Y367364D01*

-X258849Y367879D01*

-X258334Y368319D01*

-X257757Y368672D01*

-X257132Y368931D01*

-X256474Y369089D01*

-X255799Y369142D01*

-X255124Y369089D01*

-X254466Y368931D01*

-X253841Y368672D01*

-X253264Y368319D01*

-X253098Y368177D01*

-Y371481D01*

-X253264Y371339D01*

-X253841Y370986D01*

-X254466Y370727D01*

-X255124Y370569D01*

-X255799Y370516D01*

-X256474Y370569D01*

-X257132Y370727D01*

-X257757Y370986D01*

-X258334Y371339D01*

-X258849Y371779D01*

-X259289Y372294D01*

-X259642Y372871D01*

-X259901Y373496D01*

-X260059Y374154D01*

-X260099Y374829D01*

-X260059Y375504D01*

-X259901Y376162D01*

-X259642Y376787D01*

-X259289Y377364D01*

-X258849Y377879D01*

-X258334Y378319D01*

-X257757Y378672D01*

-X257132Y378931D01*

-X256474Y379089D01*

-X255799Y379142D01*

-X255124Y379089D01*

-X254466Y378931D01*

-X253841Y378672D01*

-X253264Y378319D01*

-X253098Y378177D01*

-Y397000D01*

-X260938D01*

-Y318759D01*

-X260850Y318780D01*

-X260568Y318803D01*

-X260286Y318780D01*

-X260010Y318714D01*

-X259748Y318606D01*

-X259507Y318458D01*

-X259291Y318274D01*

-X259107Y318058D01*

-X258959Y317817D01*

-X258851Y317555D01*

-X258785Y317279D01*

-X258762Y316997D01*

-X258785Y316715D01*

-X258851Y316439D01*

-X258959Y316177D01*

-X259107Y315936D01*

-X259291Y315720D01*

-X259507Y315536D01*

-X259748Y315388D01*

-X260010Y315280D01*

-X260286Y315214D01*

-X260568Y315191D01*

-X260850Y315214D01*

-X260938Y315235D01*

-Y309082D01*

-X260682Y308976D01*

-X260441Y308828D01*

-X260225Y308644D01*

-X260041Y308428D01*

-X259893Y308187D01*

-X259785Y307925D01*

-X259719Y307649D01*

-X259696Y307367D01*

-X259719Y307085D01*

-X259785Y306809D01*

-X259893Y306547D01*

-X260041Y306306D01*

-X260225Y306090D01*

-X260441Y305906D01*

-X260682Y305758D01*

-X260938Y305652D01*

-Y292812D01*

-X260908Y292763D01*

-X260784Y292464D01*

-X260709Y292151D01*

-X260684Y291829D01*

-X260709Y291507D01*

-X260784Y291194D01*

-X260908Y290895D01*

-X260938Y290846D01*

-Y286214D01*

-X260663Y286280D01*

-X260341Y286305D01*

-X260019Y286280D01*

-X259706Y286205D01*

-X259407Y286081D01*

-X259132Y285913D01*

-X258887Y285703D01*

-X258677Y285458D01*

-X258509Y285183D01*

-X258385Y284884D01*

-X258310Y284571D01*

-X258285Y284249D01*

-X258310Y283927D01*

-X258385Y283614D01*

-X258509Y283315D01*

-X258677Y283040D01*

-X258887Y282795D01*

-X259132Y282585D01*

-X259407Y282417D01*

-X259706Y282293D01*

-X260019Y282218D01*

-X260341Y282193D01*

-X260663Y282218D01*

-X260938Y282284D01*

-Y269739D01*

-X260918Y269706D01*

-X260794Y269407D01*

-X260719Y269094D01*

-X260694Y268772D01*

-X260719Y268450D01*

-X260794Y268137D01*

-X260918Y267838D01*

-X260938Y267805D01*

-Y193305D01*

-X260659Y193283D01*

-X260383Y193217D01*

-X260121Y193109D01*

-X259880Y192961D01*

-X259664Y192777D01*

-X259480Y192561D01*

-X259332Y192320D01*

-X259224Y192058D01*

-X259158Y191782D01*

-X259135Y191500D01*

-X259158Y191218D01*

-X259224Y190942D01*

-X259332Y190680D01*

-X259480Y190439D01*

-X259664Y190223D01*

-X259880Y190039D01*

-X260121Y189891D01*

-X260383Y189783D01*

-X260659Y189717D01*

-X260938Y189695D01*

-Y171500D01*

-G37*

-G36*

-X250938Y397000D02*X253098D01*

-Y378177D01*

-X252749Y377879D01*

-X252309Y377364D01*

-X251956Y376787D01*

-X251697Y376162D01*

-X251539Y375504D01*

-X251486Y374829D01*

-X251539Y374154D01*

-X251697Y373496D01*

-X251956Y372871D01*

-X252309Y372294D01*

-X252749Y371779D01*

-X253098Y371481D01*

-Y368177D01*

-X252749Y367879D01*

-X252309Y367364D01*

-X251956Y366787D01*

-X251697Y366162D01*

-X251539Y365504D01*

-X251486Y364829D01*

-X251539Y364154D01*

-X251697Y363496D01*

-X251956Y362871D01*

-X252309Y362294D01*

-X252749Y361779D01*

-X253098Y361481D01*

-Y299563D01*

-X253076Y299538D01*

-X252908Y299263D01*

-X252784Y298964D01*

-X252709Y298651D01*

-X252684Y298329D01*

-X252709Y298007D01*

-X252784Y297694D01*

-X252908Y297395D01*

-X253076Y297120D01*

-X253098Y297095D01*

-Y263892D01*

-X252779Y263867D01*

-X252466Y263792D01*

-X252167Y263668D01*

-X251892Y263500D01*

-X251647Y263290D01*

-X251437Y263045D01*

-X251269Y262770D01*

-X251145Y262471D01*

-X251070Y262158D01*

-X251045Y261836D01*

-X251070Y261514D01*

-X251145Y261201D01*

-X251269Y260902D01*

-X251437Y260627D01*

-X251647Y260382D01*

-X251892Y260172D01*

-X252167Y260004D01*

-X252466Y259880D01*

-X252779Y259805D01*

-X253098Y259780D01*

-Y211879D01*

-X253002Y211961D01*

-X252761Y212109D01*

-X252499Y212217D01*

-X252223Y212283D01*

-X251941Y212306D01*

-X251659Y212283D01*

-X251383Y212217D01*

-X251121Y212109D01*

-X250938Y211997D01*

-Y227695D01*

-X250941Y227694D01*

-X251223Y227717D01*

-X251499Y227783D01*

-X251761Y227891D01*

-X252002Y228039D01*

-X252218Y228223D01*

-X252402Y228439D01*

-X252550Y228680D01*

-X252658Y228942D01*

-X252724Y229218D01*

-X252741Y229500D01*

-X252724Y229782D01*

-X252658Y230058D01*

-X252550Y230320D01*

-X252402Y230561D01*

-X252218Y230777D01*

-X252002Y230961D01*

-X251761Y231109D01*

-X251499Y231217D01*

-X251223Y231283D01*

-X250941Y231306D01*

-X250938Y231305D01*

-Y397000D01*

-G37*

-G36*

-X253098Y178177D02*X252749Y177879D01*

-X252309Y177364D01*

-X251956Y176787D01*

-X251697Y176162D01*

-X251539Y175504D01*

-X251486Y174829D01*

-X251539Y174154D01*

-X251697Y173496D01*

-X251956Y172871D01*

-X252309Y172294D01*

-X252749Y171779D01*

-X253076Y171500D01*

-X250938D01*

-Y209003D01*

-X251121Y208891D01*

-X251383Y208783D01*

-X251659Y208717D01*

-X251941Y208694D01*

-X252223Y208717D01*

-X252499Y208783D01*

-X252761Y208891D01*

-X253002Y209039D01*

-X253098Y209121D01*

-Y188177D01*

-X252749Y187879D01*

-X252309Y187364D01*

-X251956Y186787D01*

-X251697Y186162D01*

-X251539Y185504D01*

-X251486Y184829D01*

-X251539Y184154D01*

-X251697Y183496D01*

-X251956Y182871D01*

-X252309Y182294D01*

-X252749Y181779D01*

-X253098Y181481D01*

-Y178177D01*

-G37*

-G36*

-X250938Y171500D02*X249098D01*

-Y172071D01*

-X249289Y172294D01*

-X249642Y172871D01*

-X249901Y173496D01*

-X250059Y174154D01*

-X250099Y174829D01*

-X250059Y175504D01*

-X249901Y176162D01*

-X249642Y176787D01*

-X249289Y177364D01*

-X249098Y177587D01*

-Y182071D01*

-X249289Y182294D01*

-X249642Y182871D01*

-X249901Y183496D01*

-X250059Y184154D01*

-X250099Y184829D01*

-X250059Y185504D01*

-X249901Y186162D01*

-X249642Y186787D01*

-X249289Y187364D01*

-X249098Y187587D01*

-Y326988D01*

-X249101Y326987D01*

-X249383Y327010D01*

-X249659Y327076D01*

-X249921Y327184D01*

-X250162Y327332D01*

-X250378Y327516D01*

-X250562Y327732D01*

-X250710Y327973D01*

-X250818Y328235D01*

-X250884Y328511D01*

-X250901Y328793D01*

-X250884Y329075D01*

-X250818Y329351D01*

-X250710Y329613D01*

-X250562Y329854D01*

-X250378Y330070D01*

-X250162Y330254D01*

-X249921Y330402D01*

-X249659Y330510D01*

-X249383Y330576D01*

-X249101Y330599D01*

-X249098Y330598D01*

-Y362071D01*

-X249289Y362294D01*

-X249642Y362871D01*

-X249901Y363496D01*

-X250059Y364154D01*

-X250099Y364829D01*

-X250059Y365504D01*

-X249901Y366162D01*

-X249642Y366787D01*

-X249289Y367364D01*

-X249098Y367587D01*

-Y372071D01*

-X249289Y372294D01*

-X249642Y372871D01*

-X249901Y373496D01*

-X250059Y374154D01*

-X250099Y374829D01*

-X250059Y375504D01*

-X249901Y376162D01*

-X249642Y376787D01*

-X249289Y377364D01*

-X249098Y377587D01*

-Y397000D01*

-X250938D01*

-Y231305D01*

-X250659Y231283D01*

-X250383Y231217D01*

-X250121Y231109D01*

-X249880Y230961D01*

-X249664Y230777D01*

-X249480Y230561D01*

-X249332Y230320D01*

-X249224Y230058D01*

-X249158Y229782D01*

-X249135Y229500D01*

-X249158Y229218D01*

-X249224Y228942D01*

-X249332Y228680D01*

-X249480Y228439D01*

-X249664Y228223D01*

-X249880Y228039D01*

-X250121Y227891D01*

-X250383Y227783D01*

-X250659Y227717D01*

-X250938Y227695D01*

-Y211997D01*

-X250880Y211961D01*

-X250664Y211777D01*

-X250480Y211561D01*

-X250332Y211320D01*

-X250224Y211058D01*

-X250158Y210782D01*

-X250135Y210500D01*

-X250158Y210218D01*

-X250224Y209942D01*

-X250332Y209680D01*

-X250480Y209439D01*

-X250664Y209223D01*

-X250880Y209039D01*

-X250938Y209003D01*

-Y171500D01*

-G37*

-G36*

-X249098Y377587D02*X248849Y377879D01*

-X248334Y378319D01*

-X247757Y378672D01*

-X247132Y378931D01*

-X246474Y379089D01*

-X245799Y379142D01*

-X245554Y379123D01*

-Y397000D01*

-X249098D01*

-Y377587D01*

-G37*

-G36*

-Y367587D02*X248849Y367879D01*

-X248334Y368319D01*

-X247757Y368672D01*

-X247132Y368931D01*

-X246474Y369089D01*

-X245799Y369142D01*

-X245554Y369123D01*

-Y370535D01*

-X245799Y370516D01*

-X246474Y370569D01*

-X247132Y370727D01*

-X247757Y370986D01*

-X248334Y371339D01*

-X248849Y371779D01*

-X249098Y372071D01*

-Y367587D01*

-G37*

-G36*

-Y187587D02*X248849Y187879D01*

-X248334Y188319D01*

-X247757Y188672D01*

-X247132Y188931D01*

-X246474Y189089D01*

-X245799Y189142D01*

-X245554Y189123D01*

-Y189747D01*

-X245581Y189741D01*

-X245863Y189718D01*

-X246145Y189741D01*

-X246421Y189807D01*

-X246683Y189915D01*

-X246924Y190063D01*

-X247140Y190247D01*

-X247324Y190463D01*

-X247472Y190704D01*

-X247580Y190966D01*

-X247646Y191242D01*

-X247663Y191524D01*

-X247646Y191806D01*

-X247580Y192082D01*

-X247472Y192344D01*

-X247324Y192585D01*

-X247140Y192801D01*

-X246924Y192985D01*

-X246683Y193133D01*

-X246421Y193241D01*

-X246145Y193307D01*

-X245863Y193330D01*

-X245581Y193307D01*

-X245554Y193301D01*

-Y201190D01*

-X245658Y201442D01*

-X245724Y201718D01*

-X245741Y202000D01*

-X245724Y202282D01*

-X245658Y202558D01*

-X245554Y202810D01*

-Y227933D01*

-X245621Y227891D01*

-X245883Y227783D01*

-X246159Y227717D01*

-X246441Y227694D01*

-X246723Y227717D01*

-X246999Y227783D01*

-X247261Y227891D01*

-X247502Y228039D01*

-X247718Y228223D01*

-X247902Y228439D01*

-X248050Y228680D01*

-X248158Y228942D01*

-X248224Y229218D01*

-X248241Y229500D01*

-X248224Y229782D01*

-X248158Y230058D01*

-X248050Y230320D01*

-X247902Y230561D01*

-X247718Y230777D01*

-X247502Y230961D01*

-X247261Y231109D01*

-X246999Y231217D01*

-X246723Y231283D01*

-X246441Y231306D01*

-X246159Y231283D01*

-X245883Y231217D01*

-X245621Y231109D01*

-X245554Y231067D01*

-Y236853D01*

-X245664Y236723D01*

-X245880Y236539D01*

-X246121Y236391D01*

-X246383Y236283D01*

-X246659Y236217D01*

-X246941Y236194D01*

-X247223Y236217D01*

-X247499Y236283D01*

-X247761Y236391D01*

-X248002Y236539D01*

-X248218Y236723D01*

-X248402Y236939D01*

-X248550Y237180D01*

-X248658Y237442D01*

-X248724Y237718D01*

-X248741Y238000D01*

-X248724Y238282D01*

-X248658Y238558D01*

-X248550Y238820D01*

-X248402Y239061D01*

-X248218Y239277D01*

-X248002Y239461D01*

-X247761Y239609D01*

-X247499Y239717D01*

-X247223Y239783D01*

-X246941Y239806D01*

-X246659Y239783D01*

-X246383Y239717D01*

-X246121Y239609D01*

-X245880Y239461D01*

-X245664Y239277D01*

-X245554Y239147D01*

-Y277452D01*

-X245557Y277452D01*

-X245879Y277477D01*

-X246192Y277552D01*

-X246491Y277676D01*

-X246766Y277844D01*

-X247011Y278054D01*

-X247221Y278299D01*

-X247389Y278574D01*

-X247513Y278873D01*

-X247588Y279186D01*

-X247607Y279508D01*

-X247588Y279830D01*

-X247513Y280143D01*

-X247389Y280442D01*

-X247221Y280717D01*

-X247011Y280962D01*

-X246766Y281172D01*

-X246491Y281340D01*

-X246192Y281464D01*

-X245879Y281539D01*

-X245557Y281564D01*

-X245554Y281564D01*

-Y301669D01*

-X245670Y301570D01*

-X245911Y301422D01*

-X246173Y301314D01*

-X246449Y301248D01*

-X246731Y301225D01*

-X247013Y301248D01*

-X247289Y301314D01*

-X247551Y301422D01*

-X247792Y301570D01*

-X248008Y301754D01*

-X248192Y301970D01*

-X248340Y302211D01*

-X248448Y302473D01*

-X248514Y302749D01*

-X248531Y303031D01*

-X248514Y303313D01*

-X248448Y303589D01*

-X248340Y303851D01*

-X248192Y304092D01*

-X248008Y304308D01*

-X247792Y304492D01*

-X247551Y304640D01*

-X247289Y304748D01*

-X247013Y304814D01*

-X246731Y304837D01*

-X246449Y304814D01*

-X246173Y304748D01*

-X245911Y304640D01*

-X245670Y304492D01*

-X245554Y304393D01*

-Y360535D01*

-X245799Y360516D01*

-X246474Y360569D01*

-X247132Y360727D01*

-X247757Y360986D01*

-X248334Y361339D01*

-X248849Y361779D01*

-X249098Y362071D01*

-Y330598D01*

-X248819Y330576D01*

-X248543Y330510D01*

-X248281Y330402D01*

-X248040Y330254D01*

-X247824Y330070D01*

-X247640Y329854D01*

-X247492Y329613D01*

-X247384Y329351D01*

-X247318Y329075D01*

-X247295Y328793D01*

-X247318Y328511D01*

-X247384Y328235D01*

-X247492Y327973D01*

-X247640Y327732D01*

-X247824Y327516D01*

-X248040Y327332D01*

-X248281Y327184D01*

-X248543Y327076D01*

-X248819Y327010D01*

-X249098Y326988D01*

-Y187587D01*

-G37*

-G36*

-Y177587D02*X248849Y177879D01*

-X248334Y178319D01*

-X247757Y178672D01*

-X247132Y178931D01*

-X246474Y179089D01*

-X245799Y179142D01*

-X245554Y179123D01*

-Y180535D01*

-X245799Y180516D01*

-X246474Y180569D01*

-X247132Y180727D01*

-X247757Y180986D01*

-X248334Y181339D01*

-X248849Y181779D01*

-X249098Y182071D01*

-Y177587D01*

-G37*

-G36*

-Y171500D02*X248522D01*

-X248849Y171779D01*

-X249098Y172071D01*

-Y171500D01*

-G37*

-G36*

-X242453Y200984D02*X242480Y200939D01*

-X242664Y200723D01*

-X242880Y200539D01*

-X243121Y200391D01*

-X243383Y200283D01*

-X243659Y200217D01*

-X243941Y200194D01*

-X244223Y200217D01*

-X244499Y200283D01*

-X244761Y200391D01*

-X245002Y200539D01*

-X245218Y200723D01*

-X245402Y200939D01*

-X245550Y201180D01*

-X245554Y201190D01*

-Y193301D01*

-X245305Y193241D01*

-X245043Y193133D01*

-X244802Y192985D01*

-X244586Y192801D01*

-X244402Y192585D01*

-X244254Y192344D01*

-X244146Y192082D01*

-X244080Y191806D01*

-X244057Y191524D01*

-X244080Y191242D01*

-X244146Y190966D01*

-X244254Y190704D01*

-X244402Y190463D01*

-X244586Y190247D01*

-X244802Y190063D01*

-X245043Y189915D01*

-X245305Y189807D01*

-X245554Y189747D01*

-Y189123D01*

-X245124Y189089D01*

-X244466Y188931D01*

-X243841Y188672D01*

-X243264Y188319D01*

-X242749Y187879D01*

-X242453Y187532D01*

-Y200984D01*

-G37*

-G36*

-Y362126D02*X242749Y361779D01*

-X243264Y361339D01*

-X243841Y360986D01*

-X244466Y360727D01*

-X245124Y360569D01*

-X245554Y360535D01*

-Y304393D01*

-X245454Y304308D01*

-X245270Y304092D01*

-X245122Y303851D01*

-X245014Y303589D01*

-X244948Y303313D01*

-X244925Y303031D01*

-X244948Y302749D01*

-X245014Y302473D01*

-X245122Y302211D01*

-X245270Y301970D01*

-X245454Y301754D01*

-X245554Y301669D01*

-Y281564D01*

-X245235Y281539D01*

-X244922Y281464D01*

-X244623Y281340D01*

-X244348Y281172D01*

-X244103Y280962D01*

-X243893Y280717D01*

-X243725Y280442D01*

-X243601Y280143D01*

-X243526Y279830D01*

-X243501Y279508D01*

-X243526Y279186D01*

-X243601Y278873D01*

-X243725Y278574D01*

-X243893Y278299D01*

-X244103Y278054D01*

-X244348Y277844D01*

-X244623Y277676D01*

-X244922Y277552D01*

-X245235Y277477D01*

-X245554Y277452D01*

-Y239147D01*

-X245480Y239061D01*

-X245332Y238820D01*

-X245224Y238558D01*

-X245158Y238282D01*

-X245135Y238000D01*

-X245158Y237718D01*

-X245224Y237442D01*

-X245332Y237180D01*

-X245480Y236939D01*

-X245554Y236853D01*

-Y231067D01*

-X245380Y230961D01*

-X245164Y230777D01*

-X244980Y230561D01*

-X244832Y230320D01*

-X244724Y230058D01*

-X244658Y229782D01*

-X244635Y229500D01*

-X244658Y229218D01*

-X244724Y228942D01*

-X244832Y228680D01*

-X244980Y228439D01*

-X245164Y228223D01*

-X245380Y228039D01*

-X245554Y227933D01*

-Y202810D01*

-X245550Y202820D01*

-X245402Y203061D01*

-X245218Y203277D01*

-X245002Y203461D01*

-X244761Y203609D01*

-X244499Y203717D01*

-X244223Y203783D01*

-X243941Y203806D01*

-X243659Y203783D01*

-X243383Y203717D01*

-X243121Y203609D01*

-X242880Y203461D01*

-X242664Y203277D01*

-X242480Y203061D01*

-X242453Y203016D01*

-Y227695D01*

-X242723Y227717D01*

-X242999Y227783D01*

-X243261Y227891D01*

-X243502Y228039D01*

-X243718Y228223D01*

-X243902Y228439D01*

-X244050Y228680D01*

-X244158Y228942D01*

-X244224Y229218D01*

-X244241Y229500D01*

-X244224Y229782D01*

-X244158Y230058D01*

-X244050Y230320D01*

-X243902Y230561D01*

-X243718Y230777D01*

-X243502Y230961D01*

-X243261Y231109D01*

-X242999Y231217D01*

-X242723Y231283D01*

-X242453Y231305D01*

-Y291487D01*

-X242456Y291487D01*

-X242778Y291512D01*

-X243091Y291587D01*

-X243390Y291711D01*

-X243665Y291879D01*

-X243910Y292089D01*

-X244120Y292334D01*

-X244288Y292609D01*

-X244412Y292908D01*

-X244487Y293221D01*

-X244506Y293543D01*

-X244487Y293865D01*

-X244412Y294178D01*

-X244288Y294477D01*

-X244120Y294752D01*

-X243910Y294997D01*

-X243665Y295207D01*

-X243390Y295375D01*

-X243091Y295499D01*

-X242778Y295574D01*

-X242456Y295599D01*

-X242453Y295599D01*

-Y296766D01*

-X242490Y296769D01*

-X242803Y296844D01*

-X243102Y296968D01*

-X243377Y297136D01*

-X243622Y297346D01*

-X243832Y297591D01*

-X244000Y297866D01*

-X244124Y298165D01*

-X244199Y298478D01*

-X244218Y298800D01*

-X244199Y299122D01*

-X244124Y299435D01*

-X244000Y299734D01*

-X243832Y300009D01*

-X243622Y300254D01*

-X243377Y300464D01*

-X243102Y300632D01*

-X242803Y300756D01*

-X242490Y300831D01*

-X242453Y300834D01*

-Y362126D01*

-G37*

-G36*

-Y372126D02*X242749Y371779D01*

-X243264Y371339D01*

-X243841Y370986D01*

-X244466Y370727D01*

-X245124Y370569D01*

-X245554Y370535D01*

-Y369123D01*

-X245124Y369089D01*

-X244466Y368931D01*

-X243841Y368672D01*

-X243264Y368319D01*

-X242749Y367879D01*

-X242453Y367532D01*

-Y372126D01*

-G37*

-G36*

-Y397000D02*X245554D01*

-Y379123D01*

-X245124Y379089D01*

-X244466Y378931D01*

-X243841Y378672D01*

-X243264Y378319D01*

-X242749Y377879D01*

-X242453Y377532D01*

-Y397000D01*

-G37*

-G36*

-Y172126D02*X242749Y171779D01*

-X243076Y171500D01*

-X242453D01*

-Y172126D01*

-G37*

-G36*

-X245554Y179123D02*X245124Y179089D01*

-X244466Y178931D01*

-X243841Y178672D01*

-X243264Y178319D01*

-X242749Y177879D01*

-X242453Y177532D01*

-Y182126D01*

-X242749Y181779D01*

-X243264Y181339D01*

-X243841Y180986D01*

-X244466Y180727D01*

-X245124Y180569D01*

-X245554Y180535D01*

-Y179123D01*

-G37*

-G36*

-X242453Y177532D02*X242309Y177364D01*

-X241956Y176787D01*

-X241697Y176162D01*

-X241539Y175504D01*

-X241486Y174829D01*

-X241539Y174154D01*

-X241697Y173496D01*

-X241956Y172871D01*

-X242309Y172294D01*

-X242453Y172126D01*

-Y171500D01*

-X239299D01*

-Y172311D01*

-X239642Y172871D01*

-X239901Y173496D01*

-X240059Y174154D01*

-X240099Y174829D01*

-X240059Y175504D01*

-X239901Y176162D01*

-X239642Y176787D01*

-X239299Y177347D01*

-Y182311D01*

-X239642Y182871D01*

-X239901Y183496D01*

-X240059Y184154D01*

-X240099Y184829D01*

-X240059Y185504D01*

-X239901Y186162D01*

-X239642Y186787D01*

-X239299Y187347D01*

-Y194811D01*

-X239642Y195371D01*

-X239901Y195996D01*

-X240059Y196654D01*

-X240099Y197329D01*

-X240059Y198004D01*

-X239901Y198662D01*

-X239642Y199287D01*

-X239299Y199847D01*

-Y260179D01*

-X239302Y260179D01*

-X239624Y260204D01*

-X239937Y260279D01*

-X240236Y260403D01*

-X240511Y260571D01*

-X240756Y260781D01*

-X240966Y261026D01*

-X241134Y261301D01*

-X241258Y261600D01*

-X241333Y261913D01*

-X241352Y262235D01*

-X241333Y262557D01*

-X241258Y262870D01*

-X241134Y263169D01*

-X240966Y263444D01*

-X240756Y263689D01*

-X240511Y263899D01*

-X240236Y264067D01*

-X239937Y264191D01*

-X239624Y264266D01*

-X239302Y264291D01*

-X239299Y264291D01*

-Y277130D01*

-X239330Y277103D01*

-X239571Y276955D01*

-X239833Y276847D01*

-X240109Y276781D01*

-X240391Y276758D01*

-X240673Y276781D01*

-X240949Y276847D01*

-X241211Y276955D01*

-X241452Y277103D01*

-X241668Y277287D01*

-X241852Y277503D01*

-X242000Y277744D01*

-X242108Y278006D01*

-X242174Y278282D01*

-X242191Y278564D01*

-X242174Y278846D01*

-X242108Y279122D01*

-X242000Y279384D01*

-X241852Y279625D01*

-X241668Y279841D01*

-X241452Y280025D01*

-X241211Y280173D01*

-X240949Y280281D01*

-X240673Y280347D01*

-X240391Y280370D01*

-X240109Y280347D01*

-X239833Y280281D01*

-X239571Y280173D01*

-X239330Y280025D01*

-X239299Y279998D01*

-Y362311D01*

-X239642Y362871D01*

-X239901Y363496D01*

-X240059Y364154D01*

-X240099Y364829D01*

-X240059Y365504D01*

-X239901Y366162D01*

-X239642Y366787D01*

-X239299Y367347D01*

-Y372311D01*

-X239642Y372871D01*

-X239901Y373496D01*

-X240059Y374154D01*

-X240099Y374829D01*

-X240059Y375504D01*

-X239901Y376162D01*

-X239642Y376787D01*

-X239299Y377347D01*

-Y397000D01*

-X242453D01*

-Y377532D01*

-X242309Y377364D01*

-X241956Y376787D01*

-X241697Y376162D01*

-X241539Y375504D01*

-X241486Y374829D01*

-X241539Y374154D01*

-X241697Y373496D01*

-X241956Y372871D01*

-X242309Y372294D01*

-X242453Y372126D01*

-Y367532D01*

-X242309Y367364D01*

-X241956Y366787D01*

-X241697Y366162D01*

-X241539Y365504D01*

-X241486Y364829D01*

-X241539Y364154D01*

-X241697Y363496D01*

-X241956Y362871D01*

-X242309Y362294D01*

-X242453Y362126D01*

-Y300834D01*

-X242168Y300856D01*

-X241846Y300831D01*

-X241533Y300756D01*

-X241234Y300632D01*

-X240959Y300464D01*

-X240714Y300254D01*

-X240504Y300009D01*

-X240336Y299734D01*

-X240212Y299435D01*

-X240137Y299122D01*

-X240112Y298800D01*

-X240137Y298478D01*

-X240212Y298165D01*

-X240336Y297866D01*

-X240504Y297591D01*

-X240714Y297346D01*

-X240959Y297136D01*

-X241234Y296968D01*

-X241533Y296844D01*

-X241846Y296769D01*

-X242168Y296744D01*

-X242453Y296766D01*

-Y295599D01*

-X242134Y295574D01*

-X241821Y295499D01*

-X241522Y295375D01*

-X241247Y295207D01*

-X241002Y294997D01*

-X240792Y294752D01*

-X240624Y294477D01*

-X240500Y294178D01*

-X240425Y293865D01*

-X240400Y293543D01*

-X240425Y293221D01*

-X240500Y292908D01*

-X240624Y292609D01*

-X240792Y292334D01*

-X241002Y292089D01*

-X241247Y291879D01*

-X241522Y291711D01*

-X241821Y291587D01*

-X242134Y291512D01*

-X242453Y291487D01*

-Y231305D01*

-X242441Y231306D01*

-X242159Y231283D01*

-X241883Y231217D01*

-X241621Y231109D01*

-X241380Y230961D01*

-X241164Y230777D01*

-X240980Y230561D01*

-X240832Y230320D01*

-X240724Y230058D01*

-X240658Y229782D01*

-X240635Y229500D01*

-X240658Y229218D01*

-X240724Y228942D01*

-X240832Y228680D01*

-X240980Y228439D01*

-X241164Y228223D01*

-X241380Y228039D01*

-X241621Y227891D01*

-X241883Y227783D01*

-X242159Y227717D01*

-X242441Y227694D01*

-X242453Y227695D01*

-Y203016D01*

-X242332Y202820D01*

-X242224Y202558D01*

-X242158Y202282D01*

-X242135Y202000D01*

-X242158Y201718D01*

-X242224Y201442D01*

-X242332Y201180D01*

-X242453Y200984D01*

-Y187532D01*

-X242309Y187364D01*

-X241956Y186787D01*

-X241697Y186162D01*

-X241539Y185504D01*

-X241486Y184829D01*

-X241539Y184154D01*

-X241697Y183496D01*

-X241956Y182871D01*

-X242309Y182294D01*

-X242453Y182126D01*

-Y177532D01*

-G37*

-G36*

-X236438Y193066D02*X236474Y193069D01*

-X237132Y193227D01*

-X237757Y193486D01*

-X238334Y193839D01*

-X238849Y194279D01*

-X239289Y194794D01*

-X239299Y194811D01*

-Y187347D01*

-X239289Y187364D01*

-X238849Y187879D01*

-X238334Y188319D01*

-X237757Y188672D01*

-X237132Y188931D01*

-X236474Y189089D01*

-X236438Y189092D01*

-Y193066D01*

-G37*

-G36*

-Y360566D02*X236474Y360569D01*

-X237132Y360727D01*

-X237757Y360986D01*

-X238334Y361339D01*

-X238849Y361779D01*

-X239289Y362294D01*

-X239299Y362311D01*

-Y279998D01*

-X239114Y279841D01*

-X238930Y279625D01*

-X238782Y279384D01*

-X238674Y279122D01*

-X238608Y278846D01*

-X238585Y278564D01*

-X238608Y278282D01*

-X238674Y278006D01*

-X238782Y277744D01*

-X238930Y277503D01*

-X239114Y277287D01*

-X239299Y277130D01*

-Y264291D01*

-X238980Y264266D01*

-X238667Y264191D01*

-X238368Y264067D01*

-X238093Y263899D01*

-X237848Y263689D01*

-X237638Y263444D01*

-X237470Y263169D01*

-X237346Y262870D01*

-X237271Y262557D01*

-X237246Y262235D01*

-X237271Y261913D01*

-X237346Y261600D01*

-X237470Y261301D01*

-X237638Y261026D01*

-X237848Y260781D01*

-X238093Y260571D01*

-X238368Y260403D01*

-X238667Y260279D01*

-X238980Y260204D01*

-X239299Y260179D01*

-Y199847D01*

-X239289Y199864D01*

-X238849Y200379D01*

-X238334Y200819D01*

-X237757Y201172D01*

-X237132Y201431D01*

-X236474Y201589D01*

-X236438Y201592D01*

-Y233695D01*

-X236441Y233694D01*

-X236723Y233717D01*

-X236999Y233783D01*

-X237261Y233891D01*

-X237502Y234039D01*

-X237718Y234223D01*

-X237902Y234439D01*

-X238050Y234680D01*

-X238158Y234942D01*

-X238224Y235218D01*

-X238241Y235500D01*

-X238224Y235782D01*

-X238158Y236058D01*

-X238050Y236320D01*

-X237902Y236561D01*

-X237718Y236777D01*

-X237502Y236961D01*

-X237261Y237109D01*

-X236999Y237217D01*

-X236723Y237283D01*

-X236441Y237306D01*

-X236438Y237305D01*

-Y360566D01*

-G37*

-G36*

-Y370566D02*X236474Y370569D01*

-X237132Y370727D01*

-X237757Y370986D01*

-X238334Y371339D01*

-X238849Y371779D01*

-X239289Y372294D01*

-X239299Y372311D01*

-Y367347D01*

-X239289Y367364D01*

-X238849Y367879D01*

-X238334Y368319D01*

-X237757Y368672D01*

-X237132Y368931D01*

-X236474Y369089D01*

-X236438Y369092D01*

-Y370566D01*

-G37*

-G36*

-Y397000D02*X239299D01*

-Y377347D01*

-X239289Y377364D01*

-X238849Y377879D01*

-X238334Y378319D01*

-X237757Y378672D01*

-X237132Y378931D01*

-X236474Y379089D01*

-X236438Y379092D01*

-Y397000D01*

-G37*

-G36*

-X239299Y177347D02*X239289Y177364D01*

-X238849Y177879D01*

-X238334Y178319D01*

-X237757Y178672D01*

-X237132Y178931D01*

-X236474Y179089D01*

-X236438Y179092D01*

-Y180566D01*

-X236474Y180569D01*

-X237132Y180727D01*

-X237757Y180986D01*

-X238334Y181339D01*

-X238849Y181779D01*

-X239289Y182294D01*

-X239299Y182311D01*

-Y177347D01*

-G37*

-G36*

-X236438Y179092D02*X235799Y179142D01*

-X235124Y179089D01*

-X234466Y178931D01*

-X233841Y178672D01*

-X233264Y178319D01*

-X232749Y177879D01*

-X232309Y177364D01*

-X231956Y176787D01*

-X231697Y176162D01*

-X231539Y175504D01*

-X231486Y174829D01*

-X231539Y174154D01*

-X231697Y173496D01*

-X231956Y172871D01*

-X232309Y172294D01*

-X232749Y171779D01*

-X233076Y171500D01*

-X229815D01*

-Y173289D01*

-X229901Y173496D01*

-X230059Y174154D01*

-X230099Y174829D01*

-X230059Y175504D01*

-X229901Y176162D01*

-X229815Y176369D01*

-Y183289D01*

-X229901Y183496D01*

-X230059Y184154D01*

-X230099Y184829D01*

-X230059Y185504D01*

-X229901Y186162D01*

-X229815Y186369D01*

-Y195789D01*

-X229901Y195996D01*

-X230059Y196654D01*

-X230099Y197329D01*

-X230059Y198004D01*

-X229901Y198662D01*

-X229815Y198869D01*

-Y245311D01*

-X229883Y245283D01*

-X230159Y245217D01*

-X230441Y245194D01*

-X230723Y245217D01*

-X230999Y245283D01*

-X231261Y245391D01*

-X231502Y245539D01*

-X231718Y245723D01*

-X231902Y245939D01*

-X232050Y246180D01*

-X232158Y246442D01*

-X232224Y246718D01*

-X232241Y247000D01*

-X232224Y247282D01*

-X232158Y247558D01*

-X232050Y247820D01*

-X231902Y248061D01*

-X231718Y248277D01*

-X231502Y248461D01*

-X231261Y248609D01*

-X230999Y248717D01*

-X230723Y248783D01*

-X230441Y248806D01*

-X230159Y248783D01*

-X229883Y248717D01*

-X229815Y248689D01*

-Y291311D01*

-X229883Y291283D01*

-X230159Y291217D01*

-X230441Y291194D01*

-X230723Y291217D01*

-X230999Y291283D01*

-X231261Y291391D01*

-X231502Y291539D01*

-X231718Y291723D01*

-X231902Y291939D01*

-X232050Y292180D01*

-X232158Y292442D01*

-X232224Y292718D01*

-X232241Y293000D01*

-X232224Y293282D01*

-X232158Y293558D01*

-X232050Y293820D01*

-X231902Y294061D01*

-X231718Y294277D01*

-X231502Y294461D01*

-X231261Y294609D01*

-X230999Y294717D01*

-X230723Y294783D01*

-X230441Y294806D01*

-X230159Y294783D01*

-X229883Y294717D01*

-X229815Y294689D01*

-Y353183D01*

-X229818Y353182D01*

-X230100Y353205D01*

-X230376Y353271D01*

-X230638Y353379D01*

-X230879Y353527D01*

-X231095Y353711D01*

-X231279Y353927D01*

-X231427Y354168D01*

-X231535Y354430D01*

-X231601Y354706D01*

-X231618Y354988D01*

-X231601Y355270D01*

-X231535Y355546D01*

-X231427Y355808D01*

-X231279Y356049D01*

-X231095Y356265D01*

-X230879Y356449D01*

-X230638Y356597D01*

-X230376Y356705D01*

-X230100Y356771D01*

-X229818Y356794D01*

-X229815Y356793D01*

-Y363289D01*

-X229901Y363496D01*

-X230059Y364154D01*

-X230099Y364829D01*

-X230059Y365504D01*

-X229901Y366162D01*

-X229815Y366369D01*

-Y373289D01*

-X229901Y373496D01*

-X230059Y374154D01*

-X230099Y374829D01*

-X230059Y375504D01*

-X229901Y376162D01*

-X229815Y376369D01*

-Y397000D01*

-X236438D01*

-Y379092D01*

-X235799Y379142D01*

-X235124Y379089D01*

-X234466Y378931D01*

-X233841Y378672D01*

-X233264Y378319D01*

-X232749Y377879D01*

-X232309Y377364D01*

-X231956Y376787D01*

-X231697Y376162D01*

-X231539Y375504D01*

-X231486Y374829D01*

-X231539Y374154D01*

-X231697Y373496D01*

-X231956Y372871D01*

-X232309Y372294D01*

-X232749Y371779D01*

-X233264Y371339D01*

-X233841Y370986D01*

-X234466Y370727D01*

-X235124Y370569D01*

-X235799Y370516D01*

-X236438Y370566D01*

-Y369092D01*

-X235799Y369142D01*

-X235124Y369089D01*

-X234466Y368931D01*

-X233841Y368672D01*

-X233264Y368319D01*

-X232749Y367879D01*

-X232309Y367364D01*

-X231956Y366787D01*

-X231697Y366162D01*

-X231539Y365504D01*

-X231486Y364829D01*

-X231539Y364154D01*

-X231697Y363496D01*

-X231956Y362871D01*

-X232309Y362294D01*

-X232749Y361779D01*

-X233264Y361339D01*

-X233841Y360986D01*

-X234466Y360727D01*

-X235124Y360569D01*

-X235799Y360516D01*

-X236438Y360566D01*

-Y237305D01*

-X236159Y237283D01*

-X235883Y237217D01*

-X235621Y237109D01*

-X235380Y236961D01*

-X235164Y236777D01*

-X234980Y236561D01*

-X234832Y236320D01*

-X234724Y236058D01*

-X234658Y235782D01*

-X234635Y235500D01*

-X234658Y235218D01*

-X234724Y234942D01*

-X234832Y234680D01*

-X234980Y234439D01*

-X235164Y234223D01*

-X235380Y234039D01*

-X235621Y233891D01*

-X235883Y233783D01*

-X236159Y233717D01*

-X236438Y233695D01*

-Y201592D01*

-X235799Y201642D01*

-X235124Y201589D01*

-X234466Y201431D01*

-X233841Y201172D01*

-X233264Y200819D01*

-X232749Y200379D01*

-X232309Y199864D01*

-X231956Y199287D01*

-X231697Y198662D01*

-X231539Y198004D01*

-X231486Y197329D01*

-X231539Y196654D01*

-X231697Y195996D01*

-X231956Y195371D01*

-X232309Y194794D01*

-X232749Y194279D01*

-X233264Y193839D01*

-X233841Y193486D01*

-X234466Y193227D01*

-X235124Y193069D01*

-X235799Y193016D01*

-X236438Y193066D01*

-Y189092D01*

-X235799Y189142D01*

-X235124Y189089D01*

-X234466Y188931D01*

-X233841Y188672D01*

-X233264Y188319D01*

-X232749Y187879D01*

-X232309Y187364D01*

-X231956Y186787D01*

-X231697Y186162D01*

-X231539Y185504D01*

-X231486Y184829D01*

-X231539Y184154D01*

-X231697Y183496D01*

-X231956Y182871D01*

-X232309Y182294D01*

-X232749Y181779D01*

-X233264Y181339D01*

-X233841Y180986D01*

-X234466Y180727D01*

-X235124Y180569D01*

-X235799Y180516D01*

-X236438Y180566D01*

-Y179092D01*

-G37*

-G36*

-X239299Y171500D02*X238522D01*

-X238849Y171779D01*

-X239289Y172294D01*

-X239299Y172311D01*

-Y171500D01*

-G37*

-G36*

-X202438Y172143D02*X202749Y171779D01*

-X203076Y171500D01*

-X202438D01*

-Y172143D01*

-G37*

-G36*

-X224938Y193114D02*X225124Y193069D01*

-X225799Y193016D01*

-X226474Y193069D01*

-X227132Y193227D01*

-X227757Y193486D01*

-X228334Y193839D01*

-X228849Y194279D01*

-X229289Y194794D01*

-X229642Y195371D01*

-X229815Y195789D01*

-Y186369D01*

-X229642Y186787D01*

-X229289Y187364D01*

-X228849Y187879D01*

-X228334Y188319D01*

-X227757Y188672D01*

-X227132Y188931D01*

-X226474Y189089D01*

-X225799Y189142D01*

-X225124Y189089D01*

-X224938Y189044D01*

-Y193114D01*

-G37*

-G36*

-Y370614D02*X225124Y370569D01*

-X225799Y370516D01*

-X226474Y370569D01*

-X227132Y370727D01*

-X227757Y370986D01*

-X228334Y371339D01*

-X228849Y371779D01*

-X229289Y372294D01*

-X229642Y372871D01*

-X229815Y373289D01*

-Y366369D01*

-X229642Y366787D01*

-X229289Y367364D01*

-X228849Y367879D01*

-X228334Y368319D01*

-X227757Y368672D01*

-X227132Y368931D01*

-X226474Y369089D01*

-X225799Y369142D01*

-X225124Y369089D01*

-X224938Y369044D01*

-Y370614D01*

-G37*

-G36*

-Y397000D02*X229815D01*

-Y376369D01*

-X229642Y376787D01*

-X229289Y377364D01*

-X228849Y377879D01*

-X228334Y378319D01*

-X227757Y378672D01*

-X227132Y378931D01*

-X226474Y379089D01*

-X225799Y379142D01*

-X225124Y379089D01*

-X224938Y379044D01*

-Y397000D01*

-G37*

-G36*

-Y247270D02*X225159Y247217D01*

-X225441Y247194D01*

-X225723Y247217D01*

-X225999Y247283D01*

-X226261Y247391D01*

-X226502Y247539D01*

-X226718Y247723D01*

-X226902Y247939D01*

-X227050Y248180D01*

-X227158Y248442D01*

-X227224Y248718D01*

-X227241Y249000D01*

-X227224Y249282D01*

-X227158Y249558D01*

-X227050Y249820D01*

-X226902Y250061D01*

-X226718Y250277D01*

-X226502Y250461D01*

-X226261Y250609D01*

-X225999Y250717D01*

-X225761Y250774D01*

-X225902Y250939D01*

-X226050Y251180D01*

-X226158Y251442D01*

-X226224Y251718D01*

-X226241Y252000D01*

-X226224Y252282D01*

-X226158Y252558D01*

-X226050Y252820D01*

-X225902Y253061D01*

-X225718Y253277D01*

-X225502Y253461D01*

-X225261Y253609D01*

-X224999Y253717D01*

-X224938Y253732D01*

-Y360614D01*

-X225124Y360569D01*

-X225799Y360516D01*

-X226474Y360569D01*

-X227132Y360727D01*

-X227757Y360986D01*

-X228334Y361339D01*

-X228849Y361779D01*

-X229289Y362294D01*

-X229642Y362871D01*

-X229815Y363289D01*

-Y356793D01*

-X229536Y356771D01*

-X229260Y356705D01*

-X228998Y356597D01*

-X228757Y356449D01*

-X228541Y356265D01*

-X228357Y356049D01*

-X228209Y355808D01*

-X228101Y355546D01*

-X228035Y355270D01*

-X228012Y354988D01*

-X228035Y354706D01*

-X228101Y354430D01*

-X228209Y354168D01*

-X228357Y353927D01*

-X228541Y353711D01*

-X228757Y353527D01*

-X228998Y353379D01*

-X229260Y353271D01*

-X229536Y353205D01*

-X229815Y353183D01*

-Y294689D01*

-X229621Y294609D01*

-X229380Y294461D01*

-X229164Y294277D01*

-X228980Y294061D01*

-X228832Y293820D01*

-X228724Y293558D01*

-X228658Y293282D01*

-X228635Y293000D01*

-X228658Y292718D01*

-X228724Y292442D01*

-X228832Y292180D01*

-X228980Y291939D01*

-X229164Y291723D01*

-X229380Y291539D01*

-X229621Y291391D01*

-X229815Y291311D01*

-Y248689D01*

-X229621Y248609D01*

-X229380Y248461D01*

-X229164Y248277D01*

-X228980Y248061D01*

-X228832Y247820D01*

-X228724Y247558D01*

-X228658Y247282D01*

-X228635Y247000D01*

-X228658Y246718D01*

-X228724Y246442D01*

-X228832Y246180D01*

-X228980Y245939D01*

-X229164Y245723D01*

-X229380Y245539D01*

-X229621Y245391D01*

-X229815Y245311D01*

-Y198869D01*

-X229642Y199287D01*

-X229289Y199864D01*

-X228849Y200379D01*

-X228334Y200819D01*

-X227757Y201172D01*

-X227132Y201431D01*

-X226474Y201589D01*

-X225799Y201642D01*

-X225124Y201589D01*

-X224938Y201544D01*

-Y218695D01*

-X224941Y218694D01*

-X225223Y218717D01*

-X225499Y218783D01*

-X225761Y218891D01*

-X226002Y219039D01*

-X226218Y219223D01*

-X226402Y219439D01*

-X226550Y219680D01*

-X226658Y219942D01*

-X226724Y220218D01*

-X226741Y220500D01*

-X226724Y220782D01*

-X226658Y221058D01*

-X226550Y221320D01*

-X226402Y221561D01*

-X226218Y221777D01*

-X226002Y221961D01*

-X225761Y222109D01*

-X225499Y222217D01*

-X225223Y222283D01*

-X224941Y222306D01*

-X224938Y222305D01*

-Y224770D01*

-X225159Y224717D01*

-X225441Y224694D01*

-X225723Y224717D01*

-X225999Y224783D01*

-X226261Y224891D01*

-X226502Y225039D01*

-X226718Y225223D01*

-X226902Y225439D01*

-X227050Y225680D01*

-X227158Y225942D01*

-X227224Y226218D01*

-X227241Y226500D01*

-X227224Y226782D01*

-X227158Y227058D01*

-X227050Y227320D01*

-X226902Y227561D01*

-X226718Y227777D01*

-X226502Y227961D01*

-X226261Y228109D01*

-X225999Y228217D01*

-X225723Y228283D01*

-X225441Y228306D01*

-X225159Y228283D01*

-X224938Y228230D01*

-Y233695D01*

-X224941Y233694D01*

-X225223Y233717D01*

-X225499Y233783D01*

-X225761Y233891D01*

-X226002Y234039D01*

-X226218Y234223D01*

-X226402Y234439D01*

-X226550Y234680D01*

-X226658Y234942D01*

-X226724Y235218D01*

-X226741Y235500D01*

-X226724Y235782D01*

-X226658Y236058D01*

-X226550Y236320D01*

-X226402Y236561D01*

-X226218Y236777D01*

-X226002Y236961D01*

-X225761Y237109D01*

-X225499Y237217D01*

-X225223Y237283D01*

-X224941Y237306D01*

-X224938Y237305D01*

-Y242268D01*

-X224999Y242283D01*

-X225261Y242391D01*

-X225502Y242539D01*

-X225718Y242723D01*

-X225902Y242939D01*

-X226050Y243180D01*

-X226158Y243442D01*

-X226224Y243718D01*

-X226241Y244000D01*

-X226224Y244282D01*

-X226158Y244558D01*

-X226050Y244820D01*

-X225902Y245061D01*

-X225718Y245277D01*

-X225502Y245461D01*

-X225261Y245609D01*

-X224999Y245717D01*

-X224938Y245732D01*

-Y247270D01*

-G37*

-G36*

-X229815Y176369D02*X229642Y176787D01*

-X229289Y177364D01*

-X228849Y177879D01*

-X228334Y178319D01*

-X227757Y178672D01*

-X227132Y178931D01*

-X226474Y179089D01*

-X225799Y179142D01*

-X225124Y179089D01*

-X224938Y179044D01*

-Y180614D01*

-X225124Y180569D01*

-X225799Y180516D01*

-X226474Y180569D01*

-X227132Y180727D01*

-X227757Y180986D01*

-X228334Y181339D01*

-X228849Y181779D01*

-X229289Y182294D01*

-X229642Y182871D01*

-X229815Y183289D01*

-Y176369D01*

-G37*

-G36*

-X224938Y253732D02*X224723Y253783D01*

-X224441Y253806D01*

-X224159Y253783D01*

-X223883Y253717D01*

-X223643Y253618D01*

-X223667Y253718D01*

-X223684Y254000D01*

-X223667Y254282D01*

-X223601Y254558D01*

-X223493Y254820D01*

-X223345Y255061D01*

-X223161Y255277D01*

-X222945Y255461D01*

-X222704Y255609D01*

-X222442Y255717D01*

-X222166Y255783D01*

-X221884Y255806D01*

-X221602Y255783D01*

-X221326Y255717D01*

-X221064Y255609D01*

-X220823Y255461D01*

-X220607Y255277D01*

-X220438Y255079D01*

-Y257695D01*

-X220441Y257694D01*

-X220723Y257717D01*

-X220999Y257783D01*

-X221261Y257891D01*

-X221502Y258039D01*

-X221718Y258223D01*

-X221902Y258439D01*

-X222050Y258680D01*

-X222158Y258942D01*

-X222224Y259218D01*

-X222241Y259500D01*

-X222224Y259782D01*

-X222158Y260058D01*

-X222050Y260320D01*

-X221902Y260561D01*

-X221718Y260777D01*

-X221502Y260961D01*

-X221261Y261109D01*

-X220999Y261217D01*

-X220723Y261283D01*

-X220441Y261306D01*

-X220438Y261305D01*

-Y263799D01*

-X220447Y263797D01*

-X220729Y263774D01*

-X221011Y263797D01*

-X221287Y263863D01*

-X221549Y263971D01*

-X221790Y264119D01*

-X222006Y264303D01*

-X222190Y264519D01*

-X222338Y264760D01*

-X222446Y265022D01*

-X222512Y265298D01*

-X222529Y265580D01*

-X222512Y265862D01*

-X222446Y266138D01*

-X222338Y266400D01*

-X222190Y266641D01*

-X222006Y266857D01*

-X221790Y267041D01*

-X221549Y267189D01*

-X221287Y267297D01*

-X221011Y267363D01*

-X220729Y267386D01*

-X220447Y267363D01*

-X220438Y267361D01*

-Y271000D01*

-X220502Y271039D01*

-X220718Y271223D01*

-X220902Y271439D01*

-X221050Y271680D01*

-X221158Y271942D01*

-X221224Y272218D01*

-X221241Y272500D01*

-X221224Y272782D01*

-X221158Y273058D01*

-X221050Y273320D01*

-X220902Y273561D01*

-X220718Y273777D01*

-X220502Y273961D01*

-X220438Y274000D01*

-Y397000D01*

-X224938D01*

-Y379044D01*

-X224466Y378931D01*

-X223841Y378672D01*

-X223264Y378319D01*

-X222749Y377879D01*

-X222309Y377364D01*

-X221956Y376787D01*

-X221697Y376162D01*

-X221539Y375504D01*

-X221486Y374829D01*

-X221539Y374154D01*

-X221697Y373496D01*

-X221956Y372871D01*

-X222309Y372294D01*

-X222749Y371779D01*

-X223264Y371339D01*

-X223841Y370986D01*

-X224466Y370727D01*

-X224938Y370614D01*

-Y369044D01*

-X224466Y368931D01*

-X223841Y368672D01*

-X223264Y368319D01*

-X222749Y367879D01*

-X222309Y367364D01*

-X221956Y366787D01*

-X221697Y366162D01*

-X221539Y365504D01*

-X221486Y364829D01*

-X221539Y364154D01*

-X221697Y363496D01*

-X221956Y362871D01*

-X222309Y362294D01*

-X222749Y361779D01*

-X223264Y361339D01*

-X223841Y360986D01*

-X224466Y360727D01*

-X224938Y360614D01*

-Y253732D01*

-G37*

-G36*

-Y179044D02*X224466Y178931D01*

-X223841Y178672D01*

-X223264Y178319D01*

-X222749Y177879D01*

-X222309Y177364D01*

-X221956Y176787D01*

-X221697Y176162D01*

-X221539Y175504D01*

-X221486Y174829D01*

-X221539Y174154D01*

-X221697Y173496D01*

-X221956Y172871D01*

-X222309Y172294D01*

-X222749Y171779D01*

-X223076Y171500D01*

-X220438D01*

-Y213195D01*

-X220441Y213194D01*

-X220723Y213217D01*

-X220999Y213283D01*

-X221261Y213391D01*

-X221502Y213539D01*

-X221718Y213723D01*

-X221902Y213939D01*

-X222050Y214180D01*

-X222158Y214442D01*

-X222224Y214718D01*

-X222241Y215000D01*

-X222224Y215282D01*

-X222158Y215558D01*

-X222050Y215820D01*

-X221902Y216061D01*

-X221718Y216277D01*

-X221502Y216461D01*

-X221261Y216609D01*

-X220999Y216717D01*

-X220723Y216783D01*

-X220441Y216806D01*

-X220438Y216805D01*

-Y252921D01*

-X220607Y252723D01*

-X220823Y252539D01*

-X221064Y252391D01*

-X221326Y252283D01*

-X221602Y252217D01*

-X221884Y252194D01*

-X222166Y252217D01*

-X222442Y252283D01*

-X222682Y252382D01*

-X222658Y252282D01*

-X222635Y252000D01*

-X222658Y251718D01*

-X222724Y251442D01*

-X222832Y251180D01*

-X222980Y250939D01*

-X223164Y250723D01*

-X223380Y250539D01*

-X223621Y250391D01*

-X223883Y250283D01*

-X224121Y250226D01*

-X223980Y250061D01*

-X223832Y249820D01*

-X223724Y249558D01*

-X223658Y249282D01*

-X223635Y249000D01*

-X223658Y248718D01*

-X223724Y248442D01*

-X223832Y248180D01*

-X223980Y247939D01*

-X224164Y247723D01*

-X224380Y247539D01*

-X224621Y247391D01*

-X224883Y247283D01*

-X224938Y247270D01*

-Y245732D01*

-X224723Y245783D01*

-X224441Y245806D01*

-X224159Y245783D01*

-X223883Y245717D01*

-X223621Y245609D01*

-X223380Y245461D01*

-X223164Y245277D01*

-X222980Y245061D01*

-X222832Y244820D01*

-X222724Y244558D01*

-X222658Y244282D01*

-X222635Y244000D01*

-X222658Y243718D01*

-X222724Y243442D01*

-X222832Y243180D01*

-X222980Y242939D01*

-X223164Y242723D01*

-X223380Y242539D01*

-X223621Y242391D01*

-X223883Y242283D01*

-X224159Y242217D01*

-X224441Y242194D01*

-X224723Y242217D01*

-X224938Y242268D01*

-Y237305D01*

-X224659Y237283D01*

-X224383Y237217D01*

-X224121Y237109D01*

-X223880Y236961D01*

-X223664Y236777D01*

-X223480Y236561D01*

-X223332Y236320D01*

-X223224Y236058D01*

-X223158Y235782D01*

-X223135Y235500D01*

-X223158Y235218D01*

-X223224Y234942D01*

-X223332Y234680D01*

-X223480Y234439D01*

-X223664Y234223D01*

-X223880Y234039D01*

-X224121Y233891D01*

-X224383Y233783D01*

-X224659Y233717D01*

-X224938Y233695D01*

-Y228230D01*

-X224883Y228217D01*

-X224621Y228109D01*

-X224380Y227961D01*

-X224164Y227777D01*

-X223980Y227561D01*

-X223832Y227320D01*

-X223724Y227058D01*

-X223658Y226782D01*

-X223635Y226500D01*

-X223658Y226218D01*

-X223724Y225942D01*

-X223832Y225680D01*

-X223980Y225439D01*

-X224164Y225223D01*

-X224380Y225039D01*

-X224621Y224891D01*

-X224883Y224783D01*

-X224938Y224770D01*

-Y222305D01*

-X224659Y222283D01*

-X224383Y222217D01*

-X224121Y222109D01*

-X223880Y221961D01*

-X223664Y221777D01*

-X223480Y221561D01*

-X223332Y221320D01*

-X223224Y221058D01*

-X223158Y220782D01*

-X223135Y220500D01*

-X223158Y220218D01*

-X223224Y219942D01*

-X223332Y219680D01*

-X223480Y219439D01*

-X223664Y219223D01*

-X223880Y219039D01*

-X224121Y218891D01*

-X224383Y218783D01*

-X224659Y218717D01*

-X224938Y218695D01*

-Y201544D01*

-X224466Y201431D01*

-X223841Y201172D01*

-X223264Y200819D01*

-X222749Y200379D01*

-X222309Y199864D01*

-X221956Y199287D01*

-X221697Y198662D01*

-X221539Y198004D01*

-X221486Y197329D01*

-X221539Y196654D01*

-X221697Y195996D01*

-X221956Y195371D01*

-X222309Y194794D01*

-X222749Y194279D01*

-X223264Y193839D01*

-X223841Y193486D01*

-X224466Y193227D01*

-X224938Y193114D01*

-Y189044D01*

-X224466Y188931D01*

-X223841Y188672D01*

-X223264Y188319D01*

-X222749Y187879D01*

-X222309Y187364D01*

-X221956Y186787D01*

-X221697Y186162D01*

-X221539Y185504D01*

-X221486Y184829D01*

-X221539Y184154D01*

-X221697Y183496D01*

-X221956Y182871D01*

-X222309Y182294D01*

-X222749Y181779D01*

-X223264Y181339D01*

-X223841Y180986D01*

-X224466Y180727D01*

-X224938Y180614D01*

-Y179044D01*

-G37*

-G36*

-X212938Y171618D02*X213076Y171500D01*

-X212938D01*

-Y171618D01*

-G37*

-G36*

-X217438Y360854D02*X217757Y360986D01*

-X218334Y361339D01*

-X218849Y361779D01*

-X219289Y362294D01*

-X219642Y362871D01*

-X219901Y363496D01*

-X220059Y364154D01*

-X220099Y364829D01*

-X220059Y365504D01*

-X219901Y366162D01*

-X219642Y366787D01*

-X219289Y367364D01*

-X218849Y367879D01*

-X218334Y368319D01*

-X217757Y368672D01*

-X217438Y368804D01*

-Y370854D01*

-X217757Y370986D01*

-X218334Y371339D01*

-X218849Y371779D01*

-X219289Y372294D01*

-X219642Y372871D01*

-X219901Y373496D01*

-X220059Y374154D01*

-X220099Y374829D01*

-X220059Y375504D01*

-X219901Y376162D01*

-X219642Y376787D01*

-X219289Y377364D01*

-X218849Y377879D01*

-X218334Y378319D01*

-X217757Y378672D01*

-X217438Y378804D01*

-Y397000D01*

-X220438D01*

-Y274000D01*

-X220261Y274109D01*

-X219999Y274217D01*

-X219723Y274283D01*

-X219441Y274306D01*

-X219159Y274283D01*

-X218883Y274217D01*

-X218621Y274109D01*

-X218380Y273961D01*

-X218164Y273777D01*

-X217980Y273561D01*

-X217832Y273320D01*

-X217724Y273058D01*

-X217658Y272782D01*

-X217635Y272500D01*

-X217658Y272218D01*

-X217724Y271942D01*

-X217832Y271680D01*

-X217980Y271439D01*

-X218164Y271223D01*

-X218380Y271039D01*

-X218621Y270891D01*

-X218883Y270783D01*

-X219159Y270717D01*

-X219441Y270694D01*

-X219723Y270717D01*

-X219999Y270783D01*

-X220261Y270891D01*

-X220438Y271000D01*

-Y267361D01*

-X220171Y267297D01*

-X219909Y267189D01*

-X219668Y267041D01*

-X219452Y266857D01*

-X219268Y266641D01*

-X219120Y266400D01*

-X219012Y266138D01*

-X218946Y265862D01*

-X218923Y265580D01*

-X218946Y265298D01*

-X219012Y265022D01*

-X219120Y264760D01*

-X219268Y264519D01*

-X219452Y264303D01*

-X219668Y264119D01*

-X219909Y263971D01*

-X220171Y263863D01*

-X220438Y263799D01*

-Y261305D01*

-X220229Y261289D01*

-X220241Y261500D01*

-X220224Y261782D01*

-X220158Y262058D01*

-X220050Y262320D01*

-X219902Y262561D01*

-X219718Y262777D01*

-X219502Y262961D01*

-X219261Y263109D01*

-X218999Y263217D01*

-X218723Y263283D01*

-X218441Y263306D01*

-X218159Y263283D01*

-X217883Y263217D01*

-X217621Y263109D01*

-X217438Y262997D01*

-Y277195D01*

-X217441Y277194D01*

-X217723Y277217D01*

-X217999Y277283D01*

-X218261Y277391D01*

-X218502Y277539D01*

-X218718Y277723D01*

-X218902Y277939D01*

-X219050Y278180D01*

-X219158Y278442D01*

-X219224Y278718D01*

-X219241Y279000D01*

-X219224Y279282D01*

-X219158Y279558D01*

-X219050Y279820D01*

-X218902Y280061D01*

-X218718Y280277D01*

-X218502Y280461D01*

-X218261Y280609D01*

-X217999Y280717D01*

-X217723Y280783D01*

-X217441Y280806D01*

-X217438Y280805D01*

-Y360854D01*

-G37*

-G36*

-X220438Y171500D02*X218522D01*

-X218849Y171779D01*

-X219289Y172294D01*

-X219642Y172871D01*

-X219901Y173496D01*

-X220059Y174154D01*

-X220099Y174829D01*

-X220059Y175504D01*

-X219901Y176162D01*

-X219642Y176787D01*

-X219289Y177364D01*

-X218849Y177879D01*

-X218334Y178319D01*

-X217757Y178672D01*

-X217438Y178804D01*

-Y180854D01*

-X217757Y180986D01*

-X218334Y181339D01*

-X218849Y181779D01*

-X219289Y182294D01*

-X219642Y182871D01*

-X219901Y183496D01*

-X220059Y184154D01*

-X220099Y184829D01*

-X220059Y185504D01*

-X219901Y186162D01*

-X219642Y186787D01*

-X219289Y187364D01*

-X218849Y187879D01*

-X218334Y188319D01*

-X217757Y188672D01*

-X217438Y188804D01*

-Y193354D01*

-X217757Y193486D01*

-X218334Y193839D01*

-X218849Y194279D01*

-X219289Y194794D01*

-X219642Y195371D01*

-X219901Y195996D01*

-X220059Y196654D01*

-X220099Y197329D01*

-X220059Y198004D01*

-X219901Y198662D01*

-X219642Y199287D01*

-X219289Y199864D01*

-X218849Y200379D01*

-X218334Y200819D01*

-X217757Y201172D01*

-X217438Y201304D01*

-Y260003D01*

-X217621Y259891D01*

-X217883Y259783D01*

-X218159Y259717D01*

-X218441Y259694D01*

-X218652Y259711D01*

-X218635Y259500D01*

-X218658Y259218D01*

-X218724Y258942D01*

-X218832Y258680D01*

-X218980Y258439D01*

-X219164Y258223D01*

-X219380Y258039D01*

-X219621Y257891D01*

-X219883Y257783D01*

-X220159Y257717D01*

-X220438Y257695D01*

-Y255079D01*

-X220423Y255061D01*

-X220275Y254820D01*

-X220167Y254558D01*

-X220101Y254282D01*

-X220078Y254000D01*

-X220101Y253718D01*

-X220167Y253442D01*

-X220275Y253180D01*

-X220423Y252939D01*

-X220438Y252921D01*

-Y216805D01*

-X220159Y216783D01*

-X219883Y216717D01*

-X219621Y216609D01*

-X219380Y216461D01*

-X219164Y216277D01*

-X218980Y216061D01*

-X218832Y215820D01*

-X218724Y215558D01*

-X218658Y215282D01*

-X218635Y215000D01*

-X218658Y214718D01*

-X218724Y214442D01*

-X218832Y214180D01*

-X218980Y213939D01*

-X219164Y213723D01*

-X219380Y213539D01*

-X219621Y213391D01*

-X219883Y213283D01*

-X220159Y213217D01*

-X220438Y213195D01*

-Y171500D01*

-G37*

-G36*

-X217438Y378804D02*X217132Y378931D01*

-X216474Y379089D01*

-X215799Y379142D01*

-X215124Y379089D01*

-X214466Y378931D01*

-X213841Y378672D01*

-X213264Y378319D01*

-X212938Y378040D01*

-Y397000D01*

-X217438D01*

-Y378804D01*

-G37*

-G36*

-Y368804D02*X217132Y368931D01*

-X216474Y369089D01*

-X215799Y369142D01*

-X215124Y369089D01*

-X214466Y368931D01*

-X213841Y368672D01*

-X213264Y368319D01*

-X212938Y368040D01*

-Y371618D01*

-X213264Y371339D01*

-X213841Y370986D01*

-X214466Y370727D01*

-X215124Y370569D01*

-X215799Y370516D01*

-X216474Y370569D01*

-X217132Y370727D01*

-X217438Y370854D01*

-Y368804D01*

-G37*

-G36*

-Y201304D02*X217132Y201431D01*

-X216474Y201589D01*

-X215799Y201642D01*

-X215124Y201589D01*

-X214466Y201431D01*

-X213841Y201172D01*

-X213264Y200819D01*

-X212938Y200540D01*

-Y236195D01*

-X212941Y236194D01*

-X213223Y236217D01*

-X213499Y236283D01*

-X213761Y236391D01*

-X214002Y236539D01*

-X214218Y236723D01*

-X214402Y236939D01*

-X214550Y237180D01*

-X214658Y237442D01*

-X214724Y237718D01*

-X214741Y238000D01*

-X214724Y238282D01*

-X214658Y238558D01*

-X214550Y238820D01*

-X214402Y239061D01*

-X214218Y239277D01*

-X214002Y239461D01*

-X213761Y239609D01*

-X213499Y239717D01*

-X213223Y239783D01*

-X212941Y239806D01*

-X212938Y239805D01*

-Y361618D01*

-X213264Y361339D01*

-X213841Y360986D01*

-X214466Y360727D01*

-X215124Y360569D01*

-X215799Y360516D01*

-X216474Y360569D01*

-X217132Y360727D01*

-X217438Y360854D01*

-Y280805D01*

-X217159Y280783D01*

-X216883Y280717D01*

-X216621Y280609D01*

-X216380Y280461D01*

-X216164Y280277D01*

-X215980Y280061D01*

-X215832Y279820D01*

-X215724Y279558D01*

-X215658Y279282D01*

-X215635Y279000D01*

-X215658Y278718D01*

-X215724Y278442D01*

-X215832Y278180D01*

-X215980Y277939D01*

-X216164Y277723D01*

-X216380Y277539D01*

-X216621Y277391D01*

-X216883Y277283D01*

-X217159Y277217D01*

-X217438Y277195D01*

-Y262997D01*

-X217380Y262961D01*

-X217164Y262777D01*

-X216980Y262561D01*

-X216832Y262320D01*

-X216724Y262058D01*

-X216658Y261782D01*

-X216635Y261500D01*

-X216658Y261218D01*

-X216724Y260942D01*

-X216832Y260680D01*

-X216980Y260439D01*

-X217164Y260223D01*

-X217380Y260039D01*

-X217438Y260003D01*

-Y201304D01*

-G37*

-G36*

-Y188804D02*X217132Y188931D01*

-X216474Y189089D01*

-X215799Y189142D01*

-X215124Y189089D01*

-X214466Y188931D01*

-X213841Y188672D01*

-X213264Y188319D01*

-X212938Y188040D01*

-Y194118D01*

-X213264Y193839D01*

-X213841Y193486D01*

-X214466Y193227D01*

-X215124Y193069D01*

-X215799Y193016D01*

-X216474Y193069D01*

-X217132Y193227D01*

-X217438Y193354D01*

-Y188804D01*

-G37*

-G36*

-Y178804D02*X217132Y178931D01*

-X216474Y179089D01*

-X215799Y179142D01*

-X215124Y179089D01*

-X214466Y178931D01*

-X213841Y178672D01*

-X213264Y178319D01*

-X212938Y178040D01*

-Y181618D01*

-X213264Y181339D01*

-X213841Y180986D01*

-X214466Y180727D01*

-X215124Y180569D01*

-X215799Y180516D01*

-X216474Y180569D01*

-X217132Y180727D01*

-X217438Y180854D01*

-Y178804D01*

-G37*

-G36*

-X212938Y178040D02*X212749Y177879D01*

-X212309Y177364D01*

-X211956Y176787D01*

-X211697Y176162D01*

-X211539Y175504D01*

-X211486Y174829D01*

-X211539Y174154D01*

-X211697Y173496D01*

-X211956Y172871D01*

-X212309Y172294D01*

-X212749Y171779D01*

-X212938Y171618D01*

-Y171500D01*

-X210438D01*

-Y210695D01*

-X210441Y210694D01*

-X210723Y210717D01*

-X210999Y210783D01*

-X211261Y210891D01*

-X211502Y211039D01*

-X211718Y211223D01*

-X211902Y211439D01*

-X212050Y211680D01*

-X212158Y211942D01*

-X212224Y212218D01*

-X212241Y212500D01*

-X212224Y212782D01*

-X212158Y213058D01*

-X212050Y213320D01*

-X211902Y213561D01*

-X211718Y213777D01*

-X211502Y213961D01*

-X211261Y214109D01*

-X210999Y214217D01*

-X210723Y214283D01*

-X210441Y214306D01*

-X210438Y214305D01*

-Y397000D01*

-X212938D01*

-Y378040D01*

-X212749Y377879D01*

-X212309Y377364D01*

-X211956Y376787D01*

-X211697Y376162D01*

-X211539Y375504D01*

-X211486Y374829D01*

-X211539Y374154D01*

-X211697Y373496D01*

-X211956Y372871D01*

-X212309Y372294D01*

-X212749Y371779D01*

-X212938Y371618D01*

-Y368040D01*

-X212749Y367879D01*

-X212309Y367364D01*

-X211956Y366787D01*

-X211697Y366162D01*

-X211539Y365504D01*

-X211486Y364829D01*

-X211539Y364154D01*

-X211697Y363496D01*

-X211956Y362871D01*

-X212309Y362294D01*

-X212749Y361779D01*

-X212938Y361618D01*

-Y239805D01*

-X212659Y239783D01*

-X212383Y239717D01*

-X212121Y239609D01*

-X211880Y239461D01*

-X211664Y239277D01*

-X211480Y239061D01*

-X211332Y238820D01*

-X211224Y238558D01*

-X211158Y238282D01*

-X211135Y238000D01*

-X211158Y237718D01*

-X211224Y237442D01*

-X211332Y237180D01*

-X211480Y236939D01*

-X211664Y236723D01*

-X211880Y236539D01*

-X212121Y236391D01*

-X212383Y236283D01*

-X212659Y236217D01*

-X212938Y236195D01*

-Y200540D01*

-X212749Y200379D01*

-X212309Y199864D01*

-X211956Y199287D01*

-X211697Y198662D01*

-X211539Y198004D01*

-X211486Y197329D01*

-X211539Y196654D01*

-X211697Y195996D01*

-X211956Y195371D01*

-X212309Y194794D01*

-X212749Y194279D01*

-X212938Y194118D01*

-Y188040D01*

-X212749Y187879D01*

-X212309Y187364D01*

-X211956Y186787D01*

-X211697Y186162D01*

-X211539Y185504D01*

-X211486Y184829D01*

-X211539Y184154D01*

-X211697Y183496D01*

-X211956Y182871D01*

-X212309Y182294D01*

-X212749Y181779D01*

-X212938Y181618D01*

-Y178040D01*

-G37*

-G36*

-X210438Y171500D02*X208522D01*

-X208849Y171779D01*

-X209289Y172294D01*

-X209642Y172871D01*

-X209901Y173496D01*

-X210059Y174154D01*

-X210099Y174829D01*

-X210059Y175504D01*

-X209901Y176162D01*

-X209642Y176787D01*

-X209289Y177364D01*

-X208849Y177879D01*

-X208334Y178319D01*

-X207757Y178672D01*

-X207132Y178931D01*

-X206474Y179089D01*

-X205799Y179142D01*

-X205438Y179114D01*

-Y180544D01*

-X205799Y180516D01*

-X206474Y180569D01*

-X207132Y180727D01*

-X207757Y180986D01*

-X208334Y181339D01*

-X208849Y181779D01*

-X209289Y182294D01*

-X209642Y182871D01*

-X209901Y183496D01*

-X210059Y184154D01*

-X210099Y184829D01*

-X210059Y185504D01*

-X209901Y186162D01*

-X209642Y186787D01*

-X209289Y187364D01*

-X208849Y187879D01*

-X208334Y188319D01*

-X207757Y188672D01*

-X207132Y188931D01*

-X206474Y189089D01*

-X205799Y189142D01*

-X205438Y189114D01*

-Y193044D01*

-X205799Y193016D01*

-X206474Y193069D01*

-X207132Y193227D01*

-X207757Y193486D01*

-X208334Y193839D01*

-X208849Y194279D01*

-X209289Y194794D01*

-X209642Y195371D01*

-X209901Y195996D01*

-X210059Y196654D01*

-X210099Y197329D01*

-X210059Y198004D01*

-X209901Y198662D01*

-X209642Y199287D01*

-X209289Y199864D01*

-X208849Y200379D01*

-X208334Y200819D01*

-X207757Y201172D01*

-X207132Y201431D01*

-X206474Y201589D01*

-X205799Y201642D01*

-X205438Y201614D01*

-Y236498D01*

-X205550Y236680D01*

-X205658Y236942D01*

-X205724Y237218D01*

-X205741Y237500D01*

-X205724Y237782D01*

-X205658Y238058D01*

-X205550Y238320D01*

-X205438Y238502D01*

-Y275195D01*

-X205441Y275194D01*

-X205723Y275217D01*

-X205999Y275283D01*

-X206261Y275391D01*

-X206502Y275539D01*

-X206718Y275723D01*

-X206902Y275939D01*

-X207050Y276180D01*

-X207158Y276442D01*

-X207224Y276718D01*

-X207241Y277000D01*

-X207224Y277282D01*

-X207158Y277558D01*

-X207050Y277820D01*

-X206902Y278061D01*

-X206718Y278277D01*

-X206502Y278461D01*

-X206261Y278609D01*

-X205999Y278717D01*

-X205723Y278783D01*

-X205441Y278806D01*

-X205438Y278805D01*

-Y360544D01*

-X205799Y360516D01*

-X206474Y360569D01*

-X207132Y360727D01*

-X207757Y360986D01*

-X208334Y361339D01*

-X208849Y361779D01*

-X209289Y362294D01*

-X209642Y362871D01*

-X209901Y363496D01*

-X210059Y364154D01*

-X210099Y364829D01*

-X210059Y365504D01*

-X209901Y366162D01*

-X209642Y366787D01*

-X209289Y367364D01*

-X208849Y367879D01*

-X208334Y368319D01*

-X207757Y368672D01*

-X207132Y368931D01*

-X206474Y369089D01*

-X205799Y369142D01*

-X205438Y369114D01*

-Y370544D01*

-X205799Y370516D01*

-X206474Y370569D01*

-X207132Y370727D01*

-X207757Y370986D01*

-X208334Y371339D01*

-X208849Y371779D01*

-X209289Y372294D01*

-X209642Y372871D01*

-X209901Y373496D01*

-X210059Y374154D01*

-X210099Y374829D01*

-X210059Y375504D01*

-X209901Y376162D01*

-X209642Y376787D01*

-X209289Y377364D01*

-X208849Y377879D01*

-X208334Y378319D01*

-X207757Y378672D01*

-X207132Y378931D01*

-X206474Y379089D01*

-X205799Y379142D01*

-X205438Y379114D01*

-Y397000D01*

-X210438D01*

-Y214305D01*

-X210159Y214283D01*

-X209883Y214217D01*

-X209621Y214109D01*

-X209380Y213961D01*

-X209164Y213777D01*

-X208980Y213561D01*

-X208832Y213320D01*

-X208724Y213058D01*

-X208658Y212782D01*

-X208635Y212500D01*

-X208658Y212218D01*

-X208724Y211942D01*

-X208832Y211680D01*

-X208980Y211439D01*

-X209164Y211223D01*

-X209380Y211039D01*

-X209621Y210891D01*

-X209883Y210783D01*

-X210159Y210717D01*

-X210438Y210695D01*

-Y171500D01*

-G37*

-G36*

-X205438Y379114D02*X205124Y379089D01*

-X204466Y378931D01*

-X203841Y378672D01*

-X203264Y378319D01*

-X202749Y377879D01*

-X202438Y377515D01*

-Y397000D01*

-X205438D01*

-Y379114D01*

-G37*

-G36*

-Y369114D02*X205124Y369089D01*

-X204466Y368931D01*

-X203841Y368672D01*

-X203264Y368319D01*

-X202749Y367879D01*

-X202438Y367515D01*

-Y372143D01*

-X202749Y371779D01*

-X203264Y371339D01*

-X203841Y370986D01*

-X204466Y370727D01*

-X205124Y370569D01*

-X205438Y370544D01*

-Y369114D01*

-G37*

-G36*

-Y238502D02*X205402Y238561D01*

-X205218Y238777D01*

-X205002Y238961D01*

-X204761Y239109D01*

-X204499Y239217D01*

-X204223Y239283D01*

-X203941Y239306D01*

-X203659Y239283D01*

-X203383Y239217D01*

-X203121Y239109D01*

-X202880Y238961D01*

-X202664Y238777D01*

-X202480Y238561D01*

-X202438Y238493D01*

-Y362143D01*

-X202749Y361779D01*

-X203264Y361339D01*

-X203841Y360986D01*

-X204466Y360727D01*

-X205124Y360569D01*

-X205438Y360544D01*

-Y278805D01*

-X205159Y278783D01*

-X204883Y278717D01*

-X204621Y278609D01*

-X204380Y278461D01*

-X204164Y278277D01*

-X203980Y278061D01*

-X203832Y277820D01*

-X203724Y277558D01*

-X203658Y277282D01*

-X203635Y277000D01*

-X203658Y276718D01*

-X203724Y276442D01*

-X203832Y276180D01*

-X203980Y275939D01*

-X204164Y275723D01*

-X204380Y275539D01*

-X204621Y275391D01*

-X204883Y275283D01*

-X205159Y275217D01*

-X205438Y275195D01*

-Y238502D01*

-G37*

-G36*

-Y201614D02*X205124Y201589D01*

-X204466Y201431D01*

-X203841Y201172D01*

-X203264Y200819D01*

-X202749Y200379D01*

-X202438Y200015D01*

-Y210695D01*

-X202441Y210694D01*

-X202723Y210717D01*

-X202999Y210783D01*

-X203261Y210891D01*

-X203502Y211039D01*

-X203718Y211223D01*

-X203902Y211439D01*

-X204050Y211680D01*

-X204158Y211942D01*

-X204224Y212218D01*

-X204241Y212500D01*

-X204224Y212782D01*

-X204158Y213058D01*

-X204050Y213320D01*

-X203902Y213561D01*

-X203718Y213777D01*

-X203502Y213961D01*

-X203261Y214109D01*

-X202999Y214217D01*

-X202723Y214283D01*

-X202441Y214306D01*

-X202438Y214305D01*

-Y236507D01*

-X202480Y236439D01*

-X202664Y236223D01*

-X202880Y236039D01*

-X203121Y235891D01*

-X203383Y235783D01*

-X203659Y235717D01*

-X203941Y235694D01*

-X204223Y235717D01*

-X204499Y235783D01*

-X204761Y235891D01*

-X205002Y236039D01*

-X205218Y236223D01*

-X205402Y236439D01*

-X205438Y236498D01*

-Y201614D01*

-G37*

-G36*

-Y189114D02*X205124Y189089D01*

-X204466Y188931D01*

-X203841Y188672D01*

-X203264Y188319D01*

-X202749Y187879D01*

-X202438Y187515D01*

-Y194643D01*

-X202749Y194279D01*

-X203264Y193839D01*

-X203841Y193486D01*

-X204466Y193227D01*

-X205124Y193069D01*

-X205438Y193044D01*

-Y189114D01*

-G37*

-G36*

-Y179114D02*X205124Y179089D01*

-X204466Y178931D01*

-X203841Y178672D01*

-X203264Y178319D01*

-X202749Y177879D01*

-X202438Y177515D01*

-Y182143D01*

-X202749Y181779D01*

-X203264Y181339D01*

-X203841Y180986D01*

-X204466Y180727D01*

-X205124Y180569D01*

-X205438Y180544D01*

-Y179114D01*

-G37*

-G36*

-X202438Y177515D02*X202309Y177364D01*

-X201956Y176787D01*

-X201697Y176162D01*

-X201539Y175504D01*

-X201486Y174829D01*

-X201539Y174154D01*

-X201697Y173496D01*

-X201956Y172871D01*

-X202309Y172294D01*

-X202438Y172143D01*

-Y171500D01*

-X198522D01*

-X198849Y171779D01*

-X199289Y172294D01*

-X199642Y172871D01*

-X199901Y173496D01*

-X200059Y174154D01*

-X200099Y174829D01*

-X200059Y175504D01*

-X199901Y176162D01*

-X199642Y176787D01*

-X199289Y177364D01*

-X198849Y177879D01*

-X198334Y178319D01*

-X197757Y178672D01*

-X197438Y178804D01*

-Y180854D01*

-X197757Y180986D01*

-X198334Y181339D01*

-X198849Y181779D01*

-X199289Y182294D01*

-X199642Y182871D01*

-X199901Y183496D01*

-X200059Y184154D01*

-X200099Y184829D01*

-X200059Y185504D01*

-X199901Y186162D01*

-X199642Y186787D01*

-X199289Y187364D01*

-X198849Y187879D01*

-X198334Y188319D01*

-X197757Y188672D01*

-X197438Y188804D01*

-Y193036D01*

-X199256Y193038D01*

-X199409Y193075D01*

-X199554Y193135D01*

-X199689Y193217D01*

-X199808Y193320D01*

-X199911Y193439D01*

-X199993Y193574D01*

-X200053Y193719D01*

-X200090Y193872D01*

-X200099Y194029D01*

-X200090Y200786D01*

-X200053Y200939D01*

-X199993Y201084D01*

-X199911Y201219D01*

-X199808Y201338D01*

-X199689Y201441D01*

-X199554Y201523D01*

-X199409Y201583D01*

-X199256Y201620D01*

-X199099Y201629D01*

-X197438Y201627D01*

-Y261003D01*

-X197621Y260891D01*

-X197883Y260783D01*

-X198159Y260717D01*

-X198441Y260694D01*

-X198723Y260717D01*

-X198999Y260783D01*

-X199261Y260891D01*

-X199502Y261039D01*

-X199718Y261223D01*

-X199902Y261439D01*

-X200050Y261680D01*

-X200158Y261942D01*

-X200224Y262218D01*

-X200241Y262500D01*

-X200224Y262782D01*

-X200158Y263058D01*

-X200050Y263320D01*

-X199902Y263561D01*

-X199718Y263777D01*

-X199502Y263961D01*

-X199261Y264109D01*

-X198999Y264217D01*

-X198723Y264283D01*

-X198441Y264306D01*

-X198159Y264283D01*

-X197883Y264217D01*

-X197621Y264109D01*

-X197438Y263997D01*

-Y268003D01*

-X197621Y267891D01*

-X197883Y267783D01*

-X198159Y267717D01*

-X198441Y267694D01*

-X198723Y267717D01*

-X198999Y267783D01*

-X199261Y267891D01*

-X199502Y268039D01*

-X199718Y268223D01*

-X199902Y268439D01*

-X200050Y268680D01*

-X200158Y268942D01*

-X200224Y269218D01*

-X200241Y269500D01*

-X200224Y269782D01*

-X200158Y270058D01*

-X200050Y270320D01*

-X199902Y270561D01*

-X199718Y270777D01*

-X199502Y270961D01*

-X199261Y271109D01*

-X198999Y271217D01*

-X198723Y271283D01*

-X198441Y271306D01*

-X198159Y271283D01*

-X197883Y271217D01*

-X197621Y271109D01*

-X197438Y270997D01*

-Y306695D01*

-X197441Y306694D01*

-X197723Y306717D01*

-X197999Y306783D01*

-X198261Y306891D01*

-X198502Y307039D01*

-X198718Y307223D01*

-X198902Y307439D01*

-X199050Y307680D01*

-X199158Y307942D01*

-X199224Y308218D01*

-X199241Y308500D01*

-X199224Y308782D01*

-X199158Y309058D01*

-X199050Y309320D01*

-X198902Y309561D01*

-X198718Y309777D01*

-X198502Y309961D01*

-X198261Y310109D01*

-X197999Y310217D01*

-X197723Y310283D01*

-X197441Y310306D01*

-X197438Y310305D01*

-Y312695D01*

-X197441Y312694D01*

-X197723Y312717D01*

-X197999Y312783D01*

-X198261Y312891D01*

-X198502Y313039D01*

-X198718Y313223D01*

-X198902Y313439D01*

-X199050Y313680D01*

-X199158Y313942D01*

-X199224Y314218D01*

-X199241Y314500D01*

-X199224Y314782D01*

-X199158Y315058D01*

-X199050Y315320D01*

-X198902Y315561D01*

-X198718Y315777D01*

-X198502Y315961D01*

-X198261Y316109D01*

-X197999Y316217D01*

-X197723Y316283D01*

-X197441Y316306D01*

-X197438Y316305D01*

-Y360854D01*

-X197757Y360986D01*

-X198334Y361339D01*

-X198849Y361779D01*

-X199289Y362294D01*

-X199642Y362871D01*

-X199901Y363496D01*

-X200059Y364154D01*

-X200099Y364829D01*

-X200059Y365504D01*

-X199901Y366162D01*

-X199642Y366787D01*

-X199289Y367364D01*

-X198849Y367879D01*

-X198334Y368319D01*

-X197757Y368672D01*

-X197438Y368804D01*

-Y370854D01*

-X197757Y370986D01*

-X198334Y371339D01*

-X198849Y371779D01*

-X199289Y372294D01*

-X199642Y372871D01*

-X199901Y373496D01*

-X200059Y374154D01*

-X200099Y374829D01*

-X200059Y375504D01*

-X199901Y376162D01*

-X199642Y376787D01*

-X199289Y377364D01*

-X198849Y377879D01*

-X198334Y378319D01*

-X197757Y378672D01*

-X197438Y378804D01*

-Y397000D01*

-X202438D01*

-Y377515D01*

-X202309Y377364D01*

-X201956Y376787D01*

-X201697Y376162D01*

-X201539Y375504D01*

-X201486Y374829D01*

-X201539Y374154D01*

-X201697Y373496D01*

-X201956Y372871D01*

-X202309Y372294D01*

-X202438Y372143D01*

-Y367515D01*

-X202309Y367364D01*

-X201956Y366787D01*

-X201697Y366162D01*

-X201539Y365504D01*

-X201486Y364829D01*

-X201539Y364154D01*

-X201697Y363496D01*

-X201956Y362871D01*

-X202309Y362294D01*

-X202438Y362143D01*

-Y238493D01*

-X202332Y238320D01*

-X202224Y238058D01*

-X202158Y237782D01*

-X202135Y237500D01*

-X202158Y237218D01*

-X202224Y236942D01*

-X202332Y236680D01*

-X202438Y236507D01*

-Y214305D01*

-X202159Y214283D01*

-X201883Y214217D01*

-X201621Y214109D01*

-X201380Y213961D01*

-X201164Y213777D01*

-X200980Y213561D01*

-X200832Y213320D01*

-X200724Y213058D01*

-X200658Y212782D01*

-X200635Y212500D01*

-X200658Y212218D01*

-X200724Y211942D01*

-X200832Y211680D01*

-X200980Y211439D01*

-X201164Y211223D01*

-X201380Y211039D01*

-X201621Y210891D01*

-X201883Y210783D01*

-X202159Y210717D01*

-X202438Y210695D01*

-Y200015D01*

-X202309Y199864D01*

-X201956Y199287D01*

-X201697Y198662D01*

-X201539Y198004D01*

-X201486Y197329D01*

-X201539Y196654D01*

-X201697Y195996D01*

-X201956Y195371D01*

-X202309Y194794D01*

-X202438Y194643D01*

-Y187515D01*

-X202309Y187364D01*

-X201956Y186787D01*

-X201697Y186162D01*

-X201539Y185504D01*

-X201486Y184829D01*

-X201539Y184154D01*

-X201697Y183496D01*

-X201956Y182871D01*

-X202309Y182294D01*

-X202438Y182143D01*

-Y177515D01*

-G37*

-G36*

-X197438Y378804D02*X197132Y378931D01*

-X196474Y379089D01*

-X195799Y379142D01*

-X195124Y379089D01*

-X194466Y378931D01*

-X193938Y378712D01*

-Y397000D01*

-X197438D01*

-Y378804D01*

-G37*

-G36*

-Y368804D02*X197132Y368931D01*

-X196474Y369089D01*

-X195799Y369142D01*

-X195124Y369089D01*

-X194466Y368931D01*

-X193938Y368712D01*

-Y370946D01*

-X194466Y370727D01*

-X195124Y370569D01*

-X195799Y370516D01*

-X196474Y370569D01*

-X197132Y370727D01*

-X197438Y370854D01*

-Y368804D01*

-G37*

-G36*

-Y201627D02*X193938Y201622D01*

-Y210695D01*

-X193941Y210694D01*

-X194223Y210717D01*

-X194499Y210783D01*

-X194761Y210891D01*

-X195002Y211039D01*

-X195218Y211223D01*

-X195402Y211439D01*

-X195550Y211680D01*

-X195658Y211942D01*

-X195724Y212218D01*

-X195741Y212500D01*

-X195724Y212782D01*

-X195658Y213058D01*

-X195550Y213320D01*

-X195402Y213561D01*

-X195218Y213777D01*

-X195002Y213961D01*

-X194761Y214109D01*

-X194499Y214217D01*

-X194223Y214283D01*

-X193941Y214306D01*

-X193938Y214305D01*

-Y235195D01*

-X193941Y235194D01*

-X194223Y235217D01*

-X194499Y235283D01*

-X194761Y235391D01*

-X195002Y235539D01*

-X195218Y235723D01*

-X195402Y235939D01*

-X195550Y236180D01*

-X195658Y236442D01*

-X195724Y236718D01*

-X195741Y237000D01*

-X195724Y237282D01*

-X195658Y237558D01*

-X195550Y237820D01*

-X195402Y238061D01*

-X195218Y238277D01*

-X195002Y238461D01*

-X194761Y238609D01*

-X194499Y238717D01*

-X194223Y238783D01*

-X193941Y238806D01*

-X193938Y238805D01*

-Y310507D01*

-X193980Y310439D01*

-X194164Y310223D01*

-X194380Y310039D01*

-X194621Y309891D01*

-X194883Y309783D01*

-X195159Y309717D01*

-X195441Y309694D01*

-X195723Y309717D01*

-X195999Y309783D01*

-X196261Y309891D01*

-X196502Y310039D01*

-X196718Y310223D01*

-X196902Y310439D01*

-X197050Y310680D01*

-X197158Y310942D01*

-X197224Y311218D01*

-X197241Y311500D01*

-X197224Y311782D01*

-X197158Y312058D01*

-X197050Y312320D01*

-X196902Y312561D01*

-X196718Y312777D01*

-X196502Y312961D01*

-X196261Y313109D01*

-X195999Y313217D01*

-X195723Y313283D01*

-X195441Y313306D01*

-X195159Y313283D01*

-X194883Y313217D01*

-X194621Y313109D01*

-X194380Y312961D01*

-X194164Y312777D01*

-X193980Y312561D01*

-X193938Y312493D01*

-Y360946D01*

-X194466Y360727D01*

-X195124Y360569D01*

-X195799Y360516D01*

-X196474Y360569D01*

-X197132Y360727D01*

-X197438Y360854D01*

-Y316305D01*

-X197159Y316283D01*

-X196883Y316217D01*

-X196621Y316109D01*

-X196380Y315961D01*

-X196164Y315777D01*

-X195980Y315561D01*

-X195832Y315320D01*

-X195724Y315058D01*

-X195658Y314782D01*

-X195635Y314500D01*

-X195658Y314218D01*

-X195724Y313942D01*

-X195832Y313680D01*

-X195980Y313439D01*

-X196164Y313223D01*

-X196380Y313039D01*

-X196621Y312891D01*

-X196883Y312783D01*

-X197159Y312717D01*

-X197438Y312695D01*

-Y310305D01*

-X197159Y310283D01*

-X196883Y310217D01*

-X196621Y310109D01*

-X196380Y309961D01*

-X196164Y309777D01*

-X195980Y309561D01*

-X195832Y309320D01*

-X195724Y309058D01*

-X195658Y308782D01*

-X195635Y308500D01*

-X195658Y308218D01*

-X195724Y307942D01*

-X195832Y307680D01*

-X195980Y307439D01*

-X196164Y307223D01*

-X196380Y307039D01*

-X196621Y306891D01*

-X196883Y306783D01*

-X197159Y306717D01*

-X197438Y306695D01*

-Y270997D01*

-X197380Y270961D01*

-X197164Y270777D01*

-X196980Y270561D01*

-X196832Y270320D01*

-X196724Y270058D01*

-X196658Y269782D01*

-X196635Y269500D01*

-X196658Y269218D01*

-X196724Y268942D01*

-X196832Y268680D01*

-X196980Y268439D01*

-X197164Y268223D01*

-X197380Y268039D01*

-X197438Y268003D01*

-Y263997D01*

-X197380Y263961D01*

-X197164Y263777D01*

-X196980Y263561D01*

-X196832Y263320D01*

-X196724Y263058D01*

-X196658Y262782D01*

-X196635Y262500D01*

-X196658Y262218D01*

-X196724Y261942D01*

-X196832Y261680D01*

-X196980Y261439D01*

-X197164Y261223D01*

-X197380Y261039D01*

-X197438Y261003D01*

-Y201627D01*

-G37*

-G36*

-Y188804D02*X197132Y188931D01*

-X196474Y189089D01*

-X195799Y189142D01*

-X195124Y189089D01*

-X194466Y188931D01*

-X193938Y188712D01*

-Y193031D01*

-X197438Y193036D01*

-Y188804D01*

-G37*

-G36*

-Y178804D02*X197132Y178931D01*

-X196474Y179089D01*

-X195799Y179142D01*

-X195124Y179089D01*

-X194466Y178931D01*

-X193938Y178712D01*

-Y180946D01*

-X194466Y180727D01*

-X195124Y180569D01*

-X195799Y180516D01*

-X196474Y180569D01*

-X197132Y180727D01*

-X197438Y180854D01*

-Y178804D01*

-G37*

-G36*

-X181938Y172913D02*X181956Y172871D01*

-X182309Y172294D01*

-X182749Y171779D01*

-X183076Y171500D01*

-X181938D01*

-Y172913D01*

-G37*

-G36*

-X193938Y178712D02*X193841Y178672D01*

-X193264Y178319D01*

-X192749Y177879D01*

-X192309Y177364D01*

-X191956Y176787D01*

-X191697Y176162D01*

-X191539Y175504D01*

-X191486Y174829D01*

-X191539Y174154D01*

-X191697Y173496D01*

-X191956Y172871D01*

-X192309Y172294D01*

-X192749Y171779D01*

-X193076Y171500D01*

-X191360D01*

-Y342644D01*

-X191363Y342643D01*

-X191645Y342666D01*

-X191921Y342732D01*

-X192183Y342840D01*

-X192424Y342988D01*

-X192640Y343172D01*

-X192824Y343388D01*

-X192972Y343629D01*

-X193080Y343891D01*

-X193146Y344167D01*

-X193163Y344449D01*

-X193146Y344731D01*

-X193080Y345007D01*

-X192972Y345269D01*

-X192824Y345510D01*

-X192640Y345726D01*

-X192424Y345910D01*

-X192183Y346058D01*

-X191921Y346166D01*

-X191645Y346232D01*

-X191363Y346255D01*

-X191360Y346254D01*

-Y397000D01*

-X193938D01*

-Y378712D01*

-X193841Y378672D01*

-X193264Y378319D01*

-X192749Y377879D01*

-X192309Y377364D01*

-X191956Y376787D01*

-X191697Y376162D01*

-X191539Y375504D01*

-X191486Y374829D01*

-X191539Y374154D01*

-X191697Y373496D01*

-X191956Y372871D01*

-X192309Y372294D01*

-X192749Y371779D01*

-X193264Y371339D01*

-X193841Y370986D01*

-X193938Y370946D01*

-Y368712D01*

-X193841Y368672D01*

-X193264Y368319D01*

-X192749Y367879D01*

-X192309Y367364D01*

-X191956Y366787D01*

-X191697Y366162D01*

-X191539Y365504D01*

-X191486Y364829D01*

-X191539Y364154D01*

-X191697Y363496D01*

-X191956Y362871D01*

-X192309Y362294D01*

-X192749Y361779D01*

-X193264Y361339D01*

-X193841Y360986D01*

-X193938Y360946D01*

-Y312493D01*

-X193832Y312320D01*

-X193724Y312058D01*

-X193658Y311782D01*

-X193635Y311500D01*

-X193658Y311218D01*

-X193724Y310942D01*

-X193832Y310680D01*

-X193938Y310507D01*

-Y238805D01*

-X193659Y238783D01*

-X193383Y238717D01*

-X193121Y238609D01*

-X192880Y238461D01*

-X192664Y238277D01*

-X192480Y238061D01*

-X192332Y237820D01*

-X192224Y237558D01*

-X192158Y237282D01*

-X192135Y237000D01*

-X192158Y236718D01*

-X192224Y236442D01*

-X192332Y236180D01*

-X192480Y235939D01*

-X192664Y235723D01*

-X192880Y235539D01*

-X193121Y235391D01*

-X193383Y235283D01*

-X193659Y235217D01*

-X193938Y235195D01*

-Y214305D01*

-X193659Y214283D01*

-X193383Y214217D01*

-X193121Y214109D01*

-X192880Y213961D01*

-X192664Y213777D01*

-X192480Y213561D01*

-X192332Y213320D01*

-X192224Y213058D01*

-X192158Y212782D01*

-X192135Y212500D01*

-X192158Y212218D01*

-X192224Y211942D01*

-X192332Y211680D01*

-X192480Y211439D01*

-X192664Y211223D01*

-X192880Y211039D01*

-X193121Y210891D01*

-X193383Y210783D01*

-X193659Y210717D01*

-X193938Y210695D01*

-Y201622D01*

-X192342Y201620D01*

-X192189Y201583D01*

-X192044Y201523D01*

-X191909Y201441D01*

-X191790Y201338D01*

-X191687Y201219D01*

-X191605Y201084D01*

-X191545Y200939D01*

-X191508Y200786D01*

-X191499Y200629D01*

-X191508Y193872D01*

-X191545Y193719D01*

-X191605Y193574D01*

-X191687Y193439D01*

-X191790Y193320D01*

-X191909Y193217D01*

-X192044Y193135D01*

-X192189Y193075D01*

-X192342Y193038D01*

-X192499Y193029D01*

-X193938Y193031D01*

-Y188712D01*

-X193841Y188672D01*

-X193264Y188319D01*

-X192749Y187879D01*

-X192309Y187364D01*

-X191956Y186787D01*

-X191697Y186162D01*

-X191539Y185504D01*

-X191486Y184829D01*

-X191539Y184154D01*

-X191697Y183496D01*

-X191956Y182871D01*

-X192309Y182294D01*

-X192749Y181779D01*

-X193264Y181339D01*

-X193841Y180986D01*

-X193938Y180946D01*

-Y178712D01*

-G37*

-G36*

-X191360Y171500D02*X188522D01*

-X188849Y171779D01*

-X189289Y172294D01*

-X189642Y172871D01*

-X189901Y173496D01*

-X190059Y174154D01*

-X190099Y174829D01*

-X190059Y175504D01*

-X189901Y176162D01*

-X189642Y176787D01*

-X189289Y177364D01*

-X188849Y177879D01*

-X188334Y178319D01*

-X187757Y178672D01*

-X187132Y178931D01*

-X186474Y179089D01*

-X185799Y179142D01*

-X185438Y179114D01*

-Y180544D01*

-X185799Y180516D01*

-X186474Y180569D01*

-X187132Y180727D01*

-X187757Y180986D01*

-X188334Y181339D01*

-X188849Y181779D01*

-X189289Y182294D01*

-X189642Y182871D01*

-X189901Y183496D01*

-X190059Y184154D01*

-X190099Y184829D01*

-X190059Y185504D01*

-X189901Y186162D01*

-X189642Y186787D01*

-X189289Y187364D01*

-X188849Y187879D01*

-X188334Y188319D01*

-X187757Y188672D01*

-X187132Y188931D01*

-X186474Y189089D01*

-X185799Y189142D01*

-X185438Y189114D01*

-Y215695D01*

-X185441Y215694D01*

-X185723Y215717D01*

-X185999Y215783D01*

-X186261Y215891D01*

-X186502Y216039D01*

-X186718Y216223D01*

-X186902Y216439D01*

-X187050Y216680D01*

-X187158Y216942D01*

-X187224Y217218D01*

-X187241Y217500D01*

-X187224Y217782D01*

-X187158Y218058D01*

-X187050Y218320D01*

-X186902Y218561D01*

-X186718Y218777D01*

-X186502Y218961D01*

-X186261Y219109D01*

-X185999Y219217D01*

-X185723Y219283D01*

-X185441Y219306D01*

-X185438Y219305D01*

-Y226195D01*

-X185441Y226194D01*

-X185723Y226217D01*

-X185999Y226283D01*

-X186261Y226391D01*

-X186502Y226539D01*

-X186718Y226723D01*

-X186902Y226939D01*

-X187050Y227180D01*

-X187158Y227442D01*

-X187224Y227718D01*

-X187241Y228000D01*

-X187224Y228282D01*

-X187158Y228558D01*

-X187050Y228820D01*

-X186902Y229061D01*

-X186718Y229277D01*

-X186502Y229461D01*

-X186261Y229609D01*

-X185999Y229717D01*

-X185723Y229783D01*

-X185441Y229806D01*

-X185438Y229805D01*

-Y360544D01*

-X185799Y360516D01*

-X186474Y360569D01*

-X187132Y360727D01*

-X187757Y360986D01*

-X188334Y361339D01*

-X188849Y361779D01*

-X189289Y362294D01*

-X189642Y362871D01*

-X189901Y363496D01*

-X190059Y364154D01*

-X190099Y364829D01*

-X190059Y365504D01*

-X189901Y366162D01*

-X189642Y366787D01*

-X189289Y367364D01*

-X188849Y367879D01*

-X188334Y368319D01*

-X187757Y368672D01*

-X187132Y368931D01*

-X186474Y369089D01*

-X185799Y369142D01*

-X185438Y369114D01*

-Y370544D01*

-X185799Y370516D01*

-X186474Y370569D01*

-X187132Y370727D01*

-X187757Y370986D01*

-X188334Y371339D01*

-X188849Y371779D01*

-X189289Y372294D01*

-X189642Y372871D01*

-X189901Y373496D01*

-X190059Y374154D01*

-X190099Y374829D01*

-X190059Y375504D01*

-X189901Y376162D01*

-X189642Y376787D01*

-X189289Y377364D01*

-X188849Y377879D01*

-X188334Y378319D01*

-X187757Y378672D01*

-X187132Y378931D01*

-X186474Y379089D01*

-X185799Y379142D01*

-X185438Y379114D01*

-Y397000D01*

-X191360D01*

-Y346254D01*

-X191081Y346232D01*

-X190805Y346166D01*

-X190543Y346058D01*

-X190302Y345910D01*

-X190086Y345726D01*

-X189902Y345510D01*

-X189754Y345269D01*

-X189646Y345007D01*

-X189580Y344731D01*

-X189557Y344449D01*

-X189580Y344167D01*

-X189646Y343891D01*

-X189754Y343629D01*

-X189902Y343388D01*

-X190086Y343172D01*

-X190302Y342988D01*

-X190543Y342840D01*

-X190805Y342732D01*

-X191081Y342666D01*

-X191360Y342644D01*

-Y171500D01*

-G37*

-G36*

-X185438Y379114D02*X185124Y379089D01*

-X184466Y378931D01*

-X183841Y378672D01*

-X183264Y378319D01*

-X182749Y377879D01*

-X182309Y377364D01*

-X181956Y376787D01*

-X181938Y376745D01*

-Y397000D01*

-X185438D01*

-Y379114D01*

-G37*

-G36*

-Y369114D02*X185124Y369089D01*

-X184466Y368931D01*

-X183841Y368672D01*

-X183264Y368319D01*

-X182749Y367879D01*

-X182309Y367364D01*

-X181956Y366787D01*

-X181938Y366745D01*

-Y372913D01*

-X181956Y372871D01*

-X182309Y372294D01*

-X182749Y371779D01*

-X183264Y371339D01*

-X183841Y370986D01*

-X184466Y370727D01*

-X185124Y370569D01*

-X185438Y370544D01*

-Y369114D01*

-G37*

-G36*

-Y189114D02*X185124Y189089D01*

-X184466Y188931D01*

-X183841Y188672D01*

-X183264Y188319D01*

-X182749Y187879D01*

-X182309Y187364D01*

-X181956Y186787D01*

-X181938Y186745D01*

-Y256695D01*

-X181941Y256694D01*

-X182223Y256717D01*

-X182499Y256783D01*

-X182761Y256891D01*

-X183002Y257039D01*

-X183218Y257223D01*

-X183402Y257439D01*

-X183550Y257680D01*

-X183658Y257942D01*

-X183724Y258218D01*

-X183741Y258500D01*

-X183724Y258782D01*

-X183658Y259058D01*

-X183550Y259320D01*

-X183402Y259561D01*

-X183218Y259777D01*

-X183002Y259961D01*

-X182761Y260109D01*

-X182499Y260217D01*

-X182223Y260283D01*

-X181941Y260306D01*

-X181938Y260305D01*

-Y362913D01*

-X181956Y362871D01*

-X182309Y362294D01*

-X182749Y361779D01*

-X183264Y361339D01*

-X183841Y360986D01*

-X184466Y360727D01*

-X185124Y360569D01*

-X185438Y360544D01*

-Y229805D01*

-X185159Y229783D01*

-X184883Y229717D01*

-X184621Y229609D01*

-X184380Y229461D01*

-X184164Y229277D01*

-X183980Y229061D01*

-X183832Y228820D01*

-X183724Y228558D01*

-X183658Y228282D01*

-X183635Y228000D01*

-X183658Y227718D01*

-X183724Y227442D01*

-X183832Y227180D01*

-X183980Y226939D01*

-X184164Y226723D01*

-X184380Y226539D01*

-X184621Y226391D01*

-X184883Y226283D01*

-X185159Y226217D01*

-X185438Y226195D01*

-Y219305D01*

-X185159Y219283D01*

-X184883Y219217D01*

-X184621Y219109D01*

-X184380Y218961D01*

-X184164Y218777D01*

-X183980Y218561D01*

-X183832Y218320D01*

-X183724Y218058D01*

-X183658Y217782D01*

-X183635Y217500D01*

-X183658Y217218D01*

-X183724Y216942D01*

-X183832Y216680D01*

-X183980Y216439D01*

-X184164Y216223D01*

-X184380Y216039D01*

-X184621Y215891D01*

-X184883Y215783D01*

-X185159Y215717D01*

-X185438Y215695D01*

-Y189114D01*

-G37*

-G36*

-Y179114D02*X185124Y179089D01*

-X184466Y178931D01*

-X183841Y178672D01*

-X183264Y178319D01*

-X182749Y177879D01*

-X182309Y177364D01*

-X181956Y176787D01*

-X181938Y176745D01*

-Y182913D01*

-X181956Y182871D01*

-X182309Y182294D01*

-X182749Y181779D01*

-X183264Y181339D01*

-X183841Y180986D01*

-X184466Y180727D01*

-X185124Y180569D01*

-X185438Y180544D01*

-Y179114D01*

-G37*

-G36*

-X181938Y176745D02*X181697Y176162D01*

-X181539Y175504D01*

-X181486Y174829D01*

-X181539Y174154D01*

-X181697Y173496D01*

-X181938Y172913D01*

-Y171500D01*

-X178884D01*

-Y171820D01*

-X179289Y172294D01*

-X179642Y172871D01*

-X179901Y173496D01*

-X180059Y174154D01*

-X180099Y174829D01*

-X180059Y175504D01*

-X179901Y176162D01*

-X179642Y176787D01*

-X179289Y177364D01*

-X178884Y177838D01*

-Y181820D01*

-X179289Y182294D01*

-X179642Y182871D01*

-X179901Y183496D01*

-X180059Y184154D01*

-X180099Y184829D01*

-X180059Y185504D01*

-X179901Y186162D01*

-X179642Y186787D01*

-X179289Y187364D01*

-X178884Y187838D01*

-Y216418D01*

-X178902Y216439D01*

-X179050Y216680D01*

-X179158Y216942D01*

-X179224Y217218D01*

-X179241Y217500D01*

-X179224Y217782D01*

-X179158Y218058D01*

-X179050Y218320D01*

-X178902Y218561D01*

-X178884Y218582D01*

-Y226918D01*

-X178902Y226939D01*

-X179050Y227180D01*

-X179158Y227442D01*

-X179224Y227718D01*

-X179241Y228000D01*

-X179224Y228282D01*

-X179158Y228558D01*

-X179050Y228820D01*

-X178902Y229061D01*

-X178884Y229082D01*

-Y341013D01*

-X178887Y341012D01*

-X179169Y341035D01*

-X179445Y341101D01*

-X179707Y341209D01*

-X179948Y341357D01*

-X180164Y341541D01*

-X180348Y341757D01*

-X180496Y341998D01*

-X180604Y342260D01*

-X180670Y342536D01*

-X180687Y342818D01*

-X180670Y343100D01*

-X180604Y343376D01*

-X180496Y343638D01*

-X180348Y343879D01*

-X180164Y344095D01*

-X179948Y344279D01*

-X179707Y344427D01*

-X179445Y344535D01*

-X179169Y344601D01*

-X178887Y344624D01*

-X178884Y344623D01*

-Y361820D01*

-X179289Y362294D01*

-X179642Y362871D01*

-X179901Y363496D01*

-X180059Y364154D01*

-X180099Y364829D01*

-X180059Y365504D01*

-X179901Y366162D01*

-X179642Y366787D01*

-X179289Y367364D01*

-X178884Y367838D01*

-Y371820D01*

-X179289Y372294D01*

-X179642Y372871D01*

-X179901Y373496D01*

-X180059Y374154D01*

-X180099Y374829D01*

-X180059Y375504D01*

-X179901Y376162D01*

-X179642Y376787D01*

-X179289Y377364D01*

-X178884Y377838D01*

-Y397000D01*

-X181938D01*

-Y376745D01*

-X181697Y376162D01*

-X181539Y375504D01*

-X181486Y374829D01*

-X181539Y374154D01*

-X181697Y373496D01*

-X181938Y372913D01*

-Y366745D01*

-X181697Y366162D01*

-X181539Y365504D01*

-X181486Y364829D01*

-X181539Y364154D01*

-X181697Y363496D01*

-X181938Y362913D01*

-Y260305D01*

-X181659Y260283D01*

-X181383Y260217D01*

-X181121Y260109D01*

-X180880Y259961D01*

-X180664Y259777D01*

-X180480Y259561D01*

-X180332Y259320D01*

-X180224Y259058D01*

-X180158Y258782D01*

-X180135Y258500D01*

-X180158Y258218D01*

-X180224Y257942D01*

-X180332Y257680D01*

-X180480Y257439D01*

-X180664Y257223D01*

-X180880Y257039D01*

-X181121Y256891D01*

-X181383Y256783D01*

-X181659Y256717D01*

-X181938Y256695D01*

-Y186745D01*

-X181697Y186162D01*

-X181539Y185504D01*

-X181486Y184829D01*

-X181539Y184154D01*

-X181697Y183496D01*

-X181938Y182913D01*

-Y176745D01*

-G37*

-G36*

-X178884Y187838D02*X178849Y187879D01*

-X178334Y188319D01*

-X177757Y188672D01*

-X177132Y188931D01*

-X176474Y189089D01*

-X175799Y189142D01*

-X175124Y189089D01*

-X174941Y189045D01*

-Y221500D01*

-X169941D01*

-X170307Y349958D01*

-X170341Y350013D01*

-X170449Y350275D01*

-X170515Y350551D01*

-X170532Y350833D01*

-X170515Y351115D01*

-X170449Y351391D01*

-X170341Y351653D01*

-X170312Y351700D01*

-X170441Y397000D01*

-X178884D01*

-Y377838D01*

-X178849Y377879D01*

-X178334Y378319D01*

-X177757Y378672D01*

-X177132Y378931D01*

-X176474Y379089D01*

-X175799Y379142D01*

-X175124Y379089D01*

-X174466Y378931D01*

-X173841Y378672D01*

-X173264Y378319D01*

-X172749Y377879D01*

-X172309Y377364D01*

-X171956Y376787D01*

-X171697Y376162D01*

-X171539Y375504D01*

-X171486Y374829D01*

-X171539Y374154D01*

-X171697Y373496D01*

-X171956Y372871D01*

-X172309Y372294D01*

-X172749Y371779D01*

-X173264Y371339D01*

-X173841Y370986D01*

-X174466Y370727D01*

-X175124Y370569D01*

-X175799Y370516D01*

-X176474Y370569D01*

-X177132Y370727D01*

-X177757Y370986D01*

-X178334Y371339D01*

-X178849Y371779D01*

-X178884Y371820D01*

-Y367838D01*

-X178849Y367879D01*

-X178334Y368319D01*

-X177757Y368672D01*

-X177132Y368931D01*

-X176474Y369089D01*

-X175799Y369142D01*

-X175124Y369089D01*

-X174466Y368931D01*

-X173841Y368672D01*

-X173264Y368319D01*

-X172749Y367879D01*

-X172309Y367364D01*

-X171956Y366787D01*

-X171697Y366162D01*

-X171539Y365504D01*

-X171486Y364829D01*

-X171539Y364154D01*

-X171697Y363496D01*

-X171956Y362871D01*

-X172309Y362294D01*

-X172749Y361779D01*

-X173264Y361339D01*

-X173841Y360986D01*

-X174466Y360727D01*

-X175124Y360569D01*

-X175799Y360516D01*

-X176474Y360569D01*

-X177132Y360727D01*

-X177757Y360986D01*

-X178334Y361339D01*

-X178849Y361779D01*

-X178884Y361820D01*

-Y344623D01*

-X178605Y344601D01*

-X178329Y344535D01*

-X178067Y344427D01*

-X177826Y344279D01*

-X177610Y344095D01*

-X177426Y343879D01*

-X177278Y343638D01*

-X177170Y343376D01*

-X177104Y343100D01*

-X177081Y342818D01*

-X177104Y342536D01*

-X177170Y342260D01*

-X177278Y341998D01*

-X177426Y341757D01*

-X177610Y341541D01*

-X177826Y341357D01*

-X178067Y341209D01*

-X178329Y341101D01*

-X178605Y341035D01*

-X178884Y341013D01*

-Y229082D01*

-X178718Y229277D01*

-X178502Y229461D01*

-X178261Y229609D01*

-X177999Y229717D01*

-X177723Y229783D01*

-X177441Y229806D01*

-X177159Y229783D01*

-X176883Y229717D01*

-X176621Y229609D01*

-X176380Y229461D01*

-X176164Y229277D01*

-X175980Y229061D01*

-X175832Y228820D01*

-X175724Y228558D01*

-X175658Y228282D01*

-X175635Y228000D01*

-X175658Y227718D01*

-X175724Y227442D01*

-X175832Y227180D01*

-X175980Y226939D01*

-X176164Y226723D01*

-X176380Y226539D01*

-X176621Y226391D01*

-X176883Y226283D01*

-X177159Y226217D01*

-X177441Y226194D01*

-X177723Y226217D01*

-X177999Y226283D01*

-X178261Y226391D01*

-X178502Y226539D01*

-X178718Y226723D01*

-X178884Y226918D01*

-Y218582D01*

-X178718Y218777D01*

-X178502Y218961D01*

-X178261Y219109D01*

-X177999Y219217D01*

-X177723Y219283D01*

-X177441Y219306D01*

-X177159Y219283D01*

-X176883Y219217D01*

-X176621Y219109D01*

-X176380Y218961D01*

-X176164Y218777D01*

-X175980Y218561D01*

-X175832Y218320D01*

-X175724Y218058D01*

-X175658Y217782D01*

-X175635Y217500D01*

-X175658Y217218D01*

-X175724Y216942D01*

-X175832Y216680D01*

-X175980Y216439D01*

-X176164Y216223D01*

-X176380Y216039D01*

-X176621Y215891D01*

-X176883Y215783D01*

-X177159Y215717D01*

-X177441Y215694D01*

-X177723Y215717D01*

-X177999Y215783D01*

-X178261Y215891D01*

-X178502Y216039D01*

-X178718Y216223D01*

-X178884Y216418D01*

-Y187838D01*

-G37*

-G36*

-Y177838D02*X178849Y177879D01*

-X178334Y178319D01*

-X177757Y178672D01*

-X177132Y178931D01*

-X176474Y179089D01*

-X175799Y179142D01*

-X175124Y179089D01*

-X174941Y179045D01*

-Y180613D01*

-X175124Y180569D01*

-X175799Y180516D01*

-X176474Y180569D01*

-X177132Y180727D01*

-X177757Y180986D01*

-X178334Y181339D01*

-X178849Y181779D01*

-X178884Y181820D01*

-Y177838D01*

-G37*

-G36*

-Y171500D02*X178522D01*

-X178849Y171779D01*

-X178884Y171820D01*

-Y171500D01*

-G37*

-G36*

-X229815D02*X228522D01*

-X228849Y171779D01*

-X229289Y172294D01*

-X229642Y172871D01*

-X229815Y173289D01*

-Y171500D01*

-G37*

-G36*

-X250941Y100000D02*Y105000D01*

-X256441D01*

-Y100000D01*

-X250941D01*

-G37*

-G36*

-X437412Y53875D02*Y58875D01*

-X442912D01*

-Y53875D01*

-X437412D01*

-G37*

-G36*

-X309438Y167500D02*X320941D01*

-Y76500D01*

-X309438D01*

-Y114947D01*

-X309480Y114879D01*

-X309664Y114663D01*

-X309880Y114479D01*

-X310121Y114331D01*

-X310383Y114223D01*

-X310659Y114157D01*

-X310941Y114134D01*

-X311223Y114157D01*

-X311499Y114223D01*

-X311761Y114331D01*

-X312002Y114479D01*

-X312218Y114663D01*

-X312402Y114879D01*

-X312550Y115120D01*

-X312658Y115382D01*

-X312724Y115658D01*

-X312741Y115940D01*

-X312724Y116222D01*

-X312658Y116498D01*

-X312550Y116760D01*

-X312402Y117001D01*

-X312218Y117217D01*

-X312002Y117401D01*

-X311761Y117549D01*

-X311499Y117657D01*

-X311223Y117723D01*

-X310941Y117746D01*

-X310659Y117723D01*

-X310383Y117657D01*

-X310121Y117549D01*

-X309880Y117401D01*

-X309664Y117217D01*

-X309480Y117001D01*

-X309438Y116933D01*

-Y134645D01*

-X309441Y134644D01*

-X309723Y134667D01*

-X309999Y134733D01*

-X310261Y134841D01*

-X310502Y134989D01*

-X310718Y135173D01*

-X310902Y135389D01*

-X311050Y135630D01*

-X311158Y135892D01*

-X311224Y136168D01*

-X311241Y136450D01*

-X311224Y136732D01*

-X311158Y137008D01*

-X311050Y137270D01*

-X310902Y137511D01*

-X310718Y137727D01*

-X310502Y137911D01*

-X310261Y138059D01*

-X309999Y138167D01*

-X309723Y138233D01*

-X309441Y138256D01*

-X309438Y138255D01*

-Y139763D01*

-X309441Y139762D01*

-X309723Y139785D01*

-X309999Y139851D01*

-X310261Y139959D01*

-X310502Y140107D01*

-X310718Y140291D01*

-X310902Y140507D01*

-X311050Y140748D01*

-X311158Y141010D01*

-X311224Y141286D01*

-X311241Y141568D01*

-X311224Y141850D01*

-X311158Y142126D01*

-X311050Y142388D01*

-X310902Y142629D01*

-X310718Y142845D01*

-X310502Y143029D01*

-X310261Y143177D01*

-X309999Y143285D01*

-X309723Y143351D01*

-X309441Y143374D01*

-X309438Y143373D01*

-Y167500D01*

-G37*

-G36*

-X305693D02*X309438D01*

-Y143373D01*

-X309159Y143351D01*

-X308883Y143285D01*

-X308621Y143177D01*

-X308380Y143029D01*

-X308164Y142845D01*

-X307980Y142629D01*

-X307832Y142388D01*

-X307724Y142126D01*

-X307658Y141850D01*

-X307635Y141568D01*

-X307658Y141286D01*

-X307724Y141010D01*

-X307832Y140748D01*

-X307980Y140507D01*

-X308164Y140291D01*

-X308380Y140107D01*

-X308621Y139959D01*

-X308883Y139851D01*

-X309159Y139785D01*

-X309438Y139763D01*

-Y138255D01*

-X309159Y138233D01*

-X308883Y138167D01*

-X308621Y138059D01*

-X308380Y137911D01*

-X308164Y137727D01*

-X307980Y137511D01*

-X307832Y137270D01*

-X307724Y137008D01*

-X307658Y136732D01*

-X307635Y136450D01*

-X307658Y136168D01*

-X307724Y135892D01*

-X307832Y135630D01*

-X307980Y135389D01*

-X308164Y135173D01*

-X308380Y134989D01*

-X308621Y134841D01*

-X308883Y134733D01*

-X309159Y134667D01*

-X309438Y134645D01*

-Y116933D01*

-X309332Y116760D01*

-X309224Y116498D01*

-X309158Y116222D01*

-X309135Y115940D01*

-X309158Y115658D01*

-X309224Y115382D01*

-X309332Y115120D01*

-X309438Y114947D01*

-Y76500D01*

-X305693D01*

-Y105695D01*

-X305696Y105694D01*

-X305978Y105717D01*

-X306254Y105783D01*

-X306516Y105891D01*

-X306757Y106039D01*

-X306973Y106223D01*

-X307157Y106439D01*

-X307305Y106680D01*

-X307413Y106942D01*

-X307479Y107218D01*

-X307496Y107500D01*

-X307479Y107782D01*

-X307413Y108058D01*

-X307305Y108320D01*

-X307157Y108561D01*

-X306973Y108777D01*

-X306757Y108961D01*

-X306516Y109109D01*

-X306254Y109217D01*

-X305978Y109283D01*

-X305696Y109306D01*

-X305693Y109305D01*

-Y167500D01*

-G37*

-G36*

-X253438D02*X305693D01*

-Y109305D01*

-X305414Y109283D01*

-X305138Y109217D01*

-X304876Y109109D01*

-X304635Y108961D01*

-X304419Y108777D01*

-X304235Y108561D01*

-X304087Y108320D01*

-X303979Y108058D01*

-X303913Y107782D01*

-X303890Y107500D01*

-X303913Y107218D01*

-X303979Y106942D01*

-X304087Y106680D01*

-X304235Y106439D01*

-X304419Y106223D01*

-X304635Y106039D01*

-X304876Y105891D01*

-X305138Y105783D01*

-X305414Y105717D01*

-X305693Y105695D01*

-Y76500D01*

-X253438D01*

-Y100695D01*

-X253441Y100694D01*

-X253723Y100717D01*

-X253999Y100783D01*

-X254261Y100891D01*

-X254502Y101039D01*

-X254718Y101223D01*

-X254902Y101439D01*

-X255050Y101680D01*

-X255158Y101942D01*

-X255224Y102218D01*

-X255241Y102500D01*

-X255224Y102782D01*

-X255158Y103058D01*

-X255050Y103320D01*

-X254902Y103561D01*

-X254718Y103777D01*

-X254502Y103961D01*

-X254261Y104109D01*

-X253999Y104217D01*

-X253723Y104283D01*

-X253441Y104306D01*

-X253438Y104305D01*

-Y167500D01*

-G37*

-G36*

-X245438D02*X253438D01*

-Y104305D01*

-X253159Y104283D01*

-X252883Y104217D01*

-X252621Y104109D01*

-X252380Y103961D01*

-X252164Y103777D01*

-X251980Y103561D01*

-X251832Y103320D01*

-X251724Y103058D01*

-X251658Y102782D01*

-X251635Y102500D01*

-X251658Y102218D01*

-X251724Y101942D01*

-X251832Y101680D01*

-X251980Y101439D01*

-X252164Y101223D01*

-X252380Y101039D01*

-X252621Y100891D01*

-X252883Y100783D01*

-X253159Y100717D01*

-X253438Y100695D01*

-Y76500D01*

-X245438D01*

-Y125695D01*

-X245441Y125694D01*

-X245723Y125717D01*

-X245999Y125783D01*

-X246261Y125891D01*

-X246502Y126039D01*

-X246718Y126223D01*

-X246902Y126439D01*

-X247050Y126680D01*

-X247158Y126942D01*

-X247224Y127218D01*

-X247241Y127500D01*

-X247224Y127782D01*

-X247158Y128058D01*

-X247050Y128320D01*

-X246902Y128561D01*

-X246718Y128777D01*

-X246502Y128961D01*

-X246261Y129109D01*

-X245999Y129217D01*

-X245723Y129283D01*

-X245441Y129306D01*

-X245438Y129305D01*

-Y167500D01*

-G37*

-G36*

-X235938D02*X245438D01*

-Y129305D01*

-X245159Y129283D01*

-X244883Y129217D01*

-X244621Y129109D01*

-X244380Y128961D01*

-X244164Y128777D01*

-X243980Y128561D01*

-X243832Y128320D01*

-X243724Y128058D01*

-X243658Y127782D01*

-X243635Y127500D01*

-X243658Y127218D01*

-X243724Y126942D01*

-X243832Y126680D01*

-X243980Y126439D01*

-X244164Y126223D01*

-X244380Y126039D01*

-X244621Y125891D01*

-X244883Y125783D01*

-X245159Y125717D01*

-X245438Y125695D01*

-Y76500D01*

-X235938D01*

-Y121498D01*

-X236050Y121680D01*

-X236158Y121942D01*

-X236224Y122218D01*

-X236241Y122500D01*

-X236224Y122782D01*

-X236158Y123058D01*

-X236050Y123320D01*

-X235938Y123502D01*

-Y131195D01*

-X235941Y131194D01*

-X236223Y131217D01*

-X236499Y131283D01*

-X236761Y131391D01*

-X237002Y131539D01*

-X237218Y131723D01*

-X237402Y131939D01*

-X237550Y132180D01*

-X237658Y132442D01*

-X237724Y132718D01*

-X237741Y133000D01*

-X237724Y133282D01*

-X237658Y133558D01*

-X237550Y133820D01*

-X237402Y134061D01*

-X237218Y134277D01*

-X237002Y134461D01*

-X236761Y134609D01*

-X236499Y134717D01*

-X236223Y134783D01*

-X235941Y134806D01*

-X235938Y134805D01*

-Y167500D01*

-G37*

-G36*

-X231438D02*X235938D01*

-Y134805D01*

-X235659Y134783D01*

-X235383Y134717D01*

-X235121Y134609D01*

-X234880Y134461D01*

-X234664Y134277D01*

-X234480Y134061D01*

-X234332Y133820D01*

-X234224Y133558D01*

-X234158Y133282D01*

-X234135Y133000D01*

-X234158Y132718D01*

-X234224Y132442D01*

-X234332Y132180D01*

-X234480Y131939D01*

-X234664Y131723D01*

-X234880Y131539D01*

-X235121Y131391D01*

-X235383Y131283D01*

-X235659Y131217D01*

-X235938Y131195D01*

-Y123502D01*

-X235902Y123561D01*

-X235718Y123777D01*

-X235502Y123961D01*

-X235261Y124109D01*

-X234999Y124217D01*

-X234723Y124283D01*

-X234441Y124306D01*

-X234159Y124283D01*

-X233883Y124217D01*

-X233621Y124109D01*

-X233380Y123961D01*

-X233164Y123777D01*

-X232980Y123561D01*

-X232832Y123320D01*

-X232724Y123058D01*

-X232658Y122782D01*

-X232635Y122500D01*

-X232658Y122218D01*

-X232724Y121942D01*

-X232832Y121680D01*

-X232980Y121439D01*

-X233164Y121223D01*

-X233380Y121039D01*

-X233621Y120891D01*

-X233883Y120783D01*

-X234159Y120717D01*

-X234441Y120694D01*

-X234723Y120717D01*

-X234999Y120783D01*

-X235261Y120891D01*

-X235502Y121039D01*

-X235718Y121223D01*

-X235902Y121439D01*

-X235938Y121498D01*

-Y76500D01*

-X231438D01*

-Y146195D01*

-X231441Y146194D01*

-X231723Y146217D01*

-X231999Y146283D01*

-X232261Y146391D01*

-X232502Y146539D01*

-X232718Y146723D01*

-X232902Y146939D01*

-X233050Y147180D01*

-X233158Y147442D01*

-X233224Y147718D01*

-X233241Y148000D01*

-X233224Y148282D01*

-X233158Y148558D01*

-X233050Y148820D01*

-X232902Y149061D01*

-X232718Y149277D01*

-X232502Y149461D01*

-X232261Y149609D01*

-X231999Y149717D01*

-X231723Y149783D01*

-X231441Y149806D01*

-X231438Y149805D01*

-Y167500D01*

-G37*

-G36*

-X223938D02*X231438D01*

-Y149805D01*

-X231159Y149783D01*

-X230883Y149717D01*

-X230621Y149609D01*

-X230380Y149461D01*

-X230164Y149277D01*

-X229980Y149061D01*

-X229832Y148820D01*

-X229724Y148558D01*

-X229658Y148282D01*

-X229635Y148000D01*

-X229658Y147718D01*

-X229724Y147442D01*

-X229832Y147180D01*

-X229980Y146939D01*

-X230164Y146723D01*

-X230380Y146539D01*

-X230621Y146391D01*

-X230883Y146283D01*

-X231159Y146217D01*

-X231438Y146195D01*

-Y76500D01*

-X223938D01*

-Y146195D01*

-X223941Y146194D01*

-X224223Y146217D01*

-X224499Y146283D01*

-X224761Y146391D01*

-X225002Y146539D01*

-X225218Y146723D01*

-X225402Y146939D01*

-X225550Y147180D01*

-X225658Y147442D01*

-X225724Y147718D01*

-X225741Y148000D01*

-X225724Y148282D01*

-X225658Y148558D01*

-X225550Y148820D01*

-X225402Y149061D01*

-X225218Y149277D01*

-X225002Y149461D01*

-X224761Y149609D01*

-X224499Y149717D01*

-X224223Y149783D01*

-X223941Y149806D01*

-X223938Y149805D01*

-Y167500D01*

-G37*

-G36*

-X208938D02*X223938D01*

-Y149805D01*

-X223659Y149783D01*

-X223383Y149717D01*

-X223121Y149609D01*

-X222880Y149461D01*

-X222664Y149277D01*

-X222480Y149061D01*

-X222332Y148820D01*

-X222224Y148558D01*

-X222158Y148282D01*

-X222135Y148000D01*

-X222158Y147718D01*

-X222224Y147442D01*

-X222332Y147180D01*

-X222480Y146939D01*

-X222664Y146723D01*

-X222880Y146539D01*

-X223121Y146391D01*

-X223383Y146283D01*

-X223659Y146217D01*

-X223938Y146195D01*

-Y76500D01*

-X208938D01*

-Y146195D01*

-X208941Y146194D01*

-X209223Y146217D01*

-X209499Y146283D01*

-X209761Y146391D01*

-X210002Y146539D01*

-X210218Y146723D01*

-X210402Y146939D01*

-X210550Y147180D01*

-X210658Y147442D01*

-X210724Y147718D01*

-X210741Y148000D01*

-X210724Y148282D01*

-X210658Y148558D01*

-X210550Y148820D01*

-X210402Y149061D01*

-X210218Y149277D01*

-X210002Y149461D01*

-X209761Y149609D01*

-X209499Y149717D01*

-X209223Y149783D01*

-X208941Y149806D01*

-X208938Y149805D01*

-Y167500D01*

-G37*

-G36*

-X198438D02*X208938D01*

-Y149805D01*

-X208659Y149783D01*

-X208383Y149717D01*

-X208121Y149609D01*

-X207880Y149461D01*

-X207664Y149277D01*

-X207480Y149061D01*

-X207332Y148820D01*

-X207224Y148558D01*

-X207158Y148282D01*

-X207135Y148000D01*

-X207158Y147718D01*

-X207224Y147442D01*

-X207332Y147180D01*

-X207480Y146939D01*

-X207664Y146723D01*

-X207880Y146539D01*

-X208121Y146391D01*

-X208383Y146283D01*

-X208659Y146217D01*

-X208938Y146195D01*

-Y76500D01*

-X198438D01*

-Y120695D01*

-X198441Y120694D01*

-X198723Y120717D01*

-X198999Y120783D01*

-X199261Y120891D01*

-X199502Y121039D01*

-X199718Y121223D01*

-X199902Y121439D01*

-X200050Y121680D01*

-X200158Y121942D01*

-X200224Y122218D01*

-X200241Y122500D01*

-X200224Y122782D01*

-X200158Y123058D01*

-X200050Y123320D01*

-X199902Y123561D01*

-X199718Y123777D01*

-X199502Y123961D01*

-X199261Y124109D01*

-X198999Y124217D01*

-X198723Y124283D01*

-X198441Y124306D01*

-X198438Y124305D01*

-Y167500D01*

-G37*

-G36*

-X195438D02*X198438D01*

-Y124305D01*

-X198159Y124283D01*

-X197883Y124217D01*

-X197621Y124109D01*

-X197380Y123961D01*

-X197164Y123777D01*

-X196980Y123561D01*

-X196832Y123320D01*

-X196724Y123058D01*

-X196658Y122782D01*

-X196635Y122500D01*

-X196658Y122218D01*

-X196724Y121942D01*

-X196832Y121680D01*

-X196980Y121439D01*

-X197164Y121223D01*

-X197380Y121039D01*

-X197621Y120891D01*

-X197883Y120783D01*

-X198159Y120717D01*

-X198438Y120695D01*

-Y76500D01*

-X195438D01*

-Y131195D01*

-X195441Y131194D01*

-X195723Y131217D01*

-X195999Y131283D01*

-X196261Y131391D01*

-X196502Y131539D01*

-X196718Y131723D01*

-X196902Y131939D01*

-X197050Y132180D01*

-X197158Y132442D01*

-X197224Y132718D01*

-X197241Y133000D01*

-X197224Y133282D01*

-X197158Y133558D01*

-X197050Y133820D01*

-X196902Y134061D01*

-X196718Y134277D01*

-X196502Y134461D01*

-X196261Y134609D01*

-X195999Y134717D01*

-X195723Y134783D01*

-X195441Y134806D01*

-X195438Y134805D01*

-Y167500D01*

-G37*

-G36*

-X193387D02*X195438D01*

-Y134805D01*

-X195159Y134783D01*

-X194883Y134717D01*

-X194621Y134609D01*

-X194380Y134461D01*

-X194164Y134277D01*

-X193980Y134061D01*

-X193832Y133820D01*

-X193724Y133558D01*

-X193658Y133282D01*

-X193635Y133000D01*

-X193658Y132718D01*

-X193724Y132442D01*

-X193832Y132180D01*

-X193980Y131939D01*

-X194164Y131723D01*

-X194380Y131539D01*

-X194621Y131391D01*

-X194883Y131283D01*

-X195159Y131217D01*

-X195438Y131195D01*

-Y76500D01*

-X193387D01*

-Y125695D01*

-X193390Y125694D01*

-X193672Y125717D01*

-X193948Y125783D01*

-X194210Y125891D01*

-X194451Y126039D01*

-X194667Y126223D01*

-X194851Y126439D01*

-X194999Y126680D01*

-X195107Y126942D01*

-X195173Y127218D01*

-X195190Y127500D01*

-X195173Y127782D01*

-X195107Y128058D01*

-X194999Y128320D01*

-X194851Y128561D01*

-X194667Y128777D01*

-X194451Y128961D01*

-X194210Y129109D01*

-X193948Y129217D01*

-X193672Y129283D01*

-X193390Y129306D01*

-X193387Y129305D01*

-Y167500D01*

-G37*

-G36*

-X183938D02*X193387D01*

-Y129305D01*

-X193108Y129283D01*

-X192832Y129217D01*

-X192570Y129109D01*

-X192329Y128961D01*

-X192113Y128777D01*

-X191929Y128561D01*

-X191781Y128320D01*

-X191673Y128058D01*

-X191607Y127782D01*

-X191584Y127500D01*

-X191607Y127218D01*

-X191673Y126942D01*

-X191781Y126680D01*

-X191929Y126439D01*

-X192113Y126223D01*

-X192329Y126039D01*

-X192570Y125891D01*

-X192832Y125783D01*

-X193108Y125717D01*

-X193387Y125695D01*

-Y76500D01*

-X183938D01*

-Y102195D01*

-X183941Y102194D01*

-X184223Y102217D01*

-X184499Y102283D01*

-X184761Y102391D01*

-X185002Y102539D01*

-X185218Y102723D01*

-X185402Y102939D01*

-X185550Y103180D01*

-X185658Y103442D01*

-X185724Y103718D01*

-X185741Y104000D01*

-X185724Y104282D01*

-X185658Y104558D01*

-X185550Y104820D01*

-X185402Y105061D01*

-X185218Y105277D01*

-X185002Y105461D01*

-X184761Y105609D01*

-X184499Y105717D01*

-X184223Y105783D01*

-X183941Y105806D01*

-X183938Y105805D01*

-Y167500D01*

-G37*

-G36*

-X169438Y216500D02*X173441D01*

-Y188427D01*

-X173264Y188319D01*

-X172749Y187879D01*

-X172309Y187364D01*

-X171956Y186787D01*

-X171697Y186162D01*

-X171539Y185504D01*

-X171486Y184829D01*

-X171539Y184154D01*

-X171697Y183496D01*

-X171956Y182871D01*

-X172309Y182294D01*

-X172749Y181779D01*

-X173264Y181339D01*

-X173441Y181231D01*

-Y178427D01*

-X173264Y178319D01*

-X172749Y177879D01*

-X172309Y177364D01*

-X171956Y176787D01*

-X171697Y176162D01*

-X171539Y175504D01*

-X171486Y174829D01*

-X171539Y174154D01*

-X171697Y173496D01*

-X171956Y172871D01*

-X172309Y172294D01*

-X172749Y171779D01*

-X173264Y171339D01*

-X173441Y171231D01*

-Y167500D01*

-X183938D01*

-Y105805D01*

-X183659Y105783D01*

-X183383Y105717D01*

-X183121Y105609D01*

-X182880Y105461D01*

-X182664Y105277D01*

-X182480Y105061D01*

-X182332Y104820D01*

-X182224Y104558D01*

-X182158Y104282D01*

-X182135Y104000D01*

-X182158Y103718D01*

-X182224Y103442D01*

-X182332Y103180D01*

-X182480Y102939D01*

-X182664Y102723D01*

-X182880Y102539D01*

-X183121Y102391D01*

-X183383Y102283D01*

-X183659Y102217D01*

-X183938Y102195D01*

-Y76500D01*

-X169438D01*

-Y172538D01*

-X169642Y172871D01*

-X169901Y173496D01*

-X170059Y174154D01*

-X170099Y174829D01*

-X170059Y175504D01*

-X169901Y176162D01*

-X169642Y176787D01*

-X169438Y177120D01*

-Y182538D01*

-X169642Y182871D01*

-X169901Y183496D01*

-X170059Y184154D01*

-X170099Y184829D01*

-X170059Y185504D01*

-X169901Y186162D01*

-X169642Y186787D01*

-X169438Y187120D01*

-Y199695D01*

-X169441Y199694D01*

-X169723Y199717D01*

-X169999Y199783D01*

-X170261Y199891D01*

-X170502Y200039D01*

-X170718Y200223D01*

-X170902Y200439D01*

-X171050Y200680D01*

-X171158Y200942D01*

-X171224Y201218D01*

-X171241Y201500D01*

-X171224Y201782D01*

-X171158Y202058D01*

-X171050Y202320D01*

-X170902Y202561D01*

-X170718Y202777D01*

-X170502Y202961D01*

-X170261Y203109D01*

-X169999Y203217D01*

-X169723Y203283D01*

-X169441Y203306D01*

-X169438Y203305D01*

-Y206695D01*

-X169441Y206694D01*

-X169723Y206717D01*

-X169999Y206783D01*

-X170261Y206891D01*

-X170502Y207039D01*

-X170718Y207223D01*

-X170902Y207439D01*

-X171050Y207680D01*

-X171158Y207942D01*

-X171224Y208218D01*

-X171241Y208500D01*

-X171224Y208782D01*

-X171158Y209058D01*

-X171050Y209320D01*

-X170902Y209561D01*

-X170718Y209777D01*

-X170502Y209961D01*

-X170261Y210109D01*

-X169999Y210217D01*

-X169723Y210283D01*

-X169441Y210306D01*

-X169438Y210305D01*

-Y212195D01*

-X169441Y212194D01*

-X169723Y212217D01*

-X169999Y212283D01*

-X170261Y212391D01*

-X170502Y212539D01*

-X170718Y212723D01*

-X170902Y212939D01*

-X171050Y213180D01*

-X171158Y213442D01*

-X171224Y213718D01*

-X171241Y214000D01*

-X171224Y214282D01*

-X171158Y214558D01*

-X171050Y214820D01*

-X170902Y215061D01*

-X170718Y215277D01*

-X170502Y215461D01*

-X170261Y215609D01*

-X169999Y215717D01*

-X169723Y215783D01*

-X169441Y215806D01*

-X169438Y215805D01*

-Y216500D01*

-G37*

-G36*

-Y177120D02*X169289Y177364D01*

-X168849Y177879D01*

-X168334Y178319D01*

-X167757Y178672D01*

-X167132Y178931D01*

-X166474Y179089D01*

-X166438Y179092D01*

-Y180566D01*

-X166474Y180569D01*

-X167132Y180727D01*

-X167757Y180986D01*

-X168334Y181339D01*

-X168849Y181779D01*

-X169289Y182294D01*

-X169438Y182538D01*

-Y177120D01*

-G37*

-G36*

-Y76500D02*X166438D01*

-Y102195D01*

-X166441Y102194D01*

-X166723Y102217D01*

-X166999Y102283D01*

-X167261Y102391D01*

-X167502Y102539D01*

-X167718Y102723D01*

-X167902Y102939D01*

-X168050Y103180D01*

-X168158Y103442D01*

-X168224Y103718D01*

-X168241Y104000D01*

-X168224Y104282D01*

-X168158Y104558D01*

-X168050Y104820D01*

-X167902Y105061D01*

-X167718Y105277D01*

-X167502Y105461D01*

-X167261Y105609D01*

-X166999Y105717D01*

-X166723Y105783D01*

-X166441Y105806D01*

-X166438Y105805D01*

-Y170566D01*

-X166474Y170569D01*

-X167132Y170727D01*

-X167757Y170986D01*

-X168334Y171339D01*

-X168849Y171779D01*

-X169289Y172294D01*

-X169438Y172538D01*

-Y76500D01*

-G37*

-G36*

-X166438Y278500D02*X168441D01*

-Y216500D01*

-X169438D01*

-Y215805D01*

-X169159Y215783D01*

-X168883Y215717D01*

-X168621Y215609D01*

-X168380Y215461D01*

-X168164Y215277D01*

-X167980Y215061D01*

-X167832Y214820D01*

-X167724Y214558D01*

-X167658Y214282D01*

-X167635Y214000D01*

-X167658Y213718D01*

-X167724Y213442D01*

-X167832Y213180D01*

-X167980Y212939D01*

-X168164Y212723D01*

-X168380Y212539D01*

-X168621Y212391D01*

-X168883Y212283D01*

-X169159Y212217D01*

-X169438Y212195D01*

-Y210305D01*

-X169159Y210283D01*

-X168883Y210217D01*

-X168621Y210109D01*

-X168380Y209961D01*

-X168164Y209777D01*

-X167980Y209561D01*

-X167832Y209320D01*

-X167724Y209058D01*

-X167658Y208782D01*

-X167635Y208500D01*

-X167658Y208218D01*

-X167724Y207942D01*

-X167832Y207680D01*

-X167980Y207439D01*

-X168164Y207223D01*

-X168380Y207039D01*

-X168621Y206891D01*

-X168883Y206783D01*

-X169159Y206717D01*

-X169438Y206695D01*

-Y203305D01*

-X169159Y203283D01*

-X168883Y203217D01*

-X168621Y203109D01*

-X168380Y202961D01*

-X168164Y202777D01*

-X167980Y202561D01*

-X167832Y202320D01*

-X167724Y202058D01*

-X167658Y201782D01*

-X167635Y201500D01*

-X167658Y201218D01*

-X167724Y200942D01*

-X167832Y200680D01*

-X167980Y200439D01*

-X168164Y200223D01*

-X168380Y200039D01*

-X168621Y199891D01*

-X168883Y199783D01*

-X169159Y199717D01*

-X169438Y199695D01*

-Y187120D01*

-X169289Y187364D01*

-X168849Y187879D01*

-X168334Y188319D01*

-X167757Y188672D01*

-X167132Y188931D01*

-X166474Y189089D01*

-X166438Y189092D01*

-Y191270D01*

-X166659Y191217D01*

-X166941Y191194D01*

-X167223Y191217D01*

-X167499Y191283D01*

-X167761Y191391D01*

-X168002Y191539D01*

-X168218Y191723D01*

-X168402Y191939D01*

-X168550Y192180D01*

-X168658Y192442D01*

-X168724Y192718D01*

-X168741Y193000D01*

-X168724Y193282D01*

-X168658Y193558D01*

-X168550Y193820D01*

-X168402Y194061D01*

-X168218Y194277D01*

-X168002Y194461D01*

-X167761Y194609D01*

-X167499Y194717D01*

-X167223Y194783D01*

-X166941Y194806D01*

-X166659Y194783D01*

-X166438Y194730D01*

-Y195770D01*

-X166659Y195717D01*

-X166941Y195694D01*

-X167223Y195717D01*

-X167499Y195783D01*

-X167761Y195891D01*

-X168002Y196039D01*

-X168218Y196223D01*

-X168402Y196439D01*

-X168550Y196680D01*

-X168658Y196942D01*

-X168724Y197218D01*

-X168741Y197500D01*

-X168724Y197782D01*

-X168658Y198058D01*

-X168550Y198320D01*

-X168402Y198561D01*

-X168218Y198777D01*

-X168002Y198961D01*

-X167761Y199109D01*

-X167499Y199217D01*

-X167223Y199283D01*

-X166941Y199306D01*

-X166659Y199283D01*

-X166438Y199230D01*

-Y218768D01*

-X166499Y218783D01*

-X166761Y218891D01*

-X167002Y219039D01*

-X167218Y219223D01*

-X167402Y219439D01*

-X167550Y219680D01*

-X167658Y219942D01*

-X167724Y220218D01*

-X167741Y220500D01*

-X167724Y220782D01*

-X167658Y221058D01*

-X167550Y221320D01*

-X167402Y221561D01*

-X167218Y221777D01*

-X167002Y221961D01*

-X166761Y222109D01*

-X166499Y222217D01*

-X166438Y222232D01*

-Y224768D01*

-X166499Y224783D01*

-X166761Y224891D01*

-X167002Y225039D01*

-X167218Y225223D01*

-X167402Y225439D01*

-X167550Y225680D01*

-X167658Y225942D01*

-X167724Y226218D01*

-X167741Y226500D01*

-X167724Y226782D01*

-X167658Y227058D01*

-X167550Y227320D01*

-X167402Y227561D01*

-X167218Y227777D01*

-X167002Y227961D01*

-X166761Y228109D01*

-X166499Y228217D01*

-X166438Y228232D01*

-Y229268D01*

-X166499Y229283D01*

-X166761Y229391D01*

-X167002Y229539D01*

-X167218Y229723D01*

-X167402Y229939D01*

-X167550Y230180D01*

-X167658Y230442D01*

-X167724Y230718D01*

-X167741Y231000D01*

-X167724Y231282D01*

-X167658Y231558D01*

-X167550Y231820D01*

-X167402Y232061D01*

-X167218Y232277D01*

-X167002Y232461D01*

-X166761Y232609D01*

-X166499Y232717D01*

-X166438Y232732D01*

-Y278500D01*

-G37*

-G36*

-X163938Y170946D02*X164466Y170727D01*

-X165124Y170569D01*

-X165799Y170516D01*

-X166438Y170566D01*

-Y105805D01*

-X166159Y105783D01*

-X165883Y105717D01*

-X165621Y105609D01*

-X165380Y105461D01*

-X165164Y105277D01*

-X164980Y105061D01*

-X164832Y104820D01*

-X164724Y104558D01*

-X164658Y104282D01*

-X164635Y104000D01*

-X164658Y103718D01*

-X164724Y103442D01*

-X164832Y103180D01*

-X164980Y102939D01*

-X165164Y102723D01*

-X165380Y102539D01*

-X165621Y102391D01*

-X165883Y102283D01*

-X166159Y102217D01*

-X166438Y102195D01*

-Y76500D01*

-X163938D01*

-Y125695D01*

-X163941Y125694D01*

-X164223Y125717D01*

-X164499Y125783D01*

-X164761Y125891D01*

-X165002Y126039D01*

-X165218Y126223D01*

-X165402Y126439D01*

-X165550Y126680D01*

-X165658Y126942D01*

-X165724Y127218D01*

-X165741Y127500D01*

-X165724Y127782D01*

-X165658Y128058D01*

-X165550Y128320D01*

-X165402Y128561D01*

-X165218Y128777D01*

-X165002Y128961D01*

-X164761Y129109D01*

-X164499Y129217D01*

-X164223Y129283D01*

-X163941Y129306D01*

-X163938Y129305D01*

-Y170946D01*

-G37*

-G36*

-X161938Y172913D02*X161956Y172871D01*

-X162309Y172294D01*

-X162749Y171779D01*

-X163264Y171339D01*

-X163841Y170986D01*

-X163938Y170946D01*

-Y129305D01*

-X163659Y129283D01*

-X163383Y129217D01*

-X163121Y129109D01*

-X162880Y128961D01*

-X162664Y128777D01*

-X162480Y128561D01*

-X162332Y128320D01*

-X162224Y128058D01*

-X162158Y127782D01*

-X162135Y127500D01*

-X162158Y127218D01*

-X162224Y126942D01*

-X162332Y126680D01*

-X162480Y126439D01*

-X162664Y126223D01*

-X162880Y126039D01*

-X163121Y125891D01*

-X163383Y125783D01*

-X163659Y125717D01*

-X163938Y125695D01*

-Y76500D01*

-X161938D01*

-Y172913D01*

-G37*

-G36*

-Y182913D02*X161956Y182871D01*

-X162309Y182294D01*

-X162749Y181779D01*

-X163264Y181339D01*

-X163841Y180986D01*

-X164466Y180727D01*

-X165124Y180569D01*

-X165799Y180516D01*

-X166438Y180566D01*

-Y179092D01*

-X165799Y179142D01*

-X165124Y179089D01*

-X164466Y178931D01*

-X163841Y178672D01*

-X163264Y178319D01*

-X162749Y177879D01*

-X162309Y177364D01*

-X161956Y176787D01*

-X161938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y278500D02*X166438D01*

-Y232732D01*

-X166223Y232783D01*

-X165941Y232806D01*

-X165659Y232783D01*

-X165383Y232717D01*

-X165121Y232609D01*

-X164880Y232461D01*

-X164664Y232277D01*

-X164480Y232061D01*

-X164332Y231820D01*

-X164224Y231558D01*

-X164158Y231282D01*

-X164135Y231000D01*

-X164158Y230718D01*

-X164224Y230442D01*

-X164332Y230180D01*

-X164480Y229939D01*

-X164664Y229723D01*

-X164880Y229539D01*

-X165121Y229391D01*

-X165383Y229283D01*

-X165659Y229217D01*

-X165941Y229194D01*

-X166223Y229217D01*

-X166438Y229268D01*

-Y228232D01*

-X166223Y228283D01*

-X165941Y228306D01*

-X165659Y228283D01*

-X165383Y228217D01*

-X165121Y228109D01*

-X164880Y227961D01*

-X164664Y227777D01*

-X164480Y227561D01*

-X164332Y227320D01*

-X164224Y227058D01*

-X164158Y226782D01*

-X164135Y226500D01*

-X164158Y226218D01*

-X164224Y225942D01*

-X164332Y225680D01*

-X164480Y225439D01*

-X164664Y225223D01*

-X164880Y225039D01*

-X165121Y224891D01*

-X165383Y224783D01*

-X165659Y224717D01*

-X165941Y224694D01*

-X166223Y224717D01*

-X166438Y224768D01*

-Y222232D01*

-X166223Y222283D01*

-X165941Y222306D01*

-X165659Y222283D01*

-X165383Y222217D01*

-X165121Y222109D01*

-X164880Y221961D01*

-X164664Y221777D01*

-X164480Y221561D01*

-X164332Y221320D01*

-X164224Y221058D01*

-X164158Y220782D01*

-X164135Y220500D01*

-X164158Y220218D01*

-X164224Y219942D01*

-X164332Y219680D01*

-X164480Y219439D01*

-X164664Y219223D01*

-X164880Y219039D01*

-X165121Y218891D01*

-X165383Y218783D01*

-X165659Y218717D01*

-X165941Y218694D01*

-X166223Y218717D01*

-X166438Y218768D01*

-Y199230D01*

-X166383Y199217D01*

-X166121Y199109D01*

-X165880Y198961D01*

-X165664Y198777D01*

-X165480Y198561D01*

-X165332Y198320D01*

-X165224Y198058D01*

-X165158Y197782D01*

-X165135Y197500D01*

-X165158Y197218D01*

-X165224Y196942D01*

-X165332Y196680D01*

-X165480Y196439D01*

-X165664Y196223D01*

-X165880Y196039D01*

-X166121Y195891D01*

-X166383Y195783D01*

-X166438Y195770D01*

-Y194730D01*

-X166383Y194717D01*

-X166121Y194609D01*

-X165880Y194461D01*

-X165664Y194277D01*

-X165480Y194061D01*

-X165332Y193820D01*

-X165224Y193558D01*

-X165158Y193282D01*

-X165135Y193000D01*

-X165158Y192718D01*

-X165224Y192442D01*

-X165332Y192180D01*

-X165480Y191939D01*

-X165664Y191723D01*

-X165880Y191539D01*

-X166121Y191391D01*

-X166383Y191283D01*

-X166438Y191270D01*

-Y189092D01*

-X165799Y189142D01*

-X165124Y189089D01*

-X164466Y188931D01*

-X163841Y188672D01*

-X163264Y188319D01*

-X162749Y187879D01*

-X162309Y187364D01*

-X161956Y186787D01*

-X161938Y186745D01*

-Y191195D01*

-X161941Y191194D01*

-X162223Y191217D01*

-X162499Y191283D01*

-X162761Y191391D01*

-X163002Y191539D01*

-X163218Y191723D01*

-X163402Y191939D01*

-X163550Y192180D01*

-X163658Y192442D01*

-X163724Y192718D01*

-X163741Y193000D01*

-X163724Y193282D01*

-X163658Y193558D01*

-X163550Y193820D01*

-X163402Y194061D01*

-X163218Y194277D01*

-X163002Y194461D01*

-X162761Y194609D01*

-X162499Y194717D01*

-X162223Y194783D01*

-X161941Y194806D01*

-X161938Y194805D01*

-Y197195D01*

-X161941Y197194D01*

-X162223Y197217D01*

-X162499Y197283D01*

-X162761Y197391D01*

-X163002Y197539D01*

-X163218Y197723D01*

-X163402Y197939D01*

-X163550Y198180D01*

-X163658Y198442D01*

-X163724Y198718D01*

-X163741Y199000D01*

-X163724Y199282D01*

-X163658Y199558D01*

-X163550Y199820D01*

-X163402Y200061D01*

-X163218Y200277D01*

-X163002Y200461D01*

-X162761Y200609D01*

-X162499Y200717D01*

-X162223Y200783D01*

-X161941Y200806D01*

-X161938Y200805D01*

-Y240770D01*

-X162159Y240717D01*

-X162441Y240694D01*

-X162723Y240717D01*

-X162999Y240783D01*

-X163261Y240891D01*

-X163502Y241039D01*

-X163718Y241223D01*

-X163902Y241439D01*

-X164050Y241680D01*

-X164158Y241942D01*

-X164224Y242218D01*

-X164241Y242500D01*

-X164224Y242782D01*

-X164158Y243058D01*

-X164050Y243320D01*

-X163902Y243561D01*

-X163718Y243777D01*

-X163502Y243961D01*

-X163261Y244109D01*

-X162999Y244217D01*

-X162723Y244283D01*

-X162441Y244306D01*

-X162159Y244283D01*

-X161938Y244230D01*

-Y246770D01*

-X162159Y246717D01*

-X162441Y246694D01*

-X162723Y246717D01*

-X162999Y246783D01*

-X163261Y246891D01*

-X163502Y247039D01*

-X163718Y247223D01*

-X163902Y247439D01*

-X164050Y247680D01*

-X164158Y247942D01*

-X164224Y248218D01*

-X164241Y248500D01*

-X164224Y248782D01*

-X164158Y249058D01*

-X164050Y249320D01*

-X163902Y249561D01*

-X163718Y249777D01*

-X163502Y249961D01*

-X163261Y250109D01*

-X162999Y250217D01*

-X162723Y250283D01*

-X162441Y250306D01*

-X162159Y250283D01*

-X161938Y250230D01*

-Y253195D01*

-X161941Y253194D01*

-X162223Y253217D01*

-X162499Y253283D01*

-X162761Y253391D01*

-X163002Y253539D01*

-X163218Y253723D01*

-X163402Y253939D01*

-X163550Y254180D01*

-X163658Y254442D01*

-X163724Y254718D01*

-X163741Y255000D01*

-X163724Y255282D01*

-X163658Y255558D01*

-X163550Y255820D01*

-X163402Y256061D01*

-X163218Y256277D01*

-X163002Y256461D01*

-X162761Y256609D01*

-X162499Y256717D01*

-X162223Y256783D01*

-X161941Y256806D01*

-X161938Y256805D01*

-Y260770D01*

-X162159Y260717D01*

-X162441Y260694D01*

-X162723Y260717D01*

-X162999Y260783D01*

-X163261Y260891D01*

-X163502Y261039D01*

-X163718Y261223D01*

-X163902Y261439D01*

-X164050Y261680D01*

-X164158Y261942D01*

-X164224Y262218D01*

-X164241Y262500D01*

-X164224Y262782D01*

-X164158Y263058D01*

-X164050Y263320D01*

-X163902Y263561D01*

-X163718Y263777D01*

-X163502Y263961D01*

-X163261Y264109D01*

-X162999Y264217D01*

-X162723Y264283D01*

-X162441Y264306D01*

-X162159Y264283D01*

-X161938Y264230D01*

-Y267003D01*

-X162121Y266891D01*

-X162383Y266783D01*

-X162659Y266717D01*

-X162941Y266694D01*

-X163223Y266717D01*

-X163499Y266783D01*

-X163761Y266891D01*

-X164002Y267039D01*

-X164218Y267223D01*

-X164402Y267439D01*

-X164550Y267680D01*

-X164658Y267942D01*

-X164724Y268218D01*

-X164741Y268500D01*

-X164724Y268782D01*

-X164658Y269058D01*

-X164550Y269320D01*

-X164402Y269561D01*

-X164218Y269777D01*

-X164002Y269961D01*

-X163761Y270109D01*

-X163499Y270217D01*

-X163223Y270283D01*

-X162941Y270306D01*

-X162659Y270283D01*

-X162383Y270217D01*

-X162121Y270109D01*

-X161938Y269997D01*

-Y273003D01*

-X162121Y272891D01*

-X162383Y272783D01*

-X162659Y272717D01*

-X162941Y272694D01*

-X163223Y272717D01*

-X163499Y272783D01*

-X163761Y272891D01*

-X164002Y273039D01*

-X164218Y273223D01*

-X164402Y273439D01*

-X164550Y273680D01*

-X164658Y273942D01*

-X164724Y274218D01*

-X164741Y274500D01*

-X164724Y274782D01*

-X164658Y275058D01*

-X164550Y275320D01*

-X164402Y275561D01*

-X164218Y275777D01*

-X164002Y275961D01*

-X163761Y276109D01*

-X163499Y276217D01*

-X163223Y276283D01*

-X162941Y276306D01*

-X162659Y276283D01*

-X162383Y276217D01*

-X162121Y276109D01*

-X161938Y275997D01*

-Y278500D01*

-G37*

-G36*

-X152438Y342500D02*X156941D01*

-Y329826D01*

-X156832Y329649D01*

-X156724Y329387D01*

-X156658Y329111D01*

-X156635Y328829D01*

-X156658Y328547D01*

-X156724Y328271D01*

-X156832Y328009D01*

-X156941Y327832D01*

-Y327497D01*

-X156832Y327320D01*

-X156724Y327058D01*

-X156658Y326782D01*

-X156635Y326500D01*

-X156658Y326218D01*

-X156724Y325942D01*

-X156832Y325680D01*

-X156941Y325503D01*

-Y324826D01*

-X156832Y324649D01*

-X156724Y324387D01*

-X156658Y324111D01*

-X156635Y323829D01*

-X156658Y323547D01*

-X156724Y323271D01*

-X156832Y323009D01*

-X156941Y322832D01*

-Y278500D01*

-X161938D01*

-Y275997D01*

-X161880Y275961D01*

-X161664Y275777D01*

-X161480Y275561D01*

-X161332Y275320D01*

-X161224Y275058D01*

-X161158Y274782D01*

-X161135Y274500D01*

-X161158Y274218D01*

-X161224Y273942D01*

-X161332Y273680D01*

-X161480Y273439D01*

-X161664Y273223D01*

-X161880Y273039D01*

-X161938Y273003D01*

-Y269997D01*

-X161880Y269961D01*

-X161664Y269777D01*

-X161480Y269561D01*

-X161332Y269320D01*

-X161224Y269058D01*

-X161158Y268782D01*

-X161135Y268500D01*

-X161158Y268218D01*

-X161224Y267942D01*

-X161332Y267680D01*

-X161480Y267439D01*

-X161664Y267223D01*

-X161880Y267039D01*

-X161938Y267003D01*

-Y264230D01*

-X161883Y264217D01*

-X161621Y264109D01*

-X161380Y263961D01*

-X161164Y263777D01*

-X160980Y263561D01*

-X160832Y263320D01*

-X160724Y263058D01*

-X160658Y262782D01*

-X160635Y262500D01*

-X160658Y262218D01*

-X160724Y261942D01*

-X160832Y261680D01*

-X160980Y261439D01*

-X161164Y261223D01*

-X161380Y261039D01*

-X161621Y260891D01*

-X161883Y260783D01*

-X161938Y260770D01*

-Y256805D01*

-X161659Y256783D01*

-X161383Y256717D01*

-X161121Y256609D01*

-X160880Y256461D01*

-X160664Y256277D01*

-X160480Y256061D01*

-X160332Y255820D01*

-X160224Y255558D01*

-X160158Y255282D01*

-X160135Y255000D01*

-X160158Y254718D01*

-X160224Y254442D01*

-X160332Y254180D01*

-X160480Y253939D01*

-X160664Y253723D01*

-X160880Y253539D01*

-X161121Y253391D01*

-X161383Y253283D01*

-X161659Y253217D01*

-X161938Y253195D01*

-Y250230D01*

-X161883Y250217D01*

-X161621Y250109D01*

-X161380Y249961D01*

-X161164Y249777D01*

-X160980Y249561D01*

-X160832Y249320D01*

-X160724Y249058D01*

-X160658Y248782D01*

-X160635Y248500D01*

-X160658Y248218D01*

-X160724Y247942D01*

-X160832Y247680D01*

-X160980Y247439D01*

-X161164Y247223D01*

-X161380Y247039D01*

-X161621Y246891D01*

-X161883Y246783D01*

-X161938Y246770D01*

-Y244230D01*

-X161883Y244217D01*

-X161621Y244109D01*

-X161380Y243961D01*

-X161164Y243777D01*

-X160980Y243561D01*

-X160832Y243320D01*

-X160724Y243058D01*

-X160658Y242782D01*

-X160635Y242500D01*

-X160658Y242218D01*

-X160724Y241942D01*

-X160832Y241680D01*

-X160980Y241439D01*

-X161164Y241223D01*

-X161380Y241039D01*

-X161621Y240891D01*

-X161883Y240783D01*

-X161938Y240770D01*

-Y200805D01*

-X161659Y200783D01*

-X161383Y200717D01*

-X161121Y200609D01*

-X160880Y200461D01*

-X160664Y200277D01*

-X160480Y200061D01*

-X160332Y199820D01*

-X160224Y199558D01*

-X160158Y199282D01*

-X160135Y199000D01*

-X160158Y198718D01*

-X160224Y198442D01*

-X160332Y198180D01*

-X160480Y197939D01*

-X160664Y197723D01*

-X160880Y197539D01*

-X161121Y197391D01*

-X161383Y197283D01*

-X161659Y197217D01*

-X161938Y197195D01*

-Y194805D01*

-X161659Y194783D01*

-X161383Y194717D01*

-X161121Y194609D01*

-X160880Y194461D01*

-X160664Y194277D01*

-X160480Y194061D01*

-X160332Y193820D01*

-X160224Y193558D01*

-X160158Y193282D01*

-X160135Y193000D01*

-X160158Y192718D01*

-X160224Y192442D01*

-X160332Y192180D01*

-X160480Y191939D01*

-X160664Y191723D01*

-X160880Y191539D01*

-X161121Y191391D01*

-X161383Y191283D01*

-X161659Y191217D01*

-X161938Y191195D01*

-Y186745D01*

-X161697Y186162D01*

-X161539Y185504D01*

-X161486Y184829D01*

-X161539Y184154D01*

-X161697Y183496D01*

-X161938Y182913D01*

-Y176745D01*

-X161697Y176162D01*

-X161539Y175504D01*

-X161486Y174829D01*

-X161539Y174154D01*

-X161697Y173496D01*

-X161938Y172913D01*

-Y76500D01*

-X152438D01*

-Y119695D01*

-X152441Y119694D01*

-X152723Y119717D01*

-X152999Y119783D01*

-X153261Y119891D01*

-X153502Y120039D01*

-X153718Y120223D01*

-X153902Y120439D01*

-X154050Y120680D01*

-X154158Y120942D01*

-X154224Y121218D01*

-X154241Y121500D01*

-X154224Y121782D01*

-X154158Y122058D01*

-X154050Y122320D01*

-X153902Y122561D01*

-X153718Y122777D01*

-X153502Y122961D01*

-X153261Y123109D01*

-X152999Y123217D01*

-X152723Y123283D01*

-X152441Y123306D01*

-X152438Y123305D01*

-Y130268D01*

-X152499Y130283D01*

-X152761Y130391D01*

-X153002Y130539D01*

-X153218Y130723D01*

-X153402Y130939D01*

-X153550Y131180D01*

-X153658Y131442D01*

-X153724Y131718D01*

-X153741Y132000D01*

-X153724Y132282D01*

-X153658Y132558D01*

-X153550Y132820D01*

-X153402Y133061D01*

-X153218Y133277D01*

-X153002Y133461D01*

-X152761Y133609D01*

-X152499Y133717D01*

-X152438Y133732D01*

-Y172143D01*

-X152749Y171779D01*

-X153264Y171339D01*

-X153841Y170986D01*

-X154466Y170727D01*

-X155124Y170569D01*

-X155799Y170516D01*

-X156474Y170569D01*

-X157132Y170727D01*

-X157757Y170986D01*

-X158334Y171339D01*

-X158849Y171779D01*

-X159289Y172294D01*

-X159642Y172871D01*

-X159901Y173496D01*

-X160059Y174154D01*

-X160099Y174829D01*

-X160059Y175504D01*

-X159901Y176162D01*

-X159642Y176787D01*

-X159289Y177364D01*

-X158849Y177879D01*

-X158334Y178319D01*

-X157757Y178672D01*

-X157132Y178931D01*

-X156474Y179089D01*

-X155799Y179142D01*

-X155124Y179089D01*

-X154466Y178931D01*

-X153841Y178672D01*

-X153264Y178319D01*

-X152749Y177879D01*

-X152438Y177515D01*

-Y182143D01*

-X152749Y181779D01*

-X153264Y181339D01*

-X153841Y180986D01*

-X154466Y180727D01*

-X155124Y180569D01*

-X155799Y180516D01*

-X156474Y180569D01*

-X157132Y180727D01*

-X157757Y180986D01*

-X158334Y181339D01*

-X158849Y181779D01*

-X159289Y182294D01*

-X159642Y182871D01*

-X159901Y183496D01*

-X160059Y184154D01*

-X160099Y184829D01*

-X160059Y185504D01*

-X159901Y186162D01*

-X159642Y186787D01*

-X159289Y187364D01*

-X158849Y187879D01*

-X158334Y188319D01*

-X157757Y188672D01*

-X157132Y188931D01*

-X156474Y189089D01*

-X155799Y189142D01*

-X155124Y189089D01*

-X154466Y188931D01*

-X153841Y188672D01*

-X153264Y188319D01*

-X152749Y187879D01*

-X152438Y187515D01*

-Y337007D01*

-X152480Y336939D01*

-X152664Y336723D01*

-X152880Y336539D01*

-X153121Y336391D01*

-X153383Y336283D01*

-X153659Y336217D01*

-X153941Y336194D01*

-X154223Y336217D01*

-X154499Y336283D01*

-X154761Y336391D01*

-X155002Y336539D01*

-X155218Y336723D01*

-X155402Y336939D01*

-X155550Y337180D01*

-X155658Y337442D01*

-X155724Y337718D01*

-X155741Y338000D01*

-X155724Y338282D01*

-X155658Y338558D01*

-X155550Y338820D01*

-X155402Y339061D01*

-X155218Y339277D01*

-X155002Y339461D01*

-X154761Y339609D01*

-X154499Y339717D01*

-X154223Y339783D01*

-X153941Y339806D01*

-X153659Y339783D01*

-X153383Y339717D01*

-X153121Y339609D01*

-X152880Y339461D01*

-X152664Y339277D01*

-X152480Y339061D01*

-X152438Y338993D01*

-Y342500D01*

-G37*

-G36*

-X149938D02*X152438D01*

-Y338993D01*

-X152332Y338820D01*

-X152224Y338558D01*

-X152158Y338282D01*

-X152135Y338000D01*

-X152158Y337718D01*

-X152224Y337442D01*

-X152332Y337180D01*

-X152438Y337007D01*

-Y187515D01*

-X152309Y187364D01*

-X151956Y186787D01*

-X151697Y186162D01*

-X151539Y185504D01*

-X151486Y184829D01*

-X151539Y184154D01*

-X151697Y183496D01*

-X151956Y182871D01*

-X152309Y182294D01*

-X152438Y182143D01*

-Y177515D01*

-X152309Y177364D01*

-X151956Y176787D01*

-X151697Y176162D01*

-X151539Y175504D01*

-X151486Y174829D01*

-X151539Y174154D01*

-X151697Y173496D01*

-X151956Y172871D01*

-X152309Y172294D01*

-X152438Y172143D01*

-Y133732D01*

-X152223Y133783D01*

-X151941Y133806D01*

-X151659Y133783D01*

-X151383Y133717D01*

-X151121Y133609D01*

-X150880Y133461D01*

-X150664Y133277D01*

-X150480Y133061D01*

-X150332Y132820D01*

-X150224Y132558D01*

-X150158Y132282D01*

-X150135Y132000D01*

-X150158Y131718D01*

-X150224Y131442D01*

-X150332Y131180D01*

-X150480Y130939D01*

-X150664Y130723D01*

-X150880Y130539D01*

-X151121Y130391D01*

-X151383Y130283D01*

-X151659Y130217D01*

-X151941Y130194D01*

-X152223Y130217D01*

-X152438Y130268D01*

-Y123305D01*

-X152159Y123283D01*

-X151883Y123217D01*

-X151621Y123109D01*

-X151380Y122961D01*

-X151164Y122777D01*

-X150980Y122561D01*

-X150832Y122320D01*

-X150724Y122058D01*

-X150658Y121782D01*

-X150635Y121500D01*

-X150658Y121218D01*

-X150724Y120942D01*

-X150832Y120680D01*

-X150980Y120439D01*

-X151164Y120223D01*

-X151380Y120039D01*

-X151621Y119891D01*

-X151883Y119783D01*

-X152159Y119717D01*

-X152438Y119695D01*

-Y76500D01*

-X149938D01*

-Y147195D01*

-X149941Y147194D01*

-X150223Y147217D01*

-X150499Y147283D01*

-X150761Y147391D01*

-X151002Y147539D01*

-X151218Y147723D01*

-X151402Y147939D01*

-X151550Y148180D01*

-X151658Y148442D01*

-X151724Y148718D01*

-X151741Y149000D01*

-X151724Y149282D01*

-X151658Y149558D01*

-X151550Y149820D01*

-X151402Y150061D01*

-X151218Y150277D01*

-X151002Y150461D01*

-X150761Y150609D01*

-X150499Y150717D01*

-X150223Y150783D01*

-X149941Y150806D01*

-X149938Y150805D01*

-Y173651D01*

-X150059Y174154D01*

-X150099Y174829D01*

-X150059Y175504D01*

-X149938Y176007D01*

-Y183651D01*

-X150059Y184154D01*

-X150099Y184829D01*

-X150059Y185504D01*

-X149938Y186007D01*

-Y342500D01*

-G37*

-G36*

-X141438D02*X149938D01*

-Y186007D01*

-X149901Y186162D01*

-X149642Y186787D01*

-X149289Y187364D01*

-X148849Y187879D01*

-X148334Y188319D01*

-X147757Y188672D01*

-X147132Y188931D01*

-X146474Y189089D01*

-X145799Y189142D01*

-X145124Y189089D01*

-X144466Y188931D01*

-X143841Y188672D01*

-X143264Y188319D01*

-X142749Y187879D01*

-X142309Y187364D01*

-X141956Y186787D01*

-X141697Y186162D01*

-X141539Y185504D01*

-X141486Y184829D01*

-X141539Y184154D01*

-X141697Y183496D01*

-X141956Y182871D01*

-X142309Y182294D01*

-X142749Y181779D01*

-X143264Y181339D01*

-X143841Y180986D01*

-X144466Y180727D01*

-X145124Y180569D01*

-X145799Y180516D01*

-X146474Y180569D01*

-X147132Y180727D01*

-X147757Y180986D01*

-X148334Y181339D01*

-X148849Y181779D01*

-X149289Y182294D01*

-X149642Y182871D01*

-X149901Y183496D01*

-X149938Y183651D01*

-Y176007D01*

-X149901Y176162D01*

-X149642Y176787D01*

-X149289Y177364D01*

-X148849Y177879D01*

-X148334Y178319D01*

-X147757Y178672D01*

-X147132Y178931D01*

-X146474Y179089D01*

-X145799Y179142D01*

-X145124Y179089D01*

-X144466Y178931D01*

-X143841Y178672D01*

-X143264Y178319D01*

-X142749Y177879D01*

-X142309Y177364D01*

-X141956Y176787D01*

-X141697Y176162D01*

-X141539Y175504D01*

-X141486Y174829D01*

-X141539Y174154D01*

-X141697Y173496D01*

-X141956Y172871D01*

-X142309Y172294D01*

-X142749Y171779D01*

-X143264Y171339D01*

-X143841Y170986D01*

-X144466Y170727D01*

-X145124Y170569D01*

-X145799Y170516D01*

-X146474Y170569D01*

-X147132Y170727D01*

-X147757Y170986D01*

-X148334Y171339D01*

-X148849Y171779D01*

-X149289Y172294D01*

-X149642Y172871D01*

-X149901Y173496D01*

-X149938Y173651D01*

-Y150805D01*

-X149659Y150783D01*

-X149383Y150717D01*

-X149121Y150609D01*

-X148880Y150461D01*

-X148664Y150277D01*

-X148480Y150061D01*

-X148332Y149820D01*

-X148224Y149558D01*

-X148158Y149282D01*

-X148135Y149000D01*

-X148158Y148718D01*

-X148224Y148442D01*

-X148332Y148180D01*

-X148480Y147939D01*

-X148664Y147723D01*

-X148880Y147539D01*

-X149121Y147391D01*

-X149383Y147283D01*

-X149659Y147217D01*

-X149938Y147195D01*

-Y76500D01*

-X141438D01*

-Y146195D01*

-X141441Y146194D01*

-X141723Y146217D01*

-X141999Y146283D01*

-X142261Y146391D01*

-X142502Y146539D01*

-X142718Y146723D01*

-X142902Y146939D01*

-X143050Y147180D01*

-X143158Y147442D01*

-X143224Y147718D01*

-X143241Y148000D01*

-X143224Y148282D01*

-X143158Y148558D01*

-X143050Y148820D01*

-X142902Y149061D01*

-X142718Y149277D01*

-X142502Y149461D01*

-X142261Y149609D01*

-X141999Y149717D01*

-X141723Y149783D01*

-X141441Y149806D01*

-X141438Y149805D01*

-Y299088D01*

-X141589Y299100D01*

-X141865Y299166D01*

-X142127Y299274D01*

-X142368Y299422D01*

-X142584Y299606D01*

-X142768Y299822D01*

-X142916Y300063D01*

-X143024Y300325D01*

-X143090Y300601D01*

-X143107Y300883D01*

-X143090Y301165D01*

-X143024Y301441D01*

-X142916Y301703D01*

-X142768Y301944D01*

-X142584Y302160D01*

-X142368Y302344D01*

-X142127Y302492D01*

-X141865Y302600D01*

-X141589Y302666D01*

-X141438Y302678D01*

-Y336998D01*

-X141550Y337180D01*

-X141658Y337442D01*

-X141724Y337718D01*

-X141741Y338000D01*

-X141724Y338282D01*

-X141658Y338558D01*

-X141550Y338820D01*

-X141438Y339002D01*

-Y342500D01*

-G37*

-G36*

-Y76500D02*X138922D01*

-Y171865D01*

-X139289Y172294D01*

-X139642Y172871D01*

-X139901Y173496D01*

-X140059Y174154D01*

-X140099Y174829D01*

-X140059Y175504D01*

-X139901Y176162D01*

-X139642Y176787D01*

-X139289Y177364D01*

-X138922Y177793D01*

-Y181865D01*

-X139289Y182294D01*

-X139642Y182871D01*

-X139901Y183496D01*

-X140059Y184154D01*

-X140099Y184829D01*

-X140059Y185504D01*

-X139901Y186162D01*

-X139642Y186787D01*

-X139289Y187364D01*

-X138922Y187793D01*

-Y190893D01*

-X138925Y190892D01*

-X139207Y190915D01*

-X139483Y190981D01*

-X139745Y191089D01*

-X139986Y191237D01*

-X140202Y191421D01*

-X140386Y191637D01*

-X140534Y191878D01*

-X140642Y192140D01*

-X140708Y192416D01*

-X140725Y192698D01*

-X140708Y192980D01*

-X140642Y193256D01*

-X140534Y193518D01*

-X140386Y193759D01*

-X140202Y193975D01*

-X139986Y194159D01*

-X139745Y194307D01*

-X139483Y194415D01*

-X139207Y194481D01*

-X138925Y194504D01*

-X138922Y194503D01*

-Y196036D01*

-X138925Y196035D01*

-X139207Y196058D01*

-X139483Y196124D01*

-X139745Y196232D01*

-X139986Y196380D01*

-X140202Y196564D01*

-X140386Y196780D01*

-X140534Y197021D01*

-X140642Y197283D01*

-X140708Y197559D01*

-X140725Y197841D01*

-X140708Y198123D01*

-X140642Y198399D01*

-X140534Y198661D01*

-X140386Y198902D01*

-X140202Y199118D01*

-X139986Y199302D01*

-X139745Y199450D01*

-X139483Y199558D01*

-X139207Y199624D01*

-X138925Y199647D01*

-X138922Y199646D01*

-Y200228D01*

-X139154Y200247D01*

-X139430Y200313D01*

-X139692Y200421D01*

-X139933Y200569D01*

-X140149Y200753D01*

-X140333Y200969D01*

-X140481Y201210D01*

-X140589Y201472D01*

-X140655Y201748D01*

-X140672Y202030D01*

-X140655Y202312D01*

-X140589Y202588D01*

-X140481Y202850D01*

-X140333Y203091D01*

-X140149Y203307D01*

-X139933Y203491D01*

-X139692Y203639D01*

-X139430Y203747D01*

-X139154Y203813D01*

-X138922Y203832D01*

-Y204308D01*

-X138925Y204307D01*

-X139207Y204330D01*

-X139483Y204396D01*

-X139745Y204504D01*

-X139986Y204652D01*

-X140202Y204836D01*

-X140386Y205052D01*

-X140534Y205293D01*

-X140642Y205555D01*

-X140708Y205831D01*

-X140725Y206113D01*

-X140708Y206395D01*

-X140642Y206671D01*

-X140534Y206933D01*

-X140386Y207174D01*

-X140202Y207390D01*

-X139986Y207574D01*

-X139745Y207722D01*

-X139483Y207830D01*

-X139207Y207896D01*

-X138925Y207919D01*

-X138922Y207918D01*

-Y336513D01*

-X139121Y336391D01*

-X139383Y336283D01*

-X139659Y336217D01*

-X139941Y336194D01*

-X140223Y336217D01*

-X140499Y336283D01*

-X140761Y336391D01*

-X141002Y336539D01*

-X141218Y336723D01*

-X141402Y336939D01*

-X141438Y336998D01*

-Y302678D01*

-X141307Y302689D01*

-X141025Y302666D01*

-X140749Y302600D01*

-X140487Y302492D01*

-X140246Y302344D01*

-X140030Y302160D01*

-X139846Y301944D01*

-X139698Y301703D01*

-X139590Y301441D01*

-X139524Y301165D01*

-X139501Y300883D01*

-X139524Y300601D01*

-X139590Y300325D01*

-X139698Y300063D01*

-X139846Y299822D01*

-X140030Y299606D01*

-X140246Y299422D01*

-X140487Y299274D01*

-X140749Y299166D01*

-X141025Y299100D01*

-X141307Y299077D01*

-X141438Y299088D01*

-Y149805D01*

-X141159Y149783D01*

-X140883Y149717D01*

-X140621Y149609D01*

-X140380Y149461D01*

-X140164Y149277D01*

-X139980Y149061D01*

-X139832Y148820D01*

-X139724Y148558D01*

-X139658Y148282D01*

-X139635Y148000D01*

-X139658Y147718D01*

-X139724Y147442D01*

-X139832Y147180D01*

-X139980Y146939D01*

-X140164Y146723D01*

-X140380Y146539D01*

-X140621Y146391D01*

-X140883Y146283D01*

-X141159Y146217D01*

-X141438Y146195D01*

-Y76500D01*

-G37*

-G36*

-X138922Y342500D02*X141438D01*

-Y339002D01*

-X141402Y339061D01*

-X141218Y339277D01*

-X141002Y339461D01*

-X140761Y339609D01*

-X140499Y339717D01*

-X140223Y339783D01*

-X139941Y339806D01*

-X139659Y339783D01*

-X139383Y339717D01*

-X139121Y339609D01*

-X138922Y339487D01*

-Y342500D01*

-G37*

-G36*

-X135438Y170544D02*X135799Y170516D01*

-X136474Y170569D01*

-X137132Y170727D01*

-X137757Y170986D01*

-X138334Y171339D01*

-X138849Y171779D01*

-X138922Y171865D01*

-Y76500D01*

-X135438D01*

-Y170544D01*

-G37*

-G36*

-Y180544D02*X135799Y180516D01*

-X136474Y180569D01*

-X137132Y180727D01*

-X137757Y180986D01*

-X138334Y181339D01*

-X138849Y181779D01*

-X138922Y181865D01*

-Y177793D01*

-X138849Y177879D01*

-X138334Y178319D01*

-X137757Y178672D01*

-X137132Y178931D01*

-X136474Y179089D01*

-X135799Y179142D01*

-X135438Y179114D01*

-Y180544D01*

-G37*

-G36*

-Y342500D02*X138922D01*

-Y339487D01*

-X138880Y339461D01*

-X138664Y339277D01*

-X138480Y339061D01*

-X138332Y338820D01*

-X138224Y338558D01*

-X138158Y338282D01*

-X138135Y338000D01*

-X138158Y337718D01*

-X138224Y337442D01*

-X138332Y337180D01*

-X138480Y336939D01*

-X138664Y336723D01*

-X138880Y336539D01*

-X138922Y336513D01*

-Y207918D01*

-X138643Y207896D01*

-X138367Y207830D01*

-X138105Y207722D01*

-X137864Y207574D01*

-X137648Y207390D01*

-X137464Y207174D01*

-X137316Y206933D01*

-X137208Y206671D01*

-X137142Y206395D01*

-X137119Y206113D01*

-X137142Y205831D01*

-X137208Y205555D01*

-X137316Y205293D01*

-X137464Y205052D01*

-X137648Y204836D01*

-X137864Y204652D01*

-X138105Y204504D01*

-X138367Y204396D01*

-X138643Y204330D01*

-X138922Y204308D01*

-Y203832D01*

-X138872Y203836D01*

-X138590Y203813D01*

-X138314Y203747D01*

-X138052Y203639D01*

-X137811Y203491D01*

-X137595Y203307D01*

-X137411Y203091D01*

-X137263Y202850D01*

-X137155Y202588D01*

-X137089Y202312D01*

-X137066Y202030D01*

-X137089Y201748D01*

-X137155Y201472D01*

-X137263Y201210D01*

-X137411Y200969D01*

-X137595Y200753D01*

-X137811Y200569D01*

-X138052Y200421D01*

-X138314Y200313D01*

-X138590Y200247D01*

-X138872Y200224D01*

-X138922Y200228D01*

-Y199646D01*

-X138643Y199624D01*

-X138367Y199558D01*

-X138105Y199450D01*

-X137864Y199302D01*

-X137648Y199118D01*

-X137464Y198902D01*

-X137316Y198661D01*

-X137208Y198399D01*

-X137142Y198123D01*

-X137119Y197841D01*

-X137142Y197559D01*

-X137208Y197283D01*

-X137316Y197021D01*

-X137464Y196780D01*

-X137648Y196564D01*

-X137864Y196380D01*

-X138105Y196232D01*

-X138367Y196124D01*

-X138643Y196058D01*

-X138922Y196036D01*

-Y194503D01*

-X138643Y194481D01*

-X138367Y194415D01*

-X138105Y194307D01*

-X137864Y194159D01*

-X137648Y193975D01*

-X137464Y193759D01*

-X137316Y193518D01*

-X137208Y193256D01*

-X137142Y192980D01*

-X137119Y192698D01*

-X137142Y192416D01*

-X137208Y192140D01*

-X137316Y191878D01*

-X137464Y191637D01*

-X137648Y191421D01*

-X137864Y191237D01*

-X138105Y191089D01*

-X138367Y190981D01*

-X138643Y190915D01*

-X138922Y190893D01*

-Y187793D01*

-X138849Y187879D01*

-X138334Y188319D01*

-X137757Y188672D01*

-X137132Y188931D01*

-X136474Y189089D01*

-X135799Y189142D01*

-X135438Y189114D01*

-Y333195D01*

-X135441Y333194D01*

-X135723Y333217D01*

-X135999Y333283D01*

-X136261Y333391D01*

-X136502Y333539D01*

-X136718Y333723D01*

-X136902Y333939D01*

-X137050Y334180D01*

-X137158Y334442D01*

-X137224Y334718D01*

-X137241Y335000D01*

-X137224Y335282D01*

-X137158Y335558D01*

-X137050Y335820D01*

-X136902Y336061D01*

-X136718Y336277D01*

-X136502Y336461D01*

-X136261Y336609D01*

-X135999Y336717D01*

-X135862Y336750D01*

-X135999Y336783D01*

-X136261Y336891D01*

-X136502Y337039D01*

-X136718Y337223D01*

-X136902Y337439D01*

-X137050Y337680D01*

-X137158Y337942D01*

-X137224Y338218D01*

-X137241Y338500D01*

-X137224Y338782D01*

-X137158Y339058D01*

-X137050Y339320D01*

-X136902Y339561D01*

-X136718Y339777D01*

-X136502Y339961D01*

-X136261Y340109D01*

-X135999Y340217D01*

-X135723Y340283D01*

-X135441Y340306D01*

-X135438Y340305D01*

-Y342500D01*

-G37*

-G36*

-X129343Y278500D02*X130941D01*

-Y342500D01*

-X135438D01*

-Y340305D01*

-X135159Y340283D01*

-X134883Y340217D01*

-X134621Y340109D01*

-X134380Y339961D01*

-X134164Y339777D01*

-X133980Y339561D01*

-X133832Y339320D01*

-X133724Y339058D01*

-X133658Y338782D01*

-X133635Y338500D01*

-X133658Y338218D01*

-X133724Y337942D01*

-X133832Y337680D01*

-X133980Y337439D01*

-X134164Y337223D01*

-X134380Y337039D01*

-X134621Y336891D01*

-X134883Y336783D01*

-X135020Y336750D01*

-X134883Y336717D01*

-X134621Y336609D01*

-X134380Y336461D01*

-X134164Y336277D01*

-X133980Y336061D01*

-X133832Y335820D01*

-X133724Y335558D01*

-X133658Y335282D01*

-X133635Y335000D01*

-X133658Y334718D01*

-X133724Y334442D01*

-X133832Y334180D01*

-X133980Y333939D01*

-X134164Y333723D01*

-X134380Y333539D01*

-X134621Y333391D01*

-X134883Y333283D01*

-X135159Y333217D01*

-X135438Y333195D01*

-Y189114D01*

-X135124Y189089D01*

-X134466Y188931D01*

-X133841Y188672D01*

-X133264Y188319D01*

-X132749Y187879D01*

-X132309Y187364D01*

-X131956Y186787D01*

-X131697Y186162D01*

-X131539Y185504D01*

-X131486Y184829D01*

-X131539Y184154D01*

-X131697Y183496D01*

-X131956Y182871D01*

-X132309Y182294D01*

-X132749Y181779D01*

-X133264Y181339D01*

-X133841Y180986D01*

-X134466Y180727D01*

-X135124Y180569D01*

-X135438Y180544D01*

-Y179114D01*

-X135124Y179089D01*

-X134466Y178931D01*

-X133841Y178672D01*

-X133264Y178319D01*

-X132749Y177879D01*

-X132309Y177364D01*

-X131956Y176787D01*

-X131697Y176162D01*

-X131539Y175504D01*

-X131486Y174829D01*

-X131539Y174154D01*

-X131697Y173496D01*

-X131956Y172871D01*

-X132309Y172294D01*

-X132749Y171779D01*

-X133264Y171339D01*

-X133841Y170986D01*

-X134466Y170727D01*

-X135124Y170569D01*

-X135438Y170544D01*

-Y76500D01*

-X129343D01*

-Y146870D01*

-X129402Y146939D01*

-X129550Y147180D01*

-X129658Y147442D01*

-X129724Y147718D01*

-X129741Y148000D01*

-X129724Y148282D01*

-X129658Y148558D01*

-X129550Y148820D01*

-X129402Y149061D01*

-X129343Y149130D01*

-Y172501D01*

-X129366Y172513D01*

-X129429Y172561D01*

-X129483Y172618D01*

-X129526Y172684D01*

-X129717Y173045D01*

-X129868Y173425D01*

-X129983Y173817D01*

-X130060Y174218D01*

-X130099Y174625D01*

-Y175033D01*

-X130060Y175440D01*

-X129983Y175841D01*

-X129868Y176233D01*

-X129717Y176613D01*

-X129530Y176976D01*

-X129486Y177042D01*

-X129431Y177100D01*

-X129368Y177148D01*

-X129343Y177161D01*

-Y182501D01*

-X129366Y182513D01*

-X129429Y182561D01*

-X129483Y182618D01*

-X129526Y182684D01*

-X129717Y183045D01*

-X129868Y183425D01*

-X129983Y183817D01*

-X130060Y184218D01*

-X130099Y184625D01*

-Y185033D01*

-X130060Y185440D01*

-X129983Y185841D01*

-X129868Y186233D01*

-X129717Y186613D01*

-X129530Y186976D01*

-X129486Y187042D01*

-X129431Y187100D01*

-X129368Y187148D01*

-X129343Y187161D01*

-Y240745D01*

-X129499Y240783D01*

-X129761Y240891D01*

-X130002Y241039D01*

-X130218Y241223D01*

-X130402Y241439D01*

-X130550Y241680D01*

-X130658Y241942D01*

-X130724Y242218D01*

-X130741Y242500D01*

-X130724Y242782D01*

-X130658Y243058D01*

-X130550Y243320D01*

-X130402Y243561D01*

-X130218Y243777D01*

-X130002Y243961D01*

-X129761Y244109D01*

-X129499Y244217D01*

-X129343Y244255D01*

-Y246745D01*

-X129499Y246783D01*

-X129761Y246891D01*

-X130002Y247039D01*

-X130218Y247223D01*

-X130402Y247439D01*

-X130550Y247680D01*

-X130658Y247942D01*

-X130724Y248218D01*

-X130741Y248500D01*

-X130724Y248782D01*

-X130658Y249058D01*

-X130550Y249320D01*

-X130402Y249561D01*

-X130218Y249777D01*

-X130002Y249961D01*

-X129761Y250109D01*

-X129499Y250217D01*

-X129343Y250255D01*

-Y253245D01*

-X129499Y253283D01*

-X129761Y253391D01*

-X130002Y253539D01*

-X130218Y253723D01*

-X130402Y253939D01*

-X130550Y254180D01*

-X130658Y254442D01*

-X130724Y254718D01*

-X130741Y255000D01*

-X130724Y255282D01*

-X130658Y255558D01*

-X130550Y255820D01*

-X130402Y256061D01*

-X130218Y256277D01*

-X130002Y256461D01*

-X129761Y256609D01*

-X129499Y256717D01*

-X129343Y256755D01*

-Y260745D01*

-X129499Y260783D01*

-X129761Y260891D01*

-X130002Y261039D01*

-X130218Y261223D01*

-X130402Y261439D01*

-X130550Y261680D01*

-X130658Y261942D01*

-X130724Y262218D01*

-X130741Y262500D01*

-X130724Y262782D01*

-X130658Y263058D01*

-X130550Y263320D01*

-X130402Y263561D01*

-X130218Y263777D01*

-X130002Y263961D01*

-X129761Y264109D01*

-X129499Y264217D01*

-X129343Y264255D01*

-Y266745D01*

-X129499Y266783D01*

-X129761Y266891D01*

-X130002Y267039D01*

-X130218Y267223D01*

-X130402Y267439D01*

-X130550Y267680D01*

-X130658Y267942D01*

-X130724Y268218D01*

-X130741Y268500D01*

-X130724Y268782D01*

-X130658Y269058D01*

-X130550Y269320D01*

-X130402Y269561D01*

-X130218Y269777D01*

-X130002Y269961D01*

-X129761Y270109D01*

-X129499Y270217D01*

-X129343Y270255D01*

-Y272745D01*

-X129499Y272783D01*

-X129761Y272891D01*

-X130002Y273039D01*

-X130218Y273223D01*

-X130402Y273439D01*

-X130550Y273680D01*

-X130658Y273942D01*

-X130724Y274218D01*

-X130741Y274500D01*

-X130724Y274782D01*

-X130658Y275058D01*

-X130550Y275320D01*

-X130402Y275561D01*

-X130218Y275777D01*

-X130002Y275961D01*

-X129761Y276109D01*

-X129499Y276217D01*

-X129343Y276255D01*

-Y278500D01*

-G37*

-G36*

-Y270255D02*X129223Y270283D01*

-X128941Y270306D01*

-X128659Y270283D01*

-X128383Y270217D01*

-X128121Y270109D01*

-X127938Y269997D01*

-Y273003D01*

-X128121Y272891D01*

-X128383Y272783D01*

-X128659Y272717D01*

-X128941Y272694D01*

-X129223Y272717D01*

-X129343Y272745D01*

-Y270255D01*

-G37*

-G36*

-Y264255D02*X129223Y264283D01*

-X128941Y264306D01*

-X128659Y264283D01*

-X128383Y264217D01*

-X128121Y264109D01*

-X127938Y263997D01*

-Y267003D01*

-X128121Y266891D01*

-X128383Y266783D01*

-X128659Y266717D01*

-X128941Y266694D01*

-X129223Y266717D01*

-X129343Y266745D01*

-Y264255D01*

-G37*

-G36*

-Y256755D02*X129223Y256783D01*

-X128941Y256806D01*

-X128659Y256783D01*

-X128383Y256717D01*

-X128121Y256609D01*

-X127938Y256497D01*

-Y261003D01*

-X128121Y260891D01*

-X128383Y260783D01*

-X128659Y260717D01*

-X128941Y260694D01*

-X129223Y260717D01*

-X129343Y260745D01*

-Y256755D01*

-G37*

-G36*

-Y250255D02*X129223Y250283D01*

-X128941Y250306D01*

-X128659Y250283D01*

-X128383Y250217D01*

-X128121Y250109D01*

-X127938Y249997D01*

-Y253503D01*

-X128121Y253391D01*

-X128383Y253283D01*

-X128659Y253217D01*

-X128941Y253194D01*

-X129223Y253217D01*

-X129343Y253245D01*

-Y250255D01*

-G37*

-G36*

-Y244255D02*X129223Y244283D01*

-X128941Y244306D01*

-X128659Y244283D01*

-X128383Y244217D01*

-X128121Y244109D01*

-X127938Y243997D01*

-Y247003D01*

-X128121Y246891D01*

-X128383Y246783D01*

-X128659Y246717D01*

-X128941Y246694D01*

-X129223Y246717D01*

-X129343Y246745D01*

-Y244255D01*

-G37*

-G36*

-Y149130D02*X129218Y149277D01*

-X129002Y149461D01*

-X128761Y149609D01*

-X128499Y149717D01*

-X128223Y149783D01*

-X127941Y149806D01*

-X127938Y149805D01*

-Y171094D01*

-X127946Y171098D01*

-X128012Y171142D01*

-X128070Y171197D01*

-X128118Y171260D01*

-X128156Y171329D01*

-X128182Y171404D01*

-X128197Y171482D01*

-X128199Y171561D01*

-X128189Y171640D01*

-X128166Y171716D01*

-X128132Y171788D01*

-X128088Y171853D01*

-X128033Y171911D01*

-X127970Y171959D01*

-X127938Y171976D01*

-Y177686D01*

-X127968Y177702D01*

-X128031Y177750D01*

-X128085Y177807D01*

-X128129Y177872D01*

-X128163Y177943D01*

-X128185Y178019D01*

-X128195Y178097D01*

-X128193Y178176D01*

-X128179Y178253D01*

-X128152Y178327D01*

-X128115Y178396D01*

-X128067Y178459D01*

-X128010Y178513D01*

-X127944Y178556D01*

-X127938Y178559D01*

-Y181094D01*

-X127946Y181098D01*

-X128012Y181142D01*

-X128070Y181197D01*

-X128118Y181260D01*

-X128156Y181329D01*

-X128182Y181404D01*

-X128197Y181482D01*

-X128199Y181561D01*

-X128189Y181640D01*

-X128166Y181716D01*

-X128132Y181788D01*

-X128088Y181853D01*

-X128033Y181911D01*

-X127970Y181959D01*

-X127938Y181976D01*

-Y187686D01*

-X127968Y187702D01*

-X128031Y187750D01*

-X128085Y187807D01*

-X128129Y187872D01*

-X128163Y187943D01*

-X128185Y188019D01*

-X128195Y188097D01*

-X128193Y188176D01*

-X128179Y188253D01*

-X128152Y188327D01*

-X128115Y188396D01*

-X128067Y188459D01*

-X128010Y188513D01*

-X127944Y188556D01*

-X127938Y188559D01*

-Y241003D01*

-X128121Y240891D01*

-X128383Y240783D01*

-X128659Y240717D01*

-X128941Y240694D01*

-X129223Y240717D01*

-X129343Y240745D01*

-Y187161D01*

-X129299Y187186D01*

-X129224Y187212D01*

-X129146Y187227D01*

-X129067Y187229D01*

-X128988Y187219D01*

-X128912Y187196D01*

-X128840Y187162D01*

-X128775Y187118D01*

-X128717Y187063D01*

-X128669Y187000D01*

-X128631Y186931D01*

-X128605Y186856D01*

-X128590Y186778D01*

-X128588Y186699D01*

-X128598Y186620D01*

-X128621Y186544D01*

-X128656Y186473D01*

-X128802Y186197D01*

-X128918Y185906D01*

-X129006Y185605D01*

-X129066Y185297D01*

-X129095Y184986D01*

-Y184672D01*

-X129066Y184361D01*

-X129006Y184053D01*

-X128918Y183752D01*

-X128802Y183461D01*

-X128659Y183183D01*

-X128624Y183113D01*

-X128602Y183037D01*

-X128592Y182959D01*

-X128594Y182880D01*

-X128608Y182803D01*

-X128635Y182729D01*

-X128672Y182660D01*

-X128720Y182597D01*

-X128777Y182543D01*

-X128842Y182499D01*

-X128913Y182465D01*

-X128989Y182443D01*

-X129067Y182433D01*

-X129146Y182435D01*

-X129223Y182449D01*

-X129297Y182476D01*

-X129343Y182501D01*

-Y177161D01*

-X129299Y177186D01*

-X129224Y177212D01*

-X129146Y177227D01*

-X129067Y177229D01*

-X128988Y177219D01*

-X128912Y177196D01*

-X128840Y177162D01*

-X128775Y177118D01*

-X128717Y177063D01*

-X128669Y177000D01*

-X128631Y176931D01*

-X128605Y176856D01*

-X128590Y176778D01*

-X128588Y176699D01*

-X128598Y176620D01*

-X128621Y176544D01*

-X128656Y176473D01*

-X128802Y176197D01*

-X128918Y175906D01*

-X129006Y175605D01*

-X129066Y175297D01*

-X129095Y174986D01*

-Y174672D01*

-X129066Y174361D01*

-X129006Y174053D01*

-X128918Y173752D01*

-X128802Y173461D01*

-X128659Y173183D01*

-X128624Y173113D01*

-X128602Y173037D01*

-X128592Y172959D01*

-X128594Y172880D01*

-X128608Y172803D01*

-X128635Y172729D01*

-X128672Y172660D01*

-X128720Y172597D01*

-X128777Y172543D01*

-X128842Y172499D01*

-X128913Y172465D01*

-X128989Y172443D01*

-X129067Y172433D01*

-X129146Y172435D01*

-X129223Y172449D01*

-X129297Y172476D01*

-X129343Y172501D01*

-Y149130D01*

-G37*

-G36*

-Y76500D02*X127938D01*

-Y146195D01*

-X127941Y146194D01*

-X128223Y146217D01*

-X128499Y146283D01*

-X128761Y146391D01*

-X129002Y146539D01*

-X129218Y146723D01*

-X129343Y146870D01*

-Y76500D01*

-G37*

-G36*

-X127938Y278500D02*X129343D01*

-Y276255D01*

-X129223Y276283D01*

-X128941Y276306D01*

-X128659Y276283D01*

-X128383Y276217D01*

-X128121Y276109D01*

-X127938Y275997D01*

-Y278500D01*

-G37*

-G36*

-X122255D02*X127938D01*

-Y275997D01*

-X127880Y275961D01*

-X127664Y275777D01*

-X127480Y275561D01*

-X127332Y275320D01*

-X127224Y275058D01*

-X127158Y274782D01*

-X127135Y274500D01*

-X127158Y274218D01*

-X127224Y273942D01*

-X127332Y273680D01*

-X127480Y273439D01*

-X127664Y273223D01*

-X127880Y273039D01*

-X127938Y273003D01*

-Y269997D01*

-X127880Y269961D01*

-X127664Y269777D01*

-X127480Y269561D01*

-X127332Y269320D01*

-X127224Y269058D01*

-X127158Y268782D01*

-X127135Y268500D01*

-X127158Y268218D01*

-X127224Y267942D01*

-X127332Y267680D01*

-X127480Y267439D01*

-X127664Y267223D01*

-X127880Y267039D01*

-X127938Y267003D01*

-Y263997D01*

-X127880Y263961D01*

-X127664Y263777D01*

-X127480Y263561D01*

-X127332Y263320D01*

-X127224Y263058D01*

-X127158Y262782D01*

-X127135Y262500D01*

-X127158Y262218D01*

-X127224Y261942D01*

-X127332Y261680D01*

-X127480Y261439D01*

-X127664Y261223D01*

-X127880Y261039D01*

-X127938Y261003D01*

-Y256497D01*

-X127880Y256461D01*

-X127664Y256277D01*

-X127480Y256061D01*

-X127332Y255820D01*

-X127224Y255558D01*

-X127158Y255282D01*

-X127135Y255000D01*

-X127158Y254718D01*

-X127224Y254442D01*

-X127332Y254180D01*

-X127480Y253939D01*

-X127664Y253723D01*

-X127880Y253539D01*

-X127938Y253503D01*

-Y249997D01*

-X127880Y249961D01*

-X127664Y249777D01*

-X127480Y249561D01*

-X127332Y249320D01*

-X127224Y249058D01*

-X127158Y248782D01*

-X127135Y248500D01*

-X127158Y248218D01*

-X127224Y247942D01*

-X127332Y247680D01*

-X127480Y247439D01*

-X127664Y247223D01*

-X127880Y247039D01*

-X127938Y247003D01*

-Y243997D01*

-X127880Y243961D01*

-X127664Y243777D01*

-X127480Y243561D01*

-X127332Y243320D01*

-X127224Y243058D01*

-X127158Y242782D01*

-X127135Y242500D01*

-X127158Y242218D01*

-X127224Y241942D01*

-X127332Y241680D01*

-X127480Y241439D01*

-X127664Y241223D01*

-X127880Y241039D01*

-X127938Y241003D01*

-Y188559D01*

-X127583Y188747D01*

-X127203Y188898D01*

-X126811Y189013D01*

-X126410Y189090D01*

-X126003Y189129D01*

-X125595D01*

-X125188Y189090D01*

-X124787Y189013D01*

-X124395Y188898D01*

-X124015Y188747D01*

-X123652Y188560D01*

-X123586Y188516D01*

-X123528Y188461D01*

-X123480Y188398D01*

-X123442Y188329D01*

-X123416Y188254D01*

-X123401Y188176D01*

-X123399Y188097D01*

-X123409Y188018D01*

-X123432Y187942D01*

-X123466Y187870D01*

-X123510Y187805D01*

-X123565Y187747D01*

-X123628Y187699D01*

-X123697Y187661D01*

-X123772Y187635D01*

-X123850Y187620D01*

-X123929Y187618D01*

-X124008Y187628D01*

-X124084Y187651D01*

-X124155Y187686D01*

-X124431Y187832D01*

-X124722Y187948D01*

-X125023Y188036D01*

-X125331Y188096D01*

-X125642Y188125D01*

-X125956D01*

-X126267Y188096D01*

-X126575Y188036D01*

-X126876Y187948D01*

-X127167Y187832D01*

-X127445Y187689D01*

-X127515Y187654D01*

-X127591Y187632D01*

-X127669Y187622D01*

-X127748Y187624D01*

-X127825Y187638D01*

-X127899Y187665D01*

-X127938Y187686D01*

-Y181976D01*

-X127901Y181997D01*

-X127826Y182023D01*

-X127748Y182038D01*

-X127669Y182040D01*

-X127590Y182030D01*

-X127514Y182007D01*

-X127443Y181972D01*

-X127167Y181826D01*

-X126876Y181710D01*

-X126575Y181622D01*

-X126267Y181562D01*

-X125956Y181533D01*

-X125642D01*

-X125331Y181562D01*

-X125023Y181622D01*

-X124722Y181710D01*

-X124431Y181826D01*

-X124153Y181969D01*

-X124083Y182004D01*

-X124007Y182026D01*

-X123929Y182036D01*

-X123850Y182034D01*

-X123773Y182020D01*

-X123699Y181993D01*

-X123630Y181956D01*

-X123567Y181908D01*

-X123513Y181851D01*

-X123469Y181786D01*

-X123435Y181715D01*

-X123413Y181639D01*

-X123403Y181561D01*

-X123405Y181482D01*

-X123419Y181405D01*

-X123446Y181331D01*

-X123483Y181262D01*

-X123531Y181199D01*

-X123588Y181145D01*

-X123654Y181102D01*

-X124015Y180911D01*

-X124395Y180760D01*

-X124787Y180645D01*

-X125188Y180568D01*

-X125595Y180529D01*

-X126003D01*

-X126410Y180568D01*

-X126811Y180645D01*

-X127203Y180760D01*

-X127583Y180911D01*

-X127938Y181094D01*

-Y178559D01*

-X127583Y178747D01*

-X127203Y178898D01*

-X126811Y179013D01*

-X126410Y179090D01*

-X126003Y179129D01*

-X125595D01*

-X125188Y179090D01*

-X124787Y179013D01*

-X124395Y178898D01*

-X124015Y178747D01*

-X123652Y178560D01*

-X123586Y178516D01*

-X123528Y178461D01*

-X123480Y178398D01*

-X123442Y178329D01*

-X123416Y178254D01*

-X123401Y178176D01*

-X123399Y178097D01*

-X123409Y178018D01*

-X123432Y177942D01*

-X123466Y177870D01*

-X123510Y177805D01*

-X123565Y177747D01*

-X123628Y177699D01*

-X123697Y177661D01*

-X123772Y177635D01*

-X123850Y177620D01*

-X123929Y177618D01*

-X124008Y177628D01*

-X124084Y177651D01*

-X124155Y177686D01*

-X124431Y177832D01*

-X124722Y177948D01*

-X125023Y178036D01*

-X125331Y178096D01*

-X125642Y178125D01*

-X125956D01*

-X126267Y178096D01*

-X126575Y178036D01*

-X126876Y177948D01*

-X127167Y177832D01*

-X127445Y177689D01*

-X127515Y177654D01*

-X127591Y177632D01*

-X127669Y177622D01*

-X127748Y177624D01*

-X127825Y177638D01*

-X127899Y177665D01*

-X127938Y177686D01*

-Y171976D01*

-X127901Y171997D01*

-X127826Y172023D01*

-X127748Y172038D01*

-X127669Y172040D01*

-X127590Y172030D01*

-X127514Y172007D01*

-X127443Y171972D01*

-X127167Y171826D01*

-X126876Y171710D01*

-X126575Y171622D01*

-X126267Y171562D01*

-X125956Y171533D01*

-X125642D01*

-X125331Y171562D01*

-X125023Y171622D01*

-X124722Y171710D01*

-X124431Y171826D01*

-X124153Y171969D01*

-X124083Y172004D01*

-X124007Y172026D01*

-X123929Y172036D01*

-X123850Y172034D01*

-X123773Y172020D01*

-X123699Y171993D01*

-X123630Y171956D01*

-X123567Y171908D01*

-X123513Y171851D01*

-X123469Y171786D01*

-X123435Y171715D01*

-X123413Y171639D01*

-X123403Y171561D01*

-X123405Y171482D01*

-X123419Y171405D01*

-X123446Y171331D01*

-X123483Y171262D01*

-X123531Y171199D01*

-X123588Y171145D01*

-X123654Y171102D01*

-X124015Y170911D01*

-X124395Y170760D01*

-X124787Y170645D01*

-X125188Y170568D01*

-X125595Y170529D01*

-X126003D01*

-X126410Y170568D01*

-X126811Y170645D01*

-X127203Y170760D01*

-X127583Y170911D01*

-X127938Y171094D01*

-Y149805D01*

-X127659Y149783D01*

-X127383Y149717D01*

-X127121Y149609D01*

-X126880Y149461D01*

-X126664Y149277D01*

-X126480Y149061D01*

-X126332Y148820D01*

-X126224Y148558D01*

-X126158Y148282D01*

-X126135Y148000D01*

-X126158Y147718D01*

-X126224Y147442D01*

-X126332Y147180D01*

-X126480Y146939D01*

-X126664Y146723D01*

-X126880Y146539D01*

-X127121Y146391D01*

-X127383Y146283D01*

-X127659Y146217D01*

-X127938Y146195D01*

-Y76500D01*

-X122255D01*

-Y172497D01*

-X122299Y172472D01*

-X122374Y172446D01*

-X122452Y172431D01*

-X122531Y172429D01*

-X122610Y172439D01*

-X122686Y172462D01*

-X122758Y172496D01*

-X122823Y172540D01*

-X122881Y172595D01*

-X122929Y172658D01*

-X122967Y172727D01*

-X122993Y172802D01*

-X123008Y172880D01*

-X123010Y172959D01*

-X123000Y173038D01*

-X122977Y173114D01*

-X122942Y173185D01*

-X122796Y173461D01*

-X122680Y173752D01*

-X122592Y174053D01*

-X122532Y174361D01*

-X122503Y174672D01*

-Y174986D01*

-X122532Y175297D01*

-X122592Y175605D01*

-X122680Y175906D01*

-X122796Y176197D01*

-X122939Y176475D01*

-X122974Y176545D01*

-X122996Y176621D01*

-X123006Y176699D01*

-X123004Y176778D01*

-X122990Y176855D01*

-X122963Y176929D01*

-X122926Y176998D01*

-X122878Y177061D01*

-X122821Y177115D01*

-X122756Y177159D01*

-X122685Y177193D01*

-X122609Y177215D01*

-X122531Y177225D01*

-X122452Y177223D01*

-X122375Y177209D01*

-X122301Y177182D01*

-X122255Y177157D01*

-Y182497D01*

-X122299Y182472D01*

-X122374Y182446D01*

-X122452Y182431D01*

-X122531Y182429D01*

-X122610Y182439D01*

-X122686Y182462D01*

-X122758Y182496D01*

-X122823Y182540D01*

-X122881Y182595D01*

-X122929Y182658D01*

-X122967Y182727D01*

-X122993Y182802D01*

-X123008Y182880D01*

-X123010Y182959D01*

-X123000Y183038D01*

-X122977Y183114D01*

-X122942Y183185D01*

-X122796Y183461D01*

-X122680Y183752D01*

-X122592Y184053D01*

-X122532Y184361D01*

-X122503Y184672D01*

-Y184986D01*

-X122532Y185297D01*

-X122592Y185605D01*

-X122680Y185906D01*

-X122796Y186197D01*

-X122939Y186475D01*

-X122974Y186545D01*

-X122996Y186621D01*

-X123006Y186699D01*

-X123004Y186778D01*

-X122990Y186855D01*

-X122963Y186929D01*

-X122926Y186998D01*

-X122878Y187061D01*

-X122821Y187115D01*

-X122756Y187159D01*

-X122685Y187193D01*

-X122609Y187215D01*

-X122531Y187225D01*

-X122452Y187223D01*

-X122375Y187209D01*

-X122301Y187182D01*

-X122255Y187157D01*

-Y278500D01*

-G37*

-G36*

-X114438D02*X122255D01*

-Y187157D01*

-X122232Y187145D01*

-X122169Y187097D01*

-X122115Y187040D01*

-X122072Y186974D01*

-X121881Y186613D01*

-X121730Y186233D01*

-X121615Y185841D01*

-X121538Y185440D01*

-X121499Y185033D01*

-Y184625D01*

-X121538Y184218D01*

-X121615Y183817D01*

-X121730Y183425D01*

-X121881Y183045D01*

-X122068Y182682D01*

-X122112Y182616D01*

-X122167Y182558D01*

-X122230Y182510D01*

-X122255Y182497D01*

-Y177157D01*

-X122232Y177145D01*

-X122169Y177097D01*

-X122115Y177040D01*

-X122072Y176974D01*

-X121881Y176613D01*

-X121730Y176233D01*

-X121615Y175841D01*

-X121538Y175440D01*

-X121499Y175033D01*

-Y174625D01*

-X121538Y174218D01*

-X121615Y173817D01*

-X121730Y173425D01*

-X121881Y173045D01*

-X122068Y172682D01*

-X122112Y172616D01*

-X122167Y172558D01*

-X122230Y172510D01*

-X122255Y172497D01*

-Y76500D01*

-X114438D01*

-Y119695D01*

-X114441Y119694D01*

-X114723Y119717D01*

-X114999Y119783D01*

-X115261Y119891D01*

-X115502Y120039D01*

-X115718Y120223D01*

-X115902Y120439D01*

-X116050Y120680D01*

-X116158Y120942D01*

-X116224Y121218D01*

-X116241Y121500D01*

-X116224Y121782D01*

-X116158Y122058D01*

-X116050Y122320D01*

-X115902Y122561D01*

-X115718Y122777D01*

-X115502Y122961D01*

-X115261Y123109D01*

-X114999Y123217D01*

-X114723Y123283D01*

-X114441Y123306D01*

-X114438Y123305D01*

-Y131003D01*

-X114621Y130891D01*

-X114883Y130783D01*

-X115159Y130717D01*

-X115441Y130694D01*

-X115723Y130717D01*

-X115999Y130783D01*

-X116261Y130891D01*

-X116502Y131039D01*

-X116718Y131223D01*

-X116902Y131439D01*

-X117050Y131680D01*

-X117158Y131942D01*

-X117224Y132218D01*

-X117241Y132500D01*

-X117224Y132782D01*

-X117158Y133058D01*

-X117050Y133320D01*

-X116902Y133561D01*

-X116718Y133777D01*

-X116502Y133961D01*

-X116261Y134109D01*

-X115999Y134217D01*

-X115723Y134283D01*

-X115441Y134306D01*

-X115159Y134283D01*

-X114883Y134217D01*

-X114621Y134109D01*

-X114438Y133997D01*

-Y146820D01*

-X114537Y146904D01*

-X114767Y147173D01*

-X114952Y147475D01*

-X115087Y147803D01*

-X115170Y148147D01*

-X115198Y148500D01*

-X115170Y148853D01*

-X115087Y149197D01*

-X114952Y149525D01*

-X114767Y149827D01*

-X114537Y150096D01*

-X114438Y150180D01*

-Y170738D01*

-X114466Y170727D01*

-X115124Y170569D01*

-X115799Y170516D01*

-X116474Y170569D01*

-X117132Y170727D01*

-X117757Y170986D01*

-X118334Y171339D01*

-X118849Y171779D01*

-X119289Y172294D01*

-X119642Y172871D01*

-X119901Y173496D01*

-X120059Y174154D01*

-X120099Y174829D01*

-X120059Y175504D01*

-X119901Y176162D01*

-X119642Y176787D01*

-X119289Y177364D01*

-X118849Y177879D01*

-X118334Y178319D01*

-X117757Y178672D01*

-X117132Y178931D01*

-X116474Y179089D01*

-X115799Y179142D01*

-X115124Y179089D01*

-X114466Y178931D01*

-X114438Y178920D01*

-Y180738D01*

-X114466Y180727D01*

-X115124Y180569D01*

-X115799Y180516D01*

-X116474Y180569D01*

-X117132Y180727D01*

-X117757Y180986D01*

-X118334Y181339D01*

-X118849Y181779D01*

-X119289Y182294D01*

-X119642Y182871D01*

-X119901Y183496D01*

-X120059Y184154D01*

-X120099Y184829D01*

-X120059Y185504D01*

-X119901Y186162D01*

-X119642Y186787D01*

-X119289Y187364D01*

-X118849Y187879D01*

-X118334Y188319D01*

-X117757Y188672D01*

-X117132Y188931D01*

-X116474Y189089D01*

-X115799Y189142D01*

-X115124Y189089D01*

-X114466Y188931D01*

-X114438Y188920D01*

-Y278500D01*

-G37*

-G36*

-Y178920D02*X113841Y178672D01*

-X113264Y178319D01*

-X112749Y177879D01*

-X112309Y177364D01*

-X112219Y177217D01*

-Y182441D01*

-X112309Y182294D01*

-X112749Y181779D01*

-X113264Y181339D01*

-X113841Y180986D01*

-X114438Y180738D01*

-Y178920D01*

-G37*

-G36*

-Y150180D02*X114268Y150326D01*

-X113966Y150511D01*

-X113638Y150646D01*

-X113294Y150729D01*

-X112941Y150750D01*

-X112219D01*

-Y172441D01*

-X112309Y172294D01*

-X112749Y171779D01*

-X113264Y171339D01*

-X113841Y170986D01*

-X114438Y170738D01*

-Y150180D01*

-G37*

-G36*

-Y76500D02*X112219D01*

-Y102387D01*

-X112466Y102489D01*

-X112768Y102674D01*

-X113037Y102904D01*

-X113267Y103173D01*

-X113452Y103475D01*

-X113587Y103803D01*

-X113670Y104147D01*

-X113698Y104500D01*

-X113670Y104853D01*

-X113587Y105197D01*

-X113452Y105525D01*

-X113267Y105827D01*

-X113037Y106096D01*

-X112768Y106326D01*

-X112466Y106511D01*

-X112219Y106613D01*

-Y125535D01*

-X112222Y125534D01*

-X112504Y125557D01*

-X112780Y125623D01*

-X113042Y125731D01*

-X113283Y125879D01*

-X113499Y126063D01*

-X113683Y126279D01*

-X113831Y126520D01*

-X113939Y126782D01*

-X114005Y127058D01*

-X114022Y127340D01*

-X114005Y127622D01*

-X113939Y127898D01*

-X113831Y128160D01*

-X113683Y128401D01*

-X113499Y128617D01*

-X113283Y128801D01*

-X113042Y128949D01*

-X112780Y129057D01*

-X112504Y129123D01*

-X112222Y129146D01*

-X112219Y129145D01*

-Y146250D01*

-X112941D01*

-X113294Y146271D01*

-X113638Y146354D01*

-X113966Y146489D01*

-X114268Y146674D01*

-X114438Y146820D01*

-Y133997D01*

-X114380Y133961D01*

-X114164Y133777D01*

-X113980Y133561D01*

-X113832Y133320D01*

-X113724Y133058D01*

-X113658Y132782D01*

-X113635Y132500D01*

-X113658Y132218D01*

-X113724Y131942D01*

-X113832Y131680D01*

-X113980Y131439D01*

-X114164Y131223D01*

-X114380Y131039D01*

-X114438Y131003D01*

-Y123305D01*

-X114159Y123283D01*

-X113883Y123217D01*

-X113621Y123109D01*

-X113380Y122961D01*

-X113164Y122777D01*

-X112980Y122561D01*

-X112832Y122320D01*

-X112724Y122058D01*

-X112658Y121782D01*

-X112635Y121500D01*

-X112658Y121218D01*

-X112724Y120942D01*

-X112832Y120680D01*

-X112980Y120439D01*

-X113164Y120223D01*

-X113380Y120039D01*

-X113621Y119891D01*

-X113883Y119783D01*

-X114159Y119717D01*

-X114438Y119695D01*

-Y76500D01*

-G37*

-G36*

-X112219Y278500D02*X114438D01*

-Y188920D01*

-X113841Y188672D01*

-X113264Y188319D01*

-X112749Y187879D01*

-X112309Y187364D01*

-X112219Y187217D01*

-Y278500D01*

-G37*

-G36*

-Y106613D02*X112138Y106646D01*

-X111794Y106729D01*

-X111441Y106750D01*

-X109941D01*

-Y146250D01*

-X112219D01*

-Y129145D01*

-X111940Y129123D01*

-X111664Y129057D01*

-X111402Y128949D01*

-X111161Y128801D01*

-X110945Y128617D01*

-X110761Y128401D01*

-X110613Y128160D01*

-X110505Y127898D01*

-X110439Y127622D01*

-X110416Y127340D01*

-X110439Y127058D01*

-X110505Y126782D01*

-X110613Y126520D01*

-X110761Y126279D01*

-X110945Y126063D01*

-X111161Y125879D01*

-X111402Y125731D01*

-X111664Y125623D01*

-X111940Y125557D01*

-X112219Y125535D01*

-Y106613D01*

-G37*

-G36*

-Y76500D02*X109941D01*

-Y102250D01*

-X111441D01*

-X111794Y102271D01*

-X112138Y102354D01*

-X112219Y102387D01*

-Y76500D01*

-G37*

-G36*

-X109941Y278500D02*X112219D01*

-Y187217D01*

-X111956Y186787D01*

-X111697Y186162D01*

-X111539Y185504D01*

-X111486Y184829D01*

-X111539Y184154D01*

-X111697Y183496D01*

-X111956Y182871D01*

-X112219Y182441D01*

-Y177217D01*

-X111956Y176787D01*

-X111697Y176162D01*

-X111539Y175504D01*

-X111486Y174829D01*

-X111539Y174154D01*

-X111697Y173496D01*

-X111956Y172871D01*

-X112219Y172441D01*

-Y150750D01*

-X109941D01*

-Y170989D01*

-X109993Y171074D01*

-X110053Y171219D01*

-X110090Y171372D01*

-X110099Y171529D01*

-X110090Y178286D01*

-X110053Y178439D01*

-X109993Y178584D01*

-X109941Y178669D01*

-Y183662D01*

-X110059Y184154D01*

-X110099Y184829D01*

-X110059Y185504D01*

-X109941Y185996D01*

-Y278500D01*

-G37*

-G36*

-X162941Y228500D02*Y233500D01*

-X168441D01*

-Y228500D01*

-X162941D01*

-G37*

-G36*

-Y224000D02*Y229000D01*

-X168441D01*

-Y224000D01*

-X162941D01*

-G37*

-G36*

-Y218000D02*Y223000D01*

-X168441D01*

-Y218000D01*

-X162941D01*

-G37*

-G36*

-X308441Y113440D02*Y118440D01*

-X313941D01*

-Y113440D01*

-X308441D01*

-G37*

-G36*

-X180941Y101500D02*Y106500D01*

-X186441D01*

-Y101500D01*

-X180941D01*

-G37*

-G36*

-X228441Y145500D02*Y150500D01*

-X233941D01*

-Y145500D01*

-X228441D01*

-G37*

-G36*

-X166441Y211500D02*Y216500D01*

-X171941D01*

-Y211500D01*

-X166441D01*

-G37*

-G36*

-Y206000D02*Y211000D01*

-X171941D01*

-Y206000D01*

-X166441D01*

-G37*

-G36*

-Y199000D02*Y204000D01*

-X171941D01*

-Y199000D01*

-X166441D01*

-G37*

-G36*

-X206441Y145500D02*Y150500D01*

-X211941D01*

-Y145500D01*

-X206441D01*

-G37*

-G36*

-X124941D02*Y150500D01*

-X130441D01*

-Y145500D01*

-X124941D01*

-G37*

-G36*

-X132941Y335500D02*Y340500D01*

-X138441D01*

-Y335500D01*

-X132941D01*

-G37*

-G36*

-Y332000D02*Y337000D01*

-X138441D01*

-Y332000D01*

-X132941D01*

-G37*

-G36*

-X137441Y335000D02*Y340000D01*

-X142941D01*

-Y335000D01*

-X137441D01*

-G37*

-G36*

-X151441D02*Y340000D01*

-X156941D01*

-Y335000D01*

-X151441D01*

-G37*

-G36*

-X386941Y83000D02*X397941D01*

-X397441Y41500D01*

-X386941D01*

-Y83000D01*

-G37*

-G36*

-X306941Y139068D02*Y144068D01*

-X312441D01*

-Y139068D01*

-X306941D01*

-G37*

-G36*

-X109941Y155000D02*X117941D01*

-Y140000D01*

-X109941D01*

-Y155000D01*

-G37*

-G36*

-Y108000D02*X114941D01*

-Y100500D01*

-X109941D01*

-Y108000D01*

-G37*

-G36*

-X146941Y146500D02*Y151500D01*

-X152441D01*

-Y146500D01*

-X146941D01*

-G37*

-G36*

-X163941Y101500D02*Y106500D01*

-X169441D01*

-Y101500D01*

-X163941D01*

-G37*

-G54D222*X397441Y373000D02*X393941Y376500D01*

-X398441Y314000D02*X395441D01*

-X398441Y253000D02*X394441D01*

-X398441Y193614D02*X395441D01*

-X106441Y148500D02*X112941D01*

-X101941Y104500D02*X111441D01*

-G54D223*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D221*G36*

-X403750Y357250D02*Y350750D01*

-X410250D01*

-Y357250D01*

-X403750D01*

-G37*

-G54D224*X345799Y357329D03*

-G54D225*X315799Y337329D03*

-G54D224*X85799Y369829D03*

-G54D226*X105799Y374829D03*

-G54D221*G36*

-X102499Y368129D02*Y361529D01*

-X109099D01*

-Y368129D01*

-X102499D01*

-G37*

-G54D226*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-G54D227*X93299Y342329D03*

-G54D226*X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D221*G36*

-X450250Y267250D02*Y260750D01*

-X456750D01*

-Y267250D01*

-X450250D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X456750D01*

-Y207250D01*

-X450250D01*

-G37*

-G36*

-Y177250D02*Y170750D01*

-X456750D01*

-Y177250D01*

-X450250D01*

-G37*

-G54D223*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D221*G36*

-X450250Y237250D02*Y230750D01*

-X456750D01*

-Y237250D01*

-X450250D01*

-G37*

-G54D223*X463500Y234000D03*

-X473500D03*

-G54D221*G36*

-X450250Y147250D02*Y140750D01*

-X456750D01*

-Y147250D01*

-X450250D01*

-G37*

-G36*

-Y117250D02*Y110750D01*

-X456750D01*

-Y117250D01*

-X450250D01*

-G37*

-G36*

-Y87250D02*Y80750D01*

-X456750D01*

-Y87250D01*

-X450250D01*

-G37*

-G36*

-Y57250D02*Y50750D01*

-X456750D01*

-Y57250D01*

-X450250D01*

-G37*

-G54D223*X463500Y54000D03*

-X473500D03*

-G54D221*G36*

-X450250Y327250D02*Y320750D01*

-X456750D01*

-Y327250D01*

-X450250D01*

-G37*

-G54D223*X463500Y324000D03*

-X473500D03*

-G54D221*G36*

-X450250Y297250D02*Y290750D01*

-X456750D01*

-Y297250D01*

-X450250D01*

-G37*

-G54D223*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D221*G36*

-X309191Y252250D02*Y245750D01*

-X315691D01*

-Y252250D01*

-X309191D01*

-G37*

-G54D223*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D224*X345799Y192329D03*

-G54D221*G36*

-X450250Y387250D02*Y380750D01*

-X456750D01*

-Y387250D01*

-X450250D01*

-G37*

-G54D223*X463500Y384000D03*

-X473500D03*

-G54D221*G36*

-X403750Y387250D02*Y380750D01*

-X410250D01*

-Y387250D01*

-X403750D01*

-G37*

-G36*

-Y297250D02*Y290750D01*

-X410250D01*

-Y297250D01*

-X403750D01*

-G37*

-G36*

-Y327250D02*Y320750D01*

-X410250D01*

-Y327250D01*

-X403750D01*

-G37*

-G54D223*X417000Y324000D03*

-X427000D03*

-G54D221*G36*

-X450250Y357250D02*Y350750D01*

-X456750D01*

-Y357250D01*

-X450250D01*

-G37*

-G54D223*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D221*G36*

-X403750Y177250D02*Y170750D01*

-X410250D01*

-Y177250D01*

-X403750D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X410250D01*

-Y207250D01*

-X403750D01*

-G37*

-G36*

-Y237250D02*Y230750D01*

-X410250D01*

-Y237250D01*

-X403750D01*

-G37*

-G36*

-Y267250D02*Y260750D01*

-X410250D01*

-Y267250D01*

-X403750D01*

-G37*

-G54D223*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D221*G36*

-X202191Y50750D02*Y44250D01*

-X208691D01*

-Y50750D01*

-X202191D01*

-G37*

-G54D223*X205441Y57500D03*

-Y67500D03*

-G54D221*G36*

-X232191Y50750D02*Y44250D01*

-X238691D01*

-Y50750D01*

-X232191D01*

-G37*

-G54D223*X235441Y57500D03*

-Y67500D03*

-G54D221*G36*

-X262191Y50750D02*Y44250D01*

-X268691D01*

-Y50750D01*

-X262191D01*

-G37*

-G36*

-X172191D02*Y44250D01*

-X178691D01*

-Y50750D01*

-X172191D01*

-G37*

-G36*

-X142191D02*Y44250D01*

-X148691D01*

-Y50750D01*

-X142191D01*

-G37*

-G36*

-X112191D02*Y44250D01*

-X118691D01*

-Y50750D01*

-X112191D01*

-G37*

-G36*

-X82191D02*Y44250D01*

-X88691D01*

-Y50750D01*

-X82191D01*

-G37*

-G54D223*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D221*G36*

-X292191Y50750D02*Y44250D01*

-X298691D01*

-Y50750D01*

-X292191D01*

-G37*

-G54D223*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D224*X85799Y179829D03*

-G54D226*X105799Y184829D03*

-G54D221*G36*

-X102499Y178129D02*Y171529D01*

-X109099D01*

-Y178129D01*

-X102499D01*

-G37*

-G54D226*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D221*G36*

-X82191Y243250D02*Y236750D01*

-X88691D01*

-Y243250D01*

-X82191D01*

-G37*

-G54D223*X85441Y230000D03*

-Y220000D03*

-G54D226*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D221*G36*

-X192499Y200629D02*Y194029D01*

-X199099D01*

-Y200629D01*

-X192499D01*

-G37*

-G54D226*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D222*X307716Y275075D03*

-X308992Y271971D03*

-X308872Y266522D03*

-X287917Y307829D03*

-X293902Y282263D03*

-X296779Y304963D03*

-X295937Y243628D03*

-X296727Y256227D03*

-X312157Y300156D03*

-X312122Y295038D03*

-X303365Y330000D03*

-X285430Y325000D03*

-X302941Y340007D03*

-X245557Y279508D03*

-X242456Y293543D03*

-X262750Y268772D03*

-X253101Y261836D03*

-G54D228*X246941Y238000D03*

-X242441Y229500D03*

-X246441D03*

-X250941D03*

-X260941Y191500D03*

-X245863Y191524D03*

-X269441Y198500D03*

-X269941Y231500D03*

-X251941Y210500D03*

-X243941Y202000D03*

-X253441Y102500D03*

-X231441Y148000D03*

-X309441Y141568D03*

-Y136450D03*

-X310941Y115940D03*

-X305696Y107500D03*

-X304584Y207483D03*

-X304706Y210583D03*

-X305280Y204383D03*

-G54D222*X254740Y298329D03*

-X242168Y298800D03*

-G54D228*X246731Y303031D03*

-G54D222*X269653Y298631D03*

-G54D228*X270441Y336000D03*

-Y342500D03*

-Y349500D03*

-G54D222*X268941Y314000D03*

-G54D228*X270441Y357000D03*

-G54D222*X273229Y298582D03*

-X278225Y279602D03*

-X278207Y298612D03*

-X277174Y308219D03*

-X277449Y347500D03*

-G54D228*X263441Y320000D03*

-X260568Y316997D03*

-X261502Y307367D03*

-X249101Y328793D03*

-X229818Y354988D03*

-G54D222*X266413Y296594D03*

-X263240Y295329D03*

-X262740Y291829D03*

-X260341Y284249D03*

-X264034Y282931D03*

-G54D228*X279441Y285000D03*

-G54D229*X386441Y163000D03*

-X400441Y194000D03*

-X389441Y184000D03*

-X400441Y189000D03*

-G54D228*X386023Y157813D03*

-X398441Y173000D03*

-G54D229*X393441Y208000D03*

-X384162Y188000D03*

-X458441Y195000D03*

-Y164000D03*

-X372441Y170386D03*

-G54D228*X377347Y162178D03*

-G54D229*X387441Y326000D03*

-X393441Y355000D03*

-X386720Y282000D03*

-X393441Y327000D03*

-X384162Y306000D03*

-X385941Y354500D03*

-X458441Y375000D03*

-X383662Y378500D03*

-X397441Y373000D03*

-X397941Y367441D03*

-G54D228*X385941Y366000D03*

-G54D229*X458441Y345000D03*

-Y315000D03*

-Y285000D03*

-X398441Y314000D03*

-Y309000D03*

-G54D228*Y291000D03*

-G54D229*X372441Y290689D03*

-Y351189D03*

-G54D228*X339837Y341827D03*

-X353390Y339521D03*

-G54D229*X375441Y235000D03*

-G54D228*X356441Y233000D03*

-X338441Y224192D03*

-Y230124D03*

-X337441Y163000D03*

-X358941Y208500D03*

-G54D229*X384512Y258000D03*

-G54D228*X371602Y260228D03*

-G54D229*X458441Y254000D03*

-Y225000D03*

-X387070Y235000D03*

-X398441Y248000D03*

-Y253000D03*

-G54D228*X396441Y235000D03*

-X392188Y239000D03*

-X388207Y247280D03*

-G54D222*X239302Y262235D03*

-G54D228*X245441Y127500D03*

-X235941Y133000D03*

-X236441Y235500D03*

-X202441Y212500D03*

-X210441D03*

-X220441Y215000D03*

-X224941Y220500D03*

-X225441Y226500D03*

-X224941Y235500D03*

-X224441Y244000D03*

-X212941Y238000D03*

-X203941Y237500D03*

-X193941Y237000D03*

-X181941Y258500D03*

-X183941Y104000D03*

-X112222Y127340D03*

-X114441Y121500D03*

-X115441Y132500D03*

-X101941Y104500D03*

-X166441Y104000D03*

-X127941Y148000D03*

-X106441Y148500D03*

-X149941Y149000D03*

-X138925Y206113D03*

-X138872Y202030D03*

-X138925Y197841D03*

-X161941Y199000D03*

-X166941Y197500D03*

-X138925Y192698D03*

-X161941Y193000D03*

-X166941D03*

-X163941Y127500D03*

-X193390D03*

-X152441Y121500D03*

-X151941Y132000D03*

-X195441Y133000D03*

-X141441Y148000D03*

-X208941D03*

-X223941D03*

-X198441Y122500D03*

-X234441D03*

-X221884Y254000D03*

-X224441Y252000D03*

-X225441Y249000D03*

-X230441Y247000D03*

-X219441Y272500D03*

-X230441Y293000D03*

-X220729Y265580D03*

-X220441Y259500D03*

-X218441Y261500D03*

-X217441Y279000D03*

-X240391Y278564D03*

-X128941Y274500D03*

-Y268500D03*

-Y262500D03*

-Y255000D03*

-Y248500D03*

-Y242500D03*

-X104441Y204500D03*

-X100941D03*

-X141307Y300883D03*

-X124831Y302385D03*

-X158441Y323829D03*

-Y328829D03*

-Y326500D03*

-X153941Y338000D03*

-X154941Y345500D03*

-X135441Y338500D03*

-Y335000D03*

-X139941Y338000D03*

-X111941Y334000D03*

-X117941D03*

-X126441D03*

-X142441Y357500D03*

-Y349500D03*

-X149441D03*

-X126441Y340500D03*

-X111941Y341000D03*

-Y357500D03*

-X121941D03*

-X130941D03*

-X197441Y314500D03*

-Y308500D03*

-X198441Y262500D03*

-Y269500D03*

-X205441Y277000D03*

-X195441Y311500D03*

-X191363Y344449D03*

-X178887Y342818D03*

-X168732Y350833D03*

-X162441Y242500D03*

-X165941Y231000D03*

-Y226500D03*

-X185441Y228000D03*

-X177441D03*

-X162441Y248500D03*

-X161941Y255000D03*

-X162441Y262500D03*

-X162941Y268500D03*

-Y274500D03*

-X165941Y220500D03*

-X169441Y214000D03*

-Y208500D03*

-Y201500D03*

-X177441Y217500D03*

-X185441D03*

-X193941Y212500D03*

-G54D229*X432324Y111000D03*

-X446441Y102000D03*

-X434882Y75000D03*

-G54D230*X440941Y123000D03*

-G54D229*X423441Y75000D03*

-G54D228*X434449Y56500D03*

-X440449D03*

-X354941Y93499D03*

-Y97999D03*

-Y103999D03*

-Y109999D03*

-Y115999D03*

-Y121999D03*

-Y127999D03*

-X387941D03*

-Y121999D03*

-Y115999D03*

-Y109999D03*

-Y97999D03*

-Y93499D03*

-Y103999D03*

-X391441Y84499D03*

-Y79999D03*

-X391941Y74499D03*

-X395441Y66999D03*

-X394441Y59999D03*

-X392941Y53499D03*

-X368941Y48500D03*

-Y43500D03*

-X374941D03*

-Y47000D03*

-G54D231*G54D228*G54D231*G54D228*G54D231*G54D228*G54D231*G54D228*G54D231*G54D228*G54D231*G54D228*G54D231*G54D228*G54D231*G54D228*G54D231*G54D228*G54D232*G54D228*G54D231*G54D233*G54D234*G54D235*G54D234*G54D236*G54D227*G54D236*G54D233*G54D234*G54D233*G54D234*G54D236*G54D233*G54D236*M02*

diff --git a/bbb_cape/schematic/gerbers/20140117/cape.outline.gbr b/bbb_cape/schematic/gerbers/20140117/cape.outline.gbr
deleted file mode 100644
index e308929..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.outline.gbr
+++ /dev/null
@@ -1,31 +0,0 @@
-G04 start of page 6 for group 4 idx 4 *

-G04 Title: 971 BBB Cape, outline *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Sun Jan 19 01:17:08 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNOUTLINE*%

-%ADD265C,0.0250*%

-%ADD264C,0.0080*%

-G54D264*X68000Y42000D02*Y244000D01*

-X74500Y250500D02*X101000D01*

-X107500Y256000D02*Y312500D01*

-X101000Y319000D02*X74500D01*

-X68000Y325500D02*Y393300D01*

-X484600D02*Y42000D01*

-X479100Y35500D02*X73500D01*

-G54D265*X189949Y136059D02*X189890Y136000D01*

-G54D264*X74500Y399800D02*X478100D01*

-X74500Y35500D02*G75*G02X68000Y42000I0J6500D01*G01*

-Y244000D02*G75*G02X74500Y250500I6500J0D01*G01*

-X107500Y257000D02*G75*G02X101000Y250500I-6500J0D01*G01*

-Y319000D02*G75*G02X107500Y312500I0J-6500D01*G01*

-X74500Y319000D02*G75*G02X68000Y325500I0J6500D01*G01*

-X478100Y399800D02*G75*G02X484600Y393300I0J-6500D01*G01*

-Y42000D02*G75*G02X478100Y35500I-6500J0D01*G01*

-X68000Y393300D02*G75*G02X74500Y399800I6500J0D01*G01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140117/cape.plated-drill.cnc b/bbb_cape/schematic/gerbers/20140117/cape.plated-drill.cnc
deleted file mode 100644
index 2d0213f..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.plated-drill.cnc
+++ /dev/null
@@ -1,471 +0,0 @@
-M48

-INCH

-T273C0.035

-T272C0.020

-T271C0.010

-T270C0.250

-T269C0.046

-T268C0.200

-T267C0.129

-T266C0.040

-%

-T271

-X030772Y027508

-X030899Y027197

-X030887Y026652

-X028792Y030783

-X029390Y028226

-X029678Y030496

-X029594Y024363

-X029673Y025623

-X031216Y030016

-X031212Y029504

-X030336Y033000

-X028543Y032500

-X030294Y034001

-X024556Y027951

-X024246Y029354

-X026275Y026877

-X025310Y026184

-X024694Y023800

-X024244Y022950

-X024644Y022950

-X025094Y022950

-X026094Y019150

-X024586Y019152

-X026944Y019850

-X026994Y023150

-X025194Y021050

-X024394Y020200

-X025344Y010250

-X023144Y014800

-X030944Y014157

-X030944Y013645

-X031094Y011594

-X030570Y010750

-X030458Y020748

-X030471Y021058

-X030528Y020438

-X025474Y029833

-X024217Y029880

-X024673Y030303

-X026965Y029863

-X027044Y033600

-X027044Y034250

-X027044Y034950

-X026894Y031400

-X027044Y035700

-X027323Y029858

-X027822Y027960

-X027821Y029861

-X027717Y030822

-X027745Y034750

-X026344Y032000

-X026057Y031700

-X026150Y030737

-X024910Y032879

-X022982Y035499

-X026641Y029659

-X026324Y029533

-X026274Y029183

-X026034Y028425

-X026403Y028293

-X027944Y028500

-X038602Y015781

-X039844Y017300

-X037735Y016218

-X038594Y036600

-X039844Y029100

-X033984Y034183

-X035339Y033952

-X035644Y023300

-X033844Y022419

-X033844Y023012

-X033744Y016300

-X035894Y020850

-X037160Y026023

-X039644Y023500

-X039219Y023900

-X038821Y024728

-X023930Y026224

-X024544Y012750

-X023594Y013300

-X023644Y023550

-X020244Y021250

-X021044Y021250

-X022044Y021500

-X022494Y022050

-X022544Y022650

-X022494Y023550

-X022444Y024400

-X021294Y023800

-X020394Y023750

-X019394Y023700

-X018194Y025850

-X018394Y010400

-X011222Y012734

-X011444Y012150

-X011544Y013250

-X010194Y010450

-X016644Y010400

-X012794Y014800

-X010644Y014850

-X014994Y014900

-X013892Y020611

-X013887Y020203

-X013892Y019784

-X016194Y019900

-X016694Y019750

-X013892Y019270

-X016194Y019300

-X016694Y019300

-X016394Y012750

-X019339Y012750

-X015244Y012150

-X015194Y013200

-X019544Y013300

-X014144Y014800

-X020894Y014800

-X022394Y014800

-X019844Y012250

-X023444Y012250

-X022188Y025400

-X022444Y025200

-X022544Y024900

-X023044Y024700

-X021944Y027250

-X023044Y029300

-X022073Y026558

-X022044Y025950

-X021844Y026150

-X021744Y027900

-X024039Y027856

-X012894Y027450

-X012894Y026850

-X012894Y026250

-X012894Y025500

-X012894Y024850

-X012894Y024250

-X010444Y020450

-X010094Y020450

-X014131Y030088

-X012483Y030238

-X015844Y032383

-X015844Y032883

-X015844Y032650

-X015394Y033800

-X015494Y034550

-X013544Y033850

-X013544Y033500

-X013994Y033800

-X011194Y033400

-X011794Y033400

-X012644Y033400

-X014244Y035750

-X014244Y034950

-X014944Y034950

-X012644Y034050

-X011194Y034100

-X011194Y035750

-X012194Y035750

-X013094Y035750

-X019744Y031450

-X019744Y030850

-X019844Y026250

-X019844Y026950

-X020544Y027700

-X019544Y031150

-X019136Y034445

-X017889Y034282

-X016873Y035083

-X016244Y024250

-X016594Y023100

-X016594Y022650

-X018544Y022800

-X017744Y022800

-X016244Y024850

-X016194Y025500

-X016244Y026250

-X016294Y026850

-X016294Y027450

-X016594Y022050

-X016944Y021400

-X016944Y020850

-X016944Y020150

-X017744Y021750

-X018544Y021750

-X019394Y021250

-X043445Y005650

-X044045Y005650

-X035494Y009350

-X035494Y009800

-X035494Y010400

-X035494Y011000

-X035494Y011600

-X035494Y012200

-X035494Y012800

-X038794Y012800

-X038794Y012200

-X038794Y011600

-X038794Y011000

-X038794Y009800

-X038794Y009350

-X038794Y010400

-X039144Y008450

-X039144Y008000

-X039194Y007450

-X039544Y006700

-X039444Y006000

-X039294Y005350

-X036894Y004850

-X036894Y004350

-X037494Y004350

-X037494Y004700

-T272

-X038644Y016300

-X040044Y019400

-X038944Y018400

-X040044Y018900

-X039344Y020800

-X038416Y018800

-X045844Y019500

-X045844Y016400

-X037244Y017039

-X038744Y032600

-X039344Y035500

-X038672Y028200

-X039344Y032700

-X038416Y030600

-X038594Y035450

-X045844Y037500

-X038366Y037850

-X039744Y037300

-X039794Y036744

-X045844Y034500

-X045844Y031500

-X045844Y028500

-X039844Y031400

-X039844Y030900

-X037244Y029069

-X037244Y035119

-X037544Y023500

-X038451Y025800

-X045844Y025400

-X045844Y022500

-X038707Y023500

-X039844Y024800

-X039844Y025300

-X043232Y011100

-X044644Y010200

-X043488Y007500

-X042344Y007500

-T273

-X044094Y012300

-T266

-X041700Y038400

-X041700Y029400

-X041700Y035400

-X042700Y038400

-X042700Y029400

-X042700Y035400

-X040700Y035400

-X045350Y026400

-X045350Y020400

-X045350Y017400

-X046350Y026400

-X046350Y020400

-X046350Y017400

-X046350Y014400

-X046350Y011400

-X046350Y008400

-X047350Y026400

-X047350Y020400

-X047350Y017400

-X047350Y014400

-X047350Y011400

-X047350Y008400

-X045350Y023400

-X046350Y023400

-X047350Y023400

-X045350Y014400

-X045350Y011400

-X045350Y008400

-X045350Y005400

-X046350Y005400

-X047350Y005400

-X045350Y032400

-X046350Y032400

-X047350Y032400

-X045350Y029400

-X046350Y029400

-X047350Y029400

-X043700Y032400

-X031244Y024900

-X032244Y024900

-X033244Y024900

-X034244Y024900

-X045350Y038400

-X046350Y038400

-X047350Y038400

-X040700Y038400

-X040700Y029400

-X040700Y032400

-X041700Y032400

-X042700Y032400

-X045350Y035400

-X043700Y035400

-X046350Y035400

-X047350Y035400

-X043700Y038400

-X043700Y017400

-X043700Y020400

-X043700Y023400

-X043700Y026400

-X043700Y029400

-X040700Y017400

-X040700Y020400

-X040700Y023400

-X040700Y026400

-X041700Y017400

-X041700Y020400

-X041700Y023400

-X041700Y026400

-X042700Y017400

-X042700Y020400

-X042700Y023400

-X042700Y026400

-X020544Y004750

-X020544Y005750

-X020544Y006750

-X023544Y004750

-X023544Y005750

-X023544Y006750

-X026544Y004750

-X017544Y004750

-X014544Y004750

-X011544Y004750

-X008544Y004750

-X026544Y005750

-X017544Y005750

-X014544Y005750

-X011544Y005750

-X008544Y005750

-X026544Y006750

-X017544Y006750

-X029544Y004750

-X029544Y005750

-X029544Y006750

-X014544Y006750

-X011544Y006750

-X008544Y006750

-X008544Y024000

-X008544Y023000

-X008544Y022000

-T269

-X010580Y037483

-X010580Y036483

-X011580Y037483

-X011580Y036483

-X012580Y037483

-X012580Y036483

-X013580Y037483

-X013580Y036483

-X014580Y037483

-X014580Y036483

-X015580Y036483

-X016580Y036483

-X015580Y037483

-X016580Y037483

-X017580Y037483

-X018580Y037483

-X019580Y037483

-X020580Y037483

-X017580Y036483

-X018580Y036483

-X019580Y036483

-X020580Y036483

-X021580Y037483

-X022580Y037483

-X023580Y037483

-X021580Y036483

-X022580Y036483

-X023580Y036483

-X024580Y036483

-X025580Y036483

-X026580Y036483

-X024580Y037483

-X025580Y037483

-X026580Y037483

-X027580Y037483

-X027580Y036483

-X028580Y037483

-X029580Y037483

-X030580Y037483

-X031580Y037483

-X032580Y037483

-X028580Y036483

-X029580Y036483

-X030580Y036483

-X031580Y036483

-X032580Y036483

-X010580Y018483

-X010580Y017483

-X011580Y018483

-X011580Y017483

-X012580Y018483

-X012580Y017483

-X013580Y018483

-X014580Y018483

-X015580Y018483

-X013580Y017483

-X014580Y017483

-X015580Y017483

-X016580Y018483

-X017580Y018483

-X018580Y018483

-X019580Y018483

-X016580Y017483

-X017580Y017483

-X018580Y017483

-X019580Y017483

-X019580Y019733

-X020580Y019733

-X021580Y019733

-X022580Y019733

-X023580Y019733

-X020580Y018483

-X021580Y018483

-X022580Y018483

-X020580Y017483

-X021580Y017483

-X022580Y017483

-X023580Y017483

-X024580Y017483

-X025580Y017483

-X023580Y018483

-X024580Y018483

-X025580Y018483

-X026580Y018483

-X026580Y017483

-X027580Y018483

-X028580Y018483

-X029580Y018483

-X030580Y018483

-X031580Y018483

-X032580Y018483

-X027580Y017483

-X028580Y017483

-X029580Y017483

-X030580Y017483

-X031580Y017483

-X032580Y017483

-T267

-X034580Y035733

-X008580Y036983

-X034580Y019233

-X008580Y017983

-T268

-X031580Y033733

-T270

-X009330Y034233

-M30

diff --git a/bbb_cape/schematic/gerbers/20140117/cape.pns b/bbb_cape/schematic/gerbers/20140117/cape.pns
deleted file mode 100644
index 15c9a4d..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.pns
+++ /dev/null
@@ -1,235 +0,0 @@
-refdes	pn	value	footprint	
-R1	ERJ-3GEYJ131V	130 ohms	0603	
-D1	LG R971-KN-1	green	0805	
-R17	SG73S1JTTD102J	1 kohms	0603	
-D7	LG R971-KN-1	green	0805	
-CONN1	22-23-2041	unknown	22-23-2041	
-R15	ERJ-3GEYJ131V	130 ohms	0603	
-R14	ERJ-3GEYJ131V	130 ohms	0603	
-R13	ERJ-3GEYJ131V	130 ohms	0603	
-D6	LH R974-LP-1	red	0805	
-D5	LG R971-KN-1	green	0805	
-D2	LY R971-HL-1	yellow	0805	
-C31	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C32	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C30	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C29	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C28	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C27	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C26	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C25	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C24	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C23	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C22	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C21	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C20	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C19	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C18	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-CONN9	22-23-2031	unknown	22-23-2031	
-CONN8	22-23-2031	unknown	22-23-2031	
-CONN7	22-23-2031	unknown	22-23-2031	
-CONN6	22-23-2031	unknown	22-23-2031	
-CONN2	22-23-2031	unknown	22-23-2031	
-CONN3	22-23-2031	unknown	22-23-2031	
-CONN4	22-23-2031	unknown	22-23-2031	
-CONN5	22-23-2031	unknown	22-23-2031	
-CONN12	22-23-2031	unknown	22-23-2031	
-C17	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C16	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X9/R12	CRCW06036K65FKEA	6.65 kohms	0603	
-X9/R11	CRCW06036K65FKEA	6.65 kohms	0603	
-X9/R10	CRCW06036K65FKEA	6.65 kohms	0603	
-X9/R9	CRCW06036K65FKEA	6.65 kohms	0603	
-X9/R8	CRCW06036K65FKEA	6.65 kohms	0603	
-X9/R7	CRCW06036K65FKEA	6.65 kohms	0603	
-X9/R6	CRCW06036K65FKEA	6.65 kohms	0603	
-X9/R5	CRCW06036K65FKEA	6.65 kohms	0603	
-X9/C4	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X9/R4	CRCW06034K99FKEAHP	5 kohms	0603	
-X9/C3	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X9/R3	CRCW06034K99FKEAHP	5 kohms	0603	
-X9/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X9/R2	CRCW06034K99FKEAHP	5 kohms	0603	
-X9/R1	CRCW06034K99FKEAHP	5 kohms	0603	
-X9/C1	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X9/C5	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X9/U2	MCP604-E/SL	unknown	SO14	
-X8/R12	CRCW06036K65FKEA	6.65 kohms	0603	
-X8/R11	CRCW06036K65FKEA	6.65 kohms	0603	
-X8/R10	CRCW06036K65FKEA	6.65 kohms	0603	
-X8/R9	CRCW06036K65FKEA	6.65 kohms	0603	
-X8/R8	CRCW06036K65FKEA	6.65 kohms	0603	
-X8/R7	CRCW06036K65FKEA	6.65 kohms	0603	
-X8/R6	CRCW06036K65FKEA	6.65 kohms	0603	
-X8/R5	CRCW06036K65FKEA	6.65 kohms	0603	
-X8/C4	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X8/R4	CRCW06034K99FKEAHP	5 kohms	0603	
-X8/C3	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X8/R3	CRCW06034K99FKEAHP	5 kohms	0603	
-X8/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X8/R2	CRCW06034K99FKEAHP	5 kohms	0603	
-X8/R1	CRCW06034K99FKEAHP	5 kohms	0603	
-X8/C1	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X8/C5	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X8/U2	MCP604-E/SL	unknown	SO14	
-U1	MCP3008-ISL	unknown	SO16	
-C15	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-C14	VJ0805G225KXYTW1BC	2.2 uF	0805	
-C13	VJ0805G225KXYTW1BC	2.2 uF	0805	
-C12	08056D106MAT2A	10 uF	0805	
-C11	08056D106MAT2A	10 uF	0805	
-D4	PMBD914,215	unknown	SOT23	
-C10	08056D106MAT2A	10 uF	0805	
-C9	VJ0603V105MXQPW1BC	1 uF	0603	
-C7	08056D106MAT2A	10 uF	0805	
-C8	VJ0603V105MXQPW1BC	1 uF	0603	
-U3	TC1262-3.3VDB	unknown	SOT223	
-C6	VJ0603V105MXQPW1BC	1 uF	0603	
-C3	VJ0603V105MXQPW1BC	1 uF	0603	
-U4	TC1262-3.3VDB	unknown	SOT223	
-C2	VJ0603V105MXQPW1BC	1 uF	0603	
-L2	LQH43MN471J03L	470 uH	1812	
-U2	ADXRS453	unknown	SO16W	
-U9	ABMM-8.000MHZ-B2-T	unknown	ABMM2	
-C5	VJ0603A180JXACW1BC	18 pF	0603	
-C4	VJ0603A180JXACW1BC	18 pF	0603	
-X6/C1	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X6/X4/R7	SG73S1JTTD103J	10 kohms	0603	
-X6/X4/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X6/X4/CONN12	22-23-2031	unknown	22-23-2031	
-X6/X4/R6	ERJ-3EKF4990V	500 ohms	0603	
-X6/X3/R7	SG73S1JTTD103J	10 kohms	0603	
-X6/X3/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X6/X3/CONN12	22-23-2031	unknown	22-23-2031	
-X6/X3/R6	ERJ-3EKF4990V	500 ohms	0603	
-X6/X1/R7	SG73S1JTTD103J	10 kohms	0603	
-X6/X1/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X6/X1/CONN12	22-23-2031	unknown	22-23-2031	
-X6/X1/R6	ERJ-3EKF4990V	500 ohms	0603	
-X6/X2/R7	SG73S1JTTD103J	10 kohms	0603	
-X6/X2/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X6/X2/CONN12	22-23-2031	unknown	22-23-2031	
-X6/X2/R6	ERJ-3EKF4990V	500 ohms	0603	
-X6/U4	AM26LV32EIPWR	unknown	TSSOP16	
-X7/C1	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X7/X4/R7	SG73S1JTTD103J	10 kohms	0603	
-X7/X4/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X7/X4/CONN12	22-23-2031	unknown	22-23-2031	
-X7/X4/R6	ERJ-3EKF4990V	500 ohms	0603	
-X7/X3/R7	SG73S1JTTD103J	10 kohms	0603	
-X7/X3/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X7/X3/CONN12	22-23-2031	unknown	22-23-2031	
-X7/X3/R6	ERJ-3EKF4990V	500 ohms	0603	
-X7/X1/R7	SG73S1JTTD103J	10 kohms	0603	
-X7/X1/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X7/X1/CONN12	22-23-2031	unknown	22-23-2031	
-X7/X1/R6	ERJ-3EKF4990V	500 ohms	0603	
-X7/X2/R7	SG73S1JTTD103J	10 kohms	0603	
-X7/X2/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X7/X2/CONN12	22-23-2031	unknown	22-23-2031	
-X7/X2/R6	ERJ-3EKF4990V	500 ohms	0603	
-X7/U4	AM26LV32EIPWR	unknown	TSSOP16	
-X5/C1	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X5/X4/R7	SG73S1JTTD103J	10 kohms	0603	
-X5/X4/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X5/X4/CONN12	22-23-2031	unknown	22-23-2031	
-X5/X4/R6	ERJ-3EKF4990V	500 ohms	0603	
-X5/X3/R7	SG73S1JTTD103J	10 kohms	0603	
-X5/X3/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X5/X3/CONN12	22-23-2031	unknown	22-23-2031	
-X5/X3/R6	ERJ-3EKF4990V	500 ohms	0603	
-X5/X1/R7	SG73S1JTTD103J	10 kohms	0603	
-X5/X1/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X5/X1/CONN12	22-23-2031	unknown	22-23-2031	
-X5/X1/R6	ERJ-3EKF4990V	500 ohms	0603	
-X5/X2/R7	SG73S1JTTD103J	10 kohms	0603	
-X5/X2/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X5/X2/CONN12	22-23-2031	unknown	22-23-2031	
-X5/X2/R6	ERJ-3EKF4990V	500 ohms	0603	
-X5/U4	AM26LV32EIPWR	unknown	TSSOP16	
-R12	ERJ-3EKF4990V	500 ohms	0603	
-R10	ERJ-3EKF4990V	500 ohms	0603	
-U8	PRPC023DAAN-RC x2; SSQ-105-03-G-S	unknown	beaglebone	
-X16/D1	LG R971-KN-1	green	0805	
-X16/R13	CRCW0603300RFKEAHP	300 ohms	0603	
-X16/C6	C3225X5R0J107MT	100 uF	1210	
-X16/R6	CRCW08056K65FKEA	6.65 kohm	0805	
-X16/R5	CRCW08051K27FKEA	1.27 kohm	0805	
-X16/R4	ERJ-3EKF9311V	9.31 kohm	0603	
-X16/R3	CRCW0603154KFKEA	154.0 kohm	0603	
-X16/R2	CRCW060334K0FKEA	34.0 kohm	0603	
-X16/C5	CC0805KRX7R9BB223	22 nf	0805	
-X16/C4	C3225X7R1E106MT	10 uF	1210	
-X16/C3	C3225X7R1E106MT	10 uF	1210	
-X16/C2	GRM216R71H103KA01D	10 nf	0805	
-X16/U3	LMZ12002TZ-ADJ/NOPB	unknown	TOPMOD	
-X14/D1	LG R971-KN-1	green	0805	
-X14/R13	CRCW0603300RFKEAHP	300 ohms	0603	
-X14/C6	C3225X5R0J107MT	100 uF	1210	
-X14/R6	CRCW08056K65FKEA	6.65 kohm	0805	
-X14/R5	CRCW08051K27FKEA	1.27 kohm	0805	
-X14/R4	ERJ-3EKF9311V	9.31 kohm	0603	
-X14/R3	CRCW0603154KFKEA	154.0 kohm	0603	
-X14/R2	CRCW060334K0FKEA	34.0 kohm	0603	
-X14/C5	CC0805KRX7R9BB223	22 nf	0805	
-X14/C4	C3225X7R1E106MT	10 uF	1210	
-X14/C3	C3225X7R1E106MT	10 uF	1210	
-X14/C2	GRM216R71H103KA01D	10 nf	0805	
-X14/U3	LMZ12002TZ-ADJ/NOPB	unknown	TOPMOD	
-X1/C1	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X1/X4/R10	SG73S1JTTD103J	10 kohms	0603	
-X1/X4/R9	SG73S1JTTD103J	10 kohms	0603	
-X1/X4/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X1/X4/R8	ERJ-3EKF4990V	500 ohms	0603	
-X1/X4/R6	ERJ-3EKF4990V	500 ohms	0603	
-X1/X4/CONN4	22-23-2041	unknown	22-23-2041	
-X1/X2/R10	SG73S1JTTD103J	10 kohms	0603	
-X1/X2/R9	SG73S1JTTD103J	10 kohms	0603	
-X1/X2/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X1/X2/R8	ERJ-3EKF4990V	500 ohms	0603	
-X1/X2/R6	ERJ-3EKF4990V	500 ohms	0603	
-X1/X2/CONN4	22-23-2041	unknown	22-23-2041	
-X1/U4	AM26LV32EIPWR	unknown	TSSOP16	
-X3/C1	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X3/X4/R10	SG73S1JTTD103J	10 kohms	0603	
-X3/X4/R9	SG73S1JTTD103J	10 kohms	0603	
-X3/X4/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X3/X4/R8	ERJ-3EKF4990V	500 ohms	0603	
-X3/X4/R6	ERJ-3EKF4990V	500 ohms	0603	
-X3/X4/CONN4	22-23-2041	unknown	22-23-2041	
-X3/X2/R10	SG73S1JTTD103J	10 kohms	0603	
-X3/X2/R9	SG73S1JTTD103J	10 kohms	0603	
-X3/X2/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X3/X2/R8	ERJ-3EKF4990V	500 ohms	0603	
-X3/X2/R6	ERJ-3EKF4990V	500 ohms	0603	
-X3/X2/CONN4	22-23-2041	unknown	22-23-2041	
-X3/U4	AM26LV32EIPWR	unknown	TSSOP16	
-X4/C1	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X4/X4/R10	SG73S1JTTD103J	10 kohms	0603	
-X4/X4/R9	SG73S1JTTD103J	10 kohms	0603	
-X4/X4/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X4/X4/R8	ERJ-3EKF4990V	500 ohms	0603	
-X4/X4/R6	ERJ-3EKF4990V	500 ohms	0603	
-X4/X4/CONN4	22-23-2041	unknown	22-23-2041	
-X4/X2/R10	SG73S1JTTD103J	10 kohms	0603	
-X4/X2/R9	SG73S1JTTD103J	10 kohms	0603	
-X4/X2/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X4/X2/R8	ERJ-3EKF4990V	500 ohms	0603	
-X4/X2/R6	ERJ-3EKF4990V	500 ohms	0603	
-X4/X2/CONN4	22-23-2041	unknown	22-23-2041	
-X4/U4	AM26LV32EIPWR	unknown	TSSOP16	
-X2/C1	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X2/X4/R10	SG73S1JTTD103J	10 kohms	0603	
-X2/X4/R9	SG73S1JTTD103J	10 kohms	0603	
-X2/X4/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X2/X4/R8	ERJ-3EKF4990V	500 ohms	0603	
-X2/X4/R6	ERJ-3EKF4990V	500 ohms	0603	
-X2/X4/CONN4	22-23-2041	unknown	22-23-2041	
-X2/X2/R10	SG73S1JTTD103J	10 kohms	0603	
-X2/X2/R9	SG73S1JTTD103J	10 kohms	0603	
-X2/X2/C2	VJ0603Y104JXJPW1BC	0.1 uF	0603	
-X2/X2/R8	ERJ-3EKF4990V	500 ohms	0603	
-X2/X2/R6	ERJ-3EKF4990V	500 ohms	0603	
-X2/X2/CONN4	22-23-2041	unknown	22-23-2041	
-X2/U4	AM26LV32EIPWR	unknown	TSSOP16	
-U6	STM32F205RGT6	unknown	LQFP64_10	
diff --git a/bbb_cape/schematic/gerbers/20140117/cape.top.gbr b/bbb_cape/schematic/gerbers/20140117/cape.top.gbr
deleted file mode 100644
index 9167a32..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.top.gbr
+++ /dev/null
@@ -1,3648 +0,0 @@
-G04 start of page 2 for group 0 idx 0 *

-G04 Title: 971 BBB Cape, top *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Sun Jan 19 01:17:08 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNTOP*%

-%ADD203C,0.0460*%

-%ADD202C,0.2000*%

-%ADD201C,0.1285*%

-%ADD200C,0.0350*%

-%ADD199C,0.0600*%

-%ADD198C,0.0360*%

-%ADD197C,0.0200*%

-%ADD196R,0.0550X0.0550*%

-%ADD195R,0.0948X0.0948*%

-%ADD194R,0.0110X0.0110*%

-%ADD193R,0.0340X0.0340*%

-%ADD192R,0.0130X0.0130*%

-%ADD191R,0.0350X0.0350*%

-%ADD190R,0.0295X0.0295*%

-%ADD189R,0.0200X0.0200*%

-%ADD188R,0.0512X0.0512*%

-%ADD187R,0.2106X0.2106*%

-%ADD186C,0.2500*%

-%ADD185C,0.0660*%

-%ADD184C,0.2200*%

-%ADD183C,0.1830*%

-%ADD182C,0.0650*%

-%ADD181C,0.0550*%

-%ADD180C,0.0400*%

-%ADD179C,0.0250*%

-%ADD178C,0.0080*%

-%ADD177C,0.0100*%

-%ADD176C,0.0001*%

-G54D176*G36*

-X182941Y321000D02*X199941D01*

-Y302500D01*

-X182941D01*

-Y321000D01*

-G37*

-G36*

-X267324Y200573D02*X271324D01*

-Y196573D01*

-X267324D01*

-Y200573D01*

-G37*

-G36*

-X271324D01*

-Y196573D01*

-X267324D01*

-Y200573D01*

-G37*

-G36*

-X258824Y193573D02*X262824D01*

-Y189573D01*

-X258824D01*

-Y193573D01*

-G37*

-G36*

-X241824Y204073D02*X245824D01*

-Y200073D01*

-X241824D01*

-Y204073D01*

-G37*

-G36*

-X249824Y212573D02*X253824D01*

-Y208573D01*

-X249824D01*

-Y212573D01*

-G37*

-G36*

-X267824Y233573D02*X271824D01*

-Y229573D01*

-X267824D01*

-Y233573D01*

-G37*

-G36*

-X323941Y107499D02*X347941Y131499D01*

-X391941D01*

-Y91499D01*

-X323941D01*

-Y107499D01*

-G37*

-G36*

-X314941Y89000D02*X357941D01*

-Y62000D01*

-X344941D01*

-X330941Y76000D01*

-X314941D01*

-Y89000D01*

-G37*

-G36*

-X385941Y86499D02*X394941D01*

-Y72499D01*

-X398441Y68999D01*

-Y39500D01*

-X387441D01*

-Y61999D01*

-X388941Y63499D01*

-Y71499D01*

-X385941Y74499D01*

-Y86499D01*

-G37*

-G36*

-X366441Y66000D02*X370398D01*

-X370441Y52000D01*

-X384441D01*

-Y39500D01*

-X368941D01*

-X366441Y42000D01*

-Y66000D01*

-G37*

-G36*

-X275792Y211941D02*X280021Y216170D01*

-X280057Y216201D01*

-X280180Y216344D01*

-X280180Y216344D01*

-X280279Y216506D01*

-X280351Y216680D01*

-X280395Y216864D01*

-X280410Y217052D01*

-X280406Y217099D01*

-Y244696D01*

-X282630Y246920D01*

-Y237610D01*

-X282625Y237551D01*

-X282644Y237316D01*

-X282699Y237086D01*

-X282789Y236868D01*

-X282913Y236667D01*

-X283066Y236487D01*

-X283111Y236449D01*

-X283441Y236119D01*

-Y188427D01*

-X283264Y188319D01*

-X282749Y187879D01*

-X282309Y187364D01*

-X281956Y186787D01*

-X281697Y186162D01*

-X281539Y185504D01*

-X281486Y184829D01*

-X281539Y184154D01*

-X281697Y183496D01*

-X281956Y182871D01*

-X282309Y182294D01*

-X282749Y181779D01*

-X283264Y181339D01*

-X283441Y181231D01*

-Y178427D01*

-X283264Y178319D01*

-X282749Y177879D01*

-X282309Y177364D01*

-X281956Y176787D01*

-X281697Y176162D01*

-X281539Y175504D01*

-X281486Y174829D01*

-X281539Y174154D01*

-X281697Y173496D01*

-X281956Y172871D01*

-X282309Y172294D01*

-X282749Y171779D01*

-X283264Y171339D01*

-X283441Y171231D01*

-Y169500D01*

-X275792D01*

-Y170516D01*

-X275799Y170516D01*

-X276474Y170569D01*

-X277132Y170727D01*

-X277757Y170986D01*

-X278334Y171339D01*

-X278849Y171779D01*

-X279289Y172294D01*

-X279642Y172871D01*

-X279901Y173496D01*

-X280059Y174154D01*

-X280099Y174829D01*

-X280059Y175504D01*

-X279901Y176162D01*

-X279642Y176787D01*

-X279289Y177364D01*

-X278849Y177879D01*

-X278334Y178319D01*

-X277757Y178672D01*

-X277132Y178931D01*

-X276474Y179089D01*

-X275799Y179142D01*

-X275792Y179142D01*

-Y180516D01*

-X275799Y180516D01*

-X276474Y180569D01*

-X277132Y180727D01*

-X277757Y180986D01*

-X278334Y181339D01*

-X278849Y181779D01*

-X279289Y182294D01*

-X279642Y182871D01*

-X279901Y183496D01*

-X280059Y184154D01*

-X280099Y184829D01*

-X280059Y185504D01*

-X279901Y186162D01*

-X279642Y186787D01*

-X279289Y187364D01*

-X278849Y187879D01*

-X278334Y188319D01*

-X277757Y188672D01*

-X277132Y188931D01*

-X276474Y189089D01*

-X275799Y189142D01*

-X275792Y189142D01*

-Y211941D01*

-G37*

-G36*

-X269438Y205587D02*X275792Y211941D01*

-Y189142D01*

-X275124Y189089D01*

-X274466Y188931D01*

-X273841Y188672D01*

-X273264Y188319D01*

-X272749Y187879D01*

-X272309Y187364D01*

-X271956Y186787D01*

-X271697Y186162D01*

-X271539Y185504D01*

-X271486Y184829D01*

-X271539Y184154D01*

-X271697Y183496D01*

-X271956Y182871D01*

-X272309Y182294D01*

-X272749Y181779D01*

-X273264Y181339D01*

-X273841Y180986D01*

-X274466Y180727D01*

-X275124Y180569D01*

-X275792Y180516D01*

-Y179142D01*

-X275124Y179089D01*

-X274466Y178931D01*

-X273841Y178672D01*

-X273264Y178319D01*

-X272749Y177879D01*

-X272309Y177364D01*

-X271956Y176787D01*

-X271697Y176162D01*

-X271539Y175504D01*

-X271486Y174829D01*

-X271539Y174154D01*

-X271697Y173496D01*

-X271956Y172871D01*

-X272309Y172294D01*

-X272749Y171779D01*

-X273264Y171339D01*

-X273841Y170986D01*

-X274466Y170727D01*

-X275124Y170569D01*

-X275792Y170516D01*

-Y169500D01*

-X269438D01*

-Y172538D01*

-X269642Y172871D01*

-X269901Y173496D01*

-X270059Y174154D01*

-X270099Y174829D01*

-X270059Y175504D01*

-X269901Y176162D01*

-X269642Y176787D01*

-X269438Y177120D01*

-Y182538D01*

-X269642Y182871D01*

-X269901Y183496D01*

-X270059Y184154D01*

-X270099Y184829D01*

-X270059Y185504D01*

-X269901Y186162D01*

-X269642Y186787D01*

-X269438Y187120D01*

-Y196695D01*

-X269441Y196694D01*

-X269723Y196717D01*

-X269999Y196783D01*

-X270261Y196891D01*

-X270502Y197039D01*

-X270718Y197223D01*

-X270902Y197439D01*

-X271050Y197680D01*

-X271158Y197942D01*

-X271224Y198218D01*

-X271241Y198500D01*

-X271224Y198782D01*

-X271158Y199058D01*

-X271050Y199320D01*

-X270902Y199561D01*

-X270718Y199777D01*

-X270502Y199961D01*

-X270261Y200109D01*

-X269999Y200217D01*

-X269723Y200283D01*

-X269441Y200306D01*

-X269438Y200305D01*

-Y205587D01*

-G37*

-G36*

-X260938Y197087D02*X269438Y205587D01*

-Y200305D01*

-X269159Y200283D01*

-X268883Y200217D01*

-X268621Y200109D01*

-X268380Y199961D01*

-X268164Y199777D01*

-X267980Y199561D01*

-X267832Y199320D01*

-X267724Y199058D01*

-X267658Y198782D01*

-X267635Y198500D01*

-X267658Y198218D01*

-X267724Y197942D01*

-X267832Y197680D01*

-X267980Y197439D01*

-X268164Y197223D01*

-X268380Y197039D01*

-X268621Y196891D01*

-X268883Y196783D01*

-X269159Y196717D01*

-X269438Y196695D01*

-Y187120D01*

-X269289Y187364D01*

-X268849Y187879D01*

-X268334Y188319D01*

-X267757Y188672D01*

-X267132Y188931D01*

-X266474Y189089D01*

-X265799Y189142D01*

-X265124Y189089D01*

-X264466Y188931D01*

-X263841Y188672D01*

-X263264Y188319D01*

-X262749Y187879D01*

-X262309Y187364D01*

-X261956Y186787D01*

-X261697Y186162D01*

-X261539Y185504D01*

-X261486Y184829D01*

-X261539Y184154D01*

-X261697Y183496D01*

-X261956Y182871D01*

-X262309Y182294D01*

-X262749Y181779D01*

-X263264Y181339D01*

-X263841Y180986D01*

-X264466Y180727D01*

-X265124Y180569D01*

-X265799Y180516D01*

-X266474Y180569D01*

-X267132Y180727D01*

-X267757Y180986D01*

-X268334Y181339D01*

-X268849Y181779D01*

-X269289Y182294D01*

-X269438Y182538D01*

-Y177120D01*

-X269289Y177364D01*

-X268849Y177879D01*

-X268334Y178319D01*

-X267757Y178672D01*

-X267132Y178931D01*

-X266474Y179089D01*

-X265799Y179142D01*

-X265124Y179089D01*

-X264466Y178931D01*

-X263841Y178672D01*

-X263264Y178319D01*

-X262749Y177879D01*

-X262309Y177364D01*

-X261956Y176787D01*

-X261697Y176162D01*

-X261539Y175504D01*

-X261486Y174829D01*

-X261539Y174154D01*

-X261697Y173496D01*

-X261956Y172871D01*

-X262309Y172294D01*

-X262749Y171779D01*

-X263264Y171339D01*

-X263841Y170986D01*

-X264466Y170727D01*

-X265124Y170569D01*

-X265799Y170516D01*

-X266474Y170569D01*

-X267132Y170727D01*

-X267757Y170986D01*

-X268334Y171339D01*

-X268849Y171779D01*

-X269289Y172294D01*

-X269438Y172538D01*

-Y169500D01*

-X260938D01*

-Y189695D01*

-X260941Y189694D01*

-X261223Y189717D01*

-X261499Y189783D01*

-X261761Y189891D01*

-X262002Y190039D01*

-X262218Y190223D01*

-X262402Y190439D01*

-X262550Y190680D01*

-X262658Y190942D01*

-X262724Y191218D01*

-X262741Y191500D01*

-X262724Y191782D01*

-X262658Y192058D01*

-X262550Y192320D01*

-X262402Y192561D01*

-X262218Y192777D01*

-X262002Y192961D01*

-X261761Y193109D01*

-X261499Y193217D01*

-X261223Y193283D01*

-X260941Y193306D01*

-X260938Y193305D01*

-Y197087D01*

-G37*

-G36*

-X269938Y243063D02*X270797Y243922D01*

-X270833Y243953D01*

-X270956Y244096D01*

-X270956Y244097D01*

-X270956Y244097D01*

-X271020Y244202D01*

-X271055Y244258D01*

-Y244258D01*

-X271055Y244258D01*

-X271120Y244415D01*

-X271127Y244432D01*

-X271127Y244432D01*

-X271127Y244432D01*

-X271148Y244519D01*

-X271171Y244616D01*

-Y244616D01*

-X271171Y244616D01*

-X271186Y244804D01*

-X271182Y244851D01*

-Y251016D01*

-X271666Y251500D01*

-X278449D01*

-X273987Y247038D01*

-X273951Y247007D01*

-X273828Y246864D01*

-X273729Y246702D01*

-X273657Y246528D01*

-X273613Y246344D01*

-X273598Y246156D01*

-X273602Y246109D01*

-Y226938D01*

-X269938Y223274D01*

-Y229695D01*

-X269941Y229694D01*

-X270223Y229717D01*

-X270499Y229783D01*

-X270761Y229891D01*

-X271002Y230039D01*

-X271218Y230223D01*

-X271402Y230439D01*

-X271550Y230680D01*

-X271658Y230942D01*

-X271724Y231218D01*

-X271741Y231500D01*

-X271724Y231782D01*

-X271658Y232058D01*

-X271550Y232320D01*

-X271402Y232561D01*

-X271218Y232777D01*

-X271002Y232961D01*

-X270761Y233109D01*

-X270499Y233217D01*

-X270223Y233283D01*

-X269941Y233306D01*

-X269938Y233305D01*

-Y243063D01*

-G37*

-G36*

-X260938Y234062D02*X269938Y243063D01*

-Y233305D01*

-X269659Y233283D01*

-X269383Y233217D01*

-X269121Y233109D01*

-X268880Y232961D01*

-X268664Y232777D01*

-X268480Y232561D01*

-X268332Y232320D01*

-X268224Y232058D01*

-X268158Y231782D01*

-X268135Y231500D01*

-X268158Y231218D01*

-X268224Y230942D01*

-X268332Y230680D01*

-X268480Y230439D01*

-X268664Y230223D01*

-X268880Y230039D01*

-X269121Y229891D01*

-X269383Y229783D01*

-X269659Y229717D01*

-X269938Y229695D01*

-Y223274D01*

-X260938Y214274D01*

-Y234062D01*

-G37*

-G36*

-X251938Y181684D02*X251986Y181762D01*

-X251986Y181762D01*

-X251987Y181763D01*

-X252017Y181837D01*

-X252059Y181937D01*

-X252059Y181937D01*

-X252059Y181937D01*

-X252079Y182020D01*

-X252103Y182120D01*

-X252103Y182121D01*

-X252103Y182121D01*

-X252103Y182122D01*

-X252118Y182309D01*

-X252114Y182356D01*

-Y182613D01*

-X252309Y182294D01*

-X252749Y181779D01*

-X253264Y181339D01*

-X253841Y180986D01*

-X254466Y180727D01*

-X255124Y180569D01*

-X255799Y180516D01*

-X256474Y180569D01*

-X257132Y180727D01*

-X257757Y180986D01*

-X258334Y181339D01*

-X258849Y181779D01*

-X259289Y182294D01*

-X259642Y182871D01*

-X259901Y183496D01*

-X260059Y184154D01*

-X260099Y184829D01*

-X260059Y185504D01*

-X259901Y186162D01*

-X259642Y186787D01*

-X259289Y187364D01*

-X258849Y187879D01*

-X258334Y188319D01*

-X257757Y188672D01*

-X257132Y188931D01*

-X256474Y189089D01*

-X255799Y189142D01*

-X255124Y189089D01*

-X254466Y188931D01*

-X253841Y188672D01*

-X253264Y188319D01*

-X252749Y187879D01*

-X252309Y187364D01*

-X252114Y187045D01*

-Y188263D01*

-X260938Y197087D01*

-Y193305D01*

-X260659Y193283D01*

-X260383Y193217D01*

-X260121Y193109D01*

-X259880Y192961D01*

-X259664Y192777D01*

-X259480Y192561D01*

-X259332Y192320D01*

-X259224Y192058D01*

-X259158Y191782D01*

-X259135Y191500D01*

-X259158Y191218D01*

-X259224Y190942D01*

-X259332Y190680D01*

-X259480Y190439D01*

-X259664Y190223D01*

-X259880Y190039D01*

-X260121Y189891D01*

-X260383Y189783D01*

-X260659Y189717D01*

-X260938Y189695D01*

-Y169500D01*

-X251938D01*

-Y172913D01*

-X251956Y172871D01*

-X252309Y172294D01*

-X252749Y171779D01*

-X253264Y171339D01*

-X253841Y170986D01*

-X254466Y170727D01*

-X255124Y170569D01*

-X255799Y170516D01*

-X256474Y170569D01*

-X257132Y170727D01*

-X257757Y170986D01*

-X258334Y171339D01*

-X258849Y171779D01*

-X259289Y172294D01*

-X259642Y172871D01*

-X259901Y173496D01*

-X260059Y174154D01*

-X260099Y174829D01*

-X260059Y175504D01*

-X259901Y176162D01*

-X259642Y176787D01*

-X259289Y177364D01*

-X258849Y177879D01*

-X258334Y178319D01*

-X257757Y178672D01*

-X257132Y178931D01*

-X256474Y179089D01*

-X255799Y179142D01*

-X255124Y179089D01*

-X254466Y178931D01*

-X253841Y178672D01*

-X253264Y178319D01*

-X252749Y177879D01*

-X252309Y177364D01*

-X251956Y176787D01*

-X251938Y176745D01*

-Y181684D01*

-G37*

-G36*

-Y225845D02*X252176D01*

-X252223Y225841D01*

-X252411Y225856D01*

-X252595Y225900D01*

-X252769Y225972D01*

-X252931Y226071D01*

-X253074Y226194D01*

-X253105Y226230D01*

-X257627Y230751D01*

-X257637Y230764D01*

-X257659Y230783D01*

-X260938Y234062D01*

-Y214274D01*

-X251938Y205274D01*

-Y208695D01*

-X251941Y208694D01*

-X252223Y208717D01*

-X252499Y208783D01*

-X252761Y208891D01*

-X253002Y209039D01*

-X253218Y209223D01*

-X253402Y209439D01*

-X253550Y209680D01*

-X253658Y209942D01*

-X253724Y210218D01*

-X253741Y210500D01*

-X253724Y210782D01*

-X253658Y211058D01*

-X253550Y211320D01*

-X253402Y211561D01*

-X253218Y211777D01*

-X253002Y211961D01*

-X252761Y212109D01*

-X252499Y212217D01*

-X252223Y212283D01*

-X251941Y212306D01*

-X251938Y212305D01*

-Y225845D01*

-G37*

-G36*

-X243938Y170946D02*X244466Y170727D01*

-X245124Y170569D01*

-X245799Y170516D01*

-X246474Y170569D01*

-X247132Y170727D01*

-X247757Y170986D01*

-X248334Y171339D01*

-X248849Y171779D01*

-X249289Y172294D01*

-X249642Y172871D01*

-X249901Y173496D01*

-X250059Y174154D01*

-X250099Y174829D01*

-X250059Y175504D01*

-X249901Y176162D01*

-X249642Y176787D01*

-X249289Y177364D01*

-X248849Y177879D01*

-X248334Y178319D01*

-X247757Y178672D01*

-X247504Y178777D01*

-X248534D01*

-X248581Y178773D01*

-X248769Y178788D01*

-X248769Y178788D01*

-X248769Y178788D01*

-X248895Y178818D01*

-X248953Y178832D01*

-X248953Y178832D01*

-X248953Y178832D01*

-X249061Y178877D01*

-X249127Y178904D01*

-X249127Y178904D01*

-X249127Y178904D01*

-X249231Y178968D01*

-X249288Y179003D01*

-X249288Y179003D01*

-X249289Y179003D01*

-X249432Y179126D01*

-X249463Y179162D01*

-X251729Y181427D01*

-X251765Y181458D01*

-X251887Y181600D01*

-X251888Y181601D01*

-X251888Y181601D01*

-X251888Y181601D01*

-X251931Y181671D01*

-X251938Y181684D01*

-Y176745D01*

-X251697Y176162D01*

-X251539Y175504D01*

-X251486Y174829D01*

-X251539Y174154D01*

-X251697Y173496D01*

-X251938Y172913D01*

-Y169500D01*

-X243938D01*

-Y170946D01*

-G37*

-G36*

-Y178777D02*X244094D01*

-X243938Y178712D01*

-Y178777D01*

-G37*

-G36*

-Y225845D02*X251938D01*

-Y212305D01*

-X251659Y212283D01*

-X251383Y212217D01*

-X251121Y212109D01*

-X250880Y211961D01*

-X250664Y211777D01*

-X250480Y211561D01*

-X250332Y211320D01*

-X250224Y211058D01*

-X250158Y210782D01*

-X250135Y210500D01*

-X250158Y210218D01*

-X250224Y209942D01*

-X250332Y209680D01*

-X250480Y209439D01*

-X250664Y209223D01*

-X250880Y209039D01*

-X251121Y208891D01*

-X251383Y208783D01*

-X251659Y208717D01*

-X251938Y208695D01*

-Y205274D01*

-X243938Y197274D01*

-Y200195D01*

-X243941Y200194D01*

-X244223Y200217D01*

-X244499Y200283D01*

-X244761Y200391D01*

-X245002Y200539D01*

-X245218Y200723D01*

-X245402Y200939D01*

-X245550Y201180D01*

-X245658Y201442D01*

-X245724Y201718D01*

-X245741Y202000D01*

-X245724Y202282D01*

-X245658Y202558D01*

-X245550Y202820D01*

-X245402Y203061D01*

-X245218Y203277D01*

-X245002Y203461D01*

-X244761Y203609D01*

-X244499Y203717D01*

-X244223Y203783D01*

-X243941Y203806D01*

-X243938Y203805D01*

-Y225845D01*

-G37*

-G36*

-X215792Y180516D02*X215799Y180516D01*

-X216474Y180569D01*

-X217132Y180727D01*

-X217674Y180951D01*

-X219463Y179162D01*

-X219494Y179126D01*

-X219637Y179003D01*

-X219637Y179003D01*

-X219799Y178904D01*

-X219973Y178832D01*

-X220157Y178788D01*

-X220345Y178773D01*

-X220392Y178777D01*

-X224094D01*

-X223841Y178672D01*

-X223264Y178319D01*

-X222749Y177879D01*

-X222309Y177364D01*

-X221956Y176787D01*

-X221697Y176162D01*

-X221539Y175504D01*

-X221486Y174829D01*

-X221539Y174154D01*

-X221697Y173496D01*

-X221956Y172871D01*

-X222309Y172294D01*

-X222749Y171779D01*

-X223264Y171339D01*

-X223841Y170986D01*

-X224466Y170727D01*

-X225124Y170569D01*

-X225799Y170516D01*

-X226474Y170569D01*

-X227132Y170727D01*

-X227757Y170986D01*

-X228334Y171339D01*

-X228849Y171779D01*

-X229289Y172294D01*

-X229642Y172871D01*

-X229901Y173496D01*

-X230059Y174154D01*

-X230099Y174829D01*

-X230059Y175504D01*

-X229901Y176162D01*

-X229642Y176787D01*

-X229289Y177364D01*

-X228849Y177879D01*

-X228334Y178319D01*

-X227757Y178672D01*

-X227504Y178777D01*

-X233567D01*

-X233567Y178777D01*

-X234094D01*

-X233841Y178672D01*

-X233264Y178319D01*

-X232749Y177879D01*

-X232309Y177364D01*

-X231956Y176787D01*

-X231697Y176162D01*

-X231539Y175504D01*

-X231486Y174829D01*

-X231539Y174154D01*

-X231697Y173496D01*

-X231956Y172871D01*

-X232309Y172294D01*

-X232749Y171779D01*

-X233264Y171339D01*

-X233841Y170986D01*

-X234466Y170727D01*

-X235124Y170569D01*

-X235799Y170516D01*

-X236474Y170569D01*

-X237132Y170727D01*

-X237757Y170986D01*

-X238334Y171339D01*

-X238849Y171779D01*

-X239289Y172294D01*

-X239642Y172871D01*

-X239901Y173496D01*

-X240059Y174154D01*

-X240099Y174829D01*

-X240059Y175504D01*

-X239901Y176162D01*

-X239642Y176787D01*

-X239289Y177364D01*

-X238849Y177879D01*

-X238334Y178319D01*

-X237757Y178672D01*

-X237504Y178777D01*

-X243938D01*

-Y178712D01*

-X243841Y178672D01*

-X243264Y178319D01*

-X242749Y177879D01*

-X242309Y177364D01*

-X241956Y176787D01*

-X241697Y176162D01*

-X241539Y175504D01*

-X241486Y174829D01*

-X241539Y174154D01*

-X241697Y173496D01*

-X241956Y172871D01*

-X242309Y172294D01*

-X242749Y171779D01*

-X243264Y171339D01*

-X243841Y170986D01*

-X243938Y170946D01*

-Y169500D01*

-X215792D01*

-Y170516D01*

-X215799Y170516D01*

-X216474Y170569D01*

-X217132Y170727D01*

-X217757Y170986D01*

-X218334Y171339D01*

-X218849Y171779D01*

-X219289Y172294D01*

-X219642Y172871D01*

-X219901Y173496D01*

-X220059Y174154D01*

-X220099Y174829D01*

-X220059Y175504D01*

-X219901Y176162D01*

-X219642Y176787D01*

-X219289Y177364D01*

-X218849Y177879D01*

-X218334Y178319D01*

-X217757Y178672D01*

-X217132Y178931D01*

-X216474Y179089D01*

-X215799Y179142D01*

-X215792Y179142D01*

-Y180516D01*

-G37*

-G36*

-X235792Y223699D02*X237938Y225845D01*

-X243938D01*

-Y203805D01*

-X243659Y203783D01*

-X243383Y203717D01*

-X243121Y203609D01*

-X242880Y203461D01*

-X242664Y203277D01*

-X242480Y203061D01*

-X242332Y202820D01*

-X242224Y202558D01*

-X242158Y202282D01*

-X242135Y202000D01*

-X242158Y201718D01*

-X242224Y201442D01*

-X242332Y201180D01*

-X242480Y200939D01*

-X242664Y200723D01*

-X242880Y200539D01*

-X243121Y200391D01*

-X243383Y200283D01*

-X243659Y200217D01*

-X243938Y200195D01*

-Y197274D01*

-X238686Y192022D01*

-X235792D01*

-Y193016D01*

-X235799Y193016D01*

-X236474Y193069D01*

-X237132Y193227D01*

-X237757Y193486D01*

-X238334Y193839D01*

-X238849Y194279D01*

-X239289Y194794D01*

-X239642Y195371D01*

-X239901Y195996D01*

-X240059Y196654D01*

-X240099Y197329D01*

-X240059Y198004D01*

-X239901Y198662D01*

-X239642Y199287D01*

-X239289Y199864D01*

-X238849Y200379D01*

-X238334Y200819D01*

-X237757Y201172D01*

-X237132Y201431D01*

-X236474Y201589D01*

-X235799Y201642D01*

-X235792Y201642D01*

-Y223699D01*

-G37*

-G36*

-X225792Y213699D02*X235792Y223699D01*

-Y201642D01*

-X235124Y201589D01*

-X234466Y201431D01*

-X233841Y201172D01*

-X233264Y200819D01*

-X232749Y200379D01*

-X232309Y199864D01*

-X231956Y199287D01*

-X231697Y198662D01*

-X231539Y198004D01*

-X231486Y197329D01*

-X231539Y196654D01*

-X231697Y195996D01*

-X231956Y195371D01*

-X232309Y194794D01*

-X232749Y194279D01*

-X233264Y193839D01*

-X233841Y193486D01*

-X234466Y193227D01*

-X235124Y193069D01*

-X235792Y193016D01*

-Y192022D01*

-X231887D01*

-X231840Y192026D01*

-X231652Y192011D01*

-X231468Y191967D01*

-X231294Y191895D01*

-X231132Y191796D01*

-X231132Y191796D01*

-X230989Y191673D01*

-X230958Y191637D01*

-X227903Y188583D01*

-X227757Y188672D01*

-X227132Y188931D01*

-X226474Y189089D01*

-X225799Y189142D01*

-X225792Y189142D01*

-Y193016D01*

-X225799Y193016D01*

-X226474Y193069D01*

-X227132Y193227D01*

-X227757Y193486D01*

-X228334Y193839D01*

-X228849Y194279D01*

-X229289Y194794D01*

-X229642Y195371D01*

-X229901Y195996D01*

-X230059Y196654D01*

-X230099Y197329D01*

-X230059Y198004D01*

-X229901Y198662D01*

-X229642Y199287D01*

-X229289Y199864D01*

-X228849Y200379D01*

-X228334Y200819D01*

-X227757Y201172D01*

-X227132Y201431D01*

-X226474Y201589D01*

-X225799Y201642D01*

-X225792Y201642D01*

-Y213699D01*

-G37*

-G36*

-X218349Y206800D02*X218396Y206796D01*

-X218584Y206811D01*

-X218584Y206811D01*

-X218768Y206855D01*

-X218942Y206927D01*

-X219104Y207026D01*

-X219247Y207149D01*

-X219278Y207185D01*

-X225792Y213699D01*

-Y201642D01*

-X225124Y201589D01*

-X224466Y201431D01*

-X223841Y201172D01*

-X223264Y200819D01*

-X222749Y200379D01*

-X222309Y199864D01*

-X221956Y199287D01*

-X221697Y198662D01*

-X221539Y198004D01*

-X221486Y197329D01*

-X221539Y196654D01*

-X221697Y195996D01*

-X221956Y195371D01*

-X222309Y194794D01*

-X222749Y194279D01*

-X223264Y193839D01*

-X223841Y193486D01*

-X224466Y193227D01*

-X225124Y193069D01*

-X225792Y193016D01*

-Y189142D01*

-X225124Y189089D01*

-X224466Y188931D01*

-X223841Y188672D01*

-X223264Y188319D01*

-X222749Y187879D01*

-X222309Y187364D01*

-X221956Y186787D01*

-X221697Y186162D01*

-X221539Y185504D01*

-X221486Y184829D01*

-X221539Y184154D01*

-X221697Y183496D01*

-X221956Y182871D01*

-X222309Y182294D01*

-X222749Y181779D01*

-X223264Y181339D01*

-X223529Y181177D01*

-X220842D01*

-X219454Y182565D01*

-X219642Y182871D01*

-X219901Y183496D01*

-X220059Y184154D01*

-X220099Y184829D01*

-X220059Y185504D01*

-X219901Y186162D01*

-X219642Y186787D01*

-X219289Y187364D01*

-X218849Y187879D01*

-X218334Y188319D01*

-X217757Y188672D01*

-X217132Y188931D01*

-X216474Y189089D01*

-X215799Y189142D01*

-X215792Y189142D01*

-Y193016D01*

-X215799Y193016D01*

-X216474Y193069D01*

-X217132Y193227D01*

-X217757Y193486D01*

-X218334Y193839D01*

-X218849Y194279D01*

-X219289Y194794D01*

-X219642Y195371D01*

-X219901Y195996D01*

-X220059Y196654D01*

-X220099Y197329D01*

-X220059Y198004D01*

-X219901Y198662D01*

-X219642Y199287D01*

-X219289Y199864D01*

-X218849Y200379D01*

-X218334Y200819D01*

-X217757Y201172D01*

-X217132Y201431D01*

-X216474Y201589D01*

-X215799Y201642D01*

-X215792Y201642D01*

-Y206800D01*

-X218349D01*

-G37*

-G36*

-X215792Y189142D02*X215124Y189089D01*

-X214466Y188931D01*

-X213841Y188672D01*

-X213264Y188319D01*

-X212749Y187879D01*

-X212309Y187364D01*

-X211956Y186787D01*

-X211697Y186162D01*

-X211539Y185504D01*

-X211486Y184829D01*

-X211539Y184154D01*

-X211697Y183496D01*

-X211956Y182871D01*

-X212309Y182294D01*

-X212749Y181779D01*

-X213264Y181339D01*

-X213841Y180986D01*

-X214466Y180727D01*

-X215124Y180569D01*

-X215792Y180516D01*

-Y179142D01*

-X215124Y179089D01*

-X214466Y178931D01*

-X213841Y178672D01*

-X213264Y178319D01*

-X212749Y177879D01*

-X212309Y177364D01*

-X211956Y176787D01*

-X211697Y176162D01*

-X211539Y175504D01*

-X211486Y174829D01*

-X211539Y174154D01*

-X211697Y173496D01*

-X211956Y172871D01*

-X212309Y172294D01*

-X212749Y171779D01*

-X213264Y171339D01*

-X213841Y170986D01*

-X214466Y170727D01*

-X215124Y170569D01*

-X215792Y170516D01*

-Y169500D01*

-X211441D01*

-Y206800D01*

-X215792D01*

-Y201642D01*

-X215124Y201589D01*

-X214466Y201431D01*

-X213841Y201172D01*

-X213264Y200819D01*

-X212749Y200379D01*

-X212309Y199864D01*

-X211956Y199287D01*

-X211697Y198662D01*

-X211539Y198004D01*

-X211486Y197329D01*

-X211539Y196654D01*

-X211697Y195996D01*

-X211956Y195371D01*

-X212309Y194794D01*

-X212749Y194279D01*

-X213264Y193839D01*

-X213841Y193486D01*

-X214466Y193227D01*

-X215124Y193069D01*

-X215792Y193016D01*

-Y189142D01*

-G37*

-G36*

-X80441Y248000D02*X109941D01*

-Y266500D01*

-X121941Y278500D01*

-X165941D01*

-Y237000D01*

-X80441D01*

-Y248000D01*

-G37*

-G36*

-X74941Y235000D02*X90441D01*

-Y225000D01*

-X74941D01*

-Y235000D01*

-G37*

-G36*

-X100441D02*X115941D01*

-Y225000D01*

-X100441D01*

-Y235000D01*

-G37*

-G36*

-X112441D02*X127941D01*

-Y225000D01*

-X112441D01*

-Y235000D01*

-G37*

-G36*

-X117441D02*X132941Y234500D01*

-Y225000D01*

-X117441D01*

-Y235000D01*

-G37*

-G36*

-Y232500D02*X132941D01*

-Y222500D01*

-X117441D01*

-Y232500D01*

-G37*

-G36*

-X114941Y223000D02*X130441D01*

-Y213000D01*

-X114941D01*

-Y223000D01*

-G37*

-G36*

-X116441Y217500D02*X131941D01*

-Y207500D01*

-X116441D01*

-Y217500D01*

-G37*

-G36*

-X136592Y208393D02*X146455D01*

-Y189940D01*

-X136592D01*

-Y208393D01*

-G37*

-G36*

-X159441Y233000D02*X168441D01*

-Y219000D01*

-X171941Y215500D01*

-Y195000D01*

-X167441Y190500D01*

-X153441D01*

-Y201500D01*

-X160941D01*

-Y208500D01*

-X162441Y210000D01*

-Y218000D01*

-X159441Y221000D01*

-Y233000D01*

-G37*

-G36*

-X116441Y224000D02*X131941D01*

-Y214000D01*

-X116441D01*

-Y224000D01*

-G37*

-G36*

-X99941D02*X115441D01*

-Y214000D01*

-X99941D01*

-Y224000D01*

-G37*

-G36*

-X85784Y194500D02*X101441D01*

-Y155500D01*

-X85784D01*

-Y169749D01*

-X85799Y169748D01*

-X87376Y169872D01*

-X88914Y170241D01*

-X90376Y170847D01*

-X91724Y171673D01*

-X92927Y172701D01*

-X93955Y173904D01*

-X94781Y175252D01*

-X95387Y176714D01*

-X95756Y178252D01*

-X95849Y179829D01*

-X95756Y181406D01*

-X95387Y182944D01*

-X94781Y184406D01*

-X93955Y185754D01*

-X92927Y186957D01*

-X91724Y187985D01*

-X90376Y188811D01*

-X88914Y189417D01*

-X87376Y189786D01*

-X85799Y189910D01*

-X85784Y189909D01*

-Y194500D01*

-G37*

-G36*

-X69941D02*X85784D01*

-Y189909D01*

-X84222Y189786D01*

-X82684Y189417D01*

-X81222Y188811D01*

-X79874Y187985D01*

-X78671Y186957D01*

-X77643Y185754D01*

-X76817Y184406D01*

-X76211Y182944D01*

-X75842Y181406D01*

-X75718Y179829D01*

-X75842Y178252D01*

-X76211Y176714D01*

-X76817Y175252D01*

-X77643Y173904D01*

-X78671Y172701D01*

-X79874Y171673D01*

-X81222Y170847D01*

-X82684Y170241D01*

-X84222Y169872D01*

-X85784Y169749D01*

-Y155500D01*

-X69941D01*

-Y194500D01*

-G37*

-G36*

-X102941Y228002D02*X113042Y228010D01*

-X113195Y228047D01*

-X113340Y228107D01*

-X113475Y228189D01*

-X113571Y228272D01*

-X113667Y228189D01*

-X113802Y228107D01*

-X113947Y228047D01*

-X114100Y228010D01*

-X114257Y228001D01*

-X125042Y228010D01*

-X125195Y228047D01*

-X125340Y228107D01*

-X125475Y228189D01*

-X125594Y228292D01*

-X125697Y228411D01*

-X125779Y228546D01*

-X125839Y228691D01*

-X125876Y228844D01*

-X125885Y229001D01*

-X125876Y234276D01*

-X125839Y234429D01*

-X125779Y234574D01*

-X125697Y234709D01*

-X125594Y234828D01*

-X125475Y234931D01*

-X125458Y234941D01*

-X132941Y235000D01*

-X132922Y233953D01*

-X132850Y233971D01*

-X132693Y233980D01*

-X129032Y233971D01*

-X128879Y233934D01*

-X128734Y233874D01*

-X128599Y233792D01*

-X128480Y233689D01*

-X128377Y233570D01*

-X128295Y233435D01*

-X128235Y233290D01*

-X128198Y233137D01*

-X128189Y232980D01*

-X128198Y223020D01*

-X128203Y223000D01*

-Y219972D01*

-X128165Y219928D01*

-X128083Y219793D01*

-X128023Y219648D01*

-X127986Y219495D01*

-X127977Y219338D01*

-X127986Y215245D01*

-X128023Y215092D01*

-X128083Y214947D01*

-X128165Y214812D01*

-X128203Y214768D01*

-Y213972D01*

-X128165Y213928D01*

-X128083Y213793D01*

-X128023Y213648D01*

-X127986Y213495D01*

-X127977Y213338D01*

-X127986Y209245D01*

-X128023Y209092D01*

-X128083Y208947D01*

-X128165Y208812D01*

-X128268Y208693D01*

-X128387Y208590D01*

-X128522Y208508D01*

-X128667Y208448D01*

-X128820Y208411D01*

-X128977Y208402D01*

-X132086Y208411D01*

-X132239Y208448D01*

-X132384Y208508D01*

-X132460Y208555D01*

-X132441Y207500D01*

-X116441D01*

-X102941Y194000D01*

-Y202250D01*

-X104441D01*

-X104794Y202271D01*

-X105138Y202354D01*

-X105466Y202489D01*

-X105768Y202674D01*

-X106037Y202904D01*

-X106267Y203173D01*

-X106452Y203475D01*

-X106587Y203803D01*

-X106670Y204147D01*

-X106698Y204500D01*

-X106670Y204853D01*

-X106587Y205197D01*

-X106452Y205525D01*

-X106267Y205827D01*

-X106037Y206096D01*

-X105768Y206326D01*

-X105466Y206511D01*

-X105138Y206646D01*

-X104794Y206729D01*

-X104441Y206750D01*

-X102941D01*

-Y208969D01*

-X105066Y208974D01*

-X105219Y209011D01*

-X105364Y209071D01*

-X105499Y209153D01*

-X105618Y209256D01*

-X105721Y209375D01*

-X105803Y209510D01*

-X105863Y209655D01*

-X105900Y209808D01*

-X105909Y209965D01*

-X105900Y213074D01*

-X105863Y213227D01*

-X105803Y213372D01*

-X105721Y213507D01*

-X105618Y213626D01*

-X105499Y213729D01*

-X105364Y213811D01*

-X105219Y213871D01*

-X105066Y213908D01*

-X104909Y213917D01*

-X102941Y213913D01*

-Y214087D01*

-X105066Y214092D01*

-X105219Y214129D01*

-X105364Y214189D01*

-X105499Y214271D01*

-X105618Y214374D01*

-X105721Y214493D01*

-X105803Y214628D01*

-X105863Y214773D01*

-X105900Y214926D01*

-X105909Y215083D01*

-X105900Y218192D01*

-X105863Y218345D01*

-X105803Y218490D01*

-X105721Y218625D01*

-X105618Y218744D01*

-X105499Y218847D01*

-X105364Y218929D01*

-X105219Y218989D01*

-X105066Y219026D01*

-X104909Y219035D01*

-X102941Y219031D01*

-Y228002D01*

-G37*

-G36*

-Y206750D02*X99884D01*

-X99884Y207173D01*

-X99847Y207326D01*

-X99787Y207471D01*

-X99705Y207606D01*

-X99602Y207725D01*

-X99483Y207828D01*

-X99348Y207910D01*

-X99203Y207970D01*

-X99078Y208000D01*

-X99203Y208030D01*

-X99348Y208090D01*

-X99483Y208172D01*

-X99602Y208275D01*

-X99705Y208394D01*

-X99787Y208529D01*

-X99847Y208674D01*

-X99884Y208827D01*

-X99893Y208984D01*

-X99892Y209293D01*

-X100232D01*

-X100264Y209256D01*

-X100383Y209153D01*

-X100518Y209071D01*

-X100663Y209011D01*

-X100816Y208974D01*

-X100973Y208965D01*

-X102941Y208969D01*

-Y206750D01*

-G37*

-G36*

-X85434Y225236D02*X85441Y225235D01*

-X86186Y225294D01*

-X86913Y225469D01*

-X87604Y225755D01*

-X88242Y226145D01*

-X88810Y226631D01*

-X89296Y227199D01*

-X89686Y227837D01*

-X89972Y228528D01*

-X90147Y229255D01*

-X90191Y230000D01*

-X90147Y230745D01*

-X89972Y231472D01*

-X89686Y232163D01*

-X89296Y232801D01*

-X88810Y233369D01*

-X88242Y233855D01*

-X87604Y234245D01*

-X86913Y234531D01*

-X86497Y234631D01*

-X101481Y234750D01*

-X101445Y234709D01*

-X101363Y234574D01*

-X101303Y234429D01*

-X101266Y234276D01*

-X101257Y234119D01*

-X101266Y228844D01*

-X101303Y228691D01*

-X101363Y228546D01*

-X101445Y228411D01*

-X101548Y228292D01*

-X101667Y228189D01*

-X101802Y228107D01*

-X101947Y228047D01*

-X102100Y228010D01*

-X102257Y228001D01*

-X102941Y228002D01*

-Y219031D01*

-X100816Y219026D01*

-X100663Y218989D01*

-X100518Y218929D01*

-X100383Y218847D01*

-X100264Y218744D01*

-X100161Y218625D01*

-X100079Y218490D01*

-X100019Y218345D01*

-X99982Y218192D01*

-X99973Y218035D01*

-X99982Y214926D01*

-X100019Y214773D01*

-X100079Y214628D01*

-X100161Y214493D01*

-X100264Y214374D01*

-X100383Y214271D01*

-X100518Y214189D01*

-X100663Y214129D01*

-X100816Y214092D01*

-X100973Y214083D01*

-X102941Y214087D01*

-Y213913D01*

-X100816Y213908D01*

-X100663Y213871D01*

-X100518Y213811D01*

-X100489Y213793D01*

-X99885D01*

-X99884Y214259D01*

-X99847Y214412D01*

-X99787Y214557D01*

-X99705Y214692D01*

-X99602Y214811D01*

-X99483Y214914D01*

-X99348Y214996D01*

-X99203Y215056D01*

-X99050Y215093D01*

-X98893Y215102D01*

-X92832Y215093D01*

-X92679Y215056D01*

-X92534Y214996D01*

-X92399Y214914D01*

-X92280Y214811D01*

-X92177Y214692D01*

-X92095Y214557D01*

-X92035Y214412D01*

-X91998Y214259D01*

-X91989Y214102D01*

-X91998Y208827D01*

-X92035Y208674D01*

-X92095Y208529D01*

-X92177Y208394D01*

-X92280Y208275D01*

-X92399Y208172D01*

-X92534Y208090D01*

-X92679Y208030D01*

-X92804Y208000D01*

-X92679Y207970D01*

-X92534Y207910D01*

-X92399Y207828D01*

-X92280Y207725D01*

-X92177Y207606D01*

-X92095Y207471D01*

-X92035Y207326D01*

-X91998Y207173D01*

-X91989Y207016D01*

-X91998Y201741D01*

-X92035Y201588D01*

-X92095Y201443D01*

-X92177Y201308D01*

-X92280Y201189D01*

-X92399Y201086D01*

-X92534Y201004D01*

-X92679Y200944D01*

-X92832Y200907D01*

-X92989Y200898D01*

-X99050Y200907D01*

-X99203Y200944D01*

-X99348Y201004D01*

-X99483Y201086D01*

-X99602Y201189D01*

-X99705Y201308D01*

-X99787Y201443D01*

-X99847Y201588D01*

-X99884Y201741D01*

-X99893Y201898D01*

-X99892Y202250D01*

-X102941D01*

-Y194000D01*

-X101941Y193000D01*

-Y192500D01*

-X85434D01*

-Y215236D01*

-X85441Y215235D01*

-X86186Y215294D01*

-X86913Y215469D01*

-X87604Y215755D01*

-X88242Y216145D01*

-X88810Y216631D01*

-X89296Y217199D01*

-X89686Y217837D01*

-X89972Y218528D01*

-X90147Y219255D01*

-X90191Y220000D01*

-X90147Y220745D01*

-X89972Y221472D01*

-X89686Y222163D01*

-X89296Y222801D01*

-X88810Y223369D01*

-X88242Y223855D01*

-X87604Y224245D01*

-X86913Y224531D01*

-X86186Y224706D01*

-X85441Y224765D01*

-X85434Y224764D01*

-Y225236D01*

-G37*

-G36*

-X69941Y234500D02*X84313Y234614D01*

-X83969Y234531D01*

-X83278Y234245D01*

-X82640Y233855D01*

-X82072Y233369D01*

-X81586Y232801D01*

-X81196Y232163D01*

-X80910Y231472D01*

-X80735Y230745D01*

-X80676Y230000D01*

-X80735Y229255D01*

-X80910Y228528D01*

-X81196Y227837D01*

-X81586Y227199D01*

-X82072Y226631D01*

-X82640Y226145D01*

-X83278Y225755D01*

-X83969Y225469D01*

-X84696Y225294D01*

-X85434Y225236D01*

-Y224764D01*

-X84696Y224706D01*

-X83969Y224531D01*

-X83278Y224245D01*

-X82640Y223855D01*

-X82072Y223369D01*

-X81586Y222801D01*

-X81196Y222163D01*

-X80910Y221472D01*

-X80735Y220745D01*

-X80676Y220000D01*

-X80735Y219255D01*

-X80910Y218528D01*

-X81196Y217837D01*

-X81586Y217199D01*

-X82072Y216631D01*

-X82640Y216145D01*

-X83278Y215755D01*

-X83969Y215469D01*

-X84696Y215294D01*

-X85434Y215236D01*

-Y192500D01*

-X69941D01*

-Y234500D01*

-G37*

-G54D177*X371215Y358262D02*X371157D01*

-X387623D02*X371287D01*

-X379941Y355000D02*X370441D01*

-X384162Y344917D02*Y350779D01*

-X379044Y340311D02*Y336000D01*

-X381603Y342614D02*Y338000D01*

-X384162Y350779D02*X379941Y355000D01*

-X386720Y353721D02*X385941Y354500D01*

-X381603Y338000D02*X391838D01*

-X376485Y347145D02*X372441Y351189D01*

-X376485Y342614D02*Y347145D01*

-X389279Y342614D02*Y355913D01*

-X386720Y342614D02*Y353721D01*

-X458441Y375000D02*X456641D01*

-Y373200D01*

-X448750D01*

-Y349250D01*

-X458441Y345000D02*X456641D01*

-Y336000D01*

-X448750Y330300D02*X376485D01*

-X448750D02*Y322775D01*

-X376485Y330300D02*Y325219D01*

-X456641Y336000D02*X379044D01*

-X402250Y323839D02*X391838D01*

-X458441Y316800D02*Y315000D01*

-Y316800D02*X458250D01*

-D03*

-X448750D01*

-Y328750D02*Y316800D01*

-X391838Y323839D02*Y321689D01*

-X394397Y319386D02*Y315434D01*

-X379044Y319386D02*Y324000D01*

-X379441Y312000D02*X370441D01*

-X381603Y314162D02*X379441Y312000D01*

-X381044Y326000D02*X387441D01*

-X379044Y324000D02*X381044Y326000D01*

-X389279Y319386D02*Y324162D01*

-X387441Y326000D02*X389279Y324162D01*

-X381603Y321689D02*Y314162D01*

-X376485Y328750D02*Y321689D01*

-X402250Y323839D02*Y317434D01*

-X395831Y314000D02*X398441D01*

-G54D178*X387172Y312000D02*X386720Y312452D01*

-Y319386D01*

-G54D177*X448750Y349250D02*X394397D01*

-X391838Y338000D02*Y353397D01*

-X394397Y349250D02*Y344917D01*

-X393441Y365941D02*X396441D01*

-X397941Y367441D01*

-X397441Y373000D02*X395441D01*

-X393441Y371000D01*

-X389279Y356605D02*X387623Y358262D01*

-X389279Y356005D02*Y356605D01*

-X391838Y353397D02*X393441Y355000D01*

-G54D178*Y358500D01*

-X385941Y366000D02*X393441Y358500D01*

-X306581Y273940D02*X307716Y275075D01*

-X305390Y270003D02*X308872Y266522D01*

-X297976Y273940D02*X306581D01*

-X297976Y271971D02*X308992D01*

-X297976Y270003D02*X305390D01*

-X297976Y287719D02*X295178D01*

-X297976Y279845D02*X296286D01*

-X294441Y278000D01*

-X295259Y287719D02*X293902Y286362D01*

-Y282263D01*

-X294482Y268095D02*Y265543D01*

-X297976Y266066D02*X301042Y263000D01*

-X318441D01*

-X294482Y265543D02*X298803Y261222D01*

-X317755D01*

-X313869Y257572D02*X299592D01*

-X294164Y263000D01*

-G54D177*X295489Y226192D02*X312917D01*

-X284130Y237551D02*X295489Y226192D01*

-X296103Y228124D02*X312620D01*

-X286099Y238128D02*X296103Y228124D01*

-X284130Y260093D02*Y237551D01*

-X286099Y260093D02*Y238128D01*

-G54D178*X280193Y251547D02*Y258394D01*

-X282162Y260093D02*Y248149D01*

-X279206Y245193D02*Y230234D01*

-X292004Y260093D02*X294441D01*

-X274802Y246156D02*X280193Y251547D01*

-X282162Y248149D02*X279206Y245193D01*

-X296748Y252388D02*Y253650D01*

-Y247270D02*Y245000D01*

-X296662Y244914D01*

-X290441D01*

-X295937D02*Y243628D01*

-X294348Y260093D02*X296748Y257693D01*

-Y253693D01*

-X290048Y252000D02*Y258394D01*

-X289441Y263000D02*X288067Y261626D01*

-Y258394D01*

-X279890Y282687D02*X294482Y268095D01*

-X294164Y263000D02*X289441D01*

-X318441D02*X332441Y249000D01*

-X317755Y261222D02*X327407Y251570D01*

-Y246410D01*

-X330486Y243331D01*

-X313869Y257572D02*X322441Y249000D01*

-X262477Y260093D02*Y253536D01*

-X264445Y260093D02*Y251504D01*

-X266414Y260093D02*X266441Y249500D01*

-X274802Y246156D02*Y226441D01*

-X256810Y231631D02*X269982Y244804D01*

-X268382Y260093D02*Y246941D01*

-X274288Y260093D02*Y255819D01*

-X269982Y251513D01*

-Y244804D01*

-X257443Y270002D02*X261210Y266235D01*

-X263795D01*

-X266978Y269418D01*

-X288066Y300735D02*X289428Y299372D01*

-X286098Y300431D02*X288774Y297755D01*

-X288066Y304963D02*Y300735D01*

-X286098Y304963D02*Y300440D01*

-Y300614D02*Y300440D01*

-Y300475D02*Y300431D01*

-X278224Y304963D02*Y298517D01*

-X276255Y304963D02*Y307300D01*

-X277174Y308219D01*

-X266413Y304963D02*Y296594D01*

-X264444Y304963D02*Y298992D01*

-Y299125D02*X263240Y297921D01*

-X262476Y304963D02*X260740Y303227D01*

-Y293329D01*

-X258841Y290090D02*Y302100D01*

-X260740Y293329D02*X262240Y291829D01*

-X262740D01*

-X253106Y295592D02*X254740Y297226D01*

-Y298329D01*

-X263240Y297921D02*Y295329D01*

-X270351Y295943D02*Y297933D01*

-X272319Y295594D02*Y297672D01*

-X270351Y297933D02*X269653Y298631D01*

-X272319Y297672D02*X273229Y298582D01*

-X253106Y270002D02*X257334D01*

-X261609Y279844D02*X264034Y282269D01*

-X266978Y286653D02*X262278D01*

-X258841Y290090D01*

-X274287Y304963D02*Y317689D01*

-X275887Y312972D02*Y318352D01*

-X280192Y308667D02*X275887Y312972D01*

-X278941Y328992D02*Y313000D01*

-X282161Y309780D01*

-Y303264D01*

-X278941Y328008D02*Y337500D01*

-X280119Y338678D01*

-X285430D01*

-X277449Y342559D02*Y347500D01*

-G54D179*X260839Y342992D02*X260347Y342500D01*

-X265957Y349992D02*Y342500D01*

-Y349992D02*X266449Y349500D01*

-X270441D01*

-X265957Y342500D02*X266000Y342457D01*

-Y335500D01*

-X265957Y342008D02*X266449Y342500D01*

-X270441D01*

-X266000Y335992D02*X266008Y336000D01*

-X270441D01*

-X266000Y356992D02*Y349500D01*

-Y356992D02*X270441D01*

-G54D178*X270708Y321267D02*X264708D01*

-X271118Y323121D02*X261394D01*

-X260568Y322295D01*

-X264708Y321267D02*X263441Y320000D01*

-X260568Y322295D02*Y316997D01*

-X265196Y317738D02*X260348Y312890D01*

-X257209D01*

-X254546Y315552D01*

-Y323347D01*

-X264382Y310492D02*X261502Y307612D01*

-X268381Y305826D02*X264382Y309825D01*

-Y310000D01*

-X261502Y307612D02*Y307367D01*

-X274287Y317689D02*X270726Y321249D01*

-X272318Y315385D02*X269965Y317738D01*

-X265196D01*

-X270350Y304963D02*Y309150D01*

-X269500Y310000D01*

-Y310492D02*X268941Y311051D01*

-Y314000D01*

-X272318Y304963D02*Y315385D01*

-X268381Y304963D02*Y305826D01*

-X303365Y324772D02*Y330000D01*

-X296453Y340007D02*X302941D01*

-X339837Y341827D02*X349316D01*

-X358050Y350561D01*

-X353390Y339521D02*X360933Y347064D01*

-Y352336D01*

-X358050Y350561D02*Y353251D01*

-X363061Y358262D01*

-X360933Y352336D02*X363598Y355000D01*

-X371157Y358262D02*X363061D01*

-X370441Y355000D02*X363598D01*

-X307462Y300156D02*X312157D01*

-X304176Y305229D02*X369319D01*

-X303559Y307000D02*X376441D01*

-X302670Y312000D02*X370441D01*

-X297976Y283782D02*X333399D01*

-X297976Y281814D02*X333104D01*

-X297976Y277877D02*X334778D01*

-X297976Y285751D02*X333942D01*

-X297976Y289688D02*X332396D01*

-X332251Y291656D02*X332761D01*

-X371602Y260228D02*Y245343D01*

-X377944Y239000D01*

-X358441Y252000D02*Y235000D01*

-X363241Y256452D02*Y255546D01*

-X364841Y257243D02*Y256457D01*

-X366441Y257976D02*Y256869D01*

-X358441Y235000D02*X356441Y233000D01*

-X312620Y228124D02*X336441D01*

-X312917Y226192D02*X336441D01*

-Y228124D02*X338441Y230124D01*

-X336441Y226192D02*X338441Y224192D01*

-X330486Y243331D02*X336772D01*

-X342441Y249000D01*

-X398441Y291000D02*X389279Y300162D01*

-Y321689D02*Y300162D01*

-X369319Y305229D02*X401986Y272561D01*

-X387182Y304280D02*X384902Y302000D01*

-X381441D01*

-X387172Y304270D02*Y312000D01*

-X333399Y283782D02*X361641Y255540D01*

-X333104Y281814D02*X360041Y254877D01*

-X334778Y277877D02*X358441Y254214D01*

-Y252000D01*

-X333942Y285751D02*X363241Y256452D01*

-X332396Y289688D02*X364841Y257243D01*

-X332761Y291656D02*X366441Y257976D01*

-X396441Y235000D02*X395441D01*

-X391838Y231397D01*

-X401986Y245532D02*X391461Y235007D01*

-X388207Y247280D02*Y242981D01*

-X392188Y239000D01*

-X401986Y272561D02*Y253764D01*

-Y253878D02*Y245532D01*

-X291991Y307772D02*X298420D01*

-X295931Y299372D02*X297971Y301411D01*

-X296702Y297755D02*X304176Y305229D01*

-X292003Y304963D02*X296779D01*

-X297938Y301378D02*X303559Y307000D01*

-X289428Y299372D02*X295931D01*

-X288774Y297755D02*X296702D01*

-X297976Y295593D02*X302689D01*

-X304230Y299288D02*X305098Y300156D01*

-X303365Y319654D02*X298786D01*

-X296453Y317321D01*

-X294941Y310500D02*X296453Y312012D01*

-Y317321D01*

-X298441Y307772D02*X302670Y312000D01*

-X305098Y300156D02*X307954D01*

-X297976Y291656D02*X332557D01*

-X302689Y295593D02*X304230Y297134D01*

-Y299288D01*

-X305357Y295038D02*X303944Y293625D01*

-X299675D01*

-X305357Y295038D02*X312122D01*

-X290035Y305815D02*X291991Y307772D01*

-X290035Y304963D02*Y305815D01*

-X284129Y304963D02*Y309188D01*

-X285441Y310500D01*

-X294941D01*

-X285430Y318650D02*Y325000D01*

-X275887Y318352D02*X271118Y323121D01*

-X280192Y308667D02*Y300309D01*

-X281692Y298809D01*

-Y293836D01*

-X275876Y288020D01*

-X294441Y278000D02*X288441D01*

-X281441Y285000D01*

-X279441D01*

-X275876Y288020D02*Y284637D01*

-X277826Y282687D01*

-X279890D01*

-X264034Y282269D02*Y282931D01*

-X266978Y269418D02*Y286653D01*

-G54D177*X387425Y186369D02*X385730Y184673D01*

-G54D178*X379833Y188086D02*X383246Y184673D01*

-X385730D01*

-G54D177*X387441Y189962D02*Y186369D01*

-X387479Y190000D02*X387441Y189962D01*

-X386720Y190759D02*X387479Y190000D01*

-X386720Y203689D02*Y190759D01*

-X378441Y195000D02*X376441D01*

-X381603Y198162D02*X378441Y195000D01*

-X381603Y203689D02*Y198162D01*

-G54D178*X379833Y192610D02*Y188086D01*

-G54D177*X384162Y201386D02*Y188000D01*

-G54D178*X366441Y203078D02*X374519Y195000D01*

-X364841Y202092D02*X374323Y192610D01*

-X363241Y201429D02*X377441Y187229D01*

-X361641Y200700D02*X369127Y193214D01*

-G54D179*X353282Y111500D02*X371941D01*

-G54D178*X374519Y195000D02*X376510D01*

-X374323Y192610D02*X379833D01*

-G54D177*X387441Y186369D02*X387425D01*

-X387441D03*

-X391810Y186000D02*X394810Y183000D01*

-X389279Y184162D02*X389441Y184000D01*

-X389279Y187162D02*Y184162D01*

-G54D178*X389441Y184000D02*X398441Y175000D01*

-G54D177*X399882Y188441D02*X395441D01*

-X400441Y189000D02*X399882Y188441D01*

-X400000Y193559D02*X395441D01*

-G54D178*X377441Y187229D02*Y168118D01*

-Y166395D02*X386151Y157685D01*

-X377441Y166395D02*Y168000D01*

-X369127Y171314D03*

-Y169388D02*Y193214D01*

-Y169388D02*X376337Y162178D01*

-X377347D01*

-G54D177*X400441Y194000D02*X400000Y193559D01*

-X391838Y199083D02*Y195535D01*

-X458250Y196800D02*X412250D01*

-X394397Y229250D02*Y226917D01*

-X456641Y225000D02*Y218000D01*

-X458441Y196800D02*Y195000D01*

-Y196800D02*X458250D01*

-D03*

-X456641Y218000D02*X379044D01*

-Y206000D02*X389279D01*

-X379044Y201386D02*Y206000D01*

-X389279Y201386D02*Y206000D01*

-X391838Y224614D02*Y220000D01*

-X391810Y195575D02*Y186000D01*

-X391838Y195603D02*X391810Y195575D01*

-X389279Y203689D02*Y187096D01*

-X412250Y204300D02*Y196800D01*

-Y211300D02*Y197300D01*

-Y211300D02*X389117D01*

-X391973Y197309D02*X391838D01*

-X394441Y200000D02*X400441Y194000D01*

-X401750Y211300D02*X376485D01*

-Y203689D01*

-Y208000D02*Y203689D01*

-X445441Y169109D02*X448750Y165800D01*

-X445441Y181000D02*Y169109D01*

-X443441Y183000D02*X445441Y181000D01*

-X458441Y165800D02*Y164000D01*

-Y165800D02*X458250D01*

-D03*

-X448750D01*

-X394810Y183000D02*X443441D01*

-G54D178*X398441Y175000D02*Y173000D01*

-G54D179*X440941Y123000D02*X398441Y165500D01*

-Y173000D01*

-G54D177*X432000Y72118D02*X434882Y75000D01*

-X432000Y70000D02*Y72118D01*

-X426882Y71559D02*X423441Y75000D01*

-X426882Y70000D02*Y71559D01*

-G54D179*X356823Y71992D02*X356941Y72110D01*

-X376941Y73000D02*X377484Y72457D01*

-X361941Y71992D02*Y81579D01*

-X374549Y58500D02*X382780Y58501D01*

-X382440Y61999D02*Y58501D01*

-X366941Y84728D02*X366882Y84669D01*

-X371941Y84728D02*X372000Y84669D01*

-X366882D02*Y71999D01*

-X372000Y84669D02*Y67602D01*

-X370398Y66000D01*

-X377484Y72457D02*Y66000D01*

-X381941Y84728D02*Y73000D01*

-X370398Y66393D02*X369441Y65436D01*

-X366882Y71507D02*X365467Y70092D01*

-Y68683D01*

-X362284Y65500D01*

-X369441Y65436D02*Y54500D01*

-X372528Y51413D01*

-X374548D01*

-Y58499D02*X374549Y58500D01*

-X371941Y118193D02*Y81579D01*

-X397548Y98042D02*Y102892D01*

-X394941Y105499D01*

-X387441D01*

-X397548Y90956D02*X397941Y90563D01*

-Y84499D01*

-X383441Y63000D02*X382440Y61999D01*

-X386941Y84728D02*Y74499D01*

-X376941Y84728D02*Y72999D01*

-X390441Y70999D02*X390527Y66500D01*

-Y66893D02*X390484Y61087D01*

-X387898Y58501D01*

-X387941Y53500D01*

-X397449Y79381D02*X392567Y74499D01*

-X391941D01*

-X386941D02*X390441Y70999D01*

-X381941Y73000D02*X384398Y70543D01*

-Y66500D01*

-Y66893D02*X383441Y65936D01*

-Y63000D01*

-X374548Y51413D02*X379961Y46000D01*

-X381536D01*

-G54D177*X381441Y302000D02*X376441Y307000D01*

-X458441Y254000D02*X456641D01*

-Y252200D01*

-X448750D01*

-Y229250D01*

-X458441Y225000D02*X456641D01*

-X379044Y222311D02*Y218000D01*

-X386720Y224614D02*Y234650D01*

-X381603Y220000D02*X391838D01*

-X381603Y224614D02*Y220000D01*

-G54D178*X391838Y231397D02*Y224614D01*

-G54D177*X448750Y229250D02*X394397D01*

-X397497Y247056D02*X393135D01*

-X398441Y248000D02*X397497Y247056D01*

-X397615Y252174D02*X398441Y253000D01*

-X393135Y252174D02*X397615D01*

-X458441Y286800D02*Y285000D01*

-Y286800D02*X458250D01*

-D03*

-X432250D01*

-Y317434D02*Y286800D01*

-Y317434D02*X402250D01*

-X394397Y315434D02*X395831Y314000D01*

-X384162Y319386D02*Y306000D01*

-X392949Y311118D02*X395831Y314000D01*

-X395441Y306000D02*X398441Y309000D01*

-X392949Y306000D02*X395441D01*

-X389279Y232825D02*X391441Y234987D01*

-X389279Y226917D02*Y232825D01*

-X384162Y232782D02*X377944Y239000D01*

-X384162Y226917D02*Y232782D01*

-X386720Y234650D02*X387070Y235000D01*

-X376485Y233956D02*X375441Y235000D01*

-X376485Y224614D02*Y233956D01*

-G54D178*X366441Y257772D02*Y203078D01*

-X364841Y256865D02*Y202092D01*

-X363241Y256202D02*Y201429D01*

-X360041Y254877D02*Y210000D01*

-X361641Y255540D02*Y200767D01*

-X358941Y208500D02*X360041Y209600D01*

-Y229900D01*

-G54D177*X238192Y283781D02*X227240Y272829D01*

-G54D178*X237756Y285750D02*X225528Y273522D01*

-X237358Y287718D02*X223884Y274244D01*

-G54D177*X232350Y273939D02*X229240Y270829D01*

-G54D178*X228128Y289687D02*X220754D01*

-X203441Y293000D02*X204441Y292000D01*

-G54D177*X252106Y260829D02*X248799D01*

-X253106Y261829D02*X252106Y260829D01*

-X253106Y266065D02*Y261829D01*

-G54D178*Y271970D02*X259552D01*

-X253106Y268033D02*X249600D01*

-X249396Y267829D01*

-X270351Y260093D02*Y296024D01*

-X272319Y260093D02*Y295594D01*

-X278225Y260093D02*Y279602D01*

-X259552Y271970D02*X262750Y268772D01*

-X260501Y279844D02*X261609D01*

-X250834Y291655D02*X254805D01*

-X247189Y277876D02*X245557Y279508D01*

-X253106Y277876D02*X247189D01*

-X253106Y275907D02*X245166D01*

-X245207D02*X242550Y278564D01*

-X240391D01*

-G54D177*X253106Y283781D02*X238192D01*

-G54D178*X253106Y285750D02*X237756D01*

-X253106Y287718D02*X237358D01*

-G54D177*X253106Y273939D02*X232350D01*

-G54D178*X253106Y289687D02*X228091D01*

-X253106Y279844D02*X260641D01*

-X253106Y281813D02*X257905D01*

-X260341Y284249D01*

-X249396Y267829D02*X246240D01*

-X253106Y293624D02*X252274D01*

-X250724Y295174D01*

-Y297065D01*

-X249939Y297850D01*

-X246827D01*

-X249757Y292732D02*X250834Y291655D01*

-X249757Y292732D02*X243267D01*

-X242456Y293543D01*

-X246335Y297850D02*X243118D01*

-X242168Y298800D01*

-X239154Y268222D02*Y265356D01*

-X243681Y260829D01*

-X240788Y263721D02*X239302Y262235D01*

-X223884Y274244D02*Y256000D01*

-X225528Y273522D02*Y253087D01*

-X227240Y272829D02*Y250799D01*

-X229240Y270829D02*Y248201D01*

-X223884Y256000D02*X221884Y254000D01*

-X225528Y253087D02*X224441Y252000D01*

-X227240Y250799D02*X225441Y249000D01*

-X229240Y248201D02*X230441Y247000D01*

-X237441Y227045D02*X218396Y208000D01*

-X189441D01*

-X172611Y191170D01*

-X220729Y265580D02*X218246Y268063D01*

-X219441Y272500D02*X222262Y275321D01*

-X218309Y268000D02*X216941Y269368D01*

-Y274500D01*

-X262477Y253536D02*X246941Y238000D01*

-X264445Y251504D02*X242441Y229500D01*

-X266441Y249500D02*X246441Y229500D01*

-X268382Y246941D02*X250941Y229500D01*

-X252223Y227045D02*X256778Y231600D01*

-X239183Y190822D02*X274802Y226441D01*

-X237359Y227045D02*X252223D01*

-G54D179*X275291Y220952D02*X245863Y191524D01*

-G54D178*X279206Y217052D02*X250914Y188760D01*

-X279206Y230265D02*Y217052D01*

-G54D179*X130941Y231228D02*X130453Y230740D01*

-X135941Y231228D02*X135571Y230858D01*

-X140941Y231228D02*X141012Y231157D01*

-X145941Y231228D02*X146130Y231039D01*

-X140941Y231228D02*X140882Y231169D01*

-X145941Y231228D02*X146000Y231169D01*

-X130453Y230740D02*Y211370D01*

-X135571Y230858D02*Y217370D01*

-Y211862D02*X136777D01*

-X139107Y214191D01*

-Y216725D01*

-X140882Y231169D02*Y218500D01*

-X139107Y216725D02*X140882Y218500D01*

-X146130Y264504D02*Y226000D01*

-X146000Y231169D02*Y214602D01*

-X143898Y212500D01*

-Y205500D01*

-Y205893D02*X145036Y204755D01*

-Y196000D01*

-X145941Y264693D02*X146130Y264504D01*

-G54D180*X99311Y243370D02*X107571D01*

-G54D179*X102449Y211441D02*X102347Y211543D01*

-X95941D01*

-X150941Y231228D02*X150984Y231185D01*

-Y212500D01*

-X160941Y231228D02*Y220500D01*

-X155941Y231228D02*Y220328D01*

-X170949Y231882D02*X170067Y231000D01*

-X165941D01*

-X170949Y237000D02*X170441Y237508D01*

-Y241457D01*

-X170048Y248543D02*X170005Y248500D01*

-X162441D01*

-X164571Y212370D02*X163571Y211370D01*

-X163071Y205370D01*

-Y204878D02*X163000Y204807D01*

-X160941Y220500D02*X164571Y216870D01*

-Y212370D01*

-X155941Y220328D02*X157485Y218784D01*

-Y212370D01*

-X157398Y212283D01*

-Y205500D01*

-X150984D01*

-X167299Y298829D02*X197799D01*

-X197307Y323888D02*X187799D01*

-G54D178*X179441Y338500D02*X159770Y318829D01*

-X180941Y336500D02*X158270Y313829D01*

-X178887Y342818D02*X162155D01*

-X184799Y328829D02*X199112D01*

-X205941Y295500D02*Y325147D01*

-X197259Y333829D01*

-X199112Y328829D02*X203441Y324500D01*

-X197259Y333829D02*X187799D01*

-X197441Y336500D02*X180941D01*

-X198441Y338500D02*X179441D01*

-X191363Y344449D02*X179851Y355962D01*

-X173850D01*

-G54D179*X168732D02*Y350833D01*

-G54D178*X222262Y275321D02*Y280532D01*

-X216941Y274500D02*X219941Y277500D01*

-Y281500D01*

-X203519Y292922D02*X217441Y279000D01*

-X219941Y281500D02*X205941Y295500D01*

-X222262Y280500D02*Y283179D01*

-X208441Y297000D01*

-X220754Y289687D02*X210941Y299500D01*

-X208441Y297000D02*Y325500D01*

-X210941Y299500D02*Y326000D01*

-X203441Y324500D02*Y293000D01*

-X208441Y325500D02*X197441Y336500D01*

-X210941Y326000D02*X198441Y338500D01*

-X245312Y349893D02*X230441Y335022D01*

-X245312Y342893D02*X240441Y338022D01*

-X230441Y335022D02*Y293000D01*

-X240441Y309321D02*X246731Y303031D01*

-G54D179*X252834Y335500D02*X260882D01*

-X260347Y342500D02*X252398D01*

-Y349893D02*X252791Y349500D01*

-X260839D01*

-G54D178*X229818Y354988D02*X231331Y356500D01*

-X245355D01*

-G54D179*X252441Y356893D02*X252834Y356500D01*

-X260882D01*

-G54D178*X240441Y338022D02*Y309321D01*

-X258841Y302100D02*X245355Y315586D01*

-Y335500D01*

-G54D179*X252441Y335893D02*X252834Y335500D01*

-G54D178*X254546Y323347D02*X249101Y328793D01*

-G54D179*X140949Y328941D02*X141061Y328829D01*

-X140949Y323559D02*X141219Y323829D01*

-X140949Y318441D02*Y314492D01*

-X141799Y313642D01*

-Y308888D01*

-X141061Y328829D02*X151799D01*

-X148799D02*X158441D01*

-X151799D02*Y323829D01*

-X158441Y328829D02*Y324500D01*

-X148799Y323829D02*X158441D01*

-Y327000D01*

-X141219Y323829D02*X151799D01*

-G54D178*X159770Y318829D02*X151799D01*

-X158270Y313829D02*X151799D01*

-G54D179*X141307Y308888D02*X126799D01*

-X141307Y303770D02*Y300883D01*

-X148799Y308829D02*X141799Y308888D01*

-X148799Y303829D02*X148740Y303770D01*

-X141799D01*

-X148799Y298829D02*X148599Y298629D01*

-Y292229D01*

-X148299D02*X145899Y289829D01*

-X126799D01*

-X167299Y298829D02*X156799Y288329D01*

-X124831Y309514D02*Y302385D01*

-X148799Y333829D02*X141441D01*

-G54D178*X145249Y359724D02*X139132D01*

-X135740Y363117D01*

-Y364932D01*

-X151115Y359500D02*X145803Y364811D01*

-X162155Y342818D02*X145249Y359724D01*

-X151115Y359500D02*X172571D01*

-X173850Y358221D01*

-Y355962D01*

-G54D179*X120666Y142340D02*X119666Y141340D01*

-X131882Y132156D02*Y148000D01*

-X131390D02*X127941D01*

-X131882Y132156D02*X127066Y127340D01*

-X123916D01*

-X137000Y148492D02*Y130941D01*

-Y130559D02*X140219Y127340D01*

-X141441D01*

-X137000Y148492D02*X137492Y148000D01*

-X131882Y148492D02*X131390Y148000D01*

-X141166Y112340D02*X155222D01*

-X155382Y112500D01*

-X150542Y117340D01*

-X144416D01*

-G54D178*X152441Y121500D02*X151601Y122340D01*

-X144416D01*

-G54D179*X159949Y118941D02*X160500Y118390D01*

-Y112500D01*

-X166166Y112568D02*X166097Y112500D01*

-X160500D01*

-X183949Y118941D02*X184441Y118449D01*

-G54D178*X178941Y120500D02*X180500Y118941D01*

-X184382D01*

-G54D179*X184441Y118449D02*Y113059D01*

-G54D178*X167882Y118941D02*X166382D01*

-X172691Y191250D02*X170941Y189500D01*

-Y183000D01*

-X167941Y180000D01*

-X149441D01*

-X145717Y183724D01*

-Y184815D01*

-G54D179*X137492Y148000D02*X141441D01*

-G54D178*X165241Y150800D02*X189215D01*

-X111041Y153000D02*X188441D01*

-X165441Y150800D02*X163241D01*

-X160441Y148000D01*

-X160534Y148497D02*X160500Y148464D01*

-Y141559D01*

-X160933Y136059D02*X161211Y136337D01*

-X165975D01*

-G54D179*X165483Y131219D02*Y129042D01*

-X155416Y148497D02*X150444D01*

-G54D178*X175256Y149068D02*X171441Y145253D01*

-G54D179*X150444Y148497D02*X149941Y149000D01*

-X184491Y130953D02*X184503Y130941D01*

-G54D178*X183441Y140500D02*X180441D01*

-X178941Y139000D01*

-G54D179*X159949Y130941D02*X160441Y130449D01*

-G54D178*X151941Y132000D02*X151601Y132340D01*

-X144416D01*

-G54D179*X160441Y130449D02*Y124059D01*

-X163941Y127500D02*X166441Y125000D01*

-Y124059D01*

-X159949Y118941D02*X166441D01*

-X160441Y127500D02*X163941D01*

-X141166Y127340D02*X160281D01*

-X160441Y127500D01*

-X165483Y129042D02*X163941Y127500D01*

-X141166Y142340D02*X154177D01*

-X155438Y141079D01*

-X141166Y137340D02*X151222D01*

-X155382Y141500D01*

-X160500Y141992D02*Y136059D01*

-G54D178*X171441Y145253D02*Y122500D01*

-X178941Y139000D02*Y120500D01*

-X171441Y122500D02*X167882Y118941D01*

-G54D179*X199874Y137500D02*X195441Y141933D01*

-G54D178*X195941Y132500D02*X205691D01*

-G54D179*X213882Y132441D02*Y148500D01*

-X219000Y131441D02*Y148500D01*

-X213882Y148992D02*X212890Y148000D01*

-X219000Y148008D02*X219008Y148000D01*

-X223941D01*

-X195500Y141992D02*X196008Y142500D01*

-X205691D01*

-X202441Y137500D02*X199874D01*

-G54D178*X190382Y141008D02*Y144941D01*

-X197441Y152000D01*

-X197000Y151559D01*

-Y148346D01*

-X189878Y149200D02*X196310Y155632D01*

-X189215Y150800D02*X195678Y157263D01*

-X188441Y153000D02*X194941Y159500D01*

-X187441Y155000D02*X193941Y161500D01*

-G54D179*X202118Y148838D02*X202955Y148000D01*

-G54D178*X197441Y152000D02*X245141D01*

-G54D179*X212890Y148000D02*X202955D01*

-X235955Y148246D02*X235709Y148000D01*

-X231441D01*

-X241073Y148246D02*X241059Y148232D01*

-G54D178*X246941Y154000D02*X196941D01*

-X196310Y155632D02*X248572D01*

-X195678Y157263D02*X250704D01*

-X250678D02*X250704D01*

-X194941Y159500D02*X251941D01*

-X193941Y161500D02*X253441D01*

-G54D179*X222941Y142500D02*X235178D01*

-X236178Y141500D01*

-X232882Y137500D02*X236382Y141000D01*

-X236178Y141500D02*X236382D01*

-Y141000D02*Y141500D01*

-X241059Y148232D02*Y141500D01*

-X241500Y141992D02*Y136941D01*

-X242441Y136000D01*

-X241449Y136059D02*X241657Y136267D01*

-X248008D01*

-G54D178*X249674D02*X247941D01*

-G54D179*X222941Y137500D02*X232882D01*

-G54D178*X235941Y133000D02*X235441Y132500D01*

-X226191D01*

-G54D179*X219000Y131441D02*X222941Y127500D01*

-X226191D01*

-G54D178*X245141Y152000D02*X258308Y138833D01*

-X248572Y155632D02*X268382Y135822D01*

-X250704Y157263D02*X269573Y138394D01*

-X246941Y154000D02*X266441Y134500D01*

-X237387Y179977D02*X220345D01*

-X215709Y184613D01*

-Y184752D01*

-X225824Y184806D02*X231840Y190822D01*

-X239183D01*

-X250914Y188760D02*Y182309D01*

-X248581Y179977D01*

-X233567D01*

-X251941Y159500D02*X265619Y145822D01*

-X253441Y161500D02*X266441Y148500D01*

-X246992Y108000D02*X279941D01*

-X280941Y109000D01*

-X278619Y115822D02*X274688D01*

-X271438Y110822D02*X266119D01*

-X280221Y118218D02*X280909Y118906D01*

-X267222Y118219D02*X280222D01*

-X280941Y109000D02*Y113500D01*

-X278619Y115822D01*

-X266119Y110822D02*X255941Y121000D01*

-X242000Y112992D02*X246992Y108000D01*

-G54D179*X241449Y130941D02*X241941Y130449D01*

-Y124059D01*

-Y127500D02*X245441D01*

-X241449Y118941D02*X248441D01*

-G54D178*X245000Y135941D02*X242000D01*

-G54D179*X247949Y124059D02*X247890Y124000D01*

-X241941D01*

-X247516Y131149D02*X247308Y130941D01*

-X241941D01*

-G54D178*X280909Y118906D02*Y123034D01*

-Y123000D02*X278088Y125822D01*

-X274688D01*

-X268382Y135822D02*X274688D01*

-X269573Y138394D02*X279063D01*

-X279972Y130822D02*X274688D01*

-X279972D02*X282441Y133291D01*

-X258291Y138850D02*X263941Y133200D01*

-X266441Y134500D02*Y123500D01*

-X263941Y133200D02*Y121500D01*

-X267222Y118219D01*

-X266441Y123500D02*X269119Y120822D01*

-X274688D01*

-X255941Y121000D02*Y130000D01*

-X249674Y136267D01*

-G54D179*X305696Y115940D02*X310941D01*

-G54D178*X303038Y119222D02*X305451D01*

-X304700Y120822D02*X304927D01*

-X305083Y119222D02*X305590D01*

-G54D179*X291938Y110822D02*X306188D01*

-X305696D02*Y107500D01*

-G54D178*X291938Y125822D02*X307525D01*

-X291938Y120822D02*X304788D01*

-X291938Y115822D02*X299638D01*

-X303038Y119222D01*

-X312289Y210583D02*X304706D01*

-X310421Y204383D02*X305280D01*

-X291938Y130822D02*X309763D01*

-G54D179*X304263Y135822D02*X304941Y136500D01*

-X304472Y141568D02*X303726Y140822D01*

-X304472Y141568D02*X309441D01*

-X300709Y145822D02*X304964Y141568D01*

-X304472Y136450D02*X309441D01*

-G54D178*X307525Y125822D02*X329417Y147713D01*

-X328601Y146898D02*X332661Y150958D01*

-X305590Y119222D02*X335927Y149558D01*

-X337441Y151072D01*

-X304927Y120822D02*X334308Y150202D01*

-X309763Y130822D02*X320804Y141863D01*

-G54D179*X340186Y98404D02*X329941D01*

-X340186D02*X353282Y111500D01*

-X291938Y135822D02*X304263D01*

-X303726Y140822D02*X295188D01*

-X291938Y145822D02*X300709D01*

-G54D178*X280691Y147030D02*Y143314D01*

-X278199Y140822D01*

-X274688D01*

-X279047Y138394D02*X281047D01*

-X279221Y148500D02*X280691Y147030D01*

-X281047Y138394D02*X282441Y137000D01*

-Y133291D01*

-X265619Y145822D02*X274688D01*

-X266441Y148500D02*X279221D01*

-X332661Y150958D02*Y187953D01*

-X334308Y150202D02*Y188569D01*

-Y188633D02*X312358Y210583D01*

-X332661Y188000D02*X313178Y207483D01*

-X337441Y151072D02*Y163000D01*

-X313178Y207483D02*X304584D01*

-X320804Y141863D02*Y193925D01*

-Y194000D02*X310421Y204383D01*

-G54D179*X114000Y112992D02*X114652Y112340D01*

-X118840Y117340D02*X114000Y112500D01*

-X108882Y112992D02*Y118882D01*

-X108941Y118941D01*

-X108449D02*X102441D01*

-X114652Y112340D02*X123916D01*

-X120666Y117340D02*X118840D01*

-G54D178*X114441Y121500D02*X115281Y122340D01*

-X123916D01*

-G54D179*X101978Y124030D02*X108912D01*

-G54D181*X86941Y99095D02*Y158500D01*

-Y99000D02*X102941Y83000D01*

-G54D179*X102441Y118941D02*X102401Y118901D01*

-X101949Y124059D02*X101978Y124030D01*

-G54D178*X97441Y148500D02*Y118500D01*

-X99941Y116000D01*

-X99981Y116040D01*

-X102401D01*

-G54D179*Y118901D02*Y113435D01*

-X119666Y141340D02*X113975D01*

-X120666Y137340D02*X116666Y141340D01*

-X115036D01*

-G54D178*X115601Y132340D02*X123916D01*

-G54D179*X108857Y136143D02*X108941Y136059D01*

-X112542Y127340D02*X108941Y130941D01*

-X112222Y127340D02*X108941Y124059D01*

-G54D178*X115441Y132500D02*X115601Y132340D01*

-X108857Y141832D02*Y150816D01*

-X111041Y153000D01*

-G54D179*X108857Y141832D02*Y136143D01*

-X102191Y140958D02*X102790Y140358D01*

-Y136135D01*

-X95548Y204457D02*X95591Y204500D01*

-X104441D01*

-G54D178*X103941Y155000D02*X97441Y148500D01*

-G54D179*X195807Y112500D02*X205691D01*

-X222941D02*X236882D01*

-X202441Y117500D02*X200635D01*

-X222941D02*X231882D01*

-X236882Y112500D01*

-X241449Y118941D02*Y113051D01*

-X242000Y112500D01*

-X183949Y118941D02*X190441D01*

-G54D178*X234441Y122500D02*X226191D01*

-G54D179*X247949Y102441D02*X248008Y102500D01*

-X253441D01*

-G54D181*X102941Y83000D02*X318941D01*

-G54D179*X101909Y108317D02*X101941Y108285D01*

-X166166Y107450D02*X166441Y107175D01*

-Y104000D01*

-X183949Y107941D02*X183941Y107933D01*

-Y104000D01*

-X101941Y108285D02*Y104500D01*

-G54D178*X190178Y149500D02*X189746Y149068D01*

-X175256D01*

-X102191Y146076D02*X104615Y148500D01*

-X106441D01*

-X187441Y155000D02*X103941D01*

-G54D179*X102790Y136135D02*X103009Y135916D01*

-X108857D01*

-X102298Y131017D02*X102315Y131000D01*

-X108882D01*

-G54D178*X196941Y154000D02*X183441Y140500D01*

-G54D179*X195475Y112832D02*X195807Y112500D01*

-X200635Y117500D02*X195475Y112340D01*

-X189949Y118941D02*Y112340D01*

-G54D178*X198441Y122500D02*X205691D01*

-G54D179*X202441Y127500D02*X208941D01*

-X213882Y132441D01*

-X189949Y124059D02*X184441D01*

-X190382Y141992D02*Y136059D01*

-X189949Y130941D02*X193390Y127500D01*

-X193882D02*X190441Y124059D01*

-G54D178*X195441Y133000D02*X195941Y132500D01*

-G54D179*X189949Y136059D02*X189937Y136071D01*

-X184983D01*

-X184503Y130941D02*X190441D01*

-G54D178*X113799Y350029D02*X114399Y350629D01*

-X116199D01*

-X116799Y350029D01*

-Y348829D01*

-X113799Y345829D02*X116799Y348829D01*

-X113799Y345829D02*X116799D01*

-X118239Y346429D02*X118839Y345829D01*

-X118239Y350029D02*Y346429D01*

-Y350029D02*X118839Y350629D01*

-X120039D01*

-X120639Y350029D01*

-Y346429D01*

-X120039Y345829D02*X120639Y346429D01*

-X118839Y345829D02*X120039D01*

-X118239Y347029D02*X120639Y349429D01*

-X122079Y349669D02*X123039Y350629D01*

-Y345829D01*

-X122079D02*X123879D01*

-X125319Y350029D02*X125919Y350629D01*

-X127119D01*

-X127719Y350029D01*

-X127119Y345829D02*X127719Y346429D01*

-X125919Y345829D02*X127119D01*

-X125319Y346429D02*X125919Y345829D01*

-Y348469D02*X127119D01*

-X127719Y350029D02*Y349069D01*

-Y347869D02*Y346429D01*

-Y347869D02*X127119Y348469D01*

-X127719Y349069D02*X127119Y348469D01*

-X129159Y346429D02*X129759Y345829D01*

-X129159Y350029D02*Y346429D01*

-Y350029D02*X129759Y350629D01*

-X130959D01*

-X131559Y350029D01*

-Y346429D01*

-X130959Y345829D02*X131559Y346429D01*

-X129759Y345829D02*X130959D01*

-X129159Y347029D02*X131559Y349429D01*

-X132999Y349669D02*X133959Y350629D01*

-Y345829D01*

-X132999D02*X134799D01*

-X136239Y349669D02*X137199Y350629D01*

-Y345829D01*

-X136239D02*X138039D01*

-X140079D02*X142479Y350629D01*

-X139479D02*X142479D01*

-G54D182*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D176*G36*

-X403750Y357250D02*Y350750D01*

-X410250D01*

-Y357250D01*

-X403750D01*

-G37*

-G54D183*X345799Y357329D03*

-G54D184*X315799Y337329D03*

-G54D183*X85799Y369829D03*

-G54D185*X105799Y374829D03*

-G54D176*G36*

-X102499Y368129D02*Y361529D01*

-X109099D01*

-Y368129D01*

-X102499D01*

-G37*

-G54D185*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-G54D186*X93299Y342329D03*

-G54D185*X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D176*G36*

-X450250Y267250D02*Y260750D01*

-X456750D01*

-Y267250D01*

-X450250D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X456750D01*

-Y207250D01*

-X450250D01*

-G37*

-G36*

-Y177250D02*Y170750D01*

-X456750D01*

-Y177250D01*

-X450250D01*

-G37*

-G54D182*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D176*G36*

-X450250Y237250D02*Y230750D01*

-X456750D01*

-Y237250D01*

-X450250D01*

-G37*

-G54D182*X463500Y234000D03*

-X473500D03*

-G54D176*G36*

-X450250Y147250D02*Y140750D01*

-X456750D01*

-Y147250D01*

-X450250D01*

-G37*

-G36*

-Y117250D02*Y110750D01*

-X456750D01*

-Y117250D01*

-X450250D01*

-G37*

-G36*

-Y87250D02*Y80750D01*

-X456750D01*

-Y87250D01*

-X450250D01*

-G37*

-G36*

-Y57250D02*Y50750D01*

-X456750D01*

-Y57250D01*

-X450250D01*

-G37*

-G54D182*X463500Y54000D03*

-X473500D03*

-G54D176*G36*

-X450250Y327250D02*Y320750D01*

-X456750D01*

-Y327250D01*

-X450250D01*

-G37*

-G54D182*X463500Y324000D03*

-X473500D03*

-G54D176*G36*

-X450250Y297250D02*Y290750D01*

-X456750D01*

-Y297250D01*

-X450250D01*

-G37*

-G54D182*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D176*G36*

-X309191Y252250D02*Y245750D01*

-X315691D01*

-Y252250D01*

-X309191D01*

-G37*

-G54D182*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D183*X345799Y192329D03*

-G54D176*G36*

-X450250Y387250D02*Y380750D01*

-X456750D01*

-Y387250D01*

-X450250D01*

-G37*

-G54D182*X463500Y384000D03*

-X473500D03*

-G54D176*G36*

-X403750Y387250D02*Y380750D01*

-X410250D01*

-Y387250D01*

-X403750D01*

-G37*

-G36*

-Y297250D02*Y290750D01*

-X410250D01*

-Y297250D01*

-X403750D01*

-G37*

-G36*

-Y327250D02*Y320750D01*

-X410250D01*

-Y327250D01*

-X403750D01*

-G37*

-G54D182*X417000Y324000D03*

-X427000D03*

-G54D176*G36*

-X450250Y357250D02*Y350750D01*

-X456750D01*

-Y357250D01*

-X450250D01*

-G37*

-G54D182*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D176*G36*

-X403750Y177250D02*Y170750D01*

-X410250D01*

-Y177250D01*

-X403750D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X410250D01*

-Y207250D01*

-X403750D01*

-G37*

-G36*

-Y237250D02*Y230750D01*

-X410250D01*

-Y237250D01*

-X403750D01*

-G37*

-G36*

-Y267250D02*Y260750D01*

-X410250D01*

-Y267250D01*

-X403750D01*

-G37*

-G54D182*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D176*G36*

-X202191Y50750D02*Y44250D01*

-X208691D01*

-Y50750D01*

-X202191D01*

-G37*

-G54D182*X205441Y57500D03*

-Y67500D03*

-G54D176*G36*

-X232191Y50750D02*Y44250D01*

-X238691D01*

-Y50750D01*

-X232191D01*

-G37*

-G54D182*X235441Y57500D03*

-Y67500D03*

-G54D176*G36*

-X262191Y50750D02*Y44250D01*

-X268691D01*

-Y50750D01*

-X262191D01*

-G37*

-G36*

-X172191D02*Y44250D01*

-X178691D01*

-Y50750D01*

-X172191D01*

-G37*

-G36*

-X142191D02*Y44250D01*

-X148691D01*

-Y50750D01*

-X142191D01*

-G37*

-G36*

-X112191D02*Y44250D01*

-X118691D01*

-Y50750D01*

-X112191D01*

-G37*

-G36*

-X82191D02*Y44250D01*

-X88691D01*

-Y50750D01*

-X82191D01*

-G37*

-G54D182*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D176*G36*

-X292191Y50750D02*Y44250D01*

-X298691D01*

-Y50750D01*

-X292191D01*

-G37*

-G54D182*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D183*X85799Y179829D03*

-G54D185*X105799Y184829D03*

-G54D176*G36*

-X102499Y178129D02*Y171529D01*

-X109099D01*

-Y178129D01*

-X102499D01*

-G37*

-G54D185*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D176*G36*

-X82191Y243250D02*Y236750D01*

-X88691D01*

-Y243250D01*

-X82191D01*

-G37*

-G54D182*X85441Y230000D03*

-Y220000D03*

-G54D185*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D176*G36*

-X192499Y200629D02*Y194029D01*

-X199099D01*

-Y200629D01*

-X192499D01*

-G37*

-G54D185*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D187*X371941Y118193D02*Y104807D01*

-G54D188*X397548Y98042D02*X398334D01*

-G54D189*X271438Y125822D02*X277938D01*

-X291938D02*X298438D01*

-X291938Y130822D02*X298438D01*

-X291938Y135822D02*X298438D01*

-X291938Y140822D02*X298438D01*

-X291938Y145822D02*X298438D01*

-X271438Y120822D02*X277938D01*

-X271438Y115822D02*X277938D01*

-X271438Y110822D02*X277938D01*

-X291938D02*X298438D01*

-X291938Y115822D02*X298438D01*

-X291938Y120822D02*X298438D01*

-G54D190*X235941Y141992D02*Y141008D01*

-X241059Y141992D02*Y141008D01*

-X241073Y148246D02*Y147262D01*

-X235955Y148246D02*Y147262D01*

-X247516Y131149D02*X248500D01*

-X247516Y136267D02*X248500D01*

-X247949Y124059D02*X248933D01*

-X247949Y118941D02*X248933D01*

-X247949Y107559D02*X248933D01*

-X247949Y102441D02*X248933D01*

-X183949Y124059D02*X184933D01*

-X183949Y118941D02*X184933D01*

-X183949Y113059D02*X184933D01*

-X183949Y107941D02*X184933D01*

-X184491Y130953D02*X185475D01*

-X184491Y136071D02*X185475D01*

-X197000Y148838D02*Y147854D01*

-X202118Y148838D02*Y147854D01*

-X432000Y70492D02*Y69508D01*

-X426882Y70492D02*Y69508D01*

-G54D188*X340186Y98404D02*X345696D01*

-X340186Y86594D02*X345696D01*

-X327186D02*X332696D01*

-X397548Y90956D02*X398334D01*

-X327186Y98404D02*X332696D01*

-G54D190*X372000Y72491D02*Y71507D01*

-X366882Y72491D02*Y71507D01*

-X356823Y71992D02*Y71008D01*

-X361941Y71992D02*Y71008D01*

-X356823Y65992D02*Y65008D01*

-X361941Y65992D02*Y65008D01*

-G54D188*X374548Y51413D02*X375334D01*

-X381536Y48755D02*Y43245D01*

-X393346Y48755D02*Y43245D01*

-X374548Y58499D02*X375334D01*

-X381898Y58893D02*Y58107D01*

-X388984Y58893D02*Y58107D01*

-G54D191*X356941Y84728D02*Y78429D01*

-X361941Y84728D02*Y78429D01*

-G54D188*X370398Y66393D02*Y65607D01*

-X377484Y66393D02*Y65607D01*

-X384398Y66893D02*Y66107D01*

-X391484Y66893D02*Y66107D01*

-G54D191*X366941Y84728D02*Y78429D01*

-X371941Y84728D02*Y78429D01*

-X376941Y84728D02*Y78429D01*

-X381941Y84728D02*Y78429D01*

-X386941Y84728D02*Y78429D01*

-G54D190*X397449Y79381D02*X398433D01*

-X397449Y84499D02*X398433D01*

-X394949Y188441D02*X395933D01*

-X394949Y193559D02*X395933D01*

-G54D192*X394397Y203689D02*Y199083D01*

-X376485Y203689D02*Y199083D01*

-X379044Y203689D02*Y199083D01*

-X381603Y203689D02*Y199083D01*

-X384162Y203689D02*Y199083D01*

-X386720Y203689D02*Y199083D01*

-X389279Y203689D02*Y199083D01*

-X391838Y203689D02*Y199083D01*

-G54D190*X392643Y247056D02*X393627D01*

-X392643Y252174D02*X393627D01*

-G54D192*X394397Y226917D02*Y222311D01*

-X391838Y226917D02*Y222311D01*

-X389279Y226917D02*Y222311D01*

-X386720Y226917D02*Y222311D01*

-X384162Y226917D02*Y222311D01*

-X381603Y226917D02*Y222311D01*

-X379044Y226917D02*Y222311D01*

-X376485Y226917D02*Y222311D01*

-G54D190*X392949Y365941D02*X393933D01*

-X392949Y371059D02*X393933D01*

-G54D192*X394397Y344917D02*Y340311D01*

-X391838Y344917D02*Y340311D01*

-X389279Y344917D02*Y340311D01*

-X386720Y344917D02*Y340311D01*

-X389279Y321689D02*Y317083D01*

-X391838Y321689D02*Y317083D01*

-X394397Y321689D02*Y317083D01*

-X384162Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X386720Y321689D02*Y317083D01*

-X381603Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y344917D02*Y340311D01*

-X376485Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y321689D02*Y317083D01*

-G54D190*X392949Y306000D02*X393933D01*

-X392949Y311118D02*X393933D01*

-G54D188*X245312Y349893D02*Y349107D01*

-Y342893D02*Y342107D01*

-X245355Y356893D02*Y356107D01*

-X252398Y349893D02*Y349107D01*

-G54D190*X265957Y349992D02*Y349008D01*

-X260839Y349992D02*Y349008D01*

-G54D188*X245355Y335893D02*Y335107D01*

-X252441Y335893D02*Y335107D01*

-G54D190*X266000Y335992D02*Y335008D01*

-X260882Y335992D02*Y335008D01*

-X265957Y342992D02*Y342008D01*

-X260839Y342992D02*Y342008D01*

-G54D188*X252398Y342893D02*Y342107D01*

-G54D190*X266000Y356992D02*Y356008D01*

-X260882Y356992D02*Y356008D01*

-G54D188*X252441Y356893D02*Y356107D01*

-G54D190*X246335Y292732D02*X247319D01*

-G54D193*X148299Y292229D02*X148899D01*

-X148299Y284429D02*X148899D01*

-X156499Y288329D02*X157099D01*

-G54D189*X184799Y298829D02*X190799D01*

-X184799Y303829D02*X190799D01*

-G54D190*X197307Y303888D02*X198291D01*

-G54D189*X184799Y308829D02*X190799D01*

-X184799Y313829D02*X190799D01*

-X184799Y318829D02*X190799D01*

-G54D190*X197307Y318770D02*X198291D01*

-X197307Y298770D02*X198291D01*

-X168732Y356454D02*Y355470D01*

-X173850Y356454D02*Y355470D01*

-G54D189*X148799Y333829D02*X154799D01*

-X148799Y328829D02*X154799D01*

-X148799Y323829D02*X154799D01*

-X184799D02*X190799D01*

-X184799Y328829D02*X190799D01*

-X184799Y333829D02*X190799D01*

-G54D190*X197307Y323888D02*X198291D01*

-G54D189*X148799Y318829D02*X154799D01*

-X148799Y313829D02*X154799D01*

-X148799Y308829D02*X154799D01*

-X148799Y303829D02*X154799D01*

-X148799Y298829D02*X154799D01*

-G54D190*X140949Y334059D02*X141933D01*

-X140949Y328941D02*X141933D01*

-X140949Y323559D02*X141933D01*

-X140949Y318441D02*X141933D01*

-X141307Y303770D02*X142291D01*

-X141307Y308888D02*X142291D01*

-X246335Y297850D02*X247319D01*

-G54D194*X253106Y295592D02*X256504D01*

-G54D190*X269500Y310492D02*Y309508D01*

-X264382Y310492D02*Y309508D01*

-G54D194*X268381Y304963D02*Y301565D01*

-X266413Y304963D02*Y301565D01*

-X264444Y304963D02*Y301565D01*

-X262476Y304963D02*Y301565D01*

-X253106Y293624D02*X256504D01*

-X253106Y291655D02*X256504D01*

-X253106Y289687D02*X256504D01*

-X253106Y287718D02*X256504D01*

-X253106Y285750D02*X256504D01*

-X253106Y283781D02*X256504D01*

-G54D190*X296748Y247270D02*X297732D01*

-G54D188*X290048Y244914D02*X290834D01*

-G54D194*X292004Y260093D02*Y256695D01*

-G54D188*X170048Y248543D02*X170834D01*

-X170048Y241457D02*X170834D01*

-G54D190*X170949Y231882D02*X171933D01*

-X170949Y237000D02*X171933D01*

-G54D194*X274288Y260093D02*Y256695D01*

-X276256Y260093D02*Y256695D01*

-X278225Y260093D02*Y256695D01*

-X280193Y260093D02*Y256695D01*

-X282162Y260093D02*Y256695D01*

-X284130Y260093D02*Y256695D01*

-X286099Y260093D02*Y256695D01*

-X288067Y260093D02*Y256695D01*

-X290036Y260093D02*Y256695D01*

-G54D190*X243681Y261321D02*Y260337D01*

-G54D188*X239154Y268222D02*Y267436D01*

-X246240Y268222D02*Y267436D01*

-G54D194*X253106Y270002D02*X256504D01*

-X253106Y268033D02*X256504D01*

-X253106Y266065D02*X256504D01*

-G54D190*X248799Y261321D02*Y260337D01*

-G54D194*X262477Y260093D02*Y256695D01*

-X264445Y260093D02*Y256695D01*

-X266414Y260093D02*Y256695D01*

-X268382Y260093D02*Y256695D01*

-X270351Y260093D02*Y256695D01*

-X272319Y260093D02*Y256695D01*

-G54D195*X124831Y309514D02*X128768D01*

-X124831Y289829D02*X128768D01*

-G54D188*X104816Y243370D02*X110326D01*

-X104816Y231560D02*X110326D01*

-X116816Y243370D02*X122326D01*

-X116816Y231560D02*X122326D01*

-G54D191*X130941Y231228D02*Y224929D01*

-X135941Y231228D02*Y224929D01*

-X140941Y231228D02*Y224929D01*

-G54D187*X145941Y264693D02*Y251307D01*

-G54D188*X95548Y204457D02*X96334D01*

-X95548Y211543D02*X96334D01*

-G54D190*X102449Y216559D02*X103433D01*

-X102449Y211441D02*X103433D01*

-G54D188*X150984Y212893D02*Y212107D01*

-G54D191*X145941Y231228D02*Y224929D01*

-G54D190*X146000Y218992D02*Y218008D01*

-G54D188*X145036Y198755D02*Y193245D01*

-G54D191*X150941Y231228D02*Y224929D01*

-X155941Y231228D02*Y224929D01*

-X160941Y231228D02*Y224929D01*

-G54D190*X140882Y218992D02*Y218008D01*

-X130453Y217862D02*Y216878D01*

-X135571Y217862D02*Y216878D01*

-X130453Y211862D02*Y210878D01*

-X135571Y211862D02*Y210878D01*

-G54D188*X143898Y205893D02*Y205107D01*

-X150984Y205893D02*Y205107D01*

-X143898Y212893D02*Y212107D01*

-X156846Y198755D02*Y193245D01*

-X157398Y205893D02*Y205107D01*

-X164484Y205893D02*Y205107D01*

-X157485Y212763D02*Y211977D01*

-X164571Y212763D02*Y211977D01*

-G54D190*X189949Y124059D02*X190933D01*

-X189949Y118941D02*X190933D01*

-X195475Y112832D02*Y111848D01*

-X190357Y112832D02*Y111848D01*

-X189949Y130941D02*X190933D01*

-X189949Y136059D02*X190933D01*

-G54D189*X202441Y142500D02*X208941D01*

-X202441Y137500D02*X208941D01*

-X202441Y132500D02*X208941D01*

-G54D190*X195500Y141992D02*Y141008D01*

-X190382Y141992D02*Y141008D01*

-X113975Y141832D02*Y140848D01*

-X108857Y141832D02*Y140848D01*

-X102191Y140958D02*X103175D01*

-X102191Y146076D02*X103175D01*

-X108449Y130941D02*X109433D01*

-X108449Y136059D02*X109433D01*

-X102298Y131017D02*X103282D01*

-X102298Y136135D02*X103282D01*

-X155382Y112992D02*Y112008D01*

-G54D189*X141166Y112340D02*X147666D01*

-X141166Y117340D02*X147666D01*

-G54D190*X166166Y112568D02*X167150D01*

-X166166Y107450D02*X167150D01*

-X160500Y112992D02*Y112008D01*

-X159949Y130941D02*X160933D01*

-X159949Y136059D02*X160933D01*

-X159949Y124059D02*X160933D01*

-X159949Y118941D02*X160933D01*

-G54D189*X141166Y122340D02*X147666D01*

-X141166Y127340D02*X147666D01*

-X141166Y132340D02*X147666D01*

-X141166Y137340D02*X147666D01*

-X141166Y142340D02*X147666D01*

-G54D190*X137000Y148492D02*Y147508D01*

-X131882Y148492D02*Y147508D01*

-X155382Y141992D02*Y141008D01*

-X155416Y148497D02*Y147513D01*

-X160500Y141992D02*Y141008D01*

-X165483Y131219D02*X166467D01*

-X165483Y136337D02*X166467D01*

-X160534Y148497D02*Y147513D01*

-X165949Y124059D02*X166933D01*

-X165949Y118941D02*X166933D01*

-G54D189*X120666Y142340D02*X127166D01*

-X120666Y137340D02*X127166D01*

-X120666Y132340D02*X127166D01*

-X120666Y127340D02*X127166D01*

-X120666Y122340D02*X127166D01*

-X120666Y117340D02*X127166D01*

-X120666Y112340D02*X127166D01*

-G54D190*X114000Y112992D02*Y112008D01*

-X108882Y112992D02*Y112008D01*

-X101909Y113435D02*X102893D01*

-X101909Y108317D02*X102893D01*

-X108449Y124059D02*X109433D01*

-X108449Y118941D02*X109433D01*

-X101949Y124059D02*X102933D01*

-X101949Y118941D02*X102933D01*

-X241449Y130941D02*X242433D01*

-X241449Y136059D02*X242433D01*

-G54D189*X222941Y112500D02*X229441D01*

-X222941Y117500D02*X229441D01*

-X222941Y122500D02*X229441D01*

-X222941Y127500D02*X229441D01*

-X222941Y132500D02*X229441D01*

-X222941Y137500D02*X229441D01*

-X222941Y142500D02*X229441D01*

-G54D190*X219000Y148492D02*Y147508D01*

-X213882Y148492D02*Y147508D01*

-G54D189*X202441Y127500D02*X208941D01*

-X202441Y122500D02*X208941D01*

-X202441Y117500D02*X208941D01*

-X202441Y112500D02*X208941D01*

-G54D190*X236882Y112992D02*Y112008D01*

-X242000Y112992D02*Y112008D01*

-X241449Y124059D02*X242433D01*

-X241449Y118941D02*X242433D01*

-X305696Y110822D02*X306680D01*

-X305696Y115940D02*X306680D01*

-X304472Y136450D02*X305456D01*

-X304472Y141568D02*X305456D01*

-G54D189*X271438Y145822D02*X277938D01*

-X271438Y140822D02*X277938D01*

-X271438Y135822D02*X277938D01*

-X271438Y130822D02*X277938D01*

-G54D196*X295941Y342350D02*Y338450D01*

-X285941Y342350D02*Y338450D01*

-G54D190*X277449Y342559D02*X278433D01*

-X277449Y337441D02*X278433D01*

-G54D196*X295941Y317550D02*Y313650D01*

-G54D190*X303365Y324772D02*X304349D01*

-X303365Y319654D02*X304349D01*

-X307462Y295038D02*X308446D01*

-X307462Y300156D02*X308446D01*

-G54D194*X297976Y295593D02*X301374D01*

-G54D196*X285941Y317550D02*Y313650D01*

-G54D194*X292003Y304963D02*Y301565D01*

-X290035Y304963D02*Y301565D01*

-X288066Y304963D02*Y301565D01*

-X286098Y304963D02*Y301565D01*

-X284129Y304963D02*Y301565D01*

-X282161Y304963D02*Y301565D01*

-X297976Y293625D02*X301374D01*

-X280192Y304963D02*Y301565D01*

-X278224Y304963D02*Y301565D01*

-X276255Y304963D02*Y301565D01*

-X274287Y304963D02*Y301565D01*

-X272318Y304963D02*Y301565D01*

-X270350Y304963D02*Y301565D01*

-X253106Y281813D02*X256504D01*

-X253106Y279844D02*X256504D01*

-X253106Y277876D02*X256504D01*

-X253106Y275907D02*X256504D01*

-X253106Y273939D02*X256504D01*

-X253106Y271970D02*X256504D01*

-G54D190*X296748Y252388D02*X297732D01*

-G54D188*X290048Y252000D02*X290834D01*

-G54D194*X297976Y266066D02*X301374D01*

-X297976Y268034D02*X301374D01*

-X297976Y270003D02*X301374D01*

-X297976Y271971D02*X301374D01*

-X297976Y273940D02*X301374D01*

-X297976Y275908D02*X301374D01*

-X297976Y277877D02*X301374D01*

-X297976Y279845D02*X301374D01*

-X297976Y281814D02*X301374D01*

-X297976Y283782D02*X301374D01*

-X297976Y285751D02*X301374D01*

-X297976Y287719D02*X301374D01*

-X297976Y289688D02*X301374D01*

-X297976Y291656D02*X301374D01*

-G54D179*X307716Y275075D03*

-X308992Y271971D03*

-X308872Y266522D03*

-X287917Y307829D03*

-X293902Y282263D03*

-X296779Y304963D03*

-X295937Y243628D03*

-X296727Y256227D03*

-X312157Y300156D03*

-X312122Y295038D03*

-X303365Y330000D03*

-X285430Y325000D03*

-X302941Y340007D03*

-X245557Y279508D03*

-X242456Y293543D03*

-X262750Y268772D03*

-X253101Y261836D03*

-G54D197*X246941Y238000D03*

-X242441Y229500D03*

-X246441D03*

-X250941D03*

-X260941Y191500D03*

-X245863Y191524D03*

-X269441Y198500D03*

-X269941Y231500D03*

-X251941Y210500D03*

-X243941Y202000D03*

-X253441Y102500D03*

-X231441Y148000D03*

-X309441Y141568D03*

-Y136450D03*

-X310941Y115940D03*

-X305696Y107500D03*

-X304584Y207483D03*

-X304706Y210583D03*

-X305280Y204383D03*

-G54D179*X254740Y298329D03*

-X242168Y298800D03*

-G54D197*X246731Y303031D03*

-G54D179*X269653Y298631D03*

-G54D197*X270441Y336000D03*

-Y342500D03*

-Y349500D03*

-G54D179*X268941Y314000D03*

-G54D197*X270441Y357000D03*

-G54D179*X273229Y298582D03*

-X278225Y279602D03*

-X278207Y298612D03*

-X277174Y308219D03*

-X277449Y347500D03*

-G54D197*X263441Y320000D03*

-X260568Y316997D03*

-X261502Y307367D03*

-X249101Y328793D03*

-X229818Y354988D03*

-G54D179*X266413Y296594D03*

-X263240Y295329D03*

-X262740Y291829D03*

-X260341Y284249D03*

-X264034Y282931D03*

-G54D197*X279441Y285000D03*

-G54D198*X386441Y163000D03*

-X400441Y194000D03*

-X389441Y184000D03*

-X400441Y189000D03*

-G54D197*X386023Y157813D03*

-X398441Y173000D03*

-G54D198*X393441Y208000D03*

-X384162Y188000D03*

-X458441Y195000D03*

-Y164000D03*

-X372441Y170386D03*

-G54D197*X377347Y162178D03*

-G54D198*X387441Y326000D03*

-X393441Y355000D03*

-X386720Y282000D03*

-X393441Y327000D03*

-X384162Y306000D03*

-X385941Y354500D03*

-X458441Y375000D03*

-X383662Y378500D03*

-X397441Y373000D03*

-X397941Y367441D03*

-G54D197*X385941Y366000D03*

-G54D198*X458441Y345000D03*

-Y315000D03*

-Y285000D03*

-X398441Y314000D03*

-Y309000D03*

-G54D197*Y291000D03*

-G54D198*X372441Y290689D03*

-Y351189D03*

-G54D197*X339837Y341827D03*

-X353390Y339521D03*

-G54D198*X375441Y235000D03*

-G54D197*X356441Y233000D03*

-X338441Y224192D03*

-Y230124D03*

-X337441Y163000D03*

-X358941Y208500D03*

-G54D198*X384512Y258000D03*

-G54D197*X371602Y260228D03*

-G54D198*X458441Y254000D03*

-Y225000D03*

-X387070Y235000D03*

-X398441Y248000D03*

-Y253000D03*

-G54D197*X396441Y235000D03*

-X392188Y239000D03*

-X388207Y247280D03*

-G54D179*X239302Y262235D03*

-G54D197*X245441Y127500D03*

-X235941Y133000D03*

-X236441Y235500D03*

-X202441Y212500D03*

-X210441D03*

-X220441Y215000D03*

-X224941Y220500D03*

-X225441Y226500D03*

-X224941Y235500D03*

-X224441Y244000D03*

-X212941Y238000D03*

-X203941Y237500D03*

-X193941Y237000D03*

-X181941Y258500D03*

-X183941Y104000D03*

-X112222Y127340D03*

-X114441Y121500D03*

-X115441Y132500D03*

-X101941Y104500D03*

-X166441Y104000D03*

-X127941Y148000D03*

-X106441Y148500D03*

-X149941Y149000D03*

-X138925Y206113D03*

-X138872Y202030D03*

-X138925Y197841D03*

-X161941Y199000D03*

-X166941Y197500D03*

-X138925Y192698D03*

-X161941Y193000D03*

-X166941D03*

-X163941Y127500D03*

-X193390D03*

-X152441Y121500D03*

-X151941Y132000D03*

-X195441Y133000D03*

-X141441Y148000D03*

-X208941D03*

-X223941D03*

-X198441Y122500D03*

-X234441D03*

-X221884Y254000D03*

-X224441Y252000D03*

-X225441Y249000D03*

-X230441Y247000D03*

-X219441Y272500D03*

-X230441Y293000D03*

-X220729Y265580D03*

-X220441Y259500D03*

-X218441Y261500D03*

-X217441Y279000D03*

-X240391Y278564D03*

-X128941Y274500D03*

-Y268500D03*

-Y262500D03*

-Y255000D03*

-Y248500D03*

-Y242500D03*

-X104441Y204500D03*

-X100941D03*

-X141307Y300883D03*

-X124831Y302385D03*

-X158441Y323829D03*

-Y328829D03*

-Y326500D03*

-X153941Y338000D03*

-X154941Y345500D03*

-X135441Y338500D03*

-Y335000D03*

-X139941Y338000D03*

-X111941Y334000D03*

-X117941D03*

-X126441D03*

-X142441Y357500D03*

-Y349500D03*

-X149441D03*

-X126441Y340500D03*

-X111941Y341000D03*

-Y357500D03*

-X121941D03*

-X130941D03*

-X197441Y314500D03*

-Y308500D03*

-X198441Y262500D03*

-Y269500D03*

-X205441Y277000D03*

-X195441Y311500D03*

-X191363Y344449D03*

-X178887Y342818D03*

-X168732Y350833D03*

-X162441Y242500D03*

-X165941Y231000D03*

-Y226500D03*

-X185441Y228000D03*

-X177441D03*

-X162441Y248500D03*

-X161941Y255000D03*

-X162441Y262500D03*

-X162941Y268500D03*

-Y274500D03*

-X165941Y220500D03*

-X169441Y214000D03*

-Y208500D03*

-Y201500D03*

-X177441Y217500D03*

-X185441D03*

-X193941Y212500D03*

-G54D198*X432324Y111000D03*

-X446441Y102000D03*

-X434882Y75000D03*

-G54D199*X440941Y123000D03*

-G54D198*X423441Y75000D03*

-G54D197*X434449Y56500D03*

-X440449D03*

-X354941Y93499D03*

-Y97999D03*

-Y103999D03*

-Y109999D03*

-Y115999D03*

-Y121999D03*

-Y127999D03*

-X387941D03*

-Y121999D03*

-Y115999D03*

-Y109999D03*

-Y97999D03*

-Y93499D03*

-Y103999D03*

-X391441Y84499D03*

-Y79999D03*

-X391941Y74499D03*

-X395441Y66999D03*

-X394441Y59999D03*

-X392941Y53499D03*

-X368941Y48500D03*

-Y43500D03*

-X374941D03*

-Y47000D03*

-G54D177*G54D197*G54D177*G54D197*G54D177*G54D197*G54D177*G54D197*G54D177*G54D197*G54D177*G54D197*G54D177*G54D197*G54D177*G54D197*G54D177*G54D197*G54D200*G54D197*G54D177*G54D180*G54D201*G54D202*G54D201*G54D203*G54D186*G54D203*G54D180*G54D201*G54D180*G54D201*G54D203*G54D180*G54D203*M02*

diff --git a/bbb_cape/schematic/gerbers/20140117/cape.topmask.gbr b/bbb_cape/schematic/gerbers/20140117/cape.topmask.gbr
deleted file mode 100644
index 792350c..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.topmask.gbr
+++ /dev/null
@@ -1,775 +0,0 @@
-G04 start of page 8 for group -4063 idx -4063 *

-G04 Title: 971 BBB Cape, componentmask *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Sun Jan 19 01:17:08 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNTOPMASK*%

-%ADD291R,0.0808X0.0808*%

-%ADD290R,0.0987X0.0987*%

-%ADD289R,0.0140X0.0140*%

-%ADD288R,0.0400X0.0400*%

-%ADD287R,0.0230X0.0230*%

-%ADD286R,0.0410X0.0410*%

-%ADD285R,0.0355X0.0355*%

-%ADD284R,0.0300X0.0300*%

-%ADD283R,0.0572X0.0572*%

-%ADD282R,0.2166X0.2166*%

-%ADD281C,0.2500*%

-%ADD280C,0.0860*%

-%ADD279C,0.2400*%

-%ADD278C,0.1890*%

-%ADD277C,0.0001*%

-%ADD276C,0.0710*%

-%ADD275C,0.0250*%

-%ADD274C,0.0080*%

-G54D274*X68000Y42000D02*Y244000D01*

-X74500Y250500D02*X101000D01*

-X107500Y256000D02*Y312500D01*

-X101000Y319000D02*X74500D01*

-X68000Y325500D02*Y393300D01*

-X484600D02*Y42000D01*

-X479100Y35500D02*X73500D01*

-G54D275*X189949Y136059D02*X189890Y136000D01*

-G54D274*X74500Y399800D02*X478100D01*

-X74500Y35500D02*G75*G02X68000Y42000I0J6500D01*G01*

-Y244000D02*G75*G02X74500Y250500I6500J0D01*G01*

-X107500Y257000D02*G75*G02X101000Y250500I-6500J0D01*G01*

-Y319000D02*G75*G02X107500Y312500I0J-6500D01*G01*

-X74500Y319000D02*G75*G02X68000Y325500I0J6500D01*G01*

-X478100Y399800D02*G75*G02X484600Y393300I0J-6500D01*G01*

-Y42000D02*G75*G02X478100Y35500I-6500J0D01*G01*

-X68000Y393300D02*G75*G02X74500Y399800I6500J0D01*G01*

-G54D276*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D277*G36*

-X403450Y357550D02*Y350450D01*

-X410550D01*

-Y357550D01*

-X403450D01*

-G37*

-G54D278*X345799Y357329D03*

-G54D279*X315799Y337329D03*

-G54D278*X85799Y369829D03*

-G54D280*X105799Y374829D03*

-G54D277*G36*

-X101499Y369129D02*Y360529D01*

-X110099D01*

-Y369129D01*

-X101499D01*

-G37*

-G54D280*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-G54D281*X93299Y342329D03*

-G54D280*X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D277*G36*

-X449950Y267550D02*Y260450D01*

-X457050D01*

-Y267550D01*

-X449950D01*

-G37*

-G36*

-Y207550D02*Y200450D01*

-X457050D01*

-Y207550D01*

-X449950D01*

-G37*

-G36*

-Y177550D02*Y170450D01*

-X457050D01*

-Y177550D01*

-X449950D01*

-G37*

-G54D276*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D277*G36*

-X449950Y237550D02*Y230450D01*

-X457050D01*

-Y237550D01*

-X449950D01*

-G37*

-G54D276*X463500Y234000D03*

-X473500D03*

-G54D277*G36*

-X449950Y147550D02*Y140450D01*

-X457050D01*

-Y147550D01*

-X449950D01*

-G37*

-G36*

-Y117550D02*Y110450D01*

-X457050D01*

-Y117550D01*

-X449950D01*

-G37*

-G36*

-Y87550D02*Y80450D01*

-X457050D01*

-Y87550D01*

-X449950D01*

-G37*

-G36*

-Y57550D02*Y50450D01*

-X457050D01*

-Y57550D01*

-X449950D01*

-G37*

-G54D276*X463500Y54000D03*

-X473500D03*

-G54D277*G36*

-X449950Y327550D02*Y320450D01*

-X457050D01*

-Y327550D01*

-X449950D01*

-G37*

-G54D276*X463500Y324000D03*

-X473500D03*

-G54D277*G36*

-X449950Y297550D02*Y290450D01*

-X457050D01*

-Y297550D01*

-X449950D01*

-G37*

-G54D276*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D277*G36*

-X308891Y252550D02*Y245450D01*

-X315991D01*

-Y252550D01*

-X308891D01*

-G37*

-G54D276*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D278*X345799Y192329D03*

-G54D277*G36*

-X449950Y387550D02*Y380450D01*

-X457050D01*

-Y387550D01*

-X449950D01*

-G37*

-G54D276*X463500Y384000D03*

-X473500D03*

-G54D277*G36*

-X403450Y387550D02*Y380450D01*

-X410550D01*

-Y387550D01*

-X403450D01*

-G37*

-G36*

-Y297550D02*Y290450D01*

-X410550D01*

-Y297550D01*

-X403450D01*

-G37*

-G36*

-Y327550D02*Y320450D01*

-X410550D01*

-Y327550D01*

-X403450D01*

-G37*

-G54D276*X417000Y324000D03*

-X427000D03*

-G54D277*G36*

-X449950Y357550D02*Y350450D01*

-X457050D01*

-Y357550D01*

-X449950D01*

-G37*

-G54D276*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D277*G36*

-X403450Y177550D02*Y170450D01*

-X410550D01*

-Y177550D01*

-X403450D01*

-G37*

-G36*

-Y207550D02*Y200450D01*

-X410550D01*

-Y207550D01*

-X403450D01*

-G37*

-G36*

-Y237550D02*Y230450D01*

-X410550D01*

-Y237550D01*

-X403450D01*

-G37*

-G36*

-Y267550D02*Y260450D01*

-X410550D01*

-Y267550D01*

-X403450D01*

-G37*

-G54D276*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D277*G36*

-X201891Y51050D02*Y43950D01*

-X208991D01*

-Y51050D01*

-X201891D01*

-G37*

-G54D276*X205441Y57500D03*

-Y67500D03*

-G54D277*G36*

-X231891Y51050D02*Y43950D01*

-X238991D01*

-Y51050D01*

-X231891D01*

-G37*

-G54D276*X235441Y57500D03*

-Y67500D03*

-G54D277*G36*

-X261891Y51050D02*Y43950D01*

-X268991D01*

-Y51050D01*

-X261891D01*

-G37*

-G36*

-X171891D02*Y43950D01*

-X178991D01*

-Y51050D01*

-X171891D01*

-G37*

-G36*

-X141891D02*Y43950D01*

-X148991D01*

-Y51050D01*

-X141891D01*

-G37*

-G36*

-X111891D02*Y43950D01*

-X118991D01*

-Y51050D01*

-X111891D01*

-G37*

-G36*

-X81891D02*Y43950D01*

-X88991D01*

-Y51050D01*

-X81891D01*

-G37*

-G54D276*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D277*G36*

-X291891Y51050D02*Y43950D01*

-X298991D01*

-Y51050D01*

-X291891D01*

-G37*

-G54D276*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D278*X85799Y179829D03*

-G54D280*X105799Y184829D03*

-G54D277*G36*

-X101499Y179129D02*Y170529D01*

-X110099D01*

-Y179129D01*

-X101499D01*

-G37*

-G54D280*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D277*G36*

-X81891Y243550D02*Y236450D01*

-X88991D01*

-Y243550D01*

-X81891D01*

-G37*

-G54D276*X85441Y230000D03*

-Y220000D03*

-G54D280*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D277*G36*

-X191499Y201629D02*Y193029D01*

-X200099D01*

-Y201629D01*

-X191499D01*

-G37*

-G54D280*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D282*X371941Y118193D02*Y104807D01*

-G54D283*X397548Y98042D02*X398334D01*

-G54D284*X271438Y125822D02*X277938D01*

-X291938D02*X298438D01*

-X291938Y130822D02*X298438D01*

-X291938Y135822D02*X298438D01*

-X291938Y140822D02*X298438D01*

-X291938Y145822D02*X298438D01*

-X271438Y120822D02*X277938D01*

-X271438Y115822D02*X277938D01*

-X271438Y110822D02*X277938D01*

-X291938D02*X298438D01*

-X291938Y115822D02*X298438D01*

-X291938Y120822D02*X298438D01*

-G54D285*X235941Y141992D02*Y141008D01*

-X241059Y141992D02*Y141008D01*

-X241073Y148246D02*Y147262D01*

-X235955Y148246D02*Y147262D01*

-X247516Y131149D02*X248500D01*

-X247516Y136267D02*X248500D01*

-X247949Y124059D02*X248933D01*

-X247949Y118941D02*X248933D01*

-X247949Y107559D02*X248933D01*

-X247949Y102441D02*X248933D01*

-X183949Y124059D02*X184933D01*

-X183949Y118941D02*X184933D01*

-X183949Y113059D02*X184933D01*

-X183949Y107941D02*X184933D01*

-X184491Y130953D02*X185475D01*

-X184491Y136071D02*X185475D01*

-X197000Y148838D02*Y147854D01*

-X202118Y148838D02*Y147854D01*

-X432000Y70492D02*Y69508D01*

-X426882Y70492D02*Y69508D01*

-G54D283*X340186Y98404D02*X345696D01*

-X340186Y86594D02*X345696D01*

-X327186D02*X332696D01*

-X397548Y90956D02*X398334D01*

-X327186Y98404D02*X332696D01*

-G54D285*X372000Y72491D02*Y71507D01*

-X366882Y72491D02*Y71507D01*

-X356823Y71992D02*Y71008D01*

-X361941Y71992D02*Y71008D01*

-X356823Y65992D02*Y65008D01*

-X361941Y65992D02*Y65008D01*

-G54D283*X374548Y51413D02*X375334D01*

-X381536Y48755D02*Y43245D01*

-X393346Y48755D02*Y43245D01*

-X374548Y58499D02*X375334D01*

-X381898Y58893D02*Y58107D01*

-X388984Y58893D02*Y58107D01*

-G54D286*X356941Y84728D02*Y78429D01*

-X361941Y84728D02*Y78429D01*

-G54D283*X370398Y66393D02*Y65607D01*

-X377484Y66393D02*Y65607D01*

-X384398Y66893D02*Y66107D01*

-X391484Y66893D02*Y66107D01*

-G54D286*X366941Y84728D02*Y78429D01*

-X371941Y84728D02*Y78429D01*

-X376941Y84728D02*Y78429D01*

-X381941Y84728D02*Y78429D01*

-X386941Y84728D02*Y78429D01*

-G54D285*X397449Y79381D02*X398433D01*

-X397449Y84499D02*X398433D01*

-X394949Y188441D02*X395933D01*

-X394949Y193559D02*X395933D01*

-G54D287*X394397Y203689D02*Y199083D01*

-X376485Y203689D02*Y199083D01*

-X379044Y203689D02*Y199083D01*

-X381603Y203689D02*Y199083D01*

-X384162Y203689D02*Y199083D01*

-X386720Y203689D02*Y199083D01*

-X389279Y203689D02*Y199083D01*

-X391838Y203689D02*Y199083D01*

-G54D285*X392643Y247056D02*X393627D01*

-X392643Y252174D02*X393627D01*

-G54D287*X394397Y226917D02*Y222311D01*

-X391838Y226917D02*Y222311D01*

-X389279Y226917D02*Y222311D01*

-X386720Y226917D02*Y222311D01*

-X384162Y226917D02*Y222311D01*

-X381603Y226917D02*Y222311D01*

-X379044Y226917D02*Y222311D01*

-X376485Y226917D02*Y222311D01*

-G54D285*X392949Y365941D02*X393933D01*

-X392949Y371059D02*X393933D01*

-G54D287*X394397Y344917D02*Y340311D01*

-X391838Y344917D02*Y340311D01*

-X389279Y344917D02*Y340311D01*

-X386720Y344917D02*Y340311D01*

-X389279Y321689D02*Y317083D01*

-X391838Y321689D02*Y317083D01*

-X394397Y321689D02*Y317083D01*

-X384162Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X386720Y321689D02*Y317083D01*

-X381603Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y344917D02*Y340311D01*

-X376485Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y321689D02*Y317083D01*

-G54D285*X392949Y306000D02*X393933D01*

-X392949Y311118D02*X393933D01*

-G54D283*X245312Y349893D02*Y349107D01*

-Y342893D02*Y342107D01*

-X245355Y356893D02*Y356107D01*

-X252398Y349893D02*Y349107D01*

-G54D285*X265957Y349992D02*Y349008D01*

-X260839Y349992D02*Y349008D01*

-G54D283*X245355Y335893D02*Y335107D01*

-X252441Y335893D02*Y335107D01*

-G54D285*X266000Y335992D02*Y335008D01*

-X260882Y335992D02*Y335008D01*

-X265957Y342992D02*Y342008D01*

-X260839Y342992D02*Y342008D01*

-G54D283*X252398Y342893D02*Y342107D01*

-G54D285*X266000Y356992D02*Y356008D01*

-X260882Y356992D02*Y356008D01*

-G54D283*X252441Y356893D02*Y356107D01*

-G54D285*X246335Y292732D02*X247319D01*

-G54D288*X148299Y292229D02*X148899D01*

-X148299Y284429D02*X148899D01*

-X156499Y288329D02*X157099D01*

-G54D284*X184799Y298829D02*X190799D01*

-X184799Y303829D02*X190799D01*

-G54D285*X197307Y303888D02*X198291D01*

-G54D284*X184799Y308829D02*X190799D01*

-X184799Y313829D02*X190799D01*

-X184799Y318829D02*X190799D01*

-G54D285*X197307Y318770D02*X198291D01*

-X197307Y298770D02*X198291D01*

-X168732Y356454D02*Y355470D01*

-X173850Y356454D02*Y355470D01*

-G54D284*X148799Y333829D02*X154799D01*

-X148799Y328829D02*X154799D01*

-X148799Y323829D02*X154799D01*

-X184799D02*X190799D01*

-X184799Y328829D02*X190799D01*

-X184799Y333829D02*X190799D01*

-G54D285*X197307Y323888D02*X198291D01*

-G54D284*X148799Y318829D02*X154799D01*

-X148799Y313829D02*X154799D01*

-X148799Y308829D02*X154799D01*

-X148799Y303829D02*X154799D01*

-X148799Y298829D02*X154799D01*

-G54D285*X140949Y334059D02*X141933D01*

-X140949Y328941D02*X141933D01*

-X140949Y323559D02*X141933D01*

-X140949Y318441D02*X141933D01*

-X141307Y303770D02*X142291D01*

-X141307Y308888D02*X142291D01*

-X246335Y297850D02*X247319D01*

-G54D289*X253106Y295592D02*X256504D01*

-G54D285*X269500Y310492D02*Y309508D01*

-X264382Y310492D02*Y309508D01*

-G54D289*X268381Y304963D02*Y301565D01*

-X266413Y304963D02*Y301565D01*

-X264444Y304963D02*Y301565D01*

-X262476Y304963D02*Y301565D01*

-X253106Y293624D02*X256504D01*

-X253106Y291655D02*X256504D01*

-X253106Y289687D02*X256504D01*

-X253106Y287718D02*X256504D01*

-X253106Y285750D02*X256504D01*

-X253106Y283781D02*X256504D01*

-G54D285*X296748Y247270D02*X297732D01*

-G54D283*X290048Y244914D02*X290834D01*

-G54D289*X292004Y260093D02*Y256695D01*

-G54D283*X170048Y248543D02*X170834D01*

-X170048Y241457D02*X170834D01*

-G54D285*X170949Y231882D02*X171933D01*

-X170949Y237000D02*X171933D01*

-G54D289*X274288Y260093D02*Y256695D01*

-X276256Y260093D02*Y256695D01*

-X278225Y260093D02*Y256695D01*

-X280193Y260093D02*Y256695D01*

-X282162Y260093D02*Y256695D01*

-X284130Y260093D02*Y256695D01*

-X286099Y260093D02*Y256695D01*

-X288067Y260093D02*Y256695D01*

-X290036Y260093D02*Y256695D01*

-G54D285*X243681Y261321D02*Y260337D01*

-G54D283*X239154Y268222D02*Y267436D01*

-X246240Y268222D02*Y267436D01*

-G54D289*X253106Y270002D02*X256504D01*

-X253106Y268033D02*X256504D01*

-X253106Y266065D02*X256504D01*

-G54D285*X248799Y261321D02*Y260337D01*

-G54D289*X262477Y260093D02*Y256695D01*

-X264445Y260093D02*Y256695D01*

-X266414Y260093D02*Y256695D01*

-X268382Y260093D02*Y256695D01*

-X270351Y260093D02*Y256695D01*

-X272319Y260093D02*Y256695D01*

-G54D290*X124831Y309514D02*X128768D01*

-X124831Y289829D02*X128768D01*

-G54D283*X104816Y243370D02*X110326D01*

-X104816Y231560D02*X110326D01*

-X116816Y243370D02*X122326D01*

-X116816Y231560D02*X122326D01*

-G54D286*X130941Y231228D02*Y224929D01*

-X135941Y231228D02*Y224929D01*

-X140941Y231228D02*Y224929D01*

-G54D282*X145941Y264693D02*Y251307D01*

-G54D283*X95548Y204457D02*X96334D01*

-X95548Y211543D02*X96334D01*

-G54D285*X102449Y216559D02*X103433D01*

-X102449Y211441D02*X103433D01*

-G54D283*X150984Y212893D02*Y212107D01*

-G54D286*X145941Y231228D02*Y224929D01*

-G54D285*X146000Y218992D02*Y218008D01*

-G54D283*X145036Y198755D02*Y193245D01*

-G54D286*X150941Y231228D02*Y224929D01*

-X155941Y231228D02*Y224929D01*

-X160941Y231228D02*Y224929D01*

-G54D285*X140882Y218992D02*Y218008D01*

-X130453Y217862D02*Y216878D01*

-X135571Y217862D02*Y216878D01*

-X130453Y211862D02*Y210878D01*

-X135571Y211862D02*Y210878D01*

-G54D283*X143898Y205893D02*Y205107D01*

-X150984Y205893D02*Y205107D01*

-X143898Y212893D02*Y212107D01*

-X156846Y198755D02*Y193245D01*

-X157398Y205893D02*Y205107D01*

-X164484Y205893D02*Y205107D01*

-X157485Y212763D02*Y211977D01*

-X164571Y212763D02*Y211977D01*

-G54D285*X189949Y124059D02*X190933D01*

-X189949Y118941D02*X190933D01*

-X195475Y112832D02*Y111848D01*

-X190357Y112832D02*Y111848D01*

-X189949Y130941D02*X190933D01*

-X189949Y136059D02*X190933D01*

-G54D284*X202441Y142500D02*X208941D01*

-X202441Y137500D02*X208941D01*

-X202441Y132500D02*X208941D01*

-G54D285*X195500Y141992D02*Y141008D01*

-X190382Y141992D02*Y141008D01*

-X113975Y141832D02*Y140848D01*

-X108857Y141832D02*Y140848D01*

-X102191Y140958D02*X103175D01*

-X102191Y146076D02*X103175D01*

-X108449Y130941D02*X109433D01*

-X108449Y136059D02*X109433D01*

-X102298Y131017D02*X103282D01*

-X102298Y136135D02*X103282D01*

-X155382Y112992D02*Y112008D01*

-G54D284*X141166Y112340D02*X147666D01*

-X141166Y117340D02*X147666D01*

-G54D285*X166166Y112568D02*X167150D01*

-X166166Y107450D02*X167150D01*

-X160500Y112992D02*Y112008D01*

-X159949Y130941D02*X160933D01*

-X159949Y136059D02*X160933D01*

-X159949Y124059D02*X160933D01*

-X159949Y118941D02*X160933D01*

-G54D284*X141166Y122340D02*X147666D01*

-X141166Y127340D02*X147666D01*

-X141166Y132340D02*X147666D01*

-X141166Y137340D02*X147666D01*

-X141166Y142340D02*X147666D01*

-G54D285*X137000Y148492D02*Y147508D01*

-X131882Y148492D02*Y147508D01*

-X155382Y141992D02*Y141008D01*

-X155416Y148497D02*Y147513D01*

-X160500Y141992D02*Y141008D01*

-X165483Y131219D02*X166467D01*

-X165483Y136337D02*X166467D01*

-X160534Y148497D02*Y147513D01*

-X165949Y124059D02*X166933D01*

-X165949Y118941D02*X166933D01*

-G54D284*X120666Y142340D02*X127166D01*

-X120666Y137340D02*X127166D01*

-X120666Y132340D02*X127166D01*

-X120666Y127340D02*X127166D01*

-X120666Y122340D02*X127166D01*

-X120666Y117340D02*X127166D01*

-X120666Y112340D02*X127166D01*

-G54D285*X114000Y112992D02*Y112008D01*

-X108882Y112992D02*Y112008D01*

-X101909Y113435D02*X102893D01*

-X101909Y108317D02*X102893D01*

-X108449Y124059D02*X109433D01*

-X108449Y118941D02*X109433D01*

-X101949Y124059D02*X102933D01*

-X101949Y118941D02*X102933D01*

-X241449Y130941D02*X242433D01*

-X241449Y136059D02*X242433D01*

-G54D284*X222941Y112500D02*X229441D01*

-X222941Y117500D02*X229441D01*

-X222941Y122500D02*X229441D01*

-X222941Y127500D02*X229441D01*

-X222941Y132500D02*X229441D01*

-X222941Y137500D02*X229441D01*

-X222941Y142500D02*X229441D01*

-G54D285*X219000Y148492D02*Y147508D01*

-X213882Y148492D02*Y147508D01*

-G54D284*X202441Y127500D02*X208941D01*

-X202441Y122500D02*X208941D01*

-X202441Y117500D02*X208941D01*

-X202441Y112500D02*X208941D01*

-G54D285*X236882Y112992D02*Y112008D01*

-X242000Y112992D02*Y112008D01*

-X241449Y124059D02*X242433D01*

-X241449Y118941D02*X242433D01*

-X305696Y110822D02*X306680D01*

-X305696Y115940D02*X306680D01*

-X304472Y136450D02*X305456D01*

-X304472Y141568D02*X305456D01*

-G54D284*X271438Y145822D02*X277938D01*

-X271438Y140822D02*X277938D01*

-X271438Y135822D02*X277938D01*

-X271438Y130822D02*X277938D01*

-G54D291*X295941Y342350D02*Y338450D01*

-X285941Y342350D02*Y338450D01*

-G54D285*X277449Y342559D02*X278433D01*

-X277449Y337441D02*X278433D01*

-G54D291*X295941Y317550D02*Y313650D01*

-G54D285*X303365Y324772D02*X304349D01*

-X303365Y319654D02*X304349D01*

-X307462Y295038D02*X308446D01*

-X307462Y300156D02*X308446D01*

-G54D289*X297976Y295593D02*X301374D01*

-G54D291*X285941Y317550D02*Y313650D01*

-G54D289*X292003Y304963D02*Y301565D01*

-X290035Y304963D02*Y301565D01*

-X288066Y304963D02*Y301565D01*

-X286098Y304963D02*Y301565D01*

-X284129Y304963D02*Y301565D01*

-X282161Y304963D02*Y301565D01*

-X297976Y293625D02*X301374D01*

-X280192Y304963D02*Y301565D01*

-X278224Y304963D02*Y301565D01*

-X276255Y304963D02*Y301565D01*

-X274287Y304963D02*Y301565D01*

-X272318Y304963D02*Y301565D01*

-X270350Y304963D02*Y301565D01*

-X253106Y281813D02*X256504D01*

-X253106Y279844D02*X256504D01*

-X253106Y277876D02*X256504D01*

-X253106Y275907D02*X256504D01*

-X253106Y273939D02*X256504D01*

-X253106Y271970D02*X256504D01*

-G54D285*X296748Y252388D02*X297732D01*

-G54D283*X290048Y252000D02*X290834D01*

-G54D289*X297976Y266066D02*X301374D01*

-X297976Y268034D02*X301374D01*

-X297976Y270003D02*X301374D01*

-X297976Y271971D02*X301374D01*

-X297976Y273940D02*X301374D01*

-X297976Y275908D02*X301374D01*

-X297976Y277877D02*X301374D01*

-X297976Y279845D02*X301374D01*

-X297976Y281814D02*X301374D01*

-X297976Y283782D02*X301374D01*

-X297976Y285751D02*X301374D01*

-X297976Y287719D02*X301374D01*

-X297976Y289688D02*X301374D01*

-X297976Y291656D02*X301374D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140117/cape.toppaste.gbr b/bbb_cape/schematic/gerbers/20140117/cape.toppaste.gbr
deleted file mode 100644
index ba233fa..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.toppaste.gbr
+++ /dev/null
@@ -1,383 +0,0 @@
-G04 start of page 12 for group -4015 idx -4015 *

-G04 Title: 971 BBB Cape, toppaste *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Sun Jan 19 01:17:08 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNTOPPASTE*%

-%ADD328R,0.0110X0.0110*%

-%ADD327R,0.2106X0.2106*%

-%ADD326R,0.0350X0.0350*%

-%ADD325R,0.0550X0.0550*%

-%ADD324R,0.0948X0.0948*%

-%ADD323R,0.0200X0.0200*%

-%ADD322R,0.0340X0.0340*%

-%ADD321R,0.0512X0.0512*%

-%ADD320R,0.0130X0.0130*%

-%ADD319R,0.0295X0.0295*%

-G54D319*X394949Y188441D02*X395933D01*

-X394949Y193559D02*X395933D01*

-X432000Y70492D02*Y69508D01*

-X426882Y70492D02*Y69508D01*

-X392643Y247056D02*X393627D01*

-X392643Y252174D02*X393627D01*

-X392949Y365941D02*X393933D01*

-X392949Y371059D02*X393933D01*

-X392949Y306000D02*X393933D01*

-X392949Y311118D02*X393933D01*

-G54D320*X394397Y226917D02*Y222311D01*

-X391838Y226917D02*Y222311D01*

-X389279Y226917D02*Y222311D01*

-X386720Y226917D02*Y222311D01*

-X384162Y226917D02*Y222311D01*

-X381603Y226917D02*Y222311D01*

-X379044Y226917D02*Y222311D01*

-X376485Y226917D02*Y222311D01*

-Y203689D02*Y199083D01*

-X379044Y203689D02*Y199083D01*

-X381603Y203689D02*Y199083D01*

-X384162Y203689D02*Y199083D01*

-X386720Y203689D02*Y199083D01*

-X389279Y203689D02*Y199083D01*

-X391838Y203689D02*Y199083D01*

-X394397Y203689D02*Y199083D01*

-G54D319*X296748Y247270D02*X297732D01*

-X296748Y252388D02*X297732D01*

-X243681Y261321D02*Y260337D01*

-X248799Y261321D02*Y260337D01*

-X246335Y297850D02*X247319D01*

-X246335Y292732D02*X247319D01*

-X269500Y310492D02*Y309508D01*

-X264382Y310492D02*Y309508D01*

-G54D321*X239154Y268222D02*Y267436D01*

-X246240Y268222D02*Y267436D01*

-X290048Y244914D02*X290834D01*

-X290048Y252000D02*X290834D01*

-G54D319*X168732Y356454D02*Y355470D01*

-X173850Y356454D02*Y355470D01*

-G54D322*X148299Y292229D02*X148899D01*

-X148299Y284429D02*X148899D01*

-X156499Y288329D02*X157099D01*

-G54D323*X148799Y333829D02*X154799D01*

-X148799Y328829D02*X154799D01*

-X148799Y323829D02*X154799D01*

-X148799Y318829D02*X154799D01*

-X148799Y313829D02*X154799D01*

-X148799Y308829D02*X154799D01*

-X148799Y303829D02*X154799D01*

-X148799Y298829D02*X154799D01*

-X184799D02*X190799D01*

-X184799Y303829D02*X190799D01*

-X184799Y308829D02*X190799D01*

-X184799Y313829D02*X190799D01*

-X184799Y318829D02*X190799D01*

-X184799Y323829D02*X190799D01*

-X184799Y328829D02*X190799D01*

-X184799Y333829D02*X190799D01*

-G54D319*X197307Y323888D02*X198291D01*

-X197307Y318770D02*X198291D01*

-X140949Y334059D02*X141933D01*

-X140949Y328941D02*X141933D01*

-X197307Y303888D02*X198291D01*

-X197307Y298770D02*X198291D01*

-X141307Y303770D02*X142291D01*

-X141307Y308888D02*X142291D01*

-G54D324*X124831Y309514D02*X128768D01*

-X124831Y289829D02*X128768D01*

-G54D325*X295941Y342350D02*Y338450D01*

-Y317550D02*Y313650D01*

-X285941Y317550D02*Y313650D01*

-Y342350D02*Y338450D01*

-G54D319*X303365Y324772D02*X304349D01*

-X303365Y319654D02*X304349D01*

-X277449Y342559D02*X278433D01*

-X277449Y337441D02*X278433D01*

-X307462Y295038D02*X308446D01*

-X307462Y300156D02*X308446D01*

-G54D321*X104816Y243370D02*X110326D01*

-X104816Y231560D02*X110326D01*

-X116816Y243370D02*X122326D01*

-X116816Y231560D02*X122326D01*

-G54D326*X130941Y231228D02*Y224929D01*

-X135941Y231228D02*Y224929D01*

-X140941Y231228D02*Y224929D01*

-X145941Y231228D02*Y224929D01*

-X150941Y231228D02*Y224929D01*

-X155941Y231228D02*Y224929D01*

-X160941Y231228D02*Y224929D01*

-G54D327*X145941Y264693D02*Y251307D01*

-G54D319*X146000Y218992D02*Y218008D01*

-X140882Y218992D02*Y218008D01*

-X130453Y217862D02*Y216878D01*

-X135571Y217862D02*Y216878D01*

-X130453Y211862D02*Y210878D01*

-X135571Y211862D02*Y210878D01*

-G54D321*X143898Y205893D02*Y205107D01*

-X150984Y205893D02*Y205107D01*

-G54D320*X394397Y344917D02*Y340311D01*

-X391838Y344917D02*Y340311D01*

-X389279Y344917D02*Y340311D01*

-X386720Y344917D02*Y340311D01*

-X384162Y344917D02*Y340311D01*

-X381603Y344917D02*Y340311D01*

-X379044Y344917D02*Y340311D01*

-X376485Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y321689D02*Y317083D01*

-X381603Y321689D02*Y317083D01*

-X384162Y321689D02*Y317083D01*

-X386720Y321689D02*Y317083D01*

-X389279Y321689D02*Y317083D01*

-X391838Y321689D02*Y317083D01*

-X394397Y321689D02*Y317083D01*

-G54D319*X241449Y130941D02*X242433D01*

-X241449Y136059D02*X242433D01*

-X219000Y148492D02*Y147508D01*

-X213882Y148492D02*Y147508D01*

-X189949Y130941D02*X190933D01*

-X189949Y136059D02*X190933D01*

-X189949Y124059D02*X190933D01*

-X189949Y118941D02*X190933D01*

-X236882Y112992D02*Y112008D01*

-X242000Y112992D02*Y112008D01*

-X241449Y124059D02*X242433D01*

-X241449Y118941D02*X242433D01*

-G54D323*X202441Y142500D02*X208941D01*

-X202441Y137500D02*X208941D01*

-X202441Y132500D02*X208941D01*

-X202441Y127500D02*X208941D01*

-X202441Y122500D02*X208941D01*

-X202441Y117500D02*X208941D01*

-X202441Y112500D02*X208941D01*

-X222941D02*X229441D01*

-X222941Y117500D02*X229441D01*

-X222941Y122500D02*X229441D01*

-X222941Y127500D02*X229441D01*

-X222941Y132500D02*X229441D01*

-X222941Y137500D02*X229441D01*

-X222941Y142500D02*X229441D01*

-G54D319*X195500Y141992D02*Y141008D01*

-X190382Y141992D02*Y141008D01*

-X195475Y112832D02*Y111848D01*

-X190357Y112832D02*Y111848D01*

-X113975Y141832D02*Y140848D01*

-X108857Y141832D02*Y140848D01*

-X155382Y112992D02*Y112008D01*

-X160500Y112992D02*Y112008D01*

-X108449Y130941D02*X109433D01*

-X108449Y136059D02*X109433D01*

-X159949Y130941D02*X160933D01*

-X159949Y136059D02*X160933D01*

-G54D323*X120666Y142340D02*X127166D01*

-X120666Y137340D02*X127166D01*

-X120666Y132340D02*X127166D01*

-X120666Y127340D02*X127166D01*

-X120666Y122340D02*X127166D01*

-X120666Y117340D02*X127166D01*

-X120666Y112340D02*X127166D01*

-X141166D02*X147666D01*

-X141166Y117340D02*X147666D01*

-X141166Y122340D02*X147666D01*

-X141166Y127340D02*X147666D01*

-X141166Y132340D02*X147666D01*

-X141166Y137340D02*X147666D01*

-X141166Y142340D02*X147666D01*

-G54D319*X114000Y112992D02*Y112008D01*

-X108882Y112992D02*Y112008D01*

-X108449Y124059D02*X109433D01*

-X108449Y118941D02*X109433D01*

-X159949Y124059D02*X160933D01*

-X159949Y118941D02*X160933D01*

-X155382Y141992D02*Y141008D01*

-X160500Y141992D02*Y141008D01*

-X305696Y110822D02*X306680D01*

-X305696Y115940D02*X306680D01*

-X304472Y136450D02*X305456D01*

-X304472Y141568D02*X305456D01*

-G54D323*X271438Y145822D02*X277938D01*

-X271438Y140822D02*X277938D01*

-X271438Y135822D02*X277938D01*

-X271438Y130822D02*X277938D01*

-X271438Y125822D02*X277938D01*

-X271438Y120822D02*X277938D01*

-X271438Y115822D02*X277938D01*

-X271438Y110822D02*X277938D01*

-X291938D02*X298438D01*

-X291938Y115822D02*X298438D01*

-X291938Y120822D02*X298438D01*

-X291938Y125822D02*X298438D01*

-X291938Y130822D02*X298438D01*

-X291938Y135822D02*X298438D01*

-X291938Y140822D02*X298438D01*

-X291938Y145822D02*X298438D01*

-G54D319*X140949Y323559D02*X141933D01*

-X140949Y318441D02*X141933D01*

-G54D321*X245312Y349893D02*Y349107D01*

-X252398Y349893D02*Y349107D01*

-X245355Y335893D02*Y335107D01*

-X252441Y335893D02*Y335107D01*

-G54D319*X266000Y335992D02*Y335008D01*

-X260882Y335992D02*Y335008D01*

-X265957Y342992D02*Y342008D01*

-X260839Y342992D02*Y342008D01*

-X265957Y349992D02*Y349008D01*

-X260839Y349992D02*Y349008D01*

-G54D321*X245312Y342893D02*Y342107D01*

-X252398Y342893D02*Y342107D01*

-G54D328*X292003Y304963D02*Y301565D01*

-X290035Y304963D02*Y301565D01*

-X288066Y304963D02*Y301565D01*

-X286098Y304963D02*Y301565D01*

-X284129Y304963D02*Y301565D01*

-X282161Y304963D02*Y301565D01*

-X280192Y304963D02*Y301565D01*

-X278224Y304963D02*Y301565D01*

-X276255Y304963D02*Y301565D01*

-X274287Y304963D02*Y301565D01*

-X272318Y304963D02*Y301565D01*

-X270350Y304963D02*Y301565D01*

-X268381Y304963D02*Y301565D01*

-X266413Y304963D02*Y301565D01*

-X264444Y304963D02*Y301565D01*

-X262476Y304963D02*Y301565D01*

-X253106Y295592D02*X256504D01*

-X253106Y293624D02*X256504D01*

-X253106Y291655D02*X256504D01*

-X253106Y289687D02*X256504D01*

-X253106Y287718D02*X256504D01*

-X253106Y285750D02*X256504D01*

-X253106Y283781D02*X256504D01*

-X253106Y281813D02*X256504D01*

-X253106Y279844D02*X256504D01*

-X253106Y277876D02*X256504D01*

-X253106Y275907D02*X256504D01*

-X253106Y273939D02*X256504D01*

-X253106Y271970D02*X256504D01*

-X253106Y270002D02*X256504D01*

-X253106Y268033D02*X256504D01*

-X253106Y266065D02*X256504D01*

-X262477Y260093D02*Y256695D01*

-X264445Y260093D02*Y256695D01*

-X266414Y260093D02*Y256695D01*

-X268382Y260093D02*Y256695D01*

-X270351Y260093D02*Y256695D01*

-X272319Y260093D02*Y256695D01*

-X274288Y260093D02*Y256695D01*

-X276256Y260093D02*Y256695D01*

-X278225Y260093D02*Y256695D01*

-X280193Y260093D02*Y256695D01*

-X282162Y260093D02*Y256695D01*

-X284130Y260093D02*Y256695D01*

-X286099Y260093D02*Y256695D01*

-X288067Y260093D02*Y256695D01*

-X290036Y260093D02*Y256695D01*

-X292004Y260093D02*Y256695D01*

-X297976Y266066D02*X301374D01*

-X297976Y268034D02*X301374D01*

-X297976Y270003D02*X301374D01*

-X297976Y271971D02*X301374D01*

-X297976Y273940D02*X301374D01*

-X297976Y275908D02*X301374D01*

-X297976Y277877D02*X301374D01*

-X297976Y279845D02*X301374D01*

-X297976Y281814D02*X301374D01*

-X297976Y283782D02*X301374D01*

-X297976Y285751D02*X301374D01*

-X297976Y287719D02*X301374D01*

-X297976Y289688D02*X301374D01*

-X297976Y291656D02*X301374D01*

-X297976Y293625D02*X301374D01*

-X297976Y295593D02*X301374D01*

-G54D319*X235941Y141992D02*Y141008D01*

-X241059Y141992D02*Y141008D01*

-G54D321*X95548Y204457D02*X96334D01*

-X95548Y211543D02*X96334D01*

-X170048Y248543D02*X170834D01*

-X170048Y241457D02*X170834D01*

-G54D319*X170949Y231882D02*X171933D01*

-X170949Y237000D02*X171933D01*

-X102449Y216559D02*X103433D01*

-X102449Y211441D02*X103433D01*

-X266000Y356992D02*Y356008D01*

-X260882Y356992D02*Y356008D01*

-G54D321*X245355Y356893D02*Y356107D01*

-X252441Y356893D02*Y356107D01*

-G54D319*X166166Y112568D02*X167150D01*

-X166166Y107450D02*X167150D01*

-X102191Y140958D02*X103175D01*

-X102191Y146076D02*X103175D01*

-X247516Y131149D02*X248500D01*

-X247516Y136267D02*X248500D01*

-X247949Y124059D02*X248933D01*

-X247949Y118941D02*X248933D01*

-X247949Y107559D02*X248933D01*

-X247949Y102441D02*X248933D01*

-X183949Y124059D02*X184933D01*

-X183949Y118941D02*X184933D01*

-G54D321*X145036Y198755D02*Y193245D01*

-X156846Y198755D02*Y193245D01*

-X157398Y205893D02*Y205107D01*

-X164484Y205893D02*Y205107D01*

-X143898Y212893D02*Y212107D01*

-X150984Y212893D02*Y212107D01*

-G54D319*X165483Y131219D02*X166467D01*

-X165483Y136337D02*X166467D01*

-X160534Y148497D02*Y147513D01*

-X155416Y148497D02*Y147513D01*

-X165949Y124059D02*X166933D01*

-X165949Y118941D02*X166933D01*

-X101949Y124059D02*X102933D01*

-X101949Y118941D02*X102933D01*

-X101909Y113435D02*X102893D01*

-X101909Y108317D02*X102893D01*

-X102298Y131017D02*X103282D01*

-X102298Y136135D02*X103282D01*

-X241073Y148246D02*Y147262D01*

-X235955Y148246D02*Y147262D01*

-X183949Y113059D02*X184933D01*

-X183949Y107941D02*X184933D01*

-X184491Y130953D02*X185475D01*

-X184491Y136071D02*X185475D01*

-X197000Y148838D02*Y147854D01*

-X202118Y148838D02*Y147854D01*

-G54D321*X157485Y212763D02*Y211977D01*

-X164571Y212763D02*Y211977D01*

-X340186Y98404D02*X345696D01*

-X340186Y86594D02*X345696D01*

-G54D319*X372000Y72491D02*Y71507D01*

-X366882Y72491D02*Y71507D01*

-X356823Y71992D02*Y71008D01*

-X361941Y71992D02*Y71008D01*

-X356823Y65992D02*Y65008D01*

-X361941Y65992D02*Y65008D01*

-G54D321*X374548Y51413D02*X375334D01*

-X374548Y58499D02*X375334D01*

-X327186Y98404D02*X332696D01*

-X327186Y86594D02*X332696D01*

-G54D326*X356941Y84728D02*Y78429D01*

-X361941Y84728D02*Y78429D01*

-X366941Y84728D02*Y78429D01*

-X371941Y84728D02*Y78429D01*

-X376941Y84728D02*Y78429D01*

-X381941Y84728D02*Y78429D01*

-X386941Y84728D02*Y78429D01*

-G54D327*X371941Y118193D02*Y104807D01*

-G54D321*X397548Y98042D02*X398334D01*

-X397548Y90956D02*X398334D01*

-G54D319*X397449Y79381D02*X398433D01*

-X397449Y84499D02*X398433D01*

-G54D321*X370398Y66393D02*Y65607D01*

-X377484Y66393D02*Y65607D01*

-X381536Y48755D02*Y43245D01*

-X393346Y48755D02*Y43245D01*

-X381898Y58893D02*Y58107D01*

-X388984Y58893D02*Y58107D01*

-X384398Y66893D02*Y66107D01*

-X391484Y66893D02*Y66107D01*

-G54D319*X137000Y148492D02*Y147508D01*

-X131882Y148492D02*Y147508D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140117/cape.topsilk.gbr b/bbb_cape/schematic/gerbers/20140117/cape.topsilk.gbr
deleted file mode 100644
index fb2db6b..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.topsilk.gbr
+++ /dev/null
@@ -1,1026 +0,0 @@
-G04 start of page 10 for group -4079 idx -4079 *

-G04 Title: 971 BBB Cape, topsilk *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Sun Jan 19 01:17:08 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNTOPSILK*%

-%ADD316C,0.0030*%

-%ADD315C,0.0080*%

-%ADD314C,0.0100*%

-%ADD313C,0.0070*%

-%ADD312C,0.0040*%

-%ADD311C,0.0042*%

-%ADD310C,0.0054*%

-%ADD309C,0.0072*%

-%ADD308C,0.0046*%

-%ADD307C,0.0060*%

-G54D307*X251441Y328500D02*X248941Y331000D01*

-X251441Y328500D02*X248941Y326000D01*

-Y331000D01*

-X251441Y328500D02*X257441D01*

-X251441Y332000D02*Y325000D01*

-X248941Y328500D02*X242441D01*

-X406441Y95000D02*X403941Y92500D01*

-X406441Y95000D02*X408941Y92500D01*

-X403941D02*X408941D01*

-X406441Y101000D02*Y95000D01*

-Y92500D02*Y86000D01*

-X402941Y95000D02*X409941D01*

-X178441Y244500D02*X175941Y242000D01*

-X178441Y244500D02*X180941Y242000D01*

-X175941D02*X180941D01*

-X178441Y250500D02*Y244500D01*

-Y242000D02*Y235500D01*

-X174941Y244500D02*X181941D01*

-X87941Y207000D02*X90441Y209500D01*

-X87941Y207000D02*X85441Y209500D01*

-X90441D01*

-X87941Y207000D02*Y201000D01*

-X84441Y207000D02*X91441D01*

-X87941Y209500D02*Y212500D01*

-G54D308*X444070Y52497D02*X443150Y53417D01*

-X447750D01*

-Y54222D02*Y52497D01*

-X444070Y55602D02*X443150Y56522D01*

-X447750D01*

-Y57327D02*Y55602D01*

-X444070Y81477D02*X443150Y82397D01*

-X447750D01*

-Y83202D02*Y81477D01*

-X447175Y84582D02*X447750Y85157D01*

-X443725Y84582D02*X447175D01*

-X443725D02*X443150Y85157D01*

-Y86307D02*Y85157D01*

-Y86307D02*X443725Y86882D01*

-X447175D01*

-X447750Y86307D02*X447175Y86882D01*

-X447750Y86307D02*Y85157D01*

-X446600Y84582D02*X444300Y86882D01*

-X447750Y113677D02*X445450Y115402D01*

-X443725D02*X445450D01*

-X443150Y114827D02*X443725Y115402D01*

-X443150Y114827D02*Y113677D01*

-X443725Y113102D02*X443150Y113677D01*

-X443725Y113102D02*X444875D01*

-X445450Y113677D01*

-Y115402D02*Y113677D01*

-X447175Y141622D02*X447750Y142197D01*

-X446255Y141622D02*X447175D01*

-X446255D02*X445450Y142427D01*

-Y143117D02*Y142427D01*

-Y143117D02*X446255Y143922D01*

-X447175D01*

-X447750Y143347D02*X447175Y143922D01*

-X447750Y143347D02*Y142197D01*

-X444645Y141622D02*X445450Y142427D01*

-X443725Y141622D02*X444645D01*

-X443725D02*X443150Y142197D01*

-Y143347D02*Y142197D01*

-Y143347D02*X443725Y143922D01*

-X444645D01*

-X445450Y143117D02*X444645Y143922D01*

-X447750Y174857D02*X443150Y177157D01*

-Y174282D01*

-Y205102D02*X443725Y205677D01*

-X443150Y205102D02*Y203952D01*

-X443725Y203377D02*X443150Y203952D01*

-X443725Y203377D02*X447175D01*

-X447750Y203952D01*

-X445220Y205102D02*X445795Y205677D01*

-X445220Y205102D02*Y203377D01*

-X447750Y205102D02*Y203952D01*

-Y205102D02*X447175Y205677D01*

-X445795D02*X447175D01*

-X443150Y234197D02*Y231897D01*

-X445450D01*

-X444875Y232472D01*

-Y233622D02*Y232472D01*

-Y233622D02*X445450Y234197D01*

-X447175D01*

-X447750Y233622D02*X447175Y234197D01*

-X447750Y233622D02*Y232472D01*

-X447175Y231897D02*X447750Y232472D01*

-X446025Y260417D02*X443150Y262717D01*

-X446025Y263292D02*Y260417D01*

-X443150Y262717D02*X447750D01*

-X443725Y291582D02*X443150Y292157D01*

-Y293307D02*Y292157D01*

-Y293307D02*X443725Y293882D01*

-X447750Y293307D02*X447175Y293882D01*

-X447750Y293307D02*Y292157D01*

-X447175Y291582D02*X447750Y292157D01*

-X445220Y293307D02*Y292157D01*

-X443725Y293882D02*X444645D01*

-X445795D02*X447175D01*

-X445795D02*X445220Y293307D01*

-X444645Y293882D02*X445220Y293307D01*

-X443725Y320102D02*X443150Y320677D01*

-Y322402D02*Y320677D01*

-Y322402D02*X443725Y322977D01*

-X444875D01*

-X447750Y320102D02*X444875Y322977D01*

-X447750D02*Y320102D01*

-X444070Y351267D02*X443150Y352187D01*

-X447750D01*

-Y352992D02*Y351267D01*

-X447175Y381282D02*X447750Y381857D01*

-X443725Y381282D02*X447175D01*

-X443725D02*X443150Y381857D01*

-Y383007D02*Y381857D01*

-Y383007D02*X443725Y383582D01*

-X447175D01*

-X447750Y383007D02*X447175Y383582D01*

-X447750Y383007D02*Y381857D01*

-X446600Y381282D02*X444300Y383582D01*

-G54D309*X408938Y134585D02*X412538D01*

-X424418D02*X428018D01*

-X426218Y136385D02*Y132785D01*

-X440798Y138185D02*Y130985D01*

-X443138Y138185D02*X444398Y136925D01*

-Y132245D01*

-X443138Y130985D02*X444398Y132245D01*

-X439898Y130985D02*X443138D01*

-X439898Y138185D02*X443138D01*

-G54D310*X404438Y150435D02*X407138D01*

-X413618D02*X416318D01*

-X414968Y151785D02*Y149085D01*

-X425228Y151785D02*Y147735D01*

-Y151785D02*X426173Y153135D01*

-X427658D01*

-X428603Y151785D01*

-Y147735D01*

-X425228Y150435D02*X428603D01*

-X435083Y147735D02*X437783D01*

-X438458Y148410D01*

-Y150030D02*Y148410D01*

-X437783Y150705D02*X438458Y150030D01*

-X435758Y150705D02*X437783D01*

-X435758Y153135D02*Y147735D01*

-X435083Y153135D02*X437783D01*

-X438458Y152460D01*

-Y151380D01*

-X437783Y150705D02*X438458Y151380D01*

-G54D311*X389250Y174022D02*X385050Y176122D01*

-Y173497D01*

-Y238072D02*Y235972D01*

-X387150D01*

-X386625Y236497D01*

-Y237547D02*Y236497D01*

-Y237547D02*X387150Y238072D01*

-X388725D01*

-X389250Y237547D02*X388725Y238072D01*

-X389250Y237547D02*Y236497D01*

-X388725Y235972D02*X389250Y236497D01*

-X387675Y265792D02*X385050Y267892D01*

-X387675Y268417D02*Y265792D01*

-X385050Y267892D02*X389250D01*

-X385575Y298027D02*X385050Y298552D01*

-Y299602D02*Y298552D01*

-Y299602D02*X385575Y300127D01*

-X389250Y299602D02*X388725Y300127D01*

-X389250Y299602D02*Y298552D01*

-X388725Y298027D02*X389250Y298552D01*

-X386940Y299602D02*Y298552D01*

-X385575Y300127D02*X386415D01*

-X387465D02*X388725D01*

-X387465D02*X386940Y299602D01*

-X386415Y300127D02*X386940Y299602D01*

-X385890Y359977D02*X385050Y360817D01*

-X389250D01*

-Y361552D02*Y359977D01*

-X388725Y389272D02*X389250Y389797D01*

-X385575Y389272D02*X388725D01*

-X385575D02*X385050Y389797D01*

-Y390847D02*Y389797D01*

-Y390847D02*X385575Y391372D01*

-X388725D01*

-X389250Y390847D02*X388725Y391372D01*

-X389250Y390847D02*Y389797D01*

-X388200Y389272D02*X386100Y391372D01*

-G54D312*X308438Y226485D02*X310438D01*

-X317538Y228485D02*Y224485D01*

-X318838Y228485D02*X319538Y227785D01*

-Y225185D01*

-X318838Y224485D02*X319538Y225185D01*

-X317038Y224485D02*X318838D01*

-X317038Y228485D02*X318838D01*

-X320738D02*X321738D01*

-X321238D02*Y224485D01*

-X320738D02*X321738D01*

-X322938Y227985D02*Y224985D01*

-Y227985D02*X323438Y228485D01*

-X324438D01*

-X324938Y227985D01*

-Y224985D01*

-X324438Y224485D02*X324938Y224985D01*

-X323438Y224485D02*X324438D01*

-X322938Y224985D02*X323438Y224485D01*

-X328638D02*X329938D01*

-X327938Y225185D02*X328638Y224485D01*

-X327938Y227785D02*Y225185D01*

-Y227785D02*X328638Y228485D01*

-X329938D01*

-X331138D02*Y224485D01*

-X333138D01*

-X334338Y228485D02*Y224485D01*

-Y226485D02*X336338Y228485D01*

-X334338Y226485D02*X336338Y224485D01*

-X339338Y228485D02*X341338D01*

-X341838Y227985D01*

-Y226985D01*

-X341338Y226485D02*X341838Y226985D01*

-X339838Y226485D02*X341338D01*

-X339838Y228485D02*Y224485D01*

-X340638Y226485D02*X341838Y224485D01*

-X345038Y228485D02*X345538Y227985D01*

-X343538Y228485D02*X345038D01*

-X343038Y227985D02*X343538Y228485D01*

-X343038Y227985D02*Y226985D01*

-X343538Y226485D01*

-X345038D01*

-X345538Y225985D01*

-Y224985D01*

-X345038Y224485D02*X345538Y224985D01*

-X343538Y224485D02*X345038D01*

-X343038Y224985D02*X343538Y224485D01*

-X346738Y228485D02*X348738D01*

-X347738D02*Y224485D01*

-X310438Y220485D02*X310938Y219985D01*

-X308938Y220485D02*X310438D01*

-X308438Y219985D02*X308938Y220485D01*

-X308438Y219985D02*Y218985D01*

-X308938Y218485D01*

-X310438D01*

-X310938Y217985D01*

-Y216985D01*

-X310438Y216485D02*X310938Y216985D01*

-X308938Y216485D02*X310438D01*

-X308438Y216985D02*X308938Y216485D01*

-X312138Y220485D02*Y218485D01*

-X312638Y216485D01*

-X313638Y218485D01*

-X314638Y216485D01*

-X315138Y218485D01*

-Y220485D02*Y218485D01*

-X316838Y220485D02*Y216485D01*

-X318138Y220485D02*X318838Y219785D01*

-Y217185D01*

-X318138Y216485D02*X318838Y217185D01*

-X316338Y216485D02*X318138D01*

-X316338Y220485D02*X318138D01*

-X322338Y218485D02*X323838D01*

-X321838Y217985D02*X322338Y218485D01*

-X321838Y217985D02*Y216985D01*

-X322338Y216485D01*

-X323838D01*

-X325038Y217985D02*Y216985D01*

-Y217985D02*X325538Y218485D01*

-X326538D01*

-X327038Y217985D01*

-Y216985D01*

-X326538Y216485D02*X327038Y216985D01*

-X325538Y216485D02*X326538D01*

-X325038Y216985D02*X325538Y216485D01*

-X328738Y217985D02*Y216485D01*

-Y217985D02*X329238Y218485D01*

-X329738D01*

-X330238Y217985D01*

-Y216485D01*

-X328238Y218485D02*X328738Y217985D01*

-X331938D02*Y216485D01*

-Y217985D02*X332438Y218485D01*

-X332938D01*

-X333438Y217985D01*

-Y216485D01*

-X331438Y218485D02*X331938Y217985D01*

-X335138Y216485D02*X336638D01*

-X334638Y216985D02*X335138Y216485D01*

-X334638Y217985D02*Y216985D01*

-Y217985D02*X335138Y218485D01*

-X336138D01*

-X336638Y217985D01*

-X334638Y217485D02*X336638D01*

-Y217985D02*Y217485D01*

-X338338Y218485D02*X339838D01*

-X337838Y217985D02*X338338Y218485D01*

-X337838Y217985D02*Y216985D01*

-X338338Y216485D01*

-X339838D01*

-X341538Y220485D02*Y216985D01*

-X342038Y216485D01*

-X341038Y218985D02*X342038D01*

-X343038Y217985D02*Y216985D01*

-Y217985D02*X343538Y218485D01*

-X344538D01*

-X345038Y217985D01*

-Y216985D01*

-X344538Y216485D02*X345038Y216985D01*

-X343538Y216485D02*X344538D01*

-X343038Y216985D02*X343538Y216485D01*

-X346738Y217985D02*Y216485D01*

-Y217985D02*X347238Y218485D01*

-X348238D01*

-X346238D02*X346738Y217985D01*

-X236256Y328497D02*Y326997D01*

-X238456Y328997D02*Y326997D01*

-X234456D02*X238456D01*

-X234456Y328997D02*Y326997D01*

-Y332197D02*Y330197D01*

-Y332197D02*X234956Y332697D01*

-X235956D01*

-X236456Y332197D02*X235956Y332697D01*

-X236456Y332197D02*Y330697D01*

-X234456D02*X238456D01*

-X236456Y331497D02*X238456Y332697D01*

-X234456Y335897D02*Y333897D01*

-Y335897D02*X234956Y336397D01*

-X235956D01*

-X236456Y335897D02*X235956Y336397D01*

-X236456Y335897D02*Y334397D01*

-X234456D02*X238456D01*

-X236456Y335197D02*X238456Y336397D01*

-X234456Y339397D02*X238456D01*

-X234456Y341897D02*X238456D01*

-X236456D02*Y339397D01*

-X238456Y345097D02*Y343097D01*

-Y345097D02*X237956Y345597D01*

-X236756D02*X237956D01*

-X236256Y345097D02*X236756Y345597D01*

-X236256Y345097D02*Y343597D01*

-X234456D02*X238456D01*

-X234456Y345097D02*Y343097D01*

-Y345097D02*X234956Y345597D01*

-X235756D01*

-X236256Y345097D02*X235756Y345597D01*

-X234456Y351097D02*Y348597D01*

-X238456D02*X234456Y351097D01*

-X238456D02*Y348597D01*

-X234456Y354597D02*X238456D01*

-X234456Y355897D02*X235156Y356597D01*

-X237756D01*

-X238456Y355897D02*X237756Y356597D01*

-X238456Y355897D02*Y354097D01*

-X234456Y355897D02*Y354097D01*

-X238456Y359797D02*Y357797D01*

-Y359797D02*X237956Y360297D01*

-X236756D02*X237956D01*

-X236256Y359797D02*X236756Y360297D01*

-X236256Y359797D02*Y358297D01*

-X234456D02*X238456D01*

-X234456Y359797D02*Y357797D01*

-Y359797D02*X234956Y360297D01*

-X235756D01*

-X236256Y359797D02*X235756Y360297D01*

-G54D308*X190941Y241350D02*Y236750D01*

-Y241350D02*X193241D01*

-X190941Y239280D02*X192666D01*

-X194621Y241350D02*X196921D01*

-X197496Y240775D01*

-Y239625D01*

-X196921Y239050D02*X197496Y239625D01*

-X195196Y239050D02*X196921D01*

-X195196Y241350D02*Y236750D01*

-X196116Y239050D02*X197496Y236750D01*

-X199681D02*X201176D01*

-X198876Y237555D02*X199681Y236750D01*

-X198876Y240545D02*Y237555D01*

-Y240545D02*X199681Y241350D01*

-X201176D01*

-X204626D02*X206926D01*

-X205776D02*Y236750D01*

-X208881D02*X210606D01*

-X208306Y237325D02*X208881Y236750D01*

-X208306Y238475D02*Y237325D01*

-Y238475D02*X208881Y239050D01*

-X210031D01*

-X210606Y238475D01*

-X208306Y237900D02*X210606D01*

-Y238475D02*Y237900D01*

-X213711Y239050D02*X214286Y238475D01*

-X212561Y239050D02*X213711D01*

-X211986Y238475D02*X212561Y239050D01*

-X211986Y238475D02*Y237325D01*

-X212561Y236750D01*

-X214286Y239050D02*Y237325D01*

-X214861Y236750D01*

-X212561D02*X213711D01*

-X214286Y237325D01*

-X216816Y238475D02*Y236750D01*

-Y238475D02*X217391Y239050D01*

-X217966D01*

-X218541Y238475D01*

-Y236750D01*

-Y238475D02*X219116Y239050D01*

-X219691D01*

-X220266Y238475D01*

-Y236750D01*

-X216241Y239050D02*X216816Y238475D01*

-X224291Y236750D02*X226016Y239050D01*

-Y240775D02*Y239050D01*

-X225441Y241350D02*X226016Y240775D01*

-X224291Y241350D02*X225441D01*

-X223716Y240775D02*X224291Y241350D01*

-X223716Y240775D02*Y239625D01*

-X224291Y239050D01*

-X226016D01*

-X227971Y236750D02*X230271Y241350D01*

-X227396D02*X230271D01*

-X231651Y240430D02*X232571Y241350D01*

-Y236750D01*

-X231651D02*X233376D01*

-X236826D02*X239126D01*

-X239701Y237325D01*

-Y238705D02*Y237325D01*

-X239126Y239280D02*X239701Y238705D01*

-X237401Y239280D02*X239126D01*

-X237401Y241350D02*Y236750D01*

-X236826Y241350D02*X239126D01*

-X239701Y240775D01*

-Y239855D01*

-X239126Y239280D02*X239701Y239855D01*

-X241081Y236750D02*X243381D01*

-X243956Y237325D01*

-Y238705D02*Y237325D01*

-X243381Y239280D02*X243956Y238705D01*

-X241656Y239280D02*X243381D01*

-X241656Y241350D02*Y236750D01*

-X241081Y241350D02*X243381D01*

-X243956Y240775D01*

-Y239855D01*

-X243381Y239280D02*X243956Y239855D01*

-X245336Y236750D02*X247636D01*

-X248211Y237325D01*

-Y238705D02*Y237325D01*

-X247636Y239280D02*X248211Y238705D01*

-X245911Y239280D02*X247636D01*

-X245911Y241350D02*Y236750D01*

-X245336Y241350D02*X247636D01*

-X248211Y240775D01*

-Y239855D01*

-X247636Y239280D02*X248211Y239855D01*

-X252466Y236750D02*X253961D01*

-X251661Y237555D02*X252466Y236750D01*

-X251661Y240545D02*Y237555D01*

-Y240545D02*X252466Y241350D01*

-X253961D01*

-X257066Y239050D02*X257641Y238475D01*

-X255916Y239050D02*X257066D01*

-X255341Y238475D02*X255916Y239050D01*

-X255341Y238475D02*Y237325D01*

-X255916Y236750D01*

-X257641Y239050D02*Y237325D01*

-X258216Y236750D01*

-X255916D02*X257066D01*

-X257641Y237325D01*

-X260171Y238475D02*Y235025D01*

-X259596Y239050D02*X260171Y238475D01*

-X260746Y239050D01*

-X261896D01*

-X262471Y238475D01*

-Y237325D01*

-X261896Y236750D02*X262471Y237325D01*

-X260746Y236750D02*X261896D01*

-X260171Y237325D02*X260746Y236750D01*

-X264426D02*X266151D01*

-X263851Y237325D02*X264426Y236750D01*

-X263851Y238475D02*Y237325D01*

-Y238475D02*X264426Y239050D01*

-X265576D01*

-X266151Y238475D01*

-X263851Y237900D02*X266151D01*

-Y238475D02*Y237900D01*

-X202441Y227775D02*X203016Y228350D01*

-X204741D01*

-X205316Y227775D01*

-Y226625D01*

-X202441Y223750D02*X205316Y226625D01*

-X202441Y223750D02*X205316D01*

-X206696Y224325D02*X207271Y223750D01*

-X206696Y227775D02*Y224325D01*

-Y227775D02*X207271Y228350D01*

-X208421D01*

-X208996Y227775D01*

-Y224325D01*

-X208421Y223750D02*X208996Y224325D01*

-X207271Y223750D02*X208421D01*

-X206696Y224900D02*X208996Y227200D01*

-X210376Y227430D02*X211296Y228350D01*

-Y223750D01*

-X210376D02*X212101D01*

-X213481Y225475D02*X215781Y228350D01*

-X213481Y225475D02*X216356D01*

-X215781Y228350D02*Y223750D01*

-X217736Y224325D02*X218311Y223750D01*

-X217736Y227775D02*Y224325D01*

-Y227775D02*X218311Y228350D01*

-X219461D01*

-X220036Y227775D01*

-Y224325D01*

-X219461Y223750D02*X220036Y224325D01*

-X218311Y223750D02*X219461D01*

-X217736Y224900D02*X220036Y227200D01*

-X221416Y227430D02*X222336Y228350D01*

-Y223750D01*

-X221416D02*X223141D01*

-X224521Y227430D02*X225441Y228350D01*

-Y223750D01*

-X224521D02*X226246D01*

-X228201D02*X230501Y228350D01*

-X227626D02*X230501D01*

-X233951Y227775D02*X234526Y228350D01*

-X236251D01*

-X236826Y227775D01*

-Y226625D01*

-X233951Y223750D02*X236826Y226625D01*

-X233951Y223750D02*X236826D01*

-X238206Y224325D02*X238781Y223750D01*

-X238206Y227775D02*Y224325D01*

-Y227775D02*X238781Y228350D01*

-X239931D01*

-X240506Y227775D01*

-Y224325D01*

-X239931Y223750D02*X240506Y224325D01*

-X238781Y223750D02*X239931D01*

-X238206Y224900D02*X240506Y227200D01*

-X241886Y227430D02*X242806Y228350D01*

-Y223750D01*

-X241886D02*X243611D01*

-X244991Y225475D02*X247291Y228350D01*

-X244991Y225475D02*X247866D01*

-X247291Y228350D02*Y223750D01*

-X249246Y226050D02*X251546D01*

-X252926Y227430D02*X253846Y228350D01*

-Y223750D01*

-X252926D02*X254651D01*

-X179741Y199350D02*X180316Y198775D01*

-X178016Y199350D02*X179741D01*

-X177441Y198775D02*X178016Y199350D01*

-X177441Y198775D02*Y195325D01*

-X178016Y194750D01*

-X179741D01*

-X180316Y195325D01*

-Y196475D02*Y195325D01*

-X179741Y197050D02*X180316Y196475D01*

-X178591Y197050D02*X179741D01*

-X181696Y199350D02*Y194750D01*

-Y199350D02*X184571Y194750D01*

-Y199350D02*Y194750D01*

-X186526Y199350D02*Y194750D01*

-X188021Y199350D02*X188826Y198545D01*

-Y195555D01*

-X188021Y194750D02*X188826Y195555D01*

-X185951Y194750D02*X188021D01*

-X185951Y199350D02*X188021D01*

-G54D313*X111691Y228500D02*Y225000D01*

-Y219750D02*Y216250D01*

-X109941Y218000D02*X113441D01*

-X108191Y211000D02*X115191D01*

-X108191Y206625D01*

-X115191D01*

-X108191Y203300D02*Y201025D01*

-X109416Y204525D02*X108191Y203300D01*

-X109416Y204525D02*X113966D01*

-X115191Y203300D01*

-Y201025D01*

-X121191Y227500D02*Y224000D01*

-X119441Y225750D02*X122941D01*

-X123291Y221900D02*X124691Y220500D01*

-X117691D02*X124691D01*

-X117691Y221900D02*Y219275D01*

-X123816Y217175D02*X124691Y216300D01*

-Y213675D01*

-X123816Y212800D01*

-X122066D02*X123816D01*

-X117691Y217175D02*X122066Y212800D01*

-X117691Y217175D02*Y212800D01*

-X124691Y210700D02*X117691Y208950D01*

-X124691Y207200D01*

-G54D309*X322650Y55096D02*Y51496D01*

-Y67336D02*Y63736D01*

-X320850Y65536D02*X324450D01*

-X320850Y75976D02*X326250D01*

-X320850D02*X319050Y77236D01*

-Y79216D02*Y77236D01*

-Y79216D02*X320850Y80476D01*

-X326250D01*

-X322650D02*Y75976D01*

-G54D310*X78938Y77866D02*X79613Y77191D01*

-X78938Y81916D02*Y77866D01*

-Y81916D02*X79613Y82591D01*

-X80963D01*

-X81638Y81916D01*

-Y77866D01*

-X80963Y77191D02*X81638Y77866D01*

-X79613Y77191D02*X80963D01*

-X78938Y78541D02*X81638Y81241D01*

-X114848Y81511D02*X115928Y82591D01*

-Y77191D01*

-X114848D02*X116873D01*

-X147653Y81916D02*X148328Y82591D01*

-X150353D01*

-X151028Y81916D01*

-Y80566D01*

-X147653Y77191D02*X151028Y80566D01*

-X147653Y77191D02*X151028D01*

-X179378Y81916D02*X180053Y82591D01*

-X181403D01*

-X182078Y81916D01*

-X181403Y77191D02*X182078Y77866D01*

-X180053Y77191D02*X181403D01*

-X179378Y77866D02*X180053Y77191D01*

-Y80161D02*X181403D01*

-X182078Y81916D02*Y80836D01*

-Y79486D02*Y77866D01*

-Y79486D02*X181403Y80161D01*

-X182078Y80836D02*X181403Y80161D01*

-X205568Y79216D02*X208268Y82591D01*

-X205568Y79216D02*X208943D01*

-X208268Y82591D02*Y77191D01*

-X234863Y82591D02*X237563D01*

-X234863D02*Y79891D01*

-X235538Y80566D01*

-X236888D01*

-X237563Y79891D01*

-Y77866D01*

-X236888Y77191D02*X237563Y77866D01*

-X235538Y77191D02*X236888D01*

-X234863Y77866D02*X235538Y77191D01*

-X267938Y82591D02*X268613Y81916D01*

-X266588Y82591D02*X267938D01*

-X265913Y81916D02*X266588Y82591D01*

-X265913Y81916D02*Y77866D01*

-X266588Y77191D01*

-X267938Y80161D02*X268613Y79486D01*

-X265913Y80161D02*X267938D01*

-X266588Y77191D02*X267938D01*

-X268613Y77866D01*

-Y79486D02*Y77866D01*

-X295208Y77191D02*X297908Y82591D01*

-X294533D02*X297908D01*

-G54D314*X448500Y126200D02*Y101200D01*

-X478500Y126200D02*Y101200D01*

-Y126200D02*X448500D01*

-Y119700D02*X478500D01*

-X458500Y101200D02*Y119700D01*

-X468500Y101200D02*Y119700D01*

-X448500Y101200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y96200D02*Y71200D01*

-X478500Y96200D02*Y71200D01*

-Y96200D02*X448500D01*

-Y89700D02*X478500D01*

-X458500Y71200D02*Y89700D01*

-X468500Y71200D02*Y89700D01*

-X448500Y71200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y66200D02*Y41200D01*

-X478500Y66200D02*Y41200D01*

-Y66200D02*X448500D01*

-Y59700D02*X478500D01*

-X458500Y41200D02*Y59700D01*

-X468500Y41200D02*Y59700D01*

-X448500Y41200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y216200D02*Y191200D01*

-X478500Y216200D02*Y191200D01*

-Y216200D02*X448500D01*

-Y209700D02*X478500D01*

-X458500Y191200D02*Y209700D01*

-X468500Y191200D02*Y209700D01*

-X448500Y191200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y186200D02*Y161200D01*

-X478500Y186200D02*Y161200D01*

-Y186200D02*X448500D01*

-Y179700D02*X478500D01*

-X458500Y161200D02*Y179700D01*

-X468500Y161200D02*Y179700D01*

-X448500Y161200D02*X478500D01*

-X448500D02*X458500D01*

-X374835Y228566D02*X396047D01*

-X374835D02*Y197434D01*

-X396047D01*

-Y228566D02*Y215500D01*

-Y210500D02*Y197434D01*

-Y215500D02*G75*G03X396047Y210500I0J-2500D01*G01*

-X402000Y216200D02*Y191200D01*

-X442000Y216200D02*Y191200D01*

-Y216200D02*X402000D01*

-Y209700D02*X442000D01*

-X412000Y191200D02*Y209700D01*

-X422000Y191200D02*Y209700D01*

-X432000Y191200D02*Y209700D01*

-X402000Y191200D02*X442000D01*

-X402000D02*X412000D01*

-X448500Y246200D02*Y221200D01*

-X478500Y246200D02*Y221200D01*

-X448500Y246200D02*X478500D01*

-X448500Y239700D02*X478500D01*

-X458500D02*Y221200D01*

-X468500Y239700D02*Y221200D01*

-X448500D02*X478500D01*

-X448500D02*X458500D01*

-X402000Y246200D02*Y221200D01*

-X442000Y246200D02*Y221200D01*

-Y246200D02*X402000D01*

-Y239700D02*X442000D01*

-X412000Y221200D02*Y239700D01*

-X422000Y221200D02*Y239700D01*

-X432000Y221200D02*Y239700D01*

-X402000Y221200D02*X442000D01*

-X402000D02*X412000D01*

-X448500Y276200D02*Y251200D01*

-X478500Y276200D02*Y251200D01*

-Y276200D02*X448500D01*

-Y269700D02*X478500D01*

-X458500Y251200D02*Y269700D01*

-X468500Y251200D02*Y269700D01*

-X448500Y251200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y156200D02*Y131200D01*

-X478500Y156200D02*Y131200D01*

-Y156200D02*X448500D01*

-Y149700D02*X478500D01*

-X458500Y131200D02*Y149700D01*

-X468500Y131200D02*Y149700D01*

-X448500Y131200D02*X478500D01*

-X448500D02*X458500D01*

-X402000Y186200D02*Y161200D01*

-X442000Y186200D02*Y161200D01*

-Y186200D02*X402000D01*

-Y179700D02*X442000D01*

-X412000Y161200D02*Y179700D01*

-X422000Y161200D02*Y179700D01*

-X432000Y161200D02*Y179700D01*

-X402000Y161200D02*X442000D01*

-X402000D02*X412000D01*

-X353831Y75673D02*Y91421D01*

-X390051Y75673D02*X353831D01*

-X390051Y91421D02*Y75673D01*

-X352256Y91421D02*Y131579D01*

-X391626Y91421D02*Y131579D01*

-Y91421D02*X352256D01*

-X391626Y131579D02*X352256D01*

-G54D315*X400696Y94892D02*Y94106D01*

-X395186Y94892D02*Y94106D01*

-X372186Y55349D02*Y54563D01*

-X377696Y55349D02*Y54563D01*

-X373548Y68755D02*X374334D01*

-X373548Y63245D02*X374334D01*

-X385473Y51314D02*X389409D01*

-X385473Y40686D02*X389409D01*

-X385048Y61255D02*X385834D01*

-X385048Y55745D02*X385834D01*

-X387548Y69255D02*X388334D01*

-X387548Y63745D02*X388334D01*

-G54D314*X448500Y396200D02*Y371200D01*

-X478500Y396200D02*Y371200D01*

-X448500Y396200D02*X478500D01*

-X448500Y389700D02*X478500D01*

-X458500D02*Y371200D01*

-X468500Y389700D02*Y371200D01*

-X448500D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y366200D02*Y341200D01*

-X478500Y366200D02*Y341200D01*

-Y366200D02*X448500D01*

-Y359700D02*X478500D01*

-X458500Y341200D02*Y359700D01*

-X468500Y341200D02*Y359700D01*

-X448500Y341200D02*X478500D01*

-X448500D02*X458500D01*

-X402000Y366200D02*Y341200D01*

-X442000Y366200D02*Y341200D01*

-Y366200D02*X402000D01*

-Y359700D02*X442000D01*

-X412000Y341200D02*Y359700D01*

-X422000Y341200D02*Y359700D01*

-X432000Y341200D02*Y359700D01*

-X402000Y341200D02*X442000D01*

-X402000D02*X412000D01*

-X402000Y396200D02*Y371200D01*

-X442000Y396200D02*Y371200D01*

-Y396200D02*X402000D01*

-Y389700D02*X442000D01*

-X412000Y371200D02*Y389700D01*

-X422000Y371200D02*Y389700D01*

-X432000Y371200D02*Y389700D01*

-X402000Y371200D02*X442000D01*

-X402000D02*X412000D01*

-X448500Y336200D02*Y311200D01*

-X478500Y336200D02*Y311200D01*

-Y336200D02*X448500D01*

-Y329700D02*X478500D01*

-X458500Y311200D02*Y329700D01*

-X468500Y311200D02*Y329700D01*

-X448500Y311200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y306200D02*Y281200D01*

-X478500Y306200D02*Y281200D01*

-Y306200D02*X448500D01*

-Y299700D02*X478500D01*

-X458500Y281200D02*Y299700D01*

-X468500Y281200D02*Y299700D01*

-X448500Y281200D02*X478500D01*

-X448500D02*X458500D01*

-X374835Y346566D02*X396047D01*

-X374835D02*Y315434D01*

-X396047D01*

-Y346566D02*Y333500D01*

-Y328500D02*Y315434D01*

-Y333500D02*G75*G03X396047Y328500I0J-2500D01*G01*

-X402000Y306200D02*Y281200D01*

-X442000Y306200D02*Y281200D01*

-Y306200D02*X402000D01*

-Y299700D02*X442000D01*

-X412000Y281200D02*Y299700D01*

-X422000Y281200D02*Y299700D01*

-X432000Y281200D02*Y299700D01*

-X402000Y281200D02*X442000D01*

-X402000D02*X412000D01*

-X402000Y336200D02*Y311200D01*

-X442000Y336200D02*Y311200D01*

-X402000Y336200D02*X442000D01*

-X402000Y329700D02*X442000D01*

-X412000D02*Y311200D01*

-X422000Y329700D02*Y311200D01*

-X432000Y329700D02*Y311200D01*

-X402000D02*X442000D01*

-X402000D02*X412000D01*

-X402000Y276200D02*Y251200D01*

-X442000Y276200D02*Y251200D01*

-X402000Y276200D02*X442000D01*

-X402000Y269700D02*X442000D01*

-X412000D02*Y251200D01*

-X422000Y269700D02*Y251200D01*

-X432000Y269700D02*Y251200D01*

-X402000D02*X442000D01*

-X402000D02*X412000D01*

-X307441Y261200D02*Y236200D01*

-X347441Y261200D02*Y236200D01*

-Y261200D02*X307441D01*

-Y254700D02*X347441D01*

-X317441Y236200D02*Y254700D01*

-X327441Y236200D02*Y254700D01*

-X337441Y236200D02*Y254700D01*

-X307441Y236200D02*X347441D01*

-X307441D02*X317441D01*

-X283241Y42500D02*X308241D01*

-X283241Y72500D02*X308241D01*

-X283241D02*Y42500D01*

-X289741Y72500D02*Y42500D01*

-Y52500D02*X308241D01*

-X289741Y62500D02*X308241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X269438Y147822D02*Y108822D01*

-X300438D01*

-Y147822D01*

-X269438D02*X282438D01*

-X300438D02*X287438D01*

-X282438D02*G75*G03X287438Y147822I2500J0D01*G01*

-X223241Y42500D02*X248241D01*

-X223241Y72500D02*X248241D01*

-X223241D02*Y42500D01*

-X229741Y72500D02*Y42500D01*

-Y52500D02*X248241D01*

-X229741Y62500D02*X248241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X253241D02*X278241D01*

-X253241Y72500D02*X278241D01*

-X253241D02*Y42500D01*

-X259741Y72500D02*Y42500D01*

-Y52500D02*X278241D01*

-X259741Y62500D02*X278241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-G54D316*X348255Y94467D02*Y90531D01*

-X337627Y94467D02*Y90531D01*

-G54D315*X335255Y94467D02*Y90531D01*

-X324627Y94467D02*Y90531D01*

-G54D314*X73241Y42500D02*X98241D01*

-X73241Y72500D02*X98241D01*

-X73241D02*Y42500D01*

-X79741Y72500D02*Y42500D01*

-Y52500D02*X98241D01*

-X79741Y62500D02*X98241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X193241D02*X218241D01*

-X193241Y72500D02*X218241D01*

-X193241D02*Y42500D01*

-X199741Y72500D02*Y42500D01*

-Y52500D02*X218241D01*

-X199741Y62500D02*X218241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X163241D02*X188241D01*

-X163241Y72500D02*X188241D01*

-X163241D02*Y42500D01*

-X169741Y72500D02*Y42500D01*

-Y52500D02*X188241D01*

-X169741Y62500D02*X188241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X133241D02*X158241D01*

-X133241Y72500D02*X158241D01*

-X133241D02*Y42500D01*

-X139741Y72500D02*Y42500D01*

-Y52500D02*X158241D01*

-X139741Y62500D02*X158241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X103241D02*X128241D01*

-X103241Y72500D02*X128241D01*

-X103241D02*Y42500D01*

-X109741Y72500D02*Y42500D01*

-Y52500D02*X128241D01*

-X109741Y62500D02*X128241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X200441Y144500D02*Y110500D01*

-X231441D01*

-Y144500D01*

-X200441D02*X213441D01*

-X231441D02*X218441D01*

-X213441D02*G75*G03X218441Y144500I2500J0D01*G01*

-X118666Y144340D02*Y110340D01*

-X149666D01*

-Y144340D01*

-X118666D02*X131666D01*

-X149666D02*X136666D01*

-X131666D02*G75*G03X136666Y144340I2500J0D01*G01*

-X146799Y335829D02*Y296829D01*

-X192799D01*

-Y335829D01*

-X146799D02*X167299D01*

-X192799D02*X172299D01*

-X167299D02*G75*G03X172299Y335829I2500J0D01*G01*

-G54D315*X120894Y283923D02*X118925Y285892D01*

-X120894Y283923D02*X134673D01*

-Y315419D02*Y283923D01*

-X118925Y315419D02*X134673D01*

-X118925D02*Y285892D01*

-X248505Y359255D02*X249291D01*

-X248505Y353745D02*X249291D01*

-X160548Y208255D02*X161334D01*

-X160548Y202745D02*X161334D01*

-X160635Y215125D02*X161421D01*

-X160635Y209615D02*X161421D01*

-X242304Y270584D02*X243090D01*

-X242304Y265074D02*X243090D01*

-X287686Y248850D02*Y248064D01*

-X293196Y248850D02*Y248064D01*

-X296525Y297214D02*Y261544D01*

-X257955D02*X296525D01*

-X257955Y300114D02*Y261544D01*

-Y300114D02*X293625D01*

-X296525Y297214D01*

-X293625Y298214D02*G75*G03X293625Y298214I0J-1000D01*G01*

-G54D314*X291150Y314280D02*G75*G03X291150Y314280I500J0D01*G01*

-G54D315*X248462Y352255D02*X249248D01*

-X248462Y346745D02*X249248D01*

-X248505Y338255D02*X249291D01*

-X248505Y332745D02*X249291D01*

-X248462Y345255D02*X249248D01*

-X248462Y339745D02*X249248D01*

-G54D314*X145699Y294729D02*X159599D01*

-X145699D02*Y281929D01*

-X159599D01*

-Y294729D02*Y281929D01*

-G54D315*X112885Y239433D02*Y235497D01*

-X102257Y239433D02*Y235497D01*

-X124885D02*Y239433D01*

-X114257Y235497D02*Y239433D01*

-G54D314*X72641Y245000D02*X97641D01*

-X72641Y215000D02*X97641D01*

-Y245000D02*Y215000D01*

-X91141Y245000D02*Y215000D01*

-X72641Y235000D02*X91141D01*

-X72641Y225000D02*X91141D01*

-X72641Y245000D02*Y215000D01*

-Y245000D02*Y235000D01*

-G54D315*X93186Y208393D02*Y207607D01*

-X98696Y208393D02*Y207607D01*

-X173196Y245393D02*Y244607D01*

-X167686Y245393D02*Y244607D01*

-X148973Y201314D02*X152909D01*

-X148973Y190686D02*X152909D01*

-G54D314*X127831Y222173D02*Y237921D01*

-X164051Y222173D02*X127831D01*

-X164051Y237921D02*Y222173D01*

-X126256Y237921D02*Y278079D01*

-X165626Y237921D02*Y278079D01*

-Y237921D02*X126256D01*

-X165626Y278079D02*X126256D01*

-G54D315*X147048Y208255D02*X147834D01*

-X147048Y202745D02*X147834D01*

-X147048Y215255D02*X147834D01*

-X147048Y209745D02*X147834D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140117/cape.xy b/bbb_cape/schematic/gerbers/20140117/cape.xy
deleted file mode 100644
index 66ff9cc..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.xy
+++ /dev/null
@@ -1,242 +0,0 @@
-# $Id$
-# PcbXY Version 1.0
-# Date: Sun Jan 19 01:37:56 2014 UTC
-# Author: Brian Silverman
-# Title: 971 BBB Cape - PCB X-Y
-# RefDes, Description, Value, X, Y, rotation, top/bottom
-# X,Y in mil.  rotation in degrees.
-# --------------------------------------------
-X6/X1/CONN12,"22-23-2031","(unknown)",4635.00,3840.00,0,top
-X6/X3/CONN12,"22-23-2031","(unknown)",4635.00,3240.00,0,top
-X6/X4/CONN12,"22-23-2031","(unknown)",4635.00,2940.00,0,top
-X7/X1/CONN12,"22-23-2031","(unknown)",4635.00,2640.00,0,top
-X7/X2/CONN12,"22-23-2031","(unknown)",4635.00,2340.00,0,top
-X7/X3/CONN12,"22-23-2031","(unknown)",4635.00,2040.00,0,top
-X7/X4/CONN12,"22-23-2031","(unknown)",4635.00,1740.00,0,top
-X5/X1/CONN12,"22-23-2031","(unknown)",4635.00,1440.00,0,top
-X5/X2/CONN12,"22-23-2031","(unknown)",4635.00,1140.00,0,top
-X5/X3/CONN12,"22-23-2031","(unknown)",4635.00,840.00,0,top
-X5/X4/CONN12,"22-23-2031","(unknown)",4635.00,540.00,0,top
-X1/X2/CONN4,"22-23-2041","(unknown)",4220.00,3840.00,0,top
-X4/X4/CONN4,"22-23-2041","(unknown)",4220.00,1740.00,0,top
-X4/X2/CONN4,"22-23-2041","(unknown)",4220.00,2040.00,0,top
-X3/X4/CONN4,"22-23-2041","(unknown)",4220.00,2340.00,0,top
-X3/X2/CONN4,"22-23-2041","(unknown)",4220.00,2640.00,0,top
-X2/X4/CONN4,"22-23-2041","(unknown)",4220.00,2940.00,0,top
-X2/X2/CONN4,"22-23-2041","(unknown)",4220.00,3240.00,0,top
-X6/X2/CONN12,"22-23-2031","(unknown)",4635.00,3540.00,0,top
-X1/X4/CONN4,"22-23-2041","(unknown)",4220.00,3540.00,0,top
-X4/C1,"0603","(unknown)",3954.41,1910.00,270,top
-X4/U4,"TSSOP16","(unknown)",3854.41,1820.00,270,bottom
-X6/C1,"0603","(unknown)",3984.41,3220.00,90,bottom
-X5/C1,"0603","(unknown)",4294.41,700.00,180,top
-X5/U4,"TSSOP16","(unknown)",4336.03,923.86,90,bottom
-X3/C1,"0603","(unknown)",3931.35,2496.15,270,top
-X1/C1,"0603","(unknown)",3934.41,3685.00,270,top
-X2/C1,"0603","(unknown)",3934.41,3085.59,270,top
-X1/X2/R9,"0603","(unknown)",4244.41,3920.00,180,bottom
-X5/X1/C2,"0603","(unknown)",4584.41,1530.00,180,bottom
-X5/X4/C2,"0603","(unknown)",4585.00,630.00,180,bottom
-X5/X2/C2,"0603","(unknown)",4584.41,1230.00,180,bottom
-X7/X3/C2,"0603","(unknown)",4584.41,2130.00,180,bottom
-X7/X2/C2,"0603","(unknown)",4584.41,2430.00,180,bottom
-X6/X1/C2,"0603","(unknown)",4584.41,3930.00,180,bottom
-X6/X2/C2,"0603","(unknown)",4585.00,3630.00,180,bottom
-X6/X3/C2,"0603","(unknown)",4584.41,3330.00,180,bottom
-X6/X1/R6,"0603","(unknown)",4709.41,3765.00,180,bottom
-X6/X3/R6,"0603","(unknown)",4709.41,3165.00,180,bottom
-X6/X4/R6,"0603","(unknown)",4709.41,2865.00,180,bottom
-X7/X1/R6,"0603","(unknown)",4709.41,2560.00,180,bottom
-X7/X2/R6,"0603","(unknown)",4709.41,2265.00,180,bottom
-X7/X3/R6,"0603","(unknown)",4709.41,1965.00,180,bottom
-X7/X4/R6,"0603","(unknown)",4709.41,1660.00,180,bottom
-X1/X4/R9,"0603","(unknown)",4244.41,3620.00,180,bottom
-X1/X4/R10,"0603","(unknown)",4344.41,3620.00,180,bottom
-X1/X4/R6,"0603","(unknown)",4243.82,3465.00,180,bottom
-X1/X4/C2,"0603","(unknown)",4119.41,3630.00,180,bottom
-X1/X4/R8,"0603","(unknown)",4369.41,3440.59,90,bottom
-X2/X2/R6,"0603","(unknown)",4243.82,3165.00,180,bottom
-X2/X2/R8,"0603","(unknown)",4369.41,3139.41,90,bottom
-X2/X2/C2,"0603","(unknown)",4119.41,3330.00,180,bottom
-X2/X2/R9,"0603","(unknown)",4244.41,3320.00,180,bottom
-X2/X2/R10,"0603","(unknown)",4344.41,3320.00,180,bottom
-X2/X4/R9,"0603","(unknown)",4244.41,3020.00,180,bottom
-X2/X4/R10,"0603","(unknown)",4344.41,3020.00,180,bottom
-X2/X4/R6,"0603","(unknown)",4243.82,2865.00,180,bottom
-X2/X4/R8,"0603","(unknown)",4370.00,2840.00,90,bottom
-X2/X4/C2,"0603","(unknown)",4119.41,3030.00,180,bottom
-X3/X2/R9,"0603","(unknown)",4244.41,2720.00,180,bottom
-X3/X2/R10,"0603","(unknown)",4344.41,2720.00,180,bottom
-X3/X2/R6,"0603","(unknown)",4243.82,2565.00,180,bottom
-X3/X2/R8,"0603","(unknown)",4370.00,2540.00,90,bottom
-X3/X2/C2,"0603","(unknown)",4120.00,2730.00,180,bottom
-X3/X4/R9,"0603","(unknown)",4244.41,2420.00,180,bottom
-X3/X4/R10,"0603","(unknown)",4344.41,2420.00,180,bottom
-X3/X4/R6,"0603","(unknown)",4245.00,2265.00,180,bottom
-X3/X4/R8,"0603","(unknown)",4370.00,2240.00,90,bottom
-X3/X4/C2,"0603","(unknown)",4120.00,2430.00,180,bottom
-X4/X2/R9,"0603","(unknown)",4244.41,2120.00,180,bottom
-X4/X2/R10,"0603","(unknown)",4344.41,2120.00,180,bottom
-X4/X2/R6,"0603","(unknown)",4243.82,1960.00,180,bottom
-X4/X2/C2,"0603","(unknown)",4119.41,2130.00,180,bottom
-X4/X4/R10,"0603","(unknown)",4344.41,1820.00,180,bottom
-X4/X4/R9,"0603","(unknown)",4244.41,1820.00,180,bottom
-X4/X4/R6,"0603","(unknown)",4243.82,1665.00,180,bottom
-X4/X4/R8,"0603","(unknown)",4369.41,1639.41,90,bottom
-X4/X4/C2,"0603","(unknown)",4119.41,1830.00,180,bottom
-X1/X2/R10,"0603","(unknown)",4345.00,3921.18,180,bottom
-X1/X2/R6,"0603","(unknown)",4245.59,3765.59,180,bottom
-X1/X2/C2,"0603","(unknown)",4120.00,3931.18,180,bottom
-X5/X2/R7,"0603","(unknown)",4710.00,1230.00,180,bottom
-X5/X1/R7,"0603","(unknown)",4710.00,1530.00,180,bottom
-X5/X3/R7,"0603","(unknown)",4710.00,930.00,180,bottom
-X5/X4/R7,"0603","(unknown)",4710.00,630.00,180,bottom
-X7/X2/R7,"0603","(unknown)",4710.00,2430.00,180,bottom
-X7/X1/R7,"0603","(unknown)",4711.18,2730.00,180,bottom
-X7/X3/R7,"0603","(unknown)",4710.00,2130.00,180,bottom
-X7/X4/R7,"0603","(unknown)",4709.41,1830.00,180,bottom
-X6/X2/R7,"0603","(unknown)",4710.00,3630.00,180,bottom
-X6/X3/R7,"0603","(unknown)",4710.00,3330.00,180,bottom
-X6/X4/R7,"0603","(unknown)",4704.41,3030.00,180,bottom
-X6/X1/R7,"0603","(unknown)",4710.00,3930.00,180,bottom
-X4/X2/R8,"0603","(unknown)",4370.00,1940.00,90,bottom
-X1/X2/R8,"0603","(unknown)",4369.41,3740.59,90,bottom
-X7/C1,"0603","(unknown)",3984.41,2030.00,90,bottom
-X7/U4,"TSSOP16","(unknown)",3854.41,2130.00,180,top
-X5/X3/C2,"0603","(unknown)",4585.00,930.00,180,bottom
-X5/X4/R6,"0603","(unknown)",4710.00,465.00,180,bottom
-X5/X3/R6,"0603","(unknown)",4709.41,765.00,180,bottom
-X5/X2/R6,"0603","(unknown)",4709.41,1065.00,180,bottom
-X5/X1/R6,"0603","(unknown)",4709.41,1360.00,180,bottom
-X7/X1/C2,"0603","(unknown)",4584.41,2730.00,180,bottom
-X7/X4/C2,"0603","(unknown)",4584.41,1830.00,180,bottom
-X6/X2/R6,"0603","(unknown)",4710.59,3465.00,180,bottom
-X6/X4/C2,"0603","(unknown)",4584.41,3030.00,180,bottom
-C28,"0603","(unknown)",2972.40,2498.29,270,top
-C29,"0603","(unknown)",2462.40,2608.29,0,top
-C30,"0603","(unknown)",2468.27,2952.91,90,top
-C31,"0603","(unknown)",2669.41,3100.00,180,top
-C13,"0805","(unknown)",2426.97,2678.29,0,top
-C14,"0805","(unknown)",2904.41,2484.57,270,top
-C15,"0603","(unknown)",1712.91,3559.62,0,top
-C32,"0603","(unknown)",2082.40,2688.29,0,bottom
-C10,"0805","(unknown)",1474.41,3410.00,90,bottom
-D4,"SOT23","(unknown)",1513.32,2883.29,90,top
-U2,"SO16W","(unknown)",1697.99,3163.29,90,top
-C2,"0603","(unknown)",1977.99,3213.29,90,top
-C3,"0603","(unknown)",1414.41,3315.00,90,top
-C6,"0603","(unknown)",1977.99,3013.29,90,top
-C9,"0603","(unknown)",1417.99,3063.29,270,top
-C7,"0805","(unknown)",1223.42,3088.29,180,bottom
-L2,"1812","(unknown)",1267.99,2996.72,270,top
-U9,"ABMM2","(unknown)",2909.41,3280.00,270,top
-C4,"0603","(unknown)",3038.57,3222.13,90,top
-C5,"0603","(unknown)",2779.41,3400.00,90,top
-C26,"0603","(unknown)",2904.76,3029.57,0,bottom
-C27,"0603","(unknown)",3079.54,2975.97,270,top
-C11,"0805","(unknown)",1835.41,2389.00,270,bottom
-C12,"0805","(unknown)",2085.41,2629.00,0,bottom
-U4,"SOT223","(unknown)",2034.66,2448.00,90,bottom
-X14/C4,"1210","(unknown)",1075.71,2374.65,90,top
-X14/C3,"1210","(unknown)",1195.71,2374.65,90,top
-X14/U3,"TOPMOD","(unknown)",1459.41,2318.19,0,top
-X14/R4,"0603","(unknown)",1434.41,2185.00,180,top
-X14/R3,"0603","(unknown)",1330.12,2173.70,0,top
-X14/R2,"0603","(unknown)",1330.12,2113.70,0,top
-X14/R5,"0805","(unknown)",1474.41,2055.00,0,top
-C25,"0603","(unknown)",774.41,525.00,270,bottom
-C18,"0603","(unknown)",2874.41,525.00,270,bottom
-C19,"0603","(unknown)",2574.41,525.00,270,bottom
-C20,"0603","(unknown)",2274.41,525.00,270,bottom
-C21,"0603","(unknown)",1974.41,525.00,270,bottom
-C22,"0603","(unknown)",1674.41,525.00,270,bottom
-C23,"0603","(unknown)",1374.41,525.00,270,bottom
-C24,"0603","(unknown)",1074.41,525.00,270,bottom
-CONN5,"22-23-2031","(unknown)",2054.41,575.00,270,top
-CONN4,"22-23-2031","(unknown)",2354.41,575.00,270,top
-CONN3,"22-23-2031","(unknown)",2654.41,575.00,270,top
-CONN2,"22-23-2031","(unknown)",2954.41,575.00,270,top
-CONN6,"22-23-2031","(unknown)",1754.41,575.00,270,top
-CONN7,"22-23-2031","(unknown)",1454.41,575.00,270,top
-CONN8,"22-23-2031","(unknown)",1154.41,575.00,270,top
-CONN9,"22-23-2031","(unknown)",854.41,575.00,270,top
-CONN1,"22-23-2041","(unknown)",3274.41,2490.00,0,top
-X6/U4,"TSSOP16","(unknown)",3854.41,3310.00,180,top
-R12,"0603","(unknown)",4409.41,630.00,90,bottom
-R10,"0603","(unknown)",4349.41,630.00,90,bottom
-X8/C4,"0603","(unknown)",2419.41,1335.00,270,top
-X8/C5,"0603","(unknown)",2164.41,1480.00,180,top
-X8/C1,"0603","(unknown)",1904.41,1335.00,270,top
-X8/C2,"0603","(unknown)",1904.41,1215.00,90,top
-X8/R3,"0603","(unknown)",2394.41,1125.00,0,top
-X8/C3,"0603","(unknown)",2419.41,1215.00,90,top
-X8/U2,"SO14","(unknown)",2159.41,1275.00,90,top
-X8/R1,"0603","(unknown)",1929.41,1415.00,180,top
-X8/R2,"0603","(unknown)",1929.16,1123.40,180,top
-X9/R1,"0603","(unknown)",1114.16,1413.40,180,top
-X9/R3,"0603","(unknown)",1579.41,1125.00,0,top
-X9/C1,"0603","(unknown)",1089.41,1335.00,270,top
-X9/C4,"0603","(unknown)",1604.41,1335.00,270,top
-X9/U2,"SO14","(unknown)",1341.66,1273.40,90,top
-X9/R2,"0603","(unknown)",1114.41,1125.00,180,top
-X9/C2,"0603","(unknown)",1089.41,1215.00,90,top
-X9/C3,"0603","(unknown)",1604.41,1215.00,90,top
-X9/R4,"0603","(unknown)",1579.41,1415.00,0,top
-C16,"0603","(unknown)",3061.88,1133.81,270,top
-C17,"0603","(unknown)",3049.64,1390.09,270,top
-U1,"SO16","(unknown)",2849.38,1283.22,90,top
-C8,"0603","(unknown)",1414.41,3210.00,90,top
-U3,"SOT223","(unknown)",1277.74,3305.29,270,bottom
-D2,"0805","(unknown)",2488.55,3495.00,0,top
-D6,"0805","(unknown)",2488.98,3355.00,0,top
-R15,"0603","(unknown)",2634.41,3355.00,180,top
-R14,"0603","(unknown)",2633.98,3425.00,180,top
-R13,"0603","(unknown)",2633.98,3495.00,180,top
-D5,"0805","(unknown)",2488.55,3425.00,0,top
-X3/U4,"TSSOP16","(unknown)",3857.91,2407.71,270,bottom
-X2/U4,"TSSOP16","(unknown)",3854.41,3000.00,270,bottom
-X1/U4,"TSSOP16","(unknown)",3849.41,3605.00,270,bottom
-U6,"LQFP64_10","(unknown)",2772.40,2808.29,180,top
-U8,"beaglebone","(unknown)",2155.81,2723.29,90,top
-CONN12,"22-23-2031","(unknown)",854.41,2300.00,90,top
-X8/R4,"0603","(unknown)",2385.00,1415.00,0,top
-D7,"0805","(unknown)",959.41,2080.00,270,top
-X14/D1,"0805","(unknown)",1704.41,2450.00,90,top
-X14/R13,"0603","(unknown)",1714.41,2344.41,270,top
-R17,"0603","(unknown)",1029.41,2140.00,90,top
-R1,"0603","(unknown)",2634.41,3565.00,180,top
-D1,"0805","(unknown)",2488.98,3565.00,0,top
-X9/R9,"0603","(unknown)",1666.58,1100.09,90,top
-X9/R5,"0603","(unknown)",1026.83,1435.17,270,top
-X8/R12,"0603","(unknown)",2480.08,1337.08,270,top
-X8/R10,"0603","(unknown)",2484.41,1215.00,90,top
-X8/R9,"0603","(unknown)",2484.41,1050.00,90,top
-X8/R8,"0603","(unknown)",1844.41,1215.00,90,top
-X14/C6,"1210","(unknown)",1509.41,1960.00,0,top
-X14/C5,"0805","(unknown)",1609.41,2055.00,0,top
-X14/C2,"0805","(unknown)",1474.41,2125.00,0,top
-X9/R12,"0603","(unknown)",1659.75,1337.78,270,top
-X9/R11,"0603","(unknown)",1579.75,1480.05,180,top
-X9/R10,"0603","(unknown)",1664.41,1215.00,90,top
-X9/R8,"0603","(unknown)",1024.41,1215.00,90,top
-X9/R7,"0603","(unknown)",1024.01,1108.76,90,top
-X9/R6,"0603","(unknown)",1027.90,1335.76,270,top
-X8/R11,"0603","(unknown)",2385.14,1477.54,180,top
-X8/R7,"0603","(unknown)",1844.41,1105.00,90,top
-X8/R6,"0603","(unknown)",1849.83,1335.12,270,top
-X8/R5,"0603","(unknown)",1995.59,1483.46,0,top
-X14/R6,"0805","(unknown)",1610.28,2123.70,0,top
-X16/C4,"1210","(unknown)",3429.41,924.99,90,top
-X16/R4,"0603","(unknown)",3694.41,719.99,180,top
-X16/R3,"0603","(unknown)",3593.82,715.00,0,top
-X16/R2,"0603","(unknown)",3593.82,655.00,0,top
-X16/R5,"0805","(unknown)",3749.41,549.56,270,top
-X16/C3,"1210","(unknown)",3299.41,924.99,90,top
-X16/U3,"TOPMOD","(unknown)",3719.41,853.19,0,top
-X16/D1,"0805","(unknown)",3979.41,944.99,90,top
-X16/R13,"0603","(unknown)",3979.41,819.40,270,top
-X16/C2,"0805","(unknown)",3739.41,660.00,0,top
-X16/C6,"1210","(unknown)",3874.41,460.00,0,top
-X16/C5,"0805","(unknown)",3854.41,585.00,0,top
-X16/R6,"0805","(unknown)",3879.41,665.00,0,top
-X9/C5,"0603","(unknown)",1344.41,1480.00,180,top
diff --git a/bbb_cape/schematic/gerbers/20140117/cape.zip b/bbb_cape/schematic/gerbers/20140117/cape.zip
deleted file mode 100644
index ad98078..0000000
--- a/bbb_cape/schematic/gerbers/20140117/cape.zip
+++ /dev/null
Binary files differ
diff --git a/bbb_cape/schematic/gerbers/20140120/cape.bottom.gbr b/bbb_cape/schematic/gerbers/20140120/cape.bottom.gbr
deleted file mode 100644
index 7daa026..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.bottom.gbr
+++ /dev/null
@@ -1,4358 +0,0 @@
-G04 start of page 5 for group 3 idx 3 *

-G04 Title: 971 BBB Cape, bottom *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Mon Jan 20 21:04:42 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNBOTTOM*%

-%ADD271C,0.2460*%

-%ADD270C,0.0460*%

-%ADD269C,0.2000*%

-%ADD268C,0.1285*%

-%ADD267C,0.0400*%

-%ADD266C,0.0350*%

-%ADD265C,0.0600*%

-%ADD264C,0.0360*%

-%ADD263C,0.0200*%

-%ADD262R,0.0345X0.0345*%

-%ADD261R,0.1220X0.1220*%

-%ADD260R,0.0560X0.0560*%

-%ADD259R,0.0512X0.0512*%

-%ADD258R,0.0180X0.0180*%

-%ADD257R,0.0295X0.0295*%

-%ADD256R,0.0130X0.0130*%

-%ADD255C,0.2660*%

-%ADD254C,0.0660*%

-%ADD253C,0.2200*%

-%ADD252C,0.1830*%

-%ADD251C,0.0650*%

-%ADD250C,0.0480*%

-%ADD249C,0.0380*%

-%ADD248C,0.0500*%

-%ADD247C,0.0250*%

-%ADD246C,0.0080*%

-%ADD245C,0.0100*%

-%ADD244C,0.0001*%

-G54D244*G36*

-X122941Y305000D02*Y331500D01*

-X107941D01*

-Y360000D01*

-X156941D01*

-Y342500D01*

-X130941D01*

-Y305000D01*

-X122941D01*

-G37*

-G36*

-X133441Y318000D02*Y340000D01*

-X155941D01*

-Y318000D01*

-X133441D01*

-G37*

-G36*

-X218441Y217500D02*X177941D01*

-Y238500D01*

-X218441D01*

-Y217500D01*

-G37*

-G36*

-X207941Y215000D02*X212441D01*

-Y210000D01*

-X207941D01*

-Y215000D01*

-G37*

-G36*

-X201441Y240000D02*X205941D01*

-Y235000D01*

-X201441D01*

-Y240000D01*

-G37*

-G36*

-X191441Y239500D02*X195941D01*

-Y234500D01*

-X191441D01*

-Y239500D01*

-G37*

-G36*

-X174941Y230500D02*X179441D01*

-Y225500D01*

-X174941D01*

-Y230500D01*

-G37*

-G36*

-Y220000D02*X179441D01*

-Y215000D01*

-X174941D01*

-Y220000D01*

-G37*

-G36*

-X182941D02*X187441D01*

-Y215000D01*

-X182941D01*

-Y220000D01*

-G37*

-G36*

-X191441Y215000D02*X195941D01*

-Y210000D01*

-X191441D01*

-Y215000D01*

-G37*

-G36*

-X199941D02*X204441D01*

-Y210000D01*

-X199941D01*

-Y215000D01*

-G37*

-G36*

-X179441Y261000D02*X183941D01*

-Y256000D01*

-X179441D01*

-Y261000D01*

-G37*

-G36*

-X217941Y217500D02*X222441D01*

-Y212500D01*

-X217941D01*

-Y217500D01*

-G37*

-G36*

-X222441Y223000D02*X226941D01*

-Y218000D01*

-X222441D01*

-Y223000D01*

-G37*

-G36*

-X222941Y229000D02*X227441D01*

-Y224000D01*

-X222941D01*

-Y229000D01*

-G37*

-G36*

-X222441Y238000D02*X226941D01*

-Y233000D01*

-X222441D01*

-Y238000D01*

-G37*

-G36*

-X221941Y246500D02*X226441D01*

-Y241500D01*

-X221941D01*

-Y246500D01*

-G37*

-G36*

-X222441Y238000D02*X226941D01*

-Y233000D01*

-X222441D01*

-Y238000D01*

-G37*

-G36*

-X233941D02*X238441D01*

-Y233000D01*

-X233941D01*

-Y238000D01*

-G37*

-G36*

-X237001Y264297D02*X241501D01*

-Y259297D01*

-X237001D01*

-Y264297D01*

-G37*

-G36*

-X195941Y265000D02*X200441D01*

-Y260000D01*

-X195941D01*

-Y265000D01*

-G37*

-G36*

-Y272000D02*X200441D01*

-Y267000D01*

-X195941D01*

-Y272000D01*

-G37*

-G36*

-X202941Y279500D02*X207441D01*

-Y274500D01*

-X202941D01*

-Y279500D01*

-G37*

-G36*

-X210441Y240500D02*X214941D01*

-Y235500D01*

-X210441D01*

-Y240500D01*

-G37*

-G36*

-X253098Y217146D02*X261941Y208303D01*

-Y201500D01*

-X253098D01*

-Y209121D01*

-X253218Y209223D01*

-X253402Y209439D01*

-X253550Y209680D01*

-X253658Y209942D01*

-X253724Y210218D01*

-X253741Y210500D01*

-X253724Y210782D01*

-X253658Y211058D01*

-X253550Y211320D01*

-X253402Y211561D01*

-X253218Y211777D01*

-X253098Y211879D01*

-Y217146D01*

-G37*

-G36*

-Y247050D02*X261941D01*

-Y224806D01*

-X253098Y233649D01*

-Y247050D01*

-G37*

-G36*

-Y264380D02*X261941D01*

-Y256200D01*

-X253098D01*

-Y259780D01*

-X253101Y259780D01*

-X253423Y259805D01*

-X253736Y259880D01*

-X254035Y260004D01*

-X254310Y260172D01*

-X254555Y260382D01*

-X254765Y260627D01*

-X254933Y260902D01*

-X255057Y261201D01*

-X255132Y261514D01*

-X255151Y261836D01*

-X255132Y262158D01*

-X255057Y262471D01*

-X254933Y262770D01*

-X254765Y263045D01*

-X254555Y263290D01*

-X254310Y263500D01*

-X254035Y263668D01*

-X253736Y263792D01*

-X253423Y263867D01*

-X253101Y263892D01*

-X253098Y263892D01*

-Y264380D01*

-G37*

-G36*

-Y270771D02*X261941D01*

-Y270656D01*

-X261816Y270604D01*

-X261541Y270436D01*

-X261296Y270226D01*

-X261086Y269981D01*

-X260918Y269706D01*

-X260794Y269407D01*

-X260719Y269094D01*

-X260694Y268772D01*

-X260719Y268450D01*

-X260794Y268137D01*

-X260918Y267838D01*

-X261086Y267563D01*

-X261296Y267318D01*

-X261541Y267108D01*

-X261816Y266940D01*

-X261941Y266888D01*

-Y266780D01*

-X253098D01*

-Y270771D01*

-G37*

-G36*

-Y273875D02*X261941D01*

-Y273171D01*

-X253098D01*

-Y273875D01*

-G37*

-G36*

-Y279016D02*X254239Y277875D01*

-X253098D01*

-Y279016D01*

-G37*

-G36*

-X239299Y247050D02*X253098D01*

-Y233649D01*

-X248741Y238006D01*

-X248724Y238282D01*

-X248658Y238558D01*

-X248550Y238820D01*

-X248402Y239061D01*

-X248218Y239277D01*

-X248002Y239461D01*

-X247761Y239609D01*

-X247499Y239717D01*

-X247223Y239783D01*

-X246941Y239806D01*

-X246659Y239783D01*

-X246383Y239717D01*

-X246121Y239609D01*

-X245880Y239461D01*

-X245664Y239277D01*

-X245480Y239061D01*

-X245332Y238820D01*

-X245224Y238558D01*

-X245158Y238282D01*

-X245135Y238000D01*

-X245158Y237718D01*

-X245224Y237442D01*

-X245332Y237180D01*

-X245480Y236939D01*

-X245664Y236723D01*

-X245880Y236539D01*

-X246121Y236391D01*

-X246383Y236283D01*

-X246659Y236217D01*

-X246941Y236194D01*

-X247143Y236210D01*

-X251647Y231706D01*

-X251224Y231283D01*

-X251223Y231283D01*

-X250941Y231306D01*

-X250659Y231283D01*

-X250383Y231217D01*

-X250121Y231109D01*

-X249880Y230961D01*

-X249664Y230777D01*

-X249480Y230561D01*

-X249332Y230320D01*

-X249224Y230058D01*

-X249158Y229782D01*

-X249135Y229500D01*

-X248241D01*

-X248224Y229782D01*

-X248158Y230058D01*

-X248050Y230320D01*

-X247902Y230561D01*

-X247718Y230777D01*

-X247502Y230961D01*

-X247261Y231109D01*

-X246999Y231217D01*

-X246723Y231283D01*

-X246441Y231306D01*

-X246159Y231283D01*

-X245883Y231217D01*

-X245621Y231109D01*

-X245380Y230961D01*

-X245164Y230777D01*

-X244980Y230561D01*

-X244832Y230320D01*

-X244724Y230058D01*

-X244658Y229782D01*

-X244635Y229500D01*

-X244241D01*

-X244224Y229782D01*

-X244158Y230058D01*

-X244050Y230320D01*

-X243902Y230561D01*

-X243718Y230777D01*

-X243502Y230961D01*

-X243261Y231109D01*

-X242999Y231217D01*

-X242723Y231283D01*

-X242441Y231306D01*

-X242159Y231283D01*

-X241883Y231217D01*

-X241621Y231109D01*

-X241380Y230961D01*

-X241164Y230777D01*

-X240980Y230561D01*

-X240832Y230320D01*

-X240724Y230058D01*

-X240658Y229782D01*

-X240635Y229500D01*

-X240658Y229218D01*

-X240724Y228942D01*

-X240832Y228680D01*

-X240980Y228439D01*

-X241164Y228223D01*

-X241380Y228039D01*

-X241621Y227891D01*

-X241883Y227783D01*

-X242159Y227717D01*

-X242441Y227694D01*

-X242542Y227702D01*

-X253098Y217146D01*

-Y211879D01*

-X253002Y211961D01*

-X252761Y212109D01*

-X252499Y212217D01*

-X252223Y212283D01*

-X251941Y212306D01*

-X251659Y212283D01*

-X251383Y212217D01*

-X251121Y212109D01*

-X250880Y211961D01*

-X250664Y211777D01*

-X250480Y211561D01*

-X250332Y211320D01*

-X250224Y211058D01*

-X250158Y210782D01*

-X250135Y210500D01*

-X250158Y210218D01*

-X250224Y209942D01*

-X250332Y209680D01*

-X250480Y209439D01*

-X250664Y209223D01*

-X250880Y209039D01*

-X251121Y208891D01*

-X251383Y208783D01*

-X251659Y208717D01*

-X251941Y208694D01*

-X252223Y208717D01*

-X252499Y208783D01*

-X252761Y208891D01*

-X253002Y209039D01*

-X253098Y209121D01*

-Y201500D01*

-X245672D01*

-X245724Y201718D01*

-X245741Y202000D01*

-X245724Y202282D01*

-X245658Y202558D01*

-X245550Y202820D01*

-X245402Y203061D01*

-X245218Y203277D01*

-X245002Y203461D01*

-X244761Y203609D01*

-X244499Y203717D01*

-X244223Y203783D01*

-X243941Y203806D01*

-X243659Y203783D01*

-X243383Y203717D01*

-X243121Y203609D01*

-X242880Y203461D01*

-X242664Y203277D01*

-X242480Y203061D01*

-X242332Y202820D01*

-X242224Y202558D01*

-X242158Y202282D01*

-X242135Y202000D01*

-X242158Y201718D01*

-X242210Y201500D01*

-X239299D01*

-Y247050D01*

-G37*

-G36*

-Y264380D02*X253098D01*

-Y263892D01*

-X252779Y263867D01*

-X252466Y263792D01*

-X252167Y263668D01*

-X251892Y263500D01*

-X251647Y263290D01*

-X251437Y263045D01*

-X251269Y262770D01*

-X251145Y262471D01*

-X251070Y262158D01*

-X251045Y261836D01*

-X251070Y261514D01*

-X251145Y261201D01*

-X251269Y260902D01*

-X251437Y260627D01*

-X251647Y260382D01*

-X251892Y260172D01*

-X252167Y260004D01*

-X252466Y259880D01*

-X252779Y259805D01*

-X253098Y259780D01*

-Y256200D01*

-X239299D01*

-Y260179D01*

-X239302Y260179D01*

-X239624Y260204D01*

-X239937Y260279D01*

-X240236Y260403D01*

-X240511Y260571D01*

-X240756Y260781D01*

-X240966Y261026D01*

-X241134Y261301D01*

-X241258Y261600D01*

-X241333Y261913D01*

-X241352Y262235D01*

-X241333Y262557D01*

-X241258Y262870D01*

-X241134Y263169D01*

-X240966Y263444D01*

-X240756Y263689D01*

-X240511Y263899D01*

-X240236Y264067D01*

-X239937Y264191D01*

-X239624Y264266D01*

-X239302Y264291D01*

-X239299Y264291D01*

-Y264380D01*

-G37*

-G36*

-Y270771D02*X253098D01*

-Y266780D01*

-X239299D01*

-Y270771D01*

-G37*

-G36*

-Y273875D02*X253098D01*

-Y273171D01*

-X239299D01*

-Y273875D01*

-G37*

-G36*

-Y277130D02*X239330Y277103D01*

-X239571Y276955D01*

-X239833Y276847D01*

-X240109Y276781D01*

-X240391Y276758D01*

-X240673Y276781D01*

-X240949Y276847D01*

-X241211Y276955D01*

-X241452Y277103D01*

-X241668Y277287D01*

-X241852Y277503D01*

-X242000Y277744D01*

-X242108Y278006D01*

-X242174Y278282D01*

-X242191Y278564D01*

-X242174Y278846D01*

-X242108Y279122D01*

-X242000Y279384D01*

-X241852Y279625D01*

-X241668Y279841D01*

-X241452Y280025D01*

-X241211Y280173D01*

-X240949Y280281D01*

-X240673Y280347D01*

-X240391Y280370D01*

-X240290Y280362D01*

-X239299Y281353D01*

-Y289533D01*

-X248871Y279961D01*

-X248902Y279925D01*

-X249045Y279802D01*

-X249108Y279764D01*

-X249207Y279703D01*

-X249279Y279674D01*

-X249381Y279631D01*

-X249565Y279587D01*

-X249565Y279587D01*

-X249753Y279572D01*

-X249800Y279576D01*

-X250553D01*

-X250554Y279576D01*

-X250554Y279576D01*

-X252538D01*

-X253098Y279016D01*

-Y277875D01*

-X248887D01*

-X247586Y279176D01*

-X247588Y279186D01*

-X247607Y279508D01*

-X247588Y279830D01*

-X247513Y280143D01*

-X247389Y280442D01*

-X247221Y280717D01*

-X247011Y280962D01*

-X246766Y281172D01*

-X246491Y281340D01*

-X246192Y281464D01*

-X245879Y281539D01*

-X245557Y281564D01*

-X245235Y281539D01*

-X244922Y281464D01*

-X244623Y281340D01*

-X244348Y281172D01*

-X244103Y280962D01*

-X243893Y280717D01*

-X243725Y280442D01*

-X243601Y280143D01*

-X243526Y279830D01*

-X243501Y279508D01*

-X243526Y279186D01*

-X243601Y278873D01*

-X243725Y278574D01*

-X243893Y278299D01*

-X244103Y278054D01*

-X244348Y277844D01*

-X244623Y277676D01*

-X244922Y277552D01*

-X245235Y277477D01*

-X245557Y277452D01*

-X245879Y277477D01*

-X245889Y277479D01*

-X247093Y276275D01*

-X239299D01*

-Y277130D01*

-G37*

-G36*

-Y281353D02*X231641Y289011D01*

-Y290500D01*

-X238332D01*

-X239299Y289533D01*

-Y281353D01*

-G37*

-G36*

-X236438Y247050D02*X239299D01*

-Y201500D01*

-X236845D01*

-X236474Y201589D01*

-X236438Y201592D01*

-Y233695D01*

-X236441Y233694D01*

-X236723Y233717D01*

-X236999Y233783D01*

-X237261Y233891D01*

-X237502Y234039D01*

-X237718Y234223D01*

-X237902Y234439D01*

-X238050Y234680D01*

-X238158Y234942D01*

-X238224Y235218D01*

-X238241Y235500D01*

-X238224Y235782D01*

-X238158Y236058D01*

-X238050Y236320D01*

-X237902Y236561D01*

-X237718Y236777D01*

-X237502Y236961D01*

-X237261Y237109D01*

-X236999Y237217D01*

-X236723Y237283D01*

-X236441Y237306D01*

-X236438Y237305D01*

-Y247050D01*

-G37*

-G36*

-Y264380D02*X239299D01*

-Y264291D01*

-X238980Y264266D01*

-X238667Y264191D01*

-X238368Y264067D01*

-X238093Y263899D01*

-X237848Y263689D01*

-X237638Y263444D01*

-X237470Y263169D01*

-X237346Y262870D01*

-X237271Y262557D01*

-X237246Y262235D01*

-X237271Y261913D01*

-X237346Y261600D01*

-X237470Y261301D01*

-X237638Y261026D01*

-X237848Y260781D01*

-X238093Y260571D01*

-X238368Y260403D01*

-X238667Y260279D01*

-X238980Y260204D01*

-X239299Y260179D01*

-Y256200D01*

-X236438D01*

-Y264380D01*

-G37*

-G36*

-Y270771D02*X239299D01*

-Y266780D01*

-X236438D01*

-Y270771D01*

-G37*

-G36*

-Y273875D02*X239299D01*

-Y273171D01*

-X236438D01*

-Y273875D01*

-G37*

-G36*

-Y280820D02*X238593Y278665D01*

-X238585Y278564D01*

-X238608Y278282D01*

-X238674Y278006D01*

-X238782Y277744D01*

-X238930Y277503D01*

-X239114Y277287D01*

-X239299Y277130D01*

-Y276275D01*

-X236438D01*

-Y280820D01*

-G37*

-G36*

-X224938Y247270D02*X225159Y247217D01*

-X225441Y247194D01*

-X225723Y247217D01*

-X225999Y247283D01*

-X226261Y247391D01*

-X226502Y247539D01*

-X226718Y247723D01*

-X226902Y247939D01*

-X227050Y248180D01*

-X227158Y248442D01*

-X227224Y248718D01*

-X227229Y248800D01*

-X230371D01*

-X230159Y248783D01*

-X229883Y248717D01*

-X229621Y248609D01*

-X229380Y248461D01*

-X229164Y248277D01*

-X228980Y248061D01*

-X228832Y247820D01*

-X228724Y247558D01*

-X228658Y247282D01*

-X228635Y247000D01*

-X228658Y246718D01*

-X228724Y246442D01*

-X228832Y246180D01*

-X228980Y245939D01*

-X229164Y245723D01*

-X229380Y245539D01*

-X229621Y245391D01*

-X229883Y245283D01*

-X230159Y245217D01*

-X230441Y245194D01*

-X230723Y245217D01*

-X230999Y245283D01*

-X231261Y245391D01*

-X231502Y245539D01*

-X231718Y245723D01*

-X231902Y245939D01*

-X232050Y246180D01*

-X232158Y246442D01*

-X232224Y246718D01*

-X232241Y247000D01*

-X232238Y247050D01*

-X236438D01*

-Y237305D01*

-X236159Y237283D01*

-X235883Y237217D01*

-X235621Y237109D01*

-X235380Y236961D01*

-X235164Y236777D01*

-X234980Y236561D01*

-X234832Y236320D01*

-X234724Y236058D01*

-X234658Y235782D01*

-X234635Y235500D01*

-X234658Y235218D01*

-X234724Y234942D01*

-X234832Y234680D01*

-X234980Y234439D01*

-X235164Y234223D01*

-X235380Y234039D01*

-X235621Y233891D01*

-X235883Y233783D01*

-X236159Y233717D01*

-X236438Y233695D01*

-Y201592D01*

-X235799Y201642D01*

-X235124Y201589D01*

-X234753Y201500D01*

-X226845D01*

-X226474Y201589D01*

-X225799Y201642D01*

-X225124Y201589D01*

-X224938Y201544D01*

-Y218695D01*

-X224941Y218694D01*

-X225223Y218717D01*

-X225499Y218783D01*

-X225761Y218891D01*

-X226002Y219039D01*

-X226218Y219223D01*

-X226402Y219439D01*

-X226550Y219680D01*

-X226658Y219942D01*

-X226724Y220218D01*

-X226741Y220500D01*

-X226724Y220782D01*

-X226658Y221058D01*

-X226550Y221320D01*

-X226402Y221561D01*

-X226218Y221777D01*

-X226002Y221961D01*

-X225761Y222109D01*

-X225499Y222217D01*

-X225223Y222283D01*

-X224941Y222306D01*

-X224938Y222305D01*

-Y224770D01*

-X225159Y224717D01*

-X225441Y224694D01*

-X225723Y224717D01*

-X225999Y224783D01*

-X226261Y224891D01*

-X226502Y225039D01*

-X226718Y225223D01*

-X226902Y225439D01*

-X227050Y225680D01*

-X227158Y225942D01*

-X227224Y226218D01*

-X227241Y226500D01*

-X227224Y226782D01*

-X227158Y227058D01*

-X227050Y227320D01*

-X226902Y227561D01*

-X226718Y227777D01*

-X226502Y227961D01*

-X226261Y228109D01*

-X225999Y228217D01*

-X225723Y228283D01*

-X225441Y228306D01*

-X225159Y228283D01*

-X224938Y228230D01*

-Y233695D01*

-X224941Y233694D01*

-X225223Y233717D01*

-X225499Y233783D01*

-X225761Y233891D01*

-X226002Y234039D01*

-X226218Y234223D01*

-X226402Y234439D01*

-X226550Y234680D01*

-X226658Y234942D01*

-X226724Y235218D01*

-X226741Y235500D01*

-X226724Y235782D01*

-X226658Y236058D01*

-X226550Y236320D01*

-X226402Y236561D01*

-X226218Y236777D01*

-X226002Y236961D01*

-X225761Y237109D01*

-X225499Y237217D01*

-X225223Y237283D01*

-X224941Y237306D01*

-X224938Y237305D01*

-Y242268D01*

-X224999Y242283D01*

-X225261Y242391D01*

-X225502Y242539D01*

-X225718Y242723D01*

-X225902Y242939D01*

-X226050Y243180D01*

-X226158Y243442D01*

-X226224Y243718D01*

-X226241Y244000D01*

-X226224Y244282D01*

-X226158Y244558D01*

-X226050Y244820D01*

-X225902Y245061D01*

-X225718Y245277D01*

-X225502Y245461D01*

-X225261Y245609D01*

-X224999Y245717D01*

-X224938Y245732D01*

-Y247270D01*

-G37*

-G36*

-X220438Y252921D02*X220607Y252723D01*

-X220823Y252539D01*

-X221064Y252391D01*

-X221326Y252283D01*

-X221602Y252217D01*

-X221884Y252194D01*

-X222166Y252217D01*

-X222442Y252283D01*

-X222682Y252382D01*

-X222658Y252282D01*

-X222635Y252000D01*

-X222658Y251718D01*

-X222724Y251442D01*

-X222832Y251180D01*

-X222980Y250939D01*

-X223164Y250723D01*

-X223380Y250539D01*

-X223621Y250391D01*

-X223883Y250283D01*

-X224121Y250226D01*

-X223980Y250061D01*

-X223832Y249820D01*

-X223724Y249558D01*

-X223658Y249282D01*

-X223635Y249000D01*

-X223658Y248718D01*

-X223724Y248442D01*

-X223832Y248180D01*

-X223980Y247939D01*

-X224164Y247723D01*

-X224380Y247539D01*

-X224621Y247391D01*

-X224883Y247283D01*

-X224938Y247270D01*

-Y245732D01*

-X224723Y245783D01*

-X224441Y245806D01*

-X224159Y245783D01*

-X223883Y245717D01*

-X223621Y245609D01*

-X223380Y245461D01*

-X223164Y245277D01*

-X222980Y245061D01*

-X222832Y244820D01*

-X222724Y244558D01*

-X222658Y244282D01*

-X222635Y244000D01*

-X222658Y243718D01*

-X222724Y243442D01*

-X222832Y243180D01*

-X222980Y242939D01*

-X223164Y242723D01*

-X223380Y242539D01*

-X223621Y242391D01*

-X223883Y242283D01*

-X224159Y242217D01*

-X224441Y242194D01*

-X224723Y242217D01*

-X224938Y242268D01*

-Y237305D01*

-X224659Y237283D01*

-X224383Y237217D01*

-X224121Y237109D01*

-X223880Y236961D01*

-X223664Y236777D01*

-X223480Y236561D01*

-X223332Y236320D01*

-X223224Y236058D01*

-X223158Y235782D01*

-X223135Y235500D01*

-X223158Y235218D01*

-X223224Y234942D01*

-X223332Y234680D01*

-X223480Y234439D01*

-X223664Y234223D01*

-X223880Y234039D01*

-X224121Y233891D01*

-X224383Y233783D01*

-X224659Y233717D01*

-X224938Y233695D01*

-Y228230D01*

-X224883Y228217D01*

-X224621Y228109D01*

-X224380Y227961D01*

-X224164Y227777D01*

-X223980Y227561D01*

-X223832Y227320D01*

-X223724Y227058D01*

-X223658Y226782D01*

-X223635Y226500D01*

-X223658Y226218D01*

-X223724Y225942D01*

-X223832Y225680D01*

-X223980Y225439D01*

-X224164Y225223D01*

-X224380Y225039D01*

-X224621Y224891D01*

-X224883Y224783D01*

-X224938Y224770D01*

-Y222305D01*

-X224659Y222283D01*

-X224383Y222217D01*

-X224121Y222109D01*

-X223880Y221961D01*

-X223664Y221777D01*

-X223480Y221561D01*

-X223332Y221320D01*

-X223224Y221058D01*

-X223158Y220782D01*

-X223135Y220500D01*

-X223158Y220218D01*

-X223224Y219942D01*

-X223332Y219680D01*

-X223480Y219439D01*

-X223664Y219223D01*

-X223880Y219039D01*

-X224121Y218891D01*

-X224383Y218783D01*

-X224659Y218717D01*

-X224938Y218695D01*

-Y201544D01*

-X224753Y201500D01*

-X220438D01*

-Y213195D01*

-X220441Y213194D01*

-X220723Y213217D01*

-X220999Y213283D01*

-X221261Y213391D01*

-X221502Y213539D01*

-X221718Y213723D01*

-X221902Y213939D01*

-X222050Y214180D01*

-X222158Y214442D01*

-X222224Y214718D01*

-X222241Y215000D01*

-X222224Y215282D01*

-X222158Y215558D01*

-X222050Y215820D01*

-X221902Y216061D01*

-X221718Y216277D01*

-X221502Y216461D01*

-X221261Y216609D01*

-X220999Y216717D01*

-X220723Y216783D01*

-X220441Y216806D01*

-X220438Y216805D01*

-Y252921D01*

-G37*

-G36*

-Y263799D02*X220447Y263797D01*

-X220729Y263774D01*

-X221011Y263797D01*

-X221287Y263863D01*

-X221549Y263971D01*

-X221790Y264119D01*

-X222006Y264303D01*

-X222071Y264380D01*

-X236438D01*

-Y256200D01*

-X222931D01*

-X222884Y256204D01*

-X222696Y256189D01*

-X222512Y256145D01*

-X222338Y256073D01*

-X222176Y255974D01*

-X222176Y255974D01*

-X222033Y255851D01*

-X222002Y255815D01*

-X221985Y255798D01*

-X221884Y255806D01*

-X221602Y255783D01*

-X221326Y255717D01*

-X221064Y255609D01*

-X220823Y255461D01*

-X220607Y255277D01*

-X220438Y255079D01*

-Y257243D01*

-X220441Y257243D01*

-X220794Y257271D01*

-X221138Y257354D01*

-X221466Y257489D01*

-X221768Y257674D01*

-X222037Y257904D01*

-X222267Y258173D01*

-X222452Y258475D01*

-X222587Y258803D01*

-X222670Y259147D01*

-X222698Y259500D01*

-X222670Y259853D01*

-X222587Y260197D01*

-X222452Y260525D01*

-X222267Y260827D01*

-X222032Y261091D01*

-X220438Y262685D01*

-Y263799D01*

-G37*

-G36*

-Y270771D02*X223941D01*

-X223941Y270771D01*

-X236438D01*

-Y266780D01*

-X222071D01*

-X222006Y266857D01*

-X221790Y267041D01*

-X221549Y267189D01*

-X221287Y267297D01*

-X221011Y267363D01*

-X220729Y267386D01*

-X220447Y267363D01*

-X220438Y267361D01*

-Y270771D01*

-G37*

-G36*

-Y274426D02*X220617Y274252D01*

-X220642Y274224D01*

-X220785Y274101D01*

-X220795Y274096D01*

-X220801Y274090D01*

-X220874Y274047D01*

-X220947Y274002D01*

-X220955Y273999D01*

-X220964Y273994D01*

-X221043Y273963D01*

-X221121Y273930D01*

-X221130Y273928D01*

-X221139Y273924D01*

-X221222Y273906D01*

-X221305Y273886D01*

-X221313Y273886D01*

-X221324Y273883D01*

-X221512Y273871D01*

-X221550Y273875D01*

-X236438D01*

-Y273171D01*

-X223941D01*

-X223941Y273171D01*

-X221111D01*

-X221050Y273320D01*

-X220902Y273561D01*

-X220718Y273777D01*

-X220502Y273961D01*

-X220438Y274000D01*

-Y274426D01*

-G37*

-G36*

-Y290500D02*X229241D01*

-Y288561D01*

-X229237Y288514D01*

-X229252Y288326D01*

-X229296Y288142D01*

-X229368Y287968D01*

-X229467Y287806D01*

-X229467Y287806D01*

-X229590Y287663D01*

-X229626Y287632D01*

-X236438Y280820D01*

-Y276275D01*

-X221979D01*

-X220438Y277767D01*

-Y290500D01*

-G37*

-G36*

-Y255079D02*X220423Y255061D01*

-X220275Y254820D01*

-X220167Y254558D01*

-X220101Y254282D01*

-X220078Y254000D01*

-X220101Y253718D01*

-X220167Y253442D01*

-X220275Y253180D01*

-X220423Y252939D01*

-X220438Y252921D01*

-Y216805D01*

-X220159Y216783D01*

-X219883Y216717D01*

-X219621Y216609D01*

-X219380Y216461D01*

-X219164Y216277D01*

-X218980Y216061D01*

-X218832Y215820D01*

-X218724Y215558D01*

-X218658Y215282D01*

-X218635Y215000D01*

-X218658Y214718D01*

-X218724Y214442D01*

-X218832Y214180D01*

-X218980Y213939D01*

-X219164Y213723D01*

-X219380Y213539D01*

-X219621Y213391D01*

-X219883Y213283D01*

-X220159Y213217D01*

-X220438Y213195D01*

-Y201500D01*

-X216845D01*

-X216474Y201589D01*

-X215799Y201642D01*

-X215124Y201589D01*

-X214753Y201500D01*

-X212938D01*

-Y218913D01*

-X214276Y218914D01*

-X214506Y218969D01*

-X214724Y219059D01*

-X214925Y219183D01*

-X215105Y219336D01*

-X215258Y219516D01*

-X215382Y219717D01*

-X215472Y219935D01*

-X215527Y220165D01*

-X215541Y220400D01*

-X215527Y232835D01*

-X215472Y233065D01*

-X215382Y233283D01*

-X215258Y233484D01*

-X215105Y233664D01*

-X214925Y233817D01*

-X214724Y233941D01*

-X214506Y234031D01*

-X214276Y234086D01*

-X214041Y234100D01*

-X212938Y234099D01*

-Y236195D01*

-X212941Y236194D01*

-X213223Y236217D01*

-X213499Y236283D01*

-X213761Y236391D01*

-X214002Y236539D01*

-X214218Y236723D01*

-X214402Y236939D01*

-X214550Y237180D01*

-X214658Y237442D01*

-X214724Y237718D01*

-X214741Y238000D01*

-X214724Y238282D01*

-X214658Y238558D01*

-X214550Y238820D01*

-X214402Y239061D01*

-X214218Y239277D01*

-X214002Y239461D01*

-X213761Y239609D01*

-X213499Y239717D01*

-X213223Y239783D01*

-X212941Y239806D01*

-X212938Y239805D01*

-Y243308D01*

-X215576Y243314D01*

-X215806Y243369D01*

-X216024Y243459D01*

-X216225Y243583D01*

-X216405Y243736D01*

-X216558Y243916D01*

-X216682Y244117D01*

-X216772Y244335D01*

-X216827Y244565D01*

-X216841Y244800D01*

-X216827Y257235D01*

-X216772Y257465D01*

-X216682Y257683D01*

-X216558Y257884D01*

-X216405Y258064D01*

-X216225Y258217D01*

-X216024Y258341D01*

-X215806Y258431D01*

-X215576Y258486D01*

-X215341Y258500D01*

-X214791Y258499D01*

-Y258957D01*

-X214800Y258957D01*

-X214953Y258994D01*

-X215098Y259054D01*

-X215233Y259136D01*

-X215352Y259239D01*

-X215455Y259358D01*

-X215537Y259493D01*

-X215597Y259638D01*

-X215634Y259791D01*

-X215643Y259948D01*

-X215641Y261043D01*

-X215716D01*

-X218850Y257909D01*

-X219114Y257674D01*

-X219416Y257489D01*

-X219744Y257354D01*

-X220088Y257271D01*

-X220438Y257243D01*

-Y255079D01*

-G37*

-G36*

-X212938Y234099D02*X210438Y234098D01*

-Y243302D01*

-X212938Y243308D01*

-Y239805D01*

-X212659Y239783D01*

-X212383Y239717D01*

-X212121Y239609D01*

-X211880Y239461D01*

-X211664Y239277D01*

-X211480Y239061D01*

-X211332Y238820D01*

-X211224Y238558D01*

-X211158Y238282D01*

-X211135Y238000D01*

-X211158Y237718D01*

-X211224Y237442D01*

-X211332Y237180D01*

-X211480Y236939D01*

-X211664Y236723D01*

-X211880Y236539D01*

-X212121Y236391D01*

-X212383Y236283D01*

-X212659Y236217D01*

-X212938Y236195D01*

-Y234099D01*

-G37*

-G36*

-Y201500D02*X210438D01*

-Y210695D01*

-X210441Y210694D01*

-X210723Y210717D01*

-X210999Y210783D01*

-X211261Y210891D01*

-X211502Y211039D01*

-X211718Y211223D01*

-X211902Y211439D01*

-X212050Y211680D01*

-X212158Y211942D01*

-X212224Y212218D01*

-X212241Y212500D01*

-X212224Y212782D01*

-X212158Y213058D01*

-X212050Y213320D01*

-X211902Y213561D01*

-X211718Y213777D01*

-X211502Y213961D01*

-X211261Y214109D01*

-X210999Y214217D01*

-X210723Y214283D01*

-X210441Y214306D01*

-X210438Y214305D01*

-Y218911D01*

-X212938Y218913D01*

-Y201500D01*

-G37*

-G36*

-X210438Y290500D02*X220438D01*

-Y277767D01*

-X219237Y278931D01*

-X219241Y279000D01*

-X219224Y279282D01*

-X219158Y279558D01*

-X219050Y279820D01*

-X218902Y280061D01*

-X218718Y280277D01*

-X218502Y280461D01*

-X218261Y280609D01*

-X217999Y280717D01*

-X217723Y280783D01*

-X217441Y280806D01*

-X217159Y280783D01*

-X216883Y280717D01*

-X216621Y280609D01*

-X216380Y280461D01*

-X216164Y280277D01*

-X215980Y280061D01*

-X215832Y279820D01*

-X215724Y279558D01*

-X215658Y279282D01*

-X215635Y279000D01*

-X215658Y278718D01*

-X215724Y278442D01*

-X215832Y278180D01*

-X215980Y277939D01*

-X216164Y277723D01*

-X216380Y277539D01*

-X216621Y277391D01*

-X216883Y277283D01*

-X217159Y277217D01*

-X217441Y277194D01*

-X217570Y277205D01*

-X220438Y274426D01*

-Y274000D01*

-X220261Y274109D01*

-X219999Y274217D01*

-X219723Y274283D01*

-X219441Y274306D01*

-X219159Y274283D01*

-X218883Y274217D01*

-X218621Y274109D01*

-X218380Y273961D01*

-X218164Y273777D01*

-X217980Y273561D01*

-X217832Y273320D01*

-X217724Y273058D01*

-X217658Y272782D01*

-X217635Y272500D01*

-X217658Y272218D01*

-X217724Y271942D01*

-X217832Y271680D01*

-X217980Y271439D01*

-X218164Y271223D01*

-X218380Y271039D01*

-X218621Y270891D01*

-X218883Y270783D01*

-X219159Y270717D01*

-X219441Y270694D01*

-X219723Y270717D01*

-X219943Y270769D01*

-X219970Y270767D01*

-X220017Y270771D01*

-X220438D01*

-Y267361D01*

-X220171Y267297D01*

-X219909Y267189D01*

-X219668Y267041D01*

-X219452Y266857D01*

-X219268Y266641D01*

-X219120Y266400D01*

-X219012Y266138D01*

-X218946Y265862D01*

-X218923Y265580D01*

-X218946Y265298D01*

-X219012Y265022D01*

-X219120Y264760D01*

-X219268Y264519D01*

-X219452Y264303D01*

-X219668Y264119D01*

-X219909Y263971D01*

-X220171Y263863D01*

-X220438Y263799D01*

-Y262685D01*

-X218301Y264822D01*

-X218244Y264889D01*

-X217975Y265119D01*

-X217975Y265119D01*

-X217860Y265189D01*

-X217673Y265304D01*

-X217441Y265400D01*

-X217345Y265439D01*

-X217001Y265522D01*

-X216648Y265550D01*

-X216560Y265543D01*

-X215634D01*

-X215634Y266009D01*

-X215597Y266162D01*

-X215537Y266307D01*

-X215455Y266442D01*

-X215352Y266561D01*

-X215233Y266664D01*

-X215098Y266746D01*

-X214953Y266806D01*

-X214800Y266843D01*

-X214643Y266852D01*

-X214334Y266851D01*

-Y267948D01*

-X214341Y268036D01*

-X214313Y268389D01*

-X214313Y268389D01*

-X214230Y268733D01*

-X214095Y269061D01*

-X213910Y269363D01*

-X213680Y269632D01*

-X213613Y269689D01*

-X213268Y270034D01*

-X213266Y270954D01*

-X213229Y271107D01*

-X213169Y271252D01*

-X213087Y271387D01*

-X212984Y271506D01*

-X212865Y271609D01*

-X212730Y271691D01*

-X212585Y271751D01*

-X212432Y271788D01*

-X212275Y271797D01*

-X210438Y271792D01*

-Y290500D01*

-G37*

-G36*

-Y234098D02*X203441Y234093D01*

-Y235769D01*

-X203659Y235717D01*

-X203941Y235694D01*

-X204223Y235717D01*

-X204499Y235783D01*

-X204761Y235891D01*

-X205002Y236039D01*

-X205218Y236223D01*

-X205402Y236439D01*

-X205550Y236680D01*

-X205658Y236942D01*

-X205724Y237218D01*

-X205741Y237500D01*

-X205724Y237782D01*

-X205658Y238058D01*

-X205550Y238320D01*

-X205402Y238561D01*

-X205218Y238777D01*

-X205002Y238961D01*

-X204761Y239109D01*

-X204499Y239217D01*

-X204223Y239283D01*

-X203941Y239306D01*

-X203659Y239283D01*

-X203441Y239231D01*

-Y243307D01*

-X206476Y243314D01*

-X206706Y243369D01*

-X206924Y243459D01*

-X207125Y243583D01*

-X207305Y243736D01*

-X207458Y243916D01*

-X207582Y244117D01*

-X207672Y244335D01*

-X207727Y244565D01*

-X207741Y244800D01*

-X207727Y257235D01*

-X207672Y257465D01*

-X207582Y257683D01*

-X207458Y257884D01*

-X207305Y258064D01*

-X207125Y258217D01*

-X206924Y258341D01*

-X206706Y258431D01*

-X206476Y258486D01*

-X206241Y258500D01*

-X203441Y258493D01*

-Y258950D01*

-X207714Y258957D01*

-X207867Y258994D01*

-X208012Y259054D01*

-X208147Y259136D01*

-X208266Y259239D01*

-X208369Y259358D01*

-X208451Y259493D01*

-X208511Y259638D01*

-X208541Y259763D01*

-X208571Y259638D01*

-X208631Y259493D01*

-X208713Y259358D01*

-X208816Y259239D01*

-X208935Y259136D01*

-X209070Y259054D01*

-X209215Y258994D01*

-X209368Y258957D01*

-X209525Y258948D01*

-X210291Y258949D01*

-Y258488D01*

-X209506Y258486D01*

-X209276Y258431D01*

-X209058Y258341D01*

-X208857Y258217D01*

-X208677Y258064D01*

-X208524Y257884D01*

-X208400Y257683D01*

-X208310Y257465D01*

-X208255Y257235D01*

-X208241Y257000D01*

-X208255Y244565D01*

-X208310Y244335D01*

-X208400Y244117D01*

-X208524Y243916D01*

-X208677Y243736D01*

-X208857Y243583D01*

-X209058Y243459D01*

-X209276Y243369D01*

-X209506Y243314D01*

-X209741Y243300D01*

-X210438Y243302D01*

-Y234098D01*

-G37*

-G36*

-Y201500D02*X206845D01*

-X206474Y201589D01*

-X205799Y201642D01*

-X205124Y201589D01*

-X204753Y201500D01*

-X203441D01*

-Y211002D01*

-X203502Y211039D01*

-X203718Y211223D01*

-X203902Y211439D01*

-X204050Y211680D01*

-X204158Y211942D01*

-X204224Y212218D01*

-X204241Y212500D01*

-X204224Y212782D01*

-X204158Y213058D01*

-X204050Y213320D01*

-X203902Y213561D01*

-X203718Y213777D01*

-X203502Y213961D01*

-X203441Y213998D01*

-Y218907D01*

-X210438Y218911D01*

-Y214305D01*

-X210159Y214283D01*

-X209883Y214217D01*

-X209621Y214109D01*

-X209380Y213961D01*

-X209164Y213777D01*

-X208980Y213561D01*

-X208832Y213320D01*

-X208724Y213058D01*

-X208658Y212782D01*

-X208635Y212500D01*

-X208658Y212218D01*

-X208724Y211942D01*

-X208832Y211680D01*

-X208980Y211439D01*

-X209164Y211223D01*

-X209380Y211039D01*

-X209621Y210891D01*

-X209883Y210783D01*

-X210159Y210717D01*

-X210438Y210695D01*

-Y201500D01*

-G37*

-G36*

-X205438Y290500D02*X210438D01*

-Y271792D01*

-X209166Y271788D01*

-X209013Y271751D01*

-X208868Y271691D01*

-X208733Y271609D01*

-X208614Y271506D01*

-X208511Y271387D01*

-X208429Y271252D01*

-X208369Y271107D01*

-X208332Y270954D01*

-X208323Y270797D01*

-X208332Y266704D01*

-X208369Y266551D01*

-X208429Y266406D01*

-X208511Y266271D01*

-X208582Y266189D01*

-X208571Y266162D01*

-X208541Y266037D01*

-X208511Y266162D01*

-X208451Y266307D01*

-X208369Y266442D01*

-X208266Y266561D01*

-X208147Y266664D01*

-X208139Y266668D01*

-X208148Y266704D01*

-X208157Y266861D01*

-X208148Y270954D01*

-X208111Y271107D01*

-X208051Y271252D01*

-X207969Y271387D01*

-X207866Y271506D01*

-X207747Y271609D01*

-X207612Y271691D01*

-X207467Y271751D01*

-X207314Y271788D01*

-X207157Y271797D01*

-X205438Y271792D01*

-Y275195D01*

-X205441Y275194D01*

-X205723Y275217D01*

-X205999Y275283D01*

-X206261Y275391D01*

-X206502Y275539D01*

-X206718Y275723D01*

-X206902Y275939D01*

-X207050Y276180D01*

-X207158Y276442D01*

-X207224Y276718D01*

-X207241Y277000D01*

-X207224Y277282D01*

-X207158Y277558D01*

-X207050Y277820D01*

-X206902Y278061D01*

-X206718Y278277D01*

-X206502Y278461D01*

-X206261Y278609D01*

-X205999Y278717D01*

-X205723Y278783D01*

-X205441Y278806D01*

-X205438Y278805D01*

-Y290500D01*

-G37*

-G36*

-X203441D02*X205438D01*

-Y278805D01*

-X205159Y278783D01*

-X204883Y278717D01*

-X204621Y278609D01*

-X204380Y278461D01*

-X204164Y278277D01*

-X203980Y278061D01*

-X203832Y277820D01*

-X203724Y277558D01*

-X203658Y277282D01*

-X203635Y277000D01*

-X203658Y276718D01*

-X203724Y276442D01*

-X203832Y276180D01*

-X203980Y275939D01*

-X204164Y275723D01*

-X204380Y275539D01*

-X204621Y275391D01*

-X204883Y275283D01*

-X205159Y275217D01*

-X205438Y275195D01*

-Y271792D01*

-X204048Y271788D01*

-X203895Y271751D01*

-X203750Y271691D01*

-X203615Y271609D01*

-X203496Y271506D01*

-X203441Y271442D01*

-Y290500D01*

-G37*

-G36*

-X193938Y218901D02*X203441Y218907D01*

-Y213998D01*

-X203261Y214109D01*

-X202999Y214217D01*

-X202723Y214283D01*

-X202441Y214306D01*

-X202159Y214283D01*

-X201883Y214217D01*

-X201621Y214109D01*

-X201380Y213961D01*

-X201164Y213777D01*

-X200980Y213561D01*

-X200832Y213320D01*

-X200724Y213058D01*

-X200658Y212782D01*

-X200635Y212500D01*

-X200658Y212218D01*

-X200724Y211942D01*

-X200832Y211680D01*

-X200980Y211439D01*

-X201164Y211223D01*

-X201380Y211039D01*

-X201621Y210891D01*

-X201883Y210783D01*

-X202159Y210717D01*

-X202441Y210694D01*

-X202723Y210717D01*

-X202999Y210783D01*

-X203261Y210891D01*

-X203441Y211002D01*

-Y201500D01*

-X199592D01*

-X199554Y201523D01*

-X199409Y201583D01*

-X199256Y201620D01*

-X199099Y201629D01*

-X193938Y201622D01*

-Y210695D01*

-X193941Y210694D01*

-X194223Y210717D01*

-X194499Y210783D01*

-X194761Y210891D01*

-X195002Y211039D01*

-X195218Y211223D01*

-X195402Y211439D01*

-X195550Y211680D01*

-X195658Y211942D01*

-X195724Y212218D01*

-X195741Y212500D01*

-X195724Y212782D01*

-X195658Y213058D01*

-X195550Y213320D01*

-X195402Y213561D01*

-X195218Y213777D01*

-X195002Y213961D01*

-X194761Y214109D01*

-X194499Y214217D01*

-X194223Y214283D01*

-X193941Y214306D01*

-X193938Y214305D01*

-Y218901D01*

-G37*

-G36*

-X198438Y243892D02*X198458Y243916D01*

-X198582Y244117D01*

-X198672Y244335D01*

-X198727Y244565D01*

-X198741Y244800D01*

-X198727Y257235D01*

-X198672Y257465D01*

-X198582Y257683D01*

-X198458Y257884D01*

-X198438Y257908D01*

-Y260695D01*

-X198441Y260694D01*

-X198723Y260717D01*

-X198999Y260783D01*

-X199261Y260891D01*

-X199502Y261039D01*

-X199718Y261223D01*

-X199902Y261439D01*

-X200050Y261680D01*

-X200158Y261942D01*

-X200224Y262218D01*

-X200241Y262500D01*

-X200224Y262782D01*

-X200158Y263058D01*

-X200050Y263320D01*

-X199902Y263561D01*

-X199718Y263777D01*

-X199502Y263961D01*

-X199261Y264109D01*

-X198999Y264217D01*

-X198723Y264283D01*

-X198441Y264306D01*

-X198438Y264305D01*

-Y267695D01*

-X198441Y267694D01*

-X198723Y267717D01*

-X198999Y267783D01*

-X199261Y267891D01*

-X199502Y268039D01*

-X199718Y268223D01*

-X199902Y268439D01*

-X200050Y268680D01*

-X200158Y268942D01*

-X200224Y269218D01*

-X200241Y269500D01*

-X200224Y269782D01*

-X200158Y270058D01*

-X200050Y270320D01*

-X199902Y270561D01*

-X199718Y270777D01*

-X199502Y270961D01*

-X199261Y271109D01*

-X198999Y271217D01*

-X198723Y271283D01*

-X198441Y271306D01*

-X198438Y271305D01*

-Y290500D01*

-X203441D01*

-Y271442D01*

-X203393Y271387D01*

-X203311Y271252D01*

-X203251Y271107D01*

-X203214Y270954D01*

-X203205Y270797D01*

-X203214Y266844D01*

-X202282Y266843D01*

-X202129Y266806D01*

-X201984Y266746D01*

-X201849Y266664D01*

-X201730Y266561D01*

-X201627Y266442D01*

-X201545Y266307D01*

-X201485Y266162D01*

-X201448Y266009D01*

-X201439Y265852D01*

-X201448Y259791D01*

-X201485Y259638D01*

-X201545Y259493D01*

-X201627Y259358D01*

-X201730Y259239D01*

-X201849Y259136D01*

-X201984Y259054D01*

-X202129Y258994D01*

-X202282Y258957D01*

-X202439Y258948D01*

-X203441Y258950D01*

-Y258493D01*

-X200406Y258486D01*

-X200176Y258431D01*

-X199958Y258341D01*

-X199757Y258217D01*

-X199577Y258064D01*

-X199424Y257884D01*

-X199300Y257683D01*

-X199210Y257465D01*

-X199155Y257235D01*

-X199141Y257000D01*

-X199155Y244565D01*

-X199210Y244335D01*

-X199300Y244117D01*

-X199424Y243916D01*

-X199577Y243736D01*

-X199757Y243583D01*

-X199958Y243459D01*

-X200176Y243369D01*

-X200406Y243314D01*

-X200641Y243300D01*

-X203441Y243307D01*

-Y239231D01*

-X203383Y239217D01*

-X203121Y239109D01*

-X202880Y238961D01*

-X202664Y238777D01*

-X202480Y238561D01*

-X202332Y238320D01*

-X202224Y238058D01*

-X202158Y237782D01*

-X202135Y237500D01*

-X202158Y237218D01*

-X202224Y236942D01*

-X202332Y236680D01*

-X202480Y236439D01*

-X202664Y236223D01*

-X202880Y236039D01*

-X203121Y235891D01*

-X203383Y235783D01*

-X203441Y235769D01*

-Y234093D01*

-X198438Y234090D01*

-Y243892D01*

-G37*

-G36*

-Y257908D02*X198305Y258064D01*

-X198125Y258217D01*

-X197924Y258341D01*

-X197706Y258431D01*

-X197476Y258486D01*

-X197241Y258500D01*

-X193938Y258492D01*

-Y290500D01*

-X198438D01*

-Y271305D01*

-X198159Y271283D01*

-X197883Y271217D01*

-X197621Y271109D01*

-X197380Y270961D01*

-X197164Y270777D01*

-X196980Y270561D01*

-X196832Y270320D01*

-X196724Y270058D01*

-X196658Y269782D01*

-X196635Y269500D01*

-X196658Y269218D01*

-X196724Y268942D01*

-X196832Y268680D01*

-X196980Y268439D01*

-X197164Y268223D01*

-X197380Y268039D01*

-X197621Y267891D01*

-X197883Y267783D01*

-X198159Y267717D01*

-X198438Y267695D01*

-Y264305D01*

-X198159Y264283D01*

-X197883Y264217D01*

-X197621Y264109D01*

-X197380Y263961D01*

-X197164Y263777D01*

-X196980Y263561D01*

-X196832Y263320D01*

-X196724Y263058D01*

-X196658Y262782D01*

-X196635Y262500D01*

-X196658Y262218D01*

-X196724Y261942D01*

-X196832Y261680D01*

-X196980Y261439D01*

-X197164Y261223D01*

-X197380Y261039D01*

-X197621Y260891D01*

-X197883Y260783D01*

-X198159Y260717D01*

-X198438Y260695D01*

-Y257908D01*

-G37*

-G36*

-X193938Y243305D02*X197476Y243314D01*

-X197706Y243369D01*

-X197924Y243459D01*

-X198125Y243583D01*

-X198305Y243736D01*

-X198438Y243892D01*

-Y234090D01*

-X193938Y234087D01*

-Y235195D01*

-X193941Y235194D01*

-X194223Y235217D01*

-X194499Y235283D01*

-X194761Y235391D01*

-X195002Y235539D01*

-X195218Y235723D01*

-X195402Y235939D01*

-X195550Y236180D01*

-X195658Y236442D01*

-X195724Y236718D01*

-X195741Y237000D01*

-X195724Y237282D01*

-X195658Y237558D01*

-X195550Y237820D01*

-X195402Y238061D01*

-X195218Y238277D01*

-X195002Y238461D01*

-X194761Y238609D01*

-X194499Y238717D01*

-X194223Y238783D01*

-X193941Y238806D01*

-X193938Y238805D01*

-Y243305D01*

-G37*

-G36*

-Y258492D02*X191406Y258486D01*

-X191176Y258431D01*

-X190958Y258341D01*

-X190757Y258217D01*

-X190577Y258064D01*

-X190424Y257884D01*

-X190300Y257683D01*

-X190210Y257465D01*

-X190155Y257235D01*

-X190141Y257000D01*

-X190142Y256450D01*

-X188729D01*

-X188641Y256457D01*

-X188288Y256429D01*

-X187944Y256346D01*

-X187616Y256211D01*

-X187314Y256026D01*

-X187314Y256026D01*

-X187045Y255796D01*

-X186988Y255729D01*

-X182012Y250753D01*

-X181945Y250696D01*

-X181938Y250688D01*

-Y256695D01*

-X181941Y256694D01*

-X182223Y256717D01*

-X182499Y256783D01*

-X182761Y256891D01*

-X183002Y257039D01*

-X183218Y257223D01*

-X183402Y257439D01*

-X183550Y257680D01*

-X183658Y257942D01*

-X183724Y258218D01*

-X183741Y258500D01*

-X183724Y258782D01*

-X183658Y259058D01*

-X183550Y259320D01*

-X183402Y259561D01*

-X183218Y259777D01*

-X183002Y259961D01*

-X182761Y260109D01*

-X182499Y260217D01*

-X182223Y260283D01*

-X181941Y260306D01*

-X181938Y260305D01*

-Y290500D01*

-X193938D01*

-Y258492D01*

-G37*

-G36*

-X181938Y250688D02*X181715Y250427D01*

-X181530Y250125D01*

-X181395Y249797D01*

-X181312Y249453D01*

-X181312Y249453D01*

-X181284Y249100D01*

-X181291Y249012D01*

-Y245994D01*

-X180432Y245993D01*

-X180279Y245956D01*

-X180134Y245896D01*

-X179999Y245814D01*

-X179880Y245711D01*

-X179777Y245592D01*

-X179695Y245457D01*

-X179635Y245312D01*

-X179598Y245159D01*

-X179589Y245002D01*

-X179590Y244693D01*

-X178472D01*

-X178384Y244700D01*

-X178031Y244672D01*

-X177687Y244589D01*

-X177359Y244454D01*

-X177057Y244269D01*

-X177057Y244269D01*

-X176788Y244039D01*

-X176731Y243972D01*

-X172441Y239682D01*

-Y290500D01*

-X181938D01*

-Y260305D01*

-X181659Y260283D01*

-X181383Y260217D01*

-X181121Y260109D01*

-X180880Y259961D01*

-X180664Y259777D01*

-X180480Y259561D01*

-X180332Y259320D01*

-X180224Y259058D01*

-X180158Y258782D01*

-X180135Y258500D01*

-X180158Y258218D01*

-X180224Y257942D01*

-X180332Y257680D01*

-X180480Y257439D01*

-X180664Y257223D01*

-X180880Y257039D01*

-X181121Y256891D01*

-X181383Y256783D01*

-X181659Y256717D01*

-X181938Y256695D01*

-Y250688D01*

-G37*

-G36*

-X185438Y231805D02*X186650Y231807D01*

-X186803Y231844D01*

-X186948Y231904D01*

-X187083Y231986D01*

-X187202Y232089D01*

-X187305Y232208D01*

-X187387Y232343D01*

-X187447Y232488D01*

-X187484Y232641D01*

-X187493Y232798D01*

-X187484Y238073D01*

-X187447Y238226D01*

-X187387Y238371D01*

-X187305Y238506D01*

-X187202Y238625D01*

-X187083Y238728D01*

-X186948Y238810D01*

-X186803Y238870D01*

-X186678Y238900D01*

-X186803Y238930D01*

-X186948Y238990D01*

-X187083Y239072D01*

-X187202Y239175D01*

-X187305Y239294D01*

-X187387Y239429D01*

-X187447Y239574D01*

-X187484Y239727D01*

-X187493Y239884D01*

-X187484Y245159D01*

-X187447Y245312D01*

-X187387Y245457D01*

-X187305Y245592D01*

-X187202Y245711D01*

-X187083Y245814D01*

-X186948Y245896D01*

-X186803Y245956D01*

-X186650Y245993D01*

-X186493Y246002D01*

-X185791Y246001D01*

-Y248168D01*

-X189573Y251950D01*

-X190147D01*

-X190155Y244565D01*

-X190210Y244335D01*

-X190300Y244117D01*

-X190424Y243916D01*

-X190577Y243736D01*

-X190757Y243583D01*

-X190958Y243459D01*

-X191176Y243369D01*

-X191406Y243314D01*

-X191641Y243300D01*

-X193938Y243305D01*

-Y238805D01*

-X193659Y238783D01*

-X193383Y238717D01*

-X193121Y238609D01*

-X192880Y238461D01*

-X192664Y238277D01*

-X192480Y238061D01*

-X192332Y237820D01*

-X192224Y237558D01*

-X192158Y237282D01*

-X192135Y237000D01*

-X192158Y236718D01*

-X192224Y236442D01*

-X192332Y236180D01*

-X192480Y235939D01*

-X192664Y235723D01*

-X192880Y235539D01*

-X193121Y235391D01*

-X193383Y235283D01*

-X193659Y235217D01*

-X193938Y235195D01*

-Y234087D01*

-X192606Y234086D01*

-X192376Y234031D01*

-X192158Y233941D01*

-X191957Y233817D01*

-X191777Y233664D01*

-X191624Y233484D01*

-X191500Y233283D01*

-X191410Y233065D01*

-X191355Y232835D01*

-X191341Y232600D01*

-X191355Y220165D01*

-X191410Y219935D01*

-X191500Y219717D01*

-X191624Y219516D01*

-X191777Y219336D01*

-X191957Y219183D01*

-X192158Y219059D01*

-X192376Y218969D01*

-X192606Y218914D01*

-X192841Y218900D01*

-X193938Y218901D01*

-Y214305D01*

-X193659Y214283D01*

-X193383Y214217D01*

-X193121Y214109D01*

-X192880Y213961D01*

-X192664Y213777D01*

-X192480Y213561D01*

-X192332Y213320D01*

-X192224Y213058D01*

-X192158Y212782D01*

-X192135Y212500D01*

-X192158Y212218D01*

-X192224Y211942D01*

-X192332Y211680D01*

-X192480Y211439D01*

-X192664Y211223D01*

-X192880Y211039D01*

-X193121Y210891D01*

-X193383Y210783D01*

-X193659Y210717D01*

-X193938Y210695D01*

-Y201622D01*

-X192342Y201620D01*

-X192189Y201583D01*

-X192044Y201523D01*

-X192006Y201500D01*

-X185438D01*

-Y215695D01*

-X185441Y215694D01*

-X185723Y215717D01*

-X185999Y215783D01*

-X186261Y215891D01*

-X186502Y216039D01*

-X186718Y216223D01*

-X186902Y216439D01*

-X187050Y216680D01*

-X187158Y216942D01*

-X187224Y217218D01*

-X187241Y217500D01*

-X187224Y217782D01*

-X187158Y218058D01*

-X187050Y218320D01*

-X186902Y218561D01*

-X186718Y218777D01*

-X186502Y218961D01*

-X186261Y219109D01*

-X185999Y219217D01*

-X185723Y219283D01*

-X185441Y219306D01*

-X185438Y219305D01*

-Y226195D01*

-X185441Y226194D01*

-X185723Y226217D01*

-X185999Y226283D01*

-X186261Y226391D01*

-X186502Y226539D01*

-X186718Y226723D01*

-X186902Y226939D01*

-X187050Y227180D01*

-X187158Y227442D01*

-X187224Y227718D01*

-X187241Y228000D01*

-X187224Y228282D01*

-X187158Y228558D01*

-X187050Y228820D01*

-X186902Y229061D01*

-X186718Y229277D01*

-X186502Y229461D01*

-X186261Y229609D01*

-X185999Y229717D01*

-X185723Y229783D01*

-X185441Y229806D01*

-X185438Y229805D01*

-Y231805D01*

-G37*

-G36*

-X179589Y237916D02*X179598Y232641D01*

-X179635Y232488D01*

-X179695Y232343D01*

-X179777Y232208D01*

-X179880Y232089D01*

-X179999Y231986D01*

-X180134Y231904D01*

-X180279Y231844D01*

-X180432Y231807D01*

-X180589Y231798D01*

-X185438Y231805D01*

-Y229805D01*

-X185159Y229783D01*

-X184883Y229717D01*

-X184621Y229609D01*

-X184380Y229461D01*

-X184164Y229277D01*

-X183980Y229061D01*

-X183832Y228820D01*

-X183724Y228558D01*

-X183658Y228282D01*

-X183635Y228000D01*

-X183658Y227718D01*

-X183724Y227442D01*

-X183832Y227180D01*

-X183980Y226939D01*

-X184164Y226723D01*

-X184380Y226539D01*

-X184621Y226391D01*

-X184883Y226283D01*

-X185159Y226217D01*

-X185438Y226195D01*

-Y219305D01*

-X185159Y219283D01*

-X184883Y219217D01*

-X184621Y219109D01*

-X184380Y218961D01*

-X184164Y218777D01*

-X183980Y218561D01*

-X183832Y218320D01*

-X183724Y218058D01*

-X183658Y217782D01*

-X183635Y217500D01*

-X183658Y217218D01*

-X183724Y216942D01*

-X183832Y216680D01*

-X183980Y216439D01*

-X184164Y216223D01*

-X184380Y216039D01*

-X184621Y215891D01*

-X184883Y215783D01*

-X185159Y215717D01*

-X185438Y215695D01*

-Y201500D01*

-X177438D01*

-Y215695D01*

-X177441Y215694D01*

-X177723Y215717D01*

-X177999Y215783D01*

-X178261Y215891D01*

-X178502Y216039D01*

-X178718Y216223D01*

-X178902Y216439D01*

-X179050Y216680D01*

-X179158Y216942D01*

-X179224Y217218D01*

-X179241Y217500D01*

-X179224Y217782D01*

-X179158Y218058D01*

-X179050Y218320D01*

-X178902Y218561D01*

-X178718Y218777D01*

-X178502Y218961D01*

-X178261Y219109D01*

-X177999Y219217D01*

-X177723Y219283D01*

-X177441Y219306D01*

-X177438Y219305D01*

-Y226195D01*

-X177441Y226194D01*

-X177723Y226217D01*

-X177999Y226283D01*

-X178261Y226391D01*

-X178502Y226539D01*

-X178718Y226723D01*

-X178902Y226939D01*

-X179050Y227180D01*

-X179158Y227442D01*

-X179224Y227718D01*

-X179241Y228000D01*

-X179224Y228282D01*

-X179158Y228558D01*

-X179050Y228820D01*

-X178902Y229061D01*

-X178718Y229277D01*

-X178502Y229461D01*

-X178261Y229609D01*

-X177999Y229717D01*

-X177723Y229783D01*

-X177441Y229806D01*

-X177438Y229805D01*

-Y238315D01*

-X179316Y240193D01*

-X179597D01*

-X179598Y239727D01*

-X179635Y239574D01*

-X179695Y239429D01*

-X179777Y239294D01*

-X179880Y239175D01*

-X179999Y239072D01*

-X180134Y238990D01*

-X180279Y238930D01*

-X180404Y238900D01*

-X180279Y238870D01*

-X180134Y238810D01*

-X179999Y238728D01*

-X179880Y238625D01*

-X179777Y238506D01*

-X179695Y238371D01*

-X179635Y238226D01*

-X179598Y238073D01*

-X179589Y237916D01*

-G37*

-G36*

-X177438Y201500D02*X172441D01*

-Y233318D01*

-X177438Y238315D01*

-Y229805D01*

-X177159Y229783D01*

-X176883Y229717D01*

-X176621Y229609D01*

-X176380Y229461D01*

-X176164Y229277D01*

-X175980Y229061D01*

-X175832Y228820D01*

-X175724Y228558D01*

-X175658Y228282D01*

-X175635Y228000D01*

-X175658Y227718D01*

-X175724Y227442D01*

-X175832Y227180D01*

-X175980Y226939D01*

-X176164Y226723D01*

-X176380Y226539D01*

-X176621Y226391D01*

-X176883Y226283D01*

-X177159Y226217D01*

-X177438Y226195D01*

-Y219305D01*

-X177159Y219283D01*

-X176883Y219217D01*

-X176621Y219109D01*

-X176380Y218961D01*

-X176164Y218777D01*

-X175980Y218561D01*

-X175832Y218320D01*

-X175724Y218058D01*

-X175658Y217782D01*

-X175635Y217500D01*

-X175658Y217218D01*

-X175724Y216942D01*

-X175832Y216680D01*

-X175980Y216439D01*

-X176164Y216223D01*

-X176380Y216039D01*

-X176621Y215891D01*

-X176883Y215783D01*

-X177159Y215717D01*

-X177438Y215695D01*

-Y201500D01*

-G37*

-G54D245*X404250Y300000D02*X376485D01*

-X402250Y305700D02*X391838D01*

-Y309311D02*Y305700D01*

-X394480Y314000D02*X398441D01*

-X394397Y313917D02*X394480Y314000D01*

-X389167Y311726D02*Y302000D01*

-X401750Y295000D02*X379044D01*

-Y290689D01*

-Y292839D02*Y290689D01*

-X382441Y293000D02*X381603Y292162D01*

-X391838Y293000D02*X382441D01*

-G54D246*X391838D02*X396441D01*

-X398441Y291000D01*

-G54D245*X373441Y319000D02*X368441Y314000D01*

-X374441Y317000D02*X369441Y312000D01*

-G54D246*X367441Y319000D02*Y337500D01*

-X363441Y319000D02*Y335904D01*

-X361698Y336799D02*Y320140D01*

-X360013Y337572D02*Y320860D01*

-G54D245*X382720Y319000D02*X373441D01*

-X379441Y317000D02*X374441D01*

-X389279Y324162D02*X387441Y326000D01*

-X381603Y314838D02*X379441Y317000D01*

-X381603Y313917D02*Y314838D01*

-G54D246*X382720Y319000D02*X386720Y315000D01*

-Y311614D01*

-X389279D02*Y324162D01*

-G54D245*X398441Y319441D02*Y314000D01*

-X395882Y324559D02*X393441Y327000D01*

-G54D246*X387441Y326000D02*X391338Y329897D01*

-G54D245*X398441Y324559D02*X395882D01*

-X389653Y278000D02*X371441D01*

-X381441Y282000D02*X371441D01*

-G54D246*Y278000D02*X368170Y281271D01*

-X370153Y283288D02*X371441Y282000D01*

-G54D245*X390441Y278788D02*X389653Y278000D01*

-X390441Y282588D02*Y278788D01*

-X389279Y283750D02*X390441Y282588D01*

-X389279Y290689D02*Y283750D01*

-X384162Y284721D02*X381441Y282000D01*

-X384162Y290689D02*Y284721D01*

-X386720Y288386D02*Y282000D01*

-X379044Y302000D02*X389167D01*

-X379044Y311614D02*Y302000D01*

-X376485Y311614D02*Y300000D01*

-X384162Y311614D02*Y306000D01*

-X381603Y292162D02*Y288386D01*

-X376485Y290689D02*X372441D01*

-X391838Y288386D02*Y293000D01*

-G54D246*Y290689D02*Y284085D01*

-X392388Y283535D01*

-G54D245*X402250Y314532D02*Y305700D01*

-X404250Y300000D02*Y311382D01*

-X402250Y293339D02*Y290653D01*

-Y293339D02*X401750D01*

-Y295000D02*Y293338D01*

-G54D247*X407000Y300618D02*Y294000D01*

-X409382Y303000D02*X407000Y300618D01*

-Y330618D02*Y324000D01*

-X427000Y301508D02*Y294000D01*

-X437000Y301508D02*Y294000D01*

-X453500Y300618D02*Y294000D01*

-X455882Y303000D02*X453500Y300618D01*

-X463500Y302508D02*Y294000D01*

-Y302508D03*

-X467882D02*X463500D01*

-X473500Y324000D02*Y316008D01*

-Y302508D02*Y294000D01*

-Y302508D02*X473000D01*

-X473500Y294000D02*Y286008D01*

-G54D245*X391338Y352897D02*Y348886D01*

-X393897Y341500D03*

-Y346583D02*Y341500D01*

-G54D246*X391338Y329897D02*Y349103D01*

-G54D245*X431882Y365468D03*

-X421882D01*

-X431882D02*Y361508D01*

-G54D247*X427000D02*Y354000D01*

-G54D245*X421882Y365468D02*Y362492D01*

-G54D247*X418441Y362000D02*X417000Y360559D01*

-Y354000D02*Y360500D01*

-X407000Y360618D02*Y354000D01*

-X409382Y363000D02*X407000Y360618D01*

-X421882Y362000D02*X418441D01*

-X417000Y360500D02*X414500Y363000D01*

-G54D245*X431882Y335468D03*

-X421882D01*

-X421823Y348468D02*X402250D01*

-X437433Y341500D02*X393897D01*

-X421882Y335468D02*Y332492D01*

-G54D247*X427000Y331508D02*Y324000D01*

-X437000Y331508D02*Y324000D01*

-X418559Y332000D02*X417000Y330441D01*

-Y330500D02*X414500Y333000D01*

-X409382D02*X407000Y330618D01*

-X421882Y332000D02*X418559D01*

-X473500Y333492D02*X473559D01*

-X473500Y332508D02*Y324000D01*

-X473559Y332508D02*X473500D01*

-X463500D03*

-D03*

-D03*

-D03*

-X468441D02*X463500D01*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y333492D01*

-Y332508D02*X463500D01*

-X461000D02*X463500D01*

-X453500Y330618D02*Y324000D01*

-X455882Y333000D02*X453500Y330618D01*

-X463500Y332508D02*Y324000D01*

-X427000Y354000D03*

-Y346992D01*

-D03*

-Y354000D03*

-G54D245*X421823Y348468D02*Y346008D01*

-G54D247*X427000Y346992D02*X426941D01*

-X427000D01*

-X426941D02*X427000D01*

-G54D245*X421823D02*Y348468D01*

-Y346992D02*Y348468D01*

-G54D247*X427000Y346992D03*

-X437000Y354000D03*

-Y346618D01*

-Y354000D03*

-X463500Y362508D03*

-D03*

-X461059D01*

-X463500D02*X461059D01*

-X463500D03*

-G54D245*X459941Y346500D02*X458441Y345000D01*

-X468500Y346500D02*X459941D01*

-G54D247*X437433Y346618D03*

-D03*

-G54D245*X431882Y335468D02*Y331508D01*

-G54D247*X437000Y361508D02*Y354000D01*

-X463500D03*

-X453500Y360559D02*Y354000D01*

-X455941Y363000D02*X453500Y360559D01*

-X463500Y362508D02*Y354000D01*

-X468441Y362508D02*X463500D01*

-X473500D02*Y354000D01*

-X473559Y362508D02*X473500D01*

-G54D245*X401596Y360000D02*Y354234D01*

-Y348468D02*X402250D01*

-X401596Y360000D02*Y348468D01*

-X421823D03*

-G54D247*X427000Y354000D03*

-X437000D03*

-G54D245*X421823Y348468D03*

-G54D246*X376456Y382000D02*X367546Y373090D01*

-X376024Y378412D02*X369155Y371543D01*

-G54D245*X376394Y367661D02*Y365000D01*

-X378441Y363000D02*X376394Y365047D01*

-X378441Y367500D02*Y372114D01*

-X376394Y370090D03*

-Y369450D03*

-X375985Y369950D02*X376394Y369450D01*

-X375985Y369811D02*X376394Y369450D01*

-Y370090D02*X375985D01*

-X376394D03*

-X375985D02*X376394D01*

-X375985D02*X376394D01*

-X375985Y369950D01*

-X376394Y370090D02*Y369950D01*

-X375985D02*X376394Y370090D01*

-Y369950D02*Y370090D01*

-X375985Y369950D01*

-G54D246*X379029Y378412D02*X376024D01*

-X376456Y382000D02*X384405D01*

-X387441Y378964D01*

-Y377067D01*

-X386220Y375846D01*

-Y372114D01*

-G54D245*X391338Y377051D02*Y372000D01*

-X383662Y372114D02*Y378500D01*

-X388779Y372114D02*Y367500D01*

-X401750Y371500D02*Y365000D01*

-G54D246*X385941Y367500D02*Y366000D01*

-X381103Y374417D02*Y376338D01*

-X379029Y378412D01*

-G54D245*X401596Y360000D02*X378544D01*

-X393441Y355897D02*Y355000D01*

-X391338Y358000D02*X393441Y355897D01*

-X399750Y363000D02*X378441D01*

-X401750Y365000D02*X399750Y363000D01*

-X388779Y367500D02*X378441D01*

-X393441Y355000D02*X391338Y352897D01*

-X378544Y360000D02*Y357210D01*

-X381103Y358000D02*X391338D01*

-X378544Y360000D02*Y354419D01*

-Y355500D02*Y353339D01*

-X376394Y369450D02*Y367661D01*

-Y369450D02*Y367661D01*

-G54D246*X369155Y371543D02*Y344257D01*

-X367546Y373090D02*Y345105D01*

-X369155Y344257D02*X361698Y336799D01*

-X367546Y345105D02*X360013Y337572D01*

-X363441Y335904D02*X372270Y344733D01*

-X372661Y342720D02*X367441Y337500D01*

-G54D245*X386220Y354221D02*X385941Y354500D01*

-X381103Y353500D02*Y358000D01*

-X386220Y348886D02*Y354221D01*

-X381103Y348886D02*Y353500D01*

-X378544Y353339D02*Y351189D01*

-X375985D02*X372441D01*

-X378544Y353339D02*Y351189D01*

-G54D246*X372270Y344733D02*X382441D01*

-X383662Y345954D01*

-Y348886D01*

-X372661Y342720D02*X387161D01*

-X388779Y344338D01*

-Y351189D02*Y344338D01*

-G54D245*X422000Y377051D02*X391338D01*

-X437433Y371500D02*X401750D01*

-X396555Y372114D02*X397441Y373000D01*

-X393897Y372114D02*X396555D01*

-X391338Y376567D02*Y374417D01*

-X431941Y395468D03*

-X421882D01*

-X431941D02*Y391626D01*

-G54D247*X437000Y384000D03*

-X427000D03*

-D03*

-X437000D03*

-Y376618D01*

-Y384000D03*

-X437059Y391626D02*X437000D01*

-Y392610D02*X437059D01*

-Y391626D03*

-X437000D02*X437059D01*

-D03*

-X427000Y391508D02*Y384000D01*

-X437000Y391626D02*Y384000D01*

-X427000D02*Y377051D01*

-X427118D02*X427000D01*

-X427118D01*

-X427000D01*

-Y384000D03*

-X437433Y376618D03*

-D03*

-X427118Y377051D03*

-D03*

-D03*

-D03*

-G54D245*X421882Y395468D02*Y392492D01*

-G54D247*X417000Y390559D02*Y384000D01*

-X418441Y392000D02*X417000Y390559D01*

-X421882Y392000D02*X418441D01*

-X417000Y384000D02*Y390677D01*

-X414559Y393118D01*

-X407000Y390677D02*Y384000D01*

-X409441Y393118D02*X407000Y390677D01*

-X455882Y393000D02*X453500Y390618D01*

-Y384000D01*

-X473500D02*Y376008D01*

-X463500Y392508D02*Y384000D01*

-Y392508D03*

-X468441D02*X463500D01*

-X473500D02*Y384000D01*

-X473559Y392508D02*X473500D01*

-G54D245*X402250Y242000D02*X379394D01*

-X381953Y229157D02*Y234000D01*

-G54D246*X392188Y235000D02*X396441D01*

-G54D245*X381953Y239000D02*X392188D01*

-X387070Y229157D02*Y235000D01*

-X379394Y236000D02*Y231460D01*

-X402250Y242000D02*Y239000D01*

-X392188Y234000D02*Y239000D01*

-X402250Y240000D02*Y228468D01*

-X392188Y229157D02*Y234000D01*

-X375705Y221190D02*X369166Y227729D01*

-X385585Y221190D02*X375705D01*

-X389629Y225234D02*X385585Y221190D01*

-X376441Y223000D02*X370441Y229000D01*

-X381441Y223000D02*X376441D01*

-X384512Y226071D02*X381441Y223000D01*

-X389629Y231460D02*Y225234D01*

-X384512Y231460D02*Y226071D01*

-X379394Y238047D02*Y242000D01*

-X381953Y234000D02*Y239000D01*

-X376835Y229157D02*Y233606D01*

-X375441Y235000D01*

-X379394Y240000D02*Y231460D01*

-G54D246*X360441Y239000D02*X370441Y229000D01*

-X363895Y233000D02*X369168Y227727D01*

-G54D245*X381953Y256250D02*X378003Y260200D01*

-X377244Y250082D02*Y244700D01*

-Y250082D02*X376835D01*

-X379394Y252385D02*Y248000D01*

-G54D246*X378003Y260200D02*X375978D01*

-G54D245*X381953Y254688D02*Y256250D01*

-G54D246*X376441Y262000D02*X385441D01*

-X358839Y279602D02*X376441Y262000D01*

-X375978Y260200D02*X358541Y277637D01*

-X362315Y269515D02*X371602Y260228D01*

-X392388Y283535D02*Y263392D01*

-X390280Y261284D01*

-G54D245*X388441Y259000D02*X385441Y262000D01*

-X388441Y257000D02*Y259000D01*

-X384512Y252385D02*Y258000D01*

-G54D246*X390280Y261284D02*Y256058D01*

-G54D245*X387070Y255629D02*X388441Y257000D01*

-X387070Y254688D02*Y255629D01*

-X389629Y252385D02*Y248000D01*

-G54D246*X390280Y256058D02*X389629Y255407D01*

-Y252385D01*

-G54D245*X402250Y251441D02*Y244700D01*

-X394441Y252000D02*X397441D01*

-X398441Y253000D01*

-X402250Y244700D02*X377244D01*

-G54D246*X379394Y248000D02*X380114Y247280D01*

-X388909D01*

-X389629Y248000D01*

-G54D245*X437000Y191441D02*X411882D01*

-X431882Y185468D03*

-X421882D01*

-X431882D02*Y181508D01*

-X421882Y185468D02*Y182492D01*

-G54D247*Y182000D02*X418559D01*

-X437000Y181508D02*Y174000D01*

-X453500Y180618D02*Y174000D01*

-X455882Y183000D02*X453500Y180618D01*

-X463500Y182508D02*Y174000D01*

-Y182508D03*

-X468382D02*X463500D01*

-X473500D02*Y174000D01*

-Y165508D01*

-G54D245*X386720Y197721D02*X377441Y207000D01*

-X374441Y205000D02*X371441D01*

-X386720Y195917D02*Y197721D01*

-X381603Y197838D02*X374441Y205000D01*

-X381603Y195917D02*Y197838D01*

-X395882Y205559D02*X393441Y208000D01*

-X398441Y205559D02*X395882D01*

-X398441Y200441D02*Y196000D01*

-G54D246*X389279Y195917D02*Y212500D01*

-X392188Y215409D01*

-G54D247*X437492Y196559D03*

-D03*

-X437000Y204000D02*Y196559D01*

-Y204000D03*

-D03*

-D03*

-Y211508D02*Y204000D01*

-X427000D03*

-Y196492D01*

-Y204000D03*

-D03*

-Y196492D03*

-Y211508D02*Y204000D01*

-Y196492D02*X426941D01*

-X427000D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-X417000Y204000D02*Y210500D01*

-X407000Y210618D02*Y204000D01*

-X463500D03*

-D03*

-X453500Y210618D02*Y204000D01*

-X455882Y213000D02*X453500Y210618D01*

-X463500Y212508D02*Y204000D01*

-Y212508D03*

-X473500D02*Y204000D01*

-Y196008D01*

-G54D246*X361041Y205000D02*X371441D01*

-X368441Y198000D02*X363441Y203000D01*

-X362786Y201380D02*X366841Y197325D01*

-X363441Y203000D02*X359930D01*

-X359287Y201380D02*X362786D01*

-X361041Y205000D02*X358941Y207100D01*

-Y208500D01*

-G54D245*X421941Y228468D02*Y226008D01*

-Y228468D02*X402250D01*

-X437492Y221441D02*X394747D01*

-Y226854D02*Y221441D01*

-G54D247*X427059Y226992D02*X427000D01*

-X427059D03*

-X418441Y242000D02*X417000Y240559D01*

-X421882Y242000D02*X418441D01*

-X417000Y240559D02*X414559Y243000D01*

-X417000Y234000D02*Y240559D01*

-X407000D02*Y234000D01*

-X409441Y243000D02*X407000Y240559D01*

-X437000Y241508D02*Y234000D01*

-X437492Y226559D03*

-D03*

-X437000Y234000D03*

-Y226559D01*

-Y234000D03*

-D03*

-G54D245*X431882Y215468D02*X421882D01*

-X431882D03*

-G54D247*X427059Y226992D03*

-D03*

-X427000D01*

-X427059D01*

-D03*

-G54D245*X431882Y215468D02*Y211508D01*

-X421882Y215468D02*Y212492D01*

-G54D247*X418559Y212000D02*X417000Y210441D01*

-X421882Y212000D02*X418559D01*

-X417000Y210500D02*X414500Y213000D01*

-X409382D02*X407000Y210618D01*

-G54D245*X431882Y245468D03*

-Y241508D01*

-Y245468D02*X421882D01*

-Y242492D01*

-G54D247*X427000Y234000D02*Y226992D01*

-Y234000D03*

-D03*

-D03*

-Y241508D02*Y234000D01*

-G54D245*X460441Y256000D02*X458441Y254000D01*

-G54D247*X437492Y256559D03*

-D03*

-G54D245*X468382Y256000D02*X460441D01*

-G54D247*X463500Y264000D03*

-D03*

-X453500Y270618D02*Y264000D01*

-X463500Y272508D02*Y264000D01*

-Y272508D03*

-X473500D02*Y264000D01*

-Y255508D01*

-X468559Y272508D02*X463500D01*

-G54D245*X459941Y226500D02*X458441Y225000D01*

-G54D246*X392188Y215409D02*Y229500D01*

-G54D245*X468382Y226500D02*X459941D01*

-G54D247*X473500Y213492D02*X473559D01*

-X473500Y234000D02*Y226008D01*

-X473559Y212508D02*X473500D01*

-X463500D03*

-D03*

-D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y213492D01*

-Y212508D02*X463500D01*

-X461000D02*X463500D01*

-X468441D02*X463500D01*

-G54D245*X437492Y251441D02*X402250D01*

-X421823Y256008D02*X402250D01*

-Y256838D02*Y256008D01*

-Y256838D02*X392188D01*

-Y254688D01*

-G54D247*X437000Y264000D03*

-Y256559D01*

-Y264000D03*

-D03*

-Y271508D02*Y264000D01*

-X427000D03*

-Y256992D01*

-Y264000D03*

-D03*

-Y256992D03*

-Y271508D02*Y264000D01*

-Y256992D02*X426941D01*

-X427000D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-X417000Y264000D02*Y270559D01*

-X407000D02*Y264000D01*

-X463500Y242508D03*

-D03*

-D03*

-Y234000D01*

-Y242508D03*

-Y234000D03*

-D03*

-X473500Y243492D02*X473559D01*

-X473500Y242508D02*Y234000D01*

-X473559Y242508D02*X473500D01*

-X463500D02*X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y243492D01*

-Y242508D02*X463500D01*

-X461000D02*X463500D01*

-X468441D02*X463500D01*

-X453500Y240618D02*Y234000D01*

-X455882Y243000D02*X453500Y240618D01*

-G54D245*X376485Y183956D02*X380441Y180000D01*

-X376485Y185700D02*Y183956D01*

-X379044Y177000D02*Y172689D01*

-G54D246*X377347Y162178D02*X380228D01*

-X384162Y166112D01*

-Y170386D01*

-G54D245*X381603D02*Y175000D01*

-X376485Y170386D02*X372441D01*

-G54D246*X366841Y192337D02*Y166300D01*

-X368441Y166963D02*Y198000D01*

-X366841Y197325D02*Y192220D01*

-X365241Y191616D02*Y165637D01*

-X363484Y191048D02*Y162503D01*

-X365241Y193163D02*Y190800D01*

-D03*

-X363484Y190957D02*Y192657D01*

-G54D245*X404441Y184000D02*X400441Y180000D01*

-X402441Y185000D02*X394441D01*

-X402250Y177000D02*Y168468D01*

-G54D247*X407000Y180618D02*Y174000D01*

-X409382Y183000D02*X407000Y180618D01*

-G54D246*X398441Y173000D02*X396441Y175000D01*

-G54D245*X404250Y183809D02*X411882Y191441D01*

-X413441Y196000D02*X402441Y185000D01*

-X421823Y196000D02*X413441D01*

-X398441D02*X400441Y194000D01*

-X394441D02*X400441D01*

-G54D247*X418559Y182000D02*X417000Y180441D01*

-Y174000D02*Y180500D01*

-X427000Y181508D02*Y174000D01*

-X417000Y180500D02*X414500Y183000D01*

-G54D245*X437433Y161382D02*X394397D01*

-Y168083D02*Y161382D01*

-X421823Y168468D02*Y166008D01*

-Y168468D02*X402250D01*

-G54D247*X437000Y174000D03*

-G54D245*X386720Y163279D02*X386441Y163000D01*

-X386720Y170386D02*Y163279D01*

-X391441Y164000D02*Y162000D01*

-X389279Y166162D02*X391441Y164000D01*

-X389279Y172689D02*Y166162D01*

-X391441Y162000D02*X388941Y159500D01*

-G54D246*X386023Y157813D02*X387710Y159500D01*

-X388941D01*

-G54D245*X389279Y184162D02*Y193614D01*

-X389441Y184000D02*X389279Y184162D01*

-X391838Y187603D02*X394441Y185000D01*

-X391838Y193614D02*Y187603D01*

-X380441Y180000D02*X400441D01*

-X402250Y177000D02*X379044D01*

-X381603Y175000D02*X391838D01*

-Y170386D02*Y175000D01*

-G54D246*X396441D02*X391838D01*

-G54D245*X384162Y193614D02*Y188000D01*

-X376485Y191311D02*Y185700D01*

-X379044Y184000D02*X389441D01*

-X379044Y193614D02*Y184000D01*

-X429765Y71000D02*X440000D01*

-X429765Y76324D02*Y71000D01*

-X440000Y76000D02*Y71000D01*

-X424647Y76206D02*X423441Y75000D01*

-X424647Y80772D02*Y76206D01*

-X427206Y78469D02*Y48468D01*

-X442559Y78469D02*Y76008D01*

-G54D246*X439941Y71000D02*X440941Y70000D01*

-Y65559D01*

-X440449D02*X434941D01*

-X434449Y60441D02*Y56500D01*

-X440449Y60441D02*Y56500D01*

-G54D245*X468441Y48468D02*Y46008D01*

-Y48468D02*X427206D01*

-G54D247*X473500Y46008D02*X473559D01*

-X463500Y54000D03*

-D03*

-X473500D02*Y46992D01*

-X473559D02*X473500D01*

-X473559Y54000D02*X473500D01*

-G54D245*X468382Y76008D02*X442559D01*

-G54D247*X463500Y84000D03*

-D03*

-X473500D02*Y76992D01*

-X473559Y84000D02*X473500D01*

-X463500Y62508D03*

-D03*

-D03*

-Y54000D01*

-Y62508D03*

-X473559D02*Y54000D01*

-X463500Y62508D02*X461059D01*

-X463500D02*X461059D01*

-X463500D02*X461059Y63492D01*

-Y62508D02*X463500D01*

-X461059D02*X463500D01*

-X468441D02*X463500D01*

-X453500Y60559D02*Y54000D01*

-X455941Y63000D02*X453500Y60559D01*

-G54D245*X418440Y101000D02*Y115875D01*

-X420441Y101546D02*Y115500D01*

-X424647Y134032D02*Y106303D01*

-G54D246*X420441Y127000D02*Y115500D01*

-X418440Y122001D02*Y115875D01*

-G54D245*X432030Y97015D02*X422425D01*

-X428241Y93000D02*X420941D01*

-X427941Y99000D02*X422987D01*

-X429441Y95000D02*X421895D01*

-X428441Y93200D02*X428241Y93000D01*

-X434882Y99867D02*X432030Y97015D01*

-X429765Y100824D02*X427941Y99000D01*

-X429765Y106303D02*Y100824D01*

-X432324Y89317D02*X428441Y93200D01*

-X437441Y87000D02*X429441Y95000D01*

-X437441D02*X440000Y92441D01*

-X432324Y83075D02*Y89317D01*

-X437441Y80000D02*Y87000D01*

-X432441Y80000D02*Y85000D01*

-X440000Y80772D02*Y92441D01*

-X434882Y80772D02*Y75000D01*

-X440000Y80772D02*Y76000D01*

-X434882Y101697D02*Y99867D01*

-X432324Y106303D02*Y111000D01*

-X434882Y106303D02*Y101118D01*

-X437441Y104000D02*Y95000D01*

-X440000Y108453D02*Y106303D01*

-X429765Y80772D02*Y76000D01*

-X422425Y97015D02*X418440Y101000D01*

-X422987Y99000D02*X420441Y101546D01*

-X444441Y104000D02*X446441Y102000D01*

-X442559Y104000D02*X444441D01*

-X427206Y115000D02*X428441D01*

-X427206Y109000D02*Y115000D01*

-X437441D02*X427441D01*

-X437441Y109000D02*Y115000D01*

-X427206Y104000D02*Y109000D01*

-X437441Y104000D02*Y109000D01*

-G54D247*Y115000D02*X440941Y118500D01*

-Y123000D01*

-G54D246*X421895Y95000D02*X416441Y100454D01*

-X420941Y93000D02*X414441Y99500D01*

-X416441Y100454D02*Y106000D01*

-X414441Y99500D02*Y106000D01*

-X416441Y114437D02*Y105455D01*

-X414441Y111546D02*Y105554D01*

-G54D245*X468382Y166000D02*X460441D01*

-G54D247*X463500Y182508D02*X461000D01*

-X463500D02*X461000D01*

-X463500D03*

-X461000D02*X463500D01*

-X461000D02*X463500D01*

-Y174000D03*

-D03*

-G54D245*X459941Y196500D02*X458441Y195000D01*

-X468382Y196500D02*X459941D01*

-G54D247*X463500Y182508D03*

-D03*

-X461000Y183492D01*

-G54D245*X460441Y166000D02*X458441Y164000D01*

-G54D247*X473500Y153492D02*X473559D01*

-X473500Y152508D02*Y144000D01*

-X473559Y152508D02*X473500D01*

-Y144000D02*Y135508D01*

-X463500Y152508D03*

-D03*

-D03*

-X468441D02*X463500D01*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y153492D01*

-Y152508D02*X463500D01*

-X461000D02*X463500D01*

-X455882Y153000D02*X453500Y150618D01*

-X437000Y174000D03*

-Y166500D01*

-Y174000D03*

-X437433Y166500D03*

-D03*

-X427000Y174000D03*

-Y166992D01*

-Y174000D03*

-D03*

-Y166992D02*X426941D01*

-X427000D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-D03*

-G54D246*X368441Y166963D02*X380404Y155000D01*

-X366841Y166300D02*X380141Y153000D01*

-X380404Y155000D02*X392441D01*

-X420441Y127000D01*

-X380141Y153000D02*X387441D01*

-X418440Y122001D01*

-X365241Y165637D02*X416441Y114437D01*

-X363484Y162503D02*X414441Y111546D01*

-X250941Y229500D02*X269858Y210583D01*

-X268458Y207483D02*X246441Y229500D01*

-X242441D02*X267558Y204383D01*

-X272050Y213000D02*X247050Y238000D01*

-X269858Y210583D02*X304706D01*

-X304584Y207483D02*X268458D01*

-X267558Y204383D02*X305280D01*

-X309941Y213000D02*X272050D01*

-G54D247*X165941Y230000D02*Y217500D01*

-X169441Y214000D01*

-G54D246*X377441Y207000D02*X348441Y236000D01*

-X356441Y233000D02*X363895D01*

-X355441Y213124D02*Y207489D01*

-X359930Y203000D02*X355441Y207489D01*

-X353441Y207226D02*X359287Y201380D01*

-X350857Y206000D02*X352404D01*

-X365241Y193163D01*

-X363484Y192657D02*X351741Y204400D01*

-X351791Y204350D02*X350244D01*

-X309941Y213000D02*X334441Y188500D01*

-Y166000D01*

-X337441Y163000D01*

-X291441Y236000D02*X348441D01*

-X292207Y232971D02*X323886D01*

-X323183Y231349D02*X291092D01*

-X323245D02*X322092D01*

-X338441Y230124D02*X355441Y213124D01*

-X338441Y224192D02*X353441Y209192D01*

-Y207226D01*

-X323886Y232971D02*X350857Y206000D01*

-X350244Y204350D02*X323245Y231349D01*

-G54D245*X468382Y135508D02*X466906D01*

-Y134032D01*

-G54D247*X463500Y144000D03*

-D03*

-X453500Y150618D02*Y144000D01*

-X463500Y152508D02*Y144000D01*

-Y152508D03*

-G54D245*X466906Y134032D02*X424647D01*

-G54D247*X455882Y123000D02*X453500Y120618D01*

-X463500Y92508D03*

-D03*

-D03*

-D03*

-Y114000D03*

-D03*

-Y92508D02*X461059Y93492D01*

-X463500Y92508D02*X461059D01*

-X463500D02*X461059D01*

-X463500D01*

-X461059D02*X463500D01*

-Y84000D01*

-X473559Y92508D02*Y84000D01*

-X453500Y90559D02*Y84000D01*

-X455941Y93000D02*X453500Y90559D01*

-X468441Y92508D02*X463500D01*

-G54D245*X468382Y106008D02*X448750D01*

-Y108453D02*Y106008D01*

-Y108453D02*X440000D01*

-G54D247*X463500Y122508D03*

-D03*

-D03*

-Y114000D01*

-Y122508D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y123492D01*

-Y122508D02*X463500D01*

-X461000D02*X463500D01*

-X468441D02*X463500D01*

-X453500Y120618D02*Y114000D01*

-X473500D02*Y106992D01*

-X473559Y122508D02*Y114000D01*

-X473500D01*

-X85441Y47500D02*X79882D01*

-X77441Y49941D01*

-X76949Y55059D02*X79390Y57500D01*

-X85441D01*

-X106949Y55059D02*X109390Y57500D01*

-X108941Y47500D02*X107441Y49000D01*

-X109390Y57500D02*X115441D01*

-Y47500D02*X108941D01*

-G54D246*X85441Y67500D02*X109941Y92000D01*

-G54D247*X136949Y49941D02*X139390Y47500D01*

-X145441D01*

-X166949Y49941D02*X169390Y47500D01*

-X175441D01*

-X145441Y57500D02*X139882D01*

-X137441Y55059D01*

-X166949D02*X169390Y57500D01*

-X175441D01*

-X196949Y55059D02*X199390Y57500D01*

-X205441D01*

-X196949Y49941D02*X199390Y47500D01*

-X205441D01*

-X226949Y49941D02*X229390Y47500D01*

-X235441D01*

-X226949Y55059D02*X229390Y57500D01*

-X235441D01*

-X256949Y55059D02*X259390Y57500D01*

-X265441D01*

-X256949Y49941D02*X259390Y47500D01*

-X265441D01*

-X286949Y49941D02*X289390Y47500D01*

-X295441D01*

-X286949Y55059D02*X289390Y57500D01*

-X295441D01*

-G54D246*Y67500D02*X275941D01*

-X115441D02*Y120500D01*

-X154941Y130500D02*X153441Y132000D01*

-X151941D01*

-X115441Y120500D02*X114441Y121500D01*

-X109941Y92000D02*Y130500D01*

-X111941Y132500D01*

-X115441D01*

-X145441Y67500D02*Y114500D01*

-X152441Y121500D01*

-X175441Y67500D02*X154941Y88000D01*

-Y130500D01*

-X235441Y67500D02*X198441Y104500D01*

-X265441Y67500D02*X234441Y98500D01*

-Y122500D01*

-X275941Y67500D02*X237441Y106000D01*

-Y131500D01*

-X235941Y133000D01*

-X198441Y104500D02*Y122500D01*

-X190941Y82000D02*Y130000D01*

-X193941Y133000D01*

-X195441D01*

-X205441Y67500D02*X190941Y82000D01*

-G54D245*X459941Y376500D02*X458441Y375000D01*

-G54D247*X463500Y384000D03*

-D03*

-X473500Y393492D02*X473559D01*

-X463500Y362508D03*

-X473500Y363492D02*X473559D01*

-X463500Y362508D02*X461059Y363492D01*

-Y362508D02*X463500D01*

-X461059D02*X463500D01*

-Y392508D03*

-D03*

-D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D02*X461000Y393492D01*

-Y392508D02*X463500D01*

-X461000D02*X463500D01*

-Y354000D03*

-X473618D02*Y346008D01*

-Y354000D02*X473500D01*

-G54D245*X468382Y376500D02*X459941D01*

-X421823Y316008D02*X420347D01*

-Y314532D01*

-X402250D01*

-X437433Y311382D02*X404250D01*

-X431882Y305468D03*

-X421882D01*

-X431882D02*Y301508D01*

-X421882Y305468D02*Y302492D01*

-G54D247*X418941Y302000D02*X417000Y300059D01*

-Y300500D02*X414500Y303000D01*

-X421882Y302000D02*X418941D01*

-G54D245*X459941Y316500D02*X458441Y315000D01*

-X468382Y316500D02*X459941D01*

-G54D247*X463500Y302508D03*

-D03*

-D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D01*

-X461000D02*X463500D01*

-X461000Y303492D01*

-X473500D02*X473000D01*

-X463500Y324000D03*

-D03*

-X437433Y316500D03*

-D03*

-X437000Y324000D02*Y316500D01*

-Y324000D03*

-X427000Y316992D02*X426941D01*

-X427000Y324000D02*Y316992D01*

-D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-D03*

-X437000Y324000D03*

-X427000D03*

-D03*

-X437000D03*

-X427000D03*

-X417000D02*Y330500D01*

-G54D245*X459941Y286500D02*X458441Y285000D01*

-G54D247*X463500Y294000D03*

-D03*

-G54D245*X468382Y286500D02*X459941D01*

-G54D247*X463500Y272508D03*

-D03*

-D03*

-X461000D01*

-X463500D02*X461000D01*

-X463500D01*

-X461000D02*X463500D01*

-X455882Y273000D02*X453500Y270618D01*

-X463500Y272508D02*X461000Y273492D01*

-X473500D02*X473677D01*

-Y272508D02*X473500D01*

-G54D245*X437492Y281441D02*X394397D01*

-X421823Y288468D02*X402250D01*

-Y292839D02*Y288468D01*

-X394397Y286083D02*Y281441D01*

-X431882Y275468D03*

-X421882D01*

-Y272492D01*

-G54D247*X437492Y286559D03*

-D03*

-X437000Y294000D03*

-Y286559D01*

-Y294000D03*

-D03*

-X427000Y286992D02*X426941D01*

-X427000Y294000D02*Y286992D01*

-D03*

-X426941D02*X427000D01*

-X426941D02*X427000D01*

-D03*

-G54D245*X431882Y275468D02*Y271508D01*

-G54D247*X427000Y294000D03*

-D03*

-D03*

-X417000D02*Y300500D01*

-G54D245*X421823Y288468D02*Y286008D01*

-G54D247*X418500Y272000D02*X417000Y270500D01*

-X421882Y272000D02*X418500D01*

-X417000Y270559D02*X414559Y273000D01*

-X409441D02*X407000Y270559D01*

-G54D246*X307716Y275075D02*X221756D01*

-X268735Y280294D02*X259870D01*

-X255221Y278590D02*X272141D01*

-X275815Y282263D01*

-X299852Y276675D02*X248390D01*

-X245557Y279508D01*

-X308992Y271971D02*X223868D01*

-X308872Y266522D02*X308083Y265733D01*

-X262750Y268772D02*X263493Y269515D01*

-X308872Y266522D02*X307930Y265580D01*

-X220729D01*

-X263493Y269515D02*X314645D01*

-X293902Y282263D02*X275804D01*

-X275815D02*X276842D01*

-X300814Y277637D02*X299852Y276675D01*

-X245557Y279508D02*X247216Y277849D01*

-X222884Y255000D02*X275441D01*

-X291441Y239000D01*

-X224441Y252000D02*X275441D01*

-X226441Y250000D02*X275178D01*

-X274191Y248250D02*X231691D01*

-X254740Y298329D02*Y295829D01*

-X266413Y296594D02*X266896Y296111D01*

-X269653Y298631D02*X272165Y296119D01*

-X273229Y298582D02*X271946Y299866D01*

-X254740Y295829D02*X261240Y289329D01*

-X260341Y284249D02*X257845Y286745D01*

-X260253Y288064D02*X259864D01*

-X256818Y291110D01*

-X264034Y284283D02*X260253Y288064D01*

-X259870Y280294D02*X256996Y283168D01*

-X257031Y290897D02*X252105Y295823D01*

-Y301771D01*

-X257850Y286740D02*X250348Y294242D01*

-Y301687D01*

-Y301846D02*Y302277D01*

-X256996Y283168D02*X251412D01*

-X261240Y289329D02*X268849D01*

-X263240Y295329D02*X264568Y294000D01*

-X266441D01*

-X266020Y291283D02*X265474Y291829D01*

-X262740D01*

-X268849Y289329D02*X270178Y288000D01*

-X266413Y296594D02*X268508Y294499D01*

-X266441Y294000D02*X267558Y292883D01*

-X270441Y290000D02*X269158Y291283D01*

-X266020D01*

-X279441Y285000D02*X273441D01*

-X268735Y280294D01*

-X221804Y275075D02*X221493D01*

-X217441Y279000D01*

-X223941Y271971D02*X219970D01*

-X219441Y272500D01*

-X250553Y280776D02*X249753D01*

-X250554D02*X253035D01*

-X247253Y277812D02*X248390Y276675D01*

-X253035Y280776D02*X255221Y278590D01*

-X287917Y302957D02*Y307829D01*

-X296779Y304963D02*X294773Y302957D01*

-X293035D01*

-X278224Y298517D02*Y303063D01*

-X275724Y297363D02*Y301494D01*

-X273634Y303585D01*

-X278224Y303063D02*X285494Y310333D01*

-X277174Y308219D02*X280976Y312022D01*

-X293441Y296111D02*X305330Y308000D01*

-X305993Y306400D02*X292476Y292883D01*

-X272165Y296119D02*X274480D01*

-X275724Y297363D01*

-X268508Y294499D02*X281091D01*

-X282702Y296111D01*

-X293441D01*

-X267558Y292883D02*X292476D01*

-X335673Y279602D02*X358839D01*

-X300104Y277637D02*X358541D01*

-X368170Y281271D02*X324922D01*

-X278225Y279602D02*X335757D01*

-X324922Y281271D02*X318193Y288000D01*

-X270178D02*X318193D01*

-X270441Y290000D02*X319525D01*

-X326237Y283288D01*

-X370153D01*

-X314441Y269515D02*X362315D01*

-X291441Y239000D02*X360441D01*

-X275441Y252000D02*X291441Y236000D01*

-X275178Y250000D02*X292207Y232971D01*

-X291092Y231349D02*X274191Y248250D01*

-X369441Y312000D02*X363841Y306400D01*

-X362441Y308000D02*X368441Y314000D01*

-X358774Y310333D02*X367441Y319000D01*

-X305993Y306400D02*X363841D01*

-X305330Y308000D02*X362441D01*

-X285494Y310333D02*X358774D01*

-X280976Y312022D02*X356463D01*

-X363441Y319000D01*

-X278661Y315434D02*X345216D01*

-X354587D02*X345007D01*

-X361698Y320140D02*X355188Y313631D01*

-X360013Y320860D02*X354587Y315434D01*

-X279121Y313631D02*X355188D01*

-G54D248*X118699Y327729D02*Y308829D01*

-G54D247*X127799Y327729D02*Y310858D01*

-X125941Y309000D01*

-G54D249*X124831Y302385D02*X120556D01*

-X118799Y304142D01*

-G54D250*Y308829D01*

-G54D246*X135724Y374939D02*X142712Y381927D01*

-X176106D01*

-X180672Y377361D01*

-Y361769D01*

-X222441Y320000D02*X180672Y361769D01*

-X187712Y342818D02*X178887D01*

-X218816Y316997D02*X191363Y344449D01*

-X268053Y317646D02*Y323343D01*

-X266453Y318382D02*Y324006D01*

-X295669Y353222D01*

-X268053Y323343D02*X296244Y351534D01*

-X295669Y353222D02*X328442D01*

-X339837Y341827D01*

-X296244Y351534D02*X326886D01*

-X338899Y339521D01*

-X353390D01*

-X249101Y328793D02*X229818Y348075D01*

-Y354988D01*

-X252105Y301698D02*X268053Y317646D01*

-X250348Y302277D02*X266453Y318382D01*

-X273634Y303585D02*Y308144D01*

-X279121Y313631D01*

-X271946Y299866D02*Y308718D01*

-Y308719D02*Y308505D01*

-X278661Y315434D02*X271946Y308719D01*

-X263441Y320000D02*X222441D01*

-X249753Y280776D02*X187712Y342818D01*

-X260568Y316997D02*X218816D01*

-X264034Y282931D02*Y284283D01*

-X240391Y278564D02*X230441Y288514D01*

-Y293000D01*

-X251412Y283168D02*X246731Y287850D01*

-Y303031D01*

-G54D247*X203441Y254200D02*Y237000D01*

-G54D246*X221884Y254000D02*X222884Y255000D01*

-G54D247*X194441Y254200D02*X188641D01*

-X183541Y249100D01*

-Y242443D01*

-X178384D01*

-X165941Y230000D01*

-G54D246*X225441Y249000D02*X226441Y250000D01*

-X231691Y248250D02*X230441Y247000D01*

-G54D247*X203441Y254200D02*X204998Y255757D01*

-Y262900D01*

-X203441Y254200D02*X199941Y257700D01*

-Y261000D01*

-X212084Y262900D02*X212541Y262443D01*

-X212084Y263293D02*X216648D01*

-X220441Y259500D01*

-X212541Y262443D02*Y250900D01*

-X204998Y262900D02*X205681Y263583D01*

-Y268829D01*

-X212084Y268036D02*Y262900D01*

-X204998Y263293D02*X204705Y263000D01*

-X205441Y269561D02*Y273500D01*

-X204705Y263000D02*X194441D01*

-X210799Y269321D02*X212084Y268036D01*

-X205681Y269321D02*X205360Y269000D01*

-X200941D01*

-X205681Y269321D02*X205441Y269561D01*

-G54D251*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D244*G36*

-X403750Y357250D02*Y350750D01*

-X410250D01*

-Y357250D01*

-X403750D01*

-G37*

-G54D252*X345799Y357329D03*

-G54D253*X315799Y337329D03*

-G54D252*X85799Y369829D03*

-G54D254*X105799Y374829D03*

-G54D244*G36*

-X102499Y368129D02*Y361529D01*

-X109099D01*

-Y368129D01*

-X102499D01*

-G37*

-G54D254*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-G54D255*X93299Y342329D03*

-G54D254*X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D244*G36*

-X450250Y267250D02*Y260750D01*

-X456750D01*

-Y267250D01*

-X450250D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X456750D01*

-Y207250D01*

-X450250D01*

-G37*

-G36*

-Y177250D02*Y170750D01*

-X456750D01*

-Y177250D01*

-X450250D01*

-G37*

-G54D251*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D244*G36*

-X450250Y237250D02*Y230750D01*

-X456750D01*

-Y237250D01*

-X450250D01*

-G37*

-G54D251*X463500Y234000D03*

-X473500D03*

-G54D244*G36*

-X450250Y147250D02*Y140750D01*

-X456750D01*

-Y147250D01*

-X450250D01*

-G37*

-G36*

-Y117250D02*Y110750D01*

-X456750D01*

-Y117250D01*

-X450250D01*

-G37*

-G36*

-Y87250D02*Y80750D01*

-X456750D01*

-Y87250D01*

-X450250D01*

-G37*

-G36*

-Y57250D02*Y50750D01*

-X456750D01*

-Y57250D01*

-X450250D01*

-G37*

-G54D251*X463500Y54000D03*

-X473500D03*

-G54D244*G36*

-X450250Y327250D02*Y320750D01*

-X456750D01*

-Y327250D01*

-X450250D01*

-G37*

-G54D251*X463500Y324000D03*

-X473500D03*

-G54D244*G36*

-X450250Y297250D02*Y290750D01*

-X456750D01*

-Y297250D01*

-X450250D01*

-G37*

-G54D251*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D244*G36*

-X309191Y252250D02*Y245750D01*

-X315691D01*

-Y252250D01*

-X309191D01*

-G37*

-G54D251*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D252*X345799Y192329D03*

-G54D244*G36*

-X450250Y387250D02*Y380750D01*

-X456750D01*

-Y387250D01*

-X450250D01*

-G37*

-G54D251*X463500Y384000D03*

-X473500D03*

-G54D244*G36*

-X403750Y387250D02*Y380750D01*

-X410250D01*

-Y387250D01*

-X403750D01*

-G37*

-G36*

-Y297250D02*Y290750D01*

-X410250D01*

-Y297250D01*

-X403750D01*

-G37*

-G36*

-Y327250D02*Y320750D01*

-X410250D01*

-Y327250D01*

-X403750D01*

-G37*

-G54D251*X417000Y324000D03*

-X427000D03*

-G54D244*G36*

-X450250Y357250D02*Y350750D01*

-X456750D01*

-Y357250D01*

-X450250D01*

-G37*

-G54D251*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D244*G36*

-X403750Y177250D02*Y170750D01*

-X410250D01*

-Y177250D01*

-X403750D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X410250D01*

-Y207250D01*

-X403750D01*

-G37*

-G36*

-Y237250D02*Y230750D01*

-X410250D01*

-Y237250D01*

-X403750D01*

-G37*

-G36*

-Y267250D02*Y260750D01*

-X410250D01*

-Y267250D01*

-X403750D01*

-G37*

-G54D251*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D244*G36*

-X202191Y50750D02*Y44250D01*

-X208691D01*

-Y50750D01*

-X202191D01*

-G37*

-G54D251*X205441Y57500D03*

-Y67500D03*

-G54D244*G36*

-X232191Y50750D02*Y44250D01*

-X238691D01*

-Y50750D01*

-X232191D01*

-G37*

-G54D251*X235441Y57500D03*

-Y67500D03*

-G54D244*G36*

-X262191Y50750D02*Y44250D01*

-X268691D01*

-Y50750D01*

-X262191D01*

-G37*

-G36*

-X172191D02*Y44250D01*

-X178691D01*

-Y50750D01*

-X172191D01*

-G37*

-G36*

-X142191D02*Y44250D01*

-X148691D01*

-Y50750D01*

-X142191D01*

-G37*

-G36*

-X112191D02*Y44250D01*

-X118691D01*

-Y50750D01*

-X112191D01*

-G37*

-G36*

-X82191D02*Y44250D01*

-X88691D01*

-Y50750D01*

-X82191D01*

-G37*

-G54D251*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D244*G36*

-X292191Y50750D02*Y44250D01*

-X298691D01*

-Y50750D01*

-X292191D01*

-G37*

-G54D251*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D252*X85799Y179829D03*

-G54D254*X105799Y184829D03*

-G54D244*G36*

-X102499Y178129D02*Y171529D01*

-X109099D01*

-Y178129D01*

-X102499D01*

-G37*

-G54D254*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D244*G36*

-X82191Y243250D02*Y236750D01*

-X88691D01*

-Y243250D01*

-X82191D01*

-G37*

-G54D251*X85441Y230000D03*

-Y220000D03*

-G54D254*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D244*G36*

-X192499Y200629D02*Y194029D01*

-X199099D01*

-Y200629D01*

-X192499D01*

-G37*

-G54D254*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D256*X394397Y172689D02*Y168083D01*

-X391838Y172689D02*Y168083D01*

-X389279Y172689D02*Y168083D01*

-X386720Y172689D02*Y168083D01*

-X384162Y172689D02*Y168083D01*

-X381603Y172689D02*Y168083D01*

-X379044Y172689D02*Y168083D01*

-X376485Y172689D02*Y168083D01*

-G54D257*X461000Y153492D02*Y152508D01*

-X473500Y166492D02*Y165508D01*

-X468382Y166492D02*Y165508D01*

-X468441Y153492D02*Y152508D01*

-X455882Y153492D02*Y152508D01*

-X426941Y166992D02*Y166008D01*

-X421823Y166992D02*Y166008D01*

-X436449Y166500D02*X437433D01*

-X436449Y161382D02*X437433D01*

-X473559Y153492D02*Y152508D01*

-X461000Y123492D02*Y122508D01*

-X455882Y123492D02*Y122508D01*

-X473559Y123492D02*Y122508D01*

-X468441Y123492D02*Y122508D01*

-X473559Y93492D02*Y92508D01*

-X468441Y93492D02*Y92508D01*

-X461059Y93492D02*Y92508D01*

-X455941Y93492D02*Y92508D01*

-X473500Y106992D02*Y106008D01*

-X468382Y106992D02*Y106008D01*

-X473500Y136492D02*Y135508D01*

-X468382Y136492D02*Y135508D01*

-X286949Y49941D02*X287933D01*

-X256949D02*X257933D01*

-X226949D02*X227933D01*

-X196949D02*X197933D01*

-X166949D02*X167933D01*

-X256949Y55059D02*X257933D01*

-X226949D02*X227933D01*

-X196949D02*X197933D01*

-X166949D02*X167933D01*

-X286949D02*X287933D01*

-X434449Y65559D02*X435433D01*

-X434449Y60441D02*X435433D01*

-G54D256*X442559Y83075D02*Y78469D01*

-X440000Y83075D02*Y78469D01*

-G54D258*X437441Y83075D02*Y78469D01*

-G54D256*X434882Y83075D02*Y78469D01*

-X432324Y83075D02*Y78469D01*

-X429765Y83075D02*Y78469D01*

-X427206Y83075D02*Y78469D01*

-X424647Y83075D02*Y78469D01*

-G54D257*X440449Y65559D02*X441433D01*

-X440449Y60441D02*X441433D01*

-G54D256*X424647Y106303D02*Y101697D01*

-X427206Y106303D02*Y101697D01*

-X429765Y106303D02*Y101697D01*

-X432324Y106303D02*Y101697D01*

-X434882Y106303D02*Y101697D01*

-X437441Y106303D02*Y101697D01*

-X440000Y106303D02*Y101697D01*

-X442559Y106303D02*Y101697D01*

-G54D257*X461059Y63492D02*Y62508D01*

-X455941Y63492D02*Y62508D01*

-X468441Y63492D02*Y62508D01*

-X473559Y46992D02*Y46008D01*

-X468441Y46992D02*Y46008D01*

-X473559Y63492D02*Y62508D01*

-X473500Y76992D02*Y76008D01*

-X468382Y76992D02*Y76008D01*

-X461000Y393492D02*Y392508D01*

-X455882Y393492D02*Y392508D01*

-X461059Y363492D02*Y362508D01*

-X473500Y376992D02*Y376008D01*

-X468382Y376992D02*Y376008D01*

-X468441Y363492D02*Y362508D01*

-X468500Y346992D02*Y346008D01*

-X455941Y363492D02*Y362508D01*

-X461000Y333492D02*Y332508D01*

-X455882Y333492D02*Y332508D01*

-X473500Y316992D02*Y316008D01*

-X468382Y316992D02*Y316008D01*

-X468441Y333492D02*Y332508D01*

-X473559Y393492D02*Y392508D01*

-X468441Y393492D02*Y392508D01*

-X427000Y392492D02*Y391508D01*

-X426941Y346992D02*Y346008D01*

-X427118Y377051D02*Y376067D01*

-X421882Y392492D02*Y391508D01*

-X421823Y346992D02*Y346008D01*

-X422000Y377051D02*Y376067D01*

-X427000Y362492D02*Y361508D01*

-X421882Y362492D02*Y361508D01*

-X414500Y363492D02*Y362508D01*

-X409382Y363492D02*Y362508D01*

-X437000Y362492D02*Y361508D01*

-X431882Y362492D02*Y361508D01*

-X436449Y346618D02*X437433D01*

-X437059Y392610D02*Y391626D01*

-X436449Y376618D02*X437433D01*

-X436449Y371500D02*X437433D01*

-X431941Y392610D02*Y391626D01*

-X414559Y393610D02*Y392626D01*

-X409441Y393610D02*Y392626D01*

-X436449Y341500D02*X437433D01*

-X427000Y332492D02*Y331508D01*

-X437000Y332492D02*Y331508D01*

-X431882Y332492D02*Y331508D01*

-X426941Y316992D02*Y316008D01*

-X421823Y316992D02*Y316008D01*

-X436449Y316500D02*X437433D01*

-X414500Y333492D02*Y332508D01*

-X409382Y333492D02*Y332508D01*

-X421882Y332492D02*Y331508D01*

-X397949Y205559D02*X398933D01*

-X397949Y200441D02*X398933D01*

-G54D256*X376485Y195917D02*Y191311D01*

-X379044Y195917D02*Y191311D01*

-X381603Y195917D02*Y191311D01*

-X384162Y195917D02*Y191311D01*

-X386720Y195917D02*Y191311D01*

-X389279Y195917D02*Y191311D01*

-X391838Y195917D02*Y191311D01*

-X394397Y195917D02*Y191311D01*

-X394747Y231460D02*Y226854D01*

-X392188Y231460D02*Y226854D01*

-X389629Y231460D02*Y226854D01*

-X387070Y231460D02*Y226854D01*

-X384512Y231460D02*Y226854D01*

-X381953Y231460D02*Y226854D01*

-X379394Y231460D02*Y226854D01*

-X376835Y231460D02*Y226854D01*

-Y254688D02*Y250082D01*

-X379394Y254688D02*Y250082D01*

-X381953Y254688D02*Y250082D01*

-X384512Y254688D02*Y250082D01*

-X387070Y254688D02*Y250082D01*

-G54D257*X461000Y213492D02*Y212508D01*

-X455882Y213492D02*Y212508D01*

-X461000Y243492D02*Y242508D01*

-X455882Y243492D02*Y242508D01*

-X468382Y226992D02*Y226008D01*

-X468441Y243492D02*Y242508D01*

-Y213492D02*Y212508D01*

-X473500Y196992D02*Y196008D01*

-Y183492D02*Y182508D01*

-X468382Y196992D02*Y196008D01*

-Y183492D02*Y182508D01*

-X461000Y183492D02*Y182508D01*

-X455882Y183492D02*Y182508D01*

-X461000Y273492D02*Y272508D01*

-Y303492D02*Y302508D01*

-X455882Y273492D02*Y272508D01*

-Y303492D02*Y302508D01*

-X436508Y256559D02*X437492D01*

-X436508Y251441D02*X437492D01*

-X437000Y242492D02*Y241508D01*

-X431882Y242492D02*Y241508D01*

-X427059Y226992D02*Y226008D01*

-X436508Y226559D02*X437492D01*

-X436508Y221441D02*X437492D01*

-X421941Y226992D02*Y226008D01*

-X421823Y256992D02*Y256008D01*

-X421882Y242492D02*Y241508D01*

-X414559Y243492D02*Y242508D01*

-X427000Y212492D02*Y211508D01*

-X437000Y212492D02*Y211508D01*

-X431882Y212492D02*Y211508D01*

-X414500Y213492D02*Y212508D01*

-X409382Y213492D02*Y212508D01*

-X421882Y212492D02*Y211508D01*

-X426941Y196492D02*Y195508D01*

-X421823Y196492D02*Y195508D01*

-X437000Y182492D02*Y181508D01*

-X431882Y182492D02*Y181508D01*

-X427000Y182492D02*Y181508D01*

-X421882Y182492D02*Y181508D01*

-X414500Y183492D02*Y182508D01*

-X409382Y183492D02*Y182508D01*

-X473500Y256492D02*Y255508D01*

-X468382Y256492D02*Y255508D01*

-X473677Y273492D02*Y272508D01*

-X468559Y273492D02*Y272508D01*

-X473500Y226992D02*Y226008D01*

-X473559Y243492D02*Y242508D01*

-Y213492D02*Y212508D01*

-Y363492D02*Y362508D01*

-Y333492D02*Y332508D01*

-X473000Y303492D02*Y302508D01*

-X473500Y286992D02*Y286008D01*

-X468382Y286992D02*Y286008D01*

-X467882Y303492D02*Y302508D01*

-X473618Y346992D02*Y346008D01*

-X436449Y311382D02*X437433D01*

-X427000Y302492D02*Y301508D01*

-X421882Y302492D02*Y301508D01*

-X437000Y302492D02*Y301508D01*

-X431882Y302492D02*Y301508D01*

-X436508Y286559D02*X437492D01*

-X414500Y303492D02*Y302508D01*

-X409382Y303492D02*Y302508D01*

-X426941Y286992D02*Y286008D01*

-X427000Y272492D02*Y271508D01*

-X426941Y256992D02*Y256008D01*

-X427000Y242492D02*Y241508D01*

-X421823Y286992D02*Y286008D01*

-X421882Y272492D02*Y271508D01*

-X414559Y273492D02*Y272508D01*

-X409441Y273492D02*Y272508D01*

-X436508Y281441D02*X437492D01*

-X437000Y272492D02*Y271508D01*

-X431882Y272492D02*Y271508D01*

-X409441Y243492D02*Y242508D01*

-X436508Y196559D02*X437492D01*

-X436508Y191441D02*X437492D01*

-G54D256*X388779Y374417D02*Y369811D01*

-X391338Y374417D02*Y369811D01*

-X393897Y374417D02*Y369811D01*

-Y351189D02*Y346583D01*

-X391338Y351189D02*Y346583D01*

-X388779Y351189D02*Y346583D01*

-X386220Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X383662Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X381103Y351189D02*Y346583D01*

-X378544Y351189D02*Y346583D01*

-X375985Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X378544Y374417D02*Y369811D01*

-X381103Y374417D02*Y369811D01*

-X389629Y254688D02*Y250082D01*

-X392188Y254688D02*Y250082D01*

-X391838Y290689D02*Y286083D01*

-X394747Y254688D02*Y250082D01*

-X394397Y290689D02*Y286083D01*

-X389279Y290689D02*Y286083D01*

-X386720Y290689D02*Y286083D01*

-X384162Y290689D02*Y286083D01*

-X381603Y290689D02*Y286083D01*

-X379044Y290689D02*Y286083D01*

-X376485Y290689D02*Y286083D01*

-G54D257*X397949Y324559D02*X398933D01*

-X397949Y319441D02*X398933D01*

-G54D256*X384162Y313917D02*Y309311D01*

-X386720Y313917D02*Y309311D01*

-X381603Y313917D02*Y309311D01*

-X376485Y313917D02*Y309311D01*

-X379044Y313917D02*Y309311D01*

-X389279Y313917D02*Y309311D01*

-X391838Y313917D02*Y309311D01*

-X394397Y313917D02*Y309311D01*

-G54D259*X147048Y344543D02*X147834D01*

-X147048Y337457D02*X147834D01*

-G54D260*X136799Y327729D02*Y321129D01*

-X127799Y327729D02*Y321129D01*

-X118699Y327729D02*Y321129D01*

-G54D261*X123299Y348829D02*X132299D01*

-G54D259*X183148Y235357D02*X183934D01*

-X183148Y242443D02*X183934D01*

-G54D257*X205681Y269321D02*Y268337D01*

-X210799Y269321D02*Y268337D01*

-G54D259*X204998Y263293D02*Y262507D01*

-X212084Y263293D02*Y262507D01*

-G54D260*X194441Y254200D02*Y247600D01*

-X203441Y254200D02*Y247600D01*

-X212541Y254200D02*Y247600D01*

-G54D261*X198941Y226500D02*X207941D01*

-G54D259*X125885Y309222D02*Y308436D01*

-X118799Y309222D02*Y308436D01*

-G54D257*X76949Y49941D02*X77933D01*

-X106949D02*X107933D01*

-X76949Y55059D02*X77933D01*

-X106949D02*X107933D01*

-X136949Y49941D02*X137933D01*

-X136949Y55059D02*X137933D01*

-G54D262*X287917Y303449D02*Y302465D01*

-G54D257*X293035Y303449D02*Y302465D01*

-G54D247*X307716Y275075D03*

-X308992Y271971D03*

-X308872Y266522D03*

-X287917Y307829D03*

-X293902Y282263D03*

-X296779Y304963D03*

-X295937Y243628D03*

-X296727Y256227D03*

-X312157Y300156D03*

-X312122Y295038D03*

-X303365Y330000D03*

-X285430Y325000D03*

-X302941Y340007D03*

-X245557Y279508D03*

-X242456Y293543D03*

-X262750Y268772D03*

-X253101Y261836D03*

-G54D263*X246941Y238000D03*

-X242441Y229500D03*

-X246441D03*

-X250941D03*

-X260941Y191500D03*

-X245863Y191524D03*

-X269441Y198500D03*

-X269941Y231500D03*

-X251941Y210500D03*

-X243941Y202000D03*

-X253441Y102500D03*

-X231441Y148000D03*

-X309441Y141568D03*

-Y136450D03*

-X310941Y115940D03*

-X305696Y107500D03*

-X304584Y207483D03*

-X304706Y210583D03*

-X305280Y204383D03*

-G54D247*X254740Y298329D03*

-X242168Y298800D03*

-G54D263*X246731Y303031D03*

-G54D247*X269653Y298631D03*

-G54D263*X270441Y336000D03*

-Y342500D03*

-Y349500D03*

-G54D247*X268941Y314000D03*

-G54D263*X270441Y357000D03*

-G54D247*X273229Y298582D03*

-X278225Y279602D03*

-X278207Y298612D03*

-X277174Y308219D03*

-X277449Y347500D03*

-G54D263*X263441Y320000D03*

-X260568Y316997D03*

-X261502Y307367D03*

-X249101Y328793D03*

-X229818Y354988D03*

-G54D247*X266413Y296594D03*

-X263240Y295329D03*

-X262740Y291829D03*

-X260341Y284249D03*

-X264034Y282931D03*

-G54D263*X279441Y285000D03*

-G54D264*X386441Y163000D03*

-X400441Y194000D03*

-X389441Y184000D03*

-X400441Y189000D03*

-G54D263*X386023Y157813D03*

-X398441Y173000D03*

-G54D264*X393441Y208000D03*

-X384162Y188000D03*

-X458441Y195000D03*

-Y164000D03*

-X372441Y170386D03*

-G54D263*X377347Y162178D03*

-G54D264*X387441Y326000D03*

-X393441Y355000D03*

-X386720Y282000D03*

-X393441Y327000D03*

-X384162Y306000D03*

-X385941Y354500D03*

-X458441Y375000D03*

-X383662Y378500D03*

-X397441Y373000D03*

-X397941Y367441D03*

-G54D263*X385941Y366000D03*

-G54D264*X458441Y345000D03*

-Y315000D03*

-Y285000D03*

-X398441Y314000D03*

-Y309000D03*

-G54D263*Y291000D03*

-G54D264*X372441Y290689D03*

-Y351189D03*

-G54D263*X339837Y341827D03*

-X353390Y339521D03*

-G54D264*X375441Y235000D03*

-G54D263*X356441Y233000D03*

-X338441Y224192D03*

-Y230124D03*

-X337441Y163000D03*

-X358941Y208500D03*

-G54D264*X384512Y258000D03*

-G54D263*X371602Y260228D03*

-G54D264*X458441Y254000D03*

-Y225000D03*

-X387070Y235000D03*

-X398441Y248000D03*

-Y253000D03*

-G54D263*X396441Y235000D03*

-X392188Y239000D03*

-X388207Y247280D03*

-G54D247*X239302Y262235D03*

-G54D263*X245441Y127500D03*

-X235941Y133000D03*

-X236441Y235500D03*

-X202441Y212500D03*

-X210441D03*

-X220441Y215000D03*

-X224941Y220500D03*

-X225441Y226500D03*

-X224941Y235500D03*

-X224441Y244000D03*

-X212941Y238000D03*

-X203941Y237500D03*

-X193941Y237000D03*

-X181941Y258500D03*

-X183941Y104000D03*

-X112222Y127340D03*

-X114441Y121500D03*

-X115441Y132500D03*

-X101941Y104500D03*

-X166441Y104000D03*

-X127941Y148000D03*

-X106441Y148500D03*

-X149941Y149000D03*

-X138925Y206113D03*

-X138872Y202030D03*

-X138925Y197841D03*

-X161941Y199000D03*

-X166941Y197500D03*

-X138925Y192698D03*

-X161941Y193000D03*

-X166941D03*

-X163941Y127500D03*

-X193390D03*

-X152441Y121500D03*

-X151941Y132000D03*

-X195441Y133000D03*

-X141441Y148000D03*

-X208941D03*

-X223941D03*

-X198441Y122500D03*

-X234441D03*

-X221884Y254000D03*

-X224441Y252000D03*

-X225441Y249000D03*

-X230441Y247000D03*

-X219441Y272500D03*

-X230441Y293000D03*

-X220729Y265580D03*

-X220441Y259500D03*

-X218441Y261500D03*

-X217441Y279000D03*

-X240391Y278564D03*

-X128941Y274500D03*

-Y268500D03*

-Y262500D03*

-Y255000D03*

-Y248500D03*

-Y242500D03*

-X104441Y204500D03*

-X100941D03*

-X141307Y300883D03*

-X124831Y302385D03*

-X158441Y323829D03*

-Y328829D03*

-Y326500D03*

-X153941Y338000D03*

-X154941Y345500D03*

-X135441Y338500D03*

-Y335000D03*

-X139941Y338000D03*

-X111941Y334000D03*

-X117941D03*

-X126441D03*

-X142441Y357500D03*

-Y349500D03*

-X149441D03*

-X126441Y340500D03*

-X111941Y341000D03*

-Y357500D03*

-X121941D03*

-X130941D03*

-X197441Y314500D03*

-Y308500D03*

-X198441Y262500D03*

-Y269500D03*

-X205441Y277000D03*

-X195441Y311500D03*

-X191363Y344449D03*

-X178887Y342818D03*

-X168732Y350833D03*

-X162441Y242500D03*

-X165941Y231000D03*

-Y226500D03*

-X185441Y228000D03*

-X177441D03*

-X162441Y248500D03*

-X161941Y255000D03*

-X162441Y262500D03*

-X162941Y268500D03*

-Y274500D03*

-X165941Y220500D03*

-X169441Y214000D03*

-Y208500D03*

-Y201500D03*

-X177441Y217500D03*

-X185441D03*

-X193941Y212500D03*

-G54D264*X432324Y111000D03*

-X446441Y102000D03*

-X434882Y75000D03*

-G54D265*X440941Y123000D03*

-G54D264*X423441Y75000D03*

-G54D263*X434449Y56500D03*

-X440449D03*

-X354941Y93499D03*

-Y97999D03*

-Y103999D03*

-Y109999D03*

-Y115999D03*

-Y121999D03*

-Y127999D03*

-X387941D03*

-Y121999D03*

-Y115999D03*

-Y109999D03*

-Y97999D03*

-Y93499D03*

-Y103999D03*

-X391441Y84499D03*

-Y79999D03*

-X391941Y74499D03*

-X395441Y66999D03*

-X394441Y59999D03*

-X392941Y53499D03*

-X368941Y48500D03*

-Y43500D03*

-X374941D03*

-Y47000D03*

-G54D245*G54D263*G54D245*G54D263*G54D245*G54D263*G54D245*G54D263*G54D245*G54D263*G54D245*G54D263*G54D245*G54D263*G54D245*G54D263*G54D245*G54D263*G54D266*G54D263*G54D245*G54D267*G54D268*G54D269*G54D268*G54D270*G54D271*G54D270*G54D267*G54D268*G54D267*G54D268*G54D270*G54D267*G54D270*M02*

diff --git a/bbb_cape/schematic/gerbers/20140120/cape.bottommask.gbr b/bbb_cape/schematic/gerbers/20140120/cape.bottommask.gbr
deleted file mode 100644
index 00594b8..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.bottommask.gbr
+++ /dev/null
@@ -1,687 +0,0 @@
-G04 start of page 9 for group -4062 idx -4062 *

-G04 Title: 971 BBB Cape, soldermask *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Mon Jan 20 21:04:42 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNBOTTOMMASK*%

-%ADD314R,0.0405X0.0405*%

-%ADD313R,0.1280X0.1280*%

-%ADD312R,0.0620X0.0620*%

-%ADD311R,0.0572X0.0572*%

-%ADD310R,0.0280X0.0280*%

-%ADD309R,0.0355X0.0355*%

-%ADD308R,0.0230X0.0230*%

-%ADD307C,0.2860*%

-%ADD306C,0.0860*%

-%ADD305C,0.2400*%

-%ADD304C,0.1890*%

-%ADD303C,0.0001*%

-%ADD302C,0.0710*%

-%ADD301C,0.0250*%

-%ADD300C,0.0080*%

-G54D300*X68000Y42000D02*Y244000D01*

-X74500Y250500D02*X101000D01*

-X107500Y256000D02*Y312500D01*

-X101000Y319000D02*X74500D01*

-X68000Y325500D02*Y393300D01*

-X484600D02*Y42000D01*

-X479100Y35500D02*X73500D01*

-G54D301*X189949Y136059D02*X189890Y136000D01*

-G54D300*X74500Y399800D02*X478100D01*

-X74500Y35500D02*G75*G02X68000Y42000I0J6500D01*G01*

-Y244000D02*G75*G02X74500Y250500I6500J0D01*G01*

-X107500Y257000D02*G75*G02X101000Y250500I-6500J0D01*G01*

-Y319000D02*G75*G02X107500Y312500I0J-6500D01*G01*

-X74500Y319000D02*G75*G02X68000Y325500I0J6500D01*G01*

-X478100Y399800D02*G75*G02X484600Y393300I0J-6500D01*G01*

-Y42000D02*G75*G02X478100Y35500I-6500J0D01*G01*

-X68000Y393300D02*G75*G02X74500Y399800I6500J0D01*G01*

-G54D302*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D303*G36*

-X403450Y357550D02*Y350450D01*

-X410550D01*

-Y357550D01*

-X403450D01*

-G37*

-G54D304*X345799Y357329D03*

-G54D305*X315799Y337329D03*

-G54D304*X85799Y369829D03*

-G54D306*X105799Y374829D03*

-G54D303*G36*

-X101499Y369129D02*Y360529D01*

-X110099D01*

-Y369129D01*

-X101499D01*

-G37*

-G54D306*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-G54D307*X93299Y342329D03*

-G54D306*X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D303*G36*

-X449950Y267550D02*Y260450D01*

-X457050D01*

-Y267550D01*

-X449950D01*

-G37*

-G36*

-Y207550D02*Y200450D01*

-X457050D01*

-Y207550D01*

-X449950D01*

-G37*

-G36*

-Y177550D02*Y170450D01*

-X457050D01*

-Y177550D01*

-X449950D01*

-G37*

-G54D302*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D303*G36*

-X449950Y237550D02*Y230450D01*

-X457050D01*

-Y237550D01*

-X449950D01*

-G37*

-G54D302*X463500Y234000D03*

-X473500D03*

-G54D303*G36*

-X449950Y147550D02*Y140450D01*

-X457050D01*

-Y147550D01*

-X449950D01*

-G37*

-G36*

-Y117550D02*Y110450D01*

-X457050D01*

-Y117550D01*

-X449950D01*

-G37*

-G36*

-Y87550D02*Y80450D01*

-X457050D01*

-Y87550D01*

-X449950D01*

-G37*

-G36*

-Y57550D02*Y50450D01*

-X457050D01*

-Y57550D01*

-X449950D01*

-G37*

-G54D302*X463500Y54000D03*

-X473500D03*

-G54D303*G36*

-X449950Y327550D02*Y320450D01*

-X457050D01*

-Y327550D01*

-X449950D01*

-G37*

-G54D302*X463500Y324000D03*

-X473500D03*

-G54D303*G36*

-X449950Y297550D02*Y290450D01*

-X457050D01*

-Y297550D01*

-X449950D01*

-G37*

-G54D302*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D303*G36*

-X308891Y252550D02*Y245450D01*

-X315991D01*

-Y252550D01*

-X308891D01*

-G37*

-G54D302*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D304*X345799Y192329D03*

-G54D303*G36*

-X449950Y387550D02*Y380450D01*

-X457050D01*

-Y387550D01*

-X449950D01*

-G37*

-G54D302*X463500Y384000D03*

-X473500D03*

-G54D303*G36*

-X403450Y387550D02*Y380450D01*

-X410550D01*

-Y387550D01*

-X403450D01*

-G37*

-G36*

-Y297550D02*Y290450D01*

-X410550D01*

-Y297550D01*

-X403450D01*

-G37*

-G36*

-Y327550D02*Y320450D01*

-X410550D01*

-Y327550D01*

-X403450D01*

-G37*

-G54D302*X417000Y324000D03*

-X427000D03*

-G54D303*G36*

-X449950Y357550D02*Y350450D01*

-X457050D01*

-Y357550D01*

-X449950D01*

-G37*

-G54D302*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D303*G36*

-X403450Y177550D02*Y170450D01*

-X410550D01*

-Y177550D01*

-X403450D01*

-G37*

-G36*

-Y207550D02*Y200450D01*

-X410550D01*

-Y207550D01*

-X403450D01*

-G37*

-G36*

-Y237550D02*Y230450D01*

-X410550D01*

-Y237550D01*

-X403450D01*

-G37*

-G36*

-Y267550D02*Y260450D01*

-X410550D01*

-Y267550D01*

-X403450D01*

-G37*

-G54D302*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D303*G36*

-X201891Y51050D02*Y43950D01*

-X208991D01*

-Y51050D01*

-X201891D01*

-G37*

-G54D302*X205441Y57500D03*

-Y67500D03*

-G54D303*G36*

-X231891Y51050D02*Y43950D01*

-X238991D01*

-Y51050D01*

-X231891D01*

-G37*

-G54D302*X235441Y57500D03*

-Y67500D03*

-G54D303*G36*

-X261891Y51050D02*Y43950D01*

-X268991D01*

-Y51050D01*

-X261891D01*

-G37*

-G36*

-X171891D02*Y43950D01*

-X178991D01*

-Y51050D01*

-X171891D01*

-G37*

-G36*

-X141891D02*Y43950D01*

-X148991D01*

-Y51050D01*

-X141891D01*

-G37*

-G36*

-X111891D02*Y43950D01*

-X118991D01*

-Y51050D01*

-X111891D01*

-G37*

-G36*

-X81891D02*Y43950D01*

-X88991D01*

-Y51050D01*

-X81891D01*

-G37*

-G54D302*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D303*G36*

-X291891Y51050D02*Y43950D01*

-X298991D01*

-Y51050D01*

-X291891D01*

-G37*

-G54D302*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D304*X85799Y179829D03*

-G54D306*X105799Y184829D03*

-G54D303*G36*

-X101499Y179129D02*Y170529D01*

-X110099D01*

-Y179129D01*

-X101499D01*

-G37*

-G54D306*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D303*G36*

-X81891Y243550D02*Y236450D01*

-X88991D01*

-Y243550D01*

-X81891D01*

-G37*

-G54D302*X85441Y230000D03*

-Y220000D03*

-G54D306*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D303*G36*

-X191499Y201629D02*Y193029D01*

-X200099D01*

-Y201629D01*

-X191499D01*

-G37*

-G54D306*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D308*X394397Y172689D02*Y168083D01*

-X391838Y172689D02*Y168083D01*

-X389279Y172689D02*Y168083D01*

-X386720Y172689D02*Y168083D01*

-X384162Y172689D02*Y168083D01*

-X381603Y172689D02*Y168083D01*

-X379044Y172689D02*Y168083D01*

-X376485Y172689D02*Y168083D01*

-G54D309*X461000Y153492D02*Y152508D01*

-X473500Y166492D02*Y165508D01*

-X468382Y166492D02*Y165508D01*

-X468441Y153492D02*Y152508D01*

-X455882Y153492D02*Y152508D01*

-X426941Y166992D02*Y166008D01*

-X421823Y166992D02*Y166008D01*

-X436449Y166500D02*X437433D01*

-X436449Y161382D02*X437433D01*

-X473559Y153492D02*Y152508D01*

-X461000Y123492D02*Y122508D01*

-X455882Y123492D02*Y122508D01*

-X473559Y123492D02*Y122508D01*

-X468441Y123492D02*Y122508D01*

-X473559Y93492D02*Y92508D01*

-X468441Y93492D02*Y92508D01*

-X461059Y93492D02*Y92508D01*

-X455941Y93492D02*Y92508D01*

-X473500Y106992D02*Y106008D01*

-X468382Y106992D02*Y106008D01*

-X473500Y136492D02*Y135508D01*

-X468382Y136492D02*Y135508D01*

-X286949Y49941D02*X287933D01*

-X256949D02*X257933D01*

-X226949D02*X227933D01*

-X196949D02*X197933D01*

-X166949D02*X167933D01*

-X256949Y55059D02*X257933D01*

-X226949D02*X227933D01*

-X196949D02*X197933D01*

-X166949D02*X167933D01*

-X286949D02*X287933D01*

-X434449Y65559D02*X435433D01*

-X434449Y60441D02*X435433D01*

-G54D308*X442559Y83075D02*Y78469D01*

-X440000Y83075D02*Y78469D01*

-G54D310*X437441Y83075D02*Y78469D01*

-G54D308*X434882Y83075D02*Y78469D01*

-X432324Y83075D02*Y78469D01*

-X429765Y83075D02*Y78469D01*

-X427206Y83075D02*Y78469D01*

-X424647Y83075D02*Y78469D01*

-G54D309*X440449Y65559D02*X441433D01*

-X440449Y60441D02*X441433D01*

-G54D308*X424647Y106303D02*Y101697D01*

-X427206Y106303D02*Y101697D01*

-X429765Y106303D02*Y101697D01*

-X432324Y106303D02*Y101697D01*

-X434882Y106303D02*Y101697D01*

-X437441Y106303D02*Y101697D01*

-X440000Y106303D02*Y101697D01*

-X442559Y106303D02*Y101697D01*

-G54D309*X461059Y63492D02*Y62508D01*

-X455941Y63492D02*Y62508D01*

-X468441Y63492D02*Y62508D01*

-X473559Y46992D02*Y46008D01*

-X468441Y46992D02*Y46008D01*

-X473559Y63492D02*Y62508D01*

-X473500Y76992D02*Y76008D01*

-X468382Y76992D02*Y76008D01*

-X461000Y393492D02*Y392508D01*

-X455882Y393492D02*Y392508D01*

-X461059Y363492D02*Y362508D01*

-X473500Y376992D02*Y376008D01*

-X468382Y376992D02*Y376008D01*

-X468441Y363492D02*Y362508D01*

-X468500Y346992D02*Y346008D01*

-X455941Y363492D02*Y362508D01*

-X461000Y333492D02*Y332508D01*

-X455882Y333492D02*Y332508D01*

-X473500Y316992D02*Y316008D01*

-X468382Y316992D02*Y316008D01*

-X468441Y333492D02*Y332508D01*

-X473559Y393492D02*Y392508D01*

-X468441Y393492D02*Y392508D01*

-X427000Y392492D02*Y391508D01*

-X426941Y346992D02*Y346008D01*

-X427118Y377051D02*Y376067D01*

-X421882Y392492D02*Y391508D01*

-X421823Y346992D02*Y346008D01*

-X422000Y377051D02*Y376067D01*

-X427000Y362492D02*Y361508D01*

-X421882Y362492D02*Y361508D01*

-X414500Y363492D02*Y362508D01*

-X409382Y363492D02*Y362508D01*

-X437000Y362492D02*Y361508D01*

-X431882Y362492D02*Y361508D01*

-X436449Y346618D02*X437433D01*

-X437059Y392610D02*Y391626D01*

-X436449Y376618D02*X437433D01*

-X436449Y371500D02*X437433D01*

-X431941Y392610D02*Y391626D01*

-X414559Y393610D02*Y392626D01*

-X409441Y393610D02*Y392626D01*

-X436449Y341500D02*X437433D01*

-X427000Y332492D02*Y331508D01*

-X437000Y332492D02*Y331508D01*

-X431882Y332492D02*Y331508D01*

-X426941Y316992D02*Y316008D01*

-X421823Y316992D02*Y316008D01*

-X436449Y316500D02*X437433D01*

-X414500Y333492D02*Y332508D01*

-X409382Y333492D02*Y332508D01*

-X421882Y332492D02*Y331508D01*

-X397949Y205559D02*X398933D01*

-X397949Y200441D02*X398933D01*

-G54D308*X376485Y195917D02*Y191311D01*

-X379044Y195917D02*Y191311D01*

-X381603Y195917D02*Y191311D01*

-X384162Y195917D02*Y191311D01*

-X386720Y195917D02*Y191311D01*

-X389279Y195917D02*Y191311D01*

-X391838Y195917D02*Y191311D01*

-X394397Y195917D02*Y191311D01*

-X394747Y231460D02*Y226854D01*

-X392188Y231460D02*Y226854D01*

-X389629Y231460D02*Y226854D01*

-X387070Y231460D02*Y226854D01*

-X384512Y231460D02*Y226854D01*

-X381953Y231460D02*Y226854D01*

-X379394Y231460D02*Y226854D01*

-X376835Y231460D02*Y226854D01*

-Y254688D02*Y250082D01*

-X379394Y254688D02*Y250082D01*

-X381953Y254688D02*Y250082D01*

-X384512Y254688D02*Y250082D01*

-X387070Y254688D02*Y250082D01*

-G54D309*X461000Y213492D02*Y212508D01*

-X455882Y213492D02*Y212508D01*

-X461000Y243492D02*Y242508D01*

-X455882Y243492D02*Y242508D01*

-X468382Y226992D02*Y226008D01*

-X468441Y243492D02*Y242508D01*

-Y213492D02*Y212508D01*

-X473500Y196992D02*Y196008D01*

-Y183492D02*Y182508D01*

-X468382Y196992D02*Y196008D01*

-Y183492D02*Y182508D01*

-X461000Y183492D02*Y182508D01*

-X455882Y183492D02*Y182508D01*

-X461000Y273492D02*Y272508D01*

-Y303492D02*Y302508D01*

-X455882Y273492D02*Y272508D01*

-Y303492D02*Y302508D01*

-X436508Y256559D02*X437492D01*

-X436508Y251441D02*X437492D01*

-X437000Y242492D02*Y241508D01*

-X431882Y242492D02*Y241508D01*

-X427059Y226992D02*Y226008D01*

-X436508Y226559D02*X437492D01*

-X436508Y221441D02*X437492D01*

-X421941Y226992D02*Y226008D01*

-X421823Y256992D02*Y256008D01*

-X421882Y242492D02*Y241508D01*

-X414559Y243492D02*Y242508D01*

-X427000Y212492D02*Y211508D01*

-X437000Y212492D02*Y211508D01*

-X431882Y212492D02*Y211508D01*

-X414500Y213492D02*Y212508D01*

-X409382Y213492D02*Y212508D01*

-X421882Y212492D02*Y211508D01*

-X426941Y196492D02*Y195508D01*

-X421823Y196492D02*Y195508D01*

-X437000Y182492D02*Y181508D01*

-X431882Y182492D02*Y181508D01*

-X427000Y182492D02*Y181508D01*

-X421882Y182492D02*Y181508D01*

-X414500Y183492D02*Y182508D01*

-X409382Y183492D02*Y182508D01*

-X473500Y256492D02*Y255508D01*

-X468382Y256492D02*Y255508D01*

-X473677Y273492D02*Y272508D01*

-X468559Y273492D02*Y272508D01*

-X473500Y226992D02*Y226008D01*

-X473559Y243492D02*Y242508D01*

-Y213492D02*Y212508D01*

-Y363492D02*Y362508D01*

-Y333492D02*Y332508D01*

-X473000Y303492D02*Y302508D01*

-X473500Y286992D02*Y286008D01*

-X468382Y286992D02*Y286008D01*

-X467882Y303492D02*Y302508D01*

-X473618Y346992D02*Y346008D01*

-X436449Y311382D02*X437433D01*

-X427000Y302492D02*Y301508D01*

-X421882Y302492D02*Y301508D01*

-X437000Y302492D02*Y301508D01*

-X431882Y302492D02*Y301508D01*

-X436508Y286559D02*X437492D01*

-X414500Y303492D02*Y302508D01*

-X409382Y303492D02*Y302508D01*

-X426941Y286992D02*Y286008D01*

-X427000Y272492D02*Y271508D01*

-X426941Y256992D02*Y256008D01*

-X427000Y242492D02*Y241508D01*

-X421823Y286992D02*Y286008D01*

-X421882Y272492D02*Y271508D01*

-X414559Y273492D02*Y272508D01*

-X409441Y273492D02*Y272508D01*

-X436508Y281441D02*X437492D01*

-X437000Y272492D02*Y271508D01*

-X431882Y272492D02*Y271508D01*

-X409441Y243492D02*Y242508D01*

-X436508Y196559D02*X437492D01*

-X436508Y191441D02*X437492D01*

-G54D308*X388779Y374417D02*Y369811D01*

-X391338Y374417D02*Y369811D01*

-X393897Y374417D02*Y369811D01*

-Y351189D02*Y346583D01*

-X391338Y351189D02*Y346583D01*

-X388779Y351189D02*Y346583D01*

-X386220Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X383662Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X381103Y351189D02*Y346583D01*

-X378544Y351189D02*Y346583D01*

-X375985Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X378544Y374417D02*Y369811D01*

-X381103Y374417D02*Y369811D01*

-X389629Y254688D02*Y250082D01*

-X392188Y254688D02*Y250082D01*

-X391838Y290689D02*Y286083D01*

-X394747Y254688D02*Y250082D01*

-X394397Y290689D02*Y286083D01*

-X389279Y290689D02*Y286083D01*

-X386720Y290689D02*Y286083D01*

-X384162Y290689D02*Y286083D01*

-X381603Y290689D02*Y286083D01*

-X379044Y290689D02*Y286083D01*

-X376485Y290689D02*Y286083D01*

-G54D309*X397949Y324559D02*X398933D01*

-X397949Y319441D02*X398933D01*

-G54D308*X384162Y313917D02*Y309311D01*

-X386720Y313917D02*Y309311D01*

-X381603Y313917D02*Y309311D01*

-X376485Y313917D02*Y309311D01*

-X379044Y313917D02*Y309311D01*

-X389279Y313917D02*Y309311D01*

-X391838Y313917D02*Y309311D01*

-X394397Y313917D02*Y309311D01*

-G54D311*X147048Y344543D02*X147834D01*

-X147048Y337457D02*X147834D01*

-G54D312*X136799Y327729D02*Y321129D01*

-X127799Y327729D02*Y321129D01*

-X118699Y327729D02*Y321129D01*

-G54D313*X123299Y348829D02*X132299D01*

-G54D311*X183148Y235357D02*X183934D01*

-X183148Y242443D02*X183934D01*

-G54D309*X205681Y269321D02*Y268337D01*

-X210799Y269321D02*Y268337D01*

-G54D311*X204998Y263293D02*Y262507D01*

-X212084Y263293D02*Y262507D01*

-G54D312*X194441Y254200D02*Y247600D01*

-X203441Y254200D02*Y247600D01*

-X212541Y254200D02*Y247600D01*

-G54D313*X198941Y226500D02*X207941D01*

-G54D311*X125885Y309222D02*Y308436D01*

-X118799Y309222D02*Y308436D01*

-G54D309*X76949Y49941D02*X77933D01*

-X106949D02*X107933D01*

-X76949Y55059D02*X77933D01*

-X106949D02*X107933D01*

-X136949Y49941D02*X137933D01*

-X136949Y55059D02*X137933D01*

-G54D314*X287917Y303449D02*Y302465D01*

-G54D309*X293035Y303449D02*Y302465D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140120/cape.bottompaste.gbr b/bbb_cape/schematic/gerbers/20140120/cape.bottompaste.gbr
deleted file mode 100644
index fb56ec9..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.bottompaste.gbr
+++ /dev/null
@@ -1,295 +0,0 @@
-G04 start of page 13 for group -4014 idx -4014 *

-G04 Title: 971 BBB Cape, bottompaste *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Mon Jan 20 21:04:42 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNBOTTOMPASTE*%

-%ADD343R,0.1220X0.1220*%

-%ADD342R,0.0560X0.0560*%

-%ADD341R,0.0345X0.0345*%

-%ADD340R,0.0512X0.0512*%

-%ADD339R,0.0180X0.0180*%

-%ADD338R,0.0295X0.0295*%

-%ADD337R,0.0130X0.0130*%

-G54D337*X394397Y172689D02*Y168083D01*

-X391838Y172689D02*Y168083D01*

-X389279Y172689D02*Y168083D01*

-X386720Y172689D02*Y168083D01*

-X384162Y172689D02*Y168083D01*

-X381603Y172689D02*Y168083D01*

-X379044Y172689D02*Y168083D01*

-X376485Y172689D02*Y168083D01*

-Y195917D02*Y191311D01*

-X379044Y195917D02*Y191311D01*

-X381603Y195917D02*Y191311D01*

-X384162Y195917D02*Y191311D01*

-X386720Y195917D02*Y191311D01*

-X389279Y195917D02*Y191311D01*

-X391838Y195917D02*Y191311D01*

-X394397Y195917D02*Y191311D01*

-G54D338*X397949Y324559D02*X398933D01*

-X397949Y319441D02*X398933D01*

-G54D337*X424647Y106303D02*Y101697D01*

-X427206Y106303D02*Y101697D01*

-X429765Y106303D02*Y101697D01*

-X432324Y106303D02*Y101697D01*

-X434882Y106303D02*Y101697D01*

-X437441Y106303D02*Y101697D01*

-X440000Y106303D02*Y101697D01*

-X442559Y106303D02*Y101697D01*

-Y83075D02*Y78469D01*

-X440000Y83075D02*Y78469D01*

-G54D339*X437441Y83075D02*Y78469D01*

-G54D337*X434882Y83075D02*Y78469D01*

-X432324Y83075D02*Y78469D01*

-X429765Y83075D02*Y78469D01*

-X427206Y83075D02*Y78469D01*

-X424647Y83075D02*Y78469D01*

-G54D338*X427000Y392492D02*Y391508D01*

-X421882Y392492D02*Y391508D01*

-X461000Y153492D02*Y152508D01*

-X455882Y153492D02*Y152508D01*

-X461059Y63492D02*Y62508D01*

-X455941Y63492D02*Y62508D01*

-X461000Y123492D02*Y122508D01*

-X455882Y123492D02*Y122508D01*

-X461000Y213492D02*Y212508D01*

-X455882Y213492D02*Y212508D01*

-X461000Y243492D02*Y242508D01*

-X455882Y243492D02*Y242508D01*

-X461000Y393492D02*Y392508D01*

-X455882Y393492D02*Y392508D01*

-X461059Y363492D02*Y362508D01*

-X455941Y363492D02*Y362508D01*

-X461000Y333492D02*Y332508D01*

-X455882Y333492D02*Y332508D01*

-X473500Y376992D02*Y376008D01*

-X468382Y376992D02*Y376008D01*

-X473500Y316992D02*Y316008D01*

-X468382Y316992D02*Y316008D01*

-X473500Y286992D02*Y286008D01*

-X468382Y286992D02*Y286008D01*

-X473500Y256492D02*Y255508D01*

-X468382Y256492D02*Y255508D01*

-X473500Y226992D02*Y226008D01*

-X468382Y226992D02*Y226008D01*

-X473500Y196992D02*Y196008D01*

-X468382Y196992D02*Y196008D01*

-X473500Y166492D02*Y165508D01*

-X468382Y166492D02*Y165508D01*

-X427000Y362492D02*Y361508D01*

-X421882Y362492D02*Y361508D01*

-X437000Y362492D02*Y361508D01*

-X431882Y362492D02*Y361508D01*

-X426941Y346992D02*Y346008D01*

-X421823Y346992D02*Y346008D01*

-X414500Y363492D02*Y362508D01*

-X409382Y363492D02*Y362508D01*

-X436449Y346618D02*X437433D01*

-X436449Y341500D02*X437433D01*

-X426941Y316992D02*Y316008D01*

-X421823Y316992D02*Y316008D01*

-X436449Y316500D02*X437433D01*

-X436449Y311382D02*X437433D01*

-X414500Y333492D02*Y332508D01*

-X409382Y333492D02*Y332508D01*

-X427000Y332492D02*Y331508D01*

-X421882Y332492D02*Y331508D01*

-X437000Y332492D02*Y331508D01*

-X431882Y332492D02*Y331508D01*

-X427000Y302492D02*Y301508D01*

-X421882Y302492D02*Y301508D01*

-X437000Y302492D02*Y301508D01*

-X431882Y302492D02*Y301508D01*

-X426941Y286992D02*Y286008D01*

-X421823Y286992D02*Y286008D01*

-X436508Y286559D02*X437492D01*

-X436508Y281441D02*X437492D01*

-X414500Y303492D02*Y302508D01*

-X409382Y303492D02*Y302508D01*

-X427000Y272492D02*Y271508D01*

-X421882Y272492D02*Y271508D01*

-X437000Y272492D02*Y271508D01*

-X431882Y272492D02*Y271508D01*

-X426941Y256992D02*Y256008D01*

-X421823Y256992D02*Y256008D01*

-X436508Y256559D02*X437492D01*

-X436508Y251441D02*X437492D01*

-X414559Y273492D02*Y272508D01*

-X409441Y273492D02*Y272508D01*

-X427000Y242492D02*Y241508D01*

-X421882Y242492D02*Y241508D01*

-X437000Y242492D02*Y241508D01*

-X431882Y242492D02*Y241508D01*

-X427059Y226992D02*Y226008D01*

-X421941Y226992D02*Y226008D01*

-X436508Y226559D02*X437492D01*

-X436508Y221441D02*X437492D01*

-X414559Y243492D02*Y242508D01*

-X409441Y243492D02*Y242508D01*

-X427000Y212492D02*Y211508D01*

-X421882Y212492D02*Y211508D01*

-X437000Y212492D02*Y211508D01*

-X431882Y212492D02*Y211508D01*

-X426941Y196492D02*Y195508D01*

-X421823Y196492D02*Y195508D01*

-X414500Y213492D02*Y212508D01*

-X409382Y213492D02*Y212508D01*

-X437000Y182492D02*Y181508D01*

-X431882Y182492D02*Y181508D01*

-X427000Y182492D02*Y181508D01*

-X421882Y182492D02*Y181508D01*

-X426941Y166992D02*Y166008D01*

-X421823Y166992D02*Y166008D01*

-X436449Y166500D02*X437433D01*

-X436449Y161382D02*X437433D01*

-X414500Y183492D02*Y182508D01*

-X409382Y183492D02*Y182508D01*

-X437059Y392610D02*Y391626D01*

-X431941Y392610D02*Y391626D01*

-X427118Y377051D02*Y376067D01*

-X422000Y377051D02*Y376067D01*

-X414559Y393610D02*Y392626D01*

-X409441Y393610D02*Y392626D01*

-X473559Y123492D02*Y122508D01*

-X468441Y123492D02*Y122508D01*

-X473559Y153492D02*Y152508D01*

-X468441Y153492D02*Y152508D01*

-X473559Y93492D02*Y92508D01*

-X468441Y93492D02*Y92508D01*

-X473559Y63492D02*Y62508D01*

-X468441Y63492D02*Y62508D01*

-X473559Y243492D02*Y242508D01*

-X468441Y243492D02*Y242508D01*

-X473677Y273492D02*Y272508D01*

-X468559Y273492D02*Y272508D01*

-X473559Y213492D02*Y212508D01*

-X468441Y213492D02*Y212508D01*

-X473500Y183492D02*Y182508D01*

-X468382Y183492D02*Y182508D01*

-X473559Y363492D02*Y362508D01*

-X468441Y363492D02*Y362508D01*

-X473559Y333492D02*Y332508D01*

-X468441Y333492D02*Y332508D01*

-X473000Y303492D02*Y302508D01*

-X467882Y303492D02*Y302508D01*

-X473559Y393492D02*Y392508D01*

-X468441Y393492D02*Y392508D01*

-X436508Y196559D02*X437492D01*

-X436508Y191441D02*X437492D01*

-X436449Y376618D02*X437433D01*

-X436449Y371500D02*X437433D01*

-X397949Y205559D02*X398933D01*

-X397949Y200441D02*X398933D01*

-X461059Y93492D02*Y92508D01*

-X455941Y93492D02*Y92508D01*

-X473559Y46992D02*Y46008D01*

-X468441Y46992D02*Y46008D01*

-X473500Y76992D02*Y76008D01*

-X468382Y76992D02*Y76008D01*

-X473500Y106992D02*Y106008D01*

-X468382Y106992D02*Y106008D01*

-X473500Y136492D02*Y135508D01*

-X468382Y136492D02*Y135508D01*

-X461000Y273492D02*Y272508D01*

-X455882Y273492D02*Y272508D01*

-X461000Y183492D02*Y182508D01*

-X455882Y183492D02*Y182508D01*

-X473618Y346992D02*Y346008D01*

-X468500Y346992D02*Y346008D01*

-X461000Y303492D02*Y302508D01*

-X455882Y303492D02*Y302508D01*

-X205681Y269321D02*Y268337D01*

-X210799Y269321D02*Y268337D01*

-G54D340*X147048Y344543D02*X147834D01*

-X147048Y337457D02*X147834D01*

-X125885Y309222D02*Y308436D01*

-X118799Y309222D02*Y308436D01*

-G54D341*X287917Y303449D02*Y302465D01*

-G54D338*X293035Y303449D02*Y302465D01*

-G54D340*X183148Y235357D02*X183934D01*

-X183148Y242443D02*X183934D01*

-X204998Y263293D02*Y262507D01*

-X212084Y263293D02*Y262507D01*

-G54D342*X194441Y254200D02*Y247600D01*

-X203441Y254200D02*Y247600D01*

-X212541Y254200D02*Y247600D01*

-G54D343*X198941Y226500D02*X207941D01*

-G54D338*X76949Y49941D02*X77933D01*

-X76949Y55059D02*X77933D01*

-X286949Y49941D02*X287933D01*

-X286949Y55059D02*X287933D01*

-X256949Y49941D02*X257933D01*

-X256949Y55059D02*X257933D01*

-X226949Y49941D02*X227933D01*

-X226949Y55059D02*X227933D01*

-X196949Y49941D02*X197933D01*

-X196949Y55059D02*X197933D01*

-X166949Y49941D02*X167933D01*

-X166949Y55059D02*X167933D01*

-X136949Y49941D02*X137933D01*

-X136949Y55059D02*X137933D01*

-X106949Y49941D02*X107933D01*

-X106949Y55059D02*X107933D01*

-X440449Y65559D02*X441433D01*

-X440449Y60441D02*X441433D01*

-X434449Y65559D02*X435433D01*

-X434449Y60441D02*X435433D01*

-G54D342*X136799Y327729D02*Y321129D01*

-X127799Y327729D02*Y321129D01*

-X118699Y327729D02*Y321129D01*

-G54D343*X123299Y348829D02*X132299D01*

-G54D337*X394747Y231460D02*Y226854D01*

-X392188Y231460D02*Y226854D01*

-X389629Y231460D02*Y226854D01*

-X387070Y231460D02*Y226854D01*

-X384512Y231460D02*Y226854D01*

-X381953Y231460D02*Y226854D01*

-X379394Y231460D02*Y226854D01*

-X376835Y231460D02*Y226854D01*

-Y254688D02*Y250082D01*

-X379394Y254688D02*Y250082D01*

-X381953Y254688D02*Y250082D01*

-X384512Y254688D02*Y250082D01*

-X387070Y254688D02*Y250082D01*

-X389629Y254688D02*Y250082D01*

-X392188Y254688D02*Y250082D01*

-X394747Y254688D02*Y250082D01*

-X394397Y290689D02*Y286083D01*

-X391838Y290689D02*Y286083D01*

-X389279Y290689D02*Y286083D01*

-X386720Y290689D02*Y286083D01*

-X384162Y290689D02*Y286083D01*

-X381603Y290689D02*Y286083D01*

-X379044Y290689D02*Y286083D01*

-X376485Y290689D02*Y286083D01*

-Y313917D02*Y309311D01*

-X379044Y313917D02*Y309311D01*

-X381603Y313917D02*Y309311D01*

-X384162Y313917D02*Y309311D01*

-X386720Y313917D02*Y309311D01*

-X389279Y313917D02*Y309311D01*

-X391838Y313917D02*Y309311D01*

-X394397Y313917D02*Y309311D01*

-X393897Y351189D02*Y346583D01*

-X391338Y351189D02*Y346583D01*

-X388779Y351189D02*Y346583D01*

-X386220Y351189D02*Y346583D01*

-X383662Y351189D02*Y346583D01*

-X381103Y351189D02*Y346583D01*

-X378544Y351189D02*Y346583D01*

-X375985Y351189D02*Y346583D01*

-Y374417D02*Y369811D01*

-X378544Y374417D02*Y369811D01*

-X381103Y374417D02*Y369811D01*

-X383662Y374417D02*Y369811D01*

-X386220Y374417D02*Y369811D01*

-X388779Y374417D02*Y369811D01*

-X391338Y374417D02*Y369811D01*

-X393897Y374417D02*Y369811D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140120/cape.bottomsilk.gbr b/bbb_cape/schematic/gerbers/20140120/cape.bottomsilk.gbr
deleted file mode 100644
index 5dc9add..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.bottomsilk.gbr
+++ /dev/null
@@ -1,60 +0,0 @@
-G04 start of page 11 for group -4078 idx -4078 *

-G04 Title: 971 BBB Cape, bottomsilk *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Mon Jan 20 21:04:42 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNBOTTOMSILK*%

-%ADD326C,0.0080*%

-%ADD325C,0.0100*%

-G54D325*X422997Y107952D02*X444209D01*

-Y76820D01*

-X422997D02*X444209D01*

-X422997Y107952D02*Y94886D01*

-Y89886D02*Y76820D01*

-Y89886D02*G75*G03X422997Y94886I0J2500D01*G01*

-X374835Y166434D02*X396047D01*

-X374835Y197566D02*Y166434D01*

-Y197566D02*X396047D01*

-Y179500D02*Y166434D01*

-Y197566D02*Y184500D01*

-G75*G03X396047Y179500I0J-2500D01*G01*

-X375185Y225205D02*X396397D01*

-X375185Y256337D02*Y225205D01*

-Y256337D02*X396397D01*

-Y238271D02*Y225205D01*

-Y256337D02*Y243271D01*

-G75*G03X396397Y238271I0J-2500D01*G01*

-X374335Y344934D02*X395547D01*

-X374335Y376066D02*Y344934D01*

-Y376066D02*X395547D01*

-Y358000D02*Y344934D01*

-Y376066D02*Y363000D01*

-G75*G03X395547Y358000I0J-2500D01*G01*

-X374835Y284434D02*X396047D01*

-X374835Y315566D02*Y284434D01*

-Y315566D02*X396047D01*

-Y297500D02*Y284434D01*

-Y315566D02*Y302500D01*

-G75*G03X396047Y297500I0J-2500D01*G01*

-G54D326*X144686Y341393D02*Y340607D01*

-X150196Y341393D02*Y340607D01*

-X121949Y311584D02*X122735D01*

-X121949Y306074D02*X122735D01*

-G54D325*X141999Y357329D02*Y315929D01*

-X113499D02*X141999D01*

-X113499Y357329D02*Y315929D01*

-Y357329D02*X141999D01*

-G54D326*X208148Y260145D02*X208934D01*

-X208148Y265655D02*X208934D01*

-G54D325*X189241Y218000D02*Y259400D01*

-X217741D01*

-Y218000D01*

-X189241D01*

-G54D326*X186296Y238507D02*Y239293D01*

-X180786Y238507D02*Y239293D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140120/cape.fab.gbr b/bbb_cape/schematic/gerbers/20140120/cape.fab.gbr
deleted file mode 100644
index 07a4b9e..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.fab.gbr
+++ /dev/null
@@ -1,3050 +0,0 @@
-G04 start of page 14 for group -3984 idx -3984 *

-G04 Title: 971 BBB Cape, fab *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Mon Jan 20 21:04:42 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNFAB*%

-%ADD348C,0.0100*%

-%ADD347C,0.0075*%

-%ADD346C,0.0060*%

-%ADD345R,0.0080X0.0080*%

-%ADD344C,0.0001*%

-G54D344*G36*

-X90899Y345295D02*X96265Y339929D01*

-X95699Y339363D01*

-X90333Y344729D01*

-X90899Y345295D01*

-G37*

-G36*

-X90333Y339929D02*X95699Y345295D01*

-X96265Y344729D01*

-X90899Y339363D01*

-X90333Y339929D01*

-G37*

-G54D345*X91699Y343929D02*X94899D01*

-X91699D02*Y340729D01*

-X94899D01*

-Y343929D02*Y340729D01*

-G54D344*G36*

-X12600Y414216D02*X17966Y408850D01*

-X17400Y408284D01*

-X12034Y413650D01*

-X12600Y414216D01*

-G37*

-G36*

-X12034Y408850D02*X17400Y414216D01*

-X17966Y413650D01*

-X12600Y408284D01*

-X12034Y408850D01*

-G37*

-G54D345*X13400Y412850D02*X16600D01*

-X13400D02*Y409650D01*

-X16600D01*

-Y412850D02*Y409650D01*

-G54D346*X135000Y413500D02*X136500Y410500D01*

-X138000Y413500D01*

-X136500Y410500D02*Y407500D01*

-X139800Y410800D02*X142050D01*

-X139800Y407500D02*X142800D01*

-X139800Y413500D02*Y407500D01*

-Y413500D02*X142800D01*

-X147600D02*X148350Y412750D01*

-X145350Y413500D02*X147600D01*

-X144600Y412750D02*X145350Y413500D01*

-X144600Y412750D02*Y411250D01*

-X145350Y410500D01*

-X147600D01*

-X148350Y409750D01*

-Y408250D01*

-X147600Y407500D02*X148350Y408250D01*

-X145350Y407500D02*X147600D01*

-X144600Y408250D02*X145350Y407500D01*

-X98000Y412300D02*X99200Y413500D01*

-Y407500D01*

-X98000D02*X100250D01*

-X45000Y408250D02*X45750Y407500D01*

-X45000Y412750D02*Y408250D01*

-Y412750D02*X45750Y413500D01*

-X47250D01*

-X48000Y412750D01*

-Y408250D01*

-X47250Y407500D02*X48000Y408250D01*

-X45750Y407500D02*X47250D01*

-X45000Y409000D02*X48000Y412000D01*

-X49800Y407500D02*X50550D01*

-X52350Y412750D02*X53100Y413500D01*

-X55350D01*

-X56100Y412750D01*

-Y411250D01*

-X52350Y407500D02*X56100Y411250D01*

-X52350Y407500D02*X56100D01*

-X57900Y409750D02*X60900Y413500D01*

-X57900Y409750D02*X61650D01*

-X60900Y413500D02*Y407500D01*

-X65700Y413500D02*X66450Y412750D01*

-X64200Y413500D02*X65700D01*

-X63450Y412750D02*X64200Y413500D01*

-X63450Y412750D02*Y408250D01*

-X64200Y407500D01*

-X65700Y410800D02*X66450Y410050D01*

-X63450Y410800D02*X65700D01*

-X64200Y407500D02*X65700D01*

-X66450Y408250D01*

-Y410050D02*Y408250D01*

-X315799Y340529D02*Y334129D01*

-X312599Y337329D02*X318999D01*

-X314199Y338929D02*X317399D01*

-X314199D02*Y335729D01*

-X317399D01*

-Y338929D02*Y335729D01*

-X15000Y429450D02*Y423050D01*

-X11800Y426250D02*X18200D01*

-X13400Y427850D02*X16600D01*

-X13400D02*Y424650D01*

-X16600D01*

-Y427850D02*Y424650D01*

-X135000Y428500D02*X136500Y425500D01*

-X138000Y428500D01*

-X136500Y425500D02*Y422500D01*

-X139800Y425800D02*X142050D01*

-X139800Y422500D02*X142800D01*

-X139800Y428500D02*Y422500D01*

-Y428500D02*X142800D01*

-X147600D02*X148350Y427750D01*

-X145350Y428500D02*X147600D01*

-X144600Y427750D02*X145350Y428500D01*

-X144600Y427750D02*Y426250D01*

-X145350Y425500D01*

-X147600D01*

-X148350Y424750D01*

-Y423250D01*

-X147600Y422500D02*X148350Y423250D01*

-X145350Y422500D02*X147600D01*

-X144600Y423250D02*X145350Y422500D01*

-X98000Y427300D02*X99200Y428500D01*

-Y422500D01*

-X98000D02*X100250D01*

-X45000Y423250D02*X45750Y422500D01*

-X45000Y427750D02*Y423250D01*

-Y427750D02*X45750Y428500D01*

-X47250D01*

-X48000Y427750D01*

-Y423250D01*

-X47250Y422500D02*X48000Y423250D01*

-X45750Y422500D02*X47250D01*

-X45000Y424000D02*X48000Y427000D01*

-X49800Y422500D02*X50550D01*

-X52350Y427750D02*X53100Y428500D01*

-X55350D01*

-X56100Y427750D01*

-Y426250D01*

-X52350Y422500D02*X56100Y426250D01*

-X52350Y422500D02*X56100D01*

-X57900Y423250D02*X58650Y422500D01*

-X57900Y427750D02*Y423250D01*

-Y427750D02*X58650Y428500D01*

-X60150D01*

-X60900Y427750D01*

-Y423250D01*

-X60150Y422500D02*X60900Y423250D01*

-X58650Y422500D02*X60150D01*

-X57900Y424000D02*X60900Y427000D01*

-X62700Y423250D02*X63450Y422500D01*

-X62700Y427750D02*Y423250D01*

-Y427750D02*X63450Y428500D01*

-X64950D01*

-X65700Y427750D01*

-Y423250D01*

-X64950Y422500D02*X65700Y423250D01*

-X63450Y422500D02*X64950D01*

-X62700Y424000D02*X65700Y427000D01*

-X85799Y179829D02*Y176629D01*

-Y179829D02*X88572Y181429D01*

-X85799Y179829D02*X83026Y181429D01*

-X84199Y179829D02*G75*G03X87399Y179829I1600J0D01*G01*

-G75*G03X84199Y179829I-1600J0D01*G01*

-X85799Y369829D02*Y366629D01*

-Y369829D02*X88572Y371429D01*

-X85799Y369829D02*X83026Y371429D01*

-X84199Y369829D02*G75*G03X87399Y369829I1600J0D01*G01*

-G75*G03X84199Y369829I-1600J0D01*G01*

-X345799Y192329D02*Y189129D01*

-Y192329D02*X348572Y193929D01*

-X345799Y192329D02*X343026Y193929D01*

-X344199Y192329D02*G75*G03X347399Y192329I1600J0D01*G01*

-G75*G03X344199Y192329I-1600J0D01*G01*

-X345799Y357329D02*Y354129D01*

-Y357329D02*X348572Y358929D01*

-X345799Y357329D02*X343026Y358929D01*

-X344199Y357329D02*G75*G03X347399Y357329I1600J0D01*G01*

-G75*G03X344199Y357329I-1600J0D01*G01*

-X15000Y441250D02*Y438050D01*

-Y441250D02*X17773Y442850D01*

-X15000Y441250D02*X12227Y442850D01*

-X13400Y441250D02*G75*G03X16600Y441250I1600J0D01*G01*

-G75*G03X13400Y441250I-1600J0D01*G01*

-X135000Y443500D02*X136500Y440500D01*

-X138000Y443500D01*

-X136500Y440500D02*Y437500D01*

-X139800Y440800D02*X142050D01*

-X139800Y437500D02*X142800D01*

-X139800Y443500D02*Y437500D01*

-Y443500D02*X142800D01*

-X147600D02*X148350Y442750D01*

-X145350Y443500D02*X147600D01*

-X144600Y442750D02*X145350Y443500D01*

-X144600Y442750D02*Y441250D01*

-X145350Y440500D01*

-X147600D01*

-X148350Y439750D01*

-Y438250D01*

-X147600Y437500D02*X148350Y438250D01*

-X145350Y437500D02*X147600D01*

-X144600Y438250D02*X145350Y437500D01*

-X98000Y439750D02*X101000Y443500D01*

-X98000Y439750D02*X101750D01*

-X101000Y443500D02*Y437500D01*

-X45000Y438250D02*X45750Y437500D01*

-X45000Y442750D02*Y438250D01*

-Y442750D02*X45750Y443500D01*

-X47250D01*

-X48000Y442750D01*

-Y438250D01*

-X47250Y437500D02*X48000Y438250D01*

-X45750Y437500D02*X47250D01*

-X45000Y439000D02*X48000Y442000D01*

-X49800Y437500D02*X50550D01*

-X52350Y442300D02*X53550Y443500D01*

-Y437500D01*

-X52350D02*X54600D01*

-X56400Y442750D02*X57150Y443500D01*

-X59400D01*

-X60150Y442750D01*

-Y441250D01*

-X56400Y437500D02*X60150Y441250D01*

-X56400Y437500D02*X60150D01*

-X62700D02*X64950Y440500D01*

-Y442750D02*Y440500D01*

-X64200Y443500D02*X64950Y442750D01*

-X62700Y443500D02*X64200D01*

-X61950Y442750D02*X62700Y443500D01*

-X61950Y442750D02*Y441250D01*

-X62700Y440500D01*

-X64950D01*

-X104199Y186429D02*X107399D01*

-X104199D02*Y183229D01*

-X107399D01*

-Y186429D02*Y183229D01*

-X104199Y176429D02*X107399D01*

-X104199D02*Y173229D01*

-X107399D01*

-Y176429D02*Y173229D01*

-X114199Y186429D02*X117399D01*

-X114199D02*Y183229D01*

-X117399D01*

-Y186429D02*Y183229D01*

-X114199Y176429D02*X117399D01*

-X114199D02*Y173229D01*

-X117399D01*

-Y176429D02*Y173229D01*

-X124199Y186429D02*X127399D01*

-X124199D02*Y183229D01*

-X127399D01*

-Y186429D02*Y183229D01*

-X124199Y176429D02*X127399D01*

-X124199D02*Y173229D01*

-X127399D01*

-Y176429D02*Y173229D01*

-X134199Y186429D02*X137399D01*

-X134199D02*Y183229D01*

-X137399D01*

-Y186429D02*Y183229D01*

-X134199Y176429D02*X137399D01*

-X134199D02*Y173229D01*

-X137399D01*

-Y176429D02*Y173229D01*

-X144199Y186429D02*X147399D01*

-X144199D02*Y183229D01*

-X147399D01*

-Y186429D02*Y183229D01*

-X144199Y176429D02*X147399D01*

-X144199D02*Y173229D01*

-X147399D01*

-Y176429D02*Y173229D01*

-X154199Y186429D02*X157399D01*

-X154199D02*Y183229D01*

-X157399D01*

-Y186429D02*Y183229D01*

-X154199Y176429D02*X157399D01*

-X154199D02*Y173229D01*

-X157399D01*

-Y176429D02*Y173229D01*

-X164199Y186429D02*X167399D01*

-X164199D02*Y183229D01*

-X167399D01*

-Y186429D02*Y183229D01*

-X164199Y176429D02*X167399D01*

-X164199D02*Y173229D01*

-X167399D01*

-Y176429D02*Y173229D01*

-X174199Y186429D02*X177399D01*

-X174199D02*Y183229D01*

-X177399D01*

-Y186429D02*Y183229D01*

-X174199Y176429D02*X177399D01*

-X174199D02*Y173229D01*

-X177399D01*

-Y176429D02*Y173229D01*

-X184199Y186429D02*X187399D01*

-X184199D02*Y183229D01*

-X187399D01*

-Y186429D02*Y183229D01*

-X184199Y176429D02*X187399D01*

-X184199D02*Y173229D01*

-X187399D01*

-Y176429D02*Y173229D01*

-X194199Y186429D02*X197399D01*

-X194199D02*Y183229D01*

-X197399D01*

-Y186429D02*Y183229D01*

-X194199Y176429D02*X197399D01*

-X194199D02*Y173229D01*

-X197399D01*

-Y176429D02*Y173229D01*

-X204199Y186429D02*X207399D01*

-X204199D02*Y183229D01*

-X207399D01*

-Y186429D02*Y183229D01*

-X204199Y176429D02*X207399D01*

-X204199D02*Y173229D01*

-X207399D01*

-Y176429D02*Y173229D01*

-X214199Y186429D02*X217399D01*

-X214199D02*Y183229D01*

-X217399D01*

-Y186429D02*Y183229D01*

-X214199Y176429D02*X217399D01*

-X214199D02*Y173229D01*

-X217399D01*

-Y176429D02*Y173229D01*

-X224199Y186429D02*X227399D01*

-X224199D02*Y183229D01*

-X227399D01*

-Y186429D02*Y183229D01*

-X224199Y176429D02*X227399D01*

-X224199D02*Y173229D01*

-X227399D01*

-Y176429D02*Y173229D01*

-X234199Y186429D02*X237399D01*

-X234199D02*Y183229D01*

-X237399D01*

-Y186429D02*Y183229D01*

-X234199Y176429D02*X237399D01*

-X234199D02*Y173229D01*

-X237399D01*

-Y176429D02*Y173229D01*

-X244199Y186429D02*X247399D01*

-X244199D02*Y183229D01*

-X247399D01*

-Y186429D02*Y183229D01*

-X244199Y176429D02*X247399D01*

-X244199D02*Y173229D01*

-X247399D01*

-Y176429D02*Y173229D01*

-X254199Y186429D02*X257399D01*

-X254199D02*Y183229D01*

-X257399D01*

-Y186429D02*Y183229D01*

-X254199Y176429D02*X257399D01*

-X254199D02*Y173229D01*

-X257399D01*

-Y176429D02*Y173229D01*

-X264199Y186429D02*X267399D01*

-X264199D02*Y183229D01*

-X267399D01*

-Y186429D02*Y183229D01*

-X264199Y176429D02*X267399D01*

-X264199D02*Y173229D01*

-X267399D01*

-Y176429D02*Y173229D01*

-X274199Y186429D02*X277399D01*

-X274199D02*Y183229D01*

-X277399D01*

-Y186429D02*Y183229D01*

-X274199Y176429D02*X277399D01*

-X274199D02*Y173229D01*

-X277399D01*

-Y176429D02*Y173229D01*

-X284199Y186429D02*X287399D01*

-X284199D02*Y183229D01*

-X287399D01*

-Y186429D02*Y183229D01*

-X284199Y176429D02*X287399D01*

-X284199D02*Y173229D01*

-X287399D01*

-Y176429D02*Y173229D01*

-X294199Y186429D02*X297399D01*

-X294199D02*Y183229D01*

-X297399D01*

-Y186429D02*Y183229D01*

-X294199Y176429D02*X297399D01*

-X294199D02*Y173229D01*

-X297399D01*

-Y176429D02*Y173229D01*

-X304199Y186429D02*X307399D01*

-X304199D02*Y183229D01*

-X307399D01*

-Y186429D02*Y183229D01*

-X304199Y176429D02*X307399D01*

-X304199D02*Y173229D01*

-X307399D01*

-Y176429D02*Y173229D01*

-X314199Y186429D02*X317399D01*

-X314199D02*Y183229D01*

-X317399D01*

-Y186429D02*Y183229D01*

-X314199Y176429D02*X317399D01*

-X314199D02*Y173229D01*

-X317399D01*

-Y176429D02*Y173229D01*

-X324199Y186429D02*X327399D01*

-X324199D02*Y183229D01*

-X327399D01*

-Y186429D02*Y183229D01*

-X324199Y176429D02*X327399D01*

-X324199D02*Y173229D01*

-X327399D01*

-Y176429D02*Y173229D01*

-X104199Y376429D02*X107399D01*

-X104199D02*Y373229D01*

-X107399D01*

-Y376429D02*Y373229D01*

-X104199Y366429D02*X107399D01*

-X104199D02*Y363229D01*

-X107399D01*

-Y366429D02*Y363229D01*

-X114199Y376429D02*X117399D01*

-X114199D02*Y373229D01*

-X117399D01*

-Y376429D02*Y373229D01*

-X114199Y366429D02*X117399D01*

-X114199D02*Y363229D01*

-X117399D01*

-Y366429D02*Y363229D01*

-X124199Y376429D02*X127399D01*

-X124199D02*Y373229D01*

-X127399D01*

-Y376429D02*Y373229D01*

-X124199Y366429D02*X127399D01*

-X124199D02*Y363229D01*

-X127399D01*

-Y366429D02*Y363229D01*

-X134199Y376429D02*X137399D01*

-X134199D02*Y373229D01*

-X137399D01*

-Y376429D02*Y373229D01*

-X134199Y366429D02*X137399D01*

-X134199D02*Y363229D01*

-X137399D01*

-Y366429D02*Y363229D01*

-X144199Y376429D02*X147399D01*

-X144199D02*Y373229D01*

-X147399D01*

-Y376429D02*Y373229D01*

-X144199Y366429D02*X147399D01*

-X144199D02*Y363229D01*

-X147399D01*

-Y366429D02*Y363229D01*

-X154199Y376429D02*X157399D01*

-X154199D02*Y373229D01*

-X157399D01*

-Y376429D02*Y373229D01*

-X154199Y366429D02*X157399D01*

-X154199D02*Y363229D01*

-X157399D01*

-Y366429D02*Y363229D01*

-X164199Y376429D02*X167399D01*

-X164199D02*Y373229D01*

-X167399D01*

-Y376429D02*Y373229D01*

-X164199Y366429D02*X167399D01*

-X164199D02*Y363229D01*

-X167399D01*

-Y366429D02*Y363229D01*

-X174199Y376429D02*X177399D01*

-X174199D02*Y373229D01*

-X177399D01*

-Y376429D02*Y373229D01*

-X174199Y366429D02*X177399D01*

-X174199D02*Y363229D01*

-X177399D01*

-Y366429D02*Y363229D01*

-X184199Y376429D02*X187399D01*

-X184199D02*Y373229D01*

-X187399D01*

-Y376429D02*Y373229D01*

-X184199Y366429D02*X187399D01*

-X184199D02*Y363229D01*

-X187399D01*

-Y366429D02*Y363229D01*

-X194199Y376429D02*X197399D01*

-X194199D02*Y373229D01*

-X197399D01*

-Y376429D02*Y373229D01*

-X194199Y366429D02*X197399D01*

-X194199D02*Y363229D01*

-X197399D01*

-Y366429D02*Y363229D01*

-X204199Y376429D02*X207399D01*

-X204199D02*Y373229D01*

-X207399D01*

-Y376429D02*Y373229D01*

-X204199Y366429D02*X207399D01*

-X204199D02*Y363229D01*

-X207399D01*

-Y366429D02*Y363229D01*

-X214199Y376429D02*X217399D01*

-X214199D02*Y373229D01*

-X217399D01*

-Y376429D02*Y373229D01*

-X214199Y366429D02*X217399D01*

-X214199D02*Y363229D01*

-X217399D01*

-Y366429D02*Y363229D01*

-X224199Y376429D02*X227399D01*

-X224199D02*Y373229D01*

-X227399D01*

-Y376429D02*Y373229D01*

-X224199Y366429D02*X227399D01*

-X224199D02*Y363229D01*

-X227399D01*

-Y366429D02*Y363229D01*

-X234199Y376429D02*X237399D01*

-X234199D02*Y373229D01*

-X237399D01*

-Y376429D02*Y373229D01*

-X234199Y366429D02*X237399D01*

-X234199D02*Y363229D01*

-X237399D01*

-Y366429D02*Y363229D01*

-X244199Y376429D02*X247399D01*

-X244199D02*Y373229D01*

-X247399D01*

-Y376429D02*Y373229D01*

-X244199Y366429D02*X247399D01*

-X244199D02*Y363229D01*

-X247399D01*

-Y366429D02*Y363229D01*

-X254199Y376429D02*X257399D01*

-X254199D02*Y373229D01*

-X257399D01*

-Y376429D02*Y373229D01*

-X254199Y366429D02*X257399D01*

-X254199D02*Y363229D01*

-X257399D01*

-Y366429D02*Y363229D01*

-X264199Y376429D02*X267399D01*

-X264199D02*Y373229D01*

-X267399D01*

-Y376429D02*Y373229D01*

-X264199Y366429D02*X267399D01*

-X264199D02*Y363229D01*

-X267399D01*

-Y366429D02*Y363229D01*

-X274199Y376429D02*X277399D01*

-X274199D02*Y373229D01*

-X277399D01*

-Y376429D02*Y373229D01*

-X274199Y366429D02*X277399D01*

-X274199D02*Y363229D01*

-X277399D01*

-Y366429D02*Y363229D01*

-X284199Y376429D02*X287399D01*

-X284199D02*Y373229D01*

-X287399D01*

-Y376429D02*Y373229D01*

-X284199Y366429D02*X287399D01*

-X284199D02*Y363229D01*

-X287399D01*

-Y366429D02*Y363229D01*

-X294199Y376429D02*X297399D01*

-X294199D02*Y373229D01*

-X297399D01*

-Y376429D02*Y373229D01*

-X294199Y366429D02*X297399D01*

-X294199D02*Y363229D01*

-X297399D01*

-Y366429D02*Y363229D01*

-X304199Y376429D02*X307399D01*

-X304199D02*Y373229D01*

-X307399D01*

-Y376429D02*Y373229D01*

-X304199Y366429D02*X307399D01*

-X304199D02*Y363229D01*

-X307399D01*

-Y366429D02*Y363229D01*

-X314199Y376429D02*X317399D01*

-X314199D02*Y373229D01*

-X317399D01*

-Y376429D02*Y373229D01*

-X314199Y366429D02*X317399D01*

-X314199D02*Y363229D01*

-X317399D01*

-Y366429D02*Y363229D01*

-X324199Y376429D02*X327399D01*

-X324199D02*Y373229D01*

-X327399D01*

-Y376429D02*Y373229D01*

-X324199Y366429D02*X327399D01*

-X324199D02*Y363229D01*

-X327399D01*

-Y366429D02*Y363229D01*

-X194199Y198929D02*X197399D01*

-X194199D02*Y195729D01*

-X197399D01*

-Y198929D02*Y195729D01*

-X204199Y198929D02*X207399D01*

-X204199D02*Y195729D01*

-X207399D01*

-Y198929D02*Y195729D01*

-X214199Y198929D02*X217399D01*

-X214199D02*Y195729D01*

-X217399D01*

-Y198929D02*Y195729D01*

-X224199Y198929D02*X227399D01*

-X224199D02*Y195729D01*

-X227399D01*

-Y198929D02*Y195729D01*

-X234199Y198929D02*X237399D01*

-X234199D02*Y195729D01*

-X237399D01*

-Y198929D02*Y195729D01*

-X13400Y457850D02*X16600D01*

-X13400D02*Y454650D01*

-X16600D01*

-Y457850D02*Y454650D01*

-X135000Y458500D02*X136500Y455500D01*

-X138000Y458500D01*

-X136500Y455500D02*Y452500D01*

-X139800Y455800D02*X142050D01*

-X139800Y452500D02*X142800D01*

-X139800Y458500D02*Y452500D01*

-Y458500D02*X142800D01*

-X147600D02*X148350Y457750D01*

-X145350Y458500D02*X147600D01*

-X144600Y457750D02*X145350Y458500D01*

-X144600Y457750D02*Y456250D01*

-X145350Y455500D01*

-X147600D01*

-X148350Y454750D01*

-Y453250D01*

-X147600Y452500D02*X148350Y453250D01*

-X145350Y452500D02*X147600D01*

-X144600Y453250D02*X145350Y452500D01*

-X98750D02*X101000Y455500D01*

-Y457750D02*Y455500D01*

-X100250Y458500D02*X101000Y457750D01*

-X98750Y458500D02*X100250D01*

-X98000Y457750D02*X98750Y458500D01*

-X98000Y457750D02*Y456250D01*

-X98750Y455500D01*

-X101000D01*

-X103550Y452500D02*X106550Y458500D01*

-X102800D02*X106550D01*

-X45000Y453250D02*X45750Y452500D01*

-X45000Y457750D02*Y453250D01*

-Y457750D02*X45750Y458500D01*

-X47250D01*

-X48000Y457750D01*

-Y453250D01*

-X47250Y452500D02*X48000Y453250D01*

-X45750Y452500D02*X47250D01*

-X45000Y454000D02*X48000Y457000D01*

-X49800Y452500D02*X50550D01*

-X52350Y453250D02*X53100Y452500D01*

-X52350Y457750D02*Y453250D01*

-Y457750D02*X53100Y458500D01*

-X54600D01*

-X55350Y457750D01*

-Y453250D01*

-X54600Y452500D02*X55350Y453250D01*

-X53100Y452500D02*X54600D01*

-X52350Y454000D02*X55350Y457000D01*

-X57150Y454750D02*X60150Y458500D01*

-X57150Y454750D02*X60900D01*

-X60150Y458500D02*Y452500D01*

-X64950Y458500D02*X65700Y457750D01*

-X63450Y458500D02*X64950D01*

-X62700Y457750D02*X63450Y458500D01*

-X62700Y457750D02*Y453250D01*

-X63450Y452500D01*

-X64950Y455800D02*X65700Y455050D01*

-X62700Y455800D02*X64950D01*

-X63450Y452500D02*X64950D01*

-X65700Y453250D01*

-Y455050D02*Y453250D01*

-X452700Y384000D02*G75*G03X454300Y384000I800J0D01*G01*

-G75*G03X452700Y384000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y384000I800J0D01*G01*

-G75*G03X462700Y384000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y384000I800J0D01*G01*

-G75*G03X472700Y384000I-800J0D01*G01*

-X452700Y324000D02*G75*G03X454300Y324000I800J0D01*G01*

-G75*G03X452700Y324000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y324000I800J0D01*G01*

-G75*G03X462700Y324000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y324000I800J0D01*G01*

-G75*G03X472700Y324000I-800J0D01*G01*

-X452700Y294000D02*G75*G03X454300Y294000I800J0D01*G01*

-G75*G03X452700Y294000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y294000I800J0D01*G01*

-G75*G03X462700Y294000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y294000I800J0D01*G01*

-G75*G03X472700Y294000I-800J0D01*G01*

-X452700Y264000D02*G75*G03X454300Y264000I800J0D01*G01*

-G75*G03X452700Y264000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y264000I800J0D01*G01*

-G75*G03X462700Y264000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y264000I800J0D01*G01*

-G75*G03X472700Y264000I-800J0D01*G01*

-X452700Y234000D02*G75*G03X454300Y234000I800J0D01*G01*

-G75*G03X452700Y234000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y234000I800J0D01*G01*

-G75*G03X462700Y234000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y234000I800J0D01*G01*

-G75*G03X472700Y234000I-800J0D01*G01*

-X452700Y204000D02*G75*G03X454300Y204000I800J0D01*G01*

-G75*G03X452700Y204000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y204000I800J0D01*G01*

-G75*G03X462700Y204000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y204000I800J0D01*G01*

-G75*G03X472700Y204000I-800J0D01*G01*

-X452700Y174000D02*G75*G03X454300Y174000I800J0D01*G01*

-G75*G03X452700Y174000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y174000I800J0D01*G01*

-G75*G03X462700Y174000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y174000I800J0D01*G01*

-G75*G03X472700Y174000I-800J0D01*G01*

-X452700Y144000D02*G75*G03X454300Y144000I800J0D01*G01*

-G75*G03X452700Y144000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y144000I800J0D01*G01*

-G75*G03X462700Y144000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y144000I800J0D01*G01*

-G75*G03X472700Y144000I-800J0D01*G01*

-X452700Y114000D02*G75*G03X454300Y114000I800J0D01*G01*

-G75*G03X452700Y114000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y114000I800J0D01*G01*

-G75*G03X462700Y114000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y114000I800J0D01*G01*

-G75*G03X472700Y114000I-800J0D01*G01*

-X452700Y84000D02*G75*G03X454300Y84000I800J0D01*G01*

-G75*G03X452700Y84000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y84000I800J0D01*G01*

-G75*G03X462700Y84000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y84000I800J0D01*G01*

-G75*G03X472700Y84000I-800J0D01*G01*

-X452700Y54000D02*G75*G03X454300Y54000I800J0D01*G01*

-G75*G03X452700Y54000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y54000I800J0D01*G01*

-G75*G03X462700Y54000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y54000I800J0D01*G01*

-G75*G03X472700Y54000I-800J0D01*G01*

-X406200Y384000D02*G75*G03X407800Y384000I800J0D01*G01*

-G75*G03X406200Y384000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y384000I800J0D01*G01*

-G75*G03X416200Y384000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y384000I800J0D01*G01*

-G75*G03X426200Y384000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y384000I800J0D01*G01*

-G75*G03X436200Y384000I-800J0D01*G01*

-X406200Y174000D02*G75*G03X407800Y174000I800J0D01*G01*

-G75*G03X406200Y174000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y174000I800J0D01*G01*

-G75*G03X416200Y174000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y174000I800J0D01*G01*

-G75*G03X426200Y174000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y174000I800J0D01*G01*

-G75*G03X436200Y174000I-800J0D01*G01*

-X406200Y204000D02*G75*G03X407800Y204000I800J0D01*G01*

-G75*G03X406200Y204000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y204000I800J0D01*G01*

-G75*G03X416200Y204000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y204000I800J0D01*G01*

-G75*G03X426200Y204000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y204000I800J0D01*G01*

-G75*G03X436200Y204000I-800J0D01*G01*

-X406200Y234000D02*G75*G03X407800Y234000I800J0D01*G01*

-G75*G03X406200Y234000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y234000I800J0D01*G01*

-G75*G03X416200Y234000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y234000I800J0D01*G01*

-G75*G03X426200Y234000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y234000I800J0D01*G01*

-G75*G03X436200Y234000I-800J0D01*G01*

-X406200Y264000D02*G75*G03X407800Y264000I800J0D01*G01*

-G75*G03X406200Y264000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y264000I800J0D01*G01*

-G75*G03X416200Y264000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y264000I800J0D01*G01*

-G75*G03X426200Y264000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y264000I800J0D01*G01*

-G75*G03X436200Y264000I-800J0D01*G01*

-X406200Y294000D02*G75*G03X407800Y294000I800J0D01*G01*

-G75*G03X406200Y294000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y294000I800J0D01*G01*

-G75*G03X416200Y294000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y294000I800J0D01*G01*

-G75*G03X426200Y294000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y294000I800J0D01*G01*

-G75*G03X436200Y294000I-800J0D01*G01*

-X406200Y324000D02*G75*G03X407800Y324000I800J0D01*G01*

-G75*G03X406200Y324000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y324000I800J0D01*G01*

-G75*G03X416200Y324000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y324000I800J0D01*G01*

-G75*G03X426200Y324000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y324000I800J0D01*G01*

-G75*G03X436200Y324000I-800J0D01*G01*

-X452700Y354000D02*G75*G03X454300Y354000I800J0D01*G01*

-G75*G03X452700Y354000I-800J0D01*G01*

-X462700D02*G75*G03X464300Y354000I800J0D01*G01*

-G75*G03X462700Y354000I-800J0D01*G01*

-X472700D02*G75*G03X474300Y354000I800J0D01*G01*

-G75*G03X472700Y354000I-800J0D01*G01*

-X406200D02*G75*G03X407800Y354000I800J0D01*G01*

-G75*G03X406200Y354000I-800J0D01*G01*

-X416200D02*G75*G03X417800Y354000I800J0D01*G01*

-G75*G03X416200Y354000I-800J0D01*G01*

-X426200D02*G75*G03X427800Y354000I800J0D01*G01*

-G75*G03X426200Y354000I-800J0D01*G01*

-X436200D02*G75*G03X437800Y354000I800J0D01*G01*

-G75*G03X436200Y354000I-800J0D01*G01*

-X204641Y47500D02*G75*G03X206241Y47500I800J0D01*G01*

-G75*G03X204641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X206241Y57500I800J0D01*G01*

-G75*G03X204641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X206241Y67500I800J0D01*G01*

-G75*G03X204641Y67500I-800J0D01*G01*

-X234641Y47500D02*G75*G03X236241Y47500I800J0D01*G01*

-G75*G03X234641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X236241Y57500I800J0D01*G01*

-G75*G03X234641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X236241Y67500I800J0D01*G01*

-G75*G03X234641Y67500I-800J0D01*G01*

-X264641Y47500D02*G75*G03X266241Y47500I800J0D01*G01*

-G75*G03X264641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X266241Y57500I800J0D01*G01*

-G75*G03X264641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X266241Y67500I800J0D01*G01*

-G75*G03X264641Y67500I-800J0D01*G01*

-X294641Y47500D02*G75*G03X296241Y47500I800J0D01*G01*

-G75*G03X294641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X296241Y57500I800J0D01*G01*

-G75*G03X294641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X296241Y67500I800J0D01*G01*

-G75*G03X294641Y67500I-800J0D01*G01*

-X174641Y47500D02*G75*G03X176241Y47500I800J0D01*G01*

-G75*G03X174641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X176241Y57500I800J0D01*G01*

-G75*G03X174641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X176241Y67500I800J0D01*G01*

-G75*G03X174641Y67500I-800J0D01*G01*

-X144641Y47500D02*G75*G03X146241Y47500I800J0D01*G01*

-G75*G03X144641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X146241Y57500I800J0D01*G01*

-G75*G03X144641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X146241Y67500I800J0D01*G01*

-G75*G03X144641Y67500I-800J0D01*G01*

-X114641Y47500D02*G75*G03X116241Y47500I800J0D01*G01*

-G75*G03X114641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X116241Y57500I800J0D01*G01*

-G75*G03X114641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X116241Y67500I800J0D01*G01*

-G75*G03X114641Y67500I-800J0D01*G01*

-X84641Y47500D02*G75*G03X86241Y47500I800J0D01*G01*

-G75*G03X84641Y47500I-800J0D01*G01*

-Y57500D02*G75*G03X86241Y57500I800J0D01*G01*

-G75*G03X84641Y57500I-800J0D01*G01*

-Y67500D02*G75*G03X86241Y67500I800J0D01*G01*

-G75*G03X84641Y67500I-800J0D01*G01*

-X311641Y249000D02*G75*G03X313241Y249000I800J0D01*G01*

-G75*G03X311641Y249000I-800J0D01*G01*

-X321641D02*G75*G03X323241Y249000I800J0D01*G01*

-G75*G03X321641Y249000I-800J0D01*G01*

-X331641D02*G75*G03X333241Y249000I800J0D01*G01*

-G75*G03X331641Y249000I-800J0D01*G01*

-X341641D02*G75*G03X343241Y249000I800J0D01*G01*

-G75*G03X341641Y249000I-800J0D01*G01*

-X84641Y240000D02*G75*G03X86241Y240000I800J0D01*G01*

-G75*G03X84641Y240000I-800J0D01*G01*

-Y230000D02*G75*G03X86241Y230000I800J0D01*G01*

-G75*G03X84641Y230000I-800J0D01*G01*

-Y220000D02*G75*G03X86241Y220000I800J0D01*G01*

-G75*G03X84641Y220000I-800J0D01*G01*

-X14200Y471250D02*G75*G03X15800Y471250I800J0D01*G01*

-G75*G03X14200Y471250I-800J0D01*G01*

-X135000Y473500D02*X136500Y470500D01*

-X138000Y473500D01*

-X136500Y470500D02*Y467500D01*

-X139800Y470800D02*X142050D01*

-X139800Y467500D02*X142800D01*

-X139800Y473500D02*Y467500D01*

-Y473500D02*X142800D01*

-X147600D02*X148350Y472750D01*

-X145350Y473500D02*X147600D01*

-X144600Y472750D02*X145350Y473500D01*

-X144600Y472750D02*Y471250D01*

-X145350Y470500D01*

-X147600D01*

-X148350Y469750D01*

-Y468250D01*

-X147600Y467500D02*X148350Y468250D01*

-X145350Y467500D02*X147600D01*

-X144600Y468250D02*X145350Y467500D01*

-X98750D02*X101000Y470500D01*

-Y472750D02*Y470500D01*

-X100250Y473500D02*X101000Y472750D01*

-X98750Y473500D02*X100250D01*

-X98000Y472750D02*X98750Y473500D01*

-X98000Y472750D02*Y471250D01*

-X98750Y470500D01*

-X101000D01*

-X103550Y467500D02*X105800Y470500D01*

-Y472750D02*Y470500D01*

-X105050Y473500D02*X105800Y472750D01*

-X103550Y473500D02*X105050D01*

-X102800Y472750D02*X103550Y473500D01*

-X102800Y472750D02*Y471250D01*

-X103550Y470500D01*

-X105800D01*

-X45000Y468250D02*X45750Y467500D01*

-X45000Y472750D02*Y468250D01*

-Y472750D02*X45750Y473500D01*

-X47250D01*

-X48000Y472750D01*

-Y468250D01*

-X47250Y467500D02*X48000Y468250D01*

-X45750Y467500D02*X47250D01*

-X45000Y469000D02*X48000Y472000D01*

-X49800Y467500D02*X50550D01*

-X52350Y468250D02*X53100Y467500D01*

-X52350Y472750D02*Y468250D01*

-Y472750D02*X53100Y473500D01*

-X54600D01*

-X55350Y472750D01*

-Y468250D01*

-X54600Y467500D02*X55350Y468250D01*

-X53100Y467500D02*X54600D01*

-X52350Y469000D02*X55350Y472000D01*

-X57150Y469750D02*X60150Y473500D01*

-X57150Y469750D02*X60900D01*

-X60150Y473500D02*Y467500D01*

-X62700Y468250D02*X63450Y467500D01*

-X62700Y472750D02*Y468250D01*

-Y472750D02*X63450Y473500D01*

-X64950D01*

-X65700Y472750D01*

-Y468250D01*

-X64950Y467500D02*X65700Y468250D01*

-X63450Y467500D02*X64950D01*

-X62700Y469000D02*X65700Y472000D01*

-X439741Y124200D02*X442141Y121800D01*

-X439741D02*X442141Y124200D01*

-X13800Y487450D02*X16200Y485050D01*

-X13800D02*X16200Y487450D01*

-X135000Y488500D02*X136500Y485500D01*

-X138000Y488500D01*

-X136500Y485500D02*Y482500D01*

-X139800Y485800D02*X142050D01*

-X139800Y482500D02*X142800D01*

-X139800Y488500D02*Y482500D01*

-Y488500D02*X142800D01*

-X147600D02*X148350Y487750D01*

-X145350Y488500D02*X147600D01*

-X144600Y487750D02*X145350Y488500D01*

-X144600Y487750D02*Y486250D01*

-X145350Y485500D01*

-X147600D01*

-X148350Y484750D01*

-Y483250D01*

-X147600Y482500D02*X148350Y483250D01*

-X145350Y482500D02*X147600D01*

-X144600Y483250D02*X145350Y482500D01*

-X98000Y487300D02*X99200Y488500D01*

-Y482500D01*

-X98000D02*X100250D01*

-X45000Y483250D02*X45750Y482500D01*

-X45000Y487750D02*Y483250D01*

-Y487750D02*X45750Y488500D01*

-X47250D01*

-X48000Y487750D01*

-Y483250D01*

-X47250Y482500D02*X48000Y483250D01*

-X45750Y482500D02*X47250D01*

-X45000Y484000D02*X48000Y487000D01*

-X49800Y482500D02*X50550D01*

-X52350Y483250D02*X53100Y482500D01*

-X52350Y487750D02*Y483250D01*

-Y487750D02*X53100Y488500D01*

-X54600D01*

-X55350Y487750D01*

-Y483250D01*

-X54600Y482500D02*X55350Y483250D01*

-X53100Y482500D02*X54600D01*

-X52350Y484000D02*X55350Y487000D01*

-X57150Y487750D02*X57900Y488500D01*

-X59400D01*

-X60150Y487750D01*

-X59400Y482500D02*X60150Y483250D01*

-X57900Y482500D02*X59400D01*

-X57150Y483250D02*X57900Y482500D01*

-Y485800D02*X59400D01*

-X60150Y487750D02*Y486550D01*

-Y485050D02*Y483250D01*

-Y485050D02*X59400Y485800D01*

-X60150Y486550D02*X59400Y485800D01*

-X61950Y488500D02*X64950D01*

-X61950D02*Y485500D01*

-X62700Y486250D01*

-X64200D01*

-X64950Y485500D01*

-Y483250D01*

-X64200Y482500D02*X64950Y483250D01*

-X62700Y482500D02*X64200D01*

-X61950Y483250D02*X62700Y482500D01*

-X432324Y112600D02*Y109400D01*

-X430724Y111000D02*X433924D01*

-X386441Y164600D02*Y161400D01*

-X384841Y163000D02*X388041D01*

-X387441Y327600D02*Y324400D01*

-X385841Y326000D02*X389041D01*

-X393441Y356600D02*Y353400D01*

-X391841Y355000D02*X395041D01*

-X386720Y283600D02*Y280400D01*

-X385120Y282000D02*X388320D01*

-X400441Y195600D02*Y192400D01*

-X398841Y194000D02*X402041D01*

-X389441Y185600D02*Y182400D01*

-X387841Y184000D02*X391041D01*

-X400441Y190600D02*Y187400D01*

-X398841Y189000D02*X402041D01*

-X393441Y209600D02*Y206400D01*

-X391841Y208000D02*X395041D01*

-X393441Y328600D02*Y325400D01*

-X391841Y327000D02*X395041D01*

-X385941Y356100D02*Y352900D01*

-X384341Y354500D02*X387541D01*

-X375441Y236600D02*Y233400D01*

-X373841Y235000D02*X377041D01*

-X384162Y189600D02*Y186400D01*

-X382562Y188000D02*X385762D01*

-X387070Y236600D02*Y233400D01*

-X385470Y235000D02*X388670D01*

-X384162Y307600D02*Y304400D01*

-X382562Y306000D02*X385762D01*

-X458441Y376600D02*Y373400D01*

-X456841Y375000D02*X460041D01*

-X458441Y346600D02*Y343400D01*

-X456841Y345000D02*X460041D01*

-X458441Y316600D02*Y313400D01*

-X456841Y315000D02*X460041D01*

-X458441Y286600D02*Y283400D01*

-X456841Y285000D02*X460041D01*

-X458441Y255600D02*Y252400D01*

-X456841Y254000D02*X460041D01*

-X458441Y226600D02*Y223400D01*

-X456841Y225000D02*X460041D01*

-X458441Y196600D02*Y193400D01*

-X456841Y195000D02*X460041D01*

-X458441Y165600D02*Y162400D01*

-X456841Y164000D02*X460041D01*

-X446441Y103600D02*Y100400D01*

-X444841Y102000D02*X448041D01*

-X434882Y76600D02*Y73400D01*

-X433282Y75000D02*X436482D01*

-X423441Y76600D02*Y73400D01*

-X421841Y75000D02*X425041D01*

-X372441Y171986D02*Y168786D01*

-X370841Y170386D02*X374041D01*

-X398441Y249600D02*Y246400D01*

-X396841Y248000D02*X400041D01*

-X398441Y254600D02*Y251400D01*

-X396841Y253000D02*X400041D01*

-X384512Y259600D02*Y256400D01*

-X382912Y258000D02*X386112D01*

-X398441Y315600D02*Y312400D01*

-X396841Y314000D02*X400041D01*

-X398441Y310600D02*Y307400D01*

-X396841Y309000D02*X400041D01*

-X372441Y292289D02*Y289089D01*

-X370841Y290689D02*X374041D01*

-X372441Y352789D02*Y349589D01*

-X370841Y351189D02*X374041D01*

-X383662Y380100D02*Y376900D01*

-X382062Y378500D02*X385262D01*

-X397441Y374600D02*Y371400D01*

-X395841Y373000D02*X399041D01*

-X397941Y369041D02*Y365841D01*

-X396341Y367441D02*X399541D01*

-X15000Y502850D02*Y499650D01*

-X13400Y501250D02*X16600D01*

-X135000Y503500D02*X136500Y500500D01*

-X138000Y503500D01*

-X136500Y500500D02*Y497500D01*

-X139800Y500800D02*X142050D01*

-X139800Y497500D02*X142800D01*

-X139800Y503500D02*Y497500D01*

-Y503500D02*X142800D01*

-X147600D02*X148350Y502750D01*

-X145350Y503500D02*X147600D01*

-X144600Y502750D02*X145350Y503500D01*

-X144600Y502750D02*Y501250D01*

-X145350Y500500D01*

-X147600D01*

-X148350Y499750D01*

-Y498250D01*

-X147600Y497500D02*X148350Y498250D01*

-X145350Y497500D02*X147600D01*

-X144600Y498250D02*X145350Y497500D01*

-X98000Y502750D02*X98750Y503500D01*

-X100250D01*

-X101000Y502750D01*

-X100250Y497500D02*X101000Y498250D01*

-X98750Y497500D02*X100250D01*

-X98000Y498250D02*X98750Y497500D01*

-Y500800D02*X100250D01*

-X101000Y502750D02*Y501550D01*

-Y500050D02*Y498250D01*

-Y500050D02*X100250Y500800D01*

-X101000Y501550D02*X100250Y500800D01*

-X103550Y497500D02*X106550Y503500D01*

-X102800D02*X106550D01*

-X45000Y498250D02*X45750Y497500D01*

-X45000Y502750D02*Y498250D01*

-Y502750D02*X45750Y503500D01*

-X47250D01*

-X48000Y502750D01*

-Y498250D01*

-X47250Y497500D02*X48000Y498250D01*

-X45750Y497500D02*X47250D01*

-X45000Y499000D02*X48000Y502000D01*

-X49800Y497500D02*X50550D01*

-X52350Y498250D02*X53100Y497500D01*

-X52350Y502750D02*Y498250D01*

-Y502750D02*X53100Y503500D01*

-X54600D01*

-X55350Y502750D01*

-Y498250D01*

-X54600Y497500D02*X55350Y498250D01*

-X53100Y497500D02*X54600D01*

-X52350Y499000D02*X55350Y502000D01*

-X57150Y502750D02*X57900Y503500D01*

-X60150D01*

-X60900Y502750D01*

-Y501250D01*

-X57150Y497500D02*X60900Y501250D01*

-X57150Y497500D02*X60900D01*

-X62700Y498250D02*X63450Y497500D01*

-X62700Y502750D02*Y498250D01*

-Y502750D02*X63450Y503500D01*

-X64950D01*

-X65700Y502750D01*

-Y498250D01*

-X64950Y497500D02*X65700Y498250D01*

-X63450Y497500D02*X64950D01*

-X62700Y499000D02*X65700Y502000D01*

-X307716Y275075D02*Y273475D01*

-Y275075D02*X309103Y275875D01*

-X307716Y275075D02*X306329Y275875D01*

-X308992Y271971D02*Y270371D01*

-Y271971D02*X310379Y272771D01*

-X308992Y271971D02*X307605Y272771D01*

-X308872Y266522D02*Y264922D01*

-Y266522D02*X310259Y267322D01*

-X308872Y266522D02*X307485Y267322D01*

-X245557Y279508D02*Y277908D01*

-Y279508D02*X246944Y280308D01*

-X245557Y279508D02*X244170Y280308D01*

-X266413Y296594D02*Y294994D01*

-Y296594D02*X267800Y297394D01*

-X266413Y296594D02*X265026Y297394D01*

-X263240Y295329D02*Y293729D01*

-Y295329D02*X264627Y296129D01*

-X263240Y295329D02*X261853Y296129D01*

-X262740Y291829D02*Y290229D01*

-Y291829D02*X264127Y292629D01*

-X262740Y291829D02*X261353Y292629D01*

-X254740Y298329D02*Y296729D01*

-Y298329D02*X256127Y299129D01*

-X254740Y298329D02*X253353Y299129D01*

-X287917Y307829D02*Y306229D01*

-Y307829D02*X289304Y308629D01*

-X287917Y307829D02*X286530Y308629D01*

-X269653Y298631D02*Y297031D01*

-Y298631D02*X271040Y299431D01*

-X269653Y298631D02*X268266Y299431D01*

-X273229Y298582D02*Y296982D01*

-Y298582D02*X274616Y299382D01*

-X273229Y298582D02*X271842Y299382D01*

-X278225Y279602D02*Y278002D01*

-Y279602D02*X279612Y280402D01*

-X278225Y279602D02*X276838Y280402D01*

-X262750Y268772D02*Y267172D01*

-Y268772D02*X264137Y269572D01*

-X262750Y268772D02*X261363Y269572D01*

-X293902Y282263D02*Y280663D01*

-Y282263D02*X295289Y283063D01*

-X293902Y282263D02*X292515Y283063D01*

-X260341Y284249D02*Y282649D01*

-Y284249D02*X261728Y285049D01*

-X260341Y284249D02*X258954Y285049D01*

-X296779Y304963D02*Y303363D01*

-Y304963D02*X298166Y305763D01*

-X296779Y304963D02*X295392Y305763D01*

-X253101Y261836D02*Y260236D01*

-Y261836D02*X254488Y262636D01*

-X253101Y261836D02*X251714Y262636D01*

-X239302Y262235D02*Y260635D01*

-Y262235D02*X240689Y263035D01*

-X239302Y262235D02*X237915Y263035D01*

-X295937Y243628D02*Y242028D01*

-Y243628D02*X297324Y244428D01*

-X295937Y243628D02*X294550Y244428D01*

-X278207Y298612D02*Y297012D01*

-Y298612D02*X279594Y299412D01*

-X278207Y298612D02*X276820Y299412D01*

-X277174Y308219D02*Y306619D01*

-Y308219D02*X278561Y309019D01*

-X277174Y308219D02*X275787Y309019D01*

-X242456Y293543D02*Y291943D01*

-Y293543D02*X243843Y294343D01*

-X242456Y293543D02*X241069Y294343D01*

-X242168Y298800D02*Y297200D01*

-Y298800D02*X243555Y299600D01*

-X242168Y298800D02*X240781Y299600D01*

-X312157Y300156D02*Y298556D01*

-Y300156D02*X313544Y300956D01*

-X312157Y300156D02*X310770Y300956D01*

-X312122Y295038D02*Y293438D01*

-Y295038D02*X313509Y295838D01*

-X312122Y295038D02*X310735Y295838D01*

-X277449Y347500D02*Y345900D01*

-Y347500D02*X278836Y348300D01*

-X277449Y347500D02*X276062Y348300D01*

-X303365Y330000D02*Y328400D01*

-Y330000D02*X304752Y330800D01*

-X303365Y330000D02*X301978Y330800D01*

-X285430Y325000D02*Y323400D01*

-Y325000D02*X286817Y325800D01*

-X285430Y325000D02*X284043Y325800D01*

-X302941Y340007D02*Y338407D01*

-Y340007D02*X304328Y340807D01*

-X302941Y340007D02*X301554Y340807D01*

-X371602Y260228D02*Y258628D01*

-Y260228D02*X372989Y261028D01*

-X371602Y260228D02*X370215Y261028D01*

-X396441Y235000D02*Y233400D01*

-Y235000D02*X397828Y235800D01*

-X396441Y235000D02*X395054Y235800D01*

-X385941Y366000D02*Y364400D01*

-Y366000D02*X387328Y366800D01*

-X385941Y366000D02*X384554Y366800D01*

-X398441Y291000D02*Y289400D01*

-Y291000D02*X399828Y291800D01*

-X398441Y291000D02*X397054Y291800D01*

-X386023Y157813D02*Y156213D01*

-Y157813D02*X387410Y158613D01*

-X386023Y157813D02*X384636Y158613D01*

-X398441Y173000D02*Y171400D01*

-Y173000D02*X399828Y173800D01*

-X398441Y173000D02*X397054Y173800D01*

-X434449Y56500D02*Y54900D01*

-Y56500D02*X435836Y57300D01*

-X434449Y56500D02*X433062Y57300D01*

-X440449Y56500D02*Y54900D01*

-Y56500D02*X441836Y57300D01*

-X440449Y56500D02*X439062Y57300D01*

-X163941Y127500D02*Y125900D01*

-Y127500D02*X165328Y128300D01*

-X163941Y127500D02*X162554Y128300D01*

-X193390Y127500D02*Y125900D01*

-Y127500D02*X194777Y128300D01*

-X193390Y127500D02*X192003Y128300D01*

-X112222Y127340D02*Y125740D01*

-Y127340D02*X113609Y128140D01*

-X112222Y127340D02*X110835Y128140D01*

-X245441Y127500D02*Y125900D01*

-Y127500D02*X246828Y128300D01*

-X245441Y127500D02*X244054Y128300D01*

-X114441Y121500D02*Y119900D01*

-Y121500D02*X115828Y122300D01*

-X114441Y121500D02*X113054Y122300D01*

-X115441Y132500D02*Y130900D01*

-Y132500D02*X116828Y133300D01*

-X115441Y132500D02*X114054Y133300D01*

-X152441Y121500D02*Y119900D01*

-Y121500D02*X153828Y122300D01*

-X152441Y121500D02*X151054Y122300D01*

-X151941Y132000D02*Y130400D01*

-Y132000D02*X153328Y132800D01*

-X151941Y132000D02*X150554Y132800D01*

-X127941Y148000D02*Y146400D01*

-Y148000D02*X129328Y148800D01*

-X127941Y148000D02*X126554Y148800D01*

-X141441Y148000D02*Y146400D01*

-Y148000D02*X142828Y148800D01*

-X141441Y148000D02*X140054Y148800D01*

-X198441Y122500D02*Y120900D01*

-Y122500D02*X199828Y123300D01*

-X198441Y122500D02*X197054Y123300D01*

-X195441Y133000D02*Y131400D01*

-Y133000D02*X196828Y133800D01*

-X195441Y133000D02*X194054Y133800D01*

-X208941Y148000D02*Y146400D01*

-Y148000D02*X210328Y148800D01*

-X208941Y148000D02*X207554Y148800D01*

-X223941Y148000D02*Y146400D01*

-Y148000D02*X225328Y148800D01*

-X223941Y148000D02*X222554Y148800D01*

-X234441Y122500D02*Y120900D01*

-Y122500D02*X235828Y123300D01*

-X234441Y122500D02*X233054Y123300D01*

-X235941Y133000D02*Y131400D01*

-Y133000D02*X237328Y133800D01*

-X235941Y133000D02*X234554Y133800D01*

-X128941Y274500D02*Y272900D01*

-Y274500D02*X130328Y275300D01*

-X128941Y274500D02*X127554Y275300D01*

-X128941Y268500D02*Y266900D01*

-Y268500D02*X130328Y269300D01*

-X128941Y268500D02*X127554Y269300D01*

-X128941Y262500D02*Y260900D01*

-Y262500D02*X130328Y263300D01*

-X128941Y262500D02*X127554Y263300D01*

-X128941Y255000D02*Y253400D01*

-Y255000D02*X130328Y255800D01*

-X128941Y255000D02*X127554Y255800D01*

-X128941Y248500D02*Y246900D01*

-Y248500D02*X130328Y249300D01*

-X128941Y248500D02*X127554Y249300D01*

-X128941Y242500D02*Y240900D01*

-Y242500D02*X130328Y243300D01*

-X128941Y242500D02*X127554Y243300D01*

-X162441Y242500D02*Y240900D01*

-Y242500D02*X163828Y243300D01*

-X162441Y242500D02*X161054Y243300D01*

-X162441Y248500D02*Y246900D01*

-Y248500D02*X163828Y249300D01*

-X162441Y248500D02*X161054Y249300D01*

-X161941Y255000D02*Y253400D01*

-Y255000D02*X163328Y255800D01*

-X161941Y255000D02*X160554Y255800D01*

-X162441Y262500D02*Y260900D01*

-Y262500D02*X163828Y263300D01*

-X162441Y262500D02*X161054Y263300D01*

-X162941Y268500D02*Y266900D01*

-Y268500D02*X164328Y269300D01*

-X162941Y268500D02*X161554Y269300D01*

-X162941Y274500D02*Y272900D01*

-Y274500D02*X164328Y275300D01*

-X162941Y274500D02*X161554Y275300D01*

-X165941Y231000D02*Y229400D01*

-Y231000D02*X167328Y231800D01*

-X165941Y231000D02*X164554Y231800D01*

-X165941Y226500D02*Y224900D01*

-Y226500D02*X167328Y227300D01*

-X165941Y226500D02*X164554Y227300D01*

-X165941Y220500D02*Y218900D01*

-Y220500D02*X167328Y221300D01*

-X165941Y220500D02*X164554Y221300D01*

-X169441Y214000D02*Y212400D01*

-Y214000D02*X170828Y214800D01*

-X169441Y214000D02*X168054Y214800D01*

-X169441Y208500D02*Y206900D01*

-Y208500D02*X170828Y209300D01*

-X169441Y208500D02*X168054Y209300D01*

-X169441Y201500D02*Y199900D01*

-Y201500D02*X170828Y202300D01*

-X169441Y201500D02*X168054Y202300D01*

-X141307Y300883D02*Y299283D01*

-Y300883D02*X142694Y301683D01*

-X141307Y300883D02*X139920Y301683D01*

-X158441Y323829D02*Y322229D01*

-Y323829D02*X159828Y324629D01*

-X158441Y323829D02*X157054Y324629D01*

-X158441Y328829D02*Y327229D01*

-Y328829D02*X159828Y329629D01*

-X158441Y328829D02*X157054Y329629D01*

-X158441Y326500D02*Y324900D01*

-Y326500D02*X159828Y327300D01*

-X158441Y326500D02*X157054Y327300D01*

-X197441Y314500D02*Y312900D01*

-Y314500D02*X198828Y315300D01*

-X197441Y314500D02*X196054Y315300D01*

-X195441Y311500D02*Y309900D01*

-Y311500D02*X196828Y312300D01*

-X195441Y311500D02*X194054Y312300D01*

-X197441Y308500D02*Y306900D01*

-Y308500D02*X198828Y309300D01*

-X197441Y308500D02*X196054Y309300D01*

-X124831Y302385D02*Y300785D01*

-Y302385D02*X126218Y303185D01*

-X124831Y302385D02*X123444Y303185D01*

-X135441Y338500D02*Y336900D01*

-Y338500D02*X136828Y339300D01*

-X135441Y338500D02*X134054Y339300D01*

-X135441Y335000D02*Y333400D01*

-Y335000D02*X136828Y335800D01*

-X135441Y335000D02*X134054Y335800D01*

-X139941Y338000D02*Y336400D01*

-Y338000D02*X141328Y338800D01*

-X139941Y338000D02*X138554Y338800D01*

-X153941Y338000D02*Y336400D01*

-Y338000D02*X155328Y338800D01*

-X153941Y338000D02*X152554Y338800D01*

-X111941Y334000D02*Y332400D01*

-Y334000D02*X113328Y334800D01*

-X111941Y334000D02*X110554Y334800D01*

-X117941Y334000D02*Y332400D01*

-Y334000D02*X119328Y334800D01*

-X117941Y334000D02*X116554Y334800D01*

-X126441Y334000D02*Y332400D01*

-Y334000D02*X127828Y334800D01*

-X126441Y334000D02*X125054Y334800D01*

-X126441Y340500D02*Y338900D01*

-Y340500D02*X127828Y341300D01*

-X126441Y340500D02*X125054Y341300D01*

-X111941Y341000D02*Y339400D01*

-Y341000D02*X113328Y341800D01*

-X111941Y341000D02*X110554Y341800D01*

-X111941Y357500D02*Y355900D01*

-Y357500D02*X113328Y358300D01*

-X111941Y357500D02*X110554Y358300D01*

-X142441Y357500D02*Y355900D01*

-Y357500D02*X143828Y358300D01*

-X142441Y357500D02*X141054Y358300D01*

-X142441Y349500D02*Y347900D01*

-Y349500D02*X143828Y350300D01*

-X142441Y349500D02*X141054Y350300D01*

-X154941Y345500D02*Y343900D01*

-Y345500D02*X156328Y346300D01*

-X154941Y345500D02*X153554Y346300D01*

-X149441Y349500D02*Y347900D01*

-Y349500D02*X150828Y350300D01*

-X149441Y349500D02*X148054Y350300D01*

-X121941Y357500D02*Y355900D01*

-Y357500D02*X123328Y358300D01*

-X121941Y357500D02*X120554Y358300D01*

-X130941Y357500D02*Y355900D01*

-Y357500D02*X132328Y358300D01*

-X130941Y357500D02*X129554Y358300D01*

-X309441Y141568D02*Y139968D01*

-Y141568D02*X310828Y142368D01*

-X309441Y141568D02*X308054Y142368D01*

-X309441Y136450D02*Y134850D01*

-Y136450D02*X310828Y137250D01*

-X309441Y136450D02*X308054Y137250D01*

-X310941Y115940D02*Y114340D01*

-Y115940D02*X312328Y116740D01*

-X310941Y115940D02*X309554Y116740D01*

-X305696Y107500D02*Y105900D01*

-Y107500D02*X307083Y108300D01*

-X305696Y107500D02*X304309Y108300D01*

-X263441Y320000D02*Y318400D01*

-Y320000D02*X264828Y320800D01*

-X263441Y320000D02*X262054Y320800D01*

-X304584Y207483D02*Y205883D01*

-Y207483D02*X305971Y208283D01*

-X304584Y207483D02*X303197Y208283D01*

-X304706Y210583D02*Y208983D01*

-Y210583D02*X306093Y211383D01*

-X304706Y210583D02*X303319Y211383D01*

-X305280Y204383D02*Y202783D01*

-Y204383D02*X306667Y205183D01*

-X305280Y204383D02*X303893Y205183D01*

-X246941Y238000D02*Y236400D01*

-Y238000D02*X248328Y238800D01*

-X246941Y238000D02*X245554Y238800D01*

-X242441Y229500D02*Y227900D01*

-Y229500D02*X243828Y230300D01*

-X242441Y229500D02*X241054Y230300D01*

-X246441Y229500D02*Y227900D01*

-Y229500D02*X247828Y230300D01*

-X246441Y229500D02*X245054Y230300D01*

-X250941Y229500D02*Y227900D01*

-Y229500D02*X252328Y230300D01*

-X250941Y229500D02*X249554Y230300D01*

-X221884Y254000D02*Y252400D01*

-Y254000D02*X223271Y254800D01*

-X221884Y254000D02*X220497Y254800D01*

-X224441Y252000D02*Y250400D01*

-Y252000D02*X225828Y252800D01*

-X224441Y252000D02*X223054Y252800D01*

-X356441Y233000D02*Y231400D01*

-Y233000D02*X357828Y233800D01*

-X356441Y233000D02*X355054Y233800D01*

-X338441Y224192D02*Y222592D01*

-Y224192D02*X339828Y224992D01*

-X338441Y224192D02*X337054Y224992D01*

-X338441Y230124D02*Y228524D01*

-Y230124D02*X339828Y230924D01*

-X338441Y230124D02*X337054Y230924D01*

-X225441Y249000D02*Y247400D01*

-Y249000D02*X226828Y249800D01*

-X225441Y249000D02*X224054Y249800D01*

-X219441Y272500D02*Y270900D01*

-Y272500D02*X220828Y273300D01*

-X219441Y272500D02*X218054Y273300D01*

-X220729Y265580D02*Y263980D01*

-Y265580D02*X222116Y266380D01*

-X220729Y265580D02*X219342Y266380D01*

-X217441Y279000D02*Y277400D01*

-Y279000D02*X218828Y279800D01*

-X217441Y279000D02*X216054Y279800D01*

-X260568Y316997D02*Y315397D01*

-Y316997D02*X261955Y317797D01*

-X260568Y316997D02*X259181Y317797D01*

-X240391Y278564D02*Y276964D01*

-Y278564D02*X241778Y279364D01*

-X240391Y278564D02*X239004Y279364D01*

-X230441Y293000D02*Y291400D01*

-Y293000D02*X231828Y293800D01*

-X230441Y293000D02*X229054Y293800D01*

-X264034Y282931D02*Y281331D01*

-Y282931D02*X265421Y283731D01*

-X264034Y282931D02*X262647Y283731D01*

-X279441Y285000D02*Y283400D01*

-Y285000D02*X280828Y285800D01*

-X279441Y285000D02*X278054Y285800D01*

-X246731Y303031D02*Y301431D01*

-Y303031D02*X248118Y303831D01*

-X246731Y303031D02*X245344Y303831D01*

-X270441Y336000D02*Y334400D01*

-Y336000D02*X271828Y336800D01*

-X270441Y336000D02*X269054Y336800D01*

-X270441Y342500D02*Y340900D01*

-Y342500D02*X271828Y343300D01*

-X270441Y342500D02*X269054Y343300D01*

-X270441Y349500D02*Y347900D01*

-Y349500D02*X271828Y350300D01*

-X270441Y349500D02*X269054Y350300D01*

-X392188Y239000D02*Y237400D01*

-Y239000D02*X393575Y239800D01*

-X392188Y239000D02*X390801Y239800D01*

-X388207Y247280D02*Y245680D01*

-Y247280D02*X389594Y248080D01*

-X388207Y247280D02*X386820Y248080D01*

-X191363Y344449D02*Y342849D01*

-Y344449D02*X192750Y345249D01*

-X191363Y344449D02*X189976Y345249D01*

-X178887Y342818D02*Y341218D01*

-Y342818D02*X180274Y343618D01*

-X178887Y342818D02*X177500Y343618D01*

-X168732Y350833D02*Y349233D01*

-Y350833D02*X170119Y351633D01*

-X168732Y350833D02*X167345Y351633D01*

-X296727Y256227D02*Y254627D01*

-Y256227D02*X298114Y257027D01*

-X296727Y256227D02*X295340Y257027D01*

-X339837Y341827D02*Y340227D01*

-Y341827D02*X341224Y342627D01*

-X339837Y341827D02*X338450Y342627D01*

-X353390Y339521D02*Y337921D01*

-Y339521D02*X354777Y340321D01*

-X353390Y339521D02*X352003Y340321D01*

-X337441Y163000D02*Y161400D01*

-Y163000D02*X338828Y163800D01*

-X337441Y163000D02*X336054Y163800D01*

-X377347Y162178D02*Y160578D01*

-Y162178D02*X378734Y162978D01*

-X377347Y162178D02*X375960Y162978D01*

-X230441Y247000D02*Y245400D01*

-Y247000D02*X231828Y247800D01*

-X230441Y247000D02*X229054Y247800D01*

-X358941Y208500D02*Y206900D01*

-Y208500D02*X360328Y209300D01*

-X358941Y208500D02*X357554Y209300D01*

-X220441Y259500D02*Y257900D01*

-Y259500D02*X221828Y260300D01*

-X220441Y259500D02*X219054Y260300D01*

-X218441Y261500D02*Y259900D01*

-Y261500D02*X219828Y262300D01*

-X218441Y261500D02*X217054Y262300D01*

-X198441Y262500D02*Y260900D01*

-Y262500D02*X199828Y263300D01*

-X198441Y262500D02*X197054Y263300D01*

-X198441Y269500D02*Y267900D01*

-Y269500D02*X199828Y270300D01*

-X198441Y269500D02*X197054Y270300D01*

-X205441Y277000D02*Y275400D01*

-Y277000D02*X206828Y277800D01*

-X205441Y277000D02*X204054Y277800D01*

-X185441Y228000D02*Y226400D01*

-Y228000D02*X186828Y228800D01*

-X185441Y228000D02*X184054Y228800D01*

-X177441Y228000D02*Y226400D01*

-Y228000D02*X178828Y228800D01*

-X177441Y228000D02*X176054Y228800D01*

-X177441Y217500D02*Y215900D01*

-Y217500D02*X178828Y218300D01*

-X177441Y217500D02*X176054Y218300D01*

-X185441Y217500D02*Y215900D01*

-Y217500D02*X186828Y218300D01*

-X185441Y217500D02*X184054Y218300D01*

-X193941Y212500D02*Y210900D01*

-Y212500D02*X195328Y213300D01*

-X193941Y212500D02*X192554Y213300D01*

-X202441Y212500D02*Y210900D01*

-Y212500D02*X203828Y213300D01*

-X202441Y212500D02*X201054Y213300D01*

-X210441Y212500D02*Y210900D01*

-Y212500D02*X211828Y213300D01*

-X210441Y212500D02*X209054Y213300D01*

-X220441Y215000D02*Y213400D01*

-Y215000D02*X221828Y215800D01*

-X220441Y215000D02*X219054Y215800D01*

-X224941Y220500D02*Y218900D01*

-Y220500D02*X226328Y221300D01*

-X224941Y220500D02*X223554Y221300D01*

-X225441Y226500D02*Y224900D01*

-Y226500D02*X226828Y227300D01*

-X225441Y226500D02*X224054Y227300D01*

-X224941Y235500D02*Y233900D01*

-Y235500D02*X226328Y236300D01*

-X224941Y235500D02*X223554Y236300D01*

-X224441Y244000D02*Y242400D01*

-Y244000D02*X225828Y244800D01*

-X224441Y244000D02*X223054Y244800D01*

-X212941Y238000D02*Y236400D01*

-Y238000D02*X214328Y238800D01*

-X212941Y238000D02*X211554Y238800D01*

-X203941Y237500D02*Y235900D01*

-Y237500D02*X205328Y238300D01*

-X203941Y237500D02*X202554Y238300D01*

-X193941Y237000D02*Y235400D01*

-Y237000D02*X195328Y237800D01*

-X193941Y237000D02*X192554Y237800D01*

-X236441Y235500D02*Y233900D01*

-Y235500D02*X237828Y236300D01*

-X236441Y235500D02*X235054Y236300D01*

-X181941Y258500D02*Y256900D01*

-Y258500D02*X183328Y259300D01*

-X181941Y258500D02*X180554Y259300D01*

-X104441Y204500D02*Y202900D01*

-Y204500D02*X105828Y205300D01*

-X104441Y204500D02*X103054Y205300D01*

-X100941Y204500D02*Y202900D01*

-Y204500D02*X102328Y205300D01*

-X100941Y204500D02*X99554Y205300D01*

-X260941Y191500D02*Y189900D01*

-Y191500D02*X262328Y192300D01*

-X260941Y191500D02*X259554Y192300D01*

-X269441Y198500D02*Y196900D01*

-Y198500D02*X270828Y199300D01*

-X269441Y198500D02*X268054Y199300D01*

-X269941Y231500D02*Y229900D01*

-Y231500D02*X271328Y232300D01*

-X269941Y231500D02*X268554Y232300D01*

-X251941Y210500D02*Y208900D01*

-Y210500D02*X253328Y211300D01*

-X251941Y210500D02*X250554Y211300D01*

-X243941Y202000D02*Y200400D01*

-Y202000D02*X245328Y202800D01*

-X243941Y202000D02*X242554Y202800D01*

-X245863Y191524D02*Y189924D01*

-Y191524D02*X247250Y192324D01*

-X245863Y191524D02*X244476Y192324D01*

-X261502Y307367D02*Y305767D01*

-Y307367D02*X262889Y308167D01*

-X261502Y307367D02*X260115Y308167D01*

-X268941Y314000D02*Y312400D01*

-Y314000D02*X270328Y314800D01*

-X268941Y314000D02*X267554Y314800D01*

-X249101Y328793D02*Y327193D01*

-Y328793D02*X250488Y329593D01*

-X249101Y328793D02*X247714Y329593D01*

-X229818Y354988D02*Y353388D01*

-Y354988D02*X231205Y355788D01*

-X229818Y354988D02*X228431Y355788D01*

-X270441Y357000D02*Y355400D01*

-Y357000D02*X271828Y357800D01*

-X270441Y357000D02*X269054Y357800D01*

-X138925Y206113D02*Y204513D01*

-Y206113D02*X140312Y206913D01*

-X138925Y206113D02*X137538Y206913D01*

-X138872Y202030D02*Y200430D01*

-Y202030D02*X140259Y202830D01*

-X138872Y202030D02*X137485Y202830D01*

-X138925Y197841D02*Y196241D01*

-Y197841D02*X140312Y198641D01*

-X138925Y197841D02*X137538Y198641D01*

-X138925Y192698D02*Y191098D01*

-Y192698D02*X140312Y193498D01*

-X138925Y192698D02*X137538Y193498D01*

-X161941Y199000D02*Y197400D01*

-Y199000D02*X163328Y199800D01*

-X161941Y199000D02*X160554Y199800D01*

-X161941Y193000D02*Y191400D01*

-Y193000D02*X163328Y193800D01*

-X161941Y193000D02*X160554Y193800D01*

-X166941Y193000D02*Y191400D01*

-Y193000D02*X168328Y193800D01*

-X166941Y193000D02*X165554Y193800D01*

-X166941Y197500D02*Y195900D01*

-Y197500D02*X168328Y198300D01*

-X166941Y197500D02*X165554Y198300D01*

-X354941Y93499D02*Y91899D01*

-Y93499D02*X356328Y94299D01*

-X354941Y93499D02*X353554Y94299D01*

-X354941Y97999D02*Y96399D01*

-Y97999D02*X356328Y98799D01*

-X354941Y97999D02*X353554Y98799D01*

-X354941Y103999D02*Y102399D01*

-Y103999D02*X356328Y104799D01*

-X354941Y103999D02*X353554Y104799D01*

-X354941Y109999D02*Y108399D01*

-Y109999D02*X356328Y110799D01*

-X354941Y109999D02*X353554Y110799D01*

-X354941Y115999D02*Y114399D01*

-Y115999D02*X356328Y116799D01*

-X354941Y115999D02*X353554Y116799D01*

-X354941Y121999D02*Y120399D01*

-Y121999D02*X356328Y122799D01*

-X354941Y121999D02*X353554Y122799D01*

-X354941Y127999D02*Y126399D01*

-Y127999D02*X356328Y128799D01*

-X354941Y127999D02*X353554Y128799D01*

-X387941Y127999D02*Y126399D01*

-Y127999D02*X389328Y128799D01*

-X387941Y127999D02*X386554Y128799D01*

-X387941Y121999D02*Y120399D01*

-Y121999D02*X389328Y122799D01*

-X387941Y121999D02*X386554Y122799D01*

-X387941Y115999D02*Y114399D01*

-Y115999D02*X389328Y116799D01*

-X387941Y115999D02*X386554Y116799D01*

-X387941Y109999D02*Y108399D01*

-Y109999D02*X389328Y110799D01*

-X387941Y109999D02*X386554Y110799D01*

-X387941Y97999D02*Y96399D01*

-Y97999D02*X389328Y98799D01*

-X387941Y97999D02*X386554Y98799D01*

-X387941Y93499D02*Y91899D01*

-Y93499D02*X389328Y94299D01*

-X387941Y93499D02*X386554Y94299D01*

-X387941Y103999D02*Y102399D01*

-Y103999D02*X389328Y104799D01*

-X387941Y103999D02*X386554Y104799D01*

-X391441Y84499D02*Y82899D01*

-Y84499D02*X392828Y85299D01*

-X391441Y84499D02*X390054Y85299D01*

-X391441Y79999D02*Y78399D01*

-Y79999D02*X392828Y80799D01*

-X391441Y79999D02*X390054Y80799D01*

-X391941Y74499D02*Y72899D01*

-Y74499D02*X393328Y75299D01*

-X391941Y74499D02*X390554Y75299D01*

-X395441Y66999D02*Y65399D01*

-Y66999D02*X396828Y67799D01*

-X395441Y66999D02*X394054Y67799D01*

-X394441Y59999D02*Y58399D01*

-Y59999D02*X395828Y60799D01*

-X394441Y59999D02*X393054Y60799D01*

-X392941Y53499D02*Y51899D01*

-Y53499D02*X394328Y54299D01*

-X392941Y53499D02*X391554Y54299D01*

-X368941Y48500D02*Y46900D01*

-Y48500D02*X370328Y49300D01*

-X368941Y48500D02*X367554Y49300D01*

-X368941Y43500D02*Y41900D01*

-Y43500D02*X370328Y44300D01*

-X368941Y43500D02*X367554Y44300D01*

-X374941Y43500D02*Y41900D01*

-Y43500D02*X376328Y44300D01*

-X374941Y43500D02*X373554Y44300D01*

-X374941Y47000D02*Y45400D01*

-Y47000D02*X376328Y47800D01*

-X374941Y47000D02*X373554Y47800D01*

-X106441Y148500D02*Y146900D01*

-Y148500D02*X107828Y149300D01*

-X106441Y148500D02*X105054Y149300D01*

-X101941Y104500D02*Y102900D01*

-Y104500D02*X103328Y105300D01*

-X101941Y104500D02*X100554Y105300D01*

-X149941Y149000D02*Y147400D01*

-Y149000D02*X151328Y149800D01*

-X149941Y149000D02*X148554Y149800D01*

-X166441Y104000D02*Y102400D01*

-Y104000D02*X167828Y104800D01*

-X166441Y104000D02*X165054Y104800D01*

-X183941Y104000D02*Y102400D01*

-Y104000D02*X185328Y104800D01*

-X183941Y104000D02*X182554Y104800D01*

-X253441Y102500D02*Y100900D01*

-Y102500D02*X254828Y103300D01*

-X253441Y102500D02*X252054Y103300D01*

-X231441Y148000D02*Y146400D01*

-Y148000D02*X232828Y148800D01*

-X231441Y148000D02*X230054Y148800D01*

-X15000Y516250D02*Y514650D01*

-Y516250D02*X16387Y517050D01*

-X15000Y516250D02*X13613Y517050D01*

-X135000Y518500D02*X136500Y515500D01*

-X138000Y518500D01*

-X136500Y515500D02*Y512500D01*

-X139800Y515800D02*X142050D01*

-X139800Y512500D02*X142800D01*

-X139800Y518500D02*Y512500D01*

-Y518500D02*X142800D01*

-X147600D02*X148350Y517750D01*

-X145350Y518500D02*X147600D01*

-X144600Y517750D02*X145350Y518500D01*

-X144600Y517750D02*Y516250D01*

-X145350Y515500D01*

-X147600D01*

-X148350Y514750D01*

-Y513250D01*

-X147600Y512500D02*X148350Y513250D01*

-X145350Y512500D02*X147600D01*

-X144600Y513250D02*X145350Y512500D01*

-X98000Y517750D02*X98750Y518500D01*

-X101000D01*

-X101750Y517750D01*

-Y516250D01*

-X98000Y512500D02*X101750Y516250D01*

-X98000Y512500D02*X101750D01*

-X103550Y517300D02*X104750Y518500D01*

-Y512500D01*

-X103550D02*X105800D01*

-X107600Y517300D02*X108800Y518500D01*

-Y512500D01*

-X107600D02*X109850D01*

-X45000Y513250D02*X45750Y512500D01*

-X45000Y517750D02*Y513250D01*

-Y517750D02*X45750Y518500D01*

-X47250D01*

-X48000Y517750D01*

-Y513250D01*

-X47250Y512500D02*X48000Y513250D01*

-X45750Y512500D02*X47250D01*

-X45000Y514000D02*X48000Y517000D01*

-X49800Y512500D02*X50550D01*

-X52350Y513250D02*X53100Y512500D01*

-X52350Y517750D02*Y513250D01*

-Y517750D02*X53100Y518500D01*

-X54600D01*

-X55350Y517750D01*

-Y513250D01*

-X54600Y512500D02*X55350Y513250D01*

-X53100Y512500D02*X54600D01*

-X52350Y514000D02*X55350Y517000D01*

-X57150Y517300D02*X58350Y518500D01*

-Y512500D01*

-X57150D02*X59400D01*

-X61200Y513250D02*X61950Y512500D01*

-X61200Y517750D02*Y513250D01*

-Y517750D02*X61950Y518500D01*

-X63450D01*

-X64200Y517750D01*

-Y513250D01*

-X63450Y512500D02*X64200Y513250D01*

-X61950Y512500D02*X63450D01*

-X61200Y514000D02*X64200Y517000D01*

-X3000Y533500D02*X3750Y532750D01*

-X750Y533500D02*X3000D01*

-X0Y532750D02*X750Y533500D01*

-X0Y532750D02*Y531250D01*

-X750Y530500D01*

-X3000D01*

-X3750Y529750D01*

-Y528250D01*

-X3000Y527500D02*X3750Y528250D01*

-X750Y527500D02*X3000D01*

-X0Y528250D02*X750Y527500D01*

-X5550Y530500D02*Y528250D01*

-X6300Y527500D01*

-X8550Y530500D02*Y526000D01*

-X7800Y525250D02*X8550Y526000D01*

-X6300Y525250D02*X7800D01*

-X5550Y526000D02*X6300Y525250D01*

-Y527500D02*X7800D01*

-X8550Y528250D01*

-X11100Y529750D02*Y527500D01*

-Y529750D02*X11850Y530500D01*

-X12600D01*

-X13350Y529750D01*

-Y527500D01*

-Y529750D02*X14100Y530500D01*

-X14850D01*

-X15600Y529750D01*

-Y527500D01*

-X10350Y530500D02*X11100Y529750D01*

-X17400Y533500D02*Y527500D01*

-Y528250D02*X18150Y527500D01*

-X19650D01*

-X20400Y528250D01*

-Y529750D02*Y528250D01*

-X19650Y530500D02*X20400Y529750D01*

-X18150Y530500D02*X19650D01*

-X17400Y529750D02*X18150Y530500D01*

-X22200Y529750D02*Y528250D01*

-Y529750D02*X22950Y530500D01*

-X24450D01*

-X25200Y529750D01*

-Y528250D01*

-X24450Y527500D02*X25200Y528250D01*

-X22950Y527500D02*X24450D01*

-X22200Y528250D02*X22950Y527500D01*

-X27000Y533500D02*Y528250D01*

-X27750Y527500D01*

-X0Y524250D02*X29250D01*

-X41750Y533500D02*Y527500D01*

-X43700Y533500D02*X44750Y532450D01*

-Y528550D01*

-X43700Y527500D02*X44750Y528550D01*

-X41000Y527500D02*X43700D01*

-X41000Y533500D02*X43700D01*

-G54D347*X46550Y532000D02*Y531850D01*

-G54D346*Y529750D02*Y527500D01*

-X50300Y530500D02*X51050Y529750D01*

-X48800Y530500D02*X50300D01*

-X48050Y529750D02*X48800Y530500D01*

-X48050Y529750D02*Y528250D01*

-X48800Y527500D01*

-X51050Y530500D02*Y528250D01*

-X51800Y527500D01*

-X48800D02*X50300D01*

-X51050Y528250D01*

-X54350Y529750D02*Y527500D01*

-Y529750D02*X55100Y530500D01*

-X55850D01*

-X56600Y529750D01*

-Y527500D01*

-Y529750D02*X57350Y530500D01*

-X58100D01*

-X58850Y529750D01*

-Y527500D01*

-X53600Y530500D02*X54350Y529750D01*

-X60650Y527500D02*X61400D01*

-X65900Y528250D02*X66650Y527500D01*

-X65900Y532750D02*X66650Y533500D01*

-X65900Y532750D02*Y528250D01*

-X68450Y533500D02*X69950D01*

-X69200D02*Y527500D01*

-X68450D02*X69950D01*

-X72500Y529750D02*Y527500D01*

-Y529750D02*X73250Y530500D01*

-X74000D01*

-X74750Y529750D01*

-Y527500D01*

-X71750Y530500D02*X72500Y529750D01*

-X77300Y530500D02*X79550D01*

-X76550Y529750D02*X77300Y530500D01*

-X76550Y529750D02*Y528250D01*

-X77300Y527500D01*

-X79550D01*

-X81350Y533500D02*Y527500D01*

-Y529750D02*X82100Y530500D01*

-X83600D01*

-X84350Y529750D01*

-Y527500D01*

-X86150Y533500D02*X86900Y532750D01*

-Y528250D01*

-X86150Y527500D02*X86900Y528250D01*

-X41000Y524250D02*X88700D01*

-X96050Y527500D02*X98000D01*

-X95000Y528550D02*X96050Y527500D01*

-X95000Y532450D02*Y528550D01*

-Y532450D02*X96050Y533500D01*

-X98000D01*

-X99800Y529750D02*Y528250D01*

-Y529750D02*X100550Y530500D01*

-X102050D01*

-X102800Y529750D01*

-Y528250D01*

-X102050Y527500D02*X102800Y528250D01*

-X100550Y527500D02*X102050D01*

-X99800Y528250D02*X100550Y527500D01*

-X104600Y530500D02*Y528250D01*

-X105350Y527500D01*

-X106850D01*

-X107600Y528250D01*

-Y530500D02*Y528250D01*

-X110150Y529750D02*Y527500D01*

-Y529750D02*X110900Y530500D01*

-X111650D01*

-X112400Y529750D01*

-Y527500D01*

-X109400Y530500D02*X110150Y529750D01*

-X114950Y533500D02*Y528250D01*

-X115700Y527500D01*

-X114200Y531250D02*X115700D01*

-X95000Y524250D02*X117200D01*

-X130750Y533500D02*Y527500D01*

-X130000Y533500D02*X133000D01*

-X133750Y532750D01*

-Y531250D01*

-X133000Y530500D02*X133750Y531250D01*

-X130750Y530500D02*X133000D01*

-X135550Y533500D02*Y528250D01*

-X136300Y527500D01*

-X140050Y530500D02*X140800Y529750D01*

-X138550Y530500D02*X140050D01*

-X137800Y529750D02*X138550Y530500D01*

-X137800Y529750D02*Y528250D01*

-X138550Y527500D01*

-X140800Y530500D02*Y528250D01*

-X141550Y527500D01*

-X138550D02*X140050D01*

-X140800Y528250D01*

-X144100Y533500D02*Y528250D01*

-X144850Y527500D01*

-X143350Y531250D02*X144850D01*

-X147100Y527500D02*X149350D01*

-X146350Y528250D02*X147100Y527500D01*

-X146350Y529750D02*Y528250D01*

-Y529750D02*X147100Y530500D01*

-X148600D01*

-X149350Y529750D01*

-X146350Y529000D02*X149350D01*

-Y529750D02*Y529000D01*

-X154150Y533500D02*Y527500D01*

-X153400D02*X154150Y528250D01*

-X151900Y527500D02*X153400D01*

-X151150Y528250D02*X151900Y527500D01*

-X151150Y529750D02*Y528250D01*

-Y529750D02*X151900Y530500D01*

-X153400D01*

-X154150Y529750D01*

-X157450Y530500D02*Y529750D01*

-Y528250D02*Y527500D01*

-X155950Y532750D02*Y532000D01*

-Y532750D02*X156700Y533500D01*

-X158200D01*

-X158950Y532750D01*

-Y532000D01*

-X157450Y530500D02*X158950Y532000D01*

-X130000Y524250D02*X160750D01*

-X0Y548500D02*X3000D01*

-X1500D02*Y542500D01*

-X4800Y548500D02*Y542500D01*

-Y544750D02*X5550Y545500D01*

-X7050D01*

-X7800Y544750D01*

-Y542500D01*

-X10350D02*X12600D01*

-X9600Y543250D02*X10350Y542500D01*

-X9600Y544750D02*Y543250D01*

-Y544750D02*X10350Y545500D01*

-X11850D01*

-X12600Y544750D01*

-X9600Y544000D02*X12600D01*

-Y544750D02*Y544000D01*

-X15150Y544750D02*Y542500D01*

-Y544750D02*X15900Y545500D01*

-X17400D01*

-X14400D02*X15150Y544750D01*

-X19950Y542500D02*X22200D01*

-X19200Y543250D02*X19950Y542500D01*

-X19200Y544750D02*Y543250D01*

-Y544750D02*X19950Y545500D01*

-X21450D01*

-X22200Y544750D01*

-X19200Y544000D02*X22200D01*

-Y544750D02*Y544000D01*

-X28950Y545500D02*X29700Y544750D01*

-X27450Y545500D02*X28950D01*

-X26700Y544750D02*X27450Y545500D01*

-X26700Y544750D02*Y543250D01*

-X27450Y542500D01*

-X29700Y545500D02*Y543250D01*

-X30450Y542500D01*

-X27450D02*X28950D01*

-X29700Y543250D01*

-X33000Y544750D02*Y542500D01*

-Y544750D02*X33750Y545500D01*

-X35250D01*

-X32250D02*X33000Y544750D01*

-X37800Y542500D02*X40050D01*

-X37050Y543250D02*X37800Y542500D01*

-X37050Y544750D02*Y543250D01*

-Y544750D02*X37800Y545500D01*

-X39300D01*

-X40050Y544750D01*

-X37050Y544000D02*X40050D01*

-Y544750D02*Y544000D01*

-X44550Y543250D02*X45300Y542500D01*

-X44550Y544450D02*Y543250D01*

-Y544450D02*X45600Y545500D01*

-X46500D01*

-X47550Y544450D01*

-Y543250D01*

-X46800Y542500D02*X47550Y543250D01*

-X45300Y542500D02*X46800D01*

-X44550Y546550D02*X45600Y545500D01*

-X44550Y547750D02*Y546550D01*

-Y547750D02*X45300Y548500D01*

-X46800D01*

-X47550Y547750D01*

-Y546550D01*

-X46500Y545500D02*X47550Y546550D01*

-X55050Y548500D02*Y542500D01*

-X54300D02*X55050Y543250D01*

-X52800Y542500D02*X54300D01*

-X52050Y543250D02*X52800Y542500D01*

-X52050Y544750D02*Y543250D01*

-Y544750D02*X52800Y545500D01*

-X54300D01*

-X55050Y544750D01*

-G54D347*X56850Y547000D02*Y546850D01*

-G54D346*Y544750D02*Y542500D01*

-X59100Y547750D02*Y542500D01*

-Y547750D02*X59850Y548500D01*

-X60600D01*

-X58350Y545500D02*X59850D01*

-X62850Y547750D02*Y542500D01*

-Y547750D02*X63600Y548500D01*

-X64350D01*

-X62100Y545500D02*X63600D01*

-X66600Y542500D02*X68850D01*

-X65850Y543250D02*X66600Y542500D01*

-X65850Y544750D02*Y543250D01*

-Y544750D02*X66600Y545500D01*

-X68100D01*

-X68850Y544750D01*

-X65850Y544000D02*X68850D01*

-Y544750D02*Y544000D01*

-X71400Y544750D02*Y542500D01*

-Y544750D02*X72150Y545500D01*

-X73650D01*

-X70650D02*X71400Y544750D01*

-X76200Y542500D02*X78450D01*

-X75450Y543250D02*X76200Y542500D01*

-X75450Y544750D02*Y543250D01*

-Y544750D02*X76200Y545500D01*

-X77700D01*

-X78450Y544750D01*

-X75450Y544000D02*X78450D01*

-Y544750D02*Y544000D01*

-X81000Y544750D02*Y542500D01*

-Y544750D02*X81750Y545500D01*

-X82500D01*

-X83250Y544750D01*

-Y542500D01*

-X80250Y545500D02*X81000Y544750D01*

-X85800Y548500D02*Y543250D01*

-X86550Y542500D01*

-X85050Y546250D02*X86550D01*

-X93750Y548500D02*Y542500D01*

-X93000D02*X93750Y543250D01*

-X91500Y542500D02*X93000D01*

-X90750Y543250D02*X91500Y542500D01*

-X90750Y544750D02*Y543250D01*

-Y544750D02*X91500Y545500D01*

-X93000D01*

-X93750Y544750D01*

-X96300D02*Y542500D01*

-Y544750D02*X97050Y545500D01*

-X98550D01*

-X95550D02*X96300Y544750D01*

-G54D347*X100350Y547000D02*Y546850D01*

-G54D346*Y544750D02*Y542500D01*

-X101850Y548500D02*Y543250D01*

-X102600Y542500D01*

-X104100Y548500D02*Y543250D01*

-X104850Y542500D01*

-X109800D02*X112050D01*

-X112800Y543250D01*

-X112050Y544000D02*X112800Y543250D01*

-X109800Y544000D02*X112050D01*

-X109050Y544750D02*X109800Y544000D01*

-X109050Y544750D02*X109800Y545500D01*

-X112050D01*

-X112800Y544750D01*

-X109050Y543250D02*X109800Y542500D01*

-G54D347*X114600Y547000D02*Y546850D01*

-G54D346*Y544750D02*Y542500D01*

-X116100Y545500D02*X119100D01*

-X116100Y542500D02*X119100Y545500D01*

-X116100Y542500D02*X119100D01*

-X121650D02*X123900D01*

-X120900Y543250D02*X121650Y542500D01*

-X120900Y544750D02*Y543250D01*

-Y544750D02*X121650Y545500D01*

-X123150D01*

-X123900Y544750D01*

-X120900Y544000D02*X123900D01*

-Y544750D02*Y544000D01*

-X126450Y542500D02*X128700D01*

-X129450Y543250D01*

-X128700Y544000D02*X129450Y543250D01*

-X126450Y544000D02*X128700D01*

-X125700Y544750D02*X126450Y544000D01*

-X125700Y544750D02*X126450Y545500D01*

-X128700D01*

-X129450Y544750D01*

-X125700Y543250D02*X126450Y542500D01*

-X133950Y545500D02*Y543250D01*

-X134700Y542500D01*

-X136200D01*

-X136950Y543250D01*

-Y545500D02*Y543250D01*

-X139500Y542500D02*X141750D01*

-X142500Y543250D01*

-X141750Y544000D02*X142500Y543250D01*

-X139500Y544000D02*X141750D01*

-X138750Y544750D02*X139500Y544000D01*

-X138750Y544750D02*X139500Y545500D01*

-X141750D01*

-X142500Y544750D01*

-X138750Y543250D02*X139500Y542500D01*

-X145050D02*X147300D01*

-X144300Y543250D02*X145050Y542500D01*

-X144300Y544750D02*Y543250D01*

-Y544750D02*X145050Y545500D01*

-X146550D01*

-X147300Y544750D01*

-X144300Y544000D02*X147300D01*

-Y544750D02*Y544000D01*

-X152100Y548500D02*Y542500D01*

-X151350D02*X152100Y543250D01*

-X149850Y542500D02*X151350D01*

-X149100Y543250D02*X149850Y542500D01*

-X149100Y544750D02*Y543250D01*

-Y544750D02*X149850Y545500D01*

-X151350D01*

-X152100Y544750D01*

-G54D347*X156600Y547000D02*Y546850D01*

-G54D346*Y544750D02*Y542500D01*

-X158850Y544750D02*Y542500D01*

-Y544750D02*X159600Y545500D01*

-X160350D01*

-X161100Y544750D01*

-Y542500D01*

-X158100Y545500D02*X158850Y544750D01*

-X166350Y548500D02*Y543250D01*

-X167100Y542500D01*

-X165600Y546250D02*X167100D01*

-X168600Y548500D02*Y542500D01*

-Y544750D02*X169350Y545500D01*

-X170850D01*

-X171600Y544750D01*

-Y542500D01*

-G54D347*X173400Y547000D02*Y546850D01*

-G54D346*Y544750D02*Y542500D01*

-X175650D02*X177900D01*

-X178650Y543250D01*

-X177900Y544000D02*X178650Y543250D01*

-X175650Y544000D02*X177900D01*

-X174900Y544750D02*X175650Y544000D01*

-X174900Y544750D02*X175650Y545500D01*

-X177900D01*

-X178650Y544750D01*

-X174900Y543250D02*X175650Y542500D01*

-X183150Y548500D02*Y543250D01*

-X183900Y542500D01*

-X187650Y545500D02*X188400Y544750D01*

-X186150Y545500D02*X187650D01*

-X185400Y544750D02*X186150Y545500D01*

-X185400Y544750D02*Y543250D01*

-X186150Y542500D01*

-X188400Y545500D02*Y543250D01*

-X189150Y542500D01*

-X186150D02*X187650D01*

-X188400Y543250D01*

-X190950Y545500D02*Y543250D01*

-X191700Y542500D01*

-X193950Y545500D02*Y541000D01*

-X193200Y540250D02*X193950Y541000D01*

-X191700Y540250D02*X193200D01*

-X190950Y541000D02*X191700Y540250D01*

-Y542500D02*X193200D01*

-X193950Y543250D01*

-X195750Y544750D02*Y543250D01*

-Y544750D02*X196500Y545500D01*

-X198000D01*

-X198750Y544750D01*

-Y543250D01*

-X198000Y542500D02*X198750Y543250D01*

-X196500Y542500D02*X198000D01*

-X195750Y543250D02*X196500Y542500D01*

-X200550Y545500D02*Y543250D01*

-X201300Y542500D01*

-X202800D01*

-X203550Y543250D01*

-Y545500D02*Y543250D01*

-X206100Y548500D02*Y543250D01*

-X206850Y542500D01*

-X205350Y546250D02*X206850D01*

-X208350Y541000D02*X209850Y542500D01*

-X214350Y544750D02*X217350Y548500D01*

-X214350Y544750D02*X218100D01*

-X217350Y548500D02*Y542500D01*

-X219900Y548500D02*X222900D01*

-X219900D02*Y545500D01*

-X220650Y546250D01*

-X222150D01*

-X222900Y545500D01*

-Y543250D01*

-X222150Y542500D02*X222900Y543250D01*

-X220650Y542500D02*X222150D01*

-X219900Y543250D02*X220650Y542500D01*

-X224700Y547300D02*X225900Y548500D01*

-Y542500D01*

-X224700D02*X226950D01*

-X231450Y548500D02*Y542500D01*

-Y544750D02*X232200Y545500D01*

-X233700D01*

-X234450Y544750D01*

-Y542500D01*

-X236250Y544750D02*Y543250D01*

-Y544750D02*X237000Y545500D01*

-X238500D01*

-X239250Y544750D01*

-Y543250D01*

-X238500Y542500D02*X239250Y543250D01*

-X237000Y542500D02*X238500D01*

-X236250Y543250D02*X237000Y542500D01*

-X241050Y548500D02*Y543250D01*

-X241800Y542500D01*

-X244050D02*X246300D01*

-X243300Y543250D02*X244050Y542500D01*

-X243300Y544750D02*Y543250D01*

-Y544750D02*X244050Y545500D01*

-X245550D01*

-X246300Y544750D01*

-X243300Y544000D02*X246300D01*

-Y544750D02*Y544000D01*

-X248850Y542500D02*X251100D01*

-X251850Y543250D01*

-X251100Y544000D02*X251850Y543250D01*

-X248850Y544000D02*X251100D01*

-X248100Y544750D02*X248850Y544000D01*

-X248100Y544750D02*X248850Y545500D01*

-X251100D01*

-X251850Y544750D01*

-X248100Y543250D02*X248850Y542500D01*

-X257100Y548500D02*Y543250D01*

-X257850Y542500D01*

-X256350Y546250D02*X257850D01*

-X259350Y544750D02*Y543250D01*

-Y544750D02*X260100Y545500D01*

-X261600D01*

-X262350Y544750D01*

-Y543250D01*

-X261600Y542500D02*X262350Y543250D01*

-X260100Y542500D02*X261600D01*

-X259350Y543250D02*X260100Y542500D01*

-X264900Y548500D02*Y543250D01*

-X265650Y542500D01*

-X264150Y546250D02*X265650D01*

-X269400Y545500D02*X270150Y544750D01*

-X267900Y545500D02*X269400D01*

-X267150Y544750D02*X267900Y545500D01*

-X267150Y544750D02*Y543250D01*

-X267900Y542500D01*

-X270150Y545500D02*Y543250D01*

-X270900Y542500D01*

-X267900D02*X269400D01*

-X270150Y543250D01*

-X272700Y548500D02*Y543250D01*

-X273450Y542500D01*

-G54D348*X484600Y393300D02*Y42000D01*

-X479100Y35500D02*X73500D01*

-X68000Y42000D02*Y244000D01*

-X74500Y250500D02*X101000D01*

-X107500Y256000D02*Y312500D01*

-X101000Y319000D02*X74500D01*

-X68000Y325500D02*Y393300D01*

-X74500Y399800D02*X478100D01*

-X189949Y136059D02*X189890Y136000D01*

-X478100Y399800D02*G75*G02X484600Y393300I0J-6500D01*G01*

-Y42000D02*G75*G02X478100Y35500I-6500J0D01*G01*

-X74500D02*G75*G02X68000Y42000I0J6500D01*G01*

-Y244000D02*G75*G02X74500Y250500I6500J0D01*G01*

-X107500Y257000D02*G75*G02X101000Y250500I-6500J0D01*G01*

-Y319000D02*G75*G02X107500Y312500I0J-6500D01*G01*

-X74500Y319000D02*G75*G02X68000Y325500I0J6500D01*G01*

-Y393300D02*G75*G02X74500Y399800I6500J0D01*G01*

-G54D346*X163675Y-9500D02*X166675D01*

-X167425Y-8750D01*

-Y-6950D02*Y-8750D01*

-X166675Y-6200D02*X167425Y-6950D01*

-X164425Y-6200D02*X166675D01*

-X164425Y-3500D02*Y-9500D01*

-X163675Y-3500D02*X166675D01*

-X167425Y-4250D01*

-Y-5450D01*

-X166675Y-6200D02*X167425Y-5450D01*

-X169225Y-7250D02*Y-8750D01*

-Y-7250D02*X169975Y-6500D01*

-X171475D01*

-X172225Y-7250D01*

-Y-8750D01*

-X171475Y-9500D02*X172225Y-8750D01*

-X169975Y-9500D02*X171475D01*

-X169225Y-8750D02*X169975Y-9500D01*

-X176275Y-6500D02*X177025Y-7250D01*

-X174775Y-6500D02*X176275D01*

-X174025Y-7250D02*X174775Y-6500D01*

-X174025Y-7250D02*Y-8750D01*

-X174775Y-9500D01*

-X177025Y-6500D02*Y-8750D01*

-X177775Y-9500D01*

-X174775D02*X176275D01*

-X177025Y-8750D01*

-X180325Y-7250D02*Y-9500D01*

-Y-7250D02*X181075Y-6500D01*

-X182575D01*

-X179575D02*X180325Y-7250D01*

-X187375Y-3500D02*Y-9500D01*

-X186625D02*X187375Y-8750D01*

-X185125Y-9500D02*X186625D01*

-X184375Y-8750D02*X185125Y-9500D01*

-X184375Y-7250D02*Y-8750D01*

-Y-7250D02*X185125Y-6500D01*

-X186625D01*

-X187375Y-7250D01*

-X191875D02*Y-8750D01*

-Y-7250D02*X192625Y-6500D01*

-X194125D01*

-X194875Y-7250D01*

-Y-8750D01*

-X194125Y-9500D02*X194875Y-8750D01*

-X192625Y-9500D02*X194125D01*

-X191875Y-8750D02*X192625Y-9500D01*

-X196675Y-6500D02*Y-8750D01*

-X197425Y-9500D01*

-X198925D01*

-X199675Y-8750D01*

-Y-6500D02*Y-8750D01*

-X202225Y-3500D02*Y-8750D01*

-X202975Y-9500D01*

-X201475Y-5750D02*X202975D01*

-X204475Y-3500D02*Y-8750D01*

-X205225Y-9500D01*

-G54D347*X206725Y-5000D02*Y-5150D01*

-G54D346*Y-7250D02*Y-9500D01*

-X208975Y-7250D02*Y-9500D01*

-Y-7250D02*X209725Y-6500D01*

-X210475D01*

-X211225Y-7250D01*

-Y-9500D01*

-X208225Y-6500D02*X208975Y-7250D01*

-X213775Y-9500D02*X216025D01*

-X213025Y-8750D02*X213775Y-9500D01*

-X213025Y-7250D02*Y-8750D01*

-Y-7250D02*X213775Y-6500D01*

-X215275D01*

-X216025Y-7250D01*

-X213025Y-8000D02*X216025D01*

-Y-7250D02*Y-8000D01*

-G54D347*X220525Y-5000D02*Y-5150D01*

-G54D346*Y-7250D02*Y-9500D01*

-X222775D02*X225025D01*

-X225775Y-8750D01*

-X225025Y-8000D02*X225775Y-8750D01*

-X222775Y-8000D02*X225025D01*

-X222025Y-7250D02*X222775Y-8000D01*

-X222025Y-7250D02*X222775Y-6500D01*

-X225025D01*

-X225775Y-7250D01*

-X222025Y-8750D02*X222775Y-9500D01*

-X231025Y-3500D02*Y-8750D01*

-X231775Y-9500D01*

-X230275Y-5750D02*X231775D01*

-X233275Y-3500D02*Y-9500D01*

-Y-7250D02*X234025Y-6500D01*

-X235525D01*

-X236275Y-7250D01*

-Y-9500D01*

-X238825D02*X241075D01*

-X238075Y-8750D02*X238825Y-9500D01*

-X238075Y-7250D02*Y-8750D01*

-Y-7250D02*X238825Y-6500D01*

-X240325D01*

-X241075Y-7250D01*

-X238075Y-8000D02*X241075D01*

-Y-7250D02*Y-8000D01*

-X246325Y-6500D02*X248575D01*

-X245575Y-7250D02*X246325Y-6500D01*

-X245575Y-7250D02*Y-8750D01*

-X246325Y-9500D01*

-X248575D01*

-X251125D02*X253375D01*

-X250375Y-8750D02*X251125Y-9500D01*

-X250375Y-7250D02*Y-8750D01*

-Y-7250D02*X251125Y-6500D01*

-X252625D01*

-X253375Y-7250D01*

-X250375Y-8000D02*X253375D01*

-Y-7250D02*Y-8000D01*

-X255925Y-7250D02*Y-9500D01*

-Y-7250D02*X256675Y-6500D01*

-X257425D01*

-X258175Y-7250D01*

-Y-9500D01*

-X255175Y-6500D02*X255925Y-7250D01*

-X260725Y-3500D02*Y-8750D01*

-X261475Y-9500D01*

-X259975Y-5750D02*X261475D01*

-X263725Y-9500D02*X265975D01*

-X262975Y-8750D02*X263725Y-9500D01*

-X262975Y-7250D02*Y-8750D01*

-Y-7250D02*X263725Y-6500D01*

-X265225D01*

-X265975Y-7250D01*

-X262975Y-8000D02*X265975D01*

-Y-7250D02*Y-8000D01*

-X268525Y-7250D02*Y-9500D01*

-Y-7250D02*X269275Y-6500D01*

-X270775D01*

-X267775D02*X268525Y-7250D01*

-X272575Y-3500D02*Y-8750D01*

-X273325Y-9500D01*

-G54D347*X274825Y-5000D02*Y-5150D01*

-G54D346*Y-7250D02*Y-9500D01*

-X277075Y-7250D02*Y-9500D01*

-Y-7250D02*X277825Y-6500D01*

-X278575D01*

-X279325Y-7250D01*

-Y-9500D01*

-X276325Y-6500D02*X277075Y-7250D01*

-X281875Y-9500D02*X284125D01*

-X281125Y-8750D02*X281875Y-9500D01*

-X281125Y-7250D02*Y-8750D01*

-Y-7250D02*X281875Y-6500D01*

-X283375D01*

-X284125Y-7250D01*

-X281125Y-8000D02*X284125D01*

-Y-7250D02*Y-8000D01*

-X288625Y-7250D02*Y-8750D01*

-Y-7250D02*X289375Y-6500D01*

-X290875D01*

-X291625Y-7250D01*

-Y-8750D01*

-X290875Y-9500D02*X291625Y-8750D01*

-X289375Y-9500D02*X290875D01*

-X288625Y-8750D02*X289375Y-9500D01*

-X294175Y-4250D02*Y-9500D01*

-Y-4250D02*X294925Y-3500D01*

-X295675D01*

-X293425Y-6500D02*X294925D01*

-X300625Y-3500D02*Y-8750D01*

-X301375Y-9500D01*

-X299875Y-5750D02*X301375D01*

-X302875Y-3500D02*Y-9500D01*

-Y-7250D02*X303625Y-6500D01*

-X305125D01*

-X305875Y-7250D01*

-Y-9500D01*

-G54D347*X307675Y-5000D02*Y-5150D01*

-G54D346*Y-7250D02*Y-9500D01*

-X309925D02*X312175D01*

-X312925Y-8750D01*

-X312175Y-8000D02*X312925Y-8750D01*

-X309925Y-8000D02*X312175D01*

-X309175Y-7250D02*X309925Y-8000D01*

-X309175Y-7250D02*X309925Y-6500D01*

-X312175D01*

-X312925Y-7250D01*

-X309175Y-8750D02*X309925Y-9500D01*

-X318175Y-7250D02*Y-11750D01*

-X317425Y-6500D02*X318175Y-7250D01*

-X318925Y-6500D01*

-X320425D01*

-X321175Y-7250D01*

-Y-8750D01*

-X320425Y-9500D02*X321175Y-8750D01*

-X318925Y-9500D02*X320425D01*

-X318175Y-8750D02*X318925Y-9500D01*

-X325225Y-6500D02*X325975Y-7250D01*

-X323725Y-6500D02*X325225D01*

-X322975Y-7250D02*X323725Y-6500D01*

-X322975Y-7250D02*Y-8750D01*

-X323725Y-9500D01*

-X325975Y-6500D02*Y-8750D01*

-X326725Y-9500D01*

-X323725D02*X325225D01*

-X325975Y-8750D01*

-X329275Y-3500D02*Y-8750D01*

-X330025Y-9500D01*

-X328525Y-5750D02*X330025D01*

-X331525Y-3500D02*Y-9500D01*

-Y-7250D02*X332275Y-6500D01*

-X333775D01*

-X334525Y-7250D01*

-Y-9500D01*

-X200750Y428500D02*Y422500D01*

-X202700Y428500D02*X203750Y427450D01*

-Y423550D01*

-X202700Y422500D02*X203750Y423550D01*

-X200000Y422500D02*X202700D01*

-X200000Y428500D02*X202700D01*

-X207800Y425500D02*X208550Y424750D01*

-X206300Y425500D02*X207800D01*

-X205550Y424750D02*X206300Y425500D01*

-X205550Y424750D02*Y423250D01*

-X206300Y422500D01*

-X208550Y425500D02*Y423250D01*

-X209300Y422500D01*

-X206300D02*X207800D01*

-X208550Y423250D01*

-X211850Y428500D02*Y423250D01*

-X212600Y422500D01*

-X211100Y426250D02*X212600D01*

-X214850Y422500D02*X217100D01*

-X214100Y423250D02*X214850Y422500D01*

-X214100Y424750D02*Y423250D01*

-Y424750D02*X214850Y425500D01*

-X216350D01*

-X217100Y424750D01*

-X214100Y424000D02*X217100D01*

-Y424750D02*Y424000D01*

-X218900Y426250D02*X219650D01*

-X218900Y424750D02*X219650D01*

-X224150Y428500D02*Y422500D01*

-Y428500D02*X226400Y425500D01*

-X228650Y428500D01*

-Y422500D01*

-X230450Y424750D02*Y423250D01*

-Y424750D02*X231200Y425500D01*

-X232700D01*

-X233450Y424750D01*

-Y423250D01*

-X232700Y422500D02*X233450Y423250D01*

-X231200Y422500D02*X232700D01*

-X230450Y423250D02*X231200Y422500D01*

-X236000Y424750D02*Y422500D01*

-Y424750D02*X236750Y425500D01*

-X237500D01*

-X238250Y424750D01*

-Y422500D01*

-X235250Y425500D02*X236000Y424750D01*

-X243800Y428500D02*X245000D01*

-Y423250D01*

-X244250Y422500D02*X245000Y423250D01*

-X243500Y422500D02*X244250D01*

-X242750Y423250D02*X243500Y422500D01*

-X242750Y424000D02*Y423250D01*

-X249050Y425500D02*X249800Y424750D01*

-X247550Y425500D02*X249050D01*

-X246800Y424750D02*X247550Y425500D01*

-X246800Y424750D02*Y423250D01*

-X247550Y422500D01*

-X249800Y425500D02*Y423250D01*

-X250550Y422500D01*

-X247550D02*X249050D01*

-X249800Y423250D01*

-X253100Y424750D02*Y422500D01*

-Y424750D02*X253850Y425500D01*

-X254600D01*

-X255350Y424750D01*

-Y422500D01*

-X252350Y425500D02*X253100Y424750D01*

-X259850Y427750D02*X260600Y428500D01*

-X262850D01*

-X263600Y427750D01*

-Y426250D01*

-X259850Y422500D02*X263600Y426250D01*

-X259850Y422500D02*X263600D01*

-X265400Y423250D02*X266150Y422500D01*

-X265400Y427750D02*Y423250D01*

-Y427750D02*X266150Y428500D01*

-X267650D01*

-X268400Y427750D01*

-Y423250D01*

-X267650Y422500D02*X268400Y423250D01*

-X266150Y422500D02*X267650D01*

-X265400Y424000D02*X268400Y427000D01*

-X272900Y427750D02*X273650Y428500D01*

-X275900D01*

-X276650Y427750D01*

-Y426250D01*

-X272900Y422500D02*X276650Y426250D01*

-X272900Y422500D02*X276650D01*

-X278450Y427300D02*X279650Y428500D01*

-Y422500D01*

-X278450D02*X280700D01*

-X282500Y426250D02*X283250D01*

-X282500Y424750D02*X283250D01*

-X285050Y423250D02*X285800Y422500D01*

-X285050Y427750D02*Y423250D01*

-Y427750D02*X285800Y428500D01*

-X287300D01*

-X288050Y427750D01*

-Y423250D01*

-X287300Y422500D02*X288050Y423250D01*

-X285800Y422500D02*X287300D01*

-X285050Y424000D02*X288050Y427000D01*

-X289850Y424750D02*X292850Y428500D01*

-X289850Y424750D02*X293600D01*

-X292850Y428500D02*Y422500D01*

-X295400Y426250D02*X296150D01*

-X295400Y424750D02*X296150D01*

-X297950D02*X300950Y428500D01*

-X297950Y424750D02*X301700D01*

-X300950Y428500D02*Y422500D01*

-X303500Y427750D02*X304250Y428500D01*

-X306500D01*

-X307250Y427750D01*

-Y426250D01*

-X303500Y422500D02*X307250Y426250D01*

-X303500Y422500D02*X307250D01*

-X311750Y427750D02*X312500Y428500D01*

-X314750D01*

-X315500Y427750D01*

-Y426250D01*

-X311750Y422500D02*X315500Y426250D01*

-X311750Y422500D02*X315500D01*

-X317300Y423250D02*X318050Y422500D01*

-X317300Y427750D02*Y423250D01*

-Y427750D02*X318050Y428500D01*

-X319550D01*

-X320300Y427750D01*

-Y423250D01*

-X319550Y422500D02*X320300Y423250D01*

-X318050Y422500D02*X319550D01*

-X317300Y424000D02*X320300Y427000D01*

-X322100Y427300D02*X323300Y428500D01*

-Y422500D01*

-X322100D02*X324350D01*

-X326150Y424750D02*X329150Y428500D01*

-X326150Y424750D02*X329900D01*

-X329150Y428500D02*Y422500D01*

-X334400Y428500D02*Y423250D01*

-X335150Y422500D01*

-X336650D01*

-X337400Y423250D01*

-Y428500D02*Y423250D01*

-X339200Y428500D02*X342200D01*

-X340700D02*Y422500D01*

-X345050D02*X347000D01*

-X344000Y423550D02*X345050Y422500D01*

-X344000Y427450D02*Y423550D01*

-Y427450D02*X345050Y428500D01*

-X347000D01*

-X200000Y442000D02*Y437500D01*

-Y442000D02*X201050Y443500D01*

-X202700D01*

-X203750Y442000D01*

-Y437500D01*

-X200000Y440500D02*X203750D01*

-X205550D02*Y438250D01*

-X206300Y437500D01*

-X207800D01*

-X208550Y438250D01*

-Y440500D02*Y438250D01*

-X211100Y443500D02*Y438250D01*

-X211850Y437500D01*

-X210350Y441250D02*X211850D01*

-X213350Y443500D02*Y437500D01*

-Y439750D02*X214100Y440500D01*

-X215600D01*

-X216350Y439750D01*

-Y437500D01*

-X218150Y439750D02*Y438250D01*

-Y439750D02*X218900Y440500D01*

-X220400D01*

-X221150Y439750D01*

-Y438250D01*

-X220400Y437500D02*X221150Y438250D01*

-X218900Y437500D02*X220400D01*

-X218150Y438250D02*X218900Y437500D01*

-X223700Y439750D02*Y437500D01*

-Y439750D02*X224450Y440500D01*

-X225950D01*

-X222950D02*X223700Y439750D01*

-X227750Y441250D02*X228500D01*

-X227750Y439750D02*X228500D01*

-X233000Y437500D02*X236000D01*

-X236750Y438250D01*

-Y440050D02*Y438250D01*

-X236000Y440800D02*X236750Y440050D01*

-X233750Y440800D02*X236000D01*

-X233750Y443500D02*Y437500D01*

-X233000Y443500D02*X236000D01*

-X236750Y442750D01*

-Y441550D01*

-X236000Y440800D02*X236750Y441550D01*

-X239300Y439750D02*Y437500D01*

-Y439750D02*X240050Y440500D01*

-X241550D01*

-X238550D02*X239300Y439750D01*

-G54D347*X243350Y442000D02*Y441850D01*

-G54D346*Y439750D02*Y437500D01*

-X247100Y440500D02*X247850Y439750D01*

-X245600Y440500D02*X247100D01*

-X244850Y439750D02*X245600Y440500D01*

-X244850Y439750D02*Y438250D01*

-X245600Y437500D01*

-X247850Y440500D02*Y438250D01*

-X248600Y437500D01*

-X245600D02*X247100D01*

-X247850Y438250D01*

-X251150Y439750D02*Y437500D01*

-Y439750D02*X251900Y440500D01*

-X252650D01*

-X253400Y439750D01*

-Y437500D01*

-X250400Y440500D02*X251150Y439750D01*

-X260900Y443500D02*X261650Y442750D01*

-X258650Y443500D02*X260900D01*

-X257900Y442750D02*X258650Y443500D01*

-X257900Y442750D02*Y441250D01*

-X258650Y440500D01*

-X260900D01*

-X261650Y439750D01*

-Y438250D01*

-X260900Y437500D02*X261650Y438250D01*

-X258650Y437500D02*X260900D01*

-X257900Y438250D02*X258650Y437500D01*

-G54D347*X263450Y442000D02*Y441850D01*

-G54D346*Y439750D02*Y437500D01*

-X264950Y443500D02*Y438250D01*

-X265700Y437500D01*

-X267200Y440500D02*X268700Y437500D01*

-X270200Y440500D02*X268700Y437500D01*

-X272750D02*X275000D01*

-X272000Y438250D02*X272750Y437500D01*

-X272000Y439750D02*Y438250D01*

-Y439750D02*X272750Y440500D01*

-X274250D01*

-X275000Y439750D01*

-X272000Y439000D02*X275000D01*

-Y439750D02*Y439000D01*

-X277550Y439750D02*Y437500D01*

-Y439750D02*X278300Y440500D01*

-X279800D01*

-X276800D02*X277550Y439750D01*

-X282350D02*Y437500D01*

-Y439750D02*X283100Y440500D01*

-X283850D01*

-X284600Y439750D01*

-Y437500D01*

-Y439750D02*X285350Y440500D01*

-X286100D01*

-X286850Y439750D01*

-Y437500D01*

-X281600Y440500D02*X282350Y439750D01*

-X290900Y440500D02*X291650Y439750D01*

-X289400Y440500D02*X290900D01*

-X288650Y439750D02*X289400Y440500D01*

-X288650Y439750D02*Y438250D01*

-X289400Y437500D01*

-X291650Y440500D02*Y438250D01*

-X292400Y437500D01*

-X289400D02*X290900D01*

-X291650Y438250D01*

-X294950Y439750D02*Y437500D01*

-Y439750D02*X295700Y440500D01*

-X296450D01*

-X297200Y439750D01*

-Y437500D01*

-X294200Y440500D02*X294950Y439750D01*

-X200000Y458500D02*X203000D01*

-X201500D02*Y452500D01*

-G54D347*X204800Y457000D02*Y456850D01*

-G54D346*Y454750D02*Y452500D01*

-X207050Y458500D02*Y453250D01*

-X207800Y452500D01*

-X206300Y456250D02*X207800D01*

-X209300Y458500D02*Y453250D01*

-X210050Y452500D01*

-X212300D02*X214550D01*

-X211550Y453250D02*X212300Y452500D01*

-X211550Y454750D02*Y453250D01*

-Y454750D02*X212300Y455500D01*

-X213800D01*

-X214550Y454750D01*

-X211550Y454000D02*X214550D01*

-Y454750D02*Y454000D01*

-X216350Y456250D02*X217100D01*

-X216350Y454750D02*X217100D01*

-X222350Y452500D02*X224600Y455500D01*

-Y457750D02*Y455500D01*

-X223850Y458500D02*X224600Y457750D01*

-X222350Y458500D02*X223850D01*

-X221600Y457750D02*X222350Y458500D01*

-X221600Y457750D02*Y456250D01*

-X222350Y455500D01*

-X224600D01*

-X227150Y452500D02*X230150Y458500D01*

-X226400D02*X230150D01*

-X231950Y457300D02*X233150Y458500D01*

-Y452500D01*

-X231950D02*X234200D01*

-X238700D02*X241700D01*

-X242450Y453250D01*

-Y455050D02*Y453250D01*

-X241700Y455800D02*X242450Y455050D01*

-X239450Y455800D02*X241700D01*

-X239450Y458500D02*Y452500D01*

-X238700Y458500D02*X241700D01*

-X242450Y457750D01*

-Y456550D01*

-X241700Y455800D02*X242450Y456550D01*

-X244250Y452500D02*X247250D01*

-X248000Y453250D01*

-Y455050D02*Y453250D01*

-X247250Y455800D02*X248000Y455050D01*

-X245000Y455800D02*X247250D01*

-X245000Y458500D02*Y452500D01*

-X244250Y458500D02*X247250D01*

-X248000Y457750D01*

-Y456550D01*

-X247250Y455800D02*X248000Y456550D01*

-X249800Y452500D02*X252800D01*

-X253550Y453250D01*

-Y455050D02*Y453250D01*

-X252800Y455800D02*X253550Y455050D01*

-X250550Y455800D02*X252800D01*

-X250550Y458500D02*Y452500D01*

-X249800Y458500D02*X252800D01*

-X253550Y457750D01*

-Y456550D01*

-X252800Y455800D02*X253550Y456550D01*

-X259100Y452500D02*X261050D01*

-X258050Y453550D02*X259100Y452500D01*

-X258050Y457450D02*Y453550D01*

-Y457450D02*X259100Y458500D01*

-X261050D01*

-X265100Y455500D02*X265850Y454750D01*

-X263600Y455500D02*X265100D01*

-X262850Y454750D02*X263600Y455500D01*

-X262850Y454750D02*Y453250D01*

-X263600Y452500D01*

-X265850Y455500D02*Y453250D01*

-X266600Y452500D01*

-X263600D02*X265100D01*

-X265850Y453250D01*

-X269150Y454750D02*Y450250D01*

-X268400Y455500D02*X269150Y454750D01*

-X269900Y455500D01*

-X271400D01*

-X272150Y454750D01*

-Y453250D01*

-X271400Y452500D02*X272150Y453250D01*

-X269900Y452500D02*X271400D01*

-X269150Y453250D02*X269900Y452500D01*

-X274700D02*X276950D01*

-X273950Y453250D02*X274700Y452500D01*

-X273950Y454750D02*Y453250D01*

-Y454750D02*X274700Y455500D01*

-X276200D01*

-X276950Y454750D01*

-X273950Y454000D02*X276950D01*

-Y454750D02*Y454000D01*

-X281450Y455500D02*X284450D01*

-X288950Y458500D02*Y452500D01*

-Y458500D02*X291950D01*

-X288950Y455800D02*X291200D01*

-X296000Y455500D02*X296750Y454750D01*

-X294500Y455500D02*X296000D01*

-X293750Y454750D02*X294500Y455500D01*

-X293750Y454750D02*Y453250D01*

-X294500Y452500D01*

-X296750Y455500D02*Y453250D01*

-X297500Y452500D01*

-X294500D02*X296000D01*

-X296750Y453250D01*

-X299300Y458500D02*Y452500D01*

-Y453250D02*X300050Y452500D01*

-X301550D01*

-X302300Y453250D01*

-Y454750D02*Y453250D01*

-X301550Y455500D02*X302300Y454750D01*

-X300050Y455500D02*X301550D01*

-X299300Y454750D02*X300050Y455500D01*

-X304850Y454750D02*Y452500D01*

-Y454750D02*X305600Y455500D01*

-X307100D01*

-X304100D02*X304850Y454750D01*

-G54D347*X308900Y457000D02*Y456850D01*

-G54D346*Y454750D02*Y452500D01*

-X311150Y455500D02*X313400D01*

-X310400Y454750D02*X311150Y455500D01*

-X310400Y454750D02*Y453250D01*

-X311150Y452500D01*

-X313400D01*

-X317450Y455500D02*X318200Y454750D01*

-X315950Y455500D02*X317450D01*

-X315200Y454750D02*X315950Y455500D01*

-X315200Y454750D02*Y453250D01*

-X315950Y452500D01*

-X318200Y455500D02*Y453250D01*

-X318950Y452500D01*

-X315950D02*X317450D01*

-X318200Y453250D01*

-X321500Y458500D02*Y453250D01*

-X322250Y452500D01*

-X320750Y456250D02*X322250D01*

-G54D347*X323750Y457000D02*Y456850D01*

-G54D346*Y454750D02*Y452500D01*

-X325250Y454750D02*Y453250D01*

-Y454750D02*X326000Y455500D01*

-X327500D01*

-X328250Y454750D01*

-Y453250D01*

-X327500Y452500D02*X328250Y453250D01*

-X326000Y452500D02*X327500D01*

-X325250Y453250D02*X326000Y452500D01*

-X330800Y454750D02*Y452500D01*

-Y454750D02*X331550Y455500D01*

-X332300D01*

-X333050Y454750D01*

-Y452500D01*

-X330050Y455500D02*X330800Y454750D01*

-X338300Y458500D02*Y452500D01*

-X340250Y458500D02*X341300Y457450D01*

-Y453550D01*

-X340250Y452500D02*X341300Y453550D01*

-X337550Y452500D02*X340250D01*

-X337550Y458500D02*X340250D01*

-X343850Y454750D02*Y452500D01*

-Y454750D02*X344600Y455500D01*

-X346100D01*

-X343100D02*X343850Y454750D01*

-X350150Y455500D02*X350900Y454750D01*

-X348650Y455500D02*X350150D01*

-X347900Y454750D02*X348650Y455500D01*

-X347900Y454750D02*Y453250D01*

-X348650Y452500D01*

-X350900Y455500D02*Y453250D01*

-X351650Y452500D01*

-X348650D02*X350150D01*

-X350900Y453250D01*

-X353450Y455500D02*Y453250D01*

-X354200Y452500D01*

-X354950D01*

-X355700Y453250D01*

-Y455500D02*Y453250D01*

-X356450Y452500D01*

-X357200D01*

-X357950Y453250D01*

-Y455500D02*Y453250D01*

-G54D347*X359750Y457000D02*Y456850D01*

-G54D346*Y454750D02*Y452500D01*

-X362000Y454750D02*Y452500D01*

-Y454750D02*X362750Y455500D01*

-X363500D01*

-X364250Y454750D01*

-Y452500D01*

-X361250Y455500D02*X362000Y454750D01*

-X368300Y455500D02*X369050Y454750D01*

-X366800Y455500D02*X368300D01*

-X366050Y454750D02*X366800Y455500D01*

-X366050Y454750D02*Y453250D01*

-X366800Y452500D01*

-X368300D01*

-X369050Y453250D01*

-X366050Y451000D02*X366800Y450250D01*

-X368300D01*

-X369050Y451000D01*

-Y455500D02*Y451000D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140120/cape.group1.gbr b/bbb_cape/schematic/gerbers/20140120/cape.group1.gbr
deleted file mode 100644
index 73905c6..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.group1.gbr
+++ /dev/null
@@ -1,27291 +0,0 @@
-G04 start of page 3 for group 1 idx 2 *

-G04 Title: 971 BBB Cape, ground *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Mon Jan 20 21:04:42 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNGROUP1*%

-%ADD226C,0.2460*%

-%ADD225C,0.0460*%

-%ADD224C,0.2000*%

-%ADD223C,0.1285*%

-%ADD222C,0.0400*%

-%ADD221C,0.0350*%

-%ADD220C,0.0100*%

-%ADD219C,0.0600*%

-%ADD218C,0.0360*%

-%ADD217C,0.0200*%

-%ADD216C,0.2660*%

-%ADD215C,0.0660*%

-%ADD214C,0.2200*%

-%ADD213C,0.1830*%

-%ADD212C,0.0650*%

-%ADD211C,0.0700*%

-%ADD210C,0.0250*%

-%ADD209C,0.0001*%

-G54D209*G36*

-X107941Y130500D02*X114441D01*

-Y124500D01*

-X107941D01*

-Y130500D01*

-G37*

-G36*

-X159441D02*X165941D01*

-Y124500D01*

-X159441D01*

-Y130500D01*

-G37*

-G36*

-X188941D02*X195441D01*

-Y124500D01*

-X188941D01*

-Y130500D01*

-G37*

-G36*

-X240941D02*X247441D01*

-Y124500D01*

-X240941D01*

-Y130500D01*

-G37*

-G36*

-X137941Y151000D02*X144441D01*

-Y145000D01*

-X137941D01*

-Y151000D01*

-G37*

-G36*

-X220441D02*X226941D01*

-Y145000D01*

-X220441D01*

-Y151000D01*

-G37*

-G36*

-X302196Y110000D02*X308696D01*

-Y104000D01*

-X302196D01*

-Y110000D01*

-G37*

-G36*

-X303941Y138450D02*X310441D01*

-Y132450D01*

-X303941D01*

-Y138450D01*

-G37*

-G36*

-X309441Y138000D02*X315941D01*

-Y135000D01*

-X309441D01*

-Y138000D01*

-G37*

-G36*

-X378441Y383000D02*X389441D01*

-Y375000D01*

-X378441D01*

-Y383000D01*

-G37*

-G36*

-X368441Y355000D02*X379441D01*

-Y347000D01*

-X368441D01*

-Y355000D01*

-G37*

-G36*

-X379162Y309000D02*X390162D01*

-Y301000D01*

-X379162D01*

-Y309000D01*

-G37*

-G36*

-X390441Y330118D02*X396441Y330000D01*

-Y323000D01*

-X390441Y323118D01*

-Y330118D01*

-G37*

-G36*

-X366441Y294689D02*X377441D01*

-Y286689D01*

-X366441D01*

-Y294689D01*

-G37*

-G36*

-X379512Y261000D02*X390512D01*

-Y253000D01*

-X379512D01*

-Y261000D01*

-G37*

-G36*

-X370441Y239157D02*X381441D01*

-Y231157D01*

-X370441D01*

-Y239157D01*

-G37*

-G36*

-X367485Y175386D02*X378485D01*

-Y167386D01*

-X367485D01*

-Y175386D01*

-G37*

-G36*

-X375937Y193161D02*X386937D01*

-Y185161D01*

-X375937D01*

-Y193161D01*

-G37*

-G36*

-X414441Y86000D02*X425441D01*

-Y78000D01*

-X414441D01*

-Y86000D01*

-G37*

-G36*

-X388441Y211000D02*X396441D01*

-Y204000D01*

-X388441D01*

-Y211000D01*

-G37*

-G36*

-X428941Y80000D02*X439941D01*

-Y72000D01*

-X428941D01*

-Y80000D01*

-G37*

-G36*

-X430941Y59500D02*X437441D01*

-Y53500D01*

-X430941D01*

-Y59500D01*

-G37*

-G36*

-X385441Y130500D02*X390941D01*

-Y91000D01*

-X385441D01*

-Y130500D01*

-G37*

-G36*

-X351941Y130000D02*X357441D01*

-Y90500D01*

-X351941D01*

-Y130000D01*

-G37*

-G36*

-X236441Y265000D02*X244441D01*

-Y258000D01*

-X236441D01*

-Y265000D01*

-G37*

-G36*

-X291712Y247147D02*X299712D01*

-Y240147D01*

-X291712D01*

-Y247147D01*

-G37*

-G36*

-X308941Y297500D02*X315441D01*

-Y291500D01*

-X308941D01*

-Y297500D01*

-G37*

-G36*

-X284262Y310800D02*X292262D01*

-Y303800D01*

-X284262D01*

-Y310800D01*

-G37*

-G36*

-X266207Y317716D02*X274207D01*

-Y310716D01*

-X266207D01*

-Y317716D01*

-G37*

-G36*

-X282148Y328134D02*X288648D01*

-Y322134D01*

-X282148D01*

-Y328134D01*

-G37*

-G36*

-X274167Y350634D02*X280667D01*

-Y344634D01*

-X274167D01*

-Y350634D01*

-G37*

-G36*

-X109941Y359500D02*X116441D01*

-Y353500D01*

-X109941D01*

-Y359500D01*

-G37*

-G36*

-X117941D02*X124441D01*

-Y353500D01*

-X117941D01*

-Y359500D01*

-G37*

-G36*

-X126941D02*X133441D01*

-Y353500D01*

-X126941D01*

-Y359500D01*

-G37*

-G36*

-X139441D02*X145941D01*

-Y353500D01*

-X139441D01*

-Y359500D01*

-G37*

-G36*

-Y353500D02*X145941D01*

-Y347500D01*

-X139441D01*

-Y353500D01*

-G37*

-G36*

-X145441D02*X151941D01*

-Y347500D01*

-X145441D01*

-Y353500D01*

-G37*

-G36*

-X150941Y349000D02*X157441D01*

-Y343000D01*

-X150941D01*

-Y349000D01*

-G37*

-G36*

-X165130Y353930D02*X171630D01*

-Y347930D01*

-X165130D01*

-Y353930D01*

-G37*

-G36*

-X123441Y343500D02*X129941D01*

-Y337500D01*

-X123441D01*

-Y343500D01*

-G37*

-G36*

-X113441Y338000D02*X119941D01*

-Y332000D01*

-X113441D01*

-Y338000D01*

-G37*

-G36*

-X109441D02*X115941D01*

-Y332000D01*

-X109441D01*

-Y338000D01*

-G37*

-G36*

-Y344500D02*X115941D01*

-Y338500D01*

-X109441D01*

-Y344500D01*

-G37*

-G36*

-X300719Y333466D02*X304150Y333438D01*

-X307219Y327466D01*

-X300719D01*

-Y333466D01*

-G37*

-G36*

-X155197Y331546D02*X161697D01*

-Y325546D01*

-X155197D01*

-Y331546D01*

-G37*

-G36*

-X155441Y327829D02*X161941D01*

-Y321829D01*

-X155441D01*

-Y327829D01*

-G37*

-G36*

-X236218Y303166D02*X244218D01*

-Y296166D01*

-X236218D01*

-Y303166D01*

-G37*

-G36*

-X194441Y312500D02*X200941D01*

-Y306500D01*

-X194441D01*

-Y312500D01*

-G37*

-G36*

-X192441Y315500D02*X198941D01*

-Y309500D01*

-X192441D01*

-Y315500D01*

-G37*

-G36*

-X194441Y318500D02*X200941D01*

-Y312500D01*

-X194441D01*

-Y318500D01*

-G37*

-G36*

-X123441Y337500D02*X129941D01*

-Y331500D01*

-X123441D01*

-Y337500D01*

-G37*

-G36*

-X159941Y277500D02*X165441D01*

-Y238000D01*

-X159941D01*

-Y277500D01*

-G37*

-G36*

-X125941Y278500D02*X131441D01*

-Y239000D01*

-X125941D01*

-Y278500D01*

-G37*

-G36*

-X138021Y303849D02*X144521D01*

-Y297849D01*

-X138021D01*

-Y303849D01*

-G37*

-G36*

-X201941Y280000D02*X208441D01*

-Y274000D01*

-X201941D01*

-Y280000D01*

-G37*

-G36*

-X194941Y272500D02*X201441D01*

-Y266500D01*

-X194941D01*

-Y272500D01*

-G37*

-G36*

-Y265500D02*X201441D01*

-Y259500D01*

-X194941D01*

-Y265500D01*

-G37*

-G36*

-X178441Y261500D02*X184941D01*

-Y255500D01*

-X178441D01*

-Y261500D01*

-G37*

-G36*

-X98941Y206500D02*X107441D01*

-Y202000D01*

-X98941D01*

-Y206500D01*

-G37*

-G36*

-X481441Y41500D02*X478941Y39000D01*

-X473493D01*

-Y49236D01*

-X473500Y49235D01*

-X474245Y49294D01*

-X474972Y49469D01*

-X475663Y49755D01*

-X476301Y50145D01*

-X476869Y50631D01*

-X477355Y51199D01*

-X477745Y51837D01*

-X478031Y52528D01*

-X478206Y53255D01*

-X478250Y54000D01*

-X478206Y54745D01*

-X478031Y55472D01*

-X477745Y56163D01*

-X477355Y56801D01*

-X476869Y57369D01*

-X476301Y57855D01*

-X475663Y58245D01*

-X474972Y58531D01*

-X474245Y58706D01*

-X473500Y58765D01*

-X473493Y58764D01*

-Y79236D01*

-X473500Y79235D01*

-X474245Y79294D01*

-X474972Y79469D01*

-X475663Y79755D01*

-X476301Y80145D01*

-X476869Y80631D01*

-X477355Y81199D01*

-X477745Y81837D01*

-X478031Y82528D01*

-X478206Y83255D01*

-X478250Y84000D01*

-X478206Y84745D01*

-X478031Y85472D01*

-X477745Y86163D01*

-X477355Y86801D01*

-X476869Y87369D01*

-X476301Y87855D01*

-X475663Y88245D01*

-X474972Y88531D01*

-X474245Y88706D01*

-X473500Y88765D01*

-X473493Y88764D01*

-Y109236D01*

-X473500Y109235D01*

-X474245Y109294D01*

-X474972Y109469D01*

-X475663Y109755D01*

-X476301Y110145D01*

-X476869Y110631D01*

-X477355Y111199D01*

-X477745Y111837D01*

-X478031Y112528D01*

-X478206Y113255D01*

-X478250Y114000D01*

-X478206Y114745D01*

-X478031Y115472D01*

-X477745Y116163D01*

-X477355Y116801D01*

-X476869Y117369D01*

-X476301Y117855D01*

-X475663Y118245D01*

-X474972Y118531D01*

-X474245Y118706D01*

-X473500Y118765D01*

-X473493Y118764D01*

-Y139236D01*

-X473500Y139235D01*

-X474245Y139294D01*

-X474972Y139469D01*

-X475663Y139755D01*

-X476301Y140145D01*

-X476869Y140631D01*

-X477355Y141199D01*

-X477745Y141837D01*

-X478031Y142528D01*

-X478206Y143255D01*

-X478250Y144000D01*

-X478206Y144745D01*

-X478031Y145472D01*

-X477745Y146163D01*

-X477355Y146801D01*

-X476869Y147369D01*

-X476301Y147855D01*

-X475663Y148245D01*

-X474972Y148531D01*

-X474245Y148706D01*

-X473500Y148765D01*

-X473493Y148764D01*

-Y169236D01*

-X473500Y169235D01*

-X474245Y169294D01*

-X474972Y169469D01*

-X475663Y169755D01*

-X476301Y170145D01*

-X476869Y170631D01*

-X477355Y171199D01*

-X477745Y171837D01*

-X478031Y172528D01*

-X478206Y173255D01*

-X478250Y174000D01*

-X478206Y174745D01*

-X478031Y175472D01*

-X477745Y176163D01*

-X477355Y176801D01*

-X476869Y177369D01*

-X476301Y177855D01*

-X475663Y178245D01*

-X474972Y178531D01*

-X474245Y178706D01*

-X473500Y178765D01*

-X473493Y178764D01*

-Y199236D01*

-X473500Y199235D01*

-X474245Y199294D01*

-X474972Y199469D01*

-X475663Y199755D01*

-X476301Y200145D01*

-X476869Y200631D01*

-X477355Y201199D01*

-X477745Y201837D01*

-X478031Y202528D01*

-X478206Y203255D01*

-X478250Y204000D01*

-X478206Y204745D01*

-X478031Y205472D01*

-X477745Y206163D01*

-X477355Y206801D01*

-X476869Y207369D01*

-X476301Y207855D01*

-X475663Y208245D01*

-X474972Y208531D01*

-X474245Y208706D01*

-X473500Y208765D01*

-X473493Y208764D01*

-Y229236D01*

-X473500Y229235D01*

-X474245Y229294D01*

-X474972Y229469D01*

-X475663Y229755D01*

-X476301Y230145D01*

-X476869Y230631D01*

-X477355Y231199D01*

-X477745Y231837D01*

-X478031Y232528D01*

-X478206Y233255D01*

-X478250Y234000D01*

-X478206Y234745D01*

-X478031Y235472D01*

-X477745Y236163D01*

-X477355Y236801D01*

-X476869Y237369D01*

-X476301Y237855D01*

-X475663Y238245D01*

-X474972Y238531D01*

-X474245Y238706D01*

-X473500Y238765D01*

-X473493Y238764D01*

-Y259236D01*

-X473500Y259235D01*

-X474245Y259294D01*

-X474972Y259469D01*

-X475663Y259755D01*

-X476301Y260145D01*

-X476869Y260631D01*

-X477355Y261199D01*

-X477745Y261837D01*

-X478031Y262528D01*

-X478206Y263255D01*

-X478250Y264000D01*

-X478206Y264745D01*

-X478031Y265472D01*

-X477745Y266163D01*

-X477355Y266801D01*

-X476869Y267369D01*

-X476301Y267855D01*

-X475663Y268245D01*

-X474972Y268531D01*

-X474245Y268706D01*

-X473500Y268765D01*

-X473493Y268764D01*

-Y289236D01*

-X473500Y289235D01*

-X474245Y289294D01*

-X474972Y289469D01*

-X475663Y289755D01*

-X476301Y290145D01*

-X476869Y290631D01*

-X477355Y291199D01*

-X477745Y291837D01*

-X478031Y292528D01*

-X478206Y293255D01*

-X478250Y294000D01*

-X478206Y294745D01*

-X478031Y295472D01*

-X477745Y296163D01*

-X477355Y296801D01*

-X476869Y297369D01*

-X476301Y297855D01*

-X475663Y298245D01*

-X474972Y298531D01*

-X474245Y298706D01*

-X473500Y298765D01*

-X473493Y298764D01*

-Y319236D01*

-X473500Y319235D01*

-X474245Y319294D01*

-X474972Y319469D01*

-X475663Y319755D01*

-X476301Y320145D01*

-X476869Y320631D01*

-X477355Y321199D01*

-X477745Y321837D01*

-X478031Y322528D01*

-X478206Y323255D01*

-X478250Y324000D01*

-X478206Y324745D01*

-X478031Y325472D01*

-X477745Y326163D01*

-X477355Y326801D01*

-X476869Y327369D01*

-X476301Y327855D01*

-X475663Y328245D01*

-X474972Y328531D01*

-X474245Y328706D01*

-X473500Y328765D01*

-X473493Y328764D01*

-Y349236D01*

-X473500Y349235D01*

-X474245Y349294D01*

-X474972Y349469D01*

-X475663Y349755D01*

-X476301Y350145D01*

-X476869Y350631D01*

-X477355Y351199D01*

-X477745Y351837D01*

-X478031Y352528D01*

-X478206Y353255D01*

-X478250Y354000D01*

-X478206Y354745D01*

-X478031Y355472D01*

-X477745Y356163D01*

-X477355Y356801D01*

-X476869Y357369D01*

-X476301Y357855D01*

-X475663Y358245D01*

-X474972Y358531D01*

-X474245Y358706D01*

-X473500Y358765D01*

-X473493Y358764D01*

-Y379236D01*

-X473500Y379235D01*

-X474245Y379294D01*

-X474972Y379469D01*

-X475663Y379755D01*

-X476301Y380145D01*

-X476869Y380631D01*

-X477355Y381199D01*

-X477745Y381837D01*

-X478031Y382528D01*

-X478206Y383255D01*

-X478250Y384000D01*

-X478206Y384745D01*

-X478031Y385472D01*

-X477745Y386163D01*

-X477355Y386801D01*

-X476869Y387369D01*

-X476301Y387855D01*

-X475663Y388245D01*

-X474972Y388531D01*

-X474245Y388706D01*

-X473500Y388765D01*

-X473493Y388764D01*

-Y397000D01*

-X478941D01*

-X481441Y394000D01*

-Y41500D01*

-G37*

-G36*

-X473493Y39000D02*X463493D01*

-Y49236D01*

-X463500Y49235D01*

-X464245Y49294D01*

-X464972Y49469D01*

-X465663Y49755D01*

-X466301Y50145D01*

-X466869Y50631D01*

-X467355Y51199D01*

-X467745Y51837D01*

-X468031Y52528D01*

-X468206Y53255D01*

-X468250Y54000D01*

-X468206Y54745D01*

-X468031Y55472D01*

-X467745Y56163D01*

-X467355Y56801D01*

-X466869Y57369D01*

-X466301Y57855D01*

-X465663Y58245D01*

-X464972Y58531D01*

-X464245Y58706D01*

-X463500Y58765D01*

-X463493Y58764D01*

-Y79236D01*

-X463500Y79235D01*

-X464245Y79294D01*

-X464972Y79469D01*

-X465663Y79755D01*

-X466301Y80145D01*

-X466869Y80631D01*

-X467355Y81199D01*

-X467745Y81837D01*

-X468031Y82528D01*

-X468206Y83255D01*

-X468250Y84000D01*

-X468206Y84745D01*

-X468031Y85472D01*

-X467745Y86163D01*

-X467355Y86801D01*

-X466869Y87369D01*

-X466301Y87855D01*

-X465663Y88245D01*

-X464972Y88531D01*

-X464245Y88706D01*

-X463500Y88765D01*

-X463493Y88764D01*

-Y109236D01*

-X463500Y109235D01*

-X464245Y109294D01*

-X464972Y109469D01*

-X465663Y109755D01*

-X466301Y110145D01*

-X466869Y110631D01*

-X467355Y111199D01*

-X467745Y111837D01*

-X468031Y112528D01*

-X468206Y113255D01*

-X468250Y114000D01*

-X468206Y114745D01*

-X468031Y115472D01*

-X467745Y116163D01*

-X467355Y116801D01*

-X466869Y117369D01*

-X466301Y117855D01*

-X465663Y118245D01*

-X464972Y118531D01*

-X464245Y118706D01*

-X463500Y118765D01*

-X463493Y118764D01*

-Y139236D01*

-X463500Y139235D01*

-X464245Y139294D01*

-X464972Y139469D01*

-X465663Y139755D01*

-X466301Y140145D01*

-X466869Y140631D01*

-X467355Y141199D01*

-X467745Y141837D01*

-X468031Y142528D01*

-X468206Y143255D01*

-X468250Y144000D01*

-X468206Y144745D01*

-X468031Y145472D01*

-X467745Y146163D01*

-X467355Y146801D01*

-X466869Y147369D01*

-X466301Y147855D01*

-X465663Y148245D01*

-X464972Y148531D01*

-X464245Y148706D01*

-X463500Y148765D01*

-X463493Y148764D01*

-Y169236D01*

-X463500Y169235D01*

-X464245Y169294D01*

-X464972Y169469D01*

-X465663Y169755D01*

-X466301Y170145D01*

-X466869Y170631D01*

-X467355Y171199D01*

-X467745Y171837D01*

-X468031Y172528D01*

-X468206Y173255D01*

-X468250Y174000D01*

-X468206Y174745D01*

-X468031Y175472D01*

-X467745Y176163D01*

-X467355Y176801D01*

-X466869Y177369D01*

-X466301Y177855D01*

-X465663Y178245D01*

-X464972Y178531D01*

-X464245Y178706D01*

-X463500Y178765D01*

-X463493Y178764D01*

-Y199236D01*

-X463500Y199235D01*

-X464245Y199294D01*

-X464972Y199469D01*

-X465663Y199755D01*

-X466301Y200145D01*

-X466869Y200631D01*

-X467355Y201199D01*

-X467745Y201837D01*

-X468031Y202528D01*

-X468206Y203255D01*

-X468250Y204000D01*

-X468206Y204745D01*

-X468031Y205472D01*

-X467745Y206163D01*

-X467355Y206801D01*

-X466869Y207369D01*

-X466301Y207855D01*

-X465663Y208245D01*

-X464972Y208531D01*

-X464245Y208706D01*

-X463500Y208765D01*

-X463493Y208764D01*

-Y229236D01*

-X463500Y229235D01*

-X464245Y229294D01*

-X464972Y229469D01*

-X465663Y229755D01*

-X466301Y230145D01*

-X466869Y230631D01*

-X467355Y231199D01*

-X467745Y231837D01*

-X468031Y232528D01*

-X468206Y233255D01*

-X468250Y234000D01*

-X468206Y234745D01*

-X468031Y235472D01*

-X467745Y236163D01*

-X467355Y236801D01*

-X466869Y237369D01*

-X466301Y237855D01*

-X465663Y238245D01*

-X464972Y238531D01*

-X464245Y238706D01*

-X463500Y238765D01*

-X463493Y238764D01*

-Y259236D01*

-X463500Y259235D01*

-X464245Y259294D01*

-X464972Y259469D01*

-X465663Y259755D01*

-X466301Y260145D01*

-X466869Y260631D01*

-X467355Y261199D01*

-X467745Y261837D01*

-X468031Y262528D01*

-X468206Y263255D01*

-X468250Y264000D01*

-X468206Y264745D01*

-X468031Y265472D01*

-X467745Y266163D01*

-X467355Y266801D01*

-X466869Y267369D01*

-X466301Y267855D01*

-X465663Y268245D01*

-X464972Y268531D01*

-X464245Y268706D01*

-X463500Y268765D01*

-X463493Y268764D01*

-Y289236D01*

-X463500Y289235D01*

-X464245Y289294D01*

-X464972Y289469D01*

-X465663Y289755D01*

-X466301Y290145D01*

-X466869Y290631D01*

-X467355Y291199D01*

-X467745Y291837D01*

-X468031Y292528D01*

-X468206Y293255D01*

-X468250Y294000D01*

-X468206Y294745D01*

-X468031Y295472D01*

-X467745Y296163D01*

-X467355Y296801D01*

-X466869Y297369D01*

-X466301Y297855D01*

-X465663Y298245D01*

-X464972Y298531D01*

-X464245Y298706D01*

-X463500Y298765D01*

-X463493Y298764D01*

-Y319236D01*

-X463500Y319235D01*

-X464245Y319294D01*

-X464972Y319469D01*

-X465663Y319755D01*

-X466301Y320145D01*

-X466869Y320631D01*

-X467355Y321199D01*

-X467745Y321837D01*

-X468031Y322528D01*

-X468206Y323255D01*

-X468250Y324000D01*

-X468206Y324745D01*

-X468031Y325472D01*

-X467745Y326163D01*

-X467355Y326801D01*

-X466869Y327369D01*

-X466301Y327855D01*

-X465663Y328245D01*

-X464972Y328531D01*

-X464245Y328706D01*

-X463500Y328765D01*

-X463493Y328764D01*

-Y349236D01*

-X463500Y349235D01*

-X464245Y349294D01*

-X464972Y349469D01*

-X465663Y349755D01*

-X466301Y350145D01*

-X466869Y350631D01*

-X467355Y351199D01*

-X467745Y351837D01*

-X468031Y352528D01*

-X468206Y353255D01*

-X468250Y354000D01*

-X468206Y354745D01*

-X468031Y355472D01*

-X467745Y356163D01*

-X467355Y356801D01*

-X466869Y357369D01*

-X466301Y357855D01*

-X465663Y358245D01*

-X464972Y358531D01*

-X464245Y358706D01*

-X463500Y358765D01*

-X463493Y358764D01*

-Y379236D01*

-X463500Y379235D01*

-X464245Y379294D01*

-X464972Y379469D01*

-X465663Y379755D01*

-X466301Y380145D01*

-X466869Y380631D01*

-X467355Y381199D01*

-X467745Y381837D01*

-X468031Y382528D01*

-X468206Y383255D01*

-X468250Y384000D01*

-X468206Y384745D01*

-X468031Y385472D01*

-X467745Y386163D01*

-X467355Y386801D01*

-X466869Y387369D01*

-X466301Y387855D01*

-X465663Y388245D01*

-X464972Y388531D01*

-X464245Y388706D01*

-X463500Y388765D01*

-X463493Y388764D01*

-Y397000D01*

-X473493D01*

-Y388764D01*

-X472755Y388706D01*

-X472028Y388531D01*

-X471337Y388245D01*

-X470699Y387855D01*

-X470131Y387369D01*

-X469645Y386801D01*

-X469255Y386163D01*

-X468969Y385472D01*

-X468794Y384745D01*

-X468735Y384000D01*

-X468794Y383255D01*

-X468969Y382528D01*

-X469255Y381837D01*

-X469645Y381199D01*

-X470131Y380631D01*

-X470699Y380145D01*

-X471337Y379755D01*

-X472028Y379469D01*

-X472755Y379294D01*

-X473493Y379236D01*

-Y358764D01*

-X472755Y358706D01*

-X472028Y358531D01*

-X471337Y358245D01*

-X470699Y357855D01*

-X470131Y357369D01*

-X469645Y356801D01*

-X469255Y356163D01*

-X468969Y355472D01*

-X468794Y354745D01*

-X468735Y354000D01*

-X468794Y353255D01*

-X468969Y352528D01*

-X469255Y351837D01*

-X469645Y351199D01*

-X470131Y350631D01*

-X470699Y350145D01*

-X471337Y349755D01*

-X472028Y349469D01*

-X472755Y349294D01*

-X473493Y349236D01*

-Y328764D01*

-X472755Y328706D01*

-X472028Y328531D01*

-X471337Y328245D01*

-X470699Y327855D01*

-X470131Y327369D01*

-X469645Y326801D01*

-X469255Y326163D01*

-X468969Y325472D01*

-X468794Y324745D01*

-X468735Y324000D01*

-X468794Y323255D01*

-X468969Y322528D01*

-X469255Y321837D01*

-X469645Y321199D01*

-X470131Y320631D01*

-X470699Y320145D01*

-X471337Y319755D01*

-X472028Y319469D01*

-X472755Y319294D01*

-X473493Y319236D01*

-Y298764D01*

-X472755Y298706D01*

-X472028Y298531D01*

-X471337Y298245D01*

-X470699Y297855D01*

-X470131Y297369D01*

-X469645Y296801D01*

-X469255Y296163D01*

-X468969Y295472D01*

-X468794Y294745D01*

-X468735Y294000D01*

-X468794Y293255D01*

-X468969Y292528D01*

-X469255Y291837D01*

-X469645Y291199D01*

-X470131Y290631D01*

-X470699Y290145D01*

-X471337Y289755D01*

-X472028Y289469D01*

-X472755Y289294D01*

-X473493Y289236D01*

-Y268764D01*

-X472755Y268706D01*

-X472028Y268531D01*

-X471337Y268245D01*

-X470699Y267855D01*

-X470131Y267369D01*

-X469645Y266801D01*

-X469255Y266163D01*

-X468969Y265472D01*

-X468794Y264745D01*

-X468735Y264000D01*

-X468794Y263255D01*

-X468969Y262528D01*

-X469255Y261837D01*

-X469645Y261199D01*

-X470131Y260631D01*

-X470699Y260145D01*

-X471337Y259755D01*

-X472028Y259469D01*

-X472755Y259294D01*

-X473493Y259236D01*

-Y238764D01*

-X472755Y238706D01*

-X472028Y238531D01*

-X471337Y238245D01*

-X470699Y237855D01*

-X470131Y237369D01*

-X469645Y236801D01*

-X469255Y236163D01*

-X468969Y235472D01*

-X468794Y234745D01*

-X468735Y234000D01*

-X468794Y233255D01*

-X468969Y232528D01*

-X469255Y231837D01*

-X469645Y231199D01*

-X470131Y230631D01*

-X470699Y230145D01*

-X471337Y229755D01*

-X472028Y229469D01*

-X472755Y229294D01*

-X473493Y229236D01*

-Y208764D01*

-X472755Y208706D01*

-X472028Y208531D01*

-X471337Y208245D01*

-X470699Y207855D01*

-X470131Y207369D01*

-X469645Y206801D01*

-X469255Y206163D01*

-X468969Y205472D01*

-X468794Y204745D01*

-X468735Y204000D01*

-X468794Y203255D01*

-X468969Y202528D01*

-X469255Y201837D01*

-X469645Y201199D01*

-X470131Y200631D01*

-X470699Y200145D01*

-X471337Y199755D01*

-X472028Y199469D01*

-X472755Y199294D01*

-X473493Y199236D01*

-Y178764D01*

-X472755Y178706D01*

-X472028Y178531D01*

-X471337Y178245D01*

-X470699Y177855D01*

-X470131Y177369D01*

-X469645Y176801D01*

-X469255Y176163D01*

-X468969Y175472D01*

-X468794Y174745D01*

-X468735Y174000D01*

-X468794Y173255D01*

-X468969Y172528D01*

-X469255Y171837D01*

-X469645Y171199D01*

-X470131Y170631D01*

-X470699Y170145D01*

-X471337Y169755D01*

-X472028Y169469D01*

-X472755Y169294D01*

-X473493Y169236D01*

-Y148764D01*

-X472755Y148706D01*

-X472028Y148531D01*

-X471337Y148245D01*

-X470699Y147855D01*

-X470131Y147369D01*

-X469645Y146801D01*

-X469255Y146163D01*

-X468969Y145472D01*

-X468794Y144745D01*

-X468735Y144000D01*

-X468794Y143255D01*

-X468969Y142528D01*

-X469255Y141837D01*

-X469645Y141199D01*

-X470131Y140631D01*

-X470699Y140145D01*

-X471337Y139755D01*

-X472028Y139469D01*

-X472755Y139294D01*

-X473493Y139236D01*

-Y118764D01*

-X472755Y118706D01*

-X472028Y118531D01*

-X471337Y118245D01*

-X470699Y117855D01*

-X470131Y117369D01*

-X469645Y116801D01*

-X469255Y116163D01*

-X468969Y115472D01*

-X468794Y114745D01*

-X468735Y114000D01*

-X468794Y113255D01*

-X468969Y112528D01*

-X469255Y111837D01*

-X469645Y111199D01*

-X470131Y110631D01*

-X470699Y110145D01*

-X471337Y109755D01*

-X472028Y109469D01*

-X472755Y109294D01*

-X473493Y109236D01*

-Y88764D01*

-X472755Y88706D01*

-X472028Y88531D01*

-X471337Y88245D01*

-X470699Y87855D01*

-X470131Y87369D01*

-X469645Y86801D01*

-X469255Y86163D01*

-X468969Y85472D01*

-X468794Y84745D01*

-X468735Y84000D01*

-X468794Y83255D01*

-X468969Y82528D01*

-X469255Y81837D01*

-X469645Y81199D01*

-X470131Y80631D01*

-X470699Y80145D01*

-X471337Y79755D01*

-X472028Y79469D01*

-X472755Y79294D01*

-X473493Y79236D01*

-Y58764D01*

-X472755Y58706D01*

-X472028Y58531D01*

-X471337Y58245D01*

-X470699Y57855D01*

-X470131Y57369D01*

-X469645Y56801D01*

-X469255Y56163D01*

-X468969Y55472D01*

-X468794Y54745D01*

-X468735Y54000D01*

-X468794Y53255D01*

-X468969Y52528D01*

-X469255Y51837D01*

-X469645Y51199D01*

-X470131Y50631D01*

-X470699Y50145D01*

-X471337Y49755D01*

-X472028Y49469D01*

-X472755Y49294D01*

-X473493Y49236D01*

-Y39000D01*

-G37*

-G36*

-X463493D02*X458437D01*

-Y161192D01*

-X458441Y161191D01*

-X458880Y161226D01*

-X459309Y161329D01*

-X459716Y161497D01*

-X460092Y161728D01*

-X460427Y162014D01*

-X460713Y162349D01*

-X460944Y162725D01*

-X461112Y163132D01*

-X461215Y163561D01*

-X461241Y164000D01*

-X461215Y164439D01*

-X461112Y164868D01*

-X460944Y165275D01*

-X460713Y165651D01*

-X460427Y165986D01*

-X460092Y166272D01*

-X459716Y166503D01*

-X459309Y166671D01*

-X458880Y166774D01*

-X458441Y166809D01*

-X458437Y166808D01*

-Y192192D01*

-X458441Y192191D01*

-X458880Y192226D01*

-X459309Y192329D01*

-X459716Y192497D01*

-X460092Y192728D01*

-X460427Y193014D01*

-X460713Y193349D01*

-X460944Y193725D01*

-X461112Y194132D01*

-X461215Y194561D01*

-X461241Y195000D01*

-X461215Y195439D01*

-X461112Y195868D01*

-X460944Y196275D01*

-X460713Y196651D01*

-X460427Y196986D01*

-X460092Y197272D01*

-X459716Y197503D01*

-X459309Y197671D01*

-X458880Y197774D01*

-X458441Y197809D01*

-X458437Y197808D01*

-Y222192D01*

-X458441Y222191D01*

-X458880Y222226D01*

-X459309Y222329D01*

-X459716Y222497D01*

-X460092Y222728D01*

-X460427Y223014D01*

-X460713Y223349D01*

-X460944Y223725D01*

-X461112Y224132D01*

-X461215Y224561D01*

-X461241Y225000D01*

-X461215Y225439D01*

-X461112Y225868D01*

-X460944Y226275D01*

-X460713Y226651D01*

-X460427Y226986D01*

-X460092Y227272D01*

-X459716Y227503D01*

-X459309Y227671D01*

-X458880Y227774D01*

-X458441Y227809D01*

-X458437Y227808D01*

-Y251192D01*

-X458441Y251191D01*

-X458880Y251226D01*

-X459309Y251329D01*

-X459716Y251497D01*

-X460092Y251728D01*

-X460427Y252014D01*

-X460713Y252349D01*

-X460944Y252725D01*

-X461112Y253132D01*

-X461215Y253561D01*

-X461241Y254000D01*

-X461215Y254439D01*

-X461112Y254868D01*

-X460944Y255275D01*

-X460713Y255651D01*

-X460427Y255986D01*

-X460092Y256272D01*

-X459716Y256503D01*

-X459309Y256671D01*

-X458880Y256774D01*

-X458441Y256809D01*

-X458437Y256808D01*

-Y282192D01*

-X458441Y282191D01*

-X458880Y282226D01*

-X459309Y282329D01*

-X459716Y282497D01*

-X460092Y282728D01*

-X460427Y283014D01*

-X460713Y283349D01*

-X460944Y283725D01*

-X461112Y284132D01*

-X461215Y284561D01*

-X461241Y285000D01*

-X461215Y285439D01*

-X461112Y285868D01*

-X460944Y286275D01*

-X460713Y286651D01*

-X460427Y286986D01*

-X460092Y287272D01*

-X459716Y287503D01*

-X459309Y287671D01*

-X458880Y287774D01*

-X458441Y287809D01*

-X458437Y287808D01*

-Y312192D01*

-X458441Y312191D01*

-X458880Y312226D01*

-X459309Y312329D01*

-X459716Y312497D01*

-X460092Y312728D01*

-X460427Y313014D01*

-X460713Y313349D01*

-X460944Y313725D01*

-X461112Y314132D01*

-X461215Y314561D01*

-X461241Y315000D01*

-X461215Y315439D01*

-X461112Y315868D01*

-X460944Y316275D01*

-X460713Y316651D01*

-X460427Y316986D01*

-X460092Y317272D01*

-X459716Y317503D01*

-X459309Y317671D01*

-X458880Y317774D01*

-X458441Y317809D01*

-X458437Y317808D01*

-Y342192D01*

-X458441Y342191D01*

-X458880Y342226D01*

-X459309Y342329D01*

-X459716Y342497D01*

-X460092Y342728D01*

-X460427Y343014D01*

-X460713Y343349D01*

-X460944Y343725D01*

-X461112Y344132D01*

-X461215Y344561D01*

-X461241Y345000D01*

-X461215Y345439D01*

-X461112Y345868D01*

-X460944Y346275D01*

-X460713Y346651D01*

-X460427Y346986D01*

-X460092Y347272D01*

-X459716Y347503D01*

-X459309Y347671D01*

-X458880Y347774D01*

-X458441Y347809D01*

-X458437Y347808D01*

-Y372192D01*

-X458441Y372191D01*

-X458880Y372226D01*

-X459309Y372329D01*

-X459716Y372497D01*

-X460092Y372728D01*

-X460427Y373014D01*

-X460713Y373349D01*

-X460944Y373725D01*

-X461112Y374132D01*

-X461215Y374561D01*

-X461241Y375000D01*

-X461215Y375439D01*

-X461112Y375868D01*

-X460944Y376275D01*

-X460713Y376651D01*

-X460427Y376986D01*

-X460092Y377272D01*

-X459716Y377503D01*

-X459309Y377671D01*

-X458880Y377774D01*

-X458441Y377809D01*

-X458437Y377808D01*

-Y397000D01*

-X463493D01*

-Y388764D01*

-X462755Y388706D01*

-X462028Y388531D01*

-X461337Y388245D01*

-X460699Y387855D01*

-X460131Y387369D01*

-X459645Y386801D01*

-X459255Y386163D01*

-X458969Y385472D01*

-X458794Y384745D01*

-X458735Y384000D01*

-X458794Y383255D01*

-X458969Y382528D01*

-X459255Y381837D01*

-X459645Y381199D01*

-X460131Y380631D01*

-X460699Y380145D01*

-X461337Y379755D01*

-X462028Y379469D01*

-X462755Y379294D01*

-X463493Y379236D01*

-Y358764D01*

-X462755Y358706D01*

-X462028Y358531D01*

-X461337Y358245D01*

-X460699Y357855D01*

-X460131Y357369D01*

-X459645Y356801D01*

-X459255Y356163D01*

-X458969Y355472D01*

-X458794Y354745D01*

-X458735Y354000D01*

-X458794Y353255D01*

-X458969Y352528D01*

-X459255Y351837D01*

-X459645Y351199D01*

-X460131Y350631D01*

-X460699Y350145D01*

-X461337Y349755D01*

-X462028Y349469D01*

-X462755Y349294D01*

-X463493Y349236D01*

-Y328764D01*

-X462755Y328706D01*

-X462028Y328531D01*

-X461337Y328245D01*

-X460699Y327855D01*

-X460131Y327369D01*

-X459645Y326801D01*

-X459255Y326163D01*

-X458969Y325472D01*

-X458794Y324745D01*

-X458735Y324000D01*

-X458794Y323255D01*

-X458969Y322528D01*

-X459255Y321837D01*

-X459645Y321199D01*

-X460131Y320631D01*

-X460699Y320145D01*

-X461337Y319755D01*

-X462028Y319469D01*

-X462755Y319294D01*

-X463493Y319236D01*

-Y298764D01*

-X462755Y298706D01*

-X462028Y298531D01*

-X461337Y298245D01*

-X460699Y297855D01*

-X460131Y297369D01*

-X459645Y296801D01*

-X459255Y296163D01*

-X458969Y295472D01*

-X458794Y294745D01*

-X458735Y294000D01*

-X458794Y293255D01*

-X458969Y292528D01*

-X459255Y291837D01*

-X459645Y291199D01*

-X460131Y290631D01*

-X460699Y290145D01*

-X461337Y289755D01*

-X462028Y289469D01*

-X462755Y289294D01*

-X463493Y289236D01*

-Y268764D01*

-X462755Y268706D01*

-X462028Y268531D01*

-X461337Y268245D01*

-X460699Y267855D01*

-X460131Y267369D01*

-X459645Y266801D01*

-X459255Y266163D01*

-X458969Y265472D01*

-X458794Y264745D01*

-X458735Y264000D01*

-X458794Y263255D01*

-X458969Y262528D01*

-X459255Y261837D01*

-X459645Y261199D01*

-X460131Y260631D01*

-X460699Y260145D01*

-X461337Y259755D01*

-X462028Y259469D01*

-X462755Y259294D01*

-X463493Y259236D01*

-Y238764D01*

-X462755Y238706D01*

-X462028Y238531D01*

-X461337Y238245D01*

-X460699Y237855D01*

-X460131Y237369D01*

-X459645Y236801D01*

-X459255Y236163D01*

-X458969Y235472D01*

-X458794Y234745D01*

-X458735Y234000D01*

-X458794Y233255D01*

-X458969Y232528D01*

-X459255Y231837D01*

-X459645Y231199D01*

-X460131Y230631D01*

-X460699Y230145D01*

-X461337Y229755D01*

-X462028Y229469D01*

-X462755Y229294D01*

-X463493Y229236D01*

-Y208764D01*

-X462755Y208706D01*

-X462028Y208531D01*

-X461337Y208245D01*

-X460699Y207855D01*

-X460131Y207369D01*

-X459645Y206801D01*

-X459255Y206163D01*

-X458969Y205472D01*

-X458794Y204745D01*

-X458735Y204000D01*

-X458794Y203255D01*

-X458969Y202528D01*

-X459255Y201837D01*

-X459645Y201199D01*

-X460131Y200631D01*

-X460699Y200145D01*

-X461337Y199755D01*

-X462028Y199469D01*

-X462755Y199294D01*

-X463493Y199236D01*

-Y178764D01*

-X462755Y178706D01*

-X462028Y178531D01*

-X461337Y178245D01*

-X460699Y177855D01*

-X460131Y177369D01*

-X459645Y176801D01*

-X459255Y176163D01*

-X458969Y175472D01*

-X458794Y174745D01*

-X458735Y174000D01*

-X458794Y173255D01*

-X458969Y172528D01*

-X459255Y171837D01*

-X459645Y171199D01*

-X460131Y170631D01*

-X460699Y170145D01*

-X461337Y169755D01*

-X462028Y169469D01*

-X462755Y169294D01*

-X463493Y169236D01*

-Y148764D01*

-X462755Y148706D01*

-X462028Y148531D01*

-X461337Y148245D01*

-X460699Y147855D01*

-X460131Y147369D01*

-X459645Y146801D01*

-X459255Y146163D01*

-X458969Y145472D01*

-X458794Y144745D01*

-X458735Y144000D01*

-X458794Y143255D01*

-X458969Y142528D01*

-X459255Y141837D01*

-X459645Y141199D01*

-X460131Y140631D01*

-X460699Y140145D01*

-X461337Y139755D01*

-X462028Y139469D01*

-X462755Y139294D01*

-X463493Y139236D01*

-Y118764D01*

-X462755Y118706D01*

-X462028Y118531D01*

-X461337Y118245D01*

-X460699Y117855D01*

-X460131Y117369D01*

-X459645Y116801D01*

-X459255Y116163D01*

-X458969Y115472D01*

-X458794Y114745D01*

-X458735Y114000D01*

-X458794Y113255D01*

-X458969Y112528D01*

-X459255Y111837D01*

-X459645Y111199D01*

-X460131Y110631D01*

-X460699Y110145D01*

-X461337Y109755D01*

-X462028Y109469D01*

-X462755Y109294D01*

-X463493Y109236D01*

-Y88764D01*

-X462755Y88706D01*

-X462028Y88531D01*

-X461337Y88245D01*

-X460699Y87855D01*

-X460131Y87369D01*

-X459645Y86801D01*

-X459255Y86163D01*

-X458969Y85472D01*

-X458794Y84745D01*

-X458735Y84000D01*

-X458794Y83255D01*

-X458969Y82528D01*

-X459255Y81837D01*

-X459645Y81199D01*

-X460131Y80631D01*

-X460699Y80145D01*

-X461337Y79755D01*

-X462028Y79469D01*

-X462755Y79294D01*

-X463493Y79236D01*

-Y58764D01*

-X462755Y58706D01*

-X462028Y58531D01*

-X461337Y58245D01*

-X460699Y57855D01*

-X460131Y57369D01*

-X459645Y56801D01*

-X459255Y56163D01*

-X458969Y55472D01*

-X458794Y54745D01*

-X458735Y54000D01*

-X458794Y53255D01*

-X458969Y52528D01*

-X459255Y51837D01*

-X459645Y51199D01*

-X460131Y50631D01*

-X460699Y50145D01*

-X461337Y49755D01*

-X462028Y49469D01*

-X462755Y49294D01*

-X463493Y49236D01*

-Y39000D01*

-G37*

-G36*

-X457500Y192359D02*X457573Y192329D01*

-X458002Y192226D01*

-X458437Y192192D01*

-Y166808D01*

-X458002Y166774D01*

-X457573Y166671D01*

-X457500Y166641D01*

-Y171498D01*

-X457618Y171507D01*

-X457732Y171535D01*

-X457842Y171580D01*

-X457942Y171641D01*

-X458032Y171718D01*

-X458109Y171808D01*

-X458170Y171908D01*

-X458215Y172018D01*

-X458243Y172132D01*

-X458250Y172250D01*

-Y175750D01*

-X458243Y175868D01*

-X458215Y175982D01*

-X458170Y176092D01*

-X458109Y176192D01*

-X458032Y176282D01*

-X457942Y176359D01*

-X457842Y176420D01*

-X457732Y176465D01*

-X457618Y176493D01*

-X457500Y176502D01*

-Y192359D01*

-G37*

-G36*

-Y222359D02*X457573Y222329D01*

-X458002Y222226D01*

-X458437Y222192D01*

-Y197808D01*

-X458002Y197774D01*

-X457573Y197671D01*

-X457500Y197641D01*

-Y201498D01*

-X457618Y201507D01*

-X457732Y201535D01*

-X457842Y201580D01*

-X457942Y201641D01*

-X458032Y201718D01*

-X458109Y201808D01*

-X458170Y201908D01*

-X458215Y202018D01*

-X458243Y202132D01*

-X458250Y202250D01*

-Y205750D01*

-X458243Y205868D01*

-X458215Y205982D01*

-X458170Y206092D01*

-X458109Y206192D01*

-X458032Y206282D01*

-X457942Y206359D01*

-X457842Y206420D01*

-X457732Y206465D01*

-X457618Y206493D01*

-X457500Y206502D01*

-Y222359D01*

-G37*

-G36*

-Y251359D02*X457573Y251329D01*

-X458002Y251226D01*

-X458437Y251192D01*

-Y227808D01*

-X458002Y227774D01*

-X457573Y227671D01*

-X457500Y227641D01*

-Y231498D01*

-X457618Y231507D01*

-X457732Y231535D01*

-X457842Y231580D01*

-X457942Y231641D01*

-X458032Y231718D01*

-X458109Y231808D01*

-X458170Y231908D01*

-X458215Y232018D01*

-X458243Y232132D01*

-X458250Y232250D01*

-Y235750D01*

-X458243Y235868D01*

-X458215Y235982D01*

-X458170Y236092D01*

-X458109Y236192D01*

-X458032Y236282D01*

-X457942Y236359D01*

-X457842Y236420D01*

-X457732Y236465D01*

-X457618Y236493D01*

-X457500Y236502D01*

-Y251359D01*

-G37*

-G36*

-Y282359D02*X457573Y282329D01*

-X458002Y282226D01*

-X458437Y282192D01*

-Y256808D01*

-X458002Y256774D01*

-X457573Y256671D01*

-X457500Y256641D01*

-Y261498D01*

-X457618Y261507D01*

-X457732Y261535D01*

-X457842Y261580D01*

-X457942Y261641D01*

-X458032Y261718D01*

-X458109Y261808D01*

-X458170Y261908D01*

-X458215Y262018D01*

-X458243Y262132D01*

-X458250Y262250D01*

-Y265750D01*

-X458243Y265868D01*

-X458215Y265982D01*

-X458170Y266092D01*

-X458109Y266192D01*

-X458032Y266282D01*

-X457942Y266359D01*

-X457842Y266420D01*

-X457732Y266465D01*

-X457618Y266493D01*

-X457500Y266502D01*

-Y282359D01*

-G37*

-G36*

-Y312359D02*X457573Y312329D01*

-X458002Y312226D01*

-X458437Y312192D01*

-Y287808D01*

-X458002Y287774D01*

-X457573Y287671D01*

-X457500Y287641D01*

-Y291498D01*

-X457618Y291507D01*

-X457732Y291535D01*

-X457842Y291580D01*

-X457942Y291641D01*

-X458032Y291718D01*

-X458109Y291808D01*

-X458170Y291908D01*

-X458215Y292018D01*

-X458243Y292132D01*

-X458250Y292250D01*

-Y295750D01*

-X458243Y295868D01*

-X458215Y295982D01*

-X458170Y296092D01*

-X458109Y296192D01*

-X458032Y296282D01*

-X457942Y296359D01*

-X457842Y296420D01*

-X457732Y296465D01*

-X457618Y296493D01*

-X457500Y296502D01*

-Y312359D01*

-G37*

-G36*

-Y342359D02*X457573Y342329D01*

-X458002Y342226D01*

-X458437Y342192D01*

-Y317808D01*

-X458002Y317774D01*

-X457573Y317671D01*

-X457500Y317641D01*

-Y321498D01*

-X457618Y321507D01*

-X457732Y321535D01*

-X457842Y321580D01*

-X457942Y321641D01*

-X458032Y321718D01*

-X458109Y321808D01*

-X458170Y321908D01*

-X458215Y322018D01*

-X458243Y322132D01*

-X458250Y322250D01*

-Y325750D01*

-X458243Y325868D01*

-X458215Y325982D01*

-X458170Y326092D01*

-X458109Y326192D01*

-X458032Y326282D01*

-X457942Y326359D01*

-X457842Y326420D01*

-X457732Y326465D01*

-X457618Y326493D01*

-X457500Y326502D01*

-Y342359D01*

-G37*

-G36*

-Y372359D02*X457573Y372329D01*

-X458002Y372226D01*

-X458437Y372192D01*

-Y347808D01*

-X458002Y347774D01*

-X457573Y347671D01*

-X457500Y347641D01*

-Y351498D01*

-X457618Y351507D01*

-X457732Y351535D01*

-X457842Y351580D01*

-X457942Y351641D01*

-X458032Y351718D01*

-X458109Y351808D01*

-X458170Y351908D01*

-X458215Y352018D01*

-X458243Y352132D01*

-X458250Y352250D01*

-Y355750D01*

-X458243Y355868D01*

-X458215Y355982D01*

-X458170Y356092D01*

-X458109Y356192D01*

-X458032Y356282D01*

-X457942Y356359D01*

-X457842Y356420D01*

-X457732Y356465D01*

-X457618Y356493D01*

-X457500Y356502D01*

-Y372359D01*

-G37*

-G36*

-Y397000D02*X458437D01*

-Y377808D01*

-X458002Y377774D01*

-X457573Y377671D01*

-X457500Y377641D01*

-Y381498D01*

-X457618Y381507D01*

-X457732Y381535D01*

-X457842Y381580D01*

-X457942Y381641D01*

-X458032Y381718D01*

-X458109Y381808D01*

-X458170Y381908D01*

-X458215Y382018D01*

-X458243Y382132D01*

-X458250Y382250D01*

-Y385750D01*

-X458243Y385868D01*

-X458215Y385982D01*

-X458170Y386092D01*

-X458109Y386192D01*

-X458032Y386282D01*

-X457942Y386359D01*

-X457842Y386420D01*

-X457732Y386465D01*

-X457618Y386493D01*

-X457500Y386502D01*

-Y397000D01*

-G37*

-G36*

-X458437Y39000D02*X457500D01*

-Y51498D01*

-X457618Y51507D01*

-X457732Y51535D01*

-X457842Y51580D01*

-X457942Y51641D01*

-X458032Y51718D01*

-X458109Y51808D01*

-X458170Y51908D01*

-X458215Y52018D01*

-X458243Y52132D01*

-X458250Y52250D01*

-Y55750D01*

-X458243Y55868D01*

-X458215Y55982D01*

-X458170Y56092D01*

-X458109Y56192D01*

-X458032Y56282D01*

-X457942Y56359D01*

-X457842Y56420D01*

-X457732Y56465D01*

-X457618Y56493D01*

-X457500Y56502D01*

-Y81498D01*

-X457618Y81507D01*

-X457732Y81535D01*

-X457842Y81580D01*

-X457942Y81641D01*

-X458032Y81718D01*

-X458109Y81808D01*

-X458170Y81908D01*

-X458215Y82018D01*

-X458243Y82132D01*

-X458250Y82250D01*

-Y85750D01*

-X458243Y85868D01*

-X458215Y85982D01*

-X458170Y86092D01*

-X458109Y86192D01*

-X458032Y86282D01*

-X457942Y86359D01*

-X457842Y86420D01*

-X457732Y86465D01*

-X457618Y86493D01*

-X457500Y86502D01*

-Y111498D01*

-X457618Y111507D01*

-X457732Y111535D01*

-X457842Y111580D01*

-X457942Y111641D01*

-X458032Y111718D01*

-X458109Y111808D01*

-X458170Y111908D01*

-X458215Y112018D01*

-X458243Y112132D01*

-X458250Y112250D01*

-Y115750D01*

-X458243Y115868D01*

-X458215Y115982D01*

-X458170Y116092D01*

-X458109Y116192D01*

-X458032Y116282D01*

-X457942Y116359D01*

-X457842Y116420D01*

-X457732Y116465D01*

-X457618Y116493D01*

-X457500Y116502D01*

-Y141498D01*

-X457618Y141507D01*

-X457732Y141535D01*

-X457842Y141580D01*

-X457942Y141641D01*

-X458032Y141718D01*

-X458109Y141808D01*

-X458170Y141908D01*

-X458215Y142018D01*

-X458243Y142132D01*

-X458250Y142250D01*

-Y145750D01*

-X458243Y145868D01*

-X458215Y145982D01*

-X458170Y146092D01*

-X458109Y146192D01*

-X458032Y146282D01*

-X457942Y146359D01*

-X457842Y146420D01*

-X457732Y146465D01*

-X457618Y146493D01*

-X457500Y146502D01*

-Y161359D01*

-X457573Y161329D01*

-X458002Y161226D01*

-X458437Y161192D01*

-Y39000D01*

-G37*

-G36*

-X457500D02*X453500D01*

-Y49250D01*

-X455250D01*

-X455368Y49257D01*

-X455482Y49285D01*

-X455592Y49330D01*

-X455692Y49391D01*

-X455782Y49468D01*

-X455859Y49558D01*

-X455920Y49658D01*

-X455965Y49768D01*

-X455993Y49882D01*

-X456002Y50000D01*

-X455993Y50118D01*

-X455965Y50232D01*

-X455920Y50342D01*

-X455859Y50442D01*

-X455782Y50532D01*

-X455692Y50609D01*

-X455592Y50670D01*

-X455482Y50715D01*

-X455368Y50743D01*

-X455250Y50750D01*

-X453500D01*

-Y57250D01*

-X455250D01*

-X455368Y57257D01*

-X455482Y57285D01*

-X455592Y57330D01*

-X455692Y57391D01*

-X455782Y57468D01*

-X455859Y57558D01*

-X455920Y57658D01*

-X455965Y57768D01*

-X455993Y57882D01*

-X456002Y58000D01*

-X455993Y58118D01*

-X455965Y58232D01*

-X455920Y58342D01*

-X455859Y58442D01*

-X455782Y58532D01*

-X455692Y58609D01*

-X455592Y58670D01*

-X455482Y58715D01*

-X455368Y58743D01*

-X455250Y58750D01*

-X453500D01*

-Y79250D01*

-X455250D01*

-X455368Y79257D01*

-X455482Y79285D01*

-X455592Y79330D01*

-X455692Y79391D01*

-X455782Y79468D01*

-X455859Y79558D01*

-X455920Y79658D01*

-X455965Y79768D01*

-X455993Y79882D01*

-X456002Y80000D01*

-X455993Y80118D01*

-X455965Y80232D01*

-X455920Y80342D01*

-X455859Y80442D01*

-X455782Y80532D01*

-X455692Y80609D01*

-X455592Y80670D01*

-X455482Y80715D01*

-X455368Y80743D01*

-X455250Y80750D01*

-X453500D01*

-Y87250D01*

-X455250D01*

-X455368Y87257D01*

-X455482Y87285D01*

-X455592Y87330D01*

-X455692Y87391D01*

-X455782Y87468D01*

-X455859Y87558D01*

-X455920Y87658D01*

-X455965Y87768D01*

-X455993Y87882D01*

-X456002Y88000D01*

-X455993Y88118D01*

-X455965Y88232D01*

-X455920Y88342D01*

-X455859Y88442D01*

-X455782Y88532D01*

-X455692Y88609D01*

-X455592Y88670D01*

-X455482Y88715D01*

-X455368Y88743D01*

-X455250Y88750D01*

-X453500D01*

-Y109250D01*

-X455250D01*

-X455368Y109257D01*

-X455482Y109285D01*

-X455592Y109330D01*

-X455692Y109391D01*

-X455782Y109468D01*

-X455859Y109558D01*

-X455920Y109658D01*

-X455965Y109768D01*

-X455993Y109882D01*

-X456002Y110000D01*

-X455993Y110118D01*

-X455965Y110232D01*

-X455920Y110342D01*

-X455859Y110442D01*

-X455782Y110532D01*

-X455692Y110609D01*

-X455592Y110670D01*

-X455482Y110715D01*

-X455368Y110743D01*

-X455250Y110750D01*

-X453500D01*

-Y117250D01*

-X455250D01*

-X455368Y117257D01*

-X455482Y117285D01*

-X455592Y117330D01*

-X455692Y117391D01*

-X455782Y117468D01*

-X455859Y117558D01*

-X455920Y117658D01*

-X455965Y117768D01*

-X455993Y117882D01*

-X456002Y118000D01*

-X455993Y118118D01*

-X455965Y118232D01*

-X455920Y118342D01*

-X455859Y118442D01*

-X455782Y118532D01*

-X455692Y118609D01*

-X455592Y118670D01*

-X455482Y118715D01*

-X455368Y118743D01*

-X455250Y118750D01*

-X453500D01*

-Y139250D01*

-X455250D01*

-X455368Y139257D01*

-X455482Y139285D01*

-X455592Y139330D01*

-X455692Y139391D01*

-X455782Y139468D01*

-X455859Y139558D01*

-X455920Y139658D01*

-X455965Y139768D01*

-X455993Y139882D01*

-X456002Y140000D01*

-X455993Y140118D01*

-X455965Y140232D01*

-X455920Y140342D01*

-X455859Y140442D01*

-X455782Y140532D01*

-X455692Y140609D01*

-X455592Y140670D01*

-X455482Y140715D01*

-X455368Y140743D01*

-X455250Y140750D01*

-X453500D01*

-Y147250D01*

-X455250D01*

-X455368Y147257D01*

-X455482Y147285D01*

-X455592Y147330D01*

-X455692Y147391D01*

-X455782Y147468D01*

-X455859Y147558D01*

-X455920Y147658D01*

-X455965Y147768D01*

-X455993Y147882D01*

-X456002Y148000D01*

-X455993Y148118D01*

-X455965Y148232D01*

-X455920Y148342D01*

-X455859Y148442D01*

-X455782Y148532D01*

-X455692Y148609D01*

-X455592Y148670D01*

-X455482Y148715D01*

-X455368Y148743D01*

-X455250Y148750D01*

-X453500D01*

-Y169250D01*

-X455250D01*

-X455368Y169257D01*

-X455482Y169285D01*

-X455592Y169330D01*

-X455692Y169391D01*

-X455782Y169468D01*

-X455859Y169558D01*

-X455920Y169658D01*

-X455965Y169768D01*

-X455993Y169882D01*

-X456002Y170000D01*

-X455993Y170118D01*

-X455965Y170232D01*

-X455920Y170342D01*

-X455859Y170442D01*

-X455782Y170532D01*

-X455692Y170609D01*

-X455592Y170670D01*

-X455482Y170715D01*

-X455368Y170743D01*

-X455250Y170750D01*

-X453500D01*

-Y177250D01*

-X455250D01*

-X455368Y177257D01*

-X455482Y177285D01*

-X455592Y177330D01*

-X455692Y177391D01*

-X455782Y177468D01*

-X455859Y177558D01*

-X455920Y177658D01*

-X455965Y177768D01*

-X455993Y177882D01*

-X456002Y178000D01*

-X455993Y178118D01*

-X455965Y178232D01*

-X455920Y178342D01*

-X455859Y178442D01*

-X455782Y178532D01*

-X455692Y178609D01*

-X455592Y178670D01*

-X455482Y178715D01*

-X455368Y178743D01*

-X455250Y178750D01*

-X453500D01*

-Y199250D01*

-X455250D01*

-X455368Y199257D01*

-X455482Y199285D01*

-X455592Y199330D01*

-X455692Y199391D01*

-X455782Y199468D01*

-X455859Y199558D01*

-X455920Y199658D01*

-X455965Y199768D01*

-X455993Y199882D01*

-X456002Y200000D01*

-X455993Y200118D01*

-X455965Y200232D01*

-X455920Y200342D01*

-X455859Y200442D01*

-X455782Y200532D01*

-X455692Y200609D01*

-X455592Y200670D01*

-X455482Y200715D01*

-X455368Y200743D01*

-X455250Y200750D01*

-X453500D01*

-Y207250D01*

-X455250D01*

-X455368Y207257D01*

-X455482Y207285D01*

-X455592Y207330D01*

-X455692Y207391D01*

-X455782Y207468D01*

-X455859Y207558D01*

-X455920Y207658D01*

-X455965Y207768D01*

-X455993Y207882D01*

-X456002Y208000D01*

-X455993Y208118D01*

-X455965Y208232D01*

-X455920Y208342D01*

-X455859Y208442D01*

-X455782Y208532D01*

-X455692Y208609D01*

-X455592Y208670D01*

-X455482Y208715D01*

-X455368Y208743D01*

-X455250Y208750D01*

-X453500D01*

-Y229250D01*

-X455250D01*

-X455368Y229257D01*

-X455482Y229285D01*

-X455592Y229330D01*

-X455692Y229391D01*

-X455782Y229468D01*

-X455859Y229558D01*

-X455920Y229658D01*

-X455965Y229768D01*

-X455993Y229882D01*

-X456002Y230000D01*

-X455993Y230118D01*

-X455965Y230232D01*

-X455920Y230342D01*

-X455859Y230442D01*

-X455782Y230532D01*

-X455692Y230609D01*

-X455592Y230670D01*

-X455482Y230715D01*

-X455368Y230743D01*

-X455250Y230750D01*

-X453500D01*

-Y237250D01*

-X455250D01*

-X455368Y237257D01*

-X455482Y237285D01*

-X455592Y237330D01*

-X455692Y237391D01*

-X455782Y237468D01*

-X455859Y237558D01*

-X455920Y237658D01*

-X455965Y237768D01*

-X455993Y237882D01*

-X456002Y238000D01*

-X455993Y238118D01*

-X455965Y238232D01*

-X455920Y238342D01*

-X455859Y238442D01*

-X455782Y238532D01*

-X455692Y238609D01*

-X455592Y238670D01*

-X455482Y238715D01*

-X455368Y238743D01*

-X455250Y238750D01*

-X453500D01*

-Y259250D01*

-X455250D01*

-X455368Y259257D01*

-X455482Y259285D01*

-X455592Y259330D01*

-X455692Y259391D01*

-X455782Y259468D01*

-X455859Y259558D01*

-X455920Y259658D01*

-X455965Y259768D01*

-X455993Y259882D01*

-X456002Y260000D01*

-X455993Y260118D01*

-X455965Y260232D01*

-X455920Y260342D01*

-X455859Y260442D01*

-X455782Y260532D01*

-X455692Y260609D01*

-X455592Y260670D01*

-X455482Y260715D01*

-X455368Y260743D01*

-X455250Y260750D01*

-X453500D01*

-Y267250D01*

-X455250D01*

-X455368Y267257D01*

-X455482Y267285D01*

-X455592Y267330D01*

-X455692Y267391D01*

-X455782Y267468D01*

-X455859Y267558D01*

-X455920Y267658D01*

-X455965Y267768D01*

-X455993Y267882D01*

-X456002Y268000D01*

-X455993Y268118D01*

-X455965Y268232D01*

-X455920Y268342D01*

-X455859Y268442D01*

-X455782Y268532D01*

-X455692Y268609D01*

-X455592Y268670D01*

-X455482Y268715D01*

-X455368Y268743D01*

-X455250Y268750D01*

-X453500D01*

-Y289250D01*

-X455250D01*

-X455368Y289257D01*

-X455482Y289285D01*

-X455592Y289330D01*

-X455692Y289391D01*

-X455782Y289468D01*

-X455859Y289558D01*

-X455920Y289658D01*

-X455965Y289768D01*

-X455993Y289882D01*

-X456002Y290000D01*

-X455993Y290118D01*

-X455965Y290232D01*

-X455920Y290342D01*

-X455859Y290442D01*

-X455782Y290532D01*

-X455692Y290609D01*

-X455592Y290670D01*

-X455482Y290715D01*

-X455368Y290743D01*

-X455250Y290750D01*

-X453500D01*

-Y297250D01*

-X455250D01*

-X455368Y297257D01*

-X455482Y297285D01*

-X455592Y297330D01*

-X455692Y297391D01*

-X455782Y297468D01*

-X455859Y297558D01*

-X455920Y297658D01*

-X455965Y297768D01*

-X455993Y297882D01*

-X456002Y298000D01*

-X455993Y298118D01*

-X455965Y298232D01*

-X455920Y298342D01*

-X455859Y298442D01*

-X455782Y298532D01*

-X455692Y298609D01*

-X455592Y298670D01*

-X455482Y298715D01*

-X455368Y298743D01*

-X455250Y298750D01*

-X453500D01*

-Y319250D01*

-X455250D01*

-X455368Y319257D01*

-X455482Y319285D01*

-X455592Y319330D01*

-X455692Y319391D01*

-X455782Y319468D01*

-X455859Y319558D01*

-X455920Y319658D01*

-X455965Y319768D01*

-X455993Y319882D01*

-X456002Y320000D01*

-X455993Y320118D01*

-X455965Y320232D01*

-X455920Y320342D01*

-X455859Y320442D01*

-X455782Y320532D01*

-X455692Y320609D01*

-X455592Y320670D01*

-X455482Y320715D01*

-X455368Y320743D01*

-X455250Y320750D01*

-X453500D01*

-Y327250D01*

-X455250D01*

-X455368Y327257D01*

-X455482Y327285D01*

-X455592Y327330D01*

-X455692Y327391D01*

-X455782Y327468D01*

-X455859Y327558D01*

-X455920Y327658D01*

-X455965Y327768D01*

-X455993Y327882D01*

-X456002Y328000D01*

-X455993Y328118D01*

-X455965Y328232D01*

-X455920Y328342D01*

-X455859Y328442D01*

-X455782Y328532D01*

-X455692Y328609D01*

-X455592Y328670D01*

-X455482Y328715D01*

-X455368Y328743D01*

-X455250Y328750D01*

-X453500D01*

-Y349250D01*

-X455250D01*

-X455368Y349257D01*

-X455482Y349285D01*

-X455592Y349330D01*

-X455692Y349391D01*

-X455782Y349468D01*

-X455859Y349558D01*

-X455920Y349658D01*

-X455965Y349768D01*

-X455993Y349882D01*

-X456002Y350000D01*

-X455993Y350118D01*

-X455965Y350232D01*

-X455920Y350342D01*

-X455859Y350442D01*

-X455782Y350532D01*

-X455692Y350609D01*

-X455592Y350670D01*

-X455482Y350715D01*

-X455368Y350743D01*

-X455250Y350750D01*

-X453500D01*

-Y357250D01*

-X455250D01*

-X455368Y357257D01*

-X455482Y357285D01*

-X455592Y357330D01*

-X455692Y357391D01*

-X455782Y357468D01*

-X455859Y357558D01*

-X455920Y357658D01*

-X455965Y357768D01*

-X455993Y357882D01*

-X456002Y358000D01*

-X455993Y358118D01*

-X455965Y358232D01*

-X455920Y358342D01*

-X455859Y358442D01*

-X455782Y358532D01*

-X455692Y358609D01*

-X455592Y358670D01*

-X455482Y358715D01*

-X455368Y358743D01*

-X455250Y358750D01*

-X453500D01*

-Y379250D01*

-X455250D01*

-X455368Y379257D01*

-X455482Y379285D01*

-X455592Y379330D01*

-X455692Y379391D01*

-X455782Y379468D01*

-X455859Y379558D01*

-X455920Y379658D01*

-X455965Y379768D01*

-X455993Y379882D01*

-X456002Y380000D01*

-X455993Y380118D01*

-X455965Y380232D01*

-X455920Y380342D01*

-X455859Y380442D01*

-X455782Y380532D01*

-X455692Y380609D01*

-X455592Y380670D01*

-X455482Y380715D01*

-X455368Y380743D01*

-X455250Y380750D01*

-X453500D01*

-Y387250D01*

-X455250D01*

-X455368Y387257D01*

-X455482Y387285D01*

-X455592Y387330D01*

-X455692Y387391D01*

-X455782Y387468D01*

-X455859Y387558D01*

-X455920Y387658D01*

-X455965Y387768D01*

-X455993Y387882D01*

-X456002Y388000D01*

-X455993Y388118D01*

-X455965Y388232D01*

-X455920Y388342D01*

-X455859Y388442D01*

-X455782Y388532D01*

-X455692Y388609D01*

-X455592Y388670D01*

-X455482Y388715D01*

-X455368Y388743D01*

-X455250Y388750D01*

-X453500D01*

-Y397000D01*

-X457500D01*

-Y386502D01*

-X457382Y386493D01*

-X457268Y386465D01*

-X457158Y386420D01*

-X457058Y386359D01*

-X456968Y386282D01*

-X456891Y386192D01*

-X456830Y386092D01*

-X456785Y385982D01*

-X456757Y385868D01*

-X456750Y385750D01*

-Y382250D01*

-X456757Y382132D01*

-X456785Y382018D01*

-X456830Y381908D01*

-X456891Y381808D01*

-X456968Y381718D01*

-X457058Y381641D01*

-X457158Y381580D01*

-X457268Y381535D01*

-X457382Y381507D01*

-X457500Y381498D01*

-Y377641D01*

-X457166Y377503D01*

-X456790Y377272D01*

-X456455Y376986D01*

-X456169Y376651D01*

-X455938Y376275D01*

-X455770Y375868D01*

-X455667Y375439D01*

-X455632Y375000D01*

-X455667Y374561D01*

-X455770Y374132D01*

-X455938Y373725D01*

-X456169Y373349D01*

-X456455Y373014D01*

-X456790Y372728D01*

-X457166Y372497D01*

-X457500Y372359D01*

-Y356502D01*

-X457382Y356493D01*

-X457268Y356465D01*

-X457158Y356420D01*

-X457058Y356359D01*

-X456968Y356282D01*

-X456891Y356192D01*

-X456830Y356092D01*

-X456785Y355982D01*

-X456757Y355868D01*

-X456750Y355750D01*

-Y352250D01*

-X456757Y352132D01*

-X456785Y352018D01*

-X456830Y351908D01*

-X456891Y351808D01*

-X456968Y351718D01*

-X457058Y351641D01*

-X457158Y351580D01*

-X457268Y351535D01*

-X457382Y351507D01*

-X457500Y351498D01*

-Y347641D01*

-X457166Y347503D01*

-X456790Y347272D01*

-X456455Y346986D01*

-X456169Y346651D01*

-X455938Y346275D01*

-X455770Y345868D01*

-X455667Y345439D01*

-X455632Y345000D01*

-X455667Y344561D01*

-X455770Y344132D01*

-X455938Y343725D01*

-X456169Y343349D01*

-X456455Y343014D01*

-X456790Y342728D01*

-X457166Y342497D01*

-X457500Y342359D01*

-Y326502D01*

-X457382Y326493D01*

-X457268Y326465D01*

-X457158Y326420D01*

-X457058Y326359D01*

-X456968Y326282D01*

-X456891Y326192D01*

-X456830Y326092D01*

-X456785Y325982D01*

-X456757Y325868D01*

-X456750Y325750D01*

-Y322250D01*

-X456757Y322132D01*

-X456785Y322018D01*

-X456830Y321908D01*

-X456891Y321808D01*

-X456968Y321718D01*

-X457058Y321641D01*

-X457158Y321580D01*

-X457268Y321535D01*

-X457382Y321507D01*

-X457500Y321498D01*

-Y317641D01*

-X457166Y317503D01*

-X456790Y317272D01*

-X456455Y316986D01*

-X456169Y316651D01*

-X455938Y316275D01*

-X455770Y315868D01*

-X455667Y315439D01*

-X455632Y315000D01*

-X455667Y314561D01*

-X455770Y314132D01*

-X455938Y313725D01*

-X456169Y313349D01*

-X456455Y313014D01*

-X456790Y312728D01*

-X457166Y312497D01*

-X457500Y312359D01*

-Y296502D01*

-X457382Y296493D01*

-X457268Y296465D01*

-X457158Y296420D01*

-X457058Y296359D01*

-X456968Y296282D01*

-X456891Y296192D01*

-X456830Y296092D01*

-X456785Y295982D01*

-X456757Y295868D01*

-X456750Y295750D01*

-Y292250D01*

-X456757Y292132D01*

-X456785Y292018D01*

-X456830Y291908D01*

-X456891Y291808D01*

-X456968Y291718D01*

-X457058Y291641D01*

-X457158Y291580D01*

-X457268Y291535D01*

-X457382Y291507D01*

-X457500Y291498D01*

-Y287641D01*

-X457166Y287503D01*

-X456790Y287272D01*

-X456455Y286986D01*

-X456169Y286651D01*

-X455938Y286275D01*

-X455770Y285868D01*

-X455667Y285439D01*

-X455632Y285000D01*

-X455667Y284561D01*

-X455770Y284132D01*

-X455938Y283725D01*

-X456169Y283349D01*

-X456455Y283014D01*

-X456790Y282728D01*

-X457166Y282497D01*

-X457500Y282359D01*

-Y266502D01*

-X457382Y266493D01*

-X457268Y266465D01*

-X457158Y266420D01*

-X457058Y266359D01*

-X456968Y266282D01*

-X456891Y266192D01*

-X456830Y266092D01*

-X456785Y265982D01*

-X456757Y265868D01*

-X456750Y265750D01*

-Y262250D01*

-X456757Y262132D01*

-X456785Y262018D01*

-X456830Y261908D01*

-X456891Y261808D01*

-X456968Y261718D01*

-X457058Y261641D01*

-X457158Y261580D01*

-X457268Y261535D01*

-X457382Y261507D01*

-X457500Y261498D01*

-Y256641D01*

-X457166Y256503D01*

-X456790Y256272D01*

-X456455Y255986D01*

-X456169Y255651D01*

-X455938Y255275D01*

-X455770Y254868D01*

-X455667Y254439D01*

-X455632Y254000D01*

-X455667Y253561D01*

-X455770Y253132D01*

-X455938Y252725D01*

-X456169Y252349D01*

-X456455Y252014D01*

-X456790Y251728D01*

-X457166Y251497D01*

-X457500Y251359D01*

-Y236502D01*

-X457382Y236493D01*

-X457268Y236465D01*

-X457158Y236420D01*

-X457058Y236359D01*

-X456968Y236282D01*

-X456891Y236192D01*

-X456830Y236092D01*

-X456785Y235982D01*

-X456757Y235868D01*

-X456750Y235750D01*

-Y232250D01*

-X456757Y232132D01*

-X456785Y232018D01*

-X456830Y231908D01*

-X456891Y231808D01*

-X456968Y231718D01*

-X457058Y231641D01*

-X457158Y231580D01*

-X457268Y231535D01*

-X457382Y231507D01*

-X457500Y231498D01*

-Y227641D01*

-X457166Y227503D01*

-X456790Y227272D01*

-X456455Y226986D01*

-X456169Y226651D01*

-X455938Y226275D01*

-X455770Y225868D01*

-X455667Y225439D01*

-X455632Y225000D01*

-X455667Y224561D01*

-X455770Y224132D01*

-X455938Y223725D01*

-X456169Y223349D01*

-X456455Y223014D01*

-X456790Y222728D01*

-X457166Y222497D01*

-X457500Y222359D01*

-Y206502D01*

-X457382Y206493D01*

-X457268Y206465D01*

-X457158Y206420D01*

-X457058Y206359D01*

-X456968Y206282D01*

-X456891Y206192D01*

-X456830Y206092D01*

-X456785Y205982D01*

-X456757Y205868D01*

-X456750Y205750D01*

-Y202250D01*

-X456757Y202132D01*

-X456785Y202018D01*

-X456830Y201908D01*

-X456891Y201808D01*

-X456968Y201718D01*

-X457058Y201641D01*

-X457158Y201580D01*

-X457268Y201535D01*

-X457382Y201507D01*

-X457500Y201498D01*

-Y197641D01*

-X457166Y197503D01*

-X456790Y197272D01*

-X456455Y196986D01*

-X456169Y196651D01*

-X455938Y196275D01*

-X455770Y195868D01*

-X455667Y195439D01*

-X455632Y195000D01*

-X455667Y194561D01*

-X455770Y194132D01*

-X455938Y193725D01*

-X456169Y193349D01*

-X456455Y193014D01*

-X456790Y192728D01*

-X457166Y192497D01*

-X457500Y192359D01*

-Y176502D01*

-X457382Y176493D01*

-X457268Y176465D01*

-X457158Y176420D01*

-X457058Y176359D01*

-X456968Y176282D01*

-X456891Y176192D01*

-X456830Y176092D01*

-X456785Y175982D01*

-X456757Y175868D01*

-X456750Y175750D01*

-Y172250D01*

-X456757Y172132D01*

-X456785Y172018D01*

-X456830Y171908D01*

-X456891Y171808D01*

-X456968Y171718D01*

-X457058Y171641D01*

-X457158Y171580D01*

-X457268Y171535D01*

-X457382Y171507D01*

-X457500Y171498D01*

-Y166641D01*

-X457166Y166503D01*

-X456790Y166272D01*

-X456455Y165986D01*

-X456169Y165651D01*

-X455938Y165275D01*

-X455770Y164868D01*

-X455667Y164439D01*

-X455632Y164000D01*

-X455667Y163561D01*

-X455770Y163132D01*

-X455938Y162725D01*

-X456169Y162349D01*

-X456455Y162014D01*

-X456790Y161728D01*

-X457166Y161497D01*

-X457500Y161359D01*

-Y146502D01*

-X457382Y146493D01*

-X457268Y146465D01*

-X457158Y146420D01*

-X457058Y146359D01*

-X456968Y146282D01*

-X456891Y146192D01*

-X456830Y146092D01*

-X456785Y145982D01*

-X456757Y145868D01*

-X456750Y145750D01*

-Y142250D01*

-X456757Y142132D01*

-X456785Y142018D01*

-X456830Y141908D01*

-X456891Y141808D01*

-X456968Y141718D01*

-X457058Y141641D01*

-X457158Y141580D01*

-X457268Y141535D01*

-X457382Y141507D01*

-X457500Y141498D01*

-Y116502D01*

-X457382Y116493D01*

-X457268Y116465D01*

-X457158Y116420D01*

-X457058Y116359D01*

-X456968Y116282D01*

-X456891Y116192D01*

-X456830Y116092D01*

-X456785Y115982D01*

-X456757Y115868D01*

-X456750Y115750D01*

-Y112250D01*

-X456757Y112132D01*

-X456785Y112018D01*

-X456830Y111908D01*

-X456891Y111808D01*

-X456968Y111718D01*

-X457058Y111641D01*

-X457158Y111580D01*

-X457268Y111535D01*

-X457382Y111507D01*

-X457500Y111498D01*

-Y86502D01*

-X457382Y86493D01*

-X457268Y86465D01*

-X457158Y86420D01*

-X457058Y86359D01*

-X456968Y86282D01*

-X456891Y86192D01*

-X456830Y86092D01*

-X456785Y85982D01*

-X456757Y85868D01*

-X456750Y85750D01*

-Y82250D01*

-X456757Y82132D01*

-X456785Y82018D01*

-X456830Y81908D01*

-X456891Y81808D01*

-X456968Y81718D01*

-X457058Y81641D01*

-X457158Y81580D01*

-X457268Y81535D01*

-X457382Y81507D01*

-X457500Y81498D01*

-Y56502D01*

-X457382Y56493D01*

-X457268Y56465D01*

-X457158Y56420D01*

-X457058Y56359D01*

-X456968Y56282D01*

-X456891Y56192D01*

-X456830Y56092D01*

-X456785Y55982D01*

-X456757Y55868D01*

-X456750Y55750D01*

-Y52250D01*

-X456757Y52132D01*

-X456785Y52018D01*

-X456830Y51908D01*

-X456891Y51808D01*

-X456968Y51718D01*

-X457058Y51641D01*

-X457158Y51580D01*

-X457268Y51535D01*

-X457382Y51507D01*

-X457500Y51498D01*

-Y39000D01*

-G37*

-G36*

-X453500D02*X449500D01*

-Y51498D01*

-X449618Y51507D01*

-X449732Y51535D01*

-X449842Y51580D01*

-X449942Y51641D01*

-X450032Y51718D01*

-X450109Y51808D01*

-X450170Y51908D01*

-X450215Y52018D01*

-X450243Y52132D01*

-X450250Y52250D01*

-Y55750D01*

-X450243Y55868D01*

-X450215Y55982D01*

-X450170Y56092D01*

-X450109Y56192D01*

-X450032Y56282D01*

-X449942Y56359D01*

-X449842Y56420D01*

-X449732Y56465D01*

-X449618Y56493D01*

-X449500Y56502D01*

-Y81498D01*

-X449618Y81507D01*

-X449732Y81535D01*

-X449842Y81580D01*

-X449942Y81641D01*

-X450032Y81718D01*

-X450109Y81808D01*

-X450170Y81908D01*

-X450215Y82018D01*

-X450243Y82132D01*

-X450250Y82250D01*

-Y85750D01*

-X450243Y85868D01*

-X450215Y85982D01*

-X450170Y86092D01*

-X450109Y86192D01*

-X450032Y86282D01*

-X449942Y86359D01*

-X449842Y86420D01*

-X449732Y86465D01*

-X449618Y86493D01*

-X449500Y86502D01*

-Y111498D01*

-X449618Y111507D01*

-X449732Y111535D01*

-X449842Y111580D01*

-X449942Y111641D01*

-X450032Y111718D01*

-X450109Y111808D01*

-X450170Y111908D01*

-X450215Y112018D01*

-X450243Y112132D01*

-X450250Y112250D01*

-Y115750D01*

-X450243Y115868D01*

-X450215Y115982D01*

-X450170Y116092D01*

-X450109Y116192D01*

-X450032Y116282D01*

-X449942Y116359D01*

-X449842Y116420D01*

-X449732Y116465D01*

-X449618Y116493D01*

-X449500Y116502D01*

-Y141498D01*

-X449618Y141507D01*

-X449732Y141535D01*

-X449842Y141580D01*

-X449942Y141641D01*

-X450032Y141718D01*

-X450109Y141808D01*

-X450170Y141908D01*

-X450215Y142018D01*

-X450243Y142132D01*

-X450250Y142250D01*

-Y145750D01*

-X450243Y145868D01*

-X450215Y145982D01*

-X450170Y146092D01*

-X450109Y146192D01*

-X450032Y146282D01*

-X449942Y146359D01*

-X449842Y146420D01*

-X449732Y146465D01*

-X449618Y146493D01*

-X449500Y146502D01*

-Y171498D01*

-X449618Y171507D01*

-X449732Y171535D01*

-X449842Y171580D01*

-X449942Y171641D01*

-X450032Y171718D01*

-X450109Y171808D01*

-X450170Y171908D01*

-X450215Y172018D01*

-X450243Y172132D01*

-X450250Y172250D01*

-Y175750D01*

-X450243Y175868D01*

-X450215Y175982D01*

-X450170Y176092D01*

-X450109Y176192D01*

-X450032Y176282D01*

-X449942Y176359D01*

-X449842Y176420D01*

-X449732Y176465D01*

-X449618Y176493D01*

-X449500Y176502D01*

-Y201498D01*

-X449618Y201507D01*

-X449732Y201535D01*

-X449842Y201580D01*

-X449942Y201641D01*

-X450032Y201718D01*

-X450109Y201808D01*

-X450170Y201908D01*

-X450215Y202018D01*

-X450243Y202132D01*

-X450250Y202250D01*

-Y205750D01*

-X450243Y205868D01*

-X450215Y205982D01*

-X450170Y206092D01*

-X450109Y206192D01*

-X450032Y206282D01*

-X449942Y206359D01*

-X449842Y206420D01*

-X449732Y206465D01*

-X449618Y206493D01*

-X449500Y206502D01*

-Y231498D01*

-X449618Y231507D01*

-X449732Y231535D01*

-X449842Y231580D01*

-X449942Y231641D01*

-X450032Y231718D01*

-X450109Y231808D01*

-X450170Y231908D01*

-X450215Y232018D01*

-X450243Y232132D01*

-X450250Y232250D01*

-Y235750D01*

-X450243Y235868D01*

-X450215Y235982D01*

-X450170Y236092D01*

-X450109Y236192D01*

-X450032Y236282D01*

-X449942Y236359D01*

-X449842Y236420D01*

-X449732Y236465D01*

-X449618Y236493D01*

-X449500Y236502D01*

-Y261498D01*

-X449618Y261507D01*

-X449732Y261535D01*

-X449842Y261580D01*

-X449942Y261641D01*

-X450032Y261718D01*

-X450109Y261808D01*

-X450170Y261908D01*

-X450215Y262018D01*

-X450243Y262132D01*

-X450250Y262250D01*

-Y265750D01*

-X450243Y265868D01*

-X450215Y265982D01*

-X450170Y266092D01*

-X450109Y266192D01*

-X450032Y266282D01*

-X449942Y266359D01*

-X449842Y266420D01*

-X449732Y266465D01*

-X449618Y266493D01*

-X449500Y266502D01*

-Y291498D01*

-X449618Y291507D01*

-X449732Y291535D01*

-X449842Y291580D01*

-X449942Y291641D01*

-X450032Y291718D01*

-X450109Y291808D01*

-X450170Y291908D01*

-X450215Y292018D01*

-X450243Y292132D01*

-X450250Y292250D01*

-Y295750D01*

-X450243Y295868D01*

-X450215Y295982D01*

-X450170Y296092D01*

-X450109Y296192D01*

-X450032Y296282D01*

-X449942Y296359D01*

-X449842Y296420D01*

-X449732Y296465D01*

-X449618Y296493D01*

-X449500Y296502D01*

-Y321498D01*

-X449618Y321507D01*

-X449732Y321535D01*

-X449842Y321580D01*

-X449942Y321641D01*

-X450032Y321718D01*

-X450109Y321808D01*

-X450170Y321908D01*

-X450215Y322018D01*

-X450243Y322132D01*

-X450250Y322250D01*

-Y325750D01*

-X450243Y325868D01*

-X450215Y325982D01*

-X450170Y326092D01*

-X450109Y326192D01*

-X450032Y326282D01*

-X449942Y326359D01*

-X449842Y326420D01*

-X449732Y326465D01*

-X449618Y326493D01*

-X449500Y326502D01*

-Y351498D01*

-X449618Y351507D01*

-X449732Y351535D01*

-X449842Y351580D01*

-X449942Y351641D01*

-X450032Y351718D01*

-X450109Y351808D01*

-X450170Y351908D01*

-X450215Y352018D01*

-X450243Y352132D01*

-X450250Y352250D01*

-Y355750D01*

-X450243Y355868D01*

-X450215Y355982D01*

-X450170Y356092D01*

-X450109Y356192D01*

-X450032Y356282D01*

-X449942Y356359D01*

-X449842Y356420D01*

-X449732Y356465D01*

-X449618Y356493D01*

-X449500Y356502D01*

-Y381498D01*

-X449618Y381507D01*

-X449732Y381535D01*

-X449842Y381580D01*

-X449942Y381641D01*

-X450032Y381718D01*

-X450109Y381808D01*

-X450170Y381908D01*

-X450215Y382018D01*

-X450243Y382132D01*

-X450250Y382250D01*

-Y385750D01*

-X450243Y385868D01*

-X450215Y385982D01*

-X450170Y386092D01*

-X450109Y386192D01*

-X450032Y386282D01*

-X449942Y386359D01*

-X449842Y386420D01*

-X449732Y386465D01*

-X449618Y386493D01*

-X449500Y386502D01*

-Y397000D01*

-X453500D01*

-Y388750D01*

-X451750D01*

-X451632Y388743D01*

-X451518Y388715D01*

-X451408Y388670D01*

-X451308Y388609D01*

-X451218Y388532D01*

-X451141Y388442D01*

-X451080Y388342D01*

-X451035Y388232D01*

-X451007Y388118D01*

-X450998Y388000D01*

-X451007Y387882D01*

-X451035Y387768D01*

-X451080Y387658D01*

-X451141Y387558D01*

-X451218Y387468D01*

-X451308Y387391D01*

-X451408Y387330D01*

-X451518Y387285D01*

-X451632Y387257D01*

-X451750Y387250D01*

-X453500D01*

-Y380750D01*

-X451750D01*

-X451632Y380743D01*

-X451518Y380715D01*

-X451408Y380670D01*

-X451308Y380609D01*

-X451218Y380532D01*

-X451141Y380442D01*

-X451080Y380342D01*

-X451035Y380232D01*

-X451007Y380118D01*

-X450998Y380000D01*

-X451007Y379882D01*

-X451035Y379768D01*

-X451080Y379658D01*

-X451141Y379558D01*

-X451218Y379468D01*

-X451308Y379391D01*

-X451408Y379330D01*

-X451518Y379285D01*

-X451632Y379257D01*

-X451750Y379250D01*

-X453500D01*

-Y358750D01*

-X451750D01*

-X451632Y358743D01*

-X451518Y358715D01*

-X451408Y358670D01*

-X451308Y358609D01*

-X451218Y358532D01*

-X451141Y358442D01*

-X451080Y358342D01*

-X451035Y358232D01*

-X451007Y358118D01*

-X450998Y358000D01*

-X451007Y357882D01*

-X451035Y357768D01*

-X451080Y357658D01*

-X451141Y357558D01*

-X451218Y357468D01*

-X451308Y357391D01*

-X451408Y357330D01*

-X451518Y357285D01*

-X451632Y357257D01*

-X451750Y357250D01*

-X453500D01*

-Y350750D01*

-X451750D01*

-X451632Y350743D01*

-X451518Y350715D01*

-X451408Y350670D01*

-X451308Y350609D01*

-X451218Y350532D01*

-X451141Y350442D01*

-X451080Y350342D01*

-X451035Y350232D01*

-X451007Y350118D01*

-X450998Y350000D01*

-X451007Y349882D01*

-X451035Y349768D01*

-X451080Y349658D01*

-X451141Y349558D01*

-X451218Y349468D01*

-X451308Y349391D01*

-X451408Y349330D01*

-X451518Y349285D01*

-X451632Y349257D01*

-X451750Y349250D01*

-X453500D01*

-Y328750D01*

-X451750D01*

-X451632Y328743D01*

-X451518Y328715D01*

-X451408Y328670D01*

-X451308Y328609D01*

-X451218Y328532D01*

-X451141Y328442D01*

-X451080Y328342D01*

-X451035Y328232D01*

-X451007Y328118D01*

-X450998Y328000D01*

-X451007Y327882D01*

-X451035Y327768D01*

-X451080Y327658D01*

-X451141Y327558D01*

-X451218Y327468D01*

-X451308Y327391D01*

-X451408Y327330D01*

-X451518Y327285D01*

-X451632Y327257D01*

-X451750Y327250D01*

-X453500D01*

-Y320750D01*

-X451750D01*

-X451632Y320743D01*

-X451518Y320715D01*

-X451408Y320670D01*

-X451308Y320609D01*

-X451218Y320532D01*

-X451141Y320442D01*

-X451080Y320342D01*

-X451035Y320232D01*

-X451007Y320118D01*

-X450998Y320000D01*

-X451007Y319882D01*

-X451035Y319768D01*

-X451080Y319658D01*

-X451141Y319558D01*

-X451218Y319468D01*

-X451308Y319391D01*

-X451408Y319330D01*

-X451518Y319285D01*

-X451632Y319257D01*

-X451750Y319250D01*

-X453500D01*

-Y298750D01*

-X451750D01*

-X451632Y298743D01*

-X451518Y298715D01*

-X451408Y298670D01*

-X451308Y298609D01*

-X451218Y298532D01*

-X451141Y298442D01*

-X451080Y298342D01*

-X451035Y298232D01*

-X451007Y298118D01*

-X450998Y298000D01*

-X451007Y297882D01*

-X451035Y297768D01*

-X451080Y297658D01*

-X451141Y297558D01*

-X451218Y297468D01*

-X451308Y297391D01*

-X451408Y297330D01*

-X451518Y297285D01*

-X451632Y297257D01*

-X451750Y297250D01*

-X453500D01*

-Y290750D01*

-X451750D01*

-X451632Y290743D01*

-X451518Y290715D01*

-X451408Y290670D01*

-X451308Y290609D01*

-X451218Y290532D01*

-X451141Y290442D01*

-X451080Y290342D01*

-X451035Y290232D01*

-X451007Y290118D01*

-X450998Y290000D01*

-X451007Y289882D01*

-X451035Y289768D01*

-X451080Y289658D01*

-X451141Y289558D01*

-X451218Y289468D01*

-X451308Y289391D01*

-X451408Y289330D01*

-X451518Y289285D01*

-X451632Y289257D01*

-X451750Y289250D01*

-X453500D01*

-Y268750D01*

-X451750D01*

-X451632Y268743D01*

-X451518Y268715D01*

-X451408Y268670D01*

-X451308Y268609D01*

-X451218Y268532D01*

-X451141Y268442D01*

-X451080Y268342D01*

-X451035Y268232D01*

-X451007Y268118D01*

-X450998Y268000D01*

-X451007Y267882D01*

-X451035Y267768D01*

-X451080Y267658D01*

-X451141Y267558D01*

-X451218Y267468D01*

-X451308Y267391D01*

-X451408Y267330D01*

-X451518Y267285D01*

-X451632Y267257D01*

-X451750Y267250D01*

-X453500D01*

-Y260750D01*

-X451750D01*

-X451632Y260743D01*

-X451518Y260715D01*

-X451408Y260670D01*

-X451308Y260609D01*

-X451218Y260532D01*

-X451141Y260442D01*

-X451080Y260342D01*

-X451035Y260232D01*

-X451007Y260118D01*

-X450998Y260000D01*

-X451007Y259882D01*

-X451035Y259768D01*

-X451080Y259658D01*

-X451141Y259558D01*

-X451218Y259468D01*

-X451308Y259391D01*

-X451408Y259330D01*

-X451518Y259285D01*

-X451632Y259257D01*

-X451750Y259250D01*

-X453500D01*

-Y238750D01*

-X451750D01*

-X451632Y238743D01*

-X451518Y238715D01*

-X451408Y238670D01*

-X451308Y238609D01*

-X451218Y238532D01*

-X451141Y238442D01*

-X451080Y238342D01*

-X451035Y238232D01*

-X451007Y238118D01*

-X450998Y238000D01*

-X451007Y237882D01*

-X451035Y237768D01*

-X451080Y237658D01*

-X451141Y237558D01*

-X451218Y237468D01*

-X451308Y237391D01*

-X451408Y237330D01*

-X451518Y237285D01*

-X451632Y237257D01*

-X451750Y237250D01*

-X453500D01*

-Y230750D01*

-X451750D01*

-X451632Y230743D01*

-X451518Y230715D01*

-X451408Y230670D01*

-X451308Y230609D01*

-X451218Y230532D01*

-X451141Y230442D01*

-X451080Y230342D01*

-X451035Y230232D01*

-X451007Y230118D01*

-X450998Y230000D01*

-X451007Y229882D01*

-X451035Y229768D01*

-X451080Y229658D01*

-X451141Y229558D01*

-X451218Y229468D01*

-X451308Y229391D01*

-X451408Y229330D01*

-X451518Y229285D01*

-X451632Y229257D01*

-X451750Y229250D01*

-X453500D01*

-Y208750D01*

-X451750D01*

-X451632Y208743D01*

-X451518Y208715D01*

-X451408Y208670D01*

-X451308Y208609D01*

-X451218Y208532D01*

-X451141Y208442D01*

-X451080Y208342D01*

-X451035Y208232D01*

-X451007Y208118D01*

-X450998Y208000D01*

-X451007Y207882D01*

-X451035Y207768D01*

-X451080Y207658D01*

-X451141Y207558D01*

-X451218Y207468D01*

-X451308Y207391D01*

-X451408Y207330D01*

-X451518Y207285D01*

-X451632Y207257D01*

-X451750Y207250D01*

-X453500D01*

-Y200750D01*

-X451750D01*

-X451632Y200743D01*

-X451518Y200715D01*

-X451408Y200670D01*

-X451308Y200609D01*

-X451218Y200532D01*

-X451141Y200442D01*

-X451080Y200342D01*

-X451035Y200232D01*

-X451007Y200118D01*

-X450998Y200000D01*

-X451007Y199882D01*

-X451035Y199768D01*

-X451080Y199658D01*

-X451141Y199558D01*

-X451218Y199468D01*

-X451308Y199391D01*

-X451408Y199330D01*

-X451518Y199285D01*

-X451632Y199257D01*

-X451750Y199250D01*

-X453500D01*

-Y178750D01*

-X451750D01*

-X451632Y178743D01*

-X451518Y178715D01*

-X451408Y178670D01*

-X451308Y178609D01*

-X451218Y178532D01*

-X451141Y178442D01*

-X451080Y178342D01*

-X451035Y178232D01*

-X451007Y178118D01*

-X450998Y178000D01*

-X451007Y177882D01*

-X451035Y177768D01*

-X451080Y177658D01*

-X451141Y177558D01*

-X451218Y177468D01*

-X451308Y177391D01*

-X451408Y177330D01*

-X451518Y177285D01*

-X451632Y177257D01*

-X451750Y177250D01*

-X453500D01*

-Y170750D01*

-X451750D01*

-X451632Y170743D01*

-X451518Y170715D01*

-X451408Y170670D01*

-X451308Y170609D01*

-X451218Y170532D01*

-X451141Y170442D01*

-X451080Y170342D01*

-X451035Y170232D01*

-X451007Y170118D01*

-X450998Y170000D01*

-X451007Y169882D01*

-X451035Y169768D01*

-X451080Y169658D01*

-X451141Y169558D01*

-X451218Y169468D01*

-X451308Y169391D01*

-X451408Y169330D01*

-X451518Y169285D01*

-X451632Y169257D01*

-X451750Y169250D01*

-X453500D01*

-Y148750D01*

-X451750D01*

-X451632Y148743D01*

-X451518Y148715D01*

-X451408Y148670D01*

-X451308Y148609D01*

-X451218Y148532D01*

-X451141Y148442D01*

-X451080Y148342D01*

-X451035Y148232D01*

-X451007Y148118D01*

-X450998Y148000D01*

-X451007Y147882D01*

-X451035Y147768D01*

-X451080Y147658D01*

-X451141Y147558D01*

-X451218Y147468D01*

-X451308Y147391D01*

-X451408Y147330D01*

-X451518Y147285D01*

-X451632Y147257D01*

-X451750Y147250D01*

-X453500D01*

-Y140750D01*

-X451750D01*

-X451632Y140743D01*

-X451518Y140715D01*

-X451408Y140670D01*

-X451308Y140609D01*

-X451218Y140532D01*

-X451141Y140442D01*

-X451080Y140342D01*

-X451035Y140232D01*

-X451007Y140118D01*

-X450998Y140000D01*

-X451007Y139882D01*

-X451035Y139768D01*

-X451080Y139658D01*

-X451141Y139558D01*

-X451218Y139468D01*

-X451308Y139391D01*

-X451408Y139330D01*

-X451518Y139285D01*

-X451632Y139257D01*

-X451750Y139250D01*

-X453500D01*

-Y118750D01*

-X451750D01*

-X451632Y118743D01*

-X451518Y118715D01*

-X451408Y118670D01*

-X451308Y118609D01*

-X451218Y118532D01*

-X451141Y118442D01*

-X451080Y118342D01*

-X451035Y118232D01*

-X451007Y118118D01*

-X450998Y118000D01*

-X451007Y117882D01*

-X451035Y117768D01*

-X451080Y117658D01*

-X451141Y117558D01*

-X451218Y117468D01*

-X451308Y117391D01*

-X451408Y117330D01*

-X451518Y117285D01*

-X451632Y117257D01*

-X451750Y117250D01*

-X453500D01*

-Y110750D01*

-X451750D01*

-X451632Y110743D01*

-X451518Y110715D01*

-X451408Y110670D01*

-X451308Y110609D01*

-X451218Y110532D01*

-X451141Y110442D01*

-X451080Y110342D01*

-X451035Y110232D01*

-X451007Y110118D01*

-X450998Y110000D01*

-X451007Y109882D01*

-X451035Y109768D01*

-X451080Y109658D01*

-X451141Y109558D01*

-X451218Y109468D01*

-X451308Y109391D01*

-X451408Y109330D01*

-X451518Y109285D01*

-X451632Y109257D01*

-X451750Y109250D01*

-X453500D01*

-Y88750D01*

-X451750D01*

-X451632Y88743D01*

-X451518Y88715D01*

-X451408Y88670D01*

-X451308Y88609D01*

-X451218Y88532D01*

-X451141Y88442D01*

-X451080Y88342D01*

-X451035Y88232D01*

-X451007Y88118D01*

-X450998Y88000D01*

-X451007Y87882D01*

-X451035Y87768D01*

-X451080Y87658D01*

-X451141Y87558D01*

-X451218Y87468D01*

-X451308Y87391D01*

-X451408Y87330D01*

-X451518Y87285D01*

-X451632Y87257D01*

-X451750Y87250D01*

-X453500D01*

-Y80750D01*

-X451750D01*

-X451632Y80743D01*

-X451518Y80715D01*

-X451408Y80670D01*

-X451308Y80609D01*

-X451218Y80532D01*

-X451141Y80442D01*

-X451080Y80342D01*

-X451035Y80232D01*

-X451007Y80118D01*

-X450998Y80000D01*

-X451007Y79882D01*

-X451035Y79768D01*

-X451080Y79658D01*

-X451141Y79558D01*

-X451218Y79468D01*

-X451308Y79391D01*

-X451408Y79330D01*

-X451518Y79285D01*

-X451632Y79257D01*

-X451750Y79250D01*

-X453500D01*

-Y58750D01*

-X451750D01*

-X451632Y58743D01*

-X451518Y58715D01*

-X451408Y58670D01*

-X451308Y58609D01*

-X451218Y58532D01*

-X451141Y58442D01*

-X451080Y58342D01*

-X451035Y58232D01*

-X451007Y58118D01*

-X450998Y58000D01*

-X451007Y57882D01*

-X451035Y57768D01*

-X451080Y57658D01*

-X451141Y57558D01*

-X451218Y57468D01*

-X451308Y57391D01*

-X451408Y57330D01*

-X451518Y57285D01*

-X451632Y57257D01*

-X451750Y57250D01*

-X453500D01*

-Y50750D01*

-X451750D01*

-X451632Y50743D01*

-X451518Y50715D01*

-X451408Y50670D01*

-X451308Y50609D01*

-X451218Y50532D01*

-X451141Y50442D01*

-X451080Y50342D01*

-X451035Y50232D01*

-X451007Y50118D01*

-X450998Y50000D01*

-X451007Y49882D01*

-X451035Y49768D01*

-X451080Y49658D01*

-X451141Y49558D01*

-X451218Y49468D01*

-X451308Y49391D01*

-X451408Y49330D01*

-X451518Y49285D01*

-X451632Y49257D01*

-X451750Y49250D01*

-X453500D01*

-Y39000D01*

-G37*

-G36*

-X449500D02*X440446D01*

-Y54695D01*

-X440449Y54694D01*

-X440731Y54717D01*

-X441007Y54783D01*

-X441269Y54891D01*

-X441510Y55039D01*

-X441726Y55223D01*

-X441910Y55439D01*

-X442058Y55680D01*

-X442166Y55942D01*

-X442232Y56218D01*

-X442249Y56500D01*

-X442232Y56782D01*

-X442166Y57058D01*

-X442058Y57320D01*

-X441910Y57561D01*

-X441726Y57777D01*

-X441510Y57961D01*

-X441269Y58109D01*

-X441007Y58217D01*

-X440731Y58283D01*

-X440449Y58306D01*

-X440446Y58305D01*

-Y70000D01*

-X447441D01*

-X447773Y99532D01*

-X448092Y99728D01*

-X448427Y100014D01*

-X448713Y100349D01*

-X448944Y100725D01*

-X449112Y101132D01*

-X449215Y101561D01*

-X449241Y102000D01*

-X449215Y102439D01*

-X449112Y102868D01*

-X448944Y103275D01*

-X448713Y103651D01*

-X448427Y103986D01*

-X448092Y104272D01*

-X447828Y104434D01*

-X448441Y159000D01*

-X440446D01*

-Y170721D01*

-X440855Y171199D01*

-X441245Y171837D01*

-X441531Y172528D01*

-X441706Y173255D01*

-X441750Y174000D01*

-X441706Y174745D01*

-X441531Y175472D01*

-X441245Y176163D01*

-X440855Y176801D01*

-X440446Y177279D01*

-Y200721D01*

-X440855Y201199D01*

-X441245Y201837D01*

-X441531Y202528D01*

-X441706Y203255D01*

-X441750Y204000D01*

-X441706Y204745D01*

-X441531Y205472D01*

-X441245Y206163D01*

-X440855Y206801D01*

-X440446Y207279D01*

-Y230721D01*

-X440855Y231199D01*

-X441245Y231837D01*

-X441531Y232528D01*

-X441706Y233255D01*

-X441750Y234000D01*

-X441706Y234745D01*

-X441531Y235472D01*

-X441245Y236163D01*

-X440855Y236801D01*

-X440446Y237279D01*

-Y260721D01*

-X440855Y261199D01*

-X441245Y261837D01*

-X441531Y262528D01*

-X441706Y263255D01*

-X441750Y264000D01*

-X441706Y264745D01*

-X441531Y265472D01*

-X441245Y266163D01*

-X440855Y266801D01*

-X440446Y267279D01*

-Y290721D01*

-X440855Y291199D01*

-X441245Y291837D01*

-X441531Y292528D01*

-X441706Y293255D01*

-X441750Y294000D01*

-X441706Y294745D01*

-X441531Y295472D01*

-X441245Y296163D01*

-X440855Y296801D01*

-X440446Y297279D01*

-Y320721D01*

-X440855Y321199D01*

-X441245Y321837D01*

-X441531Y322528D01*

-X441706Y323255D01*

-X441750Y324000D01*

-X441706Y324745D01*

-X441531Y325472D01*

-X441245Y326163D01*

-X440855Y326801D01*

-X440446Y327279D01*

-Y350721D01*

-X440855Y351199D01*

-X441245Y351837D01*

-X441531Y352528D01*

-X441706Y353255D01*

-X441750Y354000D01*

-X441706Y354745D01*

-X441531Y355472D01*

-X441245Y356163D01*

-X440855Y356801D01*

-X440446Y357279D01*

-Y380721D01*

-X440855Y381199D01*

-X441245Y381837D01*

-X441531Y382528D01*

-X441706Y383255D01*

-X441750Y384000D01*

-X441706Y384745D01*

-X441531Y385472D01*

-X441245Y386163D01*

-X440855Y386801D01*

-X440446Y387279D01*

-Y397000D01*

-X449500D01*

-Y386502D01*

-X449382Y386493D01*

-X449268Y386465D01*

-X449158Y386420D01*

-X449058Y386359D01*

-X448968Y386282D01*

-X448891Y386192D01*

-X448830Y386092D01*

-X448785Y385982D01*

-X448757Y385868D01*

-X448750Y385750D01*

-Y382250D01*

-X448757Y382132D01*

-X448785Y382018D01*

-X448830Y381908D01*

-X448891Y381808D01*

-X448968Y381718D01*

-X449058Y381641D01*

-X449158Y381580D01*

-X449268Y381535D01*

-X449382Y381507D01*

-X449500Y381498D01*

-Y356502D01*

-X449382Y356493D01*

-X449268Y356465D01*

-X449158Y356420D01*

-X449058Y356359D01*

-X448968Y356282D01*

-X448891Y356192D01*

-X448830Y356092D01*

-X448785Y355982D01*

-X448757Y355868D01*

-X448750Y355750D01*

-Y352250D01*

-X448757Y352132D01*

-X448785Y352018D01*

-X448830Y351908D01*

-X448891Y351808D01*

-X448968Y351718D01*

-X449058Y351641D01*

-X449158Y351580D01*

-X449268Y351535D01*

-X449382Y351507D01*

-X449500Y351498D01*

-Y326502D01*

-X449382Y326493D01*

-X449268Y326465D01*

-X449158Y326420D01*

-X449058Y326359D01*

-X448968Y326282D01*

-X448891Y326192D01*

-X448830Y326092D01*

-X448785Y325982D01*

-X448757Y325868D01*

-X448750Y325750D01*

-Y322250D01*

-X448757Y322132D01*

-X448785Y322018D01*

-X448830Y321908D01*

-X448891Y321808D01*

-X448968Y321718D01*

-X449058Y321641D01*

-X449158Y321580D01*

-X449268Y321535D01*

-X449382Y321507D01*

-X449500Y321498D01*

-Y296502D01*

-X449382Y296493D01*

-X449268Y296465D01*

-X449158Y296420D01*

-X449058Y296359D01*

-X448968Y296282D01*

-X448891Y296192D01*

-X448830Y296092D01*

-X448785Y295982D01*

-X448757Y295868D01*

-X448750Y295750D01*

-Y292250D01*

-X448757Y292132D01*

-X448785Y292018D01*

-X448830Y291908D01*

-X448891Y291808D01*

-X448968Y291718D01*

-X449058Y291641D01*

-X449158Y291580D01*

-X449268Y291535D01*

-X449382Y291507D01*

-X449500Y291498D01*

-Y266502D01*

-X449382Y266493D01*

-X449268Y266465D01*

-X449158Y266420D01*

-X449058Y266359D01*

-X448968Y266282D01*

-X448891Y266192D01*

-X448830Y266092D01*

-X448785Y265982D01*

-X448757Y265868D01*

-X448750Y265750D01*

-Y262250D01*

-X448757Y262132D01*

-X448785Y262018D01*

-X448830Y261908D01*

-X448891Y261808D01*

-X448968Y261718D01*

-X449058Y261641D01*

-X449158Y261580D01*

-X449268Y261535D01*

-X449382Y261507D01*

-X449500Y261498D01*

-Y236502D01*

-X449382Y236493D01*

-X449268Y236465D01*

-X449158Y236420D01*

-X449058Y236359D01*

-X448968Y236282D01*

-X448891Y236192D01*

-X448830Y236092D01*

-X448785Y235982D01*

-X448757Y235868D01*

-X448750Y235750D01*

-Y232250D01*

-X448757Y232132D01*

-X448785Y232018D01*

-X448830Y231908D01*

-X448891Y231808D01*

-X448968Y231718D01*

-X449058Y231641D01*

-X449158Y231580D01*

-X449268Y231535D01*

-X449382Y231507D01*

-X449500Y231498D01*

-Y206502D01*

-X449382Y206493D01*

-X449268Y206465D01*

-X449158Y206420D01*

-X449058Y206359D01*

-X448968Y206282D01*

-X448891Y206192D01*

-X448830Y206092D01*

-X448785Y205982D01*

-X448757Y205868D01*

-X448750Y205750D01*

-Y202250D01*

-X448757Y202132D01*

-X448785Y202018D01*

-X448830Y201908D01*

-X448891Y201808D01*

-X448968Y201718D01*

-X449058Y201641D01*

-X449158Y201580D01*

-X449268Y201535D01*

-X449382Y201507D01*

-X449500Y201498D01*

-Y176502D01*

-X449382Y176493D01*

-X449268Y176465D01*

-X449158Y176420D01*

-X449058Y176359D01*

-X448968Y176282D01*

-X448891Y176192D01*

-X448830Y176092D01*

-X448785Y175982D01*

-X448757Y175868D01*

-X448750Y175750D01*

-Y172250D01*

-X448757Y172132D01*

-X448785Y172018D01*

-X448830Y171908D01*

-X448891Y171808D01*

-X448968Y171718D01*

-X449058Y171641D01*

-X449158Y171580D01*

-X449268Y171535D01*

-X449382Y171507D01*

-X449500Y171498D01*

-Y146502D01*

-X449382Y146493D01*

-X449268Y146465D01*

-X449158Y146420D01*

-X449058Y146359D01*

-X448968Y146282D01*

-X448891Y146192D01*

-X448830Y146092D01*

-X448785Y145982D01*

-X448757Y145868D01*

-X448750Y145750D01*

-Y142250D01*

-X448757Y142132D01*

-X448785Y142018D01*

-X448830Y141908D01*

-X448891Y141808D01*

-X448968Y141718D01*

-X449058Y141641D01*

-X449158Y141580D01*

-X449268Y141535D01*

-X449382Y141507D01*

-X449500Y141498D01*

-Y116502D01*

-X449382Y116493D01*

-X449268Y116465D01*

-X449158Y116420D01*

-X449058Y116359D01*

-X448968Y116282D01*

-X448891Y116192D01*

-X448830Y116092D01*

-X448785Y115982D01*

-X448757Y115868D01*

-X448750Y115750D01*

-Y112250D01*

-X448757Y112132D01*

-X448785Y112018D01*

-X448830Y111908D01*

-X448891Y111808D01*

-X448968Y111718D01*

-X449058Y111641D01*

-X449158Y111580D01*

-X449268Y111535D01*

-X449382Y111507D01*

-X449500Y111498D01*

-Y86502D01*

-X449382Y86493D01*

-X449268Y86465D01*

-X449158Y86420D01*

-X449058Y86359D01*

-X448968Y86282D01*

-X448891Y86192D01*

-X448830Y86092D01*

-X448785Y85982D01*

-X448757Y85868D01*

-X448750Y85750D01*

-Y82250D01*

-X448757Y82132D01*

-X448785Y82018D01*

-X448830Y81908D01*

-X448891Y81808D01*

-X448968Y81718D01*

-X449058Y81641D01*

-X449158Y81580D01*

-X449268Y81535D01*

-X449382Y81507D01*

-X449500Y81498D01*

-Y56502D01*

-X449382Y56493D01*

-X449268Y56465D01*

-X449158Y56420D01*

-X449058Y56359D01*

-X448968Y56282D01*

-X448891Y56192D01*

-X448830Y56092D01*

-X448785Y55982D01*

-X448757Y55868D01*

-X448750Y55750D01*

-Y52250D01*

-X448757Y52132D01*

-X448785Y52018D01*

-X448830Y51908D01*

-X448891Y51808D01*

-X448968Y51718D01*

-X449058Y51641D01*

-X449158Y51580D01*

-X449268Y51535D01*

-X449382Y51507D01*

-X449500Y51498D01*

-Y39000D01*

-G37*

-G36*

-X440446Y387279D02*X440369Y387369D01*

-X439801Y387855D01*

-X439163Y388245D01*

-X438472Y388531D01*

-X437745Y388706D01*

-X437000Y388765D01*

-X436255Y388706D01*

-X435528Y388531D01*

-X434837Y388245D01*

-X434446Y388006D01*

-Y397000D01*

-X440446D01*

-Y387279D01*

-G37*

-G36*

-Y357279D02*X440369Y357369D01*

-X439801Y357855D01*

-X439163Y358245D01*

-X438472Y358531D01*

-X437745Y358706D01*

-X437000Y358765D01*

-X436255Y358706D01*

-X435528Y358531D01*

-X434837Y358245D01*

-X434446Y358006D01*

-Y379994D01*

-X434837Y379755D01*

-X435528Y379469D01*

-X436255Y379294D01*

-X437000Y379235D01*

-X437745Y379294D01*

-X438472Y379469D01*

-X439163Y379755D01*

-X439801Y380145D01*

-X440369Y380631D01*

-X440446Y380721D01*

-Y357279D01*

-G37*

-G36*

-Y327279D02*X440369Y327369D01*

-X439801Y327855D01*

-X439163Y328245D01*

-X438472Y328531D01*

-X437745Y328706D01*

-X437000Y328765D01*

-X436255Y328706D01*

-X435528Y328531D01*

-X434837Y328245D01*

-X434446Y328006D01*

-Y349994D01*

-X434837Y349755D01*

-X435528Y349469D01*

-X436255Y349294D01*

-X437000Y349235D01*

-X437745Y349294D01*

-X438472Y349469D01*

-X439163Y349755D01*

-X439801Y350145D01*

-X440369Y350631D01*

-X440446Y350721D01*

-Y327279D01*

-G37*

-G36*

-Y297279D02*X440369Y297369D01*

-X439801Y297855D01*

-X439163Y298245D01*

-X438472Y298531D01*

-X437745Y298706D01*

-X437000Y298765D01*

-X436255Y298706D01*

-X435528Y298531D01*

-X434837Y298245D01*

-X434446Y298006D01*

-Y319994D01*

-X434837Y319755D01*

-X435528Y319469D01*

-X436255Y319294D01*

-X437000Y319235D01*

-X437745Y319294D01*

-X438472Y319469D01*

-X439163Y319755D01*

-X439801Y320145D01*

-X440369Y320631D01*

-X440446Y320721D01*

-Y297279D01*

-G37*

-G36*

-Y267279D02*X440369Y267369D01*

-X439801Y267855D01*

-X439163Y268245D01*

-X438472Y268531D01*

-X437745Y268706D01*

-X437000Y268765D01*

-X436255Y268706D01*

-X435528Y268531D01*

-X434837Y268245D01*

-X434446Y268006D01*

-Y289994D01*

-X434837Y289755D01*

-X435528Y289469D01*

-X436255Y289294D01*

-X437000Y289235D01*

-X437745Y289294D01*

-X438472Y289469D01*

-X439163Y289755D01*

-X439801Y290145D01*

-X440369Y290631D01*

-X440446Y290721D01*

-Y267279D01*

-G37*

-G36*

-Y237279D02*X440369Y237369D01*

-X439801Y237855D01*

-X439163Y238245D01*

-X438472Y238531D01*

-X437745Y238706D01*

-X437000Y238765D01*

-X436255Y238706D01*

-X435528Y238531D01*

-X434837Y238245D01*

-X434446Y238006D01*

-Y259994D01*

-X434837Y259755D01*

-X435528Y259469D01*

-X436255Y259294D01*

-X437000Y259235D01*

-X437745Y259294D01*

-X438472Y259469D01*

-X439163Y259755D01*

-X439801Y260145D01*

-X440369Y260631D01*

-X440446Y260721D01*

-Y237279D01*

-G37*

-G36*

-Y207279D02*X440369Y207369D01*

-X439801Y207855D01*

-X439163Y208245D01*

-X438472Y208531D01*

-X437745Y208706D01*

-X437000Y208765D01*

-X436255Y208706D01*

-X435528Y208531D01*

-X434837Y208245D01*

-X434446Y208006D01*

-Y229994D01*

-X434837Y229755D01*

-X435528Y229469D01*

-X436255Y229294D01*

-X437000Y229235D01*

-X437745Y229294D01*

-X438472Y229469D01*

-X439163Y229755D01*

-X439801Y230145D01*

-X440369Y230631D01*

-X440446Y230721D01*

-Y207279D01*

-G37*

-G36*

-Y177279D02*X440369Y177369D01*

-X439801Y177855D01*

-X439163Y178245D01*

-X438472Y178531D01*

-X437745Y178706D01*

-X437000Y178765D01*

-X436255Y178706D01*

-X435528Y178531D01*

-X434837Y178245D01*

-X434446Y178006D01*

-Y199994D01*

-X434837Y199755D01*

-X435528Y199469D01*

-X436255Y199294D01*

-X437000Y199235D01*

-X437745Y199294D01*

-X438472Y199469D01*

-X439163Y199755D01*

-X439801Y200145D01*

-X440369Y200631D01*

-X440446Y200721D01*

-Y177279D01*

-G37*

-G36*

-Y159000D02*X434446D01*

-Y169994D01*

-X434837Y169755D01*

-X435528Y169469D01*

-X436255Y169294D01*

-X437000Y169235D01*

-X437745Y169294D01*

-X438472Y169469D01*

-X439163Y169755D01*

-X439801Y170145D01*

-X440369Y170631D01*

-X440446Y170721D01*

-Y159000D01*

-G37*

-G36*

-Y39000D02*X434446D01*

-Y54695D01*

-X434449Y54694D01*

-X434731Y54717D01*

-X435007Y54783D01*

-X435269Y54891D01*

-X435510Y55039D01*

-X435726Y55223D01*

-X435910Y55439D01*

-X436058Y55680D01*

-X436166Y55942D01*

-X436232Y56218D01*

-X436249Y56500D01*

-X436232Y56782D01*

-X436166Y57058D01*

-X436058Y57320D01*

-X435910Y57561D01*

-X435726Y57777D01*

-X435510Y57961D01*

-X435269Y58109D01*

-X435007Y58217D01*

-X434731Y58283D01*

-X434449Y58306D01*

-X434446Y58305D01*

-Y70000D01*

-X440446D01*

-Y58305D01*

-X440167Y58283D01*

-X439891Y58217D01*

-X439629Y58109D01*

-X439388Y57961D01*

-X439172Y57777D01*

-X438988Y57561D01*

-X438840Y57320D01*

-X438732Y57058D01*

-X438666Y56782D01*

-X438643Y56500D01*

-X438666Y56218D01*

-X438732Y55942D01*

-X438840Y55680D01*

-X438988Y55439D01*

-X439172Y55223D01*

-X439388Y55039D01*

-X439629Y54891D01*

-X439891Y54783D01*

-X440167Y54717D01*

-X440446Y54695D01*

-Y39000D01*

-G37*

-G36*

-X434446Y159000D02*X426993D01*

-Y169236D01*

-X427000Y169235D01*

-X427745Y169294D01*

-X428472Y169469D01*

-X429163Y169755D01*

-X429801Y170145D01*

-X430369Y170631D01*

-X430855Y171199D01*

-X431245Y171837D01*

-X431531Y172528D01*

-X431706Y173255D01*

-X431750Y174000D01*

-X431706Y174745D01*

-X431531Y175472D01*

-X431245Y176163D01*

-X430855Y176801D01*

-X430369Y177369D01*

-X429801Y177855D01*

-X429163Y178245D01*

-X428472Y178531D01*

-X427745Y178706D01*

-X427000Y178765D01*

-X426993Y178764D01*

-Y199236D01*

-X427000Y199235D01*

-X427745Y199294D01*

-X428472Y199469D01*

-X429163Y199755D01*

-X429801Y200145D01*

-X430369Y200631D01*

-X430855Y201199D01*

-X431245Y201837D01*

-X431531Y202528D01*

-X431706Y203255D01*

-X431750Y204000D01*

-X431706Y204745D01*

-X431531Y205472D01*

-X431245Y206163D01*

-X430855Y206801D01*

-X430369Y207369D01*

-X429801Y207855D01*

-X429163Y208245D01*

-X428472Y208531D01*

-X427745Y208706D01*

-X427000Y208765D01*

-X426993Y208764D01*

-Y229236D01*

-X427000Y229235D01*

-X427745Y229294D01*

-X428472Y229469D01*

-X429163Y229755D01*

-X429801Y230145D01*

-X430369Y230631D01*

-X430855Y231199D01*

-X431245Y231837D01*

-X431531Y232528D01*

-X431706Y233255D01*

-X431750Y234000D01*

-X431706Y234745D01*

-X431531Y235472D01*

-X431245Y236163D01*

-X430855Y236801D01*

-X430369Y237369D01*

-X429801Y237855D01*

-X429163Y238245D01*

-X428472Y238531D01*

-X427745Y238706D01*

-X427000Y238765D01*

-X426993Y238764D01*

-Y259236D01*

-X427000Y259235D01*

-X427745Y259294D01*

-X428472Y259469D01*

-X429163Y259755D01*

-X429801Y260145D01*

-X430369Y260631D01*

-X430855Y261199D01*

-X431245Y261837D01*

-X431531Y262528D01*

-X431706Y263255D01*

-X431750Y264000D01*

-X431706Y264745D01*

-X431531Y265472D01*

-X431245Y266163D01*

-X430855Y266801D01*

-X430369Y267369D01*

-X429801Y267855D01*

-X429163Y268245D01*

-X428472Y268531D01*

-X427745Y268706D01*

-X427000Y268765D01*

-X426993Y268764D01*

-Y289236D01*

-X427000Y289235D01*

-X427745Y289294D01*

-X428472Y289469D01*

-X429163Y289755D01*

-X429801Y290145D01*

-X430369Y290631D01*

-X430855Y291199D01*

-X431245Y291837D01*

-X431531Y292528D01*

-X431706Y293255D01*

-X431750Y294000D01*

-X431706Y294745D01*

-X431531Y295472D01*

-X431245Y296163D01*

-X430855Y296801D01*

-X430369Y297369D01*

-X429801Y297855D01*

-X429163Y298245D01*

-X428472Y298531D01*

-X427745Y298706D01*

-X427000Y298765D01*

-X426993Y298764D01*

-Y319236D01*

-X427000Y319235D01*

-X427745Y319294D01*

-X428472Y319469D01*

-X429163Y319755D01*

-X429801Y320145D01*

-X430369Y320631D01*

-X430855Y321199D01*

-X431245Y321837D01*

-X431531Y322528D01*

-X431706Y323255D01*

-X431750Y324000D01*

-X431706Y324745D01*

-X431531Y325472D01*

-X431245Y326163D01*

-X430855Y326801D01*

-X430369Y327369D01*

-X429801Y327855D01*

-X429163Y328245D01*

-X428472Y328531D01*

-X427745Y328706D01*

-X427000Y328765D01*

-X426993Y328764D01*

-Y349236D01*

-X427000Y349235D01*

-X427745Y349294D01*

-X428472Y349469D01*

-X429163Y349755D01*

-X429801Y350145D01*

-X430369Y350631D01*

-X430855Y351199D01*

-X431245Y351837D01*

-X431531Y352528D01*

-X431706Y353255D01*

-X431750Y354000D01*

-X431706Y354745D01*

-X431531Y355472D01*

-X431245Y356163D01*

-X430855Y356801D01*

-X430369Y357369D01*

-X429801Y357855D01*

-X429163Y358245D01*

-X428472Y358531D01*

-X427745Y358706D01*

-X427000Y358765D01*

-X426993Y358764D01*

-Y379236D01*

-X427000Y379235D01*

-X427745Y379294D01*

-X428472Y379469D01*

-X429163Y379755D01*

-X429801Y380145D01*

-X430369Y380631D01*

-X430855Y381199D01*

-X431245Y381837D01*

-X431531Y382528D01*

-X431706Y383255D01*

-X431750Y384000D01*

-X431706Y384745D01*

-X431531Y385472D01*

-X431245Y386163D01*

-X430855Y386801D01*

-X430369Y387369D01*

-X429801Y387855D01*

-X429163Y388245D01*

-X428472Y388531D01*

-X427745Y388706D01*

-X427000Y388765D01*

-X426993Y388764D01*

-Y397000D01*

-X434446D01*

-Y388006D01*

-X434199Y387855D01*

-X433631Y387369D01*

-X433145Y386801D01*

-X432755Y386163D01*

-X432469Y385472D01*

-X432294Y384745D01*

-X432235Y384000D01*

-X432294Y383255D01*

-X432469Y382528D01*

-X432755Y381837D01*

-X433145Y381199D01*

-X433631Y380631D01*

-X434199Y380145D01*

-X434446Y379994D01*

-Y358006D01*

-X434199Y357855D01*

-X433631Y357369D01*

-X433145Y356801D01*

-X432755Y356163D01*

-X432469Y355472D01*

-X432294Y354745D01*

-X432235Y354000D01*

-X432294Y353255D01*

-X432469Y352528D01*

-X432755Y351837D01*

-X433145Y351199D01*

-X433631Y350631D01*

-X434199Y350145D01*

-X434446Y349994D01*

-Y328006D01*

-X434199Y327855D01*

-X433631Y327369D01*

-X433145Y326801D01*

-X432755Y326163D01*

-X432469Y325472D01*

-X432294Y324745D01*

-X432235Y324000D01*

-X432294Y323255D01*

-X432469Y322528D01*

-X432755Y321837D01*

-X433145Y321199D01*

-X433631Y320631D01*

-X434199Y320145D01*

-X434446Y319994D01*

-Y298006D01*

-X434199Y297855D01*

-X433631Y297369D01*

-X433145Y296801D01*

-X432755Y296163D01*

-X432469Y295472D01*

-X432294Y294745D01*

-X432235Y294000D01*

-X432294Y293255D01*

-X432469Y292528D01*

-X432755Y291837D01*

-X433145Y291199D01*

-X433631Y290631D01*

-X434199Y290145D01*

-X434446Y289994D01*

-Y268006D01*

-X434199Y267855D01*

-X433631Y267369D01*

-X433145Y266801D01*

-X432755Y266163D01*

-X432469Y265472D01*

-X432294Y264745D01*

-X432235Y264000D01*

-X432294Y263255D01*

-X432469Y262528D01*

-X432755Y261837D01*

-X433145Y261199D01*

-X433631Y260631D01*

-X434199Y260145D01*

-X434446Y259994D01*

-Y238006D01*

-X434199Y237855D01*

-X433631Y237369D01*

-X433145Y236801D01*

-X432755Y236163D01*

-X432469Y235472D01*

-X432294Y234745D01*

-X432235Y234000D01*

-X432294Y233255D01*

-X432469Y232528D01*

-X432755Y231837D01*

-X433145Y231199D01*

-X433631Y230631D01*

-X434199Y230145D01*

-X434446Y229994D01*

-Y208006D01*

-X434199Y207855D01*

-X433631Y207369D01*

-X433145Y206801D01*

-X432755Y206163D01*

-X432469Y205472D01*

-X432294Y204745D01*

-X432235Y204000D01*

-X432294Y203255D01*

-X432469Y202528D01*

-X432755Y201837D01*

-X433145Y201199D01*

-X433631Y200631D01*

-X434199Y200145D01*

-X434446Y199994D01*

-Y178006D01*

-X434199Y177855D01*

-X433631Y177369D01*

-X433145Y176801D01*

-X432755Y176163D01*

-X432469Y175472D01*

-X432294Y174745D01*

-X432235Y174000D01*

-X432294Y173255D01*

-X432469Y172528D01*

-X432755Y171837D01*

-X433145Y171199D01*

-X433631Y170631D01*

-X434199Y170145D01*

-X434446Y169994D01*

-Y159000D01*

-G37*

-G36*

-X426993D02*X416993D01*

-Y169236D01*

-X417000Y169235D01*

-X417745Y169294D01*

-X418472Y169469D01*

-X419163Y169755D01*

-X419801Y170145D01*

-X420369Y170631D01*

-X420855Y171199D01*

-X421245Y171837D01*

-X421531Y172528D01*

-X421706Y173255D01*

-X421750Y174000D01*

-X421706Y174745D01*

-X421531Y175472D01*

-X421245Y176163D01*

-X420855Y176801D01*

-X420369Y177369D01*

-X419801Y177855D01*

-X419163Y178245D01*

-X418472Y178531D01*

-X417745Y178706D01*

-X417000Y178765D01*

-X416993Y178764D01*

-Y199236D01*

-X417000Y199235D01*

-X417745Y199294D01*

-X418472Y199469D01*

-X419163Y199755D01*

-X419801Y200145D01*

-X420369Y200631D01*

-X420855Y201199D01*

-X421245Y201837D01*

-X421531Y202528D01*

-X421706Y203255D01*

-X421750Y204000D01*

-X421706Y204745D01*

-X421531Y205472D01*

-X421245Y206163D01*

-X420855Y206801D01*

-X420369Y207369D01*

-X419801Y207855D01*

-X419163Y208245D01*

-X418472Y208531D01*

-X417745Y208706D01*

-X417000Y208765D01*

-X416993Y208764D01*

-Y229236D01*

-X417000Y229235D01*

-X417745Y229294D01*

-X418472Y229469D01*

-X419163Y229755D01*

-X419801Y230145D01*

-X420369Y230631D01*

-X420855Y231199D01*

-X421245Y231837D01*

-X421531Y232528D01*

-X421706Y233255D01*

-X421750Y234000D01*

-X421706Y234745D01*

-X421531Y235472D01*

-X421245Y236163D01*

-X420855Y236801D01*

-X420369Y237369D01*

-X419801Y237855D01*

-X419163Y238245D01*

-X418472Y238531D01*

-X417745Y238706D01*

-X417000Y238765D01*

-X416993Y238764D01*

-Y259236D01*

-X417000Y259235D01*

-X417745Y259294D01*

-X418472Y259469D01*

-X419163Y259755D01*

-X419801Y260145D01*

-X420369Y260631D01*

-X420855Y261199D01*

-X421245Y261837D01*

-X421531Y262528D01*

-X421706Y263255D01*

-X421750Y264000D01*

-X421706Y264745D01*

-X421531Y265472D01*

-X421245Y266163D01*

-X420855Y266801D01*

-X420369Y267369D01*

-X419801Y267855D01*

-X419163Y268245D01*

-X418472Y268531D01*

-X417745Y268706D01*

-X417000Y268765D01*

-X416993Y268764D01*

-Y289236D01*

-X417000Y289235D01*

-X417745Y289294D01*

-X418472Y289469D01*

-X419163Y289755D01*

-X419801Y290145D01*

-X420369Y290631D01*

-X420855Y291199D01*

-X421245Y291837D01*

-X421531Y292528D01*

-X421706Y293255D01*

-X421750Y294000D01*

-X421706Y294745D01*

-X421531Y295472D01*

-X421245Y296163D01*

-X420855Y296801D01*

-X420369Y297369D01*

-X419801Y297855D01*

-X419163Y298245D01*

-X418472Y298531D01*

-X417745Y298706D01*

-X417000Y298765D01*

-X416993Y298764D01*

-Y319236D01*

-X417000Y319235D01*

-X417745Y319294D01*

-X418472Y319469D01*

-X419163Y319755D01*

-X419801Y320145D01*

-X420369Y320631D01*

-X420855Y321199D01*

-X421245Y321837D01*

-X421531Y322528D01*

-X421706Y323255D01*

-X421750Y324000D01*

-X421706Y324745D01*

-X421531Y325472D01*

-X421245Y326163D01*

-X420855Y326801D01*

-X420369Y327369D01*

-X419801Y327855D01*

-X419163Y328245D01*

-X418472Y328531D01*

-X417745Y328706D01*

-X417000Y328765D01*

-X416993Y328764D01*

-Y349236D01*

-X417000Y349235D01*

-X417745Y349294D01*

-X418472Y349469D01*

-X419163Y349755D01*

-X419801Y350145D01*

-X420369Y350631D01*

-X420855Y351199D01*

-X421245Y351837D01*

-X421531Y352528D01*

-X421706Y353255D01*

-X421750Y354000D01*

-X421706Y354745D01*

-X421531Y355472D01*

-X421245Y356163D01*

-X420855Y356801D01*

-X420369Y357369D01*

-X419801Y357855D01*

-X419163Y358245D01*

-X418472Y358531D01*

-X417745Y358706D01*

-X417000Y358765D01*

-X416993Y358764D01*

-Y379236D01*

-X417000Y379235D01*

-X417745Y379294D01*

-X418472Y379469D01*

-X419163Y379755D01*

-X419801Y380145D01*

-X420369Y380631D01*

-X420855Y381199D01*

-X421245Y381837D01*

-X421531Y382528D01*

-X421706Y383255D01*

-X421750Y384000D01*

-X421706Y384745D01*

-X421531Y385472D01*

-X421245Y386163D01*

-X420855Y386801D01*

-X420369Y387369D01*

-X419801Y387855D01*

-X419163Y388245D01*

-X418472Y388531D01*

-X417745Y388706D01*

-X417000Y388765D01*

-X416993Y388764D01*

-Y397000D01*

-X426993D01*

-Y388764D01*

-X426255Y388706D01*

-X425528Y388531D01*

-X424837Y388245D01*

-X424199Y387855D01*

-X423631Y387369D01*

-X423145Y386801D01*

-X422755Y386163D01*

-X422469Y385472D01*

-X422294Y384745D01*

-X422235Y384000D01*

-X422294Y383255D01*

-X422469Y382528D01*

-X422755Y381837D01*

-X423145Y381199D01*

-X423631Y380631D01*

-X424199Y380145D01*

-X424837Y379755D01*

-X425528Y379469D01*

-X426255Y379294D01*

-X426993Y379236D01*

-Y358764D01*

-X426255Y358706D01*

-X425528Y358531D01*

-X424837Y358245D01*

-X424199Y357855D01*

-X423631Y357369D01*

-X423145Y356801D01*

-X422755Y356163D01*

-X422469Y355472D01*

-X422294Y354745D01*

-X422235Y354000D01*

-X422294Y353255D01*

-X422469Y352528D01*

-X422755Y351837D01*

-X423145Y351199D01*

-X423631Y350631D01*

-X424199Y350145D01*

-X424837Y349755D01*

-X425528Y349469D01*

-X426255Y349294D01*

-X426993Y349236D01*

-Y328764D01*

-X426255Y328706D01*

-X425528Y328531D01*

-X424837Y328245D01*

-X424199Y327855D01*

-X423631Y327369D01*

-X423145Y326801D01*

-X422755Y326163D01*

-X422469Y325472D01*

-X422294Y324745D01*

-X422235Y324000D01*

-X422294Y323255D01*

-X422469Y322528D01*

-X422755Y321837D01*

-X423145Y321199D01*

-X423631Y320631D01*

-X424199Y320145D01*

-X424837Y319755D01*

-X425528Y319469D01*

-X426255Y319294D01*

-X426993Y319236D01*

-Y298764D01*

-X426255Y298706D01*

-X425528Y298531D01*

-X424837Y298245D01*

-X424199Y297855D01*

-X423631Y297369D01*

-X423145Y296801D01*

-X422755Y296163D01*

-X422469Y295472D01*

-X422294Y294745D01*

-X422235Y294000D01*

-X422294Y293255D01*

-X422469Y292528D01*

-X422755Y291837D01*

-X423145Y291199D01*

-X423631Y290631D01*

-X424199Y290145D01*

-X424837Y289755D01*

-X425528Y289469D01*

-X426255Y289294D01*

-X426993Y289236D01*

-Y268764D01*

-X426255Y268706D01*

-X425528Y268531D01*

-X424837Y268245D01*

-X424199Y267855D01*

-X423631Y267369D01*

-X423145Y266801D01*

-X422755Y266163D01*

-X422469Y265472D01*

-X422294Y264745D01*

-X422235Y264000D01*

-X422294Y263255D01*

-X422469Y262528D01*

-X422755Y261837D01*

-X423145Y261199D01*

-X423631Y260631D01*

-X424199Y260145D01*

-X424837Y259755D01*

-X425528Y259469D01*

-X426255Y259294D01*

-X426993Y259236D01*

-Y238764D01*

-X426255Y238706D01*

-X425528Y238531D01*

-X424837Y238245D01*

-X424199Y237855D01*

-X423631Y237369D01*

-X423145Y236801D01*

-X422755Y236163D01*

-X422469Y235472D01*

-X422294Y234745D01*

-X422235Y234000D01*

-X422294Y233255D01*

-X422469Y232528D01*

-X422755Y231837D01*

-X423145Y231199D01*

-X423631Y230631D01*

-X424199Y230145D01*

-X424837Y229755D01*

-X425528Y229469D01*

-X426255Y229294D01*

-X426993Y229236D01*

-Y208764D01*

-X426255Y208706D01*

-X425528Y208531D01*

-X424837Y208245D01*

-X424199Y207855D01*

-X423631Y207369D01*

-X423145Y206801D01*

-X422755Y206163D01*

-X422469Y205472D01*

-X422294Y204745D01*

-X422235Y204000D01*

-X422294Y203255D01*

-X422469Y202528D01*

-X422755Y201837D01*

-X423145Y201199D01*

-X423631Y200631D01*

-X424199Y200145D01*

-X424837Y199755D01*

-X425528Y199469D01*

-X426255Y199294D01*

-X426993Y199236D01*

-Y178764D01*

-X426255Y178706D01*

-X425528Y178531D01*

-X424837Y178245D01*

-X424199Y177855D01*

-X423631Y177369D01*

-X423145Y176801D01*

-X422755Y176163D01*

-X422469Y175472D01*

-X422294Y174745D01*

-X422235Y174000D01*

-X422294Y173255D01*

-X422469Y172528D01*

-X422755Y171837D01*

-X423145Y171199D01*

-X423631Y170631D01*

-X424199Y170145D01*

-X424837Y169755D01*

-X425528Y169469D01*

-X426255Y169294D01*

-X426993Y169236D01*

-Y159000D01*

-G37*

-G36*

-X416993D02*X411000D01*

-Y171498D01*

-X411118Y171507D01*

-X411232Y171535D01*

-X411342Y171580D01*

-X411442Y171641D01*

-X411532Y171718D01*

-X411609Y171808D01*

-X411670Y171908D01*

-X411715Y172018D01*

-X411743Y172132D01*

-X411750Y172250D01*

-Y175750D01*

-X411743Y175868D01*

-X411715Y175982D01*

-X411670Y176092D01*

-X411609Y176192D01*

-X411532Y176282D01*

-X411442Y176359D01*

-X411342Y176420D01*

-X411232Y176465D01*

-X411118Y176493D01*

-X411000Y176502D01*

-Y201498D01*

-X411118Y201507D01*

-X411232Y201535D01*

-X411342Y201580D01*

-X411442Y201641D01*

-X411532Y201718D01*

-X411609Y201808D01*

-X411670Y201908D01*

-X411715Y202018D01*

-X411743Y202132D01*

-X411750Y202250D01*

-Y205750D01*

-X411743Y205868D01*

-X411715Y205982D01*

-X411670Y206092D01*

-X411609Y206192D01*

-X411532Y206282D01*

-X411442Y206359D01*

-X411342Y206420D01*

-X411232Y206465D01*

-X411118Y206493D01*

-X411000Y206502D01*

-Y231498D01*

-X411118Y231507D01*

-X411232Y231535D01*

-X411342Y231580D01*

-X411442Y231641D01*

-X411532Y231718D01*

-X411609Y231808D01*

-X411670Y231908D01*

-X411715Y232018D01*

-X411743Y232132D01*

-X411750Y232250D01*

-Y235750D01*

-X411743Y235868D01*

-X411715Y235982D01*

-X411670Y236092D01*

-X411609Y236192D01*

-X411532Y236282D01*

-X411442Y236359D01*

-X411342Y236420D01*

-X411232Y236465D01*

-X411118Y236493D01*

-X411000Y236502D01*

-Y261498D01*

-X411118Y261507D01*

-X411232Y261535D01*

-X411342Y261580D01*

-X411442Y261641D01*

-X411532Y261718D01*

-X411609Y261808D01*

-X411670Y261908D01*

-X411715Y262018D01*

-X411743Y262132D01*

-X411750Y262250D01*

-Y265750D01*

-X411743Y265868D01*

-X411715Y265982D01*

-X411670Y266092D01*

-X411609Y266192D01*

-X411532Y266282D01*

-X411442Y266359D01*

-X411342Y266420D01*

-X411232Y266465D01*

-X411118Y266493D01*

-X411000Y266502D01*

-Y291498D01*

-X411118Y291507D01*

-X411232Y291535D01*

-X411342Y291580D01*

-X411442Y291641D01*

-X411532Y291718D01*

-X411609Y291808D01*

-X411670Y291908D01*

-X411715Y292018D01*

-X411743Y292132D01*

-X411750Y292250D01*

-Y295750D01*

-X411743Y295868D01*

-X411715Y295982D01*

-X411670Y296092D01*

-X411609Y296192D01*

-X411532Y296282D01*

-X411442Y296359D01*

-X411342Y296420D01*

-X411232Y296465D01*

-X411118Y296493D01*

-X411000Y296502D01*

-Y321498D01*

-X411118Y321507D01*

-X411232Y321535D01*

-X411342Y321580D01*

-X411442Y321641D01*

-X411532Y321718D01*

-X411609Y321808D01*

-X411670Y321908D01*

-X411715Y322018D01*

-X411743Y322132D01*

-X411750Y322250D01*

-Y325750D01*

-X411743Y325868D01*

-X411715Y325982D01*

-X411670Y326092D01*

-X411609Y326192D01*

-X411532Y326282D01*

-X411442Y326359D01*

-X411342Y326420D01*

-X411232Y326465D01*

-X411118Y326493D01*

-X411000Y326502D01*

-Y351498D01*

-X411118Y351507D01*

-X411232Y351535D01*

-X411342Y351580D01*

-X411442Y351641D01*

-X411532Y351718D01*

-X411609Y351808D01*

-X411670Y351908D01*

-X411715Y352018D01*

-X411743Y352132D01*

-X411750Y352250D01*

-Y355750D01*

-X411743Y355868D01*

-X411715Y355982D01*

-X411670Y356092D01*

-X411609Y356192D01*

-X411532Y356282D01*

-X411442Y356359D01*

-X411342Y356420D01*

-X411232Y356465D01*

-X411118Y356493D01*

-X411000Y356502D01*

-Y381498D01*

-X411118Y381507D01*

-X411232Y381535D01*

-X411342Y381580D01*

-X411442Y381641D01*

-X411532Y381718D01*

-X411609Y381808D01*

-X411670Y381908D01*

-X411715Y382018D01*

-X411743Y382132D01*

-X411750Y382250D01*

-Y385750D01*

-X411743Y385868D01*

-X411715Y385982D01*

-X411670Y386092D01*

-X411609Y386192D01*

-X411532Y386282D01*

-X411442Y386359D01*

-X411342Y386420D01*

-X411232Y386465D01*

-X411118Y386493D01*

-X411000Y386502D01*

-Y397000D01*

-X416993D01*

-Y388764D01*

-X416255Y388706D01*

-X415528Y388531D01*

-X414837Y388245D01*

-X414199Y387855D01*

-X413631Y387369D01*

-X413145Y386801D01*

-X412755Y386163D01*

-X412469Y385472D01*

-X412294Y384745D01*

-X412235Y384000D01*

-X412294Y383255D01*

-X412469Y382528D01*

-X412755Y381837D01*

-X413145Y381199D01*

-X413631Y380631D01*

-X414199Y380145D01*

-X414837Y379755D01*

-X415528Y379469D01*

-X416255Y379294D01*

-X416993Y379236D01*

-Y358764D01*

-X416255Y358706D01*

-X415528Y358531D01*

-X414837Y358245D01*

-X414199Y357855D01*

-X413631Y357369D01*

-X413145Y356801D01*

-X412755Y356163D01*

-X412469Y355472D01*

-X412294Y354745D01*

-X412235Y354000D01*

-X412294Y353255D01*

-X412469Y352528D01*

-X412755Y351837D01*

-X413145Y351199D01*

-X413631Y350631D01*

-X414199Y350145D01*

-X414837Y349755D01*

-X415528Y349469D01*

-X416255Y349294D01*

-X416993Y349236D01*

-Y328764D01*

-X416255Y328706D01*

-X415528Y328531D01*

-X414837Y328245D01*

-X414199Y327855D01*

-X413631Y327369D01*

-X413145Y326801D01*

-X412755Y326163D01*

-X412469Y325472D01*

-X412294Y324745D01*

-X412235Y324000D01*

-X412294Y323255D01*

-X412469Y322528D01*

-X412755Y321837D01*

-X413145Y321199D01*

-X413631Y320631D01*

-X414199Y320145D01*

-X414837Y319755D01*

-X415528Y319469D01*

-X416255Y319294D01*

-X416993Y319236D01*

-Y298764D01*

-X416255Y298706D01*

-X415528Y298531D01*

-X414837Y298245D01*

-X414199Y297855D01*

-X413631Y297369D01*

-X413145Y296801D01*

-X412755Y296163D01*

-X412469Y295472D01*

-X412294Y294745D01*

-X412235Y294000D01*

-X412294Y293255D01*

-X412469Y292528D01*

-X412755Y291837D01*

-X413145Y291199D01*

-X413631Y290631D01*

-X414199Y290145D01*

-X414837Y289755D01*

-X415528Y289469D01*

-X416255Y289294D01*

-X416993Y289236D01*

-Y268764D01*

-X416255Y268706D01*

-X415528Y268531D01*

-X414837Y268245D01*

-X414199Y267855D01*

-X413631Y267369D01*

-X413145Y266801D01*

-X412755Y266163D01*

-X412469Y265472D01*

-X412294Y264745D01*

-X412235Y264000D01*

-X412294Y263255D01*

-X412469Y262528D01*

-X412755Y261837D01*

-X413145Y261199D01*

-X413631Y260631D01*

-X414199Y260145D01*

-X414837Y259755D01*

-X415528Y259469D01*

-X416255Y259294D01*

-X416993Y259236D01*

-Y238764D01*

-X416255Y238706D01*

-X415528Y238531D01*

-X414837Y238245D01*

-X414199Y237855D01*

-X413631Y237369D01*

-X413145Y236801D01*

-X412755Y236163D01*

-X412469Y235472D01*

-X412294Y234745D01*

-X412235Y234000D01*

-X412294Y233255D01*

-X412469Y232528D01*

-X412755Y231837D01*

-X413145Y231199D01*

-X413631Y230631D01*

-X414199Y230145D01*

-X414837Y229755D01*

-X415528Y229469D01*

-X416255Y229294D01*

-X416993Y229236D01*

-Y208764D01*

-X416255Y208706D01*

-X415528Y208531D01*

-X414837Y208245D01*

-X414199Y207855D01*

-X413631Y207369D01*

-X413145Y206801D01*

-X412755Y206163D01*

-X412469Y205472D01*

-X412294Y204745D01*

-X412235Y204000D01*

-X412294Y203255D01*

-X412469Y202528D01*

-X412755Y201837D01*

-X413145Y201199D01*

-X413631Y200631D01*

-X414199Y200145D01*

-X414837Y199755D01*

-X415528Y199469D01*

-X416255Y199294D01*

-X416993Y199236D01*

-Y178764D01*

-X416255Y178706D01*

-X415528Y178531D01*

-X414837Y178245D01*

-X414199Y177855D01*

-X413631Y177369D01*

-X413145Y176801D01*

-X412755Y176163D01*

-X412469Y175472D01*

-X412294Y174745D01*

-X412235Y174000D01*

-X412294Y173255D01*

-X412469Y172528D01*

-X412755Y171837D01*

-X413145Y171199D01*

-X413631Y170631D01*

-X414199Y170145D01*

-X414837Y169755D01*

-X415528Y169469D01*

-X416255Y169294D01*

-X416993Y169236D01*

-Y159000D01*

-G37*

-G36*

-X411000D02*X407000D01*

-Y169250D01*

-X408750D01*

-X408868Y169257D01*

-X408982Y169285D01*

-X409092Y169330D01*

-X409192Y169391D01*

-X409282Y169468D01*

-X409359Y169558D01*

-X409420Y169658D01*

-X409465Y169768D01*

-X409493Y169882D01*

-X409502Y170000D01*

-X409493Y170118D01*

-X409465Y170232D01*

-X409420Y170342D01*

-X409359Y170442D01*

-X409282Y170532D01*

-X409192Y170609D01*

-X409092Y170670D01*

-X408982Y170715D01*

-X408868Y170743D01*

-X408750Y170750D01*

-X407000D01*

-Y177250D01*

-X408750D01*

-X408868Y177257D01*

-X408982Y177285D01*

-X409092Y177330D01*

-X409192Y177391D01*

-X409282Y177468D01*

-X409359Y177558D01*

-X409420Y177658D01*

-X409465Y177768D01*

-X409493Y177882D01*

-X409502Y178000D01*

-X409493Y178118D01*

-X409465Y178232D01*

-X409420Y178342D01*

-X409359Y178442D01*

-X409282Y178532D01*

-X409192Y178609D01*

-X409092Y178670D01*

-X408982Y178715D01*

-X408868Y178743D01*

-X408750Y178750D01*

-X407000D01*

-Y199250D01*

-X408750D01*

-X408868Y199257D01*

-X408982Y199285D01*

-X409092Y199330D01*

-X409192Y199391D01*

-X409282Y199468D01*

-X409359Y199558D01*

-X409420Y199658D01*

-X409465Y199768D01*

-X409493Y199882D01*

-X409502Y200000D01*

-X409493Y200118D01*

-X409465Y200232D01*

-X409420Y200342D01*

-X409359Y200442D01*

-X409282Y200532D01*

-X409192Y200609D01*

-X409092Y200670D01*

-X408982Y200715D01*

-X408868Y200743D01*

-X408750Y200750D01*

-X407000D01*

-Y207250D01*

-X408750D01*

-X408868Y207257D01*

-X408982Y207285D01*

-X409092Y207330D01*

-X409192Y207391D01*

-X409282Y207468D01*

-X409359Y207558D01*

-X409420Y207658D01*

-X409465Y207768D01*

-X409493Y207882D01*

-X409502Y208000D01*

-X409493Y208118D01*

-X409465Y208232D01*

-X409420Y208342D01*

-X409359Y208442D01*

-X409282Y208532D01*

-X409192Y208609D01*

-X409092Y208670D01*

-X408982Y208715D01*

-X408868Y208743D01*

-X408750Y208750D01*

-X407000D01*

-Y229250D01*

-X408750D01*

-X408868Y229257D01*

-X408982Y229285D01*

-X409092Y229330D01*

-X409192Y229391D01*

-X409282Y229468D01*

-X409359Y229558D01*

-X409420Y229658D01*

-X409465Y229768D01*

-X409493Y229882D01*

-X409502Y230000D01*

-X409493Y230118D01*

-X409465Y230232D01*

-X409420Y230342D01*

-X409359Y230442D01*

-X409282Y230532D01*

-X409192Y230609D01*

-X409092Y230670D01*

-X408982Y230715D01*

-X408868Y230743D01*

-X408750Y230750D01*

-X407000D01*

-Y237250D01*

-X408750D01*

-X408868Y237257D01*

-X408982Y237285D01*

-X409092Y237330D01*

-X409192Y237391D01*

-X409282Y237468D01*

-X409359Y237558D01*

-X409420Y237658D01*

-X409465Y237768D01*

-X409493Y237882D01*

-X409502Y238000D01*

-X409493Y238118D01*

-X409465Y238232D01*

-X409420Y238342D01*

-X409359Y238442D01*

-X409282Y238532D01*

-X409192Y238609D01*

-X409092Y238670D01*

-X408982Y238715D01*

-X408868Y238743D01*

-X408750Y238750D01*

-X407000D01*

-Y259250D01*

-X408750D01*

-X408868Y259257D01*

-X408982Y259285D01*

-X409092Y259330D01*

-X409192Y259391D01*

-X409282Y259468D01*

-X409359Y259558D01*

-X409420Y259658D01*

-X409465Y259768D01*

-X409493Y259882D01*

-X409502Y260000D01*

-X409493Y260118D01*

-X409465Y260232D01*

-X409420Y260342D01*

-X409359Y260442D01*

-X409282Y260532D01*

-X409192Y260609D01*

-X409092Y260670D01*

-X408982Y260715D01*

-X408868Y260743D01*

-X408750Y260750D01*

-X407000D01*

-Y267250D01*

-X408750D01*

-X408868Y267257D01*

-X408982Y267285D01*

-X409092Y267330D01*

-X409192Y267391D01*

-X409282Y267468D01*

-X409359Y267558D01*

-X409420Y267658D01*

-X409465Y267768D01*

-X409493Y267882D01*

-X409502Y268000D01*

-X409493Y268118D01*

-X409465Y268232D01*

-X409420Y268342D01*

-X409359Y268442D01*

-X409282Y268532D01*

-X409192Y268609D01*

-X409092Y268670D01*

-X408982Y268715D01*

-X408868Y268743D01*

-X408750Y268750D01*

-X407000D01*

-Y289250D01*

-X408750D01*

-X408868Y289257D01*

-X408982Y289285D01*

-X409092Y289330D01*

-X409192Y289391D01*

-X409282Y289468D01*

-X409359Y289558D01*

-X409420Y289658D01*

-X409465Y289768D01*

-X409493Y289882D01*

-X409502Y290000D01*

-X409493Y290118D01*

-X409465Y290232D01*

-X409420Y290342D01*

-X409359Y290442D01*

-X409282Y290532D01*

-X409192Y290609D01*

-X409092Y290670D01*

-X408982Y290715D01*

-X408868Y290743D01*

-X408750Y290750D01*

-X407000D01*

-Y297250D01*

-X408750D01*

-X408868Y297257D01*

-X408982Y297285D01*

-X409092Y297330D01*

-X409192Y297391D01*

-X409282Y297468D01*

-X409359Y297558D01*

-X409420Y297658D01*

-X409465Y297768D01*

-X409493Y297882D01*

-X409502Y298000D01*

-X409493Y298118D01*

-X409465Y298232D01*

-X409420Y298342D01*

-X409359Y298442D01*

-X409282Y298532D01*

-X409192Y298609D01*

-X409092Y298670D01*

-X408982Y298715D01*

-X408868Y298743D01*

-X408750Y298750D01*

-X407000D01*

-Y319250D01*

-X408750D01*

-X408868Y319257D01*

-X408982Y319285D01*

-X409092Y319330D01*

-X409192Y319391D01*

-X409282Y319468D01*

-X409359Y319558D01*

-X409420Y319658D01*

-X409465Y319768D01*

-X409493Y319882D01*

-X409502Y320000D01*

-X409493Y320118D01*

-X409465Y320232D01*

-X409420Y320342D01*

-X409359Y320442D01*

-X409282Y320532D01*

-X409192Y320609D01*

-X409092Y320670D01*

-X408982Y320715D01*

-X408868Y320743D01*

-X408750Y320750D01*

-X407000D01*

-Y327250D01*

-X408750D01*

-X408868Y327257D01*

-X408982Y327285D01*

-X409092Y327330D01*

-X409192Y327391D01*

-X409282Y327468D01*

-X409359Y327558D01*

-X409420Y327658D01*

-X409465Y327768D01*

-X409493Y327882D01*

-X409502Y328000D01*

-X409493Y328118D01*

-X409465Y328232D01*

-X409420Y328342D01*

-X409359Y328442D01*

-X409282Y328532D01*

-X409192Y328609D01*

-X409092Y328670D01*

-X408982Y328715D01*

-X408868Y328743D01*

-X408750Y328750D01*

-X407000D01*

-Y349250D01*

-X408750D01*

-X408868Y349257D01*

-X408982Y349285D01*

-X409092Y349330D01*

-X409192Y349391D01*

-X409282Y349468D01*

-X409359Y349558D01*

-X409420Y349658D01*

-X409465Y349768D01*

-X409493Y349882D01*

-X409502Y350000D01*

-X409493Y350118D01*

-X409465Y350232D01*

-X409420Y350342D01*

-X409359Y350442D01*

-X409282Y350532D01*

-X409192Y350609D01*

-X409092Y350670D01*

-X408982Y350715D01*

-X408868Y350743D01*

-X408750Y350750D01*

-X407000D01*

-Y357250D01*

-X408750D01*

-X408868Y357257D01*

-X408982Y357285D01*

-X409092Y357330D01*

-X409192Y357391D01*

-X409282Y357468D01*

-X409359Y357558D01*

-X409420Y357658D01*

-X409465Y357768D01*

-X409493Y357882D01*

-X409502Y358000D01*

-X409493Y358118D01*

-X409465Y358232D01*

-X409420Y358342D01*

-X409359Y358442D01*

-X409282Y358532D01*

-X409192Y358609D01*

-X409092Y358670D01*

-X408982Y358715D01*

-X408868Y358743D01*

-X408750Y358750D01*

-X407000D01*

-Y379250D01*

-X408750D01*

-X408868Y379257D01*

-X408982Y379285D01*

-X409092Y379330D01*

-X409192Y379391D01*

-X409282Y379468D01*

-X409359Y379558D01*

-X409420Y379658D01*

-X409465Y379768D01*

-X409493Y379882D01*

-X409502Y380000D01*

-X409493Y380118D01*

-X409465Y380232D01*

-X409420Y380342D01*

-X409359Y380442D01*

-X409282Y380532D01*

-X409192Y380609D01*

-X409092Y380670D01*

-X408982Y380715D01*

-X408868Y380743D01*

-X408750Y380750D01*

-X407000D01*

-Y387250D01*

-X408750D01*

-X408868Y387257D01*

-X408982Y387285D01*

-X409092Y387330D01*

-X409192Y387391D01*

-X409282Y387468D01*

-X409359Y387558D01*

-X409420Y387658D01*

-X409465Y387768D01*

-X409493Y387882D01*

-X409502Y388000D01*

-X409493Y388118D01*

-X409465Y388232D01*

-X409420Y388342D01*

-X409359Y388442D01*

-X409282Y388532D01*

-X409192Y388609D01*

-X409092Y388670D01*

-X408982Y388715D01*

-X408868Y388743D01*

-X408750Y388750D01*

-X407000D01*

-Y397000D01*

-X411000D01*

-Y386502D01*

-X410882Y386493D01*

-X410768Y386465D01*

-X410658Y386420D01*

-X410558Y386359D01*

-X410468Y386282D01*

-X410391Y386192D01*

-X410330Y386092D01*

-X410285Y385982D01*

-X410257Y385868D01*

-X410250Y385750D01*

-Y382250D01*

-X410257Y382132D01*

-X410285Y382018D01*

-X410330Y381908D01*

-X410391Y381808D01*

-X410468Y381718D01*

-X410558Y381641D01*

-X410658Y381580D01*

-X410768Y381535D01*

-X410882Y381507D01*

-X411000Y381498D01*

-Y356502D01*

-X410882Y356493D01*

-X410768Y356465D01*

-X410658Y356420D01*

-X410558Y356359D01*

-X410468Y356282D01*

-X410391Y356192D01*

-X410330Y356092D01*

-X410285Y355982D01*

-X410257Y355868D01*

-X410250Y355750D01*

-Y352250D01*

-X410257Y352132D01*

-X410285Y352018D01*

-X410330Y351908D01*

-X410391Y351808D01*

-X410468Y351718D01*

-X410558Y351641D01*

-X410658Y351580D01*

-X410768Y351535D01*

-X410882Y351507D01*

-X411000Y351498D01*

-Y326502D01*

-X410882Y326493D01*

-X410768Y326465D01*

-X410658Y326420D01*

-X410558Y326359D01*

-X410468Y326282D01*

-X410391Y326192D01*

-X410330Y326092D01*

-X410285Y325982D01*

-X410257Y325868D01*

-X410250Y325750D01*

-Y322250D01*

-X410257Y322132D01*

-X410285Y322018D01*

-X410330Y321908D01*

-X410391Y321808D01*

-X410468Y321718D01*

-X410558Y321641D01*

-X410658Y321580D01*

-X410768Y321535D01*

-X410882Y321507D01*

-X411000Y321498D01*

-Y296502D01*

-X410882Y296493D01*

-X410768Y296465D01*

-X410658Y296420D01*

-X410558Y296359D01*

-X410468Y296282D01*

-X410391Y296192D01*

-X410330Y296092D01*

-X410285Y295982D01*

-X410257Y295868D01*

-X410250Y295750D01*

-Y292250D01*

-X410257Y292132D01*

-X410285Y292018D01*

-X410330Y291908D01*

-X410391Y291808D01*

-X410468Y291718D01*

-X410558Y291641D01*

-X410658Y291580D01*

-X410768Y291535D01*

-X410882Y291507D01*

-X411000Y291498D01*

-Y266502D01*

-X410882Y266493D01*

-X410768Y266465D01*

-X410658Y266420D01*

-X410558Y266359D01*

-X410468Y266282D01*

-X410391Y266192D01*

-X410330Y266092D01*

-X410285Y265982D01*

-X410257Y265868D01*

-X410250Y265750D01*

-Y262250D01*

-X410257Y262132D01*

-X410285Y262018D01*

-X410330Y261908D01*

-X410391Y261808D01*

-X410468Y261718D01*

-X410558Y261641D01*

-X410658Y261580D01*

-X410768Y261535D01*

-X410882Y261507D01*

-X411000Y261498D01*

-Y236502D01*

-X410882Y236493D01*

-X410768Y236465D01*

-X410658Y236420D01*

-X410558Y236359D01*

-X410468Y236282D01*

-X410391Y236192D01*

-X410330Y236092D01*

-X410285Y235982D01*

-X410257Y235868D01*

-X410250Y235750D01*

-Y232250D01*

-X410257Y232132D01*

-X410285Y232018D01*

-X410330Y231908D01*

-X410391Y231808D01*

-X410468Y231718D01*

-X410558Y231641D01*

-X410658Y231580D01*

-X410768Y231535D01*

-X410882Y231507D01*

-X411000Y231498D01*

-Y206502D01*

-X410882Y206493D01*

-X410768Y206465D01*

-X410658Y206420D01*

-X410558Y206359D01*

-X410468Y206282D01*

-X410391Y206192D01*

-X410330Y206092D01*

-X410285Y205982D01*

-X410257Y205868D01*

-X410250Y205750D01*

-Y202250D01*

-X410257Y202132D01*

-X410285Y202018D01*

-X410330Y201908D01*

-X410391Y201808D01*

-X410468Y201718D01*

-X410558Y201641D01*

-X410658Y201580D01*

-X410768Y201535D01*

-X410882Y201507D01*

-X411000Y201498D01*

-Y176502D01*

-X410882Y176493D01*

-X410768Y176465D01*

-X410658Y176420D01*

-X410558Y176359D01*

-X410468Y176282D01*

-X410391Y176192D01*

-X410330Y176092D01*

-X410285Y175982D01*

-X410257Y175868D01*

-X410250Y175750D01*

-Y172250D01*

-X410257Y172132D01*

-X410285Y172018D01*

-X410330Y171908D01*

-X410391Y171808D01*

-X410468Y171718D01*

-X410558Y171641D01*

-X410658Y171580D01*

-X410768Y171535D01*

-X410882Y171507D01*

-X411000Y171498D01*

-Y159000D01*

-G37*

-G36*

-X407000D02*X403000D01*

-Y171498D01*

-X403118Y171507D01*

-X403232Y171535D01*

-X403342Y171580D01*

-X403442Y171641D01*

-X403532Y171718D01*

-X403609Y171808D01*

-X403670Y171908D01*

-X403715Y172018D01*

-X403743Y172132D01*

-X403750Y172250D01*

-Y175750D01*

-X403743Y175868D01*

-X403715Y175982D01*

-X403670Y176092D01*

-X403609Y176192D01*

-X403532Y176282D01*

-X403442Y176359D01*

-X403342Y176420D01*

-X403232Y176465D01*

-X403118Y176493D01*

-X403000Y176502D01*

-Y187861D01*

-X403112Y188132D01*

-X403215Y188561D01*

-X403241Y189000D01*

-X403215Y189439D01*

-X403112Y189868D01*

-X403000Y190139D01*

-Y192861D01*

-X403112Y193132D01*

-X403215Y193561D01*

-X403241Y194000D01*

-X403215Y194439D01*

-X403112Y194868D01*

-X403000Y195139D01*

-Y201498D01*

-X403118Y201507D01*

-X403232Y201535D01*

-X403342Y201580D01*

-X403442Y201641D01*

-X403532Y201718D01*

-X403609Y201808D01*

-X403670Y201908D01*

-X403715Y202018D01*

-X403743Y202132D01*

-X403750Y202250D01*

-Y205750D01*

-X403743Y205868D01*

-X403715Y205982D01*

-X403670Y206092D01*

-X403609Y206192D01*

-X403532Y206282D01*

-X403442Y206359D01*

-X403342Y206420D01*

-X403232Y206465D01*

-X403118Y206493D01*

-X403000Y206502D01*

-Y231498D01*

-X403118Y231507D01*

-X403232Y231535D01*

-X403342Y231580D01*

-X403442Y231641D01*

-X403532Y231718D01*

-X403609Y231808D01*

-X403670Y231908D01*

-X403715Y232018D01*

-X403743Y232132D01*

-X403750Y232250D01*

-Y235750D01*

-X403743Y235868D01*

-X403715Y235982D01*

-X403670Y236092D01*

-X403609Y236192D01*

-X403532Y236282D01*

-X403442Y236359D01*

-X403342Y236420D01*

-X403232Y236465D01*

-X403118Y236493D01*

-X403000Y236502D01*

-Y261498D01*

-X403118Y261507D01*

-X403232Y261535D01*

-X403342Y261580D01*

-X403442Y261641D01*

-X403532Y261718D01*

-X403609Y261808D01*

-X403670Y261908D01*

-X403715Y262018D01*

-X403743Y262132D01*

-X403750Y262250D01*

-Y265750D01*

-X403743Y265868D01*

-X403715Y265982D01*

-X403670Y266092D01*

-X403609Y266192D01*

-X403532Y266282D01*

-X403442Y266359D01*

-X403342Y266420D01*

-X403232Y266465D01*

-X403118Y266493D01*

-X403000Y266502D01*

-Y291498D01*

-X403118Y291507D01*

-X403232Y291535D01*

-X403342Y291580D01*

-X403442Y291641D01*

-X403532Y291718D01*

-X403609Y291808D01*

-X403670Y291908D01*

-X403715Y292018D01*

-X403743Y292132D01*

-X403750Y292250D01*

-Y295750D01*

-X403743Y295868D01*

-X403715Y295982D01*

-X403670Y296092D01*

-X403609Y296192D01*

-X403532Y296282D01*

-X403442Y296359D01*

-X403342Y296420D01*

-X403232Y296465D01*

-X403118Y296493D01*

-X403000Y296502D01*

-Y321498D01*

-X403118Y321507D01*

-X403232Y321535D01*

-X403342Y321580D01*

-X403442Y321641D01*

-X403532Y321718D01*

-X403609Y321808D01*

-X403670Y321908D01*

-X403715Y322018D01*

-X403743Y322132D01*

-X403750Y322250D01*

-Y325750D01*

-X403743Y325868D01*

-X403715Y325982D01*

-X403670Y326092D01*

-X403609Y326192D01*

-X403532Y326282D01*

-X403442Y326359D01*

-X403342Y326420D01*

-X403232Y326465D01*

-X403118Y326493D01*

-X403000Y326502D01*

-Y351498D01*

-X403118Y351507D01*

-X403232Y351535D01*

-X403342Y351580D01*

-X403442Y351641D01*

-X403532Y351718D01*

-X403609Y351808D01*

-X403670Y351908D01*

-X403715Y352018D01*

-X403743Y352132D01*

-X403750Y352250D01*

-Y355750D01*

-X403743Y355868D01*

-X403715Y355982D01*

-X403670Y356092D01*

-X403609Y356192D01*

-X403532Y356282D01*

-X403442Y356359D01*

-X403342Y356420D01*

-X403232Y356465D01*

-X403118Y356493D01*

-X403000Y356502D01*

-Y381498D01*

-X403118Y381507D01*

-X403232Y381535D01*

-X403342Y381580D01*

-X403442Y381641D01*

-X403532Y381718D01*

-X403609Y381808D01*

-X403670Y381908D01*

-X403715Y382018D01*

-X403743Y382132D01*

-X403750Y382250D01*

-Y385750D01*

-X403743Y385868D01*

-X403715Y385982D01*

-X403670Y386092D01*

-X403609Y386192D01*

-X403532Y386282D01*

-X403442Y386359D01*

-X403342Y386420D01*

-X403232Y386465D01*

-X403118Y386493D01*

-X403000Y386502D01*

-Y397000D01*

-X407000D01*

-Y388750D01*

-X405250D01*

-X405132Y388743D01*

-X405018Y388715D01*

-X404908Y388670D01*

-X404808Y388609D01*

-X404718Y388532D01*

-X404641Y388442D01*

-X404580Y388342D01*

-X404535Y388232D01*

-X404507Y388118D01*

-X404498Y388000D01*

-X404507Y387882D01*

-X404535Y387768D01*

-X404580Y387658D01*

-X404641Y387558D01*

-X404718Y387468D01*

-X404808Y387391D01*

-X404908Y387330D01*

-X405018Y387285D01*

-X405132Y387257D01*

-X405250Y387250D01*

-X407000D01*

-Y380750D01*

-X405250D01*

-X405132Y380743D01*

-X405018Y380715D01*

-X404908Y380670D01*

-X404808Y380609D01*

-X404718Y380532D01*

-X404641Y380442D01*

-X404580Y380342D01*

-X404535Y380232D01*

-X404507Y380118D01*

-X404498Y380000D01*

-X404507Y379882D01*

-X404535Y379768D01*

-X404580Y379658D01*

-X404641Y379558D01*

-X404718Y379468D01*

-X404808Y379391D01*

-X404908Y379330D01*

-X405018Y379285D01*

-X405132Y379257D01*

-X405250Y379250D01*

-X407000D01*

-Y358750D01*

-X405250D01*

-X405132Y358743D01*

-X405018Y358715D01*

-X404908Y358670D01*

-X404808Y358609D01*

-X404718Y358532D01*

-X404641Y358442D01*

-X404580Y358342D01*

-X404535Y358232D01*

-X404507Y358118D01*

-X404498Y358000D01*

-X404507Y357882D01*

-X404535Y357768D01*

-X404580Y357658D01*

-X404641Y357558D01*

-X404718Y357468D01*

-X404808Y357391D01*

-X404908Y357330D01*

-X405018Y357285D01*

-X405132Y357257D01*

-X405250Y357250D01*

-X407000D01*

-Y350750D01*

-X405250D01*

-X405132Y350743D01*

-X405018Y350715D01*

-X404908Y350670D01*

-X404808Y350609D01*

-X404718Y350532D01*

-X404641Y350442D01*

-X404580Y350342D01*

-X404535Y350232D01*

-X404507Y350118D01*

-X404498Y350000D01*

-X404507Y349882D01*

-X404535Y349768D01*

-X404580Y349658D01*

-X404641Y349558D01*

-X404718Y349468D01*

-X404808Y349391D01*

-X404908Y349330D01*

-X405018Y349285D01*

-X405132Y349257D01*

-X405250Y349250D01*

-X407000D01*

-Y328750D01*

-X405250D01*

-X405132Y328743D01*

-X405018Y328715D01*

-X404908Y328670D01*

-X404808Y328609D01*

-X404718Y328532D01*

-X404641Y328442D01*

-X404580Y328342D01*

-X404535Y328232D01*

-X404507Y328118D01*

-X404498Y328000D01*

-X404507Y327882D01*

-X404535Y327768D01*

-X404580Y327658D01*

-X404641Y327558D01*

-X404718Y327468D01*

-X404808Y327391D01*

-X404908Y327330D01*

-X405018Y327285D01*

-X405132Y327257D01*

-X405250Y327250D01*

-X407000D01*

-Y320750D01*

-X405250D01*

-X405132Y320743D01*

-X405018Y320715D01*

-X404908Y320670D01*

-X404808Y320609D01*

-X404718Y320532D01*

-X404641Y320442D01*

-X404580Y320342D01*

-X404535Y320232D01*

-X404507Y320118D01*

-X404498Y320000D01*

-X404507Y319882D01*

-X404535Y319768D01*

-X404580Y319658D01*

-X404641Y319558D01*

-X404718Y319468D01*

-X404808Y319391D01*

-X404908Y319330D01*

-X405018Y319285D01*

-X405132Y319257D01*

-X405250Y319250D01*

-X407000D01*

-Y298750D01*

-X405250D01*

-X405132Y298743D01*

-X405018Y298715D01*

-X404908Y298670D01*

-X404808Y298609D01*

-X404718Y298532D01*

-X404641Y298442D01*

-X404580Y298342D01*

-X404535Y298232D01*

-X404507Y298118D01*

-X404498Y298000D01*

-X404507Y297882D01*

-X404535Y297768D01*

-X404580Y297658D01*

-X404641Y297558D01*

-X404718Y297468D01*

-X404808Y297391D01*

-X404908Y297330D01*

-X405018Y297285D01*

-X405132Y297257D01*

-X405250Y297250D01*

-X407000D01*

-Y290750D01*

-X405250D01*

-X405132Y290743D01*

-X405018Y290715D01*

-X404908Y290670D01*

-X404808Y290609D01*

-X404718Y290532D01*

-X404641Y290442D01*

-X404580Y290342D01*

-X404535Y290232D01*

-X404507Y290118D01*

-X404498Y290000D01*

-X404507Y289882D01*

-X404535Y289768D01*

-X404580Y289658D01*

-X404641Y289558D01*

-X404718Y289468D01*

-X404808Y289391D01*

-X404908Y289330D01*

-X405018Y289285D01*

-X405132Y289257D01*

-X405250Y289250D01*

-X407000D01*

-Y268750D01*

-X405250D01*

-X405132Y268743D01*

-X405018Y268715D01*

-X404908Y268670D01*

-X404808Y268609D01*

-X404718Y268532D01*

-X404641Y268442D01*

-X404580Y268342D01*

-X404535Y268232D01*

-X404507Y268118D01*

-X404498Y268000D01*

-X404507Y267882D01*

-X404535Y267768D01*

-X404580Y267658D01*

-X404641Y267558D01*

-X404718Y267468D01*

-X404808Y267391D01*

-X404908Y267330D01*

-X405018Y267285D01*

-X405132Y267257D01*

-X405250Y267250D01*

-X407000D01*

-Y260750D01*

-X405250D01*

-X405132Y260743D01*

-X405018Y260715D01*

-X404908Y260670D01*

-X404808Y260609D01*

-X404718Y260532D01*

-X404641Y260442D01*

-X404580Y260342D01*

-X404535Y260232D01*

-X404507Y260118D01*

-X404498Y260000D01*

-X404507Y259882D01*

-X404535Y259768D01*

-X404580Y259658D01*

-X404641Y259558D01*

-X404718Y259468D01*

-X404808Y259391D01*

-X404908Y259330D01*

-X405018Y259285D01*

-X405132Y259257D01*

-X405250Y259250D01*

-X407000D01*

-Y238750D01*

-X405250D01*

-X405132Y238743D01*

-X405018Y238715D01*

-X404908Y238670D01*

-X404808Y238609D01*

-X404718Y238532D01*

-X404641Y238442D01*

-X404580Y238342D01*

-X404535Y238232D01*

-X404507Y238118D01*

-X404498Y238000D01*

-X404507Y237882D01*

-X404535Y237768D01*

-X404580Y237658D01*

-X404641Y237558D01*

-X404718Y237468D01*

-X404808Y237391D01*

-X404908Y237330D01*

-X405018Y237285D01*

-X405132Y237257D01*

-X405250Y237250D01*

-X407000D01*

-Y230750D01*

-X405250D01*

-X405132Y230743D01*

-X405018Y230715D01*

-X404908Y230670D01*

-X404808Y230609D01*

-X404718Y230532D01*

-X404641Y230442D01*

-X404580Y230342D01*

-X404535Y230232D01*

-X404507Y230118D01*

-X404498Y230000D01*

-X404507Y229882D01*

-X404535Y229768D01*

-X404580Y229658D01*

-X404641Y229558D01*

-X404718Y229468D01*

-X404808Y229391D01*

-X404908Y229330D01*

-X405018Y229285D01*

-X405132Y229257D01*

-X405250Y229250D01*

-X407000D01*

-Y208750D01*

-X405250D01*

-X405132Y208743D01*

-X405018Y208715D01*

-X404908Y208670D01*

-X404808Y208609D01*

-X404718Y208532D01*

-X404641Y208442D01*

-X404580Y208342D01*

-X404535Y208232D01*

-X404507Y208118D01*

-X404498Y208000D01*

-X404507Y207882D01*

-X404535Y207768D01*

-X404580Y207658D01*

-X404641Y207558D01*

-X404718Y207468D01*

-X404808Y207391D01*

-X404908Y207330D01*

-X405018Y207285D01*

-X405132Y207257D01*

-X405250Y207250D01*

-X407000D01*

-Y200750D01*

-X405250D01*

-X405132Y200743D01*

-X405018Y200715D01*

-X404908Y200670D01*

-X404808Y200609D01*

-X404718Y200532D01*

-X404641Y200442D01*

-X404580Y200342D01*

-X404535Y200232D01*

-X404507Y200118D01*

-X404498Y200000D01*

-X404507Y199882D01*

-X404535Y199768D01*

-X404580Y199658D01*

-X404641Y199558D01*

-X404718Y199468D01*

-X404808Y199391D01*

-X404908Y199330D01*

-X405018Y199285D01*

-X405132Y199257D01*

-X405250Y199250D01*

-X407000D01*

-Y178750D01*

-X405250D01*

-X405132Y178743D01*

-X405018Y178715D01*

-X404908Y178670D01*

-X404808Y178609D01*

-X404718Y178532D01*

-X404641Y178442D01*

-X404580Y178342D01*

-X404535Y178232D01*

-X404507Y178118D01*

-X404498Y178000D01*

-X404507Y177882D01*

-X404535Y177768D01*

-X404580Y177658D01*

-X404641Y177558D01*

-X404718Y177468D01*

-X404808Y177391D01*

-X404908Y177330D01*

-X405018Y177285D01*

-X405132Y177257D01*

-X405250Y177250D01*

-X407000D01*

-Y170750D01*

-X405250D01*

-X405132Y170743D01*

-X405018Y170715D01*

-X404908Y170670D01*

-X404808Y170609D01*

-X404718Y170532D01*

-X404641Y170442D01*

-X404580Y170342D01*

-X404535Y170232D01*

-X404507Y170118D01*

-X404498Y170000D01*

-X404507Y169882D01*

-X404535Y169768D01*

-X404580Y169658D01*

-X404641Y169558D01*

-X404718Y169468D01*

-X404808Y169391D01*

-X404908Y169330D01*

-X405018Y169285D01*

-X405132Y169257D01*

-X405250Y169250D01*

-X407000D01*

-Y159000D01*

-G37*

-G36*

-X403000Y386502D02*X402882Y386493D01*

-X402768Y386465D01*

-X402658Y386420D01*

-X402558Y386359D01*

-X402468Y386282D01*

-X402396Y386197D01*

-X402441Y397000D01*

-X403000D01*

-Y386502D01*

-G37*

-G36*

-Y356502D02*X402882Y356493D01*

-X402768Y356465D01*

-X402658Y356420D01*

-X402558Y356359D01*

-X402468Y356282D01*

-X402391Y356192D01*

-X402330Y356092D01*

-X402285Y355982D01*

-X402268Y355915D01*

-X402377Y381831D01*

-X402391Y381808D01*

-X402468Y381718D01*

-X402558Y381641D01*

-X402658Y381580D01*

-X402768Y381535D01*

-X402882Y381507D01*

-X403000Y381498D01*

-Y356502D01*

-G37*

-G36*

-Y195139D02*X402944Y195275D01*

-X402713Y195651D01*

-X402427Y195986D01*

-X402092Y196272D01*

-X401716Y196503D01*

-X401599Y196551D01*

-X402253Y352203D01*

-X402257Y352132D01*

-X402285Y352018D01*

-X402330Y351908D01*

-X402391Y351808D01*

-X402468Y351718D01*

-X402558Y351641D01*

-X402658Y351580D01*

-X402768Y351535D01*

-X402882Y351507D01*

-X403000Y351498D01*

-Y326502D01*

-X402882Y326493D01*

-X402768Y326465D01*

-X402658Y326420D01*

-X402558Y326359D01*

-X402468Y326282D01*

-X402391Y326192D01*

-X402330Y326092D01*

-X402285Y325982D01*

-X402257Y325868D01*

-X402250Y325750D01*

-Y322250D01*

-X402257Y322132D01*

-X402285Y322018D01*

-X402330Y321908D01*

-X402391Y321808D01*

-X402468Y321718D01*

-X402558Y321641D01*

-X402658Y321580D01*

-X402768Y321535D01*

-X402882Y321507D01*

-X403000Y321498D01*

-Y296502D01*

-X402882Y296493D01*

-X402768Y296465D01*

-X402658Y296420D01*

-X402558Y296359D01*

-X402468Y296282D01*

-X402391Y296192D01*

-X402330Y296092D01*

-X402285Y295982D01*

-X402257Y295868D01*

-X402250Y295750D01*

-Y292250D01*

-X402257Y292132D01*

-X402285Y292018D01*

-X402330Y291908D01*

-X402391Y291808D01*

-X402468Y291718D01*

-X402558Y291641D01*

-X402658Y291580D01*

-X402768Y291535D01*

-X402882Y291507D01*

-X403000Y291498D01*

-Y266502D01*

-X402882Y266493D01*

-X402768Y266465D01*

-X402658Y266420D01*

-X402558Y266359D01*

-X402468Y266282D01*

-X402391Y266192D01*

-X402330Y266092D01*

-X402285Y265982D01*

-X402257Y265868D01*

-X402250Y265750D01*

-Y262250D01*

-X402257Y262132D01*

-X402285Y262018D01*

-X402330Y261908D01*

-X402391Y261808D01*

-X402468Y261718D01*

-X402558Y261641D01*

-X402658Y261580D01*

-X402768Y261535D01*

-X402882Y261507D01*

-X403000Y261498D01*

-Y236502D01*

-X402882Y236493D01*

-X402768Y236465D01*

-X402658Y236420D01*

-X402558Y236359D01*

-X402468Y236282D01*

-X402391Y236192D01*

-X402330Y236092D01*

-X402285Y235982D01*

-X402257Y235868D01*

-X402250Y235750D01*

-Y232250D01*

-X402257Y232132D01*

-X402285Y232018D01*

-X402330Y231908D01*

-X402391Y231808D01*

-X402468Y231718D01*

-X402558Y231641D01*

-X402658Y231580D01*

-X402768Y231535D01*

-X402882Y231507D01*

-X403000Y231498D01*

-Y206502D01*

-X402882Y206493D01*

-X402768Y206465D01*

-X402658Y206420D01*

-X402558Y206359D01*

-X402468Y206282D01*

-X402391Y206192D01*

-X402330Y206092D01*

-X402285Y205982D01*

-X402257Y205868D01*

-X402250Y205750D01*

-Y202250D01*

-X402257Y202132D01*

-X402285Y202018D01*

-X402330Y201908D01*

-X402391Y201808D01*

-X402468Y201718D01*

-X402558Y201641D01*

-X402658Y201580D01*

-X402768Y201535D01*

-X402882Y201507D01*

-X403000Y201498D01*

-Y195139D01*

-G37*

-G36*

-Y190139D02*X402944Y190275D01*

-X402713Y190651D01*

-X402427Y190986D01*

-X402092Y191272D01*

-X401720Y191500D01*

-X402092Y191728D01*

-X402427Y192014D01*

-X402713Y192349D01*

-X402944Y192725D01*

-X403000Y192861D01*

-Y190139D01*

-G37*

-G36*

-Y159000D02*X401441D01*

-X401556Y186431D01*

-X401716Y186497D01*

-X402092Y186728D01*

-X402427Y187014D01*

-X402713Y187349D01*

-X402944Y187725D01*

-X403000Y187861D01*

-Y176502D01*

-X402882Y176493D01*

-X402768Y176465D01*

-X402658Y176420D01*

-X402558Y176359D01*

-X402468Y176282D01*

-X402391Y176192D01*

-X402330Y176092D01*

-X402285Y175982D01*

-X402257Y175868D01*

-X402250Y175750D01*

-Y172250D01*

-X402257Y172132D01*

-X402285Y172018D01*

-X402330Y171908D01*

-X402391Y171808D01*

-X402468Y171718D01*

-X402558Y171641D01*

-X402658Y171580D01*

-X402768Y171535D01*

-X402882Y171507D01*

-X403000Y171498D01*

-Y159000D01*

-G37*

-G36*

-X434446Y39000D02*X395438D01*

-Y58499D01*

-X395502Y58538D01*

-X395718Y58722D01*

-X395902Y58938D01*

-X396050Y59179D01*

-X396158Y59441D01*

-X396224Y59717D01*

-X396241Y59999D01*

-X396224Y60281D01*

-X396158Y60557D01*

-X396050Y60819D01*

-X395902Y61060D01*

-X395718Y61276D01*

-X395502Y61460D01*

-X395438Y61499D01*

-Y65194D01*

-X395441Y65193D01*

-X395723Y65216D01*

-X395999Y65282D01*

-X396261Y65390D01*

-X396502Y65538D01*

-X396718Y65722D01*

-X396902Y65938D01*

-X397050Y66179D01*

-X397158Y66441D01*

-X397224Y66717D01*

-X397241Y66999D01*

-X397224Y67281D01*

-X397158Y67557D01*

-X397050Y67819D01*

-X396902Y68060D01*

-X396718Y68276D01*

-X396502Y68460D01*

-X396261Y68608D01*

-X395999Y68716D01*

-X395723Y68782D01*

-X395441Y68805D01*

-X395438Y68804D01*

-Y132000D01*

-X407941D01*

-Y70000D01*

-X434446D01*

-Y58305D01*

-X434167Y58283D01*

-X433891Y58217D01*

-X433629Y58109D01*

-X433388Y57961D01*

-X433172Y57777D01*

-X432988Y57561D01*

-X432840Y57320D01*

-X432732Y57058D01*

-X432666Y56782D01*

-X432643Y56500D01*

-X432666Y56218D01*

-X432732Y55942D01*

-X432840Y55680D01*

-X432988Y55439D01*

-X433172Y55223D01*

-X433388Y55039D01*

-X433629Y54891D01*

-X433891Y54783D01*

-X434167Y54717D01*

-X434446Y54695D01*

-Y39000D01*

-G37*

-G36*

-X395438D02*X391438D01*

-Y52506D01*

-X391480Y52438D01*

-X391664Y52222D01*

-X391880Y52038D01*

-X392121Y51890D01*

-X392383Y51782D01*

-X392659Y51716D01*

-X392941Y51693D01*

-X393223Y51716D01*

-X393499Y51782D01*

-X393761Y51890D01*

-X394002Y52038D01*

-X394218Y52222D01*

-X394402Y52438D01*

-X394550Y52679D01*

-X394658Y52941D01*

-X394724Y53217D01*

-X394741Y53499D01*

-X394724Y53781D01*

-X394658Y54057D01*

-X394550Y54319D01*

-X394402Y54560D01*

-X394218Y54776D01*

-X394002Y54960D01*

-X393761Y55108D01*

-X393499Y55216D01*

-X393223Y55282D01*

-X392941Y55305D01*

-X392659Y55282D01*

-X392383Y55216D01*

-X392121Y55108D01*

-X391880Y54960D01*

-X391664Y54776D01*

-X391480Y54560D01*

-X391438Y54492D01*

-Y72769D01*

-X391659Y72716D01*

-X391941Y72693D01*

-X392223Y72716D01*

-X392499Y72782D01*

-X392761Y72890D01*

-X393002Y73038D01*

-X393218Y73222D01*

-X393402Y73438D01*

-X393550Y73679D01*

-X393658Y73941D01*

-X393724Y74217D01*

-X393741Y74499D01*

-X393724Y74781D01*

-X393658Y75057D01*

-X393550Y75319D01*

-X393402Y75560D01*

-X393218Y75776D01*

-X393002Y75960D01*

-X392761Y76108D01*

-X392499Y76216D01*

-X392223Y76282D01*

-X391941Y76305D01*

-X391659Y76282D01*

-X391438Y76229D01*

-Y78194D01*

-X391441Y78193D01*

-X391723Y78216D01*

-X391999Y78282D01*

-X392261Y78390D01*

-X392502Y78538D01*

-X392718Y78722D01*

-X392902Y78938D01*

-X393050Y79179D01*

-X393158Y79441D01*

-X393224Y79717D01*

-X393241Y79999D01*

-X393224Y80281D01*

-X393158Y80557D01*

-X393050Y80819D01*

-X392902Y81060D01*

-X392718Y81276D01*

-X392502Y81460D01*

-X392261Y81608D01*

-X391999Y81716D01*

-X391723Y81782D01*

-X391441Y81805D01*

-X391438Y81804D01*

-Y82694D01*

-X391441Y82693D01*

-X391723Y82716D01*

-X391999Y82782D01*

-X392261Y82890D01*

-X392502Y83038D01*

-X392718Y83222D01*

-X392902Y83438D01*

-X393050Y83679D01*

-X393158Y83941D01*

-X393224Y84217D01*

-X393241Y84499D01*

-X393224Y84781D01*

-X393158Y85057D01*

-X393050Y85319D01*

-X392902Y85560D01*

-X392718Y85776D01*

-X392502Y85960D01*

-X392261Y86108D01*

-X391999Y86216D01*

-X391723Y86282D01*

-X391441Y86305D01*

-X391438Y86304D01*

-Y132000D01*

-X395438D01*

-Y68804D01*

-X395159Y68782D01*

-X394883Y68716D01*

-X394621Y68608D01*

-X394380Y68460D01*

-X394164Y68276D01*

-X393980Y68060D01*

-X393832Y67819D01*

-X393724Y67557D01*

-X393658Y67281D01*

-X393635Y66999D01*

-X393658Y66717D01*

-X393724Y66441D01*

-X393832Y66179D01*

-X393980Y65938D01*

-X394164Y65722D01*

-X394380Y65538D01*

-X394621Y65390D01*

-X394883Y65282D01*

-X395159Y65216D01*

-X395438Y65194D01*

-Y61499D01*

-X395261Y61608D01*

-X394999Y61716D01*

-X394723Y61782D01*

-X394441Y61805D01*

-X394159Y61782D01*

-X393883Y61716D01*

-X393621Y61608D01*

-X393380Y61460D01*

-X393164Y61276D01*

-X392980Y61060D01*

-X392832Y60819D01*

-X392724Y60557D01*

-X392658Y60281D01*

-X392635Y59999D01*

-X392658Y59717D01*

-X392724Y59441D01*

-X392832Y59179D01*

-X392980Y58938D01*

-X393164Y58722D01*

-X393380Y58538D01*

-X393621Y58390D01*

-X393883Y58282D01*

-X394159Y58216D01*

-X394441Y58193D01*

-X394723Y58216D01*

-X394999Y58282D01*

-X395261Y58390D01*

-X395438Y58499D01*

-Y39000D01*

-G37*

-G36*

-X391438D02*X387938D01*

-Y91694D01*

-X387941Y91693D01*

-X388223Y91716D01*

-X388499Y91782D01*

-X388761Y91890D01*

-X389002Y92038D01*

-X389218Y92222D01*

-X389402Y92438D01*

-X389550Y92679D01*

-X389658Y92941D01*

-X389724Y93217D01*

-X389741Y93499D01*

-X389724Y93781D01*

-X389658Y94057D01*

-X389550Y94319D01*

-X389402Y94560D01*

-X389218Y94776D01*

-X389002Y94960D01*

-X388761Y95108D01*

-X388499Y95216D01*

-X388223Y95282D01*

-X387941Y95305D01*

-X387938Y95304D01*

-Y96194D01*

-X387941Y96193D01*

-X388223Y96216D01*

-X388499Y96282D01*

-X388761Y96390D01*

-X389002Y96538D01*

-X389218Y96722D01*

-X389402Y96938D01*

-X389550Y97179D01*

-X389658Y97441D01*

-X389724Y97717D01*

-X389741Y97999D01*

-X389724Y98281D01*

-X389658Y98557D01*

-X389550Y98819D01*

-X389402Y99060D01*

-X389218Y99276D01*

-X389002Y99460D01*

-X388761Y99608D01*

-X388499Y99716D01*

-X388223Y99782D01*

-X387941Y99805D01*

-X387938Y99804D01*

-Y102194D01*

-X387941Y102193D01*

-X388223Y102216D01*

-X388499Y102282D01*

-X388761Y102390D01*

-X389002Y102538D01*

-X389218Y102722D01*

-X389402Y102938D01*

-X389550Y103179D01*

-X389658Y103441D01*

-X389724Y103717D01*

-X389741Y103999D01*

-X389724Y104281D01*

-X389658Y104557D01*

-X389550Y104819D01*

-X389402Y105060D01*

-X389218Y105276D01*

-X389002Y105460D01*

-X388761Y105608D01*

-X388499Y105716D01*

-X388223Y105782D01*

-X387941Y105805D01*

-X387938Y105804D01*

-Y108194D01*

-X387941Y108193D01*

-X388223Y108216D01*

-X388499Y108282D01*

-X388761Y108390D01*

-X389002Y108538D01*

-X389218Y108722D01*

-X389402Y108938D01*

-X389550Y109179D01*

-X389658Y109441D01*

-X389724Y109717D01*

-X389741Y109999D01*

-X389724Y110281D01*

-X389658Y110557D01*

-X389550Y110819D01*

-X389402Y111060D01*

-X389218Y111276D01*

-X389002Y111460D01*

-X388761Y111608D01*

-X388499Y111716D01*

-X388223Y111782D01*

-X387941Y111805D01*

-X387938Y111804D01*

-Y114194D01*

-X387941Y114193D01*

-X388223Y114216D01*

-X388499Y114282D01*

-X388761Y114390D01*

-X389002Y114538D01*

-X389218Y114722D01*

-X389402Y114938D01*

-X389550Y115179D01*

-X389658Y115441D01*

-X389724Y115717D01*

-X389741Y115999D01*

-X389724Y116281D01*

-X389658Y116557D01*

-X389550Y116819D01*

-X389402Y117060D01*

-X389218Y117276D01*

-X389002Y117460D01*

-X388761Y117608D01*

-X388499Y117716D01*

-X388223Y117782D01*

-X387941Y117805D01*

-X387938Y117804D01*

-Y120194D01*

-X387941Y120193D01*

-X388223Y120216D01*

-X388499Y120282D01*

-X388761Y120390D01*

-X389002Y120538D01*

-X389218Y120722D01*

-X389402Y120938D01*

-X389550Y121179D01*

-X389658Y121441D01*

-X389724Y121717D01*

-X389741Y121999D01*

-X389724Y122281D01*

-X389658Y122557D01*

-X389550Y122819D01*

-X389402Y123060D01*

-X389218Y123276D01*

-X389002Y123460D01*

-X388761Y123608D01*

-X388499Y123716D01*

-X388223Y123782D01*

-X387941Y123805D01*

-X387938Y123804D01*

-Y126194D01*

-X387941Y126193D01*

-X388223Y126216D01*

-X388499Y126282D01*

-X388761Y126390D01*

-X389002Y126538D01*

-X389218Y126722D01*

-X389402Y126938D01*

-X389550Y127179D01*

-X389658Y127441D01*

-X389724Y127717D01*

-X389741Y127999D01*

-X389724Y128281D01*

-X389658Y128557D01*

-X389550Y128819D01*

-X389402Y129060D01*

-X389218Y129276D01*

-X389002Y129460D01*

-X388761Y129608D01*

-X388499Y129716D01*

-X388223Y129782D01*

-X387941Y129805D01*

-X387938Y129804D01*

-Y132000D01*

-X391438D01*

-Y86304D01*

-X391159Y86282D01*

-X390883Y86216D01*

-X390621Y86108D01*

-X390380Y85960D01*

-X390164Y85776D01*

-X389980Y85560D01*

-X389832Y85319D01*

-X389724Y85057D01*

-X389658Y84781D01*

-X389635Y84499D01*

-X389658Y84217D01*

-X389724Y83941D01*

-X389832Y83679D01*

-X389980Y83438D01*

-X390164Y83222D01*

-X390380Y83038D01*

-X390621Y82890D01*

-X390883Y82782D01*

-X391159Y82716D01*

-X391438Y82694D01*

-Y81804D01*

-X391159Y81782D01*

-X390883Y81716D01*

-X390621Y81608D01*

-X390380Y81460D01*

-X390164Y81276D01*

-X389980Y81060D01*

-X389832Y80819D01*

-X389724Y80557D01*

-X389658Y80281D01*

-X389635Y79999D01*

-X389658Y79717D01*

-X389724Y79441D01*

-X389832Y79179D01*

-X389980Y78938D01*

-X390164Y78722D01*

-X390380Y78538D01*

-X390621Y78390D01*

-X390883Y78282D01*

-X391159Y78216D01*

-X391438Y78194D01*

-Y76229D01*

-X391383Y76216D01*

-X391121Y76108D01*

-X390880Y75960D01*

-X390664Y75776D01*

-X390480Y75560D01*

-X390332Y75319D01*

-X390224Y75057D01*

-X390158Y74781D01*

-X390135Y74499D01*

-X390158Y74217D01*

-X390224Y73941D01*

-X390332Y73679D01*

-X390480Y73438D01*

-X390664Y73222D01*

-X390880Y73038D01*

-X391121Y72890D01*

-X391383Y72782D01*

-X391438Y72769D01*

-Y54492D01*

-X391332Y54319D01*

-X391224Y54057D01*

-X391158Y53781D01*

-X391135Y53499D01*

-X391158Y53217D01*

-X391224Y52941D01*

-X391332Y52679D01*

-X391438Y52506D01*

-Y39000D01*

-G37*

-G36*

-X387938D02*X374938D01*

-Y41695D01*

-X374941Y41694D01*

-X375223Y41717D01*

-X375499Y41783D01*

-X375761Y41891D01*

-X376002Y42039D01*

-X376218Y42223D01*

-X376402Y42439D01*

-X376550Y42680D01*

-X376658Y42942D01*

-X376724Y43218D01*

-X376741Y43500D01*

-X376724Y43782D01*

-X376658Y44058D01*

-X376550Y44320D01*

-X376402Y44561D01*

-X376218Y44777D01*

-X376002Y44961D01*

-X375761Y45109D01*

-X375499Y45217D01*

-X375362Y45250D01*

-X375499Y45283D01*

-X375761Y45391D01*

-X376002Y45539D01*

-X376218Y45723D01*

-X376402Y45939D01*

-X376550Y46180D01*

-X376658Y46442D01*

-X376724Y46718D01*

-X376741Y47000D01*

-X376724Y47282D01*

-X376658Y47558D01*

-X376550Y47820D01*

-X376402Y48061D01*

-X376218Y48277D01*

-X376002Y48461D01*

-X375761Y48609D01*

-X375499Y48717D01*

-X375223Y48783D01*

-X374941Y48806D01*

-X374938Y48805D01*

-Y132000D01*

-X387938D01*

-Y129804D01*

-X387659Y129782D01*

-X387383Y129716D01*

-X387121Y129608D01*

-X386880Y129460D01*

-X386664Y129276D01*

-X386480Y129060D01*

-X386332Y128819D01*

-X386224Y128557D01*

-X386158Y128281D01*

-X386135Y127999D01*

-X386158Y127717D01*

-X386224Y127441D01*

-X386332Y127179D01*

-X386480Y126938D01*

-X386664Y126722D01*

-X386880Y126538D01*

-X387121Y126390D01*

-X387383Y126282D01*

-X387659Y126216D01*

-X387938Y126194D01*

-Y123804D01*

-X387659Y123782D01*

-X387383Y123716D01*

-X387121Y123608D01*

-X386880Y123460D01*

-X386664Y123276D01*

-X386480Y123060D01*

-X386332Y122819D01*

-X386224Y122557D01*

-X386158Y122281D01*

-X386135Y121999D01*

-X386158Y121717D01*

-X386224Y121441D01*

-X386332Y121179D01*

-X386480Y120938D01*

-X386664Y120722D01*

-X386880Y120538D01*

-X387121Y120390D01*

-X387383Y120282D01*

-X387659Y120216D01*

-X387938Y120194D01*

-Y117804D01*

-X387659Y117782D01*

-X387383Y117716D01*

-X387121Y117608D01*

-X386880Y117460D01*

-X386664Y117276D01*

-X386480Y117060D01*

-X386332Y116819D01*

-X386224Y116557D01*

-X386158Y116281D01*

-X386135Y115999D01*

-X386158Y115717D01*

-X386224Y115441D01*

-X386332Y115179D01*

-X386480Y114938D01*

-X386664Y114722D01*

-X386880Y114538D01*

-X387121Y114390D01*

-X387383Y114282D01*

-X387659Y114216D01*

-X387938Y114194D01*

-Y111804D01*

-X387659Y111782D01*

-X387383Y111716D01*

-X387121Y111608D01*

-X386880Y111460D01*

-X386664Y111276D01*

-X386480Y111060D01*

-X386332Y110819D01*

-X386224Y110557D01*

-X386158Y110281D01*

-X386135Y109999D01*

-X386158Y109717D01*

-X386224Y109441D01*

-X386332Y109179D01*

-X386480Y108938D01*

-X386664Y108722D01*

-X386880Y108538D01*

-X387121Y108390D01*

-X387383Y108282D01*

-X387659Y108216D01*

-X387938Y108194D01*

-Y105804D01*

-X387659Y105782D01*

-X387383Y105716D01*

-X387121Y105608D01*

-X386880Y105460D01*

-X386664Y105276D01*

-X386480Y105060D01*

-X386332Y104819D01*

-X386224Y104557D01*

-X386158Y104281D01*

-X386135Y103999D01*

-X386158Y103717D01*

-X386224Y103441D01*

-X386332Y103179D01*

-X386480Y102938D01*

-X386664Y102722D01*

-X386880Y102538D01*

-X387121Y102390D01*

-X387383Y102282D01*

-X387659Y102216D01*

-X387938Y102194D01*

-Y99804D01*

-X387659Y99782D01*

-X387383Y99716D01*

-X387121Y99608D01*

-X386880Y99460D01*

-X386664Y99276D01*

-X386480Y99060D01*

-X386332Y98819D01*

-X386224Y98557D01*

-X386158Y98281D01*

-X386135Y97999D01*

-X386158Y97717D01*

-X386224Y97441D01*

-X386332Y97179D01*

-X386480Y96938D01*

-X386664Y96722D01*

-X386880Y96538D01*

-X387121Y96390D01*

-X387383Y96282D01*

-X387659Y96216D01*

-X387938Y96194D01*

-Y95304D01*

-X387659Y95282D01*

-X387383Y95216D01*

-X387121Y95108D01*

-X386880Y94960D01*

-X386664Y94776D01*

-X386480Y94560D01*

-X386332Y94319D01*

-X386224Y94057D01*

-X386158Y93781D01*

-X386135Y93499D01*

-X386158Y93217D01*

-X386224Y92941D01*

-X386332Y92679D01*

-X386480Y92438D01*

-X386664Y92222D01*

-X386880Y92038D01*

-X387121Y91890D01*

-X387383Y91782D01*

-X387659Y91716D01*

-X387938Y91694D01*

-Y39000D01*

-G37*

-G36*

-X374938D02*X368938D01*

-Y41695D01*

-X368941Y41694D01*

-X369223Y41717D01*

-X369499Y41783D01*

-X369761Y41891D01*

-X370002Y42039D01*

-X370218Y42223D01*

-X370402Y42439D01*

-X370550Y42680D01*

-X370658Y42942D01*

-X370724Y43218D01*

-X370741Y43500D01*

-X370724Y43782D01*

-X370658Y44058D01*

-X370550Y44320D01*

-X370402Y44561D01*

-X370218Y44777D01*

-X370002Y44961D01*

-X369761Y45109D01*

-X369499Y45217D01*

-X369223Y45283D01*

-X368941Y45306D01*

-X368938Y45305D01*

-Y46695D01*

-X368941Y46694D01*

-X369223Y46717D01*

-X369499Y46783D01*

-X369761Y46891D01*

-X370002Y47039D01*

-X370218Y47223D01*

-X370402Y47439D01*

-X370550Y47680D01*

-X370658Y47942D01*

-X370724Y48218D01*

-X370741Y48500D01*

-X370724Y48782D01*

-X370658Y49058D01*

-X370550Y49320D01*

-X370402Y49561D01*

-X370218Y49777D01*

-X370002Y49961D01*

-X369761Y50109D01*

-X369499Y50217D01*

-X369223Y50283D01*

-X368941Y50306D01*

-X368938Y50305D01*

-Y132000D01*

-X374938D01*

-Y48805D01*

-X374659Y48783D01*

-X374383Y48717D01*

-X374121Y48609D01*

-X373880Y48461D01*

-X373664Y48277D01*

-X373480Y48061D01*

-X373332Y47820D01*

-X373224Y47558D01*

-X373158Y47282D01*

-X373135Y47000D01*

-X373158Y46718D01*

-X373224Y46442D01*

-X373332Y46180D01*

-X373480Y45939D01*

-X373664Y45723D01*

-X373880Y45539D01*

-X374121Y45391D01*

-X374383Y45283D01*

-X374520Y45250D01*

-X374383Y45217D01*

-X374121Y45109D01*

-X373880Y44961D01*

-X373664Y44777D01*

-X373480Y44561D01*

-X373332Y44320D01*

-X373224Y44058D01*

-X373158Y43782D01*

-X373135Y43500D01*

-X373158Y43218D01*

-X373224Y42942D01*

-X373332Y42680D01*

-X373480Y42439D01*

-X373664Y42223D01*

-X373880Y42039D01*

-X374121Y41891D01*

-X374383Y41783D01*

-X374659Y41717D01*

-X374938Y41695D01*

-Y39000D01*

-G37*

-G36*

-X368938D02*X354938D01*

-Y91694D01*

-X354941Y91693D01*

-X355223Y91716D01*

-X355499Y91782D01*

-X355761Y91890D01*

-X356002Y92038D01*

-X356218Y92222D01*

-X356402Y92438D01*

-X356550Y92679D01*

-X356658Y92941D01*

-X356724Y93217D01*

-X356741Y93499D01*

-X356724Y93781D01*

-X356658Y94057D01*

-X356550Y94319D01*

-X356402Y94560D01*

-X356218Y94776D01*

-X356002Y94960D01*

-X355761Y95108D01*

-X355499Y95216D01*

-X355223Y95282D01*

-X354941Y95305D01*

-X354938Y95304D01*

-Y96194D01*

-X354941Y96193D01*

-X355223Y96216D01*

-X355499Y96282D01*

-X355761Y96390D01*

-X356002Y96538D01*

-X356218Y96722D01*

-X356402Y96938D01*

-X356550Y97179D01*

-X356658Y97441D01*

-X356724Y97717D01*

-X356741Y97999D01*

-X356724Y98281D01*

-X356658Y98557D01*

-X356550Y98819D01*

-X356402Y99060D01*

-X356218Y99276D01*

-X356002Y99460D01*

-X355761Y99608D01*

-X355499Y99716D01*

-X355223Y99782D01*

-X354941Y99805D01*

-X354938Y99804D01*

-Y102194D01*

-X354941Y102193D01*

-X355223Y102216D01*

-X355499Y102282D01*

-X355761Y102390D01*

-X356002Y102538D01*

-X356218Y102722D01*

-X356402Y102938D01*

-X356550Y103179D01*

-X356658Y103441D01*

-X356724Y103717D01*

-X356741Y103999D01*

-X356724Y104281D01*

-X356658Y104557D01*

-X356550Y104819D01*

-X356402Y105060D01*

-X356218Y105276D01*

-X356002Y105460D01*

-X355761Y105608D01*

-X355499Y105716D01*

-X355223Y105782D01*

-X354941Y105805D01*

-X354938Y105804D01*

-Y108194D01*

-X354941Y108193D01*

-X355223Y108216D01*

-X355499Y108282D01*

-X355761Y108390D01*

-X356002Y108538D01*

-X356218Y108722D01*

-X356402Y108938D01*

-X356550Y109179D01*

-X356658Y109441D01*

-X356724Y109717D01*

-X356741Y109999D01*

-X356724Y110281D01*

-X356658Y110557D01*

-X356550Y110819D01*

-X356402Y111060D01*

-X356218Y111276D01*

-X356002Y111460D01*

-X355761Y111608D01*

-X355499Y111716D01*

-X355223Y111782D01*

-X354941Y111805D01*

-X354938Y111804D01*

-Y114194D01*

-X354941Y114193D01*

-X355223Y114216D01*

-X355499Y114282D01*

-X355761Y114390D01*

-X356002Y114538D01*

-X356218Y114722D01*

-X356402Y114938D01*

-X356550Y115179D01*

-X356658Y115441D01*

-X356724Y115717D01*

-X356741Y115999D01*

-X356724Y116281D01*

-X356658Y116557D01*

-X356550Y116819D01*

-X356402Y117060D01*

-X356218Y117276D01*

-X356002Y117460D01*

-X355761Y117608D01*

-X355499Y117716D01*

-X355223Y117782D01*

-X354941Y117805D01*

-X354938Y117804D01*

-Y120194D01*

-X354941Y120193D01*

-X355223Y120216D01*

-X355499Y120282D01*

-X355761Y120390D01*

-X356002Y120538D01*

-X356218Y120722D01*

-X356402Y120938D01*

-X356550Y121179D01*

-X356658Y121441D01*

-X356724Y121717D01*

-X356741Y121999D01*

-X356724Y122281D01*

-X356658Y122557D01*

-X356550Y122819D01*

-X356402Y123060D01*

-X356218Y123276D01*

-X356002Y123460D01*

-X355761Y123608D01*

-X355499Y123716D01*

-X355223Y123782D01*

-X354941Y123805D01*

-X354938Y123804D01*

-Y126194D01*

-X354941Y126193D01*

-X355223Y126216D01*

-X355499Y126282D01*

-X355761Y126390D01*

-X356002Y126538D01*

-X356218Y126722D01*

-X356402Y126938D01*

-X356550Y127179D01*

-X356658Y127441D01*

-X356724Y127717D01*

-X356741Y127999D01*

-X356724Y128281D01*

-X356658Y128557D01*

-X356550Y128819D01*

-X356402Y129060D01*

-X356218Y129276D01*

-X356002Y129460D01*

-X355761Y129608D01*

-X355499Y129716D01*

-X355223Y129782D01*

-X354941Y129805D01*

-X354938Y129804D01*

-Y132000D01*

-X368938D01*

-Y50305D01*

-X368659Y50283D01*

-X368383Y50217D01*

-X368121Y50109D01*

-X367880Y49961D01*

-X367664Y49777D01*

-X367480Y49561D01*

-X367332Y49320D01*

-X367224Y49058D01*

-X367158Y48782D01*

-X367135Y48500D01*

-X367158Y48218D01*

-X367224Y47942D01*

-X367332Y47680D01*

-X367480Y47439D01*

-X367664Y47223D01*

-X367880Y47039D01*

-X368121Y46891D01*

-X368383Y46783D01*

-X368659Y46717D01*

-X368938Y46695D01*

-Y45305D01*

-X368659Y45283D01*

-X368383Y45217D01*

-X368121Y45109D01*

-X367880Y44961D01*

-X367664Y44777D01*

-X367480Y44561D01*

-X367332Y44320D01*

-X367224Y44058D01*

-X367158Y43782D01*

-X367135Y43500D01*

-X367158Y43218D01*

-X367224Y42942D01*

-X367332Y42680D01*

-X367480Y42439D01*

-X367664Y42223D01*

-X367880Y42039D01*

-X368121Y41891D01*

-X368383Y41783D01*

-X368659Y41717D01*

-X368938Y41695D01*

-Y39000D01*

-G37*

-G36*

-X354938D02*X299441D01*

-Y44998D01*

-X299559Y45007D01*

-X299673Y45035D01*

-X299783Y45080D01*

-X299883Y45141D01*

-X299973Y45218D01*

-X300050Y45308D01*

-X300111Y45408D01*

-X300156Y45518D01*

-X300184Y45632D01*

-X300191Y45750D01*

-Y49250D01*

-X300184Y49368D01*

-X300156Y49482D01*

-X300111Y49592D01*

-X300050Y49692D01*

-X299973Y49782D01*

-X299883Y49859D01*

-X299783Y49920D01*

-X299673Y49965D01*

-X299559Y49993D01*

-X299441Y50002D01*

-Y54937D01*

-X299686Y55337D01*

-X299972Y56028D01*

-X300147Y56755D01*

-X300191Y57500D01*

-X300147Y58245D01*

-X299972Y58972D01*

-X299686Y59663D01*

-X299441Y60063D01*

-Y64937D01*

-X299686Y65337D01*

-X299972Y66028D01*

-X300147Y66755D01*

-X300191Y67500D01*

-X300147Y68245D01*

-X299972Y68972D01*

-X299686Y69663D01*

-X299441Y70063D01*

-Y76000D01*

-X313941D01*

-Y132000D01*

-X354938D01*

-Y129804D01*

-X354659Y129782D01*

-X354383Y129716D01*

-X354121Y129608D01*

-X353880Y129460D01*

-X353664Y129276D01*

-X353480Y129060D01*

-X353332Y128819D01*

-X353224Y128557D01*

-X353158Y128281D01*

-X353135Y127999D01*

-X353158Y127717D01*

-X353224Y127441D01*

-X353332Y127179D01*

-X353480Y126938D01*

-X353664Y126722D01*

-X353880Y126538D01*

-X354121Y126390D01*

-X354383Y126282D01*

-X354659Y126216D01*

-X354938Y126194D01*

-Y123804D01*

-X354659Y123782D01*

-X354383Y123716D01*

-X354121Y123608D01*

-X353880Y123460D01*

-X353664Y123276D01*

-X353480Y123060D01*

-X353332Y122819D01*

-X353224Y122557D01*

-X353158Y122281D01*

-X353135Y121999D01*

-X353158Y121717D01*

-X353224Y121441D01*

-X353332Y121179D01*

-X353480Y120938D01*

-X353664Y120722D01*

-X353880Y120538D01*

-X354121Y120390D01*

-X354383Y120282D01*

-X354659Y120216D01*

-X354938Y120194D01*

-Y117804D01*

-X354659Y117782D01*

-X354383Y117716D01*

-X354121Y117608D01*

-X353880Y117460D01*

-X353664Y117276D01*

-X353480Y117060D01*

-X353332Y116819D01*

-X353224Y116557D01*

-X353158Y116281D01*

-X353135Y115999D01*

-X353158Y115717D01*

-X353224Y115441D01*

-X353332Y115179D01*

-X353480Y114938D01*

-X353664Y114722D01*

-X353880Y114538D01*

-X354121Y114390D01*

-X354383Y114282D01*

-X354659Y114216D01*

-X354938Y114194D01*

-Y111804D01*

-X354659Y111782D01*

-X354383Y111716D01*

-X354121Y111608D01*

-X353880Y111460D01*

-X353664Y111276D01*

-X353480Y111060D01*

-X353332Y110819D01*

-X353224Y110557D01*

-X353158Y110281D01*

-X353135Y109999D01*

-X353158Y109717D01*

-X353224Y109441D01*

-X353332Y109179D01*

-X353480Y108938D01*

-X353664Y108722D01*

-X353880Y108538D01*

-X354121Y108390D01*

-X354383Y108282D01*

-X354659Y108216D01*

-X354938Y108194D01*

-Y105804D01*

-X354659Y105782D01*

-X354383Y105716D01*

-X354121Y105608D01*

-X353880Y105460D01*

-X353664Y105276D01*

-X353480Y105060D01*

-X353332Y104819D01*

-X353224Y104557D01*

-X353158Y104281D01*

-X353135Y103999D01*

-X353158Y103717D01*

-X353224Y103441D01*

-X353332Y103179D01*

-X353480Y102938D01*

-X353664Y102722D01*

-X353880Y102538D01*

-X354121Y102390D01*

-X354383Y102282D01*

-X354659Y102216D01*

-X354938Y102194D01*

-Y99804D01*

-X354659Y99782D01*

-X354383Y99716D01*

-X354121Y99608D01*

-X353880Y99460D01*

-X353664Y99276D01*

-X353480Y99060D01*

-X353332Y98819D01*

-X353224Y98557D01*

-X353158Y98281D01*

-X353135Y97999D01*

-X353158Y97717D01*

-X353224Y97441D01*

-X353332Y97179D01*

-X353480Y96938D01*

-X353664Y96722D01*

-X353880Y96538D01*

-X354121Y96390D01*

-X354383Y96282D01*

-X354659Y96216D01*

-X354938Y96194D01*

-Y95304D01*

-X354659Y95282D01*

-X354383Y95216D01*

-X354121Y95108D01*

-X353880Y94960D01*

-X353664Y94776D01*

-X353480Y94560D01*

-X353332Y94319D01*

-X353224Y94057D01*

-X353158Y93781D01*

-X353135Y93499D01*

-X353158Y93217D01*

-X353224Y92941D01*

-X353332Y92679D01*

-X353480Y92438D01*

-X353664Y92222D01*

-X353880Y92038D01*

-X354121Y91890D01*

-X354383Y91782D01*

-X354659Y91716D01*

-X354938Y91694D01*

-Y39000D01*

-G37*

-G36*

-X299441Y70063D02*X299296Y70301D01*

-X298810Y70869D01*

-X298242Y71355D01*

-X297604Y71745D01*

-X296913Y72031D01*

-X296186Y72206D01*

-X295441Y72265D01*

-Y76000D01*

-X299441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X299296Y60301D01*

-X298810Y60869D01*

-X298242Y61355D01*

-X297604Y61745D01*

-X296913Y62031D01*

-X296186Y62206D01*

-X295441Y62265D01*

-Y62735D01*

-X296186Y62794D01*

-X296913Y62969D01*

-X297604Y63255D01*

-X298242Y63645D01*

-X298810Y64131D01*

-X299296Y64699D01*

-X299441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X295441D01*

-Y42750D01*

-X297191D01*

-X297309Y42757D01*

-X297423Y42785D01*

-X297533Y42830D01*

-X297633Y42891D01*

-X297723Y42968D01*

-X297800Y43058D01*

-X297861Y43158D01*

-X297906Y43268D01*

-X297934Y43382D01*

-X297943Y43500D01*

-X297934Y43618D01*

-X297906Y43732D01*

-X297861Y43842D01*

-X297800Y43942D01*

-X297723Y44032D01*

-X297633Y44109D01*

-X297533Y44170D01*

-X297423Y44215D01*

-X297309Y44243D01*

-X297191Y44250D01*

-X295441D01*

-Y50750D01*

-X297191D01*

-X297309Y50757D01*

-X297423Y50785D01*

-X297533Y50830D01*

-X297633Y50891D01*

-X297723Y50968D01*

-X297800Y51058D01*

-X297861Y51158D01*

-X297906Y51268D01*

-X297934Y51382D01*

-X297943Y51500D01*

-X297934Y51618D01*

-X297906Y51732D01*

-X297861Y51842D01*

-X297800Y51942D01*

-X297723Y52032D01*

-X297633Y52109D01*

-X297533Y52170D01*

-X297423Y52215D01*

-X297309Y52243D01*

-X297191Y52250D01*

-X295441D01*

-Y52735D01*

-X296186Y52794D01*

-X296913Y52969D01*

-X297604Y53255D01*

-X298242Y53645D01*

-X298810Y54131D01*

-X299296Y54699D01*

-X299441Y54937D01*

-Y50002D01*

-X299323Y49993D01*

-X299209Y49965D01*

-X299099Y49920D01*

-X298999Y49859D01*

-X298909Y49782D01*

-X298832Y49692D01*

-X298771Y49592D01*

-X298726Y49482D01*

-X298698Y49368D01*

-X298691Y49250D01*

-Y45750D01*

-X298698Y45632D01*

-X298726Y45518D01*

-X298771Y45408D01*

-X298832Y45308D01*

-X298909Y45218D01*

-X298999Y45141D01*

-X299099Y45080D01*

-X299209Y45035D01*

-X299323Y45007D01*

-X299441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X291441Y64937D02*X291586Y64699D01*

-X292072Y64131D01*

-X292640Y63645D01*

-X293278Y63255D01*

-X293969Y62969D01*

-X294696Y62794D01*

-X295441Y62735D01*

-X295441D01*

-Y62265D01*

-X295441D01*

-X294696Y62206D01*

-X293969Y62031D01*

-X293278Y61745D01*

-X292640Y61355D01*

-X292072Y60869D01*

-X291586Y60301D01*

-X291441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X295441D01*

-Y72265D01*

-X295441D01*

-X294696Y72206D01*

-X293969Y72031D01*

-X293278Y71745D01*

-X292640Y71355D01*

-X292072Y70869D01*

-X291586Y70301D01*

-X291441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X295441Y39000D02*X291441D01*

-Y44998D01*

-X291559Y45007D01*

-X291673Y45035D01*

-X291783Y45080D01*

-X291883Y45141D01*

-X291973Y45218D01*

-X292050Y45308D01*

-X292111Y45408D01*

-X292156Y45518D01*

-X292184Y45632D01*

-X292191Y45750D01*

-Y49250D01*

-X292184Y49368D01*

-X292156Y49482D01*

-X292111Y49592D01*

-X292050Y49692D01*

-X291973Y49782D01*

-X291883Y49859D01*

-X291783Y49920D01*

-X291673Y49965D01*

-X291559Y49993D01*

-X291441Y50002D01*

-Y54937D01*

-X291586Y54699D01*

-X292072Y54131D01*

-X292640Y53645D01*

-X293278Y53255D01*

-X293969Y52969D01*

-X294696Y52794D01*

-X295441Y52735D01*

-X295441D01*

-Y52250D01*

-X293691D01*

-X293573Y52243D01*

-X293459Y52215D01*

-X293349Y52170D01*

-X293249Y52109D01*

-X293159Y52032D01*

-X293082Y51942D01*

-X293021Y51842D01*

-X292976Y51732D01*

-X292948Y51618D01*

-X292939Y51500D01*

-X292948Y51382D01*

-X292976Y51268D01*

-X293021Y51158D01*

-X293082Y51058D01*

-X293159Y50968D01*

-X293249Y50891D01*

-X293349Y50830D01*

-X293459Y50785D01*

-X293573Y50757D01*

-X293691Y50750D01*

-X295441D01*

-Y44250D01*

-X293691D01*

-X293573Y44243D01*

-X293459Y44215D01*

-X293349Y44170D01*

-X293249Y44109D01*

-X293159Y44032D01*

-X293082Y43942D01*

-X293021Y43842D01*

-X292976Y43732D01*

-X292948Y43618D01*

-X292939Y43500D01*

-X292948Y43382D01*

-X292976Y43268D01*

-X293021Y43158D01*

-X293082Y43058D01*

-X293159Y42968D01*

-X293249Y42891D01*

-X293349Y42830D01*

-X293459Y42785D01*

-X293573Y42757D01*

-X293691Y42750D01*

-X295441D01*

-Y39000D01*

-G37*

-G36*

-X291441D02*X269441D01*

-Y44998D01*

-X269559Y45007D01*

-X269673Y45035D01*

-X269783Y45080D01*

-X269883Y45141D01*

-X269973Y45218D01*

-X270050Y45308D01*

-X270111Y45408D01*

-X270156Y45518D01*

-X270184Y45632D01*

-X270191Y45750D01*

-Y49250D01*

-X270184Y49368D01*

-X270156Y49482D01*

-X270111Y49592D01*

-X270050Y49692D01*

-X269973Y49782D01*

-X269883Y49859D01*

-X269783Y49920D01*

-X269673Y49965D01*

-X269559Y49993D01*

-X269441Y50002D01*

-Y54937D01*

-X269686Y55337D01*

-X269972Y56028D01*

-X270147Y56755D01*

-X270191Y57500D01*

-X270147Y58245D01*

-X269972Y58972D01*

-X269686Y59663D01*

-X269441Y60063D01*

-Y64937D01*

-X269686Y65337D01*

-X269972Y66028D01*

-X270147Y66755D01*

-X270191Y67500D01*

-X270147Y68245D01*

-X269972Y68972D01*

-X269686Y69663D01*

-X269441Y70063D01*

-Y76000D01*

-X291441D01*

-Y70063D01*

-X291196Y69663D01*

-X290910Y68972D01*

-X290735Y68245D01*

-X290676Y67500D01*

-X290735Y66755D01*

-X290910Y66028D01*

-X291196Y65337D01*

-X291441Y64937D01*

-Y60063D01*

-X291196Y59663D01*

-X290910Y58972D01*

-X290735Y58245D01*

-X290676Y57500D01*

-X290735Y56755D01*

-X290910Y56028D01*

-X291196Y55337D01*

-X291441Y54937D01*

-Y50002D01*

-X291323Y49993D01*

-X291209Y49965D01*

-X291099Y49920D01*

-X290999Y49859D01*

-X290909Y49782D01*

-X290832Y49692D01*

-X290771Y49592D01*

-X290726Y49482D01*

-X290698Y49368D01*

-X290691Y49250D01*

-Y45750D01*

-X290698Y45632D01*

-X290726Y45518D01*

-X290771Y45408D01*

-X290832Y45308D01*

-X290909Y45218D01*

-X290999Y45141D01*

-X291099Y45080D01*

-X291209Y45035D01*

-X291323Y45007D01*

-X291441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X269441Y70063D02*X269296Y70301D01*

-X268810Y70869D01*

-X268242Y71355D01*

-X267604Y71745D01*

-X266913Y72031D01*

-X266186Y72206D01*

-X265441Y72265D01*

-Y76000D01*

-X269441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X269296Y60301D01*

-X268810Y60869D01*

-X268242Y61355D01*

-X267604Y61745D01*

-X266913Y62031D01*

-X266186Y62206D01*

-X265441Y62265D01*

-Y62735D01*

-X266186Y62794D01*

-X266913Y62969D01*

-X267604Y63255D01*

-X268242Y63645D01*

-X268810Y64131D01*

-X269296Y64699D01*

-X269441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X265441D01*

-Y42750D01*

-X267191D01*

-X267309Y42757D01*

-X267423Y42785D01*

-X267533Y42830D01*

-X267633Y42891D01*

-X267723Y42968D01*

-X267800Y43058D01*

-X267861Y43158D01*

-X267906Y43268D01*

-X267934Y43382D01*

-X267943Y43500D01*

-X267934Y43618D01*

-X267906Y43732D01*

-X267861Y43842D01*

-X267800Y43942D01*

-X267723Y44032D01*

-X267633Y44109D01*

-X267533Y44170D01*

-X267423Y44215D01*

-X267309Y44243D01*

-X267191Y44250D01*

-X265441D01*

-Y50750D01*

-X267191D01*

-X267309Y50757D01*

-X267423Y50785D01*

-X267533Y50830D01*

-X267633Y50891D01*

-X267723Y50968D01*

-X267800Y51058D01*

-X267861Y51158D01*

-X267906Y51268D01*

-X267934Y51382D01*

-X267943Y51500D01*

-X267934Y51618D01*

-X267906Y51732D01*

-X267861Y51842D01*

-X267800Y51942D01*

-X267723Y52032D01*

-X267633Y52109D01*

-X267533Y52170D01*

-X267423Y52215D01*

-X267309Y52243D01*

-X267191Y52250D01*

-X265441D01*

-Y52735D01*

-X266186Y52794D01*

-X266913Y52969D01*

-X267604Y53255D01*

-X268242Y53645D01*

-X268810Y54131D01*

-X269296Y54699D01*

-X269441Y54937D01*

-Y50002D01*

-X269323Y49993D01*

-X269209Y49965D01*

-X269099Y49920D01*

-X268999Y49859D01*

-X268909Y49782D01*

-X268832Y49692D01*

-X268771Y49592D01*

-X268726Y49482D01*

-X268698Y49368D01*

-X268691Y49250D01*

-Y45750D01*

-X268698Y45632D01*

-X268726Y45518D01*

-X268771Y45408D01*

-X268832Y45308D01*

-X268909Y45218D01*

-X268999Y45141D01*

-X269099Y45080D01*

-X269209Y45035D01*

-X269323Y45007D01*

-X269441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X261441Y64937D02*X261586Y64699D01*

-X262072Y64131D01*

-X262640Y63645D01*

-X263278Y63255D01*

-X263969Y62969D01*

-X264696Y62794D01*

-X265441Y62735D01*

-X265441D01*

-Y62265D01*

-X265441D01*

-X264696Y62206D01*

-X263969Y62031D01*

-X263278Y61745D01*

-X262640Y61355D01*

-X262072Y60869D01*

-X261586Y60301D01*

-X261441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X265441D01*

-Y72265D01*

-X265441D01*

-X264696Y72206D01*

-X263969Y72031D01*

-X263278Y71745D01*

-X262640Y71355D01*

-X262072Y70869D01*

-X261586Y70301D01*

-X261441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X265441Y39000D02*X261441D01*

-Y44998D01*

-X261559Y45007D01*

-X261673Y45035D01*

-X261783Y45080D01*

-X261883Y45141D01*

-X261973Y45218D01*

-X262050Y45308D01*

-X262111Y45408D01*

-X262156Y45518D01*

-X262184Y45632D01*

-X262191Y45750D01*

-Y49250D01*

-X262184Y49368D01*

-X262156Y49482D01*

-X262111Y49592D01*

-X262050Y49692D01*

-X261973Y49782D01*

-X261883Y49859D01*

-X261783Y49920D01*

-X261673Y49965D01*

-X261559Y49993D01*

-X261441Y50002D01*

-Y54937D01*

-X261586Y54699D01*

-X262072Y54131D01*

-X262640Y53645D01*

-X263278Y53255D01*

-X263969Y52969D01*

-X264696Y52794D01*

-X265441Y52735D01*

-X265441D01*

-Y52250D01*

-X263691D01*

-X263573Y52243D01*

-X263459Y52215D01*

-X263349Y52170D01*

-X263249Y52109D01*

-X263159Y52032D01*

-X263082Y51942D01*

-X263021Y51842D01*

-X262976Y51732D01*

-X262948Y51618D01*

-X262939Y51500D01*

-X262948Y51382D01*

-X262976Y51268D01*

-X263021Y51158D01*

-X263082Y51058D01*

-X263159Y50968D01*

-X263249Y50891D01*

-X263349Y50830D01*

-X263459Y50785D01*

-X263573Y50757D01*

-X263691Y50750D01*

-X265441D01*

-Y44250D01*

-X263691D01*

-X263573Y44243D01*

-X263459Y44215D01*

-X263349Y44170D01*

-X263249Y44109D01*

-X263159Y44032D01*

-X263082Y43942D01*

-X263021Y43842D01*

-X262976Y43732D01*

-X262948Y43618D01*

-X262939Y43500D01*

-X262948Y43382D01*

-X262976Y43268D01*

-X263021Y43158D01*

-X263082Y43058D01*

-X263159Y42968D01*

-X263249Y42891D01*

-X263349Y42830D01*

-X263459Y42785D01*

-X263573Y42757D01*

-X263691Y42750D01*

-X265441D01*

-Y39000D01*

-G37*

-G36*

-X261441D02*X239441D01*

-Y44998D01*

-X239559Y45007D01*

-X239673Y45035D01*

-X239783Y45080D01*

-X239883Y45141D01*

-X239973Y45218D01*

-X240050Y45308D01*

-X240111Y45408D01*

-X240156Y45518D01*

-X240184Y45632D01*

-X240191Y45750D01*

-Y49250D01*

-X240184Y49368D01*

-X240156Y49482D01*

-X240111Y49592D01*

-X240050Y49692D01*

-X239973Y49782D01*

-X239883Y49859D01*

-X239783Y49920D01*

-X239673Y49965D01*

-X239559Y49993D01*

-X239441Y50002D01*

-Y54937D01*

-X239686Y55337D01*

-X239972Y56028D01*

-X240147Y56755D01*

-X240191Y57500D01*

-X240147Y58245D01*

-X239972Y58972D01*

-X239686Y59663D01*

-X239441Y60063D01*

-Y64937D01*

-X239686Y65337D01*

-X239972Y66028D01*

-X240147Y66755D01*

-X240191Y67500D01*

-X240147Y68245D01*

-X239972Y68972D01*

-X239686Y69663D01*

-X239441Y70063D01*

-Y76000D01*

-X261441D01*

-Y70063D01*

-X261196Y69663D01*

-X260910Y68972D01*

-X260735Y68245D01*

-X260676Y67500D01*

-X260735Y66755D01*

-X260910Y66028D01*

-X261196Y65337D01*

-X261441Y64937D01*

-Y60063D01*

-X261196Y59663D01*

-X260910Y58972D01*

-X260735Y58245D01*

-X260676Y57500D01*

-X260735Y56755D01*

-X260910Y56028D01*

-X261196Y55337D01*

-X261441Y54937D01*

-Y50002D01*

-X261323Y49993D01*

-X261209Y49965D01*

-X261099Y49920D01*

-X260999Y49859D01*

-X260909Y49782D01*

-X260832Y49692D01*

-X260771Y49592D01*

-X260726Y49482D01*

-X260698Y49368D01*

-X260691Y49250D01*

-Y45750D01*

-X260698Y45632D01*

-X260726Y45518D01*

-X260771Y45408D01*

-X260832Y45308D01*

-X260909Y45218D01*

-X260999Y45141D01*

-X261099Y45080D01*

-X261209Y45035D01*

-X261323Y45007D01*

-X261441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X239441Y70063D02*X239296Y70301D01*

-X238810Y70869D01*

-X238242Y71355D01*

-X237604Y71745D01*

-X236913Y72031D01*

-X236186Y72206D01*

-X235441Y72265D01*

-Y76000D01*

-X239441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X239296Y60301D01*

-X238810Y60869D01*

-X238242Y61355D01*

-X237604Y61745D01*

-X236913Y62031D01*

-X236186Y62206D01*

-X235441Y62265D01*

-Y62735D01*

-X236186Y62794D01*

-X236913Y62969D01*

-X237604Y63255D01*

-X238242Y63645D01*

-X238810Y64131D01*

-X239296Y64699D01*

-X239441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X235441D01*

-Y42750D01*

-X237191D01*

-X237309Y42757D01*

-X237423Y42785D01*

-X237533Y42830D01*

-X237633Y42891D01*

-X237723Y42968D01*

-X237800Y43058D01*

-X237861Y43158D01*

-X237906Y43268D01*

-X237934Y43382D01*

-X237943Y43500D01*

-X237934Y43618D01*

-X237906Y43732D01*

-X237861Y43842D01*

-X237800Y43942D01*

-X237723Y44032D01*

-X237633Y44109D01*

-X237533Y44170D01*

-X237423Y44215D01*

-X237309Y44243D01*

-X237191Y44250D01*

-X235441D01*

-Y50750D01*

-X237191D01*

-X237309Y50757D01*

-X237423Y50785D01*

-X237533Y50830D01*

-X237633Y50891D01*

-X237723Y50968D01*

-X237800Y51058D01*

-X237861Y51158D01*

-X237906Y51268D01*

-X237934Y51382D01*

-X237943Y51500D01*

-X237934Y51618D01*

-X237906Y51732D01*

-X237861Y51842D01*

-X237800Y51942D01*

-X237723Y52032D01*

-X237633Y52109D01*

-X237533Y52170D01*

-X237423Y52215D01*

-X237309Y52243D01*

-X237191Y52250D01*

-X235441D01*

-Y52735D01*

-X236186Y52794D01*

-X236913Y52969D01*

-X237604Y53255D01*

-X238242Y53645D01*

-X238810Y54131D01*

-X239296Y54699D01*

-X239441Y54937D01*

-Y50002D01*

-X239323Y49993D01*

-X239209Y49965D01*

-X239099Y49920D01*

-X238999Y49859D01*

-X238909Y49782D01*

-X238832Y49692D01*

-X238771Y49592D01*

-X238726Y49482D01*

-X238698Y49368D01*

-X238691Y49250D01*

-Y45750D01*

-X238698Y45632D01*

-X238726Y45518D01*

-X238771Y45408D01*

-X238832Y45308D01*

-X238909Y45218D01*

-X238999Y45141D01*

-X239099Y45080D01*

-X239209Y45035D01*

-X239323Y45007D01*

-X239441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X231441Y64937D02*X231586Y64699D01*

-X232072Y64131D01*

-X232640Y63645D01*

-X233278Y63255D01*

-X233969Y62969D01*

-X234696Y62794D01*

-X235441Y62735D01*

-X235441D01*

-Y62265D01*

-X235441D01*

-X234696Y62206D01*

-X233969Y62031D01*

-X233278Y61745D01*

-X232640Y61355D01*

-X232072Y60869D01*

-X231586Y60301D01*

-X231441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X235441D01*

-Y72265D01*

-X235441D01*

-X234696Y72206D01*

-X233969Y72031D01*

-X233278Y71745D01*

-X232640Y71355D01*

-X232072Y70869D01*

-X231586Y70301D01*

-X231441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X235441Y39000D02*X231441D01*

-Y44998D01*

-X231559Y45007D01*

-X231673Y45035D01*

-X231783Y45080D01*

-X231883Y45141D01*

-X231973Y45218D01*

-X232050Y45308D01*

-X232111Y45408D01*

-X232156Y45518D01*

-X232184Y45632D01*

-X232191Y45750D01*

-Y49250D01*

-X232184Y49368D01*

-X232156Y49482D01*

-X232111Y49592D01*

-X232050Y49692D01*

-X231973Y49782D01*

-X231883Y49859D01*

-X231783Y49920D01*

-X231673Y49965D01*

-X231559Y49993D01*

-X231441Y50002D01*

-Y54937D01*

-X231586Y54699D01*

-X232072Y54131D01*

-X232640Y53645D01*

-X233278Y53255D01*

-X233969Y52969D01*

-X234696Y52794D01*

-X235441Y52735D01*

-X235441D01*

-Y52250D01*

-X233691D01*

-X233573Y52243D01*

-X233459Y52215D01*

-X233349Y52170D01*

-X233249Y52109D01*

-X233159Y52032D01*

-X233082Y51942D01*

-X233021Y51842D01*

-X232976Y51732D01*

-X232948Y51618D01*

-X232939Y51500D01*

-X232948Y51382D01*

-X232976Y51268D01*

-X233021Y51158D01*

-X233082Y51058D01*

-X233159Y50968D01*

-X233249Y50891D01*

-X233349Y50830D01*

-X233459Y50785D01*

-X233573Y50757D01*

-X233691Y50750D01*

-X235441D01*

-Y44250D01*

-X233691D01*

-X233573Y44243D01*

-X233459Y44215D01*

-X233349Y44170D01*

-X233249Y44109D01*

-X233159Y44032D01*

-X233082Y43942D01*

-X233021Y43842D01*

-X232976Y43732D01*

-X232948Y43618D01*

-X232939Y43500D01*

-X232948Y43382D01*

-X232976Y43268D01*

-X233021Y43158D01*

-X233082Y43058D01*

-X233159Y42968D01*

-X233249Y42891D01*

-X233349Y42830D01*

-X233459Y42785D01*

-X233573Y42757D01*

-X233691Y42750D01*

-X235441D01*

-Y39000D01*

-G37*

-G36*

-X231441D02*X209441D01*

-Y44998D01*

-X209559Y45007D01*

-X209673Y45035D01*

-X209783Y45080D01*

-X209883Y45141D01*

-X209973Y45218D01*

-X210050Y45308D01*

-X210111Y45408D01*

-X210156Y45518D01*

-X210184Y45632D01*

-X210191Y45750D01*

-Y49250D01*

-X210184Y49368D01*

-X210156Y49482D01*

-X210111Y49592D01*

-X210050Y49692D01*

-X209973Y49782D01*

-X209883Y49859D01*

-X209783Y49920D01*

-X209673Y49965D01*

-X209559Y49993D01*

-X209441Y50002D01*

-Y54937D01*

-X209686Y55337D01*

-X209972Y56028D01*

-X210147Y56755D01*

-X210191Y57500D01*

-X210147Y58245D01*

-X209972Y58972D01*

-X209686Y59663D01*

-X209441Y60063D01*

-Y64937D01*

-X209686Y65337D01*

-X209972Y66028D01*

-X210147Y66755D01*

-X210191Y67500D01*

-X210147Y68245D01*

-X209972Y68972D01*

-X209686Y69663D01*

-X209441Y70063D01*

-Y76000D01*

-X231441D01*

-Y70063D01*

-X231196Y69663D01*

-X230910Y68972D01*

-X230735Y68245D01*

-X230676Y67500D01*

-X230735Y66755D01*

-X230910Y66028D01*

-X231196Y65337D01*

-X231441Y64937D01*

-Y60063D01*

-X231196Y59663D01*

-X230910Y58972D01*

-X230735Y58245D01*

-X230676Y57500D01*

-X230735Y56755D01*

-X230910Y56028D01*

-X231196Y55337D01*

-X231441Y54937D01*

-Y50002D01*

-X231323Y49993D01*

-X231209Y49965D01*

-X231099Y49920D01*

-X230999Y49859D01*

-X230909Y49782D01*

-X230832Y49692D01*

-X230771Y49592D01*

-X230726Y49482D01*

-X230698Y49368D01*

-X230691Y49250D01*

-Y45750D01*

-X230698Y45632D01*

-X230726Y45518D01*

-X230771Y45408D01*

-X230832Y45308D01*

-X230909Y45218D01*

-X230999Y45141D01*

-X231099Y45080D01*

-X231209Y45035D01*

-X231323Y45007D01*

-X231441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X209441Y70063D02*X209296Y70301D01*

-X208810Y70869D01*

-X208242Y71355D01*

-X207604Y71745D01*

-X206913Y72031D01*

-X206186Y72206D01*

-X205441Y72265D01*

-Y76000D01*

-X209441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X209296Y60301D01*

-X208810Y60869D01*

-X208242Y61355D01*

-X207604Y61745D01*

-X206913Y62031D01*

-X206186Y62206D01*

-X205441Y62265D01*

-Y62735D01*

-X206186Y62794D01*

-X206913Y62969D01*

-X207604Y63255D01*

-X208242Y63645D01*

-X208810Y64131D01*

-X209296Y64699D01*

-X209441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X205441D01*

-Y42750D01*

-X207191D01*

-X207309Y42757D01*

-X207423Y42785D01*

-X207533Y42830D01*

-X207633Y42891D01*

-X207723Y42968D01*

-X207800Y43058D01*

-X207861Y43158D01*

-X207906Y43268D01*

-X207934Y43382D01*

-X207943Y43500D01*

-X207934Y43618D01*

-X207906Y43732D01*

-X207861Y43842D01*

-X207800Y43942D01*

-X207723Y44032D01*

-X207633Y44109D01*

-X207533Y44170D01*

-X207423Y44215D01*

-X207309Y44243D01*

-X207191Y44250D01*

-X205441D01*

-Y50750D01*

-X207191D01*

-X207309Y50757D01*

-X207423Y50785D01*

-X207533Y50830D01*

-X207633Y50891D01*

-X207723Y50968D01*

-X207800Y51058D01*

-X207861Y51158D01*

-X207906Y51268D01*

-X207934Y51382D01*

-X207943Y51500D01*

-X207934Y51618D01*

-X207906Y51732D01*

-X207861Y51842D01*

-X207800Y51942D01*

-X207723Y52032D01*

-X207633Y52109D01*

-X207533Y52170D01*

-X207423Y52215D01*

-X207309Y52243D01*

-X207191Y52250D01*

-X205441D01*

-Y52735D01*

-X206186Y52794D01*

-X206913Y52969D01*

-X207604Y53255D01*

-X208242Y53645D01*

-X208810Y54131D01*

-X209296Y54699D01*

-X209441Y54937D01*

-Y50002D01*

-X209323Y49993D01*

-X209209Y49965D01*

-X209099Y49920D01*

-X208999Y49859D01*

-X208909Y49782D01*

-X208832Y49692D01*

-X208771Y49592D01*

-X208726Y49482D01*

-X208698Y49368D01*

-X208691Y49250D01*

-Y45750D01*

-X208698Y45632D01*

-X208726Y45518D01*

-X208771Y45408D01*

-X208832Y45308D01*

-X208909Y45218D01*

-X208999Y45141D01*

-X209099Y45080D01*

-X209209Y45035D01*

-X209323Y45007D01*

-X209441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X201441Y64937D02*X201586Y64699D01*

-X202072Y64131D01*

-X202640Y63645D01*

-X203278Y63255D01*

-X203969Y62969D01*

-X204696Y62794D01*

-X205441Y62735D01*

-X205441D01*

-Y62265D01*

-X205441D01*

-X204696Y62206D01*

-X203969Y62031D01*

-X203278Y61745D01*

-X202640Y61355D01*

-X202072Y60869D01*

-X201586Y60301D01*

-X201441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X205441D01*

-Y72265D01*

-X205441D01*

-X204696Y72206D01*

-X203969Y72031D01*

-X203278Y71745D01*

-X202640Y71355D01*

-X202072Y70869D01*

-X201586Y70301D01*

-X201441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X205441Y39000D02*X201441D01*

-Y44998D01*

-X201559Y45007D01*

-X201673Y45035D01*

-X201783Y45080D01*

-X201883Y45141D01*

-X201973Y45218D01*

-X202050Y45308D01*

-X202111Y45408D01*

-X202156Y45518D01*

-X202184Y45632D01*

-X202191Y45750D01*

-Y49250D01*

-X202184Y49368D01*

-X202156Y49482D01*

-X202111Y49592D01*

-X202050Y49692D01*

-X201973Y49782D01*

-X201883Y49859D01*

-X201783Y49920D01*

-X201673Y49965D01*

-X201559Y49993D01*

-X201441Y50002D01*

-Y54937D01*

-X201586Y54699D01*

-X202072Y54131D01*

-X202640Y53645D01*

-X203278Y53255D01*

-X203969Y52969D01*

-X204696Y52794D01*

-X205441Y52735D01*

-X205441D01*

-Y52250D01*

-X203691D01*

-X203573Y52243D01*

-X203459Y52215D01*

-X203349Y52170D01*

-X203249Y52109D01*

-X203159Y52032D01*

-X203082Y51942D01*

-X203021Y51842D01*

-X202976Y51732D01*

-X202948Y51618D01*

-X202939Y51500D01*

-X202948Y51382D01*

-X202976Y51268D01*

-X203021Y51158D01*

-X203082Y51058D01*

-X203159Y50968D01*

-X203249Y50891D01*

-X203349Y50830D01*

-X203459Y50785D01*

-X203573Y50757D01*

-X203691Y50750D01*

-X205441D01*

-Y44250D01*

-X203691D01*

-X203573Y44243D01*

-X203459Y44215D01*

-X203349Y44170D01*

-X203249Y44109D01*

-X203159Y44032D01*

-X203082Y43942D01*

-X203021Y43842D01*

-X202976Y43732D01*

-X202948Y43618D01*

-X202939Y43500D01*

-X202948Y43382D01*

-X202976Y43268D01*

-X203021Y43158D01*

-X203082Y43058D01*

-X203159Y42968D01*

-X203249Y42891D01*

-X203349Y42830D01*

-X203459Y42785D01*

-X203573Y42757D01*

-X203691Y42750D01*

-X205441D01*

-Y39000D01*

-G37*

-G36*

-X201441D02*X179441D01*

-Y44998D01*

-X179559Y45007D01*

-X179673Y45035D01*

-X179783Y45080D01*

-X179883Y45141D01*

-X179973Y45218D01*

-X180050Y45308D01*

-X180111Y45408D01*

-X180156Y45518D01*

-X180184Y45632D01*

-X180191Y45750D01*

-Y49250D01*

-X180184Y49368D01*

-X180156Y49482D01*

-X180111Y49592D01*

-X180050Y49692D01*

-X179973Y49782D01*

-X179883Y49859D01*

-X179783Y49920D01*

-X179673Y49965D01*

-X179559Y49993D01*

-X179441Y50002D01*

-Y54937D01*

-X179686Y55337D01*

-X179972Y56028D01*

-X180147Y56755D01*

-X180191Y57500D01*

-X180147Y58245D01*

-X179972Y58972D01*

-X179686Y59663D01*

-X179441Y60063D01*

-Y64937D01*

-X179686Y65337D01*

-X179972Y66028D01*

-X180147Y66755D01*

-X180191Y67500D01*

-X180147Y68245D01*

-X179972Y68972D01*

-X179686Y69663D01*

-X179441Y70063D01*

-Y76000D01*

-X201441D01*

-Y70063D01*

-X201196Y69663D01*

-X200910Y68972D01*

-X200735Y68245D01*

-X200676Y67500D01*

-X200735Y66755D01*

-X200910Y66028D01*

-X201196Y65337D01*

-X201441Y64937D01*

-Y60063D01*

-X201196Y59663D01*

-X200910Y58972D01*

-X200735Y58245D01*

-X200676Y57500D01*

-X200735Y56755D01*

-X200910Y56028D01*

-X201196Y55337D01*

-X201441Y54937D01*

-Y50002D01*

-X201323Y49993D01*

-X201209Y49965D01*

-X201099Y49920D01*

-X200999Y49859D01*

-X200909Y49782D01*

-X200832Y49692D01*

-X200771Y49592D01*

-X200726Y49482D01*

-X200698Y49368D01*

-X200691Y49250D01*

-Y45750D01*

-X200698Y45632D01*

-X200726Y45518D01*

-X200771Y45408D01*

-X200832Y45308D01*

-X200909Y45218D01*

-X200999Y45141D01*

-X201099Y45080D01*

-X201209Y45035D01*

-X201323Y45007D01*

-X201441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X179441Y70063D02*X179296Y70301D01*

-X178810Y70869D01*

-X178242Y71355D01*

-X177604Y71745D01*

-X176913Y72031D01*

-X176186Y72206D01*

-X175441Y72265D01*

-Y76000D01*

-X179441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X179296Y60301D01*

-X178810Y60869D01*

-X178242Y61355D01*

-X177604Y61745D01*

-X176913Y62031D01*

-X176186Y62206D01*

-X175441Y62265D01*

-Y62735D01*

-X176186Y62794D01*

-X176913Y62969D01*

-X177604Y63255D01*

-X178242Y63645D01*

-X178810Y64131D01*

-X179296Y64699D01*

-X179441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X175441D01*

-Y42750D01*

-X177191D01*

-X177309Y42757D01*

-X177423Y42785D01*

-X177533Y42830D01*

-X177633Y42891D01*

-X177723Y42968D01*

-X177800Y43058D01*

-X177861Y43158D01*

-X177906Y43268D01*

-X177934Y43382D01*

-X177943Y43500D01*

-X177934Y43618D01*

-X177906Y43732D01*

-X177861Y43842D01*

-X177800Y43942D01*

-X177723Y44032D01*

-X177633Y44109D01*

-X177533Y44170D01*

-X177423Y44215D01*

-X177309Y44243D01*

-X177191Y44250D01*

-X175441D01*

-Y50750D01*

-X177191D01*

-X177309Y50757D01*

-X177423Y50785D01*

-X177533Y50830D01*

-X177633Y50891D01*

-X177723Y50968D01*

-X177800Y51058D01*

-X177861Y51158D01*

-X177906Y51268D01*

-X177934Y51382D01*

-X177943Y51500D01*

-X177934Y51618D01*

-X177906Y51732D01*

-X177861Y51842D01*

-X177800Y51942D01*

-X177723Y52032D01*

-X177633Y52109D01*

-X177533Y52170D01*

-X177423Y52215D01*

-X177309Y52243D01*

-X177191Y52250D01*

-X175441D01*

-Y52735D01*

-X176186Y52794D01*

-X176913Y52969D01*

-X177604Y53255D01*

-X178242Y53645D01*

-X178810Y54131D01*

-X179296Y54699D01*

-X179441Y54937D01*

-Y50002D01*

-X179323Y49993D01*

-X179209Y49965D01*

-X179099Y49920D01*

-X178999Y49859D01*

-X178909Y49782D01*

-X178832Y49692D01*

-X178771Y49592D01*

-X178726Y49482D01*

-X178698Y49368D01*

-X178691Y49250D01*

-Y45750D01*

-X178698Y45632D01*

-X178726Y45518D01*

-X178771Y45408D01*

-X178832Y45308D01*

-X178909Y45218D01*

-X178999Y45141D01*

-X179099Y45080D01*

-X179209Y45035D01*

-X179323Y45007D01*

-X179441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X171441Y64937D02*X171586Y64699D01*

-X172072Y64131D01*

-X172640Y63645D01*

-X173278Y63255D01*

-X173969Y62969D01*

-X174696Y62794D01*

-X175441Y62735D01*

-X175441D01*

-Y62265D01*

-X175441D01*

-X174696Y62206D01*

-X173969Y62031D01*

-X173278Y61745D01*

-X172640Y61355D01*

-X172072Y60869D01*

-X171586Y60301D01*

-X171441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X175441D01*

-Y72265D01*

-X175441D01*

-X174696Y72206D01*

-X173969Y72031D01*

-X173278Y71745D01*

-X172640Y71355D01*

-X172072Y70869D01*

-X171586Y70301D01*

-X171441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X175441Y39000D02*X171441D01*

-Y44998D01*

-X171559Y45007D01*

-X171673Y45035D01*

-X171783Y45080D01*

-X171883Y45141D01*

-X171973Y45218D01*

-X172050Y45308D01*

-X172111Y45408D01*

-X172156Y45518D01*

-X172184Y45632D01*

-X172191Y45750D01*

-Y49250D01*

-X172184Y49368D01*

-X172156Y49482D01*

-X172111Y49592D01*

-X172050Y49692D01*

-X171973Y49782D01*

-X171883Y49859D01*

-X171783Y49920D01*

-X171673Y49965D01*

-X171559Y49993D01*

-X171441Y50002D01*

-Y54937D01*

-X171586Y54699D01*

-X172072Y54131D01*

-X172640Y53645D01*

-X173278Y53255D01*

-X173969Y52969D01*

-X174696Y52794D01*

-X175441Y52735D01*

-X175441D01*

-Y52250D01*

-X173691D01*

-X173573Y52243D01*

-X173459Y52215D01*

-X173349Y52170D01*

-X173249Y52109D01*

-X173159Y52032D01*

-X173082Y51942D01*

-X173021Y51842D01*

-X172976Y51732D01*

-X172948Y51618D01*

-X172939Y51500D01*

-X172948Y51382D01*

-X172976Y51268D01*

-X173021Y51158D01*

-X173082Y51058D01*

-X173159Y50968D01*

-X173249Y50891D01*

-X173349Y50830D01*

-X173459Y50785D01*

-X173573Y50757D01*

-X173691Y50750D01*

-X175441D01*

-Y44250D01*

-X173691D01*

-X173573Y44243D01*

-X173459Y44215D01*

-X173349Y44170D01*

-X173249Y44109D01*

-X173159Y44032D01*

-X173082Y43942D01*

-X173021Y43842D01*

-X172976Y43732D01*

-X172948Y43618D01*

-X172939Y43500D01*

-X172948Y43382D01*

-X172976Y43268D01*

-X173021Y43158D01*

-X173082Y43058D01*

-X173159Y42968D01*

-X173249Y42891D01*

-X173349Y42830D01*

-X173459Y42785D01*

-X173573Y42757D01*

-X173691Y42750D01*

-X175441D01*

-Y39000D01*

-G37*

-G36*

-X171441D02*X149441D01*

-Y44998D01*

-X149559Y45007D01*

-X149673Y45035D01*

-X149783Y45080D01*

-X149883Y45141D01*

-X149973Y45218D01*

-X150050Y45308D01*

-X150111Y45408D01*

-X150156Y45518D01*

-X150184Y45632D01*

-X150191Y45750D01*

-Y49250D01*

-X150184Y49368D01*

-X150156Y49482D01*

-X150111Y49592D01*

-X150050Y49692D01*

-X149973Y49782D01*

-X149883Y49859D01*

-X149783Y49920D01*

-X149673Y49965D01*

-X149559Y49993D01*

-X149441Y50002D01*

-Y54937D01*

-X149686Y55337D01*

-X149972Y56028D01*

-X150147Y56755D01*

-X150191Y57500D01*

-X150147Y58245D01*

-X149972Y58972D01*

-X149686Y59663D01*

-X149441Y60063D01*

-Y64937D01*

-X149686Y65337D01*

-X149972Y66028D01*

-X150147Y66755D01*

-X150191Y67500D01*

-X150147Y68245D01*

-X149972Y68972D01*

-X149686Y69663D01*

-X149441Y70063D01*

-Y76000D01*

-X171441D01*

-Y70063D01*

-X171196Y69663D01*

-X170910Y68972D01*

-X170735Y68245D01*

-X170676Y67500D01*

-X170735Y66755D01*

-X170910Y66028D01*

-X171196Y65337D01*

-X171441Y64937D01*

-Y60063D01*

-X171196Y59663D01*

-X170910Y58972D01*

-X170735Y58245D01*

-X170676Y57500D01*

-X170735Y56755D01*

-X170910Y56028D01*

-X171196Y55337D01*

-X171441Y54937D01*

-Y50002D01*

-X171323Y49993D01*

-X171209Y49965D01*

-X171099Y49920D01*

-X170999Y49859D01*

-X170909Y49782D01*

-X170832Y49692D01*

-X170771Y49592D01*

-X170726Y49482D01*

-X170698Y49368D01*

-X170691Y49250D01*

-Y45750D01*

-X170698Y45632D01*

-X170726Y45518D01*

-X170771Y45408D01*

-X170832Y45308D01*

-X170909Y45218D01*

-X170999Y45141D01*

-X171099Y45080D01*

-X171209Y45035D01*

-X171323Y45007D01*

-X171441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X149441Y70063D02*X149296Y70301D01*

-X148810Y70869D01*

-X148242Y71355D01*

-X147604Y71745D01*

-X146913Y72031D01*

-X146186Y72206D01*

-X145441Y72265D01*

-Y76000D01*

-X149441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X149296Y60301D01*

-X148810Y60869D01*

-X148242Y61355D01*

-X147604Y61745D01*

-X146913Y62031D01*

-X146186Y62206D01*

-X145441Y62265D01*

-Y62735D01*

-X146186Y62794D01*

-X146913Y62969D01*

-X147604Y63255D01*

-X148242Y63645D01*

-X148810Y64131D01*

-X149296Y64699D01*

-X149441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X145441D01*

-Y42750D01*

-X147191D01*

-X147309Y42757D01*

-X147423Y42785D01*

-X147533Y42830D01*

-X147633Y42891D01*

-X147723Y42968D01*

-X147800Y43058D01*

-X147861Y43158D01*

-X147906Y43268D01*

-X147934Y43382D01*

-X147943Y43500D01*

-X147934Y43618D01*

-X147906Y43732D01*

-X147861Y43842D01*

-X147800Y43942D01*

-X147723Y44032D01*

-X147633Y44109D01*

-X147533Y44170D01*

-X147423Y44215D01*

-X147309Y44243D01*

-X147191Y44250D01*

-X145441D01*

-Y50750D01*

-X147191D01*

-X147309Y50757D01*

-X147423Y50785D01*

-X147533Y50830D01*

-X147633Y50891D01*

-X147723Y50968D01*

-X147800Y51058D01*

-X147861Y51158D01*

-X147906Y51268D01*

-X147934Y51382D01*

-X147943Y51500D01*

-X147934Y51618D01*

-X147906Y51732D01*

-X147861Y51842D01*

-X147800Y51942D01*

-X147723Y52032D01*

-X147633Y52109D01*

-X147533Y52170D01*

-X147423Y52215D01*

-X147309Y52243D01*

-X147191Y52250D01*

-X145441D01*

-Y52735D01*

-X146186Y52794D01*

-X146913Y52969D01*

-X147604Y53255D01*

-X148242Y53645D01*

-X148810Y54131D01*

-X149296Y54699D01*

-X149441Y54937D01*

-Y50002D01*

-X149323Y49993D01*

-X149209Y49965D01*

-X149099Y49920D01*

-X148999Y49859D01*

-X148909Y49782D01*

-X148832Y49692D01*

-X148771Y49592D01*

-X148726Y49482D01*

-X148698Y49368D01*

-X148691Y49250D01*

-Y45750D01*

-X148698Y45632D01*

-X148726Y45518D01*

-X148771Y45408D01*

-X148832Y45308D01*

-X148909Y45218D01*

-X148999Y45141D01*

-X149099Y45080D01*

-X149209Y45035D01*

-X149323Y45007D01*

-X149441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X141441Y64937D02*X141586Y64699D01*

-X142072Y64131D01*

-X142640Y63645D01*

-X143278Y63255D01*

-X143969Y62969D01*

-X144696Y62794D01*

-X145441Y62735D01*

-X145441D01*

-Y62265D01*

-X145441D01*

-X144696Y62206D01*

-X143969Y62031D01*

-X143278Y61745D01*

-X142640Y61355D01*

-X142072Y60869D01*

-X141586Y60301D01*

-X141441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X145441D01*

-Y72265D01*

-X145441D01*

-X144696Y72206D01*

-X143969Y72031D01*

-X143278Y71745D01*

-X142640Y71355D01*

-X142072Y70869D01*

-X141586Y70301D01*

-X141441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X145441Y39000D02*X141441D01*

-Y44998D01*

-X141559Y45007D01*

-X141673Y45035D01*

-X141783Y45080D01*

-X141883Y45141D01*

-X141973Y45218D01*

-X142050Y45308D01*

-X142111Y45408D01*

-X142156Y45518D01*

-X142184Y45632D01*

-X142191Y45750D01*

-Y49250D01*

-X142184Y49368D01*

-X142156Y49482D01*

-X142111Y49592D01*

-X142050Y49692D01*

-X141973Y49782D01*

-X141883Y49859D01*

-X141783Y49920D01*

-X141673Y49965D01*

-X141559Y49993D01*

-X141441Y50002D01*

-Y54937D01*

-X141586Y54699D01*

-X142072Y54131D01*

-X142640Y53645D01*

-X143278Y53255D01*

-X143969Y52969D01*

-X144696Y52794D01*

-X145441Y52735D01*

-X145441D01*

-Y52250D01*

-X143691D01*

-X143573Y52243D01*

-X143459Y52215D01*

-X143349Y52170D01*

-X143249Y52109D01*

-X143159Y52032D01*

-X143082Y51942D01*

-X143021Y51842D01*

-X142976Y51732D01*

-X142948Y51618D01*

-X142939Y51500D01*

-X142948Y51382D01*

-X142976Y51268D01*

-X143021Y51158D01*

-X143082Y51058D01*

-X143159Y50968D01*

-X143249Y50891D01*

-X143349Y50830D01*

-X143459Y50785D01*

-X143573Y50757D01*

-X143691Y50750D01*

-X145441D01*

-Y44250D01*

-X143691D01*

-X143573Y44243D01*

-X143459Y44215D01*

-X143349Y44170D01*

-X143249Y44109D01*

-X143159Y44032D01*

-X143082Y43942D01*

-X143021Y43842D01*

-X142976Y43732D01*

-X142948Y43618D01*

-X142939Y43500D01*

-X142948Y43382D01*

-X142976Y43268D01*

-X143021Y43158D01*

-X143082Y43058D01*

-X143159Y42968D01*

-X143249Y42891D01*

-X143349Y42830D01*

-X143459Y42785D01*

-X143573Y42757D01*

-X143691Y42750D01*

-X145441D01*

-Y39000D01*

-G37*

-G36*

-X141441D02*X119441D01*

-Y44998D01*

-X119559Y45007D01*

-X119673Y45035D01*

-X119783Y45080D01*

-X119883Y45141D01*

-X119973Y45218D01*

-X120050Y45308D01*

-X120111Y45408D01*

-X120156Y45518D01*

-X120184Y45632D01*

-X120191Y45750D01*

-Y49250D01*

-X120184Y49368D01*

-X120156Y49482D01*

-X120111Y49592D01*

-X120050Y49692D01*

-X119973Y49782D01*

-X119883Y49859D01*

-X119783Y49920D01*

-X119673Y49965D01*

-X119559Y49993D01*

-X119441Y50002D01*

-Y54937D01*

-X119686Y55337D01*

-X119972Y56028D01*

-X120147Y56755D01*

-X120191Y57500D01*

-X120147Y58245D01*

-X119972Y58972D01*

-X119686Y59663D01*

-X119441Y60063D01*

-Y64937D01*

-X119686Y65337D01*

-X119972Y66028D01*

-X120147Y66755D01*

-X120191Y67500D01*

-X120147Y68245D01*

-X119972Y68972D01*

-X119686Y69663D01*

-X119441Y70063D01*

-Y76000D01*

-X141441D01*

-Y70063D01*

-X141196Y69663D01*

-X140910Y68972D01*

-X140735Y68245D01*

-X140676Y67500D01*

-X140735Y66755D01*

-X140910Y66028D01*

-X141196Y65337D01*

-X141441Y64937D01*

-Y60063D01*

-X141196Y59663D01*

-X140910Y58972D01*

-X140735Y58245D01*

-X140676Y57500D01*

-X140735Y56755D01*

-X140910Y56028D01*

-X141196Y55337D01*

-X141441Y54937D01*

-Y50002D01*

-X141323Y49993D01*

-X141209Y49965D01*

-X141099Y49920D01*

-X140999Y49859D01*

-X140909Y49782D01*

-X140832Y49692D01*

-X140771Y49592D01*

-X140726Y49482D01*

-X140698Y49368D01*

-X140691Y49250D01*

-Y45750D01*

-X140698Y45632D01*

-X140726Y45518D01*

-X140771Y45408D01*

-X140832Y45308D01*

-X140909Y45218D01*

-X140999Y45141D01*

-X141099Y45080D01*

-X141209Y45035D01*

-X141323Y45007D01*

-X141441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X119441Y70063D02*X119296Y70301D01*

-X118810Y70869D01*

-X118242Y71355D01*

-X117604Y71745D01*

-X116913Y72031D01*

-X116186Y72206D01*

-X115441Y72265D01*

-Y76000D01*

-X119441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X119296Y60301D01*

-X118810Y60869D01*

-X118242Y61355D01*

-X117604Y61745D01*

-X116913Y62031D01*

-X116186Y62206D01*

-X115441Y62265D01*

-Y62735D01*

-X116186Y62794D01*

-X116913Y62969D01*

-X117604Y63255D01*

-X118242Y63645D01*

-X118810Y64131D01*

-X119296Y64699D01*

-X119441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X115441D01*

-Y42750D01*

-X117191D01*

-X117309Y42757D01*

-X117423Y42785D01*

-X117533Y42830D01*

-X117633Y42891D01*

-X117723Y42968D01*

-X117800Y43058D01*

-X117861Y43158D01*

-X117906Y43268D01*

-X117934Y43382D01*

-X117943Y43500D01*

-X117934Y43618D01*

-X117906Y43732D01*

-X117861Y43842D01*

-X117800Y43942D01*

-X117723Y44032D01*

-X117633Y44109D01*

-X117533Y44170D01*

-X117423Y44215D01*

-X117309Y44243D01*

-X117191Y44250D01*

-X115441D01*

-Y50750D01*

-X117191D01*

-X117309Y50757D01*

-X117423Y50785D01*

-X117533Y50830D01*

-X117633Y50891D01*

-X117723Y50968D01*

-X117800Y51058D01*

-X117861Y51158D01*

-X117906Y51268D01*

-X117934Y51382D01*

-X117943Y51500D01*

-X117934Y51618D01*

-X117906Y51732D01*

-X117861Y51842D01*

-X117800Y51942D01*

-X117723Y52032D01*

-X117633Y52109D01*

-X117533Y52170D01*

-X117423Y52215D01*

-X117309Y52243D01*

-X117191Y52250D01*

-X115441D01*

-Y52735D01*

-X116186Y52794D01*

-X116913Y52969D01*

-X117604Y53255D01*

-X118242Y53645D01*

-X118810Y54131D01*

-X119296Y54699D01*

-X119441Y54937D01*

-Y50002D01*

-X119323Y49993D01*

-X119209Y49965D01*

-X119099Y49920D01*

-X118999Y49859D01*

-X118909Y49782D01*

-X118832Y49692D01*

-X118771Y49592D01*

-X118726Y49482D01*

-X118698Y49368D01*

-X118691Y49250D01*

-Y45750D01*

-X118698Y45632D01*

-X118726Y45518D01*

-X118771Y45408D01*

-X118832Y45308D01*

-X118909Y45218D01*

-X118999Y45141D01*

-X119099Y45080D01*

-X119209Y45035D01*

-X119323Y45007D01*

-X119441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X111441Y64937D02*X111586Y64699D01*

-X112072Y64131D01*

-X112640Y63645D01*

-X113278Y63255D01*

-X113969Y62969D01*

-X114696Y62794D01*

-X115441Y62735D01*

-X115441D01*

-Y62265D01*

-X115441D01*

-X114696Y62206D01*

-X113969Y62031D01*

-X113278Y61745D01*

-X112640Y61355D01*

-X112072Y60869D01*

-X111586Y60301D01*

-X111441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X115441D01*

-Y72265D01*

-X115441D01*

-X114696Y72206D01*

-X113969Y72031D01*

-X113278Y71745D01*

-X112640Y71355D01*

-X112072Y70869D01*

-X111586Y70301D01*

-X111441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X115441Y39000D02*X111441D01*

-Y44998D01*

-X111559Y45007D01*

-X111673Y45035D01*

-X111783Y45080D01*

-X111883Y45141D01*

-X111973Y45218D01*

-X112050Y45308D01*

-X112111Y45408D01*

-X112156Y45518D01*

-X112184Y45632D01*

-X112191Y45750D01*

-Y49250D01*

-X112184Y49368D01*

-X112156Y49482D01*

-X112111Y49592D01*

-X112050Y49692D01*

-X111973Y49782D01*

-X111883Y49859D01*

-X111783Y49920D01*

-X111673Y49965D01*

-X111559Y49993D01*

-X111441Y50002D01*

-Y54937D01*

-X111586Y54699D01*

-X112072Y54131D01*

-X112640Y53645D01*

-X113278Y53255D01*

-X113969Y52969D01*

-X114696Y52794D01*

-X115441Y52735D01*

-X115441D01*

-Y52250D01*

-X113691D01*

-X113573Y52243D01*

-X113459Y52215D01*

-X113349Y52170D01*

-X113249Y52109D01*

-X113159Y52032D01*

-X113082Y51942D01*

-X113021Y51842D01*

-X112976Y51732D01*

-X112948Y51618D01*

-X112939Y51500D01*

-X112948Y51382D01*

-X112976Y51268D01*

-X113021Y51158D01*

-X113082Y51058D01*

-X113159Y50968D01*

-X113249Y50891D01*

-X113349Y50830D01*

-X113459Y50785D01*

-X113573Y50757D01*

-X113691Y50750D01*

-X115441D01*

-Y44250D01*

-X113691D01*

-X113573Y44243D01*

-X113459Y44215D01*

-X113349Y44170D01*

-X113249Y44109D01*

-X113159Y44032D01*

-X113082Y43942D01*

-X113021Y43842D01*

-X112976Y43732D01*

-X112948Y43618D01*

-X112939Y43500D01*

-X112948Y43382D01*

-X112976Y43268D01*

-X113021Y43158D01*

-X113082Y43058D01*

-X113159Y42968D01*

-X113249Y42891D01*

-X113349Y42830D01*

-X113459Y42785D01*

-X113573Y42757D01*

-X113691Y42750D01*

-X115441D01*

-Y39000D01*

-G37*

-G36*

-X111441D02*X89441D01*

-Y44998D01*

-X89559Y45007D01*

-X89673Y45035D01*

-X89783Y45080D01*

-X89883Y45141D01*

-X89973Y45218D01*

-X90050Y45308D01*

-X90111Y45408D01*

-X90156Y45518D01*

-X90184Y45632D01*

-X90191Y45750D01*

-Y49250D01*

-X90184Y49368D01*

-X90156Y49482D01*

-X90111Y49592D01*

-X90050Y49692D01*

-X89973Y49782D01*

-X89883Y49859D01*

-X89783Y49920D01*

-X89673Y49965D01*

-X89559Y49993D01*

-X89441Y50002D01*

-Y54937D01*

-X89686Y55337D01*

-X89972Y56028D01*

-X90147Y56755D01*

-X90191Y57500D01*

-X90147Y58245D01*

-X89972Y58972D01*

-X89686Y59663D01*

-X89441Y60063D01*

-Y64937D01*

-X89686Y65337D01*

-X89972Y66028D01*

-X90147Y66755D01*

-X90191Y67500D01*

-X90147Y68245D01*

-X89972Y68972D01*

-X89686Y69663D01*

-X89441Y70063D01*

-Y76000D01*

-X111441D01*

-Y70063D01*

-X111196Y69663D01*

-X110910Y68972D01*

-X110735Y68245D01*

-X110676Y67500D01*

-X110735Y66755D01*

-X110910Y66028D01*

-X111196Y65337D01*

-X111441Y64937D01*

-Y60063D01*

-X111196Y59663D01*

-X110910Y58972D01*

-X110735Y58245D01*

-X110676Y57500D01*

-X110735Y56755D01*

-X110910Y56028D01*

-X111196Y55337D01*

-X111441Y54937D01*

-Y50002D01*

-X111323Y49993D01*

-X111209Y49965D01*

-X111099Y49920D01*

-X110999Y49859D01*

-X110909Y49782D01*

-X110832Y49692D01*

-X110771Y49592D01*

-X110726Y49482D01*

-X110698Y49368D01*

-X110691Y49250D01*

-Y45750D01*

-X110698Y45632D01*

-X110726Y45518D01*

-X110771Y45408D01*

-X110832Y45308D01*

-X110909Y45218D01*

-X110999Y45141D01*

-X111099Y45080D01*

-X111209Y45035D01*

-X111323Y45007D01*

-X111441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X89441Y70063D02*X89296Y70301D01*

-X88810Y70869D01*

-X88242Y71355D01*

-X87604Y71745D01*

-X86913Y72031D01*

-X86186Y72206D01*

-X85441Y72265D01*

-Y76000D01*

-X89441D01*

-Y70063D01*

-G37*

-G36*

-Y60063D02*X89296Y60301D01*

-X88810Y60869D01*

-X88242Y61355D01*

-X87604Y61745D01*

-X86913Y62031D01*

-X86186Y62206D01*

-X85441Y62265D01*

-Y62735D01*

-X86186Y62794D01*

-X86913Y62969D01*

-X87604Y63255D01*

-X88242Y63645D01*

-X88810Y64131D01*

-X89296Y64699D01*

-X89441Y64937D01*

-Y60063D01*

-G37*

-G36*

-Y39000D02*X85441D01*

-Y42750D01*

-X87191D01*

-X87309Y42757D01*

-X87423Y42785D01*

-X87533Y42830D01*

-X87633Y42891D01*

-X87723Y42968D01*

-X87800Y43058D01*

-X87861Y43158D01*

-X87906Y43268D01*

-X87934Y43382D01*

-X87943Y43500D01*

-X87934Y43618D01*

-X87906Y43732D01*

-X87861Y43842D01*

-X87800Y43942D01*

-X87723Y44032D01*

-X87633Y44109D01*

-X87533Y44170D01*

-X87423Y44215D01*

-X87309Y44243D01*

-X87191Y44250D01*

-X85441D01*

-Y50750D01*

-X87191D01*

-X87309Y50757D01*

-X87423Y50785D01*

-X87533Y50830D01*

-X87633Y50891D01*

-X87723Y50968D01*

-X87800Y51058D01*

-X87861Y51158D01*

-X87906Y51268D01*

-X87934Y51382D01*

-X87943Y51500D01*

-X87934Y51618D01*

-X87906Y51732D01*

-X87861Y51842D01*

-X87800Y51942D01*

-X87723Y52032D01*

-X87633Y52109D01*

-X87533Y52170D01*

-X87423Y52215D01*

-X87309Y52243D01*

-X87191Y52250D01*

-X85441D01*

-Y52735D01*

-X86186Y52794D01*

-X86913Y52969D01*

-X87604Y53255D01*

-X88242Y53645D01*

-X88810Y54131D01*

-X89296Y54699D01*

-X89441Y54937D01*

-Y50002D01*

-X89323Y49993D01*

-X89209Y49965D01*

-X89099Y49920D01*

-X88999Y49859D01*

-X88909Y49782D01*

-X88832Y49692D01*

-X88771Y49592D01*

-X88726Y49482D01*

-X88698Y49368D01*

-X88691Y49250D01*

-Y45750D01*

-X88698Y45632D01*

-X88726Y45518D01*

-X88771Y45408D01*

-X88832Y45308D01*

-X88909Y45218D01*

-X88999Y45141D01*

-X89099Y45080D01*

-X89209Y45035D01*

-X89323Y45007D01*

-X89441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X81441Y64937D02*X81586Y64699D01*

-X82072Y64131D01*

-X82640Y63645D01*

-X83278Y63255D01*

-X83969Y62969D01*

-X84696Y62794D01*

-X85441Y62735D01*

-X85441D01*

-Y62265D01*

-X85441D01*

-X84696Y62206D01*

-X83969Y62031D01*

-X83278Y61745D01*

-X82640Y61355D01*

-X82072Y60869D01*

-X81586Y60301D01*

-X81441Y60063D01*

-Y64937D01*

-G37*

-G36*

-Y76000D02*X85441D01*

-Y72265D01*

-X85441D01*

-X84696Y72206D01*

-X83969Y72031D01*

-X83278Y71745D01*

-X82640Y71355D01*

-X82072Y70869D01*

-X81586Y70301D01*

-X81441Y70063D01*

-Y76000D01*

-G37*

-G36*

-X85441Y39000D02*X81441D01*

-Y44998D01*

-X81559Y45007D01*

-X81673Y45035D01*

-X81783Y45080D01*

-X81883Y45141D01*

-X81973Y45218D01*

-X82050Y45308D01*

-X82111Y45408D01*

-X82156Y45518D01*

-X82184Y45632D01*

-X82191Y45750D01*

-Y49250D01*

-X82184Y49368D01*

-X82156Y49482D01*

-X82111Y49592D01*

-X82050Y49692D01*

-X81973Y49782D01*

-X81883Y49859D01*

-X81783Y49920D01*

-X81673Y49965D01*

-X81559Y49993D01*

-X81441Y50002D01*

-Y54937D01*

-X81586Y54699D01*

-X82072Y54131D01*

-X82640Y53645D01*

-X83278Y53255D01*

-X83969Y52969D01*

-X84696Y52794D01*

-X85441Y52735D01*

-X85441D01*

-Y52250D01*

-X83691D01*

-X83573Y52243D01*

-X83459Y52215D01*

-X83349Y52170D01*

-X83249Y52109D01*

-X83159Y52032D01*

-X83082Y51942D01*

-X83021Y51842D01*

-X82976Y51732D01*

-X82948Y51618D01*

-X82939Y51500D01*

-X82948Y51382D01*

-X82976Y51268D01*

-X83021Y51158D01*

-X83082Y51058D01*

-X83159Y50968D01*

-X83249Y50891D01*

-X83349Y50830D01*

-X83459Y50785D01*

-X83573Y50757D01*

-X83691Y50750D01*

-X85441D01*

-Y44250D01*

-X83691D01*

-X83573Y44243D01*

-X83459Y44215D01*

-X83349Y44170D01*

-X83249Y44109D01*

-X83159Y44032D01*

-X83082Y43942D01*

-X83021Y43842D01*

-X82976Y43732D01*

-X82948Y43618D01*

-X82939Y43500D01*

-X82948Y43382D01*

-X82976Y43268D01*

-X83021Y43158D01*

-X83082Y43058D01*

-X83159Y42968D01*

-X83249Y42891D01*

-X83349Y42830D01*

-X83459Y42785D01*

-X83573Y42757D01*

-X83691Y42750D01*

-X85441D01*

-Y39000D01*

-G37*

-G36*

-X81441D02*X75441D01*

-X72941Y41500D01*

-Y76000D01*

-X81441D01*

-Y70063D01*

-X81196Y69663D01*

-X80910Y68972D01*

-X80735Y68245D01*

-X80676Y67500D01*

-X80735Y66755D01*

-X80910Y66028D01*

-X81196Y65337D01*

-X81441Y64937D01*

-Y60063D01*

-X81196Y59663D01*

-X80910Y58972D01*

-X80735Y58245D01*

-X80676Y57500D01*

-X80735Y56755D01*

-X80910Y56028D01*

-X81196Y55337D01*

-X81441Y54937D01*

-Y50002D01*

-X81323Y49993D01*

-X81209Y49965D01*

-X81099Y49920D01*

-X80999Y49859D01*

-X80909Y49782D01*

-X80832Y49692D01*

-X80771Y49592D01*

-X80726Y49482D01*

-X80698Y49368D01*

-X80691Y49250D01*

-Y45750D01*

-X80698Y45632D01*

-X80726Y45518D01*

-X80771Y45408D01*

-X80832Y45308D01*

-X80909Y45218D01*

-X80999Y45141D01*

-X81099Y45080D01*

-X81209Y45035D01*

-X81323Y45007D01*

-X81441Y44998D01*

-Y39000D01*

-G37*

-G36*

-X365696Y51500D02*X372196D01*

-Y45500D01*

-X365696D01*

-Y51500D01*

-G37*

-G36*

-Y46500D02*X372196D01*

-Y40500D01*

-X365696D01*

-Y46500D01*

-G37*

-G36*

-X371696D02*X378196D01*

-Y40500D01*

-X371696D01*

-Y46500D01*

-G37*

-G36*

-Y50000D02*X378196D01*

-Y44000D01*

-X371696D01*

-Y50000D01*

-G37*

-G36*

-X440935Y153000D02*X445441D01*

-Y104616D01*

-X445166Y104503D01*

-X444790Y104272D01*

-X444455Y103986D01*

-X444169Y103651D01*

-X443938Y103275D01*

-X443770Y102868D01*

-X443667Y102439D01*

-X443632Y102000D01*

-X443667Y101561D01*

-X443770Y101132D01*

-X443938Y100725D01*

-X444169Y100349D01*

-X444455Y100014D01*

-X444790Y99728D01*

-X445166Y99497D01*

-X445441Y99384D01*

-Y69000D01*

-X440935D01*

-Y118988D01*

-X440941Y118988D01*

-X441569Y119037D01*

-X442181Y119184D01*

-X442763Y119425D01*

-X443299Y119754D01*

-X443778Y120163D01*

-X444187Y120642D01*

-X444516Y121178D01*

-X444757Y121760D01*

-X444904Y122372D01*

-X444941Y123000D01*

-X444904Y123628D01*

-X444757Y124240D01*

-X444516Y124822D01*

-X444187Y125358D01*

-X443778Y125837D01*

-X443299Y126246D01*

-X442763Y126575D01*

-X442181Y126816D01*

-X441569Y126963D01*

-X440941Y127012D01*

-X440935Y127012D01*

-Y153000D01*

-G37*

-G36*

-X432320D02*X440935D01*

-Y127012D01*

-X440313Y126963D01*

-X439701Y126816D01*

-X439119Y126575D01*

-X438583Y126246D01*

-X438104Y125837D01*

-X437695Y125358D01*

-X437366Y124822D01*

-X437125Y124240D01*

-X436978Y123628D01*

-X436929Y123000D01*

-X436978Y122372D01*

-X437125Y121760D01*

-X437366Y121178D01*

-X437695Y120642D01*

-X438104Y120163D01*

-X438583Y119754D01*

-X439119Y119425D01*

-X439701Y119184D01*

-X440313Y119037D01*

-X440935Y118988D01*

-Y69000D01*

-X432320D01*

-Y73869D01*

-X432379Y73725D01*

-X432610Y73349D01*

-X432896Y73014D01*

-X433231Y72728D01*

-X433607Y72497D01*

-X434014Y72329D01*

-X434443Y72226D01*

-X434882Y72191D01*

-X435321Y72226D01*

-X435750Y72329D01*

-X436157Y72497D01*

-X436533Y72728D01*

-X436868Y73014D01*

-X437154Y73349D01*

-X437385Y73725D01*

-X437553Y74132D01*

-X437656Y74561D01*

-X437682Y75000D01*

-X437656Y75439D01*

-X437553Y75868D01*

-X437385Y76275D01*

-X437154Y76651D01*

-X436868Y76986D01*

-X436533Y77272D01*

-X436157Y77503D01*

-X435750Y77671D01*

-X435321Y77774D01*

-X434882Y77809D01*

-X434443Y77774D01*

-X434014Y77671D01*

-X433607Y77503D01*

-X433231Y77272D01*

-X432896Y76986D01*

-X432610Y76651D01*

-X432379Y76275D01*

-X432320Y76131D01*

-Y108192D01*

-X432324Y108191D01*

-X432763Y108226D01*

-X433192Y108329D01*

-X433599Y108497D01*

-X433975Y108728D01*

-X434310Y109014D01*

-X434596Y109349D01*

-X434827Y109725D01*

-X434995Y110132D01*

-X435098Y110561D01*

-X435124Y111000D01*

-X435098Y111439D01*

-X434995Y111868D01*

-X434827Y112275D01*

-X434596Y112651D01*

-X434310Y112986D01*

-X433975Y113272D01*

-X433599Y113503D01*

-X433192Y113671D01*

-X432763Y113774D01*

-X432324Y113809D01*

-X432320Y113808D01*

-Y153000D01*

-G37*

-G36*

-X423437D02*X432320D01*

-Y113808D01*

-X431885Y113774D01*

-X431456Y113671D01*

-X431049Y113503D01*

-X430673Y113272D01*

-X430338Y112986D01*

-X430052Y112651D01*

-X429821Y112275D01*

-X429653Y111868D01*

-X429550Y111439D01*

-X429515Y111000D01*

-X429550Y110561D01*

-X429653Y110132D01*

-X429821Y109725D01*

-X430052Y109349D01*

-X430338Y109014D01*

-X430673Y108728D01*

-X431049Y108497D01*

-X431456Y108329D01*

-X431885Y108226D01*

-X432320Y108192D01*

-Y76131D01*

-X432211Y75868D01*

-X432108Y75439D01*

-X432073Y75000D01*

-X432108Y74561D01*

-X432211Y74132D01*

-X432320Y73869D01*

-Y69000D01*

-X423437D01*

-Y72192D01*

-X423441Y72191D01*

-X423880Y72226D01*

-X424309Y72329D01*

-X424716Y72497D01*

-X425092Y72728D01*

-X425427Y73014D01*

-X425713Y73349D01*

-X425944Y73725D01*

-X426112Y74132D01*

-X426215Y74561D01*

-X426241Y75000D01*

-X426215Y75439D01*

-X426112Y75868D01*

-X425944Y76275D01*

-X425713Y76651D01*

-X425427Y76986D01*

-X425092Y77272D01*

-X424716Y77503D01*

-X424309Y77671D01*

-X423880Y77774D01*

-X423441Y77809D01*

-X423437Y77808D01*

-Y153000D01*

-G37*

-G36*

-X396441D02*X423437D01*

-Y77808D01*

-X423002Y77774D01*

-X422573Y77671D01*

-X422166Y77503D01*

-X421790Y77272D01*

-X421455Y76986D01*

-X421169Y76651D01*

-X420938Y76275D01*

-X420770Y75868D01*

-X420667Y75439D01*

-X420632Y75000D01*

-X420667Y74561D01*

-X420770Y74132D01*

-X420938Y73725D01*

-X421169Y73349D01*

-X421455Y73014D01*

-X421790Y72728D01*

-X422166Y72497D01*

-X422573Y72329D01*

-X423002Y72226D01*

-X423437Y72192D01*

-Y69000D01*

-X411941D01*

-X411441Y135000D01*

-X392185D01*

-Y183436D01*

-X392215Y183561D01*

-X392241Y184000D01*

-X392215Y184439D01*

-X392185Y184564D01*

-Y205489D01*

-X392573Y205329D01*

-X393002Y205226D01*

-X393441Y205191D01*

-X393880Y205226D01*

-X394309Y205329D01*

-X394716Y205497D01*

-X395092Y205728D01*

-X395427Y206014D01*

-X395713Y206349D01*

-X395944Y206725D01*

-X396112Y207132D01*

-X396215Y207561D01*

-X396241Y208000D01*

-X396215Y208439D01*

-X396112Y208868D01*

-X395944Y209275D01*

-X395713Y209651D01*

-X395427Y209986D01*

-X395092Y210272D01*

-X394716Y210503D01*

-X394309Y210671D01*

-X393880Y210774D01*

-X393441Y210809D01*

-X393002Y210774D01*

-X392573Y210671D01*

-X392185Y210511D01*

-Y237195D01*

-X392188Y237194D01*

-X392470Y237217D01*

-X392746Y237283D01*

-X393008Y237391D01*

-X393249Y237539D01*

-X393465Y237723D01*

-X393649Y237939D01*

-X393797Y238180D01*

-X393905Y238442D01*

-X393971Y238718D01*

-X393988Y239000D01*

-X393971Y239282D01*

-X393905Y239558D01*

-X393797Y239820D01*

-X393649Y240061D01*

-X393465Y240277D01*

-X393249Y240461D01*

-X393008Y240609D01*

-X392746Y240717D01*

-X392470Y240783D01*

-X392188Y240806D01*

-X392185Y240805D01*

-Y324489D01*

-X392573Y324329D01*

-X393002Y324226D01*

-X393441Y324191D01*

-X393880Y324226D01*

-X394309Y324329D01*

-X394716Y324497D01*

-X395092Y324728D01*

-X395427Y325014D01*

-X395713Y325349D01*

-X395944Y325725D01*

-X396112Y326132D01*

-X396215Y326561D01*

-X396241Y327000D01*

-X396215Y327439D01*

-X396112Y327868D01*

-X395944Y328275D01*

-X395713Y328651D01*

-X395427Y328986D01*

-X395092Y329272D01*

-X394716Y329503D01*

-X394309Y329671D01*

-X393880Y329774D01*

-X393441Y329809D01*

-X393002Y329774D01*

-X392573Y329671D01*

-X392185Y329511D01*

-Y352489D01*

-X392573Y352329D01*

-X393002Y352226D01*

-X393441Y352191D01*

-X393880Y352226D01*

-X394309Y352329D01*

-X394716Y352497D01*

-X395092Y352728D01*

-X395427Y353014D01*

-X395713Y353349D01*

-X395944Y353725D01*

-X396112Y354132D01*

-X396215Y354561D01*

-X396241Y355000D01*

-X396215Y355439D01*

-X396112Y355868D01*

-X395944Y356275D01*

-X395713Y356651D01*

-X395427Y356986D01*

-X395092Y357272D01*

-X394716Y357503D01*

-X394309Y357671D01*

-X393880Y357774D01*

-X393441Y357809D01*

-X393002Y357774D01*

-X392573Y357671D01*

-X392185Y357511D01*

-Y397000D01*

-X396441D01*

-Y375616D01*

-X396166Y375503D01*

-X395790Y375272D01*

-X395455Y374986D01*

-X395169Y374651D01*

-X394938Y374275D01*

-X394770Y373868D01*

-X394667Y373439D01*

-X394632Y373000D01*

-X394667Y372561D01*

-X394770Y372132D01*

-X394938Y371725D01*

-X395169Y371349D01*

-X395455Y371014D01*

-X395790Y370728D01*

-X396166Y370497D01*

-X396441Y370384D01*

-Y369806D01*

-X396290Y369713D01*

-X395955Y369427D01*

-X395669Y369092D01*

-X395438Y368716D01*

-X395270Y368309D01*

-X395167Y367880D01*

-X395132Y367441D01*

-X395167Y367002D01*

-X395270Y366573D01*

-X395438Y366166D01*

-X395669Y365790D01*

-X395955Y365455D01*

-X396290Y365169D01*

-X396441Y365076D01*

-Y315970D01*

-X396169Y315651D01*

-X395938Y315275D01*

-X395770Y314868D01*

-X395667Y314439D01*

-X395632Y314000D01*

-X395667Y313561D01*

-X395770Y313132D01*

-X395938Y312725D01*

-X396169Y312349D01*

-X396441Y312030D01*

-Y310970D01*

-X396169Y310651D01*

-X395938Y310275D01*

-X395770Y309868D01*

-X395667Y309439D01*

-X395632Y309000D01*

-X395667Y308561D01*

-X395770Y308132D01*

-X395938Y307725D01*

-X396169Y307349D01*

-X396441Y307030D01*

-Y254970D01*

-X396169Y254651D01*

-X395938Y254275D01*

-X395770Y253868D01*

-X395667Y253439D01*

-X395632Y253000D01*

-X395667Y252561D01*

-X395770Y252132D01*

-X395938Y251725D01*

-X396169Y251349D01*

-X396441Y251030D01*

-Y249970D01*

-X396169Y249651D01*

-X395938Y249275D01*

-X395770Y248868D01*

-X395667Y248439D01*

-X395632Y248000D01*

-X395667Y247561D01*

-X395770Y247132D01*

-X395938Y246725D01*

-X396169Y246349D01*

-X396441Y246030D01*

-Y236806D01*

-X396159Y236783D01*

-X395883Y236717D01*

-X395621Y236609D01*

-X395380Y236461D01*

-X395164Y236277D01*

-X394980Y236061D01*

-X394832Y235820D01*

-X394724Y235558D01*

-X394658Y235282D01*

-X394635Y235000D01*

-X394658Y234718D01*

-X394724Y234442D01*

-X394832Y234180D01*

-X394980Y233939D01*

-X395164Y233723D01*

-X395380Y233539D01*

-X395621Y233391D01*

-X395883Y233283D01*

-X396159Y233217D01*

-X396441Y233194D01*

-Y153000D01*

-G37*

-G36*

-X388204Y397000D02*X392185D01*

-Y357511D01*

-X392166Y357503D01*

-X391790Y357272D01*

-X391455Y356986D01*

-X391169Y356651D01*

-X390938Y356275D01*

-X390770Y355868D01*

-X390667Y355439D01*

-X390632Y355000D01*

-X390667Y354561D01*

-X390770Y354132D01*

-X390938Y353725D01*

-X391169Y353349D01*

-X391455Y353014D01*

-X391790Y352728D01*

-X392166Y352497D01*

-X392185Y352489D01*

-Y329511D01*

-X392166Y329503D01*

-X391790Y329272D01*

-X391455Y328986D01*

-X391169Y328651D01*

-X390938Y328275D01*

-X390770Y327868D01*

-X390667Y327439D01*

-X390632Y327000D01*

-X390667Y326561D01*

-X390770Y326132D01*

-X390938Y325725D01*

-X391169Y325349D01*

-X391455Y325014D01*

-X391790Y324728D01*

-X392166Y324497D01*

-X392185Y324489D01*

-Y240805D01*

-X391906Y240783D01*

-X391630Y240717D01*

-X391368Y240609D01*

-X391127Y240461D01*

-X390911Y240277D01*

-X390727Y240061D01*

-X390579Y239820D01*

-X390471Y239558D01*

-X390405Y239282D01*

-X390382Y239000D01*

-X390405Y238718D01*

-X390471Y238442D01*

-X390579Y238180D01*

-X390727Y237939D01*

-X390911Y237723D01*

-X391127Y237539D01*

-X391368Y237391D01*

-X391630Y237283D01*

-X391906Y237217D01*

-X392185Y237195D01*

-Y210511D01*

-X392166Y210503D01*

-X391790Y210272D01*

-X391455Y209986D01*

-X391169Y209651D01*

-X390938Y209275D01*

-X390770Y208868D01*

-X390667Y208439D01*

-X390632Y208000D01*

-X390667Y207561D01*

-X390770Y207132D01*

-X390938Y206725D01*

-X391169Y206349D01*

-X391455Y206014D01*

-X391790Y205728D01*

-X392166Y205497D01*

-X392185Y205489D01*

-Y184564D01*

-X392112Y184868D01*

-X391944Y185275D01*

-X391713Y185651D01*

-X391427Y185986D01*

-X391092Y186272D01*

-X390716Y186503D01*

-X390309Y186671D01*

-X389880Y186774D01*

-X389441Y186809D01*

-X389002Y186774D01*

-X388573Y186671D01*

-X388204Y186518D01*

-Y232439D01*

-X388345Y232497D01*

-X388721Y232728D01*

-X389056Y233014D01*

-X389342Y233349D01*

-X389573Y233725D01*

-X389741Y234132D01*

-X389844Y234561D01*

-X389870Y235000D01*

-X389844Y235439D01*

-X389741Y235868D01*

-X389573Y236275D01*

-X389342Y236651D01*

-X389056Y236986D01*

-X388721Y237272D01*

-X388345Y237503D01*

-X388204Y237561D01*

-Y245475D01*

-X388207Y245474D01*

-X388489Y245497D01*

-X388765Y245563D01*

-X389027Y245671D01*

-X389268Y245819D01*

-X389484Y246003D01*

-X389668Y246219D01*

-X389816Y246460D01*

-X389924Y246722D01*

-X389990Y246998D01*

-X390007Y247280D01*

-X389990Y247562D01*

-X389924Y247838D01*

-X389816Y248100D01*

-X389668Y248341D01*

-X389484Y248557D01*

-X389268Y248741D01*

-X389027Y248889D01*

-X388765Y248997D01*

-X388489Y249063D01*

-X388207Y249086D01*

-X388204Y249085D01*

-Y279626D01*

-X388371Y279728D01*

-X388706Y280014D01*

-X388992Y280349D01*

-X389223Y280725D01*

-X389391Y281132D01*

-X389494Y281561D01*

-X389520Y282000D01*

-X389494Y282439D01*

-X389391Y282868D01*

-X389223Y283275D01*

-X388992Y283651D01*

-X388706Y283986D01*

-X388371Y284272D01*

-X388204Y284374D01*

-Y323304D01*

-X388309Y323329D01*

-X388716Y323497D01*

-X389092Y323728D01*

-X389427Y324014D01*

-X389713Y324349D01*

-X389944Y324725D01*

-X390112Y325132D01*

-X390215Y325561D01*

-X390241Y326000D01*

-X390215Y326439D01*

-X390112Y326868D01*

-X389944Y327275D01*

-X389713Y327651D01*

-X389427Y327986D01*

-X389092Y328272D01*

-X388716Y328503D01*

-X388309Y328671D01*

-X388204Y328696D01*

-Y352839D01*

-X388213Y352849D01*

-X388444Y353225D01*

-X388612Y353632D01*

-X388715Y354061D01*

-X388741Y354500D01*

-X388715Y354939D01*

-X388612Y355368D01*

-X388444Y355775D01*

-X388213Y356151D01*

-X388204Y356161D01*

-Y397000D01*

-G37*

-G36*

-X392185Y135000D02*X388204D01*

-Y160824D01*

-X388427Y161014D01*

-X388713Y161349D01*

-X388944Y161725D01*

-X389112Y162132D01*

-X389215Y162561D01*

-X389241Y163000D01*

-X389215Y163439D01*

-X389112Y163868D01*

-X388944Y164275D01*

-X388713Y164651D01*

-X388427Y164986D01*

-X388204Y165176D01*

-Y181482D01*

-X388573Y181329D01*

-X389002Y181226D01*

-X389441Y181191D01*

-X389880Y181226D01*

-X390309Y181329D01*

-X390716Y181497D01*

-X391092Y181728D01*

-X391427Y182014D01*

-X391713Y182349D01*

-X391944Y182725D01*

-X392112Y183132D01*

-X392185Y183436D01*

-Y135000D01*

-G37*

-G36*

-X386020Y232404D02*X386202Y232329D01*

-X386631Y232226D01*

-X387070Y232191D01*

-X387509Y232226D01*

-X387938Y232329D01*

-X388204Y232439D01*

-Y186518D01*

-X388166Y186503D01*

-X387790Y186272D01*

-X387455Y185986D01*

-X387169Y185651D01*

-X386938Y185275D01*

-X386770Y184868D01*

-X386667Y184439D01*

-X386632Y184000D01*

-X386667Y183561D01*

-X386770Y183132D01*

-X386938Y182725D01*

-X387169Y182349D01*

-X387455Y182014D01*

-X387790Y181728D01*

-X388166Y181497D01*

-X388204Y181482D01*

-Y165176D01*

-X388092Y165272D01*

-X387716Y165503D01*

-X387309Y165671D01*

-X386880Y165774D01*

-X386441Y165809D01*

-X386020Y165776D01*

-Y185905D01*

-X386148Y186014D01*

-X386434Y186349D01*

-X386665Y186725D01*

-X386833Y187132D01*

-X386936Y187561D01*

-X386962Y188000D01*

-X386936Y188439D01*

-X386833Y188868D01*

-X386665Y189275D01*

-X386434Y189651D01*

-X386148Y189986D01*

-X386020Y190095D01*

-Y232404D01*

-G37*

-G36*

-Y279288D02*X386281Y279226D01*

-X386720Y279191D01*

-X387159Y279226D01*

-X387588Y279329D01*

-X387995Y279497D01*

-X388204Y279626D01*

-Y249085D01*

-X387925Y249063D01*

-X387649Y248997D01*

-X387387Y248889D01*

-X387146Y248741D01*

-X386930Y248557D01*

-X386746Y248341D01*

-X386598Y248100D01*

-X386490Y247838D01*

-X386424Y247562D01*

-X386401Y247280D01*

-X386424Y246998D01*

-X386490Y246722D01*

-X386598Y246460D01*

-X386746Y246219D01*

-X386930Y246003D01*

-X387146Y245819D01*

-X387387Y245671D01*

-X387649Y245563D01*

-X387925Y245497D01*

-X388204Y245475D01*

-Y237561D01*

-X387938Y237671D01*

-X387509Y237774D01*

-X387070Y237809D01*

-X386631Y237774D01*

-X386202Y237671D01*

-X386020Y237596D01*

-Y255640D01*

-X386163Y255728D01*

-X386498Y256014D01*

-X386784Y256349D01*

-X387015Y256725D01*

-X387183Y257132D01*

-X387286Y257561D01*

-X387312Y258000D01*

-X387286Y258439D01*

-X387183Y258868D01*

-X387015Y259275D01*

-X386784Y259651D01*

-X386498Y259986D01*

-X386163Y260272D01*

-X386020Y260360D01*

-Y279288D01*

-G37*

-G36*

-Y323587D02*X386166Y323497D01*

-X386573Y323329D01*

-X387002Y323226D01*

-X387441Y323191D01*

-X387880Y323226D01*

-X388204Y323304D01*

-Y284374D01*

-X387995Y284503D01*

-X387588Y284671D01*

-X387159Y284774D01*

-X386720Y284809D01*

-X386281Y284774D01*

-X386020Y284712D01*

-Y303905D01*

-X386148Y304014D01*

-X386434Y304349D01*

-X386665Y304725D01*

-X386833Y305132D01*

-X386936Y305561D01*

-X386962Y306000D01*

-X386936Y306439D01*

-X386833Y306868D01*

-X386665Y307275D01*

-X386434Y307651D01*

-X386148Y307986D01*

-X386020Y308095D01*

-Y323587D01*

-G37*

-G36*

-Y351698D02*X386380Y351726D01*

-X386809Y351829D01*

-X387216Y351997D01*

-X387592Y352228D01*

-X387927Y352514D01*

-X388204Y352839D01*

-Y328696D01*

-X387880Y328774D01*

-X387441Y328809D01*

-X387002Y328774D01*

-X386573Y328671D01*

-X386166Y328503D01*

-X386020Y328413D01*

-Y351698D01*

-G37*

-G36*

-Y397000D02*X388204D01*

-Y356161D01*

-X387927Y356486D01*

-X387592Y356772D01*

-X387216Y357003D01*

-X386809Y357171D01*

-X386380Y357274D01*

-X386020Y357302D01*

-Y364201D01*

-X386223Y364217D01*

-X386499Y364283D01*

-X386761Y364391D01*

-X387002Y364539D01*

-X387218Y364723D01*

-X387402Y364939D01*

-X387550Y365180D01*

-X387658Y365442D01*

-X387724Y365718D01*

-X387741Y366000D01*

-X387724Y366282D01*

-X387658Y366558D01*

-X387550Y366820D01*

-X387402Y367061D01*

-X387218Y367277D01*

-X387002Y367461D01*

-X386761Y367609D01*

-X386499Y367717D01*

-X386223Y367783D01*

-X386020Y367799D01*

-Y376989D01*

-X386165Y377225D01*

-X386333Y377632D01*

-X386436Y378061D01*

-X386462Y378500D01*

-X386436Y378939D01*

-X386333Y379368D01*

-X386165Y379775D01*

-X386020Y380011D01*

-Y397000D01*

-G37*

-G36*

-X388204Y135000D02*X386020D01*

-Y156008D01*

-X386023Y156007D01*

-X386305Y156030D01*

-X386581Y156096D01*

-X386843Y156204D01*

-X387084Y156352D01*

-X387300Y156536D01*

-X387484Y156752D01*

-X387632Y156993D01*

-X387740Y157255D01*

-X387806Y157531D01*

-X387823Y157813D01*

-X387806Y158095D01*

-X387740Y158371D01*

-X387632Y158633D01*

-X387484Y158874D01*

-X387300Y159090D01*

-X387084Y159274D01*

-X386843Y159422D01*

-X386581Y159530D01*

-X386305Y159596D01*

-X386023Y159619D01*

-X386020Y159618D01*

-Y160224D01*

-X386441Y160191D01*

-X386880Y160226D01*

-X387309Y160329D01*

-X387716Y160497D01*

-X388092Y160728D01*

-X388204Y160824D01*

-Y135000D01*

-G37*

-G36*

-X386020D02*X377344D01*

-Y160373D01*

-X377347Y160372D01*

-X377629Y160395D01*

-X377905Y160461D01*

-X378167Y160569D01*

-X378408Y160717D01*

-X378624Y160901D01*

-X378808Y161117D01*

-X378956Y161358D01*

-X379064Y161620D01*

-X379130Y161896D01*

-X379147Y162178D01*

-X379130Y162460D01*

-X379064Y162736D01*

-X378956Y162998D01*

-X378808Y163239D01*

-X378624Y163455D01*

-X378408Y163639D01*

-X378167Y163787D01*

-X377905Y163895D01*

-X377629Y163961D01*

-X377347Y163984D01*

-X377344Y163983D01*

-Y232943D01*

-X377427Y233014D01*

-X377713Y233349D01*

-X377944Y233725D01*

-X378112Y234132D01*

-X378215Y234561D01*

-X378241Y235000D01*

-X378215Y235439D01*

-X378112Y235868D01*

-X377944Y236275D01*

-X377713Y236651D01*

-X377427Y236986D01*

-X377344Y237057D01*

-Y397000D01*

-X386020D01*

-Y380011D01*

-X385934Y380151D01*

-X385648Y380486D01*

-X385313Y380772D01*

-X384937Y381003D01*

-X384530Y381171D01*

-X384101Y381274D01*

-X383662Y381309D01*

-X383223Y381274D01*

-X382794Y381171D01*

-X382387Y381003D01*

-X382011Y380772D01*

-X381676Y380486D01*

-X381390Y380151D01*

-X381159Y379775D01*

-X380991Y379368D01*

-X380888Y378939D01*

-X380853Y378500D01*

-X380888Y378061D01*

-X380991Y377632D01*

-X381159Y377225D01*

-X381390Y376849D01*

-X381676Y376514D01*

-X382011Y376228D01*

-X382387Y375997D01*

-X382794Y375829D01*

-X383223Y375726D01*

-X383662Y375691D01*

-X384101Y375726D01*

-X384530Y375829D01*

-X384937Y375997D01*

-X385313Y376228D01*

-X385648Y376514D01*

-X385934Y376849D01*

-X386020Y376989D01*

-Y367799D01*

-X385941Y367806D01*

-X385659Y367783D01*

-X385383Y367717D01*

-X385121Y367609D01*

-X384880Y367461D01*

-X384664Y367277D01*

-X384480Y367061D01*

-X384332Y366820D01*

-X384224Y366558D01*

-X384158Y366282D01*

-X384135Y366000D01*

-X384158Y365718D01*

-X384224Y365442D01*

-X384332Y365180D01*

-X384480Y364939D01*

-X384664Y364723D01*

-X384880Y364539D01*

-X385121Y364391D01*

-X385383Y364283D01*

-X385659Y364217D01*

-X385941Y364194D01*

-X386020Y364201D01*

-Y357302D01*

-X385941Y357309D01*

-X385502Y357274D01*

-X385073Y357171D01*

-X384666Y357003D01*

-X384290Y356772D01*

-X383955Y356486D01*

-X383669Y356151D01*

-X383438Y355775D01*

-X383270Y355368D01*

-X383167Y354939D01*

-X383132Y354500D01*

-X383167Y354061D01*

-X383270Y353632D01*

-X383438Y353225D01*

-X383669Y352849D01*

-X383955Y352514D01*

-X384290Y352228D01*

-X384666Y351997D01*

-X385073Y351829D01*

-X385502Y351726D01*

-X385941Y351691D01*

-X386020Y351698D01*

-Y328413D01*

-X385790Y328272D01*

-X385455Y327986D01*

-X385169Y327651D01*

-X384938Y327275D01*

-X384770Y326868D01*

-X384667Y326439D01*

-X384632Y326000D01*

-X384667Y325561D01*

-X384770Y325132D01*

-X384938Y324725D01*

-X385169Y324349D01*

-X385455Y324014D01*

-X385790Y323728D01*

-X386020Y323587D01*

-Y308095D01*

-X385813Y308272D01*

-X385437Y308503D01*

-X385030Y308671D01*

-X384601Y308774D01*

-X384162Y308809D01*

-X383723Y308774D01*

-X383294Y308671D01*

-X382887Y308503D01*

-X382511Y308272D01*

-X382176Y307986D01*

-X381890Y307651D01*

-X381659Y307275D01*

-X381491Y306868D01*

-X381388Y306439D01*

-X381353Y306000D01*

-X381388Y305561D01*

-X381491Y305132D01*

-X381659Y304725D01*

-X381890Y304349D01*

-X382176Y304014D01*

-X382511Y303728D01*

-X382887Y303497D01*

-X383294Y303329D01*

-X383723Y303226D01*

-X384162Y303191D01*

-X384601Y303226D01*

-X385030Y303329D01*

-X385437Y303497D01*

-X385813Y303728D01*

-X386020Y303905D01*

-Y284712D01*

-X385852Y284671D01*

-X385445Y284503D01*

-X385069Y284272D01*

-X384734Y283986D01*

-X384448Y283651D01*

-X384217Y283275D01*

-X384049Y282868D01*

-X383946Y282439D01*

-X383911Y282000D01*

-X383946Y281561D01*

-X384049Y281132D01*

-X384217Y280725D01*

-X384448Y280349D01*

-X384734Y280014D01*

-X385069Y279728D01*

-X385445Y279497D01*

-X385852Y279329D01*

-X386020Y279288D01*

-Y260360D01*

-X385787Y260503D01*

-X385380Y260671D01*

-X384951Y260774D01*

-X384512Y260809D01*

-X384073Y260774D01*

-X383644Y260671D01*

-X383237Y260503D01*

-X382861Y260272D01*

-X382526Y259986D01*

-X382240Y259651D01*

-X382009Y259275D01*

-X381841Y258868D01*

-X381738Y258439D01*

-X381703Y258000D01*

-X381738Y257561D01*

-X381841Y257132D01*

-X382009Y256725D01*

-X382240Y256349D01*

-X382526Y256014D01*

-X382861Y255728D01*

-X383237Y255497D01*

-X383644Y255329D01*

-X384073Y255226D01*

-X384512Y255191D01*

-X384951Y255226D01*

-X385380Y255329D01*

-X385787Y255497D01*

-X386020Y255640D01*

-Y237596D01*

-X385795Y237503D01*

-X385419Y237272D01*

-X385084Y236986D01*

-X384798Y236651D01*

-X384567Y236275D01*

-X384399Y235868D01*

-X384296Y235439D01*

-X384261Y235000D01*

-X384296Y234561D01*

-X384399Y234132D01*

-X384567Y233725D01*

-X384798Y233349D01*

-X385084Y233014D01*

-X385419Y232728D01*

-X385795Y232497D01*

-X386020Y232404D01*

-Y190095D01*

-X385813Y190272D01*

-X385437Y190503D01*

-X385030Y190671D01*

-X384601Y190774D01*

-X384162Y190809D01*

-X383723Y190774D01*

-X383294Y190671D01*

-X382887Y190503D01*

-X382511Y190272D01*

-X382176Y189986D01*

-X381890Y189651D01*

-X381659Y189275D01*

-X381491Y188868D01*

-X381388Y188439D01*

-X381353Y188000D01*

-X381388Y187561D01*

-X381491Y187132D01*

-X381659Y186725D01*

-X381890Y186349D01*

-X382176Y186014D01*

-X382511Y185728D01*

-X382887Y185497D01*

-X383294Y185329D01*

-X383723Y185226D01*

-X384162Y185191D01*

-X384601Y185226D01*

-X385030Y185329D01*

-X385437Y185497D01*

-X385813Y185728D01*

-X386020Y185905D01*

-Y165776D01*

-X386002Y165774D01*

-X385573Y165671D01*

-X385166Y165503D01*

-X384790Y165272D01*

-X384455Y164986D01*

-X384169Y164651D01*

-X383938Y164275D01*

-X383770Y163868D01*

-X383667Y163439D01*

-X383632Y163000D01*

-X383667Y162561D01*

-X383770Y162132D01*

-X383938Y161725D01*

-X384169Y161349D01*

-X384455Y161014D01*

-X384790Y160728D01*

-X385166Y160497D01*

-X385573Y160329D01*

-X386002Y160226D01*

-X386020Y160224D01*

-Y159618D01*

-X385741Y159596D01*

-X385465Y159530D01*

-X385203Y159422D01*

-X384962Y159274D01*

-X384746Y159090D01*

-X384562Y158874D01*

-X384414Y158633D01*

-X384306Y158371D01*

-X384240Y158095D01*

-X384217Y157813D01*

-X384240Y157531D01*

-X384306Y157255D01*

-X384414Y156993D01*

-X384562Y156752D01*

-X384746Y156536D01*

-X384962Y156352D01*

-X385203Y156204D01*

-X385465Y156096D01*

-X385741Y156030D01*

-X386020Y156008D01*

-Y135000D01*

-G37*

-G36*

-X377344D02*X372437D01*

-Y167578D01*

-X372441Y167577D01*

-X372880Y167612D01*

-X373309Y167715D01*

-X373716Y167883D01*

-X374092Y168114D01*

-X374427Y168400D01*

-X374713Y168735D01*

-X374944Y169111D01*

-X375112Y169518D01*

-X375215Y169947D01*

-X375241Y170386D01*

-X375215Y170825D01*

-X375112Y171254D01*

-X374944Y171661D01*

-X374713Y172037D01*

-X374427Y172372D01*

-X374092Y172658D01*

-X373716Y172889D01*

-X373309Y173057D01*

-X372880Y173160D01*

-X372441Y173195D01*

-X372437Y173194D01*

-Y258628D01*

-X372663Y258767D01*

-X372879Y258951D01*

-X373063Y259167D01*

-X373211Y259408D01*

-X373319Y259670D01*

-X373385Y259946D01*

-X373402Y260228D01*

-X373385Y260510D01*

-X373319Y260786D01*

-X373211Y261048D01*

-X373063Y261289D01*

-X372879Y261505D01*

-X372663Y261689D01*

-X372437Y261828D01*

-Y287881D01*

-X372441Y287880D01*

-X372880Y287915D01*

-X373309Y288018D01*

-X373716Y288186D01*

-X374092Y288417D01*

-X374427Y288703D01*

-X374713Y289038D01*

-X374944Y289414D01*

-X375112Y289821D01*

-X375215Y290250D01*

-X375241Y290689D01*

-X375215Y291128D01*

-X375112Y291557D01*

-X374944Y291964D01*

-X374713Y292340D01*

-X374427Y292675D01*

-X374092Y292961D01*

-X373716Y293192D01*

-X373309Y293360D01*

-X372880Y293463D01*

-X372441Y293498D01*

-X372437Y293497D01*

-Y348381D01*

-X372441Y348380D01*

-X372880Y348415D01*

-X373309Y348518D01*

-X373716Y348686D01*

-X374092Y348917D01*

-X374427Y349203D01*

-X374713Y349538D01*

-X374944Y349914D01*

-X375112Y350321D01*

-X375215Y350750D01*

-X375241Y351189D01*

-X375215Y351628D01*

-X375112Y352057D01*

-X374944Y352464D01*

-X374713Y352840D01*

-X374427Y353175D01*

-X374092Y353461D01*

-X373716Y353692D01*

-X373309Y353860D01*

-X372880Y353963D01*

-X372441Y353998D01*

-X372437Y353997D01*

-Y397000D01*

-X377344D01*

-Y237057D01*

-X377092Y237272D01*

-X376716Y237503D01*

-X376309Y237671D01*

-X375880Y237774D01*

-X375441Y237809D01*

-X375002Y237774D01*

-X374573Y237671D01*

-X374166Y237503D01*

-X373790Y237272D01*

-X373455Y236986D01*

-X373169Y236651D01*

-X372938Y236275D01*

-X372770Y235868D01*

-X372667Y235439D01*

-X372632Y235000D01*

-X372667Y234561D01*

-X372770Y234132D01*

-X372938Y233725D01*

-X373169Y233349D01*

-X373455Y233014D01*

-X373790Y232728D01*

-X374166Y232497D01*

-X374573Y232329D01*

-X375002Y232226D01*

-X375441Y232191D01*

-X375880Y232226D01*

-X376309Y232329D01*

-X376716Y232497D01*

-X377092Y232728D01*

-X377344Y232943D01*

-Y163983D01*

-X377065Y163961D01*

-X376789Y163895D01*

-X376527Y163787D01*

-X376286Y163639D01*

-X376070Y163455D01*

-X375886Y163239D01*

-X375738Y162998D01*

-X375630Y162736D01*

-X375564Y162460D01*

-X375541Y162178D01*

-X375564Y161896D01*

-X375630Y161620D01*

-X375738Y161358D01*

-X375886Y161117D01*

-X376070Y160901D01*

-X376286Y160717D01*

-X376527Y160569D01*

-X376789Y160461D01*

-X377065Y160395D01*

-X377344Y160373D01*

-Y135000D01*

-G37*

-G36*

-X372437D02*X358938D01*

-Y206695D01*

-X358941Y206694D01*

-X359223Y206717D01*

-X359499Y206783D01*

-X359761Y206891D01*

-X360002Y207039D01*

-X360218Y207223D01*

-X360402Y207439D01*

-X360550Y207680D01*

-X360658Y207942D01*

-X360724Y208218D01*

-X360741Y208500D01*

-X360724Y208782D01*

-X360658Y209058D01*

-X360550Y209320D01*

-X360402Y209561D01*

-X360218Y209777D01*

-X360002Y209961D01*

-X359761Y210109D01*

-X359499Y210217D01*

-X359223Y210283D01*

-X358941Y210306D01*

-X358938Y210305D01*

-Y397000D01*

-X372437D01*

-Y353997D01*

-X372002Y353963D01*

-X371573Y353860D01*

-X371166Y353692D01*

-X370790Y353461D01*

-X370455Y353175D01*

-X370169Y352840D01*

-X369938Y352464D01*

-X369770Y352057D01*

-X369667Y351628D01*

-X369632Y351189D01*

-X369667Y350750D01*

-X369770Y350321D01*

-X369938Y349914D01*

-X370169Y349538D01*

-X370455Y349203D01*

-X370790Y348917D01*

-X371166Y348686D01*

-X371573Y348518D01*

-X372002Y348415D01*

-X372437Y348381D01*

-Y293497D01*

-X372002Y293463D01*

-X371573Y293360D01*

-X371166Y293192D01*

-X370790Y292961D01*

-X370455Y292675D01*

-X370169Y292340D01*

-X369938Y291964D01*

-X369770Y291557D01*

-X369667Y291128D01*

-X369632Y290689D01*

-X369667Y290250D01*

-X369770Y289821D01*

-X369938Y289414D01*

-X370169Y289038D01*

-X370455Y288703D01*

-X370790Y288417D01*

-X371166Y288186D01*

-X371573Y288018D01*

-X372002Y287915D01*

-X372437Y287881D01*

-Y261828D01*

-X372422Y261837D01*

-X372160Y261945D01*

-X371884Y262011D01*

-X371602Y262034D01*

-X371320Y262011D01*

-X371044Y261945D01*

-X370782Y261837D01*

-X370541Y261689D01*

-X370325Y261505D01*

-X370141Y261289D01*

-X369993Y261048D01*

-X369885Y260786D01*

-X369819Y260510D01*

-X369796Y260228D01*

-X369819Y259946D01*

-X369885Y259670D01*

-X369993Y259408D01*

-X370141Y259167D01*

-X370325Y258951D01*

-X370541Y258767D01*

-X370782Y258619D01*

-X371044Y258511D01*

-X371320Y258445D01*

-X371602Y258422D01*

-X371884Y258445D01*

-X372160Y258511D01*

-X372422Y258619D01*

-X372437Y258628D01*

-Y173194D01*

-X372002Y173160D01*

-X371573Y173057D01*

-X371166Y172889D01*

-X370790Y172658D01*

-X370455Y172372D01*

-X370169Y172037D01*

-X369938Y171661D01*

-X369770Y171254D01*

-X369667Y170825D01*

-X369632Y170386D01*

-X369667Y169947D01*

-X369770Y169518D01*

-X369938Y169111D01*

-X370169Y168735D01*

-X370455Y168400D01*

-X370790Y168114D01*

-X371166Y167883D01*

-X371573Y167715D01*

-X372002Y167612D01*

-X372437Y167578D01*

-Y135000D01*

-G37*

-G36*

-X358938D02*X356438D01*

-Y231195D01*

-X356441Y231194D01*

-X356723Y231217D01*

-X356999Y231283D01*

-X357261Y231391D01*

-X357502Y231539D01*

-X357718Y231723D01*

-X357902Y231939D01*

-X358050Y232180D01*

-X358158Y232442D01*

-X358224Y232718D01*

-X358241Y233000D01*

-X358224Y233282D01*

-X358158Y233558D01*

-X358050Y233820D01*

-X357902Y234061D01*

-X357718Y234277D01*

-X357502Y234461D01*

-X357261Y234609D01*

-X356999Y234717D01*

-X356723Y234783D01*

-X356441Y234806D01*

-X356438Y234805D01*

-Y397000D01*

-X358938D01*

-Y210305D01*

-X358659Y210283D01*

-X358383Y210217D01*

-X358121Y210109D01*

-X357880Y209961D01*

-X357664Y209777D01*

-X357480Y209561D01*

-X357332Y209320D01*

-X357224Y209058D01*

-X357158Y208782D01*

-X357135Y208500D01*

-X357158Y208218D01*

-X357224Y207942D01*

-X357332Y207680D01*

-X357480Y207439D01*

-X357664Y207223D01*

-X357880Y207039D01*

-X358121Y206891D01*

-X358383Y206783D01*

-X358659Y206717D01*

-X358938Y206695D01*

-Y135000D01*

-G37*

-G36*

-X356438D02*X353387D01*

-Y185739D01*

-X353955Y186404D01*

-X354781Y187752D01*

-X355387Y189214D01*

-X355756Y190752D01*

-X355849Y192329D01*

-X355756Y193906D01*

-X355387Y195444D01*

-X354781Y196906D01*

-X353955Y198254D01*

-X353387Y198919D01*

-Y337716D01*

-X353390Y337715D01*

-X353672Y337738D01*

-X353948Y337804D01*

-X354210Y337912D01*

-X354451Y338060D01*

-X354667Y338244D01*

-X354851Y338460D01*

-X354999Y338701D01*

-X355107Y338963D01*

-X355173Y339239D01*

-X355190Y339521D01*

-X355173Y339803D01*

-X355107Y340079D01*

-X354999Y340341D01*

-X354851Y340582D01*

-X354667Y340798D01*

-X354451Y340982D01*

-X354210Y341130D01*

-X353948Y341238D01*

-X353672Y341304D01*

-X353390Y341327D01*

-X353387Y341326D01*

-Y350739D01*

-X353955Y351404D01*

-X354781Y352752D01*

-X355387Y354214D01*

-X355756Y355752D01*

-X355849Y357329D01*

-X355756Y358906D01*

-X355387Y360444D01*

-X354781Y361906D01*

-X353955Y363254D01*

-X353387Y363919D01*

-Y397000D01*

-X356438D01*

-Y234805D01*

-X356159Y234783D01*

-X355883Y234717D01*

-X355621Y234609D01*

-X355380Y234461D01*

-X355164Y234277D01*

-X354980Y234061D01*

-X354832Y233820D01*

-X354724Y233558D01*

-X354658Y233282D01*

-X354635Y233000D01*

-X354658Y232718D01*

-X354724Y232442D01*

-X354832Y232180D01*

-X354980Y231939D01*

-X355164Y231723D01*

-X355380Y231539D01*

-X355621Y231391D01*

-X355883Y231283D01*

-X356159Y231217D01*

-X356438Y231195D01*

-Y135000D01*

-G37*

-G36*

-X353387Y363919D02*X352927Y364457D01*

-X351724Y365485D01*

-X350376Y366311D01*

-X348914Y366917D01*

-X347376Y367286D01*

-X345799Y367410D01*

-X344222Y367286D01*

-X342684Y366917D01*

-X341222Y366311D01*

-X339874Y365485D01*

-X339834Y365451D01*

-Y397000D01*

-X353387D01*

-Y363919D01*

-G37*

-G36*

-Y198919D02*X352927Y199457D01*

-X351724Y200485D01*

-X350376Y201311D01*

-X348914Y201917D01*

-X347376Y202286D01*

-X345799Y202410D01*

-X344222Y202286D01*

-X342684Y201917D01*

-X341222Y201311D01*

-X339874Y200485D01*

-X339834Y200451D01*

-Y223052D01*

-X339902Y223131D01*

-X340050Y223372D01*

-X340158Y223634D01*

-X340224Y223910D01*

-X340241Y224192D01*

-X340224Y224474D01*

-X340158Y224750D01*

-X340050Y225012D01*

-X339902Y225253D01*

-X339834Y225332D01*

-Y228984D01*

-X339902Y229063D01*

-X340050Y229304D01*

-X340158Y229566D01*

-X340224Y229842D01*

-X340241Y230124D01*

-X340224Y230406D01*

-X340158Y230682D01*

-X340050Y230944D01*

-X339902Y231185D01*

-X339834Y231264D01*

-Y245027D01*

-X340278Y244755D01*

-X340969Y244469D01*

-X341696Y244294D01*

-X342441Y244235D01*

-X343186Y244294D01*

-X343913Y244469D01*

-X344604Y244755D01*

-X345242Y245145D01*

-X345810Y245631D01*

-X346296Y246199D01*

-X346686Y246837D01*

-X346972Y247528D01*

-X347147Y248255D01*

-X347191Y249000D01*

-X347147Y249745D01*

-X346972Y250472D01*

-X346686Y251163D01*

-X346296Y251801D01*

-X345810Y252369D01*

-X345242Y252855D01*

-X344604Y253245D01*

-X343913Y253531D01*

-X343186Y253706D01*

-X342441Y253765D01*

-X341696Y253706D01*

-X340969Y253531D01*

-X340278Y253245D01*

-X339834Y252973D01*

-Y340022D01*

-X339837Y340021D01*

-X340119Y340044D01*

-X340395Y340110D01*

-X340657Y340218D01*

-X340898Y340366D01*

-X341114Y340550D01*

-X341298Y340766D01*

-X341446Y341007D01*

-X341554Y341269D01*

-X341620Y341545D01*

-X341637Y341827D01*

-X341620Y342109D01*

-X341554Y342385D01*

-X341446Y342647D01*

-X341298Y342888D01*

-X341114Y343104D01*

-X340898Y343288D01*

-X340657Y343436D01*

-X340395Y343544D01*

-X340119Y343610D01*

-X339837Y343633D01*

-X339834Y343632D01*

-Y349207D01*

-X339874Y349173D01*

-X341222Y348347D01*

-X342684Y347741D01*

-X344222Y347372D01*

-X345799Y347248D01*

-X347376Y347372D01*

-X348914Y347741D01*

-X350376Y348347D01*

-X351724Y349173D01*

-X352927Y350201D01*

-X353387Y350739D01*

-Y341326D01*

-X353108Y341304D01*

-X352832Y341238D01*

-X352570Y341130D01*

-X352329Y340982D01*

-X352113Y340798D01*

-X351929Y340582D01*

-X351781Y340341D01*

-X351673Y340079D01*

-X351607Y339803D01*

-X351584Y339521D01*

-X351607Y339239D01*

-X351673Y338963D01*

-X351781Y338701D01*

-X351929Y338460D01*

-X352113Y338244D01*

-X352329Y338060D01*

-X352570Y337912D01*

-X352832Y337804D01*

-X353108Y337738D01*

-X353387Y337716D01*

-Y198919D01*

-G37*

-G36*

-Y135000D02*X339834D01*

-Y184207D01*

-X339874Y184173D01*

-X341222Y183347D01*

-X342684Y182741D01*

-X344222Y182372D01*

-X345799Y182248D01*

-X347376Y182372D01*

-X348914Y182741D01*

-X350376Y183347D01*

-X351724Y184173D01*

-X352927Y185201D01*

-X353387Y185739D01*

-Y135000D01*

-G37*

-G36*

-X337438Y222695D02*X337621Y222583D01*

-X337883Y222475D01*

-X338159Y222409D01*

-X338441Y222386D01*

-X338723Y222409D01*

-X338999Y222475D01*

-X339261Y222583D01*

-X339502Y222731D01*

-X339718Y222915D01*

-X339834Y223052D01*

-Y200451D01*

-X338671Y199457D01*

-X337643Y198254D01*

-X337438Y197920D01*

-Y222695D01*

-G37*

-G36*

-Y228627D02*X337621Y228515D01*

-X337883Y228407D01*

-X338159Y228341D01*

-X338441Y228318D01*

-X338723Y228341D01*

-X338999Y228407D01*

-X339261Y228515D01*

-X339502Y228663D01*

-X339718Y228847D01*

-X339834Y228984D01*

-Y225332D01*

-X339718Y225469D01*

-X339502Y225653D01*

-X339261Y225801D01*

-X338999Y225909D01*

-X338723Y225975D01*

-X338441Y225998D01*

-X338159Y225975D01*

-X337883Y225909D01*

-X337621Y225801D01*

-X337438Y225689D01*

-Y228627D01*

-G37*

-G36*

-Y351738D02*X337643Y351404D01*

-X338671Y350201D01*

-X339834Y349207D01*

-Y343632D01*

-X339555Y343610D01*

-X339279Y343544D01*

-X339017Y343436D01*

-X338776Y343288D01*

-X338560Y343104D01*

-X338376Y342888D01*

-X338228Y342647D01*

-X338120Y342385D01*

-X338054Y342109D01*

-X338031Y341827D01*

-X338054Y341545D01*

-X338120Y341269D01*

-X338228Y341007D01*

-X338376Y340766D01*

-X338560Y340550D01*

-X338776Y340366D01*

-X339017Y340218D01*

-X339279Y340110D01*

-X339555Y340044D01*

-X339834Y340022D01*

-Y252973D01*

-X339640Y252855D01*

-X339072Y252369D01*

-X338586Y251801D01*

-X338196Y251163D01*

-X337910Y250472D01*

-X337735Y249745D01*

-X337676Y249000D01*

-X337735Y248255D01*

-X337910Y247528D01*

-X338196Y246837D01*

-X338586Y246199D01*

-X339072Y245631D01*

-X339640Y245145D01*

-X339834Y245027D01*

-Y231264D01*

-X339718Y231401D01*

-X339502Y231585D01*

-X339261Y231733D01*

-X338999Y231841D01*

-X338723Y231907D01*

-X338441Y231930D01*

-X338159Y231907D01*

-X337883Y231841D01*

-X337621Y231733D01*

-X337438Y231621D01*

-Y351738D01*

-G37*

-G36*

-Y397000D02*X339834D01*

-Y365451D01*

-X338671Y364457D01*

-X337643Y363254D01*

-X337438Y362920D01*

-Y397000D01*

-G37*

-G36*

-X339834Y135000D02*X337438D01*

-Y161195D01*

-X337441Y161194D01*

-X337723Y161217D01*

-X337999Y161283D01*

-X338261Y161391D01*

-X338502Y161539D01*

-X338718Y161723D01*

-X338902Y161939D01*

-X339050Y162180D01*

-X339158Y162442D01*

-X339224Y162718D01*

-X339241Y163000D01*

-X339224Y163282D01*

-X339158Y163558D01*

-X339050Y163820D01*

-X338902Y164061D01*

-X338718Y164277D01*

-X338502Y164461D01*

-X338261Y164609D01*

-X337999Y164717D01*

-X337723Y164783D01*

-X337441Y164806D01*

-X337438Y164805D01*

-Y186738D01*

-X337643Y186404D01*

-X338671Y185201D01*

-X339834Y184207D01*

-Y135000D01*

-G37*

-G36*

-X337438D02*X332434D01*

-Y244236D01*

-X332441Y244235D01*

-X333186Y244294D01*

-X333913Y244469D01*

-X334604Y244755D01*

-X335242Y245145D01*

-X335810Y245631D01*

-X336296Y246199D01*

-X336686Y246837D01*

-X336972Y247528D01*

-X337147Y248255D01*

-X337191Y249000D01*

-X337147Y249745D01*

-X336972Y250472D01*

-X336686Y251163D01*

-X336296Y251801D01*

-X335810Y252369D01*

-X335242Y252855D01*

-X334604Y253245D01*

-X333913Y253531D01*

-X333186Y253706D01*

-X332441Y253765D01*

-X332434Y253764D01*

-Y397000D01*

-X337438D01*

-Y362920D01*

-X336817Y361906D01*

-X336211Y360444D01*

-X335842Y358906D01*

-X335718Y357329D01*

-X335842Y355752D01*

-X336211Y354214D01*

-X336817Y352752D01*

-X337438Y351738D01*

-Y231621D01*

-X337380Y231585D01*

-X337164Y231401D01*

-X336980Y231185D01*

-X336832Y230944D01*

-X336724Y230682D01*

-X336658Y230406D01*

-X336635Y230124D01*

-X336658Y229842D01*

-X336724Y229566D01*

-X336832Y229304D01*

-X336980Y229063D01*

-X337164Y228847D01*

-X337380Y228663D01*

-X337438Y228627D01*

-Y225689D01*

-X337380Y225653D01*

-X337164Y225469D01*

-X336980Y225253D01*

-X336832Y225012D01*

-X336724Y224750D01*

-X336658Y224474D01*

-X336635Y224192D01*

-X336658Y223910D01*

-X336724Y223634D01*

-X336832Y223372D01*

-X336980Y223131D01*

-X337164Y222915D01*

-X337380Y222731D01*

-X337438Y222695D01*

-Y197920D01*

-X336817Y196906D01*

-X336211Y195444D01*

-X335842Y193906D01*

-X335718Y192329D01*

-X335842Y190752D01*

-X336211Y189214D01*

-X336817Y187752D01*

-X337438Y186738D01*

-Y164805D01*

-X337159Y164783D01*

-X336883Y164717D01*

-X336621Y164609D01*

-X336380Y164461D01*

-X336164Y164277D01*

-X335980Y164061D01*

-X335832Y163820D01*

-X335724Y163558D01*

-X335658Y163282D01*

-X335635Y163000D01*

-X335658Y162718D01*

-X335724Y162442D01*

-X335832Y162180D01*

-X335980Y161939D01*

-X336164Y161723D01*

-X336380Y161539D01*

-X336621Y161391D01*

-X336883Y161283D01*

-X337159Y161217D01*

-X337438Y161195D01*

-Y135000D01*

-G37*

-G36*

-X332434D02*X325792D01*

-Y170516D01*

-X325799Y170516D01*

-X326474Y170569D01*

-X327132Y170727D01*

-X327757Y170986D01*

-X328334Y171339D01*

-X328849Y171779D01*

-X329289Y172294D01*

-X329642Y172871D01*

-X329901Y173496D01*

-X330059Y174154D01*

-X330099Y174829D01*

-X330059Y175504D01*

-X329901Y176162D01*

-X329642Y176787D01*

-X329289Y177364D01*

-X328849Y177879D01*

-X328334Y178319D01*

-X327757Y178672D01*

-X327132Y178931D01*

-X326474Y179089D01*

-X325799Y179142D01*

-X325792Y179142D01*

-Y180516D01*

-X325799Y180516D01*

-X326474Y180569D01*

-X327132Y180727D01*

-X327757Y180986D01*

-X328334Y181339D01*

-X328849Y181779D01*

-X329289Y182294D01*

-X329642Y182871D01*

-X329901Y183496D01*

-X330059Y184154D01*

-X330099Y184829D01*

-X330059Y185504D01*

-X329901Y186162D01*

-X329642Y186787D01*

-X329289Y187364D01*

-X328849Y187879D01*

-X328334Y188319D01*

-X327757Y188672D01*

-X327132Y188931D01*

-X326474Y189089D01*

-X325799Y189142D01*

-X325792Y189142D01*

-Y245616D01*

-X325810Y245631D01*

-X326296Y246199D01*

-X326686Y246837D01*

-X326972Y247528D01*

-X327147Y248255D01*

-X327191Y249000D01*

-X327147Y249745D01*

-X326972Y250472D01*

-X326686Y251163D01*

-X326296Y251801D01*

-X325810Y252369D01*

-X325792Y252384D01*

-Y330862D01*

-X326435Y331910D01*

-X327151Y333640D01*

-X327589Y335462D01*

-X327699Y337329D01*

-X327589Y339196D01*

-X327151Y341018D01*

-X326435Y342748D01*

-X325792Y343796D01*

-Y360516D01*

-X325799Y360516D01*

-X326474Y360569D01*

-X327132Y360727D01*

-X327757Y360986D01*

-X328334Y361339D01*

-X328849Y361779D01*

-X329289Y362294D01*

-X329642Y362871D01*

-X329901Y363496D01*

-X330059Y364154D01*

-X330099Y364829D01*

-X330059Y365504D01*

-X329901Y366162D01*

-X329642Y366787D01*

-X329289Y367364D01*

-X328849Y367879D01*

-X328334Y368319D01*

-X327757Y368672D01*

-X327132Y368931D01*

-X326474Y369089D01*

-X325799Y369142D01*

-X325792Y369142D01*

-Y370516D01*

-X325799Y370516D01*

-X326474Y370569D01*

-X327132Y370727D01*

-X327757Y370986D01*

-X328334Y371339D01*

-X328849Y371779D01*

-X329289Y372294D01*

-X329642Y372871D01*

-X329901Y373496D01*

-X330059Y374154D01*

-X330099Y374829D01*

-X330059Y375504D01*

-X329901Y376162D01*

-X329642Y376787D01*

-X329289Y377364D01*

-X328849Y377879D01*

-X328334Y378319D01*

-X327757Y378672D01*

-X327132Y378931D01*

-X326474Y379089D01*

-X325799Y379142D01*

-X325792Y379142D01*

-Y397000D01*

-X332434D01*

-Y253764D01*

-X331696Y253706D01*

-X330969Y253531D01*

-X330278Y253245D01*

-X329640Y252855D01*

-X329072Y252369D01*

-X328586Y251801D01*

-X328196Y251163D01*

-X327910Y250472D01*

-X327735Y249745D01*

-X327676Y249000D01*

-X327735Y248255D01*

-X327910Y247528D01*

-X328196Y246837D01*

-X328586Y246199D01*

-X329072Y245631D01*

-X329640Y245145D01*

-X330278Y244755D01*

-X330969Y244469D01*

-X331696Y244294D01*

-X332434Y244236D01*

-Y135000D01*

-G37*

-G36*

-X325792Y343796D02*X325456Y344345D01*

-X324240Y345770D01*

-X322815Y346986D01*

-X321218Y347965D01*

-X319488Y348681D01*

-X317666Y349119D01*

-X315799Y349266D01*

-X315792Y349265D01*

-Y360516D01*

-X315799Y360516D01*

-X316474Y360569D01*

-X317132Y360727D01*

-X317757Y360986D01*

-X318334Y361339D01*

-X318849Y361779D01*

-X319289Y362294D01*

-X319642Y362871D01*

-X319901Y363496D01*

-X320059Y364154D01*

-X320099Y364829D01*

-X320059Y365504D01*

-X319901Y366162D01*

-X319642Y366787D01*

-X319289Y367364D01*

-X318849Y367879D01*

-X318334Y368319D01*

-X317757Y368672D01*

-X317132Y368931D01*

-X316474Y369089D01*

-X315799Y369142D01*

-X315792Y369142D01*

-Y370516D01*

-X315799Y370516D01*

-X316474Y370569D01*

-X317132Y370727D01*

-X317757Y370986D01*

-X318334Y371339D01*

-X318849Y371779D01*

-X319289Y372294D01*

-X319642Y372871D01*

-X319901Y373496D01*

-X320059Y374154D01*

-X320099Y374829D01*

-X320059Y375504D01*

-X319901Y376162D01*

-X319642Y376787D01*

-X319289Y377364D01*

-X318849Y377879D01*

-X318334Y378319D01*

-X317757Y378672D01*

-X317132Y378931D01*

-X316474Y379089D01*

-X315799Y379142D01*

-X315792Y379142D01*

-Y397000D01*

-X325792D01*

-Y379142D01*

-X325124Y379089D01*

-X324466Y378931D01*

-X323841Y378672D01*

-X323264Y378319D01*

-X322749Y377879D01*

-X322309Y377364D01*

-X321956Y376787D01*

-X321697Y376162D01*

-X321539Y375504D01*

-X321486Y374829D01*

-X321539Y374154D01*

-X321697Y373496D01*

-X321956Y372871D01*

-X322309Y372294D01*

-X322749Y371779D01*

-X323264Y371339D01*

-X323841Y370986D01*

-X324466Y370727D01*

-X325124Y370569D01*

-X325792Y370516D01*

-Y369142D01*

-X325124Y369089D01*

-X324466Y368931D01*

-X323841Y368672D01*

-X323264Y368319D01*

-X322749Y367879D01*

-X322309Y367364D01*

-X321956Y366787D01*

-X321697Y366162D01*

-X321539Y365504D01*

-X321486Y364829D01*

-X321539Y364154D01*

-X321697Y363496D01*

-X321956Y362871D01*

-X322309Y362294D01*

-X322749Y361779D01*

-X323264Y361339D01*

-X323841Y360986D01*

-X324466Y360727D01*

-X325124Y360569D01*

-X325792Y360516D01*

-Y343796D01*

-G37*

-G36*

-Y135000D02*X315792D01*

-Y170516D01*

-X315799Y170516D01*

-X316474Y170569D01*

-X317132Y170727D01*

-X317757Y170986D01*

-X318334Y171339D01*

-X318849Y171779D01*

-X319289Y172294D01*

-X319642Y172871D01*

-X319901Y173496D01*

-X320059Y174154D01*

-X320099Y174829D01*

-X320059Y175504D01*

-X319901Y176162D01*

-X319642Y176787D01*

-X319289Y177364D01*

-X318849Y177879D01*

-X318334Y178319D01*

-X317757Y178672D01*

-X317132Y178931D01*

-X316474Y179089D01*

-X315799Y179142D01*

-X315792Y179142D01*

-Y180516D01*

-X315799Y180516D01*

-X316474Y180569D01*

-X317132Y180727D01*

-X317757Y180986D01*

-X318334Y181339D01*

-X318849Y181779D01*

-X319289Y182294D01*

-X319642Y182871D01*

-X319901Y183496D01*

-X320059Y184154D01*

-X320099Y184829D01*

-X320059Y185504D01*

-X319901Y186162D01*

-X319642Y186787D01*

-X319289Y187364D01*

-X318849Y187879D01*

-X318334Y188319D01*

-X317757Y188672D01*

-X317132Y188931D01*

-X316474Y189089D01*

-X315799Y189142D01*

-X315792Y189142D01*

-Y246873D01*

-X315832Y246808D01*

-X315909Y246718D01*

-X315999Y246641D01*

-X316099Y246580D01*

-X316209Y246535D01*

-X316323Y246507D01*

-X316441Y246498D01*

-X316559Y246507D01*

-X316673Y246535D01*

-X316783Y246580D01*

-X316883Y246641D01*

-X316973Y246718D01*

-X317050Y246808D01*

-X317111Y246908D01*

-X317156Y247018D01*

-X317184Y247132D01*

-X317191Y247250D01*

-Y250750D01*

-X317184Y250868D01*

-X317156Y250982D01*

-X317111Y251092D01*

-X317050Y251192D01*

-X316973Y251282D01*

-X316883Y251359D01*

-X316783Y251420D01*

-X316673Y251465D01*

-X316559Y251493D01*

-X316441Y251502D01*

-X316323Y251493D01*

-X316209Y251465D01*

-X316099Y251420D01*

-X315999Y251359D01*

-X315909Y251282D01*

-X315832Y251192D01*

-X315792Y251127D01*

-Y325393D01*

-X315799Y325392D01*

-X317666Y325539D01*

-X319488Y325977D01*

-X321218Y326693D01*

-X322815Y327672D01*

-X324240Y328888D01*

-X325456Y330313D01*

-X325792Y330862D01*

-Y252384D01*

-X325242Y252855D01*

-X324604Y253245D01*

-X323913Y253531D01*

-X323186Y253706D01*

-X322441Y253765D01*

-X321696Y253706D01*

-X320969Y253531D01*

-X320278Y253245D01*

-X319640Y252855D01*

-X319072Y252369D01*

-X318586Y251801D01*

-X318196Y251163D01*

-X317910Y250472D01*

-X317735Y249745D01*

-X317676Y249000D01*

-X317735Y248255D01*

-X317910Y247528D01*

-X318196Y246837D01*

-X318586Y246199D01*

-X319072Y245631D01*

-X319640Y245145D01*

-X320278Y244755D01*

-X320969Y244469D01*

-X321696Y244294D01*

-X322441Y244235D01*

-X323186Y244294D01*

-X323913Y244469D01*

-X324604Y244755D01*

-X325242Y245145D01*

-X325792Y245616D01*

-Y189142D01*

-X325124Y189089D01*

-X324466Y188931D01*

-X323841Y188672D01*

-X323264Y188319D01*

-X322749Y187879D01*

-X322309Y187364D01*

-X321956Y186787D01*

-X321697Y186162D01*

-X321539Y185504D01*

-X321486Y184829D01*

-X321539Y184154D01*

-X321697Y183496D01*

-X321956Y182871D01*

-X322309Y182294D01*

-X322749Y181779D01*

-X323264Y181339D01*

-X323841Y180986D01*

-X324466Y180727D01*

-X325124Y180569D01*

-X325792Y180516D01*

-Y179142D01*

-X325124Y179089D01*

-X324466Y178931D01*

-X323841Y178672D01*

-X323264Y178319D01*

-X322749Y177879D01*

-X322309Y177364D01*

-X321956Y176787D01*

-X321697Y176162D01*

-X321539Y175504D01*

-X321486Y174829D01*

-X321539Y174154D01*

-X321697Y173496D01*

-X321956Y172871D01*

-X322309Y172294D01*

-X322749Y171779D01*

-X323264Y171339D01*

-X323841Y170986D01*

-X324466Y170727D01*

-X325124Y170569D01*

-X325792Y170516D01*

-Y135000D01*

-G37*

-G36*

-X315792Y349265D02*X313932Y349119D01*

-X312110Y348681D01*

-X310380Y347965D01*

-X308783Y346986D01*

-X307358Y345770D01*

-X306142Y344345D01*

-X305792Y343775D01*

-Y360516D01*

-X305799Y360516D01*

-X306474Y360569D01*

-X307132Y360727D01*

-X307757Y360986D01*

-X308334Y361339D01*

-X308849Y361779D01*

-X309289Y362294D01*

-X309642Y362871D01*

-X309901Y363496D01*

-X310059Y364154D01*

-X310099Y364829D01*

-X310059Y365504D01*

-X309901Y366162D01*

-X309642Y366787D01*

-X309289Y367364D01*

-X308849Y367879D01*

-X308334Y368319D01*

-X307757Y368672D01*

-X307132Y368931D01*

-X306474Y369089D01*

-X305799Y369142D01*

-X305792Y369142D01*

-Y370516D01*

-X305799Y370516D01*

-X306474Y370569D01*

-X307132Y370727D01*

-X307757Y370986D01*

-X308334Y371339D01*

-X308849Y371779D01*

-X309289Y372294D01*

-X309642Y372871D01*

-X309901Y373496D01*

-X310059Y374154D01*

-X310099Y374829D01*

-X310059Y375504D01*

-X309901Y376162D01*

-X309642Y376787D01*

-X309289Y377364D01*

-X308849Y377879D01*

-X308334Y378319D01*

-X307757Y378672D01*

-X307132Y378931D01*

-X306474Y379089D01*

-X305799Y379142D01*

-X305792Y379142D01*

-Y397000D01*

-X315792D01*

-Y379142D01*

-X315124Y379089D01*

-X314466Y378931D01*

-X313841Y378672D01*

-X313264Y378319D01*

-X312749Y377879D01*

-X312309Y377364D01*

-X311956Y376787D01*

-X311697Y376162D01*

-X311539Y375504D01*

-X311486Y374829D01*

-X311539Y374154D01*

-X311697Y373496D01*

-X311956Y372871D01*

-X312309Y372294D01*

-X312749Y371779D01*

-X313264Y371339D01*

-X313841Y370986D01*

-X314466Y370727D01*

-X315124Y370569D01*

-X315792Y370516D01*

-Y369142D01*

-X315124Y369089D01*

-X314466Y368931D01*

-X313841Y368672D01*

-X313264Y368319D01*

-X312749Y367879D01*

-X312309Y367364D01*

-X311956Y366787D01*

-X311697Y366162D01*

-X311539Y365504D01*

-X311486Y364829D01*

-X311539Y364154D01*

-X311697Y363496D01*

-X311956Y362871D01*

-X312309Y362294D01*

-X312749Y361779D01*

-X313264Y361339D01*

-X313841Y360986D01*

-X314466Y360727D01*

-X315124Y360569D01*

-X315792Y360516D01*

-Y349265D01*

-G37*

-G36*

-X308869Y134739D02*X308883Y134733D01*

-X309159Y134667D01*

-X309441Y134644D01*

-X309723Y134667D01*

-X309999Y134733D01*

-X310261Y134841D01*

-X310441Y134952D01*

-Y117671D01*

-X310383Y117657D01*

-X310121Y117549D01*

-X309880Y117401D01*

-X309664Y117217D01*

-X309480Y117001D01*

-X309332Y116760D01*

-X309224Y116498D01*

-X309158Y116222D01*

-X309135Y115940D01*

-X309158Y115658D01*

-X309224Y115382D01*

-X309332Y115120D01*

-X309480Y114879D01*

-X309664Y114663D01*

-X309880Y114479D01*

-X310121Y114331D01*

-X310383Y114223D01*

-X310441Y114209D01*

-Y97000D01*

-X308869D01*

-Y134739D01*

-G37*

-G36*

-X312154Y182548D02*X312309Y182294D01*

-X312749Y181779D01*

-X313264Y181339D01*

-X313841Y180986D01*

-X314466Y180727D01*

-X315124Y180569D01*

-X315792Y180516D01*

-Y179142D01*

-X315124Y179089D01*

-X314466Y178931D01*

-X313841Y178672D01*

-X313264Y178319D01*

-X312749Y177879D01*

-X312309Y177364D01*

-X312154Y177110D01*

-Y182548D01*

-G37*

-G36*

-Y325966D02*X313932Y325539D01*

-X315792Y325393D01*

-Y251127D01*

-X315771Y251092D01*

-X315726Y250982D01*

-X315698Y250868D01*

-X315691Y250750D01*

-Y247250D01*

-X315698Y247132D01*

-X315726Y247018D01*

-X315771Y246908D01*

-X315792Y246873D01*

-Y189142D01*

-X315124Y189089D01*

-X314466Y188931D01*

-X313841Y188672D01*

-X313264Y188319D01*

-X312749Y187879D01*

-X312309Y187364D01*

-X312154Y187110D01*

-Y244250D01*

-X314191D01*

-X314309Y244257D01*

-X314423Y244285D01*

-X314533Y244330D01*

-X314633Y244391D01*

-X314723Y244468D01*

-X314800Y244558D01*

-X314861Y244658D01*

-X314906Y244768D01*

-X314934Y244882D01*

-X314943Y245000D01*

-X314934Y245118D01*

-X314906Y245232D01*

-X314861Y245342D01*

-X314800Y245442D01*

-X314723Y245532D01*

-X314633Y245609D01*

-X314533Y245670D01*

-X314423Y245715D01*

-X314309Y245743D01*

-X314191Y245750D01*

-X312154D01*

-Y252250D01*

-X314191D01*

-X314309Y252257D01*

-X314423Y252285D01*

-X314533Y252330D01*

-X314633Y252391D01*

-X314723Y252468D01*

-X314800Y252558D01*

-X314861Y252658D01*

-X314906Y252768D01*

-X314934Y252882D01*

-X314943Y253000D01*

-X314934Y253118D01*

-X314906Y253232D01*

-X314861Y253342D01*

-X314800Y253442D01*

-X314723Y253532D01*

-X314633Y253609D01*

-X314533Y253670D01*

-X314423Y253715D01*

-X314309Y253743D01*

-X314191Y253750D01*

-X312154D01*

-Y292984D01*

-X312444Y293007D01*

-X312757Y293082D01*

-X313056Y293206D01*

-X313331Y293374D01*

-X313576Y293584D01*

-X313786Y293829D01*

-X313954Y294104D01*

-X314078Y294403D01*

-X314153Y294716D01*

-X314172Y295038D01*

-X314153Y295360D01*

-X314078Y295673D01*

-X313954Y295972D01*

-X313786Y296247D01*

-X313576Y296492D01*

-X313331Y296702D01*

-X313056Y296870D01*

-X312757Y296994D01*

-X312444Y297069D01*

-X312154Y297092D01*

-Y298100D01*

-X312157Y298100D01*

-X312479Y298125D01*

-X312792Y298200D01*

-X313091Y298324D01*

-X313366Y298492D01*

-X313611Y298702D01*

-X313821Y298947D01*

-X313989Y299222D01*

-X314113Y299521D01*

-X314188Y299834D01*

-X314207Y300156D01*

-X314188Y300478D01*

-X314113Y300791D01*

-X313989Y301090D01*

-X313821Y301365D01*

-X313611Y301610D01*

-X313366Y301820D01*

-X313091Y301988D01*

-X312792Y302112D01*

-X312479Y302187D01*

-X312157Y302212D01*

-X312154Y302212D01*

-Y325966D01*

-G37*

-G36*

-X315792Y135000D02*X312154D01*

-Y172548D01*

-X312309Y172294D01*

-X312749Y171779D01*

-X313264Y171339D01*

-X313841Y170986D01*

-X314466Y170727D01*

-X315124Y170569D01*

-X315792Y170516D01*

-Y135000D01*

-G37*

-G36*

-X312154D02*X310515D01*

-X310718Y135173D01*

-X310902Y135389D01*

-X311050Y135630D01*

-X311158Y135892D01*

-X311224Y136168D01*

-X311241Y136450D01*

-X311224Y136732D01*

-X311158Y137008D01*

-X311050Y137270D01*

-X310902Y137511D01*

-X310718Y137727D01*

-X310502Y137911D01*

-X310261Y138059D01*

-X309999Y138167D01*

-X309723Y138233D01*

-X309441Y138256D01*

-X309159Y138233D01*

-X308883Y138167D01*

-X308869Y138161D01*

-Y139857D01*

-X308883Y139851D01*

-X309159Y139785D01*

-X309441Y139762D01*

-X309723Y139785D01*

-X309999Y139851D01*

-X310261Y139959D01*

-X310502Y140107D01*

-X310718Y140291D01*

-X310902Y140507D01*

-X311050Y140748D01*

-X311158Y141010D01*

-X311224Y141286D01*

-X311241Y141568D01*

-X311224Y141850D01*

-X311158Y142126D01*

-X311050Y142388D01*

-X310902Y142629D01*

-X310718Y142845D01*

-X310502Y143029D01*

-X310261Y143177D01*

-X309999Y143285D01*

-X309723Y143351D01*

-X309441Y143374D01*

-X309159Y143351D01*

-X308883Y143285D01*

-X308869Y143279D01*

-Y171802D01*

-X309289Y172294D01*

-X309642Y172871D01*

-X309901Y173496D01*

-X310059Y174154D01*

-X310099Y174829D01*

-X310059Y175504D01*

-X309901Y176162D01*

-X309642Y176787D01*

-X309289Y177364D01*

-X308869Y177856D01*

-Y181802D01*

-X309289Y182294D01*

-X309642Y182871D01*

-X309901Y183496D01*

-X310059Y184154D01*

-X310099Y184829D01*

-X310059Y185504D01*

-X309901Y186162D01*

-X309642Y186787D01*

-X309289Y187364D01*

-X308869Y187856D01*

-Y246633D01*

-X308883Y246641D01*

-X308973Y246718D01*

-X309050Y246808D01*

-X309111Y246908D01*

-X309156Y247018D01*

-X309184Y247132D01*

-X309191Y247250D01*

-Y250750D01*

-X309184Y250868D01*

-X309156Y250982D01*

-X309111Y251092D01*

-X309050Y251192D01*

-X308973Y251282D01*

-X308883Y251359D01*

-X308869Y251367D01*

-Y264466D01*

-X308872Y264466D01*

-X309194Y264491D01*

-X309507Y264566D01*

-X309806Y264690D01*

-X310081Y264858D01*

-X310326Y265068D01*

-X310536Y265313D01*

-X310704Y265588D01*

-X310828Y265887D01*

-X310903Y266200D01*

-X310922Y266522D01*

-X310903Y266844D01*

-X310828Y267157D01*

-X310704Y267456D01*

-X310536Y267731D01*

-X310326Y267976D01*

-X310081Y268186D01*

-X309806Y268354D01*

-X309507Y268478D01*

-X309194Y268553D01*

-X308872Y268578D01*

-X308869Y268578D01*

-Y269924D01*

-X308992Y269915D01*

-X309314Y269940D01*

-X309627Y270015D01*

-X309926Y270139D01*

-X310201Y270307D01*

-X310446Y270517D01*

-X310656Y270762D01*

-X310824Y271037D01*

-X310948Y271336D01*

-X311023Y271649D01*

-X311042Y271971D01*

-X311023Y272293D01*

-X310948Y272606D01*

-X310824Y272905D01*

-X310656Y273180D01*

-X310446Y273425D01*

-X310201Y273635D01*

-X309926Y273803D01*

-X309627Y273927D01*

-X309444Y273971D01*

-X309548Y274141D01*

-X309672Y274440D01*

-X309747Y274753D01*

-X309766Y275075D01*

-X309747Y275397D01*

-X309672Y275710D01*

-X309548Y276009D01*

-X309380Y276284D01*

-X309170Y276529D01*

-X308925Y276739D01*

-X308869Y276773D01*

-Y327619D01*

-X310380Y326693D01*

-X312110Y325977D01*

-X312154Y325966D01*

-Y302212D01*

-X311835Y302187D01*

-X311522Y302112D01*

-X311223Y301988D01*

-X310948Y301820D01*

-X310703Y301610D01*

-X310493Y301365D01*

-X310325Y301090D01*

-X310201Y300791D01*

-X310126Y300478D01*

-X310101Y300156D01*

-X310126Y299834D01*

-X310201Y299521D01*

-X310325Y299222D01*

-X310493Y298947D01*

-X310703Y298702D01*

-X310948Y298492D01*

-X311223Y298324D01*

-X311522Y298200D01*

-X311835Y298125D01*

-X312154Y298100D01*

-Y297092D01*

-X312122Y297094D01*

-X311800Y297069D01*

-X311487Y296994D01*

-X311188Y296870D01*

-X310913Y296702D01*

-X310668Y296492D01*

-X310458Y296247D01*

-X310290Y295972D01*

-X310166Y295673D01*

-X310091Y295360D01*

-X310066Y295038D01*

-X310091Y294716D01*

-X310166Y294403D01*

-X310290Y294104D01*

-X310458Y293829D01*

-X310668Y293584D01*

-X310913Y293374D01*

-X311188Y293206D01*

-X311487Y293082D01*

-X311800Y293007D01*

-X312122Y292982D01*

-X312154Y292984D01*

-Y253750D01*

-X310691D01*

-X310573Y253743D01*

-X310459Y253715D01*

-X310349Y253670D01*

-X310249Y253609D01*

-X310159Y253532D01*

-X310082Y253442D01*

-X310021Y253342D01*

-X309976Y253232D01*

-X309948Y253118D01*

-X309939Y253000D01*

-X309948Y252882D01*

-X309976Y252768D01*

-X310021Y252658D01*

-X310082Y252558D01*

-X310159Y252468D01*

-X310249Y252391D01*

-X310349Y252330D01*

-X310459Y252285D01*

-X310573Y252257D01*

-X310691Y252250D01*

-X312154D01*

-Y245750D01*

-X310691D01*

-X310573Y245743D01*

-X310459Y245715D01*

-X310349Y245670D01*

-X310249Y245609D01*

-X310159Y245532D01*

-X310082Y245442D01*

-X310021Y245342D01*

-X309976Y245232D01*

-X309948Y245118D01*

-X309939Y245000D01*

-X309948Y244882D01*

-X309976Y244768D01*

-X310021Y244658D01*

-X310082Y244558D01*

-X310159Y244468D01*

-X310249Y244391D01*

-X310349Y244330D01*

-X310459Y244285D01*

-X310573Y244257D01*

-X310691Y244250D01*

-X312154D01*

-Y187110D01*

-X311956Y186787D01*

-X311697Y186162D01*

-X311539Y185504D01*

-X311486Y184829D01*

-X311539Y184154D01*

-X311697Y183496D01*

-X311956Y182871D01*

-X312154Y182548D01*

-Y177110D01*

-X311956Y176787D01*

-X311697Y176162D01*

-X311539Y175504D01*

-X311486Y174829D01*

-X311539Y174154D01*

-X311697Y173496D01*

-X311956Y172871D01*

-X312154Y172548D01*

-Y135000D01*

-G37*

-G36*

-X308869Y276773D02*X308650Y276907D01*

-X308351Y277031D01*

-X308038Y277106D01*

-X307716Y277131D01*

-X307394Y277106D01*

-X307081Y277031D01*

-X306782Y276907D01*

-X306507Y276739D01*

-X306262Y276529D01*

-X306052Y276284D01*

-X305884Y276009D01*

-X305792Y275788D01*

-Y330883D01*

-X306142Y330313D01*

-X307358Y328888D01*

-X308783Y327672D01*

-X308869Y327619D01*

-Y276773D01*

-G37*

-G36*

-Y187856D02*X308849Y187879D01*

-X308334Y188319D01*

-X307757Y188672D01*

-X307132Y188931D01*

-X306474Y189089D01*

-X305799Y189142D01*

-X305792Y189142D01*

-Y202655D01*

-X305838Y202666D01*

-X306100Y202774D01*

-X306341Y202922D01*

-X306557Y203106D01*

-X306741Y203322D01*

-X306889Y203563D01*

-X306997Y203825D01*

-X307063Y204101D01*

-X307080Y204383D01*

-X307063Y204665D01*

-X306997Y204941D01*

-X306889Y205203D01*

-X306741Y205444D01*

-X306557Y205660D01*

-X306341Y205844D01*

-X306100Y205992D01*

-X305838Y206100D01*

-X305792Y206111D01*

-Y206148D01*

-X305861Y206206D01*

-X306045Y206422D01*

-X306193Y206663D01*

-X306301Y206925D01*

-X306367Y207201D01*

-X306384Y207483D01*

-X306367Y207765D01*

-X306301Y208041D01*

-X306193Y208303D01*

-X306045Y208544D01*

-X305861Y208760D01*

-X305792Y208818D01*

-Y209144D01*

-X305983Y209306D01*

-X306167Y209522D01*

-X306315Y209763D01*

-X306423Y210025D01*

-X306489Y210301D01*

-X306506Y210583D01*

-X306489Y210865D01*

-X306423Y211141D01*

-X306315Y211403D01*

-X306167Y211644D01*

-X305983Y211860D01*

-X305792Y212022D01*

-Y274362D01*

-X305884Y274141D01*

-X306052Y273866D01*

-X306262Y273621D01*

-X306507Y273411D01*

-X306782Y273243D01*

-X307081Y273119D01*

-X307264Y273075D01*

-X307160Y272905D01*

-X307036Y272606D01*

-X306961Y272293D01*

-X306936Y271971D01*

-X306961Y271649D01*

-X307036Y271336D01*

-X307160Y271037D01*

-X307328Y270762D01*

-X307538Y270517D01*

-X307783Y270307D01*

-X308058Y270139D01*

-X308357Y270015D01*

-X308670Y269940D01*

-X308869Y269924D01*

-Y268578D01*

-X308550Y268553D01*

-X308237Y268478D01*

-X307938Y268354D01*

-X307663Y268186D01*

-X307418Y267976D01*

-X307208Y267731D01*

-X307040Y267456D01*

-X306916Y267157D01*

-X306841Y266844D01*

-X306816Y266522D01*

-X306841Y266200D01*

-X306916Y265887D01*

-X307040Y265588D01*

-X307208Y265313D01*

-X307418Y265068D01*

-X307663Y264858D01*

-X307938Y264690D01*

-X308237Y264566D01*

-X308550Y264491D01*

-X308869Y264466D01*

-Y251367D01*

-X308783Y251420D01*

-X308673Y251465D01*

-X308559Y251493D01*

-X308441Y251502D01*

-X308323Y251493D01*

-X308209Y251465D01*

-X308099Y251420D01*

-X307999Y251359D01*

-X307909Y251282D01*

-X307832Y251192D01*

-X307771Y251092D01*

-X307726Y250982D01*

-X307698Y250868D01*

-X307691Y250750D01*

-Y247250D01*

-X307698Y247132D01*

-X307726Y247018D01*

-X307771Y246908D01*

-X307832Y246808D01*

-X307909Y246718D01*

-X307999Y246641D01*

-X308099Y246580D01*

-X308209Y246535D01*

-X308323Y246507D01*

-X308441Y246498D01*

-X308559Y246507D01*

-X308673Y246535D01*

-X308783Y246580D01*

-X308869Y246633D01*

-Y187856D01*

-G37*

-G36*

-Y177856D02*X308849Y177879D01*

-X308334Y178319D01*

-X307757Y178672D01*

-X307132Y178931D01*

-X306474Y179089D01*

-X305799Y179142D01*

-X305792Y179142D01*

-Y180516D01*

-X305799Y180516D01*

-X306474Y180569D01*

-X307132Y180727D01*

-X307757Y180986D01*

-X308334Y181339D01*

-X308849Y181779D01*

-X308869Y181802D01*

-Y177856D01*

-G37*

-G36*

-Y138161D02*X308621Y138059D01*

-X308380Y137911D01*

-X308164Y137727D01*

-X307980Y137511D01*

-X307832Y137270D01*

-X307724Y137008D01*

-X307658Y136732D01*

-X307635Y136450D01*

-X307658Y136168D01*

-X307724Y135892D01*

-X307832Y135630D01*

-X307980Y135389D01*

-X308164Y135173D01*

-X308380Y134989D01*

-X308621Y134841D01*

-X308869Y134739D01*

-Y97000D01*

-X305792D01*

-Y105702D01*

-X305978Y105717D01*

-X306254Y105783D01*

-X306516Y105891D01*

-X306757Y106039D01*

-X306973Y106223D01*

-X307157Y106439D01*

-X307305Y106680D01*

-X307413Y106942D01*

-X307479Y107218D01*

-X307496Y107500D01*

-X307479Y107782D01*

-X307413Y108058D01*

-X307305Y108320D01*

-X307157Y108561D01*

-X306973Y108777D01*

-X306757Y108961D01*

-X306516Y109109D01*

-X306254Y109217D01*

-X305978Y109283D01*

-X305792Y109298D01*

-Y170516D01*

-X305799Y170516D01*

-X306474Y170569D01*

-X307132Y170727D01*

-X307757Y170986D01*

-X308334Y171339D01*

-X308849Y171779D01*

-X308869Y171802D01*

-Y143279D01*

-X308621Y143177D01*

-X308380Y143029D01*

-X308164Y142845D01*

-X307980Y142629D01*

-X307832Y142388D01*

-X307724Y142126D01*

-X307658Y141850D01*

-X307635Y141568D01*

-X307658Y141286D01*

-X307724Y141010D01*

-X307832Y140748D01*

-X307980Y140507D01*

-X308164Y140291D01*

-X308380Y140107D01*

-X308621Y139959D01*

-X308869Y139857D01*

-Y138161D01*

-G37*

-G36*

-X305792Y206111D02*X305759Y206119D01*

-X305792Y206148D01*

-Y206111D01*

-G37*

-G36*

-Y208818D02*X305645Y208944D01*

-X305561Y208996D01*

-X305767Y209122D01*

-X305792Y209144D01*

-Y208818D01*

-G37*

-G36*

-X303362Y181279D02*X303841Y180986D01*

-X304466Y180727D01*

-X305124Y180569D01*

-X305792Y180516D01*

-Y179142D01*

-X305124Y179089D01*

-X304466Y178931D01*

-X303841Y178672D01*

-X303362Y178379D01*

-Y181279D01*

-G37*

-G36*

-Y206160D02*X303523Y206022D01*

-X303764Y205874D01*

-X304026Y205766D01*

-X304105Y205747D01*

-X304003Y205660D01*

-X303819Y205444D01*

-X303671Y205203D01*

-X303563Y204941D01*

-X303497Y204665D01*

-X303474Y204383D01*

-X303497Y204101D01*

-X303563Y203825D01*

-X303671Y203563D01*

-X303819Y203322D01*

-X304003Y203106D01*

-X304219Y202922D01*

-X304460Y202774D01*

-X304722Y202666D01*

-X304998Y202600D01*

-X305280Y202577D01*

-X305562Y202600D01*

-X305792Y202655D01*

-Y189142D01*

-X305124Y189089D01*

-X304466Y188931D01*

-X303841Y188672D01*

-X303362Y188379D01*

-Y206160D01*

-G37*

-G36*

-Y209385D02*X303429Y209306D01*

-X303645Y209122D01*

-X303729Y209070D01*

-X303523Y208944D01*

-X303362Y208806D01*

-Y209385D01*

-G37*

-G36*

-Y338000D02*X303576Y338051D01*

-X303875Y338175D01*

-X303932Y338210D01*

-X303862Y337329D01*

-X304009Y335462D01*

-X304447Y333640D01*

-X305163Y331910D01*

-X305792Y330883D01*

-Y275788D01*

-X305760Y275710D01*

-X305685Y275397D01*

-X305660Y275075D01*

-X305685Y274753D01*

-X305760Y274440D01*

-X305792Y274362D01*

-Y212022D01*

-X305767Y212044D01*

-X305526Y212192D01*

-X305264Y212300D01*

-X304988Y212366D01*

-X304706Y212389D01*

-X304424Y212366D01*

-X304148Y212300D01*

-X303886Y212192D01*

-X303645Y212044D01*

-X303429Y211860D01*

-X303362Y211781D01*

-Y327944D01*

-X303365Y327944D01*

-X303687Y327969D01*

-X304000Y328044D01*

-X304299Y328168D01*

-X304574Y328336D01*

-X304819Y328546D01*

-X305029Y328791D01*

-X305197Y329066D01*

-X305321Y329365D01*

-X305396Y329678D01*

-X305415Y330000D01*

-X305396Y330322D01*

-X305321Y330635D01*

-X305197Y330934D01*

-X305029Y331209D01*

-X304819Y331454D01*

-X304574Y331664D01*

-X304299Y331832D01*

-X304000Y331956D01*

-X303687Y332031D01*

-X303365Y332056D01*

-X303362Y332056D01*

-Y338000D01*

-G37*

-G36*

-Y361279D02*X303841Y360986D01*

-X304466Y360727D01*

-X305124Y360569D01*

-X305792Y360516D01*

-Y343775D01*

-X305163Y342748D01*

-X304553Y341276D01*

-X304395Y341461D01*

-X304150Y341671D01*

-X303875Y341839D01*

-X303576Y341963D01*

-X303362Y342014D01*

-Y361279D01*

-G37*

-G36*

-Y371279D02*X303841Y370986D01*

-X304466Y370727D01*

-X305124Y370569D01*

-X305792Y370516D01*

-Y369142D01*

-X305124Y369089D01*

-X304466Y368931D01*

-X303841Y368672D01*

-X303362Y368379D01*

-Y371279D01*

-G37*

-G36*

-Y397000D02*X305792D01*

-Y379142D01*

-X305124Y379089D01*

-X304466Y378931D01*

-X303841Y378672D01*

-X303362Y378379D01*

-Y397000D01*

-G37*

-G36*

-X305792Y97000D02*X303362D01*

-Y171279D01*

-X303841Y170986D01*

-X304466Y170727D01*

-X305124Y170569D01*

-X305792Y170516D01*

-Y109298D01*

-X305696Y109306D01*

-X305414Y109283D01*

-X305138Y109217D01*

-X304876Y109109D01*

-X304635Y108961D01*

-X304419Y108777D01*

-X304235Y108561D01*

-X304087Y108320D01*

-X303979Y108058D01*

-X303913Y107782D01*

-X303890Y107500D01*

-X303913Y107218D01*

-X303979Y106942D01*

-X304087Y106680D01*

-X304235Y106439D01*

-X304419Y106223D01*

-X304635Y106039D01*

-X304876Y105891D01*

-X305138Y105783D01*

-X305414Y105717D01*

-X305696Y105694D01*

-X305792Y105702D01*

-Y97000D01*

-G37*

-G36*

-X303362D02*X295792D01*

-Y170516D01*

-X295799Y170516D01*

-X296474Y170569D01*

-X297132Y170727D01*

-X297757Y170986D01*

-X298334Y171339D01*

-X298849Y171779D01*

-X299289Y172294D01*

-X299642Y172871D01*

-X299901Y173496D01*

-X300059Y174154D01*

-X300099Y174829D01*

-X300059Y175504D01*

-X299901Y176162D01*

-X299642Y176787D01*

-X299289Y177364D01*

-X298849Y177879D01*

-X298334Y178319D01*

-X297757Y178672D01*

-X297132Y178931D01*

-X296474Y179089D01*

-X295799Y179142D01*

-X295792Y179142D01*

-Y180516D01*

-X295799Y180516D01*

-X296474Y180569D01*

-X297132Y180727D01*

-X297757Y180986D01*

-X298334Y181339D01*

-X298849Y181779D01*

-X299289Y182294D01*

-X299642Y182871D01*

-X299901Y183496D01*

-X300059Y184154D01*

-X300099Y184829D01*

-X300059Y185504D01*

-X299901Y186162D01*

-X299642Y186787D01*

-X299289Y187364D01*

-X298849Y187879D01*

-X298334Y188319D01*

-X297757Y188672D01*

-X297132Y188931D01*

-X296474Y189089D01*

-X295799Y189142D01*

-X295792Y189142D01*

-Y241583D01*

-X295937Y241572D01*

-X296259Y241597D01*

-X296572Y241672D01*

-X296871Y241796D01*

-X297146Y241964D01*

-X297391Y242174D01*

-X297601Y242419D01*

-X297769Y242694D01*

-X297893Y242993D01*

-X297968Y243306D01*

-X297987Y243628D01*

-X297968Y243950D01*

-X297893Y244263D01*

-X297769Y244562D01*

-X297601Y244837D01*

-X297391Y245082D01*

-X297146Y245292D01*

-X296871Y245460D01*

-X296572Y245584D01*

-X296259Y245659D01*

-X295937Y245684D01*

-X295792Y245673D01*

-Y254395D01*

-X295793Y254395D01*

-X296092Y254271D01*

-X296405Y254196D01*

-X296727Y254171D01*

-X297049Y254196D01*

-X297362Y254271D01*

-X297661Y254395D01*

-X297936Y254563D01*

-X298181Y254773D01*

-X298391Y255018D01*

-X298559Y255293D01*

-X298683Y255592D01*

-X298758Y255905D01*

-X298777Y256227D01*

-X298758Y256549D01*

-X298683Y256862D01*

-X298559Y257161D01*

-X298391Y257436D01*

-X298181Y257681D01*

-X297936Y257891D01*

-X297661Y258059D01*

-X297362Y258183D01*

-X297049Y258258D01*

-X296727Y258283D01*

-X296405Y258258D01*

-X296092Y258183D01*

-X295793Y258059D01*

-X295792Y258059D01*

-Y281470D01*

-X295858Y281628D01*

-X295933Y281941D01*

-X295952Y282263D01*

-X295933Y282585D01*

-X295858Y282898D01*

-X295792Y283056D01*

-Y303163D01*

-X295845Y303131D01*

-X296144Y303007D01*

-X296457Y302932D01*

-X296779Y302907D01*

-X297101Y302932D01*

-X297414Y303007D01*

-X297713Y303131D01*

-X297988Y303299D01*

-X298233Y303509D01*

-X298443Y303754D01*

-X298611Y304029D01*

-X298735Y304328D01*

-X298810Y304641D01*

-X298829Y304963D01*

-X298810Y305285D01*

-X298735Y305598D01*

-X298611Y305897D01*

-X298443Y306172D01*

-X298233Y306417D01*

-X297988Y306627D01*

-X297713Y306795D01*

-X297414Y306919D01*

-X297101Y306994D01*

-X296779Y307019D01*

-X296457Y306994D01*

-X296144Y306919D01*

-X295845Y306795D01*

-X295792Y306763D01*

-Y360516D01*

-X295799Y360516D01*

-X296474Y360569D01*

-X297132Y360727D01*

-X297757Y360986D01*

-X298334Y361339D01*

-X298849Y361779D01*

-X299289Y362294D01*

-X299642Y362871D01*

-X299901Y363496D01*

-X300059Y364154D01*

-X300099Y364829D01*

-X300059Y365504D01*

-X299901Y366162D01*

-X299642Y366787D01*

-X299289Y367364D01*

-X298849Y367879D01*

-X298334Y368319D01*

-X297757Y368672D01*

-X297132Y368931D01*

-X296474Y369089D01*

-X295799Y369142D01*

-X295792Y369142D01*

-Y370516D01*

-X295799Y370516D01*

-X296474Y370569D01*

-X297132Y370727D01*

-X297757Y370986D01*

-X298334Y371339D01*

-X298849Y371779D01*

-X299289Y372294D01*

-X299642Y372871D01*

-X299901Y373496D01*

-X300059Y374154D01*

-X300099Y374829D01*

-X300059Y375504D01*

-X299901Y376162D01*

-X299642Y376787D01*

-X299289Y377364D01*

-X298849Y377879D01*

-X298334Y378319D01*

-X297757Y378672D01*

-X297132Y378931D01*

-X296474Y379089D01*

-X295799Y379142D01*

-X295792Y379142D01*

-Y397000D01*

-X303362D01*

-Y378379D01*

-X303264Y378319D01*

-X302749Y377879D01*

-X302309Y377364D01*

-X301956Y376787D01*

-X301697Y376162D01*

-X301539Y375504D01*

-X301486Y374829D01*

-X301539Y374154D01*

-X301697Y373496D01*

-X301956Y372871D01*

-X302309Y372294D01*

-X302749Y371779D01*

-X303264Y371339D01*

-X303362Y371279D01*

-Y368379D01*

-X303264Y368319D01*

-X302749Y367879D01*

-X302309Y367364D01*

-X301956Y366787D01*

-X301697Y366162D01*

-X301539Y365504D01*

-X301486Y364829D01*

-X301539Y364154D01*

-X301697Y363496D01*

-X301956Y362871D01*

-X302309Y362294D01*

-X302749Y361779D01*

-X303264Y361339D01*

-X303362Y361279D01*

-Y342014D01*

-X303263Y342038D01*

-X302941Y342063D01*

-X302619Y342038D01*

-X302306Y341963D01*

-X302007Y341839D01*

-X301732Y341671D01*

-X301487Y341461D01*

-X301277Y341216D01*

-X301109Y340941D01*

-X300985Y340642D01*

-X300910Y340329D01*

-X300885Y340007D01*

-X300910Y339685D01*

-X300985Y339372D01*

-X301109Y339073D01*

-X301277Y338798D01*

-X301487Y338553D01*

-X301732Y338343D01*

-X302007Y338175D01*

-X302306Y338051D01*

-X302619Y337976D01*

-X302941Y337951D01*

-X303263Y337976D01*

-X303362Y338000D01*

-Y332056D01*

-X303043Y332031D01*

-X302730Y331956D01*

-X302431Y331832D01*

-X302156Y331664D01*

-X301911Y331454D01*

-X301701Y331209D01*

-X301533Y330934D01*

-X301409Y330635D01*

-X301334Y330322D01*

-X301309Y330000D01*

-X301334Y329678D01*

-X301409Y329365D01*

-X301533Y329066D01*

-X301701Y328791D01*

-X301911Y328546D01*

-X302156Y328336D01*

-X302431Y328168D01*

-X302730Y328044D01*

-X303043Y327969D01*

-X303362Y327944D01*

-Y211781D01*

-X303245Y211644D01*

-X303097Y211403D01*

-X302989Y211141D01*

-X302923Y210865D01*

-X302900Y210583D01*

-X302923Y210301D01*

-X302989Y210025D01*

-X303097Y209763D01*

-X303245Y209522D01*

-X303362Y209385D01*

-Y208806D01*

-X303307Y208760D01*

-X303123Y208544D01*

-X302975Y208303D01*

-X302867Y208041D01*

-X302801Y207765D01*

-X302778Y207483D01*

-X302801Y207201D01*

-X302867Y206925D01*

-X302975Y206663D01*

-X303123Y206422D01*

-X303307Y206206D01*

-X303362Y206160D01*

-Y188379D01*

-X303264Y188319D01*

-X302749Y187879D01*

-X302309Y187364D01*

-X301956Y186787D01*

-X301697Y186162D01*

-X301539Y185504D01*

-X301486Y184829D01*

-X301539Y184154D01*

-X301697Y183496D01*

-X301956Y182871D01*

-X302309Y182294D01*

-X302749Y181779D01*

-X303264Y181339D01*

-X303362Y181279D01*

-Y178379D01*

-X303264Y178319D01*

-X302749Y177879D01*

-X302309Y177364D01*

-X301956Y176787D01*

-X301697Y176162D01*

-X301539Y175504D01*

-X301486Y174829D01*

-X301539Y174154D01*

-X301697Y173496D01*

-X301956Y172871D01*

-X302309Y172294D01*

-X302749Y171779D01*

-X303264Y171339D01*

-X303362Y171279D01*

-Y97000D01*

-G37*

-G36*

-X295792D02*X287914D01*

-Y171082D01*

-X288334Y171339D01*

-X288849Y171779D01*

-X289289Y172294D01*

-X289642Y172871D01*

-X289901Y173496D01*

-X290059Y174154D01*

-X290099Y174829D01*

-X290059Y175504D01*

-X289901Y176162D01*

-X289642Y176787D01*

-X289289Y177364D01*

-X288849Y177879D01*

-X288334Y178319D01*

-X287914Y178576D01*

-Y181082D01*

-X288334Y181339D01*

-X288849Y181779D01*

-X289289Y182294D01*

-X289642Y182871D01*

-X289901Y183496D01*

-X290059Y184154D01*

-X290099Y184829D01*

-X290059Y185504D01*

-X289901Y186162D01*

-X289642Y186787D01*

-X289289Y187364D01*

-X288849Y187879D01*

-X288334Y188319D01*

-X287914Y188576D01*

-Y305773D01*

-X287917Y305773D01*

-X288239Y305798D01*

-X288552Y305873D01*

-X288851Y305997D01*

-X289126Y306165D01*

-X289371Y306375D01*

-X289581Y306620D01*

-X289749Y306895D01*

-X289873Y307194D01*

-X289948Y307507D01*

-X289967Y307829D01*

-X289948Y308151D01*

-X289873Y308464D01*

-X289749Y308763D01*

-X289581Y309038D01*

-X289371Y309283D01*

-X289126Y309493D01*

-X288851Y309661D01*

-X288552Y309785D01*

-X288239Y309860D01*

-X287917Y309885D01*

-X287914Y309885D01*

-Y361082D01*

-X288334Y361339D01*

-X288849Y361779D01*

-X289289Y362294D01*

-X289642Y362871D01*

-X289901Y363496D01*

-X290059Y364154D01*

-X290099Y364829D01*

-X290059Y365504D01*

-X289901Y366162D01*

-X289642Y366787D01*

-X289289Y367364D01*

-X288849Y367879D01*

-X288334Y368319D01*

-X287914Y368576D01*

-Y371082D01*

-X288334Y371339D01*

-X288849Y371779D01*

-X289289Y372294D01*

-X289642Y372871D01*

-X289901Y373496D01*

-X290059Y374154D01*

-X290099Y374829D01*

-X290059Y375504D01*

-X289901Y376162D01*

-X289642Y376787D01*

-X289289Y377364D01*

-X288849Y377879D01*

-X288334Y378319D01*

-X287914Y378576D01*

-Y397000D01*

-X295792D01*

-Y379142D01*

-X295124Y379089D01*

-X294466Y378931D01*

-X293841Y378672D01*

-X293264Y378319D01*

-X292749Y377879D01*

-X292309Y377364D01*

-X291956Y376787D01*

-X291697Y376162D01*

-X291539Y375504D01*

-X291486Y374829D01*

-X291539Y374154D01*

-X291697Y373496D01*

-X291956Y372871D01*

-X292309Y372294D01*

-X292749Y371779D01*

-X293264Y371339D01*

-X293841Y370986D01*

-X294466Y370727D01*

-X295124Y370569D01*

-X295792Y370516D01*

-Y369142D01*

-X295124Y369089D01*

-X294466Y368931D01*

-X293841Y368672D01*

-X293264Y368319D01*

-X292749Y367879D01*

-X292309Y367364D01*

-X291956Y366787D01*

-X291697Y366162D01*

-X291539Y365504D01*

-X291486Y364829D01*

-X291539Y364154D01*

-X291697Y363496D01*

-X291956Y362871D01*

-X292309Y362294D01*

-X292749Y361779D01*

-X293264Y361339D01*

-X293841Y360986D01*

-X294466Y360727D01*

-X295124Y360569D01*

-X295792Y360516D01*

-Y306763D01*

-X295570Y306627D01*

-X295325Y306417D01*

-X295115Y306172D01*

-X294947Y305897D01*

-X294823Y305598D01*

-X294748Y305285D01*

-X294723Y304963D01*

-X294748Y304641D01*

-X294823Y304328D01*

-X294947Y304029D01*

-X295115Y303754D01*

-X295325Y303509D01*

-X295570Y303299D01*

-X295792Y303163D01*

-Y283056D01*

-X295734Y283197D01*

-X295566Y283472D01*

-X295356Y283717D01*

-X295111Y283927D01*

-X294836Y284095D01*

-X294537Y284219D01*

-X294224Y284294D01*

-X293902Y284319D01*

-X293580Y284294D01*

-X293267Y284219D01*

-X292968Y284095D01*

-X292693Y283927D01*

-X292448Y283717D01*

-X292238Y283472D01*

-X292070Y283197D01*

-X291946Y282898D01*

-X291871Y282585D01*

-X291846Y282263D01*

-X291871Y281941D01*

-X291946Y281628D01*

-X292070Y281329D01*

-X292238Y281054D01*

-X292448Y280809D01*

-X292693Y280599D01*

-X292968Y280431D01*

-X293267Y280307D01*

-X293580Y280232D01*

-X293902Y280207D01*

-X294224Y280232D01*

-X294537Y280307D01*

-X294836Y280431D01*

-X295111Y280599D01*

-X295356Y280809D01*

-X295566Y281054D01*

-X295734Y281329D01*

-X295792Y281470D01*

-Y258059D01*

-X295518Y257891D01*

-X295273Y257681D01*

-X295063Y257436D01*

-X294895Y257161D01*

-X294771Y256862D01*

-X294696Y256549D01*

-X294671Y256227D01*

-X294696Y255905D01*

-X294771Y255592D01*

-X294895Y255293D01*

-X295063Y255018D01*

-X295273Y254773D01*

-X295518Y254563D01*

-X295792Y254395D01*

-Y245673D01*

-X295615Y245659D01*

-X295302Y245584D01*

-X295003Y245460D01*

-X294728Y245292D01*

-X294483Y245082D01*

-X294273Y244837D01*

-X294105Y244562D01*

-X293981Y244263D01*

-X293906Y243950D01*

-X293881Y243628D01*

-X293906Y243306D01*

-X293981Y242993D01*

-X294105Y242694D01*

-X294273Y242419D01*

-X294483Y242174D01*

-X294728Y241964D01*

-X295003Y241796D01*

-X295302Y241672D01*

-X295615Y241597D01*

-X295792Y241583D01*

-Y189142D01*

-X295124Y189089D01*

-X294466Y188931D01*

-X293841Y188672D01*

-X293264Y188319D01*

-X292749Y187879D01*

-X292309Y187364D01*

-X291956Y186787D01*

-X291697Y186162D01*

-X291539Y185504D01*

-X291486Y184829D01*

-X291539Y184154D01*

-X291697Y183496D01*

-X291956Y182871D01*

-X292309Y182294D01*

-X292749Y181779D01*

-X293264Y181339D01*

-X293841Y180986D01*

-X294466Y180727D01*

-X295124Y180569D01*

-X295792Y180516D01*

-Y179142D01*

-X295124Y179089D01*

-X294466Y178931D01*

-X293841Y178672D01*

-X293264Y178319D01*

-X292749Y177879D01*

-X292309Y177364D01*

-X291956Y176787D01*

-X291697Y176162D01*

-X291539Y175504D01*

-X291486Y174829D01*

-X291539Y174154D01*

-X291697Y173496D01*

-X291956Y172871D01*

-X292309Y172294D01*

-X292749Y171779D01*

-X293264Y171339D01*

-X293841Y170986D01*

-X294466Y170727D01*

-X295124Y170569D01*

-X295792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X287914Y378576D02*X287757Y378672D01*

-X287132Y378931D01*

-X286474Y379089D01*

-X285799Y379142D01*

-X285792Y379142D01*

-Y397000D01*

-X287914D01*

-Y378576D01*

-G37*

-G36*

-Y368576D02*X287757Y368672D01*

-X287132Y368931D01*

-X286474Y369089D01*

-X285799Y369142D01*

-X285792Y369142D01*

-Y370516D01*

-X285799Y370516D01*

-X286474Y370569D01*

-X287132Y370727D01*

-X287757Y370986D01*

-X287914Y371082D01*

-Y368576D01*

-G37*

-G36*

-Y188576D02*X287757Y188672D01*

-X287132Y188931D01*

-X286474Y189089D01*

-X285799Y189142D01*

-X285792Y189142D01*

-Y322979D01*

-X286065Y323044D01*

-X286364Y323168D01*

-X286639Y323336D01*

-X286884Y323546D01*

-X287094Y323791D01*

-X287262Y324066D01*

-X287386Y324365D01*

-X287461Y324678D01*

-X287480Y325000D01*

-X287461Y325322D01*

-X287386Y325635D01*

-X287262Y325934D01*

-X287094Y326209D01*

-X286884Y326454D01*

-X286639Y326664D01*

-X286364Y326832D01*

-X286065Y326956D01*

-X285792Y327021D01*

-Y360516D01*

-X285799Y360516D01*

-X286474Y360569D01*

-X287132Y360727D01*

-X287757Y360986D01*

-X287914Y361082D01*

-Y309885D01*

-X287595Y309860D01*

-X287282Y309785D01*

-X286983Y309661D01*

-X286708Y309493D01*

-X286463Y309283D01*

-X286253Y309038D01*

-X286085Y308763D01*

-X285961Y308464D01*

-X285886Y308151D01*

-X285861Y307829D01*

-X285886Y307507D01*

-X285961Y307194D01*

-X286085Y306895D01*

-X286253Y306620D01*

-X286463Y306375D01*

-X286708Y306165D01*

-X286983Y305997D01*

-X287282Y305873D01*

-X287595Y305798D01*

-X287914Y305773D01*

-Y188576D01*

-G37*

-G36*

-Y178576D02*X287757Y178672D01*

-X287132Y178931D01*

-X286474Y179089D01*

-X285799Y179142D01*

-X285792Y179142D01*

-Y180516D01*

-X285799Y180516D01*

-X286474Y180569D01*

-X287132Y180727D01*

-X287757Y180986D01*

-X287914Y181082D01*

-Y178576D01*

-G37*

-G36*

-Y97000D02*X285792D01*

-Y170516D01*

-X285799Y170516D01*

-X286474Y170569D01*

-X287132Y170727D01*

-X287757Y170986D01*

-X287914Y171082D01*

-Y97000D01*

-G37*

-G36*

-X285792D02*X278222D01*

-Y171271D01*

-X278334Y171339D01*

-X278849Y171779D01*

-X279289Y172294D01*

-X279642Y172871D01*

-X279901Y173496D01*

-X280059Y174154D01*

-X280099Y174829D01*

-X280059Y175504D01*

-X279901Y176162D01*

-X279642Y176787D01*

-X279289Y177364D01*

-X278849Y177879D01*

-X278334Y178319D01*

-X278222Y178387D01*

-Y181271D01*

-X278334Y181339D01*

-X278849Y181779D01*

-X279289Y182294D01*

-X279642Y182871D01*

-X279901Y183496D01*

-X280059Y184154D01*

-X280099Y184829D01*

-X280059Y185504D01*

-X279901Y186162D01*

-X279642Y186787D01*

-X279289Y187364D01*

-X278849Y187879D01*

-X278334Y188319D01*

-X278222Y188387D01*

-Y277546D01*

-X278225Y277546D01*

-X278547Y277571D01*

-X278860Y277646D01*

-X279159Y277770D01*

-X279434Y277938D01*

-X279679Y278148D01*

-X279889Y278393D01*

-X280057Y278668D01*

-X280181Y278967D01*

-X280256Y279280D01*

-X280275Y279602D01*

-X280256Y279924D01*

-X280181Y280237D01*

-X280057Y280536D01*

-X279889Y280811D01*

-X279679Y281056D01*

-X279434Y281266D01*

-X279159Y281434D01*

-X278860Y281558D01*

-X278547Y281633D01*

-X278225Y281658D01*

-X278222Y281658D01*

-Y283674D01*

-X278380Y283539D01*

-X278621Y283391D01*

-X278883Y283283D01*

-X279159Y283217D01*

-X279441Y283194D01*

-X279723Y283217D01*

-X279999Y283283D01*

-X280261Y283391D01*

-X280502Y283539D01*

-X280718Y283723D01*

-X280902Y283939D01*

-X281050Y284180D01*

-X281158Y284442D01*

-X281224Y284718D01*

-X281241Y285000D01*

-X281224Y285282D01*

-X281158Y285558D01*

-X281050Y285820D01*

-X280902Y286061D01*

-X280718Y286277D01*

-X280502Y286461D01*

-X280261Y286609D01*

-X279999Y286717D01*

-X279723Y286783D01*

-X279441Y286806D01*

-X279159Y286783D01*

-X278883Y286717D01*

-X278621Y286609D01*

-X278380Y286461D01*

-X278222Y286326D01*

-Y296557D01*

-X278529Y296581D01*

-X278842Y296656D01*

-X279141Y296780D01*

-X279416Y296948D01*

-X279661Y297158D01*

-X279871Y297403D01*

-X280039Y297678D01*

-X280163Y297977D01*

-X280238Y298290D01*

-X280257Y298612D01*

-X280238Y298934D01*

-X280163Y299247D01*

-X280039Y299546D01*

-X279871Y299821D01*

-X279661Y300066D01*

-X279416Y300276D01*

-X279141Y300444D01*

-X278842Y300568D01*

-X278529Y300643D01*

-X278222Y300667D01*

-Y306457D01*

-X278383Y306555D01*

-X278628Y306765D01*

-X278838Y307010D01*

-X279006Y307285D01*

-X279130Y307584D01*

-X279205Y307897D01*

-X279224Y308219D01*

-X279205Y308541D01*

-X279130Y308854D01*

-X279006Y309153D01*

-X278838Y309428D01*

-X278628Y309673D01*

-X278383Y309883D01*

-X278222Y309981D01*

-Y345601D01*

-X278383Y345668D01*

-X278658Y345836D01*

-X278903Y346046D01*

-X279113Y346291D01*

-X279281Y346566D01*

-X279405Y346865D01*

-X279480Y347178D01*

-X279499Y347500D01*

-X279480Y347822D01*

-X279405Y348135D01*

-X279281Y348434D01*

-X279113Y348709D01*

-X278903Y348954D01*

-X278658Y349164D01*

-X278383Y349332D01*

-X278222Y349399D01*

-Y361271D01*

-X278334Y361339D01*

-X278849Y361779D01*

-X279289Y362294D01*

-X279642Y362871D01*

-X279901Y363496D01*

-X280059Y364154D01*

-X280099Y364829D01*

-X280059Y365504D01*

-X279901Y366162D01*

-X279642Y366787D01*

-X279289Y367364D01*

-X278849Y367879D01*

-X278334Y368319D01*

-X278222Y368387D01*

-Y371271D01*

-X278334Y371339D01*

-X278849Y371779D01*

-X279289Y372294D01*

-X279642Y372871D01*

-X279901Y373496D01*

-X280059Y374154D01*

-X280099Y374829D01*

-X280059Y375504D01*

-X279901Y376162D01*

-X279642Y376787D01*

-X279289Y377364D01*

-X278849Y377879D01*

-X278334Y378319D01*

-X278222Y378387D01*

-Y397000D01*

-X285792D01*

-Y379142D01*

-X285124Y379089D01*

-X284466Y378931D01*

-X283841Y378672D01*

-X283264Y378319D01*

-X282749Y377879D01*

-X282309Y377364D01*

-X281956Y376787D01*

-X281697Y376162D01*

-X281539Y375504D01*

-X281486Y374829D01*

-X281539Y374154D01*

-X281697Y373496D01*

-X281956Y372871D01*

-X282309Y372294D01*

-X282749Y371779D01*

-X283264Y371339D01*

-X283841Y370986D01*

-X284466Y370727D01*

-X285124Y370569D01*

-X285792Y370516D01*

-Y369142D01*

-X285124Y369089D01*

-X284466Y368931D01*

-X283841Y368672D01*

-X283264Y368319D01*

-X282749Y367879D01*

-X282309Y367364D01*

-X281956Y366787D01*

-X281697Y366162D01*

-X281539Y365504D01*

-X281486Y364829D01*

-X281539Y364154D01*

-X281697Y363496D01*

-X281956Y362871D01*

-X282309Y362294D01*

-X282749Y361779D01*

-X283264Y361339D01*

-X283841Y360986D01*

-X284466Y360727D01*

-X285124Y360569D01*

-X285792Y360516D01*

-Y327021D01*

-X285752Y327031D01*

-X285430Y327056D01*

-X285108Y327031D01*

-X284795Y326956D01*

-X284496Y326832D01*

-X284221Y326664D01*

-X283976Y326454D01*

-X283766Y326209D01*

-X283598Y325934D01*

-X283474Y325635D01*

-X283399Y325322D01*

-X283374Y325000D01*

-X283399Y324678D01*

-X283474Y324365D01*

-X283598Y324066D01*

-X283766Y323791D01*

-X283976Y323546D01*

-X284221Y323336D01*

-X284496Y323168D01*

-X284795Y323044D01*

-X285108Y322969D01*

-X285430Y322944D01*

-X285752Y322969D01*

-X285792Y322979D01*

-Y189142D01*

-X285124Y189089D01*

-X284466Y188931D01*

-X283841Y188672D01*

-X283264Y188319D01*

-X282749Y187879D01*

-X282309Y187364D01*

-X281956Y186787D01*

-X281697Y186162D01*

-X281539Y185504D01*

-X281486Y184829D01*

-X281539Y184154D01*

-X281697Y183496D01*

-X281956Y182871D01*

-X282309Y182294D01*

-X282749Y181779D01*

-X283264Y181339D01*

-X283841Y180986D01*

-X284466Y180727D01*

-X285124Y180569D01*

-X285792Y180516D01*

-Y179142D01*

-X285124Y179089D01*

-X284466Y178931D01*

-X283841Y178672D01*

-X283264Y178319D01*

-X282749Y177879D01*

-X282309Y177364D01*

-X281956Y176787D01*

-X281697Y176162D01*

-X281539Y175504D01*

-X281486Y174829D01*

-X281539Y174154D01*

-X281697Y173496D01*

-X281956Y172871D01*

-X282309Y172294D01*

-X282749Y171779D01*

-X283264Y171339D01*

-X283841Y170986D01*

-X284466Y170727D01*

-X285124Y170569D01*

-X285792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X278222Y378387D02*X277757Y378672D01*

-X277132Y378931D01*

-X276474Y379089D01*

-X275799Y379142D01*

-X275792Y379142D01*

-Y397000D01*

-X278222D01*

-Y378387D01*

-G37*

-G36*

-Y368387D02*X277757Y368672D01*

-X277132Y368931D01*

-X276474Y369089D01*

-X275799Y369142D01*

-X275792Y369142D01*

-Y370516D01*

-X275799Y370516D01*

-X276474Y370569D01*

-X277132Y370727D01*

-X277757Y370986D01*

-X278222Y371271D01*

-Y368387D01*

-G37*

-G36*

-Y349399D02*X278084Y349456D01*

-X277771Y349531D01*

-X277449Y349556D01*

-X277127Y349531D01*

-X276814Y349456D01*

-X276515Y349332D01*

-X276240Y349164D01*

-X275995Y348954D01*

-X275792Y348717D01*

-Y360516D01*

-X275799Y360516D01*

-X276474Y360569D01*

-X277132Y360727D01*

-X277757Y360986D01*

-X278222Y361271D01*

-Y349399D01*

-G37*

-G36*

-Y309981D02*X278108Y310051D01*

-X277809Y310175D01*

-X277496Y310250D01*

-X277174Y310275D01*

-X276852Y310250D01*

-X276539Y310175D01*

-X276240Y310051D01*

-X275965Y309883D01*

-X275792Y309735D01*

-Y346283D01*

-X275995Y346046D01*

-X276240Y345836D01*

-X276515Y345668D01*

-X276814Y345544D01*

-X277127Y345469D01*

-X277449Y345444D01*

-X277771Y345469D01*

-X278084Y345544D01*

-X278222Y345601D01*

-Y309981D01*

-G37*

-G36*

-Y188387D02*X277757Y188672D01*

-X277132Y188931D01*

-X276474Y189089D01*

-X275799Y189142D01*

-X275792Y189142D01*

-Y306703D01*

-X275965Y306555D01*

-X276240Y306387D01*

-X276539Y306263D01*

-X276852Y306188D01*

-X277174Y306163D01*

-X277496Y306188D01*

-X277809Y306263D01*

-X278108Y306387D01*

-X278222Y306457D01*

-Y300667D01*

-X278207Y300668D01*

-X277885Y300643D01*

-X277572Y300568D01*

-X277273Y300444D01*

-X276998Y300276D01*

-X276753Y300066D01*

-X276543Y299821D01*

-X276375Y299546D01*

-X276251Y299247D01*

-X276176Y298934D01*

-X276151Y298612D01*

-X276176Y298290D01*

-X276251Y297977D01*

-X276375Y297678D01*

-X276543Y297403D01*

-X276753Y297158D01*

-X276998Y296948D01*

-X277273Y296780D01*

-X277572Y296656D01*

-X277885Y296581D01*

-X278207Y296556D01*

-X278222Y296557D01*

-Y286326D01*

-X278164Y286277D01*

-X277980Y286061D01*

-X277832Y285820D01*

-X277724Y285558D01*

-X277658Y285282D01*

-X277635Y285000D01*

-X277658Y284718D01*

-X277724Y284442D01*

-X277832Y284180D01*

-X277980Y283939D01*

-X278164Y283723D01*

-X278222Y283674D01*

-Y281658D01*

-X277903Y281633D01*

-X277590Y281558D01*

-X277291Y281434D01*

-X277016Y281266D01*

-X276771Y281056D01*

-X276561Y280811D01*

-X276393Y280536D01*

-X276269Y280237D01*

-X276194Y279924D01*

-X276169Y279602D01*

-X276194Y279280D01*

-X276269Y278967D01*

-X276393Y278668D01*

-X276561Y278393D01*

-X276771Y278148D01*

-X277016Y277938D01*

-X277291Y277770D01*

-X277590Y277646D01*

-X277903Y277571D01*

-X278222Y277546D01*

-Y188387D01*

-G37*

-G36*

-Y178387D02*X277757Y178672D01*

-X277132Y178931D01*

-X276474Y179089D01*

-X275799Y179142D01*

-X275792Y179142D01*

-Y180516D01*

-X275799Y180516D01*

-X276474Y180569D01*

-X277132Y180727D01*

-X277757Y180986D01*

-X278222Y181271D01*

-Y178387D01*

-G37*

-G36*

-Y97000D02*X275792D01*

-Y170516D01*

-X275799Y170516D01*

-X276474Y170569D01*

-X277132Y170727D01*

-X277757Y170986D01*

-X278222Y171271D01*

-Y97000D01*

-G37*

-G36*

-X275792D02*X269438D01*

-Y172538D01*

-X269642Y172871D01*

-X269901Y173496D01*

-X270059Y174154D01*

-X270099Y174829D01*

-X270059Y175504D01*

-X269901Y176162D01*

-X269642Y176787D01*

-X269438Y177120D01*

-Y182538D01*

-X269642Y182871D01*

-X269901Y183496D01*

-X270059Y184154D01*

-X270099Y184829D01*

-X270059Y185504D01*

-X269901Y186162D01*

-X269642Y186787D01*

-X269438Y187120D01*

-Y196695D01*

-X269441Y196694D01*

-X269723Y196717D01*

-X269999Y196783D01*

-X270261Y196891D01*

-X270502Y197039D01*

-X270718Y197223D01*

-X270902Y197439D01*

-X271050Y197680D01*

-X271158Y197942D01*

-X271224Y198218D01*

-X271241Y198500D01*

-X271224Y198782D01*

-X271158Y199058D01*

-X271050Y199320D01*

-X270902Y199561D01*

-X270718Y199777D01*

-X270502Y199961D01*

-X270261Y200109D01*

-X269999Y200217D01*

-X269723Y200283D01*

-X269441Y200306D01*

-X269438Y200305D01*

-Y229770D01*

-X269659Y229717D01*

-X269941Y229694D01*

-X270223Y229717D01*

-X270499Y229783D01*

-X270761Y229891D01*

-X271002Y230039D01*

-X271218Y230223D01*

-X271402Y230439D01*

-X271550Y230680D01*

-X271658Y230942D01*

-X271724Y231218D01*

-X271741Y231500D01*

-X271724Y231782D01*

-X271658Y232058D01*

-X271550Y232320D01*

-X271402Y232561D01*

-X271218Y232777D01*

-X271002Y232961D01*

-X270761Y233109D01*

-X270499Y233217D01*

-X270223Y233283D01*

-X269941Y233306D01*

-X269659Y233283D01*

-X269438Y233230D01*

-Y296592D01*

-X269653Y296575D01*

-X269975Y296600D01*

-X270288Y296675D01*

-X270587Y296799D01*

-X270862Y296967D01*

-X271107Y297177D01*

-X271317Y297422D01*

-X271426Y297601D01*

-X271565Y297373D01*

-X271775Y297128D01*

-X272020Y296918D01*

-X272295Y296750D01*

-X272594Y296626D01*

-X272907Y296551D01*

-X273229Y296526D01*

-X273551Y296551D01*

-X273864Y296626D01*

-X274163Y296750D01*

-X274438Y296918D01*

-X274683Y297128D01*

-X274893Y297373D01*

-X275061Y297648D01*

-X275185Y297947D01*

-X275260Y298260D01*

-X275279Y298582D01*

-X275260Y298904D01*

-X275185Y299217D01*

-X275061Y299516D01*

-X274893Y299791D01*

-X274683Y300036D01*

-X274438Y300246D01*

-X274163Y300414D01*

-X273864Y300538D01*

-X273551Y300613D01*

-X273229Y300638D01*

-X272907Y300613D01*

-X272594Y300538D01*

-X272295Y300414D01*

-X272020Y300246D01*

-X271775Y300036D01*

-X271565Y299791D01*

-X271456Y299612D01*

-X271317Y299840D01*

-X271107Y300085D01*

-X270862Y300295D01*

-X270587Y300463D01*

-X270288Y300587D01*

-X269975Y300662D01*

-X269653Y300687D01*

-X269438Y300670D01*

-Y312011D01*

-X269576Y312044D01*

-X269875Y312168D01*

-X270150Y312336D01*

-X270395Y312546D01*

-X270605Y312791D01*

-X270773Y313066D01*

-X270897Y313365D01*

-X270972Y313678D01*

-X270991Y314000D01*

-X270972Y314322D01*

-X270897Y314635D01*

-X270773Y314934D01*

-X270605Y315209D01*

-X270395Y315454D01*

-X270150Y315664D01*

-X269875Y315832D01*

-X269576Y315956D01*

-X269438Y315989D01*

-Y334503D01*

-X269621Y334391D01*

-X269883Y334283D01*

-X270159Y334217D01*

-X270441Y334194D01*

-X270723Y334217D01*

-X270999Y334283D01*

-X271261Y334391D01*

-X271502Y334539D01*

-X271718Y334723D01*

-X271902Y334939D01*

-X272050Y335180D01*

-X272158Y335442D01*

-X272224Y335718D01*

-X272241Y336000D01*

-X272224Y336282D01*

-X272158Y336558D01*

-X272050Y336820D01*

-X271902Y337061D01*

-X271718Y337277D01*

-X271502Y337461D01*

-X271261Y337609D01*

-X270999Y337717D01*

-X270723Y337783D01*

-X270441Y337806D01*

-X270159Y337783D01*

-X269883Y337717D01*

-X269621Y337609D01*

-X269438Y337497D01*

-Y341003D01*

-X269621Y340891D01*

-X269883Y340783D01*

-X270159Y340717D01*

-X270441Y340694D01*

-X270723Y340717D01*

-X270999Y340783D01*

-X271261Y340891D01*

-X271502Y341039D01*

-X271718Y341223D01*

-X271902Y341439D01*

-X272050Y341680D01*

-X272158Y341942D01*

-X272224Y342218D01*

-X272241Y342500D01*

-X272224Y342782D01*

-X272158Y343058D01*

-X272050Y343320D01*

-X271902Y343561D01*

-X271718Y343777D01*

-X271502Y343961D01*

-X271261Y344109D01*

-X270999Y344217D01*

-X270723Y344283D01*

-X270441Y344306D01*

-X270159Y344283D01*

-X269883Y344217D01*

-X269621Y344109D01*

-X269438Y343997D01*

-Y348003D01*

-X269621Y347891D01*

-X269883Y347783D01*

-X270159Y347717D01*

-X270441Y347694D01*

-X270723Y347717D01*

-X270999Y347783D01*

-X271261Y347891D01*

-X271502Y348039D01*

-X271718Y348223D01*

-X271902Y348439D01*

-X272050Y348680D01*

-X272158Y348942D01*

-X272224Y349218D01*

-X272241Y349500D01*

-X272224Y349782D01*

-X272158Y350058D01*

-X272050Y350320D01*

-X271902Y350561D01*

-X271718Y350777D01*

-X271502Y350961D01*

-X271261Y351109D01*

-X270999Y351217D01*

-X270723Y351283D01*

-X270441Y351306D01*

-X270159Y351283D01*

-X269883Y351217D01*

-X269621Y351109D01*

-X269438Y350997D01*

-Y355503D01*

-X269621Y355391D01*

-X269883Y355283D01*

-X270159Y355217D01*

-X270441Y355194D01*

-X270723Y355217D01*

-X270999Y355283D01*

-X271261Y355391D01*

-X271502Y355539D01*

-X271718Y355723D01*

-X271902Y355939D01*

-X272050Y356180D01*

-X272158Y356442D01*

-X272224Y356718D01*

-X272241Y357000D01*

-X272224Y357282D01*

-X272158Y357558D01*

-X272050Y357820D01*

-X271902Y358061D01*

-X271718Y358277D01*

-X271502Y358461D01*

-X271261Y358609D01*

-X270999Y358717D01*

-X270723Y358783D01*

-X270441Y358806D01*

-X270159Y358783D01*

-X269883Y358717D01*

-X269621Y358609D01*

-X269438Y358497D01*

-Y362538D01*

-X269642Y362871D01*

-X269901Y363496D01*

-X270059Y364154D01*

-X270099Y364829D01*

-X270059Y365504D01*

-X269901Y366162D01*

-X269642Y366787D01*

-X269438Y367120D01*

-Y372538D01*

-X269642Y372871D01*

-X269901Y373496D01*

-X270059Y374154D01*

-X270099Y374829D01*

-X270059Y375504D01*

-X269901Y376162D01*

-X269642Y376787D01*

-X269438Y377120D01*

-Y397000D01*

-X275792D01*

-Y379142D01*

-X275124Y379089D01*

-X274466Y378931D01*

-X273841Y378672D01*

-X273264Y378319D01*

-X272749Y377879D01*

-X272309Y377364D01*

-X271956Y376787D01*

-X271697Y376162D01*

-X271539Y375504D01*

-X271486Y374829D01*

-X271539Y374154D01*

-X271697Y373496D01*

-X271956Y372871D01*

-X272309Y372294D01*

-X272749Y371779D01*

-X273264Y371339D01*

-X273841Y370986D01*

-X274466Y370727D01*

-X275124Y370569D01*

-X275792Y370516D01*

-Y369142D01*

-X275124Y369089D01*

-X274466Y368931D01*

-X273841Y368672D01*

-X273264Y368319D01*

-X272749Y367879D01*

-X272309Y367364D01*

-X271956Y366787D01*

-X271697Y366162D01*

-X271539Y365504D01*

-X271486Y364829D01*

-X271539Y364154D01*

-X271697Y363496D01*

-X271956Y362871D01*

-X272309Y362294D01*

-X272749Y361779D01*

-X273264Y361339D01*

-X273841Y360986D01*

-X274466Y360727D01*

-X275124Y360569D01*

-X275792Y360516D01*

-Y348717D01*

-X275785Y348709D01*

-X275617Y348434D01*

-X275493Y348135D01*

-X275418Y347822D01*

-X275393Y347500D01*

-X275418Y347178D01*

-X275493Y346865D01*

-X275617Y346566D01*

-X275785Y346291D01*

-X275792Y346283D01*

-Y309735D01*

-X275720Y309673D01*

-X275510Y309428D01*

-X275342Y309153D01*

-X275218Y308854D01*

-X275143Y308541D01*

-X275118Y308219D01*

-X275143Y307897D01*

-X275218Y307584D01*

-X275342Y307285D01*

-X275510Y307010D01*

-X275720Y306765D01*

-X275792Y306703D01*

-Y189142D01*

-X275124Y189089D01*

-X274466Y188931D01*

-X273841Y188672D01*

-X273264Y188319D01*

-X272749Y187879D01*

-X272309Y187364D01*

-X271956Y186787D01*

-X271697Y186162D01*

-X271539Y185504D01*

-X271486Y184829D01*

-X271539Y184154D01*

-X271697Y183496D01*

-X271956Y182871D01*

-X272309Y182294D01*

-X272749Y181779D01*

-X273264Y181339D01*

-X273841Y180986D01*

-X274466Y180727D01*

-X275124Y180569D01*

-X275792Y180516D01*

-Y179142D01*

-X275124Y179089D01*

-X274466Y178931D01*

-X273841Y178672D01*

-X273264Y178319D01*

-X272749Y177879D01*

-X272309Y177364D01*

-X271956Y176787D01*

-X271697Y176162D01*

-X271539Y175504D01*

-X271486Y174829D01*

-X271539Y174154D01*

-X271697Y173496D01*

-X271956Y172871D01*

-X272309Y172294D01*

-X272749Y171779D01*

-X273264Y171339D01*

-X273841Y170986D01*

-X274466Y170727D01*

-X275124Y170569D01*

-X275792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X269438Y377120D02*X269289Y377364D01*

-X268849Y377879D01*

-X268334Y378319D01*

-X267757Y378672D01*

-X267132Y378931D01*

-X266474Y379089D01*

-X265799Y379142D01*

-X265792Y379142D01*

-Y397000D01*

-X269438D01*

-Y377120D01*

-G37*

-G36*

-Y367120D02*X269289Y367364D01*

-X268849Y367879D01*

-X268334Y368319D01*

-X267757Y368672D01*

-X267132Y368931D01*

-X266474Y369089D01*

-X265799Y369142D01*

-X265792Y369142D01*

-Y370516D01*

-X265799Y370516D01*

-X266474Y370569D01*

-X267132Y370727D01*

-X267757Y370986D01*

-X268334Y371339D01*

-X268849Y371779D01*

-X269289Y372294D01*

-X269438Y372538D01*

-Y367120D01*

-G37*

-G36*

-Y300670D02*X269331Y300662D01*

-X269018Y300587D01*

-X268719Y300463D01*

-X268444Y300295D01*

-X268199Y300085D01*

-X267989Y299840D01*

-X267821Y299565D01*

-X267697Y299266D01*

-X267622Y298953D01*

-X267597Y298631D01*

-X267622Y298309D01*

-X267638Y298244D01*

-X267622Y298258D01*

-X267347Y298426D01*

-X267048Y298550D01*

-X266735Y298625D01*

-X266413Y298650D01*

-X266091Y298625D01*

-X265792Y298553D01*

-Y360516D01*

-X265799Y360516D01*

-X266474Y360569D01*

-X267132Y360727D01*

-X267757Y360986D01*

-X268334Y361339D01*

-X268849Y361779D01*

-X269289Y362294D01*

-X269438Y362538D01*

-Y358497D01*

-X269380Y358461D01*

-X269164Y358277D01*

-X268980Y358061D01*

-X268832Y357820D01*

-X268724Y357558D01*

-X268658Y357282D01*

-X268635Y357000D01*

-X268658Y356718D01*

-X268724Y356442D01*

-X268832Y356180D01*

-X268980Y355939D01*

-X269164Y355723D01*

-X269380Y355539D01*

-X269438Y355503D01*

-Y350997D01*

-X269380Y350961D01*

-X269164Y350777D01*

-X268980Y350561D01*

-X268832Y350320D01*

-X268724Y350058D01*

-X268658Y349782D01*

-X268635Y349500D01*

-X268658Y349218D01*

-X268724Y348942D01*

-X268832Y348680D01*

-X268980Y348439D01*

-X269164Y348223D01*

-X269380Y348039D01*

-X269438Y348003D01*

-Y343997D01*

-X269380Y343961D01*

-X269164Y343777D01*

-X268980Y343561D01*

-X268832Y343320D01*

-X268724Y343058D01*

-X268658Y342782D01*

-X268635Y342500D01*

-X268658Y342218D01*

-X268724Y341942D01*

-X268832Y341680D01*

-X268980Y341439D01*

-X269164Y341223D01*

-X269380Y341039D01*

-X269438Y341003D01*

-Y337497D01*

-X269380Y337461D01*

-X269164Y337277D01*

-X268980Y337061D01*

-X268832Y336820D01*

-X268724Y336558D01*

-X268658Y336282D01*

-X268635Y336000D01*

-X268658Y335718D01*

-X268724Y335442D01*

-X268832Y335180D01*

-X268980Y334939D01*

-X269164Y334723D01*

-X269380Y334539D01*

-X269438Y334503D01*

-Y315989D01*

-X269263Y316031D01*

-X268941Y316056D01*

-X268619Y316031D01*

-X268306Y315956D01*

-X268007Y315832D01*

-X267732Y315664D01*

-X267487Y315454D01*

-X267277Y315209D01*

-X267109Y314934D01*

-X266985Y314635D01*

-X266910Y314322D01*

-X266885Y314000D01*

-X266910Y313678D01*

-X266985Y313365D01*

-X267109Y313066D01*

-X267277Y312791D01*

-X267487Y312546D01*

-X267732Y312336D01*

-X268007Y312168D01*

-X268306Y312044D01*

-X268619Y311969D01*

-X268941Y311944D01*

-X269263Y311969D01*

-X269438Y312011D01*

-Y300670D01*

-G37*

-G36*

-Y187120D02*X269289Y187364D01*

-X268849Y187879D01*

-X268334Y188319D01*

-X267757Y188672D01*

-X267132Y188931D01*

-X266474Y189089D01*

-X265799Y189142D01*

-X265792Y189142D01*

-Y281877D01*

-X265866Y281997D01*

-X265990Y282296D01*

-X266065Y282609D01*

-X266084Y282931D01*

-X266065Y283253D01*

-X265990Y283566D01*

-X265866Y283865D01*

-X265792Y283985D01*

-Y294635D01*

-X266091Y294563D01*

-X266413Y294538D01*

-X266735Y294563D01*

-X267048Y294638D01*

-X267347Y294762D01*

-X267622Y294930D01*

-X267867Y295140D01*

-X268077Y295385D01*

-X268245Y295660D01*

-X268369Y295959D01*

-X268444Y296272D01*

-X268463Y296594D01*

-X268444Y296916D01*

-X268428Y296981D01*

-X268444Y296967D01*

-X268719Y296799D01*

-X269018Y296675D01*

-X269331Y296600D01*

-X269438Y296592D01*

-Y233230D01*

-X269383Y233217D01*

-X269121Y233109D01*

-X268880Y232961D01*

-X268664Y232777D01*

-X268480Y232561D01*

-X268332Y232320D01*

-X268224Y232058D01*

-X268158Y231782D01*

-X268135Y231500D01*

-X268158Y231218D01*

-X268224Y230942D01*

-X268332Y230680D01*

-X268480Y230439D01*

-X268664Y230223D01*

-X268880Y230039D01*

-X269121Y229891D01*

-X269383Y229783D01*

-X269438Y229770D01*

-Y200305D01*

-X269159Y200283D01*

-X268883Y200217D01*

-X268621Y200109D01*

-X268380Y199961D01*

-X268164Y199777D01*

-X267980Y199561D01*

-X267832Y199320D01*

-X267724Y199058D01*

-X267658Y198782D01*

-X267635Y198500D01*

-X267658Y198218D01*

-X267724Y197942D01*

-X267832Y197680D01*

-X267980Y197439D01*

-X268164Y197223D01*

-X268380Y197039D01*

-X268621Y196891D01*

-X268883Y196783D01*

-X269159Y196717D01*

-X269438Y196695D01*

-Y187120D01*

-G37*

-G36*

-Y177120D02*X269289Y177364D01*

-X268849Y177879D01*

-X268334Y178319D01*

-X267757Y178672D01*

-X267132Y178931D01*

-X266474Y179089D01*

-X265799Y179142D01*

-X265792Y179142D01*

-Y180516D01*

-X265799Y180516D01*

-X266474Y180569D01*

-X267132Y180727D01*

-X267757Y180986D01*

-X268334Y181339D01*

-X268849Y181779D01*

-X269289Y182294D01*

-X269438Y182538D01*

-Y177120D01*

-G37*

-G36*

-Y97000D02*X265792D01*

-Y170516D01*

-X265799Y170516D01*

-X266474Y170569D01*

-X267132Y170727D01*

-X267757Y170986D01*

-X268334Y171339D01*

-X268849Y171779D01*

-X269289Y172294D01*

-X269438Y172538D01*

-Y97000D01*

-G37*

-G36*

-X262747Y181782D02*X262749Y181779D01*

-X263264Y181339D01*

-X263841Y180986D01*

-X264466Y180727D01*

-X265124Y180569D01*

-X265792Y180516D01*

-Y179142D01*

-X265124Y179089D01*

-X264466Y178931D01*

-X263841Y178672D01*

-X263264Y178319D01*

-X262749Y177879D01*

-X262747Y177876D01*

-Y181782D01*

-G37*

-G36*

-Y281334D02*X262825Y281267D01*

-X263100Y281099D01*

-X263399Y280975D01*

-X263712Y280900D01*

-X264034Y280875D01*

-X264356Y280900D01*

-X264669Y280975D01*

-X264968Y281099D01*

-X265243Y281267D01*

-X265488Y281477D01*

-X265698Y281722D01*

-X265792Y281877D01*

-Y189142D01*

-X265124Y189089D01*

-X264466Y188931D01*

-X263841Y188672D01*

-X263264Y188319D01*

-X262749Y187879D01*

-X262747Y187876D01*

-Y266716D01*

-X262750Y266716D01*

-X263072Y266741D01*

-X263385Y266816D01*

-X263684Y266940D01*

-X263959Y267108D01*

-X264204Y267318D01*

-X264414Y267563D01*

-X264582Y267838D01*

-X264706Y268137D01*

-X264781Y268450D01*

-X264800Y268772D01*

-X264781Y269094D01*

-X264706Y269407D01*

-X264582Y269706D01*

-X264414Y269981D01*

-X264204Y270226D01*

-X263959Y270436D01*

-X263684Y270604D01*

-X263385Y270728D01*

-X263072Y270803D01*

-X262750Y270828D01*

-X262747Y270828D01*

-Y281334D01*

-G37*

-G36*

-Y289773D02*X263062Y289798D01*

-X263375Y289873D01*

-X263674Y289997D01*

-X263949Y290165D01*

-X264194Y290375D01*

-X264404Y290620D01*

-X264572Y290895D01*

-X264696Y291194D01*

-X264771Y291507D01*

-X264790Y291829D01*

-X264771Y292151D01*

-X264696Y292464D01*

-X264572Y292763D01*

-X264404Y293038D01*

-X264194Y293283D01*

-X264019Y293433D01*

-X264174Y293497D01*

-X264449Y293665D01*

-X264694Y293875D01*

-X264904Y294120D01*

-X265072Y294395D01*

-X265196Y294694D01*

-X265246Y294905D01*

-X265479Y294762D01*

-X265778Y294638D01*

-X265792Y294635D01*

-Y283985D01*

-X265698Y284140D01*

-X265488Y284385D01*

-X265243Y284595D01*

-X264968Y284763D01*

-X264669Y284887D01*

-X264356Y284962D01*

-X264034Y284987D01*

-X263712Y284962D01*

-X263399Y284887D01*

-X263100Y284763D01*

-X262825Y284595D01*

-X262747Y284528D01*

-Y289773D01*

-G37*

-G36*

-Y361782D02*X262749Y361779D01*

-X263264Y361339D01*

-X263841Y360986D01*

-X264466Y360727D01*

-X265124Y360569D01*

-X265792Y360516D01*

-Y298553D01*

-X265778Y298550D01*

-X265479Y298426D01*

-X265204Y298258D01*

-X264959Y298048D01*

-X264749Y297803D01*

-X264581Y297528D01*

-X264457Y297229D01*

-X264407Y297018D01*

-X264174Y297161D01*

-X263875Y297285D01*

-X263562Y297360D01*

-X263240Y297385D01*

-X262918Y297360D01*

-X262747Y297319D01*

-Y306063D01*

-X262779Y306090D01*

-X262963Y306306D01*

-X263111Y306547D01*

-X263219Y306809D01*

-X263285Y307085D01*

-X263302Y307367D01*

-X263285Y307649D01*

-X263219Y307925D01*

-X263111Y308187D01*

-X262963Y308428D01*

-X262779Y308644D01*

-X262747Y308671D01*

-Y318339D01*

-X262883Y318283D01*

-X263159Y318217D01*

-X263441Y318194D01*

-X263723Y318217D01*

-X263999Y318283D01*

-X264261Y318391D01*

-X264502Y318539D01*

-X264718Y318723D01*

-X264902Y318939D01*

-X265050Y319180D01*

-X265158Y319442D01*

-X265224Y319718D01*

-X265241Y320000D01*

-X265224Y320282D01*

-X265158Y320558D01*

-X265050Y320820D01*

-X264902Y321061D01*

-X264718Y321277D01*

-X264502Y321461D01*

-X264261Y321609D01*

-X263999Y321717D01*

-X263723Y321783D01*

-X263441Y321806D01*

-X263159Y321783D01*

-X262883Y321717D01*

-X262747Y321661D01*

-Y361782D01*

-G37*

-G36*

-Y371782D02*X262749Y371779D01*

-X263264Y371339D01*

-X263841Y370986D01*

-X264466Y370727D01*

-X265124Y370569D01*

-X265792Y370516D01*

-Y369142D01*

-X265124Y369089D01*

-X264466Y368931D01*

-X263841Y368672D01*

-X263264Y368319D01*

-X262749Y367879D01*

-X262747Y367876D01*

-Y371782D01*

-G37*

-G36*

-Y397000D02*X265792D01*

-Y379142D01*

-X265124Y379089D01*

-X264466Y378931D01*

-X263841Y378672D01*

-X263264Y378319D01*

-X262749Y377879D01*

-X262747Y377876D01*

-Y397000D01*

-G37*

-G36*

-X265792Y97000D02*X262747D01*

-Y171782D01*

-X262749Y171779D01*

-X263264Y171339D01*

-X263841Y170986D01*

-X264466Y170727D01*

-X265124Y170569D01*

-X265792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X260938Y282284D02*X260976Y282293D01*

-X261275Y282417D01*

-X261550Y282585D01*

-X261795Y282795D01*

-X261984Y283017D01*

-X261978Y282931D01*

-X262003Y282609D01*

-X262078Y282296D01*

-X262202Y281997D01*

-X262370Y281722D01*

-X262580Y281477D01*

-X262747Y281334D01*

-Y270828D01*

-X262428Y270803D01*

-X262115Y270728D01*

-X261816Y270604D01*

-X261541Y270436D01*

-X261296Y270226D01*

-X261086Y269981D01*

-X260938Y269739D01*

-Y282284D01*

-G37*

-G36*

-Y290846D02*X261076Y290620D01*

-X261286Y290375D01*

-X261531Y290165D01*

-X261806Y289997D01*

-X262105Y289873D01*

-X262418Y289798D01*

-X262740Y289773D01*

-X262747Y289773D01*

-Y284528D01*

-X262580Y284385D01*

-X262386Y284157D01*

-X262391Y284249D01*

-X262372Y284571D01*

-X262297Y284884D01*

-X262173Y285183D01*

-X262005Y285458D01*

-X261795Y285703D01*

-X261550Y285913D01*

-X261275Y286081D01*

-X260976Y286205D01*

-X260938Y286214D01*

-Y290846D01*

-G37*

-G36*

-Y305652D02*X260944Y305650D01*

-X261220Y305584D01*

-X261502Y305561D01*

-X261784Y305584D01*

-X262060Y305650D01*

-X262322Y305758D01*

-X262563Y305906D01*

-X262747Y306063D01*

-Y297319D01*

-X262605Y297285D01*

-X262306Y297161D01*

-X262031Y296993D01*

-X261786Y296783D01*

-X261576Y296538D01*

-X261408Y296263D01*

-X261284Y295964D01*

-X261209Y295651D01*

-X261184Y295329D01*

-X261209Y295007D01*

-X261284Y294694D01*

-X261408Y294395D01*

-X261576Y294120D01*

-X261786Y293875D01*

-X261961Y293725D01*

-X261806Y293661D01*

-X261531Y293493D01*

-X261286Y293283D01*

-X261076Y293038D01*

-X260938Y292812D01*

-Y305652D01*

-G37*

-G36*

-Y397000D02*X262747D01*

-Y377876D01*

-X262309Y377364D01*

-X261956Y376787D01*

-X261697Y376162D01*

-X261539Y375504D01*

-X261486Y374829D01*

-X261539Y374154D01*

-X261697Y373496D01*

-X261956Y372871D01*

-X262309Y372294D01*

-X262747Y371782D01*

-Y367876D01*

-X262309Y367364D01*

-X261956Y366787D01*

-X261697Y366162D01*

-X261539Y365504D01*

-X261486Y364829D01*

-X261539Y364154D01*

-X261697Y363496D01*

-X261956Y362871D01*

-X262309Y362294D01*

-X262747Y361782D01*

-Y321661D01*

-X262621Y321609D01*

-X262380Y321461D01*

-X262164Y321277D01*

-X261980Y321061D01*

-X261832Y320820D01*

-X261724Y320558D01*

-X261658Y320282D01*

-X261635Y320000D01*

-X261658Y319718D01*

-X261724Y319442D01*

-X261832Y319180D01*

-X261980Y318939D01*

-X262164Y318723D01*

-X262380Y318539D01*

-X262621Y318391D01*

-X262747Y318339D01*

-Y308671D01*

-X262563Y308828D01*

-X262322Y308976D01*

-X262060Y309084D01*

-X261784Y309150D01*

-X261502Y309173D01*

-X261220Y309150D01*

-X260944Y309084D01*

-X260938Y309082D01*

-Y315235D01*

-X261126Y315280D01*

-X261388Y315388D01*

-X261629Y315536D01*

-X261845Y315720D01*

-X262029Y315936D01*

-X262177Y316177D01*

-X262285Y316439D01*

-X262351Y316715D01*

-X262368Y316997D01*

-X262351Y317279D01*

-X262285Y317555D01*

-X262177Y317817D01*

-X262029Y318058D01*

-X261845Y318274D01*

-X261629Y318458D01*

-X261388Y318606D01*

-X261126Y318714D01*

-X260938Y318759D01*

-Y397000D01*

-G37*

-G36*

-X262747Y97000D02*X260938D01*

-Y189695D01*

-X260941Y189694D01*

-X261223Y189717D01*

-X261499Y189783D01*

-X261761Y189891D01*

-X262002Y190039D01*

-X262218Y190223D01*

-X262402Y190439D01*

-X262550Y190680D01*

-X262658Y190942D01*

-X262724Y191218D01*

-X262741Y191500D01*

-X262724Y191782D01*

-X262658Y192058D01*

-X262550Y192320D01*

-X262402Y192561D01*

-X262218Y192777D01*

-X262002Y192961D01*

-X261761Y193109D01*

-X261499Y193217D01*

-X261223Y193283D01*

-X260941Y193306D01*

-X260938Y193305D01*

-Y267805D01*

-X261086Y267563D01*

-X261296Y267318D01*

-X261541Y267108D01*

-X261816Y266940D01*

-X262115Y266816D01*

-X262428Y266741D01*

-X262747Y266716D01*

-Y187876D01*

-X262309Y187364D01*

-X261956Y186787D01*

-X261697Y186162D01*

-X261539Y185504D01*

-X261486Y184829D01*

-X261539Y184154D01*

-X261697Y183496D01*

-X261956Y182871D01*

-X262309Y182294D01*

-X262747Y181782D01*

-Y177876D01*

-X262309Y177364D01*

-X261956Y176787D01*

-X261697Y176162D01*

-X261539Y175504D01*

-X261486Y174829D01*

-X261539Y174154D01*

-X261697Y173496D01*

-X261956Y172871D01*

-X262309Y172294D01*

-X262747Y171782D01*

-Y97000D01*

-G37*

-G36*

-X260938D02*X255792D01*

-Y170516D01*

-X255799Y170516D01*

-X256474Y170569D01*

-X257132Y170727D01*

-X257757Y170986D01*

-X258334Y171339D01*

-X258849Y171779D01*

-X259289Y172294D01*

-X259642Y172871D01*

-X259901Y173496D01*

-X260059Y174154D01*

-X260099Y174829D01*

-X260059Y175504D01*

-X259901Y176162D01*

-X259642Y176787D01*

-X259289Y177364D01*

-X258849Y177879D01*

-X258334Y178319D01*

-X257757Y178672D01*

-X257132Y178931D01*

-X256474Y179089D01*

-X255799Y179142D01*

-X255792Y179142D01*

-Y180516D01*

-X255799Y180516D01*

-X256474Y180569D01*

-X257132Y180727D01*

-X257757Y180986D01*

-X258334Y181339D01*

-X258849Y181779D01*

-X259289Y182294D01*

-X259642Y182871D01*

-X259901Y183496D01*

-X260059Y184154D01*

-X260099Y184829D01*

-X260059Y185504D01*

-X259901Y186162D01*

-X259642Y186787D01*

-X259289Y187364D01*

-X258849Y187879D01*

-X258334Y188319D01*

-X257757Y188672D01*

-X257132Y188931D01*

-X256474Y189089D01*

-X255799Y189142D01*

-X255792Y189142D01*

-Y296570D01*

-X255949Y296665D01*

-X256194Y296875D01*

-X256404Y297120D01*

-X256572Y297395D01*

-X256696Y297694D01*

-X256771Y298007D01*

-X256790Y298329D01*

-X256771Y298651D01*

-X256696Y298964D01*

-X256572Y299263D01*

-X256404Y299538D01*

-X256194Y299783D01*

-X255949Y299993D01*

-X255792Y300088D01*

-Y360516D01*

-X255799Y360516D01*

-X256474Y360569D01*

-X257132Y360727D01*

-X257757Y360986D01*

-X258334Y361339D01*

-X258849Y361779D01*

-X259289Y362294D01*

-X259642Y362871D01*

-X259901Y363496D01*

-X260059Y364154D01*

-X260099Y364829D01*

-X260059Y365504D01*

-X259901Y366162D01*

-X259642Y366787D01*

-X259289Y367364D01*

-X258849Y367879D01*

-X258334Y368319D01*

-X257757Y368672D01*

-X257132Y368931D01*

-X256474Y369089D01*

-X255799Y369142D01*

-X255792Y369142D01*

-Y370516D01*

-X255799Y370516D01*

-X256474Y370569D01*

-X257132Y370727D01*

-X257757Y370986D01*

-X258334Y371339D01*

-X258849Y371779D01*

-X259289Y372294D01*

-X259642Y372871D01*

-X259901Y373496D01*

-X260059Y374154D01*

-X260099Y374829D01*

-X260059Y375504D01*

-X259901Y376162D01*

-X259642Y376787D01*

-X259289Y377364D01*

-X258849Y377879D01*

-X258334Y378319D01*

-X257757Y378672D01*

-X257132Y378931D01*

-X256474Y379089D01*

-X255799Y379142D01*

-X255792Y379142D01*

-Y397000D01*

-X260938D01*

-Y318759D01*

-X260850Y318780D01*

-X260568Y318803D01*

-X260286Y318780D01*

-X260010Y318714D01*

-X259748Y318606D01*

-X259507Y318458D01*

-X259291Y318274D01*

-X259107Y318058D01*

-X258959Y317817D01*

-X258851Y317555D01*

-X258785Y317279D01*

-X258762Y316997D01*

-X258785Y316715D01*

-X258851Y316439D01*

-X258959Y316177D01*

-X259107Y315936D01*

-X259291Y315720D01*

-X259507Y315536D01*

-X259748Y315388D01*

-X260010Y315280D01*

-X260286Y315214D01*

-X260568Y315191D01*

-X260850Y315214D01*

-X260938Y315235D01*

-Y309082D01*

-X260682Y308976D01*

-X260441Y308828D01*

-X260225Y308644D01*

-X260041Y308428D01*

-X259893Y308187D01*

-X259785Y307925D01*

-X259719Y307649D01*

-X259696Y307367D01*

-X259719Y307085D01*

-X259785Y306809D01*

-X259893Y306547D01*

-X260041Y306306D01*

-X260225Y306090D01*

-X260441Y305906D01*

-X260682Y305758D01*

-X260938Y305652D01*

-Y292812D01*

-X260908Y292763D01*

-X260784Y292464D01*

-X260709Y292151D01*

-X260684Y291829D01*

-X260709Y291507D01*

-X260784Y291194D01*

-X260908Y290895D01*

-X260938Y290846D01*

-Y286214D01*

-X260663Y286280D01*

-X260341Y286305D01*

-X260019Y286280D01*

-X259706Y286205D01*

-X259407Y286081D01*

-X259132Y285913D01*

-X258887Y285703D01*

-X258677Y285458D01*

-X258509Y285183D01*

-X258385Y284884D01*

-X258310Y284571D01*

-X258285Y284249D01*

-X258310Y283927D01*

-X258385Y283614D01*

-X258509Y283315D01*

-X258677Y283040D01*

-X258887Y282795D01*

-X259132Y282585D01*

-X259407Y282417D01*

-X259706Y282293D01*

-X260019Y282218D01*

-X260341Y282193D01*

-X260663Y282218D01*

-X260938Y282284D01*

-Y269739D01*

-X260918Y269706D01*

-X260794Y269407D01*

-X260719Y269094D01*

-X260694Y268772D01*

-X260719Y268450D01*

-X260794Y268137D01*

-X260918Y267838D01*

-X260938Y267805D01*

-Y193305D01*

-X260659Y193283D01*

-X260383Y193217D01*

-X260121Y193109D01*

-X259880Y192961D01*

-X259664Y192777D01*

-X259480Y192561D01*

-X259332Y192320D01*

-X259224Y192058D01*

-X259158Y191782D01*

-X259135Y191500D01*

-X259158Y191218D01*

-X259224Y190942D01*

-X259332Y190680D01*

-X259480Y190439D01*

-X259664Y190223D01*

-X259880Y190039D01*

-X260121Y189891D01*

-X260383Y189783D01*

-X260659Y189717D01*

-X260938Y189695D01*

-Y97000D01*

-G37*

-G36*

-X253098Y181481D02*X253264Y181339D01*

-X253841Y180986D01*

-X254466Y180727D01*

-X255124Y180569D01*

-X255792Y180516D01*

-Y179142D01*

-X255124Y179089D01*

-X254466Y178931D01*

-X253841Y178672D01*

-X253264Y178319D01*

-X253098Y178177D01*

-Y181481D01*

-G37*

-G36*

-Y297095D02*X253286Y296875D01*

-X253531Y296665D01*

-X253806Y296497D01*

-X254105Y296373D01*

-X254418Y296298D01*

-X254740Y296273D01*

-X255062Y296298D01*

-X255375Y296373D01*

-X255674Y296497D01*

-X255792Y296570D01*

-Y189142D01*

-X255124Y189089D01*

-X254466Y188931D01*

-X253841Y188672D01*

-X253264Y188319D01*

-X253098Y188177D01*

-Y209121D01*

-X253218Y209223D01*

-X253402Y209439D01*

-X253550Y209680D01*

-X253658Y209942D01*

-X253724Y210218D01*

-X253741Y210500D01*

-X253724Y210782D01*

-X253658Y211058D01*

-X253550Y211320D01*

-X253402Y211561D01*

-X253218Y211777D01*

-X253098Y211879D01*

-Y259780D01*

-X253101Y259780D01*

-X253423Y259805D01*

-X253736Y259880D01*

-X254035Y260004D01*

-X254310Y260172D01*

-X254555Y260382D01*

-X254765Y260627D01*

-X254933Y260902D01*

-X255057Y261201D01*

-X255132Y261514D01*

-X255151Y261836D01*

-X255132Y262158D01*

-X255057Y262471D01*

-X254933Y262770D01*

-X254765Y263045D01*

-X254555Y263290D01*

-X254310Y263500D01*

-X254035Y263668D01*

-X253736Y263792D01*

-X253423Y263867D01*

-X253101Y263892D01*

-X253098Y263892D01*

-Y297095D01*

-G37*

-G36*

-Y361481D02*X253264Y361339D01*

-X253841Y360986D01*

-X254466Y360727D01*

-X255124Y360569D01*

-X255792Y360516D01*

-Y300088D01*

-X255674Y300161D01*

-X255375Y300285D01*

-X255062Y300360D01*

-X254740Y300385D01*

-X254418Y300360D01*

-X254105Y300285D01*

-X253806Y300161D01*

-X253531Y299993D01*

-X253286Y299783D01*

-X253098Y299563D01*

-Y361481D01*

-G37*

-G36*

-Y371481D02*X253264Y371339D01*

-X253841Y370986D01*

-X254466Y370727D01*

-X255124Y370569D01*

-X255792Y370516D01*

-Y369142D01*

-X255124Y369089D01*

-X254466Y368931D01*

-X253841Y368672D01*

-X253264Y368319D01*

-X253098Y368177D01*

-Y371481D01*

-G37*

-G36*

-Y397000D02*X255792D01*

-Y379142D01*

-X255124Y379089D01*

-X254466Y378931D01*

-X253841Y378672D01*

-X253264Y378319D01*

-X253098Y378177D01*

-Y397000D01*

-G37*

-G36*

-X255792Y97000D02*X253098D01*

-Y100731D01*

-X253159Y100717D01*

-X253441Y100694D01*

-X253723Y100717D01*

-X253999Y100783D01*

-X254261Y100891D01*

-X254502Y101039D01*

-X254718Y101223D01*

-X254902Y101439D01*

-X255050Y101680D01*

-X255158Y101942D01*

-X255224Y102218D01*

-X255241Y102500D01*

-X255224Y102782D01*

-X255158Y103058D01*

-X255050Y103320D01*

-X254902Y103561D01*

-X254718Y103777D01*

-X254502Y103961D01*

-X254261Y104109D01*

-X253999Y104217D01*

-X253723Y104283D01*

-X253441Y104306D01*

-X253159Y104283D01*

-X253098Y104269D01*

-Y171481D01*

-X253264Y171339D01*

-X253841Y170986D01*

-X254466Y170727D01*

-X255124Y170569D01*

-X255792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X250938Y397000D02*X253098D01*

-Y378177D01*

-X252749Y377879D01*

-X252309Y377364D01*

-X251956Y376787D01*

-X251697Y376162D01*

-X251539Y375504D01*

-X251486Y374829D01*

-X251539Y374154D01*

-X251697Y373496D01*

-X251956Y372871D01*

-X252309Y372294D01*

-X252749Y371779D01*

-X253098Y371481D01*

-Y368177D01*

-X252749Y367879D01*

-X252309Y367364D01*

-X251956Y366787D01*

-X251697Y366162D01*

-X251539Y365504D01*

-X251486Y364829D01*

-X251539Y364154D01*

-X251697Y363496D01*

-X251956Y362871D01*

-X252309Y362294D01*

-X252749Y361779D01*

-X253098Y361481D01*

-Y299563D01*

-X253076Y299538D01*

-X252908Y299263D01*

-X252784Y298964D01*

-X252709Y298651D01*

-X252684Y298329D01*

-X252709Y298007D01*

-X252784Y297694D01*

-X252908Y297395D01*

-X253076Y297120D01*

-X253098Y297095D01*

-Y263892D01*

-X252779Y263867D01*

-X252466Y263792D01*

-X252167Y263668D01*

-X251892Y263500D01*

-X251647Y263290D01*

-X251437Y263045D01*

-X251269Y262770D01*

-X251145Y262471D01*

-X251070Y262158D01*

-X251045Y261836D01*

-X251070Y261514D01*

-X251145Y261201D01*

-X251269Y260902D01*

-X251437Y260627D01*

-X251647Y260382D01*

-X251892Y260172D01*

-X252167Y260004D01*

-X252466Y259880D01*

-X252779Y259805D01*

-X253098Y259780D01*

-Y211879D01*

-X253002Y211961D01*

-X252761Y212109D01*

-X252499Y212217D01*

-X252223Y212283D01*

-X251941Y212306D01*

-X251659Y212283D01*

-X251383Y212217D01*

-X251121Y212109D01*

-X250938Y211997D01*

-Y227695D01*

-X250941Y227694D01*

-X251223Y227717D01*

-X251499Y227783D01*

-X251761Y227891D01*

-X252002Y228039D01*

-X252218Y228223D01*

-X252402Y228439D01*

-X252550Y228680D01*

-X252658Y228942D01*

-X252724Y229218D01*

-X252741Y229500D01*

-X252724Y229782D01*

-X252658Y230058D01*

-X252550Y230320D01*

-X252402Y230561D01*

-X252218Y230777D01*

-X252002Y230961D01*

-X251761Y231109D01*

-X251499Y231217D01*

-X251223Y231283D01*

-X250941Y231306D01*

-X250938Y231305D01*

-Y397000D01*

-G37*

-G36*

-X253098Y97000D02*X250938D01*

-Y209003D01*

-X251121Y208891D01*

-X251383Y208783D01*

-X251659Y208717D01*

-X251941Y208694D01*

-X252223Y208717D01*

-X252499Y208783D01*

-X252761Y208891D01*

-X253002Y209039D01*

-X253098Y209121D01*

-Y188177D01*

-X252749Y187879D01*

-X252309Y187364D01*

-X251956Y186787D01*

-X251697Y186162D01*

-X251539Y185504D01*

-X251486Y184829D01*

-X251539Y184154D01*

-X251697Y183496D01*

-X251956Y182871D01*

-X252309Y182294D01*

-X252749Y181779D01*

-X253098Y181481D01*

-Y178177D01*

-X252749Y177879D01*

-X252309Y177364D01*

-X251956Y176787D01*

-X251697Y176162D01*

-X251539Y175504D01*

-X251486Y174829D01*

-X251539Y174154D01*

-X251697Y173496D01*

-X251956Y172871D01*

-X252309Y172294D01*

-X252749Y171779D01*

-X253098Y171481D01*

-Y104269D01*

-X252883Y104217D01*

-X252621Y104109D01*

-X252380Y103961D01*

-X252164Y103777D01*

-X251980Y103561D01*

-X251832Y103320D01*

-X251724Y103058D01*

-X251658Y102782D01*

-X251635Y102500D01*

-X251658Y102218D01*

-X251724Y101942D01*

-X251832Y101680D01*

-X251980Y101439D01*

-X252164Y101223D01*

-X252380Y101039D01*

-X252621Y100891D01*

-X252883Y100783D01*

-X253098Y100731D01*

-Y97000D01*

-G37*

-G36*

-X250938D02*X249098D01*

-Y172071D01*

-X249289Y172294D01*

-X249642Y172871D01*

-X249901Y173496D01*

-X250059Y174154D01*

-X250099Y174829D01*

-X250059Y175504D01*

-X249901Y176162D01*

-X249642Y176787D01*

-X249289Y177364D01*

-X249098Y177587D01*

-Y182071D01*

-X249289Y182294D01*

-X249642Y182871D01*

-X249901Y183496D01*

-X250059Y184154D01*

-X250099Y184829D01*

-X250059Y185504D01*

-X249901Y186162D01*

-X249642Y186787D01*

-X249289Y187364D01*

-X249098Y187587D01*

-Y326988D01*

-X249101Y326987D01*

-X249383Y327010D01*

-X249659Y327076D01*

-X249921Y327184D01*

-X250162Y327332D01*

-X250378Y327516D01*

-X250562Y327732D01*

-X250710Y327973D01*

-X250818Y328235D01*

-X250884Y328511D01*

-X250901Y328793D01*

-X250884Y329075D01*

-X250818Y329351D01*

-X250710Y329613D01*

-X250562Y329854D01*

-X250378Y330070D01*

-X250162Y330254D01*

-X249921Y330402D01*

-X249659Y330510D01*

-X249383Y330576D01*

-X249101Y330599D01*

-X249098Y330598D01*

-Y362071D01*

-X249289Y362294D01*

-X249642Y362871D01*

-X249901Y363496D01*

-X250059Y364154D01*

-X250099Y364829D01*

-X250059Y365504D01*

-X249901Y366162D01*

-X249642Y366787D01*

-X249289Y367364D01*

-X249098Y367587D01*

-Y372071D01*

-X249289Y372294D01*

-X249642Y372871D01*

-X249901Y373496D01*

-X250059Y374154D01*

-X250099Y374829D01*

-X250059Y375504D01*

-X249901Y376162D01*

-X249642Y376787D01*

-X249289Y377364D01*

-X249098Y377587D01*

-Y397000D01*

-X250938D01*

-Y231305D01*

-X250659Y231283D01*

-X250383Y231217D01*

-X250121Y231109D01*

-X249880Y230961D01*

-X249664Y230777D01*

-X249480Y230561D01*

-X249332Y230320D01*

-X249224Y230058D01*

-X249158Y229782D01*

-X249135Y229500D01*

-X249158Y229218D01*

-X249224Y228942D01*

-X249332Y228680D01*

-X249480Y228439D01*

-X249664Y228223D01*

-X249880Y228039D01*

-X250121Y227891D01*

-X250383Y227783D01*

-X250659Y227717D01*

-X250938Y227695D01*

-Y211997D01*

-X250880Y211961D01*

-X250664Y211777D01*

-X250480Y211561D01*

-X250332Y211320D01*

-X250224Y211058D01*

-X250158Y210782D01*

-X250135Y210500D01*

-X250158Y210218D01*

-X250224Y209942D01*

-X250332Y209680D01*

-X250480Y209439D01*

-X250664Y209223D01*

-X250880Y209039D01*

-X250938Y209003D01*

-Y97000D01*

-G37*

-G36*

-X249098Y377587D02*X248849Y377879D01*

-X248334Y378319D01*

-X247757Y378672D01*

-X247132Y378931D01*

-X246474Y379089D01*

-X245799Y379142D01*

-X245792Y379142D01*

-Y397000D01*

-X249098D01*

-Y377587D01*

-G37*

-G36*

-Y367587D02*X248849Y367879D01*

-X248334Y368319D01*

-X247757Y368672D01*

-X247132Y368931D01*

-X246474Y369089D01*

-X245799Y369142D01*

-X245792Y369142D01*

-Y370516D01*

-X245799Y370516D01*

-X246474Y370569D01*

-X247132Y370727D01*

-X247757Y370986D01*

-X248334Y371339D01*

-X248849Y371779D01*

-X249098Y372071D01*

-Y367587D01*

-G37*

-G36*

-Y187587D02*X248849Y187879D01*

-X248334Y188319D01*

-X247757Y188672D01*

-X247132Y188931D01*

-X246474Y189089D01*

-X245799Y189142D01*

-X245792Y189142D01*

-Y189724D01*

-X245863Y189718D01*

-X246145Y189741D01*

-X246421Y189807D01*

-X246683Y189915D01*

-X246924Y190063D01*

-X247140Y190247D01*

-X247324Y190463D01*

-X247472Y190704D01*

-X247580Y190966D01*

-X247646Y191242D01*

-X247663Y191524D01*

-X247646Y191806D01*

-X247580Y192082D01*

-X247472Y192344D01*

-X247324Y192585D01*

-X247140Y192801D01*

-X246924Y192985D01*

-X246683Y193133D01*

-X246421Y193241D01*

-X246145Y193307D01*

-X245863Y193330D01*

-X245792Y193324D01*

-Y227820D01*

-X245883Y227783D01*

-X246159Y227717D01*

-X246441Y227694D01*

-X246723Y227717D01*

-X246999Y227783D01*

-X247261Y227891D01*

-X247502Y228039D01*

-X247718Y228223D01*

-X247902Y228439D01*

-X248050Y228680D01*

-X248158Y228942D01*

-X248224Y229218D01*

-X248241Y229500D01*

-X248224Y229782D01*

-X248158Y230058D01*

-X248050Y230320D01*

-X247902Y230561D01*

-X247718Y230777D01*

-X247502Y230961D01*

-X247261Y231109D01*

-X246999Y231217D01*

-X246723Y231283D01*

-X246441Y231306D01*

-X246159Y231283D01*

-X245883Y231217D01*

-X245792Y231180D01*

-Y236614D01*

-X245880Y236539D01*

-X246121Y236391D01*

-X246383Y236283D01*

-X246659Y236217D01*

-X246941Y236194D01*

-X247223Y236217D01*

-X247499Y236283D01*

-X247761Y236391D01*

-X248002Y236539D01*

-X248218Y236723D01*

-X248402Y236939D01*

-X248550Y237180D01*

-X248658Y237442D01*

-X248724Y237718D01*

-X248741Y238000D01*

-X248724Y238282D01*

-X248658Y238558D01*

-X248550Y238820D01*

-X248402Y239061D01*

-X248218Y239277D01*

-X248002Y239461D01*

-X247761Y239609D01*

-X247499Y239717D01*

-X247223Y239783D01*

-X246941Y239806D01*

-X246659Y239783D01*

-X246383Y239717D01*

-X246121Y239609D01*

-X245880Y239461D01*

-X245792Y239386D01*

-Y277470D01*

-X245879Y277477D01*

-X246192Y277552D01*

-X246491Y277676D01*

-X246766Y277844D01*

-X247011Y278054D01*

-X247221Y278299D01*

-X247389Y278574D01*

-X247513Y278873D01*

-X247588Y279186D01*

-X247607Y279508D01*

-X247588Y279830D01*

-X247513Y280143D01*

-X247389Y280442D01*

-X247221Y280717D01*

-X247011Y280962D01*

-X246766Y281172D01*

-X246491Y281340D01*

-X246192Y281464D01*

-X245879Y281539D01*

-X245792Y281546D01*

-Y301495D01*

-X245911Y301422D01*

-X246173Y301314D01*

-X246449Y301248D01*

-X246731Y301225D01*

-X247013Y301248D01*

-X247289Y301314D01*

-X247551Y301422D01*

-X247792Y301570D01*

-X248008Y301754D01*

-X248192Y301970D01*

-X248340Y302211D01*

-X248448Y302473D01*

-X248514Y302749D01*

-X248531Y303031D01*

-X248514Y303313D01*

-X248448Y303589D01*

-X248340Y303851D01*

-X248192Y304092D01*

-X248008Y304308D01*

-X247792Y304492D01*

-X247551Y304640D01*

-X247289Y304748D01*

-X247013Y304814D01*

-X246731Y304837D01*

-X246449Y304814D01*

-X246173Y304748D01*

-X245911Y304640D01*

-X245792Y304567D01*

-Y360516D01*

-X245799Y360516D01*

-X246474Y360569D01*

-X247132Y360727D01*

-X247757Y360986D01*

-X248334Y361339D01*

-X248849Y361779D01*

-X249098Y362071D01*

-Y330598D01*

-X248819Y330576D01*

-X248543Y330510D01*

-X248281Y330402D01*

-X248040Y330254D01*

-X247824Y330070D01*

-X247640Y329854D01*

-X247492Y329613D01*

-X247384Y329351D01*

-X247318Y329075D01*

-X247295Y328793D01*

-X247318Y328511D01*

-X247384Y328235D01*

-X247492Y327973D01*

-X247640Y327732D01*

-X247824Y327516D01*

-X248040Y327332D01*

-X248281Y327184D01*

-X248543Y327076D01*

-X248819Y327010D01*

-X249098Y326988D01*

-Y187587D01*

-G37*

-G36*

-Y177587D02*X248849Y177879D01*

-X248334Y178319D01*

-X247757Y178672D01*

-X247132Y178931D01*

-X246474Y179089D01*

-X245799Y179142D01*

-X245792Y179142D01*

-Y180516D01*

-X245799Y180516D01*

-X246474Y180569D01*

-X247132Y180727D01*

-X247757Y180986D01*

-X248334Y181339D01*

-X248849Y181779D01*

-X249098Y182071D01*

-Y177587D01*

-G37*

-G36*

-Y97000D02*X245792D01*

-Y125733D01*

-X245999Y125783D01*

-X246261Y125891D01*

-X246502Y126039D01*

-X246718Y126223D01*

-X246902Y126439D01*

-X247050Y126680D01*

-X247158Y126942D01*

-X247224Y127218D01*

-X247241Y127500D01*

-X247224Y127782D01*

-X247158Y128058D01*

-X247050Y128320D01*

-X246902Y128561D01*

-X246718Y128777D01*

-X246502Y128961D01*

-X246261Y129109D01*

-X245999Y129217D01*

-X245792Y129267D01*

-Y170516D01*

-X245799Y170516D01*

-X246474Y170569D01*

-X247132Y170727D01*

-X247757Y170986D01*

-X248334Y171339D01*

-X248849Y171779D01*

-X249098Y172071D01*

-Y97000D01*

-G37*

-G36*

-X242453Y182126D02*X242749Y181779D01*

-X243264Y181339D01*

-X243841Y180986D01*

-X244466Y180727D01*

-X245124Y180569D01*

-X245792Y180516D01*

-Y179142D01*

-X245124Y179089D01*

-X244466Y178931D01*

-X243841Y178672D01*

-X243264Y178319D01*

-X242749Y177879D01*

-X242453Y177532D01*

-Y182126D01*

-G37*

-G36*

-Y362126D02*X242749Y361779D01*

-X243264Y361339D01*

-X243841Y360986D01*

-X244466Y360727D01*

-X245124Y360569D01*

-X245792Y360516D01*

-Y304567D01*

-X245670Y304492D01*

-X245454Y304308D01*

-X245270Y304092D01*

-X245122Y303851D01*

-X245014Y303589D01*

-X244948Y303313D01*

-X244925Y303031D01*

-X244948Y302749D01*

-X245014Y302473D01*

-X245122Y302211D01*

-X245270Y301970D01*

-X245454Y301754D01*

-X245670Y301570D01*

-X245792Y301495D01*

-Y281546D01*

-X245557Y281564D01*

-X245235Y281539D01*

-X244922Y281464D01*

-X244623Y281340D01*

-X244348Y281172D01*

-X244103Y280962D01*

-X243893Y280717D01*

-X243725Y280442D01*

-X243601Y280143D01*

-X243526Y279830D01*

-X243501Y279508D01*

-X243526Y279186D01*

-X243601Y278873D01*

-X243725Y278574D01*

-X243893Y278299D01*

-X244103Y278054D01*

-X244348Y277844D01*

-X244623Y277676D01*

-X244922Y277552D01*

-X245235Y277477D01*

-X245557Y277452D01*

-X245792Y277470D01*

-Y239386D01*

-X245664Y239277D01*

-X245480Y239061D01*

-X245332Y238820D01*

-X245224Y238558D01*

-X245158Y238282D01*

-X245135Y238000D01*

-X245158Y237718D01*

-X245224Y237442D01*

-X245332Y237180D01*

-X245480Y236939D01*

-X245664Y236723D01*

-X245792Y236614D01*

-Y231180D01*

-X245621Y231109D01*

-X245380Y230961D01*

-X245164Y230777D01*

-X244980Y230561D01*

-X244832Y230320D01*

-X244724Y230058D01*

-X244658Y229782D01*

-X244635Y229500D01*

-X244658Y229218D01*

-X244724Y228942D01*

-X244832Y228680D01*

-X244980Y228439D01*

-X245164Y228223D01*

-X245380Y228039D01*

-X245621Y227891D01*

-X245792Y227820D01*

-Y193324D01*

-X245581Y193307D01*

-X245305Y193241D01*

-X245043Y193133D01*

-X244802Y192985D01*

-X244586Y192801D01*

-X244402Y192585D01*

-X244254Y192344D01*

-X244146Y192082D01*

-X244080Y191806D01*

-X244057Y191524D01*

-X244080Y191242D01*

-X244146Y190966D01*

-X244254Y190704D01*

-X244402Y190463D01*

-X244586Y190247D01*

-X244802Y190063D01*

-X245043Y189915D01*

-X245305Y189807D01*

-X245581Y189741D01*

-X245792Y189724D01*

-Y189142D01*

-X245124Y189089D01*

-X244466Y188931D01*

-X243841Y188672D01*

-X243264Y188319D01*

-X242749Y187879D01*

-X242453Y187532D01*

-Y200984D01*

-X242480Y200939D01*

-X242664Y200723D01*

-X242880Y200539D01*

-X243121Y200391D01*

-X243383Y200283D01*

-X243659Y200217D01*

-X243941Y200194D01*

-X244223Y200217D01*

-X244499Y200283D01*

-X244761Y200391D01*

-X245002Y200539D01*

-X245218Y200723D01*

-X245402Y200939D01*

-X245550Y201180D01*

-X245658Y201442D01*

-X245724Y201718D01*

-X245741Y202000D01*

-X245724Y202282D01*

-X245658Y202558D01*

-X245550Y202820D01*

-X245402Y203061D01*

-X245218Y203277D01*

-X245002Y203461D01*

-X244761Y203609D01*

-X244499Y203717D01*

-X244223Y203783D01*

-X243941Y203806D01*

-X243659Y203783D01*

-X243383Y203717D01*

-X243121Y203609D01*

-X242880Y203461D01*

-X242664Y203277D01*

-X242480Y203061D01*

-X242453Y203016D01*

-Y227695D01*

-X242723Y227717D01*

-X242999Y227783D01*

-X243261Y227891D01*

-X243502Y228039D01*

-X243718Y228223D01*

-X243902Y228439D01*

-X244050Y228680D01*

-X244158Y228942D01*

-X244224Y229218D01*

-X244241Y229500D01*

-X244224Y229782D01*

-X244158Y230058D01*

-X244050Y230320D01*

-X243902Y230561D01*

-X243718Y230777D01*

-X243502Y230961D01*

-X243261Y231109D01*

-X242999Y231217D01*

-X242723Y231283D01*

-X242453Y231305D01*

-Y291487D01*

-X242456Y291487D01*

-X242778Y291512D01*

-X243091Y291587D01*

-X243390Y291711D01*

-X243665Y291879D01*

-X243910Y292089D01*

-X244120Y292334D01*

-X244288Y292609D01*

-X244412Y292908D01*

-X244487Y293221D01*

-X244506Y293543D01*

-X244487Y293865D01*

-X244412Y294178D01*

-X244288Y294477D01*

-X244120Y294752D01*

-X243910Y294997D01*

-X243665Y295207D01*

-X243390Y295375D01*

-X243091Y295499D01*

-X242778Y295574D01*

-X242456Y295599D01*

-X242453Y295599D01*

-Y296766D01*

-X242490Y296769D01*

-X242803Y296844D01*

-X243102Y296968D01*

-X243377Y297136D01*

-X243622Y297346D01*

-X243832Y297591D01*

-X244000Y297866D01*

-X244124Y298165D01*

-X244199Y298478D01*

-X244218Y298800D01*

-X244199Y299122D01*

-X244124Y299435D01*

-X244000Y299734D01*

-X243832Y300009D01*

-X243622Y300254D01*

-X243377Y300464D01*

-X243102Y300632D01*

-X242803Y300756D01*

-X242490Y300831D01*

-X242453Y300834D01*

-Y362126D01*

-G37*

-G36*

-Y372126D02*X242749Y371779D01*

-X243264Y371339D01*

-X243841Y370986D01*

-X244466Y370727D01*

-X245124Y370569D01*

-X245792Y370516D01*

-Y369142D01*

-X245124Y369089D01*

-X244466Y368931D01*

-X243841Y368672D01*

-X243264Y368319D01*

-X242749Y367879D01*

-X242453Y367532D01*

-Y372126D01*

-G37*

-G36*

-Y397000D02*X245792D01*

-Y379142D01*

-X245124Y379089D01*

-X244466Y378931D01*

-X243841Y378672D01*

-X243264Y378319D01*

-X242749Y377879D01*

-X242453Y377532D01*

-Y397000D01*

-G37*

-G36*

-X245792Y97000D02*X242453D01*

-Y172126D01*

-X242749Y171779D01*

-X243264Y171339D01*

-X243841Y170986D01*

-X244466Y170727D01*

-X245124Y170569D01*

-X245792Y170516D01*

-Y129267D01*

-X245723Y129283D01*

-X245441Y129306D01*

-X245159Y129283D01*

-X244883Y129217D01*

-X244621Y129109D01*

-X244380Y128961D01*

-X244164Y128777D01*

-X243980Y128561D01*

-X243832Y128320D01*

-X243724Y128058D01*

-X243658Y127782D01*

-X243635Y127500D01*

-X243658Y127218D01*

-X243724Y126942D01*

-X243832Y126680D01*

-X243980Y126439D01*

-X244164Y126223D01*

-X244380Y126039D01*

-X244621Y125891D01*

-X244883Y125783D01*

-X245159Y125717D01*

-X245441Y125694D01*

-X245723Y125717D01*

-X245792Y125733D01*

-Y97000D01*

-G37*

-G36*

-X242453D02*X239299D01*

-Y172311D01*

-X239642Y172871D01*

-X239901Y173496D01*

-X240059Y174154D01*

-X240099Y174829D01*

-X240059Y175504D01*

-X239901Y176162D01*

-X239642Y176787D01*

-X239299Y177347D01*

-Y182311D01*

-X239642Y182871D01*

-X239901Y183496D01*

-X240059Y184154D01*

-X240099Y184829D01*

-X240059Y185504D01*

-X239901Y186162D01*

-X239642Y186787D01*

-X239299Y187347D01*

-Y194811D01*

-X239642Y195371D01*

-X239901Y195996D01*

-X240059Y196654D01*

-X240099Y197329D01*

-X240059Y198004D01*

-X239901Y198662D01*

-X239642Y199287D01*

-X239299Y199847D01*

-Y260179D01*

-X239302Y260179D01*

-X239624Y260204D01*

-X239937Y260279D01*

-X240236Y260403D01*

-X240511Y260571D01*

-X240756Y260781D01*

-X240966Y261026D01*

-X241134Y261301D01*

-X241258Y261600D01*

-X241333Y261913D01*

-X241352Y262235D01*

-X241333Y262557D01*

-X241258Y262870D01*

-X241134Y263169D01*

-X240966Y263444D01*

-X240756Y263689D01*

-X240511Y263899D01*

-X240236Y264067D01*

-X239937Y264191D01*

-X239624Y264266D01*

-X239302Y264291D01*

-X239299Y264291D01*

-Y277130D01*

-X239330Y277103D01*

-X239571Y276955D01*

-X239833Y276847D01*

-X240109Y276781D01*

-X240391Y276758D01*

-X240673Y276781D01*

-X240949Y276847D01*

-X241211Y276955D01*

-X241452Y277103D01*

-X241668Y277287D01*

-X241852Y277503D01*

-X242000Y277744D01*

-X242108Y278006D01*

-X242174Y278282D01*

-X242191Y278564D01*

-X242174Y278846D01*

-X242108Y279122D01*

-X242000Y279384D01*

-X241852Y279625D01*

-X241668Y279841D01*

-X241452Y280025D01*

-X241211Y280173D01*

-X240949Y280281D01*

-X240673Y280347D01*

-X240391Y280370D01*

-X240109Y280347D01*

-X239833Y280281D01*

-X239571Y280173D01*

-X239330Y280025D01*

-X239299Y279998D01*

-Y362311D01*

-X239642Y362871D01*

-X239901Y363496D01*

-X240059Y364154D01*

-X240099Y364829D01*

-X240059Y365504D01*

-X239901Y366162D01*

-X239642Y366787D01*

-X239299Y367347D01*

-Y372311D01*

-X239642Y372871D01*

-X239901Y373496D01*

-X240059Y374154D01*

-X240099Y374829D01*

-X240059Y375504D01*

-X239901Y376162D01*

-X239642Y376787D01*

-X239299Y377347D01*

-Y397000D01*

-X242453D01*

-Y377532D01*

-X242309Y377364D01*

-X241956Y376787D01*

-X241697Y376162D01*

-X241539Y375504D01*

-X241486Y374829D01*

-X241539Y374154D01*

-X241697Y373496D01*

-X241956Y372871D01*

-X242309Y372294D01*

-X242453Y372126D01*

-Y367532D01*

-X242309Y367364D01*

-X241956Y366787D01*

-X241697Y366162D01*

-X241539Y365504D01*

-X241486Y364829D01*

-X241539Y364154D01*

-X241697Y363496D01*

-X241956Y362871D01*

-X242309Y362294D01*

-X242453Y362126D01*

-Y300834D01*

-X242168Y300856D01*

-X241846Y300831D01*

-X241533Y300756D01*

-X241234Y300632D01*

-X240959Y300464D01*

-X240714Y300254D01*

-X240504Y300009D01*

-X240336Y299734D01*

-X240212Y299435D01*

-X240137Y299122D01*

-X240112Y298800D01*

-X240137Y298478D01*

-X240212Y298165D01*

-X240336Y297866D01*

-X240504Y297591D01*

-X240714Y297346D01*

-X240959Y297136D01*

-X241234Y296968D01*

-X241533Y296844D01*

-X241846Y296769D01*

-X242168Y296744D01*

-X242453Y296766D01*

-Y295599D01*

-X242134Y295574D01*

-X241821Y295499D01*

-X241522Y295375D01*

-X241247Y295207D01*

-X241002Y294997D01*

-X240792Y294752D01*

-X240624Y294477D01*

-X240500Y294178D01*

-X240425Y293865D01*

-X240400Y293543D01*

-X240425Y293221D01*

-X240500Y292908D01*

-X240624Y292609D01*

-X240792Y292334D01*

-X241002Y292089D01*

-X241247Y291879D01*

-X241522Y291711D01*

-X241821Y291587D01*

-X242134Y291512D01*

-X242453Y291487D01*

-Y231305D01*

-X242441Y231306D01*

-X242159Y231283D01*

-X241883Y231217D01*

-X241621Y231109D01*

-X241380Y230961D01*

-X241164Y230777D01*

-X240980Y230561D01*

-X240832Y230320D01*

-X240724Y230058D01*

-X240658Y229782D01*

-X240635Y229500D01*

-X240658Y229218D01*

-X240724Y228942D01*

-X240832Y228680D01*

-X240980Y228439D01*

-X241164Y228223D01*

-X241380Y228039D01*

-X241621Y227891D01*

-X241883Y227783D01*

-X242159Y227717D01*

-X242441Y227694D01*

-X242453Y227695D01*

-Y203016D01*

-X242332Y202820D01*

-X242224Y202558D01*

-X242158Y202282D01*

-X242135Y202000D01*

-X242158Y201718D01*

-X242224Y201442D01*

-X242332Y201180D01*

-X242453Y200984D01*

-Y187532D01*

-X242309Y187364D01*

-X241956Y186787D01*

-X241697Y186162D01*

-X241539Y185504D01*

-X241486Y184829D01*

-X241539Y184154D01*

-X241697Y183496D01*

-X241956Y182871D01*

-X242309Y182294D01*

-X242453Y182126D01*

-Y177532D01*

-X242309Y177364D01*

-X241956Y176787D01*

-X241697Y176162D01*

-X241539Y175504D01*

-X241486Y174829D01*

-X241539Y174154D01*

-X241697Y173496D01*

-X241956Y172871D01*

-X242309Y172294D01*

-X242453Y172126D01*

-Y97000D01*

-G37*

-G36*

-X239299Y377347D02*X239289Y377364D01*

-X238849Y377879D01*

-X238334Y378319D01*

-X237757Y378672D01*

-X237132Y378931D01*

-X236474Y379089D01*

-X235799Y379142D01*

-X235792Y379142D01*

-Y397000D01*

-X239299D01*

-Y377347D01*

-G37*

-G36*

-Y367347D02*X239289Y367364D01*

-X238849Y367879D01*

-X238334Y368319D01*

-X237757Y368672D01*

-X237132Y368931D01*

-X236474Y369089D01*

-X235799Y369142D01*

-X235792Y369142D01*

-Y370516D01*

-X235799Y370516D01*

-X236474Y370569D01*

-X237132Y370727D01*

-X237757Y370986D01*

-X238334Y371339D01*

-X238849Y371779D01*

-X239289Y372294D01*

-X239299Y372311D01*

-Y367347D01*

-G37*

-G36*

-Y199847D02*X239289Y199864D01*

-X238849Y200379D01*

-X238334Y200819D01*

-X237757Y201172D01*

-X237132Y201431D01*

-X236474Y201589D01*

-X235799Y201642D01*

-X235792Y201642D01*

-Y233820D01*

-X235883Y233783D01*

-X236159Y233717D01*

-X236441Y233694D01*

-X236723Y233717D01*

-X236999Y233783D01*

-X237261Y233891D01*

-X237502Y234039D01*

-X237718Y234223D01*

-X237902Y234439D01*

-X238050Y234680D01*

-X238158Y234942D01*

-X238224Y235218D01*

-X238241Y235500D01*

-X238224Y235782D01*

-X238158Y236058D01*

-X238050Y236320D01*

-X237902Y236561D01*

-X237718Y236777D01*

-X237502Y236961D01*

-X237261Y237109D01*

-X236999Y237217D01*

-X236723Y237283D01*

-X236441Y237306D01*

-X236159Y237283D01*

-X235883Y237217D01*

-X235792Y237180D01*

-Y360516D01*

-X235799Y360516D01*

-X236474Y360569D01*

-X237132Y360727D01*

-X237757Y360986D01*

-X238334Y361339D01*

-X238849Y361779D01*

-X239289Y362294D01*

-X239299Y362311D01*

-Y279998D01*

-X239114Y279841D01*

-X238930Y279625D01*

-X238782Y279384D01*

-X238674Y279122D01*

-X238608Y278846D01*

-X238585Y278564D01*

-X238608Y278282D01*

-X238674Y278006D01*

-X238782Y277744D01*

-X238930Y277503D01*

-X239114Y277287D01*

-X239299Y277130D01*

-Y264291D01*

-X238980Y264266D01*

-X238667Y264191D01*

-X238368Y264067D01*

-X238093Y263899D01*

-X237848Y263689D01*

-X237638Y263444D01*

-X237470Y263169D01*

-X237346Y262870D01*

-X237271Y262557D01*

-X237246Y262235D01*

-X237271Y261913D01*

-X237346Y261600D01*

-X237470Y261301D01*

-X237638Y261026D01*

-X237848Y260781D01*

-X238093Y260571D01*

-X238368Y260403D01*

-X238667Y260279D01*

-X238980Y260204D01*

-X239299Y260179D01*

-Y199847D01*

-G37*

-G36*

-Y187347D02*X239289Y187364D01*

-X238849Y187879D01*

-X238334Y188319D01*

-X237757Y188672D01*

-X237132Y188931D01*

-X236474Y189089D01*

-X235799Y189142D01*

-X235792Y189142D01*

-Y193016D01*

-X235799Y193016D01*

-X236474Y193069D01*

-X237132Y193227D01*

-X237757Y193486D01*

-X238334Y193839D01*

-X238849Y194279D01*

-X239289Y194794D01*

-X239299Y194811D01*

-Y187347D01*

-G37*

-G36*

-Y177347D02*X239289Y177364D01*

-X238849Y177879D01*

-X238334Y178319D01*

-X237757Y178672D01*

-X237132Y178931D01*

-X236474Y179089D01*

-X235799Y179142D01*

-X235792Y179142D01*

-Y180516D01*

-X235799Y180516D01*

-X236474Y180569D01*

-X237132Y180727D01*

-X237757Y180986D01*

-X238334Y181339D01*

-X238849Y181779D01*

-X239289Y182294D01*

-X239299Y182311D01*

-Y177347D01*

-G37*

-G36*

-Y97000D02*X235792D01*

-Y121311D01*

-X235902Y121439D01*

-X236050Y121680D01*

-X236158Y121942D01*

-X236224Y122218D01*

-X236241Y122500D01*

-X236224Y122782D01*

-X236158Y123058D01*

-X236050Y123320D01*

-X235902Y123561D01*

-X235792Y123689D01*

-Y131206D01*

-X235941Y131194D01*

-X236223Y131217D01*

-X236499Y131283D01*

-X236761Y131391D01*

-X237002Y131539D01*

-X237218Y131723D01*

-X237402Y131939D01*

-X237550Y132180D01*

-X237658Y132442D01*

-X237724Y132718D01*

-X237741Y133000D01*

-X237724Y133282D01*

-X237658Y133558D01*

-X237550Y133820D01*

-X237402Y134061D01*

-X237218Y134277D01*

-X237002Y134461D01*

-X236761Y134609D01*

-X236499Y134717D01*

-X236223Y134783D01*

-X235941Y134806D01*

-X235792Y134794D01*

-Y170516D01*

-X235799Y170516D01*

-X236474Y170569D01*

-X237132Y170727D01*

-X237757Y170986D01*

-X238334Y171339D01*

-X238849Y171779D01*

-X239289Y172294D01*

-X239299Y172311D01*

-Y97000D01*

-G37*

-G36*

-X235792D02*X230438D01*

-Y146503D01*

-X230621Y146391D01*

-X230883Y146283D01*

-X231159Y146217D01*

-X231441Y146194D01*

-X231723Y146217D01*

-X231999Y146283D01*

-X232261Y146391D01*

-X232502Y146539D01*

-X232718Y146723D01*

-X232902Y146939D01*

-X233050Y147180D01*

-X233158Y147442D01*

-X233224Y147718D01*

-X233241Y148000D01*

-X233224Y148282D01*

-X233158Y148558D01*

-X233050Y148820D01*

-X232902Y149061D01*

-X232718Y149277D01*

-X232502Y149461D01*

-X232261Y149609D01*

-X231999Y149717D01*

-X231723Y149783D01*

-X231441Y149806D01*

-X231159Y149783D01*

-X230883Y149717D01*

-X230621Y149609D01*

-X230438Y149497D01*

-Y245195D01*

-X230441Y245194D01*

-X230723Y245217D01*

-X230999Y245283D01*

-X231261Y245391D01*

-X231502Y245539D01*

-X231718Y245723D01*

-X231902Y245939D01*

-X232050Y246180D01*

-X232158Y246442D01*

-X232224Y246718D01*

-X232241Y247000D01*

-X232224Y247282D01*

-X232158Y247558D01*

-X232050Y247820D01*

-X231902Y248061D01*

-X231718Y248277D01*

-X231502Y248461D01*

-X231261Y248609D01*

-X230999Y248717D01*

-X230723Y248783D01*

-X230441Y248806D01*

-X230438Y248805D01*

-Y291195D01*

-X230441Y291194D01*

-X230723Y291217D01*

-X230999Y291283D01*

-X231261Y291391D01*

-X231502Y291539D01*

-X231718Y291723D01*

-X231902Y291939D01*

-X232050Y292180D01*

-X232158Y292442D01*

-X232224Y292718D01*

-X232241Y293000D01*

-X232224Y293282D01*

-X232158Y293558D01*

-X232050Y293820D01*

-X231902Y294061D01*

-X231718Y294277D01*

-X231502Y294461D01*

-X231261Y294609D01*

-X230999Y294717D01*

-X230723Y294783D01*

-X230441Y294806D01*

-X230438Y294805D01*

-Y353297D01*

-X230638Y353379D01*

-X230879Y353527D01*

-X231095Y353711D01*

-X231279Y353927D01*

-X231427Y354168D01*

-X231535Y354430D01*

-X231601Y354706D01*

-X231618Y354988D01*

-X231601Y355270D01*

-X231535Y355546D01*

-X231427Y355808D01*

-X231279Y356049D01*

-X231095Y356265D01*

-X230879Y356449D01*

-X230638Y356597D01*

-X230438Y356679D01*

-Y397000D01*

-X235792D01*

-Y379142D01*

-X235124Y379089D01*

-X234466Y378931D01*

-X233841Y378672D01*

-X233264Y378319D01*

-X232749Y377879D01*

-X232309Y377364D01*

-X231956Y376787D01*

-X231697Y376162D01*

-X231539Y375504D01*

-X231486Y374829D01*

-X231539Y374154D01*

-X231697Y373496D01*

-X231956Y372871D01*

-X232309Y372294D01*

-X232749Y371779D01*

-X233264Y371339D01*

-X233841Y370986D01*

-X234466Y370727D01*

-X235124Y370569D01*

-X235792Y370516D01*

-Y369142D01*

-X235124Y369089D01*

-X234466Y368931D01*

-X233841Y368672D01*

-X233264Y368319D01*

-X232749Y367879D01*

-X232309Y367364D01*

-X231956Y366787D01*

-X231697Y366162D01*

-X231539Y365504D01*

-X231486Y364829D01*

-X231539Y364154D01*

-X231697Y363496D01*

-X231956Y362871D01*

-X232309Y362294D01*

-X232749Y361779D01*

-X233264Y361339D01*

-X233841Y360986D01*

-X234466Y360727D01*

-X235124Y360569D01*

-X235792Y360516D01*

-Y237180D01*

-X235621Y237109D01*

-X235380Y236961D01*

-X235164Y236777D01*

-X234980Y236561D01*

-X234832Y236320D01*

-X234724Y236058D01*

-X234658Y235782D01*

-X234635Y235500D01*

-X234658Y235218D01*

-X234724Y234942D01*

-X234832Y234680D01*

-X234980Y234439D01*

-X235164Y234223D01*

-X235380Y234039D01*

-X235621Y233891D01*

-X235792Y233820D01*

-Y201642D01*

-X235124Y201589D01*

-X234466Y201431D01*

-X233841Y201172D01*

-X233264Y200819D01*

-X232749Y200379D01*

-X232309Y199864D01*

-X231956Y199287D01*

-X231697Y198662D01*

-X231539Y198004D01*

-X231486Y197329D01*

-X231539Y196654D01*

-X231697Y195996D01*

-X231956Y195371D01*

-X232309Y194794D01*

-X232749Y194279D01*

-X233264Y193839D01*

-X233841Y193486D01*

-X234466Y193227D01*

-X235124Y193069D01*

-X235792Y193016D01*

-Y189142D01*

-X235124Y189089D01*

-X234466Y188931D01*

-X233841Y188672D01*

-X233264Y188319D01*

-X232749Y187879D01*

-X232309Y187364D01*

-X231956Y186787D01*

-X231697Y186162D01*

-X231539Y185504D01*

-X231486Y184829D01*

-X231539Y184154D01*

-X231697Y183496D01*

-X231956Y182871D01*

-X232309Y182294D01*

-X232749Y181779D01*

-X233264Y181339D01*

-X233841Y180986D01*

-X234466Y180727D01*

-X235124Y180569D01*

-X235792Y180516D01*

-Y179142D01*

-X235124Y179089D01*

-X234466Y178931D01*

-X233841Y178672D01*

-X233264Y178319D01*

-X232749Y177879D01*

-X232309Y177364D01*

-X231956Y176787D01*

-X231697Y176162D01*

-X231539Y175504D01*

-X231486Y174829D01*

-X231539Y174154D01*

-X231697Y173496D01*

-X231956Y172871D01*

-X232309Y172294D01*

-X232749Y171779D01*

-X233264Y171339D01*

-X233841Y170986D01*

-X234466Y170727D01*

-X235124Y170569D01*

-X235792Y170516D01*

-Y134794D01*

-X235659Y134783D01*

-X235383Y134717D01*

-X235121Y134609D01*

-X234880Y134461D01*

-X234664Y134277D01*

-X234480Y134061D01*

-X234332Y133820D01*

-X234224Y133558D01*

-X234158Y133282D01*

-X234135Y133000D01*

-X234158Y132718D01*

-X234224Y132442D01*

-X234332Y132180D01*

-X234480Y131939D01*

-X234664Y131723D01*

-X234880Y131539D01*

-X235121Y131391D01*

-X235383Y131283D01*

-X235659Y131217D01*

-X235792Y131206D01*

-Y123689D01*

-X235718Y123777D01*

-X235502Y123961D01*

-X235261Y124109D01*

-X234999Y124217D01*

-X234723Y124283D01*

-X234441Y124306D01*

-X234159Y124283D01*

-X233883Y124217D01*

-X233621Y124109D01*

-X233380Y123961D01*

-X233164Y123777D01*

-X232980Y123561D01*

-X232832Y123320D01*

-X232724Y123058D01*

-X232658Y122782D01*

-X232635Y122500D01*

-X232658Y122218D01*

-X232724Y121942D01*

-X232832Y121680D01*

-X232980Y121439D01*

-X233164Y121223D01*

-X233380Y121039D01*

-X233621Y120891D01*

-X233883Y120783D01*

-X234159Y120717D01*

-X234441Y120694D01*

-X234723Y120717D01*

-X234999Y120783D01*

-X235261Y120891D01*

-X235502Y121039D01*

-X235718Y121223D01*

-X235792Y121311D01*

-Y97000D01*

-G37*

-G36*

-X230438D02*X225792D01*

-Y170516D01*

-X225799Y170516D01*

-X226474Y170569D01*

-X227132Y170727D01*

-X227757Y170986D01*

-X228334Y171339D01*

-X228849Y171779D01*

-X229289Y172294D01*

-X229642Y172871D01*

-X229901Y173496D01*

-X230059Y174154D01*

-X230099Y174829D01*

-X230059Y175504D01*

-X229901Y176162D01*

-X229642Y176787D01*

-X229289Y177364D01*

-X228849Y177879D01*

-X228334Y178319D01*

-X227757Y178672D01*

-X227132Y178931D01*

-X226474Y179089D01*

-X225799Y179142D01*

-X225792Y179142D01*

-Y180516D01*

-X225799Y180516D01*

-X226474Y180569D01*

-X227132Y180727D01*

-X227757Y180986D01*

-X228334Y181339D01*

-X228849Y181779D01*

-X229289Y182294D01*

-X229642Y182871D01*

-X229901Y183496D01*

-X230059Y184154D01*

-X230099Y184829D01*

-X230059Y185504D01*

-X229901Y186162D01*

-X229642Y186787D01*

-X229289Y187364D01*

-X228849Y187879D01*

-X228334Y188319D01*

-X227757Y188672D01*

-X227132Y188931D01*

-X226474Y189089D01*

-X225799Y189142D01*

-X225792Y189142D01*

-Y193016D01*

-X225799Y193016D01*

-X226474Y193069D01*

-X227132Y193227D01*

-X227757Y193486D01*

-X228334Y193839D01*

-X228849Y194279D01*

-X229289Y194794D01*

-X229642Y195371D01*

-X229901Y195996D01*

-X230059Y196654D01*

-X230099Y197329D01*

-X230059Y198004D01*

-X229901Y198662D01*

-X229642Y199287D01*

-X229289Y199864D01*

-X228849Y200379D01*

-X228334Y200819D01*

-X227757Y201172D01*

-X227132Y201431D01*

-X226474Y201589D01*

-X225799Y201642D01*

-X225792Y201642D01*

-Y218911D01*

-X226002Y219039D01*

-X226218Y219223D01*

-X226402Y219439D01*

-X226550Y219680D01*

-X226658Y219942D01*

-X226724Y220218D01*

-X226741Y220500D01*

-X226724Y220782D01*

-X226658Y221058D01*

-X226550Y221320D01*

-X226402Y221561D01*

-X226218Y221777D01*

-X226002Y221961D01*

-X225792Y222089D01*

-Y224733D01*

-X225999Y224783D01*

-X226261Y224891D01*

-X226502Y225039D01*

-X226718Y225223D01*

-X226902Y225439D01*

-X227050Y225680D01*

-X227158Y225942D01*

-X227224Y226218D01*

-X227241Y226500D01*

-X227224Y226782D01*

-X227158Y227058D01*

-X227050Y227320D01*

-X226902Y227561D01*

-X226718Y227777D01*

-X226502Y227961D01*

-X226261Y228109D01*

-X225999Y228217D01*

-X225792Y228267D01*

-Y233911D01*

-X226002Y234039D01*

-X226218Y234223D01*

-X226402Y234439D01*

-X226550Y234680D01*

-X226658Y234942D01*

-X226724Y235218D01*

-X226741Y235500D01*

-X226724Y235782D01*

-X226658Y236058D01*

-X226550Y236320D01*

-X226402Y236561D01*

-X226218Y236777D01*

-X226002Y236961D01*

-X225792Y237089D01*

-Y242811D01*

-X225902Y242939D01*

-X226050Y243180D01*

-X226158Y243442D01*

-X226224Y243718D01*

-X226241Y244000D01*

-X226224Y244282D01*

-X226158Y244558D01*

-X226050Y244820D01*

-X225902Y245061D01*

-X225792Y245189D01*

-Y247233D01*

-X225999Y247283D01*

-X226261Y247391D01*

-X226502Y247539D01*

-X226718Y247723D01*

-X226902Y247939D01*

-X227050Y248180D01*

-X227158Y248442D01*

-X227224Y248718D01*

-X227241Y249000D01*

-X227224Y249282D01*

-X227158Y249558D01*

-X227050Y249820D01*

-X226902Y250061D01*

-X226718Y250277D01*

-X226502Y250461D01*

-X226261Y250609D01*

-X225999Y250717D01*

-X225792Y250767D01*

-Y250811D01*

-X225902Y250939D01*

-X226050Y251180D01*

-X226158Y251442D01*

-X226224Y251718D01*

-X226241Y252000D01*

-X226224Y252282D01*

-X226158Y252558D01*

-X226050Y252820D01*

-X225902Y253061D01*

-X225792Y253189D01*

-Y360516D01*

-X225799Y360516D01*

-X226474Y360569D01*

-X227132Y360727D01*

-X227757Y360986D01*

-X228334Y361339D01*

-X228849Y361779D01*

-X229289Y362294D01*

-X229642Y362871D01*

-X229901Y363496D01*

-X230059Y364154D01*

-X230099Y364829D01*

-X230059Y365504D01*

-X229901Y366162D01*

-X229642Y366787D01*

-X229289Y367364D01*

-X228849Y367879D01*

-X228334Y368319D01*

-X227757Y368672D01*

-X227132Y368931D01*

-X226474Y369089D01*

-X225799Y369142D01*

-X225792Y369142D01*

-Y370516D01*

-X225799Y370516D01*

-X226474Y370569D01*

-X227132Y370727D01*

-X227757Y370986D01*

-X228334Y371339D01*

-X228849Y371779D01*

-X229289Y372294D01*

-X229642Y372871D01*

-X229901Y373496D01*

-X230059Y374154D01*

-X230099Y374829D01*

-X230059Y375504D01*

-X229901Y376162D01*

-X229642Y376787D01*

-X229289Y377364D01*

-X228849Y377879D01*

-X228334Y378319D01*

-X227757Y378672D01*

-X227132Y378931D01*

-X226474Y379089D01*

-X225799Y379142D01*

-X225792Y379142D01*

-Y397000D01*

-X230438D01*

-Y356679D01*

-X230376Y356705D01*

-X230100Y356771D01*

-X229818Y356794D01*

-X229536Y356771D01*

-X229260Y356705D01*

-X228998Y356597D01*

-X228757Y356449D01*

-X228541Y356265D01*

-X228357Y356049D01*

-X228209Y355808D01*

-X228101Y355546D01*

-X228035Y355270D01*

-X228012Y354988D01*

-X228035Y354706D01*

-X228101Y354430D01*

-X228209Y354168D01*

-X228357Y353927D01*

-X228541Y353711D01*

-X228757Y353527D01*

-X228998Y353379D01*

-X229260Y353271D01*

-X229536Y353205D01*

-X229818Y353182D01*

-X230100Y353205D01*

-X230376Y353271D01*

-X230438Y353297D01*

-Y294805D01*

-X230159Y294783D01*

-X229883Y294717D01*

-X229621Y294609D01*

-X229380Y294461D01*

-X229164Y294277D01*

-X228980Y294061D01*

-X228832Y293820D01*

-X228724Y293558D01*

-X228658Y293282D01*

-X228635Y293000D01*

-X228658Y292718D01*

-X228724Y292442D01*

-X228832Y292180D01*

-X228980Y291939D01*

-X229164Y291723D01*

-X229380Y291539D01*

-X229621Y291391D01*

-X229883Y291283D01*

-X230159Y291217D01*

-X230438Y291195D01*

-Y248805D01*

-X230159Y248783D01*

-X229883Y248717D01*

-X229621Y248609D01*

-X229380Y248461D01*

-X229164Y248277D01*

-X228980Y248061D01*

-X228832Y247820D01*

-X228724Y247558D01*

-X228658Y247282D01*

-X228635Y247000D01*

-X228658Y246718D01*

-X228724Y246442D01*

-X228832Y246180D01*

-X228980Y245939D01*

-X229164Y245723D01*

-X229380Y245539D01*

-X229621Y245391D01*

-X229883Y245283D01*

-X230159Y245217D01*

-X230438Y245195D01*

-Y149497D01*

-X230380Y149461D01*

-X230164Y149277D01*

-X229980Y149061D01*

-X229832Y148820D01*

-X229724Y148558D01*

-X229658Y148282D01*

-X229635Y148000D01*

-X229658Y147718D01*

-X229724Y147442D01*

-X229832Y147180D01*

-X229980Y146939D01*

-X230164Y146723D01*

-X230380Y146539D01*

-X230438Y146503D01*

-Y97000D01*

-G37*

-G36*

-X225792Y250767D02*X225761Y250774D01*

-X225792Y250811D01*

-Y250767D01*

-G37*

-G36*

-X220438Y397000D02*X225792D01*

-Y379142D01*

-X225124Y379089D01*

-X224466Y378931D01*

-X223841Y378672D01*

-X223264Y378319D01*

-X222749Y377879D01*

-X222309Y377364D01*

-X221956Y376787D01*

-X221697Y376162D01*

-X221539Y375504D01*

-X221486Y374829D01*

-X221539Y374154D01*

-X221697Y373496D01*

-X221956Y372871D01*

-X222309Y372294D01*

-X222749Y371779D01*

-X223264Y371339D01*

-X223841Y370986D01*

-X224466Y370727D01*

-X225124Y370569D01*

-X225792Y370516D01*

-Y369142D01*

-X225124Y369089D01*

-X224466Y368931D01*

-X223841Y368672D01*

-X223264Y368319D01*

-X222749Y367879D01*

-X222309Y367364D01*

-X221956Y366787D01*

-X221697Y366162D01*

-X221539Y365504D01*

-X221486Y364829D01*

-X221539Y364154D01*

-X221697Y363496D01*

-X221956Y362871D01*

-X222309Y362294D01*

-X222749Y361779D01*

-X223264Y361339D01*

-X223841Y360986D01*

-X224466Y360727D01*

-X225124Y360569D01*

-X225792Y360516D01*

-Y253189D01*

-X225718Y253277D01*

-X225502Y253461D01*

-X225261Y253609D01*

-X224999Y253717D01*

-X224723Y253783D01*

-X224441Y253806D01*

-X224159Y253783D01*

-X223883Y253717D01*

-X223643Y253618D01*

-X223667Y253718D01*

-X223684Y254000D01*

-X223667Y254282D01*

-X223601Y254558D01*

-X223493Y254820D01*

-X223345Y255061D01*

-X223161Y255277D01*

-X222945Y255461D01*

-X222704Y255609D01*

-X222442Y255717D01*

-X222166Y255783D01*

-X221884Y255806D01*

-X221602Y255783D01*

-X221326Y255717D01*

-X221064Y255609D01*

-X220823Y255461D01*

-X220607Y255277D01*

-X220438Y255079D01*

-Y257695D01*

-X220441Y257694D01*

-X220723Y257717D01*

-X220999Y257783D01*

-X221261Y257891D01*

-X221502Y258039D01*

-X221718Y258223D01*

-X221902Y258439D01*

-X222050Y258680D01*

-X222158Y258942D01*

-X222224Y259218D01*

-X222241Y259500D01*

-X222224Y259782D01*

-X222158Y260058D01*

-X222050Y260320D01*

-X221902Y260561D01*

-X221718Y260777D01*

-X221502Y260961D01*

-X221261Y261109D01*

-X220999Y261217D01*

-X220723Y261283D01*

-X220441Y261306D01*

-X220438Y261305D01*

-Y263799D01*

-X220447Y263797D01*

-X220729Y263774D01*

-X221011Y263797D01*

-X221287Y263863D01*

-X221549Y263971D01*

-X221790Y264119D01*

-X222006Y264303D01*

-X222190Y264519D01*

-X222338Y264760D01*

-X222446Y265022D01*

-X222512Y265298D01*

-X222529Y265580D01*

-X222512Y265862D01*

-X222446Y266138D01*

-X222338Y266400D01*

-X222190Y266641D01*

-X222006Y266857D01*

-X221790Y267041D01*

-X221549Y267189D01*

-X221287Y267297D01*

-X221011Y267363D01*

-X220729Y267386D01*

-X220447Y267363D01*

-X220438Y267361D01*

-Y271000D01*

-X220502Y271039D01*

-X220718Y271223D01*

-X220902Y271439D01*

-X221050Y271680D01*

-X221158Y271942D01*

-X221224Y272218D01*

-X221241Y272500D01*

-X221224Y272782D01*

-X221158Y273058D01*

-X221050Y273320D01*

-X220902Y273561D01*

-X220718Y273777D01*

-X220502Y273961D01*

-X220438Y274000D01*

-Y397000D01*

-G37*

-G36*

-X223938Y180946D02*X224466Y180727D01*

-X225124Y180569D01*

-X225792Y180516D01*

-Y179142D01*

-X225124Y179089D01*

-X224466Y178931D01*

-X223938Y178712D01*

-Y180946D01*

-G37*

-G36*

-Y193446D02*X224466Y193227D01*

-X225124Y193069D01*

-X225792Y193016D01*

-Y189142D01*

-X225124Y189089D01*

-X224466Y188931D01*

-X223938Y188712D01*

-Y193446D01*

-G37*

-G36*

-Y219003D02*X224121Y218891D01*

-X224383Y218783D01*

-X224659Y218717D01*

-X224941Y218694D01*

-X225223Y218717D01*

-X225499Y218783D01*

-X225761Y218891D01*

-X225792Y218911D01*

-Y201642D01*

-X225124Y201589D01*

-X224466Y201431D01*

-X223938Y201212D01*

-Y219003D01*

-G37*

-G36*

-Y225507D02*X223980Y225439D01*

-X224164Y225223D01*

-X224380Y225039D01*

-X224621Y224891D01*

-X224883Y224783D01*

-X225159Y224717D01*

-X225441Y224694D01*

-X225723Y224717D01*

-X225792Y224733D01*

-Y222089D01*

-X225761Y222109D01*

-X225499Y222217D01*

-X225223Y222283D01*

-X224941Y222306D01*

-X224659Y222283D01*

-X224383Y222217D01*

-X224121Y222109D01*

-X223938Y221997D01*

-Y225507D01*

-G37*

-G36*

-Y234003D02*X224121Y233891D01*

-X224383Y233783D01*

-X224659Y233717D01*

-X224941Y233694D01*

-X225223Y233717D01*

-X225499Y233783D01*

-X225761Y233891D01*

-X225792Y233911D01*

-Y228267D01*

-X225723Y228283D01*

-X225441Y228306D01*

-X225159Y228283D01*

-X224883Y228217D01*

-X224621Y228109D01*

-X224380Y227961D01*

-X224164Y227777D01*

-X223980Y227561D01*

-X223938Y227493D01*

-Y234003D01*

-G37*

-G36*

-Y242270D02*X224159Y242217D01*

-X224441Y242194D01*

-X224723Y242217D01*

-X224999Y242283D01*

-X225261Y242391D01*

-X225502Y242539D01*

-X225718Y242723D01*

-X225792Y242811D01*

-Y237089D01*

-X225761Y237109D01*

-X225499Y237217D01*

-X225223Y237283D01*

-X224941Y237306D01*

-X224659Y237283D01*

-X224383Y237217D01*

-X224121Y237109D01*

-X223938Y236997D01*

-Y242270D01*

-G37*

-G36*

-Y248007D02*X223980Y247939D01*

-X224164Y247723D01*

-X224380Y247539D01*

-X224621Y247391D01*

-X224883Y247283D01*

-X225159Y247217D01*

-X225441Y247194D01*

-X225723Y247217D01*

-X225792Y247233D01*

-Y245189D01*

-X225718Y245277D01*

-X225502Y245461D01*

-X225261Y245609D01*

-X224999Y245717D01*

-X224723Y245783D01*

-X224441Y245806D01*

-X224159Y245783D01*

-X223938Y245730D01*

-Y248007D01*

-G37*

-G36*

-Y250270D02*X224121Y250226D01*

-X223980Y250061D01*

-X223938Y249993D01*

-Y250270D01*

-G37*

-G36*

-X225792Y97000D02*X223938D01*

-Y146195D01*

-X223941Y146194D01*

-X224223Y146217D01*

-X224499Y146283D01*

-X224761Y146391D01*

-X225002Y146539D01*

-X225218Y146723D01*

-X225402Y146939D01*

-X225550Y147180D01*

-X225658Y147442D01*

-X225724Y147718D01*

-X225741Y148000D01*

-X225724Y148282D01*

-X225658Y148558D01*

-X225550Y148820D01*

-X225402Y149061D01*

-X225218Y149277D01*

-X225002Y149461D01*

-X224761Y149609D01*

-X224499Y149717D01*

-X224223Y149783D01*

-X223941Y149806D01*

-X223938Y149805D01*

-Y170946D01*

-X224466Y170727D01*

-X225124Y170569D01*

-X225792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X223938D02*X220438D01*

-Y213195D01*

-X220441Y213194D01*

-X220723Y213217D01*

-X220999Y213283D01*

-X221261Y213391D01*

-X221502Y213539D01*

-X221718Y213723D01*

-X221902Y213939D01*

-X222050Y214180D01*

-X222158Y214442D01*

-X222224Y214718D01*

-X222241Y215000D01*

-X222224Y215282D01*

-X222158Y215558D01*

-X222050Y215820D01*

-X221902Y216061D01*

-X221718Y216277D01*

-X221502Y216461D01*

-X221261Y216609D01*

-X220999Y216717D01*

-X220723Y216783D01*

-X220441Y216806D01*

-X220438Y216805D01*

-Y252921D01*

-X220607Y252723D01*

-X220823Y252539D01*

-X221064Y252391D01*

-X221326Y252283D01*

-X221602Y252217D01*

-X221884Y252194D01*

-X222166Y252217D01*

-X222442Y252283D01*

-X222682Y252382D01*

-X222658Y252282D01*

-X222635Y252000D01*

-X222658Y251718D01*

-X222724Y251442D01*

-X222832Y251180D01*

-X222980Y250939D01*

-X223164Y250723D01*

-X223380Y250539D01*

-X223621Y250391D01*

-X223883Y250283D01*

-X223938Y250270D01*

-Y249993D01*

-X223832Y249820D01*

-X223724Y249558D01*

-X223658Y249282D01*

-X223635Y249000D01*

-X223658Y248718D01*

-X223724Y248442D01*

-X223832Y248180D01*

-X223938Y248007D01*

-Y245730D01*

-X223883Y245717D01*

-X223621Y245609D01*

-X223380Y245461D01*

-X223164Y245277D01*

-X222980Y245061D01*

-X222832Y244820D01*

-X222724Y244558D01*

-X222658Y244282D01*

-X222635Y244000D01*

-X222658Y243718D01*

-X222724Y243442D01*

-X222832Y243180D01*

-X222980Y242939D01*

-X223164Y242723D01*

-X223380Y242539D01*

-X223621Y242391D01*

-X223883Y242283D01*

-X223938Y242270D01*

-Y236997D01*

-X223880Y236961D01*

-X223664Y236777D01*

-X223480Y236561D01*

-X223332Y236320D01*

-X223224Y236058D01*

-X223158Y235782D01*

-X223135Y235500D01*

-X223158Y235218D01*

-X223224Y234942D01*

-X223332Y234680D01*

-X223480Y234439D01*

-X223664Y234223D01*

-X223880Y234039D01*

-X223938Y234003D01*

-Y227493D01*

-X223832Y227320D01*

-X223724Y227058D01*

-X223658Y226782D01*

-X223635Y226500D01*

-X223658Y226218D01*

-X223724Y225942D01*

-X223832Y225680D01*

-X223938Y225507D01*

-Y221997D01*

-X223880Y221961D01*

-X223664Y221777D01*

-X223480Y221561D01*

-X223332Y221320D01*

-X223224Y221058D01*

-X223158Y220782D01*

-X223135Y220500D01*

-X223158Y220218D01*

-X223224Y219942D01*

-X223332Y219680D01*

-X223480Y219439D01*

-X223664Y219223D01*

-X223880Y219039D01*

-X223938Y219003D01*

-Y201212D01*

-X223841Y201172D01*

-X223264Y200819D01*

-X222749Y200379D01*

-X222309Y199864D01*

-X221956Y199287D01*

-X221697Y198662D01*

-X221539Y198004D01*

-X221486Y197329D01*

-X221539Y196654D01*

-X221697Y195996D01*

-X221956Y195371D01*

-X222309Y194794D01*

-X222749Y194279D01*

-X223264Y193839D01*

-X223841Y193486D01*

-X223938Y193446D01*

-Y188712D01*

-X223841Y188672D01*

-X223264Y188319D01*

-X222749Y187879D01*

-X222309Y187364D01*

-X221956Y186787D01*

-X221697Y186162D01*

-X221539Y185504D01*

-X221486Y184829D01*

-X221539Y184154D01*

-X221697Y183496D01*

-X221956Y182871D01*

-X222309Y182294D01*

-X222749Y181779D01*

-X223264Y181339D01*

-X223841Y180986D01*

-X223938Y180946D01*

-Y178712D01*

-X223841Y178672D01*

-X223264Y178319D01*

-X222749Y177879D01*

-X222309Y177364D01*

-X221956Y176787D01*

-X221697Y176162D01*

-X221539Y175504D01*

-X221486Y174829D01*

-X221539Y174154D01*

-X221697Y173496D01*

-X221956Y172871D01*

-X222309Y172294D01*

-X222749Y171779D01*

-X223264Y171339D01*

-X223841Y170986D01*

-X223938Y170946D01*

-Y149805D01*

-X223659Y149783D01*

-X223383Y149717D01*

-X223121Y149609D01*

-X222880Y149461D01*

-X222664Y149277D01*

-X222480Y149061D01*

-X222332Y148820D01*

-X222224Y148558D01*

-X222158Y148282D01*

-X222135Y148000D01*

-X222158Y147718D01*

-X222224Y147442D01*

-X222332Y147180D01*

-X222480Y146939D01*

-X222664Y146723D01*

-X222880Y146539D01*

-X223121Y146391D01*

-X223383Y146283D01*

-X223659Y146217D01*

-X223938Y146195D01*

-Y97000D01*

-G37*

-G36*

-X220438D02*X215792D01*

-Y170516D01*

-X215799Y170516D01*

-X216474Y170569D01*

-X217132Y170727D01*

-X217757Y170986D01*

-X218334Y171339D01*

-X218849Y171779D01*

-X219289Y172294D01*

-X219642Y172871D01*

-X219901Y173496D01*

-X220059Y174154D01*

-X220099Y174829D01*

-X220059Y175504D01*

-X219901Y176162D01*

-X219642Y176787D01*

-X219289Y177364D01*

-X218849Y177879D01*

-X218334Y178319D01*

-X217757Y178672D01*

-X217132Y178931D01*

-X216474Y179089D01*

-X215799Y179142D01*

-X215792Y179142D01*

-Y180516D01*

-X215799Y180516D01*

-X216474Y180569D01*

-X217132Y180727D01*

-X217757Y180986D01*

-X218334Y181339D01*

-X218849Y181779D01*

-X219289Y182294D01*

-X219642Y182871D01*

-X219901Y183496D01*

-X220059Y184154D01*

-X220099Y184829D01*

-X220059Y185504D01*

-X219901Y186162D01*

-X219642Y186787D01*

-X219289Y187364D01*

-X218849Y187879D01*

-X218334Y188319D01*

-X217757Y188672D01*

-X217132Y188931D01*

-X216474Y189089D01*

-X215799Y189142D01*

-X215792Y189142D01*

-Y193016D01*

-X215799Y193016D01*

-X216474Y193069D01*

-X217132Y193227D01*

-X217757Y193486D01*

-X218334Y193839D01*

-X218849Y194279D01*

-X219289Y194794D01*

-X219642Y195371D01*

-X219901Y195996D01*

-X220059Y196654D01*

-X220099Y197329D01*

-X220059Y198004D01*

-X219901Y198662D01*

-X219642Y199287D01*

-X219289Y199864D01*

-X218849Y200379D01*

-X218334Y200819D01*

-X217757Y201172D01*

-X217132Y201431D01*

-X216474Y201589D01*

-X215799Y201642D01*

-X215792Y201642D01*

-Y278277D01*

-X215832Y278180D01*

-X215980Y277939D01*

-X216164Y277723D01*

-X216380Y277539D01*

-X216621Y277391D01*

-X216883Y277283D01*

-X217159Y277217D01*

-X217441Y277194D01*

-X217723Y277217D01*

-X217999Y277283D01*

-X218261Y277391D01*

-X218502Y277539D01*

-X218718Y277723D01*

-X218902Y277939D01*

-X219050Y278180D01*

-X219158Y278442D01*

-X219224Y278718D01*

-X219241Y279000D01*

-X219224Y279282D01*

-X219158Y279558D01*

-X219050Y279820D01*

-X218902Y280061D01*

-X218718Y280277D01*

-X218502Y280461D01*

-X218261Y280609D01*

-X217999Y280717D01*

-X217723Y280783D01*

-X217441Y280806D01*

-X217159Y280783D01*

-X216883Y280717D01*

-X216621Y280609D01*

-X216380Y280461D01*

-X216164Y280277D01*

-X215980Y280061D01*

-X215832Y279820D01*

-X215792Y279723D01*

-Y360516D01*

-X215799Y360516D01*

-X216474Y360569D01*

-X217132Y360727D01*

-X217757Y360986D01*

-X218334Y361339D01*

-X218849Y361779D01*

-X219289Y362294D01*

-X219642Y362871D01*

-X219901Y363496D01*

-X220059Y364154D01*

-X220099Y364829D01*

-X220059Y365504D01*

-X219901Y366162D01*

-X219642Y366787D01*

-X219289Y367364D01*

-X218849Y367879D01*

-X218334Y368319D01*

-X217757Y368672D01*

-X217132Y368931D01*

-X216474Y369089D01*

-X215799Y369142D01*

-X215792Y369142D01*

-Y370516D01*

-X215799Y370516D01*

-X216474Y370569D01*

-X217132Y370727D01*

-X217757Y370986D01*

-X218334Y371339D01*

-X218849Y371779D01*

-X219289Y372294D01*

-X219642Y372871D01*

-X219901Y373496D01*

-X220059Y374154D01*

-X220099Y374829D01*

-X220059Y375504D01*

-X219901Y376162D01*

-X219642Y376787D01*

-X219289Y377364D01*

-X218849Y377879D01*

-X218334Y378319D01*

-X217757Y378672D01*

-X217132Y378931D01*

-X216474Y379089D01*

-X215799Y379142D01*

-X215792Y379142D01*

-Y397000D01*

-X220438D01*

-Y274000D01*

-X220261Y274109D01*

-X219999Y274217D01*

-X219723Y274283D01*

-X219441Y274306D01*

-X219159Y274283D01*

-X218883Y274217D01*

-X218621Y274109D01*

-X218380Y273961D01*

-X218164Y273777D01*

-X217980Y273561D01*

-X217832Y273320D01*

-X217724Y273058D01*

-X217658Y272782D01*

-X217635Y272500D01*

-X217658Y272218D01*

-X217724Y271942D01*

-X217832Y271680D01*

-X217980Y271439D01*

-X218164Y271223D01*

-X218380Y271039D01*

-X218621Y270891D01*

-X218883Y270783D01*

-X219159Y270717D01*

-X219441Y270694D01*

-X219723Y270717D01*

-X219999Y270783D01*

-X220261Y270891D01*

-X220438Y271000D01*

-Y267361D01*

-X220171Y267297D01*

-X219909Y267189D01*

-X219668Y267041D01*

-X219452Y266857D01*

-X219268Y266641D01*

-X219120Y266400D01*

-X219012Y266138D01*

-X218946Y265862D01*

-X218923Y265580D01*

-X218946Y265298D01*

-X219012Y265022D01*

-X219120Y264760D01*

-X219268Y264519D01*

-X219452Y264303D01*

-X219668Y264119D01*

-X219909Y263971D01*

-X220171Y263863D01*

-X220438Y263799D01*

-Y261305D01*

-X220229Y261289D01*

-X220241Y261500D01*

-X220224Y261782D01*

-X220158Y262058D01*

-X220050Y262320D01*

-X219902Y262561D01*

-X219718Y262777D01*

-X219502Y262961D01*

-X219261Y263109D01*

-X218999Y263217D01*

-X218723Y263283D01*

-X218441Y263306D01*

-X218159Y263283D01*

-X217883Y263217D01*

-X217621Y263109D01*

-X217380Y262961D01*

-X217164Y262777D01*

-X216980Y262561D01*

-X216832Y262320D01*

-X216724Y262058D01*

-X216658Y261782D01*

-X216635Y261500D01*

-X216658Y261218D01*

-X216724Y260942D01*

-X216832Y260680D01*

-X216980Y260439D01*

-X217164Y260223D01*

-X217380Y260039D01*

-X217621Y259891D01*

-X217883Y259783D01*

-X218159Y259717D01*

-X218441Y259694D01*

-X218652Y259711D01*

-X218635Y259500D01*

-X218658Y259218D01*

-X218724Y258942D01*

-X218832Y258680D01*

-X218980Y258439D01*

-X219164Y258223D01*

-X219380Y258039D01*

-X219621Y257891D01*

-X219883Y257783D01*

-X220159Y257717D01*

-X220438Y257695D01*

-Y255079D01*

-X220423Y255061D01*

-X220275Y254820D01*

-X220167Y254558D01*

-X220101Y254282D01*

-X220078Y254000D01*

-X220101Y253718D01*

-X220167Y253442D01*

-X220275Y253180D01*

-X220423Y252939D01*

-X220438Y252921D01*

-Y216805D01*

-X220159Y216783D01*

-X219883Y216717D01*

-X219621Y216609D01*

-X219380Y216461D01*

-X219164Y216277D01*

-X218980Y216061D01*

-X218832Y215820D01*

-X218724Y215558D01*

-X218658Y215282D01*

-X218635Y215000D01*

-X218658Y214718D01*

-X218724Y214442D01*

-X218832Y214180D01*

-X218980Y213939D01*

-X219164Y213723D01*

-X219380Y213539D01*

-X219621Y213391D01*

-X219883Y213283D01*

-X220159Y213217D01*

-X220438Y213195D01*

-Y97000D01*

-G37*

-G36*

-X212938Y181618D02*X213264Y181339D01*

-X213841Y180986D01*

-X214466Y180727D01*

-X215124Y180569D01*

-X215792Y180516D01*

-Y179142D01*

-X215124Y179089D01*

-X214466Y178931D01*

-X213841Y178672D01*

-X213264Y178319D01*

-X212938Y178040D01*

-Y181618D01*

-G37*

-G36*

-Y194118D02*X213264Y193839D01*

-X213841Y193486D01*

-X214466Y193227D01*

-X215124Y193069D01*

-X215792Y193016D01*

-Y189142D01*

-X215124Y189089D01*

-X214466Y188931D01*

-X213841Y188672D01*

-X213264Y188319D01*

-X212938Y188040D01*

-Y194118D01*

-G37*

-G36*

-Y361618D02*X213264Y361339D01*

-X213841Y360986D01*

-X214466Y360727D01*

-X215124Y360569D01*

-X215792Y360516D01*

-Y279723D01*

-X215724Y279558D01*

-X215658Y279282D01*

-X215635Y279000D01*

-X215658Y278718D01*

-X215724Y278442D01*

-X215792Y278277D01*

-Y201642D01*

-X215124Y201589D01*

-X214466Y201431D01*

-X213841Y201172D01*

-X213264Y200819D01*

-X212938Y200540D01*

-Y236195D01*

-X212941Y236194D01*

-X213223Y236217D01*

-X213499Y236283D01*

-X213761Y236391D01*

-X214002Y236539D01*

-X214218Y236723D01*

-X214402Y236939D01*

-X214550Y237180D01*

-X214658Y237442D01*

-X214724Y237718D01*

-X214741Y238000D01*

-X214724Y238282D01*

-X214658Y238558D01*

-X214550Y238820D01*

-X214402Y239061D01*

-X214218Y239277D01*

-X214002Y239461D01*

-X213761Y239609D01*

-X213499Y239717D01*

-X213223Y239783D01*

-X212941Y239806D01*

-X212938Y239805D01*

-Y361618D01*

-G37*

-G36*

-Y371618D02*X213264Y371339D01*

-X213841Y370986D01*

-X214466Y370727D01*

-X215124Y370569D01*

-X215792Y370516D01*

-Y369142D01*

-X215124Y369089D01*

-X214466Y368931D01*

-X213841Y368672D01*

-X213264Y368319D01*

-X212938Y368040D01*

-Y371618D01*

-G37*

-G36*

-Y397000D02*X215792D01*

-Y379142D01*

-X215124Y379089D01*

-X214466Y378931D01*

-X213841Y378672D01*

-X213264Y378319D01*

-X212938Y378040D01*

-Y397000D01*

-G37*

-G36*

-X215792Y97000D02*X212938D01*

-Y171618D01*

-X213264Y171339D01*

-X213841Y170986D01*

-X214466Y170727D01*

-X215124Y170569D01*

-X215792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X212938D02*X210438D01*

-Y146998D01*

-X210550Y147180D01*

-X210658Y147442D01*

-X210724Y147718D01*

-X210741Y148000D01*

-X210724Y148282D01*

-X210658Y148558D01*

-X210550Y148820D01*

-X210438Y149002D01*

-Y210695D01*

-X210441Y210694D01*

-X210723Y210717D01*

-X210999Y210783D01*

-X211261Y210891D01*

-X211502Y211039D01*

-X211718Y211223D01*

-X211902Y211439D01*

-X212050Y211680D01*

-X212158Y211942D01*

-X212224Y212218D01*

-X212241Y212500D01*

-X212224Y212782D01*

-X212158Y213058D01*

-X212050Y213320D01*

-X211902Y213561D01*

-X211718Y213777D01*

-X211502Y213961D01*

-X211261Y214109D01*

-X210999Y214217D01*

-X210723Y214283D01*

-X210441Y214306D01*

-X210438Y214305D01*

-Y397000D01*

-X212938D01*

-Y378040D01*

-X212749Y377879D01*

-X212309Y377364D01*

-X211956Y376787D01*

-X211697Y376162D01*

-X211539Y375504D01*

-X211486Y374829D01*

-X211539Y374154D01*

-X211697Y373496D01*

-X211956Y372871D01*

-X212309Y372294D01*

-X212749Y371779D01*

-X212938Y371618D01*

-Y368040D01*

-X212749Y367879D01*

-X212309Y367364D01*

-X211956Y366787D01*

-X211697Y366162D01*

-X211539Y365504D01*

-X211486Y364829D01*

-X211539Y364154D01*

-X211697Y363496D01*

-X211956Y362871D01*

-X212309Y362294D01*

-X212749Y361779D01*

-X212938Y361618D01*

-Y239805D01*

-X212659Y239783D01*

-X212383Y239717D01*

-X212121Y239609D01*

-X211880Y239461D01*

-X211664Y239277D01*

-X211480Y239061D01*

-X211332Y238820D01*

-X211224Y238558D01*

-X211158Y238282D01*

-X211135Y238000D01*

-X211158Y237718D01*

-X211224Y237442D01*

-X211332Y237180D01*

-X211480Y236939D01*

-X211664Y236723D01*

-X211880Y236539D01*

-X212121Y236391D01*

-X212383Y236283D01*

-X212659Y236217D01*

-X212938Y236195D01*

-Y200540D01*

-X212749Y200379D01*

-X212309Y199864D01*

-X211956Y199287D01*

-X211697Y198662D01*

-X211539Y198004D01*

-X211486Y197329D01*

-X211539Y196654D01*

-X211697Y195996D01*

-X211956Y195371D01*

-X212309Y194794D01*

-X212749Y194279D01*

-X212938Y194118D01*

-Y188040D01*

-X212749Y187879D01*

-X212309Y187364D01*

-X211956Y186787D01*

-X211697Y186162D01*

-X211539Y185504D01*

-X211486Y184829D01*

-X211539Y184154D01*

-X211697Y183496D01*

-X211956Y182871D01*

-X212309Y182294D01*

-X212749Y181779D01*

-X212938Y181618D01*

-Y178040D01*

-X212749Y177879D01*

-X212309Y177364D01*

-X211956Y176787D01*

-X211697Y176162D01*

-X211539Y175504D01*

-X211486Y174829D01*

-X211539Y174154D01*

-X211697Y173496D01*

-X211956Y172871D01*

-X212309Y172294D01*

-X212749Y171779D01*

-X212938Y171618D01*

-Y97000D01*

-G37*

-G36*

-X210438D02*X205792D01*

-Y170516D01*

-X205799Y170516D01*

-X206474Y170569D01*

-X207132Y170727D01*

-X207757Y170986D01*

-X208334Y171339D01*

-X208849Y171779D01*

-X209289Y172294D01*

-X209642Y172871D01*

-X209901Y173496D01*

-X210059Y174154D01*

-X210099Y174829D01*

-X210059Y175504D01*

-X209901Y176162D01*

-X209642Y176787D01*

-X209289Y177364D01*

-X208849Y177879D01*

-X208334Y178319D01*

-X207757Y178672D01*

-X207132Y178931D01*

-X206474Y179089D01*

-X205799Y179142D01*

-X205792Y179142D01*

-Y180516D01*

-X205799Y180516D01*

-X206474Y180569D01*

-X207132Y180727D01*

-X207757Y180986D01*

-X208334Y181339D01*

-X208849Y181779D01*

-X209289Y182294D01*

-X209642Y182871D01*

-X209901Y183496D01*

-X210059Y184154D01*

-X210099Y184829D01*

-X210059Y185504D01*

-X209901Y186162D01*

-X209642Y186787D01*

-X209289Y187364D01*

-X208849Y187879D01*

-X208334Y188319D01*

-X207757Y188672D01*

-X207132Y188931D01*

-X206474Y189089D01*

-X205799Y189142D01*

-X205792Y189142D01*

-Y193016D01*

-X205799Y193016D01*

-X206474Y193069D01*

-X207132Y193227D01*

-X207757Y193486D01*

-X208334Y193839D01*

-X208849Y194279D01*

-X209289Y194794D01*

-X209642Y195371D01*

-X209901Y195996D01*

-X210059Y196654D01*

-X210099Y197329D01*

-X210059Y198004D01*

-X209901Y198662D01*

-X209642Y199287D01*

-X209289Y199864D01*

-X208849Y200379D01*

-X208334Y200819D01*

-X207757Y201172D01*

-X207132Y201431D01*

-X206474Y201589D01*

-X205799Y201642D01*

-X205792Y201642D01*

-Y275233D01*

-X205999Y275283D01*

-X206261Y275391D01*

-X206502Y275539D01*

-X206718Y275723D01*

-X206902Y275939D01*

-X207050Y276180D01*

-X207158Y276442D01*

-X207224Y276718D01*

-X207241Y277000D01*

-X207224Y277282D01*

-X207158Y277558D01*

-X207050Y277820D01*

-X206902Y278061D01*

-X206718Y278277D01*

-X206502Y278461D01*

-X206261Y278609D01*

-X205999Y278717D01*

-X205792Y278767D01*

-Y360516D01*

-X205799Y360516D01*

-X206474Y360569D01*

-X207132Y360727D01*

-X207757Y360986D01*

-X208334Y361339D01*

-X208849Y361779D01*

-X209289Y362294D01*

-X209642Y362871D01*

-X209901Y363496D01*

-X210059Y364154D01*

-X210099Y364829D01*

-X210059Y365504D01*

-X209901Y366162D01*

-X209642Y366787D01*

-X209289Y367364D01*

-X208849Y367879D01*

-X208334Y368319D01*

-X207757Y368672D01*

-X207132Y368931D01*

-X206474Y369089D01*

-X205799Y369142D01*

-X205792Y369142D01*

-Y370516D01*

-X205799Y370516D01*

-X206474Y370569D01*

-X207132Y370727D01*

-X207757Y370986D01*

-X208334Y371339D01*

-X208849Y371779D01*

-X209289Y372294D01*

-X209642Y372871D01*

-X209901Y373496D01*

-X210059Y374154D01*

-X210099Y374829D01*

-X210059Y375504D01*

-X209901Y376162D01*

-X209642Y376787D01*

-X209289Y377364D01*

-X208849Y377879D01*

-X208334Y378319D01*

-X207757Y378672D01*

-X207132Y378931D01*

-X206474Y379089D01*

-X205799Y379142D01*

-X205792Y379142D01*

-Y397000D01*

-X210438D01*

-Y214305D01*

-X210159Y214283D01*

-X209883Y214217D01*

-X209621Y214109D01*

-X209380Y213961D01*

-X209164Y213777D01*

-X208980Y213561D01*

-X208832Y213320D01*

-X208724Y213058D01*

-X208658Y212782D01*

-X208635Y212500D01*

-X208658Y212218D01*

-X208724Y211942D01*

-X208832Y211680D01*

-X208980Y211439D01*

-X209164Y211223D01*

-X209380Y211039D01*

-X209621Y210891D01*

-X209883Y210783D01*

-X210159Y210717D01*

-X210438Y210695D01*

-Y149002D01*

-X210402Y149061D01*

-X210218Y149277D01*

-X210002Y149461D01*

-X209761Y149609D01*

-X209499Y149717D01*

-X209223Y149783D01*

-X208941Y149806D01*

-X208659Y149783D01*

-X208383Y149717D01*

-X208121Y149609D01*

-X207880Y149461D01*

-X207664Y149277D01*

-X207480Y149061D01*

-X207332Y148820D01*

-X207224Y148558D01*

-X207158Y148282D01*

-X207135Y148000D01*

-X207158Y147718D01*

-X207224Y147442D01*

-X207332Y147180D01*

-X207480Y146939D01*

-X207664Y146723D01*

-X207880Y146539D01*

-X208121Y146391D01*

-X208383Y146283D01*

-X208659Y146217D01*

-X208941Y146194D01*

-X209223Y146217D01*

-X209499Y146283D01*

-X209761Y146391D01*

-X210002Y146539D01*

-X210218Y146723D01*

-X210402Y146939D01*

-X210438Y146998D01*

-Y97000D01*

-G37*

-G36*

-X202438Y182143D02*X202749Y181779D01*

-X203264Y181339D01*

-X203841Y180986D01*

-X204466Y180727D01*

-X205124Y180569D01*

-X205792Y180516D01*

-Y179142D01*

-X205124Y179089D01*

-X204466Y178931D01*

-X203841Y178672D01*

-X203264Y178319D01*

-X202749Y177879D01*

-X202438Y177515D01*

-Y182143D01*

-G37*

-G36*

-Y194643D02*X202749Y194279D01*

-X203264Y193839D01*

-X203841Y193486D01*

-X204466Y193227D01*

-X205124Y193069D01*

-X205792Y193016D01*

-Y189142D01*

-X205124Y189089D01*

-X204466Y188931D01*

-X203841Y188672D01*

-X203264Y188319D01*

-X202749Y187879D01*

-X202438Y187515D01*

-Y194643D01*

-G37*

-G36*

-Y362143D02*X202749Y361779D01*

-X203264Y361339D01*

-X203841Y360986D01*

-X204466Y360727D01*

-X205124Y360569D01*

-X205792Y360516D01*

-Y278767D01*

-X205723Y278783D01*

-X205441Y278806D01*

-X205159Y278783D01*

-X204883Y278717D01*

-X204621Y278609D01*

-X204380Y278461D01*

-X204164Y278277D01*

-X203980Y278061D01*

-X203832Y277820D01*

-X203724Y277558D01*

-X203658Y277282D01*

-X203635Y277000D01*

-X203658Y276718D01*

-X203724Y276442D01*

-X203832Y276180D01*

-X203980Y275939D01*

-X204164Y275723D01*

-X204380Y275539D01*

-X204621Y275391D01*

-X204883Y275283D01*

-X205159Y275217D01*

-X205441Y275194D01*

-X205723Y275217D01*

-X205792Y275233D01*

-Y201642D01*

-X205124Y201589D01*

-X204466Y201431D01*

-X203841Y201172D01*

-X203264Y200819D01*

-X202749Y200379D01*

-X202438Y200015D01*

-Y210695D01*

-X202441Y210694D01*

-X202723Y210717D01*

-X202999Y210783D01*

-X203261Y210891D01*

-X203502Y211039D01*

-X203718Y211223D01*

-X203902Y211439D01*

-X204050Y211680D01*

-X204158Y211942D01*

-X204224Y212218D01*

-X204241Y212500D01*

-X204224Y212782D01*

-X204158Y213058D01*

-X204050Y213320D01*

-X203902Y213561D01*

-X203718Y213777D01*

-X203502Y213961D01*

-X203261Y214109D01*

-X202999Y214217D01*

-X202723Y214283D01*

-X202441Y214306D01*

-X202438Y214305D01*

-Y236507D01*

-X202480Y236439D01*

-X202664Y236223D01*

-X202880Y236039D01*

-X203121Y235891D01*

-X203383Y235783D01*

-X203659Y235717D01*

-X203941Y235694D01*

-X204223Y235717D01*

-X204499Y235783D01*

-X204761Y235891D01*

-X205002Y236039D01*

-X205218Y236223D01*

-X205402Y236439D01*

-X205550Y236680D01*

-X205658Y236942D01*

-X205724Y237218D01*

-X205741Y237500D01*

-X205724Y237782D01*

-X205658Y238058D01*

-X205550Y238320D01*

-X205402Y238561D01*

-X205218Y238777D01*

-X205002Y238961D01*

-X204761Y239109D01*

-X204499Y239217D01*

-X204223Y239283D01*

-X203941Y239306D01*

-X203659Y239283D01*

-X203383Y239217D01*

-X203121Y239109D01*

-X202880Y238961D01*

-X202664Y238777D01*

-X202480Y238561D01*

-X202438Y238493D01*

-Y362143D01*

-G37*

-G36*

-Y372143D02*X202749Y371779D01*

-X203264Y371339D01*

-X203841Y370986D01*

-X204466Y370727D01*

-X205124Y370569D01*

-X205792Y370516D01*

-Y369142D01*

-X205124Y369089D01*

-X204466Y368931D01*

-X203841Y368672D01*

-X203264Y368319D01*

-X202749Y367879D01*

-X202438Y367515D01*

-Y372143D01*

-G37*

-G36*

-Y397000D02*X205792D01*

-Y379142D01*

-X205124Y379089D01*

-X204466Y378931D01*

-X203841Y378672D01*

-X203264Y378319D01*

-X202749Y377879D01*

-X202438Y377515D01*

-Y397000D01*

-G37*

-G36*

-X205792Y97000D02*X202438D01*

-Y172143D01*

-X202749Y171779D01*

-X203264Y171339D01*

-X203841Y170986D01*

-X204466Y170727D01*

-X205124Y170569D01*

-X205792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X202438D02*X198438D01*

-Y120695D01*

-X198441Y120694D01*

-X198723Y120717D01*

-X198999Y120783D01*

-X199261Y120891D01*

-X199502Y121039D01*

-X199718Y121223D01*

-X199902Y121439D01*

-X200050Y121680D01*

-X200158Y121942D01*

-X200224Y122218D01*

-X200241Y122500D01*

-X200224Y122782D01*

-X200158Y123058D01*

-X200050Y123320D01*

-X199902Y123561D01*

-X199718Y123777D01*

-X199502Y123961D01*

-X199261Y124109D01*

-X198999Y124217D01*

-X198723Y124283D01*

-X198441Y124306D01*

-X198438Y124305D01*

-Y171428D01*

-X198849Y171779D01*

-X199289Y172294D01*

-X199642Y172871D01*

-X199901Y173496D01*

-X200059Y174154D01*

-X200099Y174829D01*

-X200059Y175504D01*

-X199901Y176162D01*

-X199642Y176787D01*

-X199289Y177364D01*

-X198849Y177879D01*

-X198438Y178230D01*

-Y181428D01*

-X198849Y181779D01*

-X199289Y182294D01*

-X199642Y182871D01*

-X199901Y183496D01*

-X200059Y184154D01*

-X200099Y184829D01*

-X200059Y185504D01*

-X199901Y186162D01*

-X199642Y186787D01*

-X199289Y187364D01*

-X198849Y187879D01*

-X198438Y188230D01*

-Y193037D01*

-X199256Y193038D01*

-X199409Y193075D01*

-X199554Y193135D01*

-X199689Y193217D01*

-X199808Y193320D01*

-X199911Y193439D01*

-X199993Y193574D01*

-X200053Y193719D01*

-X200090Y193872D01*

-X200099Y194029D01*

-X200090Y200786D01*

-X200053Y200939D01*

-X199993Y201084D01*

-X199911Y201219D01*

-X199808Y201338D01*

-X199689Y201441D01*

-X199554Y201523D01*

-X199409Y201583D01*

-X199256Y201620D01*

-X199099Y201629D01*

-X198438Y201628D01*

-Y260695D01*

-X198441Y260694D01*

-X198723Y260717D01*

-X198999Y260783D01*

-X199261Y260891D01*

-X199502Y261039D01*

-X199718Y261223D01*

-X199902Y261439D01*

-X200050Y261680D01*

-X200158Y261942D01*

-X200224Y262218D01*

-X200241Y262500D01*

-X200224Y262782D01*

-X200158Y263058D01*

-X200050Y263320D01*

-X199902Y263561D01*

-X199718Y263777D01*

-X199502Y263961D01*

-X199261Y264109D01*

-X198999Y264217D01*

-X198723Y264283D01*

-X198441Y264306D01*

-X198438Y264305D01*

-Y267695D01*

-X198441Y267694D01*

-X198723Y267717D01*

-X198999Y267783D01*

-X199261Y267891D01*

-X199502Y268039D01*

-X199718Y268223D01*

-X199902Y268439D01*

-X200050Y268680D01*

-X200158Y268942D01*

-X200224Y269218D01*

-X200241Y269500D01*

-X200224Y269782D01*

-X200158Y270058D01*

-X200050Y270320D01*

-X199902Y270561D01*

-X199718Y270777D01*

-X199502Y270961D01*

-X199261Y271109D01*

-X198999Y271217D01*

-X198723Y271283D01*

-X198441Y271306D01*

-X198438Y271305D01*

-Y307000D01*

-X198502Y307039D01*

-X198718Y307223D01*

-X198902Y307439D01*

-X199050Y307680D01*

-X199158Y307942D01*

-X199224Y308218D01*

-X199241Y308500D01*

-X199224Y308782D01*

-X199158Y309058D01*

-X199050Y309320D01*

-X198902Y309561D01*

-X198718Y309777D01*

-X198502Y309961D01*

-X198438Y310000D01*

-Y313000D01*

-X198502Y313039D01*

-X198718Y313223D01*

-X198902Y313439D01*

-X199050Y313680D01*

-X199158Y313942D01*

-X199224Y314218D01*

-X199241Y314500D01*

-X199224Y314782D01*

-X199158Y315058D01*

-X199050Y315320D01*

-X198902Y315561D01*

-X198718Y315777D01*

-X198502Y315961D01*

-X198438Y316000D01*

-Y361428D01*

-X198849Y361779D01*

-X199289Y362294D01*

-X199642Y362871D01*

-X199901Y363496D01*

-X200059Y364154D01*

-X200099Y364829D01*

-X200059Y365504D01*

-X199901Y366162D01*

-X199642Y366787D01*

-X199289Y367364D01*

-X198849Y367879D01*

-X198438Y368230D01*

-Y371428D01*

-X198849Y371779D01*

-X199289Y372294D01*

-X199642Y372871D01*

-X199901Y373496D01*

-X200059Y374154D01*

-X200099Y374829D01*

-X200059Y375504D01*

-X199901Y376162D01*

-X199642Y376787D01*

-X199289Y377364D01*

-X198849Y377879D01*

-X198438Y378230D01*

-Y397000D01*

-X202438D01*

-Y377515D01*

-X202309Y377364D01*

-X201956Y376787D01*

-X201697Y376162D01*

-X201539Y375504D01*

-X201486Y374829D01*

-X201539Y374154D01*

-X201697Y373496D01*

-X201956Y372871D01*

-X202309Y372294D01*

-X202438Y372143D01*

-Y367515D01*

-X202309Y367364D01*

-X201956Y366787D01*

-X201697Y366162D01*

-X201539Y365504D01*

-X201486Y364829D01*

-X201539Y364154D01*

-X201697Y363496D01*

-X201956Y362871D01*

-X202309Y362294D01*

-X202438Y362143D01*

-Y238493D01*

-X202332Y238320D01*

-X202224Y238058D01*

-X202158Y237782D01*

-X202135Y237500D01*

-X202158Y237218D01*

-X202224Y236942D01*

-X202332Y236680D01*

-X202438Y236507D01*

-Y214305D01*

-X202159Y214283D01*

-X201883Y214217D01*

-X201621Y214109D01*

-X201380Y213961D01*

-X201164Y213777D01*

-X200980Y213561D01*

-X200832Y213320D01*

-X200724Y213058D01*

-X200658Y212782D01*

-X200635Y212500D01*

-X200658Y212218D01*

-X200724Y211942D01*

-X200832Y211680D01*

-X200980Y211439D01*

-X201164Y211223D01*

-X201380Y211039D01*

-X201621Y210891D01*

-X201883Y210783D01*

-X202159Y210717D01*

-X202438Y210695D01*

-Y200015D01*

-X202309Y199864D01*

-X201956Y199287D01*

-X201697Y198662D01*

-X201539Y198004D01*

-X201486Y197329D01*

-X201539Y196654D01*

-X201697Y195996D01*

-X201956Y195371D01*

-X202309Y194794D01*

-X202438Y194643D01*

-Y187515D01*

-X202309Y187364D01*

-X201956Y186787D01*

-X201697Y186162D01*

-X201539Y185504D01*

-X201486Y184829D01*

-X201539Y184154D01*

-X201697Y183496D01*

-X201956Y182871D01*

-X202309Y182294D01*

-X202438Y182143D01*

-Y177515D01*

-X202309Y177364D01*

-X201956Y176787D01*

-X201697Y176162D01*

-X201539Y175504D01*

-X201486Y174829D01*

-X201539Y174154D01*

-X201697Y173496D01*

-X201956Y172871D01*

-X202309Y172294D01*

-X202438Y172143D01*

-Y97000D01*

-G37*

-G36*

-X198438Y378230D02*X198334Y378319D01*

-X197757Y378672D01*

-X197132Y378931D01*

-X196474Y379089D01*

-X195799Y379142D01*

-X195792Y379142D01*

-Y397000D01*

-X198438D01*

-Y378230D01*

-G37*

-G36*

-Y368230D02*X198334Y368319D01*

-X197757Y368672D01*

-X197132Y368931D01*

-X196474Y369089D01*

-X195799Y369142D01*

-X195792Y369142D01*

-Y370516D01*

-X195799Y370516D01*

-X196474Y370569D01*

-X197132Y370727D01*

-X197757Y370986D01*

-X198334Y371339D01*

-X198438Y371428D01*

-Y368230D01*

-G37*

-G36*

-Y316000D02*X198261Y316109D01*

-X197999Y316217D01*

-X197723Y316283D01*

-X197441Y316306D01*

-X197159Y316283D01*

-X196883Y316217D01*

-X196621Y316109D01*

-X196380Y315961D01*

-X196164Y315777D01*

-X195980Y315561D01*

-X195832Y315320D01*

-X195792Y315223D01*

-Y360516D01*

-X195799Y360516D01*

-X196474Y360569D01*

-X197132Y360727D01*

-X197757Y360986D01*

-X198334Y361339D01*

-X198438Y361428D01*

-Y316000D01*

-G37*

-G36*

-Y310000D02*X198261Y310109D01*

-X197999Y310217D01*

-X197723Y310283D01*

-X197441Y310306D01*

-X197159Y310283D01*

-X196883Y310217D01*

-X196621Y310109D01*

-X196380Y309961D01*

-X196164Y309777D01*

-X195980Y309561D01*

-X195832Y309320D01*

-X195792Y309223D01*

-Y309733D01*

-X195999Y309783D01*

-X196261Y309891D01*

-X196502Y310039D01*

-X196718Y310223D01*

-X196902Y310439D01*

-X197050Y310680D01*

-X197158Y310942D01*

-X197224Y311218D01*

-X197241Y311500D01*

-X197224Y311782D01*

-X197158Y312058D01*

-X197050Y312320D01*

-X196902Y312561D01*

-X196718Y312777D01*

-X196502Y312961D01*

-X196261Y313109D01*

-X195999Y313217D01*

-X195792Y313267D01*

-Y313777D01*

-X195832Y313680D01*

-X195980Y313439D01*

-X196164Y313223D01*

-X196380Y313039D01*

-X196621Y312891D01*

-X196883Y312783D01*

-X197159Y312717D01*

-X197441Y312694D01*

-X197723Y312717D01*

-X197999Y312783D01*

-X198261Y312891D01*

-X198438Y313000D01*

-Y310000D01*

-G37*

-G36*

-Y201628D02*X195792Y201624D01*

-Y307777D01*

-X195832Y307680D01*

-X195980Y307439D01*

-X196164Y307223D01*

-X196380Y307039D01*

-X196621Y306891D01*

-X196883Y306783D01*

-X197159Y306717D01*

-X197441Y306694D01*

-X197723Y306717D01*

-X197999Y306783D01*

-X198261Y306891D01*

-X198438Y307000D01*

-Y271305D01*

-X198159Y271283D01*

-X197883Y271217D01*

-X197621Y271109D01*

-X197380Y270961D01*

-X197164Y270777D01*

-X196980Y270561D01*

-X196832Y270320D01*

-X196724Y270058D01*

-X196658Y269782D01*

-X196635Y269500D01*

-X196658Y269218D01*

-X196724Y268942D01*

-X196832Y268680D01*

-X196980Y268439D01*

-X197164Y268223D01*

-X197380Y268039D01*

-X197621Y267891D01*

-X197883Y267783D01*

-X198159Y267717D01*

-X198438Y267695D01*

-Y264305D01*

-X198159Y264283D01*

-X197883Y264217D01*

-X197621Y264109D01*

-X197380Y263961D01*

-X197164Y263777D01*

-X196980Y263561D01*

-X196832Y263320D01*

-X196724Y263058D01*

-X196658Y262782D01*

-X196635Y262500D01*

-X196658Y262218D01*

-X196724Y261942D01*

-X196832Y261680D01*

-X196980Y261439D01*

-X197164Y261223D01*

-X197380Y261039D01*

-X197621Y260891D01*

-X197883Y260783D01*

-X198159Y260717D01*

-X198438Y260695D01*

-Y201628D01*

-G37*

-G36*

-Y188230D02*X198334Y188319D01*

-X197757Y188672D01*

-X197132Y188931D01*

-X196474Y189089D01*

-X195799Y189142D01*

-X195792Y189142D01*

-Y193034D01*

-X198438Y193037D01*

-Y188230D01*

-G37*

-G36*

-Y178230D02*X198334Y178319D01*

-X197757Y178672D01*

-X197132Y178931D01*

-X196474Y179089D01*

-X195799Y179142D01*

-X195792Y179142D01*

-Y180516D01*

-X195799Y180516D01*

-X196474Y180569D01*

-X197132Y180727D01*

-X197757Y180986D01*

-X198334Y181339D01*

-X198438Y181428D01*

-Y178230D01*

-G37*

-G36*

-Y97000D02*X195792D01*

-Y131233D01*

-X195999Y131283D01*

-X196261Y131391D01*

-X196502Y131539D01*

-X196718Y131723D01*

-X196902Y131939D01*

-X197050Y132180D01*

-X197158Y132442D01*

-X197224Y132718D01*

-X197241Y133000D01*

-X197224Y133282D01*

-X197158Y133558D01*

-X197050Y133820D01*

-X196902Y134061D01*

-X196718Y134277D01*

-X196502Y134461D01*

-X196261Y134609D01*

-X195999Y134717D01*

-X195792Y134767D01*

-Y170516D01*

-X195799Y170516D01*

-X196474Y170569D01*

-X197132Y170727D01*

-X197757Y170986D01*

-X198334Y171339D01*

-X198438Y171428D01*

-Y124305D01*

-X198159Y124283D01*

-X197883Y124217D01*

-X197621Y124109D01*

-X197380Y123961D01*

-X197164Y123777D01*

-X196980Y123561D01*

-X196832Y123320D01*

-X196724Y123058D01*

-X196658Y122782D01*

-X196635Y122500D01*

-X196658Y122218D01*

-X196724Y121942D01*

-X196832Y121680D01*

-X196980Y121439D01*

-X197164Y121223D01*

-X197380Y121039D01*

-X197621Y120891D01*

-X197883Y120783D01*

-X198159Y120717D01*

-X198438Y120695D01*

-Y97000D01*

-G37*

-G36*

-X193938Y170946D02*X194466Y170727D01*

-X195124Y170569D01*

-X195792Y170516D01*

-Y134767D01*

-X195723Y134783D01*

-X195441Y134806D01*

-X195159Y134783D01*

-X194883Y134717D01*

-X194621Y134609D01*

-X194380Y134461D01*

-X194164Y134277D01*

-X193980Y134061D01*

-X193938Y133993D01*

-Y170946D01*

-G37*

-G36*

-Y180946D02*X194466Y180727D01*

-X195124Y180569D01*

-X195792Y180516D01*

-Y179142D01*

-X195124Y179089D01*

-X194466Y178931D01*

-X193938Y178712D01*

-Y180946D01*

-G37*

-G36*

-Y193031D02*X195792Y193034D01*

-Y189142D01*

-X195124Y189089D01*

-X194466Y188931D01*

-X193938Y188712D01*

-Y193031D01*

-G37*

-G36*

-Y310507D02*X193980Y310439D01*

-X194164Y310223D01*

-X194380Y310039D01*

-X194621Y309891D01*

-X194883Y309783D01*

-X195159Y309717D01*

-X195441Y309694D01*

-X195723Y309717D01*

-X195792Y309733D01*

-Y309223D01*

-X195724Y309058D01*

-X195658Y308782D01*

-X195635Y308500D01*

-X195658Y308218D01*

-X195724Y307942D01*

-X195792Y307777D01*

-Y201624D01*

-X193938Y201622D01*

-Y210695D01*

-X193941Y210694D01*

-X194223Y210717D01*

-X194499Y210783D01*

-X194761Y210891D01*

-X195002Y211039D01*

-X195218Y211223D01*

-X195402Y211439D01*

-X195550Y211680D01*

-X195658Y211942D01*

-X195724Y212218D01*

-X195741Y212500D01*

-X195724Y212782D01*

-X195658Y213058D01*

-X195550Y213320D01*

-X195402Y213561D01*

-X195218Y213777D01*

-X195002Y213961D01*

-X194761Y214109D01*

-X194499Y214217D01*

-X194223Y214283D01*

-X193941Y214306D01*

-X193938Y214305D01*

-Y235195D01*

-X193941Y235194D01*

-X194223Y235217D01*

-X194499Y235283D01*

-X194761Y235391D01*

-X195002Y235539D01*

-X195218Y235723D01*

-X195402Y235939D01*

-X195550Y236180D01*

-X195658Y236442D01*

-X195724Y236718D01*

-X195741Y237000D01*

-X195724Y237282D01*

-X195658Y237558D01*

-X195550Y237820D01*

-X195402Y238061D01*

-X195218Y238277D01*

-X195002Y238461D01*

-X194761Y238609D01*

-X194499Y238717D01*

-X194223Y238783D01*

-X193941Y238806D01*

-X193938Y238805D01*

-Y310507D01*

-G37*

-G36*

-Y360946D02*X194466Y360727D01*

-X195124Y360569D01*

-X195792Y360516D01*

-Y315223D01*

-X195724Y315058D01*

-X195658Y314782D01*

-X195635Y314500D01*

-X195658Y314218D01*

-X195724Y313942D01*

-X195792Y313777D01*

-Y313267D01*

-X195723Y313283D01*

-X195441Y313306D01*

-X195159Y313283D01*

-X194883Y313217D01*

-X194621Y313109D01*

-X194380Y312961D01*

-X194164Y312777D01*

-X193980Y312561D01*

-X193938Y312493D01*

-Y360946D01*

-G37*

-G36*

-Y370946D02*X194466Y370727D01*

-X195124Y370569D01*

-X195792Y370516D01*

-Y369142D01*

-X195124Y369089D01*

-X194466Y368931D01*

-X193938Y368712D01*

-Y370946D01*

-G37*

-G36*

-Y397000D02*X195792D01*

-Y379142D01*

-X195124Y379089D01*

-X194466Y378931D01*

-X193938Y378712D01*

-Y397000D01*

-G37*

-G36*

-X195792Y97000D02*X193938D01*

-Y125780D01*

-X193948Y125783D01*

-X194210Y125891D01*

-X194451Y126039D01*

-X194667Y126223D01*

-X194851Y126439D01*

-X194999Y126680D01*

-X195107Y126942D01*

-X195173Y127218D01*

-X195190Y127500D01*

-X195173Y127782D01*

-X195107Y128058D01*

-X194999Y128320D01*

-X194851Y128561D01*

-X194667Y128777D01*

-X194451Y128961D01*

-X194210Y129109D01*

-X193948Y129217D01*

-X193938Y129220D01*

-Y132007D01*

-X193980Y131939D01*

-X194164Y131723D01*

-X194380Y131539D01*

-X194621Y131391D01*

-X194883Y131283D01*

-X195159Y131217D01*

-X195441Y131194D01*

-X195723Y131217D01*

-X195792Y131233D01*

-Y97000D01*

-G37*

-G36*

-X193938D02*X191360D01*

-Y342644D01*

-X191363Y342643D01*

-X191645Y342666D01*

-X191921Y342732D01*

-X192183Y342840D01*

-X192424Y342988D01*

-X192640Y343172D01*

-X192824Y343388D01*

-X192972Y343629D01*

-X193080Y343891D01*

-X193146Y344167D01*

-X193163Y344449D01*

-X193146Y344731D01*

-X193080Y345007D01*

-X192972Y345269D01*

-X192824Y345510D01*

-X192640Y345726D01*

-X192424Y345910D01*

-X192183Y346058D01*

-X191921Y346166D01*

-X191645Y346232D01*

-X191363Y346255D01*

-X191360Y346254D01*

-Y397000D01*

-X193938D01*

-Y378712D01*

-X193841Y378672D01*

-X193264Y378319D01*

-X192749Y377879D01*

-X192309Y377364D01*

-X191956Y376787D01*

-X191697Y376162D01*

-X191539Y375504D01*

-X191486Y374829D01*

-X191539Y374154D01*

-X191697Y373496D01*

-X191956Y372871D01*

-X192309Y372294D01*

-X192749Y371779D01*

-X193264Y371339D01*

-X193841Y370986D01*

-X193938Y370946D01*

-Y368712D01*

-X193841Y368672D01*

-X193264Y368319D01*

-X192749Y367879D01*

-X192309Y367364D01*

-X191956Y366787D01*

-X191697Y366162D01*

-X191539Y365504D01*

-X191486Y364829D01*

-X191539Y364154D01*

-X191697Y363496D01*

-X191956Y362871D01*

-X192309Y362294D01*

-X192749Y361779D01*

-X193264Y361339D01*

-X193841Y360986D01*

-X193938Y360946D01*

-Y312493D01*

-X193832Y312320D01*

-X193724Y312058D01*

-X193658Y311782D01*

-X193635Y311500D01*

-X193658Y311218D01*

-X193724Y310942D01*

-X193832Y310680D01*

-X193938Y310507D01*

-Y238805D01*

-X193659Y238783D01*

-X193383Y238717D01*

-X193121Y238609D01*

-X192880Y238461D01*

-X192664Y238277D01*

-X192480Y238061D01*

-X192332Y237820D01*

-X192224Y237558D01*

-X192158Y237282D01*

-X192135Y237000D01*

-X192158Y236718D01*

-X192224Y236442D01*

-X192332Y236180D01*

-X192480Y235939D01*

-X192664Y235723D01*

-X192880Y235539D01*

-X193121Y235391D01*

-X193383Y235283D01*

-X193659Y235217D01*

-X193938Y235195D01*

-Y214305D01*

-X193659Y214283D01*

-X193383Y214217D01*

-X193121Y214109D01*

-X192880Y213961D01*

-X192664Y213777D01*

-X192480Y213561D01*

-X192332Y213320D01*

-X192224Y213058D01*

-X192158Y212782D01*

-X192135Y212500D01*

-X192158Y212218D01*

-X192224Y211942D01*

-X192332Y211680D01*

-X192480Y211439D01*

-X192664Y211223D01*

-X192880Y211039D01*

-X193121Y210891D01*

-X193383Y210783D01*

-X193659Y210717D01*

-X193938Y210695D01*

-Y201622D01*

-X192342Y201620D01*

-X192189Y201583D01*

-X192044Y201523D01*

-X191909Y201441D01*

-X191790Y201338D01*

-X191687Y201219D01*

-X191605Y201084D01*

-X191545Y200939D01*

-X191508Y200786D01*

-X191499Y200629D01*

-X191508Y193872D01*

-X191545Y193719D01*

-X191605Y193574D01*

-X191687Y193439D01*

-X191790Y193320D01*

-X191909Y193217D01*

-X192044Y193135D01*

-X192189Y193075D01*

-X192342Y193038D01*

-X192499Y193029D01*

-X193938Y193031D01*

-Y188712D01*

-X193841Y188672D01*

-X193264Y188319D01*

-X192749Y187879D01*

-X192309Y187364D01*

-X191956Y186787D01*

-X191697Y186162D01*

-X191539Y185504D01*

-X191486Y184829D01*

-X191539Y184154D01*

-X191697Y183496D01*

-X191956Y182871D01*

-X192309Y182294D01*

-X192749Y181779D01*

-X193264Y181339D01*

-X193841Y180986D01*

-X193938Y180946D01*

-Y178712D01*

-X193841Y178672D01*

-X193264Y178319D01*

-X192749Y177879D01*

-X192309Y177364D01*

-X191956Y176787D01*

-X191697Y176162D01*

-X191539Y175504D01*

-X191486Y174829D01*

-X191539Y174154D01*

-X191697Y173496D01*

-X191956Y172871D01*

-X192309Y172294D01*

-X192749Y171779D01*

-X193264Y171339D01*

-X193841Y170986D01*

-X193938Y170946D01*

-Y133993D01*

-X193832Y133820D01*

-X193724Y133558D01*

-X193658Y133282D01*

-X193635Y133000D01*

-X193658Y132718D01*

-X193724Y132442D01*

-X193832Y132180D01*

-X193938Y132007D01*

-Y129220D01*

-X193672Y129283D01*

-X193390Y129306D01*

-X193108Y129283D01*

-X192832Y129217D01*

-X192570Y129109D01*

-X192329Y128961D01*

-X192113Y128777D01*

-X191929Y128561D01*

-X191781Y128320D01*

-X191673Y128058D01*

-X191607Y127782D01*

-X191584Y127500D01*

-X191607Y127218D01*

-X191673Y126942D01*

-X191781Y126680D01*

-X191929Y126439D01*

-X192113Y126223D01*

-X192329Y126039D01*

-X192570Y125891D01*

-X192832Y125783D01*

-X193108Y125717D01*

-X193390Y125694D01*

-X193672Y125717D01*

-X193938Y125780D01*

-Y97000D01*

-G37*

-G36*

-X191360D02*X185792D01*

-Y170516D01*

-X185799Y170516D01*

-X186474Y170569D01*

-X187132Y170727D01*

-X187757Y170986D01*

-X188334Y171339D01*

-X188849Y171779D01*

-X189289Y172294D01*

-X189642Y172871D01*

-X189901Y173496D01*

-X190059Y174154D01*

-X190099Y174829D01*

-X190059Y175504D01*

-X189901Y176162D01*

-X189642Y176787D01*

-X189289Y177364D01*

-X188849Y177879D01*

-X188334Y178319D01*

-X187757Y178672D01*

-X187132Y178931D01*

-X186474Y179089D01*

-X185799Y179142D01*

-X185792Y179142D01*

-Y180516D01*

-X185799Y180516D01*

-X186474Y180569D01*

-X187132Y180727D01*

-X187757Y180986D01*

-X188334Y181339D01*

-X188849Y181779D01*

-X189289Y182294D01*

-X189642Y182871D01*

-X189901Y183496D01*

-X190059Y184154D01*

-X190099Y184829D01*

-X190059Y185504D01*

-X189901Y186162D01*

-X189642Y186787D01*

-X189289Y187364D01*

-X188849Y187879D01*

-X188334Y188319D01*

-X187757Y188672D01*

-X187132Y188931D01*

-X186474Y189089D01*

-X185799Y189142D01*

-X185792Y189142D01*

-Y215733D01*

-X185999Y215783D01*

-X186261Y215891D01*

-X186502Y216039D01*

-X186718Y216223D01*

-X186902Y216439D01*

-X187050Y216680D01*

-X187158Y216942D01*

-X187224Y217218D01*

-X187241Y217500D01*

-X187224Y217782D01*

-X187158Y218058D01*

-X187050Y218320D01*

-X186902Y218561D01*

-X186718Y218777D01*

-X186502Y218961D01*

-X186261Y219109D01*

-X185999Y219217D01*

-X185792Y219267D01*

-Y226233D01*

-X185999Y226283D01*

-X186261Y226391D01*

-X186502Y226539D01*

-X186718Y226723D01*

-X186902Y226939D01*

-X187050Y227180D01*

-X187158Y227442D01*

-X187224Y227718D01*

-X187241Y228000D01*

-X187224Y228282D01*

-X187158Y228558D01*

-X187050Y228820D01*

-X186902Y229061D01*

-X186718Y229277D01*

-X186502Y229461D01*

-X186261Y229609D01*

-X185999Y229717D01*

-X185792Y229767D01*

-Y360516D01*

-X185799Y360516D01*

-X186474Y360569D01*

-X187132Y360727D01*

-X187757Y360986D01*

-X188334Y361339D01*

-X188849Y361779D01*

-X189289Y362294D01*

-X189642Y362871D01*

-X189901Y363496D01*

-X190059Y364154D01*

-X190099Y364829D01*

-X190059Y365504D01*

-X189901Y366162D01*

-X189642Y366787D01*

-X189289Y367364D01*

-X188849Y367879D01*

-X188334Y368319D01*

-X187757Y368672D01*

-X187132Y368931D01*

-X186474Y369089D01*

-X185799Y369142D01*

-X185792Y369142D01*

-Y370516D01*

-X185799Y370516D01*

-X186474Y370569D01*

-X187132Y370727D01*

-X187757Y370986D01*

-X188334Y371339D01*

-X188849Y371779D01*

-X189289Y372294D01*

-X189642Y372871D01*

-X189901Y373496D01*

-X190059Y374154D01*

-X190099Y374829D01*

-X190059Y375504D01*

-X189901Y376162D01*

-X189642Y376787D01*

-X189289Y377364D01*

-X188849Y377879D01*

-X188334Y378319D01*

-X187757Y378672D01*

-X187132Y378931D01*

-X186474Y379089D01*

-X185799Y379142D01*

-X185792Y379142D01*

-Y397000D01*

-X191360D01*

-Y346254D01*

-X191081Y346232D01*

-X190805Y346166D01*

-X190543Y346058D01*

-X190302Y345910D01*

-X190086Y345726D01*

-X189902Y345510D01*

-X189754Y345269D01*

-X189646Y345007D01*

-X189580Y344731D01*

-X189557Y344449D01*

-X189580Y344167D01*

-X189646Y343891D01*

-X189754Y343629D01*

-X189902Y343388D01*

-X190086Y343172D01*

-X190302Y342988D01*

-X190543Y342840D01*

-X190805Y342732D01*

-X191081Y342666D01*

-X191360Y342644D01*

-Y97000D01*

-G37*

-G36*

-X181938Y182913D02*X181956Y182871D01*

-X182309Y182294D01*

-X182749Y181779D01*

-X183264Y181339D01*

-X183841Y180986D01*

-X184466Y180727D01*

-X185124Y180569D01*

-X185792Y180516D01*

-Y179142D01*

-X185124Y179089D01*

-X184466Y178931D01*

-X183841Y178672D01*

-X183264Y178319D01*

-X182749Y177879D01*

-X182309Y177364D01*

-X181956Y176787D01*

-X181938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y362913D02*X181956Y362871D01*

-X182309Y362294D01*

-X182749Y361779D01*

-X183264Y361339D01*

-X183841Y360986D01*

-X184466Y360727D01*

-X185124Y360569D01*

-X185792Y360516D01*

-Y229767D01*

-X185723Y229783D01*

-X185441Y229806D01*

-X185159Y229783D01*

-X184883Y229717D01*

-X184621Y229609D01*

-X184380Y229461D01*

-X184164Y229277D01*

-X183980Y229061D01*

-X183832Y228820D01*

-X183724Y228558D01*

-X183658Y228282D01*

-X183635Y228000D01*

-X183658Y227718D01*

-X183724Y227442D01*

-X183832Y227180D01*

-X183980Y226939D01*

-X184164Y226723D01*

-X184380Y226539D01*

-X184621Y226391D01*

-X184883Y226283D01*

-X185159Y226217D01*

-X185441Y226194D01*

-X185723Y226217D01*

-X185792Y226233D01*

-Y219267D01*

-X185723Y219283D01*

-X185441Y219306D01*

-X185159Y219283D01*

-X184883Y219217D01*

-X184621Y219109D01*

-X184380Y218961D01*

-X184164Y218777D01*

-X183980Y218561D01*

-X183832Y218320D01*

-X183724Y218058D01*

-X183658Y217782D01*

-X183635Y217500D01*

-X183658Y217218D01*

-X183724Y216942D01*

-X183832Y216680D01*

-X183980Y216439D01*

-X184164Y216223D01*

-X184380Y216039D01*

-X184621Y215891D01*

-X184883Y215783D01*

-X185159Y215717D01*

-X185441Y215694D01*

-X185723Y215717D01*

-X185792Y215733D01*

-Y189142D01*

-X185124Y189089D01*

-X184466Y188931D01*

-X183841Y188672D01*

-X183264Y188319D01*

-X182749Y187879D01*

-X182309Y187364D01*

-X181956Y186787D01*

-X181938Y186745D01*

-Y256695D01*

-X181941Y256694D01*

-X182223Y256717D01*

-X182499Y256783D01*

-X182761Y256891D01*

-X183002Y257039D01*

-X183218Y257223D01*

-X183402Y257439D01*

-X183550Y257680D01*

-X183658Y257942D01*

-X183724Y258218D01*

-X183741Y258500D01*

-X183724Y258782D01*

-X183658Y259058D01*

-X183550Y259320D01*

-X183402Y259561D01*

-X183218Y259777D01*

-X183002Y259961D01*

-X182761Y260109D01*

-X182499Y260217D01*

-X182223Y260283D01*

-X181941Y260306D01*

-X181938Y260305D01*

-Y362913D01*

-G37*

-G36*

-Y372913D02*X181956Y372871D01*

-X182309Y372294D01*

-X182749Y371779D01*

-X183264Y371339D01*

-X183841Y370986D01*

-X184466Y370727D01*

-X185124Y370569D01*

-X185792Y370516D01*

-Y369142D01*

-X185124Y369089D01*

-X184466Y368931D01*

-X183841Y368672D01*

-X183264Y368319D01*

-X182749Y367879D01*

-X182309Y367364D01*

-X181956Y366787D01*

-X181938Y366745D01*

-Y372913D01*

-G37*

-G36*

-Y397000D02*X185792D01*

-Y379142D01*

-X185124Y379089D01*

-X184466Y378931D01*

-X183841Y378672D01*

-X183264Y378319D01*

-X182749Y377879D01*

-X182309Y377364D01*

-X181956Y376787D01*

-X181938Y376745D01*

-Y397000D01*

-G37*

-G36*

-X185792Y97000D02*X183938D01*

-Y102195D01*

-X183941Y102194D01*

-X184223Y102217D01*

-X184499Y102283D01*

-X184761Y102391D01*

-X185002Y102539D01*

-X185218Y102723D01*

-X185402Y102939D01*

-X185550Y103180D01*

-X185658Y103442D01*

-X185724Y103718D01*

-X185741Y104000D01*

-X185724Y104282D01*

-X185658Y104558D01*

-X185550Y104820D01*

-X185402Y105061D01*

-X185218Y105277D01*

-X185002Y105461D01*

-X184761Y105609D01*

-X184499Y105717D01*

-X184223Y105783D01*

-X183941Y105806D01*

-X183938Y105805D01*

-Y170946D01*

-X184466Y170727D01*

-X185124Y170569D01*

-X185792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X183938D02*X181938D01*

-Y172913D01*

-X181956Y172871D01*

-X182309Y172294D01*

-X182749Y171779D01*

-X183264Y171339D01*

-X183841Y170986D01*

-X183938Y170946D01*

-Y105805D01*

-X183659Y105783D01*

-X183383Y105717D01*

-X183121Y105609D01*

-X182880Y105461D01*

-X182664Y105277D01*

-X182480Y105061D01*

-X182332Y104820D01*

-X182224Y104558D01*

-X182158Y104282D01*

-X182135Y104000D01*

-X182158Y103718D01*

-X182224Y103442D01*

-X182332Y103180D01*

-X182480Y102939D01*

-X182664Y102723D01*

-X182880Y102539D01*

-X183121Y102391D01*

-X183383Y102283D01*

-X183659Y102217D01*

-X183938Y102195D01*

-Y97000D01*

-G37*

-G36*

-X181938D02*X178884D01*

-Y171820D01*

-X179289Y172294D01*

-X179642Y172871D01*

-X179901Y173496D01*

-X180059Y174154D01*

-X180099Y174829D01*

-X180059Y175504D01*

-X179901Y176162D01*

-X179642Y176787D01*

-X179289Y177364D01*

-X178884Y177838D01*

-Y181820D01*

-X179289Y182294D01*

-X179642Y182871D01*

-X179901Y183496D01*

-X180059Y184154D01*

-X180099Y184829D01*

-X180059Y185504D01*

-X179901Y186162D01*

-X179642Y186787D01*

-X179289Y187364D01*

-X178884Y187838D01*

-Y216418D01*

-X178902Y216439D01*

-X179050Y216680D01*

-X179158Y216942D01*

-X179224Y217218D01*

-X179241Y217500D01*

-X179224Y217782D01*

-X179158Y218058D01*

-X179050Y218320D01*

-X178902Y218561D01*

-X178884Y218582D01*

-Y226918D01*

-X178902Y226939D01*

-X179050Y227180D01*

-X179158Y227442D01*

-X179224Y227718D01*

-X179241Y228000D01*

-X179224Y228282D01*

-X179158Y228558D01*

-X179050Y228820D01*

-X178902Y229061D01*

-X178884Y229082D01*

-Y341013D01*

-X178887Y341012D01*

-X179169Y341035D01*

-X179445Y341101D01*

-X179707Y341209D01*

-X179948Y341357D01*

-X180164Y341541D01*

-X180348Y341757D01*

-X180496Y341998D01*

-X180604Y342260D01*

-X180670Y342536D01*

-X180687Y342818D01*

-X180670Y343100D01*

-X180604Y343376D01*

-X180496Y343638D01*

-X180348Y343879D01*

-X180164Y344095D01*

-X179948Y344279D01*

-X179707Y344427D01*

-X179445Y344535D01*

-X179169Y344601D01*

-X178887Y344624D01*

-X178884Y344623D01*

-Y361820D01*

-X179289Y362294D01*

-X179642Y362871D01*

-X179901Y363496D01*

-X180059Y364154D01*

-X180099Y364829D01*

-X180059Y365504D01*

-X179901Y366162D01*

-X179642Y366787D01*

-X179289Y367364D01*

-X178884Y367838D01*

-Y371820D01*

-X179289Y372294D01*

-X179642Y372871D01*

-X179901Y373496D01*

-X180059Y374154D01*

-X180099Y374829D01*

-X180059Y375504D01*

-X179901Y376162D01*

-X179642Y376787D01*

-X179289Y377364D01*

-X178884Y377838D01*

-Y397000D01*

-X181938D01*

-Y376745D01*

-X181697Y376162D01*

-X181539Y375504D01*

-X181486Y374829D01*

-X181539Y374154D01*

-X181697Y373496D01*

-X181938Y372913D01*

-Y366745D01*

-X181697Y366162D01*

-X181539Y365504D01*

-X181486Y364829D01*

-X181539Y364154D01*

-X181697Y363496D01*

-X181938Y362913D01*

-Y260305D01*

-X181659Y260283D01*

-X181383Y260217D01*

-X181121Y260109D01*

-X180880Y259961D01*

-X180664Y259777D01*

-X180480Y259561D01*

-X180332Y259320D01*

-X180224Y259058D01*

-X180158Y258782D01*

-X180135Y258500D01*

-X180158Y258218D01*

-X180224Y257942D01*

-X180332Y257680D01*

-X180480Y257439D01*

-X180664Y257223D01*

-X180880Y257039D01*

-X181121Y256891D01*

-X181383Y256783D01*

-X181659Y256717D01*

-X181938Y256695D01*

-Y186745D01*

-X181697Y186162D01*

-X181539Y185504D01*

-X181486Y184829D01*

-X181539Y184154D01*

-X181697Y183496D01*

-X181938Y182913D01*

-Y176745D01*

-X181697Y176162D01*

-X181539Y175504D01*

-X181486Y174829D01*

-X181539Y174154D01*

-X181697Y173496D01*

-X181938Y172913D01*

-Y97000D01*

-G37*

-G36*

-X178884Y377838D02*X178849Y377879D01*

-X178334Y378319D01*

-X177757Y378672D01*

-X177132Y378931D01*

-X176474Y379089D01*

-X175799Y379142D01*

-X175792Y379142D01*

-Y397000D01*

-X178884D01*

-Y377838D01*

-G37*

-G36*

-Y367838D02*X178849Y367879D01*

-X178334Y368319D01*

-X177757Y368672D01*

-X177132Y368931D01*

-X176474Y369089D01*

-X175799Y369142D01*

-X175792Y369142D01*

-Y370516D01*

-X175799Y370516D01*

-X176474Y370569D01*

-X177132Y370727D01*

-X177757Y370986D01*

-X178334Y371339D01*

-X178849Y371779D01*

-X178884Y371820D01*

-Y367838D01*

-G37*

-G36*

-Y229082D02*X178718Y229277D01*

-X178502Y229461D01*

-X178261Y229609D01*

-X177999Y229717D01*

-X177723Y229783D01*

-X177441Y229806D01*

-X177159Y229783D01*

-X176883Y229717D01*

-X176621Y229609D01*

-X176380Y229461D01*

-X176164Y229277D01*

-X175980Y229061D01*

-X175832Y228820D01*

-X175792Y228723D01*

-Y360516D01*

-X175799Y360516D01*

-X176474Y360569D01*

-X177132Y360727D01*

-X177757Y360986D01*

-X178334Y361339D01*

-X178849Y361779D01*

-X178884Y361820D01*

-Y344623D01*

-X178605Y344601D01*

-X178329Y344535D01*

-X178067Y344427D01*

-X177826Y344279D01*

-X177610Y344095D01*

-X177426Y343879D01*

-X177278Y343638D01*

-X177170Y343376D01*

-X177104Y343100D01*

-X177081Y342818D01*

-X177104Y342536D01*

-X177170Y342260D01*

-X177278Y341998D01*

-X177426Y341757D01*

-X177610Y341541D01*

-X177826Y341357D01*

-X178067Y341209D01*

-X178329Y341101D01*

-X178605Y341035D01*

-X178884Y341013D01*

-Y229082D01*

-G37*

-G36*

-Y218582D02*X178718Y218777D01*

-X178502Y218961D01*

-X178261Y219109D01*

-X177999Y219217D01*

-X177723Y219283D01*

-X177441Y219306D01*

-X177159Y219283D01*

-X176883Y219217D01*

-X176621Y219109D01*

-X176380Y218961D01*

-X176164Y218777D01*

-X175980Y218561D01*

-X175832Y218320D01*

-X175792Y218223D01*

-Y227277D01*

-X175832Y227180D01*

-X175980Y226939D01*

-X176164Y226723D01*

-X176380Y226539D01*

-X176621Y226391D01*

-X176883Y226283D01*

-X177159Y226217D01*

-X177441Y226194D01*

-X177723Y226217D01*

-X177999Y226283D01*

-X178261Y226391D01*

-X178502Y226539D01*

-X178718Y226723D01*

-X178884Y226918D01*

-Y218582D01*

-G37*

-G36*

-Y187838D02*X178849Y187879D01*

-X178334Y188319D01*

-X177757Y188672D01*

-X177132Y188931D01*

-X176474Y189089D01*

-X175799Y189142D01*

-X175792Y189142D01*

-Y216777D01*

-X175832Y216680D01*

-X175980Y216439D01*

-X176164Y216223D01*

-X176380Y216039D01*

-X176621Y215891D01*

-X176883Y215783D01*

-X177159Y215717D01*

-X177441Y215694D01*

-X177723Y215717D01*

-X177999Y215783D01*

-X178261Y215891D01*

-X178502Y216039D01*

-X178718Y216223D01*

-X178884Y216418D01*

-Y187838D01*

-G37*

-G36*

-Y177838D02*X178849Y177879D01*

-X178334Y178319D01*

-X177757Y178672D01*

-X177132Y178931D01*

-X176474Y179089D01*

-X175799Y179142D01*

-X175792Y179142D01*

-Y180516D01*

-X175799Y180516D01*

-X176474Y180569D01*

-X177132Y180727D01*

-X177757Y180986D01*

-X178334Y181339D01*

-X178849Y181779D01*

-X178884Y181820D01*

-Y177838D01*

-G37*

-G36*

-Y97000D02*X175792D01*

-Y170516D01*

-X175799Y170516D01*

-X176474Y170569D01*

-X177132Y170727D01*

-X177757Y170986D01*

-X178334Y171339D01*

-X178849Y171779D01*

-X178884Y171820D01*

-Y97000D01*

-G37*

-G36*

-X175792D02*X168729D01*

-Y171677D01*

-X168849Y171779D01*

-X169289Y172294D01*

-X169642Y172871D01*

-X169901Y173496D01*

-X170059Y174154D01*

-X170099Y174829D01*

-X170059Y175504D01*

-X169901Y176162D01*

-X169642Y176787D01*

-X169289Y177364D01*

-X168849Y177879D01*

-X168729Y177981D01*

-Y181677D01*

-X168849Y181779D01*

-X169289Y182294D01*

-X169642Y182871D01*

-X169901Y183496D01*

-X170059Y184154D01*

-X170099Y184829D01*

-X170059Y185504D01*

-X169901Y186162D01*

-X169642Y186787D01*

-X169289Y187364D01*

-X168849Y187879D01*

-X168729Y187981D01*

-Y192801D01*

-X168741Y193000D01*

-X168729Y193199D01*

-Y197301D01*

-X168741Y197500D01*

-X168729Y197699D01*

-Y199847D01*

-X168883Y199783D01*

-X169159Y199717D01*

-X169441Y199694D01*

-X169723Y199717D01*

-X169999Y199783D01*

-X170261Y199891D01*

-X170502Y200039D01*

-X170718Y200223D01*

-X170902Y200439D01*

-X171050Y200680D01*

-X171158Y200942D01*

-X171224Y201218D01*

-X171241Y201500D01*

-X171224Y201782D01*

-X171158Y202058D01*

-X171050Y202320D01*

-X170902Y202561D01*

-X170718Y202777D01*

-X170502Y202961D01*

-X170261Y203109D01*

-X169999Y203217D01*

-X169723Y203283D01*

-X169441Y203306D01*

-X169159Y203283D01*

-X168883Y203217D01*

-X168729Y203153D01*

-Y206847D01*

-X168883Y206783D01*

-X169159Y206717D01*

-X169441Y206694D01*

-X169723Y206717D01*

-X169999Y206783D01*

-X170261Y206891D01*

-X170502Y207039D01*

-X170718Y207223D01*

-X170902Y207439D01*

-X171050Y207680D01*

-X171158Y207942D01*

-X171224Y208218D01*

-X171241Y208500D01*

-X171224Y208782D01*

-X171158Y209058D01*

-X171050Y209320D01*

-X170902Y209561D01*

-X170718Y209777D01*

-X170502Y209961D01*

-X170261Y210109D01*

-X169999Y210217D01*

-X169723Y210283D01*

-X169441Y210306D01*

-X169159Y210283D01*

-X168883Y210217D01*

-X168729Y210153D01*

-Y212347D01*

-X168883Y212283D01*

-X169159Y212217D01*

-X169441Y212194D01*

-X169723Y212217D01*

-X169999Y212283D01*

-X170261Y212391D01*

-X170502Y212539D01*

-X170718Y212723D01*

-X170902Y212939D01*

-X171050Y213180D01*

-X171158Y213442D01*

-X171224Y213718D01*

-X171241Y214000D01*

-X171224Y214282D01*

-X171158Y214558D01*

-X171050Y214820D01*

-X170902Y215061D01*

-X170718Y215277D01*

-X170502Y215461D01*

-X170261Y215609D01*

-X169999Y215717D01*

-X169723Y215783D01*

-X169441Y215806D01*

-X169159Y215783D01*

-X168883Y215717D01*

-X168729Y215653D01*

-Y349028D01*

-X168732Y349027D01*

-X169014Y349050D01*

-X169290Y349116D01*

-X169552Y349224D01*

-X169793Y349372D01*

-X170009Y349556D01*

-X170193Y349772D01*

-X170341Y350013D01*

-X170449Y350275D01*

-X170515Y350551D01*

-X170532Y350833D01*

-X170515Y351115D01*

-X170449Y351391D01*

-X170341Y351653D01*

-X170193Y351894D01*

-X170009Y352110D01*

-X169793Y352294D01*

-X169552Y352442D01*

-X169290Y352550D01*

-X169014Y352616D01*

-X168732Y352639D01*

-X168729Y352638D01*

-Y361677D01*

-X168849Y361779D01*

-X169289Y362294D01*

-X169642Y362871D01*

-X169901Y363496D01*

-X170059Y364154D01*

-X170099Y364829D01*

-X170059Y365504D01*

-X169901Y366162D01*

-X169642Y366787D01*

-X169289Y367364D01*

-X168849Y367879D01*

-X168729Y367981D01*

-Y371677D01*

-X168849Y371779D01*

-X169289Y372294D01*

-X169642Y372871D01*

-X169901Y373496D01*

-X170059Y374154D01*

-X170099Y374829D01*

-X170059Y375504D01*

-X169901Y376162D01*

-X169642Y376787D01*

-X169289Y377364D01*

-X168849Y377879D01*

-X168729Y377981D01*

-Y397000D01*

-X175792D01*

-Y379142D01*

-X175124Y379089D01*

-X174466Y378931D01*

-X173841Y378672D01*

-X173264Y378319D01*

-X172749Y377879D01*

-X172309Y377364D01*

-X171956Y376787D01*

-X171697Y376162D01*

-X171539Y375504D01*

-X171486Y374829D01*

-X171539Y374154D01*

-X171697Y373496D01*

-X171956Y372871D01*

-X172309Y372294D01*

-X172749Y371779D01*

-X173264Y371339D01*

-X173841Y370986D01*

-X174466Y370727D01*

-X175124Y370569D01*

-X175792Y370516D01*

-Y369142D01*

-X175124Y369089D01*

-X174466Y368931D01*

-X173841Y368672D01*

-X173264Y368319D01*

-X172749Y367879D01*

-X172309Y367364D01*

-X171956Y366787D01*

-X171697Y366162D01*

-X171539Y365504D01*

-X171486Y364829D01*

-X171539Y364154D01*

-X171697Y363496D01*

-X171956Y362871D01*

-X172309Y362294D01*

-X172749Y361779D01*

-X173264Y361339D01*

-X173841Y360986D01*

-X174466Y360727D01*

-X175124Y360569D01*

-X175792Y360516D01*

-Y228723D01*

-X175724Y228558D01*

-X175658Y228282D01*

-X175635Y228000D01*

-X175658Y227718D01*

-X175724Y227442D01*

-X175792Y227277D01*

-Y218223D01*

-X175724Y218058D01*

-X175658Y217782D01*

-X175635Y217500D01*

-X175658Y217218D01*

-X175724Y216942D01*

-X175792Y216777D01*

-Y189142D01*

-X175124Y189089D01*

-X174466Y188931D01*

-X173841Y188672D01*

-X173264Y188319D01*

-X172749Y187879D01*

-X172309Y187364D01*

-X171956Y186787D01*

-X171697Y186162D01*

-X171539Y185504D01*

-X171486Y184829D01*

-X171539Y184154D01*

-X171697Y183496D01*

-X171956Y182871D01*

-X172309Y182294D01*

-X172749Y181779D01*

-X173264Y181339D01*

-X173841Y180986D01*

-X174466Y180727D01*

-X175124Y180569D01*

-X175792Y180516D01*

-Y179142D01*

-X175124Y179089D01*

-X174466Y178931D01*

-X173841Y178672D01*

-X173264Y178319D01*

-X172749Y177879D01*

-X172309Y177364D01*

-X171956Y176787D01*

-X171697Y176162D01*

-X171539Y175504D01*

-X171486Y174829D01*

-X171539Y174154D01*

-X171697Y173496D01*

-X171956Y172871D01*

-X172309Y172294D01*

-X172749Y171779D01*

-X173264Y171339D01*

-X173841Y170986D01*

-X174466Y170727D01*

-X175124Y170569D01*

-X175792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X168729Y377981D02*X168334Y378319D01*

-X167757Y378672D01*

-X167132Y378931D01*

-X166474Y379089D01*

-X165799Y379142D01*

-X165792Y379142D01*

-Y397000D01*

-X168729D01*

-Y377981D01*

-G37*

-G36*

-Y367981D02*X168334Y368319D01*

-X167757Y368672D01*

-X167132Y368931D01*

-X166474Y369089D01*

-X165799Y369142D01*

-X165792Y369142D01*

-Y370516D01*

-X165799Y370516D01*

-X166474Y370569D01*

-X167132Y370727D01*

-X167757Y370986D01*

-X168334Y371339D01*

-X168729Y371677D01*

-Y367981D01*

-G37*

-G36*

-Y197699D02*X168724Y197782D01*

-X168658Y198058D01*

-X168550Y198320D01*

-X168402Y198561D01*

-X168218Y198777D01*

-X168002Y198961D01*

-X167761Y199109D01*

-X167499Y199217D01*

-X167223Y199283D01*

-X166941Y199306D01*

-X166659Y199283D01*

-X166383Y199217D01*

-X166121Y199109D01*

-X165880Y198961D01*

-X165792Y198886D01*

-Y218706D01*

-X165941Y218694D01*

-X166223Y218717D01*

-X166499Y218783D01*

-X166761Y218891D01*

-X167002Y219039D01*

-X167218Y219223D01*

-X167402Y219439D01*

-X167550Y219680D01*

-X167658Y219942D01*

-X167724Y220218D01*

-X167741Y220500D01*

-X167724Y220782D01*

-X167658Y221058D01*

-X167550Y221320D01*

-X167402Y221561D01*

-X167218Y221777D01*

-X167002Y221961D01*

-X166761Y222109D01*

-X166499Y222217D01*

-X166223Y222283D01*

-X165941Y222306D01*

-X165792Y222294D01*

-Y224706D01*

-X165941Y224694D01*

-X166223Y224717D01*

-X166499Y224783D01*

-X166761Y224891D01*

-X167002Y225039D01*

-X167218Y225223D01*

-X167402Y225439D01*

-X167550Y225680D01*

-X167658Y225942D01*

-X167724Y226218D01*

-X167741Y226500D01*

-X167724Y226782D01*

-X167658Y227058D01*

-X167550Y227320D01*

-X167402Y227561D01*

-X167218Y227777D01*

-X167002Y227961D01*

-X166761Y228109D01*

-X166499Y228217D01*

-X166223Y228283D01*

-X165941Y228306D01*

-X165792Y228294D01*

-Y229206D01*

-X165941Y229194D01*

-X166223Y229217D01*

-X166499Y229283D01*

-X166761Y229391D01*

-X167002Y229539D01*

-X167218Y229723D01*

-X167402Y229939D01*

-X167550Y230180D01*

-X167658Y230442D01*

-X167724Y230718D01*

-X167741Y231000D01*

-X167724Y231282D01*

-X167658Y231558D01*

-X167550Y231820D01*

-X167402Y232061D01*

-X167218Y232277D01*

-X167002Y232461D01*

-X166761Y232609D01*

-X166499Y232717D01*

-X166223Y232783D01*

-X165941Y232806D01*

-X165792Y232794D01*

-Y360516D01*

-X165799Y360516D01*

-X166474Y360569D01*

-X167132Y360727D01*

-X167757Y360986D01*

-X168334Y361339D01*

-X168729Y361677D01*

-Y352638D01*

-X168450Y352616D01*

-X168174Y352550D01*

-X167912Y352442D01*

-X167671Y352294D01*

-X167455Y352110D01*

-X167271Y351894D01*

-X167123Y351653D01*

-X167015Y351391D01*

-X166949Y351115D01*

-X166926Y350833D01*

-X166949Y350551D01*

-X167015Y350275D01*

-X167123Y350013D01*

-X167271Y349772D01*

-X167455Y349556D01*

-X167671Y349372D01*

-X167912Y349224D01*

-X168174Y349116D01*

-X168450Y349050D01*

-X168729Y349028D01*

-Y215653D01*

-X168621Y215609D01*

-X168380Y215461D01*

-X168164Y215277D01*

-X167980Y215061D01*

-X167832Y214820D01*

-X167724Y214558D01*

-X167658Y214282D01*

-X167635Y214000D01*

-X167658Y213718D01*

-X167724Y213442D01*

-X167832Y213180D01*

-X167980Y212939D01*

-X168164Y212723D01*

-X168380Y212539D01*

-X168621Y212391D01*

-X168729Y212347D01*

-Y210153D01*

-X168621Y210109D01*

-X168380Y209961D01*

-X168164Y209777D01*

-X167980Y209561D01*

-X167832Y209320D01*

-X167724Y209058D01*

-X167658Y208782D01*

-X167635Y208500D01*

-X167658Y208218D01*

-X167724Y207942D01*

-X167832Y207680D01*

-X167980Y207439D01*

-X168164Y207223D01*

-X168380Y207039D01*

-X168621Y206891D01*

-X168729Y206847D01*

-Y203153D01*

-X168621Y203109D01*

-X168380Y202961D01*

-X168164Y202777D01*

-X167980Y202561D01*

-X167832Y202320D01*

-X167724Y202058D01*

-X167658Y201782D01*

-X167635Y201500D01*

-X167658Y201218D01*

-X167724Y200942D01*

-X167832Y200680D01*

-X167980Y200439D01*

-X168164Y200223D01*

-X168380Y200039D01*

-X168621Y199891D01*

-X168729Y199847D01*

-Y197699D01*

-G37*

-G36*

-Y193199D02*X168724Y193282D01*

-X168658Y193558D01*

-X168550Y193820D01*

-X168402Y194061D01*

-X168218Y194277D01*

-X168002Y194461D01*

-X167761Y194609D01*

-X167499Y194717D01*

-X167223Y194783D01*

-X166941Y194806D01*

-X166659Y194783D01*

-X166383Y194717D01*

-X166121Y194609D01*

-X165880Y194461D01*

-X165792Y194386D01*

-Y196114D01*

-X165880Y196039D01*

-X166121Y195891D01*

-X166383Y195783D01*

-X166659Y195717D01*

-X166941Y195694D01*

-X167223Y195717D01*

-X167499Y195783D01*

-X167761Y195891D01*

-X168002Y196039D01*

-X168218Y196223D01*

-X168402Y196439D01*

-X168550Y196680D01*

-X168658Y196942D01*

-X168724Y197218D01*

-X168729Y197301D01*

-Y193199D01*

-G37*

-G36*

-Y187981D02*X168334Y188319D01*

-X167757Y188672D01*

-X167132Y188931D01*

-X166474Y189089D01*

-X165799Y189142D01*

-X165792Y189142D01*

-Y191614D01*

-X165880Y191539D01*

-X166121Y191391D01*

-X166383Y191283D01*

-X166659Y191217D01*

-X166941Y191194D01*

-X167223Y191217D01*

-X167499Y191283D01*

-X167761Y191391D01*

-X168002Y191539D01*

-X168218Y191723D01*

-X168402Y191939D01*

-X168550Y192180D01*

-X168658Y192442D01*

-X168724Y192718D01*

-X168729Y192801D01*

-Y187981D01*

-G37*

-G36*

-Y177981D02*X168334Y178319D01*

-X167757Y178672D01*

-X167132Y178931D01*

-X166474Y179089D01*

-X165799Y179142D01*

-X165792Y179142D01*

-Y180516D01*

-X165799Y180516D01*

-X166474Y180569D01*

-X167132Y180727D01*

-X167757Y180986D01*

-X168334Y181339D01*

-X168729Y181677D01*

-Y177981D01*

-G37*

-G36*

-Y97000D02*X165792D01*

-Y102320D01*

-X165883Y102283D01*

-X166159Y102217D01*

-X166441Y102194D01*

-X166723Y102217D01*

-X166999Y102283D01*

-X167261Y102391D01*

-X167502Y102539D01*

-X167718Y102723D01*

-X167902Y102939D01*

-X168050Y103180D01*

-X168158Y103442D01*

-X168224Y103718D01*

-X168241Y104000D01*

-X168224Y104282D01*

-X168158Y104558D01*

-X168050Y104820D01*

-X167902Y105061D01*

-X167718Y105277D01*

-X167502Y105461D01*

-X167261Y105609D01*

-X166999Y105717D01*

-X166723Y105783D01*

-X166441Y105806D01*

-X166159Y105783D01*

-X165883Y105717D01*

-X165792Y105680D01*

-Y170516D01*

-X165799Y170516D01*

-X166474Y170569D01*

-X167132Y170727D01*

-X167757Y170986D01*

-X168334Y171339D01*

-X168729Y171677D01*

-Y97000D01*

-G37*

-G36*

-X161938Y182913D02*X161956Y182871D01*

-X162309Y182294D01*

-X162749Y181779D01*

-X163264Y181339D01*

-X163841Y180986D01*

-X164466Y180727D01*

-X165124Y180569D01*

-X165792Y180516D01*

-Y179142D01*

-X165124Y179089D01*

-X164466Y178931D01*

-X163841Y178672D01*

-X163264Y178319D01*

-X162749Y177879D01*

-X162309Y177364D01*

-X161956Y176787D01*

-X161938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y362913D02*X161956Y362871D01*

-X162309Y362294D01*

-X162749Y361779D01*

-X163264Y361339D01*

-X163841Y360986D01*

-X164466Y360727D01*

-X165124Y360569D01*

-X165792Y360516D01*

-Y232794D01*

-X165659Y232783D01*

-X165383Y232717D01*

-X165121Y232609D01*

-X164880Y232461D01*

-X164664Y232277D01*

-X164480Y232061D01*

-X164332Y231820D01*

-X164224Y231558D01*

-X164158Y231282D01*

-X164135Y231000D01*

-X164158Y230718D01*

-X164224Y230442D01*

-X164332Y230180D01*

-X164480Y229939D01*

-X164664Y229723D01*

-X164880Y229539D01*

-X165121Y229391D01*

-X165383Y229283D01*

-X165659Y229217D01*

-X165792Y229206D01*

-Y228294D01*

-X165659Y228283D01*

-X165383Y228217D01*

-X165121Y228109D01*

-X164880Y227961D01*

-X164664Y227777D01*

-X164480Y227561D01*

-X164332Y227320D01*

-X164224Y227058D01*

-X164158Y226782D01*

-X164135Y226500D01*

-X164158Y226218D01*

-X164224Y225942D01*

-X164332Y225680D01*

-X164480Y225439D01*

-X164664Y225223D01*

-X164880Y225039D01*

-X165121Y224891D01*

-X165383Y224783D01*

-X165659Y224717D01*

-X165792Y224706D01*

-Y222294D01*

-X165659Y222283D01*

-X165383Y222217D01*

-X165121Y222109D01*

-X164880Y221961D01*

-X164664Y221777D01*

-X164480Y221561D01*

-X164332Y221320D01*

-X164224Y221058D01*

-X164158Y220782D01*

-X164135Y220500D01*

-X164158Y220218D01*

-X164224Y219942D01*

-X164332Y219680D01*

-X164480Y219439D01*

-X164664Y219223D01*

-X164880Y219039D01*

-X165121Y218891D01*

-X165383Y218783D01*

-X165659Y218717D01*

-X165792Y218706D01*

-Y198886D01*

-X165664Y198777D01*

-X165480Y198561D01*

-X165332Y198320D01*

-X165224Y198058D01*

-X165158Y197782D01*

-X165135Y197500D01*

-X165158Y197218D01*

-X165224Y196942D01*

-X165332Y196680D01*

-X165480Y196439D01*

-X165664Y196223D01*

-X165792Y196114D01*

-Y194386D01*

-X165664Y194277D01*

-X165480Y194061D01*

-X165332Y193820D01*

-X165224Y193558D01*

-X165158Y193282D01*

-X165135Y193000D01*

-X165158Y192718D01*

-X165224Y192442D01*

-X165332Y192180D01*

-X165480Y191939D01*

-X165664Y191723D01*

-X165792Y191614D01*

-Y189142D01*

-X165124Y189089D01*

-X164466Y188931D01*

-X163841Y188672D01*

-X163264Y188319D01*

-X162749Y187879D01*

-X162309Y187364D01*

-X161956Y186787D01*

-X161938Y186745D01*

-Y191195D01*

-X161941Y191194D01*

-X162223Y191217D01*

-X162499Y191283D01*

-X162761Y191391D01*

-X163002Y191539D01*

-X163218Y191723D01*

-X163402Y191939D01*

-X163550Y192180D01*

-X163658Y192442D01*

-X163724Y192718D01*

-X163741Y193000D01*

-X163724Y193282D01*

-X163658Y193558D01*

-X163550Y193820D01*

-X163402Y194061D01*

-X163218Y194277D01*

-X163002Y194461D01*

-X162761Y194609D01*

-X162499Y194717D01*

-X162223Y194783D01*

-X161941Y194806D01*

-X161938Y194805D01*

-Y197195D01*

-X161941Y197194D01*

-X162223Y197217D01*

-X162499Y197283D01*

-X162761Y197391D01*

-X163002Y197539D01*

-X163218Y197723D01*

-X163402Y197939D01*

-X163550Y198180D01*

-X163658Y198442D01*

-X163724Y198718D01*

-X163741Y199000D01*

-X163724Y199282D01*

-X163658Y199558D01*

-X163550Y199820D01*

-X163402Y200061D01*

-X163218Y200277D01*

-X163002Y200461D01*

-X162761Y200609D01*

-X162499Y200717D01*

-X162223Y200783D01*

-X161941Y200806D01*

-X161938Y200805D01*

-Y240770D01*

-X162159Y240717D01*

-X162441Y240694D01*

-X162723Y240717D01*

-X162999Y240783D01*

-X163261Y240891D01*

-X163502Y241039D01*

-X163718Y241223D01*

-X163902Y241439D01*

-X164050Y241680D01*

-X164158Y241942D01*

-X164224Y242218D01*

-X164241Y242500D01*

-X164224Y242782D01*

-X164158Y243058D01*

-X164050Y243320D01*

-X163902Y243561D01*

-X163718Y243777D01*

-X163502Y243961D01*

-X163261Y244109D01*

-X162999Y244217D01*

-X162723Y244283D01*

-X162441Y244306D01*

-X162159Y244283D01*

-X161938Y244230D01*

-Y246770D01*

-X162159Y246717D01*

-X162441Y246694D01*

-X162723Y246717D01*

-X162999Y246783D01*

-X163261Y246891D01*

-X163502Y247039D01*

-X163718Y247223D01*

-X163902Y247439D01*

-X164050Y247680D01*

-X164158Y247942D01*

-X164224Y248218D01*

-X164241Y248500D01*

-X164224Y248782D01*

-X164158Y249058D01*

-X164050Y249320D01*

-X163902Y249561D01*

-X163718Y249777D01*

-X163502Y249961D01*

-X163261Y250109D01*

-X162999Y250217D01*

-X162723Y250283D01*

-X162441Y250306D01*

-X162159Y250283D01*

-X161938Y250230D01*

-Y253195D01*

-X161941Y253194D01*

-X162223Y253217D01*

-X162499Y253283D01*

-X162761Y253391D01*

-X163002Y253539D01*

-X163218Y253723D01*

-X163402Y253939D01*

-X163550Y254180D01*

-X163658Y254442D01*

-X163724Y254718D01*

-X163741Y255000D01*

-X163724Y255282D01*

-X163658Y255558D01*

-X163550Y255820D01*

-X163402Y256061D01*

-X163218Y256277D01*

-X163002Y256461D01*

-X162761Y256609D01*

-X162499Y256717D01*

-X162223Y256783D01*

-X161941Y256806D01*

-X161938Y256805D01*

-Y260770D01*

-X162159Y260717D01*

-X162441Y260694D01*

-X162723Y260717D01*

-X162999Y260783D01*

-X163261Y260891D01*

-X163502Y261039D01*

-X163718Y261223D01*

-X163902Y261439D01*

-X164050Y261680D01*

-X164158Y261942D01*

-X164224Y262218D01*

-X164241Y262500D01*

-X164224Y262782D01*

-X164158Y263058D01*

-X164050Y263320D01*

-X163902Y263561D01*

-X163718Y263777D01*

-X163502Y263961D01*

-X163261Y264109D01*

-X162999Y264217D01*

-X162723Y264283D01*

-X162441Y264306D01*

-X162159Y264283D01*

-X161938Y264230D01*

-Y267003D01*

-X162121Y266891D01*

-X162383Y266783D01*

-X162659Y266717D01*

-X162941Y266694D01*

-X163223Y266717D01*

-X163499Y266783D01*

-X163761Y266891D01*

-X164002Y267039D01*

-X164218Y267223D01*

-X164402Y267439D01*

-X164550Y267680D01*

-X164658Y267942D01*

-X164724Y268218D01*

-X164741Y268500D01*

-X164724Y268782D01*

-X164658Y269058D01*

-X164550Y269320D01*

-X164402Y269561D01*

-X164218Y269777D01*

-X164002Y269961D01*

-X163761Y270109D01*

-X163499Y270217D01*

-X163223Y270283D01*

-X162941Y270306D01*

-X162659Y270283D01*

-X162383Y270217D01*

-X162121Y270109D01*

-X161938Y269997D01*

-Y273003D01*

-X162121Y272891D01*

-X162383Y272783D01*

-X162659Y272717D01*

-X162941Y272694D01*

-X163223Y272717D01*

-X163499Y272783D01*

-X163761Y272891D01*

-X164002Y273039D01*

-X164218Y273223D01*

-X164402Y273439D01*

-X164550Y273680D01*

-X164658Y273942D01*

-X164724Y274218D01*

-X164741Y274500D01*

-X164724Y274782D01*

-X164658Y275058D01*

-X164550Y275320D01*

-X164402Y275561D01*

-X164218Y275777D01*

-X164002Y275961D01*

-X163761Y276109D01*

-X163499Y276217D01*

-X163223Y276283D01*

-X162941Y276306D01*

-X162659Y276283D01*

-X162383Y276217D01*

-X162121Y276109D01*

-X161938Y275997D01*

-Y362913D01*

-G37*

-G36*

-Y372913D02*X161956Y372871D01*

-X162309Y372294D01*

-X162749Y371779D01*

-X163264Y371339D01*

-X163841Y370986D01*

-X164466Y370727D01*

-X165124Y370569D01*

-X165792Y370516D01*

-Y369142D01*

-X165124Y369089D01*

-X164466Y368931D01*

-X163841Y368672D01*

-X163264Y368319D01*

-X162749Y367879D01*

-X162309Y367364D01*

-X161956Y366787D01*

-X161938Y366745D01*

-Y372913D01*

-G37*

-G36*

-Y397000D02*X165792D01*

-Y379142D01*

-X165124Y379089D01*

-X164466Y378931D01*

-X163841Y378672D01*

-X163264Y378319D01*

-X162749Y377879D01*

-X162309Y377364D01*

-X161956Y376787D01*

-X161938Y376745D01*

-Y397000D01*

-G37*

-G36*

-X165792Y97000D02*X163938D01*

-Y125695D01*

-X163941Y125694D01*

-X164223Y125717D01*

-X164499Y125783D01*

-X164761Y125891D01*

-X165002Y126039D01*

-X165218Y126223D01*

-X165402Y126439D01*

-X165550Y126680D01*

-X165658Y126942D01*

-X165724Y127218D01*

-X165741Y127500D01*

-X165724Y127782D01*

-X165658Y128058D01*

-X165550Y128320D01*

-X165402Y128561D01*

-X165218Y128777D01*

-X165002Y128961D01*

-X164761Y129109D01*

-X164499Y129217D01*

-X164223Y129283D01*

-X163941Y129306D01*

-X163938Y129305D01*

-Y170946D01*

-X164466Y170727D01*

-X165124Y170569D01*

-X165792Y170516D01*

-Y105680D01*

-X165621Y105609D01*

-X165380Y105461D01*

-X165164Y105277D01*

-X164980Y105061D01*

-X164832Y104820D01*

-X164724Y104558D01*

-X164658Y104282D01*

-X164635Y104000D01*

-X164658Y103718D01*

-X164724Y103442D01*

-X164832Y103180D01*

-X164980Y102939D01*

-X165164Y102723D01*

-X165380Y102539D01*

-X165621Y102391D01*

-X165792Y102320D01*

-Y97000D01*

-G37*

-G36*

-X163938D02*X161938D01*

-Y172913D01*

-X161956Y172871D01*

-X162309Y172294D01*

-X162749Y171779D01*

-X163264Y171339D01*

-X163841Y170986D01*

-X163938Y170946D01*

-Y129305D01*

-X163659Y129283D01*

-X163383Y129217D01*

-X163121Y129109D01*

-X162880Y128961D01*

-X162664Y128777D01*

-X162480Y128561D01*

-X162332Y128320D01*

-X162224Y128058D01*

-X162158Y127782D01*

-X162135Y127500D01*

-X162158Y127218D01*

-X162224Y126942D01*

-X162332Y126680D01*

-X162480Y126439D01*

-X162664Y126223D01*

-X162880Y126039D01*

-X163121Y125891D01*

-X163383Y125783D01*

-X163659Y125717D01*

-X163938Y125695D01*

-Y97000D01*

-G37*

-G36*

-X161938D02*X158438D01*

-Y171428D01*

-X158849Y171779D01*

-X159289Y172294D01*

-X159642Y172871D01*

-X159901Y173496D01*

-X160059Y174154D01*

-X160099Y174829D01*

-X160059Y175504D01*

-X159901Y176162D01*

-X159642Y176787D01*

-X159289Y177364D01*

-X158849Y177879D01*

-X158438Y178230D01*

-Y181428D01*

-X158849Y181779D01*

-X159289Y182294D01*

-X159642Y182871D01*

-X159901Y183496D01*

-X160059Y184154D01*

-X160099Y184829D01*

-X160059Y185504D01*

-X159901Y186162D01*

-X159642Y186787D01*

-X159289Y187364D01*

-X158849Y187879D01*

-X158438Y188230D01*

-Y322024D01*

-X158441Y322023D01*

-X158723Y322046D01*

-X158999Y322112D01*

-X159261Y322220D01*

-X159502Y322368D01*

-X159718Y322552D01*

-X159902Y322768D01*

-X160050Y323009D01*

-X160158Y323271D01*

-X160224Y323547D01*

-X160241Y323829D01*

-X160224Y324111D01*

-X160158Y324387D01*

-X160050Y324649D01*

-X159902Y324890D01*

-X159718Y325106D01*

-X159649Y325164D01*

-X159718Y325223D01*

-X159902Y325439D01*

-X160050Y325680D01*

-X160158Y325942D01*

-X160224Y326218D01*

-X160241Y326500D01*

-X160224Y326782D01*

-X160158Y327058D01*

-X160050Y327320D01*

-X159902Y327561D01*

-X159814Y327664D01*

-X159902Y327768D01*

-X160050Y328009D01*

-X160158Y328271D01*

-X160224Y328547D01*

-X160241Y328829D01*

-X160224Y329111D01*

-X160158Y329387D01*

-X160050Y329649D01*

-X159902Y329890D01*

-X159718Y330106D01*

-X159502Y330290D01*

-X159261Y330438D01*

-X158999Y330546D01*

-X158723Y330612D01*

-X158441Y330635D01*

-X158438Y330634D01*

-Y361428D01*

-X158849Y361779D01*

-X159289Y362294D01*

-X159642Y362871D01*

-X159901Y363496D01*

-X160059Y364154D01*

-X160099Y364829D01*

-X160059Y365504D01*

-X159901Y366162D01*

-X159642Y366787D01*

-X159289Y367364D01*

-X158849Y367879D01*

-X158438Y368230D01*

-Y371428D01*

-X158849Y371779D01*

-X159289Y372294D01*

-X159642Y372871D01*

-X159901Y373496D01*

-X160059Y374154D01*

-X160099Y374829D01*

-X160059Y375504D01*

-X159901Y376162D01*

-X159642Y376787D01*

-X159289Y377364D01*

-X158849Y377879D01*

-X158438Y378230D01*

-Y397000D01*

-X161938D01*

-Y376745D01*

-X161697Y376162D01*

-X161539Y375504D01*

-X161486Y374829D01*

-X161539Y374154D01*

-X161697Y373496D01*

-X161938Y372913D01*

-Y366745D01*

-X161697Y366162D01*

-X161539Y365504D01*

-X161486Y364829D01*

-X161539Y364154D01*

-X161697Y363496D01*

-X161938Y362913D01*

-Y275997D01*

-X161880Y275961D01*

-X161664Y275777D01*

-X161480Y275561D01*

-X161332Y275320D01*

-X161224Y275058D01*

-X161158Y274782D01*

-X161135Y274500D01*

-X161158Y274218D01*

-X161224Y273942D01*

-X161332Y273680D01*

-X161480Y273439D01*

-X161664Y273223D01*

-X161880Y273039D01*

-X161938Y273003D01*

-Y269997D01*

-X161880Y269961D01*

-X161664Y269777D01*

-X161480Y269561D01*

-X161332Y269320D01*

-X161224Y269058D01*

-X161158Y268782D01*

-X161135Y268500D01*

-X161158Y268218D01*

-X161224Y267942D01*

-X161332Y267680D01*

-X161480Y267439D01*

-X161664Y267223D01*

-X161880Y267039D01*

-X161938Y267003D01*

-Y264230D01*

-X161883Y264217D01*

-X161621Y264109D01*

-X161380Y263961D01*

-X161164Y263777D01*

-X160980Y263561D01*

-X160832Y263320D01*

-X160724Y263058D01*

-X160658Y262782D01*

-X160635Y262500D01*

-X160658Y262218D01*

-X160724Y261942D01*

-X160832Y261680D01*

-X160980Y261439D01*

-X161164Y261223D01*

-X161380Y261039D01*

-X161621Y260891D01*

-X161883Y260783D01*

-X161938Y260770D01*

-Y256805D01*

-X161659Y256783D01*

-X161383Y256717D01*

-X161121Y256609D01*

-X160880Y256461D01*

-X160664Y256277D01*

-X160480Y256061D01*

-X160332Y255820D01*

-X160224Y255558D01*

-X160158Y255282D01*

-X160135Y255000D01*

-X160158Y254718D01*

-X160224Y254442D01*

-X160332Y254180D01*

-X160480Y253939D01*

-X160664Y253723D01*

-X160880Y253539D01*

-X161121Y253391D01*

-X161383Y253283D01*

-X161659Y253217D01*

-X161938Y253195D01*

-Y250230D01*

-X161883Y250217D01*

-X161621Y250109D01*

-X161380Y249961D01*

-X161164Y249777D01*

-X160980Y249561D01*

-X160832Y249320D01*

-X160724Y249058D01*

-X160658Y248782D01*

-X160635Y248500D01*

-X160658Y248218D01*

-X160724Y247942D01*

-X160832Y247680D01*

-X160980Y247439D01*

-X161164Y247223D01*

-X161380Y247039D01*

-X161621Y246891D01*

-X161883Y246783D01*

-X161938Y246770D01*

-Y244230D01*

-X161883Y244217D01*

-X161621Y244109D01*

-X161380Y243961D01*

-X161164Y243777D01*

-X160980Y243561D01*

-X160832Y243320D01*

-X160724Y243058D01*

-X160658Y242782D01*

-X160635Y242500D01*

-X160658Y242218D01*

-X160724Y241942D01*

-X160832Y241680D01*

-X160980Y241439D01*

-X161164Y241223D01*

-X161380Y241039D01*

-X161621Y240891D01*

-X161883Y240783D01*

-X161938Y240770D01*

-Y200805D01*

-X161659Y200783D01*

-X161383Y200717D01*

-X161121Y200609D01*

-X160880Y200461D01*

-X160664Y200277D01*

-X160480Y200061D01*

-X160332Y199820D01*

-X160224Y199558D01*

-X160158Y199282D01*

-X160135Y199000D01*

-X160158Y198718D01*

-X160224Y198442D01*

-X160332Y198180D01*

-X160480Y197939D01*

-X160664Y197723D01*

-X160880Y197539D01*

-X161121Y197391D01*

-X161383Y197283D01*

-X161659Y197217D01*

-X161938Y197195D01*

-Y194805D01*

-X161659Y194783D01*

-X161383Y194717D01*

-X161121Y194609D01*

-X160880Y194461D01*

-X160664Y194277D01*

-X160480Y194061D01*

-X160332Y193820D01*

-X160224Y193558D01*

-X160158Y193282D01*

-X160135Y193000D01*

-X160158Y192718D01*

-X160224Y192442D01*

-X160332Y192180D01*

-X160480Y191939D01*

-X160664Y191723D01*

-X160880Y191539D01*

-X161121Y191391D01*

-X161383Y191283D01*

-X161659Y191217D01*

-X161938Y191195D01*

-Y186745D01*

-X161697Y186162D01*

-X161539Y185504D01*

-X161486Y184829D01*

-X161539Y184154D01*

-X161697Y183496D01*

-X161938Y182913D01*

-Y176745D01*

-X161697Y176162D01*

-X161539Y175504D01*

-X161486Y174829D01*

-X161539Y174154D01*

-X161697Y173496D01*

-X161938Y172913D01*

-Y97000D01*

-G37*

-G36*

-X158438Y378230D02*X158334Y378319D01*

-X157757Y378672D01*

-X157132Y378931D01*

-X156474Y379089D01*

-X155799Y379142D01*

-X155792Y379142D01*

-Y397000D01*

-X158438D01*

-Y378230D01*

-G37*

-G36*

-Y368230D02*X158334Y368319D01*

-X157757Y368672D01*

-X157132Y368931D01*

-X156474Y369089D01*

-X155799Y369142D01*

-X155792Y369142D01*

-Y370516D01*

-X155799Y370516D01*

-X156474Y370569D01*

-X157132Y370727D01*

-X157757Y370986D01*

-X158334Y371339D01*

-X158438Y371428D01*

-Y368230D01*

-G37*

-G36*

-Y188230D02*X158334Y188319D01*

-X157757Y188672D01*

-X157132Y188931D01*

-X156474Y189089D01*

-X155799Y189142D01*

-X155792Y189142D01*

-Y343911D01*

-X156002Y344039D01*

-X156218Y344223D01*

-X156402Y344439D01*

-X156550Y344680D01*

-X156658Y344942D01*

-X156724Y345218D01*

-X156741Y345500D01*

-X156724Y345782D01*

-X156658Y346058D01*

-X156550Y346320D01*

-X156402Y346561D01*

-X156218Y346777D01*

-X156002Y346961D01*

-X155792Y347089D01*

-Y360516D01*

-X155799Y360516D01*

-X156474Y360569D01*

-X157132Y360727D01*

-X157757Y360986D01*

-X158334Y361339D01*

-X158438Y361428D01*

-Y330634D01*

-X158159Y330612D01*

-X157883Y330546D01*

-X157621Y330438D01*

-X157380Y330290D01*

-X157164Y330106D01*

-X156980Y329890D01*

-X156832Y329649D01*

-X156724Y329387D01*

-X156658Y329111D01*

-X156635Y328829D01*

-X156658Y328547D01*

-X156724Y328271D01*

-X156832Y328009D01*

-X156980Y327768D01*

-X157068Y327664D01*

-X156980Y327561D01*

-X156832Y327320D01*

-X156724Y327058D01*

-X156658Y326782D01*

-X156635Y326500D01*

-X156658Y326218D01*

-X156724Y325942D01*

-X156832Y325680D01*

-X156980Y325439D01*

-X157164Y325223D01*

-X157233Y325164D01*

-X157164Y325106D01*

-X156980Y324890D01*

-X156832Y324649D01*

-X156724Y324387D01*

-X156658Y324111D01*

-X156635Y323829D01*

-X156658Y323547D01*

-X156724Y323271D01*

-X156832Y323009D01*

-X156980Y322768D01*

-X157164Y322552D01*

-X157380Y322368D01*

-X157621Y322220D01*

-X157883Y322112D01*

-X158159Y322046D01*

-X158438Y322024D01*

-Y188230D01*

-G37*

-G36*

-Y178230D02*X158334Y178319D01*

-X157757Y178672D01*

-X157132Y178931D01*

-X156474Y179089D01*

-X155799Y179142D01*

-X155792Y179142D01*

-Y180516D01*

-X155799Y180516D01*

-X156474Y180569D01*

-X157132Y180727D01*

-X157757Y180986D01*

-X158334Y181339D01*

-X158438Y181428D01*

-Y178230D01*

-G37*

-G36*

-Y97000D02*X155792D01*

-Y170516D01*

-X155799Y170516D01*

-X156474Y170569D01*

-X157132Y170727D01*

-X157757Y170986D01*

-X158334Y171339D01*

-X158438Y171428D01*

-Y97000D01*

-G37*

-G36*

-X152438Y182143D02*X152749Y181779D01*

-X153264Y181339D01*

-X153841Y180986D01*

-X154466Y180727D01*

-X155124Y180569D01*

-X155792Y180516D01*

-Y179142D01*

-X155124Y179089D01*

-X154466Y178931D01*

-X153841Y178672D01*

-X153264Y178319D01*

-X152749Y177879D01*

-X152438Y177515D01*

-Y182143D01*

-G37*

-G36*

-Y362143D02*X152749Y361779D01*

-X153264Y361339D01*

-X153841Y360986D01*

-X154466Y360727D01*

-X155124Y360569D01*

-X155792Y360516D01*

-Y347089D01*

-X155761Y347109D01*

-X155499Y347217D01*

-X155223Y347283D01*

-X154941Y347306D01*

-X154659Y347283D01*

-X154383Y347217D01*

-X154121Y347109D01*

-X153880Y346961D01*

-X153664Y346777D01*

-X153480Y346561D01*

-X153332Y346320D01*

-X153224Y346058D01*

-X153158Y345782D01*

-X153135Y345500D01*

-X153158Y345218D01*

-X153224Y344942D01*

-X153332Y344680D01*

-X153480Y344439D01*

-X153664Y344223D01*

-X153880Y344039D01*

-X154121Y343891D01*

-X154383Y343783D01*

-X154659Y343717D01*

-X154941Y343694D01*

-X155223Y343717D01*

-X155499Y343783D01*

-X155761Y343891D01*

-X155792Y343911D01*

-Y189142D01*

-X155124Y189089D01*

-X154466Y188931D01*

-X153841Y188672D01*

-X153264Y188319D01*

-X152749Y187879D01*

-X152438Y187515D01*

-Y337007D01*

-X152480Y336939D01*

-X152664Y336723D01*

-X152880Y336539D01*

-X153121Y336391D01*

-X153383Y336283D01*

-X153659Y336217D01*

-X153941Y336194D01*

-X154223Y336217D01*

-X154499Y336283D01*

-X154761Y336391D01*

-X155002Y336539D01*

-X155218Y336723D01*

-X155402Y336939D01*

-X155550Y337180D01*

-X155658Y337442D01*

-X155724Y337718D01*

-X155741Y338000D01*

-X155724Y338282D01*

-X155658Y338558D01*

-X155550Y338820D01*

-X155402Y339061D01*

-X155218Y339277D01*

-X155002Y339461D01*

-X154761Y339609D01*

-X154499Y339717D01*

-X154223Y339783D01*

-X153941Y339806D01*

-X153659Y339783D01*

-X153383Y339717D01*

-X153121Y339609D01*

-X152880Y339461D01*

-X152664Y339277D01*

-X152480Y339061D01*

-X152438Y338993D01*

-Y362143D01*

-G37*

-G36*

-Y372143D02*X152749Y371779D01*

-X153264Y371339D01*

-X153841Y370986D01*

-X154466Y370727D01*

-X155124Y370569D01*

-X155792Y370516D01*

-Y369142D01*

-X155124Y369089D01*

-X154466Y368931D01*

-X153841Y368672D01*

-X153264Y368319D01*

-X152749Y367879D01*

-X152438Y367515D01*

-Y372143D01*

-G37*

-G36*

-Y397000D02*X155792D01*

-Y379142D01*

-X155124Y379089D01*

-X154466Y378931D01*

-X153841Y378672D01*

-X153264Y378319D01*

-X152749Y377879D01*

-X152438Y377515D01*

-Y397000D01*

-G37*

-G36*

-X155792Y97000D02*X152438D01*

-Y119695D01*

-X152441Y119694D01*

-X152723Y119717D01*

-X152999Y119783D01*

-X153261Y119891D01*

-X153502Y120039D01*

-X153718Y120223D01*

-X153902Y120439D01*

-X154050Y120680D01*

-X154158Y120942D01*

-X154224Y121218D01*

-X154241Y121500D01*

-X154224Y121782D01*

-X154158Y122058D01*

-X154050Y122320D01*

-X153902Y122561D01*

-X153718Y122777D01*

-X153502Y122961D01*

-X153261Y123109D01*

-X152999Y123217D01*

-X152723Y123283D01*

-X152441Y123306D01*

-X152438Y123305D01*

-Y130268D01*

-X152499Y130283D01*

-X152761Y130391D01*

-X153002Y130539D01*

-X153218Y130723D01*

-X153402Y130939D01*

-X153550Y131180D01*

-X153658Y131442D01*

-X153724Y131718D01*

-X153741Y132000D01*

-X153724Y132282D01*

-X153658Y132558D01*

-X153550Y132820D01*

-X153402Y133061D01*

-X153218Y133277D01*

-X153002Y133461D01*

-X152761Y133609D01*

-X152499Y133717D01*

-X152438Y133732D01*

-Y172143D01*

-X152749Y171779D01*

-X153264Y171339D01*

-X153841Y170986D01*

-X154466Y170727D01*

-X155124Y170569D01*

-X155792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X152438D02*X149938D01*

-Y147195D01*

-X149941Y147194D01*

-X150223Y147217D01*

-X150499Y147283D01*

-X150761Y147391D01*

-X151002Y147539D01*

-X151218Y147723D01*

-X151402Y147939D01*

-X151550Y148180D01*

-X151658Y148442D01*

-X151724Y148718D01*

-X151741Y149000D01*

-X151724Y149282D01*

-X151658Y149558D01*

-X151550Y149820D01*

-X151402Y150061D01*

-X151218Y150277D01*

-X151002Y150461D01*

-X150761Y150609D01*

-X150499Y150717D01*

-X150223Y150783D01*

-X149941Y150806D01*

-X149938Y150805D01*

-Y173651D01*

-X150059Y174154D01*

-X150099Y174829D01*

-X150059Y175504D01*

-X149938Y176007D01*

-Y183651D01*

-X150059Y184154D01*

-X150099Y184829D01*

-X150059Y185504D01*

-X149938Y186007D01*

-Y347768D01*

-X149999Y347783D01*

-X150261Y347891D01*

-X150502Y348039D01*

-X150718Y348223D01*

-X150902Y348439D01*

-X151050Y348680D01*

-X151158Y348942D01*

-X151224Y349218D01*

-X151241Y349500D01*

-X151224Y349782D01*

-X151158Y350058D01*

-X151050Y350320D01*

-X150902Y350561D01*

-X150718Y350777D01*

-X150502Y350961D01*

-X150261Y351109D01*

-X149999Y351217D01*

-X149938Y351232D01*

-Y363651D01*

-X150059Y364154D01*

-X150099Y364829D01*

-X150059Y365504D01*

-X149938Y366007D01*

-Y373651D01*

-X150059Y374154D01*

-X150099Y374829D01*

-X150059Y375504D01*

-X149938Y376007D01*

-Y397000D01*

-X152438D01*

-Y377515D01*

-X152309Y377364D01*

-X151956Y376787D01*

-X151697Y376162D01*

-X151539Y375504D01*

-X151486Y374829D01*

-X151539Y374154D01*

-X151697Y373496D01*

-X151956Y372871D01*

-X152309Y372294D01*

-X152438Y372143D01*

-Y367515D01*

-X152309Y367364D01*

-X151956Y366787D01*

-X151697Y366162D01*

-X151539Y365504D01*

-X151486Y364829D01*

-X151539Y364154D01*

-X151697Y363496D01*

-X151956Y362871D01*

-X152309Y362294D01*

-X152438Y362143D01*

-Y338993D01*

-X152332Y338820D01*

-X152224Y338558D01*

-X152158Y338282D01*

-X152135Y338000D01*

-X152158Y337718D01*

-X152224Y337442D01*

-X152332Y337180D01*

-X152438Y337007D01*

-Y187515D01*

-X152309Y187364D01*

-X151956Y186787D01*

-X151697Y186162D01*

-X151539Y185504D01*

-X151486Y184829D01*

-X151539Y184154D01*

-X151697Y183496D01*

-X151956Y182871D01*

-X152309Y182294D01*

-X152438Y182143D01*

-Y177515D01*

-X152309Y177364D01*

-X151956Y176787D01*

-X151697Y176162D01*

-X151539Y175504D01*

-X151486Y174829D01*

-X151539Y174154D01*

-X151697Y173496D01*

-X151956Y172871D01*

-X152309Y172294D01*

-X152438Y172143D01*

-Y133732D01*

-X152223Y133783D01*

-X151941Y133806D01*

-X151659Y133783D01*

-X151383Y133717D01*

-X151121Y133609D01*

-X150880Y133461D01*

-X150664Y133277D01*

-X150480Y133061D01*

-X150332Y132820D01*

-X150224Y132558D01*

-X150158Y132282D01*

-X150135Y132000D01*

-X150158Y131718D01*

-X150224Y131442D01*

-X150332Y131180D01*

-X150480Y130939D01*

-X150664Y130723D01*

-X150880Y130539D01*

-X151121Y130391D01*

-X151383Y130283D01*

-X151659Y130217D01*

-X151941Y130194D01*

-X152223Y130217D01*

-X152438Y130268D01*

-Y123305D01*

-X152159Y123283D01*

-X151883Y123217D01*

-X151621Y123109D01*

-X151380Y122961D01*

-X151164Y122777D01*

-X150980Y122561D01*

-X150832Y122320D01*

-X150724Y122058D01*

-X150658Y121782D01*

-X150635Y121500D01*

-X150658Y121218D01*

-X150724Y120942D01*

-X150832Y120680D01*

-X150980Y120439D01*

-X151164Y120223D01*

-X151380Y120039D01*

-X151621Y119891D01*

-X151883Y119783D01*

-X152159Y119717D01*

-X152438Y119695D01*

-Y97000D01*

-G37*

-G36*

-X149938Y376007D02*X149901Y376162D01*

-X149642Y376787D01*

-X149289Y377364D01*

-X148849Y377879D01*

-X148334Y378319D01*

-X147757Y378672D01*

-X147132Y378931D01*

-X146474Y379089D01*

-X145799Y379142D01*

-X145792Y379142D01*

-Y397000D01*

-X149938D01*

-Y376007D01*

-G37*

-G36*

-Y366007D02*X149901Y366162D01*

-X149642Y366787D01*

-X149289Y367364D01*

-X148849Y367879D01*

-X148334Y368319D01*

-X147757Y368672D01*

-X147132Y368931D01*

-X146474Y369089D01*

-X145799Y369142D01*

-X145792Y369142D01*

-Y370516D01*

-X145799Y370516D01*

-X146474Y370569D01*

-X147132Y370727D01*

-X147757Y370986D01*

-X148334Y371339D01*

-X148849Y371779D01*

-X149289Y372294D01*

-X149642Y372871D01*

-X149901Y373496D01*

-X149938Y373651D01*

-Y366007D01*

-G37*

-G36*

-Y186007D02*X149901Y186162D01*

-X149642Y186787D01*

-X149289Y187364D01*

-X148849Y187879D01*

-X148334Y188319D01*

-X147757Y188672D01*

-X147132Y188931D01*

-X146474Y189089D01*

-X145799Y189142D01*

-X145792Y189142D01*

-Y360516D01*

-X145799Y360516D01*

-X146474Y360569D01*

-X147132Y360727D01*

-X147757Y360986D01*

-X148334Y361339D01*

-X148849Y361779D01*

-X149289Y362294D01*

-X149642Y362871D01*

-X149901Y363496D01*

-X149938Y363651D01*

-Y351232D01*

-X149723Y351283D01*

-X149441Y351306D01*

-X149159Y351283D01*

-X148883Y351217D01*

-X148621Y351109D01*

-X148380Y350961D01*

-X148164Y350777D01*

-X147980Y350561D01*

-X147832Y350320D01*

-X147724Y350058D01*

-X147658Y349782D01*

-X147635Y349500D01*

-X147658Y349218D01*

-X147724Y348942D01*

-X147832Y348680D01*

-X147980Y348439D01*

-X148164Y348223D01*

-X148380Y348039D01*

-X148621Y347891D01*

-X148883Y347783D01*

-X149159Y347717D01*

-X149441Y347694D01*

-X149723Y347717D01*

-X149938Y347768D01*

-Y186007D01*

-G37*

-G36*

-Y176007D02*X149901Y176162D01*

-X149642Y176787D01*

-X149289Y177364D01*

-X148849Y177879D01*

-X148334Y178319D01*

-X147757Y178672D01*

-X147132Y178931D01*

-X146474Y179089D01*

-X145799Y179142D01*

-X145792Y179142D01*

-Y180516D01*

-X145799Y180516D01*

-X146474Y180569D01*

-X147132Y180727D01*

-X147757Y180986D01*

-X148334Y181339D01*

-X148849Y181779D01*

-X149289Y182294D01*

-X149642Y182871D01*

-X149901Y183496D01*

-X149938Y183651D01*

-Y176007D01*

-G37*

-G36*

-Y97000D02*X145792D01*

-Y170516D01*

-X145799Y170516D01*

-X146474Y170569D01*

-X147132Y170727D01*

-X147757Y170986D01*

-X148334Y171339D01*

-X148849Y171779D01*

-X149289Y172294D01*

-X149642Y172871D01*

-X149901Y173496D01*

-X149938Y173651D01*

-Y150805D01*

-X149659Y150783D01*

-X149383Y150717D01*

-X149121Y150609D01*

-X148880Y150461D01*

-X148664Y150277D01*

-X148480Y150061D01*

-X148332Y149820D01*

-X148224Y149558D01*

-X148158Y149282D01*

-X148135Y149000D01*

-X148158Y148718D01*

-X148224Y148442D01*

-X148332Y148180D01*

-X148480Y147939D01*

-X148664Y147723D01*

-X148880Y147539D01*

-X149121Y147391D01*

-X149383Y147283D01*

-X149659Y147217D01*

-X149938Y147195D01*

-Y97000D01*

-G37*

-G36*

-X145792D02*X141438D01*

-Y146195D01*

-X141441Y146194D01*

-X141723Y146217D01*

-X141999Y146283D01*

-X142261Y146391D01*

-X142502Y146539D01*

-X142718Y146723D01*

-X142902Y146939D01*

-X143050Y147180D01*

-X143158Y147442D01*

-X143224Y147718D01*

-X143241Y148000D01*

-X143224Y148282D01*

-X143158Y148558D01*

-X143050Y148820D01*

-X142902Y149061D01*

-X142718Y149277D01*

-X142502Y149461D01*

-X142261Y149609D01*

-X141999Y149717D01*

-X141723Y149783D01*

-X141441Y149806D01*

-X141438Y149805D01*

-Y299088D01*

-X141589Y299100D01*

-X141865Y299166D01*

-X142127Y299274D01*

-X142368Y299422D01*

-X142584Y299606D01*

-X142768Y299822D01*

-X142916Y300063D01*

-X143024Y300325D01*

-X143090Y300601D01*

-X143107Y300883D01*

-X143090Y301165D01*

-X143024Y301441D01*

-X142916Y301703D01*

-X142768Y301944D01*

-X142584Y302160D01*

-X142368Y302344D01*

-X142127Y302492D01*

-X141865Y302600D01*

-X141589Y302666D01*

-X141438Y302678D01*

-Y336998D01*

-X141550Y337180D01*

-X141658Y337442D01*

-X141724Y337718D01*

-X141741Y338000D01*

-X141724Y338282D01*

-X141658Y338558D01*

-X141550Y338820D01*

-X141438Y339002D01*

-Y348003D01*

-X141621Y347891D01*

-X141883Y347783D01*

-X142159Y347717D01*

-X142441Y347694D01*

-X142723Y347717D01*

-X142999Y347783D01*

-X143261Y347891D01*

-X143502Y348039D01*

-X143718Y348223D01*

-X143902Y348439D01*

-X144050Y348680D01*

-X144158Y348942D01*

-X144224Y349218D01*

-X144241Y349500D01*

-X144224Y349782D01*

-X144158Y350058D01*

-X144050Y350320D01*

-X143902Y350561D01*

-X143718Y350777D01*

-X143502Y350961D01*

-X143261Y351109D01*

-X142999Y351217D01*

-X142723Y351283D01*

-X142441Y351306D01*

-X142159Y351283D01*

-X141883Y351217D01*

-X141621Y351109D01*

-X141438Y350997D01*

-Y356003D01*

-X141621Y355891D01*

-X141883Y355783D01*

-X142159Y355717D01*

-X142441Y355694D01*

-X142723Y355717D01*

-X142999Y355783D01*

-X143261Y355891D01*

-X143502Y356039D01*

-X143718Y356223D01*

-X143902Y356439D01*

-X144050Y356680D01*

-X144158Y356942D01*

-X144224Y357218D01*

-X144241Y357500D01*

-X144224Y357782D01*

-X144158Y358058D01*

-X144050Y358320D01*

-X143902Y358561D01*

-X143718Y358777D01*

-X143502Y358961D01*

-X143261Y359109D01*

-X142999Y359217D01*

-X142723Y359283D01*

-X142441Y359306D01*

-X142159Y359283D01*

-X141883Y359217D01*

-X141621Y359109D01*

-X141438Y358997D01*

-Y397000D01*

-X145792D01*

-Y379142D01*

-X145124Y379089D01*

-X144466Y378931D01*

-X143841Y378672D01*

-X143264Y378319D01*

-X142749Y377879D01*

-X142309Y377364D01*

-X141956Y376787D01*

-X141697Y376162D01*

-X141539Y375504D01*

-X141486Y374829D01*

-X141539Y374154D01*

-X141697Y373496D01*

-X141956Y372871D01*

-X142309Y372294D01*

-X142749Y371779D01*

-X143264Y371339D01*

-X143841Y370986D01*

-X144466Y370727D01*

-X145124Y370569D01*

-X145792Y370516D01*

-Y369142D01*

-X145124Y369089D01*

-X144466Y368931D01*

-X143841Y368672D01*

-X143264Y368319D01*

-X142749Y367879D01*

-X142309Y367364D01*

-X141956Y366787D01*

-X141697Y366162D01*

-X141539Y365504D01*

-X141486Y364829D01*

-X141539Y364154D01*

-X141697Y363496D01*

-X141956Y362871D01*

-X142309Y362294D01*

-X142749Y361779D01*

-X143264Y361339D01*

-X143841Y360986D01*

-X144466Y360727D01*

-X145124Y360569D01*

-X145792Y360516D01*

-Y189142D01*

-X145124Y189089D01*

-X144466Y188931D01*

-X143841Y188672D01*

-X143264Y188319D01*

-X142749Y187879D01*

-X142309Y187364D01*

-X141956Y186787D01*

-X141697Y186162D01*

-X141539Y185504D01*

-X141486Y184829D01*

-X141539Y184154D01*

-X141697Y183496D01*

-X141956Y182871D01*

-X142309Y182294D01*

-X142749Y181779D01*

-X143264Y181339D01*

-X143841Y180986D01*

-X144466Y180727D01*

-X145124Y180569D01*

-X145792Y180516D01*

-Y179142D01*

-X145124Y179089D01*

-X144466Y178931D01*

-X143841Y178672D01*

-X143264Y178319D01*

-X142749Y177879D01*

-X142309Y177364D01*

-X141956Y176787D01*

-X141697Y176162D01*

-X141539Y175504D01*

-X141486Y174829D01*

-X141539Y174154D01*

-X141697Y173496D01*

-X141956Y172871D01*

-X142309Y172294D01*

-X142749Y171779D01*

-X143264Y171339D01*

-X143841Y170986D01*

-X144466Y170727D01*

-X145124Y170569D01*

-X145792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X141438Y339002D02*X141402Y339061D01*

-X141218Y339277D01*

-X141002Y339461D01*

-X140761Y339609D01*

-X140499Y339717D01*

-X140223Y339783D01*

-X139941Y339806D01*

-X139659Y339783D01*

-X139383Y339717D01*

-X139121Y339609D01*

-X138922Y339487D01*

-Y361865D01*

-X139289Y362294D01*

-X139642Y362871D01*

-X139901Y363496D01*

-X140059Y364154D01*

-X140099Y364829D01*

-X140059Y365504D01*

-X139901Y366162D01*

-X139642Y366787D01*

-X139289Y367364D01*

-X138922Y367793D01*

-Y371865D01*

-X139289Y372294D01*

-X139642Y372871D01*

-X139901Y373496D01*

-X140059Y374154D01*

-X140099Y374829D01*

-X140059Y375504D01*

-X139901Y376162D01*

-X139642Y376787D01*

-X139289Y377364D01*

-X138922Y377793D01*

-Y397000D01*

-X141438D01*

-Y358997D01*

-X141380Y358961D01*

-X141164Y358777D01*

-X140980Y358561D01*

-X140832Y358320D01*

-X140724Y358058D01*

-X140658Y357782D01*

-X140635Y357500D01*

-X140658Y357218D01*

-X140724Y356942D01*

-X140832Y356680D01*

-X140980Y356439D01*

-X141164Y356223D01*

-X141380Y356039D01*

-X141438Y356003D01*

-Y350997D01*

-X141380Y350961D01*

-X141164Y350777D01*

-X140980Y350561D01*

-X140832Y350320D01*

-X140724Y350058D01*

-X140658Y349782D01*

-X140635Y349500D01*

-X140658Y349218D01*

-X140724Y348942D01*

-X140832Y348680D01*

-X140980Y348439D01*

-X141164Y348223D01*

-X141380Y348039D01*

-X141438Y348003D01*

-Y339002D01*

-G37*

-G36*

-Y97000D02*X138922D01*

-Y171865D01*

-X139289Y172294D01*

-X139642Y172871D01*

-X139901Y173496D01*

-X140059Y174154D01*

-X140099Y174829D01*

-X140059Y175504D01*

-X139901Y176162D01*

-X139642Y176787D01*

-X139289Y177364D01*

-X138922Y177793D01*

-Y181865D01*

-X139289Y182294D01*

-X139642Y182871D01*

-X139901Y183496D01*

-X140059Y184154D01*

-X140099Y184829D01*

-X140059Y185504D01*

-X139901Y186162D01*

-X139642Y186787D01*

-X139289Y187364D01*

-X138922Y187793D01*

-Y190893D01*

-X138925Y190892D01*

-X139207Y190915D01*

-X139483Y190981D01*

-X139745Y191089D01*

-X139986Y191237D01*

-X140202Y191421D01*

-X140386Y191637D01*

-X140534Y191878D01*

-X140642Y192140D01*

-X140708Y192416D01*

-X140725Y192698D01*

-X140708Y192980D01*

-X140642Y193256D01*

-X140534Y193518D01*

-X140386Y193759D01*

-X140202Y193975D01*

-X139986Y194159D01*

-X139745Y194307D01*

-X139483Y194415D01*

-X139207Y194481D01*

-X138925Y194504D01*

-X138922Y194503D01*

-Y196036D01*

-X138925Y196035D01*

-X139207Y196058D01*

-X139483Y196124D01*

-X139745Y196232D01*

-X139986Y196380D01*

-X140202Y196564D01*

-X140386Y196780D01*

-X140534Y197021D01*

-X140642Y197283D01*

-X140708Y197559D01*

-X140725Y197841D01*

-X140708Y198123D01*

-X140642Y198399D01*

-X140534Y198661D01*

-X140386Y198902D01*

-X140202Y199118D01*

-X139986Y199302D01*

-X139745Y199450D01*

-X139483Y199558D01*

-X139207Y199624D01*

-X138925Y199647D01*

-X138922Y199646D01*

-Y200228D01*

-X139154Y200247D01*

-X139430Y200313D01*

-X139692Y200421D01*

-X139933Y200569D01*

-X140149Y200753D01*

-X140333Y200969D01*

-X140481Y201210D01*

-X140589Y201472D01*

-X140655Y201748D01*

-X140672Y202030D01*

-X140655Y202312D01*

-X140589Y202588D01*

-X140481Y202850D01*

-X140333Y203091D01*

-X140149Y203307D01*

-X139933Y203491D01*

-X139692Y203639D01*

-X139430Y203747D01*

-X139154Y203813D01*

-X138922Y203832D01*

-Y204308D01*

-X138925Y204307D01*

-X139207Y204330D01*

-X139483Y204396D01*

-X139745Y204504D01*

-X139986Y204652D01*

-X140202Y204836D01*

-X140386Y205052D01*

-X140534Y205293D01*

-X140642Y205555D01*

-X140708Y205831D01*

-X140725Y206113D01*

-X140708Y206395D01*

-X140642Y206671D01*

-X140534Y206933D01*

-X140386Y207174D01*

-X140202Y207390D01*

-X139986Y207574D01*

-X139745Y207722D01*

-X139483Y207830D01*

-X139207Y207896D01*

-X138925Y207919D01*

-X138922Y207918D01*

-Y336513D01*

-X139121Y336391D01*

-X139383Y336283D01*

-X139659Y336217D01*

-X139941Y336194D01*

-X140223Y336217D01*

-X140499Y336283D01*

-X140761Y336391D01*

-X141002Y336539D01*

-X141218Y336723D01*

-X141402Y336939D01*

-X141438Y336998D01*

-Y302678D01*

-X141307Y302689D01*

-X141025Y302666D01*

-X140749Y302600D01*

-X140487Y302492D01*

-X140246Y302344D01*

-X140030Y302160D01*

-X139846Y301944D01*

-X139698Y301703D01*

-X139590Y301441D01*

-X139524Y301165D01*

-X139501Y300883D01*

-X139524Y300601D01*

-X139590Y300325D01*

-X139698Y300063D01*

-X139846Y299822D01*

-X140030Y299606D01*

-X140246Y299422D01*

-X140487Y299274D01*

-X140749Y299166D01*

-X141025Y299100D01*

-X141307Y299077D01*

-X141438Y299088D01*

-Y149805D01*

-X141159Y149783D01*

-X140883Y149717D01*

-X140621Y149609D01*

-X140380Y149461D01*

-X140164Y149277D01*

-X139980Y149061D01*

-X139832Y148820D01*

-X139724Y148558D01*

-X139658Y148282D01*

-X139635Y148000D01*

-X139658Y147718D01*

-X139724Y147442D01*

-X139832Y147180D01*

-X139980Y146939D01*

-X140164Y146723D01*

-X140380Y146539D01*

-X140621Y146391D01*

-X140883Y146283D01*

-X141159Y146217D01*

-X141438Y146195D01*

-Y97000D01*

-G37*

-G36*

-X138922Y377793D02*X138849Y377879D01*

-X138334Y378319D01*

-X137757Y378672D01*

-X137132Y378931D01*

-X136474Y379089D01*

-X135799Y379142D01*

-X135792Y379142D01*

-Y397000D01*

-X138922D01*

-Y377793D01*

-G37*

-G36*

-Y367793D02*X138849Y367879D01*

-X138334Y368319D01*

-X137757Y368672D01*

-X137132Y368931D01*

-X136474Y369089D01*

-X135799Y369142D01*

-X135792Y369142D01*

-Y370516D01*

-X135799Y370516D01*

-X136474Y370569D01*

-X137132Y370727D01*

-X137757Y370986D01*

-X138334Y371339D01*

-X138849Y371779D01*

-X138922Y371865D01*

-Y367793D01*

-G37*

-G36*

-Y187793D02*X138849Y187879D01*

-X138334Y188319D01*

-X137757Y188672D01*

-X137132Y188931D01*

-X136474Y189089D01*

-X135799Y189142D01*

-X135792Y189142D01*

-Y333233D01*

-X135999Y333283D01*

-X136261Y333391D01*

-X136502Y333539D01*

-X136718Y333723D01*

-X136902Y333939D01*

-X137050Y334180D01*

-X137158Y334442D01*

-X137224Y334718D01*

-X137241Y335000D01*

-X137224Y335282D01*

-X137158Y335558D01*

-X137050Y335820D01*

-X136902Y336061D01*

-X136718Y336277D01*

-X136502Y336461D01*

-X136261Y336609D01*

-X135999Y336717D01*

-X135862Y336750D01*

-X135999Y336783D01*

-X136261Y336891D01*

-X136502Y337039D01*

-X136718Y337223D01*

-X136902Y337439D01*

-X137050Y337680D01*

-X137158Y337942D01*

-X137224Y338218D01*

-X137241Y338500D01*

-X137224Y338782D01*

-X137158Y339058D01*

-X137050Y339320D01*

-X136902Y339561D01*

-X136718Y339777D01*

-X136502Y339961D01*

-X136261Y340109D01*

-X135999Y340217D01*

-X135792Y340267D01*

-Y360516D01*

-X135799Y360516D01*

-X136474Y360569D01*

-X137132Y360727D01*

-X137757Y360986D01*

-X138334Y361339D01*

-X138849Y361779D01*

-X138922Y361865D01*

-Y339487D01*

-X138880Y339461D01*

-X138664Y339277D01*

-X138480Y339061D01*

-X138332Y338820D01*

-X138224Y338558D01*

-X138158Y338282D01*

-X138135Y338000D01*

-X138158Y337718D01*

-X138224Y337442D01*

-X138332Y337180D01*

-X138480Y336939D01*

-X138664Y336723D01*

-X138880Y336539D01*

-X138922Y336513D01*

-Y207918D01*

-X138643Y207896D01*

-X138367Y207830D01*

-X138105Y207722D01*

-X137864Y207574D01*

-X137648Y207390D01*

-X137464Y207174D01*

-X137316Y206933D01*

-X137208Y206671D01*

-X137142Y206395D01*

-X137119Y206113D01*

-X137142Y205831D01*

-X137208Y205555D01*

-X137316Y205293D01*

-X137464Y205052D01*

-X137648Y204836D01*

-X137864Y204652D01*

-X138105Y204504D01*

-X138367Y204396D01*

-X138643Y204330D01*

-X138922Y204308D01*

-Y203832D01*

-X138872Y203836D01*

-X138590Y203813D01*

-X138314Y203747D01*

-X138052Y203639D01*

-X137811Y203491D01*

-X137595Y203307D01*

-X137411Y203091D01*

-X137263Y202850D01*

-X137155Y202588D01*

-X137089Y202312D01*

-X137066Y202030D01*

-X137089Y201748D01*

-X137155Y201472D01*

-X137263Y201210D01*

-X137411Y200969D01*

-X137595Y200753D01*

-X137811Y200569D01*

-X138052Y200421D01*

-X138314Y200313D01*

-X138590Y200247D01*

-X138872Y200224D01*

-X138922Y200228D01*

-Y199646D01*

-X138643Y199624D01*

-X138367Y199558D01*

-X138105Y199450D01*

-X137864Y199302D01*

-X137648Y199118D01*

-X137464Y198902D01*

-X137316Y198661D01*

-X137208Y198399D01*

-X137142Y198123D01*

-X137119Y197841D01*

-X137142Y197559D01*

-X137208Y197283D01*

-X137316Y197021D01*

-X137464Y196780D01*

-X137648Y196564D01*

-X137864Y196380D01*

-X138105Y196232D01*

-X138367Y196124D01*

-X138643Y196058D01*

-X138922Y196036D01*

-Y194503D01*

-X138643Y194481D01*

-X138367Y194415D01*

-X138105Y194307D01*

-X137864Y194159D01*

-X137648Y193975D01*

-X137464Y193759D01*

-X137316Y193518D01*

-X137208Y193256D01*

-X137142Y192980D01*

-X137119Y192698D01*

-X137142Y192416D01*

-X137208Y192140D01*

-X137316Y191878D01*

-X137464Y191637D01*

-X137648Y191421D01*

-X137864Y191237D01*

-X138105Y191089D01*

-X138367Y190981D01*

-X138643Y190915D01*

-X138922Y190893D01*

-Y187793D01*

-G37*

-G36*

-Y177793D02*X138849Y177879D01*

-X138334Y178319D01*

-X137757Y178672D01*

-X137132Y178931D01*

-X136474Y179089D01*

-X135799Y179142D01*

-X135792Y179142D01*

-Y180516D01*

-X135799Y180516D01*

-X136474Y180569D01*

-X137132Y180727D01*

-X137757Y180986D01*

-X138334Y181339D01*

-X138849Y181779D01*

-X138922Y181865D01*

-Y177793D01*

-G37*

-G36*

-Y97000D02*X135792D01*

-Y170516D01*

-X135799Y170516D01*

-X136474Y170569D01*

-X137132Y170727D01*

-X137757Y170986D01*

-X138334Y171339D01*

-X138849Y171779D01*

-X138922Y171865D01*

-Y97000D01*

-G37*

-G36*

-X135792D02*X130938D01*

-Y355695D01*

-X130941Y355694D01*

-X131223Y355717D01*

-X131499Y355783D01*

-X131761Y355891D01*

-X132002Y356039D01*

-X132218Y356223D01*

-X132402Y356439D01*

-X132550Y356680D01*

-X132658Y356942D01*

-X132724Y357218D01*

-X132741Y357500D01*

-X132724Y357782D01*

-X132658Y358058D01*

-X132550Y358320D01*

-X132402Y358561D01*

-X132218Y358777D01*

-X132002Y358961D01*

-X131761Y359109D01*

-X131499Y359217D01*

-X131223Y359283D01*

-X130941Y359306D01*

-X130938Y359305D01*

-Y397000D01*

-X135792D01*

-Y379142D01*

-X135124Y379089D01*

-X134466Y378931D01*

-X133841Y378672D01*

-X133264Y378319D01*

-X132749Y377879D01*

-X132309Y377364D01*

-X131956Y376787D01*

-X131697Y376162D01*

-X131539Y375504D01*

-X131486Y374829D01*

-X131539Y374154D01*

-X131697Y373496D01*

-X131956Y372871D01*

-X132309Y372294D01*

-X132749Y371779D01*

-X133264Y371339D01*

-X133841Y370986D01*

-X134466Y370727D01*

-X135124Y370569D01*

-X135792Y370516D01*

-Y369142D01*

-X135124Y369089D01*

-X134466Y368931D01*

-X133841Y368672D01*

-X133264Y368319D01*

-X132749Y367879D01*

-X132309Y367364D01*

-X131956Y366787D01*

-X131697Y366162D01*

-X131539Y365504D01*

-X131486Y364829D01*

-X131539Y364154D01*

-X131697Y363496D01*

-X131956Y362871D01*

-X132309Y362294D01*

-X132749Y361779D01*

-X133264Y361339D01*

-X133841Y360986D01*

-X134466Y360727D01*

-X135124Y360569D01*

-X135792Y360516D01*

-Y340267D01*

-X135723Y340283D01*

-X135441Y340306D01*

-X135159Y340283D01*

-X134883Y340217D01*

-X134621Y340109D01*

-X134380Y339961D01*

-X134164Y339777D01*

-X133980Y339561D01*

-X133832Y339320D01*

-X133724Y339058D01*

-X133658Y338782D01*

-X133635Y338500D01*

-X133658Y338218D01*

-X133724Y337942D01*

-X133832Y337680D01*

-X133980Y337439D01*

-X134164Y337223D01*

-X134380Y337039D01*

-X134621Y336891D01*

-X134883Y336783D01*

-X135020Y336750D01*

-X134883Y336717D01*

-X134621Y336609D01*

-X134380Y336461D01*

-X134164Y336277D01*

-X133980Y336061D01*

-X133832Y335820D01*

-X133724Y335558D01*

-X133658Y335282D01*

-X133635Y335000D01*

-X133658Y334718D01*

-X133724Y334442D01*

-X133832Y334180D01*

-X133980Y333939D01*

-X134164Y333723D01*

-X134380Y333539D01*

-X134621Y333391D01*

-X134883Y333283D01*

-X135159Y333217D01*

-X135441Y333194D01*

-X135723Y333217D01*

-X135792Y333233D01*

-Y189142D01*

-X135124Y189089D01*

-X134466Y188931D01*

-X133841Y188672D01*

-X133264Y188319D01*

-X132749Y187879D01*

-X132309Y187364D01*

-X131956Y186787D01*

-X131697Y186162D01*

-X131539Y185504D01*

-X131486Y184829D01*

-X131539Y184154D01*

-X131697Y183496D01*

-X131956Y182871D01*

-X132309Y182294D01*

-X132749Y181779D01*

-X133264Y181339D01*

-X133841Y180986D01*

-X134466Y180727D01*

-X135124Y180569D01*

-X135792Y180516D01*

-Y179142D01*

-X135124Y179089D01*

-X134466Y178931D01*

-X133841Y178672D01*

-X133264Y178319D01*

-X132749Y177879D01*

-X132309Y177364D01*

-X131956Y176787D01*

-X131697Y176162D01*

-X131539Y175504D01*

-X131486Y174829D01*

-X131539Y174154D01*

-X131697Y173496D01*

-X131956Y172871D01*

-X132309Y172294D01*

-X132749Y171779D01*

-X133264Y171339D01*

-X133841Y170986D01*

-X134466Y170727D01*

-X135124Y170569D01*

-X135792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X130938D02*X127938D01*

-Y146195D01*

-X127941Y146194D01*

-X128223Y146217D01*

-X128499Y146283D01*

-X128761Y146391D01*

-X129002Y146539D01*

-X129218Y146723D01*

-X129402Y146939D01*

-X129550Y147180D01*

-X129658Y147442D01*

-X129724Y147718D01*

-X129741Y148000D01*

-X129724Y148282D01*

-X129658Y148558D01*

-X129550Y148820D01*

-X129402Y149061D01*

-X129218Y149277D01*

-X129002Y149461D01*

-X128761Y149609D01*

-X128499Y149717D01*

-X128223Y149783D01*

-X127941Y149806D01*

-X127938Y149805D01*

-Y171097D01*

-X128334Y171339D01*

-X128849Y171779D01*

-X129289Y172294D01*

-X129642Y172871D01*

-X129901Y173496D01*

-X130059Y174154D01*

-X130099Y174829D01*

-X130059Y175504D01*

-X129901Y176162D01*

-X129642Y176787D01*

-X129289Y177364D01*

-X128849Y177879D01*

-X128334Y178319D01*

-X127938Y178561D01*

-Y181097D01*

-X128334Y181339D01*

-X128849Y181779D01*

-X129289Y182294D01*

-X129642Y182871D01*

-X129901Y183496D01*

-X130059Y184154D01*

-X130099Y184829D01*

-X130059Y185504D01*

-X129901Y186162D01*

-X129642Y186787D01*

-X129289Y187364D01*

-X128849Y187879D01*

-X128334Y188319D01*

-X127938Y188561D01*

-Y241003D01*

-X128121Y240891D01*

-X128383Y240783D01*

-X128659Y240717D01*

-X128941Y240694D01*

-X129223Y240717D01*

-X129499Y240783D01*

-X129761Y240891D01*

-X130002Y241039D01*

-X130218Y241223D01*

-X130402Y241439D01*

-X130550Y241680D01*

-X130658Y241942D01*

-X130724Y242218D01*

-X130741Y242500D01*

-X130724Y242782D01*

-X130658Y243058D01*

-X130550Y243320D01*

-X130402Y243561D01*

-X130218Y243777D01*

-X130002Y243961D01*

-X129761Y244109D01*

-X129499Y244217D01*

-X129223Y244283D01*

-X128941Y244306D01*

-X128659Y244283D01*

-X128383Y244217D01*

-X128121Y244109D01*

-X127938Y243997D01*

-Y247003D01*

-X128121Y246891D01*

-X128383Y246783D01*

-X128659Y246717D01*

-X128941Y246694D01*

-X129223Y246717D01*

-X129499Y246783D01*

-X129761Y246891D01*

-X130002Y247039D01*

-X130218Y247223D01*

-X130402Y247439D01*

-X130550Y247680D01*

-X130658Y247942D01*

-X130724Y248218D01*

-X130741Y248500D01*

-X130724Y248782D01*

-X130658Y249058D01*

-X130550Y249320D01*

-X130402Y249561D01*

-X130218Y249777D01*

-X130002Y249961D01*

-X129761Y250109D01*

-X129499Y250217D01*

-X129223Y250283D01*

-X128941Y250306D01*

-X128659Y250283D01*

-X128383Y250217D01*

-X128121Y250109D01*

-X127938Y249997D01*

-Y253503D01*

-X128121Y253391D01*

-X128383Y253283D01*

-X128659Y253217D01*

-X128941Y253194D01*

-X129223Y253217D01*

-X129499Y253283D01*

-X129761Y253391D01*

-X130002Y253539D01*

-X130218Y253723D01*

-X130402Y253939D01*

-X130550Y254180D01*

-X130658Y254442D01*

-X130724Y254718D01*

-X130741Y255000D01*

-X130724Y255282D01*

-X130658Y255558D01*

-X130550Y255820D01*

-X130402Y256061D01*

-X130218Y256277D01*

-X130002Y256461D01*

-X129761Y256609D01*

-X129499Y256717D01*

-X129223Y256783D01*

-X128941Y256806D01*

-X128659Y256783D01*

-X128383Y256717D01*

-X128121Y256609D01*

-X127938Y256497D01*

-Y261003D01*

-X128121Y260891D01*

-X128383Y260783D01*

-X128659Y260717D01*

-X128941Y260694D01*

-X129223Y260717D01*

-X129499Y260783D01*

-X129761Y260891D01*

-X130002Y261039D01*

-X130218Y261223D01*

-X130402Y261439D01*

-X130550Y261680D01*

-X130658Y261942D01*

-X130724Y262218D01*

-X130741Y262500D01*

-X130724Y262782D01*

-X130658Y263058D01*

-X130550Y263320D01*

-X130402Y263561D01*

-X130218Y263777D01*

-X130002Y263961D01*

-X129761Y264109D01*

-X129499Y264217D01*

-X129223Y264283D01*

-X128941Y264306D01*

-X128659Y264283D01*

-X128383Y264217D01*

-X128121Y264109D01*

-X127938Y263997D01*

-Y267003D01*

-X128121Y266891D01*

-X128383Y266783D01*

-X128659Y266717D01*

-X128941Y266694D01*

-X129223Y266717D01*

-X129499Y266783D01*

-X129761Y266891D01*

-X130002Y267039D01*

-X130218Y267223D01*

-X130402Y267439D01*

-X130550Y267680D01*

-X130658Y267942D01*

-X130724Y268218D01*

-X130741Y268500D01*

-X130724Y268782D01*

-X130658Y269058D01*

-X130550Y269320D01*

-X130402Y269561D01*

-X130218Y269777D01*

-X130002Y269961D01*

-X129761Y270109D01*

-X129499Y270217D01*

-X129223Y270283D01*

-X128941Y270306D01*

-X128659Y270283D01*

-X128383Y270217D01*

-X128121Y270109D01*

-X127938Y269997D01*

-Y273003D01*

-X128121Y272891D01*

-X128383Y272783D01*

-X128659Y272717D01*

-X128941Y272694D01*

-X129223Y272717D01*

-X129499Y272783D01*

-X129761Y272891D01*

-X130002Y273039D01*

-X130218Y273223D01*

-X130402Y273439D01*

-X130550Y273680D01*

-X130658Y273942D01*

-X130724Y274218D01*

-X130741Y274500D01*

-X130724Y274782D01*

-X130658Y275058D01*

-X130550Y275320D01*

-X130402Y275561D01*

-X130218Y275777D01*

-X130002Y275961D01*

-X129761Y276109D01*

-X129499Y276217D01*

-X129223Y276283D01*

-X128941Y276306D01*

-X128659Y276283D01*

-X128383Y276217D01*

-X128121Y276109D01*

-X127938Y275997D01*

-Y332998D01*

-X128050Y333180D01*

-X128158Y333442D01*

-X128224Y333718D01*

-X128241Y334000D01*

-X128224Y334282D01*

-X128158Y334558D01*

-X128050Y334820D01*

-X127938Y335002D01*

-Y339498D01*

-X128050Y339680D01*

-X128158Y339942D01*

-X128224Y340218D01*

-X128241Y340500D01*

-X128224Y340782D01*

-X128158Y341058D01*

-X128050Y341320D01*

-X127938Y341502D01*

-Y361097D01*

-X128334Y361339D01*

-X128849Y361779D01*

-X129289Y362294D01*

-X129642Y362871D01*

-X129901Y363496D01*

-X130059Y364154D01*

-X130099Y364829D01*

-X130059Y365504D01*

-X129901Y366162D01*

-X129642Y366787D01*

-X129289Y367364D01*

-X128849Y367879D01*

-X128334Y368319D01*

-X127938Y368561D01*

-Y371097D01*

-X128334Y371339D01*

-X128849Y371779D01*

-X129289Y372294D01*

-X129642Y372871D01*

-X129901Y373496D01*

-X130059Y374154D01*

-X130099Y374829D01*

-X130059Y375504D01*

-X129901Y376162D01*

-X129642Y376787D01*

-X129289Y377364D01*

-X128849Y377879D01*

-X128334Y378319D01*

-X127938Y378561D01*

-Y397000D01*

-X130938D01*

-Y359305D01*

-X130659Y359283D01*

-X130383Y359217D01*

-X130121Y359109D01*

-X129880Y358961D01*

-X129664Y358777D01*

-X129480Y358561D01*

-X129332Y358320D01*

-X129224Y358058D01*

-X129158Y357782D01*

-X129135Y357500D01*

-X129158Y357218D01*

-X129224Y356942D01*

-X129332Y356680D01*

-X129480Y356439D01*

-X129664Y356223D01*

-X129880Y356039D01*

-X130121Y355891D01*

-X130383Y355783D01*

-X130659Y355717D01*

-X130938Y355695D01*

-Y97000D01*

-G37*

-G36*

-X127938Y378561D02*X127757Y378672D01*

-X127132Y378931D01*

-X126474Y379089D01*

-X125799Y379142D01*

-X125792Y379142D01*

-Y397000D01*

-X127938D01*

-Y378561D01*

-G37*

-G36*

-Y368561D02*X127757Y368672D01*

-X127132Y368931D01*

-X126474Y369089D01*

-X125799Y369142D01*

-X125792Y369142D01*

-Y370516D01*

-X125799Y370516D01*

-X126474Y370569D01*

-X127132Y370727D01*

-X127757Y370986D01*

-X127938Y371097D01*

-Y368561D01*

-G37*

-G36*

-Y341502D02*X127902Y341561D01*

-X127718Y341777D01*

-X127502Y341961D01*

-X127261Y342109D01*

-X126999Y342217D01*

-X126723Y342283D01*

-X126441Y342306D01*

-X126159Y342283D01*

-X125883Y342217D01*

-X125792Y342180D01*

-Y360516D01*

-X125799Y360516D01*

-X126474Y360569D01*

-X127132Y360727D01*

-X127757Y360986D01*

-X127938Y361097D01*

-Y341502D01*

-G37*

-G36*

-Y335002D02*X127902Y335061D01*

-X127718Y335277D01*

-X127502Y335461D01*

-X127261Y335609D01*

-X126999Y335717D01*

-X126723Y335783D01*

-X126441Y335806D01*

-X126159Y335783D01*

-X125883Y335717D01*

-X125792Y335680D01*

-Y338820D01*

-X125883Y338783D01*

-X126159Y338717D01*

-X126441Y338694D01*

-X126723Y338717D01*

-X126999Y338783D01*

-X127261Y338891D01*

-X127502Y339039D01*

-X127718Y339223D01*

-X127902Y339439D01*

-X127938Y339498D01*

-Y335002D01*

-G37*

-G36*

-Y188561D02*X127757Y188672D01*

-X127132Y188931D01*

-X126474Y189089D01*

-X125799Y189142D01*

-X125792Y189142D01*

-Y300863D01*

-X125892Y300924D01*

-X126108Y301108D01*

-X126292Y301324D01*

-X126440Y301565D01*

-X126548Y301827D01*

-X126614Y302103D01*

-X126631Y302385D01*

-X126614Y302667D01*

-X126548Y302943D01*

-X126440Y303205D01*

-X126292Y303446D01*

-X126108Y303662D01*

-X125892Y303846D01*

-X125792Y303907D01*

-Y332320D01*

-X125883Y332283D01*

-X126159Y332217D01*

-X126441Y332194D01*

-X126723Y332217D01*

-X126999Y332283D01*

-X127261Y332391D01*

-X127502Y332539D01*

-X127718Y332723D01*

-X127902Y332939D01*

-X127938Y332998D01*

-Y275997D01*

-X127880Y275961D01*

-X127664Y275777D01*

-X127480Y275561D01*

-X127332Y275320D01*

-X127224Y275058D01*

-X127158Y274782D01*

-X127135Y274500D01*

-X127158Y274218D01*

-X127224Y273942D01*

-X127332Y273680D01*

-X127480Y273439D01*

-X127664Y273223D01*

-X127880Y273039D01*

-X127938Y273003D01*

-Y269997D01*

-X127880Y269961D01*

-X127664Y269777D01*

-X127480Y269561D01*

-X127332Y269320D01*

-X127224Y269058D01*

-X127158Y268782D01*

-X127135Y268500D01*

-X127158Y268218D01*

-X127224Y267942D01*

-X127332Y267680D01*

-X127480Y267439D01*

-X127664Y267223D01*

-X127880Y267039D01*

-X127938Y267003D01*

-Y263997D01*

-X127880Y263961D01*

-X127664Y263777D01*

-X127480Y263561D01*

-X127332Y263320D01*

-X127224Y263058D01*

-X127158Y262782D01*

-X127135Y262500D01*

-X127158Y262218D01*

-X127224Y261942D01*

-X127332Y261680D01*

-X127480Y261439D01*

-X127664Y261223D01*

-X127880Y261039D01*

-X127938Y261003D01*

-Y256497D01*

-X127880Y256461D01*

-X127664Y256277D01*

-X127480Y256061D01*

-X127332Y255820D01*

-X127224Y255558D01*

-X127158Y255282D01*

-X127135Y255000D01*

-X127158Y254718D01*

-X127224Y254442D01*

-X127332Y254180D01*

-X127480Y253939D01*

-X127664Y253723D01*

-X127880Y253539D01*

-X127938Y253503D01*

-Y249997D01*

-X127880Y249961D01*

-X127664Y249777D01*

-X127480Y249561D01*

-X127332Y249320D01*

-X127224Y249058D01*

-X127158Y248782D01*

-X127135Y248500D01*

-X127158Y248218D01*

-X127224Y247942D01*

-X127332Y247680D01*

-X127480Y247439D01*

-X127664Y247223D01*

-X127880Y247039D01*

-X127938Y247003D01*

-Y243997D01*

-X127880Y243961D01*

-X127664Y243777D01*

-X127480Y243561D01*

-X127332Y243320D01*

-X127224Y243058D01*

-X127158Y242782D01*

-X127135Y242500D01*

-X127158Y242218D01*

-X127224Y241942D01*

-X127332Y241680D01*

-X127480Y241439D01*

-X127664Y241223D01*

-X127880Y241039D01*

-X127938Y241003D01*

-Y188561D01*

-G37*

-G36*

-Y178561D02*X127757Y178672D01*

-X127132Y178931D01*

-X126474Y179089D01*

-X125799Y179142D01*

-X125792Y179142D01*

-Y180516D01*

-X125799Y180516D01*

-X126474Y180569D01*

-X127132Y180727D01*

-X127757Y180986D01*

-X127938Y181097D01*

-Y178561D01*

-G37*

-G36*

-Y97000D02*X125792D01*

-Y170516D01*

-X125799Y170516D01*

-X126474Y170569D01*

-X127132Y170727D01*

-X127757Y170986D01*

-X127938Y171097D01*

-Y149805D01*

-X127659Y149783D01*

-X127383Y149717D01*

-X127121Y149609D01*

-X126880Y149461D01*

-X126664Y149277D01*

-X126480Y149061D01*

-X126332Y148820D01*

-X126224Y148558D01*

-X126158Y148282D01*

-X126135Y148000D01*

-X126158Y147718D01*

-X126224Y147442D01*

-X126332Y147180D01*

-X126480Y146939D01*

-X126664Y146723D01*

-X126880Y146539D01*

-X127121Y146391D01*

-X127383Y146283D01*

-X127659Y146217D01*

-X127938Y146195D01*

-Y97000D01*

-G37*

-G36*

-X121938Y182913D02*X121956Y182871D01*

-X122309Y182294D01*

-X122749Y181779D01*

-X123264Y181339D01*

-X123841Y180986D01*

-X124466Y180727D01*

-X125124Y180569D01*

-X125792Y180516D01*

-Y179142D01*

-X125124Y179089D01*

-X124466Y178931D01*

-X123841Y178672D01*

-X123264Y178319D01*

-X122749Y177879D01*

-X122309Y177364D01*

-X121956Y176787D01*

-X121938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y362913D02*X121956Y362871D01*

-X122309Y362294D01*

-X122749Y361779D01*

-X123264Y361339D01*

-X123841Y360986D01*

-X124466Y360727D01*

-X125124Y360569D01*

-X125792Y360516D01*

-Y342180D01*

-X125621Y342109D01*

-X125380Y341961D01*

-X125164Y341777D01*

-X124980Y341561D01*

-X124832Y341320D01*

-X124724Y341058D01*

-X124658Y340782D01*

-X124635Y340500D01*

-X124658Y340218D01*

-X124724Y339942D01*

-X124832Y339680D01*

-X124980Y339439D01*

-X125164Y339223D01*

-X125380Y339039D01*

-X125621Y338891D01*

-X125792Y338820D01*

-Y335680D01*

-X125621Y335609D01*

-X125380Y335461D01*

-X125164Y335277D01*

-X124980Y335061D01*

-X124832Y334820D01*

-X124724Y334558D01*

-X124658Y334282D01*

-X124635Y334000D01*

-X124658Y333718D01*

-X124724Y333442D01*

-X124832Y333180D01*

-X124980Y332939D01*

-X125164Y332723D01*

-X125380Y332539D01*

-X125621Y332391D01*

-X125792Y332320D01*

-Y303907D01*

-X125651Y303994D01*

-X125389Y304102D01*

-X125113Y304168D01*

-X124831Y304191D01*

-X124549Y304168D01*

-X124273Y304102D01*

-X124011Y303994D01*

-X123770Y303846D01*

-X123554Y303662D01*

-X123370Y303446D01*

-X123222Y303205D01*

-X123114Y302943D01*

-X123048Y302667D01*

-X123025Y302385D01*

-X123048Y302103D01*

-X123114Y301827D01*

-X123222Y301565D01*

-X123370Y301324D01*

-X123554Y301108D01*

-X123770Y300924D01*

-X124011Y300776D01*

-X124273Y300668D01*

-X124549Y300602D01*

-X124831Y300579D01*

-X125113Y300602D01*

-X125389Y300668D01*

-X125651Y300776D01*

-X125792Y300863D01*

-Y189142D01*

-X125124Y189089D01*

-X124466Y188931D01*

-X123841Y188672D01*

-X123264Y188319D01*

-X122749Y187879D01*

-X122309Y187364D01*

-X121956Y186787D01*

-X121938Y186745D01*

-Y355695D01*

-X121941Y355694D01*

-X122223Y355717D01*

-X122499Y355783D01*

-X122761Y355891D01*

-X123002Y356039D01*

-X123218Y356223D01*

-X123402Y356439D01*

-X123550Y356680D01*

-X123658Y356942D01*

-X123724Y357218D01*

-X123741Y357500D01*

-X123724Y357782D01*

-X123658Y358058D01*

-X123550Y358320D01*

-X123402Y358561D01*

-X123218Y358777D01*

-X123002Y358961D01*

-X122761Y359109D01*

-X122499Y359217D01*

-X122223Y359283D01*

-X121941Y359306D01*

-X121938Y359305D01*

-Y362913D01*

-G37*

-G36*

-Y372913D02*X121956Y372871D01*

-X122309Y372294D01*

-X122749Y371779D01*

-X123264Y371339D01*

-X123841Y370986D01*

-X124466Y370727D01*

-X125124Y370569D01*

-X125792Y370516D01*

-Y369142D01*

-X125124Y369089D01*

-X124466Y368931D01*

-X123841Y368672D01*

-X123264Y368319D01*

-X122749Y367879D01*

-X122309Y367364D01*

-X121956Y366787D01*

-X121938Y366745D01*

-Y372913D01*

-G37*

-G36*

-Y397000D02*X125792D01*

-Y379142D01*

-X125124Y379089D01*

-X124466Y378931D01*

-X123841Y378672D01*

-X123264Y378319D01*

-X122749Y377879D01*

-X122309Y377364D01*

-X121956Y376787D01*

-X121938Y376745D01*

-Y397000D01*

-G37*

-G36*

-X125792Y97000D02*X121938D01*

-Y172913D01*

-X121956Y172871D01*

-X122309Y172294D01*

-X122749Y171779D01*

-X123264Y171339D01*

-X123841Y170986D01*

-X124466Y170727D01*

-X125124Y170569D01*

-X125792Y170516D01*

-Y97000D01*

-G37*

-G36*

-X121938D02*X117938D01*

-Y171097D01*

-X118334Y171339D01*

-X118849Y171779D01*

-X119289Y172294D01*

-X119642Y172871D01*

-X119901Y173496D01*

-X120059Y174154D01*

-X120099Y174829D01*

-X120059Y175504D01*

-X119901Y176162D01*

-X119642Y176787D01*

-X119289Y177364D01*

-X118849Y177879D01*

-X118334Y178319D01*

-X117938Y178561D01*

-Y181097D01*

-X118334Y181339D01*

-X118849Y181779D01*

-X119289Y182294D01*

-X119642Y182871D01*

-X119901Y183496D01*

-X120059Y184154D01*

-X120099Y184829D01*

-X120059Y185504D01*

-X119901Y186162D01*

-X119642Y186787D01*

-X119289Y187364D01*

-X118849Y187879D01*

-X118334Y188319D01*

-X117938Y188561D01*

-Y332195D01*

-X117941Y332194D01*

-X118223Y332217D01*

-X118499Y332283D01*

-X118761Y332391D01*

-X119002Y332539D01*

-X119218Y332723D01*

-X119402Y332939D01*

-X119550Y333180D01*

-X119658Y333442D01*

-X119724Y333718D01*

-X119741Y334000D01*

-X119724Y334282D01*

-X119658Y334558D01*

-X119550Y334820D01*

-X119402Y335061D01*

-X119218Y335277D01*

-X119002Y335461D01*

-X118761Y335609D01*

-X118499Y335717D01*

-X118223Y335783D01*

-X117941Y335806D01*

-X117938Y335805D01*

-Y361097D01*

-X118334Y361339D01*

-X118849Y361779D01*

-X119289Y362294D01*

-X119642Y362871D01*

-X119901Y363496D01*

-X120059Y364154D01*

-X120099Y364829D01*

-X120059Y365504D01*

-X119901Y366162D01*

-X119642Y366787D01*

-X119289Y367364D01*

-X118849Y367879D01*

-X118334Y368319D01*

-X117938Y368561D01*

-Y371097D01*

-X118334Y371339D01*

-X118849Y371779D01*

-X119289Y372294D01*

-X119642Y372871D01*

-X119901Y373496D01*

-X120059Y374154D01*

-X120099Y374829D01*

-X120059Y375504D01*

-X119901Y376162D01*

-X119642Y376787D01*

-X119289Y377364D01*

-X118849Y377879D01*

-X118334Y378319D01*

-X117938Y378561D01*

-Y397000D01*

-X121938D01*

-Y376745D01*

-X121697Y376162D01*

-X121539Y375504D01*

-X121486Y374829D01*

-X121539Y374154D01*

-X121697Y373496D01*

-X121938Y372913D01*

-Y366745D01*

-X121697Y366162D01*

-X121539Y365504D01*

-X121486Y364829D01*

-X121539Y364154D01*

-X121697Y363496D01*

-X121938Y362913D01*

-Y359305D01*

-X121659Y359283D01*

-X121383Y359217D01*

-X121121Y359109D01*

-X120880Y358961D01*

-X120664Y358777D01*

-X120480Y358561D01*

-X120332Y358320D01*

-X120224Y358058D01*

-X120158Y357782D01*

-X120135Y357500D01*

-X120158Y357218D01*

-X120224Y356942D01*

-X120332Y356680D01*

-X120480Y356439D01*

-X120664Y356223D01*

-X120880Y356039D01*

-X121121Y355891D01*

-X121383Y355783D01*

-X121659Y355717D01*

-X121938Y355695D01*

-Y186745D01*

-X121697Y186162D01*

-X121539Y185504D01*

-X121486Y184829D01*

-X121539Y184154D01*

-X121697Y183496D01*

-X121938Y182913D01*

-Y176745D01*

-X121697Y176162D01*

-X121539Y175504D01*

-X121486Y174829D01*

-X121539Y174154D01*

-X121697Y173496D01*

-X121938Y172913D01*

-Y97000D01*

-G37*

-G36*

-X117938Y378561D02*X117757Y378672D01*

-X117132Y378931D01*

-X116474Y379089D01*

-X115799Y379142D01*

-X115792Y379142D01*

-Y397000D01*

-X117938D01*

-Y378561D01*

-G37*

-G36*

-Y368561D02*X117757Y368672D01*

-X117132Y368931D01*

-X116474Y369089D01*

-X115799Y369142D01*

-X115792Y369142D01*

-Y370516D01*

-X115799Y370516D01*

-X116474Y370569D01*

-X117132Y370727D01*

-X117757Y370986D01*

-X117938Y371097D01*

-Y368561D01*

-G37*

-G36*

-Y188561D02*X117757Y188672D01*

-X117132Y188931D01*

-X116474Y189089D01*

-X115799Y189142D01*

-X115792Y189142D01*

-Y360516D01*

-X115799Y360516D01*

-X116474Y360569D01*

-X117132Y360727D01*

-X117757Y360986D01*

-X117938Y361097D01*

-Y335805D01*

-X117659Y335783D01*

-X117383Y335717D01*

-X117121Y335609D01*

-X116880Y335461D01*

-X116664Y335277D01*

-X116480Y335061D01*

-X116332Y334820D01*

-X116224Y334558D01*

-X116158Y334282D01*

-X116135Y334000D01*

-X116158Y333718D01*

-X116224Y333442D01*

-X116332Y333180D01*

-X116480Y332939D01*

-X116664Y332723D01*

-X116880Y332539D01*

-X117121Y332391D01*

-X117383Y332283D01*

-X117659Y332217D01*

-X117938Y332195D01*

-Y188561D01*

-G37*

-G36*

-Y178561D02*X117757Y178672D01*

-X117132Y178931D01*

-X116474Y179089D01*

-X115799Y179142D01*

-X115792Y179142D01*

-Y180516D01*

-X115799Y180516D01*

-X116474Y180569D01*

-X117132Y180727D01*

-X117757Y180986D01*

-X117938Y181097D01*

-Y178561D01*

-G37*

-G36*

-Y97000D02*X115792D01*

-Y120311D01*

-X115902Y120439D01*

-X116050Y120680D01*

-X116158Y120942D01*

-X116224Y121218D01*

-X116241Y121500D01*

-X116224Y121782D01*

-X116158Y122058D01*

-X116050Y122320D01*

-X115902Y122561D01*

-X115792Y122689D01*

-Y130733D01*

-X115999Y130783D01*

-X116261Y130891D01*

-X116502Y131039D01*

-X116718Y131223D01*

-X116902Y131439D01*

-X117050Y131680D01*

-X117158Y131942D01*

-X117224Y132218D01*

-X117241Y132500D01*

-X117224Y132782D01*

-X117158Y133058D01*

-X117050Y133320D01*

-X116902Y133561D01*

-X116718Y133777D01*

-X116502Y133961D01*

-X116261Y134109D01*

-X115999Y134217D01*

-X115792Y134267D01*

-Y170516D01*

-X115799Y170516D01*

-X116474Y170569D01*

-X117132Y170727D01*

-X117757Y170986D01*

-X117938Y171097D01*

-Y97000D01*

-G37*

-G36*

-X112219Y182441D02*X112309Y182294D01*

-X112749Y181779D01*

-X113264Y181339D01*

-X113841Y180986D01*

-X114466Y180727D01*

-X115124Y180569D01*

-X115792Y180516D01*

-Y179142D01*

-X115124Y179089D01*

-X114466Y178931D01*

-X113841Y178672D01*

-X113264Y178319D01*

-X112749Y177879D01*

-X112309Y177364D01*

-X112219Y177217D01*

-Y182441D01*

-G37*

-G36*

-Y362441D02*X112309Y362294D01*

-X112749Y361779D01*

-X113264Y361339D01*

-X113841Y360986D01*

-X114466Y360727D01*

-X115124Y360569D01*

-X115792Y360516D01*

-Y189142D01*

-X115124Y189089D01*

-X114466Y188931D01*

-X113841Y188672D01*

-X113264Y188319D01*

-X112749Y187879D01*

-X112309Y187364D01*

-X112219Y187217D01*

-Y332216D01*

-X112223Y332217D01*

-X112499Y332283D01*

-X112761Y332391D01*

-X113002Y332539D01*

-X113218Y332723D01*

-X113402Y332939D01*

-X113550Y333180D01*

-X113658Y333442D01*

-X113724Y333718D01*

-X113741Y334000D01*

-X113724Y334282D01*

-X113658Y334558D01*

-X113550Y334820D01*

-X113402Y335061D01*

-X113218Y335277D01*

-X113002Y335461D01*

-X112761Y335609D01*

-X112499Y335717D01*

-X112223Y335783D01*

-X112219Y335784D01*

-Y339216D01*

-X112223Y339217D01*

-X112499Y339283D01*

-X112761Y339391D01*

-X113002Y339539D01*

-X113218Y339723D01*

-X113402Y339939D01*

-X113550Y340180D01*

-X113658Y340442D01*

-X113724Y340718D01*

-X113741Y341000D01*

-X113724Y341282D01*

-X113658Y341558D01*

-X113550Y341820D01*

-X113402Y342061D01*

-X113218Y342277D01*

-X113002Y342461D01*

-X112761Y342609D01*

-X112499Y342717D01*

-X112223Y342783D01*

-X112219Y342784D01*

-Y355716D01*

-X112223Y355717D01*

-X112499Y355783D01*

-X112761Y355891D01*

-X113002Y356039D01*

-X113218Y356223D01*

-X113402Y356439D01*

-X113550Y356680D01*

-X113658Y356942D01*

-X113724Y357218D01*

-X113741Y357500D01*

-X113724Y357782D01*

-X113658Y358058D01*

-X113550Y358320D01*

-X113402Y358561D01*

-X113218Y358777D01*

-X113002Y358961D01*

-X112761Y359109D01*

-X112499Y359217D01*

-X112223Y359283D01*

-X112219Y359284D01*

-Y362441D01*

-G37*

-G36*

-Y372441D02*X112309Y372294D01*

-X112749Y371779D01*

-X113264Y371339D01*

-X113841Y370986D01*

-X114466Y370727D01*

-X115124Y370569D01*

-X115792Y370516D01*

-Y369142D01*

-X115124Y369089D01*

-X114466Y368931D01*

-X113841Y368672D01*

-X113264Y368319D01*

-X112749Y367879D01*

-X112309Y367364D01*

-X112219Y367217D01*

-Y372441D01*

-G37*

-G36*

-Y397000D02*X115792D01*

-Y379142D01*

-X115124Y379089D01*

-X114466Y378931D01*

-X113841Y378672D01*

-X113264Y378319D01*

-X112749Y377879D01*

-X112309Y377364D01*

-X112219Y377217D01*

-Y397000D01*

-G37*

-G36*

-X115792Y97000D02*X112219D01*

-Y125535D01*

-X112222Y125534D01*

-X112504Y125557D01*

-X112780Y125623D01*

-X113042Y125731D01*

-X113283Y125879D01*

-X113499Y126063D01*

-X113683Y126279D01*

-X113831Y126520D01*

-X113939Y126782D01*

-X114005Y127058D01*

-X114022Y127340D01*

-X114005Y127622D01*

-X113939Y127898D01*

-X113831Y128160D01*

-X113683Y128401D01*

-X113499Y128617D01*

-X113283Y128801D01*

-X113042Y128949D01*

-X112780Y129057D01*

-X112504Y129123D01*

-X112222Y129146D01*

-X112219Y129145D01*

-Y172441D01*

-X112309Y172294D01*

-X112749Y171779D01*

-X113264Y171339D01*

-X113841Y170986D01*

-X114466Y170727D01*

-X115124Y170569D01*

-X115792Y170516D01*

-Y134267D01*

-X115723Y134283D01*

-X115441Y134306D01*

-X115159Y134283D01*

-X114883Y134217D01*

-X114621Y134109D01*

-X114380Y133961D01*

-X114164Y133777D01*

-X113980Y133561D01*

-X113832Y133320D01*

-X113724Y133058D01*

-X113658Y132782D01*

-X113635Y132500D01*

-X113658Y132218D01*

-X113724Y131942D01*

-X113832Y131680D01*

-X113980Y131439D01*

-X114164Y131223D01*

-X114380Y131039D01*

-X114621Y130891D01*

-X114883Y130783D01*

-X115159Y130717D01*

-X115441Y130694D01*

-X115723Y130717D01*

-X115792Y130733D01*

-Y122689D01*

-X115718Y122777D01*

-X115502Y122961D01*

-X115261Y123109D01*

-X114999Y123217D01*

-X114723Y123283D01*

-X114441Y123306D01*

-X114159Y123283D01*

-X113883Y123217D01*

-X113621Y123109D01*

-X113380Y122961D01*

-X113164Y122777D01*

-X112980Y122561D01*

-X112832Y122320D01*

-X112724Y122058D01*

-X112658Y121782D01*

-X112635Y121500D01*

-X112658Y121218D01*

-X112724Y120942D01*

-X112832Y120680D01*

-X112980Y120439D01*

-X113164Y120223D01*

-X113380Y120039D01*

-X113621Y119891D01*

-X113883Y119783D01*

-X114159Y119717D01*

-X114441Y119694D01*

-X114723Y119717D01*

-X114999Y119783D01*

-X115261Y119891D01*

-X115502Y120039D01*

-X115718Y120223D01*

-X115792Y120311D01*

-Y97000D01*

-G37*

-G36*

-X112219D02*X109343D01*

-Y172099D01*

-X109371Y172082D01*

-X109444Y172052D01*

-X109521Y172034D01*

-X109599Y172027D01*

-X109677Y172034D01*

-X109754Y172052D01*

-X109827Y172082D01*

-X109894Y172123D01*

-X109954Y172174D01*

-X110005Y172234D01*

-X110046Y172301D01*

-X110076Y172374D01*

-X110094Y172451D01*

-X110099Y172529D01*

-Y177129D01*

-X110094Y177207D01*

-X110076Y177284D01*

-X110046Y177357D01*

-X110005Y177424D01*

-X109954Y177484D01*

-X109894Y177535D01*

-X109827Y177576D01*

-X109754Y177606D01*

-X109677Y177624D01*

-X109599Y177631D01*

-X109521Y177624D01*

-X109444Y177606D01*

-X109371Y177576D01*

-X109343Y177559D01*

-Y182501D01*

-X109366Y182513D01*

-X109429Y182561D01*

-X109483Y182618D01*

-X109526Y182684D01*

-X109717Y183045D01*

-X109868Y183425D01*

-X109983Y183817D01*

-X110060Y184218D01*

-X110099Y184625D01*

-Y185033D01*

-X110060Y185440D01*

-X109983Y185841D01*

-X109868Y186233D01*

-X109717Y186613D01*

-X109530Y186976D01*

-X109486Y187042D01*

-X109431Y187100D01*

-X109368Y187148D01*

-X109343Y187161D01*

-Y247000D01*

-X109941D01*

-Y322000D01*

-X109343D01*

-Y362099D01*

-X109371Y362082D01*

-X109444Y362052D01*

-X109521Y362034D01*

-X109599Y362027D01*

-X109677Y362034D01*

-X109754Y362052D01*

-X109827Y362082D01*

-X109894Y362123D01*

-X109954Y362174D01*

-X110005Y362234D01*

-X110046Y362301D01*

-X110076Y362374D01*

-X110094Y362451D01*

-X110099Y362529D01*

-Y367129D01*

-X110094Y367207D01*

-X110076Y367284D01*

-X110046Y367357D01*

-X110005Y367424D01*

-X109954Y367484D01*

-X109894Y367535D01*

-X109827Y367576D01*

-X109754Y367606D01*

-X109677Y367624D01*

-X109599Y367631D01*

-X109521Y367624D01*

-X109444Y367606D01*

-X109371Y367576D01*

-X109343Y367559D01*

-Y372501D01*

-X109366Y372513D01*

-X109429Y372561D01*

-X109483Y372618D01*

-X109526Y372684D01*

-X109717Y373045D01*

-X109868Y373425D01*

-X109983Y373817D01*

-X110060Y374218D01*

-X110099Y374625D01*

-Y375033D01*

-X110060Y375440D01*

-X109983Y375841D01*

-X109868Y376233D01*

-X109717Y376613D01*

-X109530Y376976D01*

-X109486Y377042D01*

-X109431Y377100D01*

-X109368Y377148D01*

-X109343Y377161D01*

-Y397000D01*

-X112219D01*

-Y377217D01*

-X111956Y376787D01*

-X111697Y376162D01*

-X111539Y375504D01*

-X111486Y374829D01*

-X111539Y374154D01*

-X111697Y373496D01*

-X111956Y372871D01*

-X112219Y372441D01*

-Y367217D01*

-X111956Y366787D01*

-X111697Y366162D01*

-X111539Y365504D01*

-X111486Y364829D01*

-X111539Y364154D01*

-X111697Y363496D01*

-X111956Y362871D01*

-X112219Y362441D01*

-Y359284D01*

-X111941Y359306D01*

-X111659Y359283D01*

-X111383Y359217D01*

-X111121Y359109D01*

-X110880Y358961D01*

-X110664Y358777D01*

-X110480Y358561D01*

-X110332Y358320D01*

-X110224Y358058D01*

-X110158Y357782D01*

-X110135Y357500D01*

-X110158Y357218D01*

-X110224Y356942D01*

-X110332Y356680D01*

-X110480Y356439D01*

-X110664Y356223D01*

-X110880Y356039D01*

-X111121Y355891D01*

-X111383Y355783D01*

-X111659Y355717D01*

-X111941Y355694D01*

-X112219Y355716D01*

-Y342784D01*

-X111941Y342806D01*

-X111659Y342783D01*

-X111383Y342717D01*

-X111121Y342609D01*

-X110880Y342461D01*

-X110664Y342277D01*

-X110480Y342061D01*

-X110332Y341820D01*

-X110224Y341558D01*

-X110158Y341282D01*

-X110135Y341000D01*

-X110158Y340718D01*

-X110224Y340442D01*

-X110332Y340180D01*

-X110480Y339939D01*

-X110664Y339723D01*

-X110880Y339539D01*

-X111121Y339391D01*

-X111383Y339283D01*

-X111659Y339217D01*

-X111941Y339194D01*

-X112219Y339216D01*

-Y335784D01*

-X111941Y335806D01*

-X111659Y335783D01*

-X111383Y335717D01*

-X111121Y335609D01*

-X110880Y335461D01*

-X110664Y335277D01*

-X110480Y335061D01*

-X110332Y334820D01*

-X110224Y334558D01*

-X110158Y334282D01*

-X110135Y334000D01*

-X110158Y333718D01*

-X110224Y333442D01*

-X110332Y333180D01*

-X110480Y332939D01*

-X110664Y332723D01*

-X110880Y332539D01*

-X111121Y332391D01*

-X111383Y332283D01*

-X111659Y332217D01*

-X111941Y332194D01*

-X112219Y332216D01*

-Y187217D01*

-X111956Y186787D01*

-X111697Y186162D01*

-X111539Y185504D01*

-X111486Y184829D01*

-X111539Y184154D01*

-X111697Y183496D01*

-X111956Y182871D01*

-X112219Y182441D01*

-Y177217D01*

-X111956Y176787D01*

-X111697Y176162D01*

-X111539Y175504D01*

-X111486Y174829D01*

-X111539Y174154D01*

-X111697Y173496D01*

-X111956Y172871D01*

-X112219Y172441D01*

-Y129145D01*

-X111940Y129123D01*

-X111664Y129057D01*

-X111402Y128949D01*

-X111161Y128801D01*

-X110945Y128617D01*

-X110761Y128401D01*

-X110613Y128160D01*

-X110505Y127898D01*

-X110439Y127622D01*

-X110416Y127340D01*

-X110439Y127058D01*

-X110505Y126782D01*

-X110613Y126520D01*

-X110761Y126279D01*

-X110945Y126063D01*

-X111161Y125879D01*

-X111402Y125731D01*

-X111664Y125623D01*

-X111940Y125557D01*

-X112219Y125535D01*

-Y97000D01*

-G37*

-G36*

-X109343Y322000D02*X105801D01*

-Y335362D01*

-X106080Y335817D01*

-X106941Y337896D01*

-X107467Y340085D01*

-X107599Y342329D01*

-X107467Y344573D01*

-X106941Y346762D01*

-X106080Y348841D01*

-X105801Y349296D01*

-Y360529D01*

-X108099D01*

-X108177Y360534D01*

-X108254Y360552D01*

-X108327Y360582D01*

-X108394Y360623D01*

-X108454Y360674D01*

-X108505Y360734D01*

-X108546Y360801D01*

-X108576Y360874D01*

-X108594Y360951D01*

-X108601Y361029D01*

-X108594Y361107D01*

-X108576Y361184D01*

-X108546Y361257D01*

-X108505Y361324D01*

-X108454Y361384D01*

-X108394Y361435D01*

-X108327Y361476D01*

-X108254Y361506D01*

-X108177Y361524D01*

-X108099Y361529D01*

-X105801D01*

-Y368129D01*

-X108099D01*

-X108177Y368134D01*

-X108254Y368152D01*

-X108327Y368182D01*

-X108394Y368223D01*

-X108454Y368274D01*

-X108505Y368334D01*

-X108546Y368401D01*

-X108576Y368474D01*

-X108594Y368551D01*

-X108601Y368629D01*

-X108594Y368707D01*

-X108576Y368784D01*

-X108546Y368857D01*

-X108505Y368924D01*

-X108454Y368984D01*

-X108394Y369035D01*

-X108327Y369076D01*

-X108254Y369106D01*

-X108177Y369124D01*

-X108099Y369129D01*

-X105801D01*

-Y370529D01*

-X106003D01*

-X106410Y370568D01*

-X106811Y370645D01*

-X107203Y370760D01*

-X107583Y370911D01*

-X107946Y371098D01*

-X108012Y371142D01*

-X108070Y371197D01*

-X108118Y371260D01*

-X108156Y371329D01*

-X108182Y371404D01*

-X108197Y371482D01*

-X108199Y371561D01*

-X108189Y371640D01*

-X108166Y371716D01*

-X108132Y371788D01*

-X108088Y371853D01*

-X108033Y371911D01*

-X107970Y371959D01*

-X107901Y371997D01*

-X107826Y372023D01*

-X107748Y372038D01*

-X107669Y372040D01*

-X107590Y372030D01*

-X107514Y372007D01*

-X107443Y371972D01*

-X107167Y371826D01*

-X106876Y371710D01*

-X106575Y371622D01*

-X106267Y371562D01*

-X105956Y371533D01*

-X105801D01*

-Y378125D01*

-X105956D01*

-X106267Y378096D01*

-X106575Y378036D01*

-X106876Y377948D01*

-X107167Y377832D01*

-X107445Y377689D01*

-X107515Y377654D01*

-X107591Y377632D01*

-X107669Y377622D01*

-X107748Y377624D01*

-X107825Y377638D01*

-X107899Y377665D01*

-X107968Y377702D01*

-X108031Y377750D01*

-X108085Y377807D01*

-X108129Y377872D01*

-X108163Y377943D01*

-X108185Y378019D01*

-X108195Y378097D01*

-X108193Y378176D01*

-X108179Y378253D01*

-X108152Y378327D01*

-X108115Y378396D01*

-X108067Y378459D01*

-X108010Y378513D01*

-X107944Y378556D01*

-X107583Y378747D01*

-X107203Y378898D01*

-X106811Y379013D01*

-X106410Y379090D01*

-X106003Y379129D01*

-X105801D01*

-Y397000D01*

-X109343D01*

-Y377161D01*

-X109299Y377186D01*

-X109224Y377212D01*

-X109146Y377227D01*

-X109067Y377229D01*

-X108988Y377219D01*

-X108912Y377196D01*

-X108840Y377162D01*

-X108775Y377118D01*

-X108717Y377063D01*

-X108669Y377000D01*

-X108631Y376931D01*

-X108605Y376856D01*

-X108590Y376778D01*

-X108588Y376699D01*

-X108598Y376620D01*

-X108621Y376544D01*

-X108656Y376473D01*

-X108802Y376197D01*

-X108918Y375906D01*

-X109006Y375605D01*

-X109066Y375297D01*

-X109095Y374986D01*

-Y374672D01*

-X109066Y374361D01*

-X109006Y374053D01*

-X108918Y373752D01*

-X108802Y373461D01*

-X108659Y373183D01*

-X108624Y373113D01*

-X108602Y373037D01*

-X108592Y372959D01*

-X108594Y372880D01*

-X108608Y372803D01*

-X108635Y372729D01*

-X108672Y372660D01*

-X108720Y372597D01*

-X108777Y372543D01*

-X108842Y372499D01*

-X108913Y372465D01*

-X108989Y372443D01*

-X109067Y372433D01*

-X109146Y372435D01*

-X109223Y372449D01*

-X109297Y372476D01*

-X109343Y372501D01*

-Y367559D01*

-X109304Y367535D01*

-X109244Y367484D01*

-X109193Y367424D01*

-X109152Y367357D01*

-X109122Y367284D01*

-X109104Y367207D01*

-X109099Y367129D01*

-Y362529D01*

-X109104Y362451D01*

-X109122Y362374D01*

-X109152Y362301D01*

-X109193Y362234D01*

-X109244Y362174D01*

-X109304Y362123D01*

-X109343Y362099D01*

-Y322000D01*

-G37*

-G36*

-Y97000D02*X105801D01*

-Y146817D01*

-X105883Y146783D01*

-X106159Y146717D01*

-X106441Y146694D01*

-X106723Y146717D01*

-X106999Y146783D01*

-X107261Y146891D01*

-X107502Y147039D01*

-X107718Y147223D01*

-X107902Y147439D01*

-X108050Y147680D01*

-X108158Y147942D01*

-X108224Y148218D01*

-X108241Y148500D01*

-X108224Y148782D01*

-X108158Y149058D01*

-X108050Y149320D01*

-X107902Y149561D01*

-X107718Y149777D01*

-X107502Y149961D01*

-X107261Y150109D01*

-X106999Y150217D01*

-X106723Y150283D01*

-X106441Y150306D01*

-X106159Y150283D01*

-X105883Y150217D01*

-X105801Y150183D01*

-Y170529D01*

-X108099D01*

-X108177Y170534D01*

-X108254Y170552D01*

-X108327Y170582D01*

-X108394Y170623D01*

-X108454Y170674D01*

-X108505Y170734D01*

-X108546Y170801D01*

-X108576Y170874D01*

-X108594Y170951D01*

-X108601Y171029D01*

-X108594Y171107D01*

-X108576Y171184D01*

-X108546Y171257D01*

-X108505Y171324D01*

-X108454Y171384D01*

-X108394Y171435D01*

-X108327Y171476D01*

-X108254Y171506D01*

-X108177Y171524D01*

-X108099Y171529D01*

-X105801D01*

-Y178129D01*

-X108099D01*

-X108177Y178134D01*

-X108254Y178152D01*

-X108327Y178182D01*

-X108394Y178223D01*

-X108454Y178274D01*

-X108505Y178334D01*

-X108546Y178401D01*

-X108576Y178474D01*

-X108594Y178551D01*

-X108601Y178629D01*

-X108594Y178707D01*

-X108576Y178784D01*

-X108546Y178857D01*

-X108505Y178924D01*

-X108454Y178984D01*

-X108394Y179035D01*

-X108327Y179076D01*

-X108254Y179106D01*

-X108177Y179124D01*

-X108099Y179129D01*

-X105801D01*

-Y180529D01*

-X106003D01*

-X106410Y180568D01*

-X106811Y180645D01*

-X107203Y180760D01*

-X107583Y180911D01*

-X107946Y181098D01*

-X108012Y181142D01*

-X108070Y181197D01*

-X108118Y181260D01*

-X108156Y181329D01*

-X108182Y181404D01*

-X108197Y181482D01*

-X108199Y181561D01*

-X108189Y181640D01*

-X108166Y181716D01*

-X108132Y181788D01*

-X108088Y181853D01*

-X108033Y181911D01*

-X107970Y181959D01*

-X107901Y181997D01*

-X107826Y182023D01*

-X107748Y182038D01*

-X107669Y182040D01*

-X107590Y182030D01*

-X107514Y182007D01*

-X107443Y181972D01*

-X107167Y181826D01*

-X106876Y181710D01*

-X106575Y181622D01*

-X106267Y181562D01*

-X105956Y181533D01*

-X105801D01*

-Y188125D01*

-X105956D01*

-X106267Y188096D01*

-X106575Y188036D01*

-X106876Y187948D01*

-X107167Y187832D01*

-X107445Y187689D01*

-X107515Y187654D01*

-X107591Y187632D01*

-X107669Y187622D01*

-X107748Y187624D01*

-X107825Y187638D01*

-X107899Y187665D01*

-X107968Y187702D01*

-X108031Y187750D01*

-X108085Y187807D01*

-X108129Y187872D01*

-X108163Y187943D01*

-X108185Y188019D01*

-X108195Y188097D01*

-X108193Y188176D01*

-X108179Y188253D01*

-X108152Y188327D01*

-X108115Y188396D01*

-X108067Y188459D01*

-X108010Y188513D01*

-X107944Y188556D01*

-X107583Y188747D01*

-X107203Y188898D01*

-X106811Y189013D01*

-X106410Y189090D01*

-X106003Y189129D01*

-X105801D01*

-Y203321D01*

-X105902Y203439D01*

-X106050Y203680D01*

-X106158Y203942D01*

-X106224Y204218D01*

-X106241Y204500D01*

-X106224Y204782D01*

-X106158Y205058D01*

-X106050Y205320D01*

-X105902Y205561D01*

-X105801Y205679D01*

-Y247000D01*

-X109343D01*

-Y187161D01*

-X109299Y187186D01*

-X109224Y187212D01*

-X109146Y187227D01*

-X109067Y187229D01*

-X108988Y187219D01*

-X108912Y187196D01*

-X108840Y187162D01*

-X108775Y187118D01*

-X108717Y187063D01*

-X108669Y187000D01*

-X108631Y186931D01*

-X108605Y186856D01*

-X108590Y186778D01*

-X108588Y186699D01*

-X108598Y186620D01*

-X108621Y186544D01*

-X108656Y186473D01*

-X108802Y186197D01*

-X108918Y185906D01*

-X109006Y185605D01*

-X109066Y185297D01*

-X109095Y184986D01*

-Y184672D01*

-X109066Y184361D01*

-X109006Y184053D01*

-X108918Y183752D01*

-X108802Y183461D01*

-X108659Y183183D01*

-X108624Y183113D01*

-X108602Y183037D01*

-X108592Y182959D01*

-X108594Y182880D01*

-X108608Y182803D01*

-X108635Y182729D01*

-X108672Y182660D01*

-X108720Y182597D01*

-X108777Y182543D01*

-X108842Y182499D01*

-X108913Y182465D01*

-X108989Y182443D01*

-X109067Y182433D01*

-X109146Y182435D01*

-X109223Y182449D01*

-X109297Y182476D01*

-X109343Y182501D01*

-Y177559D01*

-X109304Y177535D01*

-X109244Y177484D01*

-X109193Y177424D01*

-X109152Y177357D01*

-X109122Y177284D01*

-X109104Y177207D01*

-X109099Y177129D01*

-Y172529D01*

-X109104Y172451D01*

-X109122Y172374D01*

-X109152Y172301D01*

-X109193Y172234D01*

-X109244Y172174D01*

-X109304Y172123D01*

-X109343Y172099D01*

-Y97000D01*

-G37*

-G36*

-X105801Y349296D02*X104904Y350760D01*

-X103442Y352472D01*

-X102255Y353486D01*

-Y362099D01*

-X102294Y362123D01*

-X102354Y362174D01*

-X102405Y362234D01*

-X102446Y362301D01*

-X102476Y362374D01*

-X102494Y362451D01*

-X102499Y362529D01*

-Y367129D01*

-X102494Y367207D01*

-X102476Y367284D01*

-X102446Y367357D01*

-X102405Y367424D01*

-X102354Y367484D01*

-X102294Y367535D01*

-X102255Y367559D01*

-Y372497D01*

-X102299Y372472D01*

-X102374Y372446D01*

-X102452Y372431D01*

-X102531Y372429D01*

-X102610Y372439D01*

-X102686Y372462D01*

-X102758Y372496D01*

-X102823Y372540D01*

-X102881Y372595D01*

-X102929Y372658D01*

-X102967Y372727D01*

-X102993Y372802D01*

-X103008Y372880D01*

-X103010Y372959D01*

-X103000Y373038D01*

-X102977Y373114D01*

-X102942Y373185D01*

-X102796Y373461D01*

-X102680Y373752D01*

-X102592Y374053D01*

-X102532Y374361D01*

-X102503Y374672D01*

-Y374986D01*

-X102532Y375297D01*

-X102592Y375605D01*

-X102680Y375906D01*

-X102796Y376197D01*

-X102939Y376475D01*

-X102974Y376545D01*

-X102996Y376621D01*

-X103006Y376699D01*

-X103004Y376778D01*

-X102990Y376855D01*

-X102963Y376929D01*

-X102926Y376998D01*

-X102878Y377061D01*

-X102821Y377115D01*

-X102756Y377159D01*

-X102685Y377193D01*

-X102609Y377215D01*

-X102531Y377225D01*

-X102452Y377223D01*

-X102375Y377209D01*

-X102301Y377182D01*

-X102255Y377157D01*

-Y397000D01*

-X105801D01*

-Y379129D01*

-X105595D01*

-X105188Y379090D01*

-X104787Y379013D01*

-X104395Y378898D01*

-X104015Y378747D01*

-X103652Y378560D01*

-X103586Y378516D01*

-X103528Y378461D01*

-X103480Y378398D01*

-X103442Y378329D01*

-X103416Y378254D01*

-X103401Y378176D01*

-X103399Y378097D01*

-X103409Y378018D01*

-X103432Y377942D01*

-X103466Y377870D01*

-X103510Y377805D01*

-X103565Y377747D01*

-X103628Y377699D01*

-X103697Y377661D01*

-X103772Y377635D01*

-X103850Y377620D01*

-X103929Y377618D01*

-X104008Y377628D01*

-X104084Y377651D01*

-X104155Y377686D01*

-X104431Y377832D01*

-X104722Y377948D01*

-X105023Y378036D01*

-X105331Y378096D01*

-X105642Y378125D01*

-X105801D01*

-Y371533D01*

-X105642D01*

-X105331Y371562D01*

-X105023Y371622D01*

-X104722Y371710D01*

-X104431Y371826D01*

-X104153Y371969D01*

-X104083Y372004D01*

-X104007Y372026D01*

-X103929Y372036D01*

-X103850Y372034D01*

-X103773Y372020D01*

-X103699Y371993D01*

-X103630Y371956D01*

-X103567Y371908D01*

-X103513Y371851D01*

-X103469Y371786D01*

-X103435Y371715D01*

-X103413Y371639D01*

-X103403Y371561D01*

-X103405Y371482D01*

-X103419Y371405D01*

-X103446Y371331D01*

-X103483Y371262D01*

-X103531Y371199D01*

-X103588Y371145D01*

-X103654Y371102D01*

-X104015Y370911D01*

-X104395Y370760D01*

-X104787Y370645D01*

-X105188Y370568D01*

-X105595Y370529D01*

-X105801D01*

-Y369129D01*

-X103499D01*

-X103421Y369124D01*

-X103344Y369106D01*

-X103271Y369076D01*

-X103204Y369035D01*

-X103144Y368984D01*

-X103093Y368924D01*

-X103052Y368857D01*

-X103022Y368784D01*

-X103004Y368707D01*

-X102997Y368629D01*

-X103004Y368551D01*

-X103022Y368474D01*

-X103052Y368401D01*

-X103093Y368334D01*

-X103144Y368274D01*

-X103204Y368223D01*

-X103271Y368182D01*

-X103344Y368152D01*

-X103421Y368134D01*

-X103499Y368129D01*

-X105801D01*

-Y361529D01*

-X103499D01*

-X103421Y361524D01*

-X103344Y361506D01*

-X103271Y361476D01*

-X103204Y361435D01*

-X103144Y361384D01*

-X103093Y361324D01*

-X103052Y361257D01*

-X103022Y361184D01*

-X103004Y361107D01*

-X102997Y361029D01*

-X103004Y360951D01*

-X103022Y360874D01*

-X103052Y360801D01*

-X103093Y360734D01*

-X103144Y360674D01*

-X103204Y360623D01*

-X103271Y360582D01*

-X103344Y360552D01*

-X103421Y360534D01*

-X103499Y360529D01*

-X105801D01*

-Y349296D01*

-G37*

-G36*

-X102255Y353486D02*X101730Y353934D01*

-X99811Y355110D01*

-X97732Y355971D01*

-X95543Y356497D01*

-X93299Y356673D01*

-X91055Y356497D01*

-X88866Y355971D01*

-X86787Y355110D01*

-X85784Y354495D01*

-Y359749D01*

-X85799Y359748D01*

-X87376Y359872D01*

-X88914Y360241D01*

-X90376Y360847D01*

-X91724Y361673D01*

-X92927Y362701D01*

-X93955Y363904D01*

-X94781Y365252D01*

-X95387Y366714D01*

-X95756Y368252D01*

-X95849Y369829D01*

-X95756Y371406D01*

-X95387Y372944D01*

-X94781Y374406D01*

-X93955Y375754D01*

-X92927Y376957D01*

-X91724Y377985D01*

-X90376Y378811D01*

-X88914Y379417D01*

-X87376Y379786D01*

-X85799Y379910D01*

-X85784Y379909D01*

-Y397000D01*

-X102255D01*

-Y377157D01*

-X102232Y377145D01*

-X102169Y377097D01*

-X102115Y377040D01*

-X102072Y376974D01*

-X101881Y376613D01*

-X101730Y376233D01*

-X101615Y375841D01*

-X101538Y375440D01*

-X101499Y375033D01*

-Y374625D01*

-X101538Y374218D01*

-X101615Y373817D01*

-X101730Y373425D01*

-X101881Y373045D01*

-X102068Y372682D01*

-X102112Y372616D01*

-X102167Y372558D01*

-X102230Y372510D01*

-X102255Y372497D01*

-Y367559D01*

-X102227Y367576D01*

-X102154Y367606D01*

-X102077Y367624D01*

-X101999Y367631D01*

-X101921Y367624D01*

-X101844Y367606D01*

-X101771Y367576D01*

-X101704Y367535D01*

-X101644Y367484D01*

-X101593Y367424D01*

-X101552Y367357D01*

-X101522Y367284D01*

-X101504Y367207D01*

-X101499Y367129D01*

-Y362529D01*

-X101504Y362451D01*

-X101522Y362374D01*

-X101552Y362301D01*

-X101593Y362234D01*

-X101644Y362174D01*

-X101704Y362123D01*

-X101771Y362082D01*

-X101844Y362052D01*

-X101921Y362034D01*

-X101999Y362027D01*

-X102077Y362034D01*

-X102154Y362052D01*

-X102227Y362082D01*

-X102255Y362099D01*

-Y353486D01*

-G37*

-G36*

-X105801Y322000D02*X85784D01*

-Y330163D01*

-X86787Y329548D01*

-X88866Y328687D01*

-X91055Y328161D01*

-X93299Y327985D01*

-X95543Y328161D01*

-X97732Y328687D01*

-X99811Y329548D01*

-X101730Y330724D01*

-X103442Y332186D01*

-X104904Y333898D01*

-X105801Y335362D01*

-Y322000D01*

-G37*

-G36*

-X102255Y247000D02*X105801D01*

-Y205679D01*

-X105718Y205777D01*

-X105502Y205961D01*

-X105261Y206109D01*

-X104999Y206217D01*

-X104723Y206283D01*

-X104441Y206306D01*

-X104159Y206283D01*

-X103883Y206217D01*

-X103621Y206109D01*

-X103380Y205961D01*

-X103164Y205777D01*

-X102980Y205561D01*

-X102832Y205320D01*

-X102724Y205058D01*

-X102691Y204921D01*

-X102658Y205058D01*

-X102550Y205320D01*

-X102402Y205561D01*

-X102255Y205734D01*

-Y247000D01*

-G37*

-G36*

-X105801Y97000D02*X102255D01*

-Y102724D01*

-X102499Y102783D01*

-X102761Y102891D01*

-X103002Y103039D01*

-X103218Y103223D01*

-X103402Y103439D01*

-X103550Y103680D01*

-X103658Y103942D01*

-X103724Y104218D01*

-X103741Y104500D01*

-X103724Y104782D01*

-X103658Y105058D01*

-X103550Y105320D01*

-X103402Y105561D01*

-X103218Y105777D01*

-X103002Y105961D01*

-X102761Y106109D01*

-X102499Y106217D01*

-X102255Y106276D01*

-Y172099D01*

-X102294Y172123D01*

-X102354Y172174D01*

-X102405Y172234D01*

-X102446Y172301D01*

-X102476Y172374D01*

-X102494Y172451D01*

-X102499Y172529D01*

-Y177129D01*

-X102494Y177207D01*

-X102476Y177284D01*

-X102446Y177357D01*

-X102405Y177424D01*

-X102354Y177484D01*

-X102294Y177535D01*

-X102255Y177559D01*

-Y182497D01*

-X102299Y182472D01*

-X102374Y182446D01*

-X102452Y182431D01*

-X102531Y182429D01*

-X102610Y182439D01*

-X102686Y182462D01*

-X102758Y182496D01*

-X102823Y182540D01*

-X102881Y182595D01*

-X102929Y182658D01*

-X102967Y182727D01*

-X102993Y182802D01*

-X103008Y182880D01*

-X103010Y182959D01*

-X103000Y183038D01*

-X102977Y183114D01*

-X102942Y183185D01*

-X102796Y183461D01*

-X102680Y183752D01*

-X102592Y184053D01*

-X102532Y184361D01*

-X102503Y184672D01*

-Y184986D01*

-X102532Y185297D01*

-X102592Y185605D01*

-X102680Y185906D01*

-X102796Y186197D01*

-X102939Y186475D01*

-X102974Y186545D01*

-X102996Y186621D01*

-X103006Y186699D01*

-X103004Y186778D01*

-X102990Y186855D01*

-X102963Y186929D01*

-X102926Y186998D01*

-X102878Y187061D01*

-X102821Y187115D01*

-X102756Y187159D01*

-X102685Y187193D01*

-X102609Y187215D01*

-X102531Y187225D01*

-X102452Y187223D01*

-X102375Y187209D01*

-X102301Y187182D01*

-X102255Y187157D01*

-Y203266D01*

-X102402Y203439D01*

-X102550Y203680D01*

-X102658Y203942D01*

-X102691Y204079D01*

-X102724Y203942D01*

-X102832Y203680D01*

-X102980Y203439D01*

-X103164Y203223D01*

-X103380Y203039D01*

-X103621Y202891D01*

-X103883Y202783D01*

-X104159Y202717D01*

-X104441Y202694D01*

-X104723Y202717D01*

-X104999Y202783D01*

-X105261Y202891D01*

-X105502Y203039D01*

-X105718Y203223D01*

-X105801Y203321D01*

-Y189129D01*

-X105595D01*

-X105188Y189090D01*

-X104787Y189013D01*

-X104395Y188898D01*

-X104015Y188747D01*

-X103652Y188560D01*

-X103586Y188516D01*

-X103528Y188461D01*

-X103480Y188398D01*

-X103442Y188329D01*

-X103416Y188254D01*

-X103401Y188176D01*

-X103399Y188097D01*

-X103409Y188018D01*

-X103432Y187942D01*

-X103466Y187870D01*

-X103510Y187805D01*

-X103565Y187747D01*

-X103628Y187699D01*

-X103697Y187661D01*

-X103772Y187635D01*

-X103850Y187620D01*

-X103929Y187618D01*

-X104008Y187628D01*

-X104084Y187651D01*

-X104155Y187686D01*

-X104431Y187832D01*

-X104722Y187948D01*

-X105023Y188036D01*

-X105331Y188096D01*

-X105642Y188125D01*

-X105801D01*

-Y181533D01*

-X105642D01*

-X105331Y181562D01*

-X105023Y181622D01*

-X104722Y181710D01*

-X104431Y181826D01*

-X104153Y181969D01*

-X104083Y182004D01*

-X104007Y182026D01*

-X103929Y182036D01*

-X103850Y182034D01*

-X103773Y182020D01*

-X103699Y181993D01*

-X103630Y181956D01*

-X103567Y181908D01*

-X103513Y181851D01*

-X103469Y181786D01*

-X103435Y181715D01*

-X103413Y181639D01*

-X103403Y181561D01*

-X103405Y181482D01*

-X103419Y181405D01*

-X103446Y181331D01*

-X103483Y181262D01*

-X103531Y181199D01*

-X103588Y181145D01*

-X103654Y181102D01*

-X104015Y180911D01*

-X104395Y180760D01*

-X104787Y180645D01*

-X105188Y180568D01*

-X105595Y180529D01*

-X105801D01*

-Y179129D01*

-X103499D01*

-X103421Y179124D01*

-X103344Y179106D01*

-X103271Y179076D01*

-X103204Y179035D01*

-X103144Y178984D01*

-X103093Y178924D01*

-X103052Y178857D01*

-X103022Y178784D01*

-X103004Y178707D01*

-X102997Y178629D01*

-X103004Y178551D01*

-X103022Y178474D01*

-X103052Y178401D01*

-X103093Y178334D01*

-X103144Y178274D01*

-X103204Y178223D01*

-X103271Y178182D01*

-X103344Y178152D01*

-X103421Y178134D01*

-X103499Y178129D01*

-X105801D01*

-Y171529D01*

-X103499D01*

-X103421Y171524D01*

-X103344Y171506D01*

-X103271Y171476D01*

-X103204Y171435D01*

-X103144Y171384D01*

-X103093Y171324D01*

-X103052Y171257D01*

-X103022Y171184D01*

-X103004Y171107D01*

-X102997Y171029D01*

-X103004Y170951D01*

-X103022Y170874D01*

-X103052Y170801D01*

-X103093Y170734D01*

-X103144Y170674D01*

-X103204Y170623D01*

-X103271Y170582D01*

-X103344Y170552D01*

-X103421Y170534D01*

-X103499Y170529D01*

-X105801D01*

-Y150183D01*

-X105621Y150109D01*

-X105380Y149961D01*

-X105164Y149777D01*

-X104980Y149561D01*

-X104832Y149320D01*

-X104724Y149058D01*

-X104658Y148782D01*

-X104635Y148500D01*

-X104658Y148218D01*

-X104724Y147942D01*

-X104832Y147680D01*

-X104980Y147439D01*

-X105164Y147223D01*

-X105380Y147039D01*

-X105621Y146891D01*

-X105801Y146817D01*

-Y97000D01*

-G37*

-G36*

-X102255D02*X89441D01*

-Y170460D01*

-X90376Y170847D01*

-X91724Y171673D01*

-X92927Y172701D01*

-X93955Y173904D01*

-X94781Y175252D01*

-X95387Y176714D01*

-X95756Y178252D01*

-X95849Y179829D01*

-X95756Y181406D01*

-X95387Y182944D01*

-X94781Y184406D01*

-X93955Y185754D01*

-X92927Y186957D01*

-X91724Y187985D01*

-X90376Y188811D01*

-X89441Y189198D01*

-Y217437D01*

-X89686Y217837D01*

-X89972Y218528D01*

-X90147Y219255D01*

-X90191Y220000D01*

-X90147Y220745D01*

-X89972Y221472D01*

-X89686Y222163D01*

-X89441Y222563D01*

-Y227437D01*

-X89686Y227837D01*

-X89972Y228528D01*

-X90147Y229255D01*

-X90191Y230000D01*

-X90147Y230745D01*

-X89972Y231472D01*

-X89686Y232163D01*

-X89441Y232563D01*

-Y237498D01*

-X89559Y237507D01*

-X89673Y237535D01*

-X89783Y237580D01*

-X89883Y237641D01*

-X89973Y237718D01*

-X90050Y237808D01*

-X90111Y237908D01*

-X90156Y238018D01*

-X90184Y238132D01*

-X90191Y238250D01*

-Y241750D01*

-X90184Y241868D01*

-X90156Y241982D01*

-X90111Y242092D01*

-X90050Y242192D01*

-X89973Y242282D01*

-X89883Y242359D01*

-X89783Y242420D01*

-X89673Y242465D01*

-X89559Y242493D01*

-X89441Y242502D01*

-Y247000D01*

-X102255D01*

-Y205734D01*

-X102218Y205777D01*

-X102002Y205961D01*

-X101761Y206109D01*

-X101499Y206217D01*

-X101223Y206283D01*

-X100941Y206306D01*

-X100659Y206283D01*

-X100383Y206217D01*

-X100121Y206109D01*

-X99880Y205961D01*

-X99664Y205777D01*

-X99480Y205561D01*

-X99332Y205320D01*

-X99224Y205058D01*

-X99158Y204782D01*

-X99135Y204500D01*

-X99158Y204218D01*

-X99224Y203942D01*

-X99332Y203680D01*

-X99480Y203439D01*

-X99664Y203223D01*

-X99880Y203039D01*

-X100121Y202891D01*

-X100383Y202783D01*

-X100659Y202717D01*

-X100941Y202694D01*

-X101223Y202717D01*

-X101499Y202783D01*

-X101761Y202891D01*

-X102002Y203039D01*

-X102218Y203223D01*

-X102255Y203266D01*

-Y187157D01*

-X102232Y187145D01*

-X102169Y187097D01*

-X102115Y187040D01*

-X102072Y186974D01*

-X101881Y186613D01*

-X101730Y186233D01*

-X101615Y185841D01*

-X101538Y185440D01*

-X101499Y185033D01*

-Y184625D01*

-X101538Y184218D01*

-X101615Y183817D01*

-X101730Y183425D01*

-X101881Y183045D01*

-X102068Y182682D01*

-X102112Y182616D01*

-X102167Y182558D01*

-X102230Y182510D01*

-X102255Y182497D01*

-Y177559D01*

-X102227Y177576D01*

-X102154Y177606D01*

-X102077Y177624D01*

-X101999Y177631D01*

-X101921Y177624D01*

-X101844Y177606D01*

-X101771Y177576D01*

-X101704Y177535D01*

-X101644Y177484D01*

-X101593Y177424D01*

-X101552Y177357D01*

-X101522Y177284D01*

-X101504Y177207D01*

-X101499Y177129D01*

-Y172529D01*

-X101504Y172451D01*

-X101522Y172374D01*

-X101552Y172301D01*

-X101593Y172234D01*

-X101644Y172174D01*

-X101704Y172123D01*

-X101771Y172082D01*

-X101844Y172052D01*

-X101921Y172034D01*

-X101999Y172027D01*

-X102077Y172034D01*

-X102154Y172052D01*

-X102227Y172082D01*

-X102255Y172099D01*

-Y106276D01*

-X102223Y106283D01*

-X101941Y106306D01*

-X101659Y106283D01*

-X101383Y106217D01*

-X101121Y106109D01*

-X100880Y105961D01*

-X100664Y105777D01*

-X100480Y105561D01*

-X100332Y105320D01*

-X100224Y105058D01*

-X100158Y104782D01*

-X100135Y104500D01*

-X100158Y104218D01*

-X100224Y103942D01*

-X100332Y103680D01*

-X100480Y103439D01*

-X100664Y103223D01*

-X100880Y103039D01*

-X101121Y102891D01*

-X101383Y102783D01*

-X101659Y102717D01*

-X101941Y102694D01*

-X102223Y102717D01*

-X102255Y102724D01*

-Y97000D01*

-G37*

-G36*

-X89441Y232563D02*X89296Y232801D01*

-X88810Y233369D01*

-X88242Y233855D01*

-X87604Y234245D01*

-X86913Y234531D01*

-X86186Y234706D01*

-X85784Y234738D01*

-Y235250D01*

-X87191D01*

-X87309Y235257D01*

-X87423Y235285D01*

-X87533Y235330D01*

-X87633Y235391D01*

-X87723Y235468D01*

-X87800Y235558D01*

-X87861Y235658D01*

-X87906Y235768D01*

-X87934Y235882D01*

-X87943Y236000D01*

-X87934Y236118D01*

-X87906Y236232D01*

-X87861Y236342D01*

-X87800Y236442D01*

-X87723Y236532D01*

-X87633Y236609D01*

-X87533Y236670D01*

-X87423Y236715D01*

-X87309Y236743D01*

-X87191Y236750D01*

-X85784D01*

-Y243250D01*

-X87191D01*

-X87309Y243257D01*

-X87423Y243285D01*

-X87533Y243330D01*

-X87633Y243391D01*

-X87723Y243468D01*

-X87800Y243558D01*

-X87861Y243658D01*

-X87906Y243768D01*

-X87934Y243882D01*

-X87943Y244000D01*

-X87934Y244118D01*

-X87906Y244232D01*

-X87861Y244342D01*

-X87800Y244442D01*

-X87723Y244532D01*

-X87633Y244609D01*

-X87533Y244670D01*

-X87423Y244715D01*

-X87309Y244743D01*

-X87191Y244750D01*

-X85784D01*

-Y247000D01*

-X89441D01*

-Y242502D01*

-X89323Y242493D01*

-X89209Y242465D01*

-X89099Y242420D01*

-X88999Y242359D01*

-X88909Y242282D01*

-X88832Y242192D01*

-X88771Y242092D01*

-X88726Y241982D01*

-X88698Y241868D01*

-X88691Y241750D01*

-Y238250D01*

-X88698Y238132D01*

-X88726Y238018D01*

-X88771Y237908D01*

-X88832Y237808D01*

-X88909Y237718D01*

-X88999Y237641D01*

-X89099Y237580D01*

-X89209Y237535D01*

-X89323Y237507D01*

-X89441Y237498D01*

-Y232563D01*

-G37*

-G36*

-Y222563D02*X89296Y222801D01*

-X88810Y223369D01*

-X88242Y223855D01*

-X87604Y224245D01*

-X86913Y224531D01*

-X86186Y224706D01*

-X85784Y224738D01*

-Y225262D01*

-X86186Y225294D01*

-X86913Y225469D01*

-X87604Y225755D01*

-X88242Y226145D01*

-X88810Y226631D01*

-X89296Y227199D01*

-X89441Y227437D01*

-Y222563D01*

-G37*

-G36*

-Y189198D02*X88914Y189417D01*

-X87376Y189786D01*

-X85799Y189910D01*

-X85784Y189909D01*

-Y215262D01*

-X86186Y215294D01*

-X86913Y215469D01*

-X87604Y215755D01*

-X88242Y216145D01*

-X88810Y216631D01*

-X89296Y217199D01*

-X89441Y217437D01*

-Y189198D01*

-G37*

-G36*

-Y97000D02*X85784D01*

-Y169749D01*

-X85799Y169748D01*

-X87376Y169872D01*

-X88914Y170241D01*

-X89441Y170460D01*

-Y97000D01*

-G37*

-G36*

-X85784Y322000D02*X73941D01*

-X71441Y324500D01*

-Y394500D01*

-X73941Y397000D01*

-X85784D01*

-Y379909D01*

-X84222Y379786D01*

-X82684Y379417D01*

-X81222Y378811D01*

-X79874Y377985D01*

-X78671Y376957D01*

-X77643Y375754D01*

-X76817Y374406D01*

-X76211Y372944D01*

-X75842Y371406D01*

-X75718Y369829D01*

-X75842Y368252D01*

-X76211Y366714D01*

-X76817Y365252D01*

-X77643Y363904D01*

-X78671Y362701D01*

-X79874Y361673D01*

-X81222Y360847D01*

-X82684Y360241D01*

-X84222Y359872D01*

-X85784Y359749D01*

-Y354495D01*

-X84868Y353934D01*

-X83156Y352472D01*

-X81694Y350760D01*

-X80518Y348841D01*

-X79657Y346762D01*

-X79131Y344573D01*

-X78955Y342329D01*

-X79131Y340085D01*

-X79657Y337896D01*

-X80518Y335817D01*

-X81694Y333898D01*

-X83156Y332186D01*

-X84868Y330724D01*

-X85784Y330163D01*

-Y322000D01*

-G37*

-G36*

-X81441Y217437D02*X81586Y217199D01*

-X82072Y216631D01*

-X82640Y216145D01*

-X83278Y215755D01*

-X83969Y215469D01*

-X84696Y215294D01*

-X85441Y215235D01*

-X85784Y215262D01*

-Y189909D01*

-X84222Y189786D01*

-X82684Y189417D01*

-X81441Y188902D01*

-Y217437D01*

-G37*

-G36*

-Y227437D02*X81586Y227199D01*

-X82072Y226631D01*

-X82640Y226145D01*

-X83278Y225755D01*

-X83969Y225469D01*

-X84696Y225294D01*

-X85441Y225235D01*

-X85784Y225262D01*

-Y224738D01*

-X85441Y224765D01*

-X84696Y224706D01*

-X83969Y224531D01*

-X83278Y224245D01*

-X82640Y223855D01*

-X82072Y223369D01*

-X81586Y222801D01*

-X81441Y222563D01*

-Y227437D01*

-G37*

-G36*

-Y247000D02*X85784D01*

-Y244750D01*

-X83691D01*

-X83573Y244743D01*

-X83459Y244715D01*

-X83349Y244670D01*

-X83249Y244609D01*

-X83159Y244532D01*

-X83082Y244442D01*

-X83021Y244342D01*

-X82976Y244232D01*

-X82948Y244118D01*

-X82939Y244000D01*

-X82948Y243882D01*

-X82976Y243768D01*

-X83021Y243658D01*

-X83082Y243558D01*

-X83159Y243468D01*

-X83249Y243391D01*

-X83349Y243330D01*

-X83459Y243285D01*

-X83573Y243257D01*

-X83691Y243250D01*

-X85784D01*

-Y236750D01*

-X83691D01*

-X83573Y236743D01*

-X83459Y236715D01*

-X83349Y236670D01*

-X83249Y236609D01*

-X83159Y236532D01*

-X83082Y236442D01*

-X83021Y236342D01*

-X82976Y236232D01*

-X82948Y236118D01*

-X82939Y236000D01*

-X82948Y235882D01*

-X82976Y235768D01*

-X83021Y235658D01*

-X83082Y235558D01*

-X83159Y235468D01*

-X83249Y235391D01*

-X83349Y235330D01*

-X83459Y235285D01*

-X83573Y235257D01*

-X83691Y235250D01*

-X85784D01*

-Y234738D01*

-X85441Y234765D01*

-X84696Y234706D01*

-X83969Y234531D01*

-X83278Y234245D01*

-X82640Y233855D01*

-X82072Y233369D01*

-X81586Y232801D01*

-X81441Y232563D01*

-Y237498D01*

-X81559Y237507D01*

-X81673Y237535D01*

-X81783Y237580D01*

-X81883Y237641D01*

-X81973Y237718D01*

-X82050Y237808D01*

-X82111Y237908D01*

-X82156Y238018D01*

-X82184Y238132D01*

-X82191Y238250D01*

-Y241750D01*

-X82184Y241868D01*

-X82156Y241982D01*

-X82111Y242092D01*

-X82050Y242192D01*

-X81973Y242282D01*

-X81883Y242359D01*

-X81783Y242420D01*

-X81673Y242465D01*

-X81559Y242493D01*

-X81441Y242502D01*

-Y247000D01*

-G37*

-G36*

-X85784Y97000D02*X81441D01*

-Y170756D01*

-X82684Y170241D01*

-X84222Y169872D01*

-X85784Y169749D01*

-Y97000D01*

-G37*

-G36*

-X81441D02*X71441D01*

-Y244500D01*

-X73941Y247000D01*

-X81441D01*

-Y242502D01*

-X81323Y242493D01*

-X81209Y242465D01*

-X81099Y242420D01*

-X80999Y242359D01*

-X80909Y242282D01*

-X80832Y242192D01*

-X80771Y242092D01*

-X80726Y241982D01*

-X80698Y241868D01*

-X80691Y241750D01*

-Y238250D01*

-X80698Y238132D01*

-X80726Y238018D01*

-X80771Y237908D01*

-X80832Y237808D01*

-X80909Y237718D01*

-X80999Y237641D01*

-X81099Y237580D01*

-X81209Y237535D01*

-X81323Y237507D01*

-X81441Y237498D01*

-Y232563D01*

-X81196Y232163D01*

-X80910Y231472D01*

-X80735Y230745D01*

-X80676Y230000D01*

-X80735Y229255D01*

-X80910Y228528D01*

-X81196Y227837D01*

-X81441Y227437D01*

-Y222563D01*

-X81196Y222163D01*

-X80910Y221472D01*

-X80735Y220745D01*

-X80676Y220000D01*

-X80735Y219255D01*

-X80910Y218528D01*

-X81196Y217837D01*

-X81441Y217437D01*

-Y188902D01*

-X81222Y188811D01*

-X79874Y187985D01*

-X78671Y186957D01*

-X77643Y185754D01*

-X76817Y184406D01*

-X76211Y182944D01*

-X75842Y181406D01*

-X75718Y179829D01*

-X75842Y178252D01*

-X76211Y176714D01*

-X76817Y175252D01*

-X77643Y173904D01*

-X78671Y172701D01*

-X79874Y171673D01*

-X81222Y170847D01*

-X81441Y170756D01*

-Y97000D01*

-G37*

-G36*

-X209441Y241000D02*X215941D01*

-Y235000D01*

-X209441D01*

-Y241000D01*

-G37*

-G36*

-X200441Y240500D02*X206941D01*

-Y234500D01*

-X200441D01*

-Y240500D01*

-G37*

-G36*

-X190441Y240000D02*X196941D01*

-Y234000D01*

-X190441D01*

-Y240000D01*

-G37*

-G36*

-X220941Y247000D02*X227441D01*

-Y241000D01*

-X220941D01*

-Y247000D01*

-G37*

-G36*

-X221441Y238500D02*X227941D01*

-Y232500D01*

-X221441D01*

-Y238500D01*

-G37*

-G36*

-X232941D02*X239441D01*

-Y232500D01*

-X232941D01*

-Y238500D01*

-G37*

-G36*

-X221941Y229500D02*X228441D01*

-Y223500D01*

-X221941D01*

-Y229500D01*

-G37*

-G36*

-X221441Y223500D02*X227941D01*

-Y217500D01*

-X221441D01*

-Y223500D01*

-G37*

-G36*

-X216941Y218000D02*X223441D01*

-Y212000D01*

-X216941D01*

-Y218000D01*

-G37*

-G36*

-X206941Y215500D02*X213441D01*

-Y209500D01*

-X206941D01*

-Y215500D01*

-G37*

-G36*

-X198941D02*X205441D01*

-Y209500D01*

-X198941D01*

-Y215500D01*

-G37*

-G36*

-X190441D02*X196941D01*

-Y209500D01*

-X190441D01*

-Y215500D01*

-G37*

-G36*

-X181941Y220500D02*X188441D01*

-Y214500D01*

-X181941D01*

-Y220500D01*

-G37*

-G36*

-X173941D02*X180441D01*

-Y214500D01*

-X173941D01*

-Y220500D01*

-G37*

-G36*

-Y231000D02*X180441D01*

-Y225000D01*

-X173941D01*

-Y231000D01*

-G37*

-G36*

-X181941D02*X188441D01*

-Y225000D01*

-X181941D01*

-Y231000D01*

-G37*

-G36*

-X266441Y202000D02*X272941D01*

-Y195000D01*

-X266441D01*

-Y202000D01*

-G37*

-G36*

-X266941Y235000D02*X273441D01*

-Y228000D01*

-X266941D01*

-Y235000D01*

-G37*

-G36*

-X257941Y196500D02*X264441D01*

-Y189500D01*

-X257941D01*

-Y196500D01*

-G37*

-G36*

-X242941D02*X249441D01*

-Y189500D01*

-X242941D01*

-Y196500D01*

-G37*

-G36*

-X240941Y205500D02*X247441D01*

-Y198500D01*

-X240941D01*

-Y205500D01*

-G37*

-G36*

-X248941Y214000D02*X255441D01*

-Y207000D01*

-X248941D01*

-Y214000D01*

-G37*

-G54D210*X446441Y102000D02*X442441D01*

-G54D211*X319941Y87000D02*X98441D01*

-G54D210*X397941Y367441D02*X394441D01*

-X398441Y309000D02*X395441D01*

-X398441Y248000D02*X395441D01*

-X400441Y189000D02*X395441D01*

-X302941Y340007D02*X300453D01*

-G54D211*X98441Y87000D02*X86941Y98500D01*

-Y111500D01*

-G54D212*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D209*G36*

-X403750Y357250D02*Y350750D01*

-X410250D01*

-Y357250D01*

-X403750D01*

-G37*

-G54D213*X345799Y357329D03*

-G54D214*X315799Y337329D03*

-G54D213*X85799Y369829D03*

-G54D215*X105799Y374829D03*

-G54D209*G36*

-X102499Y368129D02*Y361529D01*

-X109099D01*

-Y368129D01*

-X102499D01*

-G37*

-G54D215*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-G54D216*X93299Y342329D03*

-G54D215*X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D209*G36*

-X450250Y267250D02*Y260750D01*

-X456750D01*

-Y267250D01*

-X450250D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X456750D01*

-Y207250D01*

-X450250D01*

-G37*

-G36*

-Y177250D02*Y170750D01*

-X456750D01*

-Y177250D01*

-X450250D01*

-G37*

-G54D212*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D209*G36*

-X450250Y237250D02*Y230750D01*

-X456750D01*

-Y237250D01*

-X450250D01*

-G37*

-G54D212*X463500Y234000D03*

-X473500D03*

-G54D209*G36*

-X450250Y147250D02*Y140750D01*

-X456750D01*

-Y147250D01*

-X450250D01*

-G37*

-G36*

-Y117250D02*Y110750D01*

-X456750D01*

-Y117250D01*

-X450250D01*

-G37*

-G36*

-Y87250D02*Y80750D01*

-X456750D01*

-Y87250D01*

-X450250D01*

-G37*

-G36*

-Y57250D02*Y50750D01*

-X456750D01*

-Y57250D01*

-X450250D01*

-G37*

-G54D212*X463500Y54000D03*

-X473500D03*

-G54D209*G36*

-X450250Y327250D02*Y320750D01*

-X456750D01*

-Y327250D01*

-X450250D01*

-G37*

-G54D212*X463500Y324000D03*

-X473500D03*

-G54D209*G36*

-X450250Y297250D02*Y290750D01*

-X456750D01*

-Y297250D01*

-X450250D01*

-G37*

-G54D212*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D209*G36*

-X309191Y252250D02*Y245750D01*

-X315691D01*

-Y252250D01*

-X309191D01*

-G37*

-G54D212*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D213*X345799Y192329D03*

-G54D209*G36*

-X450250Y387250D02*Y380750D01*

-X456750D01*

-Y387250D01*

-X450250D01*

-G37*

-G54D212*X463500Y384000D03*

-X473500D03*

-G54D209*G36*

-X403750Y387250D02*Y380750D01*

-X410250D01*

-Y387250D01*

-X403750D01*

-G37*

-G36*

-Y297250D02*Y290750D01*

-X410250D01*

-Y297250D01*

-X403750D01*

-G37*

-G36*

-Y327250D02*Y320750D01*

-X410250D01*

-Y327250D01*

-X403750D01*

-G37*

-G54D212*X417000Y324000D03*

-X427000D03*

-G54D209*G36*

-X450250Y357250D02*Y350750D01*

-X456750D01*

-Y357250D01*

-X450250D01*

-G37*

-G54D212*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D209*G36*

-X403750Y177250D02*Y170750D01*

-X410250D01*

-Y177250D01*

-X403750D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X410250D01*

-Y207250D01*

-X403750D01*

-G37*

-G36*

-Y237250D02*Y230750D01*

-X410250D01*

-Y237250D01*

-X403750D01*

-G37*

-G36*

-Y267250D02*Y260750D01*

-X410250D01*

-Y267250D01*

-X403750D01*

-G37*

-G54D212*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D209*G36*

-X202191Y50750D02*Y44250D01*

-X208691D01*

-Y50750D01*

-X202191D01*

-G37*

-G54D212*X205441Y57500D03*

-Y67500D03*

-G54D209*G36*

-X232191Y50750D02*Y44250D01*

-X238691D01*

-Y50750D01*

-X232191D01*

-G37*

-G54D212*X235441Y57500D03*

-Y67500D03*

-G54D209*G36*

-X262191Y50750D02*Y44250D01*

-X268691D01*

-Y50750D01*

-X262191D01*

-G37*

-G36*

-X172191D02*Y44250D01*

-X178691D01*

-Y50750D01*

-X172191D01*

-G37*

-G36*

-X142191D02*Y44250D01*

-X148691D01*

-Y50750D01*

-X142191D01*

-G37*

-G36*

-X112191D02*Y44250D01*

-X118691D01*

-Y50750D01*

-X112191D01*

-G37*

-G36*

-X82191D02*Y44250D01*

-X88691D01*

-Y50750D01*

-X82191D01*

-G37*

-G54D212*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D209*G36*

-X292191Y50750D02*Y44250D01*

-X298691D01*

-Y50750D01*

-X292191D01*

-G37*

-G54D212*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D213*X85799Y179829D03*

-G54D215*X105799Y184829D03*

-G54D209*G36*

-X102499Y178129D02*Y171529D01*

-X109099D01*

-Y178129D01*

-X102499D01*

-G37*

-G54D215*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D209*G36*

-X82191Y243250D02*Y236750D01*

-X88691D01*

-Y243250D01*

-X82191D01*

-G37*

-G54D212*X85441Y230000D03*

-Y220000D03*

-G54D215*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D209*G36*

-X192499Y200629D02*Y194029D01*

-X199099D01*

-Y200629D01*

-X192499D01*

-G37*

-G54D215*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D210*X307716Y275075D03*

-X308992Y271971D03*

-X308872Y266522D03*

-X287917Y307829D03*

-X293902Y282263D03*

-X296779Y304963D03*

-X295937Y243628D03*

-X296727Y256227D03*

-X312157Y300156D03*

-X312122Y295038D03*

-X303365Y330000D03*

-X285430Y325000D03*

-X302941Y340007D03*

-X245557Y279508D03*

-X242456Y293543D03*

-X262750Y268772D03*

-X253101Y261836D03*

-G54D217*X246941Y238000D03*

-X242441Y229500D03*

-X246441D03*

-X250941D03*

-X260941Y191500D03*

-X245863Y191524D03*

-X269441Y198500D03*

-X269941Y231500D03*

-X251941Y210500D03*

-X243941Y202000D03*

-X253441Y102500D03*

-X231441Y148000D03*

-X309441Y141568D03*

-Y136450D03*

-X310941Y115940D03*

-X305696Y107500D03*

-X304584Y207483D03*

-X304706Y210583D03*

-X305280Y204383D03*

-G54D210*X254740Y298329D03*

-X242168Y298800D03*

-G54D217*X246731Y303031D03*

-G54D210*X269653Y298631D03*

-G54D217*X270441Y336000D03*

-Y342500D03*

-Y349500D03*

-G54D210*X268941Y314000D03*

-G54D217*X270441Y357000D03*

-G54D210*X273229Y298582D03*

-X278225Y279602D03*

-X278207Y298612D03*

-X277174Y308219D03*

-X277449Y347500D03*

-G54D217*X263441Y320000D03*

-X260568Y316997D03*

-X261502Y307367D03*

-X249101Y328793D03*

-X229818Y354988D03*

-G54D210*X266413Y296594D03*

-X263240Y295329D03*

-X262740Y291829D03*

-X260341Y284249D03*

-X264034Y282931D03*

-G54D217*X279441Y285000D03*

-G54D218*X386441Y163000D03*

-X400441Y194000D03*

-X389441Y184000D03*

-X400441Y189000D03*

-G54D217*X386023Y157813D03*

-X398441Y173000D03*

-G54D218*X393441Y208000D03*

-X384162Y188000D03*

-X458441Y195000D03*

-Y164000D03*

-X372441Y170386D03*

-G54D217*X377347Y162178D03*

-G54D218*X387441Y326000D03*

-X393441Y355000D03*

-X386720Y282000D03*

-X393441Y327000D03*

-X384162Y306000D03*

-X385941Y354500D03*

-X458441Y375000D03*

-X383662Y378500D03*

-X397441Y373000D03*

-X397941Y367441D03*

-G54D217*X385941Y366000D03*

-G54D218*X458441Y345000D03*

-Y315000D03*

-Y285000D03*

-X398441Y314000D03*

-Y309000D03*

-G54D217*Y291000D03*

-G54D218*X372441Y290689D03*

-Y351189D03*

-G54D217*X339837Y341827D03*

-X353390Y339521D03*

-G54D218*X375441Y235000D03*

-G54D217*X356441Y233000D03*

-X338441Y224192D03*

-Y230124D03*

-X337441Y163000D03*

-X358941Y208500D03*

-G54D218*X384512Y258000D03*

-G54D217*X371602Y260228D03*

-G54D218*X458441Y254000D03*

-Y225000D03*

-X387070Y235000D03*

-X398441Y248000D03*

-Y253000D03*

-G54D217*X396441Y235000D03*

-X392188Y239000D03*

-X388207Y247280D03*

-G54D210*X239302Y262235D03*

-G54D217*X245441Y127500D03*

-X235941Y133000D03*

-X236441Y235500D03*

-X202441Y212500D03*

-X210441D03*

-X220441Y215000D03*

-X224941Y220500D03*

-X225441Y226500D03*

-X224941Y235500D03*

-X224441Y244000D03*

-X212941Y238000D03*

-X203941Y237500D03*

-X193941Y237000D03*

-X181941Y258500D03*

-X183941Y104000D03*

-X112222Y127340D03*

-X114441Y121500D03*

-X115441Y132500D03*

-X101941Y104500D03*

-X166441Y104000D03*

-X127941Y148000D03*

-X106441Y148500D03*

-X149941Y149000D03*

-X138925Y206113D03*

-X138872Y202030D03*

-X138925Y197841D03*

-X161941Y199000D03*

-X166941Y197500D03*

-X138925Y192698D03*

-X161941Y193000D03*

-X166941D03*

-X163941Y127500D03*

-X193390D03*

-X152441Y121500D03*

-X151941Y132000D03*

-X195441Y133000D03*

-X141441Y148000D03*

-X208941D03*

-X223941D03*

-X198441Y122500D03*

-X234441D03*

-X221884Y254000D03*

-X224441Y252000D03*

-X225441Y249000D03*

-X230441Y247000D03*

-X219441Y272500D03*

-X230441Y293000D03*

-X220729Y265580D03*

-X220441Y259500D03*

-X218441Y261500D03*

-X217441Y279000D03*

-X240391Y278564D03*

-X128941Y274500D03*

-Y268500D03*

-Y262500D03*

-Y255000D03*

-Y248500D03*

-Y242500D03*

-X104441Y204500D03*

-X100941D03*

-X141307Y300883D03*

-X124831Y302385D03*

-X158441Y323829D03*

-Y328829D03*

-Y326500D03*

-X153941Y338000D03*

-X154941Y345500D03*

-X135441Y338500D03*

-Y335000D03*

-X139941Y338000D03*

-X111941Y334000D03*

-X117941D03*

-X126441D03*

-X142441Y357500D03*

-Y349500D03*

-X149441D03*

-X126441Y340500D03*

-X111941Y341000D03*

-Y357500D03*

-X121941D03*

-X130941D03*

-X197441Y314500D03*

-Y308500D03*

-X198441Y262500D03*

-Y269500D03*

-X205441Y277000D03*

-X195441Y311500D03*

-X191363Y344449D03*

-X178887Y342818D03*

-X168732Y350833D03*

-X162441Y242500D03*

-X165941Y231000D03*

-Y226500D03*

-X185441Y228000D03*

-X177441D03*

-X162441Y248500D03*

-X161941Y255000D03*

-X162441Y262500D03*

-X162941Y268500D03*

-Y274500D03*

-X165941Y220500D03*

-X169441Y214000D03*

-Y208500D03*

-Y201500D03*

-X177441Y217500D03*

-X185441D03*

-X193941Y212500D03*

-G54D218*X432324Y111000D03*

-X446441Y102000D03*

-X434882Y75000D03*

-G54D219*X440941Y123000D03*

-G54D218*X423441Y75000D03*

-G54D217*X434449Y56500D03*

-X440449D03*

-X354941Y93499D03*

-Y97999D03*

-Y103999D03*

-Y109999D03*

-Y115999D03*

-Y121999D03*

-Y127999D03*

-X387941D03*

-Y121999D03*

-Y115999D03*

-Y109999D03*

-Y97999D03*

-Y93499D03*

-Y103999D03*

-X391441Y84499D03*

-Y79999D03*

-X391941Y74499D03*

-X395441Y66999D03*

-X394441Y59999D03*

-X392941Y53499D03*

-X368941Y48500D03*

-Y43500D03*

-X374941D03*

-Y47000D03*

-G54D220*G54D217*G54D220*G54D217*G54D220*G54D217*G54D220*G54D217*G54D220*G54D217*G54D220*G54D217*G54D220*G54D217*G54D220*G54D217*G54D220*G54D217*G54D221*G54D217*G54D220*G54D222*G54D223*G54D224*G54D223*G54D225*G54D226*G54D225*G54D222*G54D223*G54D222*G54D223*G54D225*G54D222*G54D225*M02*

diff --git a/bbb_cape/schematic/gerbers/20140120/cape.group2.gbr b/bbb_cape/schematic/gerbers/20140120/cape.group2.gbr
deleted file mode 100644
index 37e0f53..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.group2.gbr
+++ /dev/null
@@ -1,25994 +0,0 @@
-G04 start of page 4 for group 2 idx 1 *

-G04 Title: 971 BBB Cape, power *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Mon Jan 20 21:04:42 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNGROUP2*%

-%ADD243C,0.2460*%

-%ADD242C,0.0460*%

-%ADD241C,0.2000*%

-%ADD240C,0.1285*%

-%ADD239C,0.0400*%

-%ADD238C,0.0350*%

-%ADD237C,0.0100*%

-%ADD236C,0.0600*%

-%ADD235C,0.0360*%

-%ADD234C,0.0200*%

-%ADD233C,0.2660*%

-%ADD232C,0.0660*%

-%ADD231C,0.2200*%

-%ADD230C,0.1830*%

-%ADD229C,0.0650*%

-%ADD228C,0.0250*%

-%ADD227C,0.0001*%

-G54D227*G36*

-X382941Y350500D02*Y358500D01*

-X389441D01*

-Y350500D01*

-X382941D01*

-G37*

-G36*

-X383941Y277500D02*Y285500D01*

-X390441D01*

-Y277500D01*

-X383941D01*

-G37*

-G36*

-X383441Y231000D02*Y239000D01*

-X389941D01*

-Y231000D01*

-X383441D01*

-G37*

-G36*

-X292922Y301042D02*Y309042D01*

-X299422D01*

-Y301042D01*

-X292922D01*

-G37*

-G36*

-X292941Y253000D02*Y261000D01*

-X299441D01*

-Y253000D01*

-X292941D01*

-G37*

-G36*

-X309441Y298000D02*Y303000D01*

-X314941D01*

-Y298000D01*

-X309441D01*

-G37*

-G36*

-X258902Y303109D02*Y311109D01*

-X265402D01*

-Y303109D01*

-X258902D01*

-G37*

-G36*

-X267941Y347000D02*Y352000D01*

-X273441D01*

-Y347000D01*

-X267941D01*

-G37*

-G36*

-Y340000D02*Y345000D01*

-X273441D01*

-Y340000D01*

-X267941D01*

-G37*

-G36*

-Y333500D02*Y338500D01*

-X273441D01*

-Y333500D01*

-X267941D01*

-G37*

-G36*

-X383441Y160000D02*Y168000D01*

-X389941D01*

-Y160000D01*

-X383441D01*

-G37*

-G36*

-X428941Y106500D02*Y114500D01*

-X435441D01*

-Y106500D01*

-X428941D01*

-G37*

-G36*

-X419441Y72000D02*Y78000D01*

-X426441D01*

-Y72000D01*

-X419441D01*

-G37*

-G36*

-X388723Y82123D02*Y87123D01*

-X394223D01*

-Y82123D01*

-X388723D01*

-G37*

-G36*

-X249877Y257055D02*Y265055D01*

-X256377D01*

-Y257055D01*

-X249877D01*

-G37*

-G36*

-X238701Y288207D02*Y296207D01*

-X245201D01*

-Y288207D01*

-X238701D01*

-G37*

-G36*

-X481441Y394000D02*Y41500D01*

-X478941Y39000D01*

-X473493D01*

-Y49236D01*

-X473500Y49235D01*

-X474245Y49294D01*

-X474972Y49469D01*

-X475663Y49755D01*

-X476301Y50145D01*

-X476869Y50631D01*

-X477355Y51199D01*

-X477745Y51837D01*

-X478031Y52528D01*

-X478206Y53255D01*

-X478250Y54000D01*

-X478206Y54745D01*

-X478031Y55472D01*

-X477745Y56163D01*

-X477355Y56801D01*

-X476869Y57369D01*

-X476301Y57855D01*

-X475663Y58245D01*

-X474972Y58531D01*

-X474245Y58706D01*

-X473500Y58765D01*

-X473493Y58764D01*

-Y79236D01*

-X473500Y79235D01*

-X474245Y79294D01*

-X474972Y79469D01*

-X475663Y79755D01*

-X476301Y80145D01*

-X476869Y80631D01*

-X477355Y81199D01*

-X477745Y81837D01*

-X478031Y82528D01*

-X478206Y83255D01*

-X478250Y84000D01*

-X478206Y84745D01*

-X478031Y85472D01*

-X477745Y86163D01*

-X477355Y86801D01*

-X476869Y87369D01*

-X476301Y87855D01*

-X475663Y88245D01*

-X474972Y88531D01*

-X474245Y88706D01*

-X473500Y88765D01*

-X473493Y88764D01*

-Y109236D01*

-X473500Y109235D01*

-X474245Y109294D01*

-X474972Y109469D01*

-X475663Y109755D01*

-X476301Y110145D01*

-X476869Y110631D01*

-X477355Y111199D01*

-X477745Y111837D01*

-X478031Y112528D01*

-X478206Y113255D01*

-X478250Y114000D01*

-X478206Y114745D01*

-X478031Y115472D01*

-X477745Y116163D01*

-X477355Y116801D01*

-X476869Y117369D01*

-X476301Y117855D01*

-X475663Y118245D01*

-X474972Y118531D01*

-X474245Y118706D01*

-X473500Y118765D01*

-X473493Y118764D01*

-Y139236D01*

-X473500Y139235D01*

-X474245Y139294D01*

-X474972Y139469D01*

-X475663Y139755D01*

-X476301Y140145D01*

-X476869Y140631D01*

-X477355Y141199D01*

-X477745Y141837D01*

-X478031Y142528D01*

-X478206Y143255D01*

-X478250Y144000D01*

-X478206Y144745D01*

-X478031Y145472D01*

-X477745Y146163D01*

-X477355Y146801D01*

-X476869Y147369D01*

-X476301Y147855D01*

-X475663Y148245D01*

-X474972Y148531D01*

-X474245Y148706D01*

-X473500Y148765D01*

-X473493Y148764D01*

-Y169236D01*

-X473500Y169235D01*

-X474245Y169294D01*

-X474972Y169469D01*

-X475663Y169755D01*

-X476301Y170145D01*

-X476869Y170631D01*

-X477355Y171199D01*

-X477745Y171837D01*

-X478031Y172528D01*

-X478206Y173255D01*

-X478250Y174000D01*

-X478206Y174745D01*

-X478031Y175472D01*

-X477745Y176163D01*

-X477355Y176801D01*

-X476869Y177369D01*

-X476301Y177855D01*

-X475663Y178245D01*

-X474972Y178531D01*

-X474245Y178706D01*

-X473500Y178765D01*

-X473493Y178764D01*

-Y199236D01*

-X473500Y199235D01*

-X474245Y199294D01*

-X474972Y199469D01*

-X475663Y199755D01*

-X476301Y200145D01*

-X476869Y200631D01*

-X477355Y201199D01*

-X477745Y201837D01*

-X478031Y202528D01*

-X478206Y203255D01*

-X478250Y204000D01*

-X478206Y204745D01*

-X478031Y205472D01*

-X477745Y206163D01*

-X477355Y206801D01*

-X476869Y207369D01*

-X476301Y207855D01*

-X475663Y208245D01*

-X474972Y208531D01*

-X474245Y208706D01*

-X473500Y208765D01*

-X473493Y208764D01*

-Y229236D01*

-X473500Y229235D01*

-X474245Y229294D01*

-X474972Y229469D01*

-X475663Y229755D01*

-X476301Y230145D01*

-X476869Y230631D01*

-X477355Y231199D01*

-X477745Y231837D01*

-X478031Y232528D01*

-X478206Y233255D01*

-X478250Y234000D01*

-X478206Y234745D01*

-X478031Y235472D01*

-X477745Y236163D01*

-X477355Y236801D01*

-X476869Y237369D01*

-X476301Y237855D01*

-X475663Y238245D01*

-X474972Y238531D01*

-X474245Y238706D01*

-X473500Y238765D01*

-X473493Y238764D01*

-Y259236D01*

-X473500Y259235D01*

-X474245Y259294D01*

-X474972Y259469D01*

-X475663Y259755D01*

-X476301Y260145D01*

-X476869Y260631D01*

-X477355Y261199D01*

-X477745Y261837D01*

-X478031Y262528D01*

-X478206Y263255D01*

-X478250Y264000D01*

-X478206Y264745D01*

-X478031Y265472D01*

-X477745Y266163D01*

-X477355Y266801D01*

-X476869Y267369D01*

-X476301Y267855D01*

-X475663Y268245D01*

-X474972Y268531D01*

-X474245Y268706D01*

-X473500Y268765D01*

-X473493Y268764D01*

-Y289236D01*

-X473500Y289235D01*

-X474245Y289294D01*

-X474972Y289469D01*

-X475663Y289755D01*

-X476301Y290145D01*

-X476869Y290631D01*

-X477355Y291199D01*

-X477745Y291837D01*

-X478031Y292528D01*

-X478206Y293255D01*

-X478250Y294000D01*

-X478206Y294745D01*

-X478031Y295472D01*

-X477745Y296163D01*

-X477355Y296801D01*

-X476869Y297369D01*

-X476301Y297855D01*

-X475663Y298245D01*

-X474972Y298531D01*

-X474245Y298706D01*

-X473500Y298765D01*

-X473493Y298764D01*

-Y319236D01*

-X473500Y319235D01*

-X474245Y319294D01*

-X474972Y319469D01*

-X475663Y319755D01*

-X476301Y320145D01*

-X476869Y320631D01*

-X477355Y321199D01*

-X477745Y321837D01*

-X478031Y322528D01*

-X478206Y323255D01*

-X478250Y324000D01*

-X478206Y324745D01*

-X478031Y325472D01*

-X477745Y326163D01*

-X477355Y326801D01*

-X476869Y327369D01*

-X476301Y327855D01*

-X475663Y328245D01*

-X474972Y328531D01*

-X474245Y328706D01*

-X473500Y328765D01*

-X473493Y328764D01*

-Y349236D01*

-X473500Y349235D01*

-X474245Y349294D01*

-X474972Y349469D01*

-X475663Y349755D01*

-X476301Y350145D01*

-X476869Y350631D01*

-X477355Y351199D01*

-X477745Y351837D01*

-X478031Y352528D01*

-X478206Y353255D01*

-X478250Y354000D01*

-X478206Y354745D01*

-X478031Y355472D01*

-X477745Y356163D01*

-X477355Y356801D01*

-X476869Y357369D01*

-X476301Y357855D01*

-X475663Y358245D01*

-X474972Y358531D01*

-X474245Y358706D01*

-X473500Y358765D01*

-X473493Y358764D01*

-Y379236D01*

-X473500Y379235D01*

-X474245Y379294D01*

-X474972Y379469D01*

-X475663Y379755D01*

-X476301Y380145D01*

-X476869Y380631D01*

-X477355Y381199D01*

-X477745Y381837D01*

-X478031Y382528D01*

-X478206Y383255D01*

-X478250Y384000D01*

-X478206Y384745D01*

-X478031Y385472D01*

-X477745Y386163D01*

-X477355Y386801D01*

-X476869Y387369D01*

-X476301Y387855D01*

-X475663Y388245D01*

-X474972Y388531D01*

-X474245Y388706D01*

-X473500Y388765D01*

-X473493Y388764D01*

-Y397000D01*

-X478941D01*

-X481441Y394000D01*

-G37*

-G36*

-X473493Y39000D02*X467332D01*

-Y51670D01*

-X467443Y51704D01*

-X467550Y51756D01*

-X467646Y51823D01*

-X467731Y51905D01*

-X467802Y52000D01*

-X467856Y52105D01*

-X468015Y52508D01*

-X468132Y52925D01*

-X468211Y53352D01*

-X468250Y53783D01*

-Y54217D01*

-X468211Y54648D01*

-X468132Y55075D01*

-X468015Y55492D01*

-X467860Y55897D01*

-X467805Y56002D01*

-X467734Y56097D01*

-X467648Y56179D01*

-X467551Y56247D01*

-X467445Y56299D01*

-X467332Y56334D01*

-Y81670D01*

-X467443Y81704D01*

-X467550Y81756D01*

-X467646Y81823D01*

-X467731Y81905D01*

-X467802Y82000D01*

-X467856Y82105D01*

-X468015Y82508D01*

-X468132Y82925D01*

-X468211Y83352D01*

-X468250Y83783D01*

-Y84217D01*

-X468211Y84648D01*

-X468132Y85075D01*

-X468015Y85492D01*

-X467860Y85897D01*

-X467805Y86002D01*

-X467734Y86097D01*

-X467648Y86179D01*

-X467551Y86247D01*

-X467445Y86299D01*

-X467332Y86334D01*

-Y111670D01*

-X467443Y111704D01*

-X467550Y111756D01*

-X467646Y111823D01*

-X467731Y111905D01*

-X467802Y112000D01*

-X467856Y112105D01*

-X468015Y112508D01*

-X468132Y112925D01*

-X468211Y113352D01*

-X468250Y113783D01*

-Y114217D01*

-X468211Y114648D01*

-X468132Y115075D01*

-X468015Y115492D01*

-X467860Y115897D01*

-X467805Y116002D01*

-X467734Y116097D01*

-X467648Y116179D01*

-X467551Y116247D01*

-X467445Y116299D01*

-X467332Y116334D01*

-Y141670D01*

-X467443Y141704D01*

-X467550Y141756D01*

-X467646Y141823D01*

-X467731Y141905D01*

-X467802Y142000D01*

-X467856Y142105D01*

-X468015Y142508D01*

-X468132Y142925D01*

-X468211Y143352D01*

-X468250Y143783D01*

-Y144217D01*

-X468211Y144648D01*

-X468132Y145075D01*

-X468015Y145492D01*

-X467860Y145897D01*

-X467805Y146002D01*

-X467734Y146097D01*

-X467648Y146179D01*

-X467551Y146247D01*

-X467445Y146299D01*

-X467332Y146334D01*

-Y171670D01*

-X467443Y171704D01*

-X467550Y171756D01*

-X467646Y171823D01*

-X467731Y171905D01*

-X467802Y172000D01*

-X467856Y172105D01*

-X468015Y172508D01*

-X468132Y172925D01*

-X468211Y173352D01*

-X468250Y173783D01*

-Y174217D01*

-X468211Y174648D01*

-X468132Y175075D01*

-X468015Y175492D01*

-X467860Y175897D01*

-X467805Y176002D01*

-X467734Y176097D01*

-X467648Y176179D01*

-X467551Y176247D01*

-X467445Y176299D01*

-X467332Y176334D01*

-Y201670D01*

-X467443Y201704D01*

-X467550Y201756D01*

-X467646Y201823D01*

-X467731Y201905D01*

-X467802Y202000D01*

-X467856Y202105D01*

-X468015Y202508D01*

-X468132Y202925D01*

-X468211Y203352D01*

-X468250Y203783D01*

-Y204217D01*

-X468211Y204648D01*

-X468132Y205075D01*

-X468015Y205492D01*

-X467860Y205897D01*

-X467805Y206002D01*

-X467734Y206097D01*

-X467648Y206179D01*

-X467551Y206247D01*

-X467445Y206299D01*

-X467332Y206334D01*

-Y231670D01*

-X467443Y231704D01*

-X467550Y231756D01*

-X467646Y231823D01*

-X467731Y231905D01*

-X467802Y232000D01*

-X467856Y232105D01*

-X468015Y232508D01*

-X468132Y232925D01*

-X468211Y233352D01*

-X468250Y233783D01*

-Y234217D01*

-X468211Y234648D01*

-X468132Y235075D01*

-X468015Y235492D01*

-X467860Y235897D01*

-X467805Y236002D01*

-X467734Y236097D01*

-X467648Y236179D01*

-X467551Y236247D01*

-X467445Y236299D01*

-X467332Y236334D01*

-Y261670D01*

-X467443Y261704D01*

-X467550Y261756D01*

-X467646Y261823D01*

-X467731Y261905D01*

-X467802Y262000D01*

-X467856Y262105D01*

-X468015Y262508D01*

-X468132Y262925D01*

-X468211Y263352D01*

-X468250Y263783D01*

-Y264217D01*

-X468211Y264648D01*

-X468132Y265075D01*

-X468015Y265492D01*

-X467860Y265897D01*

-X467805Y266002D01*

-X467734Y266097D01*

-X467648Y266179D01*

-X467551Y266247D01*

-X467445Y266299D01*

-X467332Y266334D01*

-Y291670D01*

-X467443Y291704D01*

-X467550Y291756D01*

-X467646Y291823D01*

-X467731Y291905D01*

-X467802Y292000D01*

-X467856Y292105D01*

-X468015Y292508D01*

-X468132Y292925D01*

-X468211Y293352D01*

-X468250Y293783D01*

-Y294217D01*

-X468211Y294648D01*

-X468132Y295075D01*

-X468015Y295492D01*

-X467860Y295897D01*

-X467805Y296002D01*

-X467734Y296097D01*

-X467648Y296179D01*

-X467551Y296247D01*

-X467445Y296299D01*

-X467332Y296334D01*

-Y321670D01*

-X467443Y321704D01*

-X467550Y321756D01*

-X467646Y321823D01*

-X467731Y321905D01*

-X467802Y322000D01*

-X467856Y322105D01*

-X468015Y322508D01*

-X468132Y322925D01*

-X468211Y323352D01*

-X468250Y323783D01*

-Y324217D01*

-X468211Y324648D01*

-X468132Y325075D01*

-X468015Y325492D01*

-X467860Y325897D01*

-X467805Y326002D01*

-X467734Y326097D01*

-X467648Y326179D01*

-X467551Y326247D01*

-X467445Y326299D01*

-X467332Y326334D01*

-Y351670D01*

-X467443Y351704D01*

-X467550Y351756D01*

-X467646Y351823D01*

-X467731Y351905D01*

-X467802Y352000D01*

-X467856Y352105D01*

-X468015Y352508D01*

-X468132Y352925D01*

-X468211Y353352D01*

-X468250Y353783D01*

-Y354217D01*

-X468211Y354648D01*

-X468132Y355075D01*

-X468015Y355492D01*

-X467860Y355897D01*

-X467805Y356002D01*

-X467734Y356097D01*

-X467648Y356179D01*

-X467551Y356247D01*

-X467445Y356299D01*

-X467332Y356334D01*

-Y381670D01*

-X467443Y381704D01*

-X467550Y381756D01*

-X467646Y381823D01*

-X467731Y381905D01*

-X467802Y382000D01*

-X467856Y382105D01*

-X468015Y382508D01*

-X468132Y382925D01*

-X468211Y383352D01*

-X468250Y383783D01*

-Y384217D01*

-X468211Y384648D01*

-X468132Y385075D01*

-X468015Y385492D01*

-X467860Y385897D01*

-X467805Y386002D01*

-X467734Y386097D01*

-X467648Y386179D01*

-X467551Y386247D01*

-X467445Y386299D01*

-X467332Y386334D01*

-Y397000D01*

-X473493D01*

-Y388764D01*

-X472755Y388706D01*

-X472028Y388531D01*

-X471337Y388245D01*

-X470699Y387855D01*

-X470131Y387369D01*

-X469645Y386801D01*

-X469255Y386163D01*

-X468969Y385472D01*

-X468794Y384745D01*

-X468735Y384000D01*

-X468794Y383255D01*

-X468969Y382528D01*

-X469255Y381837D01*

-X469645Y381199D01*

-X470131Y380631D01*

-X470699Y380145D01*

-X471337Y379755D01*

-X472028Y379469D01*

-X472755Y379294D01*

-X473493Y379236D01*

-Y358764D01*

-X472755Y358706D01*

-X472028Y358531D01*

-X471337Y358245D01*

-X470699Y357855D01*

-X470131Y357369D01*

-X469645Y356801D01*

-X469255Y356163D01*

-X468969Y355472D01*

-X468794Y354745D01*

-X468735Y354000D01*

-X468794Y353255D01*

-X468969Y352528D01*

-X469255Y351837D01*

-X469645Y351199D01*

-X470131Y350631D01*

-X470699Y350145D01*

-X471337Y349755D01*

-X472028Y349469D01*

-X472755Y349294D01*

-X473493Y349236D01*

-Y328764D01*

-X472755Y328706D01*

-X472028Y328531D01*

-X471337Y328245D01*

-X470699Y327855D01*

-X470131Y327369D01*

-X469645Y326801D01*

-X469255Y326163D01*

-X468969Y325472D01*

-X468794Y324745D01*

-X468735Y324000D01*

-X468794Y323255D01*

-X468969Y322528D01*

-X469255Y321837D01*

-X469645Y321199D01*

-X470131Y320631D01*

-X470699Y320145D01*

-X471337Y319755D01*

-X472028Y319469D01*

-X472755Y319294D01*

-X473493Y319236D01*

-Y298764D01*

-X472755Y298706D01*

-X472028Y298531D01*

-X471337Y298245D01*

-X470699Y297855D01*

-X470131Y297369D01*

-X469645Y296801D01*

-X469255Y296163D01*

-X468969Y295472D01*

-X468794Y294745D01*

-X468735Y294000D01*

-X468794Y293255D01*

-X468969Y292528D01*

-X469255Y291837D01*

-X469645Y291199D01*

-X470131Y290631D01*

-X470699Y290145D01*

-X471337Y289755D01*

-X472028Y289469D01*

-X472755Y289294D01*

-X473493Y289236D01*

-Y268764D01*

-X472755Y268706D01*

-X472028Y268531D01*

-X471337Y268245D01*

-X470699Y267855D01*

-X470131Y267369D01*

-X469645Y266801D01*

-X469255Y266163D01*

-X468969Y265472D01*

-X468794Y264745D01*

-X468735Y264000D01*

-X468794Y263255D01*

-X468969Y262528D01*

-X469255Y261837D01*

-X469645Y261199D01*

-X470131Y260631D01*

-X470699Y260145D01*

-X471337Y259755D01*

-X472028Y259469D01*

-X472755Y259294D01*

-X473493Y259236D01*

-Y238764D01*

-X472755Y238706D01*

-X472028Y238531D01*

-X471337Y238245D01*

-X470699Y237855D01*

-X470131Y237369D01*

-X469645Y236801D01*

-X469255Y236163D01*

-X468969Y235472D01*

-X468794Y234745D01*

-X468735Y234000D01*

-X468794Y233255D01*

-X468969Y232528D01*

-X469255Y231837D01*

-X469645Y231199D01*

-X470131Y230631D01*

-X470699Y230145D01*

-X471337Y229755D01*

-X472028Y229469D01*

-X472755Y229294D01*

-X473493Y229236D01*

-Y208764D01*

-X472755Y208706D01*

-X472028Y208531D01*

-X471337Y208245D01*

-X470699Y207855D01*

-X470131Y207369D01*

-X469645Y206801D01*

-X469255Y206163D01*

-X468969Y205472D01*

-X468794Y204745D01*

-X468735Y204000D01*

-X468794Y203255D01*

-X468969Y202528D01*

-X469255Y201837D01*

-X469645Y201199D01*

-X470131Y200631D01*

-X470699Y200145D01*

-X471337Y199755D01*

-X472028Y199469D01*

-X472755Y199294D01*

-X473493Y199236D01*

-Y178764D01*

-X472755Y178706D01*

-X472028Y178531D01*

-X471337Y178245D01*

-X470699Y177855D01*

-X470131Y177369D01*

-X469645Y176801D01*

-X469255Y176163D01*

-X468969Y175472D01*

-X468794Y174745D01*

-X468735Y174000D01*

-X468794Y173255D01*

-X468969Y172528D01*

-X469255Y171837D01*

-X469645Y171199D01*

-X470131Y170631D01*

-X470699Y170145D01*

-X471337Y169755D01*

-X472028Y169469D01*

-X472755Y169294D01*

-X473493Y169236D01*

-Y148764D01*

-X472755Y148706D01*

-X472028Y148531D01*

-X471337Y148245D01*

-X470699Y147855D01*

-X470131Y147369D01*

-X469645Y146801D01*

-X469255Y146163D01*

-X468969Y145472D01*

-X468794Y144745D01*

-X468735Y144000D01*

-X468794Y143255D01*

-X468969Y142528D01*

-X469255Y141837D01*

-X469645Y141199D01*

-X470131Y140631D01*

-X470699Y140145D01*

-X471337Y139755D01*

-X472028Y139469D01*

-X472755Y139294D01*

-X473493Y139236D01*

-Y118764D01*

-X472755Y118706D01*

-X472028Y118531D01*

-X471337Y118245D01*

-X470699Y117855D01*

-X470131Y117369D01*

-X469645Y116801D01*

-X469255Y116163D01*

-X468969Y115472D01*

-X468794Y114745D01*

-X468735Y114000D01*

-X468794Y113255D01*

-X468969Y112528D01*

-X469255Y111837D01*

-X469645Y111199D01*

-X470131Y110631D01*

-X470699Y110145D01*

-X471337Y109755D01*

-X472028Y109469D01*

-X472755Y109294D01*

-X473493Y109236D01*

-Y88764D01*

-X472755Y88706D01*

-X472028Y88531D01*

-X471337Y88245D01*

-X470699Y87855D01*

-X470131Y87369D01*

-X469645Y86801D01*

-X469255Y86163D01*

-X468969Y85472D01*

-X468794Y84745D01*

-X468735Y84000D01*

-X468794Y83255D01*

-X468969Y82528D01*

-X469255Y81837D01*

-X469645Y81199D01*

-X470131Y80631D01*

-X470699Y80145D01*

-X471337Y79755D01*

-X472028Y79469D01*

-X472755Y79294D01*

-X473493Y79236D01*

-Y58764D01*

-X472755Y58706D01*

-X472028Y58531D01*

-X471337Y58245D01*

-X470699Y57855D01*

-X470131Y57369D01*

-X469645Y56801D01*

-X469255Y56163D01*

-X468969Y55472D01*

-X468794Y54745D01*

-X468735Y54000D01*

-X468794Y53255D01*

-X468969Y52528D01*

-X469255Y51837D01*

-X469645Y51199D01*

-X470131Y50631D01*

-X470699Y50145D01*

-X471337Y49755D01*

-X472028Y49469D01*

-X472755Y49294D01*

-X473493Y49236D01*

-Y39000D01*

-G37*

-G36*

-X467332D02*X463502D01*

-Y49250D01*

-X463717D01*

-X464148Y49289D01*

-X464575Y49368D01*

-X464992Y49485D01*

-X465397Y49640D01*

-X465502Y49695D01*

-X465597Y49766D01*

-X465679Y49852D01*

-X465747Y49949D01*

-X465799Y50055D01*

-X465834Y50169D01*

-X465850Y50286D01*

-X465848Y50405D01*

-X465827Y50522D01*

-X465789Y50634D01*

-X465733Y50738D01*

-X465662Y50833D01*

-X465576Y50915D01*

-X465479Y50983D01*

-X465373Y51035D01*

-X465259Y51070D01*

-X465142Y51086D01*

-X465023Y51084D01*

-X464906Y51064D01*

-X464795Y51023D01*

-X464520Y50914D01*

-X464235Y50834D01*

-X463943Y50780D01*

-X463648Y50753D01*

-X463502D01*

-Y57247D01*

-X463648D01*

-X463943Y57220D01*

-X464235Y57166D01*

-X464520Y57086D01*

-X464797Y56980D01*

-X464907Y56940D01*

-X465024Y56919D01*

-X465142Y56917D01*

-X465259Y56933D01*

-X465371Y56968D01*

-X465478Y57020D01*

-X465574Y57087D01*

-X465659Y57169D01*

-X465730Y57263D01*

-X465786Y57368D01*

-X465824Y57479D01*

-X465845Y57596D01*

-X465847Y57714D01*

-X465830Y57830D01*

-X465796Y57943D01*

-X465744Y58050D01*

-X465677Y58146D01*

-X465595Y58231D01*

-X465500Y58302D01*

-X465395Y58356D01*

-X464992Y58515D01*

-X464575Y58632D01*

-X464148Y58711D01*

-X463717Y58750D01*

-X463502D01*

-Y79250D01*

-X463717D01*

-X464148Y79289D01*

-X464575Y79368D01*

-X464992Y79485D01*

-X465397Y79640D01*

-X465502Y79695D01*

-X465597Y79766D01*

-X465679Y79852D01*

-X465747Y79949D01*

-X465799Y80055D01*

-X465834Y80169D01*

-X465850Y80286D01*

-X465848Y80405D01*

-X465827Y80522D01*

-X465789Y80634D01*

-X465733Y80738D01*

-X465662Y80833D01*

-X465576Y80915D01*

-X465479Y80983D01*

-X465373Y81035D01*

-X465259Y81070D01*

-X465142Y81086D01*

-X465023Y81084D01*

-X464906Y81064D01*

-X464795Y81023D01*

-X464520Y80914D01*

-X464235Y80834D01*

-X463943Y80780D01*

-X463648Y80753D01*

-X463502D01*

-Y87247D01*

-X463648D01*

-X463943Y87220D01*

-X464235Y87166D01*

-X464520Y87086D01*

-X464797Y86980D01*

-X464907Y86940D01*

-X465024Y86919D01*

-X465142Y86917D01*

-X465259Y86933D01*

-X465371Y86968D01*

-X465478Y87020D01*

-X465574Y87087D01*

-X465659Y87169D01*

-X465730Y87263D01*

-X465786Y87368D01*

-X465824Y87479D01*

-X465845Y87596D01*

-X465847Y87714D01*

-X465830Y87830D01*

-X465796Y87943D01*

-X465744Y88050D01*

-X465677Y88146D01*

-X465595Y88231D01*

-X465500Y88302D01*

-X465395Y88356D01*

-X464992Y88515D01*

-X464575Y88632D01*

-X464148Y88711D01*

-X463717Y88750D01*

-X463502D01*

-Y109250D01*

-X463717D01*

-X464148Y109289D01*

-X464575Y109368D01*

-X464992Y109485D01*

-X465397Y109640D01*

-X465502Y109695D01*

-X465597Y109766D01*

-X465679Y109852D01*

-X465747Y109949D01*

-X465799Y110055D01*

-X465834Y110169D01*

-X465850Y110286D01*

-X465848Y110405D01*

-X465827Y110522D01*

-X465789Y110634D01*

-X465733Y110738D01*

-X465662Y110833D01*

-X465576Y110915D01*

-X465479Y110983D01*

-X465373Y111035D01*

-X465259Y111070D01*

-X465142Y111086D01*

-X465023Y111084D01*

-X464906Y111064D01*

-X464795Y111023D01*

-X464520Y110914D01*

-X464235Y110834D01*

-X463943Y110780D01*

-X463648Y110753D01*

-X463502D01*

-Y117247D01*

-X463648D01*

-X463943Y117220D01*

-X464235Y117166D01*

-X464520Y117086D01*

-X464797Y116980D01*

-X464907Y116940D01*

-X465024Y116919D01*

-X465142Y116917D01*

-X465259Y116933D01*

-X465371Y116968D01*

-X465478Y117020D01*

-X465574Y117087D01*

-X465659Y117169D01*

-X465730Y117263D01*

-X465786Y117368D01*

-X465824Y117479D01*

-X465845Y117596D01*

-X465847Y117714D01*

-X465830Y117830D01*

-X465796Y117943D01*

-X465744Y118050D01*

-X465677Y118146D01*

-X465595Y118231D01*

-X465500Y118302D01*

-X465395Y118356D01*

-X464992Y118515D01*

-X464575Y118632D01*

-X464148Y118711D01*

-X463717Y118750D01*

-X463502D01*

-Y139250D01*

-X463717D01*

-X464148Y139289D01*

-X464575Y139368D01*

-X464992Y139485D01*

-X465397Y139640D01*

-X465502Y139695D01*

-X465597Y139766D01*

-X465679Y139852D01*

-X465747Y139949D01*

-X465799Y140055D01*

-X465834Y140169D01*

-X465850Y140286D01*

-X465848Y140405D01*

-X465827Y140522D01*

-X465789Y140634D01*

-X465733Y140738D01*

-X465662Y140833D01*

-X465576Y140915D01*

-X465479Y140983D01*

-X465373Y141035D01*

-X465259Y141070D01*

-X465142Y141086D01*

-X465023Y141084D01*

-X464906Y141064D01*

-X464795Y141023D01*

-X464520Y140914D01*

-X464235Y140834D01*

-X463943Y140780D01*

-X463648Y140753D01*

-X463502D01*

-Y147247D01*

-X463648D01*

-X463943Y147220D01*

-X464235Y147166D01*

-X464520Y147086D01*

-X464797Y146980D01*

-X464907Y146940D01*

-X465024Y146919D01*

-X465142Y146917D01*

-X465259Y146933D01*

-X465371Y146968D01*

-X465478Y147020D01*

-X465574Y147087D01*

-X465659Y147169D01*

-X465730Y147263D01*

-X465786Y147368D01*

-X465824Y147479D01*

-X465845Y147596D01*

-X465847Y147714D01*

-X465830Y147830D01*

-X465796Y147943D01*

-X465744Y148050D01*

-X465677Y148146D01*

-X465595Y148231D01*

-X465500Y148302D01*

-X465395Y148356D01*

-X464992Y148515D01*

-X464575Y148632D01*

-X464148Y148711D01*

-X463717Y148750D01*

-X463502D01*

-Y169250D01*

-X463717D01*

-X464148Y169289D01*

-X464575Y169368D01*

-X464992Y169485D01*

-X465397Y169640D01*

-X465502Y169695D01*

-X465597Y169766D01*

-X465679Y169852D01*

-X465747Y169949D01*

-X465799Y170055D01*

-X465834Y170169D01*

-X465850Y170286D01*

-X465848Y170405D01*

-X465827Y170522D01*

-X465789Y170634D01*

-X465733Y170738D01*

-X465662Y170833D01*

-X465576Y170915D01*

-X465479Y170983D01*

-X465373Y171035D01*

-X465259Y171070D01*

-X465142Y171086D01*

-X465023Y171084D01*

-X464906Y171064D01*

-X464795Y171023D01*

-X464520Y170914D01*

-X464235Y170834D01*

-X463943Y170780D01*

-X463648Y170753D01*

-X463502D01*

-Y177247D01*

-X463648D01*

-X463943Y177220D01*

-X464235Y177166D01*

-X464520Y177086D01*

-X464797Y176980D01*

-X464907Y176940D01*

-X465024Y176919D01*

-X465142Y176917D01*

-X465259Y176933D01*

-X465371Y176968D01*

-X465478Y177020D01*

-X465574Y177087D01*

-X465659Y177169D01*

-X465730Y177263D01*

-X465786Y177368D01*

-X465824Y177479D01*

-X465845Y177596D01*

-X465847Y177714D01*

-X465830Y177830D01*

-X465796Y177943D01*

-X465744Y178050D01*

-X465677Y178146D01*

-X465595Y178231D01*

-X465500Y178302D01*

-X465395Y178356D01*

-X464992Y178515D01*

-X464575Y178632D01*

-X464148Y178711D01*

-X463717Y178750D01*

-X463502D01*

-Y199250D01*

-X463717D01*

-X464148Y199289D01*

-X464575Y199368D01*

-X464992Y199485D01*

-X465397Y199640D01*

-X465502Y199695D01*

-X465597Y199766D01*

-X465679Y199852D01*

-X465747Y199949D01*

-X465799Y200055D01*

-X465834Y200169D01*

-X465850Y200286D01*

-X465848Y200405D01*

-X465827Y200522D01*

-X465789Y200634D01*

-X465733Y200738D01*

-X465662Y200833D01*

-X465576Y200915D01*

-X465479Y200983D01*

-X465373Y201035D01*

-X465259Y201070D01*

-X465142Y201086D01*

-X465023Y201084D01*

-X464906Y201064D01*

-X464795Y201023D01*

-X464520Y200914D01*

-X464235Y200834D01*

-X463943Y200780D01*

-X463648Y200753D01*

-X463502D01*

-Y207247D01*

-X463648D01*

-X463943Y207220D01*

-X464235Y207166D01*

-X464520Y207086D01*

-X464797Y206980D01*

-X464907Y206940D01*

-X465024Y206919D01*

-X465142Y206917D01*

-X465259Y206933D01*

-X465371Y206968D01*

-X465478Y207020D01*

-X465574Y207087D01*

-X465659Y207169D01*

-X465730Y207263D01*

-X465786Y207368D01*

-X465824Y207479D01*

-X465845Y207596D01*

-X465847Y207714D01*

-X465830Y207830D01*

-X465796Y207943D01*

-X465744Y208050D01*

-X465677Y208146D01*

-X465595Y208231D01*

-X465500Y208302D01*

-X465395Y208356D01*

-X464992Y208515D01*

-X464575Y208632D01*

-X464148Y208711D01*

-X463717Y208750D01*

-X463502D01*

-Y229250D01*

-X463717D01*

-X464148Y229289D01*

-X464575Y229368D01*

-X464992Y229485D01*

-X465397Y229640D01*

-X465502Y229695D01*

-X465597Y229766D01*

-X465679Y229852D01*

-X465747Y229949D01*

-X465799Y230055D01*

-X465834Y230169D01*

-X465850Y230286D01*

-X465848Y230405D01*

-X465827Y230522D01*

-X465789Y230634D01*

-X465733Y230738D01*

-X465662Y230833D01*

-X465576Y230915D01*

-X465479Y230983D01*

-X465373Y231035D01*

-X465259Y231070D01*

-X465142Y231086D01*

-X465023Y231084D01*

-X464906Y231064D01*

-X464795Y231023D01*

-X464520Y230914D01*

-X464235Y230834D01*

-X463943Y230780D01*

-X463648Y230753D01*

-X463502D01*

-Y237247D01*

-X463648D01*

-X463943Y237220D01*

-X464235Y237166D01*

-X464520Y237086D01*

-X464797Y236980D01*

-X464907Y236940D01*

-X465024Y236919D01*

-X465142Y236917D01*

-X465259Y236933D01*

-X465371Y236968D01*

-X465478Y237020D01*

-X465574Y237087D01*

-X465659Y237169D01*

-X465730Y237263D01*

-X465786Y237368D01*

-X465824Y237479D01*

-X465845Y237596D01*

-X465847Y237714D01*

-X465830Y237830D01*

-X465796Y237943D01*

-X465744Y238050D01*

-X465677Y238146D01*

-X465595Y238231D01*

-X465500Y238302D01*

-X465395Y238356D01*

-X464992Y238515D01*

-X464575Y238632D01*

-X464148Y238711D01*

-X463717Y238750D01*

-X463502D01*

-Y259250D01*

-X463717D01*

-X464148Y259289D01*

-X464575Y259368D01*

-X464992Y259485D01*

-X465397Y259640D01*

-X465502Y259695D01*

-X465597Y259766D01*

-X465679Y259852D01*

-X465747Y259949D01*

-X465799Y260055D01*

-X465834Y260169D01*

-X465850Y260286D01*

-X465848Y260405D01*

-X465827Y260522D01*

-X465789Y260634D01*

-X465733Y260738D01*

-X465662Y260833D01*

-X465576Y260915D01*

-X465479Y260983D01*

-X465373Y261035D01*

-X465259Y261070D01*

-X465142Y261086D01*

-X465023Y261084D01*

-X464906Y261064D01*

-X464795Y261023D01*

-X464520Y260914D01*

-X464235Y260834D01*

-X463943Y260780D01*

-X463648Y260753D01*

-X463502D01*

-Y267247D01*

-X463648D01*

-X463943Y267220D01*

-X464235Y267166D01*

-X464520Y267086D01*

-X464797Y266980D01*

-X464907Y266940D01*

-X465024Y266919D01*

-X465142Y266917D01*

-X465259Y266933D01*

-X465371Y266968D01*

-X465478Y267020D01*

-X465574Y267087D01*

-X465659Y267169D01*

-X465730Y267263D01*

-X465786Y267368D01*

-X465824Y267479D01*

-X465845Y267596D01*

-X465847Y267714D01*

-X465830Y267830D01*

-X465796Y267943D01*

-X465744Y268050D01*

-X465677Y268146D01*

-X465595Y268231D01*

-X465500Y268302D01*

-X465395Y268356D01*

-X464992Y268515D01*

-X464575Y268632D01*

-X464148Y268711D01*

-X463717Y268750D01*

-X463502D01*

-Y289250D01*

-X463717D01*

-X464148Y289289D01*

-X464575Y289368D01*

-X464992Y289485D01*

-X465397Y289640D01*

-X465502Y289695D01*

-X465597Y289766D01*

-X465679Y289852D01*

-X465747Y289949D01*

-X465799Y290055D01*

-X465834Y290169D01*

-X465850Y290286D01*

-X465848Y290405D01*

-X465827Y290522D01*

-X465789Y290634D01*

-X465733Y290738D01*

-X465662Y290833D01*

-X465576Y290915D01*

-X465479Y290983D01*

-X465373Y291035D01*

-X465259Y291070D01*

-X465142Y291086D01*

-X465023Y291084D01*

-X464906Y291064D01*

-X464795Y291023D01*

-X464520Y290914D01*

-X464235Y290834D01*

-X463943Y290780D01*

-X463648Y290753D01*

-X463502D01*

-Y297247D01*

-X463648D01*

-X463943Y297220D01*

-X464235Y297166D01*

-X464520Y297086D01*

-X464797Y296980D01*

-X464907Y296940D01*

-X465024Y296919D01*

-X465142Y296917D01*

-X465259Y296933D01*

-X465371Y296968D01*

-X465478Y297020D01*

-X465574Y297087D01*

-X465659Y297169D01*

-X465730Y297263D01*

-X465786Y297368D01*

-X465824Y297479D01*

-X465845Y297596D01*

-X465847Y297714D01*

-X465830Y297830D01*

-X465796Y297943D01*

-X465744Y298050D01*

-X465677Y298146D01*

-X465595Y298231D01*

-X465500Y298302D01*

-X465395Y298356D01*

-X464992Y298515D01*

-X464575Y298632D01*

-X464148Y298711D01*

-X463717Y298750D01*

-X463502D01*

-Y319250D01*

-X463717D01*

-X464148Y319289D01*

-X464575Y319368D01*

-X464992Y319485D01*

-X465397Y319640D01*

-X465502Y319695D01*

-X465597Y319766D01*

-X465679Y319852D01*

-X465747Y319949D01*

-X465799Y320055D01*

-X465834Y320169D01*

-X465850Y320286D01*

-X465848Y320405D01*

-X465827Y320522D01*

-X465789Y320634D01*

-X465733Y320738D01*

-X465662Y320833D01*

-X465576Y320915D01*

-X465479Y320983D01*

-X465373Y321035D01*

-X465259Y321070D01*

-X465142Y321086D01*

-X465023Y321084D01*

-X464906Y321064D01*

-X464795Y321023D01*

-X464520Y320914D01*

-X464235Y320834D01*

-X463943Y320780D01*

-X463648Y320753D01*

-X463502D01*

-Y327247D01*

-X463648D01*

-X463943Y327220D01*

-X464235Y327166D01*

-X464520Y327086D01*

-X464797Y326980D01*

-X464907Y326940D01*

-X465024Y326919D01*

-X465142Y326917D01*

-X465259Y326933D01*

-X465371Y326968D01*

-X465478Y327020D01*

-X465574Y327087D01*

-X465659Y327169D01*

-X465730Y327263D01*

-X465786Y327368D01*

-X465824Y327479D01*

-X465845Y327596D01*

-X465847Y327714D01*

-X465830Y327830D01*

-X465796Y327943D01*

-X465744Y328050D01*

-X465677Y328146D01*

-X465595Y328231D01*

-X465500Y328302D01*

-X465395Y328356D01*

-X464992Y328515D01*

-X464575Y328632D01*

-X464148Y328711D01*

-X463717Y328750D01*

-X463502D01*

-Y349250D01*

-X463717D01*

-X464148Y349289D01*

-X464575Y349368D01*

-X464992Y349485D01*

-X465397Y349640D01*

-X465502Y349695D01*

-X465597Y349766D01*

-X465679Y349852D01*

-X465747Y349949D01*

-X465799Y350055D01*

-X465834Y350169D01*

-X465850Y350286D01*

-X465848Y350405D01*

-X465827Y350522D01*

-X465789Y350634D01*

-X465733Y350738D01*

-X465662Y350833D01*

-X465576Y350915D01*

-X465479Y350983D01*

-X465373Y351035D01*

-X465259Y351070D01*

-X465142Y351086D01*

-X465023Y351084D01*

-X464906Y351064D01*

-X464795Y351023D01*

-X464520Y350914D01*

-X464235Y350834D01*

-X463943Y350780D01*

-X463648Y350753D01*

-X463502D01*

-Y357247D01*

-X463648D01*

-X463943Y357220D01*

-X464235Y357166D01*

-X464520Y357086D01*

-X464797Y356980D01*

-X464907Y356940D01*

-X465024Y356919D01*

-X465142Y356917D01*

-X465259Y356933D01*

-X465371Y356968D01*

-X465478Y357020D01*

-X465574Y357087D01*

-X465659Y357169D01*

-X465730Y357263D01*

-X465786Y357368D01*

-X465824Y357479D01*

-X465845Y357596D01*

-X465847Y357714D01*

-X465830Y357830D01*

-X465796Y357943D01*

-X465744Y358050D01*

-X465677Y358146D01*

-X465595Y358231D01*

-X465500Y358302D01*

-X465395Y358356D01*

-X464992Y358515D01*

-X464575Y358632D01*

-X464148Y358711D01*

-X463717Y358750D01*

-X463502D01*

-Y379250D01*

-X463717D01*

-X464148Y379289D01*

-X464575Y379368D01*

-X464992Y379485D01*

-X465397Y379640D01*

-X465502Y379695D01*

-X465597Y379766D01*

-X465679Y379852D01*

-X465747Y379949D01*

-X465799Y380055D01*

-X465834Y380169D01*

-X465850Y380286D01*

-X465848Y380405D01*

-X465827Y380522D01*

-X465789Y380634D01*

-X465733Y380738D01*

-X465662Y380833D01*

-X465576Y380915D01*

-X465479Y380983D01*

-X465373Y381035D01*

-X465259Y381070D01*

-X465142Y381086D01*

-X465023Y381084D01*

-X464906Y381064D01*

-X464795Y381023D01*

-X464520Y380914D01*

-X464235Y380834D01*

-X463943Y380780D01*

-X463648Y380753D01*

-X463502D01*

-Y387247D01*

-X463648D01*

-X463943Y387220D01*

-X464235Y387166D01*

-X464520Y387086D01*

-X464797Y386980D01*

-X464907Y386940D01*

-X465024Y386919D01*

-X465142Y386917D01*

-X465259Y386933D01*

-X465371Y386968D01*

-X465478Y387020D01*

-X465574Y387087D01*

-X465659Y387169D01*

-X465730Y387263D01*

-X465786Y387368D01*

-X465824Y387479D01*

-X465845Y387596D01*

-X465847Y387714D01*

-X465830Y387830D01*

-X465796Y387943D01*

-X465744Y388050D01*

-X465677Y388146D01*

-X465595Y388231D01*

-X465500Y388302D01*

-X465395Y388356D01*

-X464992Y388515D01*

-X464575Y388632D01*

-X464148Y388711D01*

-X463717Y388750D01*

-X463502D01*

-Y397000D01*

-X467332D01*

-Y386334D01*

-X467331Y386334D01*

-X467214Y386350D01*

-X467095Y386348D01*

-X466978Y386327D01*

-X466866Y386289D01*

-X466762Y386233D01*

-X466667Y386162D01*

-X466585Y386076D01*

-X466517Y385979D01*

-X466465Y385873D01*

-X466430Y385759D01*

-X466414Y385642D01*

-X466416Y385523D01*

-X466436Y385407D01*

-X466477Y385295D01*

-X466586Y385020D01*

-X466666Y384735D01*

-X466720Y384443D01*

-X466747Y384148D01*

-Y383852D01*

-X466720Y383557D01*

-X466666Y383265D01*

-X466586Y382980D01*

-X466480Y382703D01*

-X466440Y382593D01*

-X466419Y382476D01*

-X466417Y382358D01*

-X466433Y382241D01*

-X466468Y382129D01*

-X466520Y382022D01*

-X466587Y381926D01*

-X466669Y381841D01*

-X466763Y381770D01*

-X466868Y381714D01*

-X466979Y381676D01*

-X467096Y381655D01*

-X467214Y381653D01*

-X467330Y381670D01*

-X467332Y381670D01*

-Y356334D01*

-X467331Y356334D01*

-X467214Y356350D01*

-X467095Y356348D01*

-X466978Y356327D01*

-X466866Y356289D01*

-X466762Y356233D01*

-X466667Y356162D01*

-X466585Y356076D01*

-X466517Y355979D01*

-X466465Y355873D01*

-X466430Y355759D01*

-X466414Y355642D01*

-X466416Y355523D01*

-X466436Y355407D01*

-X466477Y355295D01*

-X466586Y355020D01*

-X466666Y354735D01*

-X466720Y354443D01*

-X466747Y354148D01*

-Y353852D01*

-X466720Y353557D01*

-X466666Y353265D01*

-X466586Y352980D01*

-X466480Y352703D01*

-X466440Y352593D01*

-X466419Y352476D01*

-X466417Y352358D01*

-X466433Y352241D01*

-X466468Y352129D01*

-X466520Y352022D01*

-X466587Y351926D01*

-X466669Y351841D01*

-X466763Y351770D01*

-X466868Y351714D01*

-X466979Y351676D01*

-X467096Y351655D01*

-X467214Y351653D01*

-X467330Y351670D01*

-X467332Y351670D01*

-Y326334D01*

-X467331Y326334D01*

-X467214Y326350D01*

-X467095Y326348D01*

-X466978Y326327D01*

-X466866Y326289D01*

-X466762Y326233D01*

-X466667Y326162D01*

-X466585Y326076D01*

-X466517Y325979D01*

-X466465Y325873D01*

-X466430Y325759D01*

-X466414Y325642D01*

-X466416Y325523D01*

-X466436Y325407D01*

-X466477Y325295D01*

-X466586Y325020D01*

-X466666Y324735D01*

-X466720Y324443D01*

-X466747Y324148D01*

-Y323852D01*

-X466720Y323557D01*

-X466666Y323265D01*

-X466586Y322980D01*

-X466480Y322703D01*

-X466440Y322593D01*

-X466419Y322476D01*

-X466417Y322358D01*

-X466433Y322241D01*

-X466468Y322129D01*

-X466520Y322022D01*

-X466587Y321926D01*

-X466669Y321841D01*

-X466763Y321770D01*

-X466868Y321714D01*

-X466979Y321676D01*

-X467096Y321655D01*

-X467214Y321653D01*

-X467330Y321670D01*

-X467332Y321670D01*

-Y296334D01*

-X467331Y296334D01*

-X467214Y296350D01*

-X467095Y296348D01*

-X466978Y296327D01*

-X466866Y296289D01*

-X466762Y296233D01*

-X466667Y296162D01*

-X466585Y296076D01*

-X466517Y295979D01*

-X466465Y295873D01*

-X466430Y295759D01*

-X466414Y295642D01*

-X466416Y295523D01*

-X466436Y295407D01*

-X466477Y295295D01*

-X466586Y295020D01*

-X466666Y294735D01*

-X466720Y294443D01*

-X466747Y294148D01*

-Y293852D01*

-X466720Y293557D01*

-X466666Y293265D01*

-X466586Y292980D01*

-X466480Y292703D01*

-X466440Y292593D01*

-X466419Y292476D01*

-X466417Y292358D01*

-X466433Y292241D01*

-X466468Y292129D01*

-X466520Y292022D01*

-X466587Y291926D01*

-X466669Y291841D01*

-X466763Y291770D01*

-X466868Y291714D01*

-X466979Y291676D01*

-X467096Y291655D01*

-X467214Y291653D01*

-X467330Y291670D01*

-X467332Y291670D01*

-Y266334D01*

-X467331Y266334D01*

-X467214Y266350D01*

-X467095Y266348D01*

-X466978Y266327D01*

-X466866Y266289D01*

-X466762Y266233D01*

-X466667Y266162D01*

-X466585Y266076D01*

-X466517Y265979D01*

-X466465Y265873D01*

-X466430Y265759D01*

-X466414Y265642D01*

-X466416Y265523D01*

-X466436Y265407D01*

-X466477Y265295D01*

-X466586Y265020D01*

-X466666Y264735D01*

-X466720Y264443D01*

-X466747Y264148D01*

-Y263852D01*

-X466720Y263557D01*

-X466666Y263265D01*

-X466586Y262980D01*

-X466480Y262703D01*

-X466440Y262593D01*

-X466419Y262476D01*

-X466417Y262358D01*

-X466433Y262241D01*

-X466468Y262129D01*

-X466520Y262022D01*

-X466587Y261926D01*

-X466669Y261841D01*

-X466763Y261770D01*

-X466868Y261714D01*

-X466979Y261676D01*

-X467096Y261655D01*

-X467214Y261653D01*

-X467330Y261670D01*

-X467332Y261670D01*

-Y236334D01*

-X467331Y236334D01*

-X467214Y236350D01*

-X467095Y236348D01*

-X466978Y236327D01*

-X466866Y236289D01*

-X466762Y236233D01*

-X466667Y236162D01*

-X466585Y236076D01*

-X466517Y235979D01*

-X466465Y235873D01*

-X466430Y235759D01*

-X466414Y235642D01*

-X466416Y235523D01*

-X466436Y235407D01*

-X466477Y235295D01*

-X466586Y235020D01*

-X466666Y234735D01*

-X466720Y234443D01*

-X466747Y234148D01*

-Y233852D01*

-X466720Y233557D01*

-X466666Y233265D01*

-X466586Y232980D01*

-X466480Y232703D01*

-X466440Y232593D01*

-X466419Y232476D01*

-X466417Y232358D01*

-X466433Y232241D01*

-X466468Y232129D01*

-X466520Y232022D01*

-X466587Y231926D01*

-X466669Y231841D01*

-X466763Y231770D01*

-X466868Y231714D01*

-X466979Y231676D01*

-X467096Y231655D01*

-X467214Y231653D01*

-X467330Y231670D01*

-X467332Y231670D01*

-Y206334D01*

-X467331Y206334D01*

-X467214Y206350D01*

-X467095Y206348D01*

-X466978Y206327D01*

-X466866Y206289D01*

-X466762Y206233D01*

-X466667Y206162D01*

-X466585Y206076D01*

-X466517Y205979D01*

-X466465Y205873D01*

-X466430Y205759D01*

-X466414Y205642D01*

-X466416Y205523D01*

-X466436Y205407D01*

-X466477Y205295D01*

-X466586Y205020D01*

-X466666Y204735D01*

-X466720Y204443D01*

-X466747Y204148D01*

-Y203852D01*

-X466720Y203557D01*

-X466666Y203265D01*

-X466586Y202980D01*

-X466480Y202703D01*

-X466440Y202593D01*

-X466419Y202476D01*

-X466417Y202358D01*

-X466433Y202241D01*

-X466468Y202129D01*

-X466520Y202022D01*

-X466587Y201926D01*

-X466669Y201841D01*

-X466763Y201770D01*

-X466868Y201714D01*

-X466979Y201676D01*

-X467096Y201655D01*

-X467214Y201653D01*

-X467330Y201670D01*

-X467332Y201670D01*

-Y176334D01*

-X467331Y176334D01*

-X467214Y176350D01*

-X467095Y176348D01*

-X466978Y176327D01*

-X466866Y176289D01*

-X466762Y176233D01*

-X466667Y176162D01*

-X466585Y176076D01*

-X466517Y175979D01*

-X466465Y175873D01*

-X466430Y175759D01*

-X466414Y175642D01*

-X466416Y175523D01*

-X466436Y175407D01*

-X466477Y175295D01*

-X466586Y175020D01*

-X466666Y174735D01*

-X466720Y174443D01*

-X466747Y174148D01*

-Y173852D01*

-X466720Y173557D01*

-X466666Y173265D01*

-X466586Y172980D01*

-X466480Y172703D01*

-X466440Y172593D01*

-X466419Y172476D01*

-X466417Y172358D01*

-X466433Y172241D01*

-X466468Y172129D01*

-X466520Y172022D01*

-X466587Y171926D01*

-X466669Y171841D01*

-X466763Y171770D01*

-X466868Y171714D01*

-X466979Y171676D01*

-X467096Y171655D01*

-X467214Y171653D01*

-X467330Y171670D01*

-X467332Y171670D01*

-Y146334D01*

-X467331Y146334D01*

-X467214Y146350D01*

-X467095Y146348D01*

-X466978Y146327D01*

-X466866Y146289D01*

-X466762Y146233D01*

-X466667Y146162D01*

-X466585Y146076D01*

-X466517Y145979D01*

-X466465Y145873D01*

-X466430Y145759D01*

-X466414Y145642D01*

-X466416Y145523D01*

-X466436Y145407D01*

-X466477Y145295D01*

-X466586Y145020D01*

-X466666Y144735D01*

-X466720Y144443D01*

-X466747Y144148D01*

-Y143852D01*

-X466720Y143557D01*

-X466666Y143265D01*

-X466586Y142980D01*

-X466480Y142703D01*

-X466440Y142593D01*

-X466419Y142476D01*

-X466417Y142358D01*

-X466433Y142241D01*

-X466468Y142129D01*

-X466520Y142022D01*

-X466587Y141926D01*

-X466669Y141841D01*

-X466763Y141770D01*

-X466868Y141714D01*

-X466979Y141676D01*

-X467096Y141655D01*

-X467214Y141653D01*

-X467330Y141670D01*

-X467332Y141670D01*

-Y116334D01*

-X467331Y116334D01*

-X467214Y116350D01*

-X467095Y116348D01*

-X466978Y116327D01*

-X466866Y116289D01*

-X466762Y116233D01*

-X466667Y116162D01*

-X466585Y116076D01*

-X466517Y115979D01*

-X466465Y115873D01*

-X466430Y115759D01*

-X466414Y115642D01*

-X466416Y115523D01*

-X466436Y115407D01*

-X466477Y115295D01*

-X466586Y115020D01*

-X466666Y114735D01*

-X466720Y114443D01*

-X466747Y114148D01*

-Y113852D01*

-X466720Y113557D01*

-X466666Y113265D01*

-X466586Y112980D01*

-X466480Y112703D01*

-X466440Y112593D01*

-X466419Y112476D01*

-X466417Y112358D01*

-X466433Y112241D01*

-X466468Y112129D01*

-X466520Y112022D01*

-X466587Y111926D01*

-X466669Y111841D01*

-X466763Y111770D01*

-X466868Y111714D01*

-X466979Y111676D01*

-X467096Y111655D01*

-X467214Y111653D01*

-X467330Y111670D01*

-X467332Y111670D01*

-Y86334D01*

-X467331Y86334D01*

-X467214Y86350D01*

-X467095Y86348D01*

-X466978Y86327D01*

-X466866Y86289D01*

-X466762Y86233D01*

-X466667Y86162D01*

-X466585Y86076D01*

-X466517Y85979D01*

-X466465Y85873D01*

-X466430Y85759D01*

-X466414Y85642D01*

-X466416Y85523D01*

-X466436Y85407D01*

-X466477Y85295D01*

-X466586Y85020D01*

-X466666Y84735D01*

-X466720Y84443D01*

-X466747Y84148D01*

-Y83852D01*

-X466720Y83557D01*

-X466666Y83265D01*

-X466586Y82980D01*

-X466480Y82703D01*

-X466440Y82593D01*

-X466419Y82476D01*

-X466417Y82358D01*

-X466433Y82241D01*

-X466468Y82129D01*

-X466520Y82022D01*

-X466587Y81926D01*

-X466669Y81841D01*

-X466763Y81770D01*

-X466868Y81714D01*

-X466979Y81676D01*

-X467096Y81655D01*

-X467214Y81653D01*

-X467330Y81670D01*

-X467332Y81670D01*

-Y56334D01*

-X467331Y56334D01*

-X467214Y56350D01*

-X467095Y56348D01*

-X466978Y56327D01*

-X466866Y56289D01*

-X466762Y56233D01*

-X466667Y56162D01*

-X466585Y56076D01*

-X466517Y55979D01*

-X466465Y55873D01*

-X466430Y55759D01*

-X466414Y55642D01*

-X466416Y55523D01*

-X466436Y55407D01*

-X466477Y55295D01*

-X466586Y55020D01*

-X466666Y54735D01*

-X466720Y54443D01*

-X466747Y54148D01*

-Y53852D01*

-X466720Y53557D01*

-X466666Y53265D01*

-X466586Y52980D01*

-X466480Y52703D01*

-X466440Y52593D01*

-X466419Y52476D01*

-X466417Y52358D01*

-X466433Y52241D01*

-X466468Y52129D01*

-X466520Y52022D01*

-X466587Y51926D01*

-X466669Y51841D01*

-X466763Y51770D01*

-X466868Y51714D01*

-X466979Y51676D01*

-X467096Y51655D01*

-X467214Y51653D01*

-X467330Y51670D01*

-X467332Y51670D01*

-Y39000D01*

-G37*

-G36*

-X463502D02*X459668D01*

-Y51666D01*

-X459669Y51666D01*

-X459786Y51650D01*

-X459905Y51652D01*

-X460022Y51673D01*

-X460134Y51711D01*

-X460238Y51767D01*

-X460333Y51838D01*

-X460415Y51924D01*

-X460483Y52021D01*

-X460535Y52127D01*

-X460570Y52241D01*

-X460586Y52358D01*

-X460584Y52477D01*

-X460564Y52593D01*

-X460523Y52705D01*

-X460414Y52980D01*

-X460334Y53265D01*

-X460280Y53557D01*

-X460253Y53852D01*

-Y54148D01*

-X460280Y54443D01*

-X460334Y54735D01*

-X460414Y55020D01*

-X460520Y55297D01*

-X460560Y55407D01*

-X460581Y55524D01*

-X460583Y55642D01*

-X460567Y55759D01*

-X460532Y55871D01*

-X460480Y55978D01*

-X460413Y56074D01*

-X460331Y56159D01*

-X460237Y56230D01*

-X460132Y56286D01*

-X460021Y56324D01*

-X459904Y56345D01*

-X459786Y56347D01*

-X459670Y56330D01*

-X459668Y56330D01*

-Y81666D01*

-X459669Y81666D01*

-X459786Y81650D01*

-X459905Y81652D01*

-X460022Y81673D01*

-X460134Y81711D01*

-X460238Y81767D01*

-X460333Y81838D01*

-X460415Y81924D01*

-X460483Y82021D01*

-X460535Y82127D01*

-X460570Y82241D01*

-X460586Y82358D01*

-X460584Y82477D01*

-X460564Y82594D01*

-X460523Y82705D01*

-X460414Y82980D01*

-X460334Y83265D01*

-X460280Y83557D01*

-X460253Y83852D01*

-Y84148D01*

-X460280Y84443D01*

-X460334Y84735D01*

-X460414Y85020D01*

-X460520Y85297D01*

-X460560Y85407D01*

-X460581Y85524D01*

-X460583Y85642D01*

-X460567Y85759D01*

-X460532Y85871D01*

-X460480Y85978D01*

-X460413Y86074D01*

-X460331Y86159D01*

-X460237Y86230D01*

-X460132Y86286D01*

-X460021Y86324D01*

-X459904Y86345D01*

-X459786Y86347D01*

-X459670Y86330D01*

-X459668Y86330D01*

-Y111666D01*

-X459669Y111666D01*

-X459786Y111650D01*

-X459905Y111652D01*

-X460022Y111673D01*

-X460134Y111711D01*

-X460238Y111767D01*

-X460333Y111838D01*

-X460415Y111924D01*

-X460483Y112021D01*

-X460535Y112127D01*

-X460570Y112241D01*

-X460586Y112358D01*

-X460584Y112477D01*

-X460564Y112594D01*

-X460523Y112705D01*

-X460414Y112980D01*

-X460334Y113265D01*

-X460280Y113557D01*

-X460253Y113852D01*

-Y114148D01*

-X460280Y114443D01*

-X460334Y114735D01*

-X460414Y115020D01*

-X460520Y115297D01*

-X460560Y115407D01*

-X460581Y115524D01*

-X460583Y115642D01*

-X460567Y115759D01*

-X460532Y115871D01*

-X460480Y115978D01*

-X460413Y116074D01*

-X460331Y116159D01*

-X460237Y116230D01*

-X460132Y116286D01*

-X460021Y116324D01*

-X459904Y116345D01*

-X459786Y116347D01*

-X459670Y116330D01*

-X459668Y116330D01*

-Y141666D01*

-X459669Y141666D01*

-X459786Y141650D01*

-X459905Y141652D01*

-X460022Y141673D01*

-X460134Y141711D01*

-X460238Y141767D01*

-X460333Y141838D01*

-X460415Y141924D01*

-X460483Y142021D01*

-X460535Y142127D01*

-X460570Y142241D01*

-X460586Y142358D01*

-X460584Y142477D01*

-X460564Y142594D01*

-X460523Y142705D01*

-X460414Y142980D01*

-X460334Y143265D01*

-X460280Y143557D01*

-X460253Y143852D01*

-Y144148D01*

-X460280Y144443D01*

-X460334Y144735D01*

-X460414Y145020D01*

-X460520Y145297D01*

-X460560Y145407D01*

-X460581Y145524D01*

-X460583Y145642D01*

-X460567Y145759D01*

-X460532Y145871D01*

-X460480Y145978D01*

-X460413Y146074D01*

-X460331Y146159D01*

-X460237Y146230D01*

-X460132Y146286D01*

-X460021Y146324D01*

-X459904Y146345D01*

-X459786Y146347D01*

-X459670Y146330D01*

-X459668Y146330D01*

-Y161478D01*

-X459716Y161497D01*

-X460092Y161728D01*

-X460427Y162014D01*

-X460713Y162349D01*

-X460944Y162725D01*

-X461112Y163132D01*

-X461215Y163561D01*

-X461241Y164000D01*

-X461215Y164439D01*

-X461112Y164868D01*

-X460944Y165275D01*

-X460713Y165651D01*

-X460427Y165986D01*

-X460092Y166272D01*

-X459716Y166503D01*

-X459668Y166522D01*

-Y171666D01*

-X459669Y171666D01*

-X459786Y171650D01*

-X459905Y171652D01*

-X460022Y171673D01*

-X460134Y171711D01*

-X460238Y171767D01*

-X460333Y171838D01*

-X460415Y171924D01*

-X460483Y172021D01*

-X460535Y172127D01*

-X460570Y172241D01*

-X460586Y172358D01*

-X460584Y172477D01*

-X460564Y172594D01*

-X460523Y172705D01*

-X460414Y172980D01*

-X460334Y173265D01*

-X460280Y173557D01*

-X460253Y173852D01*

-Y174148D01*

-X460280Y174443D01*

-X460334Y174735D01*

-X460414Y175020D01*

-X460520Y175297D01*

-X460560Y175407D01*

-X460581Y175524D01*

-X460583Y175642D01*

-X460567Y175759D01*

-X460532Y175871D01*

-X460480Y175978D01*

-X460413Y176074D01*

-X460331Y176159D01*

-X460237Y176230D01*

-X460132Y176286D01*

-X460021Y176324D01*

-X459904Y176345D01*

-X459786Y176347D01*

-X459670Y176330D01*

-X459668Y176330D01*

-Y192478D01*

-X459716Y192497D01*

-X460092Y192728D01*

-X460427Y193014D01*

-X460713Y193349D01*

-X460944Y193725D01*

-X461112Y194132D01*

-X461215Y194561D01*

-X461241Y195000D01*

-X461215Y195439D01*

-X461112Y195868D01*

-X460944Y196275D01*

-X460713Y196651D01*

-X460427Y196986D01*

-X460092Y197272D01*

-X459716Y197503D01*

-X459668Y197522D01*

-Y201666D01*

-X459669Y201666D01*

-X459786Y201650D01*

-X459905Y201652D01*

-X460022Y201673D01*

-X460134Y201711D01*

-X460238Y201767D01*

-X460333Y201838D01*

-X460415Y201924D01*

-X460483Y202021D01*

-X460535Y202127D01*

-X460570Y202241D01*

-X460586Y202358D01*

-X460584Y202477D01*

-X460564Y202594D01*

-X460523Y202705D01*

-X460414Y202980D01*

-X460334Y203265D01*

-X460280Y203557D01*

-X460253Y203852D01*

-Y204148D01*

-X460280Y204443D01*

-X460334Y204735D01*

-X460414Y205020D01*

-X460520Y205297D01*

-X460560Y205407D01*

-X460581Y205524D01*

-X460583Y205642D01*

-X460567Y205759D01*

-X460532Y205871D01*

-X460480Y205978D01*

-X460413Y206074D01*

-X460331Y206159D01*

-X460237Y206230D01*

-X460132Y206286D01*

-X460021Y206324D01*

-X459904Y206345D01*

-X459786Y206347D01*

-X459670Y206330D01*

-X459668Y206330D01*

-Y222478D01*

-X459716Y222497D01*

-X460092Y222728D01*

-X460427Y223014D01*

-X460713Y223349D01*

-X460944Y223725D01*

-X461112Y224132D01*

-X461215Y224561D01*

-X461241Y225000D01*

-X461215Y225439D01*

-X461112Y225868D01*

-X460944Y226275D01*

-X460713Y226651D01*

-X460427Y226986D01*

-X460092Y227272D01*

-X459716Y227503D01*

-X459668Y227522D01*

-Y231666D01*

-X459669Y231666D01*

-X459786Y231650D01*

-X459905Y231652D01*

-X460022Y231673D01*

-X460134Y231711D01*

-X460238Y231767D01*

-X460333Y231838D01*

-X460415Y231924D01*

-X460483Y232021D01*

-X460535Y232127D01*

-X460570Y232241D01*

-X460586Y232358D01*

-X460584Y232477D01*

-X460564Y232594D01*

-X460523Y232705D01*

-X460414Y232980D01*

-X460334Y233265D01*

-X460280Y233557D01*

-X460253Y233852D01*

-Y234148D01*

-X460280Y234443D01*

-X460334Y234735D01*

-X460414Y235020D01*

-X460520Y235297D01*

-X460560Y235407D01*

-X460581Y235524D01*

-X460583Y235642D01*

-X460567Y235759D01*

-X460532Y235871D01*

-X460480Y235978D01*

-X460413Y236074D01*

-X460331Y236159D01*

-X460237Y236230D01*

-X460132Y236286D01*

-X460021Y236324D01*

-X459904Y236345D01*

-X459786Y236347D01*

-X459670Y236330D01*

-X459668Y236330D01*

-Y251478D01*

-X459716Y251497D01*

-X460092Y251728D01*

-X460427Y252014D01*

-X460713Y252349D01*

-X460944Y252725D01*

-X461112Y253132D01*

-X461215Y253561D01*

-X461241Y254000D01*

-X461215Y254439D01*

-X461112Y254868D01*

-X460944Y255275D01*

-X460713Y255651D01*

-X460427Y255986D01*

-X460092Y256272D01*

-X459716Y256503D01*

-X459668Y256522D01*

-Y261666D01*

-X459669Y261666D01*

-X459786Y261650D01*

-X459905Y261652D01*

-X460022Y261673D01*

-X460134Y261711D01*

-X460238Y261767D01*

-X460333Y261838D01*

-X460415Y261924D01*

-X460483Y262021D01*

-X460535Y262127D01*

-X460570Y262241D01*

-X460586Y262358D01*

-X460584Y262477D01*

-X460564Y262594D01*

-X460523Y262705D01*

-X460414Y262980D01*

-X460334Y263265D01*

-X460280Y263557D01*

-X460253Y263852D01*

-Y264148D01*

-X460280Y264443D01*

-X460334Y264735D01*

-X460414Y265020D01*

-X460520Y265297D01*

-X460560Y265407D01*

-X460581Y265524D01*

-X460583Y265642D01*

-X460567Y265759D01*

-X460532Y265871D01*

-X460480Y265978D01*

-X460413Y266074D01*

-X460331Y266159D01*

-X460237Y266230D01*

-X460132Y266286D01*

-X460021Y266324D01*

-X459904Y266345D01*

-X459786Y266347D01*

-X459670Y266330D01*

-X459668Y266330D01*

-Y282478D01*

-X459716Y282497D01*

-X460092Y282728D01*

-X460427Y283014D01*

-X460713Y283349D01*

-X460944Y283725D01*

-X461112Y284132D01*

-X461215Y284561D01*

-X461241Y285000D01*

-X461215Y285439D01*

-X461112Y285868D01*

-X460944Y286275D01*

-X460713Y286651D01*

-X460427Y286986D01*

-X460092Y287272D01*

-X459716Y287503D01*

-X459668Y287522D01*

-Y291666D01*

-X459669Y291666D01*

-X459786Y291650D01*

-X459905Y291652D01*

-X460022Y291673D01*

-X460134Y291711D01*

-X460238Y291767D01*

-X460333Y291838D01*

-X460415Y291924D01*

-X460483Y292021D01*

-X460535Y292127D01*

-X460570Y292241D01*

-X460586Y292358D01*

-X460584Y292477D01*

-X460564Y292594D01*

-X460523Y292705D01*

-X460414Y292980D01*

-X460334Y293265D01*

-X460280Y293557D01*

-X460253Y293852D01*

-Y294148D01*

-X460280Y294443D01*

-X460334Y294735D01*

-X460414Y295020D01*

-X460520Y295297D01*

-X460560Y295407D01*

-X460581Y295524D01*

-X460583Y295642D01*

-X460567Y295759D01*

-X460532Y295871D01*

-X460480Y295978D01*

-X460413Y296074D01*

-X460331Y296159D01*

-X460237Y296230D01*

-X460132Y296286D01*

-X460021Y296324D01*

-X459904Y296345D01*

-X459786Y296347D01*

-X459670Y296330D01*

-X459668Y296330D01*

-Y312478D01*

-X459716Y312497D01*

-X460092Y312728D01*

-X460427Y313014D01*

-X460713Y313349D01*

-X460944Y313725D01*

-X461112Y314132D01*

-X461215Y314561D01*

-X461241Y315000D01*

-X461215Y315439D01*

-X461112Y315868D01*

-X460944Y316275D01*

-X460713Y316651D01*

-X460427Y316986D01*

-X460092Y317272D01*

-X459716Y317503D01*

-X459668Y317522D01*

-Y321666D01*

-X459669Y321666D01*

-X459786Y321650D01*

-X459905Y321652D01*

-X460022Y321673D01*

-X460134Y321711D01*

-X460238Y321767D01*

-X460333Y321838D01*

-X460415Y321924D01*

-X460483Y322021D01*

-X460535Y322127D01*

-X460570Y322241D01*

-X460586Y322358D01*

-X460584Y322477D01*

-X460564Y322594D01*

-X460523Y322705D01*

-X460414Y322980D01*

-X460334Y323265D01*

-X460280Y323557D01*

-X460253Y323852D01*

-Y324148D01*

-X460280Y324443D01*

-X460334Y324735D01*

-X460414Y325020D01*

-X460520Y325297D01*

-X460560Y325407D01*

-X460581Y325524D01*

-X460583Y325642D01*

-X460567Y325759D01*

-X460532Y325871D01*

-X460480Y325978D01*

-X460413Y326074D01*

-X460331Y326159D01*

-X460237Y326230D01*

-X460132Y326286D01*

-X460021Y326324D01*

-X459904Y326345D01*

-X459786Y326347D01*

-X459670Y326330D01*

-X459668Y326330D01*

-Y342478D01*

-X459716Y342497D01*

-X460092Y342728D01*

-X460427Y343014D01*

-X460713Y343349D01*

-X460944Y343725D01*

-X461112Y344132D01*

-X461215Y344561D01*

-X461241Y345000D01*

-X461215Y345439D01*

-X461112Y345868D01*

-X460944Y346275D01*

-X460713Y346651D01*

-X460427Y346986D01*

-X460092Y347272D01*

-X459716Y347503D01*

-X459668Y347522D01*

-Y351666D01*

-X459669Y351666D01*

-X459786Y351650D01*

-X459905Y351652D01*

-X460022Y351673D01*

-X460134Y351711D01*

-X460238Y351767D01*

-X460333Y351838D01*

-X460415Y351924D01*

-X460483Y352021D01*

-X460535Y352127D01*

-X460570Y352241D01*

-X460586Y352358D01*

-X460584Y352477D01*

-X460564Y352594D01*

-X460523Y352705D01*

-X460414Y352980D01*

-X460334Y353265D01*

-X460280Y353557D01*

-X460253Y353852D01*

-Y354148D01*

-X460280Y354443D01*

-X460334Y354735D01*

-X460414Y355020D01*

-X460520Y355297D01*

-X460560Y355407D01*

-X460581Y355524D01*

-X460583Y355642D01*

-X460567Y355759D01*

-X460532Y355871D01*

-X460480Y355978D01*

-X460413Y356074D01*

-X460331Y356159D01*

-X460237Y356230D01*

-X460132Y356286D01*

-X460021Y356324D01*

-X459904Y356345D01*

-X459786Y356347D01*

-X459670Y356330D01*

-X459668Y356330D01*

-Y372478D01*

-X459716Y372497D01*

-X460092Y372728D01*

-X460427Y373014D01*

-X460713Y373349D01*

-X460944Y373725D01*

-X461112Y374132D01*

-X461215Y374561D01*

-X461241Y375000D01*

-X461215Y375439D01*

-X461112Y375868D01*

-X460944Y376275D01*

-X460713Y376651D01*

-X460427Y376986D01*

-X460092Y377272D01*

-X459716Y377503D01*

-X459668Y377522D01*

-Y381666D01*

-X459669Y381666D01*

-X459786Y381650D01*

-X459905Y381652D01*

-X460022Y381673D01*

-X460134Y381711D01*

-X460238Y381767D01*

-X460333Y381838D01*

-X460415Y381924D01*

-X460483Y382021D01*

-X460535Y382127D01*

-X460570Y382241D01*

-X460586Y382358D01*

-X460584Y382477D01*

-X460564Y382594D01*

-X460523Y382705D01*

-X460414Y382980D01*

-X460334Y383265D01*

-X460280Y383557D01*

-X460253Y383852D01*

-Y384148D01*

-X460280Y384443D01*

-X460334Y384735D01*

-X460414Y385020D01*

-X460520Y385297D01*

-X460560Y385407D01*

-X460581Y385524D01*

-X460583Y385642D01*

-X460567Y385759D01*

-X460532Y385871D01*

-X460480Y385978D01*

-X460413Y386074D01*

-X460331Y386159D01*

-X460237Y386230D01*

-X460132Y386286D01*

-X460021Y386324D01*

-X459904Y386345D01*

-X459786Y386347D01*

-X459670Y386330D01*

-X459668Y386330D01*

-Y397000D01*

-X463502D01*

-Y388750D01*

-X463283D01*

-X462852Y388711D01*

-X462425Y388632D01*

-X462008Y388515D01*

-X461603Y388360D01*

-X461498Y388305D01*

-X461403Y388234D01*

-X461321Y388148D01*

-X461253Y388051D01*

-X461201Y387945D01*

-X461166Y387831D01*

-X461150Y387714D01*

-X461152Y387595D01*

-X461173Y387478D01*

-X461211Y387366D01*

-X461267Y387262D01*

-X461338Y387167D01*

-X461424Y387085D01*

-X461521Y387017D01*

-X461627Y386965D01*

-X461741Y386930D01*

-X461858Y386914D01*

-X461977Y386916D01*

-X462093Y386936D01*

-X462205Y386977D01*

-X462480Y387086D01*

-X462765Y387166D01*

-X463057Y387220D01*

-X463352Y387247D01*

-X463502D01*

-Y380753D01*

-X463352D01*

-X463057Y380780D01*

-X462765Y380834D01*

-X462480Y380914D01*

-X462203Y381020D01*

-X462093Y381060D01*

-X461976Y381081D01*

-X461858Y381083D01*

-X461741Y381067D01*

-X461629Y381032D01*

-X461522Y380980D01*

-X461426Y380913D01*

-X461341Y380831D01*

-X461270Y380737D01*

-X461214Y380632D01*

-X461176Y380521D01*

-X461155Y380404D01*

-X461153Y380286D01*

-X461170Y380170D01*

-X461204Y380057D01*

-X461256Y379950D01*

-X461323Y379854D01*

-X461405Y379769D01*

-X461500Y379698D01*

-X461605Y379644D01*

-X462008Y379485D01*

-X462425Y379368D01*

-X462852Y379289D01*

-X463283Y379250D01*

-X463502D01*

-Y358750D01*

-X463283D01*

-X462852Y358711D01*

-X462425Y358632D01*

-X462008Y358515D01*

-X461603Y358360D01*

-X461498Y358305D01*

-X461403Y358234D01*

-X461321Y358148D01*

-X461253Y358051D01*

-X461201Y357945D01*

-X461166Y357831D01*

-X461150Y357714D01*

-X461152Y357595D01*

-X461173Y357478D01*

-X461211Y357366D01*

-X461267Y357262D01*

-X461338Y357167D01*

-X461424Y357085D01*

-X461521Y357017D01*

-X461627Y356965D01*

-X461741Y356930D01*

-X461858Y356914D01*

-X461977Y356916D01*

-X462093Y356936D01*

-X462205Y356977D01*

-X462480Y357086D01*

-X462765Y357166D01*

-X463057Y357220D01*

-X463352Y357247D01*

-X463502D01*

-Y350753D01*

-X463352D01*

-X463057Y350780D01*

-X462765Y350834D01*

-X462480Y350914D01*

-X462203Y351020D01*

-X462093Y351060D01*

-X461976Y351081D01*

-X461858Y351083D01*

-X461741Y351067D01*

-X461629Y351032D01*

-X461522Y350980D01*

-X461426Y350913D01*

-X461341Y350831D01*

-X461270Y350737D01*

-X461214Y350632D01*

-X461176Y350521D01*

-X461155Y350404D01*

-X461153Y350286D01*

-X461170Y350170D01*

-X461204Y350057D01*

-X461256Y349950D01*

-X461323Y349854D01*

-X461405Y349769D01*

-X461500Y349698D01*

-X461605Y349644D01*

-X462008Y349485D01*

-X462425Y349368D01*

-X462852Y349289D01*

-X463283Y349250D01*

-X463502D01*

-Y328750D01*

-X463283D01*

-X462852Y328711D01*

-X462425Y328632D01*

-X462008Y328515D01*

-X461603Y328360D01*

-X461498Y328305D01*

-X461403Y328234D01*

-X461321Y328148D01*

-X461253Y328051D01*

-X461201Y327945D01*

-X461166Y327831D01*

-X461150Y327714D01*

-X461152Y327595D01*

-X461173Y327478D01*

-X461211Y327366D01*

-X461267Y327262D01*

-X461338Y327167D01*

-X461424Y327085D01*

-X461521Y327017D01*

-X461627Y326965D01*

-X461741Y326930D01*

-X461858Y326914D01*

-X461977Y326916D01*

-X462093Y326936D01*

-X462205Y326977D01*

-X462480Y327086D01*

-X462765Y327166D01*

-X463057Y327220D01*

-X463352Y327247D01*

-X463502D01*

-Y320753D01*

-X463352D01*

-X463057Y320780D01*

-X462765Y320834D01*

-X462480Y320914D01*

-X462203Y321020D01*

-X462093Y321060D01*

-X461976Y321081D01*

-X461858Y321083D01*

-X461741Y321067D01*

-X461629Y321032D01*

-X461522Y320980D01*

-X461426Y320913D01*

-X461341Y320831D01*

-X461270Y320737D01*

-X461214Y320632D01*

-X461176Y320521D01*

-X461155Y320404D01*

-X461153Y320286D01*

-X461170Y320170D01*

-X461204Y320057D01*

-X461256Y319950D01*

-X461323Y319854D01*

-X461405Y319769D01*

-X461500Y319698D01*

-X461605Y319644D01*

-X462008Y319485D01*

-X462425Y319368D01*

-X462852Y319289D01*

-X463283Y319250D01*

-X463502D01*

-Y298750D01*

-X463283D01*

-X462852Y298711D01*

-X462425Y298632D01*

-X462008Y298515D01*

-X461603Y298360D01*

-X461498Y298305D01*

-X461403Y298234D01*

-X461321Y298148D01*

-X461253Y298051D01*

-X461201Y297945D01*

-X461166Y297831D01*

-X461150Y297714D01*

-X461152Y297595D01*

-X461173Y297478D01*

-X461211Y297366D01*

-X461267Y297262D01*

-X461338Y297167D01*

-X461424Y297085D01*

-X461521Y297017D01*

-X461627Y296965D01*

-X461741Y296930D01*

-X461858Y296914D01*

-X461977Y296916D01*

-X462093Y296936D01*

-X462205Y296977D01*

-X462480Y297086D01*

-X462765Y297166D01*

-X463057Y297220D01*

-X463352Y297247D01*

-X463502D01*

-Y290753D01*

-X463352D01*

-X463057Y290780D01*

-X462765Y290834D01*

-X462480Y290914D01*

-X462203Y291020D01*

-X462093Y291060D01*

-X461976Y291081D01*

-X461858Y291083D01*

-X461741Y291067D01*

-X461629Y291032D01*

-X461522Y290980D01*

-X461426Y290913D01*

-X461341Y290831D01*

-X461270Y290737D01*

-X461214Y290632D01*

-X461176Y290521D01*

-X461155Y290404D01*

-X461153Y290286D01*

-X461170Y290170D01*

-X461204Y290057D01*

-X461256Y289950D01*

-X461323Y289854D01*

-X461405Y289769D01*

-X461500Y289698D01*

-X461605Y289644D01*

-X462008Y289485D01*

-X462425Y289368D01*

-X462852Y289289D01*

-X463283Y289250D01*

-X463502D01*

-Y268750D01*

-X463283D01*

-X462852Y268711D01*

-X462425Y268632D01*

-X462008Y268515D01*

-X461603Y268360D01*

-X461498Y268305D01*

-X461403Y268234D01*

-X461321Y268148D01*

-X461253Y268051D01*

-X461201Y267945D01*

-X461166Y267831D01*

-X461150Y267714D01*

-X461152Y267595D01*

-X461173Y267478D01*

-X461211Y267366D01*

-X461267Y267262D01*

-X461338Y267167D01*

-X461424Y267085D01*

-X461521Y267017D01*

-X461627Y266965D01*

-X461741Y266930D01*

-X461858Y266914D01*

-X461977Y266916D01*

-X462093Y266936D01*

-X462205Y266977D01*

-X462480Y267086D01*

-X462765Y267166D01*

-X463057Y267220D01*

-X463352Y267247D01*

-X463502D01*

-Y260753D01*

-X463352D01*

-X463057Y260780D01*

-X462765Y260834D01*

-X462480Y260914D01*

-X462203Y261020D01*

-X462093Y261060D01*

-X461976Y261081D01*

-X461858Y261083D01*

-X461741Y261067D01*

-X461629Y261032D01*

-X461522Y260980D01*

-X461426Y260913D01*

-X461341Y260831D01*

-X461270Y260737D01*

-X461214Y260632D01*

-X461176Y260521D01*

-X461155Y260404D01*

-X461153Y260286D01*

-X461170Y260170D01*

-X461204Y260057D01*

-X461256Y259950D01*

-X461323Y259854D01*

-X461405Y259769D01*

-X461500Y259698D01*

-X461605Y259644D01*

-X462008Y259485D01*

-X462425Y259368D01*

-X462852Y259289D01*

-X463283Y259250D01*

-X463502D01*

-Y238750D01*

-X463283D01*

-X462852Y238711D01*

-X462425Y238632D01*

-X462008Y238515D01*

-X461603Y238360D01*

-X461498Y238305D01*

-X461403Y238234D01*

-X461321Y238148D01*

-X461253Y238051D01*

-X461201Y237945D01*

-X461166Y237831D01*

-X461150Y237714D01*

-X461152Y237595D01*

-X461173Y237478D01*

-X461211Y237366D01*

-X461267Y237262D01*

-X461338Y237167D01*

-X461424Y237085D01*

-X461521Y237017D01*

-X461627Y236965D01*

-X461741Y236930D01*

-X461858Y236914D01*

-X461977Y236916D01*

-X462093Y236936D01*

-X462205Y236977D01*

-X462480Y237086D01*

-X462765Y237166D01*

-X463057Y237220D01*

-X463352Y237247D01*

-X463502D01*

-Y230753D01*

-X463352D01*

-X463057Y230780D01*

-X462765Y230834D01*

-X462480Y230914D01*

-X462203Y231020D01*

-X462093Y231060D01*

-X461976Y231081D01*

-X461858Y231083D01*

-X461741Y231067D01*

-X461629Y231032D01*

-X461522Y230980D01*

-X461426Y230913D01*

-X461341Y230831D01*

-X461270Y230737D01*

-X461214Y230632D01*

-X461176Y230521D01*

-X461155Y230404D01*

-X461153Y230286D01*

-X461170Y230170D01*

-X461204Y230057D01*

-X461256Y229950D01*

-X461323Y229854D01*

-X461405Y229769D01*

-X461500Y229698D01*

-X461605Y229644D01*

-X462008Y229485D01*

-X462425Y229368D01*

-X462852Y229289D01*

-X463283Y229250D01*

-X463502D01*

-Y208750D01*

-X463283D01*

-X462852Y208711D01*

-X462425Y208632D01*

-X462008Y208515D01*

-X461603Y208360D01*

-X461498Y208305D01*

-X461403Y208234D01*

-X461321Y208148D01*

-X461253Y208051D01*

-X461201Y207945D01*

-X461166Y207831D01*

-X461150Y207714D01*

-X461152Y207595D01*

-X461173Y207478D01*

-X461211Y207366D01*

-X461267Y207262D01*

-X461338Y207167D01*

-X461424Y207085D01*

-X461521Y207017D01*

-X461627Y206965D01*

-X461741Y206930D01*

-X461858Y206914D01*

-X461977Y206916D01*

-X462093Y206936D01*

-X462205Y206977D01*

-X462480Y207086D01*

-X462765Y207166D01*

-X463057Y207220D01*

-X463352Y207247D01*

-X463502D01*

-Y200753D01*

-X463352D01*

-X463057Y200780D01*

-X462765Y200834D01*

-X462480Y200914D01*

-X462203Y201020D01*

-X462093Y201060D01*

-X461976Y201081D01*

-X461858Y201083D01*

-X461741Y201067D01*

-X461629Y201032D01*

-X461522Y200980D01*

-X461426Y200913D01*

-X461341Y200831D01*

-X461270Y200737D01*

-X461214Y200632D01*

-X461176Y200521D01*

-X461155Y200404D01*

-X461153Y200286D01*

-X461170Y200170D01*

-X461204Y200057D01*

-X461256Y199950D01*

-X461323Y199854D01*

-X461405Y199769D01*

-X461500Y199698D01*

-X461605Y199644D01*

-X462008Y199485D01*

-X462425Y199368D01*

-X462852Y199289D01*

-X463283Y199250D01*

-X463502D01*

-Y178750D01*

-X463283D01*

-X462852Y178711D01*

-X462425Y178632D01*

-X462008Y178515D01*

-X461603Y178360D01*

-X461498Y178305D01*

-X461403Y178234D01*

-X461321Y178148D01*

-X461253Y178051D01*

-X461201Y177945D01*

-X461166Y177831D01*

-X461150Y177714D01*

-X461152Y177595D01*

-X461173Y177478D01*

-X461211Y177366D01*

-X461267Y177262D01*

-X461338Y177167D01*

-X461424Y177085D01*

-X461521Y177017D01*

-X461627Y176965D01*

-X461741Y176930D01*

-X461858Y176914D01*

-X461977Y176916D01*

-X462093Y176936D01*

-X462205Y176977D01*

-X462480Y177086D01*

-X462765Y177166D01*

-X463057Y177220D01*

-X463352Y177247D01*

-X463502D01*

-Y170753D01*

-X463352D01*

-X463057Y170780D01*

-X462765Y170834D01*

-X462480Y170914D01*

-X462203Y171020D01*

-X462093Y171060D01*

-X461976Y171081D01*

-X461858Y171083D01*

-X461741Y171067D01*

-X461629Y171032D01*

-X461522Y170980D01*

-X461426Y170913D01*

-X461341Y170831D01*

-X461270Y170737D01*

-X461214Y170632D01*

-X461176Y170521D01*

-X461155Y170404D01*

-X461153Y170286D01*

-X461170Y170170D01*

-X461204Y170057D01*

-X461256Y169950D01*

-X461323Y169854D01*

-X461405Y169769D01*

-X461500Y169698D01*

-X461605Y169644D01*

-X462008Y169485D01*

-X462425Y169368D01*

-X462852Y169289D01*

-X463283Y169250D01*

-X463502D01*

-Y148750D01*

-X463283D01*

-X462852Y148711D01*

-X462425Y148632D01*

-X462008Y148515D01*

-X461603Y148360D01*

-X461498Y148305D01*

-X461403Y148234D01*

-X461321Y148148D01*

-X461253Y148051D01*

-X461201Y147945D01*

-X461166Y147831D01*

-X461150Y147714D01*

-X461152Y147595D01*

-X461173Y147478D01*

-X461211Y147366D01*

-X461267Y147262D01*

-X461338Y147167D01*

-X461424Y147085D01*

-X461521Y147017D01*

-X461627Y146965D01*

-X461741Y146930D01*

-X461858Y146914D01*

-X461977Y146916D01*

-X462093Y146936D01*

-X462205Y146977D01*

-X462480Y147086D01*

-X462765Y147166D01*

-X463057Y147220D01*

-X463352Y147247D01*

-X463502D01*

-Y140753D01*

-X463352D01*

-X463057Y140780D01*

-X462765Y140834D01*

-X462480Y140914D01*

-X462203Y141020D01*

-X462093Y141060D01*

-X461976Y141081D01*

-X461858Y141083D01*

-X461741Y141067D01*

-X461629Y141032D01*

-X461522Y140980D01*

-X461426Y140913D01*

-X461341Y140831D01*

-X461270Y140737D01*

-X461214Y140632D01*

-X461176Y140521D01*

-X461155Y140404D01*

-X461153Y140286D01*

-X461170Y140170D01*

-X461204Y140057D01*

-X461256Y139950D01*

-X461323Y139854D01*

-X461405Y139769D01*

-X461500Y139698D01*

-X461605Y139644D01*

-X462008Y139485D01*

-X462425Y139368D01*

-X462852Y139289D01*

-X463283Y139250D01*

-X463502D01*

-Y118750D01*

-X463283D01*

-X462852Y118711D01*

-X462425Y118632D01*

-X462008Y118515D01*

-X461603Y118360D01*

-X461498Y118305D01*

-X461403Y118234D01*

-X461321Y118148D01*

-X461253Y118051D01*

-X461201Y117945D01*

-X461166Y117831D01*

-X461150Y117714D01*

-X461152Y117595D01*

-X461173Y117478D01*

-X461211Y117366D01*

-X461267Y117262D01*

-X461338Y117167D01*

-X461424Y117085D01*

-X461521Y117017D01*

-X461627Y116965D01*

-X461741Y116930D01*

-X461858Y116914D01*

-X461977Y116916D01*

-X462093Y116936D01*

-X462205Y116977D01*

-X462480Y117086D01*

-X462765Y117166D01*

-X463057Y117220D01*

-X463352Y117247D01*

-X463502D01*

-Y110753D01*

-X463352D01*

-X463057Y110780D01*

-X462765Y110834D01*

-X462480Y110914D01*

-X462203Y111020D01*

-X462093Y111060D01*

-X461976Y111081D01*

-X461858Y111083D01*

-X461741Y111067D01*

-X461629Y111032D01*

-X461522Y110980D01*

-X461426Y110913D01*

-X461341Y110831D01*

-X461270Y110737D01*

-X461214Y110632D01*

-X461176Y110521D01*

-X461155Y110404D01*

-X461153Y110286D01*

-X461170Y110170D01*

-X461204Y110057D01*

-X461256Y109950D01*

-X461323Y109854D01*

-X461405Y109769D01*

-X461500Y109698D01*

-X461605Y109644D01*

-X462008Y109485D01*

-X462425Y109368D01*

-X462852Y109289D01*

-X463283Y109250D01*

-X463502D01*

-Y88750D01*

-X463283D01*

-X462852Y88711D01*

-X462425Y88632D01*

-X462008Y88515D01*

-X461603Y88360D01*

-X461498Y88305D01*

-X461403Y88234D01*

-X461321Y88148D01*

-X461253Y88051D01*

-X461201Y87945D01*

-X461166Y87831D01*

-X461150Y87714D01*

-X461152Y87595D01*

-X461173Y87478D01*

-X461211Y87366D01*

-X461267Y87262D01*

-X461338Y87167D01*

-X461424Y87085D01*

-X461521Y87017D01*

-X461627Y86965D01*

-X461741Y86930D01*

-X461858Y86914D01*

-X461977Y86916D01*

-X462093Y86936D01*

-X462205Y86977D01*

-X462480Y87086D01*

-X462765Y87166D01*

-X463057Y87220D01*

-X463352Y87247D01*

-X463502D01*

-Y80753D01*

-X463352D01*

-X463057Y80780D01*

-X462765Y80834D01*

-X462480Y80914D01*

-X462203Y81020D01*

-X462093Y81060D01*

-X461976Y81081D01*

-X461858Y81083D01*

-X461741Y81067D01*

-X461629Y81032D01*

-X461522Y80980D01*

-X461426Y80913D01*

-X461341Y80831D01*

-X461270Y80737D01*

-X461214Y80632D01*

-X461176Y80521D01*

-X461155Y80404D01*

-X461153Y80286D01*

-X461170Y80170D01*

-X461204Y80057D01*

-X461256Y79950D01*

-X461323Y79854D01*

-X461405Y79769D01*

-X461500Y79698D01*

-X461605Y79644D01*

-X462008Y79485D01*

-X462425Y79368D01*

-X462852Y79289D01*

-X463283Y79250D01*

-X463502D01*

-Y58750D01*

-X463283D01*

-X462852Y58711D01*

-X462425Y58632D01*

-X462008Y58515D01*

-X461603Y58360D01*

-X461498Y58305D01*

-X461403Y58234D01*

-X461321Y58148D01*

-X461253Y58051D01*

-X461201Y57945D01*

-X461166Y57831D01*

-X461150Y57714D01*

-X461152Y57595D01*

-X461173Y57478D01*

-X461211Y57366D01*

-X461267Y57262D01*

-X461338Y57167D01*

-X461424Y57085D01*

-X461521Y57017D01*

-X461627Y56965D01*

-X461741Y56930D01*

-X461858Y56914D01*

-X461977Y56916D01*

-X462093Y56936D01*

-X462205Y56977D01*

-X462480Y57086D01*

-X462765Y57166D01*

-X463057Y57220D01*

-X463352Y57247D01*

-X463502D01*

-Y50753D01*

-X463352D01*

-X463057Y50780D01*

-X462765Y50834D01*

-X462480Y50914D01*

-X462203Y51020D01*

-X462093Y51060D01*

-X461976Y51081D01*

-X461858Y51083D01*

-X461741Y51067D01*

-X461629Y51032D01*

-X461522Y50980D01*

-X461426Y50913D01*

-X461341Y50831D01*

-X461270Y50737D01*

-X461214Y50632D01*

-X461176Y50521D01*

-X461155Y50404D01*

-X461153Y50286D01*

-X461170Y50170D01*

-X461204Y50057D01*

-X461256Y49950D01*

-X461323Y49854D01*

-X461405Y49769D01*

-X461500Y49698D01*

-X461605Y49644D01*

-X462008Y49485D01*

-X462425Y49368D01*

-X462852Y49289D01*

-X463283Y49250D01*

-X463502D01*

-Y39000D01*

-G37*

-G36*

-X459668Y377522D02*X459309Y377671D01*

-X458880Y377774D01*

-X458441Y377809D01*

-X458437Y377808D01*

-Y397000D01*

-X459668D01*

-Y386330D01*

-X459557Y386296D01*

-X459450Y386244D01*

-X459354Y386177D01*

-X459269Y386095D01*

-X459198Y386000D01*

-X459144Y385895D01*

-X458985Y385492D01*

-X458868Y385075D01*

-X458789Y384648D01*

-X458750Y384217D01*

-Y383783D01*

-X458789Y383352D01*

-X458868Y382925D01*

-X458985Y382508D01*

-X459140Y382103D01*

-X459195Y381998D01*

-X459266Y381903D01*

-X459352Y381821D01*

-X459449Y381753D01*

-X459555Y381701D01*

-X459668Y381666D01*

-Y377522D01*

-G37*

-G36*

-Y347522D02*X459309Y347671D01*

-X458880Y347774D01*

-X458441Y347809D01*

-X458437Y347808D01*

-Y372192D01*

-X458441Y372191D01*

-X458880Y372226D01*

-X459309Y372329D01*

-X459668Y372478D01*

-Y356330D01*

-X459557Y356296D01*

-X459450Y356244D01*

-X459354Y356177D01*

-X459269Y356095D01*

-X459198Y356000D01*

-X459144Y355895D01*

-X458985Y355492D01*

-X458868Y355075D01*

-X458789Y354648D01*

-X458750Y354217D01*

-Y353783D01*

-X458789Y353352D01*

-X458868Y352925D01*

-X458985Y352508D01*

-X459140Y352103D01*

-X459195Y351998D01*

-X459266Y351903D01*

-X459352Y351821D01*

-X459449Y351753D01*

-X459555Y351701D01*

-X459668Y351666D01*

-Y347522D01*

-G37*

-G36*

-Y317522D02*X459309Y317671D01*

-X458880Y317774D01*

-X458441Y317809D01*

-X458437Y317808D01*

-Y342192D01*

-X458441Y342191D01*

-X458880Y342226D01*

-X459309Y342329D01*

-X459668Y342478D01*

-Y326330D01*

-X459557Y326296D01*

-X459450Y326244D01*

-X459354Y326177D01*

-X459269Y326095D01*

-X459198Y326000D01*

-X459144Y325895D01*

-X458985Y325492D01*

-X458868Y325075D01*

-X458789Y324648D01*

-X458750Y324217D01*

-Y323783D01*

-X458789Y323352D01*

-X458868Y322925D01*

-X458985Y322508D01*

-X459140Y322103D01*

-X459195Y321998D01*

-X459266Y321903D01*

-X459352Y321821D01*

-X459449Y321753D01*

-X459555Y321701D01*

-X459668Y321666D01*

-Y317522D01*

-G37*

-G36*

-Y287522D02*X459309Y287671D01*

-X458880Y287774D01*

-X458441Y287809D01*

-X458437Y287808D01*

-Y312192D01*

-X458441Y312191D01*

-X458880Y312226D01*

-X459309Y312329D01*

-X459668Y312478D01*

-Y296330D01*

-X459557Y296296D01*

-X459450Y296244D01*

-X459354Y296177D01*

-X459269Y296095D01*

-X459198Y296000D01*

-X459144Y295895D01*

-X458985Y295492D01*

-X458868Y295075D01*

-X458789Y294648D01*

-X458750Y294217D01*

-Y293783D01*

-X458789Y293352D01*

-X458868Y292925D01*

-X458985Y292508D01*

-X459140Y292103D01*

-X459195Y291998D01*

-X459266Y291903D01*

-X459352Y291821D01*

-X459449Y291753D01*

-X459555Y291701D01*

-X459668Y291666D01*

-Y287522D01*

-G37*

-G36*

-Y256522D02*X459309Y256671D01*

-X458880Y256774D01*

-X458441Y256809D01*

-X458437Y256808D01*

-Y282192D01*

-X458441Y282191D01*

-X458880Y282226D01*

-X459309Y282329D01*

-X459668Y282478D01*

-Y266330D01*

-X459557Y266296D01*

-X459450Y266244D01*

-X459354Y266177D01*

-X459269Y266095D01*

-X459198Y266000D01*

-X459144Y265895D01*

-X458985Y265492D01*

-X458868Y265075D01*

-X458789Y264648D01*

-X458750Y264217D01*

-Y263783D01*

-X458789Y263352D01*

-X458868Y262925D01*

-X458985Y262508D01*

-X459140Y262103D01*

-X459195Y261998D01*

-X459266Y261903D01*

-X459352Y261821D01*

-X459449Y261753D01*

-X459555Y261701D01*

-X459668Y261666D01*

-Y256522D01*

-G37*

-G36*

-Y227522D02*X459309Y227671D01*

-X458880Y227774D01*

-X458441Y227809D01*

-X458437Y227808D01*

-Y251192D01*

-X458441Y251191D01*

-X458880Y251226D01*

-X459309Y251329D01*

-X459668Y251478D01*

-Y236330D01*

-X459557Y236296D01*

-X459450Y236244D01*

-X459354Y236177D01*

-X459269Y236095D01*

-X459198Y236000D01*

-X459144Y235895D01*

-X458985Y235492D01*

-X458868Y235075D01*

-X458789Y234648D01*

-X458750Y234217D01*

-Y233783D01*

-X458789Y233352D01*

-X458868Y232925D01*

-X458985Y232508D01*

-X459140Y232103D01*

-X459195Y231998D01*

-X459266Y231903D01*

-X459352Y231821D01*

-X459449Y231753D01*

-X459555Y231701D01*

-X459668Y231666D01*

-Y227522D01*

-G37*

-G36*

-Y197522D02*X459309Y197671D01*

-X458880Y197774D01*

-X458441Y197809D01*

-X458437Y197808D01*

-Y222192D01*

-X458441Y222191D01*

-X458880Y222226D01*

-X459309Y222329D01*

-X459668Y222478D01*

-Y206330D01*

-X459557Y206296D01*

-X459450Y206244D01*

-X459354Y206177D01*

-X459269Y206095D01*

-X459198Y206000D01*

-X459144Y205895D01*

-X458985Y205492D01*

-X458868Y205075D01*

-X458789Y204648D01*

-X458750Y204217D01*

-Y203783D01*

-X458789Y203352D01*

-X458868Y202925D01*

-X458985Y202508D01*

-X459140Y202103D01*

-X459195Y201998D01*

-X459266Y201903D01*

-X459352Y201821D01*

-X459449Y201753D01*

-X459555Y201701D01*

-X459668Y201666D01*

-Y197522D01*

-G37*

-G36*

-Y166522D02*X459309Y166671D01*

-X458880Y166774D01*

-X458441Y166809D01*

-X458437Y166808D01*

-Y192192D01*

-X458441Y192191D01*

-X458880Y192226D01*

-X459309Y192329D01*

-X459668Y192478D01*

-Y176330D01*

-X459557Y176296D01*

-X459450Y176244D01*

-X459354Y176177D01*

-X459269Y176095D01*

-X459198Y176000D01*

-X459144Y175895D01*

-X458985Y175492D01*

-X458868Y175075D01*

-X458789Y174648D01*

-X458750Y174217D01*

-Y173783D01*

-X458789Y173352D01*

-X458868Y172925D01*

-X458985Y172508D01*

-X459140Y172103D01*

-X459195Y171998D01*

-X459266Y171903D01*

-X459352Y171821D01*

-X459449Y171753D01*

-X459555Y171701D01*

-X459668Y171666D01*

-Y166522D01*

-G37*

-G36*

-Y39000D02*X458437D01*

-Y161192D01*

-X458441Y161191D01*

-X458880Y161226D01*

-X459309Y161329D01*

-X459668Y161478D01*

-Y146330D01*

-X459557Y146296D01*

-X459450Y146244D01*

-X459354Y146177D01*

-X459269Y146095D01*

-X459198Y146000D01*

-X459144Y145895D01*

-X458985Y145492D01*

-X458868Y145075D01*

-X458789Y144648D01*

-X458750Y144217D01*

-Y143783D01*

-X458789Y143352D01*

-X458868Y142925D01*

-X458985Y142508D01*

-X459140Y142103D01*

-X459195Y141998D01*

-X459266Y141903D01*

-X459352Y141821D01*

-X459449Y141753D01*

-X459555Y141701D01*

-X459668Y141666D01*

-Y116330D01*

-X459557Y116296D01*

-X459450Y116244D01*

-X459354Y116177D01*

-X459269Y116095D01*

-X459198Y116000D01*

-X459144Y115895D01*

-X458985Y115492D01*

-X458868Y115075D01*

-X458789Y114648D01*

-X458750Y114217D01*

-Y113783D01*

-X458789Y113352D01*

-X458868Y112925D01*

-X458985Y112508D01*

-X459140Y112103D01*

-X459195Y111998D01*

-X459266Y111903D01*

-X459352Y111821D01*

-X459449Y111753D01*

-X459555Y111701D01*

-X459668Y111666D01*

-Y86330D01*

-X459557Y86296D01*

-X459450Y86244D01*

-X459354Y86177D01*

-X459269Y86095D01*

-X459198Y86000D01*

-X459144Y85895D01*

-X458985Y85492D01*

-X458868Y85075D01*

-X458789Y84648D01*

-X458750Y84217D01*

-Y83783D01*

-X458789Y83352D01*

-X458868Y82925D01*

-X458985Y82508D01*

-X459140Y82103D01*

-X459195Y81998D01*

-X459266Y81903D01*

-X459352Y81821D01*

-X459449Y81753D01*

-X459555Y81701D01*

-X459668Y81666D01*

-Y56330D01*

-X459557Y56296D01*

-X459450Y56244D01*

-X459354Y56177D01*

-X459269Y56095D01*

-X459198Y56000D01*

-X459144Y55895D01*

-X458985Y55492D01*

-X458868Y55075D01*

-X458789Y54648D01*

-X458750Y54217D01*

-Y53783D01*

-X458789Y53352D01*

-X458868Y52925D01*

-X458985Y52508D01*

-X459140Y52103D01*

-X459195Y51998D01*

-X459266Y51903D01*

-X459352Y51821D01*

-X459449Y51753D01*

-X459555Y51701D01*

-X459668Y51666D01*

-Y39000D01*

-G37*

-G36*

-X458437D02*X453500D01*

-Y49257D01*

-X456985Y49264D01*

-X457215Y49319D01*

-X457433Y49409D01*

-X457634Y49533D01*

-X457814Y49686D01*

-X457967Y49866D01*

-X458091Y50067D01*

-X458181Y50285D01*

-X458236Y50515D01*

-X458250Y50750D01*

-X458236Y57485D01*

-X458181Y57715D01*

-X458091Y57933D01*

-X457967Y58134D01*

-X457814Y58314D01*

-X457634Y58467D01*

-X457433Y58591D01*

-X457215Y58681D01*

-X456985Y58736D01*

-X456750Y58750D01*

-X453500Y58743D01*

-Y79257D01*

-X456985Y79264D01*

-X457215Y79319D01*

-X457433Y79409D01*

-X457634Y79533D01*

-X457814Y79686D01*

-X457967Y79866D01*

-X458091Y80067D01*

-X458181Y80285D01*

-X458236Y80515D01*

-X458250Y80750D01*

-X458236Y87485D01*

-X458181Y87715D01*

-X458091Y87933D01*

-X457967Y88134D01*

-X457814Y88314D01*

-X457634Y88467D01*

-X457433Y88591D01*

-X457215Y88681D01*

-X456985Y88736D01*

-X456750Y88750D01*

-X453500Y88743D01*

-Y109257D01*

-X456985Y109264D01*

-X457215Y109319D01*

-X457433Y109409D01*

-X457634Y109533D01*

-X457814Y109686D01*

-X457967Y109866D01*

-X458091Y110067D01*

-X458181Y110285D01*

-X458236Y110515D01*

-X458250Y110750D01*

-X458236Y117485D01*

-X458181Y117715D01*

-X458091Y117933D01*

-X457967Y118134D01*

-X457814Y118314D01*

-X457634Y118467D01*

-X457433Y118591D01*

-X457215Y118681D01*

-X456985Y118736D01*

-X456750Y118750D01*

-X453500Y118743D01*

-Y139257D01*

-X456985Y139264D01*

-X457215Y139319D01*

-X457433Y139409D01*

-X457634Y139533D01*

-X457814Y139686D01*

-X457967Y139866D01*

-X458091Y140067D01*

-X458181Y140285D01*

-X458236Y140515D01*

-X458250Y140750D01*

-X458236Y147485D01*

-X458181Y147715D01*

-X458091Y147933D01*

-X457967Y148134D01*

-X457814Y148314D01*

-X457634Y148467D01*

-X457433Y148591D01*

-X457215Y148681D01*

-X456985Y148736D01*

-X456750Y148750D01*

-X453500Y148743D01*

-Y169257D01*

-X456985Y169264D01*

-X457215Y169319D01*

-X457433Y169409D01*

-X457634Y169533D01*

-X457814Y169686D01*

-X457967Y169866D01*

-X458091Y170067D01*

-X458181Y170285D01*

-X458236Y170515D01*

-X458250Y170750D01*

-X458236Y177485D01*

-X458181Y177715D01*

-X458091Y177933D01*

-X457967Y178134D01*

-X457814Y178314D01*

-X457634Y178467D01*

-X457433Y178591D01*

-X457215Y178681D01*

-X456985Y178736D01*

-X456750Y178750D01*

-X453500Y178743D01*

-Y199257D01*

-X456985Y199264D01*

-X457215Y199319D01*

-X457433Y199409D01*

-X457634Y199533D01*

-X457814Y199686D01*

-X457967Y199866D01*

-X458091Y200067D01*

-X458181Y200285D01*

-X458236Y200515D01*

-X458250Y200750D01*

-X458236Y207485D01*

-X458181Y207715D01*

-X458091Y207933D01*

-X457967Y208134D01*

-X457814Y208314D01*

-X457634Y208467D01*

-X457433Y208591D01*

-X457215Y208681D01*

-X456985Y208736D01*

-X456750Y208750D01*

-X453500Y208743D01*

-Y229257D01*

-X456985Y229264D01*

-X457215Y229319D01*

-X457433Y229409D01*

-X457634Y229533D01*

-X457814Y229686D01*

-X457967Y229866D01*

-X458091Y230067D01*

-X458181Y230285D01*

-X458236Y230515D01*

-X458250Y230750D01*

-X458236Y237485D01*

-X458181Y237715D01*

-X458091Y237933D01*

-X457967Y238134D01*

-X457814Y238314D01*

-X457634Y238467D01*

-X457433Y238591D01*

-X457215Y238681D01*

-X456985Y238736D01*

-X456750Y238750D01*

-X453500Y238743D01*

-Y259257D01*

-X456985Y259264D01*

-X457215Y259319D01*

-X457433Y259409D01*

-X457634Y259533D01*

-X457814Y259686D01*

-X457967Y259866D01*

-X458091Y260067D01*

-X458181Y260285D01*

-X458236Y260515D01*

-X458250Y260750D01*

-X458236Y267485D01*

-X458181Y267715D01*

-X458091Y267933D01*

-X457967Y268134D01*

-X457814Y268314D01*

-X457634Y268467D01*

-X457433Y268591D01*

-X457215Y268681D01*

-X456985Y268736D01*

-X456750Y268750D01*

-X453500Y268743D01*

-Y289257D01*

-X456985Y289264D01*

-X457215Y289319D01*

-X457433Y289409D01*

-X457634Y289533D01*

-X457814Y289686D01*

-X457967Y289866D01*

-X458091Y290067D01*

-X458181Y290285D01*

-X458236Y290515D01*

-X458250Y290750D01*

-X458236Y297485D01*

-X458181Y297715D01*

-X458091Y297933D01*

-X457967Y298134D01*

-X457814Y298314D01*

-X457634Y298467D01*

-X457433Y298591D01*

-X457215Y298681D01*

-X456985Y298736D01*

-X456750Y298750D01*

-X453500Y298743D01*

-Y319257D01*

-X456985Y319264D01*

-X457215Y319319D01*

-X457433Y319409D01*

-X457634Y319533D01*

-X457814Y319686D01*

-X457967Y319866D01*

-X458091Y320067D01*

-X458181Y320285D01*

-X458236Y320515D01*

-X458250Y320750D01*

-X458236Y327485D01*

-X458181Y327715D01*

-X458091Y327933D01*

-X457967Y328134D01*

-X457814Y328314D01*

-X457634Y328467D01*

-X457433Y328591D01*

-X457215Y328681D01*

-X456985Y328736D01*

-X456750Y328750D01*

-X453500Y328743D01*

-Y349257D01*

-X456985Y349264D01*

-X457215Y349319D01*

-X457433Y349409D01*

-X457634Y349533D01*

-X457814Y349686D01*

-X457967Y349866D01*

-X458091Y350067D01*

-X458181Y350285D01*

-X458236Y350515D01*

-X458250Y350750D01*

-X458236Y357485D01*

-X458181Y357715D01*

-X458091Y357933D01*

-X457967Y358134D01*

-X457814Y358314D01*

-X457634Y358467D01*

-X457433Y358591D01*

-X457215Y358681D01*

-X456985Y358736D01*

-X456750Y358750D01*

-X453500Y358743D01*

-Y379257D01*

-X456985Y379264D01*

-X457215Y379319D01*

-X457433Y379409D01*

-X457634Y379533D01*

-X457814Y379686D01*

-X457967Y379866D01*

-X458091Y380067D01*

-X458181Y380285D01*

-X458236Y380515D01*

-X458250Y380750D01*

-X458236Y387485D01*

-X458181Y387715D01*

-X458091Y387933D01*

-X457967Y388134D01*

-X457814Y388314D01*

-X457634Y388467D01*

-X457433Y388591D01*

-X457215Y388681D01*

-X456985Y388736D01*

-X456750Y388750D01*

-X453500Y388743D01*

-Y397000D01*

-X458437D01*

-Y377808D01*

-X458002Y377774D01*

-X457573Y377671D01*

-X457166Y377503D01*

-X456790Y377272D01*

-X456455Y376986D01*

-X456169Y376651D01*

-X455938Y376275D01*

-X455770Y375868D01*

-X455667Y375439D01*

-X455632Y375000D01*

-X455667Y374561D01*

-X455770Y374132D01*

-X455938Y373725D01*

-X456169Y373349D01*

-X456455Y373014D01*

-X456790Y372728D01*

-X457166Y372497D01*

-X457573Y372329D01*

-X458002Y372226D01*

-X458437Y372192D01*

-Y347808D01*

-X458002Y347774D01*

-X457573Y347671D01*

-X457166Y347503D01*

-X456790Y347272D01*

-X456455Y346986D01*

-X456169Y346651D01*

-X455938Y346275D01*

-X455770Y345868D01*

-X455667Y345439D01*

-X455632Y345000D01*

-X455667Y344561D01*

-X455770Y344132D01*

-X455938Y343725D01*

-X456169Y343349D01*

-X456455Y343014D01*

-X456790Y342728D01*

-X457166Y342497D01*

-X457573Y342329D01*

-X458002Y342226D01*

-X458437Y342192D01*

-Y317808D01*

-X458002Y317774D01*

-X457573Y317671D01*

-X457166Y317503D01*

-X456790Y317272D01*

-X456455Y316986D01*

-X456169Y316651D01*

-X455938Y316275D01*

-X455770Y315868D01*

-X455667Y315439D01*

-X455632Y315000D01*

-X455667Y314561D01*

-X455770Y314132D01*

-X455938Y313725D01*

-X456169Y313349D01*

-X456455Y313014D01*

-X456790Y312728D01*

-X457166Y312497D01*

-X457573Y312329D01*

-X458002Y312226D01*

-X458437Y312192D01*

-Y287808D01*

-X458002Y287774D01*

-X457573Y287671D01*

-X457166Y287503D01*

-X456790Y287272D01*

-X456455Y286986D01*

-X456169Y286651D01*

-X455938Y286275D01*

-X455770Y285868D01*

-X455667Y285439D01*

-X455632Y285000D01*

-X455667Y284561D01*

-X455770Y284132D01*

-X455938Y283725D01*

-X456169Y283349D01*

-X456455Y283014D01*

-X456790Y282728D01*

-X457166Y282497D01*

-X457573Y282329D01*

-X458002Y282226D01*

-X458437Y282192D01*

-Y256808D01*

-X458002Y256774D01*

-X457573Y256671D01*

-X457166Y256503D01*

-X456790Y256272D01*

-X456455Y255986D01*

-X456169Y255651D01*

-X455938Y255275D01*

-X455770Y254868D01*

-X455667Y254439D01*

-X455632Y254000D01*

-X455667Y253561D01*

-X455770Y253132D01*

-X455938Y252725D01*

-X456169Y252349D01*

-X456455Y252014D01*

-X456790Y251728D01*

-X457166Y251497D01*

-X457573Y251329D01*

-X458002Y251226D01*

-X458437Y251192D01*

-Y227808D01*

-X458002Y227774D01*

-X457573Y227671D01*

-X457166Y227503D01*

-X456790Y227272D01*

-X456455Y226986D01*

-X456169Y226651D01*

-X455938Y226275D01*

-X455770Y225868D01*

-X455667Y225439D01*

-X455632Y225000D01*

-X455667Y224561D01*

-X455770Y224132D01*

-X455938Y223725D01*

-X456169Y223349D01*

-X456455Y223014D01*

-X456790Y222728D01*

-X457166Y222497D01*

-X457573Y222329D01*

-X458002Y222226D01*

-X458437Y222192D01*

-Y197808D01*

-X458002Y197774D01*

-X457573Y197671D01*

-X457166Y197503D01*

-X456790Y197272D01*

-X456455Y196986D01*

-X456169Y196651D01*

-X455938Y196275D01*

-X455770Y195868D01*

-X455667Y195439D01*

-X455632Y195000D01*

-X455667Y194561D01*

-X455770Y194132D01*

-X455938Y193725D01*

-X456169Y193349D01*

-X456455Y193014D01*

-X456790Y192728D01*

-X457166Y192497D01*

-X457573Y192329D01*

-X458002Y192226D01*

-X458437Y192192D01*

-Y166808D01*

-X458002Y166774D01*

-X457573Y166671D01*

-X457166Y166503D01*

-X456790Y166272D01*

-X456455Y165986D01*

-X456169Y165651D01*

-X455938Y165275D01*

-X455770Y164868D01*

-X455667Y164439D01*

-X455632Y164000D01*

-X455667Y163561D01*

-X455770Y163132D01*

-X455938Y162725D01*

-X456169Y162349D01*

-X456455Y162014D01*

-X456790Y161728D01*

-X457166Y161497D01*

-X457573Y161329D01*

-X458002Y161226D01*

-X458437Y161192D01*

-Y39000D01*

-G37*

-G36*

-X453500Y148743D02*X453441Y148743D01*

-Y154000D01*

-X440446D01*

-Y170721D01*

-X440855Y171199D01*

-X441245Y171837D01*

-X441531Y172528D01*

-X441706Y173255D01*

-X441750Y174000D01*

-X441706Y174745D01*

-X441531Y175472D01*

-X441245Y176163D01*

-X440855Y176801D01*

-X440446Y177279D01*

-Y200721D01*

-X440855Y201199D01*

-X441245Y201837D01*

-X441531Y202528D01*

-X441706Y203255D01*

-X441750Y204000D01*

-X441706Y204745D01*

-X441531Y205472D01*

-X441245Y206163D01*

-X440855Y206801D01*

-X440446Y207279D01*

-Y230721D01*

-X440855Y231199D01*

-X441245Y231837D01*

-X441531Y232528D01*

-X441706Y233255D01*

-X441750Y234000D01*

-X441706Y234745D01*

-X441531Y235472D01*

-X441245Y236163D01*

-X440855Y236801D01*

-X440446Y237279D01*

-Y260721D01*

-X440855Y261199D01*

-X441245Y261837D01*

-X441531Y262528D01*

-X441706Y263255D01*

-X441750Y264000D01*

-X441706Y264745D01*

-X441531Y265472D01*

-X441245Y266163D01*

-X440855Y266801D01*

-X440446Y267279D01*

-Y290721D01*

-X440855Y291199D01*

-X441245Y291837D01*

-X441531Y292528D01*

-X441706Y293255D01*

-X441750Y294000D01*

-X441706Y294745D01*

-X441531Y295472D01*

-X441245Y296163D01*

-X440855Y296801D01*

-X440446Y297279D01*

-Y320721D01*

-X440855Y321199D01*

-X441245Y321837D01*

-X441531Y322528D01*

-X441706Y323255D01*

-X441750Y324000D01*

-X441706Y324745D01*

-X441531Y325472D01*

-X441245Y326163D01*

-X440855Y326801D01*

-X440446Y327279D01*

-Y350721D01*

-X440855Y351199D01*

-X441245Y351837D01*

-X441531Y352528D01*

-X441706Y353255D01*

-X441750Y354000D01*

-X441706Y354745D01*

-X441531Y355472D01*

-X441245Y356163D01*

-X440855Y356801D01*

-X440446Y357279D01*

-Y380721D01*

-X440855Y381199D01*

-X441245Y381837D01*

-X441531Y382528D01*

-X441706Y383255D01*

-X441750Y384000D01*

-X441706Y384745D01*

-X441531Y385472D01*

-X441245Y386163D01*

-X440855Y386801D01*

-X440446Y387279D01*

-Y397000D01*

-X453500D01*

-Y388743D01*

-X450015Y388736D01*

-X449785Y388681D01*

-X449567Y388591D01*

-X449366Y388467D01*

-X449186Y388314D01*

-X449033Y388134D01*

-X448909Y387933D01*

-X448819Y387715D01*

-X448764Y387485D01*

-X448750Y387250D01*

-X448764Y380515D01*

-X448819Y380285D01*

-X448909Y380067D01*

-X449033Y379866D01*

-X449186Y379686D01*

-X449366Y379533D01*

-X449567Y379409D01*

-X449785Y379319D01*

-X450015Y379264D01*

-X450250Y379250D01*

-X453500Y379257D01*

-Y358743D01*

-X450015Y358736D01*

-X449785Y358681D01*

-X449567Y358591D01*

-X449366Y358467D01*

-X449186Y358314D01*

-X449033Y358134D01*

-X448909Y357933D01*

-X448819Y357715D01*

-X448764Y357485D01*

-X448750Y357250D01*

-X448764Y350515D01*

-X448819Y350285D01*

-X448909Y350067D01*

-X449033Y349866D01*

-X449186Y349686D01*

-X449366Y349533D01*

-X449567Y349409D01*

-X449785Y349319D01*

-X450015Y349264D01*

-X450250Y349250D01*

-X453500Y349257D01*

-Y328743D01*

-X450015Y328736D01*

-X449785Y328681D01*

-X449567Y328591D01*

-X449366Y328467D01*

-X449186Y328314D01*

-X449033Y328134D01*

-X448909Y327933D01*

-X448819Y327715D01*

-X448764Y327485D01*

-X448750Y327250D01*

-X448764Y320515D01*

-X448819Y320285D01*

-X448909Y320067D01*

-X449033Y319866D01*

-X449186Y319686D01*

-X449366Y319533D01*

-X449567Y319409D01*

-X449785Y319319D01*

-X450015Y319264D01*

-X450250Y319250D01*

-X453500Y319257D01*

-Y298743D01*

-X450015Y298736D01*

-X449785Y298681D01*

-X449567Y298591D01*

-X449366Y298467D01*

-X449186Y298314D01*

-X449033Y298134D01*

-X448909Y297933D01*

-X448819Y297715D01*

-X448764Y297485D01*

-X448750Y297250D01*

-X448764Y290515D01*

-X448819Y290285D01*

-X448909Y290067D01*

-X449033Y289866D01*

-X449186Y289686D01*

-X449366Y289533D01*

-X449567Y289409D01*

-X449785Y289319D01*

-X450015Y289264D01*

-X450250Y289250D01*

-X453500Y289257D01*

-Y268743D01*

-X450015Y268736D01*

-X449785Y268681D01*

-X449567Y268591D01*

-X449366Y268467D01*

-X449186Y268314D01*

-X449033Y268134D01*

-X448909Y267933D01*

-X448819Y267715D01*

-X448764Y267485D01*

-X448750Y267250D01*

-X448764Y260515D01*

-X448819Y260285D01*

-X448909Y260067D01*

-X449033Y259866D01*

-X449186Y259686D01*

-X449366Y259533D01*

-X449567Y259409D01*

-X449785Y259319D01*

-X450015Y259264D01*

-X450250Y259250D01*

-X453500Y259257D01*

-Y238743D01*

-X450015Y238736D01*

-X449785Y238681D01*

-X449567Y238591D01*

-X449366Y238467D01*

-X449186Y238314D01*

-X449033Y238134D01*

-X448909Y237933D01*

-X448819Y237715D01*

-X448764Y237485D01*

-X448750Y237250D01*

-X448764Y230515D01*

-X448819Y230285D01*

-X448909Y230067D01*

-X449033Y229866D01*

-X449186Y229686D01*

-X449366Y229533D01*

-X449567Y229409D01*

-X449785Y229319D01*

-X450015Y229264D01*

-X450250Y229250D01*

-X453500Y229257D01*

-Y208743D01*

-X450015Y208736D01*

-X449785Y208681D01*

-X449567Y208591D01*

-X449366Y208467D01*

-X449186Y208314D01*

-X449033Y208134D01*

-X448909Y207933D01*

-X448819Y207715D01*

-X448764Y207485D01*

-X448750Y207250D01*

-X448764Y200515D01*

-X448819Y200285D01*

-X448909Y200067D01*

-X449033Y199866D01*

-X449186Y199686D01*

-X449366Y199533D01*

-X449567Y199409D01*

-X449785Y199319D01*

-X450015Y199264D01*

-X450250Y199250D01*

-X453500Y199257D01*

-Y178743D01*

-X450015Y178736D01*

-X449785Y178681D01*

-X449567Y178591D01*

-X449366Y178467D01*

-X449186Y178314D01*

-X449033Y178134D01*

-X448909Y177933D01*

-X448819Y177715D01*

-X448764Y177485D01*

-X448750Y177250D01*

-X448764Y170515D01*

-X448819Y170285D01*

-X448909Y170067D01*

-X449033Y169866D01*

-X449186Y169686D01*

-X449366Y169533D01*

-X449567Y169409D01*

-X449785Y169319D01*

-X450015Y169264D01*

-X450250Y169250D01*

-X453500Y169257D01*

-Y148743D01*

-G37*

-G36*

-Y118743D02*X453441Y118743D01*

-Y139257D01*

-X453500Y139257D01*

-Y118743D01*

-G37*

-G36*

-Y88743D02*X453441Y88743D01*

-Y109257D01*

-X453500Y109257D01*

-Y88743D01*

-G37*

-G36*

-Y39000D02*X440446D01*

-Y54695D01*

-X440449Y54694D01*

-X440731Y54717D01*

-X441007Y54783D01*

-X441269Y54891D01*

-X441510Y55039D01*

-X441726Y55223D01*

-X441910Y55439D01*

-X442058Y55680D01*

-X442166Y55942D01*

-X442232Y56218D01*

-X442249Y56500D01*

-X442232Y56782D01*

-X442166Y57058D01*

-X442058Y57320D01*

-X441910Y57561D01*

-X441726Y57777D01*

-X441510Y57961D01*

-X441269Y58109D01*

-X441007Y58217D01*

-X440731Y58283D01*

-X440449Y58306D01*

-X440446Y58305D01*

-Y67000D01*

-X453441D01*

-Y79257D01*

-X453500Y79257D01*

-Y58743D01*

-X450015Y58736D01*

-X449785Y58681D01*

-X449567Y58591D01*

-X449366Y58467D01*

-X449186Y58314D01*

-X449033Y58134D01*

-X448909Y57933D01*

-X448819Y57715D01*

-X448764Y57485D01*

-X448750Y57250D01*

-X448764Y50515D01*

-X448819Y50285D01*

-X448909Y50067D01*

-X449033Y49866D01*

-X449186Y49686D01*

-X449366Y49533D01*

-X449567Y49409D01*

-X449785Y49319D01*

-X450015Y49264D01*

-X450250Y49250D01*

-X453500Y49257D01*

-Y39000D01*

-G37*

-G36*

-X440446Y387279D02*X440369Y387369D01*

-X439801Y387855D01*

-X439163Y388245D01*

-X438472Y388531D01*

-X437745Y388706D01*

-X437000Y388765D01*

-X436255Y388706D01*

-X435528Y388531D01*

-X434837Y388245D01*

-X434446Y388006D01*

-Y397000D01*

-X440446D01*

-Y387279D01*

-G37*

-G36*

-Y357279D02*X440369Y357369D01*

-X439801Y357855D01*

-X439163Y358245D01*

-X438472Y358531D01*

-X437745Y358706D01*

-X437000Y358765D01*

-X436255Y358706D01*

-X435528Y358531D01*

-X434837Y358245D01*

-X434446Y358006D01*

-Y379994D01*

-X434837Y379755D01*

-X435528Y379469D01*

-X436255Y379294D01*

-X437000Y379235D01*

-X437745Y379294D01*

-X438472Y379469D01*

-X439163Y379755D01*

-X439801Y380145D01*

-X440369Y380631D01*

-X440446Y380721D01*

-Y357279D01*

-G37*

-G36*

-Y327279D02*X440369Y327369D01*

-X439801Y327855D01*

-X439163Y328245D01*

-X438472Y328531D01*

-X437745Y328706D01*

-X437000Y328765D01*

-X436255Y328706D01*

-X435528Y328531D01*

-X434837Y328245D01*

-X434446Y328006D01*

-Y349994D01*

-X434837Y349755D01*

-X435528Y349469D01*

-X436255Y349294D01*

-X437000Y349235D01*

-X437745Y349294D01*

-X438472Y349469D01*

-X439163Y349755D01*

-X439801Y350145D01*

-X440369Y350631D01*

-X440446Y350721D01*

-Y327279D01*

-G37*

-G36*

-Y297279D02*X440369Y297369D01*

-X439801Y297855D01*

-X439163Y298245D01*

-X438472Y298531D01*

-X437745Y298706D01*

-X437000Y298765D01*

-X436255Y298706D01*

-X435528Y298531D01*

-X434837Y298245D01*

-X434446Y298006D01*

-Y319994D01*

-X434837Y319755D01*

-X435528Y319469D01*

-X436255Y319294D01*

-X437000Y319235D01*

-X437745Y319294D01*

-X438472Y319469D01*

-X439163Y319755D01*

-X439801Y320145D01*

-X440369Y320631D01*

-X440446Y320721D01*

-Y297279D01*

-G37*

-G36*

-Y267279D02*X440369Y267369D01*

-X439801Y267855D01*

-X439163Y268245D01*

-X438472Y268531D01*

-X437745Y268706D01*

-X437000Y268765D01*

-X436255Y268706D01*

-X435528Y268531D01*

-X434837Y268245D01*

-X434446Y268006D01*

-Y289994D01*

-X434837Y289755D01*

-X435528Y289469D01*

-X436255Y289294D01*

-X437000Y289235D01*

-X437745Y289294D01*

-X438472Y289469D01*

-X439163Y289755D01*

-X439801Y290145D01*

-X440369Y290631D01*

-X440446Y290721D01*

-Y267279D01*

-G37*

-G36*

-Y237279D02*X440369Y237369D01*

-X439801Y237855D01*

-X439163Y238245D01*

-X438472Y238531D01*

-X437745Y238706D01*

-X437000Y238765D01*

-X436255Y238706D01*

-X435528Y238531D01*

-X434837Y238245D01*

-X434446Y238006D01*

-Y259994D01*

-X434837Y259755D01*

-X435528Y259469D01*

-X436255Y259294D01*

-X437000Y259235D01*

-X437745Y259294D01*

-X438472Y259469D01*

-X439163Y259755D01*

-X439801Y260145D01*

-X440369Y260631D01*

-X440446Y260721D01*

-Y237279D01*

-G37*

-G36*

-Y207279D02*X440369Y207369D01*

-X439801Y207855D01*

-X439163Y208245D01*

-X438472Y208531D01*

-X437745Y208706D01*

-X437000Y208765D01*

-X436255Y208706D01*

-X435528Y208531D01*

-X434837Y208245D01*

-X434446Y208006D01*

-Y229994D01*

-X434837Y229755D01*

-X435528Y229469D01*

-X436255Y229294D01*

-X437000Y229235D01*

-X437745Y229294D01*

-X438472Y229469D01*

-X439163Y229755D01*

-X439801Y230145D01*

-X440369Y230631D01*

-X440446Y230721D01*

-Y207279D01*

-G37*

-G36*

-Y177279D02*X440369Y177369D01*

-X439801Y177855D01*

-X439163Y178245D01*

-X438472Y178531D01*

-X437745Y178706D01*

-X437000Y178765D01*

-X436255Y178706D01*

-X435528Y178531D01*

-X434837Y178245D01*

-X434446Y178006D01*

-Y199994D01*

-X434837Y199755D01*

-X435528Y199469D01*

-X436255Y199294D01*

-X437000Y199235D01*

-X437745Y199294D01*

-X438472Y199469D01*

-X439163Y199755D01*

-X439801Y200145D01*

-X440369Y200631D01*

-X440446Y200721D01*

-Y177279D01*

-G37*

-G36*

-Y154000D02*X434446D01*

-Y169994D01*

-X434837Y169755D01*

-X435528Y169469D01*

-X436255Y169294D01*

-X437000Y169235D01*

-X437745Y169294D01*

-X438472Y169469D01*

-X439163Y169755D01*

-X439801Y170145D01*

-X440369Y170631D01*

-X440446Y170721D01*

-Y154000D01*

-G37*

-G36*

-Y39000D02*X434446D01*

-Y54695D01*

-X434449Y54694D01*

-X434731Y54717D01*

-X435007Y54783D01*

-X435269Y54891D01*

-X435510Y55039D01*

-X435726Y55223D01*

-X435910Y55439D01*

-X436058Y55680D01*

-X436166Y55942D01*

-X436232Y56218D01*

-X436249Y56500D01*

-X436232Y56782D01*

-X436166Y57058D01*

-X436058Y57320D01*

-X435910Y57561D01*

-X435726Y57777D01*

-X435510Y57961D01*

-X435269Y58109D01*

-X435007Y58217D01*

-X434731Y58283D01*

-X434449Y58306D01*

-X434446Y58305D01*

-Y67000D01*

-X440446D01*

-Y58305D01*

-X440167Y58283D01*

-X439891Y58217D01*

-X439629Y58109D01*

-X439388Y57961D01*

-X439172Y57777D01*

-X438988Y57561D01*

-X438840Y57320D01*

-X438732Y57058D01*

-X438666Y56782D01*

-X438643Y56500D01*

-X438666Y56218D01*

-X438732Y55942D01*

-X438840Y55680D01*

-X438988Y55439D01*

-X439172Y55223D01*

-X439388Y55039D01*

-X439629Y54891D01*

-X439891Y54783D01*

-X440167Y54717D01*

-X440446Y54695D01*

-Y39000D01*

-G37*

-G36*

-X434446Y154000D02*X426993D01*

-Y169236D01*

-X427000Y169235D01*

-X427745Y169294D01*

-X428472Y169469D01*

-X429163Y169755D01*

-X429801Y170145D01*

-X430369Y170631D01*

-X430855Y171199D01*

-X431245Y171837D01*

-X431531Y172528D01*

-X431706Y173255D01*

-X431750Y174000D01*

-X431706Y174745D01*

-X431531Y175472D01*

-X431245Y176163D01*

-X430855Y176801D01*

-X430369Y177369D01*

-X429801Y177855D01*

-X429163Y178245D01*

-X428472Y178531D01*

-X427745Y178706D01*

-X427000Y178765D01*

-X426993Y178764D01*

-Y199236D01*

-X427000Y199235D01*

-X427745Y199294D01*

-X428472Y199469D01*

-X429163Y199755D01*

-X429801Y200145D01*

-X430369Y200631D01*

-X430855Y201199D01*

-X431245Y201837D01*

-X431531Y202528D01*

-X431706Y203255D01*

-X431750Y204000D01*

-X431706Y204745D01*

-X431531Y205472D01*

-X431245Y206163D01*

-X430855Y206801D01*

-X430369Y207369D01*

-X429801Y207855D01*

-X429163Y208245D01*

-X428472Y208531D01*

-X427745Y208706D01*

-X427000Y208765D01*

-X426993Y208764D01*

-Y229236D01*

-X427000Y229235D01*

-X427745Y229294D01*

-X428472Y229469D01*

-X429163Y229755D01*

-X429801Y230145D01*

-X430369Y230631D01*

-X430855Y231199D01*

-X431245Y231837D01*

-X431531Y232528D01*

-X431706Y233255D01*

-X431750Y234000D01*

-X431706Y234745D01*

-X431531Y235472D01*

-X431245Y236163D01*

-X430855Y236801D01*

-X430369Y237369D01*

-X429801Y237855D01*

-X429163Y238245D01*

-X428472Y238531D01*

-X427745Y238706D01*

-X427000Y238765D01*

-X426993Y238764D01*

-Y259236D01*

-X427000Y259235D01*

-X427745Y259294D01*

-X428472Y259469D01*

-X429163Y259755D01*

-X429801Y260145D01*

-X430369Y260631D01*

-X430855Y261199D01*

-X431245Y261837D01*

-X431531Y262528D01*

-X431706Y263255D01*

-X431750Y264000D01*

-X431706Y264745D01*

-X431531Y265472D01*

-X431245Y266163D01*

-X430855Y266801D01*

-X430369Y267369D01*

-X429801Y267855D01*

-X429163Y268245D01*

-X428472Y268531D01*

-X427745Y268706D01*

-X427000Y268765D01*

-X426993Y268764D01*

-Y289236D01*

-X427000Y289235D01*

-X427745Y289294D01*

-X428472Y289469D01*

-X429163Y289755D01*

-X429801Y290145D01*

-X430369Y290631D01*

-X430855Y291199D01*

-X431245Y291837D01*

-X431531Y292528D01*

-X431706Y293255D01*

-X431750Y294000D01*

-X431706Y294745D01*

-X431531Y295472D01*

-X431245Y296163D01*

-X430855Y296801D01*

-X430369Y297369D01*

-X429801Y297855D01*

-X429163Y298245D01*

-X428472Y298531D01*

-X427745Y298706D01*

-X427000Y298765D01*

-X426993Y298764D01*

-Y319236D01*

-X427000Y319235D01*

-X427745Y319294D01*

-X428472Y319469D01*

-X429163Y319755D01*

-X429801Y320145D01*

-X430369Y320631D01*

-X430855Y321199D01*

-X431245Y321837D01*

-X431531Y322528D01*

-X431706Y323255D01*

-X431750Y324000D01*

-X431706Y324745D01*

-X431531Y325472D01*

-X431245Y326163D01*

-X430855Y326801D01*

-X430369Y327369D01*

-X429801Y327855D01*

-X429163Y328245D01*

-X428472Y328531D01*

-X427745Y328706D01*

-X427000Y328765D01*

-X426993Y328764D01*

-Y349236D01*

-X427000Y349235D01*

-X427745Y349294D01*

-X428472Y349469D01*

-X429163Y349755D01*

-X429801Y350145D01*

-X430369Y350631D01*

-X430855Y351199D01*

-X431245Y351837D01*

-X431531Y352528D01*

-X431706Y353255D01*

-X431750Y354000D01*

-X431706Y354745D01*

-X431531Y355472D01*

-X431245Y356163D01*

-X430855Y356801D01*

-X430369Y357369D01*

-X429801Y357855D01*

-X429163Y358245D01*

-X428472Y358531D01*

-X427745Y358706D01*

-X427000Y358765D01*

-X426993Y358764D01*

-Y379236D01*

-X427000Y379235D01*

-X427745Y379294D01*

-X428472Y379469D01*

-X429163Y379755D01*

-X429801Y380145D01*

-X430369Y380631D01*

-X430855Y381199D01*

-X431245Y381837D01*

-X431531Y382528D01*

-X431706Y383255D01*

-X431750Y384000D01*

-X431706Y384745D01*

-X431531Y385472D01*

-X431245Y386163D01*

-X430855Y386801D01*

-X430369Y387369D01*

-X429801Y387855D01*

-X429163Y388245D01*

-X428472Y388531D01*

-X427745Y388706D01*

-X427000Y388765D01*

-X426993Y388764D01*

-Y397000D01*

-X434446D01*

-Y388006D01*

-X434199Y387855D01*

-X433631Y387369D01*

-X433145Y386801D01*

-X432755Y386163D01*

-X432469Y385472D01*

-X432294Y384745D01*

-X432235Y384000D01*

-X432294Y383255D01*

-X432469Y382528D01*

-X432755Y381837D01*

-X433145Y381199D01*

-X433631Y380631D01*

-X434199Y380145D01*

-X434446Y379994D01*

-Y358006D01*

-X434199Y357855D01*

-X433631Y357369D01*

-X433145Y356801D01*

-X432755Y356163D01*

-X432469Y355472D01*

-X432294Y354745D01*

-X432235Y354000D01*

-X432294Y353255D01*

-X432469Y352528D01*

-X432755Y351837D01*

-X433145Y351199D01*

-X433631Y350631D01*

-X434199Y350145D01*

-X434446Y349994D01*

-Y328006D01*

-X434199Y327855D01*

-X433631Y327369D01*

-X433145Y326801D01*

-X432755Y326163D01*

-X432469Y325472D01*

-X432294Y324745D01*

-X432235Y324000D01*

-X432294Y323255D01*

-X432469Y322528D01*

-X432755Y321837D01*

-X433145Y321199D01*

-X433631Y320631D01*

-X434199Y320145D01*

-X434446Y319994D01*

-Y298006D01*

-X434199Y297855D01*

-X433631Y297369D01*

-X433145Y296801D01*

-X432755Y296163D01*

-X432469Y295472D01*

-X432294Y294745D01*

-X432235Y294000D01*

-X432294Y293255D01*

-X432469Y292528D01*

-X432755Y291837D01*

-X433145Y291199D01*

-X433631Y290631D01*

-X434199Y290145D01*

-X434446Y289994D01*

-Y268006D01*

-X434199Y267855D01*

-X433631Y267369D01*

-X433145Y266801D01*

-X432755Y266163D01*

-X432469Y265472D01*

-X432294Y264745D01*

-X432235Y264000D01*

-X432294Y263255D01*

-X432469Y262528D01*

-X432755Y261837D01*

-X433145Y261199D01*

-X433631Y260631D01*

-X434199Y260145D01*

-X434446Y259994D01*

-Y238006D01*

-X434199Y237855D01*

-X433631Y237369D01*

-X433145Y236801D01*

-X432755Y236163D01*

-X432469Y235472D01*

-X432294Y234745D01*

-X432235Y234000D01*

-X432294Y233255D01*

-X432469Y232528D01*

-X432755Y231837D01*

-X433145Y231199D01*

-X433631Y230631D01*

-X434199Y230145D01*

-X434446Y229994D01*

-Y208006D01*

-X434199Y207855D01*

-X433631Y207369D01*

-X433145Y206801D01*

-X432755Y206163D01*

-X432469Y205472D01*

-X432294Y204745D01*

-X432235Y204000D01*

-X432294Y203255D01*

-X432469Y202528D01*

-X432755Y201837D01*

-X433145Y201199D01*

-X433631Y200631D01*

-X434199Y200145D01*

-X434446Y199994D01*

-Y178006D01*

-X434199Y177855D01*

-X433631Y177369D01*

-X433145Y176801D01*

-X432755Y176163D01*

-X432469Y175472D01*

-X432294Y174745D01*

-X432235Y174000D01*

-X432294Y173255D01*

-X432469Y172528D01*

-X432755Y171837D01*

-X433145Y171199D01*

-X433631Y170631D01*

-X434199Y170145D01*

-X434446Y169994D01*

-Y154000D01*

-G37*

-G36*

-X426993D02*X420832D01*

-Y171670D01*

-X420943Y171704D01*

-X421050Y171756D01*

-X421146Y171823D01*

-X421231Y171905D01*

-X421302Y172000D01*

-X421356Y172105D01*

-X421515Y172508D01*

-X421632Y172925D01*

-X421711Y173352D01*

-X421750Y173783D01*

-Y174217D01*

-X421711Y174648D01*

-X421632Y175075D01*

-X421515Y175492D01*

-X421360Y175897D01*

-X421305Y176002D01*

-X421234Y176097D01*

-X421148Y176179D01*

-X421051Y176247D01*

-X420945Y176299D01*

-X420832Y176334D01*

-Y201670D01*

-X420943Y201704D01*

-X421050Y201756D01*

-X421146Y201823D01*

-X421231Y201905D01*

-X421302Y202000D01*

-X421356Y202105D01*

-X421515Y202508D01*

-X421632Y202925D01*

-X421711Y203352D01*

-X421750Y203783D01*

-Y204217D01*

-X421711Y204648D01*

-X421632Y205075D01*

-X421515Y205492D01*

-X421360Y205897D01*

-X421305Y206002D01*

-X421234Y206097D01*

-X421148Y206179D01*

-X421051Y206247D01*

-X420945Y206299D01*

-X420832Y206334D01*

-Y231670D01*

-X420943Y231704D01*

-X421050Y231756D01*

-X421146Y231823D01*

-X421231Y231905D01*

-X421302Y232000D01*

-X421356Y232105D01*

-X421515Y232508D01*

-X421632Y232925D01*

-X421711Y233352D01*

-X421750Y233783D01*

-Y234217D01*

-X421711Y234648D01*

-X421632Y235075D01*

-X421515Y235492D01*

-X421360Y235897D01*

-X421305Y236002D01*

-X421234Y236097D01*

-X421148Y236179D01*

-X421051Y236247D01*

-X420945Y236299D01*

-X420832Y236334D01*

-Y261670D01*

-X420943Y261704D01*

-X421050Y261756D01*

-X421146Y261823D01*

-X421231Y261905D01*

-X421302Y262000D01*

-X421356Y262105D01*

-X421515Y262508D01*

-X421632Y262925D01*

-X421711Y263352D01*

-X421750Y263783D01*

-Y264217D01*

-X421711Y264648D01*

-X421632Y265075D01*

-X421515Y265492D01*

-X421360Y265897D01*

-X421305Y266002D01*

-X421234Y266097D01*

-X421148Y266179D01*

-X421051Y266247D01*

-X420945Y266299D01*

-X420832Y266334D01*

-Y291670D01*

-X420943Y291704D01*

-X421050Y291756D01*

-X421146Y291823D01*

-X421231Y291905D01*

-X421302Y292000D01*

-X421356Y292105D01*

-X421515Y292508D01*

-X421632Y292925D01*

-X421711Y293352D01*

-X421750Y293783D01*

-Y294217D01*

-X421711Y294648D01*

-X421632Y295075D01*

-X421515Y295492D01*

-X421360Y295897D01*

-X421305Y296002D01*

-X421234Y296097D01*

-X421148Y296179D01*

-X421051Y296247D01*

-X420945Y296299D01*

-X420832Y296334D01*

-Y321670D01*

-X420943Y321704D01*

-X421050Y321756D01*

-X421146Y321823D01*

-X421231Y321905D01*

-X421302Y322000D01*

-X421356Y322105D01*

-X421515Y322508D01*

-X421632Y322925D01*

-X421711Y323352D01*

-X421750Y323783D01*

-Y324217D01*

-X421711Y324648D01*

-X421632Y325075D01*

-X421515Y325492D01*

-X421360Y325897D01*

-X421305Y326002D01*

-X421234Y326097D01*

-X421148Y326179D01*

-X421051Y326247D01*

-X420945Y326299D01*

-X420832Y326334D01*

-Y351670D01*

-X420943Y351704D01*

-X421050Y351756D01*

-X421146Y351823D01*

-X421231Y351905D01*

-X421302Y352000D01*

-X421356Y352105D01*

-X421515Y352508D01*

-X421632Y352925D01*

-X421711Y353352D01*

-X421750Y353783D01*

-Y354217D01*

-X421711Y354648D01*

-X421632Y355075D01*

-X421515Y355492D01*

-X421360Y355897D01*

-X421305Y356002D01*

-X421234Y356097D01*

-X421148Y356179D01*

-X421051Y356247D01*

-X420945Y356299D01*

-X420832Y356334D01*

-Y381670D01*

-X420943Y381704D01*

-X421050Y381756D01*

-X421146Y381823D01*

-X421231Y381905D01*

-X421302Y382000D01*

-X421356Y382105D01*

-X421515Y382508D01*

-X421632Y382925D01*

-X421711Y383352D01*

-X421750Y383783D01*

-Y384217D01*

-X421711Y384648D01*

-X421632Y385075D01*

-X421515Y385492D01*

-X421360Y385897D01*

-X421305Y386002D01*

-X421234Y386097D01*

-X421148Y386179D01*

-X421051Y386247D01*

-X420945Y386299D01*

-X420832Y386334D01*

-Y397000D01*

-X426993D01*

-Y388764D01*

-X426255Y388706D01*

-X425528Y388531D01*

-X424837Y388245D01*

-X424199Y387855D01*

-X423631Y387369D01*

-X423145Y386801D01*

-X422755Y386163D01*

-X422469Y385472D01*

-X422294Y384745D01*

-X422235Y384000D01*

-X422294Y383255D01*

-X422469Y382528D01*

-X422755Y381837D01*

-X423145Y381199D01*

-X423631Y380631D01*

-X424199Y380145D01*

-X424837Y379755D01*

-X425528Y379469D01*

-X426255Y379294D01*

-X426993Y379236D01*

-Y358764D01*

-X426255Y358706D01*

-X425528Y358531D01*

-X424837Y358245D01*

-X424199Y357855D01*

-X423631Y357369D01*

-X423145Y356801D01*

-X422755Y356163D01*

-X422469Y355472D01*

-X422294Y354745D01*

-X422235Y354000D01*

-X422294Y353255D01*

-X422469Y352528D01*

-X422755Y351837D01*

-X423145Y351199D01*

-X423631Y350631D01*

-X424199Y350145D01*

-X424837Y349755D01*

-X425528Y349469D01*

-X426255Y349294D01*

-X426993Y349236D01*

-Y328764D01*

-X426255Y328706D01*

-X425528Y328531D01*

-X424837Y328245D01*

-X424199Y327855D01*

-X423631Y327369D01*

-X423145Y326801D01*

-X422755Y326163D01*

-X422469Y325472D01*

-X422294Y324745D01*

-X422235Y324000D01*

-X422294Y323255D01*

-X422469Y322528D01*

-X422755Y321837D01*

-X423145Y321199D01*

-X423631Y320631D01*

-X424199Y320145D01*

-X424837Y319755D01*

-X425528Y319469D01*

-X426255Y319294D01*

-X426993Y319236D01*

-Y298764D01*

-X426255Y298706D01*

-X425528Y298531D01*

-X424837Y298245D01*

-X424199Y297855D01*

-X423631Y297369D01*

-X423145Y296801D01*

-X422755Y296163D01*

-X422469Y295472D01*

-X422294Y294745D01*

-X422235Y294000D01*

-X422294Y293255D01*

-X422469Y292528D01*

-X422755Y291837D01*

-X423145Y291199D01*

-X423631Y290631D01*

-X424199Y290145D01*

-X424837Y289755D01*

-X425528Y289469D01*

-X426255Y289294D01*

-X426993Y289236D01*

-Y268764D01*

-X426255Y268706D01*

-X425528Y268531D01*

-X424837Y268245D01*

-X424199Y267855D01*

-X423631Y267369D01*

-X423145Y266801D01*

-X422755Y266163D01*

-X422469Y265472D01*

-X422294Y264745D01*

-X422235Y264000D01*

-X422294Y263255D01*

-X422469Y262528D01*

-X422755Y261837D01*

-X423145Y261199D01*

-X423631Y260631D01*

-X424199Y260145D01*

-X424837Y259755D01*

-X425528Y259469D01*

-X426255Y259294D01*

-X426993Y259236D01*

-Y238764D01*

-X426255Y238706D01*

-X425528Y238531D01*

-X424837Y238245D01*

-X424199Y237855D01*

-X423631Y237369D01*

-X423145Y236801D01*

-X422755Y236163D01*

-X422469Y235472D01*

-X422294Y234745D01*

-X422235Y234000D01*

-X422294Y233255D01*

-X422469Y232528D01*

-X422755Y231837D01*

-X423145Y231199D01*

-X423631Y230631D01*

-X424199Y230145D01*

-X424837Y229755D01*

-X425528Y229469D01*

-X426255Y229294D01*

-X426993Y229236D01*

-Y208764D01*

-X426255Y208706D01*

-X425528Y208531D01*

-X424837Y208245D01*

-X424199Y207855D01*

-X423631Y207369D01*

-X423145Y206801D01*

-X422755Y206163D01*

-X422469Y205472D01*

-X422294Y204745D01*

-X422235Y204000D01*

-X422294Y203255D01*

-X422469Y202528D01*

-X422755Y201837D01*

-X423145Y201199D01*

-X423631Y200631D01*

-X424199Y200145D01*

-X424837Y199755D01*

-X425528Y199469D01*

-X426255Y199294D01*

-X426993Y199236D01*

-Y178764D01*

-X426255Y178706D01*

-X425528Y178531D01*

-X424837Y178245D01*

-X424199Y177855D01*

-X423631Y177369D01*

-X423145Y176801D01*

-X422755Y176163D01*

-X422469Y175472D01*

-X422294Y174745D01*

-X422235Y174000D01*

-X422294Y173255D01*

-X422469Y172528D01*

-X422755Y171837D01*

-X423145Y171199D01*

-X423631Y170631D01*

-X424199Y170145D01*

-X424837Y169755D01*

-X425528Y169469D01*

-X426255Y169294D01*

-X426993Y169236D01*

-Y154000D01*

-G37*

-G36*

-X420832D02*X417002D01*

-Y169250D01*

-X417217D01*

-X417648Y169289D01*

-X418075Y169368D01*

-X418492Y169485D01*

-X418897Y169640D01*

-X419002Y169695D01*

-X419097Y169766D01*

-X419179Y169852D01*

-X419247Y169949D01*

-X419299Y170055D01*

-X419334Y170169D01*

-X419350Y170286D01*

-X419348Y170405D01*

-X419327Y170522D01*

-X419289Y170634D01*

-X419233Y170738D01*

-X419162Y170833D01*

-X419076Y170915D01*

-X418979Y170983D01*

-X418873Y171035D01*

-X418759Y171070D01*

-X418642Y171086D01*

-X418523Y171084D01*

-X418406Y171064D01*

-X418295Y171023D01*

-X418020Y170914D01*

-X417735Y170834D01*

-X417443Y170780D01*

-X417148Y170753D01*

-X417002D01*

-Y177247D01*

-X417148D01*

-X417443Y177220D01*

-X417735Y177166D01*

-X418020Y177086D01*

-X418297Y176980D01*

-X418407Y176940D01*

-X418524Y176919D01*

-X418642Y176917D01*

-X418759Y176933D01*

-X418871Y176968D01*

-X418978Y177020D01*

-X419074Y177087D01*

-X419159Y177169D01*

-X419230Y177263D01*

-X419286Y177368D01*

-X419324Y177479D01*

-X419345Y177596D01*

-X419347Y177714D01*

-X419330Y177830D01*

-X419296Y177943D01*

-X419244Y178050D01*

-X419177Y178146D01*

-X419095Y178231D01*

-X419000Y178302D01*

-X418895Y178356D01*

-X418492Y178515D01*

-X418075Y178632D01*

-X417648Y178711D01*

-X417217Y178750D01*

-X417002D01*

-Y199250D01*

-X417217D01*

-X417648Y199289D01*

-X418075Y199368D01*

-X418492Y199485D01*

-X418897Y199640D01*

-X419002Y199695D01*

-X419097Y199766D01*

-X419179Y199852D01*

-X419247Y199949D01*

-X419299Y200055D01*

-X419334Y200169D01*

-X419350Y200286D01*

-X419348Y200405D01*

-X419327Y200522D01*

-X419289Y200634D01*

-X419233Y200738D01*

-X419162Y200833D01*

-X419076Y200915D01*

-X418979Y200983D01*

-X418873Y201035D01*

-X418759Y201070D01*

-X418642Y201086D01*

-X418523Y201084D01*

-X418406Y201064D01*

-X418295Y201023D01*

-X418020Y200914D01*

-X417735Y200834D01*

-X417443Y200780D01*

-X417148Y200753D01*

-X417002D01*

-Y207247D01*

-X417148D01*

-X417443Y207220D01*

-X417735Y207166D01*

-X418020Y207086D01*

-X418297Y206980D01*

-X418407Y206940D01*

-X418524Y206919D01*

-X418642Y206917D01*

-X418759Y206933D01*

-X418871Y206968D01*

-X418978Y207020D01*

-X419074Y207087D01*

-X419159Y207169D01*

-X419230Y207263D01*

-X419286Y207368D01*

-X419324Y207479D01*

-X419345Y207596D01*

-X419347Y207714D01*

-X419330Y207830D01*

-X419296Y207943D01*

-X419244Y208050D01*

-X419177Y208146D01*

-X419095Y208231D01*

-X419000Y208302D01*

-X418895Y208356D01*

-X418492Y208515D01*

-X418075Y208632D01*

-X417648Y208711D01*

-X417217Y208750D01*

-X417002D01*

-Y229250D01*

-X417217D01*

-X417648Y229289D01*

-X418075Y229368D01*

-X418492Y229485D01*

-X418897Y229640D01*

-X419002Y229695D01*

-X419097Y229766D01*

-X419179Y229852D01*

-X419247Y229949D01*

-X419299Y230055D01*

-X419334Y230169D01*

-X419350Y230286D01*

-X419348Y230405D01*

-X419327Y230522D01*

-X419289Y230634D01*

-X419233Y230738D01*

-X419162Y230833D01*

-X419076Y230915D01*

-X418979Y230983D01*

-X418873Y231035D01*

-X418759Y231070D01*

-X418642Y231086D01*

-X418523Y231084D01*

-X418406Y231064D01*

-X418295Y231023D01*

-X418020Y230914D01*

-X417735Y230834D01*

-X417443Y230780D01*

-X417148Y230753D01*

-X417002D01*

-Y237247D01*

-X417148D01*

-X417443Y237220D01*

-X417735Y237166D01*

-X418020Y237086D01*

-X418297Y236980D01*

-X418407Y236940D01*

-X418524Y236919D01*

-X418642Y236917D01*

-X418759Y236933D01*

-X418871Y236968D01*

-X418978Y237020D01*

-X419074Y237087D01*

-X419159Y237169D01*

-X419230Y237263D01*

-X419286Y237368D01*

-X419324Y237479D01*

-X419345Y237596D01*

-X419347Y237714D01*

-X419330Y237830D01*

-X419296Y237943D01*

-X419244Y238050D01*

-X419177Y238146D01*

-X419095Y238231D01*

-X419000Y238302D01*

-X418895Y238356D01*

-X418492Y238515D01*

-X418075Y238632D01*

-X417648Y238711D01*

-X417217Y238750D01*

-X417002D01*

-Y259250D01*

-X417217D01*

-X417648Y259289D01*

-X418075Y259368D01*

-X418492Y259485D01*

-X418897Y259640D01*

-X419002Y259695D01*

-X419097Y259766D01*

-X419179Y259852D01*

-X419247Y259949D01*

-X419299Y260055D01*

-X419334Y260169D01*

-X419350Y260286D01*

-X419348Y260405D01*

-X419327Y260522D01*

-X419289Y260634D01*

-X419233Y260738D01*

-X419162Y260833D01*

-X419076Y260915D01*

-X418979Y260983D01*

-X418873Y261035D01*

-X418759Y261070D01*

-X418642Y261086D01*

-X418523Y261084D01*

-X418406Y261064D01*

-X418295Y261023D01*

-X418020Y260914D01*

-X417735Y260834D01*

-X417443Y260780D01*

-X417148Y260753D01*

-X417002D01*

-Y267247D01*

-X417148D01*

-X417443Y267220D01*

-X417735Y267166D01*

-X418020Y267086D01*

-X418297Y266980D01*

-X418407Y266940D01*

-X418524Y266919D01*

-X418642Y266917D01*

-X418759Y266933D01*

-X418871Y266968D01*

-X418978Y267020D01*

-X419074Y267087D01*

-X419159Y267169D01*

-X419230Y267263D01*

-X419286Y267368D01*

-X419324Y267479D01*

-X419345Y267596D01*

-X419347Y267714D01*

-X419330Y267830D01*

-X419296Y267943D01*

-X419244Y268050D01*

-X419177Y268146D01*

-X419095Y268231D01*

-X419000Y268302D01*

-X418895Y268356D01*

-X418492Y268515D01*

-X418075Y268632D01*

-X417648Y268711D01*

-X417217Y268750D01*

-X417002D01*

-Y289250D01*

-X417217D01*

-X417648Y289289D01*

-X418075Y289368D01*

-X418492Y289485D01*

-X418897Y289640D01*

-X419002Y289695D01*

-X419097Y289766D01*

-X419179Y289852D01*

-X419247Y289949D01*

-X419299Y290055D01*

-X419334Y290169D01*

-X419350Y290286D01*

-X419348Y290405D01*

-X419327Y290522D01*

-X419289Y290634D01*

-X419233Y290738D01*

-X419162Y290833D01*

-X419076Y290915D01*

-X418979Y290983D01*

-X418873Y291035D01*

-X418759Y291070D01*

-X418642Y291086D01*

-X418523Y291084D01*

-X418406Y291064D01*

-X418295Y291023D01*

-X418020Y290914D01*

-X417735Y290834D01*

-X417443Y290780D01*

-X417148Y290753D01*

-X417002D01*

-Y297247D01*

-X417148D01*

-X417443Y297220D01*

-X417735Y297166D01*

-X418020Y297086D01*

-X418297Y296980D01*

-X418407Y296940D01*

-X418524Y296919D01*

-X418642Y296917D01*

-X418759Y296933D01*

-X418871Y296968D01*

-X418978Y297020D01*

-X419074Y297087D01*

-X419159Y297169D01*

-X419230Y297263D01*

-X419286Y297368D01*

-X419324Y297479D01*

-X419345Y297596D01*

-X419347Y297714D01*

-X419330Y297830D01*

-X419296Y297943D01*

-X419244Y298050D01*

-X419177Y298146D01*

-X419095Y298231D01*

-X419000Y298302D01*

-X418895Y298356D01*

-X418492Y298515D01*

-X418075Y298632D01*

-X417648Y298711D01*

-X417217Y298750D01*

-X417002D01*

-Y319250D01*

-X417217D01*

-X417648Y319289D01*

-X418075Y319368D01*

-X418492Y319485D01*

-X418897Y319640D01*

-X419002Y319695D01*

-X419097Y319766D01*

-X419179Y319852D01*

-X419247Y319949D01*

-X419299Y320055D01*

-X419334Y320169D01*

-X419350Y320286D01*

-X419348Y320405D01*

-X419327Y320522D01*

-X419289Y320634D01*

-X419233Y320738D01*

-X419162Y320833D01*

-X419076Y320915D01*

-X418979Y320983D01*

-X418873Y321035D01*

-X418759Y321070D01*

-X418642Y321086D01*

-X418523Y321084D01*

-X418406Y321064D01*

-X418295Y321023D01*

-X418020Y320914D01*

-X417735Y320834D01*

-X417443Y320780D01*

-X417148Y320753D01*

-X417002D01*

-Y327247D01*

-X417148D01*

-X417443Y327220D01*

-X417735Y327166D01*

-X418020Y327086D01*

-X418297Y326980D01*

-X418407Y326940D01*

-X418524Y326919D01*

-X418642Y326917D01*

-X418759Y326933D01*

-X418871Y326968D01*

-X418978Y327020D01*

-X419074Y327087D01*

-X419159Y327169D01*

-X419230Y327263D01*

-X419286Y327368D01*

-X419324Y327479D01*

-X419345Y327596D01*

-X419347Y327714D01*

-X419330Y327830D01*

-X419296Y327943D01*

-X419244Y328050D01*

-X419177Y328146D01*

-X419095Y328231D01*

-X419000Y328302D01*

-X418895Y328356D01*

-X418492Y328515D01*

-X418075Y328632D01*

-X417648Y328711D01*

-X417217Y328750D01*

-X417002D01*

-Y349250D01*

-X417217D01*

-X417648Y349289D01*

-X418075Y349368D01*

-X418492Y349485D01*

-X418897Y349640D01*

-X419002Y349695D01*

-X419097Y349766D01*

-X419179Y349852D01*

-X419247Y349949D01*

-X419299Y350055D01*

-X419334Y350169D01*

-X419350Y350286D01*

-X419348Y350405D01*

-X419327Y350522D01*

-X419289Y350634D01*

-X419233Y350738D01*

-X419162Y350833D01*

-X419076Y350915D01*

-X418979Y350983D01*

-X418873Y351035D01*

-X418759Y351070D01*

-X418642Y351086D01*

-X418523Y351084D01*

-X418406Y351064D01*

-X418295Y351023D01*

-X418020Y350914D01*

-X417735Y350834D01*

-X417443Y350780D01*

-X417148Y350753D01*

-X417002D01*

-Y357247D01*

-X417148D01*

-X417443Y357220D01*

-X417735Y357166D01*

-X418020Y357086D01*

-X418297Y356980D01*

-X418407Y356940D01*

-X418524Y356919D01*

-X418642Y356917D01*

-X418759Y356933D01*

-X418871Y356968D01*

-X418978Y357020D01*

-X419074Y357087D01*

-X419159Y357169D01*

-X419230Y357263D01*

-X419286Y357368D01*

-X419324Y357479D01*

-X419345Y357596D01*

-X419347Y357714D01*

-X419330Y357830D01*

-X419296Y357943D01*

-X419244Y358050D01*

-X419177Y358146D01*

-X419095Y358231D01*

-X419000Y358302D01*

-X418895Y358356D01*

-X418492Y358515D01*

-X418075Y358632D01*

-X417648Y358711D01*

-X417217Y358750D01*

-X417002D01*

-Y379250D01*

-X417217D01*

-X417648Y379289D01*

-X418075Y379368D01*

-X418492Y379485D01*

-X418897Y379640D01*

-X419002Y379695D01*

-X419097Y379766D01*

-X419179Y379852D01*

-X419247Y379949D01*

-X419299Y380055D01*

-X419334Y380169D01*

-X419350Y380286D01*

-X419348Y380405D01*

-X419327Y380522D01*

-X419289Y380634D01*

-X419233Y380738D01*

-X419162Y380833D01*

-X419076Y380915D01*

-X418979Y380983D01*

-X418873Y381035D01*

-X418759Y381070D01*

-X418642Y381086D01*

-X418523Y381084D01*

-X418406Y381064D01*

-X418295Y381023D01*

-X418020Y380914D01*

-X417735Y380834D01*

-X417443Y380780D01*

-X417148Y380753D01*

-X417002D01*

-Y387247D01*

-X417148D01*

-X417443Y387220D01*

-X417735Y387166D01*

-X418020Y387086D01*

-X418297Y386980D01*

-X418407Y386940D01*

-X418524Y386919D01*

-X418642Y386917D01*

-X418759Y386933D01*

-X418871Y386968D01*

-X418978Y387020D01*

-X419074Y387087D01*

-X419159Y387169D01*

-X419230Y387263D01*

-X419286Y387368D01*

-X419324Y387479D01*

-X419345Y387596D01*

-X419347Y387714D01*

-X419330Y387830D01*

-X419296Y387943D01*

-X419244Y388050D01*

-X419177Y388146D01*

-X419095Y388231D01*

-X419000Y388302D01*

-X418895Y388356D01*

-X418492Y388515D01*

-X418075Y388632D01*

-X417648Y388711D01*

-X417217Y388750D01*

-X417002D01*

-Y397000D01*

-X420832D01*

-Y386334D01*

-X420831Y386334D01*

-X420714Y386350D01*

-X420595Y386348D01*

-X420478Y386327D01*

-X420366Y386289D01*

-X420262Y386233D01*

-X420167Y386162D01*

-X420085Y386076D01*

-X420017Y385979D01*

-X419965Y385873D01*

-X419930Y385759D01*

-X419914Y385642D01*

-X419916Y385523D01*

-X419936Y385407D01*

-X419977Y385295D01*

-X420086Y385020D01*

-X420166Y384735D01*

-X420220Y384443D01*

-X420247Y384148D01*

-Y383852D01*

-X420220Y383557D01*

-X420166Y383265D01*

-X420086Y382980D01*

-X419980Y382703D01*

-X419940Y382593D01*

-X419919Y382476D01*

-X419917Y382358D01*

-X419933Y382241D01*

-X419968Y382129D01*

-X420020Y382022D01*

-X420087Y381926D01*

-X420169Y381841D01*

-X420263Y381770D01*

-X420368Y381714D01*

-X420479Y381676D01*

-X420596Y381655D01*

-X420714Y381653D01*

-X420830Y381670D01*

-X420832Y381670D01*

-Y356334D01*

-X420831Y356334D01*

-X420714Y356350D01*

-X420595Y356348D01*

-X420478Y356327D01*

-X420366Y356289D01*

-X420262Y356233D01*

-X420167Y356162D01*

-X420085Y356076D01*

-X420017Y355979D01*

-X419965Y355873D01*

-X419930Y355759D01*

-X419914Y355642D01*

-X419916Y355523D01*

-X419936Y355407D01*

-X419977Y355295D01*

-X420086Y355020D01*

-X420166Y354735D01*

-X420220Y354443D01*

-X420247Y354148D01*

-Y353852D01*

-X420220Y353557D01*

-X420166Y353265D01*

-X420086Y352980D01*

-X419980Y352703D01*

-X419940Y352593D01*

-X419919Y352476D01*

-X419917Y352358D01*

-X419933Y352241D01*

-X419968Y352129D01*

-X420020Y352022D01*

-X420087Y351926D01*

-X420169Y351841D01*

-X420263Y351770D01*

-X420368Y351714D01*

-X420479Y351676D01*

-X420596Y351655D01*

-X420714Y351653D01*

-X420830Y351670D01*

-X420832Y351670D01*

-Y326334D01*

-X420831Y326334D01*

-X420714Y326350D01*

-X420595Y326348D01*

-X420478Y326327D01*

-X420366Y326289D01*

-X420262Y326233D01*

-X420167Y326162D01*

-X420085Y326076D01*

-X420017Y325979D01*

-X419965Y325873D01*

-X419930Y325759D01*

-X419914Y325642D01*

-X419916Y325523D01*

-X419936Y325407D01*

-X419977Y325295D01*

-X420086Y325020D01*

-X420166Y324735D01*

-X420220Y324443D01*

-X420247Y324148D01*

-Y323852D01*

-X420220Y323557D01*

-X420166Y323265D01*

-X420086Y322980D01*

-X419980Y322703D01*

-X419940Y322593D01*

-X419919Y322476D01*

-X419917Y322358D01*

-X419933Y322241D01*

-X419968Y322129D01*

-X420020Y322022D01*

-X420087Y321926D01*

-X420169Y321841D01*

-X420263Y321770D01*

-X420368Y321714D01*

-X420479Y321676D01*

-X420596Y321655D01*

-X420714Y321653D01*

-X420830Y321670D01*

-X420832Y321670D01*

-Y296334D01*

-X420831Y296334D01*

-X420714Y296350D01*

-X420595Y296348D01*

-X420478Y296327D01*

-X420366Y296289D01*

-X420262Y296233D01*

-X420167Y296162D01*

-X420085Y296076D01*

-X420017Y295979D01*

-X419965Y295873D01*

-X419930Y295759D01*

-X419914Y295642D01*

-X419916Y295523D01*

-X419936Y295407D01*

-X419977Y295295D01*

-X420086Y295020D01*

-X420166Y294735D01*

-X420220Y294443D01*

-X420247Y294148D01*

-Y293852D01*

-X420220Y293557D01*

-X420166Y293265D01*

-X420086Y292980D01*

-X419980Y292703D01*

-X419940Y292593D01*

-X419919Y292476D01*

-X419917Y292358D01*

-X419933Y292241D01*

-X419968Y292129D01*

-X420020Y292022D01*

-X420087Y291926D01*

-X420169Y291841D01*

-X420263Y291770D01*

-X420368Y291714D01*

-X420479Y291676D01*

-X420596Y291655D01*

-X420714Y291653D01*

-X420830Y291670D01*

-X420832Y291670D01*

-Y266334D01*

-X420831Y266334D01*

-X420714Y266350D01*

-X420595Y266348D01*

-X420478Y266327D01*

-X420366Y266289D01*

-X420262Y266233D01*

-X420167Y266162D01*

-X420085Y266076D01*

-X420017Y265979D01*

-X419965Y265873D01*

-X419930Y265759D01*

-X419914Y265642D01*

-X419916Y265523D01*

-X419936Y265407D01*

-X419977Y265295D01*

-X420086Y265020D01*

-X420166Y264735D01*

-X420220Y264443D01*

-X420247Y264148D01*

-Y263852D01*

-X420220Y263557D01*

-X420166Y263265D01*

-X420086Y262980D01*

-X419980Y262703D01*

-X419940Y262593D01*

-X419919Y262476D01*

-X419917Y262358D01*

-X419933Y262241D01*

-X419968Y262129D01*

-X420020Y262022D01*

-X420087Y261926D01*

-X420169Y261841D01*

-X420263Y261770D01*

-X420368Y261714D01*

-X420479Y261676D01*

-X420596Y261655D01*

-X420714Y261653D01*

-X420830Y261670D01*

-X420832Y261670D01*

-Y236334D01*

-X420831Y236334D01*

-X420714Y236350D01*

-X420595Y236348D01*

-X420478Y236327D01*

-X420366Y236289D01*

-X420262Y236233D01*

-X420167Y236162D01*

-X420085Y236076D01*

-X420017Y235979D01*

-X419965Y235873D01*

-X419930Y235759D01*

-X419914Y235642D01*

-X419916Y235523D01*

-X419936Y235407D01*

-X419977Y235295D01*

-X420086Y235020D01*

-X420166Y234735D01*

-X420220Y234443D01*

-X420247Y234148D01*

-Y233852D01*

-X420220Y233557D01*

-X420166Y233265D01*

-X420086Y232980D01*

-X419980Y232703D01*

-X419940Y232593D01*

-X419919Y232476D01*

-X419917Y232358D01*

-X419933Y232241D01*

-X419968Y232129D01*

-X420020Y232022D01*

-X420087Y231926D01*

-X420169Y231841D01*

-X420263Y231770D01*

-X420368Y231714D01*

-X420479Y231676D01*

-X420596Y231655D01*

-X420714Y231653D01*

-X420830Y231670D01*

-X420832Y231670D01*

-Y206334D01*

-X420831Y206334D01*

-X420714Y206350D01*

-X420595Y206348D01*

-X420478Y206327D01*

-X420366Y206289D01*

-X420262Y206233D01*

-X420167Y206162D01*

-X420085Y206076D01*

-X420017Y205979D01*

-X419965Y205873D01*

-X419930Y205759D01*

-X419914Y205642D01*

-X419916Y205523D01*

-X419936Y205407D01*

-X419977Y205295D01*

-X420086Y205020D01*

-X420166Y204735D01*

-X420220Y204443D01*

-X420247Y204148D01*

-Y203852D01*

-X420220Y203557D01*

-X420166Y203265D01*

-X420086Y202980D01*

-X419980Y202703D01*

-X419940Y202593D01*

-X419919Y202476D01*

-X419917Y202358D01*

-X419933Y202241D01*

-X419968Y202129D01*

-X420020Y202022D01*

-X420087Y201926D01*

-X420169Y201841D01*

-X420263Y201770D01*

-X420368Y201714D01*

-X420479Y201676D01*

-X420596Y201655D01*

-X420714Y201653D01*

-X420830Y201670D01*

-X420832Y201670D01*

-Y176334D01*

-X420831Y176334D01*

-X420714Y176350D01*

-X420595Y176348D01*

-X420478Y176327D01*

-X420366Y176289D01*

-X420262Y176233D01*

-X420167Y176162D01*

-X420085Y176076D01*

-X420017Y175979D01*

-X419965Y175873D01*

-X419930Y175759D01*

-X419914Y175642D01*

-X419916Y175523D01*

-X419936Y175407D01*

-X419977Y175295D01*

-X420086Y175020D01*

-X420166Y174735D01*

-X420220Y174443D01*

-X420247Y174148D01*

-Y173852D01*

-X420220Y173557D01*

-X420166Y173265D01*

-X420086Y172980D01*

-X419980Y172703D01*

-X419940Y172593D01*

-X419919Y172476D01*

-X419917Y172358D01*

-X419933Y172241D01*

-X419968Y172129D01*

-X420020Y172022D01*

-X420087Y171926D01*

-X420169Y171841D01*

-X420263Y171770D01*

-X420368Y171714D01*

-X420479Y171676D01*

-X420596Y171655D01*

-X420714Y171653D01*

-X420830Y171670D01*

-X420832Y171670D01*

-Y154000D01*

-G37*

-G36*

-X417002D02*X413168D01*

-Y171666D01*

-X413169Y171666D01*

-X413286Y171650D01*

-X413405Y171652D01*

-X413522Y171673D01*

-X413634Y171711D01*

-X413738Y171767D01*

-X413833Y171838D01*

-X413915Y171924D01*

-X413983Y172021D01*

-X414035Y172127D01*

-X414070Y172241D01*

-X414086Y172358D01*

-X414084Y172477D01*

-X414064Y172594D01*

-X414023Y172705D01*

-X413914Y172980D01*

-X413834Y173265D01*

-X413780Y173557D01*

-X413753Y173852D01*

-Y174148D01*

-X413780Y174443D01*

-X413834Y174735D01*

-X413914Y175020D01*

-X414020Y175297D01*

-X414060Y175407D01*

-X414081Y175524D01*

-X414083Y175642D01*

-X414067Y175759D01*

-X414032Y175871D01*

-X413980Y175978D01*

-X413913Y176074D01*

-X413831Y176159D01*

-X413737Y176230D01*

-X413632Y176286D01*

-X413521Y176324D01*

-X413404Y176345D01*

-X413286Y176347D01*

-X413170Y176330D01*

-X413168Y176330D01*

-Y201666D01*

-X413169Y201666D01*

-X413286Y201650D01*

-X413405Y201652D01*

-X413522Y201673D01*

-X413634Y201711D01*

-X413738Y201767D01*

-X413833Y201838D01*

-X413915Y201924D01*

-X413983Y202021D01*

-X414035Y202127D01*

-X414070Y202241D01*

-X414086Y202358D01*

-X414084Y202477D01*

-X414064Y202594D01*

-X414023Y202705D01*

-X413914Y202980D01*

-X413834Y203265D01*

-X413780Y203557D01*

-X413753Y203852D01*

-Y204148D01*

-X413780Y204443D01*

-X413834Y204735D01*

-X413914Y205020D01*

-X414020Y205297D01*

-X414060Y205407D01*

-X414081Y205524D01*

-X414083Y205642D01*

-X414067Y205759D01*

-X414032Y205871D01*

-X413980Y205978D01*

-X413913Y206074D01*

-X413831Y206159D01*

-X413737Y206230D01*

-X413632Y206286D01*

-X413521Y206324D01*

-X413404Y206345D01*

-X413286Y206347D01*

-X413170Y206330D01*

-X413168Y206330D01*

-Y231666D01*

-X413169Y231666D01*

-X413286Y231650D01*

-X413405Y231652D01*

-X413522Y231673D01*

-X413634Y231711D01*

-X413738Y231767D01*

-X413833Y231838D01*

-X413915Y231924D01*

-X413983Y232021D01*

-X414035Y232127D01*

-X414070Y232241D01*

-X414086Y232358D01*

-X414084Y232477D01*

-X414064Y232594D01*

-X414023Y232705D01*

-X413914Y232980D01*

-X413834Y233265D01*

-X413780Y233557D01*

-X413753Y233852D01*

-Y234148D01*

-X413780Y234443D01*

-X413834Y234735D01*

-X413914Y235020D01*

-X414020Y235297D01*

-X414060Y235407D01*

-X414081Y235524D01*

-X414083Y235642D01*

-X414067Y235759D01*

-X414032Y235871D01*

-X413980Y235978D01*

-X413913Y236074D01*

-X413831Y236159D01*

-X413737Y236230D01*

-X413632Y236286D01*

-X413521Y236324D01*

-X413404Y236345D01*

-X413286Y236347D01*

-X413170Y236330D01*

-X413168Y236330D01*

-Y261666D01*

-X413169Y261666D01*

-X413286Y261650D01*

-X413405Y261652D01*

-X413522Y261673D01*

-X413634Y261711D01*

-X413738Y261767D01*

-X413833Y261838D01*

-X413915Y261924D01*

-X413983Y262021D01*

-X414035Y262127D01*

-X414070Y262241D01*

-X414086Y262358D01*

-X414084Y262477D01*

-X414064Y262594D01*

-X414023Y262705D01*

-X413914Y262980D01*

-X413834Y263265D01*

-X413780Y263557D01*

-X413753Y263852D01*

-Y264148D01*

-X413780Y264443D01*

-X413834Y264735D01*

-X413914Y265020D01*

-X414020Y265297D01*

-X414060Y265407D01*

-X414081Y265524D01*

-X414083Y265642D01*

-X414067Y265759D01*

-X414032Y265871D01*

-X413980Y265978D01*

-X413913Y266074D01*

-X413831Y266159D01*

-X413737Y266230D01*

-X413632Y266286D01*

-X413521Y266324D01*

-X413404Y266345D01*

-X413286Y266347D01*

-X413170Y266330D01*

-X413168Y266330D01*

-Y291666D01*

-X413169Y291666D01*

-X413286Y291650D01*

-X413405Y291652D01*

-X413522Y291673D01*

-X413634Y291711D01*

-X413738Y291767D01*

-X413833Y291838D01*

-X413915Y291924D01*

-X413983Y292021D01*

-X414035Y292127D01*

-X414070Y292241D01*

-X414086Y292358D01*

-X414084Y292477D01*

-X414064Y292594D01*

-X414023Y292705D01*

-X413914Y292980D01*

-X413834Y293265D01*

-X413780Y293557D01*

-X413753Y293852D01*

-Y294148D01*

-X413780Y294443D01*

-X413834Y294735D01*

-X413914Y295020D01*

-X414020Y295297D01*

-X414060Y295407D01*

-X414081Y295524D01*

-X414083Y295642D01*

-X414067Y295759D01*

-X414032Y295871D01*

-X413980Y295978D01*

-X413913Y296074D01*

-X413831Y296159D01*

-X413737Y296230D01*

-X413632Y296286D01*

-X413521Y296324D01*

-X413404Y296345D01*

-X413286Y296347D01*

-X413170Y296330D01*

-X413168Y296330D01*

-Y321666D01*

-X413169Y321666D01*

-X413286Y321650D01*

-X413405Y321652D01*

-X413522Y321673D01*

-X413634Y321711D01*

-X413738Y321767D01*

-X413833Y321838D01*

-X413915Y321924D01*

-X413983Y322021D01*

-X414035Y322127D01*

-X414070Y322241D01*

-X414086Y322358D01*

-X414084Y322477D01*

-X414064Y322594D01*

-X414023Y322705D01*

-X413914Y322980D01*

-X413834Y323265D01*

-X413780Y323557D01*

-X413753Y323852D01*

-Y324148D01*

-X413780Y324443D01*

-X413834Y324735D01*

-X413914Y325020D01*

-X414020Y325297D01*

-X414060Y325407D01*

-X414081Y325524D01*

-X414083Y325642D01*

-X414067Y325759D01*

-X414032Y325871D01*

-X413980Y325978D01*

-X413913Y326074D01*

-X413831Y326159D01*

-X413737Y326230D01*

-X413632Y326286D01*

-X413521Y326324D01*

-X413404Y326345D01*

-X413286Y326347D01*

-X413170Y326330D01*

-X413168Y326330D01*

-Y351666D01*

-X413169Y351666D01*

-X413286Y351650D01*

-X413405Y351652D01*

-X413522Y351673D01*

-X413634Y351711D01*

-X413738Y351767D01*

-X413833Y351838D01*

-X413915Y351924D01*

-X413983Y352021D01*

-X414035Y352127D01*

-X414070Y352241D01*

-X414086Y352358D01*

-X414084Y352477D01*

-X414064Y352594D01*

-X414023Y352705D01*

-X413914Y352980D01*

-X413834Y353265D01*

-X413780Y353557D01*

-X413753Y353852D01*

-Y354148D01*

-X413780Y354443D01*

-X413834Y354735D01*

-X413914Y355020D01*

-X414020Y355297D01*

-X414060Y355407D01*

-X414081Y355524D01*

-X414083Y355642D01*

-X414067Y355759D01*

-X414032Y355871D01*

-X413980Y355978D01*

-X413913Y356074D01*

-X413831Y356159D01*

-X413737Y356230D01*

-X413632Y356286D01*

-X413521Y356324D01*

-X413404Y356345D01*

-X413286Y356347D01*

-X413170Y356330D01*

-X413168Y356330D01*

-Y381666D01*

-X413169Y381666D01*

-X413286Y381650D01*

-X413405Y381652D01*

-X413522Y381673D01*

-X413634Y381711D01*

-X413738Y381767D01*

-X413833Y381838D01*

-X413915Y381924D01*

-X413983Y382021D01*

-X414035Y382127D01*

-X414070Y382241D01*

-X414086Y382358D01*

-X414084Y382477D01*

-X414064Y382594D01*

-X414023Y382705D01*

-X413914Y382980D01*

-X413834Y383265D01*

-X413780Y383557D01*

-X413753Y383852D01*

-Y384148D01*

-X413780Y384443D01*

-X413834Y384735D01*

-X413914Y385020D01*

-X414020Y385297D01*

-X414060Y385407D01*

-X414081Y385524D01*

-X414083Y385642D01*

-X414067Y385759D01*

-X414032Y385871D01*

-X413980Y385978D01*

-X413913Y386074D01*

-X413831Y386159D01*

-X413737Y386230D01*

-X413632Y386286D01*

-X413521Y386324D01*

-X413404Y386345D01*

-X413286Y386347D01*

-X413170Y386330D01*

-X413168Y386330D01*

-Y397000D01*

-X417002D01*

-Y388750D01*

-X416783D01*

-X416352Y388711D01*

-X415925Y388632D01*

-X415508Y388515D01*

-X415103Y388360D01*

-X414998Y388305D01*

-X414903Y388234D01*

-X414821Y388148D01*

-X414753Y388051D01*

-X414701Y387945D01*

-X414666Y387831D01*

-X414650Y387714D01*

-X414652Y387595D01*

-X414673Y387478D01*

-X414711Y387366D01*

-X414767Y387262D01*

-X414838Y387167D01*

-X414924Y387085D01*

-X415021Y387017D01*

-X415127Y386965D01*

-X415241Y386930D01*

-X415358Y386914D01*

-X415477Y386916D01*

-X415593Y386936D01*

-X415705Y386977D01*

-X415980Y387086D01*

-X416265Y387166D01*

-X416557Y387220D01*

-X416852Y387247D01*

-X417002D01*

-Y380753D01*

-X416852D01*

-X416557Y380780D01*

-X416265Y380834D01*

-X415980Y380914D01*

-X415703Y381020D01*

-X415593Y381060D01*

-X415476Y381081D01*

-X415358Y381083D01*

-X415241Y381067D01*

-X415129Y381032D01*

-X415022Y380980D01*

-X414926Y380913D01*

-X414841Y380831D01*

-X414770Y380737D01*

-X414714Y380632D01*

-X414676Y380521D01*

-X414655Y380404D01*

-X414653Y380286D01*

-X414670Y380170D01*

-X414704Y380057D01*

-X414756Y379950D01*

-X414823Y379854D01*

-X414905Y379769D01*

-X415000Y379698D01*

-X415105Y379644D01*

-X415508Y379485D01*

-X415925Y379368D01*

-X416352Y379289D01*

-X416783Y379250D01*

-X417002D01*

-Y358750D01*

-X416783D01*

-X416352Y358711D01*

-X415925Y358632D01*

-X415508Y358515D01*

-X415103Y358360D01*

-X414998Y358305D01*

-X414903Y358234D01*

-X414821Y358148D01*

-X414753Y358051D01*

-X414701Y357945D01*

-X414666Y357831D01*

-X414650Y357714D01*

-X414652Y357595D01*

-X414673Y357478D01*

-X414711Y357366D01*

-X414767Y357262D01*

-X414838Y357167D01*

-X414924Y357085D01*

-X415021Y357017D01*

-X415127Y356965D01*

-X415241Y356930D01*

-X415358Y356914D01*

-X415477Y356916D01*

-X415593Y356936D01*

-X415705Y356977D01*

-X415980Y357086D01*

-X416265Y357166D01*

-X416557Y357220D01*

-X416852Y357247D01*

-X417002D01*

-Y350753D01*

-X416852D01*

-X416557Y350780D01*

-X416265Y350834D01*

-X415980Y350914D01*

-X415703Y351020D01*

-X415593Y351060D01*

-X415476Y351081D01*

-X415358Y351083D01*

-X415241Y351067D01*

-X415129Y351032D01*

-X415022Y350980D01*

-X414926Y350913D01*

-X414841Y350831D01*

-X414770Y350737D01*

-X414714Y350632D01*

-X414676Y350521D01*

-X414655Y350404D01*

-X414653Y350286D01*

-X414670Y350170D01*

-X414704Y350057D01*

-X414756Y349950D01*

-X414823Y349854D01*

-X414905Y349769D01*

-X415000Y349698D01*

-X415105Y349644D01*

-X415508Y349485D01*

-X415925Y349368D01*

-X416352Y349289D01*

-X416783Y349250D01*

-X417002D01*

-Y328750D01*

-X416783D01*

-X416352Y328711D01*

-X415925Y328632D01*

-X415508Y328515D01*

-X415103Y328360D01*

-X414998Y328305D01*

-X414903Y328234D01*

-X414821Y328148D01*

-X414753Y328051D01*

-X414701Y327945D01*

-X414666Y327831D01*

-X414650Y327714D01*

-X414652Y327595D01*

-X414673Y327478D01*

-X414711Y327366D01*

-X414767Y327262D01*

-X414838Y327167D01*

-X414924Y327085D01*

-X415021Y327017D01*

-X415127Y326965D01*

-X415241Y326930D01*

-X415358Y326914D01*

-X415477Y326916D01*

-X415593Y326936D01*

-X415705Y326977D01*

-X415980Y327086D01*

-X416265Y327166D01*

-X416557Y327220D01*

-X416852Y327247D01*

-X417002D01*

-Y320753D01*

-X416852D01*

-X416557Y320780D01*

-X416265Y320834D01*

-X415980Y320914D01*

-X415703Y321020D01*

-X415593Y321060D01*

-X415476Y321081D01*

-X415358Y321083D01*

-X415241Y321067D01*

-X415129Y321032D01*

-X415022Y320980D01*

-X414926Y320913D01*

-X414841Y320831D01*

-X414770Y320737D01*

-X414714Y320632D01*

-X414676Y320521D01*

-X414655Y320404D01*

-X414653Y320286D01*

-X414670Y320170D01*

-X414704Y320057D01*

-X414756Y319950D01*

-X414823Y319854D01*

-X414905Y319769D01*

-X415000Y319698D01*

-X415105Y319644D01*

-X415508Y319485D01*

-X415925Y319368D01*

-X416352Y319289D01*

-X416783Y319250D01*

-X417002D01*

-Y298750D01*

-X416783D01*

-X416352Y298711D01*

-X415925Y298632D01*

-X415508Y298515D01*

-X415103Y298360D01*

-X414998Y298305D01*

-X414903Y298234D01*

-X414821Y298148D01*

-X414753Y298051D01*

-X414701Y297945D01*

-X414666Y297831D01*

-X414650Y297714D01*

-X414652Y297595D01*

-X414673Y297478D01*

-X414711Y297366D01*

-X414767Y297262D01*

-X414838Y297167D01*

-X414924Y297085D01*

-X415021Y297017D01*

-X415127Y296965D01*

-X415241Y296930D01*

-X415358Y296914D01*

-X415477Y296916D01*

-X415593Y296936D01*

-X415705Y296977D01*

-X415980Y297086D01*

-X416265Y297166D01*

-X416557Y297220D01*

-X416852Y297247D01*

-X417002D01*

-Y290753D01*

-X416852D01*

-X416557Y290780D01*

-X416265Y290834D01*

-X415980Y290914D01*

-X415703Y291020D01*

-X415593Y291060D01*

-X415476Y291081D01*

-X415358Y291083D01*

-X415241Y291067D01*

-X415129Y291032D01*

-X415022Y290980D01*

-X414926Y290913D01*

-X414841Y290831D01*

-X414770Y290737D01*

-X414714Y290632D01*

-X414676Y290521D01*

-X414655Y290404D01*

-X414653Y290286D01*

-X414670Y290170D01*

-X414704Y290057D01*

-X414756Y289950D01*

-X414823Y289854D01*

-X414905Y289769D01*

-X415000Y289698D01*

-X415105Y289644D01*

-X415508Y289485D01*

-X415925Y289368D01*

-X416352Y289289D01*

-X416783Y289250D01*

-X417002D01*

-Y268750D01*

-X416783D01*

-X416352Y268711D01*

-X415925Y268632D01*

-X415508Y268515D01*

-X415103Y268360D01*

-X414998Y268305D01*

-X414903Y268234D01*

-X414821Y268148D01*

-X414753Y268051D01*

-X414701Y267945D01*

-X414666Y267831D01*

-X414650Y267714D01*

-X414652Y267595D01*

-X414673Y267478D01*

-X414711Y267366D01*

-X414767Y267262D01*

-X414838Y267167D01*

-X414924Y267085D01*

-X415021Y267017D01*

-X415127Y266965D01*

-X415241Y266930D01*

-X415358Y266914D01*

-X415477Y266916D01*

-X415593Y266936D01*

-X415705Y266977D01*

-X415980Y267086D01*

-X416265Y267166D01*

-X416557Y267220D01*

-X416852Y267247D01*

-X417002D01*

-Y260753D01*

-X416852D01*

-X416557Y260780D01*

-X416265Y260834D01*

-X415980Y260914D01*

-X415703Y261020D01*

-X415593Y261060D01*

-X415476Y261081D01*

-X415358Y261083D01*

-X415241Y261067D01*

-X415129Y261032D01*

-X415022Y260980D01*

-X414926Y260913D01*

-X414841Y260831D01*

-X414770Y260737D01*

-X414714Y260632D01*

-X414676Y260521D01*

-X414655Y260404D01*

-X414653Y260286D01*

-X414670Y260170D01*

-X414704Y260057D01*

-X414756Y259950D01*

-X414823Y259854D01*

-X414905Y259769D01*

-X415000Y259698D01*

-X415105Y259644D01*

-X415508Y259485D01*

-X415925Y259368D01*

-X416352Y259289D01*

-X416783Y259250D01*

-X417002D01*

-Y238750D01*

-X416783D01*

-X416352Y238711D01*

-X415925Y238632D01*

-X415508Y238515D01*

-X415103Y238360D01*

-X414998Y238305D01*

-X414903Y238234D01*

-X414821Y238148D01*

-X414753Y238051D01*

-X414701Y237945D01*

-X414666Y237831D01*

-X414650Y237714D01*

-X414652Y237595D01*

-X414673Y237478D01*

-X414711Y237366D01*

-X414767Y237262D01*

-X414838Y237167D01*

-X414924Y237085D01*

-X415021Y237017D01*

-X415127Y236965D01*

-X415241Y236930D01*

-X415358Y236914D01*

-X415477Y236916D01*

-X415593Y236936D01*

-X415705Y236977D01*

-X415980Y237086D01*

-X416265Y237166D01*

-X416557Y237220D01*

-X416852Y237247D01*

-X417002D01*

-Y230753D01*

-X416852D01*

-X416557Y230780D01*

-X416265Y230834D01*

-X415980Y230914D01*

-X415703Y231020D01*

-X415593Y231060D01*

-X415476Y231081D01*

-X415358Y231083D01*

-X415241Y231067D01*

-X415129Y231032D01*

-X415022Y230980D01*

-X414926Y230913D01*

-X414841Y230831D01*

-X414770Y230737D01*

-X414714Y230632D01*

-X414676Y230521D01*

-X414655Y230404D01*

-X414653Y230286D01*

-X414670Y230170D01*

-X414704Y230057D01*

-X414756Y229950D01*

-X414823Y229854D01*

-X414905Y229769D01*

-X415000Y229698D01*

-X415105Y229644D01*

-X415508Y229485D01*

-X415925Y229368D01*

-X416352Y229289D01*

-X416783Y229250D01*

-X417002D01*

-Y208750D01*

-X416783D01*

-X416352Y208711D01*

-X415925Y208632D01*

-X415508Y208515D01*

-X415103Y208360D01*

-X414998Y208305D01*

-X414903Y208234D01*

-X414821Y208148D01*

-X414753Y208051D01*

-X414701Y207945D01*

-X414666Y207831D01*

-X414650Y207714D01*

-X414652Y207595D01*

-X414673Y207478D01*

-X414711Y207366D01*

-X414767Y207262D01*

-X414838Y207167D01*

-X414924Y207085D01*

-X415021Y207017D01*

-X415127Y206965D01*

-X415241Y206930D01*

-X415358Y206914D01*

-X415477Y206916D01*

-X415593Y206936D01*

-X415705Y206977D01*

-X415980Y207086D01*

-X416265Y207166D01*

-X416557Y207220D01*

-X416852Y207247D01*

-X417002D01*

-Y200753D01*

-X416852D01*

-X416557Y200780D01*

-X416265Y200834D01*

-X415980Y200914D01*

-X415703Y201020D01*

-X415593Y201060D01*

-X415476Y201081D01*

-X415358Y201083D01*

-X415241Y201067D01*

-X415129Y201032D01*

-X415022Y200980D01*

-X414926Y200913D01*

-X414841Y200831D01*

-X414770Y200737D01*

-X414714Y200632D01*

-X414676Y200521D01*

-X414655Y200404D01*

-X414653Y200286D01*

-X414670Y200170D01*

-X414704Y200057D01*

-X414756Y199950D01*

-X414823Y199854D01*

-X414905Y199769D01*

-X415000Y199698D01*

-X415105Y199644D01*

-X415508Y199485D01*

-X415925Y199368D01*

-X416352Y199289D01*

-X416783Y199250D01*

-X417002D01*

-Y178750D01*

-X416783D01*

-X416352Y178711D01*

-X415925Y178632D01*

-X415508Y178515D01*

-X415103Y178360D01*

-X414998Y178305D01*

-X414903Y178234D01*

-X414821Y178148D01*

-X414753Y178051D01*

-X414701Y177945D01*

-X414666Y177831D01*

-X414650Y177714D01*

-X414652Y177595D01*

-X414673Y177478D01*

-X414711Y177366D01*

-X414767Y177262D01*

-X414838Y177167D01*

-X414924Y177085D01*

-X415021Y177017D01*

-X415127Y176965D01*

-X415241Y176930D01*

-X415358Y176914D01*

-X415477Y176916D01*

-X415593Y176936D01*

-X415705Y176977D01*

-X415980Y177086D01*

-X416265Y177166D01*

-X416557Y177220D01*

-X416852Y177247D01*

-X417002D01*

-Y170753D01*

-X416852D01*

-X416557Y170780D01*

-X416265Y170834D01*

-X415980Y170914D01*

-X415703Y171020D01*

-X415593Y171060D01*

-X415476Y171081D01*

-X415358Y171083D01*

-X415241Y171067D01*

-X415129Y171032D01*

-X415022Y170980D01*

-X414926Y170913D01*

-X414841Y170831D01*

-X414770Y170737D01*

-X414714Y170632D01*

-X414676Y170521D01*

-X414655Y170404D01*

-X414653Y170286D01*

-X414670Y170170D01*

-X414704Y170057D01*

-X414756Y169950D01*

-X414823Y169854D01*

-X414905Y169769D01*

-X415000Y169698D01*

-X415105Y169644D01*

-X415508Y169485D01*

-X415925Y169368D01*

-X416352Y169289D01*

-X416783Y169250D01*

-X417002D01*

-Y154000D01*

-G37*

-G36*

-X413168D02*X406441D01*

-X406504Y169256D01*

-X410485Y169264D01*

-X410715Y169319D01*

-X410933Y169409D01*

-X411134Y169533D01*

-X411314Y169686D01*

-X411467Y169866D01*

-X411591Y170067D01*

-X411681Y170285D01*

-X411736Y170515D01*

-X411750Y170750D01*

-X411736Y177485D01*

-X411681Y177715D01*

-X411591Y177933D01*

-X411467Y178134D01*

-X411314Y178314D01*

-X411134Y178467D01*

-X410933Y178591D01*

-X410715Y178681D01*

-X410485Y178736D01*

-X410250Y178750D01*

-X406543Y178742D01*

-X406627Y199256D01*

-X410485Y199264D01*

-X410715Y199319D01*

-X410933Y199409D01*

-X411134Y199533D01*

-X411314Y199686D01*

-X411467Y199866D01*

-X411591Y200067D01*

-X411681Y200285D01*

-X411736Y200515D01*

-X411750Y200750D01*

-X411736Y207485D01*

-X411681Y207715D01*

-X411591Y207933D01*

-X411467Y208134D01*

-X411314Y208314D01*

-X411134Y208467D01*

-X410933Y208591D01*

-X410715Y208681D01*

-X410485Y208736D01*

-X410250Y208750D01*

-X406666Y208743D01*

-X406751Y229256D01*

-X410485Y229264D01*

-X410715Y229319D01*

-X410933Y229409D01*

-X411134Y229533D01*

-X411314Y229686D01*

-X411467Y229866D01*

-X411591Y230067D01*

-X411681Y230285D01*

-X411736Y230515D01*

-X411750Y230750D01*

-X411736Y237485D01*

-X411681Y237715D01*

-X411591Y237933D01*

-X411467Y238134D01*

-X411314Y238314D01*

-X411134Y238467D01*

-X410933Y238591D01*

-X410715Y238681D01*

-X410485Y238736D01*

-X410250Y238750D01*

-X406790Y238743D01*

-X406874Y259256D01*

-X410485Y259264D01*

-X410715Y259319D01*

-X410933Y259409D01*

-X411134Y259533D01*

-X411314Y259686D01*

-X411467Y259866D01*

-X411591Y260067D01*

-X411681Y260285D01*

-X411736Y260515D01*

-X411750Y260750D01*

-X411736Y267485D01*

-X411681Y267715D01*

-X411591Y267933D01*

-X411467Y268134D01*

-X411314Y268314D01*

-X411134Y268467D01*

-X410933Y268591D01*

-X410715Y268681D01*

-X410485Y268736D01*

-X410250Y268750D01*

-X406913Y268743D01*

-X406998Y289257D01*

-X410485Y289264D01*

-X410715Y289319D01*

-X410933Y289409D01*

-X411134Y289533D01*

-X411314Y289686D01*

-X411467Y289866D01*

-X411591Y290067D01*

-X411681Y290285D01*

-X411736Y290515D01*

-X411750Y290750D01*

-X411736Y297485D01*

-X411681Y297715D01*

-X411591Y297933D01*

-X411467Y298134D01*

-X411314Y298314D01*

-X411134Y298467D01*

-X410933Y298591D01*

-X410715Y298681D01*

-X410485Y298736D01*

-X410250Y298750D01*

-X407037Y298743D01*

-X407121Y319257D01*

-X410485Y319264D01*

-X410715Y319319D01*

-X410933Y319409D01*

-X411134Y319533D01*

-X411314Y319686D01*

-X411467Y319866D01*

-X411591Y320067D01*

-X411681Y320285D01*

-X411736Y320515D01*

-X411750Y320750D01*

-X411736Y327485D01*

-X411681Y327715D01*

-X411591Y327933D01*

-X411467Y328134D01*

-X411314Y328314D01*

-X411134Y328467D01*

-X410933Y328591D01*

-X410715Y328681D01*

-X410485Y328736D01*

-X410250Y328750D01*

-X407160Y328744D01*

-X407245Y349257D01*

-X410485Y349264D01*

-X410715Y349319D01*

-X410933Y349409D01*

-X411134Y349533D01*

-X411314Y349686D01*

-X411467Y349866D01*

-X411591Y350067D01*

-X411681Y350285D01*

-X411736Y350515D01*

-X411750Y350750D01*

-X411736Y357485D01*

-X411681Y357715D01*

-X411591Y357933D01*

-X411467Y358134D01*

-X411314Y358314D01*

-X411134Y358467D01*

-X410933Y358591D01*

-X410715Y358681D01*

-X410485Y358736D01*

-X410250Y358750D01*

-X407284Y358744D01*

-X407368Y379257D01*

-X410485Y379264D01*

-X410715Y379319D01*

-X410933Y379409D01*

-X411134Y379533D01*

-X411314Y379686D01*

-X411467Y379866D01*

-X411591Y380067D01*

-X411681Y380285D01*

-X411736Y380515D01*

-X411750Y380750D01*

-X411736Y387485D01*

-X411681Y387715D01*

-X411591Y387933D01*

-X411467Y388134D01*

-X411314Y388314D01*

-X411134Y388467D01*

-X410933Y388591D01*

-X410715Y388681D01*

-X410485Y388736D01*

-X410250Y388750D01*

-X407407Y388744D01*

-X407441Y397000D01*

-X413168D01*

-Y386330D01*

-X413057Y386296D01*

-X412950Y386244D01*

-X412854Y386177D01*

-X412769Y386095D01*

-X412698Y386000D01*

-X412644Y385895D01*

-X412485Y385492D01*

-X412368Y385075D01*

-X412289Y384648D01*

-X412250Y384217D01*

-Y383783D01*

-X412289Y383352D01*

-X412368Y382925D01*

-X412485Y382508D01*

-X412640Y382103D01*

-X412695Y381998D01*

-X412766Y381903D01*

-X412852Y381821D01*

-X412949Y381753D01*

-X413055Y381701D01*

-X413168Y381666D01*

-Y356330D01*

-X413057Y356296D01*

-X412950Y356244D01*

-X412854Y356177D01*

-X412769Y356095D01*

-X412698Y356000D01*

-X412644Y355895D01*

-X412485Y355492D01*

-X412368Y355075D01*

-X412289Y354648D01*

-X412250Y354217D01*

-Y353783D01*

-X412289Y353352D01*

-X412368Y352925D01*

-X412485Y352508D01*

-X412640Y352103D01*

-X412695Y351998D01*

-X412766Y351903D01*

-X412852Y351821D01*

-X412949Y351753D01*

-X413055Y351701D01*

-X413168Y351666D01*

-Y326330D01*

-X413057Y326296D01*

-X412950Y326244D01*

-X412854Y326177D01*

-X412769Y326095D01*

-X412698Y326000D01*

-X412644Y325895D01*

-X412485Y325492D01*

-X412368Y325075D01*

-X412289Y324648D01*

-X412250Y324217D01*

-Y323783D01*

-X412289Y323352D01*

-X412368Y322925D01*

-X412485Y322508D01*

-X412640Y322103D01*

-X412695Y321998D01*

-X412766Y321903D01*

-X412852Y321821D01*

-X412949Y321753D01*

-X413055Y321701D01*

-X413168Y321666D01*

-Y296330D01*

-X413057Y296296D01*

-X412950Y296244D01*

-X412854Y296177D01*

-X412769Y296095D01*

-X412698Y296000D01*

-X412644Y295895D01*

-X412485Y295492D01*

-X412368Y295075D01*

-X412289Y294648D01*

-X412250Y294217D01*

-Y293783D01*

-X412289Y293352D01*

-X412368Y292925D01*

-X412485Y292508D01*

-X412640Y292103D01*

-X412695Y291998D01*

-X412766Y291903D01*

-X412852Y291821D01*

-X412949Y291753D01*

-X413055Y291701D01*

-X413168Y291666D01*

-Y266330D01*

-X413057Y266296D01*

-X412950Y266244D01*

-X412854Y266177D01*

-X412769Y266095D01*

-X412698Y266000D01*

-X412644Y265895D01*

-X412485Y265492D01*

-X412368Y265075D01*

-X412289Y264648D01*

-X412250Y264217D01*

-Y263783D01*

-X412289Y263352D01*

-X412368Y262925D01*

-X412485Y262508D01*

-X412640Y262103D01*

-X412695Y261998D01*

-X412766Y261903D01*

-X412852Y261821D01*

-X412949Y261753D01*

-X413055Y261701D01*

-X413168Y261666D01*

-Y236330D01*

-X413057Y236296D01*

-X412950Y236244D01*

-X412854Y236177D01*

-X412769Y236095D01*

-X412698Y236000D01*

-X412644Y235895D01*

-X412485Y235492D01*

-X412368Y235075D01*

-X412289Y234648D01*

-X412250Y234217D01*

-Y233783D01*

-X412289Y233352D01*

-X412368Y232925D01*

-X412485Y232508D01*

-X412640Y232103D01*

-X412695Y231998D01*

-X412766Y231903D01*

-X412852Y231821D01*

-X412949Y231753D01*

-X413055Y231701D01*

-X413168Y231666D01*

-Y206330D01*

-X413057Y206296D01*

-X412950Y206244D01*

-X412854Y206177D01*

-X412769Y206095D01*

-X412698Y206000D01*

-X412644Y205895D01*

-X412485Y205492D01*

-X412368Y205075D01*

-X412289Y204648D01*

-X412250Y204217D01*

-Y203783D01*

-X412289Y203352D01*

-X412368Y202925D01*

-X412485Y202508D01*

-X412640Y202103D01*

-X412695Y201998D01*

-X412766Y201903D01*

-X412852Y201821D01*

-X412949Y201753D01*

-X413055Y201701D01*

-X413168Y201666D01*

-Y176330D01*

-X413057Y176296D01*

-X412950Y176244D01*

-X412854Y176177D01*

-X412769Y176095D01*

-X412698Y176000D01*

-X412644Y175895D01*

-X412485Y175492D01*

-X412368Y175075D01*

-X412289Y174648D01*

-X412250Y174217D01*

-Y173783D01*

-X412289Y173352D01*

-X412368Y172925D01*

-X412485Y172508D01*

-X412640Y172103D01*

-X412695Y171998D01*

-X412766Y171903D01*

-X412852Y171821D01*

-X412949Y171753D01*

-X413055Y171701D01*

-X413168Y171666D01*

-Y154000D01*

-G37*

-G36*

-X434446Y39000D02*X395438D01*

-Y58499D01*

-X395502Y58538D01*

-X395718Y58722D01*

-X395902Y58938D01*

-X396050Y59179D01*

-X396158Y59441D01*

-X396224Y59717D01*

-X396241Y59999D01*

-X396224Y60281D01*

-X396158Y60557D01*

-X396050Y60819D01*

-X395902Y61060D01*

-X395718Y61276D01*

-X395502Y61460D01*

-X395438Y61499D01*

-Y65194D01*

-X395441Y65193D01*

-X395723Y65216D01*

-X395999Y65282D01*

-X396261Y65390D01*

-X396502Y65538D01*

-X396718Y65722D01*

-X396902Y65938D01*

-X397050Y66179D01*

-X397158Y66441D01*

-X397224Y66717D01*

-X397241Y66999D01*

-X397224Y67281D01*

-X397158Y67557D01*

-X397050Y67819D01*

-X396902Y68060D01*

-X396718Y68276D01*

-X396502Y68460D01*

-X396261Y68608D01*

-X395999Y68716D01*

-X395723Y68782D01*

-X395441Y68805D01*

-X395438Y68804D01*

-Y132000D01*

-X408941D01*

-Y67000D01*

-X434446D01*

-Y58305D01*

-X434167Y58283D01*

-X433891Y58217D01*

-X433629Y58109D01*

-X433388Y57961D01*

-X433172Y57777D01*

-X432988Y57561D01*

-X432840Y57320D01*

-X432732Y57058D01*

-X432666Y56782D01*

-X432643Y56500D01*

-X432666Y56218D01*

-X432732Y55942D01*

-X432840Y55680D01*

-X432988Y55439D01*

-X433172Y55223D01*

-X433388Y55039D01*

-X433629Y54891D01*

-X433891Y54783D01*

-X434167Y54717D01*

-X434446Y54695D01*

-Y39000D01*

-G37*

-G36*

-X395438D02*X391438D01*

-Y52506D01*

-X391480Y52438D01*

-X391664Y52222D01*

-X391880Y52038D01*

-X392121Y51890D01*

-X392383Y51782D01*

-X392659Y51716D01*

-X392941Y51693D01*

-X393223Y51716D01*

-X393499Y51782D01*

-X393761Y51890D01*

-X394002Y52038D01*

-X394218Y52222D01*

-X394402Y52438D01*

-X394550Y52679D01*

-X394658Y52941D01*

-X394724Y53217D01*

-X394741Y53499D01*

-X394724Y53781D01*

-X394658Y54057D01*

-X394550Y54319D01*

-X394402Y54560D01*

-X394218Y54776D01*

-X394002Y54960D01*

-X393761Y55108D01*

-X393499Y55216D01*

-X393223Y55282D01*

-X392941Y55305D01*

-X392659Y55282D01*

-X392383Y55216D01*

-X392121Y55108D01*

-X391880Y54960D01*

-X391664Y54776D01*

-X391480Y54560D01*

-X391438Y54492D01*

-Y72769D01*

-X391659Y72716D01*

-X391941Y72693D01*

-X392223Y72716D01*

-X392499Y72782D01*

-X392761Y72890D01*

-X393002Y73038D01*

-X393218Y73222D01*

-X393402Y73438D01*

-X393550Y73679D01*

-X393658Y73941D01*

-X393724Y74217D01*

-X393741Y74499D01*

-X393724Y74781D01*

-X393658Y75057D01*

-X393550Y75319D01*

-X393402Y75560D01*

-X393218Y75776D01*

-X393002Y75960D01*

-X392761Y76108D01*

-X392499Y76216D01*

-X392223Y76282D01*

-X391941Y76305D01*

-X391659Y76282D01*

-X391438Y76229D01*

-Y78194D01*

-X391441Y78193D01*

-X391723Y78216D01*

-X391999Y78282D01*

-X392261Y78390D01*

-X392502Y78538D01*

-X392718Y78722D01*

-X392902Y78938D01*

-X393050Y79179D01*

-X393158Y79441D01*

-X393224Y79717D01*

-X393241Y79999D01*

-X393224Y80281D01*

-X393158Y80557D01*

-X393050Y80819D01*

-X392902Y81060D01*

-X392718Y81276D01*

-X392502Y81460D01*

-X392261Y81608D01*

-X391999Y81716D01*

-X391723Y81782D01*

-X391441Y81805D01*

-X391438Y81804D01*

-Y82694D01*

-X391441Y82693D01*

-X391723Y82716D01*

-X391999Y82782D01*

-X392261Y82890D01*

-X392502Y83038D01*

-X392718Y83222D01*

-X392902Y83438D01*

-X393050Y83679D01*

-X393158Y83941D01*

-X393224Y84217D01*

-X393241Y84499D01*

-X393224Y84781D01*

-X393158Y85057D01*

-X393050Y85319D01*

-X392902Y85560D01*

-X392718Y85776D01*

-X392502Y85960D01*

-X392261Y86108D01*

-X391999Y86216D01*

-X391723Y86282D01*

-X391441Y86305D01*

-X391438Y86304D01*

-Y132000D01*

-X395438D01*

-Y68804D01*

-X395159Y68782D01*

-X394883Y68716D01*

-X394621Y68608D01*

-X394380Y68460D01*

-X394164Y68276D01*

-X393980Y68060D01*

-X393832Y67819D01*

-X393724Y67557D01*

-X393658Y67281D01*

-X393635Y66999D01*

-X393658Y66717D01*

-X393724Y66441D01*

-X393832Y66179D01*

-X393980Y65938D01*

-X394164Y65722D01*

-X394380Y65538D01*

-X394621Y65390D01*

-X394883Y65282D01*

-X395159Y65216D01*

-X395438Y65194D01*

-Y61499D01*

-X395261Y61608D01*

-X394999Y61716D01*

-X394723Y61782D01*

-X394441Y61805D01*

-X394159Y61782D01*

-X393883Y61716D01*

-X393621Y61608D01*

-X393380Y61460D01*

-X393164Y61276D01*

-X392980Y61060D01*

-X392832Y60819D01*

-X392724Y60557D01*

-X392658Y60281D01*

-X392635Y59999D01*

-X392658Y59717D01*

-X392724Y59441D01*

-X392832Y59179D01*

-X392980Y58938D01*

-X393164Y58722D01*

-X393380Y58538D01*

-X393621Y58390D01*

-X393883Y58282D01*

-X394159Y58216D01*

-X394441Y58193D01*

-X394723Y58216D01*

-X394999Y58282D01*

-X395261Y58390D01*

-X395438Y58499D01*

-Y39000D01*

-G37*

-G36*

-X391438D02*X387938D01*

-Y91694D01*

-X387941Y91693D01*

-X388223Y91716D01*

-X388499Y91782D01*

-X388761Y91890D01*

-X389002Y92038D01*

-X389218Y92222D01*

-X389402Y92438D01*

-X389550Y92679D01*

-X389658Y92941D01*

-X389724Y93217D01*

-X389741Y93499D01*

-X389724Y93781D01*

-X389658Y94057D01*

-X389550Y94319D01*

-X389402Y94560D01*

-X389218Y94776D01*

-X389002Y94960D01*

-X388761Y95108D01*

-X388499Y95216D01*

-X388223Y95282D01*

-X387941Y95305D01*

-X387938Y95304D01*

-Y96194D01*

-X387941Y96193D01*

-X388223Y96216D01*

-X388499Y96282D01*

-X388761Y96390D01*

-X389002Y96538D01*

-X389218Y96722D01*

-X389402Y96938D01*

-X389550Y97179D01*

-X389658Y97441D01*

-X389724Y97717D01*

-X389741Y97999D01*

-X389724Y98281D01*

-X389658Y98557D01*

-X389550Y98819D01*

-X389402Y99060D01*

-X389218Y99276D01*

-X389002Y99460D01*

-X388761Y99608D01*

-X388499Y99716D01*

-X388223Y99782D01*

-X387941Y99805D01*

-X387938Y99804D01*

-Y102194D01*

-X387941Y102193D01*

-X388223Y102216D01*

-X388499Y102282D01*

-X388761Y102390D01*

-X389002Y102538D01*

-X389218Y102722D01*

-X389402Y102938D01*

-X389550Y103179D01*

-X389658Y103441D01*

-X389724Y103717D01*

-X389741Y103999D01*

-X389724Y104281D01*

-X389658Y104557D01*

-X389550Y104819D01*

-X389402Y105060D01*

-X389218Y105276D01*

-X389002Y105460D01*

-X388761Y105608D01*

-X388499Y105716D01*

-X388223Y105782D01*

-X387941Y105805D01*

-X387938Y105804D01*

-Y108194D01*

-X387941Y108193D01*

-X388223Y108216D01*

-X388499Y108282D01*

-X388761Y108390D01*

-X389002Y108538D01*

-X389218Y108722D01*

-X389402Y108938D01*

-X389550Y109179D01*

-X389658Y109441D01*

-X389724Y109717D01*

-X389741Y109999D01*

-X389724Y110281D01*

-X389658Y110557D01*

-X389550Y110819D01*

-X389402Y111060D01*

-X389218Y111276D01*

-X389002Y111460D01*

-X388761Y111608D01*

-X388499Y111716D01*

-X388223Y111782D01*

-X387941Y111805D01*

-X387938Y111804D01*

-Y114194D01*

-X387941Y114193D01*

-X388223Y114216D01*

-X388499Y114282D01*

-X388761Y114390D01*

-X389002Y114538D01*

-X389218Y114722D01*

-X389402Y114938D01*

-X389550Y115179D01*

-X389658Y115441D01*

-X389724Y115717D01*

-X389741Y115999D01*

-X389724Y116281D01*

-X389658Y116557D01*

-X389550Y116819D01*

-X389402Y117060D01*

-X389218Y117276D01*

-X389002Y117460D01*

-X388761Y117608D01*

-X388499Y117716D01*

-X388223Y117782D01*

-X387941Y117805D01*

-X387938Y117804D01*

-Y120194D01*

-X387941Y120193D01*

-X388223Y120216D01*

-X388499Y120282D01*

-X388761Y120390D01*

-X389002Y120538D01*

-X389218Y120722D01*

-X389402Y120938D01*

-X389550Y121179D01*

-X389658Y121441D01*

-X389724Y121717D01*

-X389741Y121999D01*

-X389724Y122281D01*

-X389658Y122557D01*

-X389550Y122819D01*

-X389402Y123060D01*

-X389218Y123276D01*

-X389002Y123460D01*

-X388761Y123608D01*

-X388499Y123716D01*

-X388223Y123782D01*

-X387941Y123805D01*

-X387938Y123804D01*

-Y126194D01*

-X387941Y126193D01*

-X388223Y126216D01*

-X388499Y126282D01*

-X388761Y126390D01*

-X389002Y126538D01*

-X389218Y126722D01*

-X389402Y126938D01*

-X389550Y127179D01*

-X389658Y127441D01*

-X389724Y127717D01*

-X389741Y127999D01*

-X389724Y128281D01*

-X389658Y128557D01*

-X389550Y128819D01*

-X389402Y129060D01*

-X389218Y129276D01*

-X389002Y129460D01*

-X388761Y129608D01*

-X388499Y129716D01*

-X388223Y129782D01*

-X387941Y129805D01*

-X387938Y129804D01*

-Y132000D01*

-X391438D01*

-Y86304D01*

-X391159Y86282D01*

-X390883Y86216D01*

-X390621Y86108D01*

-X390380Y85960D01*

-X390164Y85776D01*

-X389980Y85560D01*

-X389832Y85319D01*

-X389724Y85057D01*

-X389658Y84781D01*

-X389635Y84499D01*

-X389658Y84217D01*

-X389724Y83941D01*

-X389832Y83679D01*

-X389980Y83438D01*

-X390164Y83222D01*

-X390380Y83038D01*

-X390621Y82890D01*

-X390883Y82782D01*

-X391159Y82716D01*

-X391438Y82694D01*

-Y81804D01*

-X391159Y81782D01*

-X390883Y81716D01*

-X390621Y81608D01*

-X390380Y81460D01*

-X390164Y81276D01*

-X389980Y81060D01*

-X389832Y80819D01*

-X389724Y80557D01*

-X389658Y80281D01*

-X389635Y79999D01*

-X389658Y79717D01*

-X389724Y79441D01*

-X389832Y79179D01*

-X389980Y78938D01*

-X390164Y78722D01*

-X390380Y78538D01*

-X390621Y78390D01*

-X390883Y78282D01*

-X391159Y78216D01*

-X391438Y78194D01*

-Y76229D01*

-X391383Y76216D01*

-X391121Y76108D01*

-X390880Y75960D01*

-X390664Y75776D01*

-X390480Y75560D01*

-X390332Y75319D01*

-X390224Y75057D01*

-X390158Y74781D01*

-X390135Y74499D01*

-X390158Y74217D01*

-X390224Y73941D01*

-X390332Y73679D01*

-X390480Y73438D01*

-X390664Y73222D01*

-X390880Y73038D01*

-X391121Y72890D01*

-X391383Y72782D01*

-X391438Y72769D01*

-Y54492D01*

-X391332Y54319D01*

-X391224Y54057D01*

-X391158Y53781D01*

-X391135Y53499D01*

-X391158Y53217D01*

-X391224Y52941D01*

-X391332Y52679D01*

-X391438Y52506D01*

-Y39000D01*

-G37*

-G36*

-X387938D02*X374938D01*

-Y41695D01*

-X374941Y41694D01*

-X375223Y41717D01*

-X375499Y41783D01*

-X375761Y41891D01*

-X376002Y42039D01*

-X376218Y42223D01*

-X376402Y42439D01*

-X376550Y42680D01*

-X376658Y42942D01*

-X376724Y43218D01*

-X376741Y43500D01*

-X376724Y43782D01*

-X376658Y44058D01*

-X376550Y44320D01*

-X376402Y44561D01*

-X376218Y44777D01*

-X376002Y44961D01*

-X375761Y45109D01*

-X375499Y45217D01*

-X375362Y45250D01*

-X375499Y45283D01*

-X375761Y45391D01*

-X376002Y45539D01*

-X376218Y45723D01*

-X376402Y45939D01*

-X376550Y46180D01*

-X376658Y46442D01*

-X376724Y46718D01*

-X376741Y47000D01*

-X376724Y47282D01*

-X376658Y47558D01*

-X376550Y47820D01*

-X376402Y48061D01*

-X376218Y48277D01*

-X376002Y48461D01*

-X375761Y48609D01*

-X375499Y48717D01*

-X375223Y48783D01*

-X374941Y48806D01*

-X374938Y48805D01*

-Y132000D01*

-X387938D01*

-Y129804D01*

-X387659Y129782D01*

-X387383Y129716D01*

-X387121Y129608D01*

-X386880Y129460D01*

-X386664Y129276D01*

-X386480Y129060D01*

-X386332Y128819D01*

-X386224Y128557D01*

-X386158Y128281D01*

-X386135Y127999D01*

-X386158Y127717D01*

-X386224Y127441D01*

-X386332Y127179D01*

-X386480Y126938D01*

-X386664Y126722D01*

-X386880Y126538D01*

-X387121Y126390D01*

-X387383Y126282D01*

-X387659Y126216D01*

-X387938Y126194D01*

-Y123804D01*

-X387659Y123782D01*

-X387383Y123716D01*

-X387121Y123608D01*

-X386880Y123460D01*

-X386664Y123276D01*

-X386480Y123060D01*

-X386332Y122819D01*

-X386224Y122557D01*

-X386158Y122281D01*

-X386135Y121999D01*

-X386158Y121717D01*

-X386224Y121441D01*

-X386332Y121179D01*

-X386480Y120938D01*

-X386664Y120722D01*

-X386880Y120538D01*

-X387121Y120390D01*

-X387383Y120282D01*

-X387659Y120216D01*

-X387938Y120194D01*

-Y117804D01*

-X387659Y117782D01*

-X387383Y117716D01*

-X387121Y117608D01*

-X386880Y117460D01*

-X386664Y117276D01*

-X386480Y117060D01*

-X386332Y116819D01*

-X386224Y116557D01*

-X386158Y116281D01*

-X386135Y115999D01*

-X386158Y115717D01*

-X386224Y115441D01*

-X386332Y115179D01*

-X386480Y114938D01*

-X386664Y114722D01*

-X386880Y114538D01*

-X387121Y114390D01*

-X387383Y114282D01*

-X387659Y114216D01*

-X387938Y114194D01*

-Y111804D01*

-X387659Y111782D01*

-X387383Y111716D01*

-X387121Y111608D01*

-X386880Y111460D01*

-X386664Y111276D01*

-X386480Y111060D01*

-X386332Y110819D01*

-X386224Y110557D01*

-X386158Y110281D01*

-X386135Y109999D01*

-X386158Y109717D01*

-X386224Y109441D01*

-X386332Y109179D01*

-X386480Y108938D01*

-X386664Y108722D01*

-X386880Y108538D01*

-X387121Y108390D01*

-X387383Y108282D01*

-X387659Y108216D01*

-X387938Y108194D01*

-Y105804D01*

-X387659Y105782D01*

-X387383Y105716D01*

-X387121Y105608D01*

-X386880Y105460D01*

-X386664Y105276D01*

-X386480Y105060D01*

-X386332Y104819D01*

-X386224Y104557D01*

-X386158Y104281D01*

-X386135Y103999D01*

-X386158Y103717D01*

-X386224Y103441D01*

-X386332Y103179D01*

-X386480Y102938D01*

-X386664Y102722D01*

-X386880Y102538D01*

-X387121Y102390D01*

-X387383Y102282D01*

-X387659Y102216D01*

-X387938Y102194D01*

-Y99804D01*

-X387659Y99782D01*

-X387383Y99716D01*

-X387121Y99608D01*

-X386880Y99460D01*

-X386664Y99276D01*

-X386480Y99060D01*

-X386332Y98819D01*

-X386224Y98557D01*

-X386158Y98281D01*

-X386135Y97999D01*

-X386158Y97717D01*

-X386224Y97441D01*

-X386332Y97179D01*

-X386480Y96938D01*

-X386664Y96722D01*

-X386880Y96538D01*

-X387121Y96390D01*

-X387383Y96282D01*

-X387659Y96216D01*

-X387938Y96194D01*

-Y95304D01*

-X387659Y95282D01*

-X387383Y95216D01*

-X387121Y95108D01*

-X386880Y94960D01*

-X386664Y94776D01*

-X386480Y94560D01*

-X386332Y94319D01*

-X386224Y94057D01*

-X386158Y93781D01*

-X386135Y93499D01*

-X386158Y93217D01*

-X386224Y92941D01*

-X386332Y92679D01*

-X386480Y92438D01*

-X386664Y92222D01*

-X386880Y92038D01*

-X387121Y91890D01*

-X387383Y91782D01*

-X387659Y91716D01*

-X387938Y91694D01*

-Y39000D01*

-G37*

-G36*

-X374938D02*X368938D01*

-Y41695D01*

-X368941Y41694D01*

-X369223Y41717D01*

-X369499Y41783D01*

-X369761Y41891D01*

-X370002Y42039D01*

-X370218Y42223D01*

-X370402Y42439D01*

-X370550Y42680D01*

-X370658Y42942D01*

-X370724Y43218D01*

-X370741Y43500D01*

-X370724Y43782D01*

-X370658Y44058D01*

-X370550Y44320D01*

-X370402Y44561D01*

-X370218Y44777D01*

-X370002Y44961D01*

-X369761Y45109D01*

-X369499Y45217D01*

-X369223Y45283D01*

-X368941Y45306D01*

-X368938Y45305D01*

-Y46695D01*

-X368941Y46694D01*

-X369223Y46717D01*

-X369499Y46783D01*

-X369761Y46891D01*

-X370002Y47039D01*

-X370218Y47223D01*

-X370402Y47439D01*

-X370550Y47680D01*

-X370658Y47942D01*

-X370724Y48218D01*

-X370741Y48500D01*

-X370724Y48782D01*

-X370658Y49058D01*

-X370550Y49320D01*

-X370402Y49561D01*

-X370218Y49777D01*

-X370002Y49961D01*

-X369761Y50109D01*

-X369499Y50217D01*

-X369223Y50283D01*

-X368941Y50306D01*

-X368938Y50305D01*

-Y132000D01*

-X374938D01*

-Y48805D01*

-X374659Y48783D01*

-X374383Y48717D01*

-X374121Y48609D01*

-X373880Y48461D01*

-X373664Y48277D01*

-X373480Y48061D01*

-X373332Y47820D01*

-X373224Y47558D01*

-X373158Y47282D01*

-X373135Y47000D01*

-X373158Y46718D01*

-X373224Y46442D01*

-X373332Y46180D01*

-X373480Y45939D01*

-X373664Y45723D01*

-X373880Y45539D01*

-X374121Y45391D01*

-X374383Y45283D01*

-X374520Y45250D01*

-X374383Y45217D01*

-X374121Y45109D01*

-X373880Y44961D01*

-X373664Y44777D01*

-X373480Y44561D01*

-X373332Y44320D01*

-X373224Y44058D01*

-X373158Y43782D01*

-X373135Y43500D01*

-X373158Y43218D01*

-X373224Y42942D01*

-X373332Y42680D01*

-X373480Y42439D01*

-X373664Y42223D01*

-X373880Y42039D01*

-X374121Y41891D01*

-X374383Y41783D01*

-X374659Y41717D01*

-X374938Y41695D01*

-Y39000D01*

-G37*

-G36*

-X368938D02*X354938D01*

-Y91694D01*

-X354941Y91693D01*

-X355223Y91716D01*

-X355499Y91782D01*

-X355761Y91890D01*

-X356002Y92038D01*

-X356218Y92222D01*

-X356402Y92438D01*

-X356550Y92679D01*

-X356658Y92941D01*

-X356724Y93217D01*

-X356741Y93499D01*

-X356724Y93781D01*

-X356658Y94057D01*

-X356550Y94319D01*

-X356402Y94560D01*

-X356218Y94776D01*

-X356002Y94960D01*

-X355761Y95108D01*

-X355499Y95216D01*

-X355223Y95282D01*

-X354941Y95305D01*

-X354938Y95304D01*

-Y96194D01*

-X354941Y96193D01*

-X355223Y96216D01*

-X355499Y96282D01*

-X355761Y96390D01*

-X356002Y96538D01*

-X356218Y96722D01*

-X356402Y96938D01*

-X356550Y97179D01*

-X356658Y97441D01*

-X356724Y97717D01*

-X356741Y97999D01*

-X356724Y98281D01*

-X356658Y98557D01*

-X356550Y98819D01*

-X356402Y99060D01*

-X356218Y99276D01*

-X356002Y99460D01*

-X355761Y99608D01*

-X355499Y99716D01*

-X355223Y99782D01*

-X354941Y99805D01*

-X354938Y99804D01*

-Y102194D01*

-X354941Y102193D01*

-X355223Y102216D01*

-X355499Y102282D01*

-X355761Y102390D01*

-X356002Y102538D01*

-X356218Y102722D01*

-X356402Y102938D01*

-X356550Y103179D01*

-X356658Y103441D01*

-X356724Y103717D01*

-X356741Y103999D01*

-X356724Y104281D01*

-X356658Y104557D01*

-X356550Y104819D01*

-X356402Y105060D01*

-X356218Y105276D01*

-X356002Y105460D01*

-X355761Y105608D01*

-X355499Y105716D01*

-X355223Y105782D01*

-X354941Y105805D01*

-X354938Y105804D01*

-Y108194D01*

-X354941Y108193D01*

-X355223Y108216D01*

-X355499Y108282D01*

-X355761Y108390D01*

-X356002Y108538D01*

-X356218Y108722D01*

-X356402Y108938D01*

-X356550Y109179D01*

-X356658Y109441D01*

-X356724Y109717D01*

-X356741Y109999D01*

-X356724Y110281D01*

-X356658Y110557D01*

-X356550Y110819D01*

-X356402Y111060D01*

-X356218Y111276D01*

-X356002Y111460D01*

-X355761Y111608D01*

-X355499Y111716D01*

-X355223Y111782D01*

-X354941Y111805D01*

-X354938Y111804D01*

-Y114194D01*

-X354941Y114193D01*

-X355223Y114216D01*

-X355499Y114282D01*

-X355761Y114390D01*

-X356002Y114538D01*

-X356218Y114722D01*

-X356402Y114938D01*

-X356550Y115179D01*

-X356658Y115441D01*

-X356724Y115717D01*

-X356741Y115999D01*

-X356724Y116281D01*

-X356658Y116557D01*

-X356550Y116819D01*

-X356402Y117060D01*

-X356218Y117276D01*

-X356002Y117460D01*

-X355761Y117608D01*

-X355499Y117716D01*

-X355223Y117782D01*

-X354941Y117805D01*

-X354938Y117804D01*

-Y120194D01*

-X354941Y120193D01*

-X355223Y120216D01*

-X355499Y120282D01*

-X355761Y120390D01*

-X356002Y120538D01*

-X356218Y120722D01*

-X356402Y120938D01*

-X356550Y121179D01*

-X356658Y121441D01*

-X356724Y121717D01*

-X356741Y121999D01*

-X356724Y122281D01*

-X356658Y122557D01*

-X356550Y122819D01*

-X356402Y123060D01*

-X356218Y123276D01*

-X356002Y123460D01*

-X355761Y123608D01*

-X355499Y123716D01*

-X355223Y123782D01*

-X354941Y123805D01*

-X354938Y123804D01*

-Y126194D01*

-X354941Y126193D01*

-X355223Y126216D01*

-X355499Y126282D01*

-X355761Y126390D01*

-X356002Y126538D01*

-X356218Y126722D01*

-X356402Y126938D01*

-X356550Y127179D01*

-X356658Y127441D01*

-X356724Y127717D01*

-X356741Y127999D01*

-X356724Y128281D01*

-X356658Y128557D01*

-X356550Y128819D01*

-X356402Y129060D01*

-X356218Y129276D01*

-X356002Y129460D01*

-X355761Y129608D01*

-X355499Y129716D01*

-X355223Y129782D01*

-X354941Y129805D01*

-X354938Y129804D01*

-Y132000D01*

-X368938D01*

-Y50305D01*

-X368659Y50283D01*

-X368383Y50217D01*

-X368121Y50109D01*

-X367880Y49961D01*

-X367664Y49777D01*

-X367480Y49561D01*

-X367332Y49320D01*

-X367224Y49058D01*

-X367158Y48782D01*

-X367135Y48500D01*

-X367158Y48218D01*

-X367224Y47942D01*

-X367332Y47680D01*

-X367480Y47439D01*

-X367664Y47223D01*

-X367880Y47039D01*

-X368121Y46891D01*

-X368383Y46783D01*

-X368659Y46717D01*

-X368938Y46695D01*

-Y45305D01*

-X368659Y45283D01*

-X368383Y45217D01*

-X368121Y45109D01*

-X367880Y44961D01*

-X367664Y44777D01*

-X367480Y44561D01*

-X367332Y44320D01*

-X367224Y44058D01*

-X367158Y43782D01*

-X367135Y43500D01*

-X367158Y43218D01*

-X367224Y42942D01*

-X367332Y42680D01*

-X367480Y42439D01*

-X367664Y42223D01*

-X367880Y42039D01*

-X368121Y41891D01*

-X368383Y41783D01*

-X368659Y41717D01*

-X368938Y41695D01*

-Y39000D01*

-G37*

-G36*

-X354938D02*X299273D01*

-Y42867D01*

-X299374Y42909D01*

-X299575Y43033D01*

-X299755Y43186D01*

-X299908Y43366D01*

-X300032Y43567D01*

-X300122Y43785D01*

-X300177Y44015D01*

-X300191Y44250D01*

-X300177Y50985D01*

-X300122Y51215D01*

-X300032Y51433D01*

-X299908Y51634D01*

-X299755Y51814D01*

-X299575Y51967D01*

-X299374Y52091D01*

-X299273Y52133D01*

-Y55170D01*

-X299384Y55204D01*

-X299491Y55256D01*

-X299587Y55323D01*

-X299672Y55405D01*

-X299743Y55500D01*

-X299797Y55605D01*

-X299956Y56008D01*

-X300073Y56425D01*

-X300152Y56852D01*

-X300191Y57283D01*

-Y57717D01*

-X300152Y58148D01*

-X300073Y58575D01*

-X299956Y58992D01*

-X299801Y59397D01*

-X299746Y59502D01*

-X299675Y59597D01*

-X299589Y59679D01*

-X299492Y59747D01*

-X299386Y59799D01*

-X299273Y59834D01*

-Y64673D01*

-X299296Y64699D01*

-X299686Y65337D01*

-X299972Y66028D01*

-X300147Y66755D01*

-X300191Y67500D01*

-X300147Y68245D01*

-X299972Y68972D01*

-X299686Y69663D01*

-X299296Y70301D01*

-X299273Y70327D01*

-Y72500D01*

-X328441D01*

-Y132000D01*

-X354938D01*

-Y129804D01*

-X354659Y129782D01*

-X354383Y129716D01*

-X354121Y129608D01*

-X353880Y129460D01*

-X353664Y129276D01*

-X353480Y129060D01*

-X353332Y128819D01*

-X353224Y128557D01*

-X353158Y128281D01*

-X353135Y127999D01*

-X353158Y127717D01*

-X353224Y127441D01*

-X353332Y127179D01*

-X353480Y126938D01*

-X353664Y126722D01*

-X353880Y126538D01*

-X354121Y126390D01*

-X354383Y126282D01*

-X354659Y126216D01*

-X354938Y126194D01*

-Y123804D01*

-X354659Y123782D01*

-X354383Y123716D01*

-X354121Y123608D01*

-X353880Y123460D01*

-X353664Y123276D01*

-X353480Y123060D01*

-X353332Y122819D01*

-X353224Y122557D01*

-X353158Y122281D01*

-X353135Y121999D01*

-X353158Y121717D01*

-X353224Y121441D01*

-X353332Y121179D01*

-X353480Y120938D01*

-X353664Y120722D01*

-X353880Y120538D01*

-X354121Y120390D01*

-X354383Y120282D01*

-X354659Y120216D01*

-X354938Y120194D01*

-Y117804D01*

-X354659Y117782D01*

-X354383Y117716D01*

-X354121Y117608D01*

-X353880Y117460D01*

-X353664Y117276D01*

-X353480Y117060D01*

-X353332Y116819D01*

-X353224Y116557D01*

-X353158Y116281D01*

-X353135Y115999D01*

-X353158Y115717D01*

-X353224Y115441D01*

-X353332Y115179D01*

-X353480Y114938D01*

-X353664Y114722D01*

-X353880Y114538D01*

-X354121Y114390D01*

-X354383Y114282D01*

-X354659Y114216D01*

-X354938Y114194D01*

-Y111804D01*

-X354659Y111782D01*

-X354383Y111716D01*

-X354121Y111608D01*

-X353880Y111460D01*

-X353664Y111276D01*

-X353480Y111060D01*

-X353332Y110819D01*

-X353224Y110557D01*

-X353158Y110281D01*

-X353135Y109999D01*

-X353158Y109717D01*

-X353224Y109441D01*

-X353332Y109179D01*

-X353480Y108938D01*

-X353664Y108722D01*

-X353880Y108538D01*

-X354121Y108390D01*

-X354383Y108282D01*

-X354659Y108216D01*

-X354938Y108194D01*

-Y105804D01*

-X354659Y105782D01*

-X354383Y105716D01*

-X354121Y105608D01*

-X353880Y105460D01*

-X353664Y105276D01*

-X353480Y105060D01*

-X353332Y104819D01*

-X353224Y104557D01*

-X353158Y104281D01*

-X353135Y103999D01*

-X353158Y103717D01*

-X353224Y103441D01*

-X353332Y103179D01*

-X353480Y102938D01*

-X353664Y102722D01*

-X353880Y102538D01*

-X354121Y102390D01*

-X354383Y102282D01*

-X354659Y102216D01*

-X354938Y102194D01*

-Y99804D01*

-X354659Y99782D01*

-X354383Y99716D01*

-X354121Y99608D01*

-X353880Y99460D01*

-X353664Y99276D01*

-X353480Y99060D01*

-X353332Y98819D01*

-X353224Y98557D01*

-X353158Y98281D01*

-X353135Y97999D01*

-X353158Y97717D01*

-X353224Y97441D01*

-X353332Y97179D01*

-X353480Y96938D01*

-X353664Y96722D01*

-X353880Y96538D01*

-X354121Y96390D01*

-X354383Y96282D01*

-X354659Y96216D01*

-X354938Y96194D01*

-Y95304D01*

-X354659Y95282D01*

-X354383Y95216D01*

-X354121Y95108D01*

-X353880Y94960D01*

-X353664Y94776D01*

-X353480Y94560D01*

-X353332Y94319D01*

-X353224Y94057D01*

-X353158Y93781D01*

-X353135Y93499D01*

-X353158Y93217D01*

-X353224Y92941D01*

-X353332Y92679D01*

-X353480Y92438D01*

-X353664Y92222D01*

-X353880Y92038D01*

-X354121Y91890D01*

-X354383Y91782D01*

-X354659Y91716D01*

-X354938Y91694D01*

-Y39000D01*

-G37*

-G36*

-X299273Y70327D02*X298810Y70869D01*

-X298242Y71355D01*

-X297604Y71745D01*

-X296913Y72031D01*

-X296186Y72206D01*

-X295441Y72265D01*

-Y72500D01*

-X299273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X299156Y52181D01*

-X298926Y52236D01*

-X298691Y52250D01*

-X295441Y52243D01*

-Y52750D01*

-X295658D01*

-X296089Y52789D01*

-X296516Y52868D01*

-X296933Y52985D01*

-X297338Y53140D01*

-X297443Y53195D01*

-X297538Y53266D01*

-X297620Y53352D01*

-X297688Y53449D01*

-X297740Y53555D01*

-X297775Y53669D01*

-X297791Y53786D01*

-X297789Y53905D01*

-X297768Y54022D01*

-X297730Y54134D01*

-X297674Y54238D01*

-X297603Y54333D01*

-X297517Y54415D01*

-X297420Y54483D01*

-X297314Y54535D01*

-X297200Y54570D01*

-X297083Y54586D01*

-X296964Y54584D01*

-X296848Y54564D01*

-X296736Y54523D01*

-X296461Y54414D01*

-X296176Y54334D01*

-X295884Y54280D01*

-X295589Y54253D01*

-X295441D01*

-Y60747D01*

-X295589D01*

-X295884Y60720D01*

-X296176Y60666D01*

-X296461Y60586D01*

-X296738Y60480D01*

-X296848Y60440D01*

-X296965Y60419D01*

-X297083Y60417D01*

-X297200Y60433D01*

-X297312Y60468D01*

-X297419Y60520D01*

-X297515Y60587D01*

-X297600Y60669D01*

-X297671Y60763D01*

-X297727Y60868D01*

-X297765Y60979D01*

-X297786Y61096D01*

-X297788Y61214D01*

-X297771Y61330D01*

-X297737Y61443D01*

-X297685Y61550D01*

-X297618Y61646D01*

-X297536Y61731D01*

-X297441Y61802D01*

-X297336Y61856D01*

-X296933Y62015D01*

-X296516Y62132D01*

-X296089Y62211D01*

-X295658Y62250D01*

-X295441D01*

-Y62735D01*

-X296186Y62794D01*

-X296913Y62969D01*

-X297604Y63255D01*

-X298242Y63645D01*

-X298810Y64131D01*

-X299273Y64673D01*

-Y59834D01*

-X299272Y59834D01*

-X299155Y59850D01*

-X299036Y59848D01*

-X298919Y59827D01*

-X298807Y59789D01*

-X298703Y59733D01*

-X298608Y59662D01*

-X298526Y59576D01*

-X298458Y59479D01*

-X298406Y59373D01*

-X298371Y59259D01*

-X298355Y59142D01*

-X298357Y59023D01*

-X298377Y58907D01*

-X298418Y58795D01*

-X298527Y58520D01*

-X298607Y58235D01*

-X298661Y57943D01*

-X298688Y57648D01*

-Y57352D01*

-X298661Y57057D01*

-X298607Y56765D01*

-X298527Y56480D01*

-X298421Y56203D01*

-X298381Y56093D01*

-X298360Y55976D01*

-X298358Y55858D01*

-X298374Y55741D01*

-X298409Y55629D01*

-X298461Y55522D01*

-X298528Y55426D01*

-X298610Y55341D01*

-X298704Y55270D01*

-X298809Y55214D01*

-X298920Y55176D01*

-X299037Y55155D01*

-X299155Y55153D01*

-X299271Y55170D01*

-X299273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X295441D01*

-Y42757D01*

-X298926Y42764D01*

-X299156Y42819D01*

-X299273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X291609Y64673D02*X292072Y64131D01*

-X292640Y63645D01*

-X293278Y63255D01*

-X293969Y62969D01*

-X294696Y62794D01*

-X295441Y62735D01*

-Y62250D01*

-X295224D01*

-X294793Y62211D01*

-X294366Y62132D01*

-X293949Y62015D01*

-X293544Y61860D01*

-X293439Y61805D01*

-X293344Y61734D01*

-X293262Y61648D01*

-X293194Y61551D01*

-X293142Y61445D01*

-X293107Y61331D01*

-X293091Y61214D01*

-X293093Y61095D01*

-X293114Y60978D01*

-X293152Y60866D01*

-X293208Y60762D01*

-X293279Y60667D01*

-X293365Y60585D01*

-X293462Y60517D01*

-X293568Y60465D01*

-X293682Y60430D01*

-X293799Y60414D01*

-X293918Y60416D01*

-X294034Y60436D01*

-X294146Y60477D01*

-X294421Y60586D01*

-X294706Y60666D01*

-X294998Y60720D01*

-X295293Y60747D01*

-X295441D01*

-Y54253D01*

-X295293D01*

-X294998Y54280D01*

-X294706Y54334D01*

-X294421Y54414D01*

-X294144Y54520D01*

-X294034Y54560D01*

-X293917Y54581D01*

-X293799Y54583D01*

-X293682Y54567D01*

-X293570Y54532D01*

-X293463Y54480D01*

-X293367Y54413D01*

-X293282Y54331D01*

-X293211Y54237D01*

-X293155Y54132D01*

-X293117Y54021D01*

-X293096Y53904D01*

-X293094Y53786D01*

-X293111Y53670D01*

-X293145Y53557D01*

-X293197Y53450D01*

-X293264Y53354D01*

-X293346Y53269D01*

-X293441Y53198D01*

-X293546Y53144D01*

-X293949Y52985D01*

-X294366Y52868D01*

-X294793Y52789D01*

-X295224Y52750D01*

-X295441D01*

-Y52243D01*

-X291956Y52236D01*

-X291726Y52181D01*

-X291609Y52133D01*

-Y55166D01*

-X291610Y55166D01*

-X291727Y55150D01*

-X291846Y55152D01*

-X291963Y55173D01*

-X292075Y55211D01*

-X292179Y55267D01*

-X292274Y55338D01*

-X292356Y55424D01*

-X292424Y55521D01*

-X292476Y55627D01*

-X292511Y55741D01*

-X292527Y55858D01*

-X292525Y55977D01*

-X292505Y56093D01*

-X292464Y56205D01*

-X292355Y56480D01*

-X292275Y56765D01*

-X292221Y57057D01*

-X292194Y57352D01*

-Y57648D01*

-X292221Y57943D01*

-X292275Y58235D01*

-X292355Y58520D01*

-X292461Y58797D01*

-X292501Y58907D01*

-X292522Y59024D01*

-X292524Y59142D01*

-X292508Y59259D01*

-X292473Y59371D01*

-X292421Y59478D01*

-X292354Y59574D01*

-X292272Y59659D01*

-X292178Y59730D01*

-X292073Y59786D01*

-X291962Y59824D01*

-X291845Y59845D01*

-X291727Y59847D01*

-X291610Y59830D01*

-X291609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X295441D01*

-Y72265D01*

-X294696Y72206D01*

-X293969Y72031D01*

-X293278Y71745D01*

-X292640Y71355D01*

-X292072Y70869D01*

-X291609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X295441Y39000D02*X291609D01*

-Y42867D01*

-X291726Y42819D01*

-X291956Y42764D01*

-X292191Y42750D01*

-X295441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X291609D02*X269273D01*

-Y42867D01*

-X269374Y42909D01*

-X269575Y43033D01*

-X269755Y43186D01*

-X269908Y43366D01*

-X270032Y43567D01*

-X270122Y43785D01*

-X270177Y44015D01*

-X270191Y44250D01*

-X270177Y50985D01*

-X270122Y51215D01*

-X270032Y51433D01*

-X269908Y51634D01*

-X269755Y51814D01*

-X269575Y51967D01*

-X269374Y52091D01*

-X269273Y52133D01*

-Y55170D01*

-X269384Y55204D01*

-X269491Y55256D01*

-X269587Y55323D01*

-X269672Y55405D01*

-X269743Y55500D01*

-X269797Y55605D01*

-X269956Y56008D01*

-X270073Y56425D01*

-X270152Y56852D01*

-X270191Y57283D01*

-Y57717D01*

-X270152Y58148D01*

-X270073Y58575D01*

-X269956Y58992D01*

-X269801Y59397D01*

-X269746Y59502D01*

-X269675Y59597D01*

-X269589Y59679D01*

-X269492Y59747D01*

-X269386Y59799D01*

-X269273Y59834D01*

-Y64673D01*

-X269296Y64699D01*

-X269686Y65337D01*

-X269972Y66028D01*

-X270147Y66755D01*

-X270191Y67500D01*

-X270147Y68245D01*

-X269972Y68972D01*

-X269686Y69663D01*

-X269296Y70301D01*

-X269273Y70327D01*

-Y72500D01*

-X291609D01*

-Y70327D01*

-X291586Y70301D01*

-X291196Y69663D01*

-X290910Y68972D01*

-X290735Y68245D01*

-X290676Y67500D01*

-X290735Y66755D01*

-X290910Y66028D01*

-X291196Y65337D01*

-X291586Y64699D01*

-X291609Y64673D01*

-Y59830D01*

-X291498Y59796D01*

-X291391Y59744D01*

-X291295Y59677D01*

-X291210Y59595D01*

-X291139Y59500D01*

-X291085Y59395D01*

-X290926Y58992D01*

-X290809Y58575D01*

-X290730Y58148D01*

-X290691Y57717D01*

-Y57283D01*

-X290730Y56852D01*

-X290809Y56425D01*

-X290926Y56008D01*

-X291081Y55603D01*

-X291136Y55498D01*

-X291207Y55403D01*

-X291293Y55321D01*

-X291390Y55253D01*

-X291496Y55201D01*

-X291609Y55166D01*

-Y52133D01*

-X291508Y52091D01*

-X291307Y51967D01*

-X291127Y51814D01*

-X290974Y51634D01*

-X290850Y51433D01*

-X290760Y51215D01*

-X290705Y50985D01*

-X290691Y50750D01*

-X290705Y44015D01*

-X290760Y43785D01*

-X290850Y43567D01*

-X290974Y43366D01*

-X291127Y43186D01*

-X291307Y43033D01*

-X291508Y42909D01*

-X291609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X269273Y70327D02*X268810Y70869D01*

-X268242Y71355D01*

-X267604Y71745D01*

-X266913Y72031D01*

-X266186Y72206D01*

-X265441Y72265D01*

-Y72500D01*

-X269273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X269156Y52181D01*

-X268926Y52236D01*

-X268691Y52250D01*

-X265441Y52243D01*

-Y52750D01*

-X265658D01*

-X266089Y52789D01*

-X266516Y52868D01*

-X266933Y52985D01*

-X267338Y53140D01*

-X267443Y53195D01*

-X267538Y53266D01*

-X267620Y53352D01*

-X267688Y53449D01*

-X267740Y53555D01*

-X267775Y53669D01*

-X267791Y53786D01*

-X267789Y53905D01*

-X267768Y54022D01*

-X267730Y54134D01*

-X267674Y54238D01*

-X267603Y54333D01*

-X267517Y54415D01*

-X267420Y54483D01*

-X267314Y54535D01*

-X267200Y54570D01*

-X267083Y54586D01*

-X266964Y54584D01*

-X266848Y54564D01*

-X266736Y54523D01*

-X266461Y54414D01*

-X266176Y54334D01*

-X265884Y54280D01*

-X265589Y54253D01*

-X265441D01*

-Y60747D01*

-X265589D01*

-X265884Y60720D01*

-X266176Y60666D01*

-X266461Y60586D01*

-X266738Y60480D01*

-X266848Y60440D01*

-X266965Y60419D01*

-X267083Y60417D01*

-X267200Y60433D01*

-X267312Y60468D01*

-X267419Y60520D01*

-X267515Y60587D01*

-X267600Y60669D01*

-X267671Y60763D01*

-X267727Y60868D01*

-X267765Y60979D01*

-X267786Y61096D01*

-X267788Y61214D01*

-X267771Y61330D01*

-X267737Y61443D01*

-X267685Y61550D01*

-X267618Y61646D01*

-X267536Y61731D01*

-X267441Y61802D01*

-X267336Y61856D01*

-X266933Y62015D01*

-X266516Y62132D01*

-X266089Y62211D01*

-X265658Y62250D01*

-X265441D01*

-Y62735D01*

-X266186Y62794D01*

-X266913Y62969D01*

-X267604Y63255D01*

-X268242Y63645D01*

-X268810Y64131D01*

-X269273Y64673D01*

-Y59834D01*

-X269272Y59834D01*

-X269155Y59850D01*

-X269036Y59848D01*

-X268919Y59827D01*

-X268807Y59789D01*

-X268703Y59733D01*

-X268608Y59662D01*

-X268526Y59576D01*

-X268458Y59479D01*

-X268406Y59373D01*

-X268371Y59259D01*

-X268355Y59142D01*

-X268357Y59023D01*

-X268377Y58907D01*

-X268418Y58795D01*

-X268527Y58520D01*

-X268607Y58235D01*

-X268661Y57943D01*

-X268688Y57648D01*

-Y57352D01*

-X268661Y57057D01*

-X268607Y56765D01*

-X268527Y56480D01*

-X268421Y56203D01*

-X268381Y56093D01*

-X268360Y55976D01*

-X268358Y55858D01*

-X268374Y55741D01*

-X268409Y55629D01*

-X268461Y55522D01*

-X268528Y55426D01*

-X268610Y55341D01*

-X268704Y55270D01*

-X268809Y55214D01*

-X268920Y55176D01*

-X269037Y55155D01*

-X269155Y55153D01*

-X269271Y55170D01*

-X269273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X265441D01*

-Y42757D01*

-X268926Y42764D01*

-X269156Y42819D01*

-X269273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X261609Y64673D02*X262072Y64131D01*

-X262640Y63645D01*

-X263278Y63255D01*

-X263969Y62969D01*

-X264696Y62794D01*

-X265441Y62735D01*

-Y62250D01*

-X265224D01*

-X264793Y62211D01*

-X264366Y62132D01*

-X263949Y62015D01*

-X263544Y61860D01*

-X263439Y61805D01*

-X263344Y61734D01*

-X263262Y61648D01*

-X263194Y61551D01*

-X263142Y61445D01*

-X263107Y61331D01*

-X263091Y61214D01*

-X263093Y61095D01*

-X263114Y60978D01*

-X263152Y60866D01*

-X263208Y60762D01*

-X263279Y60667D01*

-X263365Y60585D01*

-X263462Y60517D01*

-X263568Y60465D01*

-X263682Y60430D01*

-X263799Y60414D01*

-X263918Y60416D01*

-X264034Y60436D01*

-X264146Y60477D01*

-X264421Y60586D01*

-X264706Y60666D01*

-X264998Y60720D01*

-X265293Y60747D01*

-X265441D01*

-Y54253D01*

-X265293D01*

-X264998Y54280D01*

-X264706Y54334D01*

-X264421Y54414D01*

-X264144Y54520D01*

-X264034Y54560D01*

-X263917Y54581D01*

-X263799Y54583D01*

-X263682Y54567D01*

-X263570Y54532D01*

-X263463Y54480D01*

-X263367Y54413D01*

-X263282Y54331D01*

-X263211Y54237D01*

-X263155Y54132D01*

-X263117Y54021D01*

-X263096Y53904D01*

-X263094Y53786D01*

-X263111Y53670D01*

-X263145Y53557D01*

-X263197Y53450D01*

-X263264Y53354D01*

-X263346Y53269D01*

-X263441Y53198D01*

-X263546Y53144D01*

-X263949Y52985D01*

-X264366Y52868D01*

-X264793Y52789D01*

-X265224Y52750D01*

-X265441D01*

-Y52243D01*

-X261956Y52236D01*

-X261726Y52181D01*

-X261609Y52133D01*

-Y55166D01*

-X261610Y55166D01*

-X261727Y55150D01*

-X261846Y55152D01*

-X261963Y55173D01*

-X262075Y55211D01*

-X262179Y55267D01*

-X262274Y55338D01*

-X262356Y55424D01*

-X262424Y55521D01*

-X262476Y55627D01*

-X262511Y55741D01*

-X262527Y55858D01*

-X262525Y55977D01*

-X262505Y56093D01*

-X262464Y56205D01*

-X262355Y56480D01*

-X262275Y56765D01*

-X262221Y57057D01*

-X262194Y57352D01*

-Y57648D01*

-X262221Y57943D01*

-X262275Y58235D01*

-X262355Y58520D01*

-X262461Y58797D01*

-X262501Y58907D01*

-X262522Y59024D01*

-X262524Y59142D01*

-X262508Y59259D01*

-X262473Y59371D01*

-X262421Y59478D01*

-X262354Y59574D01*

-X262272Y59659D01*

-X262178Y59730D01*

-X262073Y59786D01*

-X261962Y59824D01*

-X261845Y59845D01*

-X261727Y59847D01*

-X261610Y59830D01*

-X261609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X265441D01*

-Y72265D01*

-X264696Y72206D01*

-X263969Y72031D01*

-X263278Y71745D01*

-X262640Y71355D01*

-X262072Y70869D01*

-X261609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X265441Y39000D02*X261609D01*

-Y42867D01*

-X261726Y42819D01*

-X261956Y42764D01*

-X262191Y42750D01*

-X265441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X261609D02*X239273D01*

-Y42867D01*

-X239374Y42909D01*

-X239575Y43033D01*

-X239755Y43186D01*

-X239908Y43366D01*

-X240032Y43567D01*

-X240122Y43785D01*

-X240177Y44015D01*

-X240191Y44250D01*

-X240177Y50985D01*

-X240122Y51215D01*

-X240032Y51433D01*

-X239908Y51634D01*

-X239755Y51814D01*

-X239575Y51967D01*

-X239374Y52091D01*

-X239273Y52133D01*

-Y55170D01*

-X239384Y55204D01*

-X239491Y55256D01*

-X239587Y55323D01*

-X239672Y55405D01*

-X239743Y55500D01*

-X239797Y55605D01*

-X239956Y56008D01*

-X240073Y56425D01*

-X240152Y56852D01*

-X240191Y57283D01*

-Y57717D01*

-X240152Y58148D01*

-X240073Y58575D01*

-X239956Y58992D01*

-X239801Y59397D01*

-X239746Y59502D01*

-X239675Y59597D01*

-X239589Y59679D01*

-X239492Y59747D01*

-X239386Y59799D01*

-X239273Y59834D01*

-Y64673D01*

-X239296Y64699D01*

-X239686Y65337D01*

-X239972Y66028D01*

-X240147Y66755D01*

-X240191Y67500D01*

-X240147Y68245D01*

-X239972Y68972D01*

-X239686Y69663D01*

-X239296Y70301D01*

-X239273Y70327D01*

-Y72500D01*

-X261609D01*

-Y70327D01*

-X261586Y70301D01*

-X261196Y69663D01*

-X260910Y68972D01*

-X260735Y68245D01*

-X260676Y67500D01*

-X260735Y66755D01*

-X260910Y66028D01*

-X261196Y65337D01*

-X261586Y64699D01*

-X261609Y64673D01*

-Y59830D01*

-X261498Y59796D01*

-X261391Y59744D01*

-X261295Y59677D01*

-X261210Y59595D01*

-X261139Y59500D01*

-X261085Y59395D01*

-X260926Y58992D01*

-X260809Y58575D01*

-X260730Y58148D01*

-X260691Y57717D01*

-Y57283D01*

-X260730Y56852D01*

-X260809Y56425D01*

-X260926Y56008D01*

-X261081Y55603D01*

-X261136Y55498D01*

-X261207Y55403D01*

-X261293Y55321D01*

-X261390Y55253D01*

-X261496Y55201D01*

-X261609Y55166D01*

-Y52133D01*

-X261508Y52091D01*

-X261307Y51967D01*

-X261127Y51814D01*

-X260974Y51634D01*

-X260850Y51433D01*

-X260760Y51215D01*

-X260705Y50985D01*

-X260691Y50750D01*

-X260705Y44015D01*

-X260760Y43785D01*

-X260850Y43567D01*

-X260974Y43366D01*

-X261127Y43186D01*

-X261307Y43033D01*

-X261508Y42909D01*

-X261609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X239273Y70327D02*X238810Y70869D01*

-X238242Y71355D01*

-X237604Y71745D01*

-X236913Y72031D01*

-X236186Y72206D01*

-X235441Y72265D01*

-Y72500D01*

-X239273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X239156Y52181D01*

-X238926Y52236D01*

-X238691Y52250D01*

-X235441Y52243D01*

-Y52750D01*

-X235658D01*

-X236089Y52789D01*

-X236516Y52868D01*

-X236933Y52985D01*

-X237338Y53140D01*

-X237443Y53195D01*

-X237538Y53266D01*

-X237620Y53352D01*

-X237688Y53449D01*

-X237740Y53555D01*

-X237775Y53669D01*

-X237791Y53786D01*

-X237789Y53905D01*

-X237768Y54022D01*

-X237730Y54134D01*

-X237674Y54238D01*

-X237603Y54333D01*

-X237517Y54415D01*

-X237420Y54483D01*

-X237314Y54535D01*

-X237200Y54570D01*

-X237083Y54586D01*

-X236964Y54584D01*

-X236848Y54564D01*

-X236736Y54523D01*

-X236461Y54414D01*

-X236176Y54334D01*

-X235884Y54280D01*

-X235589Y54253D01*

-X235441D01*

-Y60747D01*

-X235589D01*

-X235884Y60720D01*

-X236176Y60666D01*

-X236461Y60586D01*

-X236738Y60480D01*

-X236848Y60440D01*

-X236965Y60419D01*

-X237083Y60417D01*

-X237200Y60433D01*

-X237312Y60468D01*

-X237419Y60520D01*

-X237515Y60587D01*

-X237600Y60669D01*

-X237671Y60763D01*

-X237727Y60868D01*

-X237765Y60979D01*

-X237786Y61096D01*

-X237788Y61214D01*

-X237771Y61330D01*

-X237737Y61443D01*

-X237685Y61550D01*

-X237618Y61646D01*

-X237536Y61731D01*

-X237441Y61802D01*

-X237336Y61856D01*

-X236933Y62015D01*

-X236516Y62132D01*

-X236089Y62211D01*

-X235658Y62250D01*

-X235441D01*

-Y62735D01*

-X236186Y62794D01*

-X236913Y62969D01*

-X237604Y63255D01*

-X238242Y63645D01*

-X238810Y64131D01*

-X239273Y64673D01*

-Y59834D01*

-X239272Y59834D01*

-X239155Y59850D01*

-X239036Y59848D01*

-X238919Y59827D01*

-X238807Y59789D01*

-X238703Y59733D01*

-X238608Y59662D01*

-X238526Y59576D01*

-X238458Y59479D01*

-X238406Y59373D01*

-X238371Y59259D01*

-X238355Y59142D01*

-X238357Y59023D01*

-X238377Y58907D01*

-X238418Y58795D01*

-X238527Y58520D01*

-X238607Y58235D01*

-X238661Y57943D01*

-X238688Y57648D01*

-Y57352D01*

-X238661Y57057D01*

-X238607Y56765D01*

-X238527Y56480D01*

-X238421Y56203D01*

-X238381Y56093D01*

-X238360Y55976D01*

-X238358Y55858D01*

-X238374Y55741D01*

-X238409Y55629D01*

-X238461Y55522D01*

-X238528Y55426D01*

-X238610Y55341D01*

-X238704Y55270D01*

-X238809Y55214D01*

-X238920Y55176D01*

-X239037Y55155D01*

-X239155Y55153D01*

-X239271Y55170D01*

-X239273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X235441D01*

-Y42757D01*

-X238926Y42764D01*

-X239156Y42819D01*

-X239273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X231609Y64673D02*X232072Y64131D01*

-X232640Y63645D01*

-X233278Y63255D01*

-X233969Y62969D01*

-X234696Y62794D01*

-X235441Y62735D01*

-Y62250D01*

-X235224D01*

-X234793Y62211D01*

-X234366Y62132D01*

-X233949Y62015D01*

-X233544Y61860D01*

-X233439Y61805D01*

-X233344Y61734D01*

-X233262Y61648D01*

-X233194Y61551D01*

-X233142Y61445D01*

-X233107Y61331D01*

-X233091Y61214D01*

-X233093Y61095D01*

-X233114Y60978D01*

-X233152Y60866D01*

-X233208Y60762D01*

-X233279Y60667D01*

-X233365Y60585D01*

-X233462Y60517D01*

-X233568Y60465D01*

-X233682Y60430D01*

-X233799Y60414D01*

-X233918Y60416D01*

-X234034Y60436D01*

-X234146Y60477D01*

-X234421Y60586D01*

-X234706Y60666D01*

-X234998Y60720D01*

-X235293Y60747D01*

-X235441D01*

-Y54253D01*

-X235293D01*

-X234998Y54280D01*

-X234706Y54334D01*

-X234421Y54414D01*

-X234144Y54520D01*

-X234034Y54560D01*

-X233917Y54581D01*

-X233799Y54583D01*

-X233682Y54567D01*

-X233570Y54532D01*

-X233463Y54480D01*

-X233367Y54413D01*

-X233282Y54331D01*

-X233211Y54237D01*

-X233155Y54132D01*

-X233117Y54021D01*

-X233096Y53904D01*

-X233094Y53786D01*

-X233111Y53670D01*

-X233145Y53557D01*

-X233197Y53450D01*

-X233264Y53354D01*

-X233346Y53269D01*

-X233441Y53198D01*

-X233546Y53144D01*

-X233949Y52985D01*

-X234366Y52868D01*

-X234793Y52789D01*

-X235224Y52750D01*

-X235441D01*

-Y52243D01*

-X231956Y52236D01*

-X231726Y52181D01*

-X231609Y52133D01*

-Y55166D01*

-X231610Y55166D01*

-X231727Y55150D01*

-X231846Y55152D01*

-X231963Y55173D01*

-X232075Y55211D01*

-X232179Y55267D01*

-X232274Y55338D01*

-X232356Y55424D01*

-X232424Y55521D01*

-X232476Y55627D01*

-X232511Y55741D01*

-X232527Y55858D01*

-X232525Y55977D01*

-X232505Y56093D01*

-X232464Y56205D01*

-X232355Y56480D01*

-X232275Y56765D01*

-X232221Y57057D01*

-X232194Y57352D01*

-Y57648D01*

-X232221Y57943D01*

-X232275Y58235D01*

-X232355Y58520D01*

-X232461Y58797D01*

-X232501Y58907D01*

-X232522Y59024D01*

-X232524Y59142D01*

-X232508Y59259D01*

-X232473Y59371D01*

-X232421Y59478D01*

-X232354Y59574D01*

-X232272Y59659D01*

-X232178Y59730D01*

-X232073Y59786D01*

-X231962Y59824D01*

-X231845Y59845D01*

-X231727Y59847D01*

-X231610Y59830D01*

-X231609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X235441D01*

-Y72265D01*

-X234696Y72206D01*

-X233969Y72031D01*

-X233278Y71745D01*

-X232640Y71355D01*

-X232072Y70869D01*

-X231609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X235441Y39000D02*X231609D01*

-Y42867D01*

-X231726Y42819D01*

-X231956Y42764D01*

-X232191Y42750D01*

-X235441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X231609D02*X209273D01*

-Y42867D01*

-X209374Y42909D01*

-X209575Y43033D01*

-X209755Y43186D01*

-X209908Y43366D01*

-X210032Y43567D01*

-X210122Y43785D01*

-X210177Y44015D01*

-X210191Y44250D01*

-X210177Y50985D01*

-X210122Y51215D01*

-X210032Y51433D01*

-X209908Y51634D01*

-X209755Y51814D01*

-X209575Y51967D01*

-X209374Y52091D01*

-X209273Y52133D01*

-Y55170D01*

-X209384Y55204D01*

-X209491Y55256D01*

-X209587Y55323D01*

-X209672Y55405D01*

-X209743Y55500D01*

-X209797Y55605D01*

-X209956Y56008D01*

-X210073Y56425D01*

-X210152Y56852D01*

-X210191Y57283D01*

-Y57717D01*

-X210152Y58148D01*

-X210073Y58575D01*

-X209956Y58992D01*

-X209801Y59397D01*

-X209746Y59502D01*

-X209675Y59597D01*

-X209589Y59679D01*

-X209492Y59747D01*

-X209386Y59799D01*

-X209273Y59834D01*

-Y64673D01*

-X209296Y64699D01*

-X209686Y65337D01*

-X209972Y66028D01*

-X210147Y66755D01*

-X210191Y67500D01*

-X210147Y68245D01*

-X209972Y68972D01*

-X209686Y69663D01*

-X209296Y70301D01*

-X209273Y70327D01*

-Y72500D01*

-X231609D01*

-Y70327D01*

-X231586Y70301D01*

-X231196Y69663D01*

-X230910Y68972D01*

-X230735Y68245D01*

-X230676Y67500D01*

-X230735Y66755D01*

-X230910Y66028D01*

-X231196Y65337D01*

-X231586Y64699D01*

-X231609Y64673D01*

-Y59830D01*

-X231498Y59796D01*

-X231391Y59744D01*

-X231295Y59677D01*

-X231210Y59595D01*

-X231139Y59500D01*

-X231085Y59395D01*

-X230926Y58992D01*

-X230809Y58575D01*

-X230730Y58148D01*

-X230691Y57717D01*

-Y57283D01*

-X230730Y56852D01*

-X230809Y56425D01*

-X230926Y56008D01*

-X231081Y55603D01*

-X231136Y55498D01*

-X231207Y55403D01*

-X231293Y55321D01*

-X231390Y55253D01*

-X231496Y55201D01*

-X231609Y55166D01*

-Y52133D01*

-X231508Y52091D01*

-X231307Y51967D01*

-X231127Y51814D01*

-X230974Y51634D01*

-X230850Y51433D01*

-X230760Y51215D01*

-X230705Y50985D01*

-X230691Y50750D01*

-X230705Y44015D01*

-X230760Y43785D01*

-X230850Y43567D01*

-X230974Y43366D01*

-X231127Y43186D01*

-X231307Y43033D01*

-X231508Y42909D01*

-X231609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X209273Y70327D02*X208810Y70869D01*

-X208242Y71355D01*

-X207604Y71745D01*

-X206913Y72031D01*

-X206186Y72206D01*

-X205441Y72265D01*

-Y72500D01*

-X209273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X209156Y52181D01*

-X208926Y52236D01*

-X208691Y52250D01*

-X205441Y52243D01*

-Y52750D01*

-X205658D01*

-X206089Y52789D01*

-X206516Y52868D01*

-X206933Y52985D01*

-X207338Y53140D01*

-X207443Y53195D01*

-X207538Y53266D01*

-X207620Y53352D01*

-X207688Y53449D01*

-X207740Y53555D01*

-X207775Y53669D01*

-X207791Y53786D01*

-X207789Y53905D01*

-X207768Y54022D01*

-X207730Y54134D01*

-X207674Y54238D01*

-X207603Y54333D01*

-X207517Y54415D01*

-X207420Y54483D01*

-X207314Y54535D01*

-X207200Y54570D01*

-X207083Y54586D01*

-X206964Y54584D01*

-X206848Y54564D01*

-X206736Y54523D01*

-X206461Y54414D01*

-X206176Y54334D01*

-X205884Y54280D01*

-X205589Y54253D01*

-X205441D01*

-Y60747D01*

-X205589D01*

-X205884Y60720D01*

-X206176Y60666D01*

-X206461Y60586D01*

-X206738Y60480D01*

-X206848Y60440D01*

-X206965Y60419D01*

-X207083Y60417D01*

-X207200Y60433D01*

-X207312Y60468D01*

-X207419Y60520D01*

-X207515Y60587D01*

-X207600Y60669D01*

-X207671Y60763D01*

-X207727Y60868D01*

-X207765Y60979D01*

-X207786Y61096D01*

-X207788Y61214D01*

-X207771Y61330D01*

-X207737Y61443D01*

-X207685Y61550D01*

-X207618Y61646D01*

-X207536Y61731D01*

-X207441Y61802D01*

-X207336Y61856D01*

-X206933Y62015D01*

-X206516Y62132D01*

-X206089Y62211D01*

-X205658Y62250D01*

-X205441D01*

-Y62735D01*

-X206186Y62794D01*

-X206913Y62969D01*

-X207604Y63255D01*

-X208242Y63645D01*

-X208810Y64131D01*

-X209273Y64673D01*

-Y59834D01*

-X209272Y59834D01*

-X209155Y59850D01*

-X209036Y59848D01*

-X208919Y59827D01*

-X208807Y59789D01*

-X208703Y59733D01*

-X208608Y59662D01*

-X208526Y59576D01*

-X208458Y59479D01*

-X208406Y59373D01*

-X208371Y59259D01*

-X208355Y59142D01*

-X208357Y59023D01*

-X208377Y58907D01*

-X208418Y58795D01*

-X208527Y58520D01*

-X208607Y58235D01*

-X208661Y57943D01*

-X208688Y57648D01*

-Y57352D01*

-X208661Y57057D01*

-X208607Y56765D01*

-X208527Y56480D01*

-X208421Y56203D01*

-X208381Y56093D01*

-X208360Y55976D01*

-X208358Y55858D01*

-X208374Y55741D01*

-X208409Y55629D01*

-X208461Y55522D01*

-X208528Y55426D01*

-X208610Y55341D01*

-X208704Y55270D01*

-X208809Y55214D01*

-X208920Y55176D01*

-X209037Y55155D01*

-X209155Y55153D01*

-X209271Y55170D01*

-X209273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X205441D01*

-Y42757D01*

-X208926Y42764D01*

-X209156Y42819D01*

-X209273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X201609Y64673D02*X202072Y64131D01*

-X202640Y63645D01*

-X203278Y63255D01*

-X203969Y62969D01*

-X204696Y62794D01*

-X205441Y62735D01*

-Y62250D01*

-X205224D01*

-X204793Y62211D01*

-X204366Y62132D01*

-X203949Y62015D01*

-X203544Y61860D01*

-X203439Y61805D01*

-X203344Y61734D01*

-X203262Y61648D01*

-X203194Y61551D01*

-X203142Y61445D01*

-X203107Y61331D01*

-X203091Y61214D01*

-X203093Y61095D01*

-X203114Y60978D01*

-X203152Y60866D01*

-X203208Y60762D01*

-X203279Y60667D01*

-X203365Y60585D01*

-X203462Y60517D01*

-X203568Y60465D01*

-X203682Y60430D01*

-X203799Y60414D01*

-X203918Y60416D01*

-X204034Y60436D01*

-X204146Y60477D01*

-X204421Y60586D01*

-X204706Y60666D01*

-X204998Y60720D01*

-X205293Y60747D01*

-X205441D01*

-Y54253D01*

-X205293D01*

-X204998Y54280D01*

-X204706Y54334D01*

-X204421Y54414D01*

-X204144Y54520D01*

-X204034Y54560D01*

-X203917Y54581D01*

-X203799Y54583D01*

-X203682Y54567D01*

-X203570Y54532D01*

-X203463Y54480D01*

-X203367Y54413D01*

-X203282Y54331D01*

-X203211Y54237D01*

-X203155Y54132D01*

-X203117Y54021D01*

-X203096Y53904D01*

-X203094Y53786D01*

-X203111Y53670D01*

-X203145Y53557D01*

-X203197Y53450D01*

-X203264Y53354D01*

-X203346Y53269D01*

-X203441Y53198D01*

-X203546Y53144D01*

-X203949Y52985D01*

-X204366Y52868D01*

-X204793Y52789D01*

-X205224Y52750D01*

-X205441D01*

-Y52243D01*

-X201956Y52236D01*

-X201726Y52181D01*

-X201609Y52133D01*

-Y55166D01*

-X201610Y55166D01*

-X201727Y55150D01*

-X201846Y55152D01*

-X201963Y55173D01*

-X202075Y55211D01*

-X202179Y55267D01*

-X202274Y55338D01*

-X202356Y55424D01*

-X202424Y55521D01*

-X202476Y55627D01*

-X202511Y55741D01*

-X202527Y55858D01*

-X202525Y55977D01*

-X202505Y56093D01*

-X202464Y56205D01*

-X202355Y56480D01*

-X202275Y56765D01*

-X202221Y57057D01*

-X202194Y57352D01*

-Y57648D01*

-X202221Y57943D01*

-X202275Y58235D01*

-X202355Y58520D01*

-X202461Y58797D01*

-X202501Y58907D01*

-X202522Y59024D01*

-X202524Y59142D01*

-X202508Y59259D01*

-X202473Y59371D01*

-X202421Y59478D01*

-X202354Y59574D01*

-X202272Y59659D01*

-X202178Y59730D01*

-X202073Y59786D01*

-X201962Y59824D01*

-X201845Y59845D01*

-X201727Y59847D01*

-X201610Y59830D01*

-X201609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X205441D01*

-Y72265D01*

-X204696Y72206D01*

-X203969Y72031D01*

-X203278Y71745D01*

-X202640Y71355D01*

-X202072Y70869D01*

-X201609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X205441Y39000D02*X201609D01*

-Y42867D01*

-X201726Y42819D01*

-X201956Y42764D01*

-X202191Y42750D01*

-X205441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X201609D02*X179273D01*

-Y42867D01*

-X179374Y42909D01*

-X179575Y43033D01*

-X179755Y43186D01*

-X179908Y43366D01*

-X180032Y43567D01*

-X180122Y43785D01*

-X180177Y44015D01*

-X180191Y44250D01*

-X180177Y50985D01*

-X180122Y51215D01*

-X180032Y51433D01*

-X179908Y51634D01*

-X179755Y51814D01*

-X179575Y51967D01*

-X179374Y52091D01*

-X179273Y52133D01*

-Y55170D01*

-X179384Y55204D01*

-X179491Y55256D01*

-X179587Y55323D01*

-X179672Y55405D01*

-X179743Y55500D01*

-X179797Y55605D01*

-X179956Y56008D01*

-X180073Y56425D01*

-X180152Y56852D01*

-X180191Y57283D01*

-Y57717D01*

-X180152Y58148D01*

-X180073Y58575D01*

-X179956Y58992D01*

-X179801Y59397D01*

-X179746Y59502D01*

-X179675Y59597D01*

-X179589Y59679D01*

-X179492Y59747D01*

-X179386Y59799D01*

-X179273Y59834D01*

-Y64673D01*

-X179296Y64699D01*

-X179686Y65337D01*

-X179972Y66028D01*

-X180147Y66755D01*

-X180191Y67500D01*

-X180147Y68245D01*

-X179972Y68972D01*

-X179686Y69663D01*

-X179296Y70301D01*

-X179273Y70327D01*

-Y72500D01*

-X201609D01*

-Y70327D01*

-X201586Y70301D01*

-X201196Y69663D01*

-X200910Y68972D01*

-X200735Y68245D01*

-X200676Y67500D01*

-X200735Y66755D01*

-X200910Y66028D01*

-X201196Y65337D01*

-X201586Y64699D01*

-X201609Y64673D01*

-Y59830D01*

-X201498Y59796D01*

-X201391Y59744D01*

-X201295Y59677D01*

-X201210Y59595D01*

-X201139Y59500D01*

-X201085Y59395D01*

-X200926Y58992D01*

-X200809Y58575D01*

-X200730Y58148D01*

-X200691Y57717D01*

-Y57283D01*

-X200730Y56852D01*

-X200809Y56425D01*

-X200926Y56008D01*

-X201081Y55603D01*

-X201136Y55498D01*

-X201207Y55403D01*

-X201293Y55321D01*

-X201390Y55253D01*

-X201496Y55201D01*

-X201609Y55166D01*

-Y52133D01*

-X201508Y52091D01*

-X201307Y51967D01*

-X201127Y51814D01*

-X200974Y51634D01*

-X200850Y51433D01*

-X200760Y51215D01*

-X200705Y50985D01*

-X200691Y50750D01*

-X200705Y44015D01*

-X200760Y43785D01*

-X200850Y43567D01*

-X200974Y43366D01*

-X201127Y43186D01*

-X201307Y43033D01*

-X201508Y42909D01*

-X201609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X179273Y70327D02*X178810Y70869D01*

-X178242Y71355D01*

-X177604Y71745D01*

-X176913Y72031D01*

-X176186Y72206D01*

-X175441Y72265D01*

-Y72500D01*

-X179273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X179156Y52181D01*

-X178926Y52236D01*

-X178691Y52250D01*

-X175441Y52243D01*

-Y52750D01*

-X175658D01*

-X176089Y52789D01*

-X176516Y52868D01*

-X176933Y52985D01*

-X177338Y53140D01*

-X177443Y53195D01*

-X177538Y53266D01*

-X177620Y53352D01*

-X177688Y53449D01*

-X177740Y53555D01*

-X177775Y53669D01*

-X177791Y53786D01*

-X177789Y53905D01*

-X177768Y54022D01*

-X177730Y54134D01*

-X177674Y54238D01*

-X177603Y54333D01*

-X177517Y54415D01*

-X177420Y54483D01*

-X177314Y54535D01*

-X177200Y54570D01*

-X177083Y54586D01*

-X176964Y54584D01*

-X176848Y54564D01*

-X176736Y54523D01*

-X176461Y54414D01*

-X176176Y54334D01*

-X175884Y54280D01*

-X175589Y54253D01*

-X175441D01*

-Y60747D01*

-X175589D01*

-X175884Y60720D01*

-X176176Y60666D01*

-X176461Y60586D01*

-X176738Y60480D01*

-X176848Y60440D01*

-X176965Y60419D01*

-X177083Y60417D01*

-X177200Y60433D01*

-X177312Y60468D01*

-X177419Y60520D01*

-X177515Y60587D01*

-X177600Y60669D01*

-X177671Y60763D01*

-X177727Y60868D01*

-X177765Y60979D01*

-X177786Y61096D01*

-X177788Y61214D01*

-X177771Y61330D01*

-X177737Y61443D01*

-X177685Y61550D01*

-X177618Y61646D01*

-X177536Y61731D01*

-X177441Y61802D01*

-X177336Y61856D01*

-X176933Y62015D01*

-X176516Y62132D01*

-X176089Y62211D01*

-X175658Y62250D01*

-X175441D01*

-Y62735D01*

-X176186Y62794D01*

-X176913Y62969D01*

-X177604Y63255D01*

-X178242Y63645D01*

-X178810Y64131D01*

-X179273Y64673D01*

-Y59834D01*

-X179272Y59834D01*

-X179155Y59850D01*

-X179036Y59848D01*

-X178919Y59827D01*

-X178807Y59789D01*

-X178703Y59733D01*

-X178608Y59662D01*

-X178526Y59576D01*

-X178458Y59479D01*

-X178406Y59373D01*

-X178371Y59259D01*

-X178355Y59142D01*

-X178357Y59023D01*

-X178377Y58907D01*

-X178418Y58795D01*

-X178527Y58520D01*

-X178607Y58235D01*

-X178661Y57943D01*

-X178688Y57648D01*

-Y57352D01*

-X178661Y57057D01*

-X178607Y56765D01*

-X178527Y56480D01*

-X178421Y56203D01*

-X178381Y56093D01*

-X178360Y55976D01*

-X178358Y55858D01*

-X178374Y55741D01*

-X178409Y55629D01*

-X178461Y55522D01*

-X178528Y55426D01*

-X178610Y55341D01*

-X178704Y55270D01*

-X178809Y55214D01*

-X178920Y55176D01*

-X179037Y55155D01*

-X179155Y55153D01*

-X179271Y55170D01*

-X179273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X175441D01*

-Y42757D01*

-X178926Y42764D01*

-X179156Y42819D01*

-X179273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X171609Y64673D02*X172072Y64131D01*

-X172640Y63645D01*

-X173278Y63255D01*

-X173969Y62969D01*

-X174696Y62794D01*

-X175441Y62735D01*

-Y62250D01*

-X175224D01*

-X174793Y62211D01*

-X174366Y62132D01*

-X173949Y62015D01*

-X173544Y61860D01*

-X173439Y61805D01*

-X173344Y61734D01*

-X173262Y61648D01*

-X173194Y61551D01*

-X173142Y61445D01*

-X173107Y61331D01*

-X173091Y61214D01*

-X173093Y61095D01*

-X173114Y60978D01*

-X173152Y60866D01*

-X173208Y60762D01*

-X173279Y60667D01*

-X173365Y60585D01*

-X173462Y60517D01*

-X173568Y60465D01*

-X173682Y60430D01*

-X173799Y60414D01*

-X173918Y60416D01*

-X174034Y60436D01*

-X174146Y60477D01*

-X174421Y60586D01*

-X174706Y60666D01*

-X174998Y60720D01*

-X175293Y60747D01*

-X175441D01*

-Y54253D01*

-X175293D01*

-X174998Y54280D01*

-X174706Y54334D01*

-X174421Y54414D01*

-X174144Y54520D01*

-X174034Y54560D01*

-X173917Y54581D01*

-X173799Y54583D01*

-X173682Y54567D01*

-X173570Y54532D01*

-X173463Y54480D01*

-X173367Y54413D01*

-X173282Y54331D01*

-X173211Y54237D01*

-X173155Y54132D01*

-X173117Y54021D01*

-X173096Y53904D01*

-X173094Y53786D01*

-X173111Y53670D01*

-X173145Y53557D01*

-X173197Y53450D01*

-X173264Y53354D01*

-X173346Y53269D01*

-X173441Y53198D01*

-X173546Y53144D01*

-X173949Y52985D01*

-X174366Y52868D01*

-X174793Y52789D01*

-X175224Y52750D01*

-X175441D01*

-Y52243D01*

-X171956Y52236D01*

-X171726Y52181D01*

-X171609Y52133D01*

-Y55166D01*

-X171610Y55166D01*

-X171727Y55150D01*

-X171846Y55152D01*

-X171963Y55173D01*

-X172075Y55211D01*

-X172179Y55267D01*

-X172274Y55338D01*

-X172356Y55424D01*

-X172424Y55521D01*

-X172476Y55627D01*

-X172511Y55741D01*

-X172527Y55858D01*

-X172525Y55977D01*

-X172505Y56093D01*

-X172464Y56205D01*

-X172355Y56480D01*

-X172275Y56765D01*

-X172221Y57057D01*

-X172194Y57352D01*

-Y57648D01*

-X172221Y57943D01*

-X172275Y58235D01*

-X172355Y58520D01*

-X172461Y58797D01*

-X172501Y58907D01*

-X172522Y59024D01*

-X172524Y59142D01*

-X172508Y59259D01*

-X172473Y59371D01*

-X172421Y59478D01*

-X172354Y59574D01*

-X172272Y59659D01*

-X172178Y59730D01*

-X172073Y59786D01*

-X171962Y59824D01*

-X171845Y59845D01*

-X171727Y59847D01*

-X171610Y59830D01*

-X171609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X175441D01*

-Y72265D01*

-X174696Y72206D01*

-X173969Y72031D01*

-X173278Y71745D01*

-X172640Y71355D01*

-X172072Y70869D01*

-X171609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X175441Y39000D02*X171609D01*

-Y42867D01*

-X171726Y42819D01*

-X171956Y42764D01*

-X172191Y42750D01*

-X175441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X171609D02*X149273D01*

-Y42867D01*

-X149374Y42909D01*

-X149575Y43033D01*

-X149755Y43186D01*

-X149908Y43366D01*

-X150032Y43567D01*

-X150122Y43785D01*

-X150177Y44015D01*

-X150191Y44250D01*

-X150177Y50985D01*

-X150122Y51215D01*

-X150032Y51433D01*

-X149908Y51634D01*

-X149755Y51814D01*

-X149575Y51967D01*

-X149374Y52091D01*

-X149273Y52133D01*

-Y55170D01*

-X149384Y55204D01*

-X149491Y55256D01*

-X149587Y55323D01*

-X149672Y55405D01*

-X149743Y55500D01*

-X149797Y55605D01*

-X149956Y56008D01*

-X150073Y56425D01*

-X150152Y56852D01*

-X150191Y57283D01*

-Y57717D01*

-X150152Y58148D01*

-X150073Y58575D01*

-X149956Y58992D01*

-X149801Y59397D01*

-X149746Y59502D01*

-X149675Y59597D01*

-X149589Y59679D01*

-X149492Y59747D01*

-X149386Y59799D01*

-X149273Y59834D01*

-Y64673D01*

-X149296Y64699D01*

-X149686Y65337D01*

-X149972Y66028D01*

-X150147Y66755D01*

-X150191Y67500D01*

-X150147Y68245D01*

-X149972Y68972D01*

-X149686Y69663D01*

-X149296Y70301D01*

-X149273Y70327D01*

-Y72500D01*

-X171609D01*

-Y70327D01*

-X171586Y70301D01*

-X171196Y69663D01*

-X170910Y68972D01*

-X170735Y68245D01*

-X170676Y67500D01*

-X170735Y66755D01*

-X170910Y66028D01*

-X171196Y65337D01*

-X171586Y64699D01*

-X171609Y64673D01*

-Y59830D01*

-X171498Y59796D01*

-X171391Y59744D01*

-X171295Y59677D01*

-X171210Y59595D01*

-X171139Y59500D01*

-X171085Y59395D01*

-X170926Y58992D01*

-X170809Y58575D01*

-X170730Y58148D01*

-X170691Y57717D01*

-Y57283D01*

-X170730Y56852D01*

-X170809Y56425D01*

-X170926Y56008D01*

-X171081Y55603D01*

-X171136Y55498D01*

-X171207Y55403D01*

-X171293Y55321D01*

-X171390Y55253D01*

-X171496Y55201D01*

-X171609Y55166D01*

-Y52133D01*

-X171508Y52091D01*

-X171307Y51967D01*

-X171127Y51814D01*

-X170974Y51634D01*

-X170850Y51433D01*

-X170760Y51215D01*

-X170705Y50985D01*

-X170691Y50750D01*

-X170705Y44015D01*

-X170760Y43785D01*

-X170850Y43567D01*

-X170974Y43366D01*

-X171127Y43186D01*

-X171307Y43033D01*

-X171508Y42909D01*

-X171609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X149273Y70327D02*X148810Y70869D01*

-X148242Y71355D01*

-X147604Y71745D01*

-X146913Y72031D01*

-X146186Y72206D01*

-X145441Y72265D01*

-Y72500D01*

-X149273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X149156Y52181D01*

-X148926Y52236D01*

-X148691Y52250D01*

-X145441Y52243D01*

-Y52750D01*

-X145658D01*

-X146089Y52789D01*

-X146516Y52868D01*

-X146933Y52985D01*

-X147338Y53140D01*

-X147443Y53195D01*

-X147538Y53266D01*

-X147620Y53352D01*

-X147688Y53449D01*

-X147740Y53555D01*

-X147775Y53669D01*

-X147791Y53786D01*

-X147789Y53905D01*

-X147768Y54022D01*

-X147730Y54134D01*

-X147674Y54238D01*

-X147603Y54333D01*

-X147517Y54415D01*

-X147420Y54483D01*

-X147314Y54535D01*

-X147200Y54570D01*

-X147083Y54586D01*

-X146964Y54584D01*

-X146848Y54564D01*

-X146736Y54523D01*

-X146461Y54414D01*

-X146176Y54334D01*

-X145884Y54280D01*

-X145589Y54253D01*

-X145441D01*

-Y60747D01*

-X145589D01*

-X145884Y60720D01*

-X146176Y60666D01*

-X146461Y60586D01*

-X146738Y60480D01*

-X146848Y60440D01*

-X146965Y60419D01*

-X147083Y60417D01*

-X147200Y60433D01*

-X147312Y60468D01*

-X147419Y60520D01*

-X147515Y60587D01*

-X147600Y60669D01*

-X147671Y60763D01*

-X147727Y60868D01*

-X147765Y60979D01*

-X147786Y61096D01*

-X147788Y61214D01*

-X147771Y61330D01*

-X147737Y61443D01*

-X147685Y61550D01*

-X147618Y61646D01*

-X147536Y61731D01*

-X147441Y61802D01*

-X147336Y61856D01*

-X146933Y62015D01*

-X146516Y62132D01*

-X146089Y62211D01*

-X145658Y62250D01*

-X145441D01*

-Y62735D01*

-X146186Y62794D01*

-X146913Y62969D01*

-X147604Y63255D01*

-X148242Y63645D01*

-X148810Y64131D01*

-X149273Y64673D01*

-Y59834D01*

-X149272Y59834D01*

-X149155Y59850D01*

-X149036Y59848D01*

-X148919Y59827D01*

-X148807Y59789D01*

-X148703Y59733D01*

-X148608Y59662D01*

-X148526Y59576D01*

-X148458Y59479D01*

-X148406Y59373D01*

-X148371Y59259D01*

-X148355Y59142D01*

-X148357Y59023D01*

-X148377Y58907D01*

-X148418Y58795D01*

-X148527Y58520D01*

-X148607Y58235D01*

-X148661Y57943D01*

-X148688Y57648D01*

-Y57352D01*

-X148661Y57057D01*

-X148607Y56765D01*

-X148527Y56480D01*

-X148421Y56203D01*

-X148381Y56093D01*

-X148360Y55976D01*

-X148358Y55858D01*

-X148374Y55741D01*

-X148409Y55629D01*

-X148461Y55522D01*

-X148528Y55426D01*

-X148610Y55341D01*

-X148704Y55270D01*

-X148809Y55214D01*

-X148920Y55176D01*

-X149037Y55155D01*

-X149155Y55153D01*

-X149271Y55170D01*

-X149273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X145441D01*

-Y42757D01*

-X148926Y42764D01*

-X149156Y42819D01*

-X149273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X141609Y64673D02*X142072Y64131D01*

-X142640Y63645D01*

-X143278Y63255D01*

-X143969Y62969D01*

-X144696Y62794D01*

-X145441Y62735D01*

-Y62250D01*

-X145224D01*

-X144793Y62211D01*

-X144366Y62132D01*

-X143949Y62015D01*

-X143544Y61860D01*

-X143439Y61805D01*

-X143344Y61734D01*

-X143262Y61648D01*

-X143194Y61551D01*

-X143142Y61445D01*

-X143107Y61331D01*

-X143091Y61214D01*

-X143093Y61095D01*

-X143114Y60978D01*

-X143152Y60866D01*

-X143208Y60762D01*

-X143279Y60667D01*

-X143365Y60585D01*

-X143462Y60517D01*

-X143568Y60465D01*

-X143682Y60430D01*

-X143799Y60414D01*

-X143918Y60416D01*

-X144034Y60436D01*

-X144146Y60477D01*

-X144421Y60586D01*

-X144706Y60666D01*

-X144998Y60720D01*

-X145293Y60747D01*

-X145441D01*

-Y54253D01*

-X145293D01*

-X144998Y54280D01*

-X144706Y54334D01*

-X144421Y54414D01*

-X144144Y54520D01*

-X144034Y54560D01*

-X143917Y54581D01*

-X143799Y54583D01*

-X143682Y54567D01*

-X143570Y54532D01*

-X143463Y54480D01*

-X143367Y54413D01*

-X143282Y54331D01*

-X143211Y54237D01*

-X143155Y54132D01*

-X143117Y54021D01*

-X143096Y53904D01*

-X143094Y53786D01*

-X143111Y53670D01*

-X143145Y53557D01*

-X143197Y53450D01*

-X143264Y53354D01*

-X143346Y53269D01*

-X143441Y53198D01*

-X143546Y53144D01*

-X143949Y52985D01*

-X144366Y52868D01*

-X144793Y52789D01*

-X145224Y52750D01*

-X145441D01*

-Y52243D01*

-X141956Y52236D01*

-X141726Y52181D01*

-X141609Y52133D01*

-Y55166D01*

-X141610Y55166D01*

-X141727Y55150D01*

-X141846Y55152D01*

-X141963Y55173D01*

-X142075Y55211D01*

-X142179Y55267D01*

-X142274Y55338D01*

-X142356Y55424D01*

-X142424Y55521D01*

-X142476Y55627D01*

-X142511Y55741D01*

-X142527Y55858D01*

-X142525Y55977D01*

-X142505Y56093D01*

-X142464Y56205D01*

-X142355Y56480D01*

-X142275Y56765D01*

-X142221Y57057D01*

-X142194Y57352D01*

-Y57648D01*

-X142221Y57943D01*

-X142275Y58235D01*

-X142355Y58520D01*

-X142461Y58797D01*

-X142501Y58907D01*

-X142522Y59024D01*

-X142524Y59142D01*

-X142508Y59259D01*

-X142473Y59371D01*

-X142421Y59478D01*

-X142354Y59574D01*

-X142272Y59659D01*

-X142178Y59730D01*

-X142073Y59786D01*

-X141962Y59824D01*

-X141845Y59845D01*

-X141727Y59847D01*

-X141610Y59830D01*

-X141609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X145441D01*

-Y72265D01*

-X144696Y72206D01*

-X143969Y72031D01*

-X143278Y71745D01*

-X142640Y71355D01*

-X142072Y70869D01*

-X141609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X145441Y39000D02*X141609D01*

-Y42867D01*

-X141726Y42819D01*

-X141956Y42764D01*

-X142191Y42750D01*

-X145441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X141609D02*X119273D01*

-Y42867D01*

-X119374Y42909D01*

-X119575Y43033D01*

-X119755Y43186D01*

-X119908Y43366D01*

-X120032Y43567D01*

-X120122Y43785D01*

-X120177Y44015D01*

-X120191Y44250D01*

-X120177Y50985D01*

-X120122Y51215D01*

-X120032Y51433D01*

-X119908Y51634D01*

-X119755Y51814D01*

-X119575Y51967D01*

-X119374Y52091D01*

-X119273Y52133D01*

-Y55170D01*

-X119384Y55204D01*

-X119491Y55256D01*

-X119587Y55323D01*

-X119672Y55405D01*

-X119743Y55500D01*

-X119797Y55605D01*

-X119956Y56008D01*

-X120073Y56425D01*

-X120152Y56852D01*

-X120191Y57283D01*

-Y57717D01*

-X120152Y58148D01*

-X120073Y58575D01*

-X119956Y58992D01*

-X119801Y59397D01*

-X119746Y59502D01*

-X119675Y59597D01*

-X119589Y59679D01*

-X119492Y59747D01*

-X119386Y59799D01*

-X119273Y59834D01*

-Y64673D01*

-X119296Y64699D01*

-X119686Y65337D01*

-X119972Y66028D01*

-X120147Y66755D01*

-X120191Y67500D01*

-X120147Y68245D01*

-X119972Y68972D01*

-X119686Y69663D01*

-X119296Y70301D01*

-X119273Y70327D01*

-Y72500D01*

-X141609D01*

-Y70327D01*

-X141586Y70301D01*

-X141196Y69663D01*

-X140910Y68972D01*

-X140735Y68245D01*

-X140676Y67500D01*

-X140735Y66755D01*

-X140910Y66028D01*

-X141196Y65337D01*

-X141586Y64699D01*

-X141609Y64673D01*

-Y59830D01*

-X141498Y59796D01*

-X141391Y59744D01*

-X141295Y59677D01*

-X141210Y59595D01*

-X141139Y59500D01*

-X141085Y59395D01*

-X140926Y58992D01*

-X140809Y58575D01*

-X140730Y58148D01*

-X140691Y57717D01*

-Y57283D01*

-X140730Y56852D01*

-X140809Y56425D01*

-X140926Y56008D01*

-X141081Y55603D01*

-X141136Y55498D01*

-X141207Y55403D01*

-X141293Y55321D01*

-X141390Y55253D01*

-X141496Y55201D01*

-X141609Y55166D01*

-Y52133D01*

-X141508Y52091D01*

-X141307Y51967D01*

-X141127Y51814D01*

-X140974Y51634D01*

-X140850Y51433D01*

-X140760Y51215D01*

-X140705Y50985D01*

-X140691Y50750D01*

-X140705Y44015D01*

-X140760Y43785D01*

-X140850Y43567D01*

-X140974Y43366D01*

-X141127Y43186D01*

-X141307Y43033D01*

-X141508Y42909D01*

-X141609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X119273Y70327D02*X118810Y70869D01*

-X118242Y71355D01*

-X117604Y71745D01*

-X116913Y72031D01*

-X116186Y72206D01*

-X115441Y72265D01*

-Y72500D01*

-X119273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X119156Y52181D01*

-X118926Y52236D01*

-X118691Y52250D01*

-X115441Y52243D01*

-Y52750D01*

-X115658D01*

-X116089Y52789D01*

-X116516Y52868D01*

-X116933Y52985D01*

-X117338Y53140D01*

-X117443Y53195D01*

-X117538Y53266D01*

-X117620Y53352D01*

-X117688Y53449D01*

-X117740Y53555D01*

-X117775Y53669D01*

-X117791Y53786D01*

-X117789Y53905D01*

-X117768Y54022D01*

-X117730Y54134D01*

-X117674Y54238D01*

-X117603Y54333D01*

-X117517Y54415D01*

-X117420Y54483D01*

-X117314Y54535D01*

-X117200Y54570D01*

-X117083Y54586D01*

-X116964Y54584D01*

-X116847Y54564D01*

-X116736Y54523D01*

-X116461Y54414D01*

-X116176Y54334D01*

-X115884Y54280D01*

-X115589Y54253D01*

-X115441D01*

-Y60747D01*

-X115589D01*

-X115884Y60720D01*

-X116176Y60666D01*

-X116461Y60586D01*

-X116738Y60480D01*

-X116848Y60440D01*

-X116965Y60419D01*

-X117083Y60417D01*

-X117200Y60433D01*

-X117312Y60468D01*

-X117419Y60520D01*

-X117515Y60587D01*

-X117600Y60669D01*

-X117671Y60763D01*

-X117727Y60868D01*

-X117765Y60979D01*

-X117786Y61096D01*

-X117788Y61214D01*

-X117771Y61330D01*

-X117737Y61443D01*

-X117685Y61550D01*

-X117618Y61646D01*

-X117536Y61731D01*

-X117441Y61802D01*

-X117336Y61856D01*

-X116933Y62015D01*

-X116516Y62132D01*

-X116089Y62211D01*

-X115658Y62250D01*

-X115441D01*

-Y62735D01*

-X116186Y62794D01*

-X116913Y62969D01*

-X117604Y63255D01*

-X118242Y63645D01*

-X118810Y64131D01*

-X119273Y64673D01*

-Y59834D01*

-X119272Y59834D01*

-X119155Y59850D01*

-X119036Y59848D01*

-X118919Y59827D01*

-X118807Y59789D01*

-X118703Y59733D01*

-X118608Y59662D01*

-X118526Y59576D01*

-X118458Y59479D01*

-X118406Y59373D01*

-X118371Y59259D01*

-X118355Y59142D01*

-X118357Y59023D01*

-X118377Y58907D01*

-X118418Y58795D01*

-X118527Y58520D01*

-X118607Y58235D01*

-X118661Y57943D01*

-X118688Y57648D01*

-Y57352D01*

-X118661Y57057D01*

-X118607Y56765D01*

-X118527Y56480D01*

-X118421Y56203D01*

-X118381Y56093D01*

-X118360Y55976D01*

-X118358Y55858D01*

-X118374Y55741D01*

-X118409Y55629D01*

-X118461Y55522D01*

-X118528Y55426D01*

-X118610Y55341D01*

-X118704Y55270D01*

-X118809Y55214D01*

-X118920Y55176D01*

-X119037Y55155D01*

-X119155Y55153D01*

-X119271Y55170D01*

-X119273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X115441D01*

-Y42757D01*

-X118926Y42764D01*

-X119156Y42819D01*

-X119273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X111609Y64673D02*X112072Y64131D01*

-X112640Y63645D01*

-X113278Y63255D01*

-X113969Y62969D01*

-X114696Y62794D01*

-X115441Y62735D01*

-Y62250D01*

-X115224D01*

-X114793Y62211D01*

-X114366Y62132D01*

-X113949Y62015D01*

-X113544Y61860D01*

-X113439Y61805D01*

-X113344Y61734D01*

-X113262Y61648D01*

-X113194Y61551D01*

-X113142Y61445D01*

-X113107Y61331D01*

-X113091Y61214D01*

-X113093Y61095D01*

-X113114Y60978D01*

-X113152Y60866D01*

-X113208Y60762D01*

-X113279Y60667D01*

-X113365Y60585D01*

-X113462Y60517D01*

-X113568Y60465D01*

-X113682Y60430D01*

-X113799Y60414D01*

-X113918Y60416D01*

-X114034Y60436D01*

-X114146Y60477D01*

-X114421Y60586D01*

-X114706Y60666D01*

-X114998Y60720D01*

-X115293Y60747D01*

-X115441D01*

-Y54253D01*

-X115293D01*

-X114998Y54280D01*

-X114706Y54334D01*

-X114421Y54414D01*

-X114144Y54520D01*

-X114034Y54560D01*

-X113917Y54581D01*

-X113799Y54583D01*

-X113682Y54567D01*

-X113570Y54532D01*

-X113463Y54480D01*

-X113367Y54413D01*

-X113282Y54331D01*

-X113211Y54237D01*

-X113155Y54132D01*

-X113117Y54021D01*

-X113096Y53904D01*

-X113094Y53786D01*

-X113111Y53670D01*

-X113145Y53557D01*

-X113197Y53450D01*

-X113264Y53354D01*

-X113346Y53269D01*

-X113441Y53198D01*

-X113546Y53144D01*

-X113949Y52985D01*

-X114366Y52868D01*

-X114793Y52789D01*

-X115224Y52750D01*

-X115441D01*

-Y52243D01*

-X111956Y52236D01*

-X111726Y52181D01*

-X111609Y52133D01*

-Y55166D01*

-X111610Y55166D01*

-X111727Y55150D01*

-X111846Y55152D01*

-X111963Y55173D01*

-X112075Y55211D01*

-X112179Y55267D01*

-X112274Y55338D01*

-X112356Y55424D01*

-X112424Y55521D01*

-X112476Y55627D01*

-X112511Y55741D01*

-X112527Y55858D01*

-X112525Y55977D01*

-X112505Y56093D01*

-X112464Y56205D01*

-X112355Y56480D01*

-X112275Y56765D01*

-X112221Y57057D01*

-X112194Y57352D01*

-Y57648D01*

-X112221Y57943D01*

-X112275Y58235D01*

-X112355Y58520D01*

-X112461Y58797D01*

-X112501Y58907D01*

-X112522Y59024D01*

-X112524Y59142D01*

-X112508Y59259D01*

-X112473Y59371D01*

-X112421Y59478D01*

-X112354Y59574D01*

-X112272Y59659D01*

-X112178Y59730D01*

-X112073Y59786D01*

-X111962Y59824D01*

-X111845Y59845D01*

-X111727Y59847D01*

-X111610Y59830D01*

-X111609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X115441D01*

-Y72265D01*

-X114696Y72206D01*

-X113969Y72031D01*

-X113278Y71745D01*

-X112640Y71355D01*

-X112072Y70869D01*

-X111609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X115441Y39000D02*X111609D01*

-Y42867D01*

-X111726Y42819D01*

-X111956Y42764D01*

-X112191Y42750D01*

-X115441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X111609D02*X89273D01*

-Y42867D01*

-X89374Y42909D01*

-X89575Y43033D01*

-X89755Y43186D01*

-X89908Y43366D01*

-X90032Y43567D01*

-X90122Y43785D01*

-X90177Y44015D01*

-X90191Y44250D01*

-X90177Y50985D01*

-X90122Y51215D01*

-X90032Y51433D01*

-X89908Y51634D01*

-X89755Y51814D01*

-X89575Y51967D01*

-X89374Y52091D01*

-X89273Y52133D01*

-Y55170D01*

-X89384Y55204D01*

-X89491Y55256D01*

-X89587Y55323D01*

-X89672Y55405D01*

-X89743Y55500D01*

-X89797Y55605D01*

-X89956Y56008D01*

-X90073Y56425D01*

-X90152Y56852D01*

-X90191Y57283D01*

-Y57717D01*

-X90152Y58148D01*

-X90073Y58575D01*

-X89956Y58992D01*

-X89801Y59397D01*

-X89746Y59502D01*

-X89675Y59597D01*

-X89589Y59679D01*

-X89492Y59747D01*

-X89386Y59799D01*

-X89273Y59834D01*

-Y64673D01*

-X89296Y64699D01*

-X89686Y65337D01*

-X89972Y66028D01*

-X90147Y66755D01*

-X90191Y67500D01*

-X90147Y68245D01*

-X89972Y68972D01*

-X89686Y69663D01*

-X89296Y70301D01*

-X89273Y70327D01*

-Y72500D01*

-X111609D01*

-Y70327D01*

-X111586Y70301D01*

-X111196Y69663D01*

-X110910Y68972D01*

-X110735Y68245D01*

-X110676Y67500D01*

-X110735Y66755D01*

-X110910Y66028D01*

-X111196Y65337D01*

-X111586Y64699D01*

-X111609Y64673D01*

-Y59830D01*

-X111498Y59796D01*

-X111391Y59744D01*

-X111295Y59677D01*

-X111210Y59595D01*

-X111139Y59500D01*

-X111085Y59395D01*

-X110926Y58992D01*

-X110809Y58575D01*

-X110730Y58148D01*

-X110691Y57717D01*

-Y57283D01*

-X110730Y56852D01*

-X110809Y56425D01*

-X110926Y56008D01*

-X111081Y55603D01*

-X111136Y55498D01*

-X111207Y55403D01*

-X111293Y55321D01*

-X111390Y55253D01*

-X111496Y55201D01*

-X111609Y55166D01*

-Y52133D01*

-X111508Y52091D01*

-X111307Y51967D01*

-X111127Y51814D01*

-X110974Y51634D01*

-X110850Y51433D01*

-X110760Y51215D01*

-X110705Y50985D01*

-X110691Y50750D01*

-X110705Y44015D01*

-X110760Y43785D01*

-X110850Y43567D01*

-X110974Y43366D01*

-X111127Y43186D01*

-X111307Y43033D01*

-X111508Y42909D01*

-X111609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X89273Y70327D02*X88810Y70869D01*

-X88242Y71355D01*

-X87604Y71745D01*

-X86913Y72031D01*

-X86186Y72206D01*

-X85441Y72265D01*

-Y72500D01*

-X89273D01*

-Y70327D01*

-G37*

-G36*

-Y52133D02*X89156Y52181D01*

-X88926Y52236D01*

-X88691Y52250D01*

-X85441Y52243D01*

-Y52750D01*

-X85658D01*

-X86089Y52789D01*

-X86516Y52868D01*

-X86933Y52985D01*

-X87338Y53140D01*

-X87443Y53195D01*

-X87538Y53266D01*

-X87620Y53352D01*

-X87688Y53449D01*

-X87740Y53555D01*

-X87775Y53669D01*

-X87791Y53786D01*

-X87789Y53905D01*

-X87768Y54022D01*

-X87730Y54134D01*

-X87674Y54238D01*

-X87603Y54333D01*

-X87517Y54415D01*

-X87420Y54483D01*

-X87314Y54535D01*

-X87200Y54570D01*

-X87083Y54586D01*

-X86964Y54584D01*

-X86848Y54564D01*

-X86736Y54523D01*

-X86461Y54414D01*

-X86176Y54334D01*

-X85884Y54280D01*

-X85589Y54253D01*

-X85441D01*

-Y60747D01*

-X85589D01*

-X85884Y60720D01*

-X86176Y60666D01*

-X86461Y60586D01*

-X86738Y60480D01*

-X86848Y60440D01*

-X86965Y60419D01*

-X87083Y60417D01*

-X87200Y60433D01*

-X87312Y60468D01*

-X87419Y60520D01*

-X87515Y60587D01*

-X87600Y60669D01*

-X87671Y60763D01*

-X87727Y60868D01*

-X87765Y60979D01*

-X87786Y61096D01*

-X87788Y61214D01*

-X87771Y61330D01*

-X87737Y61443D01*

-X87685Y61550D01*

-X87618Y61646D01*

-X87536Y61731D01*

-X87441Y61802D01*

-X87336Y61856D01*

-X86933Y62015D01*

-X86516Y62132D01*

-X86089Y62211D01*

-X85658Y62250D01*

-X85441D01*

-Y62735D01*

-X86186Y62794D01*

-X86913Y62969D01*

-X87604Y63255D01*

-X88242Y63645D01*

-X88810Y64131D01*

-X89273Y64673D01*

-Y59834D01*

-X89272Y59834D01*

-X89155Y59850D01*

-X89036Y59848D01*

-X88919Y59827D01*

-X88807Y59789D01*

-X88703Y59733D01*

-X88608Y59662D01*

-X88526Y59576D01*

-X88458Y59479D01*

-X88406Y59373D01*

-X88371Y59259D01*

-X88355Y59142D01*

-X88357Y59023D01*

-X88377Y58907D01*

-X88418Y58795D01*

-X88527Y58520D01*

-X88607Y58235D01*

-X88661Y57943D01*

-X88688Y57648D01*

-Y57352D01*

-X88661Y57057D01*

-X88607Y56765D01*

-X88527Y56480D01*

-X88421Y56203D01*

-X88381Y56093D01*

-X88360Y55976D01*

-X88358Y55858D01*

-X88374Y55741D01*

-X88409Y55629D01*

-X88461Y55522D01*

-X88528Y55426D01*

-X88610Y55341D01*

-X88704Y55270D01*

-X88809Y55214D01*

-X88920Y55176D01*

-X89037Y55155D01*

-X89155Y55153D01*

-X89271Y55170D01*

-X89273Y55170D01*

-Y52133D01*

-G37*

-G36*

-Y39000D02*X85441D01*

-Y42757D01*

-X88926Y42764D01*

-X89156Y42819D01*

-X89273Y42867D01*

-Y39000D01*

-G37*

-G36*

-X81609Y64673D02*X82072Y64131D01*

-X82640Y63645D01*

-X83278Y63255D01*

-X83969Y62969D01*

-X84696Y62794D01*

-X85441Y62735D01*

-Y62250D01*

-X85224D01*

-X84793Y62211D01*

-X84366Y62132D01*

-X83949Y62015D01*

-X83544Y61860D01*

-X83439Y61805D01*

-X83344Y61734D01*

-X83262Y61648D01*

-X83194Y61551D01*

-X83142Y61445D01*

-X83107Y61331D01*

-X83091Y61214D01*

-X83093Y61095D01*

-X83114Y60978D01*

-X83152Y60866D01*

-X83208Y60762D01*

-X83279Y60667D01*

-X83365Y60585D01*

-X83462Y60517D01*

-X83568Y60465D01*

-X83682Y60430D01*

-X83799Y60414D01*

-X83918Y60416D01*

-X84034Y60436D01*

-X84146Y60477D01*

-X84421Y60586D01*

-X84706Y60666D01*

-X84998Y60720D01*

-X85293Y60747D01*

-X85441D01*

-Y54253D01*

-X85293D01*

-X84998Y54280D01*

-X84706Y54334D01*

-X84421Y54414D01*

-X84144Y54520D01*

-X84034Y54560D01*

-X83917Y54581D01*

-X83799Y54583D01*

-X83682Y54567D01*

-X83570Y54532D01*

-X83463Y54480D01*

-X83367Y54413D01*

-X83282Y54331D01*

-X83211Y54237D01*

-X83155Y54132D01*

-X83117Y54021D01*

-X83096Y53904D01*

-X83094Y53786D01*

-X83111Y53670D01*

-X83145Y53557D01*

-X83197Y53450D01*

-X83264Y53354D01*

-X83346Y53269D01*

-X83441Y53198D01*

-X83546Y53144D01*

-X83949Y52985D01*

-X84366Y52868D01*

-X84793Y52789D01*

-X85224Y52750D01*

-X85441D01*

-Y52243D01*

-X81956Y52236D01*

-X81726Y52181D01*

-X81609Y52133D01*

-Y55166D01*

-X81610Y55166D01*

-X81727Y55150D01*

-X81846Y55152D01*

-X81963Y55173D01*

-X82075Y55211D01*

-X82179Y55267D01*

-X82274Y55338D01*

-X82356Y55424D01*

-X82424Y55521D01*

-X82476Y55627D01*

-X82511Y55741D01*

-X82527Y55858D01*

-X82525Y55977D01*

-X82505Y56093D01*

-X82464Y56205D01*

-X82355Y56480D01*

-X82275Y56765D01*

-X82221Y57057D01*

-X82194Y57352D01*

-Y57648D01*

-X82221Y57943D01*

-X82275Y58235D01*

-X82355Y58520D01*

-X82461Y58797D01*

-X82501Y58907D01*

-X82522Y59024D01*

-X82524Y59142D01*

-X82508Y59259D01*

-X82473Y59371D01*

-X82421Y59478D01*

-X82354Y59574D01*

-X82272Y59659D01*

-X82178Y59730D01*

-X82073Y59786D01*

-X81962Y59824D01*

-X81845Y59845D01*

-X81727Y59847D01*

-X81610Y59830D01*

-X81609Y59830D01*

-Y64673D01*

-G37*

-G36*

-Y72500D02*X85441D01*

-Y72265D01*

-X84696Y72206D01*

-X83969Y72031D01*

-X83278Y71745D01*

-X82640Y71355D01*

-X82072Y70869D01*

-X81609Y70327D01*

-Y72500D01*

-G37*

-G36*

-X85441Y39000D02*X81609D01*

-Y42867D01*

-X81726Y42819D01*

-X81956Y42764D01*

-X82191Y42750D01*

-X85441Y42757D01*

-Y39000D01*

-G37*

-G36*

-X81609D02*X75441D01*

-X72941Y41500D01*

-Y72500D01*

-X81609D01*

-Y70327D01*

-X81586Y70301D01*

-X81196Y69663D01*

-X80910Y68972D01*

-X80735Y68245D01*

-X80676Y67500D01*

-X80735Y66755D01*

-X80910Y66028D01*

-X81196Y65337D01*

-X81586Y64699D01*

-X81609Y64673D01*

-Y59830D01*

-X81498Y59796D01*

-X81391Y59744D01*

-X81295Y59677D01*

-X81210Y59595D01*

-X81139Y59500D01*

-X81085Y59395D01*

-X80926Y58992D01*

-X80809Y58575D01*

-X80730Y58148D01*

-X80691Y57717D01*

-Y57283D01*

-X80730Y56852D01*

-X80809Y56425D01*

-X80926Y56008D01*

-X81081Y55603D01*

-X81136Y55498D01*

-X81207Y55403D01*

-X81293Y55321D01*

-X81390Y55253D01*

-X81496Y55201D01*

-X81609Y55166D01*

-Y52133D01*

-X81508Y52091D01*

-X81307Y51967D01*

-X81127Y51814D01*

-X80974Y51634D01*

-X80850Y51433D01*

-X80760Y51215D01*

-X80705Y50985D01*

-X80691Y50750D01*

-X80705Y44015D01*

-X80760Y43785D01*

-X80850Y43567D01*

-X80974Y43366D01*

-X81127Y43186D01*

-X81307Y43033D01*

-X81508Y42909D01*

-X81609Y42867D01*

-Y39000D01*

-G37*

-G36*

-X214941Y258500D02*Y263500D01*

-X220441D01*

-Y258500D01*

-X214941D01*

-G37*

-G36*

-X218441Y257000D02*Y262000D01*

-X223941D01*

-Y257000D01*

-X218441D01*

-G37*

-G36*

-X312154Y172548D02*X312309Y172294D01*

-X312749Y171779D01*

-X313076Y171500D01*

-X312154D01*

-Y172548D01*

-G37*

-G36*

-X432320Y73869D02*X432379Y73725D01*

-X432610Y73349D01*

-X432896Y73014D01*

-X433231Y72728D01*

-X433603Y72500D01*

-X432320D01*

-Y73869D01*

-G37*

-G36*

-X446437Y153000D02*X449441D01*

-Y148513D01*

-X449366Y148467D01*

-X449186Y148314D01*

-X449033Y148134D01*

-X448909Y147933D01*

-X448819Y147715D01*

-X448764Y147485D01*

-X448750Y147250D01*

-X448764Y140515D01*

-X448819Y140285D01*

-X448909Y140067D01*

-X449033Y139866D01*

-X449186Y139686D01*

-X449366Y139533D01*

-X449441Y139487D01*

-Y118513D01*

-X449366Y118467D01*

-X449186Y118314D01*

-X449033Y118134D01*

-X448909Y117933D01*

-X448819Y117715D01*

-X448764Y117485D01*

-X448750Y117250D01*

-X448764Y110515D01*

-X448819Y110285D01*

-X448909Y110067D01*

-X449033Y109866D01*

-X449186Y109686D01*

-X449366Y109533D01*

-X449441Y109487D01*

-Y88513D01*

-X449366Y88467D01*

-X449186Y88314D01*

-X449033Y88134D01*

-X448909Y87933D01*

-X448819Y87715D01*

-X448764Y87485D01*

-X448750Y87250D01*

-X448764Y80515D01*

-X448819Y80285D01*

-X448909Y80067D01*

-X449033Y79866D01*

-X449186Y79686D01*

-X449366Y79533D01*

-X449441Y79487D01*

-Y72500D01*

-X446437D01*

-Y99192D01*

-X446441Y99191D01*

-X446880Y99226D01*

-X447309Y99329D01*

-X447716Y99497D01*

-X448092Y99728D01*

-X448427Y100014D01*

-X448713Y100349D01*

-X448944Y100725D01*

-X449112Y101132D01*

-X449215Y101561D01*

-X449241Y102000D01*

-X449215Y102439D01*

-X449112Y102868D01*

-X448944Y103275D01*

-X448713Y103651D01*

-X448427Y103986D01*

-X448092Y104272D01*

-X447716Y104503D01*

-X447309Y104671D01*

-X446880Y104774D01*

-X446441Y104809D01*

-X446437Y104808D01*

-Y153000D01*

-G37*

-G36*

-X440935D02*X446437D01*

-Y104808D01*

-X446002Y104774D01*

-X445573Y104671D01*

-X445166Y104503D01*

-X444790Y104272D01*

-X444455Y103986D01*

-X444169Y103651D01*

-X443938Y103275D01*

-X443770Y102868D01*

-X443667Y102439D01*

-X443632Y102000D01*

-X443667Y101561D01*

-X443770Y101132D01*

-X443938Y100725D01*

-X444169Y100349D01*

-X444455Y100014D01*

-X444790Y99728D01*

-X445166Y99497D01*

-X445573Y99329D01*

-X446002Y99226D01*

-X446437Y99192D01*

-Y72500D01*

-X440935D01*

-Y118988D01*

-X440941Y118988D01*

-X441569Y119037D01*

-X442181Y119184D01*

-X442763Y119425D01*

-X443299Y119754D01*

-X443778Y120163D01*

-X444187Y120642D01*

-X444516Y121178D01*

-X444757Y121760D01*

-X444904Y122372D01*

-X444941Y123000D01*

-X444904Y123628D01*

-X444757Y124240D01*

-X444516Y124822D01*

-X444187Y125358D01*

-X443778Y125837D01*

-X443299Y126246D01*

-X442763Y126575D01*

-X442181Y126816D01*

-X441569Y126963D01*

-X440941Y127012D01*

-X440935Y127012D01*

-Y153000D01*

-G37*

-G36*

-X432320D02*X440935D01*

-Y127012D01*

-X440313Y126963D01*

-X439701Y126816D01*

-X439119Y126575D01*

-X438583Y126246D01*

-X438104Y125837D01*

-X437695Y125358D01*

-X437366Y124822D01*

-X437125Y124240D01*

-X436978Y123628D01*

-X436929Y123000D01*

-X436978Y122372D01*

-X437125Y121760D01*

-X437366Y121178D01*

-X437695Y120642D01*

-X438104Y120163D01*

-X438583Y119754D01*

-X439119Y119425D01*

-X439701Y119184D01*

-X440313Y119037D01*

-X440935Y118988D01*

-Y72500D01*

-X436161D01*

-X436533Y72728D01*

-X436868Y73014D01*

-X437154Y73349D01*

-X437385Y73725D01*

-X437553Y74132D01*

-X437656Y74561D01*

-X437682Y75000D01*

-X437656Y75439D01*

-X437553Y75868D01*

-X437385Y76275D01*

-X437154Y76651D01*

-X436868Y76986D01*

-X436533Y77272D01*

-X436157Y77503D01*

-X435750Y77671D01*

-X435321Y77774D01*

-X434882Y77809D01*

-X434443Y77774D01*

-X434014Y77671D01*

-X433607Y77503D01*

-X433231Y77272D01*

-X432896Y76986D01*

-X432610Y76651D01*

-X432379Y76275D01*

-X432320Y76131D01*

-Y108192D01*

-X432324Y108191D01*

-X432763Y108226D01*

-X433192Y108329D01*

-X433599Y108497D01*

-X433975Y108728D01*

-X434310Y109014D01*

-X434596Y109349D01*

-X434827Y109725D01*

-X434995Y110132D01*

-X435098Y110561D01*

-X435124Y111000D01*

-X435098Y111439D01*

-X434995Y111868D01*

-X434827Y112275D01*

-X434596Y112651D01*

-X434310Y112986D01*

-X433975Y113272D01*

-X433599Y113503D01*

-X433192Y113671D01*

-X432763Y113774D01*

-X432324Y113809D01*

-X432320Y113808D01*

-Y153000D01*

-G37*

-G36*

-X398438Y187034D02*X398455Y187014D01*

-X398790Y186728D01*

-X399166Y186497D01*

-X399573Y186329D01*

-X400002Y186226D01*

-X400441Y186191D01*

-Y153000D01*

-X432320D01*

-Y113808D01*

-X431885Y113774D01*

-X431456Y113671D01*

-X431049Y113503D01*

-X430673Y113272D01*

-X430338Y112986D01*

-X430052Y112651D01*

-X429821Y112275D01*

-X429653Y111868D01*

-X429550Y111439D01*

-X429515Y111000D01*

-X429550Y110561D01*

-X429653Y110132D01*

-X429821Y109725D01*

-X430052Y109349D01*

-X430338Y109014D01*

-X430673Y108728D01*

-X431049Y108497D01*

-X431456Y108329D01*

-X431885Y108226D01*

-X432320Y108192D01*

-Y76131D01*

-X432211Y75868D01*

-X432108Y75439D01*

-X432073Y75000D01*

-X432108Y74561D01*

-X432211Y74132D01*

-X432320Y73869D01*

-Y72500D01*

-X424720D01*

-X425092Y72728D01*

-X425427Y73014D01*

-X425713Y73349D01*

-X425944Y73725D01*

-X426112Y74132D01*

-X426215Y74561D01*

-X426241Y75000D01*

-X426215Y75439D01*

-X426112Y75868D01*

-X425944Y76275D01*

-X425713Y76651D01*

-X425427Y76986D01*

-X425092Y77272D01*

-X424716Y77503D01*

-X424309Y77671D01*

-X423880Y77774D01*

-X423441Y77809D01*

-X423002Y77774D01*

-X422573Y77671D01*

-X422166Y77503D01*

-X421790Y77272D01*

-X421455Y76986D01*

-X421169Y76651D01*

-X420938Y76275D01*

-X420770Y75868D01*

-X420667Y75439D01*

-X420632Y75000D01*

-X420667Y74561D01*

-X420770Y74132D01*

-X420938Y73725D01*

-X421169Y73349D01*

-X421455Y73014D01*

-X421790Y72728D01*

-X422162Y72500D01*

-X412441D01*

-Y136500D01*

-X398438D01*

-Y171195D01*

-X398441Y171194D01*

-X398723Y171217D01*

-X398999Y171283D01*

-X399261Y171391D01*

-X399502Y171539D01*

-X399718Y171723D01*

-X399902Y171939D01*

-X400050Y172180D01*

-X400158Y172442D01*

-X400224Y172718D01*

-X400241Y173000D01*

-X400224Y173282D01*

-X400158Y173558D01*

-X400050Y173820D01*

-X399902Y174061D01*

-X399718Y174277D01*

-X399502Y174461D01*

-X399261Y174609D01*

-X398999Y174717D01*

-X398723Y174783D01*

-X398441Y174806D01*

-X398438Y174805D01*

-Y187034D01*

-G37*

-G36*

-Y192034D02*X398455Y192014D01*

-X398790Y191728D01*

-X399162Y191500D01*

-X398790Y191272D01*

-X398455Y190986D01*

-X398438Y190966D01*

-Y192034D01*

-G37*

-G36*

-Y245192D02*X398441Y245191D01*

-X398880Y245226D01*

-X399309Y245329D01*

-X399716Y245497D01*

-X400092Y245728D01*

-X400427Y246014D01*

-X400441Y246030D01*

-Y196809D01*

-X400002Y196774D01*

-X399573Y196671D01*

-X399166Y196503D01*

-X398790Y196272D01*

-X398455Y195986D01*

-X398438Y195966D01*

-Y245192D01*

-G37*

-G36*

-Y306192D02*X398441Y306191D01*

-X398880Y306226D01*

-X399309Y306329D01*

-X399716Y306497D01*

-X400092Y306728D01*

-X400427Y307014D01*

-X400441Y307030D01*

-Y254970D01*

-X400427Y254986D01*

-X400092Y255272D01*

-X399716Y255503D01*

-X399309Y255671D01*

-X398880Y255774D01*

-X398441Y255809D01*

-X398438Y255808D01*

-Y289195D01*

-X398441Y289194D01*

-X398723Y289217D01*

-X398999Y289283D01*

-X399261Y289391D01*

-X399502Y289539D01*

-X399718Y289723D01*

-X399902Y289939D01*

-X400050Y290180D01*

-X400158Y290442D01*

-X400224Y290718D01*

-X400241Y291000D01*

-X400224Y291282D01*

-X400158Y291558D01*

-X400050Y291820D01*

-X399902Y292061D01*

-X399718Y292277D01*

-X399502Y292461D01*

-X399261Y292609D01*

-X398999Y292717D01*

-X398723Y292783D01*

-X398441Y292806D01*

-X398438Y292805D01*

-Y306192D01*

-G37*

-G36*

-Y364681D02*X398809Y364770D01*

-X399216Y364938D01*

-X399592Y365169D01*

-X399927Y365455D01*

-X400213Y365790D01*

-X400441Y366162D01*

-Y315970D01*

-X400427Y315986D01*

-X400092Y316272D01*

-X399716Y316503D01*

-X399309Y316671D01*

-X398880Y316774D01*

-X398441Y316809D01*

-X398438Y316808D01*

-Y364681D01*

-G37*

-G36*

-X400441Y397000D02*Y368720D01*

-X400213Y369092D01*

-X399927Y369427D01*

-X399592Y369713D01*

-X399216Y369944D01*

-X398809Y370112D01*

-X398438Y370201D01*

-Y370382D01*

-X398716Y370497D01*

-X399092Y370728D01*

-X399427Y371014D01*

-X399713Y371349D01*

-X399944Y371725D01*

-X400112Y372132D01*

-X400215Y372561D01*

-X400241Y373000D01*

-X400215Y373439D01*

-X400112Y373868D01*

-X399944Y374275D01*

-X399713Y374651D01*

-X399427Y374986D01*

-X399092Y375272D01*

-X398716Y375503D01*

-X398438Y375618D01*

-Y397000D01*

-X400441D01*

-G37*

-G36*

-X396438Y246034D02*X396455Y246014D01*

-X396790Y245728D01*

-X397166Y245497D01*

-X397573Y245329D01*

-X398002Y245226D01*

-X398438Y245192D01*

-Y195966D01*

-X398169Y195651D01*

-X397938Y195275D01*

-X397770Y194868D01*

-X397667Y194439D01*

-X397632Y194000D01*

-X397667Y193561D01*

-X397770Y193132D01*

-X397938Y192725D01*

-X398169Y192349D01*

-X398438Y192034D01*

-Y190966D01*

-X398169Y190651D01*

-X397938Y190275D01*

-X397770Y189868D01*

-X397667Y189439D01*

-X397632Y189000D01*

-X397667Y188561D01*

-X397770Y188132D01*

-X397938Y187725D01*

-X398169Y187349D01*

-X398438Y187034D01*

-Y174805D01*

-X398159Y174783D01*

-X397883Y174717D01*

-X397621Y174609D01*

-X397380Y174461D01*

-X397164Y174277D01*

-X396980Y174061D01*

-X396832Y173820D01*

-X396724Y173558D01*

-X396658Y173282D01*

-X396635Y173000D01*

-X396658Y172718D01*

-X396724Y172442D01*

-X396832Y172180D01*

-X396980Y171939D01*

-X397164Y171723D01*

-X397380Y171539D01*

-X397621Y171391D01*

-X397883Y171283D01*

-X398159Y171217D01*

-X398438Y171195D01*

-Y136500D01*

-X396438D01*

-Y233195D01*

-X396441Y233194D01*

-X396723Y233217D01*

-X396999Y233283D01*

-X397261Y233391D01*

-X397502Y233539D01*

-X397718Y233723D01*

-X397902Y233939D01*

-X398050Y234180D01*

-X398158Y234442D01*

-X398224Y234718D01*

-X398241Y235000D01*

-X398224Y235282D01*

-X398158Y235558D01*

-X398050Y235820D01*

-X397902Y236061D01*

-X397718Y236277D01*

-X397502Y236461D01*

-X397261Y236609D01*

-X396999Y236717D01*

-X396723Y236783D01*

-X396441Y236806D01*

-X396438Y236805D01*

-Y246034D01*

-G37*

-G36*

-Y251034D02*X396455Y251014D01*

-X396790Y250728D01*

-X397162Y250500D01*

-X396790Y250272D01*

-X396455Y249986D01*

-X396438Y249966D01*

-Y251034D01*

-G37*

-G36*

-Y307034D02*X396455Y307014D01*

-X396790Y306728D01*

-X397166Y306497D01*

-X397573Y306329D01*

-X398002Y306226D01*

-X398438Y306192D01*

-Y292805D01*

-X398159Y292783D01*

-X397883Y292717D01*

-X397621Y292609D01*

-X397380Y292461D01*

-X397164Y292277D01*

-X396980Y292061D01*

-X396832Y291820D01*

-X396724Y291558D01*

-X396658Y291282D01*

-X396635Y291000D01*

-X396658Y290718D01*

-X396724Y290442D01*

-X396832Y290180D01*

-X396980Y289939D01*

-X397164Y289723D01*

-X397380Y289539D01*

-X397621Y289391D01*

-X397883Y289283D01*

-X398159Y289217D01*

-X398438Y289195D01*

-Y255808D01*

-X398002Y255774D01*

-X397573Y255671D01*

-X397166Y255503D01*

-X396790Y255272D01*

-X396455Y254986D01*

-X396438Y254966D01*

-Y307034D01*

-G37*

-G36*

-Y312034D02*X396455Y312014D01*

-X396790Y311728D01*

-X397162Y311500D01*

-X396790Y311272D01*

-X396455Y310986D01*

-X396438Y310966D01*

-Y312034D01*

-G37*

-G36*

-Y365078D02*X396666Y364938D01*

-X397073Y364770D01*

-X397502Y364667D01*

-X397941Y364632D01*

-X398380Y364667D01*

-X398438Y364681D01*

-Y316808D01*

-X398002Y316774D01*

-X397573Y316671D01*

-X397166Y316503D01*

-X396790Y316272D01*

-X396455Y315986D01*

-X396438Y315966D01*

-Y365078D01*

-G37*

-G36*

-Y370385D02*X396573Y370329D01*

-X397002Y370226D01*

-X397412Y370194D01*

-X397073Y370112D01*

-X396666Y369944D01*

-X396438Y369804D01*

-Y370385D01*

-G37*

-G36*

-X398438Y375618D02*X398309Y375671D01*

-X397880Y375774D01*

-X397441Y375809D01*

-X397002Y375774D01*

-X396573Y375671D01*

-X396438Y375615D01*

-Y397000D01*

-X398438D01*

-Y375618D01*

-G37*

-G36*

-X396438Y375615D02*X396166Y375503D01*

-X395790Y375272D01*

-X395455Y374986D01*

-X395169Y374651D01*

-X394938Y374275D01*

-X394770Y373868D01*

-X394667Y373439D01*

-X394632Y373000D01*

-X394667Y372561D01*

-X394770Y372132D01*

-X394938Y371725D01*

-X395169Y371349D01*

-X395455Y371014D01*

-X395790Y370728D01*

-X396166Y370497D01*

-X396438Y370385D01*

-Y369804D01*

-X396290Y369713D01*

-X395955Y369427D01*

-X395669Y369092D01*

-X395438Y368716D01*

-X395270Y368309D01*

-X395167Y367880D01*

-X395132Y367441D01*

-X395167Y367002D01*

-X395270Y366573D01*

-X395438Y366166D01*

-X395669Y365790D01*

-X395955Y365455D01*

-X396290Y365169D01*

-X396438Y365078D01*

-Y315966D01*

-X396169Y315651D01*

-X395938Y315275D01*

-X395770Y314868D01*

-X395667Y314439D01*

-X395632Y314000D01*

-X395667Y313561D01*

-X395770Y313132D01*

-X395938Y312725D01*

-X396169Y312349D01*

-X396438Y312034D01*

-Y310966D01*

-X396169Y310651D01*

-X395938Y310275D01*

-X395770Y309868D01*

-X395667Y309439D01*

-X395632Y309000D01*

-X395667Y308561D01*

-X395770Y308132D01*

-X395938Y307725D01*

-X396169Y307349D01*

-X396438Y307034D01*

-Y254966D01*

-X396169Y254651D01*

-X395938Y254275D01*

-X395770Y253868D01*

-X395667Y253439D01*

-X395632Y253000D01*

-X395667Y252561D01*

-X395770Y252132D01*

-X395938Y251725D01*

-X396169Y251349D01*

-X396438Y251034D01*

-Y249966D01*

-X396169Y249651D01*

-X395938Y249275D01*

-X395770Y248868D01*

-X395667Y248439D01*

-X395632Y248000D01*

-X395667Y247561D01*

-X395770Y247132D01*

-X395938Y246725D01*

-X396169Y246349D01*

-X396438Y246034D01*

-Y236805D01*

-X396159Y236783D01*

-X395883Y236717D01*

-X395621Y236609D01*

-X395380Y236461D01*

-X395164Y236277D01*

-X394980Y236061D01*

-X394832Y235820D01*

-X394724Y235558D01*

-X394658Y235282D01*

-X394635Y235000D01*

-X394658Y234718D01*

-X394724Y234442D01*

-X394832Y234180D01*

-X394980Y233939D01*

-X395164Y233723D01*

-X395380Y233539D01*

-X395621Y233391D01*

-X395883Y233283D01*

-X396159Y233217D01*

-X396438Y233195D01*

-Y136500D01*

-X393437D01*

-Y205192D01*

-X393441Y205191D01*

-X393880Y205226D01*

-X394309Y205329D01*

-X394716Y205497D01*

-X395092Y205728D01*

-X395427Y206014D01*

-X395713Y206349D01*

-X395944Y206725D01*

-X396112Y207132D01*

-X396215Y207561D01*

-X396241Y208000D01*

-X396215Y208439D01*

-X396112Y208868D01*

-X395944Y209275D01*

-X395713Y209651D01*

-X395427Y209986D01*

-X395092Y210272D01*

-X394716Y210503D01*

-X394309Y210671D01*

-X393880Y210774D01*

-X393441Y210809D01*

-X393437Y210808D01*

-Y237699D01*

-X393465Y237723D01*

-X393649Y237939D01*

-X393797Y238180D01*

-X393905Y238442D01*

-X393971Y238718D01*

-X393988Y239000D01*

-X393971Y239282D01*

-X393905Y239558D01*

-X393797Y239820D01*

-X393649Y240061D01*

-X393465Y240277D01*

-X393437Y240301D01*

-Y324192D01*

-X393441Y324191D01*

-X393880Y324226D01*

-X394309Y324329D01*

-X394716Y324497D01*

-X395092Y324728D01*

-X395427Y325014D01*

-X395713Y325349D01*

-X395944Y325725D01*

-X396112Y326132D01*

-X396215Y326561D01*

-X396241Y327000D01*

-X396215Y327439D01*

-X396112Y327868D01*

-X395944Y328275D01*

-X395713Y328651D01*

-X395427Y328986D01*

-X395092Y329272D01*

-X394716Y329503D01*

-X394309Y329671D01*

-X393880Y329774D01*

-X393441Y329809D01*

-X393437Y329808D01*

-Y352192D01*

-X393441Y352191D01*

-X393880Y352226D01*

-X394309Y352329D01*

-X394716Y352497D01*

-X395092Y352728D01*

-X395427Y353014D01*

-X395713Y353349D01*

-X395944Y353725D01*

-X396112Y354132D01*

-X396215Y354561D01*

-X396241Y355000D01*

-X396215Y355439D01*

-X396112Y355868D01*

-X395944Y356275D01*

-X395713Y356651D01*

-X395427Y356986D01*

-X395092Y357272D01*

-X394716Y357503D01*

-X394309Y357671D01*

-X393880Y357774D01*

-X393441Y357809D01*

-X393437Y357808D01*

-Y397000D01*

-X396438D01*

-Y375615D01*

-G37*

-G36*

-X393437Y136500D02*X389437D01*

-Y181192D01*

-X389441Y181191D01*

-X389880Y181226D01*

-X390309Y181329D01*

-X390716Y181497D01*

-X391092Y181728D01*

-X391427Y182014D01*

-X391713Y182349D01*

-X391944Y182725D01*

-X392112Y183132D01*

-X392215Y183561D01*

-X392241Y184000D01*

-X392215Y184439D01*

-X392112Y184868D01*

-X391944Y185275D01*

-X391713Y185651D01*

-X391427Y185986D01*

-X391092Y186272D01*

-X390716Y186503D01*

-X390309Y186671D01*

-X389880Y186774D01*

-X389441Y186809D01*

-X389437Y186808D01*

-Y233503D01*

-X389573Y233725D01*

-X389741Y234132D01*

-X389844Y234561D01*

-X389870Y235000D01*

-X389844Y235439D01*

-X389741Y235868D01*

-X389573Y236275D01*

-X389437Y236497D01*

-Y245963D01*

-X389484Y246003D01*

-X389668Y246219D01*

-X389816Y246460D01*

-X389924Y246722D01*

-X389990Y246998D01*

-X390007Y247280D01*

-X389990Y247562D01*

-X389924Y247838D01*

-X389816Y248100D01*

-X389668Y248341D01*

-X389484Y248557D01*

-X389437Y248597D01*

-Y281322D01*

-X389494Y281561D01*

-X389520Y282000D01*

-X389494Y282439D01*

-X389437Y282678D01*

-Y324025D01*

-X389713Y324349D01*

-X389944Y324725D01*

-X390112Y325132D01*

-X390215Y325561D01*

-X390241Y326000D01*

-X390215Y326439D01*

-X390112Y326868D01*

-X389944Y327275D01*

-X389713Y327651D01*

-X389437Y327975D01*

-Y397000D01*

-X393437D01*

-Y357808D01*

-X393002Y357774D01*

-X392573Y357671D01*

-X392166Y357503D01*

-X391790Y357272D01*

-X391455Y356986D01*

-X391169Y356651D01*

-X390938Y356275D01*

-X390770Y355868D01*

-X390667Y355439D01*

-X390632Y355000D01*

-X390667Y354561D01*

-X390770Y354132D01*

-X390938Y353725D01*

-X391169Y353349D01*

-X391455Y353014D01*

-X391790Y352728D01*

-X392166Y352497D01*

-X392573Y352329D01*

-X393002Y352226D01*

-X393437Y352192D01*

-Y329808D01*

-X393002Y329774D01*

-X392573Y329671D01*

-X392166Y329503D01*

-X391790Y329272D01*

-X391455Y328986D01*

-X391169Y328651D01*

-X390938Y328275D01*

-X390770Y327868D01*

-X390667Y327439D01*

-X390632Y327000D01*

-X390667Y326561D01*

-X390770Y326132D01*

-X390938Y325725D01*

-X391169Y325349D01*

-X391455Y325014D01*

-X391790Y324728D01*

-X392166Y324497D01*

-X392573Y324329D01*

-X393002Y324226D01*

-X393437Y324192D01*

-Y240301D01*

-X393249Y240461D01*

-X393008Y240609D01*

-X392746Y240717D01*

-X392470Y240783D01*

-X392188Y240806D01*

-X391906Y240783D01*

-X391630Y240717D01*

-X391368Y240609D01*

-X391127Y240461D01*

-X390911Y240277D01*

-X390727Y240061D01*

-X390579Y239820D01*

-X390471Y239558D01*

-X390405Y239282D01*

-X390382Y239000D01*

-X390405Y238718D01*

-X390471Y238442D01*

-X390579Y238180D01*

-X390727Y237939D01*

-X390911Y237723D01*

-X391127Y237539D01*

-X391368Y237391D01*

-X391630Y237283D01*

-X391906Y237217D01*

-X392188Y237194D01*

-X392470Y237217D01*

-X392746Y237283D01*

-X393008Y237391D01*

-X393249Y237539D01*

-X393437Y237699D01*

-Y210808D01*

-X393002Y210774D01*

-X392573Y210671D01*

-X392166Y210503D01*

-X391790Y210272D01*

-X391455Y209986D01*

-X391169Y209651D01*

-X390938Y209275D01*

-X390770Y208868D01*

-X390667Y208439D01*

-X390632Y208000D01*

-X390667Y207561D01*

-X390770Y207132D01*

-X390938Y206725D01*

-X391169Y206349D01*

-X391455Y206014D01*

-X391790Y205728D01*

-X392166Y205497D01*

-X392573Y205329D01*

-X393002Y205226D01*

-X393437Y205192D01*

-Y136500D01*

-G37*

-G36*

-X398438Y370201D02*X398380Y370215D01*

-X397970Y370247D01*

-X398309Y370329D01*

-X398438Y370382D01*

-Y370201D01*

-G37*

-G36*

-X389437Y327975D02*X389427Y327986D01*

-X389092Y328272D01*

-X388716Y328503D01*

-X388309Y328671D01*

-X387880Y328774D01*

-X387441Y328809D01*

-X387002Y328774D01*

-X386573Y328671D01*

-X386437Y328615D01*

-Y351739D01*

-X386809Y351829D01*

-X387216Y351997D01*

-X387592Y352228D01*

-X387927Y352514D01*

-X388213Y352849D01*

-X388444Y353225D01*

-X388612Y353632D01*

-X388715Y354061D01*

-X388741Y354500D01*

-X388715Y354939D01*

-X388612Y355368D01*

-X388444Y355775D01*

-X388213Y356151D01*

-X387927Y356486D01*

-X387592Y356772D01*

-X387216Y357003D01*

-X386809Y357171D01*

-X386437Y357261D01*

-Y364268D01*

-X386499Y364283D01*

-X386761Y364391D01*

-X387002Y364539D01*

-X387218Y364723D01*

-X387402Y364939D01*

-X387550Y365180D01*

-X387658Y365442D01*

-X387724Y365718D01*

-X387741Y366000D01*

-X387724Y366282D01*

-X387658Y366558D01*

-X387550Y366820D01*

-X387402Y367061D01*

-X387218Y367277D01*

-X387002Y367461D01*

-X386761Y367609D01*

-X386499Y367717D01*

-X386437Y367732D01*

-Y378071D01*

-X386462Y378500D01*

-X386437Y378929D01*

-Y397000D01*

-X389437D01*

-Y327975D01*

-G37*

-G36*

-Y282678D02*X389391Y282868D01*

-X389223Y283275D01*

-X388992Y283651D01*

-X388706Y283986D01*

-X388371Y284272D01*

-X387995Y284503D01*

-X387588Y284671D01*

-X387159Y284774D01*

-X386720Y284809D01*

-X386437Y284786D01*

-Y304353D01*

-X386665Y304725D01*

-X386833Y305132D01*

-X386936Y305561D01*

-X386962Y306000D01*

-X386936Y306439D01*

-X386833Y306868D01*

-X386665Y307275D01*

-X386437Y307647D01*

-Y323385D01*

-X386573Y323329D01*

-X387002Y323226D01*

-X387441Y323191D01*

-X387880Y323226D01*

-X388309Y323329D01*

-X388716Y323497D01*

-X389092Y323728D01*

-X389427Y324014D01*

-X389437Y324025D01*

-Y282678D01*

-G37*

-G36*

-Y248597D02*X389268Y248741D01*

-X389027Y248889D01*

-X388765Y248997D01*

-X388489Y249063D01*

-X388207Y249086D01*

-X387925Y249063D01*

-X387649Y248997D01*

-X387387Y248889D01*

-X387146Y248741D01*

-X386930Y248557D01*

-X386746Y248341D01*

-X386598Y248100D01*

-X386490Y247838D01*

-X386437Y247617D01*

-Y255962D01*

-X386498Y256014D01*

-X386784Y256349D01*

-X387015Y256725D01*

-X387183Y257132D01*

-X387286Y257561D01*

-X387312Y258000D01*

-X387286Y258439D01*

-X387183Y258868D01*

-X387015Y259275D01*

-X386784Y259651D01*

-X386498Y259986D01*

-X386437Y260038D01*

-Y279214D01*

-X386720Y279191D01*

-X387159Y279226D01*

-X387588Y279329D01*

-X387995Y279497D01*

-X388371Y279728D01*

-X388706Y280014D01*

-X388992Y280349D01*

-X389223Y280725D01*

-X389391Y281132D01*

-X389437Y281322D01*

-Y248597D01*

-G37*

-G36*

-Y236497D02*X389342Y236651D01*

-X389056Y236986D01*

-X388721Y237272D01*

-X388345Y237503D01*

-X387938Y237671D01*

-X387509Y237774D01*

-X387070Y237809D01*

-X386631Y237774D01*

-X386437Y237727D01*

-Y246943D01*

-X386490Y246722D01*

-X386598Y246460D01*

-X386746Y246219D01*

-X386930Y246003D01*

-X387146Y245819D01*

-X387387Y245671D01*

-X387649Y245563D01*

-X387925Y245497D01*

-X388207Y245474D01*

-X388489Y245497D01*

-X388765Y245563D01*

-X389027Y245671D01*

-X389268Y245819D01*

-X389437Y245963D01*

-Y236497D01*

-G37*

-G36*

-Y136500D02*X386437D01*

-Y156061D01*

-X386581Y156096D01*

-X386843Y156204D01*

-X387084Y156352D01*

-X387300Y156536D01*

-X387484Y156752D01*

-X387632Y156993D01*

-X387740Y157255D01*

-X387806Y157531D01*

-X387823Y157813D01*

-X387806Y158095D01*

-X387740Y158371D01*

-X387632Y158633D01*

-X387484Y158874D01*

-X387300Y159090D01*

-X387084Y159274D01*

-X386843Y159422D01*

-X386581Y159530D01*

-X386437Y159565D01*

-Y160192D01*

-X386441Y160191D01*

-X386880Y160226D01*

-X387309Y160329D01*

-X387716Y160497D01*

-X388092Y160728D01*

-X388427Y161014D01*

-X388713Y161349D01*

-X388944Y161725D01*

-X389112Y162132D01*

-X389215Y162561D01*

-X389241Y163000D01*

-X389215Y163439D01*

-X389112Y163868D01*

-X388944Y164275D01*

-X388713Y164651D01*

-X388427Y164986D01*

-X388092Y165272D01*

-X387716Y165503D01*

-X387309Y165671D01*

-X386880Y165774D01*

-X386441Y165809D01*

-X386437Y165808D01*

-Y186353D01*

-X386665Y186725D01*

-X386833Y187132D01*

-X386936Y187561D01*

-X386962Y188000D01*

-X386936Y188439D01*

-X386833Y188868D01*

-X386665Y189275D01*

-X386437Y189647D01*

-Y232273D01*

-X386631Y232226D01*

-X387070Y232191D01*

-X387509Y232226D01*

-X387938Y232329D01*

-X388345Y232497D01*

-X388721Y232728D01*

-X389056Y233014D01*

-X389342Y233349D01*

-X389437Y233503D01*

-Y186808D01*

-X389002Y186774D01*

-X388573Y186671D01*

-X388166Y186503D01*

-X387790Y186272D01*

-X387455Y185986D01*

-X387169Y185651D01*

-X386938Y185275D01*

-X386770Y184868D01*

-X386667Y184439D01*

-X386632Y184000D01*

-X386667Y183561D01*

-X386770Y183132D01*

-X386938Y182725D01*

-X387169Y182349D01*

-X387455Y182014D01*

-X387790Y181728D01*

-X388166Y181497D01*

-X388573Y181329D01*

-X389002Y181226D01*

-X389437Y181192D01*

-Y136500D01*

-G37*

-G36*

-X386437D02*X377344D01*

-Y160373D01*

-X377347Y160372D01*

-X377629Y160395D01*

-X377905Y160461D01*

-X378167Y160569D01*

-X378408Y160717D01*

-X378624Y160901D01*

-X378808Y161117D01*

-X378956Y161358D01*

-X379064Y161620D01*

-X379130Y161896D01*

-X379147Y162178D01*

-X379130Y162460D01*

-X379064Y162736D01*

-X378956Y162998D01*

-X378808Y163239D01*

-X378624Y163455D01*

-X378408Y163639D01*

-X378167Y163787D01*

-X377905Y163895D01*

-X377629Y163961D01*

-X377347Y163984D01*

-X377344Y163983D01*

-Y232943D01*

-X377427Y233014D01*

-X377713Y233349D01*

-X377944Y233725D01*

-X378112Y234132D01*

-X378215Y234561D01*

-X378241Y235000D01*

-X378215Y235439D01*

-X378112Y235868D01*

-X377944Y236275D01*

-X377713Y236651D01*

-X377427Y236986D01*

-X377344Y237057D01*

-Y397000D01*

-X386437D01*

-Y378929D01*

-X386436Y378939D01*

-X386333Y379368D01*

-X386165Y379775D01*

-X385934Y380151D01*

-X385648Y380486D01*

-X385313Y380772D01*

-X384937Y381003D01*

-X384530Y381171D01*

-X384101Y381274D01*

-X383662Y381309D01*

-X383223Y381274D01*

-X382794Y381171D01*

-X382387Y381003D01*

-X382011Y380772D01*

-X381676Y380486D01*

-X381390Y380151D01*

-X381159Y379775D01*

-X380991Y379368D01*

-X380888Y378939D01*

-X380853Y378500D01*

-X380888Y378061D01*

-X380991Y377632D01*

-X381159Y377225D01*

-X381390Y376849D01*

-X381676Y376514D01*

-X382011Y376228D01*

-X382387Y375997D01*

-X382794Y375829D01*

-X383223Y375726D01*

-X383662Y375691D01*

-X384101Y375726D01*

-X384530Y375829D01*

-X384937Y375997D01*

-X385313Y376228D01*

-X385648Y376514D01*

-X385934Y376849D01*

-X386165Y377225D01*

-X386333Y377632D01*

-X386436Y378061D01*

-X386437Y378071D01*

-Y367732D01*

-X386223Y367783D01*

-X385941Y367806D01*

-X385659Y367783D01*

-X385383Y367717D01*

-X385121Y367609D01*

-X384880Y367461D01*

-X384664Y367277D01*

-X384480Y367061D01*

-X384332Y366820D01*

-X384224Y366558D01*

-X384158Y366282D01*

-X384135Y366000D01*

-X384158Y365718D01*

-X384224Y365442D01*

-X384332Y365180D01*

-X384480Y364939D01*

-X384664Y364723D01*

-X384880Y364539D01*

-X385121Y364391D01*

-X385383Y364283D01*

-X385659Y364217D01*

-X385941Y364194D01*

-X386223Y364217D01*

-X386437Y364268D01*

-Y357261D01*

-X386380Y357274D01*

-X385941Y357309D01*

-X385502Y357274D01*

-X385073Y357171D01*

-X384666Y357003D01*

-X384290Y356772D01*

-X383955Y356486D01*

-X383669Y356151D01*

-X383438Y355775D01*

-X383270Y355368D01*

-X383167Y354939D01*

-X383132Y354500D01*

-X383167Y354061D01*

-X383270Y353632D01*

-X383438Y353225D01*

-X383669Y352849D01*

-X383955Y352514D01*

-X384290Y352228D01*

-X384666Y351997D01*

-X385073Y351829D01*

-X385502Y351726D01*

-X385941Y351691D01*

-X386380Y351726D01*

-X386437Y351739D01*

-Y328615D01*

-X386166Y328503D01*

-X385790Y328272D01*

-X385455Y327986D01*

-X385169Y327651D01*

-X384938Y327275D01*

-X384770Y326868D01*

-X384667Y326439D01*

-X384632Y326000D01*

-X384667Y325561D01*

-X384770Y325132D01*

-X384938Y324725D01*

-X385169Y324349D01*

-X385455Y324014D01*

-X385790Y323728D01*

-X386166Y323497D01*

-X386437Y323385D01*

-Y307647D01*

-X386434Y307651D01*

-X386148Y307986D01*

-X385813Y308272D01*

-X385437Y308503D01*

-X385030Y308671D01*

-X384601Y308774D01*

-X384162Y308809D01*

-X383723Y308774D01*

-X383294Y308671D01*

-X382887Y308503D01*

-X382511Y308272D01*

-X382176Y307986D01*

-X381890Y307651D01*

-X381659Y307275D01*

-X381491Y306868D01*

-X381388Y306439D01*

-X381353Y306000D01*

-X381388Y305561D01*

-X381491Y305132D01*

-X381659Y304725D01*

-X381890Y304349D01*

-X382176Y304014D01*

-X382511Y303728D01*

-X382887Y303497D01*

-X383294Y303329D01*

-X383723Y303226D01*

-X384162Y303191D01*

-X384601Y303226D01*

-X385030Y303329D01*

-X385437Y303497D01*

-X385813Y303728D01*

-X386148Y304014D01*

-X386434Y304349D01*

-X386437Y304353D01*

-Y284786D01*

-X386281Y284774D01*

-X385852Y284671D01*

-X385445Y284503D01*

-X385069Y284272D01*

-X384734Y283986D01*

-X384448Y283651D01*

-X384217Y283275D01*

-X384049Y282868D01*

-X383946Y282439D01*

-X383911Y282000D01*

-X383946Y281561D01*

-X384049Y281132D01*

-X384217Y280725D01*

-X384448Y280349D01*

-X384734Y280014D01*

-X385069Y279728D01*

-X385445Y279497D01*

-X385852Y279329D01*

-X386281Y279226D01*

-X386437Y279214D01*

-Y260038D01*

-X386163Y260272D01*

-X385787Y260503D01*

-X385380Y260671D01*

-X384951Y260774D01*

-X384512Y260809D01*

-X384073Y260774D01*

-X383644Y260671D01*

-X383237Y260503D01*

-X382861Y260272D01*

-X382526Y259986D01*

-X382240Y259651D01*

-X382009Y259275D01*

-X381841Y258868D01*

-X381738Y258439D01*

-X381703Y258000D01*

-X381738Y257561D01*

-X381841Y257132D01*

-X382009Y256725D01*

-X382240Y256349D01*

-X382526Y256014D01*

-X382861Y255728D01*

-X383237Y255497D01*

-X383644Y255329D01*

-X384073Y255226D01*

-X384512Y255191D01*

-X384951Y255226D01*

-X385380Y255329D01*

-X385787Y255497D01*

-X386163Y255728D01*

-X386437Y255962D01*

-Y247617D01*

-X386424Y247562D01*

-X386401Y247280D01*

-X386424Y246998D01*

-X386437Y246943D01*

-Y237727D01*

-X386202Y237671D01*

-X385795Y237503D01*

-X385419Y237272D01*

-X385084Y236986D01*

-X384798Y236651D01*

-X384567Y236275D01*

-X384399Y235868D01*

-X384296Y235439D01*

-X384261Y235000D01*

-X384296Y234561D01*

-X384399Y234132D01*

-X384567Y233725D01*

-X384798Y233349D01*

-X385084Y233014D01*

-X385419Y232728D01*

-X385795Y232497D01*

-X386202Y232329D01*

-X386437Y232273D01*

-Y189647D01*

-X386434Y189651D01*

-X386148Y189986D01*

-X385813Y190272D01*

-X385437Y190503D01*

-X385030Y190671D01*

-X384601Y190774D01*

-X384162Y190809D01*

-X383723Y190774D01*

-X383294Y190671D01*

-X382887Y190503D01*

-X382511Y190272D01*

-X382176Y189986D01*

-X381890Y189651D01*

-X381659Y189275D01*

-X381491Y188868D01*

-X381388Y188439D01*

-X381353Y188000D01*

-X381388Y187561D01*

-X381491Y187132D01*

-X381659Y186725D01*

-X381890Y186349D01*

-X382176Y186014D01*

-X382511Y185728D01*

-X382887Y185497D01*

-X383294Y185329D01*

-X383723Y185226D01*

-X384162Y185191D01*

-X384601Y185226D01*

-X385030Y185329D01*

-X385437Y185497D01*

-X385813Y185728D01*

-X386148Y186014D01*

-X386434Y186349D01*

-X386437Y186353D01*

-Y165808D01*

-X386002Y165774D01*

-X385573Y165671D01*

-X385166Y165503D01*

-X384790Y165272D01*

-X384455Y164986D01*

-X384169Y164651D01*

-X383938Y164275D01*

-X383770Y163868D01*

-X383667Y163439D01*

-X383632Y163000D01*

-X383667Y162561D01*

-X383770Y162132D01*

-X383938Y161725D01*

-X384169Y161349D01*

-X384455Y161014D01*

-X384790Y160728D01*

-X385166Y160497D01*

-X385573Y160329D01*

-X386002Y160226D01*

-X386437Y160192D01*

-Y159565D01*

-X386305Y159596D01*

-X386023Y159619D01*

-X385741Y159596D01*

-X385465Y159530D01*

-X385203Y159422D01*

-X384962Y159274D01*

-X384746Y159090D01*

-X384562Y158874D01*

-X384414Y158633D01*

-X384306Y158371D01*

-X384240Y158095D01*

-X384217Y157813D01*

-X384240Y157531D01*

-X384306Y157255D01*

-X384414Y156993D01*

-X384562Y156752D01*

-X384746Y156536D01*

-X384962Y156352D01*

-X385203Y156204D01*

-X385465Y156096D01*

-X385741Y156030D01*

-X386023Y156007D01*

-X386305Y156030D01*

-X386437Y156061D01*

-Y136500D01*

-G37*

-G36*

-X377344D02*X372437D01*

-Y167578D01*

-X372441Y167577D01*

-X372880Y167612D01*

-X373309Y167715D01*

-X373716Y167883D01*

-X374092Y168114D01*

-X374427Y168400D01*

-X374713Y168735D01*

-X374944Y169111D01*

-X375112Y169518D01*

-X375215Y169947D01*

-X375241Y170386D01*

-X375215Y170825D01*

-X375112Y171254D01*

-X374944Y171661D01*

-X374713Y172037D01*

-X374427Y172372D01*

-X374092Y172658D01*

-X373716Y172889D01*

-X373309Y173057D01*

-X372880Y173160D01*

-X372441Y173195D01*

-X372437Y173194D01*

-Y258628D01*

-X372663Y258767D01*

-X372879Y258951D01*

-X373063Y259167D01*

-X373211Y259408D01*

-X373319Y259670D01*

-X373385Y259946D01*

-X373402Y260228D01*

-X373385Y260510D01*

-X373319Y260786D01*

-X373211Y261048D01*

-X373063Y261289D01*

-X372879Y261505D01*

-X372663Y261689D01*

-X372437Y261828D01*

-Y287881D01*

-X372441Y287880D01*

-X372880Y287915D01*

-X373309Y288018D01*

-X373716Y288186D01*

-X374092Y288417D01*

-X374427Y288703D01*

-X374713Y289038D01*

-X374944Y289414D01*

-X375112Y289821D01*

-X375215Y290250D01*

-X375241Y290689D01*

-X375215Y291128D01*

-X375112Y291557D01*

-X374944Y291964D01*

-X374713Y292340D01*

-X374427Y292675D01*

-X374092Y292961D01*

-X373716Y293192D01*

-X373309Y293360D01*

-X372880Y293463D01*

-X372441Y293498D01*

-X372437Y293497D01*

-Y348381D01*

-X372441Y348380D01*

-X372880Y348415D01*

-X373309Y348518D01*

-X373716Y348686D01*

-X374092Y348917D01*

-X374427Y349203D01*

-X374713Y349538D01*

-X374944Y349914D01*

-X375112Y350321D01*

-X375215Y350750D01*

-X375241Y351189D01*

-X375215Y351628D01*

-X375112Y352057D01*

-X374944Y352464D01*

-X374713Y352840D01*

-X374427Y353175D01*

-X374092Y353461D01*

-X373716Y353692D01*

-X373309Y353860D01*

-X372880Y353963D01*

-X372441Y353998D01*

-X372437Y353997D01*

-Y397000D01*

-X377344D01*

-Y237057D01*

-X377092Y237272D01*

-X376716Y237503D01*

-X376309Y237671D01*

-X375880Y237774D01*

-X375441Y237809D01*

-X375002Y237774D01*

-X374573Y237671D01*

-X374166Y237503D01*

-X373790Y237272D01*

-X373455Y236986D01*

-X373169Y236651D01*

-X372938Y236275D01*

-X372770Y235868D01*

-X372667Y235439D01*

-X372632Y235000D01*

-X372667Y234561D01*

-X372770Y234132D01*

-X372938Y233725D01*

-X373169Y233349D01*

-X373455Y233014D01*

-X373790Y232728D01*

-X374166Y232497D01*

-X374573Y232329D01*

-X375002Y232226D01*

-X375441Y232191D01*

-X375880Y232226D01*

-X376309Y232329D01*

-X376716Y232497D01*

-X377092Y232728D01*

-X377344Y232943D01*

-Y163983D01*

-X377065Y163961D01*

-X376789Y163895D01*

-X376527Y163787D01*

-X376286Y163639D01*

-X376070Y163455D01*

-X375886Y163239D01*

-X375738Y162998D01*

-X375630Y162736D01*

-X375564Y162460D01*

-X375541Y162178D01*

-X375564Y161896D01*

-X375630Y161620D01*

-X375738Y161358D01*

-X375886Y161117D01*

-X376070Y160901D01*

-X376286Y160717D01*

-X376527Y160569D01*

-X376789Y160461D01*

-X377065Y160395D01*

-X377344Y160373D01*

-Y136500D01*

-G37*

-G36*

-X372437D02*X368441D01*

-Y171500D01*

-X358938D01*

-Y206695D01*

-X358941Y206694D01*

-X359223Y206717D01*

-X359499Y206783D01*

-X359761Y206891D01*

-X360002Y207039D01*

-X360218Y207223D01*

-X360402Y207439D01*

-X360550Y207680D01*

-X360658Y207942D01*

-X360724Y208218D01*

-X360741Y208500D01*

-X360724Y208782D01*

-X360658Y209058D01*

-X360550Y209320D01*

-X360402Y209561D01*

-X360218Y209777D01*

-X360002Y209961D01*

-X359761Y210109D01*

-X359499Y210217D01*

-X359223Y210283D01*

-X358941Y210306D01*

-X358938Y210305D01*

-Y397000D01*

-X372437D01*

-Y353997D01*

-X372002Y353963D01*

-X371573Y353860D01*

-X371166Y353692D01*

-X370790Y353461D01*

-X370455Y353175D01*

-X370169Y352840D01*

-X369938Y352464D01*

-X369770Y352057D01*

-X369667Y351628D01*

-X369632Y351189D01*

-X369667Y350750D01*

-X369770Y350321D01*

-X369938Y349914D01*

-X370169Y349538D01*

-X370455Y349203D01*

-X370790Y348917D01*

-X371166Y348686D01*

-X371573Y348518D01*

-X372002Y348415D01*

-X372437Y348381D01*

-Y293497D01*

-X372002Y293463D01*

-X371573Y293360D01*

-X371166Y293192D01*

-X370790Y292961D01*

-X370455Y292675D01*

-X370169Y292340D01*

-X369938Y291964D01*

-X369770Y291557D01*

-X369667Y291128D01*

-X369632Y290689D01*

-X369667Y290250D01*

-X369770Y289821D01*

-X369938Y289414D01*

-X370169Y289038D01*

-X370455Y288703D01*

-X370790Y288417D01*

-X371166Y288186D01*

-X371573Y288018D01*

-X372002Y287915D01*

-X372437Y287881D01*

-Y261828D01*

-X372422Y261837D01*

-X372160Y261945D01*

-X371884Y262011D01*

-X371602Y262034D01*

-X371320Y262011D01*

-X371044Y261945D01*

-X370782Y261837D01*

-X370541Y261689D01*

-X370325Y261505D01*

-X370141Y261289D01*

-X369993Y261048D01*

-X369885Y260786D01*

-X369819Y260510D01*

-X369796Y260228D01*

-X369819Y259946D01*

-X369885Y259670D01*

-X369993Y259408D01*

-X370141Y259167D01*

-X370325Y258951D01*

-X370541Y258767D01*

-X370782Y258619D01*

-X371044Y258511D01*

-X371320Y258445D01*

-X371602Y258422D01*

-X371884Y258445D01*

-X372160Y258511D01*

-X372422Y258619D01*

-X372437Y258628D01*

-Y173194D01*

-X372002Y173160D01*

-X371573Y173057D01*

-X371166Y172889D01*

-X370790Y172658D01*

-X370455Y172372D01*

-X370169Y172037D01*

-X369938Y171661D01*

-X369770Y171254D01*

-X369667Y170825D01*

-X369632Y170386D01*

-X369667Y169947D01*

-X369770Y169518D01*

-X369938Y169111D01*

-X370169Y168735D01*

-X370455Y168400D01*

-X370790Y168114D01*

-X371166Y167883D01*

-X371573Y167715D01*

-X372002Y167612D01*

-X372437Y167578D01*

-Y136500D01*

-G37*

-G36*

-X358938Y171500D02*X356438D01*

-Y231195D01*

-X356441Y231194D01*

-X356723Y231217D01*

-X356999Y231283D01*

-X357261Y231391D01*

-X357502Y231539D01*

-X357718Y231723D01*

-X357902Y231939D01*

-X358050Y232180D01*

-X358158Y232442D01*

-X358224Y232718D01*

-X358241Y233000D01*

-X358224Y233282D01*

-X358158Y233558D01*

-X358050Y233820D01*

-X357902Y234061D01*

-X357718Y234277D01*

-X357502Y234461D01*

-X357261Y234609D01*

-X356999Y234717D01*

-X356723Y234783D01*

-X356441Y234806D01*

-X356438Y234805D01*

-Y397000D01*

-X358938D01*

-Y210305D01*

-X358659Y210283D01*

-X358383Y210217D01*

-X358121Y210109D01*

-X357880Y209961D01*

-X357664Y209777D01*

-X357480Y209561D01*

-X357332Y209320D01*

-X357224Y209058D01*

-X357158Y208782D01*

-X357135Y208500D01*

-X357158Y208218D01*

-X357224Y207942D01*

-X357332Y207680D01*

-X357480Y207439D01*

-X357664Y207223D01*

-X357880Y207039D01*

-X358121Y206891D01*

-X358383Y206783D01*

-X358659Y206717D01*

-X358938Y206695D01*

-Y171500D01*

-G37*

-G36*

-X356438D02*X353387D01*

-Y185739D01*

-X353955Y186404D01*

-X354781Y187752D01*

-X355387Y189214D01*

-X355756Y190752D01*

-X355849Y192329D01*

-X355756Y193906D01*

-X355387Y195444D01*

-X354781Y196906D01*

-X353955Y198254D01*

-X353387Y198919D01*

-Y337716D01*

-X353390Y337715D01*

-X353672Y337738D01*

-X353948Y337804D01*

-X354210Y337912D01*

-X354451Y338060D01*

-X354667Y338244D01*

-X354851Y338460D01*

-X354999Y338701D01*

-X355107Y338963D01*

-X355173Y339239D01*

-X355190Y339521D01*

-X355173Y339803D01*

-X355107Y340079D01*

-X354999Y340341D01*

-X354851Y340582D01*

-X354667Y340798D01*

-X354451Y340982D01*

-X354210Y341130D01*

-X353948Y341238D01*

-X353672Y341304D01*

-X353390Y341327D01*

-X353387Y341326D01*

-Y350739D01*

-X353955Y351404D01*

-X354781Y352752D01*

-X355387Y354214D01*

-X355756Y355752D01*

-X355849Y357329D01*

-X355756Y358906D01*

-X355387Y360444D01*

-X354781Y361906D01*

-X353955Y363254D01*

-X353387Y363919D01*

-Y397000D01*

-X356438D01*

-Y234805D01*

-X356159Y234783D01*

-X355883Y234717D01*

-X355621Y234609D01*

-X355380Y234461D01*

-X355164Y234277D01*

-X354980Y234061D01*

-X354832Y233820D01*

-X354724Y233558D01*

-X354658Y233282D01*

-X354635Y233000D01*

-X354658Y232718D01*

-X354724Y232442D01*

-X354832Y232180D01*

-X354980Y231939D01*

-X355164Y231723D01*

-X355380Y231539D01*

-X355621Y231391D01*

-X355883Y231283D01*

-X356159Y231217D01*

-X356438Y231195D01*

-Y171500D01*

-G37*

-G36*

-X353387Y363919D02*X352927Y364457D01*

-X351724Y365485D01*

-X350376Y366311D01*

-X348914Y366917D01*

-X347376Y367286D01*

-X345799Y367410D01*

-X344222Y367286D01*

-X342684Y366917D01*

-X341222Y366311D01*

-X339874Y365485D01*

-X339834Y365451D01*

-Y397000D01*

-X353387D01*

-Y363919D01*

-G37*

-G36*

-Y198919D02*X352927Y199457D01*

-X351724Y200485D01*

-X350376Y201311D01*

-X348914Y201917D01*

-X347376Y202286D01*

-X345799Y202410D01*

-X344222Y202286D01*

-X342684Y201917D01*

-X341222Y201311D01*

-X339874Y200485D01*

-X339834Y200451D01*

-Y223052D01*

-X339902Y223131D01*

-X340050Y223372D01*

-X340158Y223634D01*

-X340224Y223910D01*

-X340241Y224192D01*

-X340224Y224474D01*

-X340158Y224750D01*

-X340050Y225012D01*

-X339902Y225253D01*

-X339834Y225332D01*

-Y228984D01*

-X339902Y229063D01*

-X340050Y229304D01*

-X340158Y229566D01*

-X340224Y229842D01*

-X340241Y230124D01*

-X340224Y230406D01*

-X340158Y230682D01*

-X340050Y230944D01*

-X339902Y231185D01*

-X339834Y231264D01*

-Y245027D01*

-X340278Y244755D01*

-X340969Y244469D01*

-X341696Y244294D01*

-X342441Y244235D01*

-X343186Y244294D01*

-X343913Y244469D01*

-X344604Y244755D01*

-X345242Y245145D01*

-X345810Y245631D01*

-X346296Y246199D01*

-X346686Y246837D01*

-X346972Y247528D01*

-X347147Y248255D01*

-X347191Y249000D01*

-X347147Y249745D01*

-X346972Y250472D01*

-X346686Y251163D01*

-X346296Y251801D01*

-X345810Y252369D01*

-X345242Y252855D01*

-X344604Y253245D01*

-X343913Y253531D01*

-X343186Y253706D01*

-X342441Y253765D01*

-X341696Y253706D01*

-X340969Y253531D01*

-X340278Y253245D01*

-X339834Y252973D01*

-Y340022D01*

-X339837Y340021D01*

-X340119Y340044D01*

-X340395Y340110D01*

-X340657Y340218D01*

-X340898Y340366D01*

-X341114Y340550D01*

-X341298Y340766D01*

-X341446Y341007D01*

-X341554Y341269D01*

-X341620Y341545D01*

-X341637Y341827D01*

-X341620Y342109D01*

-X341554Y342385D01*

-X341446Y342647D01*

-X341298Y342888D01*

-X341114Y343104D01*

-X340898Y343288D01*

-X340657Y343436D01*

-X340395Y343544D01*

-X340119Y343610D01*

-X339837Y343633D01*

-X339834Y343632D01*

-Y349207D01*

-X339874Y349173D01*

-X341222Y348347D01*

-X342684Y347741D01*

-X344222Y347372D01*

-X345799Y347248D01*

-X347376Y347372D01*

-X348914Y347741D01*

-X350376Y348347D01*

-X351724Y349173D01*

-X352927Y350201D01*

-X353387Y350739D01*

-Y341326D01*

-X353108Y341304D01*

-X352832Y341238D01*

-X352570Y341130D01*

-X352329Y340982D01*

-X352113Y340798D01*

-X351929Y340582D01*

-X351781Y340341D01*

-X351673Y340079D01*

-X351607Y339803D01*

-X351584Y339521D01*

-X351607Y339239D01*

-X351673Y338963D01*

-X351781Y338701D01*

-X351929Y338460D01*

-X352113Y338244D01*

-X352329Y338060D01*

-X352570Y337912D01*

-X352832Y337804D01*

-X353108Y337738D01*

-X353387Y337716D01*

-Y198919D01*

-G37*

-G36*

-Y171500D02*X339834D01*

-Y184207D01*

-X339874Y184173D01*

-X341222Y183347D01*

-X342684Y182741D01*

-X344222Y182372D01*

-X345799Y182248D01*

-X347376Y182372D01*

-X348914Y182741D01*

-X350376Y183347D01*

-X351724Y184173D01*

-X352927Y185201D01*

-X353387Y185739D01*

-Y171500D01*

-G37*

-G36*

-X339834D02*X332434D01*

-Y244236D01*

-X332441Y244235D01*

-X333186Y244294D01*

-X333913Y244469D01*

-X334604Y244755D01*

-X335242Y245145D01*

-X335810Y245631D01*

-X336296Y246199D01*

-X336686Y246837D01*

-X336972Y247528D01*

-X337147Y248255D01*

-X337191Y249000D01*

-X337147Y249745D01*

-X336972Y250472D01*

-X336686Y251163D01*

-X336296Y251801D01*

-X335810Y252369D01*

-X335242Y252855D01*

-X334604Y253245D01*

-X333913Y253531D01*

-X333186Y253706D01*

-X332441Y253765D01*

-X332434Y253764D01*

-Y397000D01*

-X339834D01*

-Y365451D01*

-X338671Y364457D01*

-X337643Y363254D01*

-X336817Y361906D01*

-X336211Y360444D01*

-X335842Y358906D01*

-X335718Y357329D01*

-X335842Y355752D01*

-X336211Y354214D01*

-X336817Y352752D01*

-X337643Y351404D01*

-X338671Y350201D01*

-X339834Y349207D01*

-Y343632D01*

-X339555Y343610D01*

-X339279Y343544D01*

-X339017Y343436D01*

-X338776Y343288D01*

-X338560Y343104D01*

-X338376Y342888D01*

-X338228Y342647D01*

-X338120Y342385D01*

-X338054Y342109D01*

-X338031Y341827D01*

-X338054Y341545D01*

-X338120Y341269D01*

-X338228Y341007D01*

-X338376Y340766D01*

-X338560Y340550D01*

-X338776Y340366D01*

-X339017Y340218D01*

-X339279Y340110D01*

-X339555Y340044D01*

-X339834Y340022D01*

-Y252973D01*

-X339640Y252855D01*

-X339072Y252369D01*

-X338586Y251801D01*

-X338196Y251163D01*

-X337910Y250472D01*

-X337735Y249745D01*

-X337676Y249000D01*

-X337735Y248255D01*

-X337910Y247528D01*

-X338196Y246837D01*

-X338586Y246199D01*

-X339072Y245631D01*

-X339640Y245145D01*

-X339834Y245027D01*

-Y231264D01*

-X339718Y231401D01*

-X339502Y231585D01*

-X339261Y231733D01*

-X338999Y231841D01*

-X338723Y231907D01*

-X338441Y231930D01*

-X338159Y231907D01*

-X337883Y231841D01*

-X337621Y231733D01*

-X337380Y231585D01*

-X337164Y231401D01*

-X336980Y231185D01*

-X336832Y230944D01*

-X336724Y230682D01*

-X336658Y230406D01*

-X336635Y230124D01*

-X336658Y229842D01*

-X336724Y229566D01*

-X336832Y229304D01*

-X336980Y229063D01*

-X337164Y228847D01*

-X337380Y228663D01*

-X337621Y228515D01*

-X337883Y228407D01*

-X338159Y228341D01*

-X338441Y228318D01*

-X338723Y228341D01*

-X338999Y228407D01*

-X339261Y228515D01*

-X339502Y228663D01*

-X339718Y228847D01*

-X339834Y228984D01*

-Y225332D01*

-X339718Y225469D01*

-X339502Y225653D01*

-X339261Y225801D01*

-X338999Y225909D01*

-X338723Y225975D01*

-X338441Y225998D01*

-X338159Y225975D01*

-X337883Y225909D01*

-X337621Y225801D01*

-X337380Y225653D01*

-X337164Y225469D01*

-X336980Y225253D01*

-X336832Y225012D01*

-X336724Y224750D01*

-X336658Y224474D01*

-X336635Y224192D01*

-X336658Y223910D01*

-X336724Y223634D01*

-X336832Y223372D01*

-X336980Y223131D01*

-X337164Y222915D01*

-X337380Y222731D01*

-X337621Y222583D01*

-X337883Y222475D01*

-X338159Y222409D01*

-X338441Y222386D01*

-X338723Y222409D01*

-X338999Y222475D01*

-X339261Y222583D01*

-X339502Y222731D01*

-X339718Y222915D01*

-X339834Y223052D01*

-Y200451D01*

-X338671Y199457D01*

-X337643Y198254D01*

-X336817Y196906D01*

-X336211Y195444D01*

-X335842Y193906D01*

-X335718Y192329D01*

-X335842Y190752D01*

-X336211Y189214D01*

-X336817Y187752D01*

-X337643Y186404D01*

-X338671Y185201D01*

-X339834Y184207D01*

-Y171500D01*

-G37*

-G36*

-X332434D02*X328522D01*

-X328849Y171779D01*

-X329289Y172294D01*

-X329642Y172871D01*

-X329901Y173496D01*

-X330059Y174154D01*

-X330099Y174829D01*

-X330059Y175504D01*

-X329901Y176162D01*

-X329642Y176787D01*

-X329289Y177364D01*

-X328849Y177879D01*

-X328334Y178319D01*

-X327757Y178672D01*

-X327132Y178931D01*

-X326474Y179089D01*

-X325799Y179142D01*

-X325792Y179142D01*

-Y180516D01*

-X325799Y180516D01*

-X326474Y180569D01*

-X327132Y180727D01*

-X327757Y180986D01*

-X328334Y181339D01*

-X328849Y181779D01*

-X329289Y182294D01*

-X329642Y182871D01*

-X329901Y183496D01*

-X330059Y184154D01*

-X330099Y184829D01*

-X330059Y185504D01*

-X329901Y186162D01*

-X329642Y186787D01*

-X329289Y187364D01*

-X328849Y187879D01*

-X328334Y188319D01*

-X327757Y188672D01*

-X327132Y188931D01*

-X326474Y189089D01*

-X325799Y189142D01*

-X325792Y189142D01*

-Y245616D01*

-X325810Y245631D01*

-X326296Y246199D01*

-X326686Y246837D01*

-X326972Y247528D01*

-X327147Y248255D01*

-X327191Y249000D01*

-X327147Y249745D01*

-X326972Y250472D01*

-X326686Y251163D01*

-X326296Y251801D01*

-X325810Y252369D01*

-X325792Y252384D01*

-Y330862D01*

-X326435Y331910D01*

-X327151Y333640D01*

-X327589Y335462D01*

-X327699Y337329D01*

-X327589Y339196D01*

-X327151Y341018D01*

-X326435Y342748D01*

-X325792Y343796D01*

-Y360516D01*

-X325799Y360516D01*

-X326474Y360569D01*

-X327132Y360727D01*

-X327757Y360986D01*

-X328334Y361339D01*

-X328849Y361779D01*

-X329289Y362294D01*

-X329642Y362871D01*

-X329901Y363496D01*

-X330059Y364154D01*

-X330099Y364829D01*

-X330059Y365504D01*

-X329901Y366162D01*

-X329642Y366787D01*

-X329289Y367364D01*

-X328849Y367879D01*

-X328334Y368319D01*

-X327757Y368672D01*

-X327132Y368931D01*

-X326474Y369089D01*

-X325799Y369142D01*

-X325792Y369142D01*

-Y370516D01*

-X325799Y370516D01*

-X326474Y370569D01*

-X327132Y370727D01*

-X327757Y370986D01*

-X328334Y371339D01*

-X328849Y371779D01*

-X329289Y372294D01*

-X329642Y372871D01*

-X329901Y373496D01*

-X330059Y374154D01*

-X330099Y374829D01*

-X330059Y375504D01*

-X329901Y376162D01*

-X329642Y376787D01*

-X329289Y377364D01*

-X328849Y377879D01*

-X328334Y378319D01*

-X327757Y378672D01*

-X327132Y378931D01*

-X326474Y379089D01*

-X325799Y379142D01*

-X325792Y379142D01*

-Y397000D01*

-X332434D01*

-Y253764D01*

-X331696Y253706D01*

-X330969Y253531D01*

-X330278Y253245D01*

-X329640Y252855D01*

-X329072Y252369D01*

-X328586Y251801D01*

-X328196Y251163D01*

-X327910Y250472D01*

-X327735Y249745D01*

-X327676Y249000D01*

-X327735Y248255D01*

-X327910Y247528D01*

-X328196Y246837D01*

-X328586Y246199D01*

-X329072Y245631D01*

-X329640Y245145D01*

-X330278Y244755D01*

-X330969Y244469D01*

-X331696Y244294D01*

-X332434Y244236D01*

-Y171500D01*

-G37*

-G36*

-X325792Y343796D02*X325456Y344345D01*

-X324240Y345770D01*

-X322815Y346986D01*

-X321218Y347965D01*

-X319488Y348681D01*

-X317666Y349119D01*

-X315799Y349266D01*

-X313932Y349119D01*

-X312154Y348692D01*

-Y362548D01*

-X312309Y362294D01*

-X312749Y361779D01*

-X313264Y361339D01*

-X313841Y360986D01*

-X314466Y360727D01*

-X315124Y360569D01*

-X315799Y360516D01*

-X316474Y360569D01*

-X317132Y360727D01*

-X317757Y360986D01*

-X318334Y361339D01*

-X318849Y361779D01*

-X319289Y362294D01*

-X319642Y362871D01*

-X319901Y363496D01*

-X320059Y364154D01*

-X320099Y364829D01*

-X320059Y365504D01*

-X319901Y366162D01*

-X319642Y366787D01*

-X319289Y367364D01*

-X318849Y367879D01*

-X318334Y368319D01*

-X317757Y368672D01*

-X317132Y368931D01*

-X316474Y369089D01*

-X315799Y369142D01*

-X315124Y369089D01*

-X314466Y368931D01*

-X313841Y368672D01*

-X313264Y368319D01*

-X312749Y367879D01*

-X312309Y367364D01*

-X312154Y367110D01*

-Y372548D01*

-X312309Y372294D01*

-X312749Y371779D01*

-X313264Y371339D01*

-X313841Y370986D01*

-X314466Y370727D01*

-X315124Y370569D01*

-X315799Y370516D01*

-X316474Y370569D01*

-X317132Y370727D01*

-X317757Y370986D01*

-X318334Y371339D01*

-X318849Y371779D01*

-X319289Y372294D01*

-X319642Y372871D01*

-X319901Y373496D01*

-X320059Y374154D01*

-X320099Y374829D01*

-X320059Y375504D01*

-X319901Y376162D01*

-X319642Y376787D01*

-X319289Y377364D01*

-X318849Y377879D01*

-X318334Y378319D01*

-X317757Y378672D01*

-X317132Y378931D01*

-X316474Y379089D01*

-X315799Y379142D01*

-X315124Y379089D01*

-X314466Y378931D01*

-X313841Y378672D01*

-X313264Y378319D01*

-X312749Y377879D01*

-X312309Y377364D01*

-X312154Y377110D01*

-Y397000D01*

-X325792D01*

-Y379142D01*

-X325124Y379089D01*

-X324466Y378931D01*

-X323841Y378672D01*

-X323264Y378319D01*

-X322749Y377879D01*

-X322309Y377364D01*

-X321956Y376787D01*

-X321697Y376162D01*

-X321539Y375504D01*

-X321486Y374829D01*

-X321539Y374154D01*

-X321697Y373496D01*

-X321956Y372871D01*

-X322309Y372294D01*

-X322749Y371779D01*

-X323264Y371339D01*

-X323841Y370986D01*

-X324466Y370727D01*

-X325124Y370569D01*

-X325792Y370516D01*

-Y369142D01*

-X325124Y369089D01*

-X324466Y368931D01*

-X323841Y368672D01*

-X323264Y368319D01*

-X322749Y367879D01*

-X322309Y367364D01*

-X321956Y366787D01*

-X321697Y366162D01*

-X321539Y365504D01*

-X321486Y364829D01*

-X321539Y364154D01*

-X321697Y363496D01*

-X321956Y362871D01*

-X322309Y362294D01*

-X322749Y361779D01*

-X323264Y361339D01*

-X323841Y360986D01*

-X324466Y360727D01*

-X325124Y360569D01*

-X325792Y360516D01*

-Y343796D01*

-G37*

-G36*

-Y179142D02*X325124Y179089D01*

-X324466Y178931D01*

-X323841Y178672D01*

-X323264Y178319D01*

-X322749Y177879D01*

-X322309Y177364D01*

-X321956Y176787D01*

-X321697Y176162D01*

-X321539Y175504D01*

-X321486Y174829D01*

-X321539Y174154D01*

-X321697Y173496D01*

-X321956Y172871D01*

-X322309Y172294D01*

-X322749Y171779D01*

-X323076Y171500D01*

-X318522D01*

-X318849Y171779D01*

-X319289Y172294D01*

-X319642Y172871D01*

-X319901Y173496D01*

-X320059Y174154D01*

-X320099Y174829D01*

-X320059Y175504D01*

-X319901Y176162D01*

-X319642Y176787D01*

-X319289Y177364D01*

-X318849Y177879D01*

-X318334Y178319D01*

-X317757Y178672D01*

-X317132Y178931D01*

-X316474Y179089D01*

-X315799Y179142D01*

-X315124Y179089D01*

-X314466Y178931D01*

-X313841Y178672D01*

-X313264Y178319D01*

-X312749Y177879D01*

-X312309Y177364D01*

-X312154Y177110D01*

-Y182548D01*

-X312309Y182294D01*

-X312749Y181779D01*

-X313264Y181339D01*

-X313841Y180986D01*

-X314466Y180727D01*

-X315124Y180569D01*

-X315799Y180516D01*

-X316474Y180569D01*

-X317132Y180727D01*

-X317757Y180986D01*

-X318334Y181339D01*

-X318849Y181779D01*

-X319289Y182294D01*

-X319642Y182871D01*

-X319901Y183496D01*

-X320059Y184154D01*

-X320099Y184829D01*

-X320059Y185504D01*

-X319901Y186162D01*

-X319642Y186787D01*

-X319289Y187364D01*

-X318849Y187879D01*

-X318334Y188319D01*

-X317757Y188672D01*

-X317132Y188931D01*

-X316474Y189089D01*

-X315799Y189142D01*

-X315124Y189089D01*

-X314466Y188931D01*

-X313841Y188672D01*

-X313264Y188319D01*

-X312749Y187879D01*

-X312309Y187364D01*

-X312154Y187110D01*

-Y244256D01*

-X315926Y244264D01*

-X316156Y244319D01*

-X316374Y244409D01*

-X316575Y244533D01*

-X316755Y244686D01*

-X316908Y244866D01*

-X317032Y245067D01*

-X317122Y245285D01*

-X317177Y245515D01*

-X317191Y245750D01*

-X317177Y252485D01*

-X317122Y252715D01*

-X317032Y252933D01*

-X316908Y253134D01*

-X316755Y253314D01*

-X316575Y253467D01*

-X316374Y253591D01*

-X316156Y253681D01*

-X315926Y253736D01*

-X315691Y253750D01*

-X312154Y253743D01*

-Y292984D01*

-X312444Y293007D01*

-X312757Y293082D01*

-X313056Y293206D01*

-X313331Y293374D01*

-X313576Y293584D01*

-X313786Y293829D01*

-X313954Y294104D01*

-X314078Y294403D01*

-X314153Y294716D01*

-X314172Y295038D01*

-X314153Y295360D01*

-X314078Y295673D01*

-X313954Y295972D01*

-X313786Y296247D01*

-X313576Y296492D01*

-X313331Y296702D01*

-X313056Y296870D01*

-X312757Y296994D01*

-X312444Y297069D01*

-X312154Y297092D01*

-Y298100D01*

-X312157Y298100D01*

-X312479Y298125D01*

-X312792Y298200D01*

-X313091Y298324D01*

-X313366Y298492D01*

-X313611Y298702D01*

-X313821Y298947D01*

-X313989Y299222D01*

-X314113Y299521D01*

-X314188Y299834D01*

-X314207Y300156D01*

-X314188Y300478D01*

-X314113Y300791D01*

-X313989Y301090D01*

-X313821Y301365D01*

-X313611Y301610D01*

-X313366Y301820D01*

-X313091Y301988D01*

-X312792Y302112D01*

-X312479Y302187D01*

-X312157Y302212D01*

-X312154Y302212D01*

-Y325966D01*

-X313932Y325539D01*

-X315799Y325392D01*

-X317666Y325539D01*

-X319488Y325977D01*

-X321218Y326693D01*

-X322815Y327672D01*

-X324240Y328888D01*

-X325456Y330313D01*

-X325792Y330862D01*

-Y252384D01*

-X325242Y252855D01*

-X324604Y253245D01*

-X323913Y253531D01*

-X323186Y253706D01*

-X322441Y253765D01*

-X321696Y253706D01*

-X320969Y253531D01*

-X320278Y253245D01*

-X319640Y252855D01*

-X319072Y252369D01*

-X318586Y251801D01*

-X318196Y251163D01*

-X317910Y250472D01*

-X317735Y249745D01*

-X317676Y249000D01*

-X317735Y248255D01*

-X317910Y247528D01*

-X318196Y246837D01*

-X318586Y246199D01*

-X319072Y245631D01*

-X319640Y245145D01*

-X320278Y244755D01*

-X320969Y244469D01*

-X321696Y244294D01*

-X322441Y244235D01*

-X323186Y244294D01*

-X323913Y244469D01*

-X324604Y244755D01*

-X325242Y245145D01*

-X325792Y245616D01*

-Y189142D01*

-X325124Y189089D01*

-X324466Y188931D01*

-X323841Y188672D01*

-X323264Y188319D01*

-X322749Y187879D01*

-X322309Y187364D01*

-X321956Y186787D01*

-X321697Y186162D01*

-X321539Y185504D01*

-X321486Y184829D01*

-X321539Y184154D01*

-X321697Y183496D01*

-X321956Y182871D01*

-X322309Y182294D01*

-X322749Y181779D01*

-X323264Y181339D01*

-X323841Y180986D01*

-X324466Y180727D01*

-X325124Y180569D01*

-X325792Y180516D01*

-Y179142D01*

-G37*

-G36*

-X312154Y348692D02*X312110Y348681D01*

-X310380Y347965D01*

-X308783Y346986D01*

-X308351Y346617D01*

-Y361354D01*

-X308849Y361779D01*

-X309289Y362294D01*

-X309642Y362871D01*

-X309901Y363496D01*

-X310059Y364154D01*

-X310099Y364829D01*

-X310059Y365504D01*

-X309901Y366162D01*

-X309642Y366787D01*

-X309289Y367364D01*

-X308849Y367879D01*

-X308351Y368304D01*

-Y371354D01*

-X308849Y371779D01*

-X309289Y372294D01*

-X309642Y372871D01*

-X309901Y373496D01*

-X310059Y374154D01*

-X310099Y374829D01*

-X310059Y375504D01*

-X309901Y376162D01*

-X309642Y376787D01*

-X309289Y377364D01*

-X308849Y377879D01*

-X308351Y378304D01*

-Y397000D01*

-X312154D01*

-Y377110D01*

-X311956Y376787D01*

-X311697Y376162D01*

-X311539Y375504D01*

-X311486Y374829D01*

-X311539Y374154D01*

-X311697Y373496D01*

-X311956Y372871D01*

-X312154Y372548D01*

-Y367110D01*

-X311956Y366787D01*

-X311697Y366162D01*

-X311539Y365504D01*

-X311486Y364829D01*

-X311539Y364154D01*

-X311697Y363496D01*

-X311956Y362871D01*

-X312154Y362548D01*

-Y348692D01*

-G37*

-G36*

-Y253743D02*X308956Y253736D01*

-X308726Y253681D01*

-X308508Y253591D01*

-X308351Y253494D01*

-Y264539D01*

-X308550Y264491D01*

-X308872Y264466D01*

-X309194Y264491D01*

-X309507Y264566D01*

-X309806Y264690D01*

-X310081Y264858D01*

-X310326Y265068D01*

-X310536Y265313D01*

-X310704Y265588D01*

-X310828Y265887D01*

-X310903Y266200D01*

-X310922Y266522D01*

-X310903Y266844D01*

-X310828Y267157D01*

-X310704Y267456D01*

-X310536Y267731D01*

-X310326Y267976D01*

-X310081Y268186D01*

-X309806Y268354D01*

-X309507Y268478D01*

-X309194Y268553D01*

-X308872Y268578D01*

-X308550Y268553D01*

-X308351Y268505D01*

-Y270018D01*

-X308357Y270015D01*

-X308670Y269940D01*

-X308992Y269915D01*

-X309314Y269940D01*

-X309627Y270015D01*

-X309926Y270139D01*

-X310201Y270307D01*

-X310446Y270517D01*

-X310656Y270762D01*

-X310824Y271037D01*

-X310948Y271336D01*

-X311023Y271649D01*

-X311042Y271971D01*

-X311023Y272293D01*

-X310948Y272606D01*

-X310824Y272905D01*

-X310656Y273180D01*

-X310446Y273425D01*

-X310201Y273635D01*

-X309926Y273803D01*

-X309627Y273927D01*

-X309444Y273971D01*

-X309548Y274141D01*

-X309672Y274440D01*

-X309747Y274753D01*

-X309766Y275075D01*

-X309747Y275397D01*

-X309672Y275710D01*

-X309548Y276009D01*

-X309380Y276284D01*

-X309170Y276529D01*

-X308925Y276739D01*

-X308650Y276907D01*

-X308351Y277031D01*

-X308351Y277031D01*

-Y328041D01*

-X308783Y327672D01*

-X310380Y326693D01*

-X312110Y325977D01*

-X312154Y325966D01*

-Y302212D01*

-X311835Y302187D01*

-X311522Y302112D01*

-X311223Y301988D01*

-X310948Y301820D01*

-X310703Y301610D01*

-X310493Y301365D01*

-X310325Y301090D01*

-X310201Y300791D01*

-X310126Y300478D01*

-X310101Y300156D01*

-X310126Y299834D01*

-X310201Y299521D01*

-X310325Y299222D01*

-X310493Y298947D01*

-X310703Y298702D01*

-X310948Y298492D01*

-X311223Y298324D01*

-X311522Y298200D01*

-X311835Y298125D01*

-X312154Y298100D01*

-Y297092D01*

-X312122Y297094D01*

-X311800Y297069D01*

-X311487Y296994D01*

-X311188Y296870D01*

-X310913Y296702D01*

-X310668Y296492D01*

-X310458Y296247D01*

-X310290Y295972D01*

-X310166Y295673D01*

-X310091Y295360D01*

-X310066Y295038D01*

-X310091Y294716D01*

-X310166Y294403D01*

-X310290Y294104D01*

-X310458Y293829D01*

-X310668Y293584D01*

-X310913Y293374D01*

-X311188Y293206D01*

-X311487Y293082D01*

-X311800Y293007D01*

-X312122Y292982D01*

-X312154Y292984D01*

-Y253743D01*

-G37*

-G36*

-Y177110D02*X311956Y176787D01*

-X311697Y176162D01*

-X311539Y175504D01*

-X311486Y174829D01*

-X311539Y174154D01*

-X311697Y173496D01*

-X311956Y172871D01*

-X312154Y172548D01*

-Y171500D01*

-X308522D01*

-X308849Y171779D01*

-X309289Y172294D01*

-X309642Y172871D01*

-X309901Y173496D01*

-X310059Y174154D01*

-X310099Y174829D01*

-X310059Y175504D01*

-X309901Y176162D01*

-X309642Y176787D01*

-X309289Y177364D01*

-X308849Y177879D01*

-X308351Y178304D01*

-Y181354D01*

-X308849Y181779D01*

-X309289Y182294D01*

-X309642Y182871D01*

-X309901Y183496D01*

-X310059Y184154D01*

-X310099Y184829D01*

-X310059Y185504D01*

-X309901Y186162D01*

-X309642Y186787D01*

-X309289Y187364D01*

-X308849Y187879D01*

-X308351Y188304D01*

-Y244506D01*

-X308508Y244409D01*

-X308726Y244319D01*

-X308956Y244264D01*

-X309191Y244250D01*

-X312154Y244256D01*

-Y187110D01*

-X311956Y186787D01*

-X311697Y186162D01*

-X311539Y185504D01*

-X311486Y184829D01*

-X311539Y184154D01*

-X311697Y183496D01*

-X311956Y182871D01*

-X312154Y182548D01*

-Y177110D01*

-G37*

-G36*

-X303362Y209385D02*X303429Y209306D01*

-X303645Y209122D01*

-X303729Y209070D01*

-X303523Y208944D01*

-X303362Y208806D01*

-Y209385D01*

-G37*

-G36*

-Y338000D02*X303576Y338051D01*

-X303875Y338175D01*

-X303932Y338210D01*

-X303862Y337329D01*

-X304009Y335462D01*

-X304447Y333640D01*

-X305163Y331910D01*

-X306142Y330313D01*

-X307358Y328888D01*

-X308351Y328041D01*

-Y277031D01*

-X308038Y277106D01*

-X307716Y277131D01*

-X307394Y277106D01*

-X307081Y277031D01*

-X306782Y276907D01*

-X306507Y276739D01*

-X306262Y276529D01*

-X306052Y276284D01*

-X305884Y276009D01*

-X305760Y275710D01*

-X305685Y275397D01*

-X305660Y275075D01*

-X305685Y274753D01*

-X305760Y274440D01*

-X305884Y274141D01*

-X306052Y273866D01*

-X306262Y273621D01*

-X306507Y273411D01*

-X306782Y273243D01*

-X307081Y273119D01*

-X307264Y273075D01*

-X307160Y272905D01*

-X307036Y272606D01*

-X306961Y272293D01*

-X306936Y271971D01*

-X306961Y271649D01*

-X307036Y271336D01*

-X307160Y271037D01*

-X307328Y270762D01*

-X307538Y270517D01*

-X307783Y270307D01*

-X308058Y270139D01*

-X308351Y270018D01*

-Y268505D01*

-X308237Y268478D01*

-X307938Y268354D01*

-X307663Y268186D01*

-X307418Y267976D01*

-X307208Y267731D01*

-X307040Y267456D01*

-X306916Y267157D01*

-X306841Y266844D01*

-X306816Y266522D01*

-X306841Y266200D01*

-X306916Y265887D01*

-X307040Y265588D01*

-X307208Y265313D01*

-X307418Y265068D01*

-X307663Y264858D01*

-X307938Y264690D01*

-X308237Y264566D01*

-X308351Y264539D01*

-Y253494D01*

-X308307Y253467D01*

-X308127Y253314D01*

-X307974Y253134D01*

-X307850Y252933D01*

-X307760Y252715D01*

-X307705Y252485D01*

-X307691Y252250D01*

-X307705Y245515D01*

-X307760Y245285D01*

-X307850Y245067D01*

-X307974Y244866D01*

-X308127Y244686D01*

-X308307Y244533D01*

-X308351Y244506D01*

-Y188304D01*

-X308334Y188319D01*

-X307757Y188672D01*

-X307132Y188931D01*

-X306474Y189089D01*

-X305799Y189142D01*

-X305124Y189089D01*

-X304466Y188931D01*

-X303841Y188672D01*

-X303362Y188379D01*

-Y206160D01*

-X303523Y206022D01*

-X303764Y205874D01*

-X304026Y205766D01*

-X304105Y205747D01*

-X304003Y205660D01*

-X303819Y205444D01*

-X303671Y205203D01*

-X303563Y204941D01*

-X303497Y204665D01*

-X303474Y204383D01*

-X303497Y204101D01*

-X303563Y203825D01*

-X303671Y203563D01*

-X303819Y203322D01*

-X304003Y203106D01*

-X304219Y202922D01*

-X304460Y202774D01*

-X304722Y202666D01*

-X304998Y202600D01*

-X305280Y202577D01*

-X305562Y202600D01*

-X305838Y202666D01*

-X306100Y202774D01*

-X306341Y202922D01*

-X306557Y203106D01*

-X306741Y203322D01*

-X306889Y203563D01*

-X306997Y203825D01*

-X307063Y204101D01*

-X307080Y204383D01*

-X307063Y204665D01*

-X306997Y204941D01*

-X306889Y205203D01*

-X306741Y205444D01*

-X306557Y205660D01*

-X306341Y205844D01*

-X306100Y205992D01*

-X305838Y206100D01*

-X305759Y206119D01*

-X305861Y206206D01*

-X306045Y206422D01*

-X306193Y206663D01*

-X306301Y206925D01*

-X306367Y207201D01*

-X306384Y207483D01*

-X306367Y207765D01*

-X306301Y208041D01*

-X306193Y208303D01*

-X306045Y208544D01*

-X305861Y208760D01*

-X305645Y208944D01*

-X305561Y208996D01*

-X305767Y209122D01*

-X305983Y209306D01*

-X306167Y209522D01*

-X306315Y209763D01*

-X306423Y210025D01*

-X306489Y210301D01*

-X306506Y210583D01*

-X306489Y210865D01*

-X306423Y211141D01*

-X306315Y211403D01*

-X306167Y211644D01*

-X305983Y211860D01*

-X305767Y212044D01*

-X305526Y212192D01*

-X305264Y212300D01*

-X304988Y212366D01*

-X304706Y212389D01*

-X304424Y212366D01*

-X304148Y212300D01*

-X303886Y212192D01*

-X303645Y212044D01*

-X303429Y211860D01*

-X303362Y211781D01*

-Y327944D01*

-X303365Y327944D01*

-X303687Y327969D01*

-X304000Y328044D01*

-X304299Y328168D01*

-X304574Y328336D01*

-X304819Y328546D01*

-X305029Y328791D01*

-X305197Y329066D01*

-X305321Y329365D01*

-X305396Y329678D01*

-X305415Y330000D01*

-X305396Y330322D01*

-X305321Y330635D01*

-X305197Y330934D01*

-X305029Y331209D01*

-X304819Y331454D01*

-X304574Y331664D01*

-X304299Y331832D01*

-X304000Y331956D01*

-X303687Y332031D01*

-X303365Y332056D01*

-X303362Y332056D01*

-Y338000D01*

-G37*

-G36*

-Y361279D02*X303841Y360986D01*

-X304466Y360727D01*

-X305124Y360569D01*

-X305799Y360516D01*

-X306474Y360569D01*

-X307132Y360727D01*

-X307757Y360986D01*

-X308334Y361339D01*

-X308351Y361354D01*

-Y346617D01*

-X307358Y345770D01*

-X306142Y344345D01*

-X305163Y342748D01*

-X304553Y341276D01*

-X304395Y341461D01*

-X304150Y341671D01*

-X303875Y341839D01*

-X303576Y341963D01*

-X303362Y342014D01*

-Y361279D01*

-G37*

-G36*

-Y371279D02*X303841Y370986D01*

-X304466Y370727D01*

-X305124Y370569D01*

-X305799Y370516D01*

-X306474Y370569D01*

-X307132Y370727D01*

-X307757Y370986D01*

-X308334Y371339D01*

-X308351Y371354D01*

-Y368304D01*

-X308334Y368319D01*

-X307757Y368672D01*

-X307132Y368931D01*

-X306474Y369089D01*

-X305799Y369142D01*

-X305124Y369089D01*

-X304466Y368931D01*

-X303841Y368672D01*

-X303362Y368379D01*

-Y371279D01*

-G37*

-G36*

-Y397000D02*X308351D01*

-Y378304D01*

-X308334Y378319D01*

-X307757Y378672D01*

-X307132Y378931D01*

-X306474Y379089D01*

-X305799Y379142D01*

-X305124Y379089D01*

-X304466Y378931D01*

-X303841Y378672D01*

-X303362Y378379D01*

-Y397000D01*

-G37*

-G36*

-X308351Y178304D02*X308334Y178319D01*

-X307757Y178672D01*

-X307132Y178931D01*

-X306474Y179089D01*

-X305799Y179142D01*

-X305124Y179089D01*

-X304466Y178931D01*

-X303841Y178672D01*

-X303362Y178379D01*

-Y181279D01*

-X303841Y180986D01*

-X304466Y180727D01*

-X305124Y180569D01*

-X305799Y180516D01*

-X306474Y180569D01*

-X307132Y180727D01*

-X307757Y180986D01*

-X308334Y181339D01*

-X308351Y181354D01*

-Y178304D01*

-G37*

-G36*

-X303362Y178379D02*X303264Y178319D01*

-X302749Y177879D01*

-X302309Y177364D01*

-X301956Y176787D01*

-X301697Y176162D01*

-X301539Y175504D01*

-X301486Y174829D01*

-X301539Y174154D01*

-X301697Y173496D01*

-X301956Y172871D01*

-X302309Y172294D01*

-X302749Y171779D01*

-X303076Y171500D01*

-X298522D01*

-X298849Y171779D01*

-X299289Y172294D01*

-X299642Y172871D01*

-X299901Y173496D01*

-X300059Y174154D01*

-X300099Y174829D01*

-X300059Y175504D01*

-X299901Y176162D01*

-X299642Y176787D01*

-X299289Y177364D01*

-X298849Y177879D01*

-X298334Y178319D01*

-X297757Y178672D01*

-X297132Y178931D01*

-X296776Y179017D01*

-Y180641D01*

-X297132Y180727D01*

-X297757Y180986D01*

-X298334Y181339D01*

-X298849Y181779D01*

-X299289Y182294D01*

-X299642Y182871D01*

-X299901Y183496D01*

-X300059Y184154D01*

-X300099Y184829D01*

-X300059Y185504D01*

-X299901Y186162D01*

-X299642Y186787D01*

-X299289Y187364D01*

-X298849Y187879D01*

-X298334Y188319D01*

-X297757Y188672D01*

-X297132Y188931D01*

-X296776Y189017D01*

-Y241757D01*

-X296871Y241796D01*

-X297146Y241964D01*

-X297391Y242174D01*

-X297601Y242419D01*

-X297769Y242694D01*

-X297893Y242993D01*

-X297968Y243306D01*

-X297987Y243628D01*

-X297968Y243950D01*

-X297893Y244263D01*

-X297769Y244562D01*

-X297601Y244837D01*

-X297391Y245082D01*

-X297146Y245292D01*

-X296871Y245460D01*

-X296776Y245499D01*

-Y254175D01*

-X297049Y254196D01*

-X297362Y254271D01*

-X297661Y254395D01*

-X297936Y254563D01*

-X298181Y254773D01*

-X298391Y255018D01*

-X298559Y255293D01*

-X298683Y255592D01*

-X298758Y255905D01*

-X298777Y256227D01*

-X298758Y256549D01*

-X298683Y256862D01*

-X298559Y257161D01*

-X298391Y257436D01*

-X298181Y257681D01*

-X297936Y257891D01*

-X297661Y258059D01*

-X297362Y258183D01*

-X297049Y258258D01*

-X296776Y258279D01*

-Y302907D01*

-X296779Y302907D01*

-X297101Y302932D01*

-X297414Y303007D01*

-X297713Y303131D01*

-X297988Y303299D01*

-X298233Y303509D01*

-X298443Y303754D01*

-X298611Y304029D01*

-X298735Y304328D01*

-X298810Y304641D01*

-X298829Y304963D01*

-X298810Y305285D01*

-X298735Y305598D01*

-X298611Y305897D01*

-X298443Y306172D01*

-X298233Y306417D01*

-X297988Y306627D01*

-X297713Y306795D01*

-X297414Y306919D01*

-X297101Y306994D01*

-X296779Y307019D01*

-X296776Y307019D01*

-Y360641D01*

-X297132Y360727D01*

-X297757Y360986D01*

-X298334Y361339D01*

-X298849Y361779D01*

-X299289Y362294D01*

-X299642Y362871D01*

-X299901Y363496D01*

-X300059Y364154D01*

-X300099Y364829D01*

-X300059Y365504D01*

-X299901Y366162D01*

-X299642Y366787D01*

-X299289Y367364D01*

-X298849Y367879D01*

-X298334Y368319D01*

-X297757Y368672D01*

-X297132Y368931D01*

-X296776Y369017D01*

-Y370641D01*

-X297132Y370727D01*

-X297757Y370986D01*

-X298334Y371339D01*

-X298849Y371779D01*

-X299289Y372294D01*

-X299642Y372871D01*

-X299901Y373496D01*

-X300059Y374154D01*

-X300099Y374829D01*

-X300059Y375504D01*

-X299901Y376162D01*

-X299642Y376787D01*

-X299289Y377364D01*

-X298849Y377879D01*

-X298334Y378319D01*

-X297757Y378672D01*

-X297132Y378931D01*

-X296776Y379017D01*

-Y397000D01*

-X303362D01*

-Y378379D01*

-X303264Y378319D01*

-X302749Y377879D01*

-X302309Y377364D01*

-X301956Y376787D01*

-X301697Y376162D01*

-X301539Y375504D01*

-X301486Y374829D01*

-X301539Y374154D01*

-X301697Y373496D01*

-X301956Y372871D01*

-X302309Y372294D01*

-X302749Y371779D01*

-X303264Y371339D01*

-X303362Y371279D01*

-Y368379D01*

-X303264Y368319D01*

-X302749Y367879D01*

-X302309Y367364D01*

-X301956Y366787D01*

-X301697Y366162D01*

-X301539Y365504D01*

-X301486Y364829D01*

-X301539Y364154D01*

-X301697Y363496D01*

-X301956Y362871D01*

-X302309Y362294D01*

-X302749Y361779D01*

-X303264Y361339D01*

-X303362Y361279D01*

-Y342014D01*

-X303263Y342038D01*

-X302941Y342063D01*

-X302619Y342038D01*

-X302306Y341963D01*

-X302007Y341839D01*

-X301732Y341671D01*

-X301487Y341461D01*

-X301277Y341216D01*

-X301109Y340941D01*

-X300985Y340642D01*

-X300910Y340329D01*

-X300885Y340007D01*

-X300910Y339685D01*

-X300985Y339372D01*

-X301109Y339073D01*

-X301277Y338798D01*

-X301487Y338553D01*

-X301732Y338343D01*

-X302007Y338175D01*

-X302306Y338051D01*

-X302619Y337976D01*

-X302941Y337951D01*

-X303263Y337976D01*

-X303362Y338000D01*

-Y332056D01*

-X303043Y332031D01*

-X302730Y331956D01*

-X302431Y331832D01*

-X302156Y331664D01*

-X301911Y331454D01*

-X301701Y331209D01*

-X301533Y330934D01*

-X301409Y330635D01*

-X301334Y330322D01*

-X301309Y330000D01*

-X301334Y329678D01*

-X301409Y329365D01*

-X301533Y329066D01*

-X301701Y328791D01*

-X301911Y328546D01*

-X302156Y328336D01*

-X302431Y328168D01*

-X302730Y328044D01*

-X303043Y327969D01*

-X303362Y327944D01*

-Y211781D01*

-X303245Y211644D01*

-X303097Y211403D01*

-X302989Y211141D01*

-X302923Y210865D01*

-X302900Y210583D01*

-X302923Y210301D01*

-X302989Y210025D01*

-X303097Y209763D01*

-X303245Y209522D01*

-X303362Y209385D01*

-Y208806D01*

-X303307Y208760D01*

-X303123Y208544D01*

-X302975Y208303D01*

-X302867Y208041D01*

-X302801Y207765D01*

-X302778Y207483D01*

-X302801Y207201D01*

-X302867Y206925D01*

-X302975Y206663D01*

-X303123Y206422D01*

-X303307Y206206D01*

-X303362Y206160D01*

-Y188379D01*

-X303264Y188319D01*

-X302749Y187879D01*

-X302309Y187364D01*

-X301956Y186787D01*

-X301697Y186162D01*

-X301539Y185504D01*

-X301486Y184829D01*

-X301539Y184154D01*

-X301697Y183496D01*

-X301956Y182871D01*

-X302309Y182294D01*

-X302749Y181779D01*

-X303264Y181339D01*

-X303362Y181279D01*

-Y178379D01*

-G37*

-G36*

-X296776Y379017D02*X296474Y379089D01*

-X295799Y379142D01*

-X295124Y379089D01*

-X294466Y378931D01*

-X293899Y378696D01*

-Y397000D01*

-X296776D01*

-Y379017D01*

-G37*

-G36*

-Y369017D02*X296474Y369089D01*

-X295799Y369142D01*

-X295124Y369089D01*

-X294466Y368931D01*

-X293899Y368696D01*

-Y370962D01*

-X294466Y370727D01*

-X295124Y370569D01*

-X295799Y370516D01*

-X296474Y370569D01*

-X296776Y370641D01*

-Y369017D01*

-G37*

-G36*

-Y245499D02*X296572Y245584D01*

-X296259Y245659D01*

-X295937Y245684D01*

-X295615Y245659D01*

-X295302Y245584D01*

-X295003Y245460D01*

-X294728Y245292D01*

-X294483Y245082D01*

-X294273Y244837D01*

-X294105Y244562D01*

-X293981Y244263D01*

-X293906Y243950D01*

-X293899Y243859D01*

-Y280207D01*

-X293902Y280207D01*

-X294224Y280232D01*

-X294537Y280307D01*

-X294836Y280431D01*

-X295111Y280599D01*

-X295356Y280809D01*

-X295566Y281054D01*

-X295734Y281329D01*

-X295858Y281628D01*

-X295933Y281941D01*

-X295952Y282263D01*

-X295933Y282585D01*

-X295858Y282898D01*

-X295734Y283197D01*

-X295566Y283472D01*

-X295356Y283717D01*

-X295111Y283927D01*

-X294836Y284095D01*

-X294537Y284219D01*

-X294224Y284294D01*

-X293902Y284319D01*

-X293899Y284319D01*

-Y360962D01*

-X294466Y360727D01*

-X295124Y360569D01*

-X295799Y360516D01*

-X296474Y360569D01*

-X296776Y360641D01*

-Y307019D01*

-X296457Y306994D01*

-X296144Y306919D01*

-X295845Y306795D01*

-X295570Y306627D01*

-X295325Y306417D01*

-X295115Y306172D01*

-X294947Y305897D01*

-X294823Y305598D01*

-X294748Y305285D01*

-X294723Y304963D01*

-X294748Y304641D01*

-X294823Y304328D01*

-X294947Y304029D01*

-X295115Y303754D01*

-X295325Y303509D01*

-X295570Y303299D01*

-X295845Y303131D01*

-X296144Y303007D01*

-X296457Y302932D01*

-X296776Y302907D01*

-Y258279D01*

-X296727Y258283D01*

-X296405Y258258D01*

-X296092Y258183D01*

-X295793Y258059D01*

-X295518Y257891D01*

-X295273Y257681D01*

-X295063Y257436D01*

-X294895Y257161D01*

-X294771Y256862D01*

-X294696Y256549D01*

-X294671Y256227D01*

-X294696Y255905D01*

-X294771Y255592D01*

-X294895Y255293D01*

-X295063Y255018D01*

-X295273Y254773D01*

-X295518Y254563D01*

-X295793Y254395D01*

-X296092Y254271D01*

-X296405Y254196D01*

-X296727Y254171D01*

-X296776Y254175D01*

-Y245499D01*

-G37*

-G36*

-Y189017D02*X296474Y189089D01*

-X295799Y189142D01*

-X295124Y189089D01*

-X294466Y188931D01*

-X293899Y188696D01*

-Y243397D01*

-X293906Y243306D01*

-X293981Y242993D01*

-X294105Y242694D01*

-X294273Y242419D01*

-X294483Y242174D01*

-X294728Y241964D01*

-X295003Y241796D01*

-X295302Y241672D01*

-X295615Y241597D01*

-X295937Y241572D01*

-X296259Y241597D01*

-X296572Y241672D01*

-X296776Y241757D01*

-Y189017D01*

-G37*

-G36*

-Y179017D02*X296474Y179089D01*

-X295799Y179142D01*

-X295124Y179089D01*

-X294466Y178931D01*

-X293899Y178696D01*

-Y180962D01*

-X294466Y180727D01*

-X295124Y180569D01*

-X295799Y180516D01*

-X296474Y180569D01*

-X296776Y180641D01*

-Y179017D01*

-G37*

-G36*

-X293899Y178696D02*X293841Y178672D01*

-X293264Y178319D01*

-X292749Y177879D01*

-X292309Y177364D01*

-X291956Y176787D01*

-X291697Y176162D01*

-X291539Y175504D01*

-X291486Y174829D01*

-X291539Y174154D01*

-X291697Y173496D01*

-X291956Y172871D01*

-X292309Y172294D01*

-X292749Y171779D01*

-X293076Y171500D01*

-X288522D01*

-X288849Y171779D01*

-X289289Y172294D01*

-X289642Y172871D01*

-X289901Y173496D01*

-X290059Y174154D01*

-X290099Y174829D01*

-X290059Y175504D01*

-X289901Y176162D01*

-X289642Y176787D01*

-X289289Y177364D01*

-X288849Y177879D01*

-X288334Y178319D01*

-X287914Y178576D01*

-Y181082D01*

-X288334Y181339D01*

-X288849Y181779D01*

-X289289Y182294D01*

-X289642Y182871D01*

-X289901Y183496D01*

-X290059Y184154D01*

-X290099Y184829D01*

-X290059Y185504D01*

-X289901Y186162D01*

-X289642Y186787D01*

-X289289Y187364D01*

-X288849Y187879D01*

-X288334Y188319D01*

-X287914Y188576D01*

-Y305773D01*

-X287917Y305773D01*

-X288239Y305798D01*

-X288552Y305873D01*

-X288851Y305997D01*

-X289126Y306165D01*

-X289371Y306375D01*

-X289581Y306620D01*

-X289749Y306895D01*

-X289873Y307194D01*

-X289948Y307507D01*

-X289967Y307829D01*

-X289948Y308151D01*

-X289873Y308464D01*

-X289749Y308763D01*

-X289581Y309038D01*

-X289371Y309283D01*

-X289126Y309493D01*

-X288851Y309661D01*

-X288552Y309785D01*

-X288239Y309860D01*

-X287917Y309885D01*

-X287914Y309885D01*

-Y361082D01*

-X288334Y361339D01*

-X288849Y361779D01*

-X289289Y362294D01*

-X289642Y362871D01*

-X289901Y363496D01*

-X290059Y364154D01*

-X290099Y364829D01*

-X290059Y365504D01*

-X289901Y366162D01*

-X289642Y366787D01*

-X289289Y367364D01*

-X288849Y367879D01*

-X288334Y368319D01*

-X287914Y368576D01*

-Y371082D01*

-X288334Y371339D01*

-X288849Y371779D01*

-X289289Y372294D01*

-X289642Y372871D01*

-X289901Y373496D01*

-X290059Y374154D01*

-X290099Y374829D01*

-X290059Y375504D01*

-X289901Y376162D01*

-X289642Y376787D01*

-X289289Y377364D01*

-X288849Y377879D01*

-X288334Y378319D01*

-X287914Y378576D01*

-Y397000D01*

-X293899D01*

-Y378696D01*

-X293841Y378672D01*

-X293264Y378319D01*

-X292749Y377879D01*

-X292309Y377364D01*

-X291956Y376787D01*

-X291697Y376162D01*

-X291539Y375504D01*

-X291486Y374829D01*

-X291539Y374154D01*

-X291697Y373496D01*

-X291956Y372871D01*

-X292309Y372294D01*

-X292749Y371779D01*

-X293264Y371339D01*

-X293841Y370986D01*

-X293899Y370962D01*

-Y368696D01*

-X293841Y368672D01*

-X293264Y368319D01*

-X292749Y367879D01*

-X292309Y367364D01*

-X291956Y366787D01*

-X291697Y366162D01*

-X291539Y365504D01*

-X291486Y364829D01*

-X291539Y364154D01*

-X291697Y363496D01*

-X291956Y362871D01*

-X292309Y362294D01*

-X292749Y361779D01*

-X293264Y361339D01*

-X293841Y360986D01*

-X293899Y360962D01*

-Y284319D01*

-X293580Y284294D01*

-X293267Y284219D01*

-X292968Y284095D01*

-X292693Y283927D01*

-X292448Y283717D01*

-X292238Y283472D01*

-X292070Y283197D01*

-X291946Y282898D01*

-X291871Y282585D01*

-X291846Y282263D01*

-X291871Y281941D01*

-X291946Y281628D01*

-X292070Y281329D01*

-X292238Y281054D01*

-X292448Y280809D01*

-X292693Y280599D01*

-X292968Y280431D01*

-X293267Y280307D01*

-X293580Y280232D01*

-X293899Y280207D01*

-Y243859D01*

-X293881Y243628D01*

-X293899Y243397D01*

-Y188696D01*

-X293841Y188672D01*

-X293264Y188319D01*

-X292749Y187879D01*

-X292309Y187364D01*

-X291956Y186787D01*

-X291697Y186162D01*

-X291539Y185504D01*

-X291486Y184829D01*

-X291539Y184154D01*

-X291697Y183496D01*

-X291956Y182871D01*

-X292309Y182294D01*

-X292749Y181779D01*

-X293264Y181339D01*

-X293841Y180986D01*

-X293899Y180962D01*

-Y178696D01*

-G37*

-G36*

-X285427Y360545D02*X285799Y360516D01*

-X286474Y360569D01*

-X287132Y360727D01*

-X287757Y360986D01*

-X287914Y361082D01*

-Y309885D01*

-X287595Y309860D01*

-X287282Y309785D01*

-X286983Y309661D01*

-X286708Y309493D01*

-X286463Y309283D01*

-X286253Y309038D01*

-X286085Y308763D01*

-X285961Y308464D01*

-X285886Y308151D01*

-X285861Y307829D01*

-X285886Y307507D01*

-X285961Y307194D01*

-X286085Y306895D01*

-X286253Y306620D01*

-X286463Y306375D01*

-X286708Y306165D01*

-X286983Y305997D01*

-X287282Y305873D01*

-X287595Y305798D01*

-X287914Y305773D01*

-Y188576D01*

-X287757Y188672D01*

-X287132Y188931D01*

-X286474Y189089D01*

-X285799Y189142D01*

-X285427Y189113D01*

-Y322944D01*

-X285430Y322944D01*

-X285752Y322969D01*

-X286065Y323044D01*

-X286364Y323168D01*

-X286639Y323336D01*

-X286884Y323546D01*

-X287094Y323791D01*

-X287262Y324066D01*

-X287386Y324365D01*

-X287461Y324678D01*

-X287480Y325000D01*

-X287461Y325322D01*

-X287386Y325635D01*

-X287262Y325934D01*

-X287094Y326209D01*

-X286884Y326454D01*

-X286639Y326664D01*

-X286364Y326832D01*

-X286065Y326956D01*

-X285752Y327031D01*

-X285430Y327056D01*

-X285427Y327056D01*

-Y360545D01*

-G37*

-G36*

-Y370545D02*X285799Y370516D01*

-X286474Y370569D01*

-X287132Y370727D01*

-X287757Y370986D01*

-X287914Y371082D01*

-Y368576D01*

-X287757Y368672D01*

-X287132Y368931D01*

-X286474Y369089D01*

-X285799Y369142D01*

-X285427Y369113D01*

-Y370545D01*

-G37*

-G36*

-Y397000D02*X287914D01*

-Y378576D01*

-X287757Y378672D01*

-X287132Y378931D01*

-X286474Y379089D01*

-X285799Y379142D01*

-X285427Y379113D01*

-Y397000D01*

-G37*

-G36*

-X287914Y178576D02*X287757Y178672D01*

-X287132Y178931D01*

-X286474Y179089D01*

-X285799Y179142D01*

-X285427Y179113D01*

-Y180545D01*

-X285799Y180516D01*

-X286474Y180569D01*

-X287132Y180727D01*

-X287757Y180986D01*

-X287914Y181082D01*

-Y178576D01*

-G37*

-G36*

-X262747Y171782D02*X262749Y171779D01*

-X263076Y171500D01*

-X262747D01*

-Y171782D01*

-G37*

-G36*

-X285427Y179113D02*X285124Y179089D01*

-X284466Y178931D01*

-X283841Y178672D01*

-X283264Y178319D01*

-X282749Y177879D01*

-X282309Y177364D01*

-X281956Y176787D01*

-X281697Y176162D01*

-X281539Y175504D01*

-X281486Y174829D01*

-X281539Y174154D01*

-X281697Y173496D01*

-X281956Y172871D01*

-X282309Y172294D01*

-X282749Y171779D01*

-X283076Y171500D01*

-X278522D01*

-X278849Y171779D01*

-X279289Y172294D01*

-X279642Y172871D01*

-X279901Y173496D01*

-X280059Y174154D01*

-X280099Y174829D01*

-X280059Y175504D01*

-X279901Y176162D01*

-X279642Y176787D01*

-X279289Y177364D01*

-X278849Y177879D01*

-X278334Y178319D01*

-X278222Y178387D01*

-Y181271D01*

-X278334Y181339D01*

-X278849Y181779D01*

-X279289Y182294D01*

-X279642Y182871D01*

-X279901Y183496D01*

-X280059Y184154D01*

-X280099Y184829D01*

-X280059Y185504D01*

-X279901Y186162D01*

-X279642Y186787D01*

-X279289Y187364D01*

-X278849Y187879D01*

-X278334Y188319D01*

-X278222Y188387D01*

-Y277546D01*

-X278225Y277546D01*

-X278547Y277571D01*

-X278860Y277646D01*

-X279159Y277770D01*

-X279434Y277938D01*

-X279679Y278148D01*

-X279889Y278393D01*

-X280057Y278668D01*

-X280181Y278967D01*

-X280256Y279280D01*

-X280275Y279602D01*

-X280256Y279924D01*

-X280181Y280237D01*

-X280057Y280536D01*

-X279889Y280811D01*

-X279679Y281056D01*

-X279434Y281266D01*

-X279159Y281434D01*

-X278860Y281558D01*

-X278547Y281633D01*

-X278225Y281658D01*

-X278222Y281658D01*

-Y283674D01*

-X278380Y283539D01*

-X278621Y283391D01*

-X278883Y283283D01*

-X279159Y283217D01*

-X279441Y283194D01*

-X279723Y283217D01*

-X279999Y283283D01*

-X280261Y283391D01*

-X280502Y283539D01*

-X280718Y283723D01*

-X280902Y283939D01*

-X281050Y284180D01*

-X281158Y284442D01*

-X281224Y284718D01*

-X281241Y285000D01*

-X281224Y285282D01*

-X281158Y285558D01*

-X281050Y285820D01*

-X280902Y286061D01*

-X280718Y286277D01*

-X280502Y286461D01*

-X280261Y286609D01*

-X279999Y286717D01*

-X279723Y286783D01*

-X279441Y286806D01*

-X279159Y286783D01*

-X278883Y286717D01*

-X278621Y286609D01*

-X278380Y286461D01*

-X278222Y286326D01*

-Y296557D01*

-X278529Y296581D01*

-X278842Y296656D01*

-X279141Y296780D01*

-X279416Y296948D01*

-X279661Y297158D01*

-X279871Y297403D01*

-X280039Y297678D01*

-X280163Y297977D01*

-X280238Y298290D01*

-X280257Y298612D01*

-X280238Y298934D01*

-X280163Y299247D01*

-X280039Y299546D01*

-X279871Y299821D01*

-X279661Y300066D01*

-X279416Y300276D01*

-X279141Y300444D01*

-X278842Y300568D01*

-X278529Y300643D01*

-X278222Y300667D01*

-Y306457D01*

-X278383Y306555D01*

-X278628Y306765D01*

-X278838Y307010D01*

-X279006Y307285D01*

-X279130Y307584D01*

-X279205Y307897D01*

-X279224Y308219D01*

-X279205Y308541D01*

-X279130Y308854D01*

-X279006Y309153D01*

-X278838Y309428D01*

-X278628Y309673D01*

-X278383Y309883D01*

-X278222Y309981D01*

-Y345601D01*

-X278383Y345668D01*

-X278658Y345836D01*

-X278903Y346046D01*

-X279113Y346291D01*

-X279281Y346566D01*

-X279405Y346865D01*

-X279480Y347178D01*

-X279499Y347500D01*

-X279480Y347822D01*

-X279405Y348135D01*

-X279281Y348434D01*

-X279113Y348709D01*

-X278903Y348954D01*

-X278658Y349164D01*

-X278383Y349332D01*

-X278222Y349399D01*

-Y361271D01*

-X278334Y361339D01*

-X278849Y361779D01*

-X279289Y362294D01*

-X279642Y362871D01*

-X279901Y363496D01*

-X280059Y364154D01*

-X280099Y364829D01*

-X280059Y365504D01*

-X279901Y366162D01*

-X279642Y366787D01*

-X279289Y367364D01*

-X278849Y367879D01*

-X278334Y368319D01*

-X278222Y368387D01*

-Y371271D01*

-X278334Y371339D01*

-X278849Y371779D01*

-X279289Y372294D01*

-X279642Y372871D01*

-X279901Y373496D01*

-X280059Y374154D01*

-X280099Y374829D01*

-X280059Y375504D01*

-X279901Y376162D01*

-X279642Y376787D01*

-X279289Y377364D01*

-X278849Y377879D01*

-X278334Y378319D01*

-X278222Y378387D01*

-Y397000D01*

-X285427D01*

-Y379113D01*

-X285124Y379089D01*

-X284466Y378931D01*

-X283841Y378672D01*

-X283264Y378319D01*

-X282749Y377879D01*

-X282309Y377364D01*

-X281956Y376787D01*

-X281697Y376162D01*

-X281539Y375504D01*

-X281486Y374829D01*

-X281539Y374154D01*

-X281697Y373496D01*

-X281956Y372871D01*

-X282309Y372294D01*

-X282749Y371779D01*

-X283264Y371339D01*

-X283841Y370986D01*

-X284466Y370727D01*

-X285124Y370569D01*

-X285427Y370545D01*

-Y369113D01*

-X285124Y369089D01*

-X284466Y368931D01*

-X283841Y368672D01*

-X283264Y368319D01*

-X282749Y367879D01*

-X282309Y367364D01*

-X281956Y366787D01*

-X281697Y366162D01*

-X281539Y365504D01*

-X281486Y364829D01*

-X281539Y364154D01*

-X281697Y363496D01*

-X281956Y362871D01*

-X282309Y362294D01*

-X282749Y361779D01*

-X283264Y361339D01*

-X283841Y360986D01*

-X284466Y360727D01*

-X285124Y360569D01*

-X285427Y360545D01*

-Y327056D01*

-X285108Y327031D01*

-X284795Y326956D01*

-X284496Y326832D01*

-X284221Y326664D01*

-X283976Y326454D01*

-X283766Y326209D01*

-X283598Y325934D01*

-X283474Y325635D01*

-X283399Y325322D01*

-X283374Y325000D01*

-X283399Y324678D01*

-X283474Y324365D01*

-X283598Y324066D01*

-X283766Y323791D01*

-X283976Y323546D01*

-X284221Y323336D01*

-X284496Y323168D01*

-X284795Y323044D01*

-X285108Y322969D01*

-X285427Y322944D01*

-Y189113D01*

-X285124Y189089D01*

-X284466Y188931D01*

-X283841Y188672D01*

-X283264Y188319D01*

-X282749Y187879D01*

-X282309Y187364D01*

-X281956Y186787D01*

-X281697Y186162D01*

-X281539Y185504D01*

-X281486Y184829D01*

-X281539Y184154D01*

-X281697Y183496D01*

-X281956Y182871D01*

-X282309Y182294D01*

-X282749Y181779D01*

-X283264Y181339D01*

-X283841Y180986D01*

-X284466Y180727D01*

-X285124Y180569D01*

-X285427Y180545D01*

-Y179113D01*

-G37*

-G36*

-X278222Y178387D02*X277757Y178672D01*

-X277132Y178931D01*

-X276474Y179089D01*

-X275799Y179142D01*

-X275124Y179089D01*

-X274466Y178931D01*

-X273841Y178672D01*

-X273264Y178319D01*

-X272749Y177879D01*

-X272309Y177364D01*

-X271956Y176787D01*

-X271697Y176162D01*

-X271539Y175504D01*

-X271486Y174829D01*

-X271539Y174154D01*

-X271697Y173496D01*

-X271956Y172871D01*

-X272309Y172294D01*

-X272749Y171779D01*

-X273076Y171500D01*

-X269438D01*

-Y172538D01*

-X269642Y172871D01*

-X269901Y173496D01*

-X270059Y174154D01*

-X270099Y174829D01*

-X270059Y175504D01*

-X269901Y176162D01*

-X269642Y176787D01*

-X269438Y177120D01*

-Y182538D01*

-X269642Y182871D01*

-X269901Y183496D01*

-X270059Y184154D01*

-X270099Y184829D01*

-X270059Y185504D01*

-X269901Y186162D01*

-X269642Y186787D01*

-X269438Y187120D01*

-Y196695D01*

-X269441Y196694D01*

-X269723Y196717D01*

-X269999Y196783D01*

-X270261Y196891D01*

-X270502Y197039D01*

-X270718Y197223D01*

-X270902Y197439D01*

-X271050Y197680D01*

-X271158Y197942D01*

-X271224Y198218D01*

-X271241Y198500D01*

-X271224Y198782D01*

-X271158Y199058D01*

-X271050Y199320D01*

-X270902Y199561D01*

-X270718Y199777D01*

-X270502Y199961D01*

-X270261Y200109D01*

-X269999Y200217D01*

-X269723Y200283D01*

-X269441Y200306D01*

-X269438Y200305D01*

-Y229770D01*

-X269659Y229717D01*

-X269941Y229694D01*

-X270223Y229717D01*

-X270499Y229783D01*

-X270761Y229891D01*

-X271002Y230039D01*

-X271218Y230223D01*

-X271402Y230439D01*

-X271550Y230680D01*

-X271658Y230942D01*

-X271724Y231218D01*

-X271741Y231500D01*

-X271724Y231782D01*

-X271658Y232058D01*

-X271550Y232320D01*

-X271402Y232561D01*

-X271218Y232777D01*

-X271002Y232961D01*

-X270761Y233109D01*

-X270499Y233217D01*

-X270223Y233283D01*

-X269941Y233306D01*

-X269659Y233283D01*

-X269438Y233230D01*

-Y296592D01*

-X269653Y296575D01*

-X269975Y296600D01*

-X270288Y296675D01*

-X270587Y296799D01*

-X270862Y296967D01*

-X271107Y297177D01*

-X271317Y297422D01*

-X271426Y297601D01*

-X271565Y297373D01*

-X271775Y297128D01*

-X272020Y296918D01*

-X272295Y296750D01*

-X272594Y296626D01*

-X272907Y296551D01*

-X273229Y296526D01*

-X273551Y296551D01*

-X273864Y296626D01*

-X274163Y296750D01*

-X274438Y296918D01*

-X274683Y297128D01*

-X274893Y297373D01*

-X275061Y297648D01*

-X275185Y297947D01*

-X275260Y298260D01*

-X275279Y298582D01*

-X275260Y298904D01*

-X275185Y299217D01*

-X275061Y299516D01*

-X274893Y299791D01*

-X274683Y300036D01*

-X274438Y300246D01*

-X274163Y300414D01*

-X273864Y300538D01*

-X273551Y300613D01*

-X273229Y300638D01*

-X272907Y300613D01*

-X272594Y300538D01*

-X272295Y300414D01*

-X272020Y300246D01*

-X271775Y300036D01*

-X271565Y299791D01*

-X271456Y299612D01*

-X271317Y299840D01*

-X271107Y300085D01*

-X270862Y300295D01*

-X270587Y300463D01*

-X270288Y300587D01*

-X269975Y300662D01*

-X269653Y300687D01*

-X269438Y300670D01*

-Y312011D01*

-X269576Y312044D01*

-X269875Y312168D01*

-X270150Y312336D01*

-X270395Y312546D01*

-X270605Y312791D01*

-X270773Y313066D01*

-X270897Y313365D01*

-X270972Y313678D01*

-X270991Y314000D01*

-X270972Y314322D01*

-X270897Y314635D01*

-X270773Y314934D01*

-X270605Y315209D01*

-X270395Y315454D01*

-X270150Y315664D01*

-X269875Y315832D01*

-X269576Y315956D01*

-X269438Y315989D01*

-Y334503D01*

-X269621Y334391D01*

-X269883Y334283D01*

-X270159Y334217D01*

-X270441Y334194D01*

-X270723Y334217D01*

-X270999Y334283D01*

-X271261Y334391D01*

-X271502Y334539D01*

-X271718Y334723D01*

-X271902Y334939D01*

-X272050Y335180D01*

-X272158Y335442D01*

-X272224Y335718D01*

-X272241Y336000D01*

-X272224Y336282D01*

-X272158Y336558D01*

-X272050Y336820D01*

-X271902Y337061D01*

-X271718Y337277D01*

-X271502Y337461D01*

-X271261Y337609D01*

-X270999Y337717D01*

-X270723Y337783D01*

-X270441Y337806D01*

-X270159Y337783D01*

-X269883Y337717D01*

-X269621Y337609D01*

-X269438Y337497D01*

-Y341003D01*

-X269621Y340891D01*

-X269883Y340783D01*

-X270159Y340717D01*

-X270441Y340694D01*

-X270723Y340717D01*

-X270999Y340783D01*

-X271261Y340891D01*

-X271502Y341039D01*

-X271718Y341223D01*

-X271902Y341439D01*

-X272050Y341680D01*

-X272158Y341942D01*

-X272224Y342218D01*

-X272241Y342500D01*

-X272224Y342782D01*

-X272158Y343058D01*

-X272050Y343320D01*

-X271902Y343561D01*

-X271718Y343777D01*

-X271502Y343961D01*

-X271261Y344109D01*

-X270999Y344217D01*

-X270723Y344283D01*

-X270441Y344306D01*

-X270159Y344283D01*

-X269883Y344217D01*

-X269621Y344109D01*

-X269438Y343997D01*

-Y348003D01*

-X269621Y347891D01*

-X269883Y347783D01*

-X270159Y347717D01*

-X270441Y347694D01*

-X270723Y347717D01*

-X270999Y347783D01*

-X271261Y347891D01*

-X271502Y348039D01*

-X271718Y348223D01*

-X271902Y348439D01*

-X272050Y348680D01*

-X272158Y348942D01*

-X272224Y349218D01*

-X272241Y349500D01*

-X272224Y349782D01*

-X272158Y350058D01*

-X272050Y350320D01*

-X271902Y350561D01*

-X271718Y350777D01*

-X271502Y350961D01*

-X271261Y351109D01*

-X270999Y351217D01*

-X270723Y351283D01*

-X270441Y351306D01*

-X270159Y351283D01*

-X269883Y351217D01*

-X269621Y351109D01*

-X269438Y350997D01*

-Y355503D01*

-X269621Y355391D01*

-X269883Y355283D01*

-X270159Y355217D01*

-X270441Y355194D01*

-X270723Y355217D01*

-X270999Y355283D01*

-X271261Y355391D01*

-X271502Y355539D01*

-X271718Y355723D01*

-X271902Y355939D01*

-X272050Y356180D01*

-X272158Y356442D01*

-X272224Y356718D01*

-X272241Y357000D01*

-X272224Y357282D01*

-X272158Y357558D01*

-X272050Y357820D01*

-X271902Y358061D01*

-X271718Y358277D01*

-X271502Y358461D01*

-X271261Y358609D01*

-X270999Y358717D01*

-X270723Y358783D01*

-X270441Y358806D01*

-X270159Y358783D01*

-X269883Y358717D01*

-X269621Y358609D01*

-X269438Y358497D01*

-Y362538D01*

-X269642Y362871D01*

-X269901Y363496D01*

-X270059Y364154D01*

-X270099Y364829D01*

-X270059Y365504D01*

-X269901Y366162D01*

-X269642Y366787D01*

-X269438Y367120D01*

-Y372538D01*

-X269642Y372871D01*

-X269901Y373496D01*

-X270059Y374154D01*

-X270099Y374829D01*

-X270059Y375504D01*

-X269901Y376162D01*

-X269642Y376787D01*

-X269438Y377120D01*

-Y397000D01*

-X278222D01*

-Y378387D01*

-X277757Y378672D01*

-X277132Y378931D01*

-X276474Y379089D01*

-X275799Y379142D01*

-X275124Y379089D01*

-X274466Y378931D01*

-X273841Y378672D01*

-X273264Y378319D01*

-X272749Y377879D01*

-X272309Y377364D01*

-X271956Y376787D01*

-X271697Y376162D01*

-X271539Y375504D01*

-X271486Y374829D01*

-X271539Y374154D01*

-X271697Y373496D01*

-X271956Y372871D01*

-X272309Y372294D01*

-X272749Y371779D01*

-X273264Y371339D01*

-X273841Y370986D01*

-X274466Y370727D01*

-X275124Y370569D01*

-X275799Y370516D01*

-X276474Y370569D01*

-X277132Y370727D01*

-X277757Y370986D01*

-X278222Y371271D01*

-Y368387D01*

-X277757Y368672D01*

-X277132Y368931D01*

-X276474Y369089D01*

-X275799Y369142D01*

-X275124Y369089D01*

-X274466Y368931D01*

-X273841Y368672D01*

-X273264Y368319D01*

-X272749Y367879D01*

-X272309Y367364D01*

-X271956Y366787D01*

-X271697Y366162D01*

-X271539Y365504D01*

-X271486Y364829D01*

-X271539Y364154D01*

-X271697Y363496D01*

-X271956Y362871D01*

-X272309Y362294D01*

-X272749Y361779D01*

-X273264Y361339D01*

-X273841Y360986D01*

-X274466Y360727D01*

-X275124Y360569D01*

-X275799Y360516D01*

-X276474Y360569D01*

-X277132Y360727D01*

-X277757Y360986D01*

-X278222Y361271D01*

-Y349399D01*

-X278084Y349456D01*

-X277771Y349531D01*

-X277449Y349556D01*

-X277127Y349531D01*

-X276814Y349456D01*

-X276515Y349332D01*

-X276240Y349164D01*

-X275995Y348954D01*

-X275785Y348709D01*

-X275617Y348434D01*

-X275493Y348135D01*

-X275418Y347822D01*

-X275393Y347500D01*

-X275418Y347178D01*

-X275493Y346865D01*

-X275617Y346566D01*

-X275785Y346291D01*

-X275995Y346046D01*

-X276240Y345836D01*

-X276515Y345668D01*

-X276814Y345544D01*

-X277127Y345469D01*

-X277449Y345444D01*

-X277771Y345469D01*

-X278084Y345544D01*

-X278222Y345601D01*

-Y309981D01*

-X278108Y310051D01*

-X277809Y310175D01*

-X277496Y310250D01*

-X277174Y310275D01*

-X276852Y310250D01*

-X276539Y310175D01*

-X276240Y310051D01*

-X275965Y309883D01*

-X275720Y309673D01*

-X275510Y309428D01*

-X275342Y309153D01*

-X275218Y308854D01*

-X275143Y308541D01*

-X275118Y308219D01*

-X275143Y307897D01*

-X275218Y307584D01*

-X275342Y307285D01*

-X275510Y307010D01*

-X275720Y306765D01*

-X275965Y306555D01*

-X276240Y306387D01*

-X276539Y306263D01*

-X276852Y306188D01*

-X277174Y306163D01*

-X277496Y306188D01*

-X277809Y306263D01*

-X278108Y306387D01*

-X278222Y306457D01*

-Y300667D01*

-X278207Y300668D01*

-X277885Y300643D01*

-X277572Y300568D01*

-X277273Y300444D01*

-X276998Y300276D01*

-X276753Y300066D01*

-X276543Y299821D01*

-X276375Y299546D01*

-X276251Y299247D01*

-X276176Y298934D01*

-X276151Y298612D01*

-X276176Y298290D01*

-X276251Y297977D01*

-X276375Y297678D01*

-X276543Y297403D01*

-X276753Y297158D01*

-X276998Y296948D01*

-X277273Y296780D01*

-X277572Y296656D01*

-X277885Y296581D01*

-X278207Y296556D01*

-X278222Y296557D01*

-Y286326D01*

-X278164Y286277D01*

-X277980Y286061D01*

-X277832Y285820D01*

-X277724Y285558D01*

-X277658Y285282D01*

-X277635Y285000D01*

-X277658Y284718D01*

-X277724Y284442D01*

-X277832Y284180D01*

-X277980Y283939D01*

-X278164Y283723D01*

-X278222Y283674D01*

-Y281658D01*

-X277903Y281633D01*

-X277590Y281558D01*

-X277291Y281434D01*

-X277016Y281266D01*

-X276771Y281056D01*

-X276561Y280811D01*

-X276393Y280536D01*

-X276269Y280237D01*

-X276194Y279924D01*

-X276169Y279602D01*

-X276194Y279280D01*

-X276269Y278967D01*

-X276393Y278668D01*

-X276561Y278393D01*

-X276771Y278148D01*

-X277016Y277938D01*

-X277291Y277770D01*

-X277590Y277646D01*

-X277903Y277571D01*

-X278222Y277546D01*

-Y188387D01*

-X277757Y188672D01*

-X277132Y188931D01*

-X276474Y189089D01*

-X275799Y189142D01*

-X275124Y189089D01*

-X274466Y188931D01*

-X273841Y188672D01*

-X273264Y188319D01*

-X272749Y187879D01*

-X272309Y187364D01*

-X271956Y186787D01*

-X271697Y186162D01*

-X271539Y185504D01*

-X271486Y184829D01*

-X271539Y184154D01*

-X271697Y183496D01*

-X271956Y182871D01*

-X272309Y182294D01*

-X272749Y181779D01*

-X273264Y181339D01*

-X273841Y180986D01*

-X274466Y180727D01*

-X275124Y180569D01*

-X275799Y180516D01*

-X276474Y180569D01*

-X277132Y180727D01*

-X277757Y180986D01*

-X278222Y181271D01*

-Y178387D01*

-G37*

-G36*

-X269438Y377120D02*X269289Y377364D01*

-X268849Y377879D01*

-X268334Y378319D01*

-X267757Y378672D01*

-X267132Y378931D01*

-X266474Y379089D01*

-X265799Y379142D01*

-X265124Y379089D01*

-X264466Y378931D01*

-X263841Y378672D01*

-X263264Y378319D01*

-X262749Y377879D01*

-X262747Y377876D01*

-Y397000D01*

-X269438D01*

-Y377120D01*

-G37*

-G36*

-Y367120D02*X269289Y367364D01*

-X268849Y367879D01*

-X268334Y368319D01*

-X267757Y368672D01*

-X267132Y368931D01*

-X266474Y369089D01*

-X265799Y369142D01*

-X265124Y369089D01*

-X264466Y368931D01*

-X263841Y368672D01*

-X263264Y368319D01*

-X262749Y367879D01*

-X262747Y367876D01*

-Y371782D01*

-X262749Y371779D01*

-X263264Y371339D01*

-X263841Y370986D01*

-X264466Y370727D01*

-X265124Y370569D01*

-X265799Y370516D01*

-X266474Y370569D01*

-X267132Y370727D01*

-X267757Y370986D01*

-X268334Y371339D01*

-X268849Y371779D01*

-X269289Y372294D01*

-X269438Y372538D01*

-Y367120D01*

-G37*

-G36*

-Y300670D02*X269331Y300662D01*

-X269018Y300587D01*

-X268719Y300463D01*

-X268444Y300295D01*

-X268199Y300085D01*

-X267989Y299840D01*

-X267821Y299565D01*

-X267697Y299266D01*

-X267622Y298953D01*

-X267597Y298631D01*

-X267622Y298309D01*

-X267638Y298244D01*

-X267622Y298258D01*

-X267347Y298426D01*

-X267048Y298550D01*

-X266735Y298625D01*

-X266413Y298650D01*

-X266091Y298625D01*

-X265778Y298550D01*

-X265479Y298426D01*

-X265204Y298258D01*

-X264959Y298048D01*

-X264749Y297803D01*

-X264581Y297528D01*

-X264457Y297229D01*

-X264407Y297018D01*

-X264174Y297161D01*

-X263875Y297285D01*

-X263562Y297360D01*

-X263240Y297385D01*

-X262918Y297360D01*

-X262747Y297319D01*

-Y306063D01*

-X262779Y306090D01*

-X262963Y306306D01*

-X263111Y306547D01*

-X263219Y306809D01*

-X263285Y307085D01*

-X263302Y307367D01*

-X263285Y307649D01*

-X263219Y307925D01*

-X263111Y308187D01*

-X262963Y308428D01*

-X262779Y308644D01*

-X262747Y308671D01*

-Y318339D01*

-X262883Y318283D01*

-X263159Y318217D01*

-X263441Y318194D01*

-X263723Y318217D01*

-X263999Y318283D01*

-X264261Y318391D01*

-X264502Y318539D01*

-X264718Y318723D01*

-X264902Y318939D01*

-X265050Y319180D01*

-X265158Y319442D01*

-X265224Y319718D01*

-X265241Y320000D01*

-X265224Y320282D01*

-X265158Y320558D01*

-X265050Y320820D01*

-X264902Y321061D01*

-X264718Y321277D01*

-X264502Y321461D01*

-X264261Y321609D01*

-X263999Y321717D01*

-X263723Y321783D01*

-X263441Y321806D01*

-X263159Y321783D01*

-X262883Y321717D01*

-X262747Y321661D01*

-Y361782D01*

-X262749Y361779D01*

-X263264Y361339D01*

-X263841Y360986D01*

-X264466Y360727D01*

-X265124Y360569D01*

-X265799Y360516D01*

-X266474Y360569D01*

-X267132Y360727D01*

-X267757Y360986D01*

-X268334Y361339D01*

-X268849Y361779D01*

-X269289Y362294D01*

-X269438Y362538D01*

-Y358497D01*

-X269380Y358461D01*

-X269164Y358277D01*

-X268980Y358061D01*

-X268832Y357820D01*

-X268724Y357558D01*

-X268658Y357282D01*

-X268635Y357000D01*

-X268658Y356718D01*

-X268724Y356442D01*

-X268832Y356180D01*

-X268980Y355939D01*

-X269164Y355723D01*

-X269380Y355539D01*

-X269438Y355503D01*

-Y350997D01*

-X269380Y350961D01*

-X269164Y350777D01*

-X268980Y350561D01*

-X268832Y350320D01*

-X268724Y350058D01*

-X268658Y349782D01*

-X268635Y349500D01*

-X268658Y349218D01*

-X268724Y348942D01*

-X268832Y348680D01*

-X268980Y348439D01*

-X269164Y348223D01*

-X269380Y348039D01*

-X269438Y348003D01*

-Y343997D01*

-X269380Y343961D01*

-X269164Y343777D01*

-X268980Y343561D01*

-X268832Y343320D01*

-X268724Y343058D01*

-X268658Y342782D01*

-X268635Y342500D01*

-X268658Y342218D01*

-X268724Y341942D01*

-X268832Y341680D01*

-X268980Y341439D01*

-X269164Y341223D01*

-X269380Y341039D01*

-X269438Y341003D01*

-Y337497D01*

-X269380Y337461D01*

-X269164Y337277D01*

-X268980Y337061D01*

-X268832Y336820D01*

-X268724Y336558D01*

-X268658Y336282D01*

-X268635Y336000D01*

-X268658Y335718D01*

-X268724Y335442D01*

-X268832Y335180D01*

-X268980Y334939D01*

-X269164Y334723D01*

-X269380Y334539D01*

-X269438Y334503D01*

-Y315989D01*

-X269263Y316031D01*

-X268941Y316056D01*

-X268619Y316031D01*

-X268306Y315956D01*

-X268007Y315832D01*

-X267732Y315664D01*

-X267487Y315454D01*

-X267277Y315209D01*

-X267109Y314934D01*

-X266985Y314635D01*

-X266910Y314322D01*

-X266885Y314000D01*

-X266910Y313678D01*

-X266985Y313365D01*

-X267109Y313066D01*

-X267277Y312791D01*

-X267487Y312546D01*

-X267732Y312336D01*

-X268007Y312168D01*

-X268306Y312044D01*

-X268619Y311969D01*

-X268941Y311944D01*

-X269263Y311969D01*

-X269438Y312011D01*

-Y300670D01*

-G37*

-G36*

-Y187120D02*X269289Y187364D01*

-X268849Y187879D01*

-X268334Y188319D01*

-X267757Y188672D01*

-X267132Y188931D01*

-X266474Y189089D01*

-X265799Y189142D01*

-X265124Y189089D01*

-X264466Y188931D01*

-X263841Y188672D01*

-X263264Y188319D01*

-X262749Y187879D01*

-X262747Y187876D01*

-Y266716D01*

-X262750Y266716D01*

-X263072Y266741D01*

-X263385Y266816D01*

-X263684Y266940D01*

-X263959Y267108D01*

-X264204Y267318D01*

-X264414Y267563D01*

-X264582Y267838D01*

-X264706Y268137D01*

-X264781Y268450D01*

-X264800Y268772D01*

-X264781Y269094D01*

-X264706Y269407D01*

-X264582Y269706D01*

-X264414Y269981D01*

-X264204Y270226D01*

-X263959Y270436D01*

-X263684Y270604D01*

-X263385Y270728D01*

-X263072Y270803D01*

-X262750Y270828D01*

-X262747Y270828D01*

-Y281334D01*

-X262825Y281267D01*

-X263100Y281099D01*

-X263399Y280975D01*

-X263712Y280900D01*

-X264034Y280875D01*

-X264356Y280900D01*

-X264669Y280975D01*

-X264968Y281099D01*

-X265243Y281267D01*

-X265488Y281477D01*

-X265698Y281722D01*

-X265866Y281997D01*

-X265990Y282296D01*

-X266065Y282609D01*

-X266084Y282931D01*

-X266065Y283253D01*

-X265990Y283566D01*

-X265866Y283865D01*

-X265698Y284140D01*

-X265488Y284385D01*

-X265243Y284595D01*

-X264968Y284763D01*

-X264669Y284887D01*

-X264356Y284962D01*

-X264034Y284987D01*

-X263712Y284962D01*

-X263399Y284887D01*

-X263100Y284763D01*

-X262825Y284595D01*

-X262747Y284528D01*

-Y289773D01*

-X263062Y289798D01*

-X263375Y289873D01*

-X263674Y289997D01*

-X263949Y290165D01*

-X264194Y290375D01*

-X264404Y290620D01*

-X264572Y290895D01*

-X264696Y291194D01*

-X264771Y291507D01*

-X264790Y291829D01*

-X264771Y292151D01*

-X264696Y292464D01*

-X264572Y292763D01*

-X264404Y293038D01*

-X264194Y293283D01*

-X264019Y293433D01*

-X264174Y293497D01*

-X264449Y293665D01*

-X264694Y293875D01*

-X264904Y294120D01*

-X265072Y294395D01*

-X265196Y294694D01*

-X265246Y294905D01*

-X265479Y294762D01*

-X265778Y294638D01*

-X266091Y294563D01*

-X266413Y294538D01*

-X266735Y294563D01*

-X267048Y294638D01*

-X267347Y294762D01*

-X267622Y294930D01*

-X267867Y295140D01*

-X268077Y295385D01*

-X268245Y295660D01*

-X268369Y295959D01*

-X268444Y296272D01*

-X268463Y296594D01*

-X268444Y296916D01*

-X268428Y296981D01*

-X268444Y296967D01*

-X268719Y296799D01*

-X269018Y296675D01*

-X269331Y296600D01*

-X269438Y296592D01*

-Y233230D01*

-X269383Y233217D01*

-X269121Y233109D01*

-X268880Y232961D01*

-X268664Y232777D01*

-X268480Y232561D01*

-X268332Y232320D01*

-X268224Y232058D01*

-X268158Y231782D01*

-X268135Y231500D01*

-X268158Y231218D01*

-X268224Y230942D01*

-X268332Y230680D01*

-X268480Y230439D01*

-X268664Y230223D01*

-X268880Y230039D01*

-X269121Y229891D01*

-X269383Y229783D01*

-X269438Y229770D01*

-Y200305D01*

-X269159Y200283D01*

-X268883Y200217D01*

-X268621Y200109D01*

-X268380Y199961D01*

-X268164Y199777D01*

-X267980Y199561D01*

-X267832Y199320D01*

-X267724Y199058D01*

-X267658Y198782D01*

-X267635Y198500D01*

-X267658Y198218D01*

-X267724Y197942D01*

-X267832Y197680D01*

-X267980Y197439D01*

-X268164Y197223D01*

-X268380Y197039D01*

-X268621Y196891D01*

-X268883Y196783D01*

-X269159Y196717D01*

-X269438Y196695D01*

-Y187120D01*

-G37*

-G36*

-Y177120D02*X269289Y177364D01*

-X268849Y177879D01*

-X268334Y178319D01*

-X267757Y178672D01*

-X267132Y178931D01*

-X266474Y179089D01*

-X265799Y179142D01*

-X265124Y179089D01*

-X264466Y178931D01*

-X263841Y178672D01*

-X263264Y178319D01*

-X262749Y177879D01*

-X262747Y177876D01*

-Y181782D01*

-X262749Y181779D01*

-X263264Y181339D01*

-X263841Y180986D01*

-X264466Y180727D01*

-X265124Y180569D01*

-X265799Y180516D01*

-X266474Y180569D01*

-X267132Y180727D01*

-X267757Y180986D01*

-X268334Y181339D01*

-X268849Y181779D01*

-X269289Y182294D01*

-X269438Y182538D01*

-Y177120D01*

-G37*

-G36*

-Y171500D02*X268522D01*

-X268849Y171779D01*

-X269289Y172294D01*

-X269438Y172538D01*

-Y171500D01*

-G37*

-G36*

-X260938Y282284D02*X260976Y282293D01*

-X261275Y282417D01*

-X261550Y282585D01*

-X261795Y282795D01*

-X261984Y283017D01*

-X261978Y282931D01*

-X262003Y282609D01*

-X262078Y282296D01*

-X262202Y281997D01*

-X262370Y281722D01*

-X262580Y281477D01*

-X262747Y281334D01*

-Y270828D01*

-X262428Y270803D01*

-X262115Y270728D01*

-X261816Y270604D01*

-X261541Y270436D01*

-X261296Y270226D01*

-X261086Y269981D01*

-X260938Y269739D01*

-Y282284D01*

-G37*

-G36*

-Y290846D02*X261076Y290620D01*

-X261286Y290375D01*

-X261531Y290165D01*

-X261806Y289997D01*

-X262105Y289873D01*

-X262418Y289798D01*

-X262740Y289773D01*

-X262747Y289773D01*

-Y284528D01*

-X262580Y284385D01*

-X262386Y284157D01*

-X262391Y284249D01*

-X262372Y284571D01*

-X262297Y284884D01*

-X262173Y285183D01*

-X262005Y285458D01*

-X261795Y285703D01*

-X261550Y285913D01*

-X261275Y286081D01*

-X260976Y286205D01*

-X260938Y286214D01*

-Y290846D01*

-G37*

-G36*

-Y305652D02*X260944Y305650D01*

-X261220Y305584D01*

-X261502Y305561D01*

-X261784Y305584D01*

-X262060Y305650D01*

-X262322Y305758D01*

-X262563Y305906D01*

-X262747Y306063D01*

-Y297319D01*

-X262605Y297285D01*

-X262306Y297161D01*

-X262031Y296993D01*

-X261786Y296783D01*

-X261576Y296538D01*

-X261408Y296263D01*

-X261284Y295964D01*

-X261209Y295651D01*

-X261184Y295329D01*

-X261209Y295007D01*

-X261284Y294694D01*

-X261408Y294395D01*

-X261576Y294120D01*

-X261786Y293875D01*

-X261961Y293725D01*

-X261806Y293661D01*

-X261531Y293493D01*

-X261286Y293283D01*

-X261076Y293038D01*

-X260938Y292812D01*

-Y305652D01*

-G37*

-G36*

-Y397000D02*X262747D01*

-Y377876D01*

-X262309Y377364D01*

-X261956Y376787D01*

-X261697Y376162D01*

-X261539Y375504D01*

-X261486Y374829D01*

-X261539Y374154D01*

-X261697Y373496D01*

-X261956Y372871D01*

-X262309Y372294D01*

-X262747Y371782D01*

-Y367876D01*

-X262309Y367364D01*

-X261956Y366787D01*

-X261697Y366162D01*

-X261539Y365504D01*

-X261486Y364829D01*

-X261539Y364154D01*

-X261697Y363496D01*

-X261956Y362871D01*

-X262309Y362294D01*

-X262747Y361782D01*

-Y321661D01*

-X262621Y321609D01*

-X262380Y321461D01*

-X262164Y321277D01*

-X261980Y321061D01*

-X261832Y320820D01*

-X261724Y320558D01*

-X261658Y320282D01*

-X261635Y320000D01*

-X261658Y319718D01*

-X261724Y319442D01*

-X261832Y319180D01*

-X261980Y318939D01*

-X262164Y318723D01*

-X262380Y318539D01*

-X262621Y318391D01*

-X262747Y318339D01*

-Y308671D01*

-X262563Y308828D01*

-X262322Y308976D01*

-X262060Y309084D01*

-X261784Y309150D01*

-X261502Y309173D01*

-X261220Y309150D01*

-X260944Y309084D01*

-X260938Y309082D01*

-Y315235D01*

-X261126Y315280D01*

-X261388Y315388D01*

-X261629Y315536D01*

-X261845Y315720D01*

-X262029Y315936D01*

-X262177Y316177D01*

-X262285Y316439D01*

-X262351Y316715D01*

-X262368Y316997D01*

-X262351Y317279D01*

-X262285Y317555D01*

-X262177Y317817D01*

-X262029Y318058D01*

-X261845Y318274D01*

-X261629Y318458D01*

-X261388Y318606D01*

-X261126Y318714D01*

-X260938Y318759D01*

-Y397000D01*

-G37*

-G36*

-X262747Y177876D02*X262309Y177364D01*

-X261956Y176787D01*

-X261697Y176162D01*

-X261539Y175504D01*

-X261486Y174829D01*

-X261539Y174154D01*

-X261697Y173496D01*

-X261956Y172871D01*

-X262309Y172294D01*

-X262747Y171782D01*

-Y171500D01*

-X260938D01*

-Y189695D01*

-X260941Y189694D01*

-X261223Y189717D01*

-X261499Y189783D01*

-X261761Y189891D01*

-X262002Y190039D01*

-X262218Y190223D01*

-X262402Y190439D01*

-X262550Y190680D01*

-X262658Y190942D01*

-X262724Y191218D01*

-X262741Y191500D01*

-X262724Y191782D01*

-X262658Y192058D01*

-X262550Y192320D01*

-X262402Y192561D01*

-X262218Y192777D01*

-X262002Y192961D01*

-X261761Y193109D01*

-X261499Y193217D01*

-X261223Y193283D01*

-X260941Y193306D01*

-X260938Y193305D01*

-Y267805D01*

-X261086Y267563D01*

-X261296Y267318D01*

-X261541Y267108D01*

-X261816Y266940D01*

-X262115Y266816D01*

-X262428Y266741D01*

-X262747Y266716D01*

-Y187876D01*

-X262309Y187364D01*

-X261956Y186787D01*

-X261697Y186162D01*

-X261539Y185504D01*

-X261486Y184829D01*

-X261539Y184154D01*

-X261697Y183496D01*

-X261956Y182871D01*

-X262309Y182294D01*

-X262747Y181782D01*

-Y177876D01*

-G37*

-G36*

-X260938Y171500D02*X258522D01*

-X258849Y171779D01*

-X259289Y172294D01*

-X259642Y172871D01*

-X259901Y173496D01*

-X260059Y174154D01*

-X260099Y174829D01*

-X260059Y175504D01*

-X259901Y176162D01*

-X259642Y176787D01*

-X259289Y177364D01*

-X258849Y177879D01*

-X258334Y178319D01*

-X257757Y178672D01*

-X257132Y178931D01*

-X256474Y179089D01*

-X255799Y179142D01*

-X255124Y179089D01*

-X254466Y178931D01*

-X253841Y178672D01*

-X253264Y178319D01*

-X253098Y178177D01*

-Y181481D01*

-X253264Y181339D01*

-X253841Y180986D01*

-X254466Y180727D01*

-X255124Y180569D01*

-X255799Y180516D01*

-X256474Y180569D01*

-X257132Y180727D01*

-X257757Y180986D01*

-X258334Y181339D01*

-X258849Y181779D01*

-X259289Y182294D01*

-X259642Y182871D01*

-X259901Y183496D01*

-X260059Y184154D01*

-X260099Y184829D01*

-X260059Y185504D01*

-X259901Y186162D01*

-X259642Y186787D01*

-X259289Y187364D01*

-X258849Y187879D01*

-X258334Y188319D01*

-X257757Y188672D01*

-X257132Y188931D01*

-X256474Y189089D01*

-X255799Y189142D01*

-X255124Y189089D01*

-X254466Y188931D01*

-X253841Y188672D01*

-X253264Y188319D01*

-X253098Y188177D01*

-Y209121D01*

-X253218Y209223D01*

-X253402Y209439D01*

-X253550Y209680D01*

-X253658Y209942D01*

-X253724Y210218D01*

-X253741Y210500D01*

-X253724Y210782D01*

-X253658Y211058D01*

-X253550Y211320D01*

-X253402Y211561D01*

-X253218Y211777D01*

-X253098Y211879D01*

-Y259780D01*

-X253101Y259780D01*

-X253423Y259805D01*

-X253736Y259880D01*

-X254035Y260004D01*

-X254310Y260172D01*

-X254555Y260382D01*

-X254765Y260627D01*

-X254933Y260902D01*

-X255057Y261201D01*

-X255132Y261514D01*

-X255151Y261836D01*

-X255132Y262158D01*

-X255057Y262471D01*

-X254933Y262770D01*

-X254765Y263045D01*

-X254555Y263290D01*

-X254310Y263500D01*

-X254035Y263668D01*

-X253736Y263792D01*

-X253423Y263867D01*

-X253101Y263892D01*

-X253098Y263892D01*

-Y297095D01*

-X253286Y296875D01*

-X253531Y296665D01*

-X253806Y296497D01*

-X254105Y296373D01*

-X254418Y296298D01*

-X254740Y296273D01*

-X255062Y296298D01*

-X255375Y296373D01*

-X255674Y296497D01*

-X255949Y296665D01*

-X256194Y296875D01*

-X256404Y297120D01*

-X256572Y297395D01*

-X256696Y297694D01*

-X256771Y298007D01*

-X256790Y298329D01*

-X256771Y298651D01*

-X256696Y298964D01*

-X256572Y299263D01*

-X256404Y299538D01*

-X256194Y299783D01*

-X255949Y299993D01*

-X255674Y300161D01*

-X255375Y300285D01*

-X255062Y300360D01*

-X254740Y300385D01*

-X254418Y300360D01*

-X254105Y300285D01*

-X253806Y300161D01*

-X253531Y299993D01*

-X253286Y299783D01*

-X253098Y299563D01*

-Y361481D01*

-X253264Y361339D01*

-X253841Y360986D01*

-X254466Y360727D01*

-X255124Y360569D01*

-X255799Y360516D01*

-X256474Y360569D01*

-X257132Y360727D01*

-X257757Y360986D01*

-X258334Y361339D01*

-X258849Y361779D01*

-X259289Y362294D01*

-X259642Y362871D01*

-X259901Y363496D01*

-X260059Y364154D01*

-X260099Y364829D01*

-X260059Y365504D01*

-X259901Y366162D01*

-X259642Y366787D01*

-X259289Y367364D01*

-X258849Y367879D01*

-X258334Y368319D01*

-X257757Y368672D01*

-X257132Y368931D01*

-X256474Y369089D01*

-X255799Y369142D01*

-X255124Y369089D01*

-X254466Y368931D01*

-X253841Y368672D01*

-X253264Y368319D01*

-X253098Y368177D01*

-Y371481D01*

-X253264Y371339D01*

-X253841Y370986D01*

-X254466Y370727D01*

-X255124Y370569D01*

-X255799Y370516D01*

-X256474Y370569D01*

-X257132Y370727D01*

-X257757Y370986D01*

-X258334Y371339D01*

-X258849Y371779D01*

-X259289Y372294D01*

-X259642Y372871D01*

-X259901Y373496D01*

-X260059Y374154D01*

-X260099Y374829D01*

-X260059Y375504D01*

-X259901Y376162D01*

-X259642Y376787D01*

-X259289Y377364D01*

-X258849Y377879D01*

-X258334Y378319D01*

-X257757Y378672D01*

-X257132Y378931D01*

-X256474Y379089D01*

-X255799Y379142D01*

-X255124Y379089D01*

-X254466Y378931D01*

-X253841Y378672D01*

-X253264Y378319D01*

-X253098Y378177D01*

-Y397000D01*

-X260938D01*

-Y318759D01*

-X260850Y318780D01*

-X260568Y318803D01*

-X260286Y318780D01*

-X260010Y318714D01*

-X259748Y318606D01*

-X259507Y318458D01*

-X259291Y318274D01*

-X259107Y318058D01*

-X258959Y317817D01*

-X258851Y317555D01*

-X258785Y317279D01*

-X258762Y316997D01*

-X258785Y316715D01*

-X258851Y316439D01*

-X258959Y316177D01*

-X259107Y315936D01*

-X259291Y315720D01*

-X259507Y315536D01*

-X259748Y315388D01*

-X260010Y315280D01*

-X260286Y315214D01*

-X260568Y315191D01*

-X260850Y315214D01*

-X260938Y315235D01*

-Y309082D01*

-X260682Y308976D01*

-X260441Y308828D01*

-X260225Y308644D01*

-X260041Y308428D01*

-X259893Y308187D01*

-X259785Y307925D01*

-X259719Y307649D01*

-X259696Y307367D01*

-X259719Y307085D01*

-X259785Y306809D01*

-X259893Y306547D01*

-X260041Y306306D01*

-X260225Y306090D01*

-X260441Y305906D01*

-X260682Y305758D01*

-X260938Y305652D01*

-Y292812D01*

-X260908Y292763D01*

-X260784Y292464D01*

-X260709Y292151D01*

-X260684Y291829D01*

-X260709Y291507D01*

-X260784Y291194D01*

-X260908Y290895D01*

-X260938Y290846D01*

-Y286214D01*

-X260663Y286280D01*

-X260341Y286305D01*

-X260019Y286280D01*

-X259706Y286205D01*

-X259407Y286081D01*

-X259132Y285913D01*

-X258887Y285703D01*

-X258677Y285458D01*

-X258509Y285183D01*

-X258385Y284884D01*

-X258310Y284571D01*

-X258285Y284249D01*

-X258310Y283927D01*

-X258385Y283614D01*

-X258509Y283315D01*

-X258677Y283040D01*

-X258887Y282795D01*

-X259132Y282585D01*

-X259407Y282417D01*

-X259706Y282293D01*

-X260019Y282218D01*

-X260341Y282193D01*

-X260663Y282218D01*

-X260938Y282284D01*

-Y269739D01*

-X260918Y269706D01*

-X260794Y269407D01*

-X260719Y269094D01*

-X260694Y268772D01*

-X260719Y268450D01*

-X260794Y268137D01*

-X260918Y267838D01*

-X260938Y267805D01*

-Y193305D01*

-X260659Y193283D01*

-X260383Y193217D01*

-X260121Y193109D01*

-X259880Y192961D01*

-X259664Y192777D01*

-X259480Y192561D01*

-X259332Y192320D01*

-X259224Y192058D01*

-X259158Y191782D01*

-X259135Y191500D01*

-X259158Y191218D01*

-X259224Y190942D01*

-X259332Y190680D01*

-X259480Y190439D01*

-X259664Y190223D01*

-X259880Y190039D01*

-X260121Y189891D01*

-X260383Y189783D01*

-X260659Y189717D01*

-X260938Y189695D01*

-Y171500D01*

-G37*

-G36*

-X250938Y397000D02*X253098D01*

-Y378177D01*

-X252749Y377879D01*

-X252309Y377364D01*

-X251956Y376787D01*

-X251697Y376162D01*

-X251539Y375504D01*

-X251486Y374829D01*

-X251539Y374154D01*

-X251697Y373496D01*

-X251956Y372871D01*

-X252309Y372294D01*

-X252749Y371779D01*

-X253098Y371481D01*

-Y368177D01*

-X252749Y367879D01*

-X252309Y367364D01*

-X251956Y366787D01*

-X251697Y366162D01*

-X251539Y365504D01*

-X251486Y364829D01*

-X251539Y364154D01*

-X251697Y363496D01*

-X251956Y362871D01*

-X252309Y362294D01*

-X252749Y361779D01*

-X253098Y361481D01*

-Y299563D01*

-X253076Y299538D01*

-X252908Y299263D01*

-X252784Y298964D01*

-X252709Y298651D01*

-X252684Y298329D01*

-X252709Y298007D01*

-X252784Y297694D01*

-X252908Y297395D01*

-X253076Y297120D01*

-X253098Y297095D01*

-Y263892D01*

-X252779Y263867D01*

-X252466Y263792D01*

-X252167Y263668D01*

-X251892Y263500D01*

-X251647Y263290D01*

-X251437Y263045D01*

-X251269Y262770D01*

-X251145Y262471D01*

-X251070Y262158D01*

-X251045Y261836D01*

-X251070Y261514D01*

-X251145Y261201D01*

-X251269Y260902D01*

-X251437Y260627D01*

-X251647Y260382D01*

-X251892Y260172D01*

-X252167Y260004D01*

-X252466Y259880D01*

-X252779Y259805D01*

-X253098Y259780D01*

-Y211879D01*

-X253002Y211961D01*

-X252761Y212109D01*

-X252499Y212217D01*

-X252223Y212283D01*

-X251941Y212306D01*

-X251659Y212283D01*

-X251383Y212217D01*

-X251121Y212109D01*

-X250938Y211997D01*

-Y227695D01*

-X250941Y227694D01*

-X251223Y227717D01*

-X251499Y227783D01*

-X251761Y227891D01*

-X252002Y228039D01*

-X252218Y228223D01*

-X252402Y228439D01*

-X252550Y228680D01*

-X252658Y228942D01*

-X252724Y229218D01*

-X252741Y229500D01*

-X252724Y229782D01*

-X252658Y230058D01*

-X252550Y230320D01*

-X252402Y230561D01*

-X252218Y230777D01*

-X252002Y230961D01*

-X251761Y231109D01*

-X251499Y231217D01*

-X251223Y231283D01*

-X250941Y231306D01*

-X250938Y231305D01*

-Y397000D01*

-G37*

-G36*

-X253098Y178177D02*X252749Y177879D01*

-X252309Y177364D01*

-X251956Y176787D01*

-X251697Y176162D01*

-X251539Y175504D01*

-X251486Y174829D01*

-X251539Y174154D01*

-X251697Y173496D01*

-X251956Y172871D01*

-X252309Y172294D01*

-X252749Y171779D01*

-X253076Y171500D01*

-X250938D01*

-Y209003D01*

-X251121Y208891D01*

-X251383Y208783D01*

-X251659Y208717D01*

-X251941Y208694D01*

-X252223Y208717D01*

-X252499Y208783D01*

-X252761Y208891D01*

-X253002Y209039D01*

-X253098Y209121D01*

-Y188177D01*

-X252749Y187879D01*

-X252309Y187364D01*

-X251956Y186787D01*

-X251697Y186162D01*

-X251539Y185504D01*

-X251486Y184829D01*

-X251539Y184154D01*

-X251697Y183496D01*

-X251956Y182871D01*

-X252309Y182294D01*

-X252749Y181779D01*

-X253098Y181481D01*

-Y178177D01*

-G37*

-G36*

-X250938Y171500D02*X249098D01*

-Y172071D01*

-X249289Y172294D01*

-X249642Y172871D01*

-X249901Y173496D01*

-X250059Y174154D01*

-X250099Y174829D01*

-X250059Y175504D01*

-X249901Y176162D01*

-X249642Y176787D01*

-X249289Y177364D01*

-X249098Y177587D01*

-Y182071D01*

-X249289Y182294D01*

-X249642Y182871D01*

-X249901Y183496D01*

-X250059Y184154D01*

-X250099Y184829D01*

-X250059Y185504D01*

-X249901Y186162D01*

-X249642Y186787D01*

-X249289Y187364D01*

-X249098Y187587D01*

-Y326988D01*

-X249101Y326987D01*

-X249383Y327010D01*

-X249659Y327076D01*

-X249921Y327184D01*

-X250162Y327332D01*

-X250378Y327516D01*

-X250562Y327732D01*

-X250710Y327973D01*

-X250818Y328235D01*

-X250884Y328511D01*

-X250901Y328793D01*

-X250884Y329075D01*

-X250818Y329351D01*

-X250710Y329613D01*

-X250562Y329854D01*

-X250378Y330070D01*

-X250162Y330254D01*

-X249921Y330402D01*

-X249659Y330510D01*

-X249383Y330576D01*

-X249101Y330599D01*

-X249098Y330598D01*

-Y362071D01*

-X249289Y362294D01*

-X249642Y362871D01*

-X249901Y363496D01*

-X250059Y364154D01*

-X250099Y364829D01*

-X250059Y365504D01*

-X249901Y366162D01*

-X249642Y366787D01*

-X249289Y367364D01*

-X249098Y367587D01*

-Y372071D01*

-X249289Y372294D01*

-X249642Y372871D01*

-X249901Y373496D01*

-X250059Y374154D01*

-X250099Y374829D01*

-X250059Y375504D01*

-X249901Y376162D01*

-X249642Y376787D01*

-X249289Y377364D01*

-X249098Y377587D01*

-Y397000D01*

-X250938D01*

-Y231305D01*

-X250659Y231283D01*

-X250383Y231217D01*

-X250121Y231109D01*

-X249880Y230961D01*

-X249664Y230777D01*

-X249480Y230561D01*

-X249332Y230320D01*

-X249224Y230058D01*

-X249158Y229782D01*

-X249135Y229500D01*

-X249158Y229218D01*

-X249224Y228942D01*

-X249332Y228680D01*

-X249480Y228439D01*

-X249664Y228223D01*

-X249880Y228039D01*

-X250121Y227891D01*

-X250383Y227783D01*

-X250659Y227717D01*

-X250938Y227695D01*

-Y211997D01*

-X250880Y211961D01*

-X250664Y211777D01*

-X250480Y211561D01*

-X250332Y211320D01*

-X250224Y211058D01*

-X250158Y210782D01*

-X250135Y210500D01*

-X250158Y210218D01*

-X250224Y209942D01*

-X250332Y209680D01*

-X250480Y209439D01*

-X250664Y209223D01*

-X250880Y209039D01*

-X250938Y209003D01*

-Y171500D01*

-G37*

-G36*

-X249098Y377587D02*X248849Y377879D01*

-X248334Y378319D01*

-X247757Y378672D01*

-X247132Y378931D01*

-X246474Y379089D01*

-X245799Y379142D01*

-X245554Y379123D01*

-Y397000D01*

-X249098D01*

-Y377587D01*

-G37*

-G36*

-Y367587D02*X248849Y367879D01*

-X248334Y368319D01*

-X247757Y368672D01*

-X247132Y368931D01*

-X246474Y369089D01*

-X245799Y369142D01*

-X245554Y369123D01*

-Y370535D01*

-X245799Y370516D01*

-X246474Y370569D01*

-X247132Y370727D01*

-X247757Y370986D01*

-X248334Y371339D01*

-X248849Y371779D01*

-X249098Y372071D01*

-Y367587D01*

-G37*

-G36*

-Y187587D02*X248849Y187879D01*

-X248334Y188319D01*

-X247757Y188672D01*

-X247132Y188931D01*

-X246474Y189089D01*

-X245799Y189142D01*

-X245554Y189123D01*

-Y189747D01*

-X245581Y189741D01*

-X245863Y189718D01*

-X246145Y189741D01*

-X246421Y189807D01*

-X246683Y189915D01*

-X246924Y190063D01*

-X247140Y190247D01*

-X247324Y190463D01*

-X247472Y190704D01*

-X247580Y190966D01*

-X247646Y191242D01*

-X247663Y191524D01*

-X247646Y191806D01*

-X247580Y192082D01*

-X247472Y192344D01*

-X247324Y192585D01*

-X247140Y192801D01*

-X246924Y192985D01*

-X246683Y193133D01*

-X246421Y193241D01*

-X246145Y193307D01*

-X245863Y193330D01*

-X245581Y193307D01*

-X245554Y193301D01*

-Y201190D01*

-X245658Y201442D01*

-X245724Y201718D01*

-X245741Y202000D01*

-X245724Y202282D01*

-X245658Y202558D01*

-X245554Y202810D01*

-Y227933D01*

-X245621Y227891D01*

-X245883Y227783D01*

-X246159Y227717D01*

-X246441Y227694D01*

-X246723Y227717D01*

-X246999Y227783D01*

-X247261Y227891D01*

-X247502Y228039D01*

-X247718Y228223D01*

-X247902Y228439D01*

-X248050Y228680D01*

-X248158Y228942D01*

-X248224Y229218D01*

-X248241Y229500D01*

-X248224Y229782D01*

-X248158Y230058D01*

-X248050Y230320D01*

-X247902Y230561D01*

-X247718Y230777D01*

-X247502Y230961D01*

-X247261Y231109D01*

-X246999Y231217D01*

-X246723Y231283D01*

-X246441Y231306D01*

-X246159Y231283D01*

-X245883Y231217D01*

-X245621Y231109D01*

-X245554Y231067D01*

-Y236853D01*

-X245664Y236723D01*

-X245880Y236539D01*

-X246121Y236391D01*

-X246383Y236283D01*

-X246659Y236217D01*

-X246941Y236194D01*

-X247223Y236217D01*

-X247499Y236283D01*

-X247761Y236391D01*

-X248002Y236539D01*

-X248218Y236723D01*

-X248402Y236939D01*

-X248550Y237180D01*

-X248658Y237442D01*

-X248724Y237718D01*

-X248741Y238000D01*

-X248724Y238282D01*

-X248658Y238558D01*

-X248550Y238820D01*

-X248402Y239061D01*

-X248218Y239277D01*

-X248002Y239461D01*

-X247761Y239609D01*

-X247499Y239717D01*

-X247223Y239783D01*

-X246941Y239806D01*

-X246659Y239783D01*

-X246383Y239717D01*

-X246121Y239609D01*

-X245880Y239461D01*

-X245664Y239277D01*

-X245554Y239147D01*

-Y277452D01*

-X245557Y277452D01*

-X245879Y277477D01*

-X246192Y277552D01*

-X246491Y277676D01*

-X246766Y277844D01*

-X247011Y278054D01*

-X247221Y278299D01*

-X247389Y278574D01*

-X247513Y278873D01*

-X247588Y279186D01*

-X247607Y279508D01*

-X247588Y279830D01*

-X247513Y280143D01*

-X247389Y280442D01*

-X247221Y280717D01*

-X247011Y280962D01*

-X246766Y281172D01*

-X246491Y281340D01*

-X246192Y281464D01*

-X245879Y281539D01*

-X245557Y281564D01*

-X245554Y281564D01*

-Y301669D01*

-X245670Y301570D01*

-X245911Y301422D01*

-X246173Y301314D01*

-X246449Y301248D01*

-X246731Y301225D01*

-X247013Y301248D01*

-X247289Y301314D01*

-X247551Y301422D01*

-X247792Y301570D01*

-X248008Y301754D01*

-X248192Y301970D01*

-X248340Y302211D01*

-X248448Y302473D01*

-X248514Y302749D01*

-X248531Y303031D01*

-X248514Y303313D01*

-X248448Y303589D01*

-X248340Y303851D01*

-X248192Y304092D01*

-X248008Y304308D01*

-X247792Y304492D01*

-X247551Y304640D01*

-X247289Y304748D01*

-X247013Y304814D01*

-X246731Y304837D01*

-X246449Y304814D01*

-X246173Y304748D01*

-X245911Y304640D01*

-X245670Y304492D01*

-X245554Y304393D01*

-Y360535D01*

-X245799Y360516D01*

-X246474Y360569D01*

-X247132Y360727D01*

-X247757Y360986D01*

-X248334Y361339D01*

-X248849Y361779D01*

-X249098Y362071D01*

-Y330598D01*

-X248819Y330576D01*

-X248543Y330510D01*

-X248281Y330402D01*

-X248040Y330254D01*

-X247824Y330070D01*

-X247640Y329854D01*

-X247492Y329613D01*

-X247384Y329351D01*

-X247318Y329075D01*

-X247295Y328793D01*

-X247318Y328511D01*

-X247384Y328235D01*

-X247492Y327973D01*

-X247640Y327732D01*

-X247824Y327516D01*

-X248040Y327332D01*

-X248281Y327184D01*

-X248543Y327076D01*

-X248819Y327010D01*

-X249098Y326988D01*

-Y187587D01*

-G37*

-G36*

-Y177587D02*X248849Y177879D01*

-X248334Y178319D01*

-X247757Y178672D01*

-X247132Y178931D01*

-X246474Y179089D01*

-X245799Y179142D01*

-X245554Y179123D01*

-Y180535D01*

-X245799Y180516D01*

-X246474Y180569D01*

-X247132Y180727D01*

-X247757Y180986D01*

-X248334Y181339D01*

-X248849Y181779D01*

-X249098Y182071D01*

-Y177587D01*

-G37*

-G36*

-Y171500D02*X248522D01*

-X248849Y171779D01*

-X249098Y172071D01*

-Y171500D01*

-G37*

-G36*

-X242453Y200984D02*X242480Y200939D01*

-X242664Y200723D01*

-X242880Y200539D01*

-X243121Y200391D01*

-X243383Y200283D01*

-X243659Y200217D01*

-X243941Y200194D01*

-X244223Y200217D01*

-X244499Y200283D01*

-X244761Y200391D01*

-X245002Y200539D01*

-X245218Y200723D01*

-X245402Y200939D01*

-X245550Y201180D01*

-X245554Y201190D01*

-Y193301D01*

-X245305Y193241D01*

-X245043Y193133D01*

-X244802Y192985D01*

-X244586Y192801D01*

-X244402Y192585D01*

-X244254Y192344D01*

-X244146Y192082D01*

-X244080Y191806D01*

-X244057Y191524D01*

-X244080Y191242D01*

-X244146Y190966D01*

-X244254Y190704D01*

-X244402Y190463D01*

-X244586Y190247D01*

-X244802Y190063D01*

-X245043Y189915D01*

-X245305Y189807D01*

-X245554Y189747D01*

-Y189123D01*

-X245124Y189089D01*

-X244466Y188931D01*

-X243841Y188672D01*

-X243264Y188319D01*

-X242749Y187879D01*

-X242453Y187532D01*

-Y200984D01*

-G37*

-G36*

-Y362126D02*X242749Y361779D01*

-X243264Y361339D01*

-X243841Y360986D01*

-X244466Y360727D01*

-X245124Y360569D01*

-X245554Y360535D01*

-Y304393D01*

-X245454Y304308D01*

-X245270Y304092D01*

-X245122Y303851D01*

-X245014Y303589D01*

-X244948Y303313D01*

-X244925Y303031D01*

-X244948Y302749D01*

-X245014Y302473D01*

-X245122Y302211D01*

-X245270Y301970D01*

-X245454Y301754D01*

-X245554Y301669D01*

-Y281564D01*

-X245235Y281539D01*

-X244922Y281464D01*

-X244623Y281340D01*

-X244348Y281172D01*

-X244103Y280962D01*

-X243893Y280717D01*

-X243725Y280442D01*

-X243601Y280143D01*

-X243526Y279830D01*

-X243501Y279508D01*

-X243526Y279186D01*

-X243601Y278873D01*

-X243725Y278574D01*

-X243893Y278299D01*

-X244103Y278054D01*

-X244348Y277844D01*

-X244623Y277676D01*

-X244922Y277552D01*

-X245235Y277477D01*

-X245554Y277452D01*

-Y239147D01*

-X245480Y239061D01*

-X245332Y238820D01*

-X245224Y238558D01*

-X245158Y238282D01*

-X245135Y238000D01*

-X245158Y237718D01*

-X245224Y237442D01*

-X245332Y237180D01*

-X245480Y236939D01*

-X245554Y236853D01*

-Y231067D01*

-X245380Y230961D01*

-X245164Y230777D01*

-X244980Y230561D01*

-X244832Y230320D01*

-X244724Y230058D01*

-X244658Y229782D01*

-X244635Y229500D01*

-X244658Y229218D01*

-X244724Y228942D01*

-X244832Y228680D01*

-X244980Y228439D01*

-X245164Y228223D01*

-X245380Y228039D01*

-X245554Y227933D01*

-Y202810D01*

-X245550Y202820D01*

-X245402Y203061D01*

-X245218Y203277D01*

-X245002Y203461D01*

-X244761Y203609D01*

-X244499Y203717D01*

-X244223Y203783D01*

-X243941Y203806D01*

-X243659Y203783D01*

-X243383Y203717D01*

-X243121Y203609D01*

-X242880Y203461D01*

-X242664Y203277D01*

-X242480Y203061D01*

-X242453Y203016D01*

-Y227695D01*

-X242723Y227717D01*

-X242999Y227783D01*

-X243261Y227891D01*

-X243502Y228039D01*

-X243718Y228223D01*

-X243902Y228439D01*

-X244050Y228680D01*

-X244158Y228942D01*

-X244224Y229218D01*

-X244241Y229500D01*

-X244224Y229782D01*

-X244158Y230058D01*

-X244050Y230320D01*

-X243902Y230561D01*

-X243718Y230777D01*

-X243502Y230961D01*

-X243261Y231109D01*

-X242999Y231217D01*

-X242723Y231283D01*

-X242453Y231305D01*

-Y291487D01*

-X242456Y291487D01*

-X242778Y291512D01*

-X243091Y291587D01*

-X243390Y291711D01*

-X243665Y291879D01*

-X243910Y292089D01*

-X244120Y292334D01*

-X244288Y292609D01*

-X244412Y292908D01*

-X244487Y293221D01*

-X244506Y293543D01*

-X244487Y293865D01*

-X244412Y294178D01*

-X244288Y294477D01*

-X244120Y294752D01*

-X243910Y294997D01*

-X243665Y295207D01*

-X243390Y295375D01*

-X243091Y295499D01*

-X242778Y295574D01*

-X242456Y295599D01*

-X242453Y295599D01*

-Y296766D01*

-X242490Y296769D01*

-X242803Y296844D01*

-X243102Y296968D01*

-X243377Y297136D01*

-X243622Y297346D01*

-X243832Y297591D01*

-X244000Y297866D01*

-X244124Y298165D01*

-X244199Y298478D01*

-X244218Y298800D01*

-X244199Y299122D01*

-X244124Y299435D01*

-X244000Y299734D01*

-X243832Y300009D01*

-X243622Y300254D01*

-X243377Y300464D01*

-X243102Y300632D01*

-X242803Y300756D01*

-X242490Y300831D01*

-X242453Y300834D01*

-Y362126D01*

-G37*

-G36*

-Y372126D02*X242749Y371779D01*

-X243264Y371339D01*

-X243841Y370986D01*

-X244466Y370727D01*

-X245124Y370569D01*

-X245554Y370535D01*

-Y369123D01*

-X245124Y369089D01*

-X244466Y368931D01*

-X243841Y368672D01*

-X243264Y368319D01*

-X242749Y367879D01*

-X242453Y367532D01*

-Y372126D01*

-G37*

-G36*

-Y397000D02*X245554D01*

-Y379123D01*

-X245124Y379089D01*

-X244466Y378931D01*

-X243841Y378672D01*

-X243264Y378319D01*

-X242749Y377879D01*

-X242453Y377532D01*

-Y397000D01*

-G37*

-G36*

-Y172126D02*X242749Y171779D01*

-X243076Y171500D01*

-X242453D01*

-Y172126D01*

-G37*

-G36*

-X245554Y179123D02*X245124Y179089D01*

-X244466Y178931D01*

-X243841Y178672D01*

-X243264Y178319D01*

-X242749Y177879D01*

-X242453Y177532D01*

-Y182126D01*

-X242749Y181779D01*

-X243264Y181339D01*

-X243841Y180986D01*

-X244466Y180727D01*

-X245124Y180569D01*

-X245554Y180535D01*

-Y179123D01*

-G37*

-G36*

-X242453Y177532D02*X242309Y177364D01*

-X241956Y176787D01*

-X241697Y176162D01*

-X241539Y175504D01*

-X241486Y174829D01*

-X241539Y174154D01*

-X241697Y173496D01*

-X241956Y172871D01*

-X242309Y172294D01*

-X242453Y172126D01*

-Y171500D01*

-X239299D01*

-Y172311D01*

-X239642Y172871D01*

-X239901Y173496D01*

-X240059Y174154D01*

-X240099Y174829D01*

-X240059Y175504D01*

-X239901Y176162D01*

-X239642Y176787D01*

-X239299Y177347D01*

-Y182311D01*

-X239642Y182871D01*

-X239901Y183496D01*

-X240059Y184154D01*

-X240099Y184829D01*

-X240059Y185504D01*

-X239901Y186162D01*

-X239642Y186787D01*

-X239299Y187347D01*

-Y194811D01*

-X239642Y195371D01*

-X239901Y195996D01*

-X240059Y196654D01*

-X240099Y197329D01*

-X240059Y198004D01*

-X239901Y198662D01*

-X239642Y199287D01*

-X239299Y199847D01*

-Y260179D01*

-X239302Y260179D01*

-X239624Y260204D01*

-X239937Y260279D01*

-X240236Y260403D01*

-X240511Y260571D01*

-X240756Y260781D01*

-X240966Y261026D01*

-X241134Y261301D01*

-X241258Y261600D01*

-X241333Y261913D01*

-X241352Y262235D01*

-X241333Y262557D01*

-X241258Y262870D01*

-X241134Y263169D01*

-X240966Y263444D01*

-X240756Y263689D01*

-X240511Y263899D01*

-X240236Y264067D01*

-X239937Y264191D01*

-X239624Y264266D01*

-X239302Y264291D01*

-X239299Y264291D01*

-Y277130D01*

-X239330Y277103D01*

-X239571Y276955D01*

-X239833Y276847D01*

-X240109Y276781D01*

-X240391Y276758D01*

-X240673Y276781D01*

-X240949Y276847D01*

-X241211Y276955D01*

-X241452Y277103D01*

-X241668Y277287D01*

-X241852Y277503D01*

-X242000Y277744D01*

-X242108Y278006D01*

-X242174Y278282D01*

-X242191Y278564D01*

-X242174Y278846D01*

-X242108Y279122D01*

-X242000Y279384D01*

-X241852Y279625D01*

-X241668Y279841D01*

-X241452Y280025D01*

-X241211Y280173D01*

-X240949Y280281D01*

-X240673Y280347D01*

-X240391Y280370D01*

-X240109Y280347D01*

-X239833Y280281D01*

-X239571Y280173D01*

-X239330Y280025D01*

-X239299Y279998D01*

-Y362311D01*

-X239642Y362871D01*

-X239901Y363496D01*

-X240059Y364154D01*

-X240099Y364829D01*

-X240059Y365504D01*

-X239901Y366162D01*

-X239642Y366787D01*

-X239299Y367347D01*

-Y372311D01*

-X239642Y372871D01*

-X239901Y373496D01*

-X240059Y374154D01*

-X240099Y374829D01*

-X240059Y375504D01*

-X239901Y376162D01*

-X239642Y376787D01*

-X239299Y377347D01*

-Y397000D01*

-X242453D01*

-Y377532D01*

-X242309Y377364D01*

-X241956Y376787D01*

-X241697Y376162D01*

-X241539Y375504D01*

-X241486Y374829D01*

-X241539Y374154D01*

-X241697Y373496D01*

-X241956Y372871D01*

-X242309Y372294D01*

-X242453Y372126D01*

-Y367532D01*

-X242309Y367364D01*

-X241956Y366787D01*

-X241697Y366162D01*

-X241539Y365504D01*

-X241486Y364829D01*

-X241539Y364154D01*

-X241697Y363496D01*

-X241956Y362871D01*

-X242309Y362294D01*

-X242453Y362126D01*

-Y300834D01*

-X242168Y300856D01*

-X241846Y300831D01*

-X241533Y300756D01*

-X241234Y300632D01*

-X240959Y300464D01*

-X240714Y300254D01*

-X240504Y300009D01*

-X240336Y299734D01*

-X240212Y299435D01*

-X240137Y299122D01*

-X240112Y298800D01*

-X240137Y298478D01*

-X240212Y298165D01*

-X240336Y297866D01*

-X240504Y297591D01*

-X240714Y297346D01*

-X240959Y297136D01*

-X241234Y296968D01*

-X241533Y296844D01*

-X241846Y296769D01*

-X242168Y296744D01*

-X242453Y296766D01*

-Y295599D01*

-X242134Y295574D01*

-X241821Y295499D01*

-X241522Y295375D01*

-X241247Y295207D01*

-X241002Y294997D01*

-X240792Y294752D01*

-X240624Y294477D01*

-X240500Y294178D01*

-X240425Y293865D01*

-X240400Y293543D01*

-X240425Y293221D01*

-X240500Y292908D01*

-X240624Y292609D01*

-X240792Y292334D01*

-X241002Y292089D01*

-X241247Y291879D01*

-X241522Y291711D01*

-X241821Y291587D01*

-X242134Y291512D01*

-X242453Y291487D01*

-Y231305D01*

-X242441Y231306D01*

-X242159Y231283D01*

-X241883Y231217D01*

-X241621Y231109D01*

-X241380Y230961D01*

-X241164Y230777D01*

-X240980Y230561D01*

-X240832Y230320D01*

-X240724Y230058D01*

-X240658Y229782D01*

-X240635Y229500D01*

-X240658Y229218D01*

-X240724Y228942D01*

-X240832Y228680D01*

-X240980Y228439D01*

-X241164Y228223D01*

-X241380Y228039D01*

-X241621Y227891D01*

-X241883Y227783D01*

-X242159Y227717D01*

-X242441Y227694D01*

-X242453Y227695D01*

-Y203016D01*

-X242332Y202820D01*

-X242224Y202558D01*

-X242158Y202282D01*

-X242135Y202000D01*

-X242158Y201718D01*

-X242224Y201442D01*

-X242332Y201180D01*

-X242453Y200984D01*

-Y187532D01*

-X242309Y187364D01*

-X241956Y186787D01*

-X241697Y186162D01*

-X241539Y185504D01*

-X241486Y184829D01*

-X241539Y184154D01*

-X241697Y183496D01*

-X241956Y182871D01*

-X242309Y182294D01*

-X242453Y182126D01*

-Y177532D01*

-G37*

-G36*

-X236438Y193066D02*X236474Y193069D01*

-X237132Y193227D01*

-X237757Y193486D01*

-X238334Y193839D01*

-X238849Y194279D01*

-X239289Y194794D01*

-X239299Y194811D01*

-Y187347D01*

-X239289Y187364D01*

-X238849Y187879D01*

-X238334Y188319D01*

-X237757Y188672D01*

-X237132Y188931D01*

-X236474Y189089D01*

-X236438Y189092D01*

-Y193066D01*

-G37*

-G36*

-Y360566D02*X236474Y360569D01*

-X237132Y360727D01*

-X237757Y360986D01*

-X238334Y361339D01*

-X238849Y361779D01*

-X239289Y362294D01*

-X239299Y362311D01*

-Y279998D01*

-X239114Y279841D01*

-X238930Y279625D01*

-X238782Y279384D01*

-X238674Y279122D01*

-X238608Y278846D01*

-X238585Y278564D01*

-X238608Y278282D01*

-X238674Y278006D01*

-X238782Y277744D01*

-X238930Y277503D01*

-X239114Y277287D01*

-X239299Y277130D01*

-Y264291D01*

-X238980Y264266D01*

-X238667Y264191D01*

-X238368Y264067D01*

-X238093Y263899D01*

-X237848Y263689D01*

-X237638Y263444D01*

-X237470Y263169D01*

-X237346Y262870D01*

-X237271Y262557D01*

-X237246Y262235D01*

-X237271Y261913D01*

-X237346Y261600D01*

-X237470Y261301D01*

-X237638Y261026D01*

-X237848Y260781D01*

-X238093Y260571D01*

-X238368Y260403D01*

-X238667Y260279D01*

-X238980Y260204D01*

-X239299Y260179D01*

-Y199847D01*

-X239289Y199864D01*

-X238849Y200379D01*

-X238334Y200819D01*

-X237757Y201172D01*

-X237132Y201431D01*

-X236474Y201589D01*

-X236438Y201592D01*

-Y233695D01*

-X236441Y233694D01*

-X236723Y233717D01*

-X236999Y233783D01*

-X237261Y233891D01*

-X237502Y234039D01*

-X237718Y234223D01*

-X237902Y234439D01*

-X238050Y234680D01*

-X238158Y234942D01*

-X238224Y235218D01*

-X238241Y235500D01*

-X238224Y235782D01*

-X238158Y236058D01*

-X238050Y236320D01*

-X237902Y236561D01*

-X237718Y236777D01*

-X237502Y236961D01*

-X237261Y237109D01*

-X236999Y237217D01*

-X236723Y237283D01*

-X236441Y237306D01*

-X236438Y237305D01*

-Y360566D01*

-G37*

-G36*

-Y370566D02*X236474Y370569D01*

-X237132Y370727D01*

-X237757Y370986D01*

-X238334Y371339D01*

-X238849Y371779D01*

-X239289Y372294D01*

-X239299Y372311D01*

-Y367347D01*

-X239289Y367364D01*

-X238849Y367879D01*

-X238334Y368319D01*

-X237757Y368672D01*

-X237132Y368931D01*

-X236474Y369089D01*

-X236438Y369092D01*

-Y370566D01*

-G37*

-G36*

-Y397000D02*X239299D01*

-Y377347D01*

-X239289Y377364D01*

-X238849Y377879D01*

-X238334Y378319D01*

-X237757Y378672D01*

-X237132Y378931D01*

-X236474Y379089D01*

-X236438Y379092D01*

-Y397000D01*

-G37*

-G36*

-X239299Y177347D02*X239289Y177364D01*

-X238849Y177879D01*

-X238334Y178319D01*

-X237757Y178672D01*

-X237132Y178931D01*

-X236474Y179089D01*

-X236438Y179092D01*

-Y180566D01*

-X236474Y180569D01*

-X237132Y180727D01*

-X237757Y180986D01*

-X238334Y181339D01*

-X238849Y181779D01*

-X239289Y182294D01*

-X239299Y182311D01*

-Y177347D01*

-G37*

-G36*

-X236438Y179092D02*X235799Y179142D01*

-X235124Y179089D01*

-X234466Y178931D01*

-X233841Y178672D01*

-X233264Y178319D01*

-X232749Y177879D01*

-X232309Y177364D01*

-X231956Y176787D01*

-X231697Y176162D01*

-X231539Y175504D01*

-X231486Y174829D01*

-X231539Y174154D01*

-X231697Y173496D01*

-X231956Y172871D01*

-X232309Y172294D01*

-X232749Y171779D01*

-X233076Y171500D01*

-X229815D01*

-Y173289D01*

-X229901Y173496D01*

-X230059Y174154D01*

-X230099Y174829D01*

-X230059Y175504D01*

-X229901Y176162D01*

-X229815Y176369D01*

-Y183289D01*

-X229901Y183496D01*

-X230059Y184154D01*

-X230099Y184829D01*

-X230059Y185504D01*

-X229901Y186162D01*

-X229815Y186369D01*

-Y195789D01*

-X229901Y195996D01*

-X230059Y196654D01*

-X230099Y197329D01*

-X230059Y198004D01*

-X229901Y198662D01*

-X229815Y198869D01*

-Y245311D01*

-X229883Y245283D01*

-X230159Y245217D01*

-X230441Y245194D01*

-X230723Y245217D01*

-X230999Y245283D01*

-X231261Y245391D01*

-X231502Y245539D01*

-X231718Y245723D01*

-X231902Y245939D01*

-X232050Y246180D01*

-X232158Y246442D01*

-X232224Y246718D01*

-X232241Y247000D01*

-X232224Y247282D01*

-X232158Y247558D01*

-X232050Y247820D01*

-X231902Y248061D01*

-X231718Y248277D01*

-X231502Y248461D01*

-X231261Y248609D01*

-X230999Y248717D01*

-X230723Y248783D01*

-X230441Y248806D01*

-X230159Y248783D01*

-X229883Y248717D01*

-X229815Y248689D01*

-Y291311D01*

-X229883Y291283D01*

-X230159Y291217D01*

-X230441Y291194D01*

-X230723Y291217D01*

-X230999Y291283D01*

-X231261Y291391D01*

-X231502Y291539D01*

-X231718Y291723D01*

-X231902Y291939D01*

-X232050Y292180D01*

-X232158Y292442D01*

-X232224Y292718D01*

-X232241Y293000D01*

-X232224Y293282D01*

-X232158Y293558D01*

-X232050Y293820D01*

-X231902Y294061D01*

-X231718Y294277D01*

-X231502Y294461D01*

-X231261Y294609D01*

-X230999Y294717D01*

-X230723Y294783D01*

-X230441Y294806D01*

-X230159Y294783D01*

-X229883Y294717D01*

-X229815Y294689D01*

-Y353183D01*

-X229818Y353182D01*

-X230100Y353205D01*

-X230376Y353271D01*

-X230638Y353379D01*

-X230879Y353527D01*

-X231095Y353711D01*

-X231279Y353927D01*

-X231427Y354168D01*

-X231535Y354430D01*

-X231601Y354706D01*

-X231618Y354988D01*

-X231601Y355270D01*

-X231535Y355546D01*

-X231427Y355808D01*

-X231279Y356049D01*

-X231095Y356265D01*

-X230879Y356449D01*

-X230638Y356597D01*

-X230376Y356705D01*

-X230100Y356771D01*

-X229818Y356794D01*

-X229815Y356793D01*

-Y363289D01*

-X229901Y363496D01*

-X230059Y364154D01*

-X230099Y364829D01*

-X230059Y365504D01*

-X229901Y366162D01*

-X229815Y366369D01*

-Y373289D01*

-X229901Y373496D01*

-X230059Y374154D01*

-X230099Y374829D01*

-X230059Y375504D01*

-X229901Y376162D01*

-X229815Y376369D01*

-Y397000D01*

-X236438D01*

-Y379092D01*

-X235799Y379142D01*

-X235124Y379089D01*

-X234466Y378931D01*

-X233841Y378672D01*

-X233264Y378319D01*

-X232749Y377879D01*

-X232309Y377364D01*

-X231956Y376787D01*

-X231697Y376162D01*

-X231539Y375504D01*

-X231486Y374829D01*

-X231539Y374154D01*

-X231697Y373496D01*

-X231956Y372871D01*

-X232309Y372294D01*

-X232749Y371779D01*

-X233264Y371339D01*

-X233841Y370986D01*

-X234466Y370727D01*

-X235124Y370569D01*

-X235799Y370516D01*

-X236438Y370566D01*

-Y369092D01*

-X235799Y369142D01*

-X235124Y369089D01*

-X234466Y368931D01*

-X233841Y368672D01*

-X233264Y368319D01*

-X232749Y367879D01*

-X232309Y367364D01*

-X231956Y366787D01*

-X231697Y366162D01*

-X231539Y365504D01*

-X231486Y364829D01*

-X231539Y364154D01*

-X231697Y363496D01*

-X231956Y362871D01*

-X232309Y362294D01*

-X232749Y361779D01*

-X233264Y361339D01*

-X233841Y360986D01*

-X234466Y360727D01*

-X235124Y360569D01*

-X235799Y360516D01*

-X236438Y360566D01*

-Y237305D01*

-X236159Y237283D01*

-X235883Y237217D01*

-X235621Y237109D01*

-X235380Y236961D01*

-X235164Y236777D01*

-X234980Y236561D01*

-X234832Y236320D01*

-X234724Y236058D01*

-X234658Y235782D01*

-X234635Y235500D01*

-X234658Y235218D01*

-X234724Y234942D01*

-X234832Y234680D01*

-X234980Y234439D01*

-X235164Y234223D01*

-X235380Y234039D01*

-X235621Y233891D01*

-X235883Y233783D01*

-X236159Y233717D01*

-X236438Y233695D01*

-Y201592D01*

-X235799Y201642D01*

-X235124Y201589D01*

-X234466Y201431D01*

-X233841Y201172D01*

-X233264Y200819D01*

-X232749Y200379D01*

-X232309Y199864D01*

-X231956Y199287D01*

-X231697Y198662D01*

-X231539Y198004D01*

-X231486Y197329D01*

-X231539Y196654D01*

-X231697Y195996D01*

-X231956Y195371D01*

-X232309Y194794D01*

-X232749Y194279D01*

-X233264Y193839D01*

-X233841Y193486D01*

-X234466Y193227D01*

-X235124Y193069D01*

-X235799Y193016D01*

-X236438Y193066D01*

-Y189092D01*

-X235799Y189142D01*

-X235124Y189089D01*

-X234466Y188931D01*

-X233841Y188672D01*

-X233264Y188319D01*

-X232749Y187879D01*

-X232309Y187364D01*

-X231956Y186787D01*

-X231697Y186162D01*

-X231539Y185504D01*

-X231486Y184829D01*

-X231539Y184154D01*

-X231697Y183496D01*

-X231956Y182871D01*

-X232309Y182294D01*

-X232749Y181779D01*

-X233264Y181339D01*

-X233841Y180986D01*

-X234466Y180727D01*

-X235124Y180569D01*

-X235799Y180516D01*

-X236438Y180566D01*

-Y179092D01*

-G37*

-G36*

-X239299Y171500D02*X238522D01*

-X238849Y171779D01*

-X239289Y172294D01*

-X239299Y172311D01*

-Y171500D01*

-G37*

-G36*

-X202438Y172143D02*X202749Y171779D01*

-X203076Y171500D01*

-X202438D01*

-Y172143D01*

-G37*

-G36*

-X224938Y193114D02*X225124Y193069D01*

-X225799Y193016D01*

-X226474Y193069D01*

-X227132Y193227D01*

-X227757Y193486D01*

-X228334Y193839D01*

-X228849Y194279D01*

-X229289Y194794D01*

-X229642Y195371D01*

-X229815Y195789D01*

-Y186369D01*

-X229642Y186787D01*

-X229289Y187364D01*

-X228849Y187879D01*

-X228334Y188319D01*

-X227757Y188672D01*

-X227132Y188931D01*

-X226474Y189089D01*

-X225799Y189142D01*

-X225124Y189089D01*

-X224938Y189044D01*

-Y193114D01*

-G37*

-G36*

-Y370614D02*X225124Y370569D01*

-X225799Y370516D01*

-X226474Y370569D01*

-X227132Y370727D01*

-X227757Y370986D01*

-X228334Y371339D01*

-X228849Y371779D01*

-X229289Y372294D01*

-X229642Y372871D01*

-X229815Y373289D01*

-Y366369D01*

-X229642Y366787D01*

-X229289Y367364D01*

-X228849Y367879D01*

-X228334Y368319D01*

-X227757Y368672D01*

-X227132Y368931D01*

-X226474Y369089D01*

-X225799Y369142D01*

-X225124Y369089D01*

-X224938Y369044D01*

-Y370614D01*

-G37*

-G36*

-Y397000D02*X229815D01*

-Y376369D01*

-X229642Y376787D01*

-X229289Y377364D01*

-X228849Y377879D01*

-X228334Y378319D01*

-X227757Y378672D01*

-X227132Y378931D01*

-X226474Y379089D01*

-X225799Y379142D01*

-X225124Y379089D01*

-X224938Y379044D01*

-Y397000D01*

-G37*

-G36*

-Y247270D02*X225159Y247217D01*

-X225441Y247194D01*

-X225723Y247217D01*

-X225999Y247283D01*

-X226261Y247391D01*

-X226502Y247539D01*

-X226718Y247723D01*

-X226902Y247939D01*

-X227050Y248180D01*

-X227158Y248442D01*

-X227224Y248718D01*

-X227241Y249000D01*

-X227224Y249282D01*

-X227158Y249558D01*

-X227050Y249820D01*

-X226902Y250061D01*

-X226718Y250277D01*

-X226502Y250461D01*

-X226261Y250609D01*

-X225999Y250717D01*

-X225761Y250774D01*

-X225902Y250939D01*

-X226050Y251180D01*

-X226158Y251442D01*

-X226224Y251718D01*

-X226241Y252000D01*

-X226224Y252282D01*

-X226158Y252558D01*

-X226050Y252820D01*

-X225902Y253061D01*

-X225718Y253277D01*

-X225502Y253461D01*

-X225261Y253609D01*

-X224999Y253717D01*

-X224938Y253732D01*

-Y360614D01*

-X225124Y360569D01*

-X225799Y360516D01*

-X226474Y360569D01*

-X227132Y360727D01*

-X227757Y360986D01*

-X228334Y361339D01*

-X228849Y361779D01*

-X229289Y362294D01*

-X229642Y362871D01*

-X229815Y363289D01*

-Y356793D01*

-X229536Y356771D01*

-X229260Y356705D01*

-X228998Y356597D01*

-X228757Y356449D01*

-X228541Y356265D01*

-X228357Y356049D01*

-X228209Y355808D01*

-X228101Y355546D01*

-X228035Y355270D01*

-X228012Y354988D01*

-X228035Y354706D01*

-X228101Y354430D01*

-X228209Y354168D01*

-X228357Y353927D01*

-X228541Y353711D01*

-X228757Y353527D01*

-X228998Y353379D01*

-X229260Y353271D01*

-X229536Y353205D01*

-X229815Y353183D01*

-Y294689D01*

-X229621Y294609D01*

-X229380Y294461D01*

-X229164Y294277D01*

-X228980Y294061D01*

-X228832Y293820D01*

-X228724Y293558D01*

-X228658Y293282D01*

-X228635Y293000D01*

-X228658Y292718D01*

-X228724Y292442D01*

-X228832Y292180D01*

-X228980Y291939D01*

-X229164Y291723D01*

-X229380Y291539D01*

-X229621Y291391D01*

-X229815Y291311D01*

-Y248689D01*

-X229621Y248609D01*

-X229380Y248461D01*

-X229164Y248277D01*

-X228980Y248061D01*

-X228832Y247820D01*

-X228724Y247558D01*

-X228658Y247282D01*

-X228635Y247000D01*

-X228658Y246718D01*

-X228724Y246442D01*

-X228832Y246180D01*

-X228980Y245939D01*

-X229164Y245723D01*

-X229380Y245539D01*

-X229621Y245391D01*

-X229815Y245311D01*

-Y198869D01*

-X229642Y199287D01*

-X229289Y199864D01*

-X228849Y200379D01*

-X228334Y200819D01*

-X227757Y201172D01*

-X227132Y201431D01*

-X226474Y201589D01*

-X225799Y201642D01*

-X225124Y201589D01*

-X224938Y201544D01*

-Y218695D01*

-X224941Y218694D01*

-X225223Y218717D01*

-X225499Y218783D01*

-X225761Y218891D01*

-X226002Y219039D01*

-X226218Y219223D01*

-X226402Y219439D01*

-X226550Y219680D01*

-X226658Y219942D01*

-X226724Y220218D01*

-X226741Y220500D01*

-X226724Y220782D01*

-X226658Y221058D01*

-X226550Y221320D01*

-X226402Y221561D01*

-X226218Y221777D01*

-X226002Y221961D01*

-X225761Y222109D01*

-X225499Y222217D01*

-X225223Y222283D01*

-X224941Y222306D01*

-X224938Y222305D01*

-Y224770D01*

-X225159Y224717D01*

-X225441Y224694D01*

-X225723Y224717D01*

-X225999Y224783D01*

-X226261Y224891D01*

-X226502Y225039D01*

-X226718Y225223D01*

-X226902Y225439D01*

-X227050Y225680D01*

-X227158Y225942D01*

-X227224Y226218D01*

-X227241Y226500D01*

-X227224Y226782D01*

-X227158Y227058D01*

-X227050Y227320D01*

-X226902Y227561D01*

-X226718Y227777D01*

-X226502Y227961D01*

-X226261Y228109D01*

-X225999Y228217D01*

-X225723Y228283D01*

-X225441Y228306D01*

-X225159Y228283D01*

-X224938Y228230D01*

-Y233695D01*

-X224941Y233694D01*

-X225223Y233717D01*

-X225499Y233783D01*

-X225761Y233891D01*

-X226002Y234039D01*

-X226218Y234223D01*

-X226402Y234439D01*

-X226550Y234680D01*

-X226658Y234942D01*

-X226724Y235218D01*

-X226741Y235500D01*

-X226724Y235782D01*

-X226658Y236058D01*

-X226550Y236320D01*

-X226402Y236561D01*

-X226218Y236777D01*

-X226002Y236961D01*

-X225761Y237109D01*

-X225499Y237217D01*

-X225223Y237283D01*

-X224941Y237306D01*

-X224938Y237305D01*

-Y242268D01*

-X224999Y242283D01*

-X225261Y242391D01*

-X225502Y242539D01*

-X225718Y242723D01*

-X225902Y242939D01*

-X226050Y243180D01*

-X226158Y243442D01*

-X226224Y243718D01*

-X226241Y244000D01*

-X226224Y244282D01*

-X226158Y244558D01*

-X226050Y244820D01*

-X225902Y245061D01*

-X225718Y245277D01*

-X225502Y245461D01*

-X225261Y245609D01*

-X224999Y245717D01*

-X224938Y245732D01*

-Y247270D01*

-G37*

-G36*

-X229815Y176369D02*X229642Y176787D01*

-X229289Y177364D01*

-X228849Y177879D01*

-X228334Y178319D01*

-X227757Y178672D01*

-X227132Y178931D01*

-X226474Y179089D01*

-X225799Y179142D01*

-X225124Y179089D01*

-X224938Y179044D01*

-Y180614D01*

-X225124Y180569D01*

-X225799Y180516D01*

-X226474Y180569D01*

-X227132Y180727D01*

-X227757Y180986D01*

-X228334Y181339D01*

-X228849Y181779D01*

-X229289Y182294D01*

-X229642Y182871D01*

-X229815Y183289D01*

-Y176369D01*

-G37*

-G36*

-X224938Y253732D02*X224723Y253783D01*

-X224441Y253806D01*

-X224159Y253783D01*

-X223883Y253717D01*

-X223643Y253618D01*

-X223667Y253718D01*

-X223684Y254000D01*

-X223667Y254282D01*

-X223601Y254558D01*

-X223493Y254820D01*

-X223345Y255061D01*

-X223161Y255277D01*

-X222945Y255461D01*

-X222704Y255609D01*

-X222442Y255717D01*

-X222166Y255783D01*

-X221884Y255806D01*

-X221602Y255783D01*

-X221326Y255717D01*

-X221064Y255609D01*

-X220823Y255461D01*

-X220607Y255277D01*

-X220438Y255079D01*

-Y257695D01*

-X220441Y257694D01*

-X220723Y257717D01*

-X220999Y257783D01*

-X221261Y257891D01*

-X221502Y258039D01*

-X221718Y258223D01*

-X221902Y258439D01*

-X222050Y258680D01*

-X222158Y258942D01*

-X222224Y259218D01*

-X222241Y259500D01*

-X222224Y259782D01*

-X222158Y260058D01*

-X222050Y260320D01*

-X221902Y260561D01*

-X221718Y260777D01*

-X221502Y260961D01*

-X221261Y261109D01*

-X220999Y261217D01*

-X220723Y261283D01*

-X220441Y261306D01*

-X220438Y261305D01*

-Y263799D01*

-X220447Y263797D01*

-X220729Y263774D01*

-X221011Y263797D01*

-X221287Y263863D01*

-X221549Y263971D01*

-X221790Y264119D01*

-X222006Y264303D01*

-X222190Y264519D01*

-X222338Y264760D01*

-X222446Y265022D01*

-X222512Y265298D01*

-X222529Y265580D01*

-X222512Y265862D01*

-X222446Y266138D01*

-X222338Y266400D01*

-X222190Y266641D01*

-X222006Y266857D01*

-X221790Y267041D01*

-X221549Y267189D01*

-X221287Y267297D01*

-X221011Y267363D01*

-X220729Y267386D01*

-X220447Y267363D01*

-X220438Y267361D01*

-Y271000D01*

-X220502Y271039D01*

-X220718Y271223D01*

-X220902Y271439D01*

-X221050Y271680D01*

-X221158Y271942D01*

-X221224Y272218D01*

-X221241Y272500D01*

-X221224Y272782D01*

-X221158Y273058D01*

-X221050Y273320D01*

-X220902Y273561D01*

-X220718Y273777D01*

-X220502Y273961D01*

-X220438Y274000D01*

-Y397000D01*

-X224938D01*

-Y379044D01*

-X224466Y378931D01*

-X223841Y378672D01*

-X223264Y378319D01*

-X222749Y377879D01*

-X222309Y377364D01*

-X221956Y376787D01*

-X221697Y376162D01*

-X221539Y375504D01*

-X221486Y374829D01*

-X221539Y374154D01*

-X221697Y373496D01*

-X221956Y372871D01*

-X222309Y372294D01*

-X222749Y371779D01*

-X223264Y371339D01*

-X223841Y370986D01*

-X224466Y370727D01*

-X224938Y370614D01*

-Y369044D01*

-X224466Y368931D01*

-X223841Y368672D01*

-X223264Y368319D01*

-X222749Y367879D01*

-X222309Y367364D01*

-X221956Y366787D01*

-X221697Y366162D01*

-X221539Y365504D01*

-X221486Y364829D01*

-X221539Y364154D01*

-X221697Y363496D01*

-X221956Y362871D01*

-X222309Y362294D01*

-X222749Y361779D01*

-X223264Y361339D01*

-X223841Y360986D01*

-X224466Y360727D01*

-X224938Y360614D01*

-Y253732D01*

-G37*

-G36*

-Y179044D02*X224466Y178931D01*

-X223841Y178672D01*

-X223264Y178319D01*

-X222749Y177879D01*

-X222309Y177364D01*

-X221956Y176787D01*

-X221697Y176162D01*

-X221539Y175504D01*

-X221486Y174829D01*

-X221539Y174154D01*

-X221697Y173496D01*

-X221956Y172871D01*

-X222309Y172294D01*

-X222749Y171779D01*

-X223076Y171500D01*

-X220438D01*

-Y213195D01*

-X220441Y213194D01*

-X220723Y213217D01*

-X220999Y213283D01*

-X221261Y213391D01*

-X221502Y213539D01*

-X221718Y213723D01*

-X221902Y213939D01*

-X222050Y214180D01*

-X222158Y214442D01*

-X222224Y214718D01*

-X222241Y215000D01*

-X222224Y215282D01*

-X222158Y215558D01*

-X222050Y215820D01*

-X221902Y216061D01*

-X221718Y216277D01*

-X221502Y216461D01*

-X221261Y216609D01*

-X220999Y216717D01*

-X220723Y216783D01*

-X220441Y216806D01*

-X220438Y216805D01*

-Y252921D01*

-X220607Y252723D01*

-X220823Y252539D01*

-X221064Y252391D01*

-X221326Y252283D01*

-X221602Y252217D01*

-X221884Y252194D01*

-X222166Y252217D01*

-X222442Y252283D01*

-X222682Y252382D01*

-X222658Y252282D01*

-X222635Y252000D01*

-X222658Y251718D01*

-X222724Y251442D01*

-X222832Y251180D01*

-X222980Y250939D01*

-X223164Y250723D01*

-X223380Y250539D01*

-X223621Y250391D01*

-X223883Y250283D01*

-X224121Y250226D01*

-X223980Y250061D01*

-X223832Y249820D01*

-X223724Y249558D01*

-X223658Y249282D01*

-X223635Y249000D01*

-X223658Y248718D01*

-X223724Y248442D01*

-X223832Y248180D01*

-X223980Y247939D01*

-X224164Y247723D01*

-X224380Y247539D01*

-X224621Y247391D01*

-X224883Y247283D01*

-X224938Y247270D01*

-Y245732D01*

-X224723Y245783D01*

-X224441Y245806D01*

-X224159Y245783D01*

-X223883Y245717D01*

-X223621Y245609D01*

-X223380Y245461D01*

-X223164Y245277D01*

-X222980Y245061D01*

-X222832Y244820D01*

-X222724Y244558D01*

-X222658Y244282D01*

-X222635Y244000D01*

-X222658Y243718D01*

-X222724Y243442D01*

-X222832Y243180D01*

-X222980Y242939D01*

-X223164Y242723D01*

-X223380Y242539D01*

-X223621Y242391D01*

-X223883Y242283D01*

-X224159Y242217D01*

-X224441Y242194D01*

-X224723Y242217D01*

-X224938Y242268D01*

-Y237305D01*

-X224659Y237283D01*

-X224383Y237217D01*

-X224121Y237109D01*

-X223880Y236961D01*

-X223664Y236777D01*

-X223480Y236561D01*

-X223332Y236320D01*

-X223224Y236058D01*

-X223158Y235782D01*

-X223135Y235500D01*

-X223158Y235218D01*

-X223224Y234942D01*

-X223332Y234680D01*

-X223480Y234439D01*

-X223664Y234223D01*

-X223880Y234039D01*

-X224121Y233891D01*

-X224383Y233783D01*

-X224659Y233717D01*

-X224938Y233695D01*

-Y228230D01*

-X224883Y228217D01*

-X224621Y228109D01*

-X224380Y227961D01*

-X224164Y227777D01*

-X223980Y227561D01*

-X223832Y227320D01*

-X223724Y227058D01*

-X223658Y226782D01*

-X223635Y226500D01*

-X223658Y226218D01*

-X223724Y225942D01*

-X223832Y225680D01*

-X223980Y225439D01*

-X224164Y225223D01*

-X224380Y225039D01*

-X224621Y224891D01*

-X224883Y224783D01*

-X224938Y224770D01*

-Y222305D01*

-X224659Y222283D01*

-X224383Y222217D01*

-X224121Y222109D01*

-X223880Y221961D01*

-X223664Y221777D01*

-X223480Y221561D01*

-X223332Y221320D01*

-X223224Y221058D01*

-X223158Y220782D01*

-X223135Y220500D01*

-X223158Y220218D01*

-X223224Y219942D01*

-X223332Y219680D01*

-X223480Y219439D01*

-X223664Y219223D01*

-X223880Y219039D01*

-X224121Y218891D01*

-X224383Y218783D01*

-X224659Y218717D01*

-X224938Y218695D01*

-Y201544D01*

-X224466Y201431D01*

-X223841Y201172D01*

-X223264Y200819D01*

-X222749Y200379D01*

-X222309Y199864D01*

-X221956Y199287D01*

-X221697Y198662D01*

-X221539Y198004D01*

-X221486Y197329D01*

-X221539Y196654D01*

-X221697Y195996D01*

-X221956Y195371D01*

-X222309Y194794D01*

-X222749Y194279D01*

-X223264Y193839D01*

-X223841Y193486D01*

-X224466Y193227D01*

-X224938Y193114D01*

-Y189044D01*

-X224466Y188931D01*

-X223841Y188672D01*

-X223264Y188319D01*

-X222749Y187879D01*

-X222309Y187364D01*

-X221956Y186787D01*

-X221697Y186162D01*

-X221539Y185504D01*

-X221486Y184829D01*

-X221539Y184154D01*

-X221697Y183496D01*

-X221956Y182871D01*

-X222309Y182294D01*

-X222749Y181779D01*

-X223264Y181339D01*

-X223841Y180986D01*

-X224466Y180727D01*

-X224938Y180614D01*

-Y179044D01*

-G37*

-G36*

-X212938Y171618D02*X213076Y171500D01*

-X212938D01*

-Y171618D01*

-G37*

-G36*

-X217438Y360854D02*X217757Y360986D01*

-X218334Y361339D01*

-X218849Y361779D01*

-X219289Y362294D01*

-X219642Y362871D01*

-X219901Y363496D01*

-X220059Y364154D01*

-X220099Y364829D01*

-X220059Y365504D01*

-X219901Y366162D01*

-X219642Y366787D01*

-X219289Y367364D01*

-X218849Y367879D01*

-X218334Y368319D01*

-X217757Y368672D01*

-X217438Y368804D01*

-Y370854D01*

-X217757Y370986D01*

-X218334Y371339D01*

-X218849Y371779D01*

-X219289Y372294D01*

-X219642Y372871D01*

-X219901Y373496D01*

-X220059Y374154D01*

-X220099Y374829D01*

-X220059Y375504D01*

-X219901Y376162D01*

-X219642Y376787D01*

-X219289Y377364D01*

-X218849Y377879D01*

-X218334Y378319D01*

-X217757Y378672D01*

-X217438Y378804D01*

-Y397000D01*

-X220438D01*

-Y274000D01*

-X220261Y274109D01*

-X219999Y274217D01*

-X219723Y274283D01*

-X219441Y274306D01*

-X219159Y274283D01*

-X218883Y274217D01*

-X218621Y274109D01*

-X218380Y273961D01*

-X218164Y273777D01*

-X217980Y273561D01*

-X217832Y273320D01*

-X217724Y273058D01*

-X217658Y272782D01*

-X217635Y272500D01*

-X217658Y272218D01*

-X217724Y271942D01*

-X217832Y271680D01*

-X217980Y271439D01*

-X218164Y271223D01*

-X218380Y271039D01*

-X218621Y270891D01*

-X218883Y270783D01*

-X219159Y270717D01*

-X219441Y270694D01*

-X219723Y270717D01*

-X219999Y270783D01*

-X220261Y270891D01*

-X220438Y271000D01*

-Y267361D01*

-X220171Y267297D01*

-X219909Y267189D01*

-X219668Y267041D01*

-X219452Y266857D01*

-X219268Y266641D01*

-X219120Y266400D01*

-X219012Y266138D01*

-X218946Y265862D01*

-X218923Y265580D01*

-X218946Y265298D01*

-X219012Y265022D01*

-X219120Y264760D01*

-X219268Y264519D01*

-X219452Y264303D01*

-X219668Y264119D01*

-X219909Y263971D01*

-X220171Y263863D01*

-X220438Y263799D01*

-Y261305D01*

-X220229Y261289D01*

-X220241Y261500D01*

-X220224Y261782D01*

-X220158Y262058D01*

-X220050Y262320D01*

-X219902Y262561D01*

-X219718Y262777D01*

-X219502Y262961D01*

-X219261Y263109D01*

-X218999Y263217D01*

-X218723Y263283D01*

-X218441Y263306D01*

-X218159Y263283D01*

-X217883Y263217D01*

-X217621Y263109D01*

-X217438Y262997D01*

-Y277195D01*

-X217441Y277194D01*

-X217723Y277217D01*

-X217999Y277283D01*

-X218261Y277391D01*

-X218502Y277539D01*

-X218718Y277723D01*

-X218902Y277939D01*

-X219050Y278180D01*

-X219158Y278442D01*

-X219224Y278718D01*

-X219241Y279000D01*

-X219224Y279282D01*

-X219158Y279558D01*

-X219050Y279820D01*

-X218902Y280061D01*

-X218718Y280277D01*

-X218502Y280461D01*

-X218261Y280609D01*

-X217999Y280717D01*

-X217723Y280783D01*

-X217441Y280806D01*

-X217438Y280805D01*

-Y360854D01*

-G37*

-G36*

-X220438Y171500D02*X218522D01*

-X218849Y171779D01*

-X219289Y172294D01*

-X219642Y172871D01*

-X219901Y173496D01*

-X220059Y174154D01*

-X220099Y174829D01*

-X220059Y175504D01*

-X219901Y176162D01*

-X219642Y176787D01*

-X219289Y177364D01*

-X218849Y177879D01*

-X218334Y178319D01*

-X217757Y178672D01*

-X217438Y178804D01*

-Y180854D01*

-X217757Y180986D01*

-X218334Y181339D01*

-X218849Y181779D01*

-X219289Y182294D01*

-X219642Y182871D01*

-X219901Y183496D01*

-X220059Y184154D01*

-X220099Y184829D01*

-X220059Y185504D01*

-X219901Y186162D01*

-X219642Y186787D01*

-X219289Y187364D01*

-X218849Y187879D01*

-X218334Y188319D01*

-X217757Y188672D01*

-X217438Y188804D01*

-Y193354D01*

-X217757Y193486D01*

-X218334Y193839D01*

-X218849Y194279D01*

-X219289Y194794D01*

-X219642Y195371D01*

-X219901Y195996D01*

-X220059Y196654D01*

-X220099Y197329D01*

-X220059Y198004D01*

-X219901Y198662D01*

-X219642Y199287D01*

-X219289Y199864D01*

-X218849Y200379D01*

-X218334Y200819D01*

-X217757Y201172D01*

-X217438Y201304D01*

-Y260003D01*

-X217621Y259891D01*

-X217883Y259783D01*

-X218159Y259717D01*

-X218441Y259694D01*

-X218652Y259711D01*

-X218635Y259500D01*

-X218658Y259218D01*

-X218724Y258942D01*

-X218832Y258680D01*

-X218980Y258439D01*

-X219164Y258223D01*

-X219380Y258039D01*

-X219621Y257891D01*

-X219883Y257783D01*

-X220159Y257717D01*

-X220438Y257695D01*

-Y255079D01*

-X220423Y255061D01*

-X220275Y254820D01*

-X220167Y254558D01*

-X220101Y254282D01*

-X220078Y254000D01*

-X220101Y253718D01*

-X220167Y253442D01*

-X220275Y253180D01*

-X220423Y252939D01*

-X220438Y252921D01*

-Y216805D01*

-X220159Y216783D01*

-X219883Y216717D01*

-X219621Y216609D01*

-X219380Y216461D01*

-X219164Y216277D01*

-X218980Y216061D01*

-X218832Y215820D01*

-X218724Y215558D01*

-X218658Y215282D01*

-X218635Y215000D01*

-X218658Y214718D01*

-X218724Y214442D01*

-X218832Y214180D01*

-X218980Y213939D01*

-X219164Y213723D01*

-X219380Y213539D01*

-X219621Y213391D01*

-X219883Y213283D01*

-X220159Y213217D01*

-X220438Y213195D01*

-Y171500D01*

-G37*

-G36*

-X217438Y378804D02*X217132Y378931D01*

-X216474Y379089D01*

-X215799Y379142D01*

-X215124Y379089D01*

-X214466Y378931D01*

-X213841Y378672D01*

-X213264Y378319D01*

-X212938Y378040D01*

-Y397000D01*

-X217438D01*

-Y378804D01*

-G37*

-G36*

-Y368804D02*X217132Y368931D01*

-X216474Y369089D01*

-X215799Y369142D01*

-X215124Y369089D01*

-X214466Y368931D01*

-X213841Y368672D01*

-X213264Y368319D01*

-X212938Y368040D01*

-Y371618D01*

-X213264Y371339D01*

-X213841Y370986D01*

-X214466Y370727D01*

-X215124Y370569D01*

-X215799Y370516D01*

-X216474Y370569D01*

-X217132Y370727D01*

-X217438Y370854D01*

-Y368804D01*

-G37*

-G36*

-Y201304D02*X217132Y201431D01*

-X216474Y201589D01*

-X215799Y201642D01*

-X215124Y201589D01*

-X214466Y201431D01*

-X213841Y201172D01*

-X213264Y200819D01*

-X212938Y200540D01*

-Y236195D01*

-X212941Y236194D01*

-X213223Y236217D01*

-X213499Y236283D01*

-X213761Y236391D01*

-X214002Y236539D01*

-X214218Y236723D01*

-X214402Y236939D01*

-X214550Y237180D01*

-X214658Y237442D01*

-X214724Y237718D01*

-X214741Y238000D01*

-X214724Y238282D01*

-X214658Y238558D01*

-X214550Y238820D01*

-X214402Y239061D01*

-X214218Y239277D01*

-X214002Y239461D01*

-X213761Y239609D01*

-X213499Y239717D01*

-X213223Y239783D01*

-X212941Y239806D01*

-X212938Y239805D01*

-Y361618D01*

-X213264Y361339D01*

-X213841Y360986D01*

-X214466Y360727D01*

-X215124Y360569D01*

-X215799Y360516D01*

-X216474Y360569D01*

-X217132Y360727D01*

-X217438Y360854D01*

-Y280805D01*

-X217159Y280783D01*

-X216883Y280717D01*

-X216621Y280609D01*

-X216380Y280461D01*

-X216164Y280277D01*

-X215980Y280061D01*

-X215832Y279820D01*

-X215724Y279558D01*

-X215658Y279282D01*

-X215635Y279000D01*

-X215658Y278718D01*

-X215724Y278442D01*

-X215832Y278180D01*

-X215980Y277939D01*

-X216164Y277723D01*

-X216380Y277539D01*

-X216621Y277391D01*

-X216883Y277283D01*

-X217159Y277217D01*

-X217438Y277195D01*

-Y262997D01*

-X217380Y262961D01*

-X217164Y262777D01*

-X216980Y262561D01*

-X216832Y262320D01*

-X216724Y262058D01*

-X216658Y261782D01*

-X216635Y261500D01*

-X216658Y261218D01*

-X216724Y260942D01*

-X216832Y260680D01*

-X216980Y260439D01*

-X217164Y260223D01*

-X217380Y260039D01*

-X217438Y260003D01*

-Y201304D01*

-G37*

-G36*

-Y188804D02*X217132Y188931D01*

-X216474Y189089D01*

-X215799Y189142D01*

-X215124Y189089D01*

-X214466Y188931D01*

-X213841Y188672D01*

-X213264Y188319D01*

-X212938Y188040D01*

-Y194118D01*

-X213264Y193839D01*

-X213841Y193486D01*

-X214466Y193227D01*

-X215124Y193069D01*

-X215799Y193016D01*

-X216474Y193069D01*

-X217132Y193227D01*

-X217438Y193354D01*

-Y188804D01*

-G37*

-G36*

-Y178804D02*X217132Y178931D01*

-X216474Y179089D01*

-X215799Y179142D01*

-X215124Y179089D01*

-X214466Y178931D01*

-X213841Y178672D01*

-X213264Y178319D01*

-X212938Y178040D01*

-Y181618D01*

-X213264Y181339D01*

-X213841Y180986D01*

-X214466Y180727D01*

-X215124Y180569D01*

-X215799Y180516D01*

-X216474Y180569D01*

-X217132Y180727D01*

-X217438Y180854D01*

-Y178804D01*

-G37*

-G36*

-X212938Y178040D02*X212749Y177879D01*

-X212309Y177364D01*

-X211956Y176787D01*

-X211697Y176162D01*

-X211539Y175504D01*

-X211486Y174829D01*

-X211539Y174154D01*

-X211697Y173496D01*

-X211956Y172871D01*

-X212309Y172294D01*

-X212749Y171779D01*

-X212938Y171618D01*

-Y171500D01*

-X210438D01*

-Y210695D01*

-X210441Y210694D01*

-X210723Y210717D01*

-X210999Y210783D01*

-X211261Y210891D01*

-X211502Y211039D01*

-X211718Y211223D01*

-X211902Y211439D01*

-X212050Y211680D01*

-X212158Y211942D01*

-X212224Y212218D01*

-X212241Y212500D01*

-X212224Y212782D01*

-X212158Y213058D01*

-X212050Y213320D01*

-X211902Y213561D01*

-X211718Y213777D01*

-X211502Y213961D01*

-X211261Y214109D01*

-X210999Y214217D01*

-X210723Y214283D01*

-X210441Y214306D01*

-X210438Y214305D01*

-Y397000D01*

-X212938D01*

-Y378040D01*

-X212749Y377879D01*

-X212309Y377364D01*

-X211956Y376787D01*

-X211697Y376162D01*

-X211539Y375504D01*

-X211486Y374829D01*

-X211539Y374154D01*

-X211697Y373496D01*

-X211956Y372871D01*

-X212309Y372294D01*

-X212749Y371779D01*

-X212938Y371618D01*

-Y368040D01*

-X212749Y367879D01*

-X212309Y367364D01*

-X211956Y366787D01*

-X211697Y366162D01*

-X211539Y365504D01*

-X211486Y364829D01*

-X211539Y364154D01*

-X211697Y363496D01*

-X211956Y362871D01*

-X212309Y362294D01*

-X212749Y361779D01*

-X212938Y361618D01*

-Y239805D01*

-X212659Y239783D01*

-X212383Y239717D01*

-X212121Y239609D01*

-X211880Y239461D01*

-X211664Y239277D01*

-X211480Y239061D01*

-X211332Y238820D01*

-X211224Y238558D01*

-X211158Y238282D01*

-X211135Y238000D01*

-X211158Y237718D01*

-X211224Y237442D01*

-X211332Y237180D01*

-X211480Y236939D01*

-X211664Y236723D01*

-X211880Y236539D01*

-X212121Y236391D01*

-X212383Y236283D01*

-X212659Y236217D01*

-X212938Y236195D01*

-Y200540D01*

-X212749Y200379D01*

-X212309Y199864D01*

-X211956Y199287D01*

-X211697Y198662D01*

-X211539Y198004D01*

-X211486Y197329D01*

-X211539Y196654D01*

-X211697Y195996D01*

-X211956Y195371D01*

-X212309Y194794D01*

-X212749Y194279D01*

-X212938Y194118D01*

-Y188040D01*

-X212749Y187879D01*

-X212309Y187364D01*

-X211956Y186787D01*

-X211697Y186162D01*

-X211539Y185504D01*

-X211486Y184829D01*

-X211539Y184154D01*

-X211697Y183496D01*

-X211956Y182871D01*

-X212309Y182294D01*

-X212749Y181779D01*

-X212938Y181618D01*

-Y178040D01*

-G37*

-G36*

-X210438Y171500D02*X208522D01*

-X208849Y171779D01*

-X209289Y172294D01*

-X209642Y172871D01*

-X209901Y173496D01*

-X210059Y174154D01*

-X210099Y174829D01*

-X210059Y175504D01*

-X209901Y176162D01*

-X209642Y176787D01*

-X209289Y177364D01*

-X208849Y177879D01*

-X208334Y178319D01*

-X207757Y178672D01*

-X207132Y178931D01*

-X206474Y179089D01*

-X205799Y179142D01*

-X205438Y179114D01*

-Y180544D01*

-X205799Y180516D01*

-X206474Y180569D01*

-X207132Y180727D01*

-X207757Y180986D01*

-X208334Y181339D01*

-X208849Y181779D01*

-X209289Y182294D01*

-X209642Y182871D01*

-X209901Y183496D01*

-X210059Y184154D01*

-X210099Y184829D01*

-X210059Y185504D01*

-X209901Y186162D01*

-X209642Y186787D01*

-X209289Y187364D01*

-X208849Y187879D01*

-X208334Y188319D01*

-X207757Y188672D01*

-X207132Y188931D01*

-X206474Y189089D01*

-X205799Y189142D01*

-X205438Y189114D01*

-Y193044D01*

-X205799Y193016D01*

-X206474Y193069D01*

-X207132Y193227D01*

-X207757Y193486D01*

-X208334Y193839D01*

-X208849Y194279D01*

-X209289Y194794D01*

-X209642Y195371D01*

-X209901Y195996D01*

-X210059Y196654D01*

-X210099Y197329D01*

-X210059Y198004D01*

-X209901Y198662D01*

-X209642Y199287D01*

-X209289Y199864D01*

-X208849Y200379D01*

-X208334Y200819D01*

-X207757Y201172D01*

-X207132Y201431D01*

-X206474Y201589D01*

-X205799Y201642D01*

-X205438Y201614D01*

-Y236498D01*

-X205550Y236680D01*

-X205658Y236942D01*

-X205724Y237218D01*

-X205741Y237500D01*

-X205724Y237782D01*

-X205658Y238058D01*

-X205550Y238320D01*

-X205438Y238502D01*

-Y275195D01*

-X205441Y275194D01*

-X205723Y275217D01*

-X205999Y275283D01*

-X206261Y275391D01*

-X206502Y275539D01*

-X206718Y275723D01*

-X206902Y275939D01*

-X207050Y276180D01*

-X207158Y276442D01*

-X207224Y276718D01*

-X207241Y277000D01*

-X207224Y277282D01*

-X207158Y277558D01*

-X207050Y277820D01*

-X206902Y278061D01*

-X206718Y278277D01*

-X206502Y278461D01*

-X206261Y278609D01*

-X205999Y278717D01*

-X205723Y278783D01*

-X205441Y278806D01*

-X205438Y278805D01*

-Y360544D01*

-X205799Y360516D01*

-X206474Y360569D01*

-X207132Y360727D01*

-X207757Y360986D01*

-X208334Y361339D01*

-X208849Y361779D01*

-X209289Y362294D01*

-X209642Y362871D01*

-X209901Y363496D01*

-X210059Y364154D01*

-X210099Y364829D01*

-X210059Y365504D01*

-X209901Y366162D01*

-X209642Y366787D01*

-X209289Y367364D01*

-X208849Y367879D01*

-X208334Y368319D01*

-X207757Y368672D01*

-X207132Y368931D01*

-X206474Y369089D01*

-X205799Y369142D01*

-X205438Y369114D01*

-Y370544D01*

-X205799Y370516D01*

-X206474Y370569D01*

-X207132Y370727D01*

-X207757Y370986D01*

-X208334Y371339D01*

-X208849Y371779D01*

-X209289Y372294D01*

-X209642Y372871D01*

-X209901Y373496D01*

-X210059Y374154D01*

-X210099Y374829D01*

-X210059Y375504D01*

-X209901Y376162D01*

-X209642Y376787D01*

-X209289Y377364D01*

-X208849Y377879D01*

-X208334Y378319D01*

-X207757Y378672D01*

-X207132Y378931D01*

-X206474Y379089D01*

-X205799Y379142D01*

-X205438Y379114D01*

-Y397000D01*

-X210438D01*

-Y214305D01*

-X210159Y214283D01*

-X209883Y214217D01*

-X209621Y214109D01*

-X209380Y213961D01*

-X209164Y213777D01*

-X208980Y213561D01*

-X208832Y213320D01*

-X208724Y213058D01*

-X208658Y212782D01*

-X208635Y212500D01*

-X208658Y212218D01*

-X208724Y211942D01*

-X208832Y211680D01*

-X208980Y211439D01*

-X209164Y211223D01*

-X209380Y211039D01*

-X209621Y210891D01*

-X209883Y210783D01*

-X210159Y210717D01*

-X210438Y210695D01*

-Y171500D01*

-G37*

-G36*

-X205438Y379114D02*X205124Y379089D01*

-X204466Y378931D01*

-X203841Y378672D01*

-X203264Y378319D01*

-X202749Y377879D01*

-X202438Y377515D01*

-Y397000D01*

-X205438D01*

-Y379114D01*

-G37*

-G36*

-Y369114D02*X205124Y369089D01*

-X204466Y368931D01*

-X203841Y368672D01*

-X203264Y368319D01*

-X202749Y367879D01*

-X202438Y367515D01*

-Y372143D01*

-X202749Y371779D01*

-X203264Y371339D01*

-X203841Y370986D01*

-X204466Y370727D01*

-X205124Y370569D01*

-X205438Y370544D01*

-Y369114D01*

-G37*

-G36*

-Y238502D02*X205402Y238561D01*

-X205218Y238777D01*

-X205002Y238961D01*

-X204761Y239109D01*

-X204499Y239217D01*

-X204223Y239283D01*

-X203941Y239306D01*

-X203659Y239283D01*

-X203383Y239217D01*

-X203121Y239109D01*

-X202880Y238961D01*

-X202664Y238777D01*

-X202480Y238561D01*

-X202438Y238493D01*

-Y362143D01*

-X202749Y361779D01*

-X203264Y361339D01*

-X203841Y360986D01*

-X204466Y360727D01*

-X205124Y360569D01*

-X205438Y360544D01*

-Y278805D01*

-X205159Y278783D01*

-X204883Y278717D01*

-X204621Y278609D01*

-X204380Y278461D01*

-X204164Y278277D01*

-X203980Y278061D01*

-X203832Y277820D01*

-X203724Y277558D01*

-X203658Y277282D01*

-X203635Y277000D01*

-X203658Y276718D01*

-X203724Y276442D01*

-X203832Y276180D01*

-X203980Y275939D01*

-X204164Y275723D01*

-X204380Y275539D01*

-X204621Y275391D01*

-X204883Y275283D01*

-X205159Y275217D01*

-X205438Y275195D01*

-Y238502D01*

-G37*

-G36*

-Y201614D02*X205124Y201589D01*

-X204466Y201431D01*

-X203841Y201172D01*

-X203264Y200819D01*

-X202749Y200379D01*

-X202438Y200015D01*

-Y210695D01*

-X202441Y210694D01*

-X202723Y210717D01*

-X202999Y210783D01*

-X203261Y210891D01*

-X203502Y211039D01*

-X203718Y211223D01*

-X203902Y211439D01*

-X204050Y211680D01*

-X204158Y211942D01*

-X204224Y212218D01*

-X204241Y212500D01*

-X204224Y212782D01*

-X204158Y213058D01*

-X204050Y213320D01*

-X203902Y213561D01*

-X203718Y213777D01*

-X203502Y213961D01*

-X203261Y214109D01*

-X202999Y214217D01*

-X202723Y214283D01*

-X202441Y214306D01*

-X202438Y214305D01*

-Y236507D01*

-X202480Y236439D01*

-X202664Y236223D01*

-X202880Y236039D01*

-X203121Y235891D01*

-X203383Y235783D01*

-X203659Y235717D01*

-X203941Y235694D01*

-X204223Y235717D01*

-X204499Y235783D01*

-X204761Y235891D01*

-X205002Y236039D01*

-X205218Y236223D01*

-X205402Y236439D01*

-X205438Y236498D01*

-Y201614D01*

-G37*

-G36*

-Y189114D02*X205124Y189089D01*

-X204466Y188931D01*

-X203841Y188672D01*

-X203264Y188319D01*

-X202749Y187879D01*

-X202438Y187515D01*

-Y194643D01*

-X202749Y194279D01*

-X203264Y193839D01*

-X203841Y193486D01*

-X204466Y193227D01*

-X205124Y193069D01*

-X205438Y193044D01*

-Y189114D01*

-G37*

-G36*

-Y179114D02*X205124Y179089D01*

-X204466Y178931D01*

-X203841Y178672D01*

-X203264Y178319D01*

-X202749Y177879D01*

-X202438Y177515D01*

-Y182143D01*

-X202749Y181779D01*

-X203264Y181339D01*

-X203841Y180986D01*

-X204466Y180727D01*

-X205124Y180569D01*

-X205438Y180544D01*

-Y179114D01*

-G37*

-G36*

-X202438Y177515D02*X202309Y177364D01*

-X201956Y176787D01*

-X201697Y176162D01*

-X201539Y175504D01*

-X201486Y174829D01*

-X201539Y174154D01*

-X201697Y173496D01*

-X201956Y172871D01*

-X202309Y172294D01*

-X202438Y172143D01*

-Y171500D01*

-X198522D01*

-X198849Y171779D01*

-X199289Y172294D01*

-X199642Y172871D01*

-X199901Y173496D01*

-X200059Y174154D01*

-X200099Y174829D01*

-X200059Y175504D01*

-X199901Y176162D01*

-X199642Y176787D01*

-X199289Y177364D01*

-X198849Y177879D01*

-X198334Y178319D01*

-X197757Y178672D01*

-X197438Y178804D01*

-Y180854D01*

-X197757Y180986D01*

-X198334Y181339D01*

-X198849Y181779D01*

-X199289Y182294D01*

-X199642Y182871D01*

-X199901Y183496D01*

-X200059Y184154D01*

-X200099Y184829D01*

-X200059Y185504D01*

-X199901Y186162D01*

-X199642Y186787D01*

-X199289Y187364D01*

-X198849Y187879D01*

-X198334Y188319D01*

-X197757Y188672D01*

-X197438Y188804D01*

-Y193036D01*

-X199256Y193038D01*

-X199409Y193075D01*

-X199554Y193135D01*

-X199689Y193217D01*

-X199808Y193320D01*

-X199911Y193439D01*

-X199993Y193574D01*

-X200053Y193719D01*

-X200090Y193872D01*

-X200099Y194029D01*

-X200090Y200786D01*

-X200053Y200939D01*

-X199993Y201084D01*

-X199911Y201219D01*

-X199808Y201338D01*

-X199689Y201441D01*

-X199554Y201523D01*

-X199409Y201583D01*

-X199256Y201620D01*

-X199099Y201629D01*

-X197438Y201627D01*

-Y261003D01*

-X197621Y260891D01*

-X197883Y260783D01*

-X198159Y260717D01*

-X198441Y260694D01*

-X198723Y260717D01*

-X198999Y260783D01*

-X199261Y260891D01*

-X199502Y261039D01*

-X199718Y261223D01*

-X199902Y261439D01*

-X200050Y261680D01*

-X200158Y261942D01*

-X200224Y262218D01*

-X200241Y262500D01*

-X200224Y262782D01*

-X200158Y263058D01*

-X200050Y263320D01*

-X199902Y263561D01*

-X199718Y263777D01*

-X199502Y263961D01*

-X199261Y264109D01*

-X198999Y264217D01*

-X198723Y264283D01*

-X198441Y264306D01*

-X198159Y264283D01*

-X197883Y264217D01*

-X197621Y264109D01*

-X197438Y263997D01*

-Y268003D01*

-X197621Y267891D01*

-X197883Y267783D01*

-X198159Y267717D01*

-X198441Y267694D01*

-X198723Y267717D01*

-X198999Y267783D01*

-X199261Y267891D01*

-X199502Y268039D01*

-X199718Y268223D01*

-X199902Y268439D01*

-X200050Y268680D01*

-X200158Y268942D01*

-X200224Y269218D01*

-X200241Y269500D01*

-X200224Y269782D01*

-X200158Y270058D01*

-X200050Y270320D01*

-X199902Y270561D01*

-X199718Y270777D01*

-X199502Y270961D01*

-X199261Y271109D01*

-X198999Y271217D01*

-X198723Y271283D01*

-X198441Y271306D01*

-X198159Y271283D01*

-X197883Y271217D01*

-X197621Y271109D01*

-X197438Y270997D01*

-Y306695D01*

-X197441Y306694D01*

-X197723Y306717D01*

-X197999Y306783D01*

-X198261Y306891D01*

-X198502Y307039D01*

-X198718Y307223D01*

-X198902Y307439D01*

-X199050Y307680D01*

-X199158Y307942D01*

-X199224Y308218D01*

-X199241Y308500D01*

-X199224Y308782D01*

-X199158Y309058D01*

-X199050Y309320D01*

-X198902Y309561D01*

-X198718Y309777D01*

-X198502Y309961D01*

-X198261Y310109D01*

-X197999Y310217D01*

-X197723Y310283D01*

-X197441Y310306D01*

-X197438Y310305D01*

-Y312695D01*

-X197441Y312694D01*

-X197723Y312717D01*

-X197999Y312783D01*

-X198261Y312891D01*

-X198502Y313039D01*

-X198718Y313223D01*

-X198902Y313439D01*

-X199050Y313680D01*

-X199158Y313942D01*

-X199224Y314218D01*

-X199241Y314500D01*

-X199224Y314782D01*

-X199158Y315058D01*

-X199050Y315320D01*

-X198902Y315561D01*

-X198718Y315777D01*

-X198502Y315961D01*

-X198261Y316109D01*

-X197999Y316217D01*

-X197723Y316283D01*

-X197441Y316306D01*

-X197438Y316305D01*

-Y360854D01*

-X197757Y360986D01*

-X198334Y361339D01*

-X198849Y361779D01*

-X199289Y362294D01*

-X199642Y362871D01*

-X199901Y363496D01*

-X200059Y364154D01*

-X200099Y364829D01*

-X200059Y365504D01*

-X199901Y366162D01*

-X199642Y366787D01*

-X199289Y367364D01*

-X198849Y367879D01*

-X198334Y368319D01*

-X197757Y368672D01*

-X197438Y368804D01*

-Y370854D01*

-X197757Y370986D01*

-X198334Y371339D01*

-X198849Y371779D01*

-X199289Y372294D01*

-X199642Y372871D01*

-X199901Y373496D01*

-X200059Y374154D01*

-X200099Y374829D01*

-X200059Y375504D01*

-X199901Y376162D01*

-X199642Y376787D01*

-X199289Y377364D01*

-X198849Y377879D01*

-X198334Y378319D01*

-X197757Y378672D01*

-X197438Y378804D01*

-Y397000D01*

-X202438D01*

-Y377515D01*

-X202309Y377364D01*

-X201956Y376787D01*

-X201697Y376162D01*

-X201539Y375504D01*

-X201486Y374829D01*

-X201539Y374154D01*

-X201697Y373496D01*

-X201956Y372871D01*

-X202309Y372294D01*

-X202438Y372143D01*

-Y367515D01*

-X202309Y367364D01*

-X201956Y366787D01*

-X201697Y366162D01*

-X201539Y365504D01*

-X201486Y364829D01*

-X201539Y364154D01*

-X201697Y363496D01*

-X201956Y362871D01*

-X202309Y362294D01*

-X202438Y362143D01*

-Y238493D01*

-X202332Y238320D01*

-X202224Y238058D01*

-X202158Y237782D01*

-X202135Y237500D01*

-X202158Y237218D01*

-X202224Y236942D01*

-X202332Y236680D01*

-X202438Y236507D01*

-Y214305D01*

-X202159Y214283D01*

-X201883Y214217D01*

-X201621Y214109D01*

-X201380Y213961D01*

-X201164Y213777D01*

-X200980Y213561D01*

-X200832Y213320D01*

-X200724Y213058D01*

-X200658Y212782D01*

-X200635Y212500D01*

-X200658Y212218D01*

-X200724Y211942D01*

-X200832Y211680D01*

-X200980Y211439D01*

-X201164Y211223D01*

-X201380Y211039D01*

-X201621Y210891D01*

-X201883Y210783D01*

-X202159Y210717D01*

-X202438Y210695D01*

-Y200015D01*

-X202309Y199864D01*

-X201956Y199287D01*

-X201697Y198662D01*

-X201539Y198004D01*

-X201486Y197329D01*

-X201539Y196654D01*

-X201697Y195996D01*

-X201956Y195371D01*

-X202309Y194794D01*

-X202438Y194643D01*

-Y187515D01*

-X202309Y187364D01*

-X201956Y186787D01*

-X201697Y186162D01*

-X201539Y185504D01*

-X201486Y184829D01*

-X201539Y184154D01*

-X201697Y183496D01*

-X201956Y182871D01*

-X202309Y182294D01*

-X202438Y182143D01*

-Y177515D01*

-G37*

-G36*

-X197438Y378804D02*X197132Y378931D01*

-X196474Y379089D01*

-X195799Y379142D01*

-X195124Y379089D01*

-X194466Y378931D01*

-X193938Y378712D01*

-Y397000D01*

-X197438D01*

-Y378804D01*

-G37*

-G36*

-Y368804D02*X197132Y368931D01*

-X196474Y369089D01*

-X195799Y369142D01*

-X195124Y369089D01*

-X194466Y368931D01*

-X193938Y368712D01*

-Y370946D01*

-X194466Y370727D01*

-X195124Y370569D01*

-X195799Y370516D01*

-X196474Y370569D01*

-X197132Y370727D01*

-X197438Y370854D01*

-Y368804D01*

-G37*

-G36*

-Y201627D02*X193938Y201622D01*

-Y210695D01*

-X193941Y210694D01*

-X194223Y210717D01*

-X194499Y210783D01*

-X194761Y210891D01*

-X195002Y211039D01*

-X195218Y211223D01*

-X195402Y211439D01*

-X195550Y211680D01*

-X195658Y211942D01*

-X195724Y212218D01*

-X195741Y212500D01*

-X195724Y212782D01*

-X195658Y213058D01*

-X195550Y213320D01*

-X195402Y213561D01*

-X195218Y213777D01*

-X195002Y213961D01*

-X194761Y214109D01*

-X194499Y214217D01*

-X194223Y214283D01*

-X193941Y214306D01*

-X193938Y214305D01*

-Y235195D01*

-X193941Y235194D01*

-X194223Y235217D01*

-X194499Y235283D01*

-X194761Y235391D01*

-X195002Y235539D01*

-X195218Y235723D01*

-X195402Y235939D01*

-X195550Y236180D01*

-X195658Y236442D01*

-X195724Y236718D01*

-X195741Y237000D01*

-X195724Y237282D01*

-X195658Y237558D01*

-X195550Y237820D01*

-X195402Y238061D01*

-X195218Y238277D01*

-X195002Y238461D01*

-X194761Y238609D01*

-X194499Y238717D01*

-X194223Y238783D01*

-X193941Y238806D01*

-X193938Y238805D01*

-Y310507D01*

-X193980Y310439D01*

-X194164Y310223D01*

-X194380Y310039D01*

-X194621Y309891D01*

-X194883Y309783D01*

-X195159Y309717D01*

-X195441Y309694D01*

-X195723Y309717D01*

-X195999Y309783D01*

-X196261Y309891D01*

-X196502Y310039D01*

-X196718Y310223D01*

-X196902Y310439D01*

-X197050Y310680D01*

-X197158Y310942D01*

-X197224Y311218D01*

-X197241Y311500D01*

-X197224Y311782D01*

-X197158Y312058D01*

-X197050Y312320D01*

-X196902Y312561D01*

-X196718Y312777D01*

-X196502Y312961D01*

-X196261Y313109D01*

-X195999Y313217D01*

-X195723Y313283D01*

-X195441Y313306D01*

-X195159Y313283D01*

-X194883Y313217D01*

-X194621Y313109D01*

-X194380Y312961D01*

-X194164Y312777D01*

-X193980Y312561D01*

-X193938Y312493D01*

-Y360946D01*

-X194466Y360727D01*

-X195124Y360569D01*

-X195799Y360516D01*

-X196474Y360569D01*

-X197132Y360727D01*

-X197438Y360854D01*

-Y316305D01*

-X197159Y316283D01*

-X196883Y316217D01*

-X196621Y316109D01*

-X196380Y315961D01*

-X196164Y315777D01*

-X195980Y315561D01*

-X195832Y315320D01*

-X195724Y315058D01*

-X195658Y314782D01*

-X195635Y314500D01*

-X195658Y314218D01*

-X195724Y313942D01*

-X195832Y313680D01*

-X195980Y313439D01*

-X196164Y313223D01*

-X196380Y313039D01*

-X196621Y312891D01*

-X196883Y312783D01*

-X197159Y312717D01*

-X197438Y312695D01*

-Y310305D01*

-X197159Y310283D01*

-X196883Y310217D01*

-X196621Y310109D01*

-X196380Y309961D01*

-X196164Y309777D01*

-X195980Y309561D01*

-X195832Y309320D01*

-X195724Y309058D01*

-X195658Y308782D01*

-X195635Y308500D01*

-X195658Y308218D01*

-X195724Y307942D01*

-X195832Y307680D01*

-X195980Y307439D01*

-X196164Y307223D01*

-X196380Y307039D01*

-X196621Y306891D01*

-X196883Y306783D01*

-X197159Y306717D01*

-X197438Y306695D01*

-Y270997D01*

-X197380Y270961D01*

-X197164Y270777D01*

-X196980Y270561D01*

-X196832Y270320D01*

-X196724Y270058D01*

-X196658Y269782D01*

-X196635Y269500D01*

-X196658Y269218D01*

-X196724Y268942D01*

-X196832Y268680D01*

-X196980Y268439D01*

-X197164Y268223D01*

-X197380Y268039D01*

-X197438Y268003D01*

-Y263997D01*

-X197380Y263961D01*

-X197164Y263777D01*

-X196980Y263561D01*

-X196832Y263320D01*

-X196724Y263058D01*

-X196658Y262782D01*

-X196635Y262500D01*

-X196658Y262218D01*

-X196724Y261942D01*

-X196832Y261680D01*

-X196980Y261439D01*

-X197164Y261223D01*

-X197380Y261039D01*

-X197438Y261003D01*

-Y201627D01*

-G37*

-G36*

-Y188804D02*X197132Y188931D01*

-X196474Y189089D01*

-X195799Y189142D01*

-X195124Y189089D01*

-X194466Y188931D01*

-X193938Y188712D01*

-Y193031D01*

-X197438Y193036D01*

-Y188804D01*

-G37*

-G36*

-Y178804D02*X197132Y178931D01*

-X196474Y179089D01*

-X195799Y179142D01*

-X195124Y179089D01*

-X194466Y178931D01*

-X193938Y178712D01*

-Y180946D01*

-X194466Y180727D01*

-X195124Y180569D01*

-X195799Y180516D01*

-X196474Y180569D01*

-X197132Y180727D01*

-X197438Y180854D01*

-Y178804D01*

-G37*

-G36*

-X181938Y172913D02*X181956Y172871D01*

-X182309Y172294D01*

-X182749Y171779D01*

-X183076Y171500D01*

-X181938D01*

-Y172913D01*

-G37*

-G36*

-X193938Y178712D02*X193841Y178672D01*

-X193264Y178319D01*

-X192749Y177879D01*

-X192309Y177364D01*

-X191956Y176787D01*

-X191697Y176162D01*

-X191539Y175504D01*

-X191486Y174829D01*

-X191539Y174154D01*

-X191697Y173496D01*

-X191956Y172871D01*

-X192309Y172294D01*

-X192749Y171779D01*

-X193076Y171500D01*

-X191360D01*

-Y342644D01*

-X191363Y342643D01*

-X191645Y342666D01*

-X191921Y342732D01*

-X192183Y342840D01*

-X192424Y342988D01*

-X192640Y343172D01*

-X192824Y343388D01*

-X192972Y343629D01*

-X193080Y343891D01*

-X193146Y344167D01*

-X193163Y344449D01*

-X193146Y344731D01*

-X193080Y345007D01*

-X192972Y345269D01*

-X192824Y345510D01*

-X192640Y345726D01*

-X192424Y345910D01*

-X192183Y346058D01*

-X191921Y346166D01*

-X191645Y346232D01*

-X191363Y346255D01*

-X191360Y346254D01*

-Y397000D01*

-X193938D01*

-Y378712D01*

-X193841Y378672D01*

-X193264Y378319D01*

-X192749Y377879D01*

-X192309Y377364D01*

-X191956Y376787D01*

-X191697Y376162D01*

-X191539Y375504D01*

-X191486Y374829D01*

-X191539Y374154D01*

-X191697Y373496D01*

-X191956Y372871D01*

-X192309Y372294D01*

-X192749Y371779D01*

-X193264Y371339D01*

-X193841Y370986D01*

-X193938Y370946D01*

-Y368712D01*

-X193841Y368672D01*

-X193264Y368319D01*

-X192749Y367879D01*

-X192309Y367364D01*

-X191956Y366787D01*

-X191697Y366162D01*

-X191539Y365504D01*

-X191486Y364829D01*

-X191539Y364154D01*

-X191697Y363496D01*

-X191956Y362871D01*

-X192309Y362294D01*

-X192749Y361779D01*

-X193264Y361339D01*

-X193841Y360986D01*

-X193938Y360946D01*

-Y312493D01*

-X193832Y312320D01*

-X193724Y312058D01*

-X193658Y311782D01*

-X193635Y311500D01*

-X193658Y311218D01*

-X193724Y310942D01*

-X193832Y310680D01*

-X193938Y310507D01*

-Y238805D01*

-X193659Y238783D01*

-X193383Y238717D01*

-X193121Y238609D01*

-X192880Y238461D01*

-X192664Y238277D01*

-X192480Y238061D01*

-X192332Y237820D01*

-X192224Y237558D01*

-X192158Y237282D01*

-X192135Y237000D01*

-X192158Y236718D01*

-X192224Y236442D01*

-X192332Y236180D01*

-X192480Y235939D01*

-X192664Y235723D01*

-X192880Y235539D01*

-X193121Y235391D01*

-X193383Y235283D01*

-X193659Y235217D01*

-X193938Y235195D01*

-Y214305D01*

-X193659Y214283D01*

-X193383Y214217D01*

-X193121Y214109D01*

-X192880Y213961D01*

-X192664Y213777D01*

-X192480Y213561D01*

-X192332Y213320D01*

-X192224Y213058D01*

-X192158Y212782D01*

-X192135Y212500D01*

-X192158Y212218D01*

-X192224Y211942D01*

-X192332Y211680D01*

-X192480Y211439D01*

-X192664Y211223D01*

-X192880Y211039D01*

-X193121Y210891D01*

-X193383Y210783D01*

-X193659Y210717D01*

-X193938Y210695D01*

-Y201622D01*

-X192342Y201620D01*

-X192189Y201583D01*

-X192044Y201523D01*

-X191909Y201441D01*

-X191790Y201338D01*

-X191687Y201219D01*

-X191605Y201084D01*

-X191545Y200939D01*

-X191508Y200786D01*

-X191499Y200629D01*

-X191508Y193872D01*

-X191545Y193719D01*

-X191605Y193574D01*

-X191687Y193439D01*

-X191790Y193320D01*

-X191909Y193217D01*

-X192044Y193135D01*

-X192189Y193075D01*

-X192342Y193038D01*

-X192499Y193029D01*

-X193938Y193031D01*

-Y188712D01*

-X193841Y188672D01*

-X193264Y188319D01*

-X192749Y187879D01*

-X192309Y187364D01*

-X191956Y186787D01*

-X191697Y186162D01*

-X191539Y185504D01*

-X191486Y184829D01*

-X191539Y184154D01*

-X191697Y183496D01*

-X191956Y182871D01*

-X192309Y182294D01*

-X192749Y181779D01*

-X193264Y181339D01*

-X193841Y180986D01*

-X193938Y180946D01*

-Y178712D01*

-G37*

-G36*

-X191360Y171500D02*X188522D01*

-X188849Y171779D01*

-X189289Y172294D01*

-X189642Y172871D01*

-X189901Y173496D01*

-X190059Y174154D01*

-X190099Y174829D01*

-X190059Y175504D01*

-X189901Y176162D01*

-X189642Y176787D01*

-X189289Y177364D01*

-X188849Y177879D01*

-X188334Y178319D01*

-X187757Y178672D01*

-X187132Y178931D01*

-X186474Y179089D01*

-X185799Y179142D01*

-X185438Y179114D01*

-Y180544D01*

-X185799Y180516D01*

-X186474Y180569D01*

-X187132Y180727D01*

-X187757Y180986D01*

-X188334Y181339D01*

-X188849Y181779D01*

-X189289Y182294D01*

-X189642Y182871D01*

-X189901Y183496D01*

-X190059Y184154D01*

-X190099Y184829D01*

-X190059Y185504D01*

-X189901Y186162D01*

-X189642Y186787D01*

-X189289Y187364D01*

-X188849Y187879D01*

-X188334Y188319D01*

-X187757Y188672D01*

-X187132Y188931D01*

-X186474Y189089D01*

-X185799Y189142D01*

-X185438Y189114D01*

-Y215695D01*

-X185441Y215694D01*

-X185723Y215717D01*

-X185999Y215783D01*

-X186261Y215891D01*

-X186502Y216039D01*

-X186718Y216223D01*

-X186902Y216439D01*

-X187050Y216680D01*

-X187158Y216942D01*

-X187224Y217218D01*

-X187241Y217500D01*

-X187224Y217782D01*

-X187158Y218058D01*

-X187050Y218320D01*

-X186902Y218561D01*

-X186718Y218777D01*

-X186502Y218961D01*

-X186261Y219109D01*

-X185999Y219217D01*

-X185723Y219283D01*

-X185441Y219306D01*

-X185438Y219305D01*

-Y226195D01*

-X185441Y226194D01*

-X185723Y226217D01*

-X185999Y226283D01*

-X186261Y226391D01*

-X186502Y226539D01*

-X186718Y226723D01*

-X186902Y226939D01*

-X187050Y227180D01*

-X187158Y227442D01*

-X187224Y227718D01*

-X187241Y228000D01*

-X187224Y228282D01*

-X187158Y228558D01*

-X187050Y228820D01*

-X186902Y229061D01*

-X186718Y229277D01*

-X186502Y229461D01*

-X186261Y229609D01*

-X185999Y229717D01*

-X185723Y229783D01*

-X185441Y229806D01*

-X185438Y229805D01*

-Y360544D01*

-X185799Y360516D01*

-X186474Y360569D01*

-X187132Y360727D01*

-X187757Y360986D01*

-X188334Y361339D01*

-X188849Y361779D01*

-X189289Y362294D01*

-X189642Y362871D01*

-X189901Y363496D01*

-X190059Y364154D01*

-X190099Y364829D01*

-X190059Y365504D01*

-X189901Y366162D01*

-X189642Y366787D01*

-X189289Y367364D01*

-X188849Y367879D01*

-X188334Y368319D01*

-X187757Y368672D01*

-X187132Y368931D01*

-X186474Y369089D01*

-X185799Y369142D01*

-X185438Y369114D01*

-Y370544D01*

-X185799Y370516D01*

-X186474Y370569D01*

-X187132Y370727D01*

-X187757Y370986D01*

-X188334Y371339D01*

-X188849Y371779D01*

-X189289Y372294D01*

-X189642Y372871D01*

-X189901Y373496D01*

-X190059Y374154D01*

-X190099Y374829D01*

-X190059Y375504D01*

-X189901Y376162D01*

-X189642Y376787D01*

-X189289Y377364D01*

-X188849Y377879D01*

-X188334Y378319D01*

-X187757Y378672D01*

-X187132Y378931D01*

-X186474Y379089D01*

-X185799Y379142D01*

-X185438Y379114D01*

-Y397000D01*

-X191360D01*

-Y346254D01*

-X191081Y346232D01*

-X190805Y346166D01*

-X190543Y346058D01*

-X190302Y345910D01*

-X190086Y345726D01*

-X189902Y345510D01*

-X189754Y345269D01*

-X189646Y345007D01*

-X189580Y344731D01*

-X189557Y344449D01*

-X189580Y344167D01*

-X189646Y343891D01*

-X189754Y343629D01*

-X189902Y343388D01*

-X190086Y343172D01*

-X190302Y342988D01*

-X190543Y342840D01*

-X190805Y342732D01*

-X191081Y342666D01*

-X191360Y342644D01*

-Y171500D01*

-G37*

-G36*

-X185438Y379114D02*X185124Y379089D01*

-X184466Y378931D01*

-X183841Y378672D01*

-X183264Y378319D01*

-X182749Y377879D01*

-X182309Y377364D01*

-X181956Y376787D01*

-X181938Y376745D01*

-Y397000D01*

-X185438D01*

-Y379114D01*

-G37*

-G36*

-Y369114D02*X185124Y369089D01*

-X184466Y368931D01*

-X183841Y368672D01*

-X183264Y368319D01*

-X182749Y367879D01*

-X182309Y367364D01*

-X181956Y366787D01*

-X181938Y366745D01*

-Y372913D01*

-X181956Y372871D01*

-X182309Y372294D01*

-X182749Y371779D01*

-X183264Y371339D01*

-X183841Y370986D01*

-X184466Y370727D01*

-X185124Y370569D01*

-X185438Y370544D01*

-Y369114D01*

-G37*

-G36*

-Y189114D02*X185124Y189089D01*

-X184466Y188931D01*

-X183841Y188672D01*

-X183264Y188319D01*

-X182749Y187879D01*

-X182309Y187364D01*

-X181956Y186787D01*

-X181938Y186745D01*

-Y256695D01*

-X181941Y256694D01*

-X182223Y256717D01*

-X182499Y256783D01*

-X182761Y256891D01*

-X183002Y257039D01*

-X183218Y257223D01*

-X183402Y257439D01*

-X183550Y257680D01*

-X183658Y257942D01*

-X183724Y258218D01*

-X183741Y258500D01*

-X183724Y258782D01*

-X183658Y259058D01*

-X183550Y259320D01*

-X183402Y259561D01*

-X183218Y259777D01*

-X183002Y259961D01*

-X182761Y260109D01*

-X182499Y260217D01*

-X182223Y260283D01*

-X181941Y260306D01*

-X181938Y260305D01*

-Y362913D01*

-X181956Y362871D01*

-X182309Y362294D01*

-X182749Y361779D01*

-X183264Y361339D01*

-X183841Y360986D01*

-X184466Y360727D01*

-X185124Y360569D01*

-X185438Y360544D01*

-Y229805D01*

-X185159Y229783D01*

-X184883Y229717D01*

-X184621Y229609D01*

-X184380Y229461D01*

-X184164Y229277D01*

-X183980Y229061D01*

-X183832Y228820D01*

-X183724Y228558D01*

-X183658Y228282D01*

-X183635Y228000D01*

-X183658Y227718D01*

-X183724Y227442D01*

-X183832Y227180D01*

-X183980Y226939D01*

-X184164Y226723D01*

-X184380Y226539D01*

-X184621Y226391D01*

-X184883Y226283D01*

-X185159Y226217D01*

-X185438Y226195D01*

-Y219305D01*

-X185159Y219283D01*

-X184883Y219217D01*

-X184621Y219109D01*

-X184380Y218961D01*

-X184164Y218777D01*

-X183980Y218561D01*

-X183832Y218320D01*

-X183724Y218058D01*

-X183658Y217782D01*

-X183635Y217500D01*

-X183658Y217218D01*

-X183724Y216942D01*

-X183832Y216680D01*

-X183980Y216439D01*

-X184164Y216223D01*

-X184380Y216039D01*

-X184621Y215891D01*

-X184883Y215783D01*

-X185159Y215717D01*

-X185438Y215695D01*

-Y189114D01*

-G37*

-G36*

-Y179114D02*X185124Y179089D01*

-X184466Y178931D01*

-X183841Y178672D01*

-X183264Y178319D01*

-X182749Y177879D01*

-X182309Y177364D01*

-X181956Y176787D01*

-X181938Y176745D01*

-Y182913D01*

-X181956Y182871D01*

-X182309Y182294D01*

-X182749Y181779D01*

-X183264Y181339D01*

-X183841Y180986D01*

-X184466Y180727D01*

-X185124Y180569D01*

-X185438Y180544D01*

-Y179114D01*

-G37*

-G36*

-X181938Y176745D02*X181697Y176162D01*

-X181539Y175504D01*

-X181486Y174829D01*

-X181539Y174154D01*

-X181697Y173496D01*

-X181938Y172913D01*

-Y171500D01*

-X178884D01*

-Y171820D01*

-X179289Y172294D01*

-X179642Y172871D01*

-X179901Y173496D01*

-X180059Y174154D01*

-X180099Y174829D01*

-X180059Y175504D01*

-X179901Y176162D01*

-X179642Y176787D01*

-X179289Y177364D01*

-X178884Y177838D01*

-Y181820D01*

-X179289Y182294D01*

-X179642Y182871D01*

-X179901Y183496D01*

-X180059Y184154D01*

-X180099Y184829D01*

-X180059Y185504D01*

-X179901Y186162D01*

-X179642Y186787D01*

-X179289Y187364D01*

-X178884Y187838D01*

-Y216418D01*

-X178902Y216439D01*

-X179050Y216680D01*

-X179158Y216942D01*

-X179224Y217218D01*

-X179241Y217500D01*

-X179224Y217782D01*

-X179158Y218058D01*

-X179050Y218320D01*

-X178902Y218561D01*

-X178884Y218582D01*

-Y226918D01*

-X178902Y226939D01*

-X179050Y227180D01*

-X179158Y227442D01*

-X179224Y227718D01*

-X179241Y228000D01*

-X179224Y228282D01*

-X179158Y228558D01*

-X179050Y228820D01*

-X178902Y229061D01*

-X178884Y229082D01*

-Y341013D01*

-X178887Y341012D01*

-X179169Y341035D01*

-X179445Y341101D01*

-X179707Y341209D01*

-X179948Y341357D01*

-X180164Y341541D01*

-X180348Y341757D01*

-X180496Y341998D01*

-X180604Y342260D01*

-X180670Y342536D01*

-X180687Y342818D01*

-X180670Y343100D01*

-X180604Y343376D01*

-X180496Y343638D01*

-X180348Y343879D01*

-X180164Y344095D01*

-X179948Y344279D01*

-X179707Y344427D01*

-X179445Y344535D01*

-X179169Y344601D01*

-X178887Y344624D01*

-X178884Y344623D01*

-Y361820D01*

-X179289Y362294D01*

-X179642Y362871D01*

-X179901Y363496D01*

-X180059Y364154D01*

-X180099Y364829D01*

-X180059Y365504D01*

-X179901Y366162D01*

-X179642Y366787D01*

-X179289Y367364D01*

-X178884Y367838D01*

-Y371820D01*

-X179289Y372294D01*

-X179642Y372871D01*

-X179901Y373496D01*

-X180059Y374154D01*

-X180099Y374829D01*

-X180059Y375504D01*

-X179901Y376162D01*

-X179642Y376787D01*

-X179289Y377364D01*

-X178884Y377838D01*

-Y397000D01*

-X181938D01*

-Y376745D01*

-X181697Y376162D01*

-X181539Y375504D01*

-X181486Y374829D01*

-X181539Y374154D01*

-X181697Y373496D01*

-X181938Y372913D01*

-Y366745D01*

-X181697Y366162D01*

-X181539Y365504D01*

-X181486Y364829D01*

-X181539Y364154D01*

-X181697Y363496D01*

-X181938Y362913D01*

-Y260305D01*

-X181659Y260283D01*

-X181383Y260217D01*

-X181121Y260109D01*

-X180880Y259961D01*

-X180664Y259777D01*

-X180480Y259561D01*

-X180332Y259320D01*

-X180224Y259058D01*

-X180158Y258782D01*

-X180135Y258500D01*

-X180158Y258218D01*

-X180224Y257942D01*

-X180332Y257680D01*

-X180480Y257439D01*

-X180664Y257223D01*

-X180880Y257039D01*

-X181121Y256891D01*

-X181383Y256783D01*

-X181659Y256717D01*

-X181938Y256695D01*

-Y186745D01*

-X181697Y186162D01*

-X181539Y185504D01*

-X181486Y184829D01*

-X181539Y184154D01*

-X181697Y183496D01*

-X181938Y182913D01*

-Y176745D01*

-G37*

-G36*

-X178884Y187838D02*X178849Y187879D01*

-X178334Y188319D01*

-X177757Y188672D01*

-X177132Y188931D01*

-X176474Y189089D01*

-X175799Y189142D01*

-X175124Y189089D01*

-X174941Y189045D01*

-Y221500D01*

-X169941D01*

-X170307Y349958D01*

-X170341Y350013D01*

-X170449Y350275D01*

-X170515Y350551D01*

-X170532Y350833D01*

-X170515Y351115D01*

-X170449Y351391D01*

-X170341Y351653D01*

-X170312Y351700D01*

-X170441Y397000D01*

-X178884D01*

-Y377838D01*

-X178849Y377879D01*

-X178334Y378319D01*

-X177757Y378672D01*

-X177132Y378931D01*

-X176474Y379089D01*

-X175799Y379142D01*

-X175124Y379089D01*

-X174466Y378931D01*

-X173841Y378672D01*

-X173264Y378319D01*

-X172749Y377879D01*

-X172309Y377364D01*

-X171956Y376787D01*

-X171697Y376162D01*

-X171539Y375504D01*

-X171486Y374829D01*

-X171539Y374154D01*

-X171697Y373496D01*

-X171956Y372871D01*

-X172309Y372294D01*

-X172749Y371779D01*

-X173264Y371339D01*

-X173841Y370986D01*

-X174466Y370727D01*

-X175124Y370569D01*

-X175799Y370516D01*

-X176474Y370569D01*

-X177132Y370727D01*

-X177757Y370986D01*

-X178334Y371339D01*

-X178849Y371779D01*

-X178884Y371820D01*

-Y367838D01*

-X178849Y367879D01*

-X178334Y368319D01*

-X177757Y368672D01*

-X177132Y368931D01*

-X176474Y369089D01*

-X175799Y369142D01*

-X175124Y369089D01*

-X174466Y368931D01*

-X173841Y368672D01*

-X173264Y368319D01*

-X172749Y367879D01*

-X172309Y367364D01*

-X171956Y366787D01*

-X171697Y366162D01*

-X171539Y365504D01*

-X171486Y364829D01*

-X171539Y364154D01*

-X171697Y363496D01*

-X171956Y362871D01*

-X172309Y362294D01*

-X172749Y361779D01*

-X173264Y361339D01*

-X173841Y360986D01*

-X174466Y360727D01*

-X175124Y360569D01*

-X175799Y360516D01*

-X176474Y360569D01*

-X177132Y360727D01*

-X177757Y360986D01*

-X178334Y361339D01*

-X178849Y361779D01*

-X178884Y361820D01*

-Y344623D01*

-X178605Y344601D01*

-X178329Y344535D01*

-X178067Y344427D01*

-X177826Y344279D01*

-X177610Y344095D01*

-X177426Y343879D01*

-X177278Y343638D01*

-X177170Y343376D01*

-X177104Y343100D01*

-X177081Y342818D01*

-X177104Y342536D01*

-X177170Y342260D01*

-X177278Y341998D01*

-X177426Y341757D01*

-X177610Y341541D01*

-X177826Y341357D01*

-X178067Y341209D01*

-X178329Y341101D01*

-X178605Y341035D01*

-X178884Y341013D01*

-Y229082D01*

-X178718Y229277D01*

-X178502Y229461D01*

-X178261Y229609D01*

-X177999Y229717D01*

-X177723Y229783D01*

-X177441Y229806D01*

-X177159Y229783D01*

-X176883Y229717D01*

-X176621Y229609D01*

-X176380Y229461D01*

-X176164Y229277D01*

-X175980Y229061D01*

-X175832Y228820D01*

-X175724Y228558D01*

-X175658Y228282D01*

-X175635Y228000D01*

-X175658Y227718D01*

-X175724Y227442D01*

-X175832Y227180D01*

-X175980Y226939D01*

-X176164Y226723D01*

-X176380Y226539D01*

-X176621Y226391D01*

-X176883Y226283D01*

-X177159Y226217D01*

-X177441Y226194D01*

-X177723Y226217D01*

-X177999Y226283D01*

-X178261Y226391D01*

-X178502Y226539D01*

-X178718Y226723D01*

-X178884Y226918D01*

-Y218582D01*

-X178718Y218777D01*

-X178502Y218961D01*

-X178261Y219109D01*

-X177999Y219217D01*

-X177723Y219283D01*

-X177441Y219306D01*

-X177159Y219283D01*

-X176883Y219217D01*

-X176621Y219109D01*

-X176380Y218961D01*

-X176164Y218777D01*

-X175980Y218561D01*

-X175832Y218320D01*

-X175724Y218058D01*

-X175658Y217782D01*

-X175635Y217500D01*

-X175658Y217218D01*

-X175724Y216942D01*

-X175832Y216680D01*

-X175980Y216439D01*

-X176164Y216223D01*

-X176380Y216039D01*

-X176621Y215891D01*

-X176883Y215783D01*

-X177159Y215717D01*

-X177441Y215694D01*

-X177723Y215717D01*

-X177999Y215783D01*

-X178261Y215891D01*

-X178502Y216039D01*

-X178718Y216223D01*

-X178884Y216418D01*

-Y187838D01*

-G37*

-G36*

-Y177838D02*X178849Y177879D01*

-X178334Y178319D01*

-X177757Y178672D01*

-X177132Y178931D01*

-X176474Y179089D01*

-X175799Y179142D01*

-X175124Y179089D01*

-X174941Y179045D01*

-Y180613D01*

-X175124Y180569D01*

-X175799Y180516D01*

-X176474Y180569D01*

-X177132Y180727D01*

-X177757Y180986D01*

-X178334Y181339D01*

-X178849Y181779D01*

-X178884Y181820D01*

-Y177838D01*

-G37*

-G36*

-Y171500D02*X178522D01*

-X178849Y171779D01*

-X178884Y171820D01*

-Y171500D01*

-G37*

-G36*

-X229815D02*X228522D01*

-X228849Y171779D01*

-X229289Y172294D01*

-X229642Y172871D01*

-X229815Y173289D01*

-Y171500D01*

-G37*

-G36*

-X250941Y100000D02*Y105000D01*

-X256441D01*

-Y100000D01*

-X250941D01*

-G37*

-G36*

-X437412Y53875D02*Y58875D01*

-X442912D01*

-Y53875D01*

-X437412D01*

-G37*

-G36*

-X309438Y167500D02*X320941D01*

-Y76500D01*

-X309438D01*

-Y114947D01*

-X309480Y114879D01*

-X309664Y114663D01*

-X309880Y114479D01*

-X310121Y114331D01*

-X310383Y114223D01*

-X310659Y114157D01*

-X310941Y114134D01*

-X311223Y114157D01*

-X311499Y114223D01*

-X311761Y114331D01*

-X312002Y114479D01*

-X312218Y114663D01*

-X312402Y114879D01*

-X312550Y115120D01*

-X312658Y115382D01*

-X312724Y115658D01*

-X312741Y115940D01*

-X312724Y116222D01*

-X312658Y116498D01*

-X312550Y116760D01*

-X312402Y117001D01*

-X312218Y117217D01*

-X312002Y117401D01*

-X311761Y117549D01*

-X311499Y117657D01*

-X311223Y117723D01*

-X310941Y117746D01*

-X310659Y117723D01*

-X310383Y117657D01*

-X310121Y117549D01*

-X309880Y117401D01*

-X309664Y117217D01*

-X309480Y117001D01*

-X309438Y116933D01*

-Y134645D01*

-X309441Y134644D01*

-X309723Y134667D01*

-X309999Y134733D01*

-X310261Y134841D01*

-X310502Y134989D01*

-X310718Y135173D01*

-X310902Y135389D01*

-X311050Y135630D01*

-X311158Y135892D01*

-X311224Y136168D01*

-X311241Y136450D01*

-X311224Y136732D01*

-X311158Y137008D01*

-X311050Y137270D01*

-X310902Y137511D01*

-X310718Y137727D01*

-X310502Y137911D01*

-X310261Y138059D01*

-X309999Y138167D01*

-X309723Y138233D01*

-X309441Y138256D01*

-X309438Y138255D01*

-Y139763D01*

-X309441Y139762D01*

-X309723Y139785D01*

-X309999Y139851D01*

-X310261Y139959D01*

-X310502Y140107D01*

-X310718Y140291D01*

-X310902Y140507D01*

-X311050Y140748D01*

-X311158Y141010D01*

-X311224Y141286D01*

-X311241Y141568D01*

-X311224Y141850D01*

-X311158Y142126D01*

-X311050Y142388D01*

-X310902Y142629D01*

-X310718Y142845D01*

-X310502Y143029D01*

-X310261Y143177D01*

-X309999Y143285D01*

-X309723Y143351D01*

-X309441Y143374D01*

-X309438Y143373D01*

-Y167500D01*

-G37*

-G36*

-X305693D02*X309438D01*

-Y143373D01*

-X309159Y143351D01*

-X308883Y143285D01*

-X308621Y143177D01*

-X308380Y143029D01*

-X308164Y142845D01*

-X307980Y142629D01*

-X307832Y142388D01*

-X307724Y142126D01*

-X307658Y141850D01*

-X307635Y141568D01*

-X307658Y141286D01*

-X307724Y141010D01*

-X307832Y140748D01*

-X307980Y140507D01*

-X308164Y140291D01*

-X308380Y140107D01*

-X308621Y139959D01*

-X308883Y139851D01*

-X309159Y139785D01*

-X309438Y139763D01*

-Y138255D01*

-X309159Y138233D01*

-X308883Y138167D01*

-X308621Y138059D01*

-X308380Y137911D01*

-X308164Y137727D01*

-X307980Y137511D01*

-X307832Y137270D01*

-X307724Y137008D01*

-X307658Y136732D01*

-X307635Y136450D01*

-X307658Y136168D01*

-X307724Y135892D01*

-X307832Y135630D01*

-X307980Y135389D01*

-X308164Y135173D01*

-X308380Y134989D01*

-X308621Y134841D01*

-X308883Y134733D01*

-X309159Y134667D01*

-X309438Y134645D01*

-Y116933D01*

-X309332Y116760D01*

-X309224Y116498D01*

-X309158Y116222D01*

-X309135Y115940D01*

-X309158Y115658D01*

-X309224Y115382D01*

-X309332Y115120D01*

-X309438Y114947D01*

-Y76500D01*

-X305693D01*

-Y105695D01*

-X305696Y105694D01*

-X305978Y105717D01*

-X306254Y105783D01*

-X306516Y105891D01*

-X306757Y106039D01*

-X306973Y106223D01*

-X307157Y106439D01*

-X307305Y106680D01*

-X307413Y106942D01*

-X307479Y107218D01*

-X307496Y107500D01*

-X307479Y107782D01*

-X307413Y108058D01*

-X307305Y108320D01*

-X307157Y108561D01*

-X306973Y108777D01*

-X306757Y108961D01*

-X306516Y109109D01*

-X306254Y109217D01*

-X305978Y109283D01*

-X305696Y109306D01*

-X305693Y109305D01*

-Y167500D01*

-G37*

-G36*

-X253438D02*X305693D01*

-Y109305D01*

-X305414Y109283D01*

-X305138Y109217D01*

-X304876Y109109D01*

-X304635Y108961D01*

-X304419Y108777D01*

-X304235Y108561D01*

-X304087Y108320D01*

-X303979Y108058D01*

-X303913Y107782D01*

-X303890Y107500D01*

-X303913Y107218D01*

-X303979Y106942D01*

-X304087Y106680D01*

-X304235Y106439D01*

-X304419Y106223D01*

-X304635Y106039D01*

-X304876Y105891D01*

-X305138Y105783D01*

-X305414Y105717D01*

-X305693Y105695D01*

-Y76500D01*

-X253438D01*

-Y100695D01*

-X253441Y100694D01*

-X253723Y100717D01*

-X253999Y100783D01*

-X254261Y100891D01*

-X254502Y101039D01*

-X254718Y101223D01*

-X254902Y101439D01*

-X255050Y101680D01*

-X255158Y101942D01*

-X255224Y102218D01*

-X255241Y102500D01*

-X255224Y102782D01*

-X255158Y103058D01*

-X255050Y103320D01*

-X254902Y103561D01*

-X254718Y103777D01*

-X254502Y103961D01*

-X254261Y104109D01*

-X253999Y104217D01*

-X253723Y104283D01*

-X253441Y104306D01*

-X253438Y104305D01*

-Y167500D01*

-G37*

-G36*

-X245438D02*X253438D01*

-Y104305D01*

-X253159Y104283D01*

-X252883Y104217D01*

-X252621Y104109D01*

-X252380Y103961D01*

-X252164Y103777D01*

-X251980Y103561D01*

-X251832Y103320D01*

-X251724Y103058D01*

-X251658Y102782D01*

-X251635Y102500D01*

-X251658Y102218D01*

-X251724Y101942D01*

-X251832Y101680D01*

-X251980Y101439D01*

-X252164Y101223D01*

-X252380Y101039D01*

-X252621Y100891D01*

-X252883Y100783D01*

-X253159Y100717D01*

-X253438Y100695D01*

-Y76500D01*

-X245438D01*

-Y125695D01*

-X245441Y125694D01*

-X245723Y125717D01*

-X245999Y125783D01*

-X246261Y125891D01*

-X246502Y126039D01*

-X246718Y126223D01*

-X246902Y126439D01*

-X247050Y126680D01*

-X247158Y126942D01*

-X247224Y127218D01*

-X247241Y127500D01*

-X247224Y127782D01*

-X247158Y128058D01*

-X247050Y128320D01*

-X246902Y128561D01*

-X246718Y128777D01*

-X246502Y128961D01*

-X246261Y129109D01*

-X245999Y129217D01*

-X245723Y129283D01*

-X245441Y129306D01*

-X245438Y129305D01*

-Y167500D01*

-G37*

-G36*

-X235938D02*X245438D01*

-Y129305D01*

-X245159Y129283D01*

-X244883Y129217D01*

-X244621Y129109D01*

-X244380Y128961D01*

-X244164Y128777D01*

-X243980Y128561D01*

-X243832Y128320D01*

-X243724Y128058D01*

-X243658Y127782D01*

-X243635Y127500D01*

-X243658Y127218D01*

-X243724Y126942D01*

-X243832Y126680D01*

-X243980Y126439D01*

-X244164Y126223D01*

-X244380Y126039D01*

-X244621Y125891D01*

-X244883Y125783D01*

-X245159Y125717D01*

-X245438Y125695D01*

-Y76500D01*

-X235938D01*

-Y121498D01*

-X236050Y121680D01*

-X236158Y121942D01*

-X236224Y122218D01*

-X236241Y122500D01*

-X236224Y122782D01*

-X236158Y123058D01*

-X236050Y123320D01*

-X235938Y123502D01*

-Y131195D01*

-X235941Y131194D01*

-X236223Y131217D01*

-X236499Y131283D01*

-X236761Y131391D01*

-X237002Y131539D01*

-X237218Y131723D01*

-X237402Y131939D01*

-X237550Y132180D01*

-X237658Y132442D01*

-X237724Y132718D01*

-X237741Y133000D01*

-X237724Y133282D01*

-X237658Y133558D01*

-X237550Y133820D01*

-X237402Y134061D01*

-X237218Y134277D01*

-X237002Y134461D01*

-X236761Y134609D01*

-X236499Y134717D01*

-X236223Y134783D01*

-X235941Y134806D01*

-X235938Y134805D01*

-Y167500D01*

-G37*

-G36*

-X231438D02*X235938D01*

-Y134805D01*

-X235659Y134783D01*

-X235383Y134717D01*

-X235121Y134609D01*

-X234880Y134461D01*

-X234664Y134277D01*

-X234480Y134061D01*

-X234332Y133820D01*

-X234224Y133558D01*

-X234158Y133282D01*

-X234135Y133000D01*

-X234158Y132718D01*

-X234224Y132442D01*

-X234332Y132180D01*

-X234480Y131939D01*

-X234664Y131723D01*

-X234880Y131539D01*

-X235121Y131391D01*

-X235383Y131283D01*

-X235659Y131217D01*

-X235938Y131195D01*

-Y123502D01*

-X235902Y123561D01*

-X235718Y123777D01*

-X235502Y123961D01*

-X235261Y124109D01*

-X234999Y124217D01*

-X234723Y124283D01*

-X234441Y124306D01*

-X234159Y124283D01*

-X233883Y124217D01*

-X233621Y124109D01*

-X233380Y123961D01*

-X233164Y123777D01*

-X232980Y123561D01*

-X232832Y123320D01*

-X232724Y123058D01*

-X232658Y122782D01*

-X232635Y122500D01*

-X232658Y122218D01*

-X232724Y121942D01*

-X232832Y121680D01*

-X232980Y121439D01*

-X233164Y121223D01*

-X233380Y121039D01*

-X233621Y120891D01*

-X233883Y120783D01*

-X234159Y120717D01*

-X234441Y120694D01*

-X234723Y120717D01*

-X234999Y120783D01*

-X235261Y120891D01*

-X235502Y121039D01*

-X235718Y121223D01*

-X235902Y121439D01*

-X235938Y121498D01*

-Y76500D01*

-X231438D01*

-Y146195D01*

-X231441Y146194D01*

-X231723Y146217D01*

-X231999Y146283D01*

-X232261Y146391D01*

-X232502Y146539D01*

-X232718Y146723D01*

-X232902Y146939D01*

-X233050Y147180D01*

-X233158Y147442D01*

-X233224Y147718D01*

-X233241Y148000D01*

-X233224Y148282D01*

-X233158Y148558D01*

-X233050Y148820D01*

-X232902Y149061D01*

-X232718Y149277D01*

-X232502Y149461D01*

-X232261Y149609D01*

-X231999Y149717D01*

-X231723Y149783D01*

-X231441Y149806D01*

-X231438Y149805D01*

-Y167500D01*

-G37*

-G36*

-X223938D02*X231438D01*

-Y149805D01*

-X231159Y149783D01*

-X230883Y149717D01*

-X230621Y149609D01*

-X230380Y149461D01*

-X230164Y149277D01*

-X229980Y149061D01*

-X229832Y148820D01*

-X229724Y148558D01*

-X229658Y148282D01*

-X229635Y148000D01*

-X229658Y147718D01*

-X229724Y147442D01*

-X229832Y147180D01*

-X229980Y146939D01*

-X230164Y146723D01*

-X230380Y146539D01*

-X230621Y146391D01*

-X230883Y146283D01*

-X231159Y146217D01*

-X231438Y146195D01*

-Y76500D01*

-X223938D01*

-Y146195D01*

-X223941Y146194D01*

-X224223Y146217D01*

-X224499Y146283D01*

-X224761Y146391D01*

-X225002Y146539D01*

-X225218Y146723D01*

-X225402Y146939D01*

-X225550Y147180D01*

-X225658Y147442D01*

-X225724Y147718D01*

-X225741Y148000D01*

-X225724Y148282D01*

-X225658Y148558D01*

-X225550Y148820D01*

-X225402Y149061D01*

-X225218Y149277D01*

-X225002Y149461D01*

-X224761Y149609D01*

-X224499Y149717D01*

-X224223Y149783D01*

-X223941Y149806D01*

-X223938Y149805D01*

-Y167500D01*

-G37*

-G36*

-X208938D02*X223938D01*

-Y149805D01*

-X223659Y149783D01*

-X223383Y149717D01*

-X223121Y149609D01*

-X222880Y149461D01*

-X222664Y149277D01*

-X222480Y149061D01*

-X222332Y148820D01*

-X222224Y148558D01*

-X222158Y148282D01*

-X222135Y148000D01*

-X222158Y147718D01*

-X222224Y147442D01*

-X222332Y147180D01*

-X222480Y146939D01*

-X222664Y146723D01*

-X222880Y146539D01*

-X223121Y146391D01*

-X223383Y146283D01*

-X223659Y146217D01*

-X223938Y146195D01*

-Y76500D01*

-X208938D01*

-Y146195D01*

-X208941Y146194D01*

-X209223Y146217D01*

-X209499Y146283D01*

-X209761Y146391D01*

-X210002Y146539D01*

-X210218Y146723D01*

-X210402Y146939D01*

-X210550Y147180D01*

-X210658Y147442D01*

-X210724Y147718D01*

-X210741Y148000D01*

-X210724Y148282D01*

-X210658Y148558D01*

-X210550Y148820D01*

-X210402Y149061D01*

-X210218Y149277D01*

-X210002Y149461D01*

-X209761Y149609D01*

-X209499Y149717D01*

-X209223Y149783D01*

-X208941Y149806D01*

-X208938Y149805D01*

-Y167500D01*

-G37*

-G36*

-X198438D02*X208938D01*

-Y149805D01*

-X208659Y149783D01*

-X208383Y149717D01*

-X208121Y149609D01*

-X207880Y149461D01*

-X207664Y149277D01*

-X207480Y149061D01*

-X207332Y148820D01*

-X207224Y148558D01*

-X207158Y148282D01*

-X207135Y148000D01*

-X207158Y147718D01*

-X207224Y147442D01*

-X207332Y147180D01*

-X207480Y146939D01*

-X207664Y146723D01*

-X207880Y146539D01*

-X208121Y146391D01*

-X208383Y146283D01*

-X208659Y146217D01*

-X208938Y146195D01*

-Y76500D01*

-X198438D01*

-Y120695D01*

-X198441Y120694D01*

-X198723Y120717D01*

-X198999Y120783D01*

-X199261Y120891D01*

-X199502Y121039D01*

-X199718Y121223D01*

-X199902Y121439D01*

-X200050Y121680D01*

-X200158Y121942D01*

-X200224Y122218D01*

-X200241Y122500D01*

-X200224Y122782D01*

-X200158Y123058D01*

-X200050Y123320D01*

-X199902Y123561D01*

-X199718Y123777D01*

-X199502Y123961D01*

-X199261Y124109D01*

-X198999Y124217D01*

-X198723Y124283D01*

-X198441Y124306D01*

-X198438Y124305D01*

-Y167500D01*

-G37*

-G36*

-X195438D02*X198438D01*

-Y124305D01*

-X198159Y124283D01*

-X197883Y124217D01*

-X197621Y124109D01*

-X197380Y123961D01*

-X197164Y123777D01*

-X196980Y123561D01*

-X196832Y123320D01*

-X196724Y123058D01*

-X196658Y122782D01*

-X196635Y122500D01*

-X196658Y122218D01*

-X196724Y121942D01*

-X196832Y121680D01*

-X196980Y121439D01*

-X197164Y121223D01*

-X197380Y121039D01*

-X197621Y120891D01*

-X197883Y120783D01*

-X198159Y120717D01*

-X198438Y120695D01*

-Y76500D01*

-X195438D01*

-Y131195D01*

-X195441Y131194D01*

-X195723Y131217D01*

-X195999Y131283D01*

-X196261Y131391D01*

-X196502Y131539D01*

-X196718Y131723D01*

-X196902Y131939D01*

-X197050Y132180D01*

-X197158Y132442D01*

-X197224Y132718D01*

-X197241Y133000D01*

-X197224Y133282D01*

-X197158Y133558D01*

-X197050Y133820D01*

-X196902Y134061D01*

-X196718Y134277D01*

-X196502Y134461D01*

-X196261Y134609D01*

-X195999Y134717D01*

-X195723Y134783D01*

-X195441Y134806D01*

-X195438Y134805D01*

-Y167500D01*

-G37*

-G36*

-X193387D02*X195438D01*

-Y134805D01*

-X195159Y134783D01*

-X194883Y134717D01*

-X194621Y134609D01*

-X194380Y134461D01*

-X194164Y134277D01*

-X193980Y134061D01*

-X193832Y133820D01*

-X193724Y133558D01*

-X193658Y133282D01*

-X193635Y133000D01*

-X193658Y132718D01*

-X193724Y132442D01*

-X193832Y132180D01*

-X193980Y131939D01*

-X194164Y131723D01*

-X194380Y131539D01*

-X194621Y131391D01*

-X194883Y131283D01*

-X195159Y131217D01*

-X195438Y131195D01*

-Y76500D01*

-X193387D01*

-Y125695D01*

-X193390Y125694D01*

-X193672Y125717D01*

-X193948Y125783D01*

-X194210Y125891D01*

-X194451Y126039D01*

-X194667Y126223D01*

-X194851Y126439D01*

-X194999Y126680D01*

-X195107Y126942D01*

-X195173Y127218D01*

-X195190Y127500D01*

-X195173Y127782D01*

-X195107Y128058D01*

-X194999Y128320D01*

-X194851Y128561D01*

-X194667Y128777D01*

-X194451Y128961D01*

-X194210Y129109D01*

-X193948Y129217D01*

-X193672Y129283D01*

-X193390Y129306D01*

-X193387Y129305D01*

-Y167500D01*

-G37*

-G36*

-X183938D02*X193387D01*

-Y129305D01*

-X193108Y129283D01*

-X192832Y129217D01*

-X192570Y129109D01*

-X192329Y128961D01*

-X192113Y128777D01*

-X191929Y128561D01*

-X191781Y128320D01*

-X191673Y128058D01*

-X191607Y127782D01*

-X191584Y127500D01*

-X191607Y127218D01*

-X191673Y126942D01*

-X191781Y126680D01*

-X191929Y126439D01*

-X192113Y126223D01*

-X192329Y126039D01*

-X192570Y125891D01*

-X192832Y125783D01*

-X193108Y125717D01*

-X193387Y125695D01*

-Y76500D01*

-X183938D01*

-Y102195D01*

-X183941Y102194D01*

-X184223Y102217D01*

-X184499Y102283D01*

-X184761Y102391D01*

-X185002Y102539D01*

-X185218Y102723D01*

-X185402Y102939D01*

-X185550Y103180D01*

-X185658Y103442D01*

-X185724Y103718D01*

-X185741Y104000D01*

-X185724Y104282D01*

-X185658Y104558D01*

-X185550Y104820D01*

-X185402Y105061D01*

-X185218Y105277D01*

-X185002Y105461D01*

-X184761Y105609D01*

-X184499Y105717D01*

-X184223Y105783D01*

-X183941Y105806D01*

-X183938Y105805D01*

-Y167500D01*

-G37*

-G36*

-X169438Y216500D02*X173441D01*

-Y188427D01*

-X173264Y188319D01*

-X172749Y187879D01*

-X172309Y187364D01*

-X171956Y186787D01*

-X171697Y186162D01*

-X171539Y185504D01*

-X171486Y184829D01*

-X171539Y184154D01*

-X171697Y183496D01*

-X171956Y182871D01*

-X172309Y182294D01*

-X172749Y181779D01*

-X173264Y181339D01*

-X173441Y181231D01*

-Y178427D01*

-X173264Y178319D01*

-X172749Y177879D01*

-X172309Y177364D01*

-X171956Y176787D01*

-X171697Y176162D01*

-X171539Y175504D01*

-X171486Y174829D01*

-X171539Y174154D01*

-X171697Y173496D01*

-X171956Y172871D01*

-X172309Y172294D01*

-X172749Y171779D01*

-X173264Y171339D01*

-X173441Y171231D01*

-Y167500D01*

-X183938D01*

-Y105805D01*

-X183659Y105783D01*

-X183383Y105717D01*

-X183121Y105609D01*

-X182880Y105461D01*

-X182664Y105277D01*

-X182480Y105061D01*

-X182332Y104820D01*

-X182224Y104558D01*

-X182158Y104282D01*

-X182135Y104000D01*

-X182158Y103718D01*

-X182224Y103442D01*

-X182332Y103180D01*

-X182480Y102939D01*

-X182664Y102723D01*

-X182880Y102539D01*

-X183121Y102391D01*

-X183383Y102283D01*

-X183659Y102217D01*

-X183938Y102195D01*

-Y76500D01*

-X169438D01*

-Y172538D01*

-X169642Y172871D01*

-X169901Y173496D01*

-X170059Y174154D01*

-X170099Y174829D01*

-X170059Y175504D01*

-X169901Y176162D01*

-X169642Y176787D01*

-X169438Y177120D01*

-Y182538D01*

-X169642Y182871D01*

-X169901Y183496D01*

-X170059Y184154D01*

-X170099Y184829D01*

-X170059Y185504D01*

-X169901Y186162D01*

-X169642Y186787D01*

-X169438Y187120D01*

-Y199695D01*

-X169441Y199694D01*

-X169723Y199717D01*

-X169999Y199783D01*

-X170261Y199891D01*

-X170502Y200039D01*

-X170718Y200223D01*

-X170902Y200439D01*

-X171050Y200680D01*

-X171158Y200942D01*

-X171224Y201218D01*

-X171241Y201500D01*

-X171224Y201782D01*

-X171158Y202058D01*

-X171050Y202320D01*

-X170902Y202561D01*

-X170718Y202777D01*

-X170502Y202961D01*

-X170261Y203109D01*

-X169999Y203217D01*

-X169723Y203283D01*

-X169441Y203306D01*

-X169438Y203305D01*

-Y206695D01*

-X169441Y206694D01*

-X169723Y206717D01*

-X169999Y206783D01*

-X170261Y206891D01*

-X170502Y207039D01*

-X170718Y207223D01*

-X170902Y207439D01*

-X171050Y207680D01*

-X171158Y207942D01*

-X171224Y208218D01*

-X171241Y208500D01*

-X171224Y208782D01*

-X171158Y209058D01*

-X171050Y209320D01*

-X170902Y209561D01*

-X170718Y209777D01*

-X170502Y209961D01*

-X170261Y210109D01*

-X169999Y210217D01*

-X169723Y210283D01*

-X169441Y210306D01*

-X169438Y210305D01*

-Y212195D01*

-X169441Y212194D01*

-X169723Y212217D01*

-X169999Y212283D01*

-X170261Y212391D01*

-X170502Y212539D01*

-X170718Y212723D01*

-X170902Y212939D01*

-X171050Y213180D01*

-X171158Y213442D01*

-X171224Y213718D01*

-X171241Y214000D01*

-X171224Y214282D01*

-X171158Y214558D01*

-X171050Y214820D01*

-X170902Y215061D01*

-X170718Y215277D01*

-X170502Y215461D01*

-X170261Y215609D01*

-X169999Y215717D01*

-X169723Y215783D01*

-X169441Y215806D01*

-X169438Y215805D01*

-Y216500D01*

-G37*

-G36*

-Y177120D02*X169289Y177364D01*

-X168849Y177879D01*

-X168334Y178319D01*

-X167757Y178672D01*

-X167132Y178931D01*

-X166474Y179089D01*

-X166438Y179092D01*

-Y180566D01*

-X166474Y180569D01*

-X167132Y180727D01*

-X167757Y180986D01*

-X168334Y181339D01*

-X168849Y181779D01*

-X169289Y182294D01*

-X169438Y182538D01*

-Y177120D01*

-G37*

-G36*

-Y76500D02*X166438D01*

-Y102195D01*

-X166441Y102194D01*

-X166723Y102217D01*

-X166999Y102283D01*

-X167261Y102391D01*

-X167502Y102539D01*

-X167718Y102723D01*

-X167902Y102939D01*

-X168050Y103180D01*

-X168158Y103442D01*

-X168224Y103718D01*

-X168241Y104000D01*

-X168224Y104282D01*

-X168158Y104558D01*

-X168050Y104820D01*

-X167902Y105061D01*

-X167718Y105277D01*

-X167502Y105461D01*

-X167261Y105609D01*

-X166999Y105717D01*

-X166723Y105783D01*

-X166441Y105806D01*

-X166438Y105805D01*

-Y170566D01*

-X166474Y170569D01*

-X167132Y170727D01*

-X167757Y170986D01*

-X168334Y171339D01*

-X168849Y171779D01*

-X169289Y172294D01*

-X169438Y172538D01*

-Y76500D01*

-G37*

-G36*

-X166438Y278500D02*X168441D01*

-Y216500D01*

-X169438D01*

-Y215805D01*

-X169159Y215783D01*

-X168883Y215717D01*

-X168621Y215609D01*

-X168380Y215461D01*

-X168164Y215277D01*

-X167980Y215061D01*

-X167832Y214820D01*

-X167724Y214558D01*

-X167658Y214282D01*

-X167635Y214000D01*

-X167658Y213718D01*

-X167724Y213442D01*

-X167832Y213180D01*

-X167980Y212939D01*

-X168164Y212723D01*

-X168380Y212539D01*

-X168621Y212391D01*

-X168883Y212283D01*

-X169159Y212217D01*

-X169438Y212195D01*

-Y210305D01*

-X169159Y210283D01*

-X168883Y210217D01*

-X168621Y210109D01*

-X168380Y209961D01*

-X168164Y209777D01*

-X167980Y209561D01*

-X167832Y209320D01*

-X167724Y209058D01*

-X167658Y208782D01*

-X167635Y208500D01*

-X167658Y208218D01*

-X167724Y207942D01*

-X167832Y207680D01*

-X167980Y207439D01*

-X168164Y207223D01*

-X168380Y207039D01*

-X168621Y206891D01*

-X168883Y206783D01*

-X169159Y206717D01*

-X169438Y206695D01*

-Y203305D01*

-X169159Y203283D01*

-X168883Y203217D01*

-X168621Y203109D01*

-X168380Y202961D01*

-X168164Y202777D01*

-X167980Y202561D01*

-X167832Y202320D01*

-X167724Y202058D01*

-X167658Y201782D01*

-X167635Y201500D01*

-X167658Y201218D01*

-X167724Y200942D01*

-X167832Y200680D01*

-X167980Y200439D01*

-X168164Y200223D01*

-X168380Y200039D01*

-X168621Y199891D01*

-X168883Y199783D01*

-X169159Y199717D01*

-X169438Y199695D01*

-Y187120D01*

-X169289Y187364D01*

-X168849Y187879D01*

-X168334Y188319D01*

-X167757Y188672D01*

-X167132Y188931D01*

-X166474Y189089D01*

-X166438Y189092D01*

-Y191270D01*

-X166659Y191217D01*

-X166941Y191194D01*

-X167223Y191217D01*

-X167499Y191283D01*

-X167761Y191391D01*

-X168002Y191539D01*

-X168218Y191723D01*

-X168402Y191939D01*

-X168550Y192180D01*

-X168658Y192442D01*

-X168724Y192718D01*

-X168741Y193000D01*

-X168724Y193282D01*

-X168658Y193558D01*

-X168550Y193820D01*

-X168402Y194061D01*

-X168218Y194277D01*

-X168002Y194461D01*

-X167761Y194609D01*

-X167499Y194717D01*

-X167223Y194783D01*

-X166941Y194806D01*

-X166659Y194783D01*

-X166438Y194730D01*

-Y195770D01*

-X166659Y195717D01*

-X166941Y195694D01*

-X167223Y195717D01*

-X167499Y195783D01*

-X167761Y195891D01*

-X168002Y196039D01*

-X168218Y196223D01*

-X168402Y196439D01*

-X168550Y196680D01*

-X168658Y196942D01*

-X168724Y197218D01*

-X168741Y197500D01*

-X168724Y197782D01*

-X168658Y198058D01*

-X168550Y198320D01*

-X168402Y198561D01*

-X168218Y198777D01*

-X168002Y198961D01*

-X167761Y199109D01*

-X167499Y199217D01*

-X167223Y199283D01*

-X166941Y199306D01*

-X166659Y199283D01*

-X166438Y199230D01*

-Y218768D01*

-X166499Y218783D01*

-X166761Y218891D01*

-X167002Y219039D01*

-X167218Y219223D01*

-X167402Y219439D01*

-X167550Y219680D01*

-X167658Y219942D01*

-X167724Y220218D01*

-X167741Y220500D01*

-X167724Y220782D01*

-X167658Y221058D01*

-X167550Y221320D01*

-X167402Y221561D01*

-X167218Y221777D01*

-X167002Y221961D01*

-X166761Y222109D01*

-X166499Y222217D01*

-X166438Y222232D01*

-Y224768D01*

-X166499Y224783D01*

-X166761Y224891D01*

-X167002Y225039D01*

-X167218Y225223D01*

-X167402Y225439D01*

-X167550Y225680D01*

-X167658Y225942D01*

-X167724Y226218D01*

-X167741Y226500D01*

-X167724Y226782D01*

-X167658Y227058D01*

-X167550Y227320D01*

-X167402Y227561D01*

-X167218Y227777D01*

-X167002Y227961D01*

-X166761Y228109D01*

-X166499Y228217D01*

-X166438Y228232D01*

-Y229268D01*

-X166499Y229283D01*

-X166761Y229391D01*

-X167002Y229539D01*

-X167218Y229723D01*

-X167402Y229939D01*

-X167550Y230180D01*

-X167658Y230442D01*

-X167724Y230718D01*

-X167741Y231000D01*

-X167724Y231282D01*

-X167658Y231558D01*

-X167550Y231820D01*

-X167402Y232061D01*

-X167218Y232277D01*

-X167002Y232461D01*

-X166761Y232609D01*

-X166499Y232717D01*

-X166438Y232732D01*

-Y278500D01*

-G37*

-G36*

-X163938Y170946D02*X164466Y170727D01*

-X165124Y170569D01*

-X165799Y170516D01*

-X166438Y170566D01*

-Y105805D01*

-X166159Y105783D01*

-X165883Y105717D01*

-X165621Y105609D01*

-X165380Y105461D01*

-X165164Y105277D01*

-X164980Y105061D01*

-X164832Y104820D01*

-X164724Y104558D01*

-X164658Y104282D01*

-X164635Y104000D01*

-X164658Y103718D01*

-X164724Y103442D01*

-X164832Y103180D01*

-X164980Y102939D01*

-X165164Y102723D01*

-X165380Y102539D01*

-X165621Y102391D01*

-X165883Y102283D01*

-X166159Y102217D01*

-X166438Y102195D01*

-Y76500D01*

-X163938D01*

-Y125695D01*

-X163941Y125694D01*

-X164223Y125717D01*

-X164499Y125783D01*

-X164761Y125891D01*

-X165002Y126039D01*

-X165218Y126223D01*

-X165402Y126439D01*

-X165550Y126680D01*

-X165658Y126942D01*

-X165724Y127218D01*

-X165741Y127500D01*

-X165724Y127782D01*

-X165658Y128058D01*

-X165550Y128320D01*

-X165402Y128561D01*

-X165218Y128777D01*

-X165002Y128961D01*

-X164761Y129109D01*

-X164499Y129217D01*

-X164223Y129283D01*

-X163941Y129306D01*

-X163938Y129305D01*

-Y170946D01*

-G37*

-G36*

-X161938Y172913D02*X161956Y172871D01*

-X162309Y172294D01*

-X162749Y171779D01*

-X163264Y171339D01*

-X163841Y170986D01*

-X163938Y170946D01*

-Y129305D01*

-X163659Y129283D01*

-X163383Y129217D01*

-X163121Y129109D01*

-X162880Y128961D01*

-X162664Y128777D01*

-X162480Y128561D01*

-X162332Y128320D01*

-X162224Y128058D01*

-X162158Y127782D01*

-X162135Y127500D01*

-X162158Y127218D01*

-X162224Y126942D01*

-X162332Y126680D01*

-X162480Y126439D01*

-X162664Y126223D01*

-X162880Y126039D01*

-X163121Y125891D01*

-X163383Y125783D01*

-X163659Y125717D01*

-X163938Y125695D01*

-Y76500D01*

-X161938D01*

-Y172913D01*

-G37*

-G36*

-Y182913D02*X161956Y182871D01*

-X162309Y182294D01*

-X162749Y181779D01*

-X163264Y181339D01*

-X163841Y180986D01*

-X164466Y180727D01*

-X165124Y180569D01*

-X165799Y180516D01*

-X166438Y180566D01*

-Y179092D01*

-X165799Y179142D01*

-X165124Y179089D01*

-X164466Y178931D01*

-X163841Y178672D01*

-X163264Y178319D01*

-X162749Y177879D01*

-X162309Y177364D01*

-X161956Y176787D01*

-X161938Y176745D01*

-Y182913D01*

-G37*

-G36*

-Y278500D02*X166438D01*

-Y232732D01*

-X166223Y232783D01*

-X165941Y232806D01*

-X165659Y232783D01*

-X165383Y232717D01*

-X165121Y232609D01*

-X164880Y232461D01*

-X164664Y232277D01*

-X164480Y232061D01*

-X164332Y231820D01*

-X164224Y231558D01*

-X164158Y231282D01*

-X164135Y231000D01*

-X164158Y230718D01*

-X164224Y230442D01*

-X164332Y230180D01*

-X164480Y229939D01*

-X164664Y229723D01*

-X164880Y229539D01*

-X165121Y229391D01*

-X165383Y229283D01*

-X165659Y229217D01*

-X165941Y229194D01*

-X166223Y229217D01*

-X166438Y229268D01*

-Y228232D01*

-X166223Y228283D01*

-X165941Y228306D01*

-X165659Y228283D01*

-X165383Y228217D01*

-X165121Y228109D01*

-X164880Y227961D01*

-X164664Y227777D01*

-X164480Y227561D01*

-X164332Y227320D01*

-X164224Y227058D01*

-X164158Y226782D01*

-X164135Y226500D01*

-X164158Y226218D01*

-X164224Y225942D01*

-X164332Y225680D01*

-X164480Y225439D01*

-X164664Y225223D01*

-X164880Y225039D01*

-X165121Y224891D01*

-X165383Y224783D01*

-X165659Y224717D01*

-X165941Y224694D01*

-X166223Y224717D01*

-X166438Y224768D01*

-Y222232D01*

-X166223Y222283D01*

-X165941Y222306D01*

-X165659Y222283D01*

-X165383Y222217D01*

-X165121Y222109D01*

-X164880Y221961D01*

-X164664Y221777D01*

-X164480Y221561D01*

-X164332Y221320D01*

-X164224Y221058D01*

-X164158Y220782D01*

-X164135Y220500D01*

-X164158Y220218D01*

-X164224Y219942D01*

-X164332Y219680D01*

-X164480Y219439D01*

-X164664Y219223D01*

-X164880Y219039D01*

-X165121Y218891D01*

-X165383Y218783D01*

-X165659Y218717D01*

-X165941Y218694D01*

-X166223Y218717D01*

-X166438Y218768D01*

-Y199230D01*

-X166383Y199217D01*

-X166121Y199109D01*

-X165880Y198961D01*

-X165664Y198777D01*

-X165480Y198561D01*

-X165332Y198320D01*

-X165224Y198058D01*

-X165158Y197782D01*

-X165135Y197500D01*

-X165158Y197218D01*

-X165224Y196942D01*

-X165332Y196680D01*

-X165480Y196439D01*

-X165664Y196223D01*

-X165880Y196039D01*

-X166121Y195891D01*

-X166383Y195783D01*

-X166438Y195770D01*

-Y194730D01*

-X166383Y194717D01*

-X166121Y194609D01*

-X165880Y194461D01*

-X165664Y194277D01*

-X165480Y194061D01*

-X165332Y193820D01*

-X165224Y193558D01*

-X165158Y193282D01*

-X165135Y193000D01*

-X165158Y192718D01*

-X165224Y192442D01*

-X165332Y192180D01*

-X165480Y191939D01*

-X165664Y191723D01*

-X165880Y191539D01*

-X166121Y191391D01*

-X166383Y191283D01*

-X166438Y191270D01*

-Y189092D01*

-X165799Y189142D01*

-X165124Y189089D01*

-X164466Y188931D01*

-X163841Y188672D01*

-X163264Y188319D01*

-X162749Y187879D01*

-X162309Y187364D01*

-X161956Y186787D01*

-X161938Y186745D01*

-Y191195D01*

-X161941Y191194D01*

-X162223Y191217D01*

-X162499Y191283D01*

-X162761Y191391D01*

-X163002Y191539D01*

-X163218Y191723D01*

-X163402Y191939D01*

-X163550Y192180D01*

-X163658Y192442D01*

-X163724Y192718D01*

-X163741Y193000D01*

-X163724Y193282D01*

-X163658Y193558D01*

-X163550Y193820D01*

-X163402Y194061D01*

-X163218Y194277D01*

-X163002Y194461D01*

-X162761Y194609D01*

-X162499Y194717D01*

-X162223Y194783D01*

-X161941Y194806D01*

-X161938Y194805D01*

-Y197195D01*

-X161941Y197194D01*

-X162223Y197217D01*

-X162499Y197283D01*

-X162761Y197391D01*

-X163002Y197539D01*

-X163218Y197723D01*

-X163402Y197939D01*

-X163550Y198180D01*

-X163658Y198442D01*

-X163724Y198718D01*

-X163741Y199000D01*

-X163724Y199282D01*

-X163658Y199558D01*

-X163550Y199820D01*

-X163402Y200061D01*

-X163218Y200277D01*

-X163002Y200461D01*

-X162761Y200609D01*

-X162499Y200717D01*

-X162223Y200783D01*

-X161941Y200806D01*

-X161938Y200805D01*

-Y240770D01*

-X162159Y240717D01*

-X162441Y240694D01*

-X162723Y240717D01*

-X162999Y240783D01*

-X163261Y240891D01*

-X163502Y241039D01*

-X163718Y241223D01*

-X163902Y241439D01*

-X164050Y241680D01*

-X164158Y241942D01*

-X164224Y242218D01*

-X164241Y242500D01*

-X164224Y242782D01*

-X164158Y243058D01*

-X164050Y243320D01*

-X163902Y243561D01*

-X163718Y243777D01*

-X163502Y243961D01*

-X163261Y244109D01*

-X162999Y244217D01*

-X162723Y244283D01*

-X162441Y244306D01*

-X162159Y244283D01*

-X161938Y244230D01*

-Y246770D01*

-X162159Y246717D01*

-X162441Y246694D01*

-X162723Y246717D01*

-X162999Y246783D01*

-X163261Y246891D01*

-X163502Y247039D01*

-X163718Y247223D01*

-X163902Y247439D01*

-X164050Y247680D01*

-X164158Y247942D01*

-X164224Y248218D01*

-X164241Y248500D01*

-X164224Y248782D01*

-X164158Y249058D01*

-X164050Y249320D01*

-X163902Y249561D01*

-X163718Y249777D01*

-X163502Y249961D01*

-X163261Y250109D01*

-X162999Y250217D01*

-X162723Y250283D01*

-X162441Y250306D01*

-X162159Y250283D01*

-X161938Y250230D01*

-Y253195D01*

-X161941Y253194D01*

-X162223Y253217D01*

-X162499Y253283D01*

-X162761Y253391D01*

-X163002Y253539D01*

-X163218Y253723D01*

-X163402Y253939D01*

-X163550Y254180D01*

-X163658Y254442D01*

-X163724Y254718D01*

-X163741Y255000D01*

-X163724Y255282D01*

-X163658Y255558D01*

-X163550Y255820D01*

-X163402Y256061D01*

-X163218Y256277D01*

-X163002Y256461D01*

-X162761Y256609D01*

-X162499Y256717D01*

-X162223Y256783D01*

-X161941Y256806D01*

-X161938Y256805D01*

-Y260770D01*

-X162159Y260717D01*

-X162441Y260694D01*

-X162723Y260717D01*

-X162999Y260783D01*

-X163261Y260891D01*

-X163502Y261039D01*

-X163718Y261223D01*

-X163902Y261439D01*

-X164050Y261680D01*

-X164158Y261942D01*

-X164224Y262218D01*

-X164241Y262500D01*

-X164224Y262782D01*

-X164158Y263058D01*

-X164050Y263320D01*

-X163902Y263561D01*

-X163718Y263777D01*

-X163502Y263961D01*

-X163261Y264109D01*

-X162999Y264217D01*

-X162723Y264283D01*

-X162441Y264306D01*

-X162159Y264283D01*

-X161938Y264230D01*

-Y267003D01*

-X162121Y266891D01*

-X162383Y266783D01*

-X162659Y266717D01*

-X162941Y266694D01*

-X163223Y266717D01*

-X163499Y266783D01*

-X163761Y266891D01*

-X164002Y267039D01*

-X164218Y267223D01*

-X164402Y267439D01*

-X164550Y267680D01*

-X164658Y267942D01*

-X164724Y268218D01*

-X164741Y268500D01*

-X164724Y268782D01*

-X164658Y269058D01*

-X164550Y269320D01*

-X164402Y269561D01*

-X164218Y269777D01*

-X164002Y269961D01*

-X163761Y270109D01*

-X163499Y270217D01*

-X163223Y270283D01*

-X162941Y270306D01*

-X162659Y270283D01*

-X162383Y270217D01*

-X162121Y270109D01*

-X161938Y269997D01*

-Y273003D01*

-X162121Y272891D01*

-X162383Y272783D01*

-X162659Y272717D01*

-X162941Y272694D01*

-X163223Y272717D01*

-X163499Y272783D01*

-X163761Y272891D01*

-X164002Y273039D01*

-X164218Y273223D01*

-X164402Y273439D01*

-X164550Y273680D01*

-X164658Y273942D01*

-X164724Y274218D01*

-X164741Y274500D01*

-X164724Y274782D01*

-X164658Y275058D01*

-X164550Y275320D01*

-X164402Y275561D01*

-X164218Y275777D01*

-X164002Y275961D01*

-X163761Y276109D01*

-X163499Y276217D01*

-X163223Y276283D01*

-X162941Y276306D01*

-X162659Y276283D01*

-X162383Y276217D01*

-X162121Y276109D01*

-X161938Y275997D01*

-Y278500D01*

-G37*

-G36*

-X152438Y342500D02*X156941D01*

-Y329826D01*

-X156832Y329649D01*

-X156724Y329387D01*

-X156658Y329111D01*

-X156635Y328829D01*

-X156658Y328547D01*

-X156724Y328271D01*

-X156832Y328009D01*

-X156941Y327832D01*

-Y327497D01*

-X156832Y327320D01*

-X156724Y327058D01*

-X156658Y326782D01*

-X156635Y326500D01*

-X156658Y326218D01*

-X156724Y325942D01*

-X156832Y325680D01*

-X156941Y325503D01*

-Y324826D01*

-X156832Y324649D01*

-X156724Y324387D01*

-X156658Y324111D01*

-X156635Y323829D01*

-X156658Y323547D01*

-X156724Y323271D01*

-X156832Y323009D01*

-X156941Y322832D01*

-Y278500D01*

-X161938D01*

-Y275997D01*

-X161880Y275961D01*

-X161664Y275777D01*

-X161480Y275561D01*

-X161332Y275320D01*

-X161224Y275058D01*

-X161158Y274782D01*

-X161135Y274500D01*

-X161158Y274218D01*

-X161224Y273942D01*

-X161332Y273680D01*

-X161480Y273439D01*

-X161664Y273223D01*

-X161880Y273039D01*

-X161938Y273003D01*

-Y269997D01*

-X161880Y269961D01*

-X161664Y269777D01*

-X161480Y269561D01*

-X161332Y269320D01*

-X161224Y269058D01*

-X161158Y268782D01*

-X161135Y268500D01*

-X161158Y268218D01*

-X161224Y267942D01*

-X161332Y267680D01*

-X161480Y267439D01*

-X161664Y267223D01*

-X161880Y267039D01*

-X161938Y267003D01*

-Y264230D01*

-X161883Y264217D01*

-X161621Y264109D01*

-X161380Y263961D01*

-X161164Y263777D01*

-X160980Y263561D01*

-X160832Y263320D01*

-X160724Y263058D01*

-X160658Y262782D01*

-X160635Y262500D01*

-X160658Y262218D01*

-X160724Y261942D01*

-X160832Y261680D01*

-X160980Y261439D01*

-X161164Y261223D01*

-X161380Y261039D01*

-X161621Y260891D01*

-X161883Y260783D01*

-X161938Y260770D01*

-Y256805D01*

-X161659Y256783D01*

-X161383Y256717D01*

-X161121Y256609D01*

-X160880Y256461D01*

-X160664Y256277D01*

-X160480Y256061D01*

-X160332Y255820D01*

-X160224Y255558D01*

-X160158Y255282D01*

-X160135Y255000D01*

-X160158Y254718D01*

-X160224Y254442D01*

-X160332Y254180D01*

-X160480Y253939D01*

-X160664Y253723D01*

-X160880Y253539D01*

-X161121Y253391D01*

-X161383Y253283D01*

-X161659Y253217D01*

-X161938Y253195D01*

-Y250230D01*

-X161883Y250217D01*

-X161621Y250109D01*

-X161380Y249961D01*

-X161164Y249777D01*

-X160980Y249561D01*

-X160832Y249320D01*

-X160724Y249058D01*

-X160658Y248782D01*

-X160635Y248500D01*

-X160658Y248218D01*

-X160724Y247942D01*

-X160832Y247680D01*

-X160980Y247439D01*

-X161164Y247223D01*

-X161380Y247039D01*

-X161621Y246891D01*

-X161883Y246783D01*

-X161938Y246770D01*

-Y244230D01*

-X161883Y244217D01*

-X161621Y244109D01*

-X161380Y243961D01*

-X161164Y243777D01*

-X160980Y243561D01*

-X160832Y243320D01*

-X160724Y243058D01*

-X160658Y242782D01*

-X160635Y242500D01*

-X160658Y242218D01*

-X160724Y241942D01*

-X160832Y241680D01*

-X160980Y241439D01*

-X161164Y241223D01*

-X161380Y241039D01*

-X161621Y240891D01*

-X161883Y240783D01*

-X161938Y240770D01*

-Y200805D01*

-X161659Y200783D01*

-X161383Y200717D01*

-X161121Y200609D01*

-X160880Y200461D01*

-X160664Y200277D01*

-X160480Y200061D01*

-X160332Y199820D01*

-X160224Y199558D01*

-X160158Y199282D01*

-X160135Y199000D01*

-X160158Y198718D01*

-X160224Y198442D01*

-X160332Y198180D01*

-X160480Y197939D01*

-X160664Y197723D01*

-X160880Y197539D01*

-X161121Y197391D01*

-X161383Y197283D01*

-X161659Y197217D01*

-X161938Y197195D01*

-Y194805D01*

-X161659Y194783D01*

-X161383Y194717D01*

-X161121Y194609D01*

-X160880Y194461D01*

-X160664Y194277D01*

-X160480Y194061D01*

-X160332Y193820D01*

-X160224Y193558D01*

-X160158Y193282D01*

-X160135Y193000D01*

-X160158Y192718D01*

-X160224Y192442D01*

-X160332Y192180D01*

-X160480Y191939D01*

-X160664Y191723D01*

-X160880Y191539D01*

-X161121Y191391D01*

-X161383Y191283D01*

-X161659Y191217D01*

-X161938Y191195D01*

-Y186745D01*

-X161697Y186162D01*

-X161539Y185504D01*

-X161486Y184829D01*

-X161539Y184154D01*

-X161697Y183496D01*

-X161938Y182913D01*

-Y176745D01*

-X161697Y176162D01*

-X161539Y175504D01*

-X161486Y174829D01*

-X161539Y174154D01*

-X161697Y173496D01*

-X161938Y172913D01*

-Y76500D01*

-X152438D01*

-Y119695D01*

-X152441Y119694D01*

-X152723Y119717D01*

-X152999Y119783D01*

-X153261Y119891D01*

-X153502Y120039D01*

-X153718Y120223D01*

-X153902Y120439D01*

-X154050Y120680D01*

-X154158Y120942D01*

-X154224Y121218D01*

-X154241Y121500D01*

-X154224Y121782D01*

-X154158Y122058D01*

-X154050Y122320D01*

-X153902Y122561D01*

-X153718Y122777D01*

-X153502Y122961D01*

-X153261Y123109D01*

-X152999Y123217D01*

-X152723Y123283D01*

-X152441Y123306D01*

-X152438Y123305D01*

-Y130268D01*

-X152499Y130283D01*

-X152761Y130391D01*

-X153002Y130539D01*

-X153218Y130723D01*

-X153402Y130939D01*

-X153550Y131180D01*

-X153658Y131442D01*

-X153724Y131718D01*

-X153741Y132000D01*

-X153724Y132282D01*

-X153658Y132558D01*

-X153550Y132820D01*

-X153402Y133061D01*

-X153218Y133277D01*

-X153002Y133461D01*

-X152761Y133609D01*

-X152499Y133717D01*

-X152438Y133732D01*

-Y172143D01*

-X152749Y171779D01*

-X153264Y171339D01*

-X153841Y170986D01*

-X154466Y170727D01*

-X155124Y170569D01*

-X155799Y170516D01*

-X156474Y170569D01*

-X157132Y170727D01*

-X157757Y170986D01*

-X158334Y171339D01*

-X158849Y171779D01*

-X159289Y172294D01*

-X159642Y172871D01*

-X159901Y173496D01*

-X160059Y174154D01*

-X160099Y174829D01*

-X160059Y175504D01*

-X159901Y176162D01*

-X159642Y176787D01*

-X159289Y177364D01*

-X158849Y177879D01*

-X158334Y178319D01*

-X157757Y178672D01*

-X157132Y178931D01*

-X156474Y179089D01*

-X155799Y179142D01*

-X155124Y179089D01*

-X154466Y178931D01*

-X153841Y178672D01*

-X153264Y178319D01*

-X152749Y177879D01*

-X152438Y177515D01*

-Y182143D01*

-X152749Y181779D01*

-X153264Y181339D01*

-X153841Y180986D01*

-X154466Y180727D01*

-X155124Y180569D01*

-X155799Y180516D01*

-X156474Y180569D01*

-X157132Y180727D01*

-X157757Y180986D01*

-X158334Y181339D01*

-X158849Y181779D01*

-X159289Y182294D01*

-X159642Y182871D01*

-X159901Y183496D01*

-X160059Y184154D01*

-X160099Y184829D01*

-X160059Y185504D01*

-X159901Y186162D01*

-X159642Y186787D01*

-X159289Y187364D01*

-X158849Y187879D01*

-X158334Y188319D01*

-X157757Y188672D01*

-X157132Y188931D01*

-X156474Y189089D01*

-X155799Y189142D01*

-X155124Y189089D01*

-X154466Y188931D01*

-X153841Y188672D01*

-X153264Y188319D01*

-X152749Y187879D01*

-X152438Y187515D01*

-Y337007D01*

-X152480Y336939D01*

-X152664Y336723D01*

-X152880Y336539D01*

-X153121Y336391D01*

-X153383Y336283D01*

-X153659Y336217D01*

-X153941Y336194D01*

-X154223Y336217D01*

-X154499Y336283D01*

-X154761Y336391D01*

-X155002Y336539D01*

-X155218Y336723D01*

-X155402Y336939D01*

-X155550Y337180D01*

-X155658Y337442D01*

-X155724Y337718D01*

-X155741Y338000D01*

-X155724Y338282D01*

-X155658Y338558D01*

-X155550Y338820D01*

-X155402Y339061D01*

-X155218Y339277D01*

-X155002Y339461D01*

-X154761Y339609D01*

-X154499Y339717D01*

-X154223Y339783D01*

-X153941Y339806D01*

-X153659Y339783D01*

-X153383Y339717D01*

-X153121Y339609D01*

-X152880Y339461D01*

-X152664Y339277D01*

-X152480Y339061D01*

-X152438Y338993D01*

-Y342500D01*

-G37*

-G36*

-X149938D02*X152438D01*

-Y338993D01*

-X152332Y338820D01*

-X152224Y338558D01*

-X152158Y338282D01*

-X152135Y338000D01*

-X152158Y337718D01*

-X152224Y337442D01*

-X152332Y337180D01*

-X152438Y337007D01*

-Y187515D01*

-X152309Y187364D01*

-X151956Y186787D01*

-X151697Y186162D01*

-X151539Y185504D01*

-X151486Y184829D01*

-X151539Y184154D01*

-X151697Y183496D01*

-X151956Y182871D01*

-X152309Y182294D01*

-X152438Y182143D01*

-Y177515D01*

-X152309Y177364D01*

-X151956Y176787D01*

-X151697Y176162D01*

-X151539Y175504D01*

-X151486Y174829D01*

-X151539Y174154D01*

-X151697Y173496D01*

-X151956Y172871D01*

-X152309Y172294D01*

-X152438Y172143D01*

-Y133732D01*

-X152223Y133783D01*

-X151941Y133806D01*

-X151659Y133783D01*

-X151383Y133717D01*

-X151121Y133609D01*

-X150880Y133461D01*

-X150664Y133277D01*

-X150480Y133061D01*

-X150332Y132820D01*

-X150224Y132558D01*

-X150158Y132282D01*

-X150135Y132000D01*

-X150158Y131718D01*

-X150224Y131442D01*

-X150332Y131180D01*

-X150480Y130939D01*

-X150664Y130723D01*

-X150880Y130539D01*

-X151121Y130391D01*

-X151383Y130283D01*

-X151659Y130217D01*

-X151941Y130194D01*

-X152223Y130217D01*

-X152438Y130268D01*

-Y123305D01*

-X152159Y123283D01*

-X151883Y123217D01*

-X151621Y123109D01*

-X151380Y122961D01*

-X151164Y122777D01*

-X150980Y122561D01*

-X150832Y122320D01*

-X150724Y122058D01*

-X150658Y121782D01*

-X150635Y121500D01*

-X150658Y121218D01*

-X150724Y120942D01*

-X150832Y120680D01*

-X150980Y120439D01*

-X151164Y120223D01*

-X151380Y120039D01*

-X151621Y119891D01*

-X151883Y119783D01*

-X152159Y119717D01*

-X152438Y119695D01*

-Y76500D01*

-X149938D01*

-Y147195D01*

-X149941Y147194D01*

-X150223Y147217D01*

-X150499Y147283D01*

-X150761Y147391D01*

-X151002Y147539D01*

-X151218Y147723D01*

-X151402Y147939D01*

-X151550Y148180D01*

-X151658Y148442D01*

-X151724Y148718D01*

-X151741Y149000D01*

-X151724Y149282D01*

-X151658Y149558D01*

-X151550Y149820D01*

-X151402Y150061D01*

-X151218Y150277D01*

-X151002Y150461D01*

-X150761Y150609D01*

-X150499Y150717D01*

-X150223Y150783D01*

-X149941Y150806D01*

-X149938Y150805D01*

-Y173651D01*

-X150059Y174154D01*

-X150099Y174829D01*

-X150059Y175504D01*

-X149938Y176007D01*

-Y183651D01*

-X150059Y184154D01*

-X150099Y184829D01*

-X150059Y185504D01*

-X149938Y186007D01*

-Y342500D01*

-G37*

-G36*

-X141438D02*X149938D01*

-Y186007D01*

-X149901Y186162D01*

-X149642Y186787D01*

-X149289Y187364D01*

-X148849Y187879D01*

-X148334Y188319D01*

-X147757Y188672D01*

-X147132Y188931D01*

-X146474Y189089D01*

-X145799Y189142D01*

-X145124Y189089D01*

-X144466Y188931D01*

-X143841Y188672D01*

-X143264Y188319D01*

-X142749Y187879D01*

-X142309Y187364D01*

-X141956Y186787D01*

-X141697Y186162D01*

-X141539Y185504D01*

-X141486Y184829D01*

-X141539Y184154D01*

-X141697Y183496D01*

-X141956Y182871D01*

-X142309Y182294D01*

-X142749Y181779D01*

-X143264Y181339D01*

-X143841Y180986D01*

-X144466Y180727D01*

-X145124Y180569D01*

-X145799Y180516D01*

-X146474Y180569D01*

-X147132Y180727D01*

-X147757Y180986D01*

-X148334Y181339D01*

-X148849Y181779D01*

-X149289Y182294D01*

-X149642Y182871D01*

-X149901Y183496D01*

-X149938Y183651D01*

-Y176007D01*

-X149901Y176162D01*

-X149642Y176787D01*

-X149289Y177364D01*

-X148849Y177879D01*

-X148334Y178319D01*

-X147757Y178672D01*

-X147132Y178931D01*

-X146474Y179089D01*

-X145799Y179142D01*

-X145124Y179089D01*

-X144466Y178931D01*

-X143841Y178672D01*

-X143264Y178319D01*

-X142749Y177879D01*

-X142309Y177364D01*

-X141956Y176787D01*

-X141697Y176162D01*

-X141539Y175504D01*

-X141486Y174829D01*

-X141539Y174154D01*

-X141697Y173496D01*

-X141956Y172871D01*

-X142309Y172294D01*

-X142749Y171779D01*

-X143264Y171339D01*

-X143841Y170986D01*

-X144466Y170727D01*

-X145124Y170569D01*

-X145799Y170516D01*

-X146474Y170569D01*

-X147132Y170727D01*

-X147757Y170986D01*

-X148334Y171339D01*

-X148849Y171779D01*

-X149289Y172294D01*

-X149642Y172871D01*

-X149901Y173496D01*

-X149938Y173651D01*

-Y150805D01*

-X149659Y150783D01*

-X149383Y150717D01*

-X149121Y150609D01*

-X148880Y150461D01*

-X148664Y150277D01*

-X148480Y150061D01*

-X148332Y149820D01*

-X148224Y149558D01*

-X148158Y149282D01*

-X148135Y149000D01*

-X148158Y148718D01*

-X148224Y148442D01*

-X148332Y148180D01*

-X148480Y147939D01*

-X148664Y147723D01*

-X148880Y147539D01*

-X149121Y147391D01*

-X149383Y147283D01*

-X149659Y147217D01*

-X149938Y147195D01*

-Y76500D01*

-X141438D01*

-Y146195D01*

-X141441Y146194D01*

-X141723Y146217D01*

-X141999Y146283D01*

-X142261Y146391D01*

-X142502Y146539D01*

-X142718Y146723D01*

-X142902Y146939D01*

-X143050Y147180D01*

-X143158Y147442D01*

-X143224Y147718D01*

-X143241Y148000D01*

-X143224Y148282D01*

-X143158Y148558D01*

-X143050Y148820D01*

-X142902Y149061D01*

-X142718Y149277D01*

-X142502Y149461D01*

-X142261Y149609D01*

-X141999Y149717D01*

-X141723Y149783D01*

-X141441Y149806D01*

-X141438Y149805D01*

-Y299088D01*

-X141589Y299100D01*

-X141865Y299166D01*

-X142127Y299274D01*

-X142368Y299422D01*

-X142584Y299606D01*

-X142768Y299822D01*

-X142916Y300063D01*

-X143024Y300325D01*

-X143090Y300601D01*

-X143107Y300883D01*

-X143090Y301165D01*

-X143024Y301441D01*

-X142916Y301703D01*

-X142768Y301944D01*

-X142584Y302160D01*

-X142368Y302344D01*

-X142127Y302492D01*

-X141865Y302600D01*

-X141589Y302666D01*

-X141438Y302678D01*

-Y336998D01*

-X141550Y337180D01*

-X141658Y337442D01*

-X141724Y337718D01*

-X141741Y338000D01*

-X141724Y338282D01*

-X141658Y338558D01*

-X141550Y338820D01*

-X141438Y339002D01*

-Y342500D01*

-G37*

-G36*

-Y76500D02*X138922D01*

-Y171865D01*

-X139289Y172294D01*

-X139642Y172871D01*

-X139901Y173496D01*

-X140059Y174154D01*

-X140099Y174829D01*

-X140059Y175504D01*

-X139901Y176162D01*

-X139642Y176787D01*

-X139289Y177364D01*

-X138922Y177793D01*

-Y181865D01*

-X139289Y182294D01*

-X139642Y182871D01*

-X139901Y183496D01*

-X140059Y184154D01*

-X140099Y184829D01*

-X140059Y185504D01*

-X139901Y186162D01*

-X139642Y186787D01*

-X139289Y187364D01*

-X138922Y187793D01*

-Y190893D01*

-X138925Y190892D01*

-X139207Y190915D01*

-X139483Y190981D01*

-X139745Y191089D01*

-X139986Y191237D01*

-X140202Y191421D01*

-X140386Y191637D01*

-X140534Y191878D01*

-X140642Y192140D01*

-X140708Y192416D01*

-X140725Y192698D01*

-X140708Y192980D01*

-X140642Y193256D01*

-X140534Y193518D01*

-X140386Y193759D01*

-X140202Y193975D01*

-X139986Y194159D01*

-X139745Y194307D01*

-X139483Y194415D01*

-X139207Y194481D01*

-X138925Y194504D01*

-X138922Y194503D01*

-Y196036D01*

-X138925Y196035D01*

-X139207Y196058D01*

-X139483Y196124D01*

-X139745Y196232D01*

-X139986Y196380D01*

-X140202Y196564D01*

-X140386Y196780D01*

-X140534Y197021D01*

-X140642Y197283D01*

-X140708Y197559D01*

-X140725Y197841D01*

-X140708Y198123D01*

-X140642Y198399D01*

-X140534Y198661D01*

-X140386Y198902D01*

-X140202Y199118D01*

-X139986Y199302D01*

-X139745Y199450D01*

-X139483Y199558D01*

-X139207Y199624D01*

-X138925Y199647D01*

-X138922Y199646D01*

-Y200228D01*

-X139154Y200247D01*

-X139430Y200313D01*

-X139692Y200421D01*

-X139933Y200569D01*

-X140149Y200753D01*

-X140333Y200969D01*

-X140481Y201210D01*

-X140589Y201472D01*

-X140655Y201748D01*

-X140672Y202030D01*

-X140655Y202312D01*

-X140589Y202588D01*

-X140481Y202850D01*

-X140333Y203091D01*

-X140149Y203307D01*

-X139933Y203491D01*

-X139692Y203639D01*

-X139430Y203747D01*

-X139154Y203813D01*

-X138922Y203832D01*

-Y204308D01*

-X138925Y204307D01*

-X139207Y204330D01*

-X139483Y204396D01*

-X139745Y204504D01*

-X139986Y204652D01*

-X140202Y204836D01*

-X140386Y205052D01*

-X140534Y205293D01*

-X140642Y205555D01*

-X140708Y205831D01*

-X140725Y206113D01*

-X140708Y206395D01*

-X140642Y206671D01*

-X140534Y206933D01*

-X140386Y207174D01*

-X140202Y207390D01*

-X139986Y207574D01*

-X139745Y207722D01*

-X139483Y207830D01*

-X139207Y207896D01*

-X138925Y207919D01*

-X138922Y207918D01*

-Y336513D01*

-X139121Y336391D01*

-X139383Y336283D01*

-X139659Y336217D01*

-X139941Y336194D01*

-X140223Y336217D01*

-X140499Y336283D01*

-X140761Y336391D01*

-X141002Y336539D01*

-X141218Y336723D01*

-X141402Y336939D01*

-X141438Y336998D01*

-Y302678D01*

-X141307Y302689D01*

-X141025Y302666D01*

-X140749Y302600D01*

-X140487Y302492D01*

-X140246Y302344D01*

-X140030Y302160D01*

-X139846Y301944D01*

-X139698Y301703D01*

-X139590Y301441D01*

-X139524Y301165D01*

-X139501Y300883D01*

-X139524Y300601D01*

-X139590Y300325D01*

-X139698Y300063D01*

-X139846Y299822D01*

-X140030Y299606D01*

-X140246Y299422D01*

-X140487Y299274D01*

-X140749Y299166D01*

-X141025Y299100D01*

-X141307Y299077D01*

-X141438Y299088D01*

-Y149805D01*

-X141159Y149783D01*

-X140883Y149717D01*

-X140621Y149609D01*

-X140380Y149461D01*

-X140164Y149277D01*

-X139980Y149061D01*

-X139832Y148820D01*

-X139724Y148558D01*

-X139658Y148282D01*

-X139635Y148000D01*

-X139658Y147718D01*

-X139724Y147442D01*

-X139832Y147180D01*

-X139980Y146939D01*

-X140164Y146723D01*

-X140380Y146539D01*

-X140621Y146391D01*

-X140883Y146283D01*

-X141159Y146217D01*

-X141438Y146195D01*

-Y76500D01*

-G37*

-G36*

-X138922Y342500D02*X141438D01*

-Y339002D01*

-X141402Y339061D01*

-X141218Y339277D01*

-X141002Y339461D01*

-X140761Y339609D01*

-X140499Y339717D01*

-X140223Y339783D01*

-X139941Y339806D01*

-X139659Y339783D01*

-X139383Y339717D01*

-X139121Y339609D01*

-X138922Y339487D01*

-Y342500D01*

-G37*

-G36*

-X135438Y170544D02*X135799Y170516D01*

-X136474Y170569D01*

-X137132Y170727D01*

-X137757Y170986D01*

-X138334Y171339D01*

-X138849Y171779D01*

-X138922Y171865D01*

-Y76500D01*

-X135438D01*

-Y170544D01*

-G37*

-G36*

-Y180544D02*X135799Y180516D01*

-X136474Y180569D01*

-X137132Y180727D01*

-X137757Y180986D01*

-X138334Y181339D01*

-X138849Y181779D01*

-X138922Y181865D01*

-Y177793D01*

-X138849Y177879D01*

-X138334Y178319D01*

-X137757Y178672D01*

-X137132Y178931D01*

-X136474Y179089D01*

-X135799Y179142D01*

-X135438Y179114D01*

-Y180544D01*

-G37*

-G36*

-Y342500D02*X138922D01*

-Y339487D01*

-X138880Y339461D01*

-X138664Y339277D01*

-X138480Y339061D01*

-X138332Y338820D01*

-X138224Y338558D01*

-X138158Y338282D01*

-X138135Y338000D01*

-X138158Y337718D01*

-X138224Y337442D01*

-X138332Y337180D01*

-X138480Y336939D01*

-X138664Y336723D01*

-X138880Y336539D01*

-X138922Y336513D01*

-Y207918D01*

-X138643Y207896D01*

-X138367Y207830D01*

-X138105Y207722D01*

-X137864Y207574D01*

-X137648Y207390D01*

-X137464Y207174D01*

-X137316Y206933D01*

-X137208Y206671D01*

-X137142Y206395D01*

-X137119Y206113D01*

-X137142Y205831D01*

-X137208Y205555D01*

-X137316Y205293D01*

-X137464Y205052D01*

-X137648Y204836D01*

-X137864Y204652D01*

-X138105Y204504D01*

-X138367Y204396D01*

-X138643Y204330D01*

-X138922Y204308D01*

-Y203832D01*

-X138872Y203836D01*

-X138590Y203813D01*

-X138314Y203747D01*

-X138052Y203639D01*

-X137811Y203491D01*

-X137595Y203307D01*

-X137411Y203091D01*

-X137263Y202850D01*

-X137155Y202588D01*

-X137089Y202312D01*

-X137066Y202030D01*

-X137089Y201748D01*

-X137155Y201472D01*

-X137263Y201210D01*

-X137411Y200969D01*

-X137595Y200753D01*

-X137811Y200569D01*

-X138052Y200421D01*

-X138314Y200313D01*

-X138590Y200247D01*

-X138872Y200224D01*

-X138922Y200228D01*

-Y199646D01*

-X138643Y199624D01*

-X138367Y199558D01*

-X138105Y199450D01*

-X137864Y199302D01*

-X137648Y199118D01*

-X137464Y198902D01*

-X137316Y198661D01*

-X137208Y198399D01*

-X137142Y198123D01*

-X137119Y197841D01*

-X137142Y197559D01*

-X137208Y197283D01*

-X137316Y197021D01*

-X137464Y196780D01*

-X137648Y196564D01*

-X137864Y196380D01*

-X138105Y196232D01*

-X138367Y196124D01*

-X138643Y196058D01*

-X138922Y196036D01*

-Y194503D01*

-X138643Y194481D01*

-X138367Y194415D01*

-X138105Y194307D01*

-X137864Y194159D01*

-X137648Y193975D01*

-X137464Y193759D01*

-X137316Y193518D01*

-X137208Y193256D01*

-X137142Y192980D01*

-X137119Y192698D01*

-X137142Y192416D01*

-X137208Y192140D01*

-X137316Y191878D01*

-X137464Y191637D01*

-X137648Y191421D01*

-X137864Y191237D01*

-X138105Y191089D01*

-X138367Y190981D01*

-X138643Y190915D01*

-X138922Y190893D01*

-Y187793D01*

-X138849Y187879D01*

-X138334Y188319D01*

-X137757Y188672D01*

-X137132Y188931D01*

-X136474Y189089D01*

-X135799Y189142D01*

-X135438Y189114D01*

-Y333195D01*

-X135441Y333194D01*

-X135723Y333217D01*

-X135999Y333283D01*

-X136261Y333391D01*

-X136502Y333539D01*

-X136718Y333723D01*

-X136902Y333939D01*

-X137050Y334180D01*

-X137158Y334442D01*

-X137224Y334718D01*

-X137241Y335000D01*

-X137224Y335282D01*

-X137158Y335558D01*

-X137050Y335820D01*

-X136902Y336061D01*

-X136718Y336277D01*

-X136502Y336461D01*

-X136261Y336609D01*

-X135999Y336717D01*

-X135862Y336750D01*

-X135999Y336783D01*

-X136261Y336891D01*

-X136502Y337039D01*

-X136718Y337223D01*

-X136902Y337439D01*

-X137050Y337680D01*

-X137158Y337942D01*

-X137224Y338218D01*

-X137241Y338500D01*

-X137224Y338782D01*

-X137158Y339058D01*

-X137050Y339320D01*

-X136902Y339561D01*

-X136718Y339777D01*

-X136502Y339961D01*

-X136261Y340109D01*

-X135999Y340217D01*

-X135723Y340283D01*

-X135441Y340306D01*

-X135438Y340305D01*

-Y342500D01*

-G37*

-G36*

-X129343Y278500D02*X130941D01*

-Y342500D01*

-X135438D01*

-Y340305D01*

-X135159Y340283D01*

-X134883Y340217D01*

-X134621Y340109D01*

-X134380Y339961D01*

-X134164Y339777D01*

-X133980Y339561D01*

-X133832Y339320D01*

-X133724Y339058D01*

-X133658Y338782D01*

-X133635Y338500D01*

-X133658Y338218D01*

-X133724Y337942D01*

-X133832Y337680D01*

-X133980Y337439D01*

-X134164Y337223D01*

-X134380Y337039D01*

-X134621Y336891D01*

-X134883Y336783D01*

-X135020Y336750D01*

-X134883Y336717D01*

-X134621Y336609D01*

-X134380Y336461D01*

-X134164Y336277D01*

-X133980Y336061D01*

-X133832Y335820D01*

-X133724Y335558D01*

-X133658Y335282D01*

-X133635Y335000D01*

-X133658Y334718D01*

-X133724Y334442D01*

-X133832Y334180D01*

-X133980Y333939D01*

-X134164Y333723D01*

-X134380Y333539D01*

-X134621Y333391D01*

-X134883Y333283D01*

-X135159Y333217D01*

-X135438Y333195D01*

-Y189114D01*

-X135124Y189089D01*

-X134466Y188931D01*

-X133841Y188672D01*

-X133264Y188319D01*

-X132749Y187879D01*

-X132309Y187364D01*

-X131956Y186787D01*

-X131697Y186162D01*

-X131539Y185504D01*

-X131486Y184829D01*

-X131539Y184154D01*

-X131697Y183496D01*

-X131956Y182871D01*

-X132309Y182294D01*

-X132749Y181779D01*

-X133264Y181339D01*

-X133841Y180986D01*

-X134466Y180727D01*

-X135124Y180569D01*

-X135438Y180544D01*

-Y179114D01*

-X135124Y179089D01*

-X134466Y178931D01*

-X133841Y178672D01*

-X133264Y178319D01*

-X132749Y177879D01*

-X132309Y177364D01*

-X131956Y176787D01*

-X131697Y176162D01*

-X131539Y175504D01*

-X131486Y174829D01*

-X131539Y174154D01*

-X131697Y173496D01*

-X131956Y172871D01*

-X132309Y172294D01*

-X132749Y171779D01*

-X133264Y171339D01*

-X133841Y170986D01*

-X134466Y170727D01*

-X135124Y170569D01*

-X135438Y170544D01*

-Y76500D01*

-X129343D01*

-Y146870D01*

-X129402Y146939D01*

-X129550Y147180D01*

-X129658Y147442D01*

-X129724Y147718D01*

-X129741Y148000D01*

-X129724Y148282D01*

-X129658Y148558D01*

-X129550Y148820D01*

-X129402Y149061D01*

-X129343Y149130D01*

-Y172501D01*

-X129366Y172513D01*

-X129429Y172561D01*

-X129483Y172618D01*

-X129526Y172684D01*

-X129717Y173045D01*

-X129868Y173425D01*

-X129983Y173817D01*

-X130060Y174218D01*

-X130099Y174625D01*

-Y175033D01*

-X130060Y175440D01*

-X129983Y175841D01*

-X129868Y176233D01*

-X129717Y176613D01*

-X129530Y176976D01*

-X129486Y177042D01*

-X129431Y177100D01*

-X129368Y177148D01*

-X129343Y177161D01*

-Y182501D01*

-X129366Y182513D01*

-X129429Y182561D01*

-X129483Y182618D01*

-X129526Y182684D01*

-X129717Y183045D01*

-X129868Y183425D01*

-X129983Y183817D01*

-X130060Y184218D01*

-X130099Y184625D01*

-Y185033D01*

-X130060Y185440D01*

-X129983Y185841D01*

-X129868Y186233D01*

-X129717Y186613D01*

-X129530Y186976D01*

-X129486Y187042D01*

-X129431Y187100D01*

-X129368Y187148D01*

-X129343Y187161D01*

-Y240745D01*

-X129499Y240783D01*

-X129761Y240891D01*

-X130002Y241039D01*

-X130218Y241223D01*

-X130402Y241439D01*

-X130550Y241680D01*

-X130658Y241942D01*

-X130724Y242218D01*

-X130741Y242500D01*

-X130724Y242782D01*

-X130658Y243058D01*

-X130550Y243320D01*

-X130402Y243561D01*

-X130218Y243777D01*

-X130002Y243961D01*

-X129761Y244109D01*

-X129499Y244217D01*

-X129343Y244255D01*

-Y246745D01*

-X129499Y246783D01*

-X129761Y246891D01*

-X130002Y247039D01*

-X130218Y247223D01*

-X130402Y247439D01*

-X130550Y247680D01*

-X130658Y247942D01*

-X130724Y248218D01*

-X130741Y248500D01*

-X130724Y248782D01*

-X130658Y249058D01*

-X130550Y249320D01*

-X130402Y249561D01*

-X130218Y249777D01*

-X130002Y249961D01*

-X129761Y250109D01*

-X129499Y250217D01*

-X129343Y250255D01*

-Y253245D01*

-X129499Y253283D01*

-X129761Y253391D01*

-X130002Y253539D01*

-X130218Y253723D01*

-X130402Y253939D01*

-X130550Y254180D01*

-X130658Y254442D01*

-X130724Y254718D01*

-X130741Y255000D01*

-X130724Y255282D01*

-X130658Y255558D01*

-X130550Y255820D01*

-X130402Y256061D01*

-X130218Y256277D01*

-X130002Y256461D01*

-X129761Y256609D01*

-X129499Y256717D01*

-X129343Y256755D01*

-Y260745D01*

-X129499Y260783D01*

-X129761Y260891D01*

-X130002Y261039D01*

-X130218Y261223D01*

-X130402Y261439D01*

-X130550Y261680D01*

-X130658Y261942D01*

-X130724Y262218D01*

-X130741Y262500D01*

-X130724Y262782D01*

-X130658Y263058D01*

-X130550Y263320D01*

-X130402Y263561D01*

-X130218Y263777D01*

-X130002Y263961D01*

-X129761Y264109D01*

-X129499Y264217D01*

-X129343Y264255D01*

-Y266745D01*

-X129499Y266783D01*

-X129761Y266891D01*

-X130002Y267039D01*

-X130218Y267223D01*

-X130402Y267439D01*

-X130550Y267680D01*

-X130658Y267942D01*

-X130724Y268218D01*

-X130741Y268500D01*

-X130724Y268782D01*

-X130658Y269058D01*

-X130550Y269320D01*

-X130402Y269561D01*

-X130218Y269777D01*

-X130002Y269961D01*

-X129761Y270109D01*

-X129499Y270217D01*

-X129343Y270255D01*

-Y272745D01*

-X129499Y272783D01*

-X129761Y272891D01*

-X130002Y273039D01*

-X130218Y273223D01*

-X130402Y273439D01*

-X130550Y273680D01*

-X130658Y273942D01*

-X130724Y274218D01*

-X130741Y274500D01*

-X130724Y274782D01*

-X130658Y275058D01*

-X130550Y275320D01*

-X130402Y275561D01*

-X130218Y275777D01*

-X130002Y275961D01*

-X129761Y276109D01*

-X129499Y276217D01*

-X129343Y276255D01*

-Y278500D01*

-G37*

-G36*

-Y270255D02*X129223Y270283D01*

-X128941Y270306D01*

-X128659Y270283D01*

-X128383Y270217D01*

-X128121Y270109D01*

-X127938Y269997D01*

-Y273003D01*

-X128121Y272891D01*

-X128383Y272783D01*

-X128659Y272717D01*

-X128941Y272694D01*

-X129223Y272717D01*

-X129343Y272745D01*

-Y270255D01*

-G37*

-G36*

-Y264255D02*X129223Y264283D01*

-X128941Y264306D01*

-X128659Y264283D01*

-X128383Y264217D01*

-X128121Y264109D01*

-X127938Y263997D01*

-Y267003D01*

-X128121Y266891D01*

-X128383Y266783D01*

-X128659Y266717D01*

-X128941Y266694D01*

-X129223Y266717D01*

-X129343Y266745D01*

-Y264255D01*

-G37*

-G36*

-Y256755D02*X129223Y256783D01*

-X128941Y256806D01*

-X128659Y256783D01*

-X128383Y256717D01*

-X128121Y256609D01*

-X127938Y256497D01*

-Y261003D01*

-X128121Y260891D01*

-X128383Y260783D01*

-X128659Y260717D01*

-X128941Y260694D01*

-X129223Y260717D01*

-X129343Y260745D01*

-Y256755D01*

-G37*

-G36*

-Y250255D02*X129223Y250283D01*

-X128941Y250306D01*

-X128659Y250283D01*

-X128383Y250217D01*

-X128121Y250109D01*

-X127938Y249997D01*

-Y253503D01*

-X128121Y253391D01*

-X128383Y253283D01*

-X128659Y253217D01*

-X128941Y253194D01*

-X129223Y253217D01*

-X129343Y253245D01*

-Y250255D01*

-G37*

-G36*

-Y244255D02*X129223Y244283D01*

-X128941Y244306D01*

-X128659Y244283D01*

-X128383Y244217D01*

-X128121Y244109D01*

-X127938Y243997D01*

-Y247003D01*

-X128121Y246891D01*

-X128383Y246783D01*

-X128659Y246717D01*

-X128941Y246694D01*

-X129223Y246717D01*

-X129343Y246745D01*

-Y244255D01*

-G37*

-G36*

-Y149130D02*X129218Y149277D01*

-X129002Y149461D01*

-X128761Y149609D01*

-X128499Y149717D01*

-X128223Y149783D01*

-X127941Y149806D01*

-X127938Y149805D01*

-Y171094D01*

-X127946Y171098D01*

-X128012Y171142D01*

-X128070Y171197D01*

-X128118Y171260D01*

-X128156Y171329D01*

-X128182Y171404D01*

-X128197Y171482D01*

-X128199Y171561D01*

-X128189Y171640D01*

-X128166Y171716D01*

-X128132Y171788D01*

-X128088Y171853D01*

-X128033Y171911D01*

-X127970Y171959D01*

-X127938Y171976D01*

-Y177686D01*

-X127968Y177702D01*

-X128031Y177750D01*

-X128085Y177807D01*

-X128129Y177872D01*

-X128163Y177943D01*

-X128185Y178019D01*

-X128195Y178097D01*

-X128193Y178176D01*

-X128179Y178253D01*

-X128152Y178327D01*

-X128115Y178396D01*

-X128067Y178459D01*

-X128010Y178513D01*

-X127944Y178556D01*

-X127938Y178559D01*

-Y181094D01*

-X127946Y181098D01*

-X128012Y181142D01*

-X128070Y181197D01*

-X128118Y181260D01*

-X128156Y181329D01*

-X128182Y181404D01*

-X128197Y181482D01*

-X128199Y181561D01*

-X128189Y181640D01*

-X128166Y181716D01*

-X128132Y181788D01*

-X128088Y181853D01*

-X128033Y181911D01*

-X127970Y181959D01*

-X127938Y181976D01*

-Y187686D01*

-X127968Y187702D01*

-X128031Y187750D01*

-X128085Y187807D01*

-X128129Y187872D01*

-X128163Y187943D01*

-X128185Y188019D01*

-X128195Y188097D01*

-X128193Y188176D01*

-X128179Y188253D01*

-X128152Y188327D01*

-X128115Y188396D01*

-X128067Y188459D01*

-X128010Y188513D01*

-X127944Y188556D01*

-X127938Y188559D01*

-Y241003D01*

-X128121Y240891D01*

-X128383Y240783D01*

-X128659Y240717D01*

-X128941Y240694D01*

-X129223Y240717D01*

-X129343Y240745D01*

-Y187161D01*

-X129299Y187186D01*

-X129224Y187212D01*

-X129146Y187227D01*

-X129067Y187229D01*

-X128988Y187219D01*

-X128912Y187196D01*

-X128840Y187162D01*

-X128775Y187118D01*

-X128717Y187063D01*

-X128669Y187000D01*

-X128631Y186931D01*

-X128605Y186856D01*

-X128590Y186778D01*

-X128588Y186699D01*

-X128598Y186620D01*

-X128621Y186544D01*

-X128656Y186473D01*

-X128802Y186197D01*

-X128918Y185906D01*

-X129006Y185605D01*

-X129066Y185297D01*

-X129095Y184986D01*

-Y184672D01*

-X129066Y184361D01*

-X129006Y184053D01*

-X128918Y183752D01*

-X128802Y183461D01*

-X128659Y183183D01*

-X128624Y183113D01*

-X128602Y183037D01*

-X128592Y182959D01*

-X128594Y182880D01*

-X128608Y182803D01*

-X128635Y182729D01*

-X128672Y182660D01*

-X128720Y182597D01*

-X128777Y182543D01*

-X128842Y182499D01*

-X128913Y182465D01*

-X128989Y182443D01*

-X129067Y182433D01*

-X129146Y182435D01*

-X129223Y182449D01*

-X129297Y182476D01*

-X129343Y182501D01*

-Y177161D01*

-X129299Y177186D01*

-X129224Y177212D01*

-X129146Y177227D01*

-X129067Y177229D01*

-X128988Y177219D01*

-X128912Y177196D01*

-X128840Y177162D01*

-X128775Y177118D01*

-X128717Y177063D01*

-X128669Y177000D01*

-X128631Y176931D01*

-X128605Y176856D01*

-X128590Y176778D01*

-X128588Y176699D01*

-X128598Y176620D01*

-X128621Y176544D01*

-X128656Y176473D01*

-X128802Y176197D01*

-X128918Y175906D01*

-X129006Y175605D01*

-X129066Y175297D01*

-X129095Y174986D01*

-Y174672D01*

-X129066Y174361D01*

-X129006Y174053D01*

-X128918Y173752D01*

-X128802Y173461D01*

-X128659Y173183D01*

-X128624Y173113D01*

-X128602Y173037D01*

-X128592Y172959D01*

-X128594Y172880D01*

-X128608Y172803D01*

-X128635Y172729D01*

-X128672Y172660D01*

-X128720Y172597D01*

-X128777Y172543D01*

-X128842Y172499D01*

-X128913Y172465D01*

-X128989Y172443D01*

-X129067Y172433D01*

-X129146Y172435D01*

-X129223Y172449D01*

-X129297Y172476D01*

-X129343Y172501D01*

-Y149130D01*

-G37*

-G36*

-Y76500D02*X127938D01*

-Y146195D01*

-X127941Y146194D01*

-X128223Y146217D01*

-X128499Y146283D01*

-X128761Y146391D01*

-X129002Y146539D01*

-X129218Y146723D01*

-X129343Y146870D01*

-Y76500D01*

-G37*

-G36*

-X127938Y278500D02*X129343D01*

-Y276255D01*

-X129223Y276283D01*

-X128941Y276306D01*

-X128659Y276283D01*

-X128383Y276217D01*

-X128121Y276109D01*

-X127938Y275997D01*

-Y278500D01*

-G37*

-G36*

-X122255D02*X127938D01*

-Y275997D01*

-X127880Y275961D01*

-X127664Y275777D01*

-X127480Y275561D01*

-X127332Y275320D01*

-X127224Y275058D01*

-X127158Y274782D01*

-X127135Y274500D01*

-X127158Y274218D01*

-X127224Y273942D01*

-X127332Y273680D01*

-X127480Y273439D01*

-X127664Y273223D01*

-X127880Y273039D01*

-X127938Y273003D01*

-Y269997D01*

-X127880Y269961D01*

-X127664Y269777D01*

-X127480Y269561D01*

-X127332Y269320D01*

-X127224Y269058D01*

-X127158Y268782D01*

-X127135Y268500D01*

-X127158Y268218D01*

-X127224Y267942D01*

-X127332Y267680D01*

-X127480Y267439D01*

-X127664Y267223D01*

-X127880Y267039D01*

-X127938Y267003D01*

-Y263997D01*

-X127880Y263961D01*

-X127664Y263777D01*

-X127480Y263561D01*

-X127332Y263320D01*

-X127224Y263058D01*

-X127158Y262782D01*

-X127135Y262500D01*

-X127158Y262218D01*

-X127224Y261942D01*

-X127332Y261680D01*

-X127480Y261439D01*

-X127664Y261223D01*

-X127880Y261039D01*

-X127938Y261003D01*

-Y256497D01*

-X127880Y256461D01*

-X127664Y256277D01*

-X127480Y256061D01*

-X127332Y255820D01*

-X127224Y255558D01*

-X127158Y255282D01*

-X127135Y255000D01*

-X127158Y254718D01*

-X127224Y254442D01*

-X127332Y254180D01*

-X127480Y253939D01*

-X127664Y253723D01*

-X127880Y253539D01*

-X127938Y253503D01*

-Y249997D01*

-X127880Y249961D01*

-X127664Y249777D01*

-X127480Y249561D01*

-X127332Y249320D01*

-X127224Y249058D01*

-X127158Y248782D01*

-X127135Y248500D01*

-X127158Y248218D01*

-X127224Y247942D01*

-X127332Y247680D01*

-X127480Y247439D01*

-X127664Y247223D01*

-X127880Y247039D01*

-X127938Y247003D01*

-Y243997D01*

-X127880Y243961D01*

-X127664Y243777D01*

-X127480Y243561D01*

-X127332Y243320D01*

-X127224Y243058D01*

-X127158Y242782D01*

-X127135Y242500D01*

-X127158Y242218D01*

-X127224Y241942D01*

-X127332Y241680D01*

-X127480Y241439D01*

-X127664Y241223D01*

-X127880Y241039D01*

-X127938Y241003D01*

-Y188559D01*

-X127583Y188747D01*

-X127203Y188898D01*

-X126811Y189013D01*

-X126410Y189090D01*

-X126003Y189129D01*

-X125595D01*

-X125188Y189090D01*

-X124787Y189013D01*

-X124395Y188898D01*

-X124015Y188747D01*

-X123652Y188560D01*

-X123586Y188516D01*

-X123528Y188461D01*

-X123480Y188398D01*

-X123442Y188329D01*

-X123416Y188254D01*

-X123401Y188176D01*

-X123399Y188097D01*

-X123409Y188018D01*

-X123432Y187942D01*

-X123466Y187870D01*

-X123510Y187805D01*

-X123565Y187747D01*

-X123628Y187699D01*

-X123697Y187661D01*

-X123772Y187635D01*

-X123850Y187620D01*

-X123929Y187618D01*

-X124008Y187628D01*

-X124084Y187651D01*

-X124155Y187686D01*

-X124431Y187832D01*

-X124722Y187948D01*

-X125023Y188036D01*

-X125331Y188096D01*

-X125642Y188125D01*

-X125956D01*

-X126267Y188096D01*

-X126575Y188036D01*

-X126876Y187948D01*

-X127167Y187832D01*

-X127445Y187689D01*

-X127515Y187654D01*

-X127591Y187632D01*

-X127669Y187622D01*

-X127748Y187624D01*

-X127825Y187638D01*

-X127899Y187665D01*

-X127938Y187686D01*

-Y181976D01*

-X127901Y181997D01*

-X127826Y182023D01*

-X127748Y182038D01*

-X127669Y182040D01*

-X127590Y182030D01*

-X127514Y182007D01*

-X127443Y181972D01*

-X127167Y181826D01*

-X126876Y181710D01*

-X126575Y181622D01*

-X126267Y181562D01*

-X125956Y181533D01*

-X125642D01*

-X125331Y181562D01*

-X125023Y181622D01*

-X124722Y181710D01*

-X124431Y181826D01*

-X124153Y181969D01*

-X124083Y182004D01*

-X124007Y182026D01*

-X123929Y182036D01*

-X123850Y182034D01*

-X123773Y182020D01*

-X123699Y181993D01*

-X123630Y181956D01*

-X123567Y181908D01*

-X123513Y181851D01*

-X123469Y181786D01*

-X123435Y181715D01*

-X123413Y181639D01*

-X123403Y181561D01*

-X123405Y181482D01*

-X123419Y181405D01*

-X123446Y181331D01*

-X123483Y181262D01*

-X123531Y181199D01*

-X123588Y181145D01*

-X123654Y181102D01*

-X124015Y180911D01*

-X124395Y180760D01*

-X124787Y180645D01*

-X125188Y180568D01*

-X125595Y180529D01*

-X126003D01*

-X126410Y180568D01*

-X126811Y180645D01*

-X127203Y180760D01*

-X127583Y180911D01*

-X127938Y181094D01*

-Y178559D01*

-X127583Y178747D01*

-X127203Y178898D01*

-X126811Y179013D01*

-X126410Y179090D01*

-X126003Y179129D01*

-X125595D01*

-X125188Y179090D01*

-X124787Y179013D01*

-X124395Y178898D01*

-X124015Y178747D01*

-X123652Y178560D01*

-X123586Y178516D01*

-X123528Y178461D01*

-X123480Y178398D01*

-X123442Y178329D01*

-X123416Y178254D01*

-X123401Y178176D01*

-X123399Y178097D01*

-X123409Y178018D01*

-X123432Y177942D01*

-X123466Y177870D01*

-X123510Y177805D01*

-X123565Y177747D01*

-X123628Y177699D01*

-X123697Y177661D01*

-X123772Y177635D01*

-X123850Y177620D01*

-X123929Y177618D01*

-X124008Y177628D01*

-X124084Y177651D01*

-X124155Y177686D01*

-X124431Y177832D01*

-X124722Y177948D01*

-X125023Y178036D01*

-X125331Y178096D01*

-X125642Y178125D01*

-X125956D01*

-X126267Y178096D01*

-X126575Y178036D01*

-X126876Y177948D01*

-X127167Y177832D01*

-X127445Y177689D01*

-X127515Y177654D01*

-X127591Y177632D01*

-X127669Y177622D01*

-X127748Y177624D01*

-X127825Y177638D01*

-X127899Y177665D01*

-X127938Y177686D01*

-Y171976D01*

-X127901Y171997D01*

-X127826Y172023D01*

-X127748Y172038D01*

-X127669Y172040D01*

-X127590Y172030D01*

-X127514Y172007D01*

-X127443Y171972D01*

-X127167Y171826D01*

-X126876Y171710D01*

-X126575Y171622D01*

-X126267Y171562D01*

-X125956Y171533D01*

-X125642D01*

-X125331Y171562D01*

-X125023Y171622D01*

-X124722Y171710D01*

-X124431Y171826D01*

-X124153Y171969D01*

-X124083Y172004D01*

-X124007Y172026D01*

-X123929Y172036D01*

-X123850Y172034D01*

-X123773Y172020D01*

-X123699Y171993D01*

-X123630Y171956D01*

-X123567Y171908D01*

-X123513Y171851D01*

-X123469Y171786D01*

-X123435Y171715D01*

-X123413Y171639D01*

-X123403Y171561D01*

-X123405Y171482D01*

-X123419Y171405D01*

-X123446Y171331D01*

-X123483Y171262D01*

-X123531Y171199D01*

-X123588Y171145D01*

-X123654Y171102D01*

-X124015Y170911D01*

-X124395Y170760D01*

-X124787Y170645D01*

-X125188Y170568D01*

-X125595Y170529D01*

-X126003D01*

-X126410Y170568D01*

-X126811Y170645D01*

-X127203Y170760D01*

-X127583Y170911D01*

-X127938Y171094D01*

-Y149805D01*

-X127659Y149783D01*

-X127383Y149717D01*

-X127121Y149609D01*

-X126880Y149461D01*

-X126664Y149277D01*

-X126480Y149061D01*

-X126332Y148820D01*

-X126224Y148558D01*

-X126158Y148282D01*

-X126135Y148000D01*

-X126158Y147718D01*

-X126224Y147442D01*

-X126332Y147180D01*

-X126480Y146939D01*

-X126664Y146723D01*

-X126880Y146539D01*

-X127121Y146391D01*

-X127383Y146283D01*

-X127659Y146217D01*

-X127938Y146195D01*

-Y76500D01*

-X122255D01*

-Y172497D01*

-X122299Y172472D01*

-X122374Y172446D01*

-X122452Y172431D01*

-X122531Y172429D01*

-X122610Y172439D01*

-X122686Y172462D01*

-X122758Y172496D01*

-X122823Y172540D01*

-X122881Y172595D01*

-X122929Y172658D01*

-X122967Y172727D01*

-X122993Y172802D01*

-X123008Y172880D01*

-X123010Y172959D01*

-X123000Y173038D01*

-X122977Y173114D01*

-X122942Y173185D01*

-X122796Y173461D01*

-X122680Y173752D01*

-X122592Y174053D01*

-X122532Y174361D01*

-X122503Y174672D01*

-Y174986D01*

-X122532Y175297D01*

-X122592Y175605D01*

-X122680Y175906D01*

-X122796Y176197D01*

-X122939Y176475D01*

-X122974Y176545D01*

-X122996Y176621D01*

-X123006Y176699D01*

-X123004Y176778D01*

-X122990Y176855D01*

-X122963Y176929D01*

-X122926Y176998D01*

-X122878Y177061D01*

-X122821Y177115D01*

-X122756Y177159D01*

-X122685Y177193D01*

-X122609Y177215D01*

-X122531Y177225D01*

-X122452Y177223D01*

-X122375Y177209D01*

-X122301Y177182D01*

-X122255Y177157D01*

-Y182497D01*

-X122299Y182472D01*

-X122374Y182446D01*

-X122452Y182431D01*

-X122531Y182429D01*

-X122610Y182439D01*

-X122686Y182462D01*

-X122758Y182496D01*

-X122823Y182540D01*

-X122881Y182595D01*

-X122929Y182658D01*

-X122967Y182727D01*

-X122993Y182802D01*

-X123008Y182880D01*

-X123010Y182959D01*

-X123000Y183038D01*

-X122977Y183114D01*

-X122942Y183185D01*

-X122796Y183461D01*

-X122680Y183752D01*

-X122592Y184053D01*

-X122532Y184361D01*

-X122503Y184672D01*

-Y184986D01*

-X122532Y185297D01*

-X122592Y185605D01*

-X122680Y185906D01*

-X122796Y186197D01*

-X122939Y186475D01*

-X122974Y186545D01*

-X122996Y186621D01*

-X123006Y186699D01*

-X123004Y186778D01*

-X122990Y186855D01*

-X122963Y186929D01*

-X122926Y186998D01*

-X122878Y187061D01*

-X122821Y187115D01*

-X122756Y187159D01*

-X122685Y187193D01*

-X122609Y187215D01*

-X122531Y187225D01*

-X122452Y187223D01*

-X122375Y187209D01*

-X122301Y187182D01*

-X122255Y187157D01*

-Y278500D01*

-G37*

-G36*

-X114438D02*X122255D01*

-Y187157D01*

-X122232Y187145D01*

-X122169Y187097D01*

-X122115Y187040D01*

-X122072Y186974D01*

-X121881Y186613D01*

-X121730Y186233D01*

-X121615Y185841D01*

-X121538Y185440D01*

-X121499Y185033D01*

-Y184625D01*

-X121538Y184218D01*

-X121615Y183817D01*

-X121730Y183425D01*

-X121881Y183045D01*

-X122068Y182682D01*

-X122112Y182616D01*

-X122167Y182558D01*

-X122230Y182510D01*

-X122255Y182497D01*

-Y177157D01*

-X122232Y177145D01*

-X122169Y177097D01*

-X122115Y177040D01*

-X122072Y176974D01*

-X121881Y176613D01*

-X121730Y176233D01*

-X121615Y175841D01*

-X121538Y175440D01*

-X121499Y175033D01*

-Y174625D01*

-X121538Y174218D01*

-X121615Y173817D01*

-X121730Y173425D01*

-X121881Y173045D01*

-X122068Y172682D01*

-X122112Y172616D01*

-X122167Y172558D01*

-X122230Y172510D01*

-X122255Y172497D01*

-Y76500D01*

-X114438D01*

-Y119695D01*

-X114441Y119694D01*

-X114723Y119717D01*

-X114999Y119783D01*

-X115261Y119891D01*

-X115502Y120039D01*

-X115718Y120223D01*

-X115902Y120439D01*

-X116050Y120680D01*

-X116158Y120942D01*

-X116224Y121218D01*

-X116241Y121500D01*

-X116224Y121782D01*

-X116158Y122058D01*

-X116050Y122320D01*

-X115902Y122561D01*

-X115718Y122777D01*

-X115502Y122961D01*

-X115261Y123109D01*

-X114999Y123217D01*

-X114723Y123283D01*

-X114441Y123306D01*

-X114438Y123305D01*

-Y131003D01*

-X114621Y130891D01*

-X114883Y130783D01*

-X115159Y130717D01*

-X115441Y130694D01*

-X115723Y130717D01*

-X115999Y130783D01*

-X116261Y130891D01*

-X116502Y131039D01*

-X116718Y131223D01*

-X116902Y131439D01*

-X117050Y131680D01*

-X117158Y131942D01*

-X117224Y132218D01*

-X117241Y132500D01*

-X117224Y132782D01*

-X117158Y133058D01*

-X117050Y133320D01*

-X116902Y133561D01*

-X116718Y133777D01*

-X116502Y133961D01*

-X116261Y134109D01*

-X115999Y134217D01*

-X115723Y134283D01*

-X115441Y134306D01*

-X115159Y134283D01*

-X114883Y134217D01*

-X114621Y134109D01*

-X114438Y133997D01*

-Y146820D01*

-X114537Y146904D01*

-X114767Y147173D01*

-X114952Y147475D01*

-X115087Y147803D01*

-X115170Y148147D01*

-X115198Y148500D01*

-X115170Y148853D01*

-X115087Y149197D01*

-X114952Y149525D01*

-X114767Y149827D01*

-X114537Y150096D01*

-X114438Y150180D01*

-Y170738D01*

-X114466Y170727D01*

-X115124Y170569D01*

-X115799Y170516D01*

-X116474Y170569D01*

-X117132Y170727D01*

-X117757Y170986D01*

-X118334Y171339D01*

-X118849Y171779D01*

-X119289Y172294D01*

-X119642Y172871D01*

-X119901Y173496D01*

-X120059Y174154D01*

-X120099Y174829D01*

-X120059Y175504D01*

-X119901Y176162D01*

-X119642Y176787D01*

-X119289Y177364D01*

-X118849Y177879D01*

-X118334Y178319D01*

-X117757Y178672D01*

-X117132Y178931D01*

-X116474Y179089D01*

-X115799Y179142D01*

-X115124Y179089D01*

-X114466Y178931D01*

-X114438Y178920D01*

-Y180738D01*

-X114466Y180727D01*

-X115124Y180569D01*

-X115799Y180516D01*

-X116474Y180569D01*

-X117132Y180727D01*

-X117757Y180986D01*

-X118334Y181339D01*

-X118849Y181779D01*

-X119289Y182294D01*

-X119642Y182871D01*

-X119901Y183496D01*

-X120059Y184154D01*

-X120099Y184829D01*

-X120059Y185504D01*

-X119901Y186162D01*

-X119642Y186787D01*

-X119289Y187364D01*

-X118849Y187879D01*

-X118334Y188319D01*

-X117757Y188672D01*

-X117132Y188931D01*

-X116474Y189089D01*

-X115799Y189142D01*

-X115124Y189089D01*

-X114466Y188931D01*

-X114438Y188920D01*

-Y278500D01*

-G37*

-G36*

-Y178920D02*X113841Y178672D01*

-X113264Y178319D01*

-X112749Y177879D01*

-X112309Y177364D01*

-X112219Y177217D01*

-Y182441D01*

-X112309Y182294D01*

-X112749Y181779D01*

-X113264Y181339D01*

-X113841Y180986D01*

-X114438Y180738D01*

-Y178920D01*

-G37*

-G36*

-Y150180D02*X114268Y150326D01*

-X113966Y150511D01*

-X113638Y150646D01*

-X113294Y150729D01*

-X112941Y150750D01*

-X112219D01*

-Y172441D01*

-X112309Y172294D01*

-X112749Y171779D01*

-X113264Y171339D01*

-X113841Y170986D01*

-X114438Y170738D01*

-Y150180D01*

-G37*

-G36*

-Y76500D02*X112219D01*

-Y102387D01*

-X112466Y102489D01*

-X112768Y102674D01*

-X113037Y102904D01*

-X113267Y103173D01*

-X113452Y103475D01*

-X113587Y103803D01*

-X113670Y104147D01*

-X113698Y104500D01*

-X113670Y104853D01*

-X113587Y105197D01*

-X113452Y105525D01*

-X113267Y105827D01*

-X113037Y106096D01*

-X112768Y106326D01*

-X112466Y106511D01*

-X112219Y106613D01*

-Y125535D01*

-X112222Y125534D01*

-X112504Y125557D01*

-X112780Y125623D01*

-X113042Y125731D01*

-X113283Y125879D01*

-X113499Y126063D01*

-X113683Y126279D01*

-X113831Y126520D01*

-X113939Y126782D01*

-X114005Y127058D01*

-X114022Y127340D01*

-X114005Y127622D01*

-X113939Y127898D01*

-X113831Y128160D01*

-X113683Y128401D01*

-X113499Y128617D01*

-X113283Y128801D01*

-X113042Y128949D01*

-X112780Y129057D01*

-X112504Y129123D01*

-X112222Y129146D01*

-X112219Y129145D01*

-Y146250D01*

-X112941D01*

-X113294Y146271D01*

-X113638Y146354D01*

-X113966Y146489D01*

-X114268Y146674D01*

-X114438Y146820D01*

-Y133997D01*

-X114380Y133961D01*

-X114164Y133777D01*

-X113980Y133561D01*

-X113832Y133320D01*

-X113724Y133058D01*

-X113658Y132782D01*

-X113635Y132500D01*

-X113658Y132218D01*

-X113724Y131942D01*

-X113832Y131680D01*

-X113980Y131439D01*

-X114164Y131223D01*

-X114380Y131039D01*

-X114438Y131003D01*

-Y123305D01*

-X114159Y123283D01*

-X113883Y123217D01*

-X113621Y123109D01*

-X113380Y122961D01*

-X113164Y122777D01*

-X112980Y122561D01*

-X112832Y122320D01*

-X112724Y122058D01*

-X112658Y121782D01*

-X112635Y121500D01*

-X112658Y121218D01*

-X112724Y120942D01*

-X112832Y120680D01*

-X112980Y120439D01*

-X113164Y120223D01*

-X113380Y120039D01*

-X113621Y119891D01*

-X113883Y119783D01*

-X114159Y119717D01*

-X114438Y119695D01*

-Y76500D01*

-G37*

-G36*

-X112219Y278500D02*X114438D01*

-Y188920D01*

-X113841Y188672D01*

-X113264Y188319D01*

-X112749Y187879D01*

-X112309Y187364D01*

-X112219Y187217D01*

-Y278500D01*

-G37*

-G36*

-Y106613D02*X112138Y106646D01*

-X111794Y106729D01*

-X111441Y106750D01*

-X109941D01*

-Y146250D01*

-X112219D01*

-Y129145D01*

-X111940Y129123D01*

-X111664Y129057D01*

-X111402Y128949D01*

-X111161Y128801D01*

-X110945Y128617D01*

-X110761Y128401D01*

-X110613Y128160D01*

-X110505Y127898D01*

-X110439Y127622D01*

-X110416Y127340D01*

-X110439Y127058D01*

-X110505Y126782D01*

-X110613Y126520D01*

-X110761Y126279D01*

-X110945Y126063D01*

-X111161Y125879D01*

-X111402Y125731D01*

-X111664Y125623D01*

-X111940Y125557D01*

-X112219Y125535D01*

-Y106613D01*

-G37*

-G36*

-Y76500D02*X109941D01*

-Y102250D01*

-X111441D01*

-X111794Y102271D01*

-X112138Y102354D01*

-X112219Y102387D01*

-Y76500D01*

-G37*

-G36*

-X109941Y278500D02*X112219D01*

-Y187217D01*

-X111956Y186787D01*

-X111697Y186162D01*

-X111539Y185504D01*

-X111486Y184829D01*

-X111539Y184154D01*

-X111697Y183496D01*

-X111956Y182871D01*

-X112219Y182441D01*

-Y177217D01*

-X111956Y176787D01*

-X111697Y176162D01*

-X111539Y175504D01*

-X111486Y174829D01*

-X111539Y174154D01*

-X111697Y173496D01*

-X111956Y172871D01*

-X112219Y172441D01*

-Y150750D01*

-X109941D01*

-Y170989D01*

-X109993Y171074D01*

-X110053Y171219D01*

-X110090Y171372D01*

-X110099Y171529D01*

-X110090Y178286D01*

-X110053Y178439D01*

-X109993Y178584D01*

-X109941Y178669D01*

-Y183662D01*

-X110059Y184154D01*

-X110099Y184829D01*

-X110059Y185504D01*

-X109941Y185996D01*

-Y278500D01*

-G37*

-G36*

-X162941Y228500D02*Y233500D01*

-X168441D01*

-Y228500D01*

-X162941D01*

-G37*

-G36*

-Y224000D02*Y229000D01*

-X168441D01*

-Y224000D01*

-X162941D01*

-G37*

-G36*

-Y218000D02*Y223000D01*

-X168441D01*

-Y218000D01*

-X162941D01*

-G37*

-G36*

-X308441Y113440D02*Y118440D01*

-X313941D01*

-Y113440D01*

-X308441D01*

-G37*

-G36*

-X180941Y101500D02*Y106500D01*

-X186441D01*

-Y101500D01*

-X180941D01*

-G37*

-G36*

-X228441Y145500D02*Y150500D01*

-X233941D01*

-Y145500D01*

-X228441D01*

-G37*

-G36*

-X166441Y211500D02*Y216500D01*

-X171941D01*

-Y211500D01*

-X166441D01*

-G37*

-G36*

-Y206000D02*Y211000D01*

-X171941D01*

-Y206000D01*

-X166441D01*

-G37*

-G36*

-Y199000D02*Y204000D01*

-X171941D01*

-Y199000D01*

-X166441D01*

-G37*

-G36*

-X206441Y145500D02*Y150500D01*

-X211941D01*

-Y145500D01*

-X206441D01*

-G37*

-G36*

-X124941D02*Y150500D01*

-X130441D01*

-Y145500D01*

-X124941D01*

-G37*

-G36*

-X132941Y335500D02*Y340500D01*

-X138441D01*

-Y335500D01*

-X132941D01*

-G37*

-G36*

-Y332000D02*Y337000D01*

-X138441D01*

-Y332000D01*

-X132941D01*

-G37*

-G36*

-X137441Y335000D02*Y340000D01*

-X142941D01*

-Y335000D01*

-X137441D01*

-G37*

-G36*

-X151441D02*Y340000D01*

-X156941D01*

-Y335000D01*

-X151441D01*

-G37*

-G36*

-X386941Y83000D02*X397941D01*

-X397441Y41500D01*

-X386941D01*

-Y83000D01*

-G37*

-G36*

-X306941Y139068D02*Y144068D01*

-X312441D01*

-Y139068D01*

-X306941D01*

-G37*

-G36*

-X109941Y155000D02*X117941D01*

-Y140000D01*

-X109941D01*

-Y155000D01*

-G37*

-G36*

-Y108000D02*X114941D01*

-Y100500D01*

-X109941D01*

-Y108000D01*

-G37*

-G36*

-X146941Y146500D02*Y151500D01*

-X152441D01*

-Y146500D01*

-X146941D01*

-G37*

-G36*

-X163941Y101500D02*Y106500D01*

-X169441D01*

-Y101500D01*

-X163941D01*

-G37*

-G54D228*X397441Y373000D02*X393941Y376500D01*

-X398441Y314000D02*X395441D01*

-X398441Y253000D02*X394441D01*

-X398441Y193614D02*X395441D01*

-X106441Y148500D02*X112941D01*

-X101941Y104500D02*X111441D01*

-G54D229*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D227*G36*

-X403750Y357250D02*Y350750D01*

-X410250D01*

-Y357250D01*

-X403750D01*

-G37*

-G54D230*X345799Y357329D03*

-G54D231*X315799Y337329D03*

-G54D230*X85799Y369829D03*

-G54D232*X105799Y374829D03*

-G54D227*G36*

-X102499Y368129D02*Y361529D01*

-X109099D01*

-Y368129D01*

-X102499D01*

-G37*

-G54D232*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-G54D233*X93299Y342329D03*

-G54D232*X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D227*G36*

-X450250Y267250D02*Y260750D01*

-X456750D01*

-Y267250D01*

-X450250D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X456750D01*

-Y207250D01*

-X450250D01*

-G37*

-G36*

-Y177250D02*Y170750D01*

-X456750D01*

-Y177250D01*

-X450250D01*

-G37*

-G54D229*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D227*G36*

-X450250Y237250D02*Y230750D01*

-X456750D01*

-Y237250D01*

-X450250D01*

-G37*

-G54D229*X463500Y234000D03*

-X473500D03*

-G54D227*G36*

-X450250Y147250D02*Y140750D01*

-X456750D01*

-Y147250D01*

-X450250D01*

-G37*

-G36*

-Y117250D02*Y110750D01*

-X456750D01*

-Y117250D01*

-X450250D01*

-G37*

-G36*

-Y87250D02*Y80750D01*

-X456750D01*

-Y87250D01*

-X450250D01*

-G37*

-G36*

-Y57250D02*Y50750D01*

-X456750D01*

-Y57250D01*

-X450250D01*

-G37*

-G54D229*X463500Y54000D03*

-X473500D03*

-G54D227*G36*

-X450250Y327250D02*Y320750D01*

-X456750D01*

-Y327250D01*

-X450250D01*

-G37*

-G54D229*X463500Y324000D03*

-X473500D03*

-G54D227*G36*

-X450250Y297250D02*Y290750D01*

-X456750D01*

-Y297250D01*

-X450250D01*

-G37*

-G54D229*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D227*G36*

-X309191Y252250D02*Y245750D01*

-X315691D01*

-Y252250D01*

-X309191D01*

-G37*

-G54D229*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D230*X345799Y192329D03*

-G54D227*G36*

-X450250Y387250D02*Y380750D01*

-X456750D01*

-Y387250D01*

-X450250D01*

-G37*

-G54D229*X463500Y384000D03*

-X473500D03*

-G54D227*G36*

-X403750Y387250D02*Y380750D01*

-X410250D01*

-Y387250D01*

-X403750D01*

-G37*

-G36*

-Y297250D02*Y290750D01*

-X410250D01*

-Y297250D01*

-X403750D01*

-G37*

-G36*

-Y327250D02*Y320750D01*

-X410250D01*

-Y327250D01*

-X403750D01*

-G37*

-G54D229*X417000Y324000D03*

-X427000D03*

-G54D227*G36*

-X450250Y357250D02*Y350750D01*

-X456750D01*

-Y357250D01*

-X450250D01*

-G37*

-G54D229*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D227*G36*

-X403750Y177250D02*Y170750D01*

-X410250D01*

-Y177250D01*

-X403750D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X410250D01*

-Y207250D01*

-X403750D01*

-G37*

-G36*

-Y237250D02*Y230750D01*

-X410250D01*

-Y237250D01*

-X403750D01*

-G37*

-G36*

-Y267250D02*Y260750D01*

-X410250D01*

-Y267250D01*

-X403750D01*

-G37*

-G54D229*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D227*G36*

-X202191Y50750D02*Y44250D01*

-X208691D01*

-Y50750D01*

-X202191D01*

-G37*

-G54D229*X205441Y57500D03*

-Y67500D03*

-G54D227*G36*

-X232191Y50750D02*Y44250D01*

-X238691D01*

-Y50750D01*

-X232191D01*

-G37*

-G54D229*X235441Y57500D03*

-Y67500D03*

-G54D227*G36*

-X262191Y50750D02*Y44250D01*

-X268691D01*

-Y50750D01*

-X262191D01*

-G37*

-G36*

-X172191D02*Y44250D01*

-X178691D01*

-Y50750D01*

-X172191D01*

-G37*

-G36*

-X142191D02*Y44250D01*

-X148691D01*

-Y50750D01*

-X142191D01*

-G37*

-G36*

-X112191D02*Y44250D01*

-X118691D01*

-Y50750D01*

-X112191D01*

-G37*

-G36*

-X82191D02*Y44250D01*

-X88691D01*

-Y50750D01*

-X82191D01*

-G37*

-G54D229*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D227*G36*

-X292191Y50750D02*Y44250D01*

-X298691D01*

-Y50750D01*

-X292191D01*

-G37*

-G54D229*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D230*X85799Y179829D03*

-G54D232*X105799Y184829D03*

-G54D227*G36*

-X102499Y178129D02*Y171529D01*

-X109099D01*

-Y178129D01*

-X102499D01*

-G37*

-G54D232*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D227*G36*

-X82191Y243250D02*Y236750D01*

-X88691D01*

-Y243250D01*

-X82191D01*

-G37*

-G54D229*X85441Y230000D03*

-Y220000D03*

-G54D232*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D227*G36*

-X192499Y200629D02*Y194029D01*

-X199099D01*

-Y200629D01*

-X192499D01*

-G37*

-G54D232*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D228*X307716Y275075D03*

-X308992Y271971D03*

-X308872Y266522D03*

-X287917Y307829D03*

-X293902Y282263D03*

-X296779Y304963D03*

-X295937Y243628D03*

-X296727Y256227D03*

-X312157Y300156D03*

-X312122Y295038D03*

-X303365Y330000D03*

-X285430Y325000D03*

-X302941Y340007D03*

-X245557Y279508D03*

-X242456Y293543D03*

-X262750Y268772D03*

-X253101Y261836D03*

-G54D234*X246941Y238000D03*

-X242441Y229500D03*

-X246441D03*

-X250941D03*

-X260941Y191500D03*

-X245863Y191524D03*

-X269441Y198500D03*

-X269941Y231500D03*

-X251941Y210500D03*

-X243941Y202000D03*

-X253441Y102500D03*

-X231441Y148000D03*

-X309441Y141568D03*

-Y136450D03*

-X310941Y115940D03*

-X305696Y107500D03*

-X304584Y207483D03*

-X304706Y210583D03*

-X305280Y204383D03*

-G54D228*X254740Y298329D03*

-X242168Y298800D03*

-G54D234*X246731Y303031D03*

-G54D228*X269653Y298631D03*

-G54D234*X270441Y336000D03*

-Y342500D03*

-Y349500D03*

-G54D228*X268941Y314000D03*

-G54D234*X270441Y357000D03*

-G54D228*X273229Y298582D03*

-X278225Y279602D03*

-X278207Y298612D03*

-X277174Y308219D03*

-X277449Y347500D03*

-G54D234*X263441Y320000D03*

-X260568Y316997D03*

-X261502Y307367D03*

-X249101Y328793D03*

-X229818Y354988D03*

-G54D228*X266413Y296594D03*

-X263240Y295329D03*

-X262740Y291829D03*

-X260341Y284249D03*

-X264034Y282931D03*

-G54D234*X279441Y285000D03*

-G54D235*X386441Y163000D03*

-X400441Y194000D03*

-X389441Y184000D03*

-X400441Y189000D03*

-G54D234*X386023Y157813D03*

-X398441Y173000D03*

-G54D235*X393441Y208000D03*

-X384162Y188000D03*

-X458441Y195000D03*

-Y164000D03*

-X372441Y170386D03*

-G54D234*X377347Y162178D03*

-G54D235*X387441Y326000D03*

-X393441Y355000D03*

-X386720Y282000D03*

-X393441Y327000D03*

-X384162Y306000D03*

-X385941Y354500D03*

-X458441Y375000D03*

-X383662Y378500D03*

-X397441Y373000D03*

-X397941Y367441D03*

-G54D234*X385941Y366000D03*

-G54D235*X458441Y345000D03*

-Y315000D03*

-Y285000D03*

-X398441Y314000D03*

-Y309000D03*

-G54D234*Y291000D03*

-G54D235*X372441Y290689D03*

-Y351189D03*

-G54D234*X339837Y341827D03*

-X353390Y339521D03*

-G54D235*X375441Y235000D03*

-G54D234*X356441Y233000D03*

-X338441Y224192D03*

-Y230124D03*

-X337441Y163000D03*

-X358941Y208500D03*

-G54D235*X384512Y258000D03*

-G54D234*X371602Y260228D03*

-G54D235*X458441Y254000D03*

-Y225000D03*

-X387070Y235000D03*

-X398441Y248000D03*

-Y253000D03*

-G54D234*X396441Y235000D03*

-X392188Y239000D03*

-X388207Y247280D03*

-G54D228*X239302Y262235D03*

-G54D234*X245441Y127500D03*

-X235941Y133000D03*

-X236441Y235500D03*

-X202441Y212500D03*

-X210441D03*

-X220441Y215000D03*

-X224941Y220500D03*

-X225441Y226500D03*

-X224941Y235500D03*

-X224441Y244000D03*

-X212941Y238000D03*

-X203941Y237500D03*

-X193941Y237000D03*

-X181941Y258500D03*

-X183941Y104000D03*

-X112222Y127340D03*

-X114441Y121500D03*

-X115441Y132500D03*

-X101941Y104500D03*

-X166441Y104000D03*

-X127941Y148000D03*

-X106441Y148500D03*

-X149941Y149000D03*

-X138925Y206113D03*

-X138872Y202030D03*

-X138925Y197841D03*

-X161941Y199000D03*

-X166941Y197500D03*

-X138925Y192698D03*

-X161941Y193000D03*

-X166941D03*

-X163941Y127500D03*

-X193390D03*

-X152441Y121500D03*

-X151941Y132000D03*

-X195441Y133000D03*

-X141441Y148000D03*

-X208941D03*

-X223941D03*

-X198441Y122500D03*

-X234441D03*

-X221884Y254000D03*

-X224441Y252000D03*

-X225441Y249000D03*

-X230441Y247000D03*

-X219441Y272500D03*

-X230441Y293000D03*

-X220729Y265580D03*

-X220441Y259500D03*

-X218441Y261500D03*

-X217441Y279000D03*

-X240391Y278564D03*

-X128941Y274500D03*

-Y268500D03*

-Y262500D03*

-Y255000D03*

-Y248500D03*

-Y242500D03*

-X104441Y204500D03*

-X100941D03*

-X141307Y300883D03*

-X124831Y302385D03*

-X158441Y323829D03*

-Y328829D03*

-Y326500D03*

-X153941Y338000D03*

-X154941Y345500D03*

-X135441Y338500D03*

-Y335000D03*

-X139941Y338000D03*

-X111941Y334000D03*

-X117941D03*

-X126441D03*

-X142441Y357500D03*

-Y349500D03*

-X149441D03*

-X126441Y340500D03*

-X111941Y341000D03*

-Y357500D03*

-X121941D03*

-X130941D03*

-X197441Y314500D03*

-Y308500D03*

-X198441Y262500D03*

-Y269500D03*

-X205441Y277000D03*

-X195441Y311500D03*

-X191363Y344449D03*

-X178887Y342818D03*

-X168732Y350833D03*

-X162441Y242500D03*

-X165941Y231000D03*

-Y226500D03*

-X185441Y228000D03*

-X177441D03*

-X162441Y248500D03*

-X161941Y255000D03*

-X162441Y262500D03*

-X162941Y268500D03*

-Y274500D03*

-X165941Y220500D03*

-X169441Y214000D03*

-Y208500D03*

-Y201500D03*

-X177441Y217500D03*

-X185441D03*

-X193941Y212500D03*

-G54D235*X432324Y111000D03*

-X446441Y102000D03*

-X434882Y75000D03*

-G54D236*X440941Y123000D03*

-G54D235*X423441Y75000D03*

-G54D234*X434449Y56500D03*

-X440449D03*

-X354941Y93499D03*

-Y97999D03*

-Y103999D03*

-Y109999D03*

-Y115999D03*

-Y121999D03*

-Y127999D03*

-X387941D03*

-Y121999D03*

-Y115999D03*

-Y109999D03*

-Y97999D03*

-Y93499D03*

-Y103999D03*

-X391441Y84499D03*

-Y79999D03*

-X391941Y74499D03*

-X395441Y66999D03*

-X394441Y59999D03*

-X392941Y53499D03*

-X368941Y48500D03*

-Y43500D03*

-X374941D03*

-Y47000D03*

-G54D237*G54D234*G54D237*G54D234*G54D237*G54D234*G54D237*G54D234*G54D237*G54D234*G54D237*G54D234*G54D237*G54D234*G54D237*G54D234*G54D237*G54D234*G54D238*G54D234*G54D237*G54D239*G54D240*G54D241*G54D240*G54D242*G54D243*G54D242*G54D239*G54D240*G54D239*G54D240*G54D242*G54D239*G54D242*M02*

diff --git a/bbb_cape/schematic/gerbers/20140120/cape.outline.gbr b/bbb_cape/schematic/gerbers/20140120/cape.outline.gbr
deleted file mode 100644
index 1167b74..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.outline.gbr
+++ /dev/null
@@ -1,31 +0,0 @@
-G04 start of page 6 for group 4 idx 4 *

-G04 Title: 971 BBB Cape, outline *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Mon Jan 20 21:04:42 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNOUTLINE*%

-%ADD273C,0.0250*%

-%ADD272C,0.0080*%

-G54D272*X68000Y42000D02*Y244000D01*

-X74500Y250500D02*X101000D01*

-X107500Y256000D02*Y312500D01*

-X101000Y319000D02*X74500D01*

-X68000Y325500D02*Y393300D01*

-X484600D02*Y42000D01*

-X479100Y35500D02*X73500D01*

-G54D273*X189949Y136059D02*X189890Y136000D01*

-G54D272*X74500Y399800D02*X478100D01*

-X74500Y35500D02*G75*G02X68000Y42000I0J6500D01*G01*

-Y244000D02*G75*G02X74500Y250500I6500J0D01*G01*

-X107500Y257000D02*G75*G02X101000Y250500I-6500J0D01*G01*

-Y319000D02*G75*G02X107500Y312500I0J-6500D01*G01*

-X74500Y319000D02*G75*G02X68000Y325500I0J6500D01*G01*

-X478100Y399800D02*G75*G02X484600Y393300I0J-6500D01*G01*

-Y42000D02*G75*G02X478100Y35500I-6500J0D01*G01*

-X68000Y393300D02*G75*G02X74500Y399800I6500J0D01*G01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140120/cape.plated-drill.cnc b/bbb_cape/schematic/gerbers/20140120/cape.plated-drill.cnc
deleted file mode 100644
index b281e15..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.plated-drill.cnc
+++ /dev/null
@@ -1,471 +0,0 @@
-M48

-INCH

-T281C0.035

-T280C0.020

-T279C0.010

-T278C0.246

-T277C0.046

-T276C0.200

-T275C0.129

-T274C0.040

-%

-T279

-X030772Y027508

-X030899Y027197

-X030887Y026652

-X028792Y030783

-X029390Y028226

-X029678Y030496

-X029594Y024363

-X029673Y025623

-X031216Y030016

-X031212Y029504

-X030336Y033000

-X028543Y032500

-X030294Y034001

-X024556Y027951

-X024246Y029354

-X026275Y026877

-X025310Y026184

-X024694Y023800

-X024244Y022950

-X024644Y022950

-X025094Y022950

-X026094Y019150

-X024586Y019152

-X026944Y019850

-X026994Y023150

-X025194Y021050

-X024394Y020200

-X025344Y010250

-X023144Y014800

-X030944Y014157

-X030944Y013645

-X031094Y011594

-X030570Y010750

-X030458Y020748

-X030471Y021058

-X030528Y020438

-X025474Y029833

-X024217Y029880

-X024673Y030303

-X026965Y029863

-X027044Y033600

-X027044Y034250

-X027044Y034950

-X026894Y031400

-X027044Y035700

-X027323Y029858

-X027822Y027960

-X027821Y029861

-X027717Y030822

-X027745Y034750

-X026344Y032000

-X026057Y031700

-X026150Y030737

-X024910Y032879

-X022982Y035499

-X026641Y029659

-X026324Y029533

-X026274Y029183

-X026034Y028425

-X026403Y028293

-X027944Y028500

-X038602Y015781

-X039844Y017300

-X037735Y016218

-X038594Y036600

-X039844Y029100

-X033984Y034183

-X035339Y033952

-X035644Y023300

-X033844Y022419

-X033844Y023012

-X033744Y016300

-X035894Y020850

-X037160Y026023

-X039644Y023500

-X039219Y023900

-X038821Y024728

-X023930Y026224

-X024544Y012750

-X023594Y013300

-X023644Y023550

-X020244Y021250

-X021044Y021250

-X022044Y021500

-X022494Y022050

-X022544Y022650

-X022494Y023550

-X022444Y024400

-X021294Y023800

-X020394Y023750

-X019394Y023700

-X018194Y025850

-X018394Y010400

-X011222Y012734

-X011444Y012150

-X011544Y013250

-X010194Y010450

-X016644Y010400

-X012794Y014800

-X010644Y014850

-X014994Y014900

-X013892Y020611

-X013887Y020203

-X013892Y019784

-X016194Y019900

-X016694Y019750

-X013892Y019270

-X016194Y019300

-X016694Y019300

-X016394Y012750

-X019339Y012750

-X015244Y012150

-X015194Y013200

-X019544Y013300

-X014144Y014800

-X020894Y014800

-X022394Y014800

-X019844Y012250

-X023444Y012250

-X022188Y025400

-X022444Y025200

-X022544Y024900

-X023044Y024700

-X021944Y027250

-X023044Y029300

-X022073Y026558

-X022044Y025950

-X021844Y026150

-X021744Y027900

-X024039Y027856

-X012894Y027450

-X012894Y026850

-X012894Y026250

-X012894Y025500

-X012894Y024850

-X012894Y024250

-X010444Y020450

-X010094Y020450

-X014131Y030088

-X012483Y030238

-X015844Y032383

-X015844Y032883

-X015844Y032650

-X015394Y033800

-X015494Y034550

-X013544Y033850

-X013544Y033500

-X013994Y033800

-X011194Y033400

-X011794Y033400

-X012644Y033400

-X014244Y035750

-X014244Y034950

-X014944Y034950

-X012644Y034050

-X011194Y034100

-X011194Y035750

-X012194Y035750

-X013094Y035750

-X019744Y031450

-X019744Y030850

-X019844Y026250

-X019844Y026950

-X020544Y027700

-X019544Y031150

-X019136Y034445

-X017889Y034282

-X016873Y035083

-X016244Y024250

-X016594Y023100

-X016594Y022650

-X018544Y022800

-X017744Y022800

-X016244Y024850

-X016194Y025500

-X016244Y026250

-X016294Y026850

-X016294Y027450

-X016594Y022050

-X016944Y021400

-X016944Y020850

-X016944Y020150

-X017744Y021750

-X018544Y021750

-X019394Y021250

-X043445Y005650

-X044045Y005650

-X035494Y009350

-X035494Y009800

-X035494Y010400

-X035494Y011000

-X035494Y011600

-X035494Y012200

-X035494Y012800

-X038794Y012800

-X038794Y012200

-X038794Y011600

-X038794Y011000

-X038794Y009800

-X038794Y009350

-X038794Y010400

-X039144Y008450

-X039144Y008000

-X039194Y007450

-X039544Y006700

-X039444Y006000

-X039294Y005350

-X036894Y004850

-X036894Y004350

-X037494Y004350

-X037494Y004700

-T280

-X038644Y016300

-X040044Y019400

-X038944Y018400

-X040044Y018900

-X039344Y020800

-X038416Y018800

-X045844Y019500

-X045844Y016400

-X037244Y017039

-X038744Y032600

-X039344Y035500

-X038672Y028200

-X039344Y032700

-X038416Y030600

-X038594Y035450

-X045844Y037500

-X038366Y037850

-X039744Y037300

-X039794Y036744

-X045844Y034500

-X045844Y031500

-X045844Y028500

-X039844Y031400

-X039844Y030900

-X037244Y029069

-X037244Y035119

-X037544Y023500

-X038451Y025800

-X045844Y025400

-X045844Y022500

-X038707Y023500

-X039844Y024800

-X039844Y025300

-X043232Y011100

-X044644Y010200

-X043488Y007500

-X042344Y007500

-T281

-X044094Y012300

-T274

-X041700Y038400

-X041700Y029400

-X041700Y035400

-X042700Y038400

-X042700Y029400

-X042700Y035400

-X040700Y035400

-X045350Y026400

-X045350Y020400

-X045350Y017400

-X046350Y026400

-X046350Y020400

-X046350Y017400

-X046350Y014400

-X046350Y011400

-X046350Y008400

-X047350Y026400

-X047350Y020400

-X047350Y017400

-X047350Y014400

-X047350Y011400

-X047350Y008400

-X045350Y023400

-X046350Y023400

-X047350Y023400

-X045350Y014400

-X045350Y011400

-X045350Y008400

-X045350Y005400

-X046350Y005400

-X047350Y005400

-X045350Y032400

-X046350Y032400

-X047350Y032400

-X045350Y029400

-X046350Y029400

-X047350Y029400

-X043700Y032400

-X031244Y024900

-X032244Y024900

-X033244Y024900

-X034244Y024900

-X045350Y038400

-X046350Y038400

-X047350Y038400

-X040700Y038400

-X040700Y029400

-X040700Y032400

-X041700Y032400

-X042700Y032400

-X045350Y035400

-X043700Y035400

-X046350Y035400

-X047350Y035400

-X043700Y038400

-X043700Y017400

-X043700Y020400

-X043700Y023400

-X043700Y026400

-X043700Y029400

-X040700Y017400

-X040700Y020400

-X040700Y023400

-X040700Y026400

-X041700Y017400

-X041700Y020400

-X041700Y023400

-X041700Y026400

-X042700Y017400

-X042700Y020400

-X042700Y023400

-X042700Y026400

-X020544Y004750

-X020544Y005750

-X020544Y006750

-X023544Y004750

-X023544Y005750

-X023544Y006750

-X026544Y004750

-X017544Y004750

-X014544Y004750

-X011544Y004750

-X008544Y004750

-X026544Y005750

-X017544Y005750

-X014544Y005750

-X011544Y005750

-X008544Y005750

-X026544Y006750

-X017544Y006750

-X029544Y004750

-X029544Y005750

-X029544Y006750

-X014544Y006750

-X011544Y006750

-X008544Y006750

-X008544Y024000

-X008544Y023000

-X008544Y022000

-T277

-X010580Y037483

-X010580Y036483

-X011580Y037483

-X011580Y036483

-X012580Y037483

-X012580Y036483

-X013580Y037483

-X013580Y036483

-X014580Y037483

-X014580Y036483

-X015580Y036483

-X016580Y036483

-X015580Y037483

-X016580Y037483

-X017580Y037483

-X018580Y037483

-X019580Y037483

-X020580Y037483

-X017580Y036483

-X018580Y036483

-X019580Y036483

-X020580Y036483

-X021580Y037483

-X022580Y037483

-X023580Y037483

-X021580Y036483

-X022580Y036483

-X023580Y036483

-X024580Y036483

-X025580Y036483

-X026580Y036483

-X024580Y037483

-X025580Y037483

-X026580Y037483

-X027580Y037483

-X027580Y036483

-X028580Y037483

-X029580Y037483

-X030580Y037483

-X031580Y037483

-X032580Y037483

-X028580Y036483

-X029580Y036483

-X030580Y036483

-X031580Y036483

-X032580Y036483

-X010580Y018483

-X010580Y017483

-X011580Y018483

-X011580Y017483

-X012580Y018483

-X012580Y017483

-X013580Y018483

-X014580Y018483

-X015580Y018483

-X013580Y017483

-X014580Y017483

-X015580Y017483

-X016580Y018483

-X017580Y018483

-X018580Y018483

-X019580Y018483

-X016580Y017483

-X017580Y017483

-X018580Y017483

-X019580Y017483

-X019580Y019733

-X020580Y019733

-X021580Y019733

-X022580Y019733

-X023580Y019733

-X020580Y018483

-X021580Y018483

-X022580Y018483

-X020580Y017483

-X021580Y017483

-X022580Y017483

-X023580Y017483

-X024580Y017483

-X025580Y017483

-X023580Y018483

-X024580Y018483

-X025580Y018483

-X026580Y018483

-X026580Y017483

-X027580Y018483

-X028580Y018483

-X029580Y018483

-X030580Y018483

-X031580Y018483

-X032580Y018483

-X027580Y017483

-X028580Y017483

-X029580Y017483

-X030580Y017483

-X031580Y017483

-X032580Y017483

-T275

-X034580Y035733

-X008580Y036983

-X034580Y019233

-X008580Y017983

-T276

-X031580Y033733

-T278

-X009330Y034233

-M30

diff --git a/bbb_cape/schematic/gerbers/20140120/cape.top.gbr b/bbb_cape/schematic/gerbers/20140120/cape.top.gbr
deleted file mode 100644
index 7531ee5..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.top.gbr
+++ /dev/null
@@ -1,3659 +0,0 @@
-G04 start of page 2 for group 0 idx 0 *

-G04 Title: 971 BBB Cape, top *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Mon Jan 20 21:04:42 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNTOP*%

-%ADD208C,0.2460*%

-%ADD207C,0.0460*%

-%ADD206C,0.2000*%

-%ADD205C,0.1285*%

-%ADD204C,0.0350*%

-%ADD203C,0.0600*%

-%ADD202C,0.0360*%

-%ADD201C,0.0200*%

-%ADD200R,0.0550X0.0550*%

-%ADD199R,0.0948X0.0948*%

-%ADD198R,0.0110X0.0110*%

-%ADD197R,0.0340X0.0340*%

-%ADD196R,0.0130X0.0130*%

-%ADD195R,0.0350X0.0350*%

-%ADD194R,0.0295X0.0295*%

-%ADD193R,0.0200X0.0200*%

-%ADD192R,0.0512X0.0512*%

-%ADD191R,0.2106X0.2106*%

-%ADD190C,0.2660*%

-%ADD189C,0.0660*%

-%ADD188C,0.2200*%

-%ADD187C,0.1830*%

-%ADD186C,0.0650*%

-%ADD185C,0.0550*%

-%ADD184C,0.0400*%

-%ADD183C,0.0250*%

-%ADD182C,0.0080*%

-%ADD181C,0.0100*%

-%ADD180C,0.0001*%

-G54D180*G36*

-X182941Y321000D02*X199941D01*

-Y302500D01*

-X182941D01*

-Y321000D01*

-G37*

-G36*

-X267324Y200573D02*X271324D01*

-Y196573D01*

-X267324D01*

-Y200573D01*

-G37*

-G36*

-X271324D01*

-Y196573D01*

-X267324D01*

-Y200573D01*

-G37*

-G36*

-X258824Y193573D02*X262824D01*

-Y189573D01*

-X258824D01*

-Y193573D01*

-G37*

-G36*

-X241824Y204073D02*X245824D01*

-Y200073D01*

-X241824D01*

-Y204073D01*

-G37*

-G36*

-X249824Y212573D02*X253824D01*

-Y208573D01*

-X249824D01*

-Y212573D01*

-G37*

-G36*

-X267824Y233573D02*X271824D01*

-Y229573D01*

-X267824D01*

-Y233573D01*

-G37*

-G36*

-X323941Y107499D02*X347941Y131499D01*

-X391941D01*

-Y91499D01*

-X323941D01*

-Y107499D01*

-G37*

-G36*

-X314941Y89000D02*X357941D01*

-Y62000D01*

-X344941D01*

-X330941Y76000D01*

-X314941D01*

-Y89000D01*

-G37*

-G36*

-X385941Y86499D02*X394941D01*

-Y72499D01*

-X398441Y68999D01*

-Y39500D01*

-X387441D01*

-Y61999D01*

-X388941Y63499D01*

-Y71499D01*

-X385941Y74499D01*

-Y86499D01*

-G37*

-G36*

-X366441Y66000D02*X370398D01*

-X370441Y52000D01*

-X384441D01*

-Y39500D01*

-X368941D01*

-X366441Y42000D01*

-Y66000D01*

-G37*

-G36*

-X275792Y211941D02*X280021Y216170D01*

-X280057Y216201D01*

-X280180Y216344D01*

-X280180Y216344D01*

-X280279Y216506D01*

-X280351Y216680D01*

-X280395Y216864D01*

-X280410Y217052D01*

-X280406Y217099D01*

-Y244696D01*

-X282630Y246920D01*

-Y237610D01*

-X282625Y237551D01*

-X282644Y237316D01*

-X282699Y237086D01*

-X282789Y236868D01*

-X282913Y236667D01*

-X283066Y236487D01*

-X283111Y236449D01*

-X283441Y236119D01*

-Y188427D01*

-X283264Y188319D01*

-X282749Y187879D01*

-X282309Y187364D01*

-X281956Y186787D01*

-X281697Y186162D01*

-X281539Y185504D01*

-X281486Y184829D01*

-X281539Y184154D01*

-X281697Y183496D01*

-X281956Y182871D01*

-X282309Y182294D01*

-X282749Y181779D01*

-X283264Y181339D01*

-X283441Y181231D01*

-Y178427D01*

-X283264Y178319D01*

-X282749Y177879D01*

-X282309Y177364D01*

-X281956Y176787D01*

-X281697Y176162D01*

-X281539Y175504D01*

-X281486Y174829D01*

-X281539Y174154D01*

-X281697Y173496D01*

-X281956Y172871D01*

-X282309Y172294D01*

-X282749Y171779D01*

-X283264Y171339D01*

-X283441Y171231D01*

-Y169500D01*

-X275792D01*

-Y170516D01*

-X275799Y170516D01*

-X276474Y170569D01*

-X277132Y170727D01*

-X277757Y170986D01*

-X278334Y171339D01*

-X278849Y171779D01*

-X279289Y172294D01*

-X279642Y172871D01*

-X279901Y173496D01*

-X280059Y174154D01*

-X280099Y174829D01*

-X280059Y175504D01*

-X279901Y176162D01*

-X279642Y176787D01*

-X279289Y177364D01*

-X278849Y177879D01*

-X278334Y178319D01*

-X277757Y178672D01*

-X277132Y178931D01*

-X276474Y179089D01*

-X275799Y179142D01*

-X275792Y179142D01*

-Y180516D01*

-X275799Y180516D01*

-X276474Y180569D01*

-X277132Y180727D01*

-X277757Y180986D01*

-X278334Y181339D01*

-X278849Y181779D01*

-X279289Y182294D01*

-X279642Y182871D01*

-X279901Y183496D01*

-X280059Y184154D01*

-X280099Y184829D01*

-X280059Y185504D01*

-X279901Y186162D01*

-X279642Y186787D01*

-X279289Y187364D01*

-X278849Y187879D01*

-X278334Y188319D01*

-X277757Y188672D01*

-X277132Y188931D01*

-X276474Y189089D01*

-X275799Y189142D01*

-X275792Y189142D01*

-Y211941D01*

-G37*

-G36*

-X269438Y205587D02*X275792Y211941D01*

-Y189142D01*

-X275124Y189089D01*

-X274466Y188931D01*

-X273841Y188672D01*

-X273264Y188319D01*

-X272749Y187879D01*

-X272309Y187364D01*

-X271956Y186787D01*

-X271697Y186162D01*

-X271539Y185504D01*

-X271486Y184829D01*

-X271539Y184154D01*

-X271697Y183496D01*

-X271956Y182871D01*

-X272309Y182294D01*

-X272749Y181779D01*

-X273264Y181339D01*

-X273841Y180986D01*

-X274466Y180727D01*

-X275124Y180569D01*

-X275792Y180516D01*

-Y179142D01*

-X275124Y179089D01*

-X274466Y178931D01*

-X273841Y178672D01*

-X273264Y178319D01*

-X272749Y177879D01*

-X272309Y177364D01*

-X271956Y176787D01*

-X271697Y176162D01*

-X271539Y175504D01*

-X271486Y174829D01*

-X271539Y174154D01*

-X271697Y173496D01*

-X271956Y172871D01*

-X272309Y172294D01*

-X272749Y171779D01*

-X273264Y171339D01*

-X273841Y170986D01*

-X274466Y170727D01*

-X275124Y170569D01*

-X275792Y170516D01*

-Y169500D01*

-X269438D01*

-Y172538D01*

-X269642Y172871D01*

-X269901Y173496D01*

-X270059Y174154D01*

-X270099Y174829D01*

-X270059Y175504D01*

-X269901Y176162D01*

-X269642Y176787D01*

-X269438Y177120D01*

-Y182538D01*

-X269642Y182871D01*

-X269901Y183496D01*

-X270059Y184154D01*

-X270099Y184829D01*

-X270059Y185504D01*

-X269901Y186162D01*

-X269642Y186787D01*

-X269438Y187120D01*

-Y196695D01*

-X269441Y196694D01*

-X269723Y196717D01*

-X269999Y196783D01*

-X270261Y196891D01*

-X270502Y197039D01*

-X270718Y197223D01*

-X270902Y197439D01*

-X271050Y197680D01*

-X271158Y197942D01*

-X271224Y198218D01*

-X271241Y198500D01*

-X271224Y198782D01*

-X271158Y199058D01*

-X271050Y199320D01*

-X270902Y199561D01*

-X270718Y199777D01*

-X270502Y199961D01*

-X270261Y200109D01*

-X269999Y200217D01*

-X269723Y200283D01*

-X269441Y200306D01*

-X269438Y200305D01*

-Y205587D01*

-G37*

-G36*

-X260938Y197087D02*X269438Y205587D01*

-Y200305D01*

-X269159Y200283D01*

-X268883Y200217D01*

-X268621Y200109D01*

-X268380Y199961D01*

-X268164Y199777D01*

-X267980Y199561D01*

-X267832Y199320D01*

-X267724Y199058D01*

-X267658Y198782D01*

-X267635Y198500D01*

-X267658Y198218D01*

-X267724Y197942D01*

-X267832Y197680D01*

-X267980Y197439D01*

-X268164Y197223D01*

-X268380Y197039D01*

-X268621Y196891D01*

-X268883Y196783D01*

-X269159Y196717D01*

-X269438Y196695D01*

-Y187120D01*

-X269289Y187364D01*

-X268849Y187879D01*

-X268334Y188319D01*

-X267757Y188672D01*

-X267132Y188931D01*

-X266474Y189089D01*

-X265799Y189142D01*

-X265124Y189089D01*

-X264466Y188931D01*

-X263841Y188672D01*

-X263264Y188319D01*

-X262749Y187879D01*

-X262309Y187364D01*

-X261956Y186787D01*

-X261697Y186162D01*

-X261539Y185504D01*

-X261486Y184829D01*

-X261539Y184154D01*

-X261697Y183496D01*

-X261956Y182871D01*

-X262309Y182294D01*

-X262749Y181779D01*

-X263264Y181339D01*

-X263841Y180986D01*

-X264466Y180727D01*

-X265124Y180569D01*

-X265799Y180516D01*

-X266474Y180569D01*

-X267132Y180727D01*

-X267757Y180986D01*

-X268334Y181339D01*

-X268849Y181779D01*

-X269289Y182294D01*

-X269438Y182538D01*

-Y177120D01*

-X269289Y177364D01*

-X268849Y177879D01*

-X268334Y178319D01*

-X267757Y178672D01*

-X267132Y178931D01*

-X266474Y179089D01*

-X265799Y179142D01*

-X265124Y179089D01*

-X264466Y178931D01*

-X263841Y178672D01*

-X263264Y178319D01*

-X262749Y177879D01*

-X262309Y177364D01*

-X261956Y176787D01*

-X261697Y176162D01*

-X261539Y175504D01*

-X261486Y174829D01*

-X261539Y174154D01*

-X261697Y173496D01*

-X261956Y172871D01*

-X262309Y172294D01*

-X262749Y171779D01*

-X263264Y171339D01*

-X263841Y170986D01*

-X264466Y170727D01*

-X265124Y170569D01*

-X265799Y170516D01*

-X266474Y170569D01*

-X267132Y170727D01*

-X267757Y170986D01*

-X268334Y171339D01*

-X268849Y171779D01*

-X269289Y172294D01*

-X269438Y172538D01*

-Y169500D01*

-X260938D01*

-Y189695D01*

-X260941Y189694D01*

-X261223Y189717D01*

-X261499Y189783D01*

-X261761Y189891D01*

-X262002Y190039D01*

-X262218Y190223D01*

-X262402Y190439D01*

-X262550Y190680D01*

-X262658Y190942D01*

-X262724Y191218D01*

-X262741Y191500D01*

-X262724Y191782D01*

-X262658Y192058D01*

-X262550Y192320D01*

-X262402Y192561D01*

-X262218Y192777D01*

-X262002Y192961D01*

-X261761Y193109D01*

-X261499Y193217D01*

-X261223Y193283D01*

-X260941Y193306D01*

-X260938Y193305D01*

-Y197087D01*

-G37*

-G36*

-X269938Y243063D02*X270797Y243922D01*

-X270833Y243953D01*

-X270956Y244096D01*

-X270956Y244097D01*

-X270956Y244097D01*

-X271020Y244202D01*

-X271055Y244258D01*

-Y244258D01*

-X271055Y244258D01*

-X271120Y244415D01*

-X271127Y244432D01*

-X271127Y244432D01*

-X271127Y244432D01*

-X271148Y244519D01*

-X271171Y244616D01*

-Y244616D01*

-X271171Y244616D01*

-X271186Y244804D01*

-X271182Y244851D01*

-Y251016D01*

-X271666Y251500D01*

-X278449D01*

-X273987Y247038D01*

-X273951Y247007D01*

-X273828Y246864D01*

-X273729Y246702D01*

-X273657Y246528D01*

-X273613Y246344D01*

-X273598Y246156D01*

-X273602Y246109D01*

-Y226938D01*

-X269938Y223274D01*

-Y229695D01*

-X269941Y229694D01*

-X270223Y229717D01*

-X270499Y229783D01*

-X270761Y229891D01*

-X271002Y230039D01*

-X271218Y230223D01*

-X271402Y230439D01*

-X271550Y230680D01*

-X271658Y230942D01*

-X271724Y231218D01*

-X271741Y231500D01*

-X271724Y231782D01*

-X271658Y232058D01*

-X271550Y232320D01*

-X271402Y232561D01*

-X271218Y232777D01*

-X271002Y232961D01*

-X270761Y233109D01*

-X270499Y233217D01*

-X270223Y233283D01*

-X269941Y233306D01*

-X269938Y233305D01*

-Y243063D01*

-G37*

-G36*

-X260938Y234062D02*X269938Y243063D01*

-Y233305D01*

-X269659Y233283D01*

-X269383Y233217D01*

-X269121Y233109D01*

-X268880Y232961D01*

-X268664Y232777D01*

-X268480Y232561D01*

-X268332Y232320D01*

-X268224Y232058D01*

-X268158Y231782D01*

-X268135Y231500D01*

-X268158Y231218D01*

-X268224Y230942D01*

-X268332Y230680D01*

-X268480Y230439D01*

-X268664Y230223D01*

-X268880Y230039D01*

-X269121Y229891D01*

-X269383Y229783D01*

-X269659Y229717D01*

-X269938Y229695D01*

-Y223274D01*

-X260938Y214274D01*

-Y234062D01*

-G37*

-G36*

-X251938Y181684D02*X251986Y181762D01*

-X251986Y181762D01*

-X251987Y181763D01*

-X252017Y181837D01*

-X252059Y181937D01*

-X252059Y181937D01*

-X252059Y181937D01*

-X252079Y182020D01*

-X252103Y182120D01*

-X252103Y182121D01*

-X252103Y182121D01*

-X252103Y182122D01*

-X252118Y182309D01*

-X252114Y182356D01*

-Y182613D01*

-X252309Y182294D01*

-X252749Y181779D01*

-X253264Y181339D01*

-X253841Y180986D01*

-X254466Y180727D01*

-X255124Y180569D01*

-X255799Y180516D01*

-X256474Y180569D01*

-X257132Y180727D01*

-X257757Y180986D01*

-X258334Y181339D01*

-X258849Y181779D01*

-X259289Y182294D01*

-X259642Y182871D01*

-X259901Y183496D01*

-X260059Y184154D01*

-X260099Y184829D01*

-X260059Y185504D01*

-X259901Y186162D01*

-X259642Y186787D01*

-X259289Y187364D01*

-X258849Y187879D01*

-X258334Y188319D01*

-X257757Y188672D01*

-X257132Y188931D01*

-X256474Y189089D01*

-X255799Y189142D01*

-X255124Y189089D01*

-X254466Y188931D01*

-X253841Y188672D01*

-X253264Y188319D01*

-X252749Y187879D01*

-X252309Y187364D01*

-X252114Y187045D01*

-Y188263D01*

-X260938Y197087D01*

-Y193305D01*

-X260659Y193283D01*

-X260383Y193217D01*

-X260121Y193109D01*

-X259880Y192961D01*

-X259664Y192777D01*

-X259480Y192561D01*

-X259332Y192320D01*

-X259224Y192058D01*

-X259158Y191782D01*

-X259135Y191500D01*

-X259158Y191218D01*

-X259224Y190942D01*

-X259332Y190680D01*

-X259480Y190439D01*

-X259664Y190223D01*

-X259880Y190039D01*

-X260121Y189891D01*

-X260383Y189783D01*

-X260659Y189717D01*

-X260938Y189695D01*

-Y169500D01*

-X251938D01*

-Y172913D01*

-X251956Y172871D01*

-X252309Y172294D01*

-X252749Y171779D01*

-X253264Y171339D01*

-X253841Y170986D01*

-X254466Y170727D01*

-X255124Y170569D01*

-X255799Y170516D01*

-X256474Y170569D01*

-X257132Y170727D01*

-X257757Y170986D01*

-X258334Y171339D01*

-X258849Y171779D01*

-X259289Y172294D01*

-X259642Y172871D01*

-X259901Y173496D01*

-X260059Y174154D01*

-X260099Y174829D01*

-X260059Y175504D01*

-X259901Y176162D01*

-X259642Y176787D01*

-X259289Y177364D01*

-X258849Y177879D01*

-X258334Y178319D01*

-X257757Y178672D01*

-X257132Y178931D01*

-X256474Y179089D01*

-X255799Y179142D01*

-X255124Y179089D01*

-X254466Y178931D01*

-X253841Y178672D01*

-X253264Y178319D01*

-X252749Y177879D01*

-X252309Y177364D01*

-X251956Y176787D01*

-X251938Y176745D01*

-Y181684D01*

-G37*

-G36*

-Y225845D02*X252176D01*

-X252223Y225841D01*

-X252411Y225856D01*

-X252595Y225900D01*

-X252769Y225972D01*

-X252931Y226071D01*

-X253074Y226194D01*

-X253105Y226230D01*

-X257627Y230751D01*

-X257637Y230764D01*

-X257659Y230783D01*

-X260938Y234062D01*

-Y214274D01*

-X251938Y205274D01*

-Y208695D01*

-X251941Y208694D01*

-X252223Y208717D01*

-X252499Y208783D01*

-X252761Y208891D01*

-X253002Y209039D01*

-X253218Y209223D01*

-X253402Y209439D01*

-X253550Y209680D01*

-X253658Y209942D01*

-X253724Y210218D01*

-X253741Y210500D01*

-X253724Y210782D01*

-X253658Y211058D01*

-X253550Y211320D01*

-X253402Y211561D01*

-X253218Y211777D01*

-X253002Y211961D01*

-X252761Y212109D01*

-X252499Y212217D01*

-X252223Y212283D01*

-X251941Y212306D01*

-X251938Y212305D01*

-Y225845D01*

-G37*

-G36*

-X243938Y170946D02*X244466Y170727D01*

-X245124Y170569D01*

-X245799Y170516D01*

-X246474Y170569D01*

-X247132Y170727D01*

-X247757Y170986D01*

-X248334Y171339D01*

-X248849Y171779D01*

-X249289Y172294D01*

-X249642Y172871D01*

-X249901Y173496D01*

-X250059Y174154D01*

-X250099Y174829D01*

-X250059Y175504D01*

-X249901Y176162D01*

-X249642Y176787D01*

-X249289Y177364D01*

-X248849Y177879D01*

-X248334Y178319D01*

-X247757Y178672D01*

-X247504Y178777D01*

-X248534D01*

-X248581Y178773D01*

-X248769Y178788D01*

-X248769Y178788D01*

-X248769Y178788D01*

-X248895Y178818D01*

-X248953Y178832D01*

-X248953Y178832D01*

-X248953Y178832D01*

-X249061Y178877D01*

-X249127Y178904D01*

-X249127Y178904D01*

-X249127Y178904D01*

-X249231Y178968D01*

-X249288Y179003D01*

-X249288Y179003D01*

-X249289Y179003D01*

-X249432Y179126D01*

-X249463Y179162D01*

-X251729Y181427D01*

-X251765Y181458D01*

-X251887Y181600D01*

-X251888Y181601D01*

-X251888Y181601D01*

-X251888Y181601D01*

-X251931Y181671D01*

-X251938Y181684D01*

-Y176745D01*

-X251697Y176162D01*

-X251539Y175504D01*

-X251486Y174829D01*

-X251539Y174154D01*

-X251697Y173496D01*

-X251938Y172913D01*

-Y169500D01*

-X243938D01*

-Y170946D01*

-G37*

-G36*

-Y178777D02*X244094D01*

-X243938Y178712D01*

-Y178777D01*

-G37*

-G36*

-Y225845D02*X251938D01*

-Y212305D01*

-X251659Y212283D01*

-X251383Y212217D01*

-X251121Y212109D01*

-X250880Y211961D01*

-X250664Y211777D01*

-X250480Y211561D01*

-X250332Y211320D01*

-X250224Y211058D01*

-X250158Y210782D01*

-X250135Y210500D01*

-X250158Y210218D01*

-X250224Y209942D01*

-X250332Y209680D01*

-X250480Y209439D01*

-X250664Y209223D01*

-X250880Y209039D01*

-X251121Y208891D01*

-X251383Y208783D01*

-X251659Y208717D01*

-X251938Y208695D01*

-Y205274D01*

-X243938Y197274D01*

-Y200195D01*

-X243941Y200194D01*

-X244223Y200217D01*

-X244499Y200283D01*

-X244761Y200391D01*

-X245002Y200539D01*

-X245218Y200723D01*

-X245402Y200939D01*

-X245550Y201180D01*

-X245658Y201442D01*

-X245724Y201718D01*

-X245741Y202000D01*

-X245724Y202282D01*

-X245658Y202558D01*

-X245550Y202820D01*

-X245402Y203061D01*

-X245218Y203277D01*

-X245002Y203461D01*

-X244761Y203609D01*

-X244499Y203717D01*

-X244223Y203783D01*

-X243941Y203806D01*

-X243938Y203805D01*

-Y225845D01*

-G37*

-G36*

-X215792Y180516D02*X215799Y180516D01*

-X216474Y180569D01*

-X217132Y180727D01*

-X217674Y180951D01*

-X219463Y179162D01*

-X219494Y179126D01*

-X219637Y179003D01*

-X219637Y179003D01*

-X219799Y178904D01*

-X219973Y178832D01*

-X220157Y178788D01*

-X220345Y178773D01*

-X220392Y178777D01*

-X224094D01*

-X223841Y178672D01*

-X223264Y178319D01*

-X222749Y177879D01*

-X222309Y177364D01*

-X221956Y176787D01*

-X221697Y176162D01*

-X221539Y175504D01*

-X221486Y174829D01*

-X221539Y174154D01*

-X221697Y173496D01*

-X221956Y172871D01*

-X222309Y172294D01*

-X222749Y171779D01*

-X223264Y171339D01*

-X223841Y170986D01*

-X224466Y170727D01*

-X225124Y170569D01*

-X225799Y170516D01*

-X226474Y170569D01*

-X227132Y170727D01*

-X227757Y170986D01*

-X228334Y171339D01*

-X228849Y171779D01*

-X229289Y172294D01*

-X229642Y172871D01*

-X229901Y173496D01*

-X230059Y174154D01*

-X230099Y174829D01*

-X230059Y175504D01*

-X229901Y176162D01*

-X229642Y176787D01*

-X229289Y177364D01*

-X228849Y177879D01*

-X228334Y178319D01*

-X227757Y178672D01*

-X227504Y178777D01*

-X233567D01*

-X233567Y178777D01*

-X234094D01*

-X233841Y178672D01*

-X233264Y178319D01*

-X232749Y177879D01*

-X232309Y177364D01*

-X231956Y176787D01*

-X231697Y176162D01*

-X231539Y175504D01*

-X231486Y174829D01*

-X231539Y174154D01*

-X231697Y173496D01*

-X231956Y172871D01*

-X232309Y172294D01*

-X232749Y171779D01*

-X233264Y171339D01*

-X233841Y170986D01*

-X234466Y170727D01*

-X235124Y170569D01*

-X235799Y170516D01*

-X236474Y170569D01*

-X237132Y170727D01*

-X237757Y170986D01*

-X238334Y171339D01*

-X238849Y171779D01*

-X239289Y172294D01*

-X239642Y172871D01*

-X239901Y173496D01*

-X240059Y174154D01*

-X240099Y174829D01*

-X240059Y175504D01*

-X239901Y176162D01*

-X239642Y176787D01*

-X239289Y177364D01*

-X238849Y177879D01*

-X238334Y178319D01*

-X237757Y178672D01*

-X237504Y178777D01*

-X243938D01*

-Y178712D01*

-X243841Y178672D01*

-X243264Y178319D01*

-X242749Y177879D01*

-X242309Y177364D01*

-X241956Y176787D01*

-X241697Y176162D01*

-X241539Y175504D01*

-X241486Y174829D01*

-X241539Y174154D01*

-X241697Y173496D01*

-X241956Y172871D01*

-X242309Y172294D01*

-X242749Y171779D01*

-X243264Y171339D01*

-X243841Y170986D01*

-X243938Y170946D01*

-Y169500D01*

-X215792D01*

-Y170516D01*

-X215799Y170516D01*

-X216474Y170569D01*

-X217132Y170727D01*

-X217757Y170986D01*

-X218334Y171339D01*

-X218849Y171779D01*

-X219289Y172294D01*

-X219642Y172871D01*

-X219901Y173496D01*

-X220059Y174154D01*

-X220099Y174829D01*

-X220059Y175504D01*

-X219901Y176162D01*

-X219642Y176787D01*

-X219289Y177364D01*

-X218849Y177879D01*

-X218334Y178319D01*

-X217757Y178672D01*

-X217132Y178931D01*

-X216474Y179089D01*

-X215799Y179142D01*

-X215792Y179142D01*

-Y180516D01*

-G37*

-G36*

-X235792Y223699D02*X237938Y225845D01*

-X243938D01*

-Y203805D01*

-X243659Y203783D01*

-X243383Y203717D01*

-X243121Y203609D01*

-X242880Y203461D01*

-X242664Y203277D01*

-X242480Y203061D01*

-X242332Y202820D01*

-X242224Y202558D01*

-X242158Y202282D01*

-X242135Y202000D01*

-X242158Y201718D01*

-X242224Y201442D01*

-X242332Y201180D01*

-X242480Y200939D01*

-X242664Y200723D01*

-X242880Y200539D01*

-X243121Y200391D01*

-X243383Y200283D01*

-X243659Y200217D01*

-X243938Y200195D01*

-Y197274D01*

-X238686Y192022D01*

-X235792D01*

-Y193016D01*

-X235799Y193016D01*

-X236474Y193069D01*

-X237132Y193227D01*

-X237757Y193486D01*

-X238334Y193839D01*

-X238849Y194279D01*

-X239289Y194794D01*

-X239642Y195371D01*

-X239901Y195996D01*

-X240059Y196654D01*

-X240099Y197329D01*

-X240059Y198004D01*

-X239901Y198662D01*

-X239642Y199287D01*

-X239289Y199864D01*

-X238849Y200379D01*

-X238334Y200819D01*

-X237757Y201172D01*

-X237132Y201431D01*

-X236474Y201589D01*

-X235799Y201642D01*

-X235792Y201642D01*

-Y223699D01*

-G37*

-G36*

-X225792Y213699D02*X235792Y223699D01*

-Y201642D01*

-X235124Y201589D01*

-X234466Y201431D01*

-X233841Y201172D01*

-X233264Y200819D01*

-X232749Y200379D01*

-X232309Y199864D01*

-X231956Y199287D01*

-X231697Y198662D01*

-X231539Y198004D01*

-X231486Y197329D01*

-X231539Y196654D01*

-X231697Y195996D01*

-X231956Y195371D01*

-X232309Y194794D01*

-X232749Y194279D01*

-X233264Y193839D01*

-X233841Y193486D01*

-X234466Y193227D01*

-X235124Y193069D01*

-X235792Y193016D01*

-Y192022D01*

-X231887D01*

-X231840Y192026D01*

-X231652Y192011D01*

-X231468Y191967D01*

-X231294Y191895D01*

-X231132Y191796D01*

-X231132Y191796D01*

-X230989Y191673D01*

-X230958Y191637D01*

-X227903Y188583D01*

-X227757Y188672D01*

-X227132Y188931D01*

-X226474Y189089D01*

-X225799Y189142D01*

-X225792Y189142D01*

-Y193016D01*

-X225799Y193016D01*

-X226474Y193069D01*

-X227132Y193227D01*

-X227757Y193486D01*

-X228334Y193839D01*

-X228849Y194279D01*

-X229289Y194794D01*

-X229642Y195371D01*

-X229901Y195996D01*

-X230059Y196654D01*

-X230099Y197329D01*

-X230059Y198004D01*

-X229901Y198662D01*

-X229642Y199287D01*

-X229289Y199864D01*

-X228849Y200379D01*

-X228334Y200819D01*

-X227757Y201172D01*

-X227132Y201431D01*

-X226474Y201589D01*

-X225799Y201642D01*

-X225792Y201642D01*

-Y213699D01*

-G37*

-G36*

-X218349Y206800D02*X218396Y206796D01*

-X218584Y206811D01*

-X218584Y206811D01*

-X218768Y206855D01*

-X218942Y206927D01*

-X219104Y207026D01*

-X219247Y207149D01*

-X219278Y207185D01*

-X225792Y213699D01*

-Y201642D01*

-X225124Y201589D01*

-X224466Y201431D01*

-X223841Y201172D01*

-X223264Y200819D01*

-X222749Y200379D01*

-X222309Y199864D01*

-X221956Y199287D01*

-X221697Y198662D01*

-X221539Y198004D01*

-X221486Y197329D01*

-X221539Y196654D01*

-X221697Y195996D01*

-X221956Y195371D01*

-X222309Y194794D01*

-X222749Y194279D01*

-X223264Y193839D01*

-X223841Y193486D01*

-X224466Y193227D01*

-X225124Y193069D01*

-X225792Y193016D01*

-Y189142D01*

-X225124Y189089D01*

-X224466Y188931D01*

-X223841Y188672D01*

-X223264Y188319D01*

-X222749Y187879D01*

-X222309Y187364D01*

-X221956Y186787D01*

-X221697Y186162D01*

-X221539Y185504D01*

-X221486Y184829D01*

-X221539Y184154D01*

-X221697Y183496D01*

-X221956Y182871D01*

-X222309Y182294D01*

-X222749Y181779D01*

-X223264Y181339D01*

-X223529Y181177D01*

-X220842D01*

-X219454Y182565D01*

-X219642Y182871D01*

-X219901Y183496D01*

-X220059Y184154D01*

-X220099Y184829D01*

-X220059Y185504D01*

-X219901Y186162D01*

-X219642Y186787D01*

-X219289Y187364D01*

-X218849Y187879D01*

-X218334Y188319D01*

-X217757Y188672D01*

-X217132Y188931D01*

-X216474Y189089D01*

-X215799Y189142D01*

-X215792Y189142D01*

-Y193016D01*

-X215799Y193016D01*

-X216474Y193069D01*

-X217132Y193227D01*

-X217757Y193486D01*

-X218334Y193839D01*

-X218849Y194279D01*

-X219289Y194794D01*

-X219642Y195371D01*

-X219901Y195996D01*

-X220059Y196654D01*

-X220099Y197329D01*

-X220059Y198004D01*

-X219901Y198662D01*

-X219642Y199287D01*

-X219289Y199864D01*

-X218849Y200379D01*

-X218334Y200819D01*

-X217757Y201172D01*

-X217132Y201431D01*

-X216474Y201589D01*

-X215799Y201642D01*

-X215792Y201642D01*

-Y206800D01*

-X218349D01*

-G37*

-G36*

-X215792Y189142D02*X215124Y189089D01*

-X214466Y188931D01*

-X213841Y188672D01*

-X213264Y188319D01*

-X212749Y187879D01*

-X212309Y187364D01*

-X211956Y186787D01*

-X211697Y186162D01*

-X211539Y185504D01*

-X211486Y184829D01*

-X211539Y184154D01*

-X211697Y183496D01*

-X211956Y182871D01*

-X212309Y182294D01*

-X212749Y181779D01*

-X213264Y181339D01*

-X213841Y180986D01*

-X214466Y180727D01*

-X215124Y180569D01*

-X215792Y180516D01*

-Y179142D01*

-X215124Y179089D01*

-X214466Y178931D01*

-X213841Y178672D01*

-X213264Y178319D01*

-X212749Y177879D01*

-X212309Y177364D01*

-X211956Y176787D01*

-X211697Y176162D01*

-X211539Y175504D01*

-X211486Y174829D01*

-X211539Y174154D01*

-X211697Y173496D01*

-X211956Y172871D01*

-X212309Y172294D01*

-X212749Y171779D01*

-X213264Y171339D01*

-X213841Y170986D01*

-X214466Y170727D01*

-X215124Y170569D01*

-X215792Y170516D01*

-Y169500D01*

-X211441D01*

-Y206800D01*

-X215792D01*

-Y201642D01*

-X215124Y201589D01*

-X214466Y201431D01*

-X213841Y201172D01*

-X213264Y200819D01*

-X212749Y200379D01*

-X212309Y199864D01*

-X211956Y199287D01*

-X211697Y198662D01*

-X211539Y198004D01*

-X211486Y197329D01*

-X211539Y196654D01*

-X211697Y195996D01*

-X211956Y195371D01*

-X212309Y194794D01*

-X212749Y194279D01*

-X213264Y193839D01*

-X213841Y193486D01*

-X214466Y193227D01*

-X215124Y193069D01*

-X215792Y193016D01*

-Y189142D01*

-G37*

-G36*

-X80441Y248000D02*X109941D01*

-Y266500D01*

-X121941Y278500D01*

-X165941D01*

-Y237000D01*

-X80441D01*

-Y248000D01*

-G37*

-G36*

-X74941Y235000D02*X90441D01*

-Y225000D01*

-X74941D01*

-Y235000D01*

-G37*

-G36*

-X100441D02*X115941D01*

-Y225000D01*

-X100441D01*

-Y235000D01*

-G37*

-G36*

-X112441D02*X127941D01*

-Y225000D01*

-X112441D01*

-Y235000D01*

-G37*

-G36*

-X117441D02*X132941Y234500D01*

-Y225000D01*

-X117441D01*

-Y235000D01*

-G37*

-G36*

-Y232500D02*X132941D01*

-Y222500D01*

-X117441D01*

-Y232500D01*

-G37*

-G36*

-X114941Y223000D02*X130441D01*

-Y213000D01*

-X114941D01*

-Y223000D01*

-G37*

-G36*

-X116441Y217500D02*X131941D01*

-Y207500D01*

-X116441D01*

-Y217500D01*

-G37*

-G36*

-X136592Y208393D02*X146455D01*

-Y189940D01*

-X136592D01*

-Y208393D01*

-G37*

-G36*

-X159441Y233000D02*X168441D01*

-Y219000D01*

-X171941Y215500D01*

-Y195000D01*

-X167441Y190500D01*

-X153441D01*

-Y201500D01*

-X160941D01*

-Y208500D01*

-X162441Y210000D01*

-Y218000D01*

-X159441Y221000D01*

-Y233000D01*

-G37*

-G36*

-X116441Y224000D02*X131941D01*

-Y214000D01*

-X116441D01*

-Y224000D01*

-G37*

-G36*

-X99941D02*X115441D01*

-Y214000D01*

-X99941D01*

-Y224000D01*

-G37*

-G36*

-X85784Y194500D02*X101441D01*

-Y155500D01*

-X85784D01*

-Y169749D01*

-X85799Y169748D01*

-X87376Y169872D01*

-X88914Y170241D01*

-X90376Y170847D01*

-X91724Y171673D01*

-X92927Y172701D01*

-X93955Y173904D01*

-X94781Y175252D01*

-X95387Y176714D01*

-X95756Y178252D01*

-X95849Y179829D01*

-X95756Y181406D01*

-X95387Y182944D01*

-X94781Y184406D01*

-X93955Y185754D01*

-X92927Y186957D01*

-X91724Y187985D01*

-X90376Y188811D01*

-X88914Y189417D01*

-X87376Y189786D01*

-X85799Y189910D01*

-X85784Y189909D01*

-Y194500D01*

-G37*

-G36*

-X69941D02*X85784D01*

-Y189909D01*

-X84222Y189786D01*

-X82684Y189417D01*

-X81222Y188811D01*

-X79874Y187985D01*

-X78671Y186957D01*

-X77643Y185754D01*

-X76817Y184406D01*

-X76211Y182944D01*

-X75842Y181406D01*

-X75718Y179829D01*

-X75842Y178252D01*

-X76211Y176714D01*

-X76817Y175252D01*

-X77643Y173904D01*

-X78671Y172701D01*

-X79874Y171673D01*

-X81222Y170847D01*

-X82684Y170241D01*

-X84222Y169872D01*

-X85784Y169749D01*

-Y155500D01*

-X69941D01*

-Y194500D01*

-G37*

-G36*

-X102941Y228002D02*X113042Y228010D01*

-X113195Y228047D01*

-X113340Y228107D01*

-X113475Y228189D01*

-X113571Y228272D01*

-X113667Y228189D01*

-X113802Y228107D01*

-X113947Y228047D01*

-X114100Y228010D01*

-X114257Y228001D01*

-X125042Y228010D01*

-X125195Y228047D01*

-X125340Y228107D01*

-X125475Y228189D01*

-X125594Y228292D01*

-X125697Y228411D01*

-X125779Y228546D01*

-X125839Y228691D01*

-X125876Y228844D01*

-X125885Y229001D01*

-X125876Y234276D01*

-X125839Y234429D01*

-X125779Y234574D01*

-X125697Y234709D01*

-X125594Y234828D01*

-X125475Y234931D01*

-X125458Y234941D01*

-X132941Y235000D01*

-X132922Y233953D01*

-X132850Y233971D01*

-X132693Y233980D01*

-X129032Y233971D01*

-X128879Y233934D01*

-X128734Y233874D01*

-X128599Y233792D01*

-X128480Y233689D01*

-X128377Y233570D01*

-X128295Y233435D01*

-X128235Y233290D01*

-X128198Y233137D01*

-X128189Y232980D01*

-X128198Y223020D01*

-X128203Y223000D01*

-Y219972D01*

-X128165Y219928D01*

-X128083Y219793D01*

-X128023Y219648D01*

-X127986Y219495D01*

-X127977Y219338D01*

-X127986Y215245D01*

-X128023Y215092D01*

-X128083Y214947D01*

-X128165Y214812D01*

-X128203Y214768D01*

-Y213972D01*

-X128165Y213928D01*

-X128083Y213793D01*

-X128023Y213648D01*

-X127986Y213495D01*

-X127977Y213338D01*

-X127986Y209245D01*

-X128023Y209092D01*

-X128083Y208947D01*

-X128165Y208812D01*

-X128268Y208693D01*

-X128387Y208590D01*

-X128522Y208508D01*

-X128667Y208448D01*

-X128820Y208411D01*

-X128977Y208402D01*

-X132086Y208411D01*

-X132239Y208448D01*

-X132384Y208508D01*

-X132460Y208555D01*

-X132441Y207500D01*

-X116441D01*

-X102941Y194000D01*

-Y202250D01*

-X104441D01*

-X104794Y202271D01*

-X105138Y202354D01*

-X105466Y202489D01*

-X105768Y202674D01*

-X106037Y202904D01*

-X106267Y203173D01*

-X106452Y203475D01*

-X106587Y203803D01*

-X106670Y204147D01*

-X106698Y204500D01*

-X106670Y204853D01*

-X106587Y205197D01*

-X106452Y205525D01*

-X106267Y205827D01*

-X106037Y206096D01*

-X105768Y206326D01*

-X105466Y206511D01*

-X105138Y206646D01*

-X104794Y206729D01*

-X104441Y206750D01*

-X102941D01*

-Y208969D01*

-X105066Y208974D01*

-X105219Y209011D01*

-X105364Y209071D01*

-X105499Y209153D01*

-X105618Y209256D01*

-X105721Y209375D01*

-X105803Y209510D01*

-X105863Y209655D01*

-X105900Y209808D01*

-X105909Y209965D01*

-X105900Y213074D01*

-X105863Y213227D01*

-X105803Y213372D01*

-X105721Y213507D01*

-X105618Y213626D01*

-X105499Y213729D01*

-X105364Y213811D01*

-X105219Y213871D01*

-X105066Y213908D01*

-X104909Y213917D01*

-X102941Y213913D01*

-Y214087D01*

-X105066Y214092D01*

-X105219Y214129D01*

-X105364Y214189D01*

-X105499Y214271D01*

-X105618Y214374D01*

-X105721Y214493D01*

-X105803Y214628D01*

-X105863Y214773D01*

-X105900Y214926D01*

-X105909Y215083D01*

-X105900Y218192D01*

-X105863Y218345D01*

-X105803Y218490D01*

-X105721Y218625D01*

-X105618Y218744D01*

-X105499Y218847D01*

-X105364Y218929D01*

-X105219Y218989D01*

-X105066Y219026D01*

-X104909Y219035D01*

-X102941Y219031D01*

-Y228002D01*

-G37*

-G36*

-Y206750D02*X99884D01*

-X99884Y207173D01*

-X99847Y207326D01*

-X99787Y207471D01*

-X99705Y207606D01*

-X99602Y207725D01*

-X99483Y207828D01*

-X99348Y207910D01*

-X99203Y207970D01*

-X99078Y208000D01*

-X99203Y208030D01*

-X99348Y208090D01*

-X99483Y208172D01*

-X99602Y208275D01*

-X99705Y208394D01*

-X99787Y208529D01*

-X99847Y208674D01*

-X99884Y208827D01*

-X99893Y208984D01*

-X99892Y209293D01*

-X100232D01*

-X100264Y209256D01*

-X100383Y209153D01*

-X100518Y209071D01*

-X100663Y209011D01*

-X100816Y208974D01*

-X100973Y208965D01*

-X102941Y208969D01*

-Y206750D01*

-G37*

-G36*

-X85434Y225236D02*X85441Y225235D01*

-X86186Y225294D01*

-X86913Y225469D01*

-X87604Y225755D01*

-X88242Y226145D01*

-X88810Y226631D01*

-X89296Y227199D01*

-X89686Y227837D01*

-X89972Y228528D01*

-X90147Y229255D01*

-X90191Y230000D01*

-X90147Y230745D01*

-X89972Y231472D01*

-X89686Y232163D01*

-X89296Y232801D01*

-X88810Y233369D01*

-X88242Y233855D01*

-X87604Y234245D01*

-X86913Y234531D01*

-X86497Y234631D01*

-X101481Y234750D01*

-X101445Y234709D01*

-X101363Y234574D01*

-X101303Y234429D01*

-X101266Y234276D01*

-X101257Y234119D01*

-X101266Y228844D01*

-X101303Y228691D01*

-X101363Y228546D01*

-X101445Y228411D01*

-X101548Y228292D01*

-X101667Y228189D01*

-X101802Y228107D01*

-X101947Y228047D01*

-X102100Y228010D01*

-X102257Y228001D01*

-X102941Y228002D01*

-Y219031D01*

-X100816Y219026D01*

-X100663Y218989D01*

-X100518Y218929D01*

-X100383Y218847D01*

-X100264Y218744D01*

-X100161Y218625D01*

-X100079Y218490D01*

-X100019Y218345D01*

-X99982Y218192D01*

-X99973Y218035D01*

-X99982Y214926D01*

-X100019Y214773D01*

-X100079Y214628D01*

-X100161Y214493D01*

-X100264Y214374D01*

-X100383Y214271D01*

-X100518Y214189D01*

-X100663Y214129D01*

-X100816Y214092D01*

-X100973Y214083D01*

-X102941Y214087D01*

-Y213913D01*

-X100816Y213908D01*

-X100663Y213871D01*

-X100518Y213811D01*

-X100489Y213793D01*

-X99885D01*

-X99884Y214259D01*

-X99847Y214412D01*

-X99787Y214557D01*

-X99705Y214692D01*

-X99602Y214811D01*

-X99483Y214914D01*

-X99348Y214996D01*

-X99203Y215056D01*

-X99050Y215093D01*

-X98893Y215102D01*

-X92832Y215093D01*

-X92679Y215056D01*

-X92534Y214996D01*

-X92399Y214914D01*

-X92280Y214811D01*

-X92177Y214692D01*

-X92095Y214557D01*

-X92035Y214412D01*

-X91998Y214259D01*

-X91989Y214102D01*

-X91998Y208827D01*

-X92035Y208674D01*

-X92095Y208529D01*

-X92177Y208394D01*

-X92280Y208275D01*

-X92399Y208172D01*

-X92534Y208090D01*

-X92679Y208030D01*

-X92804Y208000D01*

-X92679Y207970D01*

-X92534Y207910D01*

-X92399Y207828D01*

-X92280Y207725D01*

-X92177Y207606D01*

-X92095Y207471D01*

-X92035Y207326D01*

-X91998Y207173D01*

-X91989Y207016D01*

-X91998Y201741D01*

-X92035Y201588D01*

-X92095Y201443D01*

-X92177Y201308D01*

-X92280Y201189D01*

-X92399Y201086D01*

-X92534Y201004D01*

-X92679Y200944D01*

-X92832Y200907D01*

-X92989Y200898D01*

-X99050Y200907D01*

-X99203Y200944D01*

-X99348Y201004D01*

-X99483Y201086D01*

-X99602Y201189D01*

-X99705Y201308D01*

-X99787Y201443D01*

-X99847Y201588D01*

-X99884Y201741D01*

-X99893Y201898D01*

-X99892Y202250D01*

-X102941D01*

-Y194000D01*

-X101941Y193000D01*

-Y192500D01*

-X85434D01*

-Y215236D01*

-X85441Y215235D01*

-X86186Y215294D01*

-X86913Y215469D01*

-X87604Y215755D01*

-X88242Y216145D01*

-X88810Y216631D01*

-X89296Y217199D01*

-X89686Y217837D01*

-X89972Y218528D01*

-X90147Y219255D01*

-X90191Y220000D01*

-X90147Y220745D01*

-X89972Y221472D01*

-X89686Y222163D01*

-X89296Y222801D01*

-X88810Y223369D01*

-X88242Y223855D01*

-X87604Y224245D01*

-X86913Y224531D01*

-X86186Y224706D01*

-X85441Y224765D01*

-X85434Y224764D01*

-Y225236D01*

-G37*

-G36*

-X69941Y234500D02*X84313Y234614D01*

-X83969Y234531D01*

-X83278Y234245D01*

-X82640Y233855D01*

-X82072Y233369D01*

-X81586Y232801D01*

-X81196Y232163D01*

-X80910Y231472D01*

-X80735Y230745D01*

-X80676Y230000D01*

-X80735Y229255D01*

-X80910Y228528D01*

-X81196Y227837D01*

-X81586Y227199D01*

-X82072Y226631D01*

-X82640Y226145D01*

-X83278Y225755D01*

-X83969Y225469D01*

-X84696Y225294D01*

-X85434Y225236D01*

-Y224764D01*

-X84696Y224706D01*

-X83969Y224531D01*

-X83278Y224245D01*

-X82640Y223855D01*

-X82072Y223369D01*

-X81586Y222801D01*

-X81196Y222163D01*

-X80910Y221472D01*

-X80735Y220745D01*

-X80676Y220000D01*

-X80735Y219255D01*

-X80910Y218528D01*

-X81196Y217837D01*

-X81586Y217199D01*

-X82072Y216631D01*

-X82640Y216145D01*

-X83278Y215755D01*

-X83969Y215469D01*

-X84696Y215294D01*

-X85434Y215236D01*

-Y192500D01*

-X69941D01*

-Y234500D01*

-G37*

-G54D181*X371215Y358262D02*X371157D01*

-X387623D02*X371287D01*

-X379941Y355000D02*X370441D01*

-X384162Y344917D02*Y350779D01*

-X379044Y340311D02*Y336000D01*

-X381603Y342614D02*Y338000D01*

-X384162Y350779D02*X379941Y355000D01*

-X386720Y353721D02*X385941Y354500D01*

-X381603Y338000D02*X391838D01*

-X376485Y347145D02*X372441Y351189D01*

-X376485Y342614D02*Y347145D01*

-X389279Y342614D02*Y355913D01*

-X386720Y342614D02*Y353721D01*

-X458441Y375000D02*X456641D01*

-Y373200D01*

-X448750D01*

-Y349250D01*

-X458441Y345000D02*X456641D01*

-Y336000D01*

-X448750Y330300D02*X376485D01*

-X448750D02*Y322775D01*

-X376485Y330300D02*Y325219D01*

-X456641Y336000D02*X379044D01*

-X402250Y323839D02*X391838D01*

-X458441Y316800D02*Y315000D01*

-Y316800D02*X458250D01*

-D03*

-X448750D01*

-Y328750D02*Y316800D01*

-X391838Y323839D02*Y321689D01*

-X394397Y319386D02*Y315434D01*

-X379044Y319386D02*Y324000D01*

-X379441Y312000D02*X370441D01*

-X381603Y314162D02*X379441Y312000D01*

-X381044Y326000D02*X387441D01*

-X379044Y324000D02*X381044Y326000D01*

-X389279Y319386D02*Y324162D01*

-X387441Y326000D02*X389279Y324162D01*

-X381603Y321689D02*Y314162D01*

-X376485Y328750D02*Y321689D01*

-X402250Y323839D02*Y317434D01*

-X395831Y314000D02*X398441D01*

-G54D182*X387172Y312000D02*X386720Y312452D01*

-Y319386D01*

-G54D181*X448750Y349250D02*X394397D01*

-X391838Y338000D02*Y353397D01*

-X394397Y349250D02*Y344917D01*

-X393441Y365941D02*X396441D01*

-X397941Y367441D01*

-X397441Y373000D02*X395441D01*

-X393441Y371000D01*

-X389279Y356605D02*X387623Y358262D01*

-X389279Y356005D02*Y356605D01*

-X391838Y353397D02*X393441Y355000D01*

-G54D182*Y358500D01*

-X385941Y366000D02*X393441Y358500D01*

-X306581Y273940D02*X307716Y275075D01*

-X305390Y270003D02*X308872Y266522D01*

-X297976Y273940D02*X306581D01*

-X297976Y271971D02*X308992D01*

-X297976Y270003D02*X305390D01*

-X297976Y287719D02*X295178D01*

-X297976Y279845D02*X296286D01*

-X294441Y278000D01*

-X295259Y287719D02*X293902Y286362D01*

-Y282263D01*

-X294482Y268095D02*Y265543D01*

-X297976Y266066D02*X301042Y263000D01*

-X318441D01*

-X294482Y265543D02*X298803Y261222D01*

-X317755D01*

-X313869Y257572D02*X299592D01*

-X294164Y263000D01*

-G54D181*X295489Y226192D02*X312917D01*

-X284130Y237551D02*X295489Y226192D01*

-X296103Y228124D02*X312620D01*

-X286099Y238128D02*X296103Y228124D01*

-X284130Y260093D02*Y237551D01*

-X286099Y260093D02*Y238128D01*

-G54D182*X280193Y251547D02*Y258394D01*

-X282162Y260093D02*Y248149D01*

-X279206Y245193D02*Y230234D01*

-X292004Y260093D02*X294441D01*

-X274802Y246156D02*X280193Y251547D01*

-X282162Y248149D02*X279206Y245193D01*

-X296748Y252388D02*Y253650D01*

-Y247270D02*Y245000D01*

-X296662Y244914D01*

-X290441D01*

-X295937D02*Y243628D01*

-X294348Y260093D02*X296748Y257693D01*

-Y253693D01*

-X290048Y252000D02*Y258394D01*

-X289441Y263000D02*X288067Y261626D01*

-Y258394D01*

-X279890Y282687D02*X294482Y268095D01*

-X294164Y263000D02*X289441D01*

-X318441D02*X332441Y249000D01*

-X317755Y261222D02*X327407Y251570D01*

-Y246410D01*

-X330486Y243331D01*

-X313869Y257572D02*X322441Y249000D01*

-X262477Y260093D02*Y253536D01*

-X264445Y260093D02*Y251504D01*

-X266414Y260093D02*X266441Y249500D01*

-X274802Y246156D02*Y226441D01*

-X256810Y231631D02*X269982Y244804D01*

-X268382Y260093D02*Y246941D01*

-X274288Y260093D02*Y255819D01*

-X269982Y251513D01*

-Y244804D01*

-X257443Y270002D02*X261210Y266235D01*

-X263795D01*

-X266978Y269418D01*

-X288066Y300735D02*X289428Y299372D01*

-X286098Y300431D02*X288774Y297755D01*

-X288066Y304963D02*Y300735D01*

-X286098Y304963D02*Y300440D01*

-Y300614D02*Y300440D01*

-Y300475D02*Y300431D01*

-X278224Y304963D02*Y298517D01*

-X276255Y304963D02*Y307300D01*

-X277174Y308219D01*

-X266413Y304963D02*Y296594D01*

-X264444Y304963D02*Y298992D01*

-Y299125D02*X263240Y297921D01*

-X262476Y304963D02*X260740Y303227D01*

-Y293329D01*

-X258841Y290090D02*Y302100D01*

-X260740Y293329D02*X262240Y291829D01*

-X262740D01*

-X253106Y295592D02*X254740Y297226D01*

-Y298329D01*

-X263240Y297921D02*Y295329D01*

-X270351Y295943D02*Y297933D01*

-X272319Y295594D02*Y297672D01*

-X270351Y297933D02*X269653Y298631D01*

-X272319Y297672D02*X273229Y298582D01*

-X253106Y270002D02*X257334D01*

-X261609Y279844D02*X264034Y282269D01*

-X266978Y286653D02*X262278D01*

-X258841Y290090D01*

-X274287Y304963D02*Y317689D01*

-X275887Y312972D02*Y318352D01*

-X280192Y308667D02*X275887Y312972D01*

-X278941Y328992D02*Y313000D01*

-X282161Y309780D01*

-Y303264D01*

-X278941Y328008D02*Y337500D01*

-X280119Y338678D01*

-X285430D01*

-X277449Y342559D02*Y347500D01*

-G54D183*X260839Y342992D02*X260347Y342500D01*

-X265957Y349992D02*Y342500D01*

-Y349992D02*X266449Y349500D01*

-X270441D01*

-X265957Y342500D02*X266000Y342457D01*

-Y335500D01*

-X265957Y342008D02*X266449Y342500D01*

-X270441D01*

-X266000Y335992D02*X266008Y336000D01*

-X270441D01*

-X266000Y356992D02*Y349500D01*

-Y356992D02*X270441D01*

-G54D182*X270708Y321267D02*X264708D01*

-X271118Y323121D02*X261394D01*

-X260568Y322295D01*

-X264708Y321267D02*X263441Y320000D01*

-X260568Y322295D02*Y316997D01*

-X265196Y317738D02*X260348Y312890D01*

-X257209D01*

-X254546Y315552D01*

-Y323347D01*

-X264382Y310492D02*X261502Y307612D01*

-X268381Y305826D02*X264382Y309825D01*

-Y310000D01*

-X261502Y307612D02*Y307367D01*

-X274287Y317689D02*X270726Y321249D01*

-X272318Y315385D02*X269965Y317738D01*

-X265196D01*

-X270350Y304963D02*Y309150D01*

-X269500Y310000D01*

-Y310492D02*X268941Y311051D01*

-Y314000D01*

-X272318Y304963D02*Y315385D01*

-X268381Y304963D02*Y305826D01*

-X303365Y324772D02*Y330000D01*

-X296453Y340007D02*X302941D01*

-X339837Y341827D02*X349316D01*

-X358050Y350561D01*

-X353390Y339521D02*X360933Y347064D01*

-Y352336D01*

-X358050Y350561D02*Y353251D01*

-X363061Y358262D01*

-X360933Y352336D02*X363598Y355000D01*

-X371157Y358262D02*X363061D01*

-X370441Y355000D02*X363598D01*

-X307462Y300156D02*X312157D01*

-X304176Y305229D02*X369319D01*

-X303559Y307000D02*X376441D01*

-X302670Y312000D02*X370441D01*

-X297976Y283782D02*X333399D01*

-X297976Y281814D02*X333104D01*

-X297976Y277877D02*X334778D01*

-X297976Y285751D02*X333942D01*

-X297976Y289688D02*X332396D01*

-X332251Y291656D02*X332761D01*

-X371602Y260228D02*Y245343D01*

-X377944Y239000D01*

-X358441Y252000D02*Y235000D01*

-X363241Y256452D02*Y255546D01*

-X364841Y257243D02*Y256457D01*

-X366441Y257976D02*Y256869D01*

-X358441Y235000D02*X356441Y233000D01*

-X312620Y228124D02*X336441D01*

-X312917Y226192D02*X336441D01*

-Y228124D02*X338441Y230124D01*

-X336441Y226192D02*X338441Y224192D01*

-X330486Y243331D02*X336772D01*

-X342441Y249000D01*

-X398441Y291000D02*X389279Y300162D01*

-Y321689D02*Y300162D01*

-X369319Y305229D02*X401986Y272561D01*

-X387182Y304280D02*X384902Y302000D01*

-X381441D01*

-X387172Y304270D02*Y312000D01*

-X333399Y283782D02*X361641Y255540D01*

-X333104Y281814D02*X360041Y254877D01*

-X334778Y277877D02*X358441Y254214D01*

-Y252000D01*

-X333942Y285751D02*X363241Y256452D01*

-X332396Y289688D02*X364841Y257243D01*

-X332761Y291656D02*X366441Y257976D01*

-X396441Y235000D02*X395441D01*

-X391838Y231397D01*

-X401986Y245532D02*X391461Y235007D01*

-X388207Y247280D02*Y242981D01*

-X392188Y239000D01*

-X401986Y272561D02*Y253764D01*

-Y253878D02*Y245532D01*

-X291991Y307772D02*X298420D01*

-X295931Y299372D02*X297971Y301411D01*

-X296702Y297755D02*X304176Y305229D01*

-X292003Y304963D02*X296779D01*

-X297938Y301378D02*X303559Y307000D01*

-X289428Y299372D02*X295931D01*

-X288774Y297755D02*X296702D01*

-X297976Y295593D02*X302689D01*

-X304230Y299288D02*X305098Y300156D01*

-X303365Y319654D02*X298786D01*

-X296453Y317321D01*

-X294941Y310500D02*X296453Y312012D01*

-Y317321D01*

-X298441Y307772D02*X302670Y312000D01*

-X305098Y300156D02*X307954D01*

-X297976Y291656D02*X332557D01*

-X302689Y295593D02*X304230Y297134D01*

-Y299288D01*

-X305357Y295038D02*X303944Y293625D01*

-X299675D01*

-X305357Y295038D02*X312122D01*

-X290035Y305815D02*X291991Y307772D01*

-X290035Y304963D02*Y305815D01*

-X284129Y304963D02*Y309188D01*

-X285441Y310500D01*

-X294941D01*

-X285430Y318650D02*Y325000D01*

-X275887Y318352D02*X271118Y323121D01*

-X280192Y308667D02*Y300309D01*

-X281692Y298809D01*

-Y293836D01*

-X275876Y288020D01*

-X294441Y278000D02*X288441D01*

-X281441Y285000D01*

-X279441D01*

-X275876Y288020D02*Y284637D01*

-X277826Y282687D01*

-X279890D01*

-X264034Y282269D02*Y282931D01*

-X266978Y269418D02*Y286653D01*

-G54D181*X387425Y186369D02*X385730Y184673D01*

-G54D182*X379833Y188086D02*X383246Y184673D01*

-X385730D01*

-G54D181*X387441Y189962D02*Y186369D01*

-X387479Y190000D02*X387441Y189962D01*

-X386720Y190759D02*X387479Y190000D01*

-X386720Y203689D02*Y190759D01*

-X378441Y195000D02*X376441D01*

-X381603Y198162D02*X378441Y195000D01*

-X381603Y203689D02*Y198162D01*

-G54D182*X379833Y192610D02*Y188086D01*

-G54D181*X384162Y201386D02*Y188000D01*

-G54D182*X366441Y203078D02*X374519Y195000D01*

-X364841Y202092D02*X374323Y192610D01*

-X363241Y201429D02*X377441Y187229D01*

-X361641Y200700D02*X369127Y193214D01*

-G54D183*X353282Y111500D02*X371941D01*

-G54D182*X374519Y195000D02*X376510D01*

-X374323Y192610D02*X379833D01*

-G54D181*X387441Y186369D02*X387425D01*

-X387441D03*

-X391810Y186000D02*X394810Y183000D01*

-X389279Y184162D02*X389441Y184000D01*

-X389279Y187162D02*Y184162D01*

-G54D182*X389441Y184000D02*X398441Y175000D01*

-G54D181*X399882Y188441D02*X395441D01*

-X400441Y189000D02*X399882Y188441D01*

-X400000Y193559D02*X395441D01*

-G54D182*X377441Y187229D02*Y168118D01*

-Y166395D02*X386151Y157685D01*

-X377441Y166395D02*Y168000D01*

-X369127Y171314D03*

-Y169388D02*Y193214D01*

-Y169388D02*X376337Y162178D01*

-X377347D01*

-G54D181*X400441Y194000D02*X400000Y193559D01*

-X391838Y199083D02*Y195535D01*

-X458250Y196800D02*X412250D01*

-X394397Y229250D02*Y226917D01*

-X456641Y225000D02*Y218000D01*

-X458441Y196800D02*Y195000D01*

-Y196800D02*X458250D01*

-D03*

-X456641Y218000D02*X379044D01*

-Y206000D02*X389279D01*

-X379044Y201386D02*Y206000D01*

-X389279Y201386D02*Y206000D01*

-X391838Y224614D02*Y220000D01*

-X391810Y195575D02*Y186000D01*

-X391838Y195603D02*X391810Y195575D01*

-X389279Y203689D02*Y187096D01*

-X412250Y204300D02*Y196800D01*

-Y211300D02*Y197300D01*

-Y211300D02*X389117D01*

-X391973Y197309D02*X391838D01*

-X394441Y200000D02*X400441Y194000D01*

-X401750Y211300D02*X376485D01*

-Y203689D01*

-Y208000D02*Y203689D01*

-X445441Y169109D02*X448750Y165800D01*

-X445441Y181000D02*Y169109D01*

-X443441Y183000D02*X445441Y181000D01*

-X458441Y165800D02*Y164000D01*

-Y165800D02*X458250D01*

-D03*

-X448750D01*

-X394810Y183000D02*X443441D01*

-G54D182*X398441Y175000D02*Y173000D01*

-G54D183*X440941Y123000D02*X398441Y165500D01*

-Y173000D01*

-G54D181*X432000Y72118D02*X434882Y75000D01*

-X432000Y70000D02*Y72118D01*

-X426882Y71559D02*X423441Y75000D01*

-X426882Y70000D02*Y71559D01*

-G54D183*X356823Y71992D02*X356941Y72110D01*

-X376941Y73000D02*X377484Y72457D01*

-X361941Y71992D02*Y81579D01*

-X374549Y58500D02*X382780Y58501D01*

-X382440Y61999D02*Y58501D01*

-X366941Y84728D02*X366882Y84669D01*

-X371941Y84728D02*X372000Y84669D01*

-X366882D02*Y71999D01*

-X372000Y84669D02*Y67602D01*

-X370398Y66000D01*

-X377484Y72457D02*Y66000D01*

-X381941Y84728D02*Y73000D01*

-X370398Y66393D02*X369441Y65436D01*

-X366882Y71507D02*X365467Y70092D01*

-Y68683D01*

-X362284Y65500D01*

-X369441Y65436D02*Y54500D01*

-X372528Y51413D01*

-X374548D01*

-Y58499D02*X374549Y58500D01*

-X371941Y118193D02*Y81579D01*

-X397548Y98042D02*Y102892D01*

-X394941Y105499D01*

-X387441D01*

-X397548Y90956D02*X397941Y90563D01*

-Y84499D01*

-X383441Y63000D02*X382440Y61999D01*

-X386941Y84728D02*Y74499D01*

-X376941Y84728D02*Y72999D01*

-X390441Y70999D02*X390527Y66500D01*

-Y66893D02*X390484Y61087D01*

-X387898Y58501D01*

-X387941Y53500D01*

-X397449Y79381D02*X392567Y74499D01*

-X391941D01*

-X386941D02*X390441Y70999D01*

-X381941Y73000D02*X384398Y70543D01*

-Y66500D01*

-Y66893D02*X383441Y65936D01*

-Y63000D01*

-X374548Y51413D02*X379961Y46000D01*

-X381536D01*

-G54D181*X381441Y302000D02*X376441Y307000D01*

-X458441Y254000D02*X456641D01*

-Y252200D01*

-X448750D01*

-Y229250D01*

-X458441Y225000D02*X456641D01*

-X379044Y222311D02*Y218000D01*

-X386720Y224614D02*Y234650D01*

-X381603Y220000D02*X391838D01*

-X381603Y224614D02*Y220000D01*

-G54D182*X391838Y231397D02*Y224614D01*

-G54D181*X448750Y229250D02*X394397D01*

-X397497Y247056D02*X393135D01*

-X398441Y248000D02*X397497Y247056D01*

-X397615Y252174D02*X398441Y253000D01*

-X393135Y252174D02*X397615D01*

-X458441Y286800D02*Y285000D01*

-Y286800D02*X458250D01*

-D03*

-X432250D01*

-Y317434D02*Y286800D01*

-Y317434D02*X402250D01*

-X394397Y315434D02*X395831Y314000D01*

-X384162Y319386D02*Y306000D01*

-X392949Y311118D02*X395831Y314000D01*

-X395441Y306000D02*X398441Y309000D01*

-X392949Y306000D02*X395441D01*

-X389279Y232825D02*X391441Y234987D01*

-X389279Y226917D02*Y232825D01*

-X384162Y232782D02*X377944Y239000D01*

-X384162Y226917D02*Y232782D01*

-X386720Y234650D02*X387070Y235000D01*

-X376485Y233956D02*X375441Y235000D01*

-X376485Y224614D02*Y233956D01*

-G54D182*X366441Y257772D02*Y203078D01*

-X364841Y256865D02*Y202092D01*

-X363241Y256202D02*Y201429D01*

-X360041Y254877D02*Y210000D01*

-X361641Y255540D02*Y200767D01*

-X358941Y208500D02*X360041Y209600D01*

-Y229900D01*

-G54D181*X238192Y283781D02*X227240Y272829D01*

-G54D182*X237756Y285750D02*X225528Y273522D01*

-X237358Y287718D02*X223884Y274244D01*

-G54D181*X232350Y273939D02*X229240Y270829D01*

-G54D182*X228128Y289687D02*X220754D01*

-X203441Y293000D02*X204441Y292000D01*

-G54D181*X252106Y260829D02*X248799D01*

-X253106Y261829D02*X252106Y260829D01*

-X253106Y266065D02*Y261829D01*

-G54D182*Y271970D02*X259552D01*

-X253106Y268033D02*X249600D01*

-X249396Y267829D01*

-X270351Y260093D02*Y296024D01*

-X272319Y260093D02*Y295594D01*

-X278225Y260093D02*Y279602D01*

-X259552Y271970D02*X262750Y268772D01*

-X260501Y279844D02*X261609D01*

-X250834Y291655D02*X254805D01*

-X247189Y277876D02*X245557Y279508D01*

-X253106Y277876D02*X247189D01*

-X253106Y275907D02*X245166D01*

-X245207D02*X242550Y278564D01*

-X240391D01*

-G54D181*X253106Y283781D02*X238192D01*

-G54D182*X253106Y285750D02*X237756D01*

-X253106Y287718D02*X237358D01*

-G54D181*X253106Y273939D02*X232350D01*

-G54D182*X253106Y289687D02*X228091D01*

-X253106Y279844D02*X260641D01*

-X253106Y281813D02*X257905D01*

-X260341Y284249D01*

-X249396Y267829D02*X246240D01*

-X253106Y293624D02*X252274D01*

-X250724Y295174D01*

-Y297065D01*

-X249939Y297850D01*

-X246827D01*

-X249757Y292732D02*X250834Y291655D01*

-X249757Y292732D02*X243267D01*

-X242456Y293543D01*

-X246335Y297850D02*X243118D01*

-X242168Y298800D01*

-X239154Y268222D02*Y265356D01*

-X243681Y260829D01*

-X240788Y263721D02*X239302Y262235D01*

-X223884Y274244D02*Y256000D01*

-X225528Y273522D02*Y253087D01*

-X227240Y272829D02*Y250799D01*

-X229240Y270829D02*Y248201D01*

-X223884Y256000D02*X221884Y254000D01*

-X225528Y253087D02*X224441Y252000D01*

-X227240Y250799D02*X225441Y249000D01*

-X229240Y248201D02*X230441Y247000D01*

-X237441Y227045D02*X218396Y208000D01*

-X189441D01*

-X172611Y191170D01*

-X220729Y265580D02*X218246Y268063D01*

-X219441Y272500D02*X222262Y275321D01*

-X218309Y268000D02*X216941Y269368D01*

-Y274500D01*

-X262477Y253536D02*X246941Y238000D01*

-X264445Y251504D02*X242441Y229500D01*

-X266441Y249500D02*X246441Y229500D01*

-X268382Y246941D02*X250941Y229500D01*

-X252223Y227045D02*X256778Y231600D01*

-X239183Y190822D02*X274802Y226441D01*

-X237359Y227045D02*X252223D01*

-G54D183*X275291Y220952D02*X245863Y191524D01*

-G54D182*X279206Y217052D02*X250914Y188760D01*

-X279206Y230265D02*Y217052D01*

-G54D183*X130941Y231228D02*X130453Y230740D01*

-X135941Y231228D02*X135571Y230858D01*

-X140941Y231228D02*X141012Y231157D01*

-X145941Y231228D02*X146130Y231039D01*

-X140941Y231228D02*X140882Y231169D01*

-X145941Y231228D02*X146000Y231169D01*

-X130453Y230740D02*Y211370D01*

-X135571Y230858D02*Y217370D01*

-Y211862D02*X136777D01*

-X139107Y214191D01*

-Y216725D01*

-X140882Y231169D02*Y218500D01*

-X139107Y216725D02*X140882Y218500D01*

-X146130Y264504D02*Y226000D01*

-X146000Y231169D02*Y214602D01*

-X143898Y212500D01*

-Y205500D01*

-Y205893D02*X145036Y204755D01*

-Y196000D01*

-X145941Y264693D02*X146130Y264504D01*

-G54D184*X99311Y243370D02*X107571D01*

-G54D183*X102449Y211441D02*X102347Y211543D01*

-X95941D01*

-X150941Y231228D02*X150984Y231185D01*

-Y212500D01*

-X160941Y231228D02*Y220500D01*

-X155941Y231228D02*Y220328D01*

-X170949Y231882D02*X170067Y231000D01*

-X165941D01*

-X170949Y237000D02*X170441Y237508D01*

-Y241457D01*

-X170048Y248543D02*X170005Y248500D01*

-X162441D01*

-X164571Y212370D02*X163571Y211370D01*

-X163071Y205370D01*

-Y204878D02*X163000Y204807D01*

-X160941Y220500D02*X164571Y216870D01*

-Y212370D01*

-X155941Y220328D02*X157485Y218784D01*

-Y212370D01*

-X157398Y212283D01*

-Y205500D01*

-X150984D01*

-X167299Y298829D02*X197799D01*

-X197307Y323888D02*X187799D01*

-G54D182*X179441Y338500D02*X159770Y318829D01*

-X180941Y336500D02*X158270Y313829D01*

-X178887Y342818D02*X162155D01*

-X184799Y328829D02*X199112D01*

-X205941Y295500D02*Y325147D01*

-X197259Y333829D01*

-X199112Y328829D02*X203441Y324500D01*

-X197259Y333829D02*X187799D01*

-X197441Y336500D02*X180941D01*

-X198441Y338500D02*X179441D01*

-X191363Y344449D02*X179851Y355962D01*

-X173850D01*

-G54D183*X168732D02*Y350833D01*

-G54D182*X222262Y275321D02*Y280532D01*

-X216941Y274500D02*X219941Y277500D01*

-Y281500D01*

-X203519Y292922D02*X217441Y279000D01*

-X219941Y281500D02*X205941Y295500D01*

-X222262Y280500D02*Y283179D01*

-X208441Y297000D01*

-X220754Y289687D02*X210941Y299500D01*

-X208441Y297000D02*Y325500D01*

-X210941Y299500D02*Y326000D01*

-X203441Y324500D02*Y293000D01*

-X208441Y325500D02*X197441Y336500D01*

-X210941Y326000D02*X198441Y338500D01*

-X245312Y349893D02*X230441Y335022D01*

-X245312Y342893D02*X240441Y338022D01*

-X230441Y335022D02*Y293000D01*

-X240441Y309321D02*X246731Y303031D01*

-G54D183*X252834Y335500D02*X260882D01*

-X260347Y342500D02*X252398D01*

-Y349893D02*X252791Y349500D01*

-X260839D01*

-G54D182*X229818Y354988D02*X231331Y356500D01*

-X245355D01*

-G54D183*X252441Y356893D02*X252834Y356500D01*

-X260882D01*

-G54D182*X240441Y338022D02*Y309321D01*

-X258841Y302100D02*X245355Y315586D01*

-Y335500D01*

-G54D183*X252441Y335893D02*X252834Y335500D01*

-G54D182*X254546Y323347D02*X249101Y328793D01*

-G54D183*X140949Y328941D02*X141061Y328829D01*

-X140949Y323559D02*X141219Y323829D01*

-X140949Y318441D02*Y314492D01*

-X141799Y313642D01*

-Y308888D01*

-X141061Y328829D02*X151799D01*

-X148799D02*X158441D01*

-X151799D02*Y323829D01*

-X158441Y328829D02*Y324500D01*

-X148799Y323829D02*X158441D01*

-Y327000D01*

-X141219Y323829D02*X151799D01*

-G54D182*X159770Y318829D02*X151799D01*

-X158270Y313829D02*X151799D01*

-G54D183*X141307Y308888D02*X126799D01*

-X141307Y303770D02*Y300883D01*

-X148799Y308829D02*X141799Y308888D01*

-X148799Y303829D02*X148740Y303770D01*

-X141799D01*

-X148799Y298829D02*X148599Y298629D01*

-Y292229D01*

-X148299D02*X145899Y289829D01*

-X126799D01*

-X167299Y298829D02*X156799Y288329D01*

-X124831Y309514D02*Y302385D01*

-X148799Y333829D02*X141441D01*

-G54D182*X145249Y359724D02*X139132D01*

-X135740Y363117D01*

-Y364932D01*

-X151115Y359500D02*X145803Y364811D01*

-X162155Y342818D02*X145249Y359724D01*

-X151115Y359500D02*X172571D01*

-X173850Y358221D01*

-Y355962D01*

-G54D183*X120666Y142340D02*X119666Y141340D01*

-X131882Y132156D02*Y148000D01*

-X131390D02*X127941D01*

-X131882Y132156D02*X127066Y127340D01*

-X123916D01*

-X137000Y148492D02*Y130941D01*

-Y130559D02*X140219Y127340D01*

-X141441D01*

-X137000Y148492D02*X137492Y148000D01*

-X131882Y148492D02*X131390Y148000D01*

-X141166Y112340D02*X155222D01*

-X155382Y112500D01*

-X150542Y117340D01*

-X144416D01*

-G54D182*X152441Y121500D02*X151601Y122340D01*

-X144416D01*

-G54D183*X159949Y118941D02*X160500Y118390D01*

-Y112500D01*

-X166166Y112568D02*X166097Y112500D01*

-X160500D01*

-X183949Y118941D02*X184441Y118449D01*

-G54D182*X178941Y120500D02*X180500Y118941D01*

-X184382D01*

-G54D183*X184441Y118449D02*Y113059D01*

-G54D182*X167882Y118941D02*X166382D01*

-X172691Y191250D02*X170941Y189500D01*

-Y183000D01*

-X167941Y180000D01*

-X149441D01*

-X145717Y183724D01*

-Y184815D01*

-G54D183*X137492Y148000D02*X141441D01*

-G54D182*X165241Y150800D02*X189215D01*

-X111041Y153000D02*X188441D01*

-X165441Y150800D02*X163241D01*

-X160441Y148000D01*

-X160534Y148497D02*X160500Y148464D01*

-Y141559D01*

-X160933Y136059D02*X161211Y136337D01*

-X165975D01*

-G54D183*X165483Y131219D02*Y129042D01*

-X155416Y148497D02*X150444D01*

-G54D182*X175256Y149068D02*X171441Y145253D01*

-G54D183*X150444Y148497D02*X149941Y149000D01*

-X184491Y130953D02*X184503Y130941D01*

-G54D182*X183441Y140500D02*X180441D01*

-X178941Y139000D01*

-G54D183*X159949Y130941D02*X160441Y130449D01*

-G54D182*X151941Y132000D02*X151601Y132340D01*

-X144416D01*

-G54D183*X160441Y130449D02*Y124059D01*

-X163941Y127500D02*X166441Y125000D01*

-Y124059D01*

-X159949Y118941D02*X166441D01*

-X160441Y127500D02*X163941D01*

-X141166Y127340D02*X160281D01*

-X160441Y127500D01*

-X165483Y129042D02*X163941Y127500D01*

-X141166Y142340D02*X154177D01*

-X155438Y141079D01*

-X141166Y137340D02*X151222D01*

-X155382Y141500D01*

-X160500Y141992D02*Y136059D01*

-G54D182*X171441Y145253D02*Y122500D01*

-X178941Y139000D02*Y120500D01*

-X171441Y122500D02*X167882Y118941D01*

-G54D183*X199874Y137500D02*X195441Y141933D01*

-G54D182*X195941Y132500D02*X205691D01*

-G54D183*X213882Y132441D02*Y148500D01*

-X219000Y131441D02*Y148500D01*

-X213882Y148992D02*X212890Y148000D01*

-X219000Y148008D02*X219008Y148000D01*

-X223941D01*

-X195500Y141992D02*X196008Y142500D01*

-X205691D01*

-X202441Y137500D02*X199874D01*

-G54D182*X190382Y141008D02*Y144941D01*

-X197441Y152000D01*

-X197000Y151559D01*

-Y148346D01*

-X189878Y149200D02*X196310Y155632D01*

-X189215Y150800D02*X195678Y157263D01*

-X188441Y153000D02*X194941Y159500D01*

-X187441Y155000D02*X193941Y161500D01*

-G54D183*X202118Y148838D02*X202955Y148000D01*

-G54D182*X197441Y152000D02*X245141D01*

-G54D183*X212890Y148000D02*X202955D01*

-X235955Y148246D02*X235709Y148000D01*

-X231441D01*

-X241073Y148246D02*X241059Y148232D01*

-G54D182*X246941Y154000D02*X196941D01*

-X196310Y155632D02*X248572D01*

-X195678Y157263D02*X250704D01*

-X250678D02*X250704D01*

-X194941Y159500D02*X251941D01*

-X193941Y161500D02*X253441D01*

-G54D183*X222941Y142500D02*X235178D01*

-X236178Y141500D01*

-X232882Y137500D02*X236382Y141000D01*

-X236178Y141500D02*X236382D01*

-Y141000D02*Y141500D01*

-X241059Y148232D02*Y141500D01*

-X241500Y141992D02*Y136941D01*

-X242441Y136000D01*

-X241449Y136059D02*X241657Y136267D01*

-X248008D01*

-G54D182*X249674D02*X247941D01*

-G54D183*X222941Y137500D02*X232882D01*

-G54D182*X235941Y133000D02*X235441Y132500D01*

-X226191D01*

-G54D183*X219000Y131441D02*X222941Y127500D01*

-X226191D01*

-G54D182*X245141Y152000D02*X258308Y138833D01*

-X248572Y155632D02*X268382Y135822D01*

-X250704Y157263D02*X269573Y138394D01*

-X246941Y154000D02*X266441Y134500D01*

-X237387Y179977D02*X220345D01*

-X215709Y184613D01*

-Y184752D01*

-X225824Y184806D02*X231840Y190822D01*

-X239183D01*

-X250914Y188760D02*Y182309D01*

-X248581Y179977D01*

-X233567D01*

-X251941Y159500D02*X265619Y145822D01*

-X253441Y161500D02*X266441Y148500D01*

-X246992Y108000D02*X279941D01*

-X280941Y109000D01*

-X278619Y115822D02*X274688D01*

-X271438Y110822D02*X266119D01*

-X280221Y118218D02*X280909Y118906D01*

-X267222Y118219D02*X280222D01*

-X280941Y109000D02*Y113500D01*

-X278619Y115822D01*

-X266119Y110822D02*X255941Y121000D01*

-X242000Y112992D02*X246992Y108000D01*

-G54D183*X241449Y130941D02*X241941Y130449D01*

-Y124059D01*

-Y127500D02*X245441D01*

-X241449Y118941D02*X248441D01*

-G54D182*X245000Y135941D02*X242000D01*

-G54D183*X247949Y124059D02*X247890Y124000D01*

-X241941D01*

-X247516Y131149D02*X247308Y130941D01*

-X241941D01*

-G54D182*X280909Y118906D02*Y123034D01*

-Y123000D02*X278088Y125822D01*

-X274688D01*

-X268382Y135822D02*X274688D01*

-X269573Y138394D02*X279063D01*

-X279972Y130822D02*X274688D01*

-X279972D02*X282441Y133291D01*

-X258291Y138850D02*X263941Y133200D01*

-X266441Y134500D02*Y123500D01*

-X263941Y133200D02*Y121500D01*

-X267222Y118219D01*

-X266441Y123500D02*X269119Y120822D01*

-X274688D01*

-X255941Y121000D02*Y130000D01*

-X249674Y136267D01*

-G54D183*X305696Y115940D02*X310941D01*

-G54D182*X303038Y119222D02*X305451D01*

-X304700Y120822D02*X304927D01*

-X305083Y119222D02*X305590D01*

-G54D183*X291938Y110822D02*X306188D01*

-X305696D02*Y107500D01*

-G54D182*X291938Y125822D02*X307525D01*

-X291938Y120822D02*X304788D01*

-X291938Y115822D02*X299638D01*

-X303038Y119222D01*

-X312289Y210583D02*X304706D01*

-X310421Y204383D02*X305280D01*

-X291938Y130822D02*X309763D01*

-G54D183*X304263Y135822D02*X304941Y136500D01*

-X304472Y141568D02*X303726Y140822D01*

-X304472Y141568D02*X309441D01*

-X300709Y145822D02*X304964Y141568D01*

-X304472Y136450D02*X309441D01*

-G54D182*X307525Y125822D02*X329417Y147713D01*

-X328601Y146898D02*X332661Y150958D01*

-X305590Y119222D02*X335927Y149558D01*

-X337441Y151072D01*

-X304927Y120822D02*X334308Y150202D01*

-X309763Y130822D02*X320804Y141863D01*

-G54D183*X340186Y98404D02*X329941D01*

-X340186D02*X353282Y111500D01*

-X291938Y135822D02*X304263D01*

-X303726Y140822D02*X295188D01*

-X291938Y145822D02*X300709D01*

-G54D182*X280691Y147030D02*Y143314D01*

-X278199Y140822D01*

-X274688D01*

-X279047Y138394D02*X281047D01*

-X279221Y148500D02*X280691Y147030D01*

-X281047Y138394D02*X282441Y137000D01*

-Y133291D01*

-X265619Y145822D02*X274688D01*

-X266441Y148500D02*X279221D01*

-X332661Y150958D02*Y187953D01*

-X334308Y150202D02*Y188569D01*

-Y188633D02*X312358Y210583D01*

-X332661Y188000D02*X313178Y207483D01*

-X337441Y151072D02*Y163000D01*

-X313178Y207483D02*X304584D01*

-X320804Y141863D02*Y193925D01*

-Y194000D02*X310421Y204383D01*

-G54D183*X114000Y112992D02*X114652Y112340D01*

-X118840Y117340D02*X114000Y112500D01*

-X108882Y112992D02*Y118882D01*

-X108941Y118941D01*

-X108449D02*X102441D01*

-X114652Y112340D02*X123916D01*

-X120666Y117340D02*X118840D01*

-G54D182*X114441Y121500D02*X115281Y122340D01*

-X123916D01*

-G54D183*X101978Y124030D02*X108912D01*

-G54D185*X86941Y99095D02*Y158500D01*

-Y99000D02*X102941Y83000D01*

-G54D183*X102441Y118941D02*X102401Y118901D01*

-X101949Y124059D02*X101978Y124030D01*

-G54D182*X97441Y148500D02*Y118500D01*

-X99941Y116000D01*

-X99981Y116040D01*

-X102401D01*

-G54D183*Y118901D02*Y113435D01*

-X119666Y141340D02*X113975D01*

-X120666Y137340D02*X116666Y141340D01*

-X115036D01*

-G54D182*X115601Y132340D02*X123916D01*

-G54D183*X108857Y136143D02*X108941Y136059D01*

-X112542Y127340D02*X108941Y130941D01*

-X112222Y127340D02*X108941Y124059D01*

-G54D182*X115441Y132500D02*X115601Y132340D01*

-X108857Y141832D02*Y150816D01*

-X111041Y153000D01*

-G54D183*X108857Y141832D02*Y136143D01*

-X102191Y140958D02*X102790Y140358D01*

-Y136135D01*

-X95548Y204457D02*X95591Y204500D01*

-X104441D01*

-G54D182*X103941Y155000D02*X97441Y148500D01*

-G54D183*X195807Y112500D02*X205691D01*

-X222941D02*X236882D01*

-X202441Y117500D02*X200635D01*

-X222941D02*X231882D01*

-X236882Y112500D01*

-X241449Y118941D02*Y113051D01*

-X242000Y112500D01*

-X183949Y118941D02*X190441D01*

-G54D182*X234441Y122500D02*X226191D01*

-G54D183*X247949Y102441D02*X248008Y102500D01*

-X253441D01*

-G54D185*X102941Y83000D02*X318941D01*

-G54D183*X101909Y108317D02*X101941Y108285D01*

-X166166Y107450D02*X166441Y107175D01*

-Y104000D01*

-X183949Y107941D02*X183941Y107933D01*

-Y104000D01*

-X101941Y108285D02*Y104500D01*

-G54D182*X190178Y149500D02*X189746Y149068D01*

-X175256D01*

-X102191Y146076D02*X104615Y148500D01*

-X106441D01*

-X187441Y155000D02*X103941D01*

-G54D183*X102790Y136135D02*X103009Y135916D01*

-X108857D01*

-X102298Y131017D02*X102315Y131000D01*

-X108882D01*

-G54D182*X196941Y154000D02*X183441Y140500D01*

-G54D183*X195475Y112832D02*X195807Y112500D01*

-X200635Y117500D02*X195475Y112340D01*

-X189949Y118941D02*Y112340D01*

-G54D182*X198441Y122500D02*X205691D01*

-G54D183*X202441Y127500D02*X208941D01*

-X213882Y132441D01*

-X189949Y124059D02*X184441D01*

-X190382Y141992D02*Y136059D01*

-X189949Y130941D02*X193390Y127500D01*

-X193882D02*X190441Y124059D01*

-G54D182*X195441Y133000D02*X195941Y132500D01*

-G54D183*X189949Y136059D02*X189937Y136071D01*

-X184983D01*

-X184503Y130941D02*X190441D01*

-G54D182*X113799Y350029D02*X114399Y350629D01*

-X116199D01*

-X116799Y350029D01*

-Y348829D01*

-X113799Y345829D02*X116799Y348829D01*

-X113799Y345829D02*X116799D01*

-X118239Y346429D02*X118839Y345829D01*

-X118239Y350029D02*Y346429D01*

-Y350029D02*X118839Y350629D01*

-X120039D01*

-X120639Y350029D01*

-Y346429D01*

-X120039Y345829D02*X120639Y346429D01*

-X118839Y345829D02*X120039D01*

-X118239Y347029D02*X120639Y349429D01*

-X122079Y349669D02*X123039Y350629D01*

-Y345829D01*

-X122079D02*X123879D01*

-X125319Y350029D02*X125919Y350629D01*

-X127119D01*

-X127719Y350029D01*

-X127119Y345829D02*X127719Y346429D01*

-X125919Y345829D02*X127119D01*

-X125319Y346429D02*X125919Y345829D01*

-Y348469D02*X127119D01*

-X127719Y350029D02*Y349069D01*

-Y347869D02*Y346429D01*

-Y347869D02*X127119Y348469D01*

-X127719Y349069D02*X127119Y348469D01*

-X129159Y346429D02*X129759Y345829D01*

-X129159Y350029D02*Y346429D01*

-Y350029D02*X129759Y350629D01*

-X130959D01*

-X131559Y350029D01*

-Y346429D01*

-X130959Y345829D02*X131559Y346429D01*

-X129759Y345829D02*X130959D01*

-X129159Y347029D02*X131559Y349429D01*

-X132999Y349669D02*X133959Y350629D01*

-Y345829D01*

-X132999D02*X134799D01*

-X136239Y350029D02*X136839Y350629D01*

-X138639D01*

-X139239Y350029D01*

-Y348829D01*

-X136239Y345829D02*X139239Y348829D01*

-X136239Y345829D02*X139239D01*

-X140679Y346429D02*X141279Y345829D01*

-X140679Y350029D02*Y346429D01*

-Y350029D02*X141279Y350629D01*

-X142479D01*

-X143079Y350029D01*

-Y346429D01*

-X142479Y345829D02*X143079Y346429D01*

-X141279Y345829D02*X142479D01*

-X140679Y347029D02*X143079Y349429D01*

-G54D186*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D180*G36*

-X403750Y357250D02*Y350750D01*

-X410250D01*

-Y357250D01*

-X403750D01*

-G37*

-G54D187*X345799Y357329D03*

-G54D188*X315799Y337329D03*

-G54D187*X85799Y369829D03*

-G54D189*X105799Y374829D03*

-G54D180*G36*

-X102499Y368129D02*Y361529D01*

-X109099D01*

-Y368129D01*

-X102499D01*

-G37*

-G54D189*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-G54D190*X93299Y342329D03*

-G54D189*X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D180*G36*

-X450250Y267250D02*Y260750D01*

-X456750D01*

-Y267250D01*

-X450250D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X456750D01*

-Y207250D01*

-X450250D01*

-G37*

-G36*

-Y177250D02*Y170750D01*

-X456750D01*

-Y177250D01*

-X450250D01*

-G37*

-G54D186*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D180*G36*

-X450250Y237250D02*Y230750D01*

-X456750D01*

-Y237250D01*

-X450250D01*

-G37*

-G54D186*X463500Y234000D03*

-X473500D03*

-G54D180*G36*

-X450250Y147250D02*Y140750D01*

-X456750D01*

-Y147250D01*

-X450250D01*

-G37*

-G36*

-Y117250D02*Y110750D01*

-X456750D01*

-Y117250D01*

-X450250D01*

-G37*

-G36*

-Y87250D02*Y80750D01*

-X456750D01*

-Y87250D01*

-X450250D01*

-G37*

-G36*

-Y57250D02*Y50750D01*

-X456750D01*

-Y57250D01*

-X450250D01*

-G37*

-G54D186*X463500Y54000D03*

-X473500D03*

-G54D180*G36*

-X450250Y327250D02*Y320750D01*

-X456750D01*

-Y327250D01*

-X450250D01*

-G37*

-G54D186*X463500Y324000D03*

-X473500D03*

-G54D180*G36*

-X450250Y297250D02*Y290750D01*

-X456750D01*

-Y297250D01*

-X450250D01*

-G37*

-G54D186*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D180*G36*

-X309191Y252250D02*Y245750D01*

-X315691D01*

-Y252250D01*

-X309191D01*

-G37*

-G54D186*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D187*X345799Y192329D03*

-G54D180*G36*

-X450250Y387250D02*Y380750D01*

-X456750D01*

-Y387250D01*

-X450250D01*

-G37*

-G54D186*X463500Y384000D03*

-X473500D03*

-G54D180*G36*

-X403750Y387250D02*Y380750D01*

-X410250D01*

-Y387250D01*

-X403750D01*

-G37*

-G36*

-Y297250D02*Y290750D01*

-X410250D01*

-Y297250D01*

-X403750D01*

-G37*

-G36*

-Y327250D02*Y320750D01*

-X410250D01*

-Y327250D01*

-X403750D01*

-G37*

-G54D186*X417000Y324000D03*

-X427000D03*

-G54D180*G36*

-X450250Y357250D02*Y350750D01*

-X456750D01*

-Y357250D01*

-X450250D01*

-G37*

-G54D186*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D180*G36*

-X403750Y177250D02*Y170750D01*

-X410250D01*

-Y177250D01*

-X403750D01*

-G37*

-G36*

-Y207250D02*Y200750D01*

-X410250D01*

-Y207250D01*

-X403750D01*

-G37*

-G36*

-Y237250D02*Y230750D01*

-X410250D01*

-Y237250D01*

-X403750D01*

-G37*

-G36*

-Y267250D02*Y260750D01*

-X410250D01*

-Y267250D01*

-X403750D01*

-G37*

-G54D186*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D180*G36*

-X202191Y50750D02*Y44250D01*

-X208691D01*

-Y50750D01*

-X202191D01*

-G37*

-G54D186*X205441Y57500D03*

-Y67500D03*

-G54D180*G36*

-X232191Y50750D02*Y44250D01*

-X238691D01*

-Y50750D01*

-X232191D01*

-G37*

-G54D186*X235441Y57500D03*

-Y67500D03*

-G54D180*G36*

-X262191Y50750D02*Y44250D01*

-X268691D01*

-Y50750D01*

-X262191D01*

-G37*

-G36*

-X172191D02*Y44250D01*

-X178691D01*

-Y50750D01*

-X172191D01*

-G37*

-G36*

-X142191D02*Y44250D01*

-X148691D01*

-Y50750D01*

-X142191D01*

-G37*

-G36*

-X112191D02*Y44250D01*

-X118691D01*

-Y50750D01*

-X112191D01*

-G37*

-G36*

-X82191D02*Y44250D01*

-X88691D01*

-Y50750D01*

-X82191D01*

-G37*

-G54D186*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D180*G36*

-X292191Y50750D02*Y44250D01*

-X298691D01*

-Y50750D01*

-X292191D01*

-G37*

-G54D186*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D187*X85799Y179829D03*

-G54D189*X105799Y184829D03*

-G54D180*G36*

-X102499Y178129D02*Y171529D01*

-X109099D01*

-Y178129D01*

-X102499D01*

-G37*

-G54D189*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D180*G36*

-X82191Y243250D02*Y236750D01*

-X88691D01*

-Y243250D01*

-X82191D01*

-G37*

-G54D186*X85441Y230000D03*

-Y220000D03*

-G54D189*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D180*G36*

-X192499Y200629D02*Y194029D01*

-X199099D01*

-Y200629D01*

-X192499D01*

-G37*

-G54D189*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D191*X371941Y118193D02*Y104807D01*

-G54D192*X397548Y98042D02*X398334D01*

-G54D193*X271438Y125822D02*X277938D01*

-X291938D02*X298438D01*

-X291938Y130822D02*X298438D01*

-X291938Y135822D02*X298438D01*

-X291938Y140822D02*X298438D01*

-X291938Y145822D02*X298438D01*

-X271438Y120822D02*X277938D01*

-X271438Y115822D02*X277938D01*

-X271438Y110822D02*X277938D01*

-X291938D02*X298438D01*

-X291938Y115822D02*X298438D01*

-X291938Y120822D02*X298438D01*

-G54D194*X235941Y141992D02*Y141008D01*

-X241059Y141992D02*Y141008D01*

-X241073Y148246D02*Y147262D01*

-X235955Y148246D02*Y147262D01*

-X247516Y131149D02*X248500D01*

-X247516Y136267D02*X248500D01*

-X247949Y124059D02*X248933D01*

-X247949Y118941D02*X248933D01*

-X247949Y107559D02*X248933D01*

-X247949Y102441D02*X248933D01*

-X183949Y124059D02*X184933D01*

-X183949Y118941D02*X184933D01*

-X183949Y113059D02*X184933D01*

-X183949Y107941D02*X184933D01*

-X184491Y130953D02*X185475D01*

-X184491Y136071D02*X185475D01*

-X197000Y148838D02*Y147854D01*

-X202118Y148838D02*Y147854D01*

-X432000Y70492D02*Y69508D01*

-X426882Y70492D02*Y69508D01*

-G54D192*X340186Y98404D02*X345696D01*

-X340186Y86594D02*X345696D01*

-X327186D02*X332696D01*

-X397548Y90956D02*X398334D01*

-X327186Y98404D02*X332696D01*

-G54D194*X372000Y72491D02*Y71507D01*

-X366882Y72491D02*Y71507D01*

-X356823Y71992D02*Y71008D01*

-X361941Y71992D02*Y71008D01*

-X356823Y65992D02*Y65008D01*

-X361941Y65992D02*Y65008D01*

-G54D192*X374548Y51413D02*X375334D01*

-X381536Y48755D02*Y43245D01*

-X393346Y48755D02*Y43245D01*

-X374548Y58499D02*X375334D01*

-X381898Y58893D02*Y58107D01*

-X388984Y58893D02*Y58107D01*

-G54D195*X356941Y84728D02*Y78429D01*

-X361941Y84728D02*Y78429D01*

-G54D192*X370398Y66393D02*Y65607D01*

-X377484Y66393D02*Y65607D01*

-X384398Y66893D02*Y66107D01*

-X391484Y66893D02*Y66107D01*

-G54D195*X366941Y84728D02*Y78429D01*

-X371941Y84728D02*Y78429D01*

-X376941Y84728D02*Y78429D01*

-X381941Y84728D02*Y78429D01*

-X386941Y84728D02*Y78429D01*

-G54D194*X397449Y79381D02*X398433D01*

-X397449Y84499D02*X398433D01*

-X394949Y188441D02*X395933D01*

-X394949Y193559D02*X395933D01*

-G54D196*X394397Y203689D02*Y199083D01*

-X376485Y203689D02*Y199083D01*

-X379044Y203689D02*Y199083D01*

-X381603Y203689D02*Y199083D01*

-X384162Y203689D02*Y199083D01*

-X386720Y203689D02*Y199083D01*

-X389279Y203689D02*Y199083D01*

-X391838Y203689D02*Y199083D01*

-G54D194*X392643Y247056D02*X393627D01*

-X392643Y252174D02*X393627D01*

-G54D196*X394397Y226917D02*Y222311D01*

-X391838Y226917D02*Y222311D01*

-X389279Y226917D02*Y222311D01*

-X386720Y226917D02*Y222311D01*

-X384162Y226917D02*Y222311D01*

-X381603Y226917D02*Y222311D01*

-X379044Y226917D02*Y222311D01*

-X376485Y226917D02*Y222311D01*

-G54D194*X392949Y365941D02*X393933D01*

-X392949Y371059D02*X393933D01*

-G54D196*X394397Y344917D02*Y340311D01*

-X391838Y344917D02*Y340311D01*

-X389279Y344917D02*Y340311D01*

-X386720Y344917D02*Y340311D01*

-X389279Y321689D02*Y317083D01*

-X391838Y321689D02*Y317083D01*

-X394397Y321689D02*Y317083D01*

-X384162Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X386720Y321689D02*Y317083D01*

-X381603Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y344917D02*Y340311D01*

-X376485Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y321689D02*Y317083D01*

-G54D194*X392949Y306000D02*X393933D01*

-X392949Y311118D02*X393933D01*

-G54D192*X245312Y349893D02*Y349107D01*

-Y342893D02*Y342107D01*

-X245355Y356893D02*Y356107D01*

-X252398Y349893D02*Y349107D01*

-G54D194*X265957Y349992D02*Y349008D01*

-X260839Y349992D02*Y349008D01*

-G54D192*X245355Y335893D02*Y335107D01*

-X252441Y335893D02*Y335107D01*

-G54D194*X266000Y335992D02*Y335008D01*

-X260882Y335992D02*Y335008D01*

-X265957Y342992D02*Y342008D01*

-X260839Y342992D02*Y342008D01*

-G54D192*X252398Y342893D02*Y342107D01*

-G54D194*X266000Y356992D02*Y356008D01*

-X260882Y356992D02*Y356008D01*

-G54D192*X252441Y356893D02*Y356107D01*

-G54D194*X246335Y292732D02*X247319D01*

-G54D197*X148299Y292229D02*X148899D01*

-X148299Y284429D02*X148899D01*

-X156499Y288329D02*X157099D01*

-G54D193*X184799Y298829D02*X190799D01*

-X184799Y303829D02*X190799D01*

-G54D194*X197307Y303888D02*X198291D01*

-G54D193*X184799Y308829D02*X190799D01*

-X184799Y313829D02*X190799D01*

-X184799Y318829D02*X190799D01*

-G54D194*X197307Y318770D02*X198291D01*

-X197307Y298770D02*X198291D01*

-X168732Y356454D02*Y355470D01*

-X173850Y356454D02*Y355470D01*

-G54D193*X148799Y333829D02*X154799D01*

-X148799Y328829D02*X154799D01*

-X148799Y323829D02*X154799D01*

-X184799D02*X190799D01*

-X184799Y328829D02*X190799D01*

-X184799Y333829D02*X190799D01*

-G54D194*X197307Y323888D02*X198291D01*

-G54D193*X148799Y318829D02*X154799D01*

-X148799Y313829D02*X154799D01*

-X148799Y308829D02*X154799D01*

-X148799Y303829D02*X154799D01*

-X148799Y298829D02*X154799D01*

-G54D194*X140949Y334059D02*X141933D01*

-X140949Y328941D02*X141933D01*

-X140949Y323559D02*X141933D01*

-X140949Y318441D02*X141933D01*

-X141307Y303770D02*X142291D01*

-X141307Y308888D02*X142291D01*

-X246335Y297850D02*X247319D01*

-G54D198*X253106Y295592D02*X256504D01*

-G54D194*X269500Y310492D02*Y309508D01*

-X264382Y310492D02*Y309508D01*

-G54D198*X268381Y304963D02*Y301565D01*

-X266413Y304963D02*Y301565D01*

-X264444Y304963D02*Y301565D01*

-X262476Y304963D02*Y301565D01*

-X253106Y293624D02*X256504D01*

-X253106Y291655D02*X256504D01*

-X253106Y289687D02*X256504D01*

-X253106Y287718D02*X256504D01*

-X253106Y285750D02*X256504D01*

-X253106Y283781D02*X256504D01*

-G54D194*X296748Y247270D02*X297732D01*

-G54D192*X290048Y244914D02*X290834D01*

-G54D198*X292004Y260093D02*Y256695D01*

-G54D192*X170048Y248543D02*X170834D01*

-X170048Y241457D02*X170834D01*

-G54D194*X170949Y231882D02*X171933D01*

-X170949Y237000D02*X171933D01*

-G54D198*X274288Y260093D02*Y256695D01*

-X276256Y260093D02*Y256695D01*

-X278225Y260093D02*Y256695D01*

-X280193Y260093D02*Y256695D01*

-X282162Y260093D02*Y256695D01*

-X284130Y260093D02*Y256695D01*

-X286099Y260093D02*Y256695D01*

-X288067Y260093D02*Y256695D01*

-X290036Y260093D02*Y256695D01*

-G54D194*X243681Y261321D02*Y260337D01*

-G54D192*X239154Y268222D02*Y267436D01*

-X246240Y268222D02*Y267436D01*

-G54D198*X253106Y270002D02*X256504D01*

-X253106Y268033D02*X256504D01*

-X253106Y266065D02*X256504D01*

-G54D194*X248799Y261321D02*Y260337D01*

-G54D198*X262477Y260093D02*Y256695D01*

-X264445Y260093D02*Y256695D01*

-X266414Y260093D02*Y256695D01*

-X268382Y260093D02*Y256695D01*

-X270351Y260093D02*Y256695D01*

-X272319Y260093D02*Y256695D01*

-G54D199*X124831Y309514D02*X128768D01*

-X124831Y289829D02*X128768D01*

-G54D192*X104816Y243370D02*X110326D01*

-X104816Y231560D02*X110326D01*

-X116816Y243370D02*X122326D01*

-X116816Y231560D02*X122326D01*

-G54D195*X130941Y231228D02*Y224929D01*

-X135941Y231228D02*Y224929D01*

-X140941Y231228D02*Y224929D01*

-G54D191*X145941Y264693D02*Y251307D01*

-G54D192*X95548Y204457D02*X96334D01*

-X95548Y211543D02*X96334D01*

-G54D194*X102449Y216559D02*X103433D01*

-X102449Y211441D02*X103433D01*

-G54D192*X150984Y212893D02*Y212107D01*

-G54D195*X145941Y231228D02*Y224929D01*

-G54D194*X146000Y218992D02*Y218008D01*

-G54D192*X145036Y198755D02*Y193245D01*

-G54D195*X150941Y231228D02*Y224929D01*

-X155941Y231228D02*Y224929D01*

-X160941Y231228D02*Y224929D01*

-G54D194*X140882Y218992D02*Y218008D01*

-X130453Y217862D02*Y216878D01*

-X135571Y217862D02*Y216878D01*

-X130453Y211862D02*Y210878D01*

-X135571Y211862D02*Y210878D01*

-G54D192*X143898Y205893D02*Y205107D01*

-X150984Y205893D02*Y205107D01*

-X143898Y212893D02*Y212107D01*

-X156846Y198755D02*Y193245D01*

-X157398Y205893D02*Y205107D01*

-X164484Y205893D02*Y205107D01*

-X157485Y212763D02*Y211977D01*

-X164571Y212763D02*Y211977D01*

-G54D194*X189949Y124059D02*X190933D01*

-X189949Y118941D02*X190933D01*

-X195475Y112832D02*Y111848D01*

-X190357Y112832D02*Y111848D01*

-X189949Y130941D02*X190933D01*

-X189949Y136059D02*X190933D01*

-G54D193*X202441Y142500D02*X208941D01*

-X202441Y137500D02*X208941D01*

-X202441Y132500D02*X208941D01*

-G54D194*X195500Y141992D02*Y141008D01*

-X190382Y141992D02*Y141008D01*

-X113975Y141832D02*Y140848D01*

-X108857Y141832D02*Y140848D01*

-X102191Y140958D02*X103175D01*

-X102191Y146076D02*X103175D01*

-X108449Y130941D02*X109433D01*

-X108449Y136059D02*X109433D01*

-X102298Y131017D02*X103282D01*

-X102298Y136135D02*X103282D01*

-X155382Y112992D02*Y112008D01*

-G54D193*X141166Y112340D02*X147666D01*

-X141166Y117340D02*X147666D01*

-G54D194*X166166Y112568D02*X167150D01*

-X166166Y107450D02*X167150D01*

-X160500Y112992D02*Y112008D01*

-X159949Y130941D02*X160933D01*

-X159949Y136059D02*X160933D01*

-X159949Y124059D02*X160933D01*

-X159949Y118941D02*X160933D01*

-G54D193*X141166Y122340D02*X147666D01*

-X141166Y127340D02*X147666D01*

-X141166Y132340D02*X147666D01*

-X141166Y137340D02*X147666D01*

-X141166Y142340D02*X147666D01*

-G54D194*X137000Y148492D02*Y147508D01*

-X131882Y148492D02*Y147508D01*

-X155382Y141992D02*Y141008D01*

-X155416Y148497D02*Y147513D01*

-X160500Y141992D02*Y141008D01*

-X165483Y131219D02*X166467D01*

-X165483Y136337D02*X166467D01*

-X160534Y148497D02*Y147513D01*

-X165949Y124059D02*X166933D01*

-X165949Y118941D02*X166933D01*

-G54D193*X120666Y142340D02*X127166D01*

-X120666Y137340D02*X127166D01*

-X120666Y132340D02*X127166D01*

-X120666Y127340D02*X127166D01*

-X120666Y122340D02*X127166D01*

-X120666Y117340D02*X127166D01*

-X120666Y112340D02*X127166D01*

-G54D194*X114000Y112992D02*Y112008D01*

-X108882Y112992D02*Y112008D01*

-X101909Y113435D02*X102893D01*

-X101909Y108317D02*X102893D01*

-X108449Y124059D02*X109433D01*

-X108449Y118941D02*X109433D01*

-X101949Y124059D02*X102933D01*

-X101949Y118941D02*X102933D01*

-X241449Y130941D02*X242433D01*

-X241449Y136059D02*X242433D01*

-G54D193*X222941Y112500D02*X229441D01*

-X222941Y117500D02*X229441D01*

-X222941Y122500D02*X229441D01*

-X222941Y127500D02*X229441D01*

-X222941Y132500D02*X229441D01*

-X222941Y137500D02*X229441D01*

-X222941Y142500D02*X229441D01*

-G54D194*X219000Y148492D02*Y147508D01*

-X213882Y148492D02*Y147508D01*

-G54D193*X202441Y127500D02*X208941D01*

-X202441Y122500D02*X208941D01*

-X202441Y117500D02*X208941D01*

-X202441Y112500D02*X208941D01*

-G54D194*X236882Y112992D02*Y112008D01*

-X242000Y112992D02*Y112008D01*

-X241449Y124059D02*X242433D01*

-X241449Y118941D02*X242433D01*

-X305696Y110822D02*X306680D01*

-X305696Y115940D02*X306680D01*

-X304472Y136450D02*X305456D01*

-X304472Y141568D02*X305456D01*

-G54D193*X271438Y145822D02*X277938D01*

-X271438Y140822D02*X277938D01*

-X271438Y135822D02*X277938D01*

-X271438Y130822D02*X277938D01*

-G54D200*X295941Y342350D02*Y338450D01*

-X285941Y342350D02*Y338450D01*

-G54D194*X277449Y342559D02*X278433D01*

-X277449Y337441D02*X278433D01*

-G54D200*X295941Y317550D02*Y313650D01*

-G54D194*X303365Y324772D02*X304349D01*

-X303365Y319654D02*X304349D01*

-X307462Y295038D02*X308446D01*

-X307462Y300156D02*X308446D01*

-G54D198*X297976Y295593D02*X301374D01*

-G54D200*X285941Y317550D02*Y313650D01*

-G54D198*X292003Y304963D02*Y301565D01*

-X290035Y304963D02*Y301565D01*

-X288066Y304963D02*Y301565D01*

-X286098Y304963D02*Y301565D01*

-X284129Y304963D02*Y301565D01*

-X282161Y304963D02*Y301565D01*

-X297976Y293625D02*X301374D01*

-X280192Y304963D02*Y301565D01*

-X278224Y304963D02*Y301565D01*

-X276255Y304963D02*Y301565D01*

-X274287Y304963D02*Y301565D01*

-X272318Y304963D02*Y301565D01*

-X270350Y304963D02*Y301565D01*

-X253106Y281813D02*X256504D01*

-X253106Y279844D02*X256504D01*

-X253106Y277876D02*X256504D01*

-X253106Y275907D02*X256504D01*

-X253106Y273939D02*X256504D01*

-X253106Y271970D02*X256504D01*

-G54D194*X296748Y252388D02*X297732D01*

-G54D192*X290048Y252000D02*X290834D01*

-G54D198*X297976Y266066D02*X301374D01*

-X297976Y268034D02*X301374D01*

-X297976Y270003D02*X301374D01*

-X297976Y271971D02*X301374D01*

-X297976Y273940D02*X301374D01*

-X297976Y275908D02*X301374D01*

-X297976Y277877D02*X301374D01*

-X297976Y279845D02*X301374D01*

-X297976Y281814D02*X301374D01*

-X297976Y283782D02*X301374D01*

-X297976Y285751D02*X301374D01*

-X297976Y287719D02*X301374D01*

-X297976Y289688D02*X301374D01*

-X297976Y291656D02*X301374D01*

-G54D183*X307716Y275075D03*

-X308992Y271971D03*

-X308872Y266522D03*

-X287917Y307829D03*

-X293902Y282263D03*

-X296779Y304963D03*

-X295937Y243628D03*

-X296727Y256227D03*

-X312157Y300156D03*

-X312122Y295038D03*

-X303365Y330000D03*

-X285430Y325000D03*

-X302941Y340007D03*

-X245557Y279508D03*

-X242456Y293543D03*

-X262750Y268772D03*

-X253101Y261836D03*

-G54D201*X246941Y238000D03*

-X242441Y229500D03*

-X246441D03*

-X250941D03*

-X260941Y191500D03*

-X245863Y191524D03*

-X269441Y198500D03*

-X269941Y231500D03*

-X251941Y210500D03*

-X243941Y202000D03*

-X253441Y102500D03*

-X231441Y148000D03*

-X309441Y141568D03*

-Y136450D03*

-X310941Y115940D03*

-X305696Y107500D03*

-X304584Y207483D03*

-X304706Y210583D03*

-X305280Y204383D03*

-G54D183*X254740Y298329D03*

-X242168Y298800D03*

-G54D201*X246731Y303031D03*

-G54D183*X269653Y298631D03*

-G54D201*X270441Y336000D03*

-Y342500D03*

-Y349500D03*

-G54D183*X268941Y314000D03*

-G54D201*X270441Y357000D03*

-G54D183*X273229Y298582D03*

-X278225Y279602D03*

-X278207Y298612D03*

-X277174Y308219D03*

-X277449Y347500D03*

-G54D201*X263441Y320000D03*

-X260568Y316997D03*

-X261502Y307367D03*

-X249101Y328793D03*

-X229818Y354988D03*

-G54D183*X266413Y296594D03*

-X263240Y295329D03*

-X262740Y291829D03*

-X260341Y284249D03*

-X264034Y282931D03*

-G54D201*X279441Y285000D03*

-G54D202*X386441Y163000D03*

-X400441Y194000D03*

-X389441Y184000D03*

-X400441Y189000D03*

-G54D201*X386023Y157813D03*

-X398441Y173000D03*

-G54D202*X393441Y208000D03*

-X384162Y188000D03*

-X458441Y195000D03*

-Y164000D03*

-X372441Y170386D03*

-G54D201*X377347Y162178D03*

-G54D202*X387441Y326000D03*

-X393441Y355000D03*

-X386720Y282000D03*

-X393441Y327000D03*

-X384162Y306000D03*

-X385941Y354500D03*

-X458441Y375000D03*

-X383662Y378500D03*

-X397441Y373000D03*

-X397941Y367441D03*

-G54D201*X385941Y366000D03*

-G54D202*X458441Y345000D03*

-Y315000D03*

-Y285000D03*

-X398441Y314000D03*

-Y309000D03*

-G54D201*Y291000D03*

-G54D202*X372441Y290689D03*

-Y351189D03*

-G54D201*X339837Y341827D03*

-X353390Y339521D03*

-G54D202*X375441Y235000D03*

-G54D201*X356441Y233000D03*

-X338441Y224192D03*

-Y230124D03*

-X337441Y163000D03*

-X358941Y208500D03*

-G54D202*X384512Y258000D03*

-G54D201*X371602Y260228D03*

-G54D202*X458441Y254000D03*

-Y225000D03*

-X387070Y235000D03*

-X398441Y248000D03*

-Y253000D03*

-G54D201*X396441Y235000D03*

-X392188Y239000D03*

-X388207Y247280D03*

-G54D183*X239302Y262235D03*

-G54D201*X245441Y127500D03*

-X235941Y133000D03*

-X236441Y235500D03*

-X202441Y212500D03*

-X210441D03*

-X220441Y215000D03*

-X224941Y220500D03*

-X225441Y226500D03*

-X224941Y235500D03*

-X224441Y244000D03*

-X212941Y238000D03*

-X203941Y237500D03*

-X193941Y237000D03*

-X181941Y258500D03*

-X183941Y104000D03*

-X112222Y127340D03*

-X114441Y121500D03*

-X115441Y132500D03*

-X101941Y104500D03*

-X166441Y104000D03*

-X127941Y148000D03*

-X106441Y148500D03*

-X149941Y149000D03*

-X138925Y206113D03*

-X138872Y202030D03*

-X138925Y197841D03*

-X161941Y199000D03*

-X166941Y197500D03*

-X138925Y192698D03*

-X161941Y193000D03*

-X166941D03*

-X163941Y127500D03*

-X193390D03*

-X152441Y121500D03*

-X151941Y132000D03*

-X195441Y133000D03*

-X141441Y148000D03*

-X208941D03*

-X223941D03*

-X198441Y122500D03*

-X234441D03*

-X221884Y254000D03*

-X224441Y252000D03*

-X225441Y249000D03*

-X230441Y247000D03*

-X219441Y272500D03*

-X230441Y293000D03*

-X220729Y265580D03*

-X220441Y259500D03*

-X218441Y261500D03*

-X217441Y279000D03*

-X240391Y278564D03*

-X128941Y274500D03*

-Y268500D03*

-Y262500D03*

-Y255000D03*

-Y248500D03*

-Y242500D03*

-X104441Y204500D03*

-X100941D03*

-X141307Y300883D03*

-X124831Y302385D03*

-X158441Y323829D03*

-Y328829D03*

-Y326500D03*

-X153941Y338000D03*

-X154941Y345500D03*

-X135441Y338500D03*

-Y335000D03*

-X139941Y338000D03*

-X111941Y334000D03*

-X117941D03*

-X126441D03*

-X142441Y357500D03*

-Y349500D03*

-X149441D03*

-X126441Y340500D03*

-X111941Y341000D03*

-Y357500D03*

-X121941D03*

-X130941D03*

-X197441Y314500D03*

-Y308500D03*

-X198441Y262500D03*

-Y269500D03*

-X205441Y277000D03*

-X195441Y311500D03*

-X191363Y344449D03*

-X178887Y342818D03*

-X168732Y350833D03*

-X162441Y242500D03*

-X165941Y231000D03*

-Y226500D03*

-X185441Y228000D03*

-X177441D03*

-X162441Y248500D03*

-X161941Y255000D03*

-X162441Y262500D03*

-X162941Y268500D03*

-Y274500D03*

-X165941Y220500D03*

-X169441Y214000D03*

-Y208500D03*

-Y201500D03*

-X177441Y217500D03*

-X185441D03*

-X193941Y212500D03*

-G54D202*X432324Y111000D03*

-X446441Y102000D03*

-X434882Y75000D03*

-G54D203*X440941Y123000D03*

-G54D202*X423441Y75000D03*

-G54D201*X434449Y56500D03*

-X440449D03*

-X354941Y93499D03*

-Y97999D03*

-Y103999D03*

-Y109999D03*

-Y115999D03*

-Y121999D03*

-Y127999D03*

-X387941D03*

-Y121999D03*

-Y115999D03*

-Y109999D03*

-Y97999D03*

-Y93499D03*

-Y103999D03*

-X391441Y84499D03*

-Y79999D03*

-X391941Y74499D03*

-X395441Y66999D03*

-X394441Y59999D03*

-X392941Y53499D03*

-X368941Y48500D03*

-Y43500D03*

-X374941D03*

-Y47000D03*

-G54D181*G54D201*G54D181*G54D201*G54D181*G54D201*G54D181*G54D201*G54D181*G54D201*G54D181*G54D201*G54D181*G54D201*G54D181*G54D201*G54D181*G54D201*G54D204*G54D201*G54D181*G54D184*G54D205*G54D206*G54D205*G54D207*G54D208*G54D207*G54D184*G54D205*G54D184*G54D205*G54D207*G54D184*G54D207*M02*

diff --git a/bbb_cape/schematic/gerbers/20140120/cape.topmask.gbr b/bbb_cape/schematic/gerbers/20140120/cape.topmask.gbr
deleted file mode 100644
index 8db4d59..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.topmask.gbr
+++ /dev/null
@@ -1,775 +0,0 @@
-G04 start of page 8 for group -4063 idx -4063 *

-G04 Title: 971 BBB Cape, componentmask *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Mon Jan 20 21:04:42 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNTOPMASK*%

-%ADD299R,0.0808X0.0808*%

-%ADD298R,0.0987X0.0987*%

-%ADD297R,0.0140X0.0140*%

-%ADD296R,0.0400X0.0400*%

-%ADD295R,0.0230X0.0230*%

-%ADD294R,0.0410X0.0410*%

-%ADD293R,0.0355X0.0355*%

-%ADD292R,0.0300X0.0300*%

-%ADD291R,0.0572X0.0572*%

-%ADD290R,0.2166X0.2166*%

-%ADD289C,0.2860*%

-%ADD288C,0.0860*%

-%ADD287C,0.2400*%

-%ADD286C,0.1890*%

-%ADD285C,0.0001*%

-%ADD284C,0.0710*%

-%ADD283C,0.0250*%

-%ADD282C,0.0080*%

-G54D282*X68000Y42000D02*Y244000D01*

-X74500Y250500D02*X101000D01*

-X107500Y256000D02*Y312500D01*

-X101000Y319000D02*X74500D01*

-X68000Y325500D02*Y393300D01*

-X484600D02*Y42000D01*

-X479100Y35500D02*X73500D01*

-G54D283*X189949Y136059D02*X189890Y136000D01*

-G54D282*X74500Y399800D02*X478100D01*

-X74500Y35500D02*G75*G02X68000Y42000I0J6500D01*G01*

-Y244000D02*G75*G02X74500Y250500I6500J0D01*G01*

-X107500Y257000D02*G75*G02X101000Y250500I-6500J0D01*G01*

-Y319000D02*G75*G02X107500Y312500I0J-6500D01*G01*

-X74500Y319000D02*G75*G02X68000Y325500I0J6500D01*G01*

-X478100Y399800D02*G75*G02X484600Y393300I0J-6500D01*G01*

-Y42000D02*G75*G02X478100Y35500I-6500J0D01*G01*

-X68000Y393300D02*G75*G02X74500Y399800I6500J0D01*G01*

-G54D284*X417000Y384000D03*

-Y294000D03*

-Y354000D03*

-X427000Y384000D03*

-Y294000D03*

-Y354000D03*

-G54D285*G36*

-X403450Y357550D02*Y350450D01*

-X410550D01*

-Y357550D01*

-X403450D01*

-G37*

-G54D286*X345799Y357329D03*

-G54D287*X315799Y337329D03*

-G54D286*X85799Y369829D03*

-G54D288*X105799Y374829D03*

-G54D285*G36*

-X101499Y369129D02*Y360529D01*

-X110099D01*

-Y369129D01*

-X101499D01*

-G37*

-G54D288*X115799Y374829D03*

-Y364829D03*

-X125799Y374829D03*

-Y364829D03*

-X135799Y374829D03*

-Y364829D03*

-G54D289*X93299Y342329D03*

-G54D288*X145799Y374829D03*

-Y364829D03*

-X155799D03*

-X165799D03*

-X155799Y374829D03*

-X165799D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X175799Y364829D03*

-X185799D03*

-X195799D03*

-X205799D03*

-X215799Y374829D03*

-X225799D03*

-X235799D03*

-X215799Y364829D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X265799D03*

-X245799Y374829D03*

-X255799D03*

-X265799D03*

-X275799D03*

-Y364829D03*

-X285799Y374829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X285799Y364829D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D285*G36*

-X449950Y267550D02*Y260450D01*

-X457050D01*

-Y267550D01*

-X449950D01*

-G37*

-G36*

-Y207550D02*Y200450D01*

-X457050D01*

-Y207550D01*

-X449950D01*

-G37*

-G36*

-Y177550D02*Y170450D01*

-X457050D01*

-Y177550D01*

-X449950D01*

-G37*

-G54D284*X463500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-X473500Y264000D03*

-Y204000D03*

-Y174000D03*

-Y144000D03*

-Y114000D03*

-Y84000D03*

-G54D285*G36*

-X449950Y237550D02*Y230450D01*

-X457050D01*

-Y237550D01*

-X449950D01*

-G37*

-G54D284*X463500Y234000D03*

-X473500D03*

-G54D285*G36*

-X449950Y147550D02*Y140450D01*

-X457050D01*

-Y147550D01*

-X449950D01*

-G37*

-G36*

-Y117550D02*Y110450D01*

-X457050D01*

-Y117550D01*

-X449950D01*

-G37*

-G36*

-Y87550D02*Y80450D01*

-X457050D01*

-Y87550D01*

-X449950D01*

-G37*

-G36*

-Y57550D02*Y50450D01*

-X457050D01*

-Y57550D01*

-X449950D01*

-G37*

-G54D284*X463500Y54000D03*

-X473500D03*

-G54D285*G36*

-X449950Y327550D02*Y320450D01*

-X457050D01*

-Y327550D01*

-X449950D01*

-G37*

-G54D284*X463500Y324000D03*

-X473500D03*

-G54D285*G36*

-X449950Y297550D02*Y290450D01*

-X457050D01*

-Y297550D01*

-X449950D01*

-G37*

-G54D284*X463500Y294000D03*

-X473500D03*

-X437000Y324000D03*

-G54D285*G36*

-X308891Y252550D02*Y245450D01*

-X315991D01*

-Y252550D01*

-X308891D01*

-G37*

-G54D284*X322441Y249000D03*

-X332441D03*

-X342441D03*

-G54D286*X345799Y192329D03*

-G54D285*G36*

-X449950Y387550D02*Y380450D01*

-X457050D01*

-Y387550D01*

-X449950D01*

-G37*

-G54D284*X463500Y384000D03*

-X473500D03*

-G54D285*G36*

-X403450Y387550D02*Y380450D01*

-X410550D01*

-Y387550D01*

-X403450D01*

-G37*

-G36*

-Y297550D02*Y290450D01*

-X410550D01*

-Y297550D01*

-X403450D01*

-G37*

-G36*

-Y327550D02*Y320450D01*

-X410550D01*

-Y327550D01*

-X403450D01*

-G37*

-G54D284*X417000Y324000D03*

-X427000D03*

-G54D285*G36*

-X449950Y357550D02*Y350450D01*

-X457050D01*

-Y357550D01*

-X449950D01*

-G37*

-G54D284*X437000Y354000D03*

-X463500D03*

-X473500D03*

-X437000Y384000D03*

-Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-Y294000D03*

-G54D285*G36*

-X403450Y177550D02*Y170450D01*

-X410550D01*

-Y177550D01*

-X403450D01*

-G37*

-G36*

-Y207550D02*Y200450D01*

-X410550D01*

-Y207550D01*

-X403450D01*

-G37*

-G36*

-Y237550D02*Y230450D01*

-X410550D01*

-Y237550D01*

-X403450D01*

-G37*

-G36*

-Y267550D02*Y260450D01*

-X410550D01*

-Y267550D01*

-X403450D01*

-G37*

-G54D284*X417000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-X427000Y174000D03*

-Y204000D03*

-Y234000D03*

-Y264000D03*

-G54D285*G36*

-X201891Y51050D02*Y43950D01*

-X208991D01*

-Y51050D01*

-X201891D01*

-G37*

-G54D284*X205441Y57500D03*

-Y67500D03*

-G54D285*G36*

-X231891Y51050D02*Y43950D01*

-X238991D01*

-Y51050D01*

-X231891D01*

-G37*

-G54D284*X235441Y57500D03*

-Y67500D03*

-G54D285*G36*

-X261891Y51050D02*Y43950D01*

-X268991D01*

-Y51050D01*

-X261891D01*

-G37*

-G36*

-X171891D02*Y43950D01*

-X178991D01*

-Y51050D01*

-X171891D01*

-G37*

-G36*

-X141891D02*Y43950D01*

-X148991D01*

-Y51050D01*

-X141891D01*

-G37*

-G36*

-X111891D02*Y43950D01*

-X118991D01*

-Y51050D01*

-X111891D01*

-G37*

-G36*

-X81891D02*Y43950D01*

-X88991D01*

-Y51050D01*

-X81891D01*

-G37*

-G54D284*X265441Y57500D03*

-X175441D03*

-X145441D03*

-X115441D03*

-X85441D03*

-X265441Y67500D03*

-X175441D03*

-G54D285*G36*

-X291891Y51050D02*Y43950D01*

-X298991D01*

-Y51050D01*

-X291891D01*

-G37*

-G54D284*X295441Y57500D03*

-Y67500D03*

-X145441D03*

-X115441D03*

-X85441D03*

-G54D286*X85799Y179829D03*

-G54D288*X105799Y184829D03*

-G54D285*G36*

-X101499Y179129D02*Y170529D01*

-X110099D01*

-Y179129D01*

-X101499D01*

-G37*

-G54D288*X115799Y184829D03*

-Y174829D03*

-X125799Y184829D03*

-Y174829D03*

-G54D285*G36*

-X81891Y243550D02*Y236450D01*

-X88991D01*

-Y243550D01*

-X81891D01*

-G37*

-G54D284*X85441Y230000D03*

-Y220000D03*

-G54D288*X135799Y184829D03*

-X145799D03*

-X155799D03*

-X135799Y174829D03*

-X145799D03*

-X155799D03*

-X165799Y184829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-X165799Y174829D03*

-X175799D03*

-X185799D03*

-X195799D03*

-G54D285*G36*

-X191499Y201629D02*Y193029D01*

-X200099D01*

-Y201629D01*

-X191499D01*

-G37*

-G54D288*X205799Y197329D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X205799Y184829D03*

-X215799D03*

-X225799D03*

-X205799Y174829D03*

-X215799D03*

-X225799D03*

-X235799D03*

-X245799D03*

-X255799D03*

-X235799Y184829D03*

-X245799D03*

-X255799D03*

-X265799D03*

-Y174829D03*

-X275799Y184829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-X275799Y174829D03*

-X285799D03*

-X295799D03*

-X305799D03*

-X315799D03*

-X325799D03*

-G54D290*X371941Y118193D02*Y104807D01*

-G54D291*X397548Y98042D02*X398334D01*

-G54D292*X271438Y125822D02*X277938D01*

-X291938D02*X298438D01*

-X291938Y130822D02*X298438D01*

-X291938Y135822D02*X298438D01*

-X291938Y140822D02*X298438D01*

-X291938Y145822D02*X298438D01*

-X271438Y120822D02*X277938D01*

-X271438Y115822D02*X277938D01*

-X271438Y110822D02*X277938D01*

-X291938D02*X298438D01*

-X291938Y115822D02*X298438D01*

-X291938Y120822D02*X298438D01*

-G54D293*X235941Y141992D02*Y141008D01*

-X241059Y141992D02*Y141008D01*

-X241073Y148246D02*Y147262D01*

-X235955Y148246D02*Y147262D01*

-X247516Y131149D02*X248500D01*

-X247516Y136267D02*X248500D01*

-X247949Y124059D02*X248933D01*

-X247949Y118941D02*X248933D01*

-X247949Y107559D02*X248933D01*

-X247949Y102441D02*X248933D01*

-X183949Y124059D02*X184933D01*

-X183949Y118941D02*X184933D01*

-X183949Y113059D02*X184933D01*

-X183949Y107941D02*X184933D01*

-X184491Y130953D02*X185475D01*

-X184491Y136071D02*X185475D01*

-X197000Y148838D02*Y147854D01*

-X202118Y148838D02*Y147854D01*

-X432000Y70492D02*Y69508D01*

-X426882Y70492D02*Y69508D01*

-G54D291*X340186Y98404D02*X345696D01*

-X340186Y86594D02*X345696D01*

-X327186D02*X332696D01*

-X397548Y90956D02*X398334D01*

-X327186Y98404D02*X332696D01*

-G54D293*X372000Y72491D02*Y71507D01*

-X366882Y72491D02*Y71507D01*

-X356823Y71992D02*Y71008D01*

-X361941Y71992D02*Y71008D01*

-X356823Y65992D02*Y65008D01*

-X361941Y65992D02*Y65008D01*

-G54D291*X374548Y51413D02*X375334D01*

-X381536Y48755D02*Y43245D01*

-X393346Y48755D02*Y43245D01*

-X374548Y58499D02*X375334D01*

-X381898Y58893D02*Y58107D01*

-X388984Y58893D02*Y58107D01*

-G54D294*X356941Y84728D02*Y78429D01*

-X361941Y84728D02*Y78429D01*

-G54D291*X370398Y66393D02*Y65607D01*

-X377484Y66393D02*Y65607D01*

-X384398Y66893D02*Y66107D01*

-X391484Y66893D02*Y66107D01*

-G54D294*X366941Y84728D02*Y78429D01*

-X371941Y84728D02*Y78429D01*

-X376941Y84728D02*Y78429D01*

-X381941Y84728D02*Y78429D01*

-X386941Y84728D02*Y78429D01*

-G54D293*X397449Y79381D02*X398433D01*

-X397449Y84499D02*X398433D01*

-X394949Y188441D02*X395933D01*

-X394949Y193559D02*X395933D01*

-G54D295*X394397Y203689D02*Y199083D01*

-X376485Y203689D02*Y199083D01*

-X379044Y203689D02*Y199083D01*

-X381603Y203689D02*Y199083D01*

-X384162Y203689D02*Y199083D01*

-X386720Y203689D02*Y199083D01*

-X389279Y203689D02*Y199083D01*

-X391838Y203689D02*Y199083D01*

-G54D293*X392643Y247056D02*X393627D01*

-X392643Y252174D02*X393627D01*

-G54D295*X394397Y226917D02*Y222311D01*

-X391838Y226917D02*Y222311D01*

-X389279Y226917D02*Y222311D01*

-X386720Y226917D02*Y222311D01*

-X384162Y226917D02*Y222311D01*

-X381603Y226917D02*Y222311D01*

-X379044Y226917D02*Y222311D01*

-X376485Y226917D02*Y222311D01*

-G54D293*X392949Y365941D02*X393933D01*

-X392949Y371059D02*X393933D01*

-G54D295*X394397Y344917D02*Y340311D01*

-X391838Y344917D02*Y340311D01*

-X389279Y344917D02*Y340311D01*

-X386720Y344917D02*Y340311D01*

-X389279Y321689D02*Y317083D01*

-X391838Y321689D02*Y317083D01*

-X394397Y321689D02*Y317083D01*

-X384162Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X386720Y321689D02*Y317083D01*

-X381603Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y344917D02*Y340311D01*

-X376485Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y321689D02*Y317083D01*

-G54D293*X392949Y306000D02*X393933D01*

-X392949Y311118D02*X393933D01*

-G54D291*X245312Y349893D02*Y349107D01*

-Y342893D02*Y342107D01*

-X245355Y356893D02*Y356107D01*

-X252398Y349893D02*Y349107D01*

-G54D293*X265957Y349992D02*Y349008D01*

-X260839Y349992D02*Y349008D01*

-G54D291*X245355Y335893D02*Y335107D01*

-X252441Y335893D02*Y335107D01*

-G54D293*X266000Y335992D02*Y335008D01*

-X260882Y335992D02*Y335008D01*

-X265957Y342992D02*Y342008D01*

-X260839Y342992D02*Y342008D01*

-G54D291*X252398Y342893D02*Y342107D01*

-G54D293*X266000Y356992D02*Y356008D01*

-X260882Y356992D02*Y356008D01*

-G54D291*X252441Y356893D02*Y356107D01*

-G54D293*X246335Y292732D02*X247319D01*

-G54D296*X148299Y292229D02*X148899D01*

-X148299Y284429D02*X148899D01*

-X156499Y288329D02*X157099D01*

-G54D292*X184799Y298829D02*X190799D01*

-X184799Y303829D02*X190799D01*

-G54D293*X197307Y303888D02*X198291D01*

-G54D292*X184799Y308829D02*X190799D01*

-X184799Y313829D02*X190799D01*

-X184799Y318829D02*X190799D01*

-G54D293*X197307Y318770D02*X198291D01*

-X197307Y298770D02*X198291D01*

-X168732Y356454D02*Y355470D01*

-X173850Y356454D02*Y355470D01*

-G54D292*X148799Y333829D02*X154799D01*

-X148799Y328829D02*X154799D01*

-X148799Y323829D02*X154799D01*

-X184799D02*X190799D01*

-X184799Y328829D02*X190799D01*

-X184799Y333829D02*X190799D01*

-G54D293*X197307Y323888D02*X198291D01*

-G54D292*X148799Y318829D02*X154799D01*

-X148799Y313829D02*X154799D01*

-X148799Y308829D02*X154799D01*

-X148799Y303829D02*X154799D01*

-X148799Y298829D02*X154799D01*

-G54D293*X140949Y334059D02*X141933D01*

-X140949Y328941D02*X141933D01*

-X140949Y323559D02*X141933D01*

-X140949Y318441D02*X141933D01*

-X141307Y303770D02*X142291D01*

-X141307Y308888D02*X142291D01*

-X246335Y297850D02*X247319D01*

-G54D297*X253106Y295592D02*X256504D01*

-G54D293*X269500Y310492D02*Y309508D01*

-X264382Y310492D02*Y309508D01*

-G54D297*X268381Y304963D02*Y301565D01*

-X266413Y304963D02*Y301565D01*

-X264444Y304963D02*Y301565D01*

-X262476Y304963D02*Y301565D01*

-X253106Y293624D02*X256504D01*

-X253106Y291655D02*X256504D01*

-X253106Y289687D02*X256504D01*

-X253106Y287718D02*X256504D01*

-X253106Y285750D02*X256504D01*

-X253106Y283781D02*X256504D01*

-G54D293*X296748Y247270D02*X297732D01*

-G54D291*X290048Y244914D02*X290834D01*

-G54D297*X292004Y260093D02*Y256695D01*

-G54D291*X170048Y248543D02*X170834D01*

-X170048Y241457D02*X170834D01*

-G54D293*X170949Y231882D02*X171933D01*

-X170949Y237000D02*X171933D01*

-G54D297*X274288Y260093D02*Y256695D01*

-X276256Y260093D02*Y256695D01*

-X278225Y260093D02*Y256695D01*

-X280193Y260093D02*Y256695D01*

-X282162Y260093D02*Y256695D01*

-X284130Y260093D02*Y256695D01*

-X286099Y260093D02*Y256695D01*

-X288067Y260093D02*Y256695D01*

-X290036Y260093D02*Y256695D01*

-G54D293*X243681Y261321D02*Y260337D01*

-G54D291*X239154Y268222D02*Y267436D01*

-X246240Y268222D02*Y267436D01*

-G54D297*X253106Y270002D02*X256504D01*

-X253106Y268033D02*X256504D01*

-X253106Y266065D02*X256504D01*

-G54D293*X248799Y261321D02*Y260337D01*

-G54D297*X262477Y260093D02*Y256695D01*

-X264445Y260093D02*Y256695D01*

-X266414Y260093D02*Y256695D01*

-X268382Y260093D02*Y256695D01*

-X270351Y260093D02*Y256695D01*

-X272319Y260093D02*Y256695D01*

-G54D298*X124831Y309514D02*X128768D01*

-X124831Y289829D02*X128768D01*

-G54D291*X104816Y243370D02*X110326D01*

-X104816Y231560D02*X110326D01*

-X116816Y243370D02*X122326D01*

-X116816Y231560D02*X122326D01*

-G54D294*X130941Y231228D02*Y224929D01*

-X135941Y231228D02*Y224929D01*

-X140941Y231228D02*Y224929D01*

-G54D290*X145941Y264693D02*Y251307D01*

-G54D291*X95548Y204457D02*X96334D01*

-X95548Y211543D02*X96334D01*

-G54D293*X102449Y216559D02*X103433D01*

-X102449Y211441D02*X103433D01*

-G54D291*X150984Y212893D02*Y212107D01*

-G54D294*X145941Y231228D02*Y224929D01*

-G54D293*X146000Y218992D02*Y218008D01*

-G54D291*X145036Y198755D02*Y193245D01*

-G54D294*X150941Y231228D02*Y224929D01*

-X155941Y231228D02*Y224929D01*

-X160941Y231228D02*Y224929D01*

-G54D293*X140882Y218992D02*Y218008D01*

-X130453Y217862D02*Y216878D01*

-X135571Y217862D02*Y216878D01*

-X130453Y211862D02*Y210878D01*

-X135571Y211862D02*Y210878D01*

-G54D291*X143898Y205893D02*Y205107D01*

-X150984Y205893D02*Y205107D01*

-X143898Y212893D02*Y212107D01*

-X156846Y198755D02*Y193245D01*

-X157398Y205893D02*Y205107D01*

-X164484Y205893D02*Y205107D01*

-X157485Y212763D02*Y211977D01*

-X164571Y212763D02*Y211977D01*

-G54D293*X189949Y124059D02*X190933D01*

-X189949Y118941D02*X190933D01*

-X195475Y112832D02*Y111848D01*

-X190357Y112832D02*Y111848D01*

-X189949Y130941D02*X190933D01*

-X189949Y136059D02*X190933D01*

-G54D292*X202441Y142500D02*X208941D01*

-X202441Y137500D02*X208941D01*

-X202441Y132500D02*X208941D01*

-G54D293*X195500Y141992D02*Y141008D01*

-X190382Y141992D02*Y141008D01*

-X113975Y141832D02*Y140848D01*

-X108857Y141832D02*Y140848D01*

-X102191Y140958D02*X103175D01*

-X102191Y146076D02*X103175D01*

-X108449Y130941D02*X109433D01*

-X108449Y136059D02*X109433D01*

-X102298Y131017D02*X103282D01*

-X102298Y136135D02*X103282D01*

-X155382Y112992D02*Y112008D01*

-G54D292*X141166Y112340D02*X147666D01*

-X141166Y117340D02*X147666D01*

-G54D293*X166166Y112568D02*X167150D01*

-X166166Y107450D02*X167150D01*

-X160500Y112992D02*Y112008D01*

-X159949Y130941D02*X160933D01*

-X159949Y136059D02*X160933D01*

-X159949Y124059D02*X160933D01*

-X159949Y118941D02*X160933D01*

-G54D292*X141166Y122340D02*X147666D01*

-X141166Y127340D02*X147666D01*

-X141166Y132340D02*X147666D01*

-X141166Y137340D02*X147666D01*

-X141166Y142340D02*X147666D01*

-G54D293*X137000Y148492D02*Y147508D01*

-X131882Y148492D02*Y147508D01*

-X155382Y141992D02*Y141008D01*

-X155416Y148497D02*Y147513D01*

-X160500Y141992D02*Y141008D01*

-X165483Y131219D02*X166467D01*

-X165483Y136337D02*X166467D01*

-X160534Y148497D02*Y147513D01*

-X165949Y124059D02*X166933D01*

-X165949Y118941D02*X166933D01*

-G54D292*X120666Y142340D02*X127166D01*

-X120666Y137340D02*X127166D01*

-X120666Y132340D02*X127166D01*

-X120666Y127340D02*X127166D01*

-X120666Y122340D02*X127166D01*

-X120666Y117340D02*X127166D01*

-X120666Y112340D02*X127166D01*

-G54D293*X114000Y112992D02*Y112008D01*

-X108882Y112992D02*Y112008D01*

-X101909Y113435D02*X102893D01*

-X101909Y108317D02*X102893D01*

-X108449Y124059D02*X109433D01*

-X108449Y118941D02*X109433D01*

-X101949Y124059D02*X102933D01*

-X101949Y118941D02*X102933D01*

-X241449Y130941D02*X242433D01*

-X241449Y136059D02*X242433D01*

-G54D292*X222941Y112500D02*X229441D01*

-X222941Y117500D02*X229441D01*

-X222941Y122500D02*X229441D01*

-X222941Y127500D02*X229441D01*

-X222941Y132500D02*X229441D01*

-X222941Y137500D02*X229441D01*

-X222941Y142500D02*X229441D01*

-G54D293*X219000Y148492D02*Y147508D01*

-X213882Y148492D02*Y147508D01*

-G54D292*X202441Y127500D02*X208941D01*

-X202441Y122500D02*X208941D01*

-X202441Y117500D02*X208941D01*

-X202441Y112500D02*X208941D01*

-G54D293*X236882Y112992D02*Y112008D01*

-X242000Y112992D02*Y112008D01*

-X241449Y124059D02*X242433D01*

-X241449Y118941D02*X242433D01*

-X305696Y110822D02*X306680D01*

-X305696Y115940D02*X306680D01*

-X304472Y136450D02*X305456D01*

-X304472Y141568D02*X305456D01*

-G54D292*X271438Y145822D02*X277938D01*

-X271438Y140822D02*X277938D01*

-X271438Y135822D02*X277938D01*

-X271438Y130822D02*X277938D01*

-G54D299*X295941Y342350D02*Y338450D01*

-X285941Y342350D02*Y338450D01*

-G54D293*X277449Y342559D02*X278433D01*

-X277449Y337441D02*X278433D01*

-G54D299*X295941Y317550D02*Y313650D01*

-G54D293*X303365Y324772D02*X304349D01*

-X303365Y319654D02*X304349D01*

-X307462Y295038D02*X308446D01*

-X307462Y300156D02*X308446D01*

-G54D297*X297976Y295593D02*X301374D01*

-G54D299*X285941Y317550D02*Y313650D01*

-G54D297*X292003Y304963D02*Y301565D01*

-X290035Y304963D02*Y301565D01*

-X288066Y304963D02*Y301565D01*

-X286098Y304963D02*Y301565D01*

-X284129Y304963D02*Y301565D01*

-X282161Y304963D02*Y301565D01*

-X297976Y293625D02*X301374D01*

-X280192Y304963D02*Y301565D01*

-X278224Y304963D02*Y301565D01*

-X276255Y304963D02*Y301565D01*

-X274287Y304963D02*Y301565D01*

-X272318Y304963D02*Y301565D01*

-X270350Y304963D02*Y301565D01*

-X253106Y281813D02*X256504D01*

-X253106Y279844D02*X256504D01*

-X253106Y277876D02*X256504D01*

-X253106Y275907D02*X256504D01*

-X253106Y273939D02*X256504D01*

-X253106Y271970D02*X256504D01*

-G54D293*X296748Y252388D02*X297732D01*

-G54D291*X290048Y252000D02*X290834D01*

-G54D297*X297976Y266066D02*X301374D01*

-X297976Y268034D02*X301374D01*

-X297976Y270003D02*X301374D01*

-X297976Y271971D02*X301374D01*

-X297976Y273940D02*X301374D01*

-X297976Y275908D02*X301374D01*

-X297976Y277877D02*X301374D01*

-X297976Y279845D02*X301374D01*

-X297976Y281814D02*X301374D01*

-X297976Y283782D02*X301374D01*

-X297976Y285751D02*X301374D01*

-X297976Y287719D02*X301374D01*

-X297976Y289688D02*X301374D01*

-X297976Y291656D02*X301374D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140120/cape.toppaste.gbr b/bbb_cape/schematic/gerbers/20140120/cape.toppaste.gbr
deleted file mode 100644
index 1fd3c48..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.toppaste.gbr
+++ /dev/null
@@ -1,383 +0,0 @@
-G04 start of page 12 for group -4015 idx -4015 *

-G04 Title: 971 BBB Cape, toppaste *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Mon Jan 20 21:04:42 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNTOPPASTE*%

-%ADD336R,0.0110X0.0110*%

-%ADD335R,0.2106X0.2106*%

-%ADD334R,0.0350X0.0350*%

-%ADD333R,0.0550X0.0550*%

-%ADD332R,0.0948X0.0948*%

-%ADD331R,0.0200X0.0200*%

-%ADD330R,0.0340X0.0340*%

-%ADD329R,0.0512X0.0512*%

-%ADD328R,0.0130X0.0130*%

-%ADD327R,0.0295X0.0295*%

-G54D327*X394949Y188441D02*X395933D01*

-X394949Y193559D02*X395933D01*

-X432000Y70492D02*Y69508D01*

-X426882Y70492D02*Y69508D01*

-X392643Y247056D02*X393627D01*

-X392643Y252174D02*X393627D01*

-X392949Y365941D02*X393933D01*

-X392949Y371059D02*X393933D01*

-X392949Y306000D02*X393933D01*

-X392949Y311118D02*X393933D01*

-G54D328*X394397Y226917D02*Y222311D01*

-X391838Y226917D02*Y222311D01*

-X389279Y226917D02*Y222311D01*

-X386720Y226917D02*Y222311D01*

-X384162Y226917D02*Y222311D01*

-X381603Y226917D02*Y222311D01*

-X379044Y226917D02*Y222311D01*

-X376485Y226917D02*Y222311D01*

-Y203689D02*Y199083D01*

-X379044Y203689D02*Y199083D01*

-X381603Y203689D02*Y199083D01*

-X384162Y203689D02*Y199083D01*

-X386720Y203689D02*Y199083D01*

-X389279Y203689D02*Y199083D01*

-X391838Y203689D02*Y199083D01*

-X394397Y203689D02*Y199083D01*

-G54D327*X296748Y247270D02*X297732D01*

-X296748Y252388D02*X297732D01*

-X243681Y261321D02*Y260337D01*

-X248799Y261321D02*Y260337D01*

-X246335Y297850D02*X247319D01*

-X246335Y292732D02*X247319D01*

-X269500Y310492D02*Y309508D01*

-X264382Y310492D02*Y309508D01*

-G54D329*X239154Y268222D02*Y267436D01*

-X246240Y268222D02*Y267436D01*

-X290048Y244914D02*X290834D01*

-X290048Y252000D02*X290834D01*

-G54D327*X168732Y356454D02*Y355470D01*

-X173850Y356454D02*Y355470D01*

-G54D330*X148299Y292229D02*X148899D01*

-X148299Y284429D02*X148899D01*

-X156499Y288329D02*X157099D01*

-G54D331*X148799Y333829D02*X154799D01*

-X148799Y328829D02*X154799D01*

-X148799Y323829D02*X154799D01*

-X148799Y318829D02*X154799D01*

-X148799Y313829D02*X154799D01*

-X148799Y308829D02*X154799D01*

-X148799Y303829D02*X154799D01*

-X148799Y298829D02*X154799D01*

-X184799D02*X190799D01*

-X184799Y303829D02*X190799D01*

-X184799Y308829D02*X190799D01*

-X184799Y313829D02*X190799D01*

-X184799Y318829D02*X190799D01*

-X184799Y323829D02*X190799D01*

-X184799Y328829D02*X190799D01*

-X184799Y333829D02*X190799D01*

-G54D327*X197307Y323888D02*X198291D01*

-X197307Y318770D02*X198291D01*

-X140949Y334059D02*X141933D01*

-X140949Y328941D02*X141933D01*

-X197307Y303888D02*X198291D01*

-X197307Y298770D02*X198291D01*

-X141307Y303770D02*X142291D01*

-X141307Y308888D02*X142291D01*

-G54D332*X124831Y309514D02*X128768D01*

-X124831Y289829D02*X128768D01*

-G54D333*X295941Y342350D02*Y338450D01*

-Y317550D02*Y313650D01*

-X285941Y317550D02*Y313650D01*

-Y342350D02*Y338450D01*

-G54D327*X303365Y324772D02*X304349D01*

-X303365Y319654D02*X304349D01*

-X277449Y342559D02*X278433D01*

-X277449Y337441D02*X278433D01*

-X307462Y295038D02*X308446D01*

-X307462Y300156D02*X308446D01*

-G54D329*X104816Y243370D02*X110326D01*

-X104816Y231560D02*X110326D01*

-X116816Y243370D02*X122326D01*

-X116816Y231560D02*X122326D01*

-G54D334*X130941Y231228D02*Y224929D01*

-X135941Y231228D02*Y224929D01*

-X140941Y231228D02*Y224929D01*

-X145941Y231228D02*Y224929D01*

-X150941Y231228D02*Y224929D01*

-X155941Y231228D02*Y224929D01*

-X160941Y231228D02*Y224929D01*

-G54D335*X145941Y264693D02*Y251307D01*

-G54D327*X146000Y218992D02*Y218008D01*

-X140882Y218992D02*Y218008D01*

-X130453Y217862D02*Y216878D01*

-X135571Y217862D02*Y216878D01*

-X130453Y211862D02*Y210878D01*

-X135571Y211862D02*Y210878D01*

-G54D329*X143898Y205893D02*Y205107D01*

-X150984Y205893D02*Y205107D01*

-G54D328*X394397Y344917D02*Y340311D01*

-X391838Y344917D02*Y340311D01*

-X389279Y344917D02*Y340311D01*

-X386720Y344917D02*Y340311D01*

-X384162Y344917D02*Y340311D01*

-X381603Y344917D02*Y340311D01*

-X379044Y344917D02*Y340311D01*

-X376485Y344917D02*Y340311D01*

-Y321689D02*Y317083D01*

-X379044Y321689D02*Y317083D01*

-X381603Y321689D02*Y317083D01*

-X384162Y321689D02*Y317083D01*

-X386720Y321689D02*Y317083D01*

-X389279Y321689D02*Y317083D01*

-X391838Y321689D02*Y317083D01*

-X394397Y321689D02*Y317083D01*

-G54D327*X241449Y130941D02*X242433D01*

-X241449Y136059D02*X242433D01*

-X219000Y148492D02*Y147508D01*

-X213882Y148492D02*Y147508D01*

-X189949Y130941D02*X190933D01*

-X189949Y136059D02*X190933D01*

-X189949Y124059D02*X190933D01*

-X189949Y118941D02*X190933D01*

-X236882Y112992D02*Y112008D01*

-X242000Y112992D02*Y112008D01*

-X241449Y124059D02*X242433D01*

-X241449Y118941D02*X242433D01*

-G54D331*X202441Y142500D02*X208941D01*

-X202441Y137500D02*X208941D01*

-X202441Y132500D02*X208941D01*

-X202441Y127500D02*X208941D01*

-X202441Y122500D02*X208941D01*

-X202441Y117500D02*X208941D01*

-X202441Y112500D02*X208941D01*

-X222941D02*X229441D01*

-X222941Y117500D02*X229441D01*

-X222941Y122500D02*X229441D01*

-X222941Y127500D02*X229441D01*

-X222941Y132500D02*X229441D01*

-X222941Y137500D02*X229441D01*

-X222941Y142500D02*X229441D01*

-G54D327*X195500Y141992D02*Y141008D01*

-X190382Y141992D02*Y141008D01*

-X195475Y112832D02*Y111848D01*

-X190357Y112832D02*Y111848D01*

-X113975Y141832D02*Y140848D01*

-X108857Y141832D02*Y140848D01*

-X155382Y112992D02*Y112008D01*

-X160500Y112992D02*Y112008D01*

-X108449Y130941D02*X109433D01*

-X108449Y136059D02*X109433D01*

-X159949Y130941D02*X160933D01*

-X159949Y136059D02*X160933D01*

-G54D331*X120666Y142340D02*X127166D01*

-X120666Y137340D02*X127166D01*

-X120666Y132340D02*X127166D01*

-X120666Y127340D02*X127166D01*

-X120666Y122340D02*X127166D01*

-X120666Y117340D02*X127166D01*

-X120666Y112340D02*X127166D01*

-X141166D02*X147666D01*

-X141166Y117340D02*X147666D01*

-X141166Y122340D02*X147666D01*

-X141166Y127340D02*X147666D01*

-X141166Y132340D02*X147666D01*

-X141166Y137340D02*X147666D01*

-X141166Y142340D02*X147666D01*

-G54D327*X114000Y112992D02*Y112008D01*

-X108882Y112992D02*Y112008D01*

-X108449Y124059D02*X109433D01*

-X108449Y118941D02*X109433D01*

-X159949Y124059D02*X160933D01*

-X159949Y118941D02*X160933D01*

-X155382Y141992D02*Y141008D01*

-X160500Y141992D02*Y141008D01*

-X305696Y110822D02*X306680D01*

-X305696Y115940D02*X306680D01*

-X304472Y136450D02*X305456D01*

-X304472Y141568D02*X305456D01*

-G54D331*X271438Y145822D02*X277938D01*

-X271438Y140822D02*X277938D01*

-X271438Y135822D02*X277938D01*

-X271438Y130822D02*X277938D01*

-X271438Y125822D02*X277938D01*

-X271438Y120822D02*X277938D01*

-X271438Y115822D02*X277938D01*

-X271438Y110822D02*X277938D01*

-X291938D02*X298438D01*

-X291938Y115822D02*X298438D01*

-X291938Y120822D02*X298438D01*

-X291938Y125822D02*X298438D01*

-X291938Y130822D02*X298438D01*

-X291938Y135822D02*X298438D01*

-X291938Y140822D02*X298438D01*

-X291938Y145822D02*X298438D01*

-G54D327*X140949Y323559D02*X141933D01*

-X140949Y318441D02*X141933D01*

-G54D329*X245312Y349893D02*Y349107D01*

-X252398Y349893D02*Y349107D01*

-X245355Y335893D02*Y335107D01*

-X252441Y335893D02*Y335107D01*

-G54D327*X266000Y335992D02*Y335008D01*

-X260882Y335992D02*Y335008D01*

-X265957Y342992D02*Y342008D01*

-X260839Y342992D02*Y342008D01*

-X265957Y349992D02*Y349008D01*

-X260839Y349992D02*Y349008D01*

-G54D329*X245312Y342893D02*Y342107D01*

-X252398Y342893D02*Y342107D01*

-G54D336*X292003Y304963D02*Y301565D01*

-X290035Y304963D02*Y301565D01*

-X288066Y304963D02*Y301565D01*

-X286098Y304963D02*Y301565D01*

-X284129Y304963D02*Y301565D01*

-X282161Y304963D02*Y301565D01*

-X280192Y304963D02*Y301565D01*

-X278224Y304963D02*Y301565D01*

-X276255Y304963D02*Y301565D01*

-X274287Y304963D02*Y301565D01*

-X272318Y304963D02*Y301565D01*

-X270350Y304963D02*Y301565D01*

-X268381Y304963D02*Y301565D01*

-X266413Y304963D02*Y301565D01*

-X264444Y304963D02*Y301565D01*

-X262476Y304963D02*Y301565D01*

-X253106Y295592D02*X256504D01*

-X253106Y293624D02*X256504D01*

-X253106Y291655D02*X256504D01*

-X253106Y289687D02*X256504D01*

-X253106Y287718D02*X256504D01*

-X253106Y285750D02*X256504D01*

-X253106Y283781D02*X256504D01*

-X253106Y281813D02*X256504D01*

-X253106Y279844D02*X256504D01*

-X253106Y277876D02*X256504D01*

-X253106Y275907D02*X256504D01*

-X253106Y273939D02*X256504D01*

-X253106Y271970D02*X256504D01*

-X253106Y270002D02*X256504D01*

-X253106Y268033D02*X256504D01*

-X253106Y266065D02*X256504D01*

-X262477Y260093D02*Y256695D01*

-X264445Y260093D02*Y256695D01*

-X266414Y260093D02*Y256695D01*

-X268382Y260093D02*Y256695D01*

-X270351Y260093D02*Y256695D01*

-X272319Y260093D02*Y256695D01*

-X274288Y260093D02*Y256695D01*

-X276256Y260093D02*Y256695D01*

-X278225Y260093D02*Y256695D01*

-X280193Y260093D02*Y256695D01*

-X282162Y260093D02*Y256695D01*

-X284130Y260093D02*Y256695D01*

-X286099Y260093D02*Y256695D01*

-X288067Y260093D02*Y256695D01*

-X290036Y260093D02*Y256695D01*

-X292004Y260093D02*Y256695D01*

-X297976Y266066D02*X301374D01*

-X297976Y268034D02*X301374D01*

-X297976Y270003D02*X301374D01*

-X297976Y271971D02*X301374D01*

-X297976Y273940D02*X301374D01*

-X297976Y275908D02*X301374D01*

-X297976Y277877D02*X301374D01*

-X297976Y279845D02*X301374D01*

-X297976Y281814D02*X301374D01*

-X297976Y283782D02*X301374D01*

-X297976Y285751D02*X301374D01*

-X297976Y287719D02*X301374D01*

-X297976Y289688D02*X301374D01*

-X297976Y291656D02*X301374D01*

-X297976Y293625D02*X301374D01*

-X297976Y295593D02*X301374D01*

-G54D327*X235941Y141992D02*Y141008D01*

-X241059Y141992D02*Y141008D01*

-G54D329*X95548Y204457D02*X96334D01*

-X95548Y211543D02*X96334D01*

-X170048Y248543D02*X170834D01*

-X170048Y241457D02*X170834D01*

-G54D327*X170949Y231882D02*X171933D01*

-X170949Y237000D02*X171933D01*

-X102449Y216559D02*X103433D01*

-X102449Y211441D02*X103433D01*

-X266000Y356992D02*Y356008D01*

-X260882Y356992D02*Y356008D01*

-G54D329*X245355Y356893D02*Y356107D01*

-X252441Y356893D02*Y356107D01*

-G54D327*X166166Y112568D02*X167150D01*

-X166166Y107450D02*X167150D01*

-X102191Y140958D02*X103175D01*

-X102191Y146076D02*X103175D01*

-X247516Y131149D02*X248500D01*

-X247516Y136267D02*X248500D01*

-X247949Y124059D02*X248933D01*

-X247949Y118941D02*X248933D01*

-X247949Y107559D02*X248933D01*

-X247949Y102441D02*X248933D01*

-X183949Y124059D02*X184933D01*

-X183949Y118941D02*X184933D01*

-G54D329*X145036Y198755D02*Y193245D01*

-X156846Y198755D02*Y193245D01*

-X157398Y205893D02*Y205107D01*

-X164484Y205893D02*Y205107D01*

-X143898Y212893D02*Y212107D01*

-X150984Y212893D02*Y212107D01*

-G54D327*X165483Y131219D02*X166467D01*

-X165483Y136337D02*X166467D01*

-X160534Y148497D02*Y147513D01*

-X155416Y148497D02*Y147513D01*

-X165949Y124059D02*X166933D01*

-X165949Y118941D02*X166933D01*

-X101949Y124059D02*X102933D01*

-X101949Y118941D02*X102933D01*

-X101909Y113435D02*X102893D01*

-X101909Y108317D02*X102893D01*

-X102298Y131017D02*X103282D01*

-X102298Y136135D02*X103282D01*

-X241073Y148246D02*Y147262D01*

-X235955Y148246D02*Y147262D01*

-X183949Y113059D02*X184933D01*

-X183949Y107941D02*X184933D01*

-X184491Y130953D02*X185475D01*

-X184491Y136071D02*X185475D01*

-X197000Y148838D02*Y147854D01*

-X202118Y148838D02*Y147854D01*

-G54D329*X157485Y212763D02*Y211977D01*

-X164571Y212763D02*Y211977D01*

-X340186Y98404D02*X345696D01*

-X340186Y86594D02*X345696D01*

-G54D327*X372000Y72491D02*Y71507D01*

-X366882Y72491D02*Y71507D01*

-X356823Y71992D02*Y71008D01*

-X361941Y71992D02*Y71008D01*

-X356823Y65992D02*Y65008D01*

-X361941Y65992D02*Y65008D01*

-G54D329*X374548Y51413D02*X375334D01*

-X374548Y58499D02*X375334D01*

-X327186Y98404D02*X332696D01*

-X327186Y86594D02*X332696D01*

-G54D334*X356941Y84728D02*Y78429D01*

-X361941Y84728D02*Y78429D01*

-X366941Y84728D02*Y78429D01*

-X371941Y84728D02*Y78429D01*

-X376941Y84728D02*Y78429D01*

-X381941Y84728D02*Y78429D01*

-X386941Y84728D02*Y78429D01*

-G54D335*X371941Y118193D02*Y104807D01*

-G54D329*X397548Y98042D02*X398334D01*

-X397548Y90956D02*X398334D01*

-G54D327*X397449Y79381D02*X398433D01*

-X397449Y84499D02*X398433D01*

-G54D329*X370398Y66393D02*Y65607D01*

-X377484Y66393D02*Y65607D01*

-X381536Y48755D02*Y43245D01*

-X393346Y48755D02*Y43245D01*

-X381898Y58893D02*Y58107D01*

-X388984Y58893D02*Y58107D01*

-X384398Y66893D02*Y66107D01*

-X391484Y66893D02*Y66107D01*

-G54D327*X137000Y148492D02*Y147508D01*

-X131882Y148492D02*Y147508D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140120/cape.topsilk.gbr b/bbb_cape/schematic/gerbers/20140120/cape.topsilk.gbr
deleted file mode 100644
index 193b135..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.topsilk.gbr
+++ /dev/null
@@ -1,1039 +0,0 @@
-G04 start of page 10 for group -4079 idx -4079 *

-G04 Title: 971 BBB Cape, topsilk *

-G04 Creator: pcb 20110918 *

-G04 CreationDate: Mon Jan 20 21:04:42 2014 UTC *

-G04 For: brians *

-G04 Format: Gerber/RS-274X *

-G04 PCB-Dimensions: 500000 400000 *

-G04 PCB-Coordinate-Origin: lower left *

-%MOIN*%

-%FSLAX25Y25*%

-%LNTOPSILK*%

-%ADD324C,0.0030*%

-%ADD323C,0.0080*%

-%ADD322C,0.0100*%

-%ADD321C,0.0070*%

-%ADD320C,0.0040*%

-%ADD319C,0.0042*%

-%ADD318C,0.0054*%

-%ADD317C,0.0072*%

-%ADD316C,0.0046*%

-%ADD315C,0.0060*%

-G54D315*X251441Y328500D02*X248941Y331000D01*

-X251441Y328500D02*X248941Y326000D01*

-Y331000D01*

-X251441Y328500D02*X257441D01*

-X251441Y332000D02*Y325000D01*

-X248941Y328500D02*X242441D01*

-X406441Y95000D02*X403941Y92500D01*

-X406441Y95000D02*X408941Y92500D01*

-X403941D02*X408941D01*

-X406441Y101000D02*Y95000D01*

-Y92500D02*Y86000D01*

-X402941Y95000D02*X409941D01*

-X178441Y244500D02*X175941Y242000D01*

-X178441Y244500D02*X180941Y242000D01*

-X175941D02*X180941D01*

-X178441Y250500D02*Y244500D01*

-Y242000D02*Y235500D01*

-X174941Y244500D02*X181941D01*

-X87941Y207000D02*X90441Y209500D01*

-X87941Y207000D02*X85441Y209500D01*

-X90441D01*

-X87941Y207000D02*Y201000D01*

-X84441Y207000D02*X91441D01*

-X87941Y209500D02*Y212500D01*

-G54D316*X444070Y52497D02*X443150Y53417D01*

-X447750D01*

-Y54222D02*Y52497D01*

-X444070Y55602D02*X443150Y56522D01*

-X447750D01*

-Y57327D02*Y55602D01*

-X444070Y81477D02*X443150Y82397D01*

-X447750D01*

-Y83202D02*Y81477D01*

-X447175Y84582D02*X447750Y85157D01*

-X443725Y84582D02*X447175D01*

-X443725D02*X443150Y85157D01*

-Y86307D02*Y85157D01*

-Y86307D02*X443725Y86882D01*

-X447175D01*

-X447750Y86307D02*X447175Y86882D01*

-X447750Y86307D02*Y85157D01*

-X446600Y84582D02*X444300Y86882D01*

-X447750Y113677D02*X445450Y115402D01*

-X443725D02*X445450D01*

-X443150Y114827D02*X443725Y115402D01*

-X443150Y114827D02*Y113677D01*

-X443725Y113102D02*X443150Y113677D01*

-X443725Y113102D02*X444875D01*

-X445450Y113677D01*

-Y115402D02*Y113677D01*

-X447175Y141622D02*X447750Y142197D01*

-X446255Y141622D02*X447175D01*

-X446255D02*X445450Y142427D01*

-Y143117D02*Y142427D01*

-Y143117D02*X446255Y143922D01*

-X447175D01*

-X447750Y143347D02*X447175Y143922D01*

-X447750Y143347D02*Y142197D01*

-X444645Y141622D02*X445450Y142427D01*

-X443725Y141622D02*X444645D01*

-X443725D02*X443150Y142197D01*

-Y143347D02*Y142197D01*

-Y143347D02*X443725Y143922D01*

-X444645D01*

-X445450Y143117D02*X444645Y143922D01*

-X447750Y174857D02*X443150Y177157D01*

-Y174282D01*

-Y205102D02*X443725Y205677D01*

-X443150Y205102D02*Y203952D01*

-X443725Y203377D02*X443150Y203952D01*

-X443725Y203377D02*X447175D01*

-X447750Y203952D01*

-X445220Y205102D02*X445795Y205677D01*

-X445220Y205102D02*Y203377D01*

-X447750Y205102D02*Y203952D01*

-Y205102D02*X447175Y205677D01*

-X445795D02*X447175D01*

-X443150Y234197D02*Y231897D01*

-X445450D01*

-X444875Y232472D01*

-Y233622D02*Y232472D01*

-Y233622D02*X445450Y234197D01*

-X447175D01*

-X447750Y233622D02*X447175Y234197D01*

-X447750Y233622D02*Y232472D01*

-X447175Y231897D02*X447750Y232472D01*

-X446025Y260417D02*X443150Y262717D01*

-X446025Y263292D02*Y260417D01*

-X443150Y262717D02*X447750D01*

-X443725Y291582D02*X443150Y292157D01*

-Y293307D02*Y292157D01*

-Y293307D02*X443725Y293882D01*

-X447750Y293307D02*X447175Y293882D01*

-X447750Y293307D02*Y292157D01*

-X447175Y291582D02*X447750Y292157D01*

-X445220Y293307D02*Y292157D01*

-X443725Y293882D02*X444645D01*

-X445795D02*X447175D01*

-X445795D02*X445220Y293307D01*

-X444645Y293882D02*X445220Y293307D01*

-X443725Y320102D02*X443150Y320677D01*

-Y322402D02*Y320677D01*

-Y322402D02*X443725Y322977D01*

-X444875D01*

-X447750Y320102D02*X444875Y322977D01*

-X447750D02*Y320102D01*

-X444070Y351267D02*X443150Y352187D01*

-X447750D01*

-Y352992D02*Y351267D01*

-X447175Y381282D02*X447750Y381857D01*

-X443725Y381282D02*X447175D01*

-X443725D02*X443150Y381857D01*

-Y383007D02*Y381857D01*

-Y383007D02*X443725Y383582D01*

-X447175D01*

-X447750Y383007D02*X447175Y383582D01*

-X447750Y383007D02*Y381857D01*

-X446600Y381282D02*X444300Y383582D01*

-G54D317*X408938Y134585D02*X412538D01*

-X424418D02*X428018D01*

-X426218Y136385D02*Y132785D01*

-X440798Y138185D02*Y130985D01*

-X443138Y138185D02*X444398Y136925D01*

-Y132245D01*

-X443138Y130985D02*X444398Y132245D01*

-X439898Y130985D02*X443138D01*

-X439898Y138185D02*X443138D01*

-G54D318*X404438Y150435D02*X407138D01*

-X413618D02*X416318D01*

-X414968Y151785D02*Y149085D01*

-X425228Y151785D02*Y147735D01*

-Y151785D02*X426173Y153135D01*

-X427658D01*

-X428603Y151785D01*

-Y147735D01*

-X425228Y150435D02*X428603D01*

-X435083Y147735D02*X437783D01*

-X438458Y148410D01*

-Y150030D02*Y148410D01*

-X437783Y150705D02*X438458Y150030D01*

-X435758Y150705D02*X437783D01*

-X435758Y153135D02*Y147735D01*

-X435083Y153135D02*X437783D01*

-X438458Y152460D01*

-Y151380D01*

-X437783Y150705D02*X438458Y151380D01*

-G54D319*X389250Y174022D02*X385050Y176122D01*

-Y173497D01*

-Y238072D02*Y235972D01*

-X387150D01*

-X386625Y236497D01*

-Y237547D02*Y236497D01*

-Y237547D02*X387150Y238072D01*

-X388725D01*

-X389250Y237547D02*X388725Y238072D01*

-X389250Y237547D02*Y236497D01*

-X388725Y235972D02*X389250Y236497D01*

-X387675Y265792D02*X385050Y267892D01*

-X387675Y268417D02*Y265792D01*

-X385050Y267892D02*X389250D01*

-X385575Y298027D02*X385050Y298552D01*

-Y299602D02*Y298552D01*

-Y299602D02*X385575Y300127D01*

-X389250Y299602D02*X388725Y300127D01*

-X389250Y299602D02*Y298552D01*

-X388725Y298027D02*X389250Y298552D01*

-X386940Y299602D02*Y298552D01*

-X385575Y300127D02*X386415D01*

-X387465D02*X388725D01*

-X387465D02*X386940Y299602D01*

-X386415Y300127D02*X386940Y299602D01*

-X385890Y359977D02*X385050Y360817D01*

-X389250D01*

-Y361552D02*Y359977D01*

-X388725Y389272D02*X389250Y389797D01*

-X385575Y389272D02*X388725D01*

-X385575D02*X385050Y389797D01*

-Y390847D02*Y389797D01*

-Y390847D02*X385575Y391372D01*

-X388725D01*

-X389250Y390847D02*X388725Y391372D01*

-X389250Y390847D02*Y389797D01*

-X388200Y389272D02*X386100Y391372D01*

-G54D320*X308438Y226485D02*X310438D01*

-X317538Y228485D02*Y224485D01*

-X318838Y228485D02*X319538Y227785D01*

-Y225185D01*

-X318838Y224485D02*X319538Y225185D01*

-X317038Y224485D02*X318838D01*

-X317038Y228485D02*X318838D01*

-X320738D02*X321738D01*

-X321238D02*Y224485D01*

-X320738D02*X321738D01*

-X322938Y227985D02*Y224985D01*

-Y227985D02*X323438Y228485D01*

-X324438D01*

-X324938Y227985D01*

-Y224985D01*

-X324438Y224485D02*X324938Y224985D01*

-X323438Y224485D02*X324438D01*

-X322938Y224985D02*X323438Y224485D01*

-X328638D02*X329938D01*

-X327938Y225185D02*X328638Y224485D01*

-X327938Y227785D02*Y225185D01*

-Y227785D02*X328638Y228485D01*

-X329938D01*

-X331138D02*Y224485D01*

-X333138D01*

-X334338Y228485D02*Y224485D01*

-Y226485D02*X336338Y228485D01*

-X334338Y226485D02*X336338Y224485D01*

-X339338Y228485D02*X341338D01*

-X341838Y227985D01*

-Y226985D01*

-X341338Y226485D02*X341838Y226985D01*

-X339838Y226485D02*X341338D01*

-X339838Y228485D02*Y224485D01*

-X340638Y226485D02*X341838Y224485D01*

-X345038Y228485D02*X345538Y227985D01*

-X343538Y228485D02*X345038D01*

-X343038Y227985D02*X343538Y228485D01*

-X343038Y227985D02*Y226985D01*

-X343538Y226485D01*

-X345038D01*

-X345538Y225985D01*

-Y224985D01*

-X345038Y224485D02*X345538Y224985D01*

-X343538Y224485D02*X345038D01*

-X343038Y224985D02*X343538Y224485D01*

-X346738Y228485D02*X348738D01*

-X347738D02*Y224485D01*

-X310438Y220485D02*X310938Y219985D01*

-X308938Y220485D02*X310438D01*

-X308438Y219985D02*X308938Y220485D01*

-X308438Y219985D02*Y218985D01*

-X308938Y218485D01*

-X310438D01*

-X310938Y217985D01*

-Y216985D01*

-X310438Y216485D02*X310938Y216985D01*

-X308938Y216485D02*X310438D01*

-X308438Y216985D02*X308938Y216485D01*

-X312138Y220485D02*Y218485D01*

-X312638Y216485D01*

-X313638Y218485D01*

-X314638Y216485D01*

-X315138Y218485D01*

-Y220485D02*Y218485D01*

-X316838Y220485D02*Y216485D01*

-X318138Y220485D02*X318838Y219785D01*

-Y217185D01*

-X318138Y216485D02*X318838Y217185D01*

-X316338Y216485D02*X318138D01*

-X316338Y220485D02*X318138D01*

-X322338Y218485D02*X323838D01*

-X321838Y217985D02*X322338Y218485D01*

-X321838Y217985D02*Y216985D01*

-X322338Y216485D01*

-X323838D01*

-X325038Y217985D02*Y216985D01*

-Y217985D02*X325538Y218485D01*

-X326538D01*

-X327038Y217985D01*

-Y216985D01*

-X326538Y216485D02*X327038Y216985D01*

-X325538Y216485D02*X326538D01*

-X325038Y216985D02*X325538Y216485D01*

-X328738Y217985D02*Y216485D01*

-Y217985D02*X329238Y218485D01*

-X329738D01*

-X330238Y217985D01*

-Y216485D01*

-X328238Y218485D02*X328738Y217985D01*

-X331938D02*Y216485D01*

-Y217985D02*X332438Y218485D01*

-X332938D01*

-X333438Y217985D01*

-Y216485D01*

-X331438Y218485D02*X331938Y217985D01*

-X335138Y216485D02*X336638D01*

-X334638Y216985D02*X335138Y216485D01*

-X334638Y217985D02*Y216985D01*

-Y217985D02*X335138Y218485D01*

-X336138D01*

-X336638Y217985D01*

-X334638Y217485D02*X336638D01*

-Y217985D02*Y217485D01*

-X338338Y218485D02*X339838D01*

-X337838Y217985D02*X338338Y218485D01*

-X337838Y217985D02*Y216985D01*

-X338338Y216485D01*

-X339838D01*

-X341538Y220485D02*Y216985D01*

-X342038Y216485D01*

-X341038Y218985D02*X342038D01*

-X343038Y217985D02*Y216985D01*

-Y217985D02*X343538Y218485D01*

-X344538D01*

-X345038Y217985D01*

-Y216985D01*

-X344538Y216485D02*X345038Y216985D01*

-X343538Y216485D02*X344538D01*

-X343038Y216985D02*X343538Y216485D01*

-X346738Y217985D02*Y216485D01*

-Y217985D02*X347238Y218485D01*

-X348238D01*

-X346238D02*X346738Y217985D01*

-X236256Y328497D02*Y326997D01*

-X238456Y328997D02*Y326997D01*

-X234456D02*X238456D01*

-X234456Y328997D02*Y326997D01*

-Y332197D02*Y330197D01*

-Y332197D02*X234956Y332697D01*

-X235956D01*

-X236456Y332197D02*X235956Y332697D01*

-X236456Y332197D02*Y330697D01*

-X234456D02*X238456D01*

-X236456Y331497D02*X238456Y332697D01*

-X234456Y335897D02*Y333897D01*

-Y335897D02*X234956Y336397D01*

-X235956D01*

-X236456Y335897D02*X235956Y336397D01*

-X236456Y335897D02*Y334397D01*

-X234456D02*X238456D01*

-X236456Y335197D02*X238456Y336397D01*

-X234456Y339397D02*X238456D01*

-X234456Y341897D02*X238456D01*

-X236456D02*Y339397D01*

-X238456Y345097D02*Y343097D01*

-Y345097D02*X237956Y345597D01*

-X236756D02*X237956D01*

-X236256Y345097D02*X236756Y345597D01*

-X236256Y345097D02*Y343597D01*

-X234456D02*X238456D01*

-X234456Y345097D02*Y343097D01*

-Y345097D02*X234956Y345597D01*

-X235756D01*

-X236256Y345097D02*X235756Y345597D01*

-X234456Y351097D02*Y348597D01*

-X238456D02*X234456Y351097D01*

-X238456D02*Y348597D01*

-X234456Y354597D02*X238456D01*

-X234456Y355897D02*X235156Y356597D01*

-X237756D01*

-X238456Y355897D02*X237756Y356597D01*

-X238456Y355897D02*Y354097D01*

-X234456Y355897D02*Y354097D01*

-X238456Y359797D02*Y357797D01*

-Y359797D02*X237956Y360297D01*

-X236756D02*X237956D01*

-X236256Y359797D02*X236756Y360297D01*

-X236256Y359797D02*Y358297D01*

-X234456D02*X238456D01*

-X234456Y359797D02*Y357797D01*

-Y359797D02*X234956Y360297D01*

-X235756D01*

-X236256Y359797D02*X235756Y360297D01*

-G54D316*X190941Y241350D02*Y236750D01*

-Y241350D02*X193241D01*

-X190941Y239280D02*X192666D01*

-X194621Y241350D02*X196921D01*

-X197496Y240775D01*

-Y239625D01*

-X196921Y239050D02*X197496Y239625D01*

-X195196Y239050D02*X196921D01*

-X195196Y241350D02*Y236750D01*

-X196116Y239050D02*X197496Y236750D01*

-X199681D02*X201176D01*

-X198876Y237555D02*X199681Y236750D01*

-X198876Y240545D02*Y237555D01*

-Y240545D02*X199681Y241350D01*

-X201176D01*

-X204626D02*X206926D01*

-X205776D02*Y236750D01*

-X208881D02*X210606D01*

-X208306Y237325D02*X208881Y236750D01*

-X208306Y238475D02*Y237325D01*

-Y238475D02*X208881Y239050D01*

-X210031D01*

-X210606Y238475D01*

-X208306Y237900D02*X210606D01*

-Y238475D02*Y237900D01*

-X213711Y239050D02*X214286Y238475D01*

-X212561Y239050D02*X213711D01*

-X211986Y238475D02*X212561Y239050D01*

-X211986Y238475D02*Y237325D01*

-X212561Y236750D01*

-X214286Y239050D02*Y237325D01*

-X214861Y236750D01*

-X212561D02*X213711D01*

-X214286Y237325D01*

-X216816Y238475D02*Y236750D01*

-Y238475D02*X217391Y239050D01*

-X217966D01*

-X218541Y238475D01*

-Y236750D01*

-Y238475D02*X219116Y239050D01*

-X219691D01*

-X220266Y238475D01*

-Y236750D01*

-X216241Y239050D02*X216816Y238475D01*

-X224291Y236750D02*X226016Y239050D01*

-Y240775D02*Y239050D01*

-X225441Y241350D02*X226016Y240775D01*

-X224291Y241350D02*X225441D01*

-X223716Y240775D02*X224291Y241350D01*

-X223716Y240775D02*Y239625D01*

-X224291Y239050D01*

-X226016D01*

-X227971Y236750D02*X230271Y241350D01*

-X227396D02*X230271D01*

-X231651Y240430D02*X232571Y241350D01*

-Y236750D01*

-X231651D02*X233376D01*

-X236826D02*X239126D01*

-X239701Y237325D01*

-Y238705D02*Y237325D01*

-X239126Y239280D02*X239701Y238705D01*

-X237401Y239280D02*X239126D01*

-X237401Y241350D02*Y236750D01*

-X236826Y241350D02*X239126D01*

-X239701Y240775D01*

-Y239855D01*

-X239126Y239280D02*X239701Y239855D01*

-X241081Y236750D02*X243381D01*

-X243956Y237325D01*

-Y238705D02*Y237325D01*

-X243381Y239280D02*X243956Y238705D01*

-X241656Y239280D02*X243381D01*

-X241656Y241350D02*Y236750D01*

-X241081Y241350D02*X243381D01*

-X243956Y240775D01*

-Y239855D01*

-X243381Y239280D02*X243956Y239855D01*

-X245336Y236750D02*X247636D01*

-X248211Y237325D01*

-Y238705D02*Y237325D01*

-X247636Y239280D02*X248211Y238705D01*

-X245911Y239280D02*X247636D01*

-X245911Y241350D02*Y236750D01*

-X245336Y241350D02*X247636D01*

-X248211Y240775D01*

-Y239855D01*

-X247636Y239280D02*X248211Y239855D01*

-X252466Y236750D02*X253961D01*

-X251661Y237555D02*X252466Y236750D01*

-X251661Y240545D02*Y237555D01*

-Y240545D02*X252466Y241350D01*

-X253961D01*

-X257066Y239050D02*X257641Y238475D01*

-X255916Y239050D02*X257066D01*

-X255341Y238475D02*X255916Y239050D01*

-X255341Y238475D02*Y237325D01*

-X255916Y236750D01*

-X257641Y239050D02*Y237325D01*

-X258216Y236750D01*

-X255916D02*X257066D01*

-X257641Y237325D01*

-X260171Y238475D02*Y235025D01*

-X259596Y239050D02*X260171Y238475D01*

-X260746Y239050D01*

-X261896D01*

-X262471Y238475D01*

-Y237325D01*

-X261896Y236750D02*X262471Y237325D01*

-X260746Y236750D02*X261896D01*

-X260171Y237325D02*X260746Y236750D01*

-X264426D02*X266151D01*

-X263851Y237325D02*X264426Y236750D01*

-X263851Y238475D02*Y237325D01*

-Y238475D02*X264426Y239050D01*

-X265576D01*

-X266151Y238475D01*

-X263851Y237900D02*X266151D01*

-Y238475D02*Y237900D01*

-X202441Y227775D02*X203016Y228350D01*

-X204741D01*

-X205316Y227775D01*

-Y226625D01*

-X202441Y223750D02*X205316Y226625D01*

-X202441Y223750D02*X205316D01*

-X206696Y224325D02*X207271Y223750D01*

-X206696Y227775D02*Y224325D01*

-Y227775D02*X207271Y228350D01*

-X208421D01*

-X208996Y227775D01*

-Y224325D01*

-X208421Y223750D02*X208996Y224325D01*

-X207271Y223750D02*X208421D01*

-X206696Y224900D02*X208996Y227200D01*

-X210376Y227430D02*X211296Y228350D01*

-Y223750D01*

-X210376D02*X212101D01*

-X213481Y225475D02*X215781Y228350D01*

-X213481Y225475D02*X216356D01*

-X215781Y228350D02*Y223750D01*

-X217736Y224325D02*X218311Y223750D01*

-X217736Y227775D02*Y224325D01*

-Y227775D02*X218311Y228350D01*

-X219461D01*

-X220036Y227775D01*

-Y224325D01*

-X219461Y223750D02*X220036Y224325D01*

-X218311Y223750D02*X219461D01*

-X217736Y224900D02*X220036Y227200D01*

-X221416Y227430D02*X222336Y228350D01*

-Y223750D01*

-X221416D02*X223141D01*

-X224521Y227775D02*X225096Y228350D01*

-X226821D01*

-X227396Y227775D01*

-Y226625D01*

-X224521Y223750D02*X227396Y226625D01*

-X224521Y223750D02*X227396D01*

-X228776Y224325D02*X229351Y223750D01*

-X228776Y227775D02*Y224325D01*

-Y227775D02*X229351Y228350D01*

-X230501D01*

-X231076Y227775D01*

-Y224325D01*

-X230501Y223750D02*X231076Y224325D01*

-X229351Y223750D02*X230501D01*

-X228776Y224900D02*X231076Y227200D01*

-X234526Y227775D02*X235101Y228350D01*

-X236826D01*

-X237401Y227775D01*

-Y226625D01*

-X234526Y223750D02*X237401Y226625D01*

-X234526Y223750D02*X237401D01*

-X238781Y224325D02*X239356Y223750D01*

-X238781Y227775D02*Y224325D01*

-Y227775D02*X239356Y228350D01*

-X240506D01*

-X241081Y227775D01*

-Y224325D01*

-X240506Y223750D02*X241081Y224325D01*

-X239356Y223750D02*X240506D01*

-X238781Y224900D02*X241081Y227200D01*

-X242461Y227430D02*X243381Y228350D01*

-Y223750D01*

-X242461D02*X244186D01*

-X245566Y225475D02*X247866Y228350D01*

-X245566Y225475D02*X248441D01*

-X247866Y228350D02*Y223750D01*

-X249821Y226050D02*X252121D01*

-X253501Y227775D02*X254076Y228350D01*

-X255801D01*

-X256376Y227775D01*

-Y226625D01*

-X253501Y223750D02*X256376Y226625D01*

-X253501Y223750D02*X256376D01*

-X179741Y199350D02*X180316Y198775D01*

-X178016Y199350D02*X179741D01*

-X177441Y198775D02*X178016Y199350D01*

-X177441Y198775D02*Y195325D01*

-X178016Y194750D01*

-X179741D01*

-X180316Y195325D01*

-Y196475D02*Y195325D01*

-X179741Y197050D02*X180316Y196475D01*

-X178591Y197050D02*X179741D01*

-X181696Y199350D02*Y194750D01*

-Y199350D02*X184571Y194750D01*

-Y199350D02*Y194750D01*

-X186526Y199350D02*Y194750D01*

-X188021Y199350D02*X188826Y198545D01*

-Y195555D01*

-X188021Y194750D02*X188826Y195555D01*

-X185951Y194750D02*X188021D01*

-X185951Y199350D02*X188021D01*

-G54D321*X111691Y228500D02*Y225000D01*

-Y219750D02*Y216250D01*

-X109941Y218000D02*X113441D01*

-X108191Y211000D02*X115191D01*

-X108191Y206625D01*

-X115191D01*

-X108191Y203300D02*Y201025D01*

-X109416Y204525D02*X108191Y203300D01*

-X109416Y204525D02*X113966D01*

-X115191Y203300D01*

-Y201025D01*

-X121191Y227500D02*Y224000D01*

-X119441Y225750D02*X122941D01*

-X123291Y221900D02*X124691Y220500D01*

-X117691D02*X124691D01*

-X117691Y221900D02*Y219275D01*

-X123816Y217175D02*X124691Y216300D01*

-Y213675D01*

-X123816Y212800D01*

-X122066D02*X123816D01*

-X117691Y217175D02*X122066Y212800D01*

-X117691Y217175D02*Y212800D01*

-X124691Y210700D02*X117691Y208950D01*

-X124691Y207200D01*

-G54D317*X322650Y55096D02*Y51496D01*

-Y67336D02*Y63736D01*

-X320850Y65536D02*X324450D01*

-X320850Y75976D02*X326250D01*

-X320850D02*X319050Y77236D01*

-Y79216D02*Y77236D01*

-Y79216D02*X320850Y80476D01*

-X326250D01*

-X322650D02*Y75976D01*

-G54D318*X78938Y77866D02*X79613Y77191D01*

-X78938Y81916D02*Y77866D01*

-Y81916D02*X79613Y82591D01*

-X80963D01*

-X81638Y81916D01*

-Y77866D01*

-X80963Y77191D02*X81638Y77866D01*

-X79613Y77191D02*X80963D01*

-X78938Y78541D02*X81638Y81241D01*

-X114848Y81511D02*X115928Y82591D01*

-Y77191D01*

-X114848D02*X116873D01*

-X147653Y81916D02*X148328Y82591D01*

-X150353D01*

-X151028Y81916D01*

-Y80566D01*

-X147653Y77191D02*X151028Y80566D01*

-X147653Y77191D02*X151028D01*

-X179378Y81916D02*X180053Y82591D01*

-X181403D01*

-X182078Y81916D01*

-X181403Y77191D02*X182078Y77866D01*

-X180053Y77191D02*X181403D01*

-X179378Y77866D02*X180053Y77191D01*

-Y80161D02*X181403D01*

-X182078Y81916D02*Y80836D01*

-Y79486D02*Y77866D01*

-Y79486D02*X181403Y80161D01*

-X182078Y80836D02*X181403Y80161D01*

-X205568Y79216D02*X208268Y82591D01*

-X205568Y79216D02*X208943D01*

-X208268Y82591D02*Y77191D01*

-X234863Y82591D02*X237563D01*

-X234863D02*Y79891D01*

-X235538Y80566D01*

-X236888D01*

-X237563Y79891D01*

-Y77866D01*

-X236888Y77191D02*X237563Y77866D01*

-X235538Y77191D02*X236888D01*

-X234863Y77866D02*X235538Y77191D01*

-X267938Y82591D02*X268613Y81916D01*

-X266588Y82591D02*X267938D01*

-X265913Y81916D02*X266588Y82591D01*

-X265913Y81916D02*Y77866D01*

-X266588Y77191D01*

-X267938Y80161D02*X268613Y79486D01*

-X265913Y80161D02*X267938D01*

-X266588Y77191D02*X267938D01*

-X268613Y77866D01*

-Y79486D02*Y77866D01*

-X295208Y77191D02*X297908Y82591D01*

-X294533D02*X297908D01*

-G54D322*X448500Y126200D02*Y101200D01*

-X478500Y126200D02*Y101200D01*

-Y126200D02*X448500D01*

-Y119700D02*X478500D01*

-X458500Y101200D02*Y119700D01*

-X468500Y101200D02*Y119700D01*

-X448500Y101200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y96200D02*Y71200D01*

-X478500Y96200D02*Y71200D01*

-Y96200D02*X448500D01*

-Y89700D02*X478500D01*

-X458500Y71200D02*Y89700D01*

-X468500Y71200D02*Y89700D01*

-X448500Y71200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y66200D02*Y41200D01*

-X478500Y66200D02*Y41200D01*

-Y66200D02*X448500D01*

-Y59700D02*X478500D01*

-X458500Y41200D02*Y59700D01*

-X468500Y41200D02*Y59700D01*

-X448500Y41200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y216200D02*Y191200D01*

-X478500Y216200D02*Y191200D01*

-Y216200D02*X448500D01*

-Y209700D02*X478500D01*

-X458500Y191200D02*Y209700D01*

-X468500Y191200D02*Y209700D01*

-X448500Y191200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y186200D02*Y161200D01*

-X478500Y186200D02*Y161200D01*

-Y186200D02*X448500D01*

-Y179700D02*X478500D01*

-X458500Y161200D02*Y179700D01*

-X468500Y161200D02*Y179700D01*

-X448500Y161200D02*X478500D01*

-X448500D02*X458500D01*

-X374835Y228566D02*X396047D01*

-X374835D02*Y197434D01*

-X396047D01*

-Y228566D02*Y215500D01*

-Y210500D02*Y197434D01*

-Y215500D02*G75*G03X396047Y210500I0J-2500D01*G01*

-X402000Y216200D02*Y191200D01*

-X442000Y216200D02*Y191200D01*

-Y216200D02*X402000D01*

-Y209700D02*X442000D01*

-X412000Y191200D02*Y209700D01*

-X422000Y191200D02*Y209700D01*

-X432000Y191200D02*Y209700D01*

-X402000Y191200D02*X442000D01*

-X402000D02*X412000D01*

-X448500Y246200D02*Y221200D01*

-X478500Y246200D02*Y221200D01*

-X448500Y246200D02*X478500D01*

-X448500Y239700D02*X478500D01*

-X458500D02*Y221200D01*

-X468500Y239700D02*Y221200D01*

-X448500D02*X478500D01*

-X448500D02*X458500D01*

-X402000Y246200D02*Y221200D01*

-X442000Y246200D02*Y221200D01*

-Y246200D02*X402000D01*

-Y239700D02*X442000D01*

-X412000Y221200D02*Y239700D01*

-X422000Y221200D02*Y239700D01*

-X432000Y221200D02*Y239700D01*

-X402000Y221200D02*X442000D01*

-X402000D02*X412000D01*

-X448500Y276200D02*Y251200D01*

-X478500Y276200D02*Y251200D01*

-Y276200D02*X448500D01*

-Y269700D02*X478500D01*

-X458500Y251200D02*Y269700D01*

-X468500Y251200D02*Y269700D01*

-X448500Y251200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y156200D02*Y131200D01*

-X478500Y156200D02*Y131200D01*

-Y156200D02*X448500D01*

-Y149700D02*X478500D01*

-X458500Y131200D02*Y149700D01*

-X468500Y131200D02*Y149700D01*

-X448500Y131200D02*X478500D01*

-X448500D02*X458500D01*

-X402000Y186200D02*Y161200D01*

-X442000Y186200D02*Y161200D01*

-Y186200D02*X402000D01*

-Y179700D02*X442000D01*

-X412000Y161200D02*Y179700D01*

-X422000Y161200D02*Y179700D01*

-X432000Y161200D02*Y179700D01*

-X402000Y161200D02*X442000D01*

-X402000D02*X412000D01*

-X353831Y75673D02*Y91421D01*

-X390051Y75673D02*X353831D01*

-X390051Y91421D02*Y75673D01*

-X352256Y91421D02*Y131579D01*

-X391626Y91421D02*Y131579D01*

-Y91421D02*X352256D01*

-X391626Y131579D02*X352256D01*

-G54D323*X400696Y94892D02*Y94106D01*

-X395186Y94892D02*Y94106D01*

-X372186Y55349D02*Y54563D01*

-X377696Y55349D02*Y54563D01*

-X373548Y68755D02*X374334D01*

-X373548Y63245D02*X374334D01*

-X385473Y51314D02*X389409D01*

-X385473Y40686D02*X389409D01*

-X385048Y61255D02*X385834D01*

-X385048Y55745D02*X385834D01*

-X387548Y69255D02*X388334D01*

-X387548Y63745D02*X388334D01*

-G54D322*X448500Y396200D02*Y371200D01*

-X478500Y396200D02*Y371200D01*

-X448500Y396200D02*X478500D01*

-X448500Y389700D02*X478500D01*

-X458500D02*Y371200D01*

-X468500Y389700D02*Y371200D01*

-X448500D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y366200D02*Y341200D01*

-X478500Y366200D02*Y341200D01*

-Y366200D02*X448500D01*

-Y359700D02*X478500D01*

-X458500Y341200D02*Y359700D01*

-X468500Y341200D02*Y359700D01*

-X448500Y341200D02*X478500D01*

-X448500D02*X458500D01*

-X402000Y366200D02*Y341200D01*

-X442000Y366200D02*Y341200D01*

-Y366200D02*X402000D01*

-Y359700D02*X442000D01*

-X412000Y341200D02*Y359700D01*

-X422000Y341200D02*Y359700D01*

-X432000Y341200D02*Y359700D01*

-X402000Y341200D02*X442000D01*

-X402000D02*X412000D01*

-X402000Y396200D02*Y371200D01*

-X442000Y396200D02*Y371200D01*

-Y396200D02*X402000D01*

-Y389700D02*X442000D01*

-X412000Y371200D02*Y389700D01*

-X422000Y371200D02*Y389700D01*

-X432000Y371200D02*Y389700D01*

-X402000Y371200D02*X442000D01*

-X402000D02*X412000D01*

-X448500Y336200D02*Y311200D01*

-X478500Y336200D02*Y311200D01*

-Y336200D02*X448500D01*

-Y329700D02*X478500D01*

-X458500Y311200D02*Y329700D01*

-X468500Y311200D02*Y329700D01*

-X448500Y311200D02*X478500D01*

-X448500D02*X458500D01*

-X448500Y306200D02*Y281200D01*

-X478500Y306200D02*Y281200D01*

-Y306200D02*X448500D01*

-Y299700D02*X478500D01*

-X458500Y281200D02*Y299700D01*

-X468500Y281200D02*Y299700D01*

-X448500Y281200D02*X478500D01*

-X448500D02*X458500D01*

-X374835Y346566D02*X396047D01*

-X374835D02*Y315434D01*

-X396047D01*

-Y346566D02*Y333500D01*

-Y328500D02*Y315434D01*

-Y333500D02*G75*G03X396047Y328500I0J-2500D01*G01*

-X402000Y306200D02*Y281200D01*

-X442000Y306200D02*Y281200D01*

-Y306200D02*X402000D01*

-Y299700D02*X442000D01*

-X412000Y281200D02*Y299700D01*

-X422000Y281200D02*Y299700D01*

-X432000Y281200D02*Y299700D01*

-X402000Y281200D02*X442000D01*

-X402000D02*X412000D01*

-X402000Y336200D02*Y311200D01*

-X442000Y336200D02*Y311200D01*

-X402000Y336200D02*X442000D01*

-X402000Y329700D02*X442000D01*

-X412000D02*Y311200D01*

-X422000Y329700D02*Y311200D01*

-X432000Y329700D02*Y311200D01*

-X402000D02*X442000D01*

-X402000D02*X412000D01*

-X402000Y276200D02*Y251200D01*

-X442000Y276200D02*Y251200D01*

-X402000Y276200D02*X442000D01*

-X402000Y269700D02*X442000D01*

-X412000D02*Y251200D01*

-X422000Y269700D02*Y251200D01*

-X432000Y269700D02*Y251200D01*

-X402000D02*X442000D01*

-X402000D02*X412000D01*

-X307441Y261200D02*Y236200D01*

-X347441Y261200D02*Y236200D01*

-Y261200D02*X307441D01*

-Y254700D02*X347441D01*

-X317441Y236200D02*Y254700D01*

-X327441Y236200D02*Y254700D01*

-X337441Y236200D02*Y254700D01*

-X307441Y236200D02*X347441D01*

-X307441D02*X317441D01*

-X283241Y42500D02*X308241D01*

-X283241Y72500D02*X308241D01*

-X283241D02*Y42500D01*

-X289741Y72500D02*Y42500D01*

-Y52500D02*X308241D01*

-X289741Y62500D02*X308241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X269438Y147822D02*Y108822D01*

-X300438D01*

-Y147822D01*

-X269438D02*X282438D01*

-X300438D02*X287438D01*

-X282438D02*G75*G03X287438Y147822I2500J0D01*G01*

-X223241Y42500D02*X248241D01*

-X223241Y72500D02*X248241D01*

-X223241D02*Y42500D01*

-X229741Y72500D02*Y42500D01*

-Y52500D02*X248241D01*

-X229741Y62500D02*X248241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X253241D02*X278241D01*

-X253241Y72500D02*X278241D01*

-X253241D02*Y42500D01*

-X259741Y72500D02*Y42500D01*

-Y52500D02*X278241D01*

-X259741Y62500D02*X278241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-G54D324*X348255Y94467D02*Y90531D01*

-X337627Y94467D02*Y90531D01*

-G54D323*X335255Y94467D02*Y90531D01*

-X324627Y94467D02*Y90531D01*

-G54D322*X73241Y42500D02*X98241D01*

-X73241Y72500D02*X98241D01*

-X73241D02*Y42500D01*

-X79741Y72500D02*Y42500D01*

-Y52500D02*X98241D01*

-X79741Y62500D02*X98241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X193241D02*X218241D01*

-X193241Y72500D02*X218241D01*

-X193241D02*Y42500D01*

-X199741Y72500D02*Y42500D01*

-Y52500D02*X218241D01*

-X199741Y62500D02*X218241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X163241D02*X188241D01*

-X163241Y72500D02*X188241D01*

-X163241D02*Y42500D01*

-X169741Y72500D02*Y42500D01*

-Y52500D02*X188241D01*

-X169741Y62500D02*X188241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X133241D02*X158241D01*

-X133241Y72500D02*X158241D01*

-X133241D02*Y42500D01*

-X139741Y72500D02*Y42500D01*

-Y52500D02*X158241D01*

-X139741Y62500D02*X158241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X103241D02*X128241D01*

-X103241Y72500D02*X128241D01*

-X103241D02*Y42500D01*

-X109741Y72500D02*Y42500D01*

-Y52500D02*X128241D01*

-X109741Y62500D02*X128241D01*

-Y72500D02*Y42500D01*

-Y52500D02*Y42500D01*

-X200441Y144500D02*Y110500D01*

-X231441D01*

-Y144500D01*

-X200441D02*X213441D01*

-X231441D02*X218441D01*

-X213441D02*G75*G03X218441Y144500I2500J0D01*G01*

-X118666Y144340D02*Y110340D01*

-X149666D01*

-Y144340D01*

-X118666D02*X131666D01*

-X149666D02*X136666D01*

-X131666D02*G75*G03X136666Y144340I2500J0D01*G01*

-X146799Y335829D02*Y296829D01*

-X192799D01*

-Y335829D01*

-X146799D02*X167299D01*

-X192799D02*X172299D01*

-X167299D02*G75*G03X172299Y335829I2500J0D01*G01*

-G54D323*X120894Y283923D02*X118925Y285892D01*

-X120894Y283923D02*X134673D01*

-Y315419D02*Y283923D01*

-X118925Y315419D02*X134673D01*

-X118925D02*Y285892D01*

-X248505Y359255D02*X249291D01*

-X248505Y353745D02*X249291D01*

-X160548Y208255D02*X161334D01*

-X160548Y202745D02*X161334D01*

-X160635Y215125D02*X161421D01*

-X160635Y209615D02*X161421D01*

-X242304Y270584D02*X243090D01*

-X242304Y265074D02*X243090D01*

-X287686Y248850D02*Y248064D01*

-X293196Y248850D02*Y248064D01*

-X296525Y297214D02*Y261544D01*

-X257955D02*X296525D01*

-X257955Y300114D02*Y261544D01*

-Y300114D02*X293625D01*

-X296525Y297214D01*

-X293625Y298214D02*G75*G03X293625Y298214I0J-1000D01*G01*

-G54D322*X291150Y314280D02*G75*G03X291150Y314280I500J0D01*G01*

-G54D323*X248462Y352255D02*X249248D01*

-X248462Y346745D02*X249248D01*

-X248505Y338255D02*X249291D01*

-X248505Y332745D02*X249291D01*

-X248462Y345255D02*X249248D01*

-X248462Y339745D02*X249248D01*

-G54D322*X145699Y294729D02*X159599D01*

-X145699D02*Y281929D01*

-X159599D01*

-Y294729D02*Y281929D01*

-G54D323*X112885Y239433D02*Y235497D01*

-X102257Y239433D02*Y235497D01*

-X124885D02*Y239433D01*

-X114257Y235497D02*Y239433D01*

-G54D322*X72641Y245000D02*X97641D01*

-X72641Y215000D02*X97641D01*

-Y245000D02*Y215000D01*

-X91141Y245000D02*Y215000D01*

-X72641Y235000D02*X91141D01*

-X72641Y225000D02*X91141D01*

-X72641Y245000D02*Y215000D01*

-Y245000D02*Y235000D01*

-G54D323*X93186Y208393D02*Y207607D01*

-X98696Y208393D02*Y207607D01*

-X173196Y245393D02*Y244607D01*

-X167686Y245393D02*Y244607D01*

-X148973Y201314D02*X152909D01*

-X148973Y190686D02*X152909D01*

-G54D322*X127831Y222173D02*Y237921D01*

-X164051Y222173D02*X127831D01*

-X164051Y237921D02*Y222173D01*

-X126256Y237921D02*Y278079D01*

-X165626Y237921D02*Y278079D01*

-Y237921D02*X126256D01*

-X165626Y278079D02*X126256D01*

-G54D323*X147048Y208255D02*X147834D01*

-X147048Y202745D02*X147834D01*

-X147048Y215255D02*X147834D01*

-X147048Y209745D02*X147834D01*

-M02*

diff --git a/bbb_cape/schematic/gerbers/20140120/cape.zip b/bbb_cape/schematic/gerbers/20140120/cape.zip
deleted file mode 100644
index 2eb71eb..0000000
--- a/bbb_cape/schematic/gerbers/20140120/cape.zip
+++ /dev/null
Binary files differ
diff --git a/bbb_cape/schematic/gschemrc b/bbb_cape/schematic/gschemrc
deleted file mode 100644
index fcf437d..0000000
--- a/bbb_cape/schematic/gschemrc
+++ /dev/null
@@ -1,3 +0,0 @@
-(load (string-append geda-data-path "/scheme/auto-uref.scm")) ; load the autonumbering script
-(add-hook! add-component-hook auto-uref)       ; autonumber when adding a component
-(add-hook! copy-component-hook auto-uref)      ; autonumber when copying a component
diff --git a/bbb_cape/schematic/packages/1812.fp b/bbb_cape/schematic/packages/1812.fp
deleted file mode 100644
index d0210c9..0000000
--- a/bbb_cape/schematic/packages/1812.fp
+++ /dev/null
@@ -1,11 +0,0 @@
-Element["" "1812" "1812" "1812" 15.0000mm 1574.80mil -3.7498mm -39.38mil 0 100 ""]
-(
-	Pad[98.43mil -19.68mil 98.43mil 19.69mil 94.80mil 39.37mil 2.5080mm "2" "2" "square"]
-	Pad[-98.42mil -19.68mil -98.42mil 19.69mil 94.80mil 39.37mil 2.5080mm "1" "1" "square"]
-	ElementLine [-157.48mil -59.05mil -137.79mil -2.0000mm 8.00mil]
-	ElementLine [-157.48mil 2.0000mm -157.48mil -59.05mil 8.00mil]
-	ElementLine [157.48mil 2.0000mm -157.48mil 2.0000mm 8.00mil]
-	ElementLine [157.48mil -2.0000mm 157.48mil 2.0000mm 8.00mil]
-	ElementLine [-137.79mil -2.0000mm 157.48mil -2.0000mm 8.00mil]
-
-	)
diff --git a/bbb_cape/schematic/packages/22-23-2031.fp b/bbb_cape/schematic/packages/22-23-2031.fp
deleted file mode 100644
index 5b98bc0..0000000
--- a/bbb_cape/schematic/packages/22-23-2031.fp
+++ /dev/null
@@ -1,14 +0,0 @@
-Element(0x00 "Molex 22-23-2031 1x3 connector" "" "22-23-2031" 360 0 3 100 0x00)
-(
-	Pin(62 147 65 40 "1" 0x101)
-	Pin(162 147 65 40 "2" 0x01)
-	Pin(262 147 65 40 "3" 0x01)
-	ElementLine(0 0 0 290 10)
-	ElementLine(324 0 324 290 10)
-	ElementLine(324 0 0 0 10)
-	ElementLine(0 90 324 90 10)
-	ElementLine(112 290 112 90 10)
-	ElementLine(212 290 212 90 10)
-	ElementLine(0 290 324 290 10)
-	Mark(162 147)
-)
diff --git a/bbb_cape/schematic/packages/22-23-2041.fp b/bbb_cape/schematic/packages/22-23-2041.fp
deleted file mode 100644
index 43ffa87..0000000
--- a/bbb_cape/schematic/packages/22-23-2041.fp
+++ /dev/null
@@ -1,16 +0,0 @@
-Element(0x00 "Molex 22-23-2041 1x4 connector" "" "22-23-2041" 360 0 3 100 0x00)
-(
-	Pin(62 147 65 40 "1" 0x101)
-	Pin(162 147 65 40 "2" 0x01)
-	Pin(262 147 65 40 "3" 0x01)
-	Pin(362 147 65 40 "4" 0x01)
-	ElementLine(0 0 0 290 10)
-	ElementLine(424 0 424 290 10)
-	ElementLine(424 0 0 0 10)
-	ElementLine(0 90 424 90 10)
-	ElementLine(112 290 112 90 10)
-	ElementLine(212 290 212 90 10)
-	ElementLine(312 290 312 90 10)
-	ElementLine(0 290 424 290 10)
-	Mark(212 147)
-)
diff --git a/bbb_cape/schematic/packages/4-40_bolt.fp b/bbb_cape/schematic/packages/4-40_bolt.fp
deleted file mode 100644
index dfe3c5f..0000000
--- a/bbb_cape/schematic/packages/4-40_bolt.fp
+++ /dev/null
@@ -1,4 +0,0 @@
-Element[0x0 "#4-40 bolt" "" "" 0 0 0 0 0 100 0x0]
-(
-   Pin[0 0 18300 1800 18900 12850 "the_hole" "1" 0x01]
-)
diff --git a/bbb_cape/schematic/packages/ABMM2.fp b/bbb_cape/schematic/packages/ABMM2.fp
deleted file mode 100644
index 66d118d..0000000
--- a/bbb_cape/schematic/packages/ABMM2.fp
+++ /dev/null
@@ -1,12 +0,0 @@
-# author: Bdale Garbee
-# email: bdale@gag.com
-# dist-license: GPL 2
-# use-license: unlimited
-Element[0x0 "ABM8" "" "" 0 0 0 0 0 100 0x0]
-(
-   Pad[ 5512 -9349 5512 -12007 7480 -3936 8080 "pin2" "2" 0x0100]
-   Pad[ 5512 9350 5512 12008 7480 -3936 8080 "pin1" "1" 0x0100]
-   Pad[ -5511 9350 -5511 12008 7480 -3936 8080 "pin4" "4" 0x0100]
-   Pad[ -5511 -9349 -5511 -12007 7480 -3936 8080 "pin3" "3" 0x0100]
-   ElementArc[ 709 13720 500 500 0 360 1000 ]
-)
diff --git a/bbb_cape/schematic/packages/TOPMOD.fp b/bbb_cape/schematic/packages/TOPMOD.fp
deleted file mode 100644
index 3f72817..0000000
--- a/bbb_cape/schematic/packages/TOPMOD.fp
+++ /dev/null
@@ -1,19 +0,0 @@
-Element["" "National 7-pin TO switcher module" "" "" 39370 39370 0 0 0 100 "TO-PMOD"]
-(
-	Pad[-15000 26772 -15000 33071 3504 2000 4104 "1" "1" "square,edge2"]
-	Pad[-10000 26772 -10000 33071 3504 2000 4104 "2" "2" "square,edge2"]
-	Pad[-5000 26772 -5000 33071 3504 2000 4104 "3" "3" "square,edge2"]
-	Pad[0 26772 0 33071 3504 2000 4104 "4" "4" "square,edge2"]
-	Pad[5000 26772 5000 33071 3504 2000 4104 "5" "5" "square,edge2"]
-	Pad[10000 26772 10000 33071 3504 2000 4104 "6" "6" "square,edge2"]
-	Pad[15000 26772 15000 33071 3504 2000 4104 "7" "7" "square,edge2"]
-	Pad[0 -6693 0 6693 21063 2000 21663 "8" "8" "square"]
-	ElementLine [-18110 35827 -18110 20079 1000]
-	ElementLine [18110 35827 -18110 35827 1000]
-	ElementLine [18110 20079 18110 35827 1000]
-	ElementLine [-19685 20079 -19685 -20079 1000]
-	ElementLine [19685 20079 19685 -20079 1000]
-	ElementLine [19685 20079 -19685 20079 1000]
-	ElementLine [19685 -20079 -19685 -20079 1000]
-
-	)
diff --git a/bbb_cape/schematic/packages/beaglebone.fp b/bbb_cape/schematic/packages/beaglebone.fp
deleted file mode 100644
index 91e5c9c..0000000
--- a/bbb_cape/schematic/packages/beaglebone.fp
+++ /dev/null
@@ -1,116 +0,0 @@
-Element[0x0 "beaglebone-cape" "" "" 0 0 -112500 -118000 0 100 0x0]
-(
-   ElementArc[155000 -60000 50000 50000 180 90 1000]
-   ElementArc[155000 55000 50000 50000 90 90 1000]
-   ElementArc[-110000 80000 25000 25000 0 90 1000]
-   ElementLine[-112500 -110000 155000 -110000 1000]
-   ElementLine[205000 55000 205000 -60000 1000]
-   ElementLine[-110000 105000 155000 105000 1000]
-   ElementLine[-135000 80000 -135000 22500 1000]
-   ElementLine[-135000 22500 -55000 22500 1000]
-   ElementLine[-55000 22500 -55000 -47500 1000]
-   ElementLine[-55000 -47500 -112500 -47500 1000]
-   ElementLine[-112500 -47500 -112500 -110000 1000]
-   Pin[-77500 92500 18300 1800 18900 12850 "bogus_442" "442" 0x01]
-   Pin[-77500 -97500 18300 1800 18900 12850 "bogus_542" "542" 0x01]
-   Pin[182500 80000 18300 1800 18900 12850 "bogus_642" "642" 0x01]
-   Pin[182500 -85000 18300 1800 18900 12850 "bogus_742" "742" 0x01]
-   Pin[-57500 87500 6600 2000 8600 4600 "" "48" 0x01]
-   Pin[-57500 97500 6600 2000 8600 4600 "" "47" 0x0101]
-   Pin[-47500 87500 6600 2000 8600 4600 "" "50" 0x01]
-   Pin[-47500 97500 6600 2000 8600 4600 "" "49" 0x01]
-   Pin[-37500 87500 6600 2000 8600 4600 "" "52" 0x01]
-   Pin[-37500 97500 6600 2000 8600 4600 "" "51" 0x01]
-   Pin[-27500 87500 6600 2000 8600 4600 "" "54" 0x01]
-   Pin[-27500 97500 6600 2000 8600 4600 "" "53" 0x01]
-   Pin[-17500 87500 6600 2000 8600 4600 "" "56" 0x01]
-   Pin[-17500 97500 6600 2000 8600 4600 "" "55" 0x01]
-   Pin[-7500 87500 6600 2000 8600 4600 "" "58" 0x01]
-   Pin[-7500 97500 6600 2000 8600 4600 "" "57" 0x01]
-   Pin[2500 87500 6600 2000 8600 4600 "" "60" 0x01]
-   Pin[2500 97500 6600 2000 8600 4600 "" "59" 0x01]
-   Pin[12500 87500 6600 2000 8600 4600 "" "62" 0x01]
-   Pin[12500 97500 6600 2000 8600 4600 "" "61" 0x01]
-   Pin[22500 87500 6600 2000 8600 4600 "" "64" 0x01]
-   Pin[22500 97500 6600 2000 8600 4600 "" "63" 0x01]
-   Pin[32500 87500 6600 2000 8600 4600 "" "66" 0x01]
-   Pin[32500 97500 6600 2000 8600 4600 "" "65" 0x01]
-   Pin[42500 87500 6600 2000 8600 4600 "" "68" 0x01]
-   Pin[42500 97500 6600 2000 8600 4600 "" "67" 0x01]
-   Pin[52500 87500 6600 2000 8600 4600 "" "70" 0x01]
-   Pin[52500 97500 6600 2000 8600 4600 "" "69" 0x01]
-   Pin[62500 87500 6600 2000 8600 4600 "" "72" 0x01]
-   Pin[62500 97500 6600 2000 8600 4600 "" "71" 0x01]
-   Pin[72500 87500 6600 2000 8600 4600 "" "74" 0x01]
-   Pin[72500 97500 6600 2000 8600 4600 "" "73" 0x01]
-   Pin[82500 87500 6600 2000 8600 4600 "" "76" 0x01]
-   Pin[82500 97500 6600 2000 8600 4600 "" "75" 0x01]
-   Pin[92500 87500 6600 2000 8600 4600 "" "78" 0x01]
-   Pin[92500 97500 6600 2000 8600 4600 "" "77" 0x01]
-   Pin[102500 87500 6600 2000 8600 4600 "" "80" 0x01]
-   Pin[102500 97500 6600 2000 8600 4600 "" "79" 0x01]
-   Pin[112500 87500 6600 2000 8600 4600 "" "82" 0x01]
-   Pin[112500 97500 6600 2000 8600 4600 "" "81" 0x01]
-   Pin[122500 87500 6600 2000 8600 4600 "" "84" 0x01]
-   Pin[122500 97500 6600 2000 8600 4600 "" "83" 0x01]
-   Pin[132500 87500 6600 2000 8600 4600 "" "86" 0x01]
-   Pin[132500 97500 6600 2000 8600 4600 "" "85" 0x01]
-   Pin[142500 87500 6600 2000 8600 4600 "" "88" 0x01]
-   Pin[142500 97500 6600 2000 8600 4600 "" "87" 0x01]
-   Pin[152500 87500 6600 2000 8600 4600 "" "90" 0x01]
-   Pin[152500 97500 6600 2000 8600 4600 "" "89" 0x01]
-   Pin[162500 87500 6600 2000 8600 4600 "" "92" 0x01]
-   Pin[162500 97500 6600 2000 8600 4600 "" "91" 0x01]
-   Pin[-57500 -102500 6600 2000 8600 4600 "" "2" 0x01]
-   Pin[-57500 -92500 6600 2000 8600 4600 "" "1" 0x0101]
-   Pin[-47500 -102500 6600 2000 8600 4600 "" "4" 0x01]
-   Pin[-47500 -92500 6600 2000 8600 4600 "" "3" 0x01]
-   Pin[-37500 -102500 6600 2000 8600 4600 "" "6" 0x01]
-   Pin[-37500 -92500 6600 2000 8600 4600 "" "5" 0x01]
-   Pin[-27500 -102500 6600 2000 8600 4600 "" "8" 0x01]
-   Pin[-27500 -92500 6600 2000 8600 4600 "" "7" 0x01]
-   Pin[-17500 -102500 6600 2000 8600 4600 "" "10" 0x01]
-   Pin[-17500 -92500 6600 2000 8600 4600 "" "9" 0x01]
-   Pin[-7500 -102500 6600 2000 8600 4600 "" "12" 0x01]
-   Pin[-7500 -92500 6600 2000 8600 4600 "" "11" 0x01]
-   Pin[2500 -102500 6600 2000 8600 4600 "" "14" 0x01]
-   Pin[2500 -92500 6600 2000 8600 4600 "" "13" 0x01]
-   Pin[12500 -102500 6600 2000 8600 4600 "" "16" 0x01]
-   Pin[12500 -92500 6600 2000 8600 4600 "" "15" 0x01]
-   Pin[22500 -102500 6600 2000 8600 4600 "" "18" 0x01]
-   Pin[22500 -92500 6600 2000 8600 4600 "" "17" 0x01]
-   Pin[32500 -102500 6600 2000 8600 4600 "" "20" 0x01]
-   Pin[32500 -92500 6600 2000 8600 4600 "" "19" 0x01]
-   Pin[42500 -102500 6600 2000 8600 4600 "" "22" 0x01]
-   Pin[42500 -92500 6600 2000 8600 4600 "" "21" 0x01]
-   Pin[52500 -102500 6600 2000 8600 4600 "" "24" 0x01]
-   Pin[52500 -92500 6600 2000 8600 4600 "" "23" 0x01]
-   Pin[62500 -102500 6600 2000 8600 4600 "" "26" 0x01]
-   Pin[62500 -92500 6600 2000 8600 4600 "" "25" 0x01]
-   Pin[72500 -102500 6600 2000 8600 4600 "" "28" 0x01]
-   Pin[72500 -92500 6600 2000 8600 4600 "" "27" 0x01]
-   Pin[82500 -102500 6600 2000 8600 4600 "" "30" 0x01]
-   Pin[82500 -92500 6600 2000 8600 4600 "" "29" 0x01]
-   Pin[92500 -102500 6600 2000 8600 4600 "" "32" 0x01]
-   Pin[92500 -92500 6600 2000 8600 4600 "" "31" 0x01]
-   Pin[102500 -102500 6600 2000 8600 4600 "" "34" 0x01]
-   Pin[102500 -92500 6600 2000 8600 4600 "" "33" 0x01]
-   Pin[112500 -102500 6600 2000 8600 4600 "" "36" 0x01]
-   Pin[112500 -92500 6600 2000 8600 4600 "" "35" 0x01]
-   Pin[122500 -102500 6600 2000 8600 4600 "" "38" 0x01]
-   Pin[122500 -92500 6600 2000 8600 4600 "" "37" 0x01]
-   Pin[132500 -102500 6600 2000 8600 4600 "" "40" 0x01]
-   Pin[132500 -92500 6600 2000 8600 4600 "" "39" 0x01]
-   Pin[142500 -102500 6600 2000 8600 4600 "" "42" 0x01]
-   Pin[142500 -92500 6600 2000 8600 4600 "" "41" 0x01]
-   Pin[152500 -102500 6600 2000 8600 4600 "" "44" 0x01]
-   Pin[152500 -92500 6600 2000 8600 4600 "" "43" 0x01]
-   Pin[162500 -102500 6600 2000 8600 4600 "" "46" 0x01]
-   Pin[162500 -92500 6600 2000 8600 4600 "" "45" 0x01]
-   Pin[32500 75000 6600 2000 8600 4600 "" "UART1" 0x101]
-   Pin[42500 75000 6600 2000 8600 4600 "" "UART2" 0x01]
-   Pin[52500 75000 6600 2000 8600 4600 "" "UART3" 0x01]
-   Pin[62500 75000 6600 2000 8600 4600 "" "UART4" 0x01]
-   Pin[72500 75000 6600 2000 8600 4600 "" "UART5" 0x01]
-   Pin[152500 -65000 22000 1800 24000 20000 "bogus_842" "842" 0x01]
-)
diff --git a/bbb_cape/schematic/remove_values.rb b/bbb_cape/schematic/remove_values.rb
deleted file mode 100755
index 56af125..0000000
--- a/bbb_cape/schematic/remove_values.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env ruby
-
-ElementRegex = /[ \t]*(Element[\[(].+) "(.*)" "(.*)" "(.*)" (.*)/
-
-File.open('cape.pcb') do |f|
-	$start_lines = f.readlines
-end
-
-File.open('cape.pcb', 'w') do |f|
-	$start_lines.each do |line|
-		match = ElementRegex.match(line)
-		if match
-			footprint = match[2]
-			refdes = match[3]
-			f.puts "#{match[1]} \"#{footprint}\" \"#{refdes}\" \"\" #{match[5]}"
-		else
-			f.puts line
-		end
-	end
-end
diff --git a/bbb_cape/schematic/simple switcher 5V.sch b/bbb_cape/schematic/simple switcher 5V.sch
deleted file mode 100644
index 02c5103..0000000
--- a/bbb_cape/schematic/simple switcher 5V.sch
+++ /dev/null
@@ -1,245 +0,0 @@
-v 20110115 2
-C 44700 46900 1 0 0 lmz12002-1.sym
-{
-T 45200 47800 5 10 1 1 0 0 1
-device=LMZ12002
-T 46600 47800 5 10 1 1 0 0 1
-refdes=U3
-T 44700 46900 5 10 0 0 0 0 1
-pn=LMZ12002TZ-ADJ/NOPB
-}
-N 46200 44200 46200 46900 4
-N 46200 46700 46500 46700 4
-N 46500 46700 46500 46900 4
-C 47000 45200 1 90 0 capacitor-1.sym
-{
-T 46300 45400 5 10 0 0 90 0 1
-device=CAPACITOR
-T 46500 45400 5 10 1 1 90 0 1
-refdes=C2
-T 46100 45400 5 10 0 0 90 0 1
-symversion=0.1
-T 47000 45200 5 10 0 0 90 0 1
-footprint=0805
-T 47100 45200 5 10 1 1 90 0 1
-value=10 nf
-T 47000 45200 5 10 0 0 0 0 1
-pn=GRM216R71H103KA01D
-}
-C 43600 45400 1 90 0 capacitor-1.sym
-{
-T 42900 45600 5 10 0 0 90 0 1
-device=CAPACITOR
-T 43100 45600 5 10 1 1 90 0 1
-refdes=C3
-T 42700 45600 5 10 0 0 90 0 1
-symversion=0.1
-T 43600 45400 5 10 0 0 90 0 1
-footprint=1210
-T 43700 45400 5 10 1 1 90 0 1
-value=10 uF
-T 43600 45400 5 10 0 0 0 0 1
-pn=C3225X7R1E106MT
-}
-C 42800 45400 1 90 0 capacitor-1.sym
-{
-T 42100 45600 5 10 0 0 90 0 1
-device=CAPACITOR
-T 42300 45600 5 10 1 1 90 0 1
-refdes=C4
-T 41900 45600 5 10 0 0 90 0 1
-symversion=0.1
-T 42800 45400 5 10 0 0 90 0 1
-footprint=1210
-T 42900 45400 5 10 1 1 90 0 1
-value=10 uF
-T 42800 45400 5 10 0 0 0 0 1
-pn=C3225X7R1E106MT
-}
-C 42500 44700 1 0 0 gnd-1.sym
-N 43400 46300 43400 46600 4
-N 41800 46600 45100 46600 4
-N 45100 46600 45100 46900 4
-N 42600 46600 42600 46300 4
-N 42600 45000 42600 45400 4
-N 42600 45200 43400 45200 4
-N 43400 45200 43400 45400 4
-C 49400 45000 1 90 0 capacitor-1.sym
-{
-T 48700 45200 5 10 0 0 90 0 1
-device=CAPACITOR
-T 48900 45200 5 10 1 1 90 0 1
-refdes=C5
-T 48500 45200 5 10 0 0 90 0 1
-symversion=0.1
-T 49400 45000 5 10 0 0 90 0 1
-footprint=0805
-T 49500 45000 5 10 1 1 90 0 1
-value=22 nf
-T 49400 45000 5 10 0 0 0 0 1
-pn=CC0805KRX7R9BB223
-}
-C 44200 45000 1 0 0 resistor-1.sym
-{
-T 44500 45400 5 10 0 0 0 0 1
-device=RESISTOR
-T 44400 45300 5 10 1 1 0 0 1
-refdes=R2
-T 44100 44800 5 10 1 1 0 0 1
-value=34.0 kohm
-T 44200 45000 5 10 0 0 0 0 1
-footprint=0603
-T 44200 45000 5 10 0 0 0 0 1
-pn=CRCW060334K0FKEA
-}
-C 44300 45900 1 0 0 resistor-1.sym
-{
-T 44600 46300 5 10 0 0 0 0 1
-device=RESISTOR
-T 44500 46200 5 10 1 1 0 0 1
-refdes=R3
-T 44100 45700 5 10 1 1 0 0 1
-value=154.0 kohm
-T 44300 45900 5 10 0 0 0 0 1
-footprint=0603
-T 44300 45900 5 10 0 0 0 0 1
-pn=CRCW0603154KFKEA
-}
-N 45400 46900 45400 46000 4
-N 45400 46000 45200 46000 4
-C 44200 44200 1 0 0 resistor-1.sym
-{
-T 44500 44600 5 10 0 0 0 0 1
-device=RESISTOR
-T 44400 44500 5 10 1 1 0 0 1
-refdes=R4
-T 44200 44000 5 10 1 1 0 0 1
-value=9.31 kohm
-T 44200 44200 5 10 0 0 0 0 1
-footprint=0603
-T 44200 44200 5 10 0 0 0 0 1
-pn=ERJ-3EKF9311V
-}
-N 45700 44300 45700 46900 4
-N 45100 45100 45700 45100 4
-N 45700 44300 45100 44300 4
-N 44200 45100 43900 45100 4
-N 43900 45100 43900 46600 4
-C 43900 43800 1 0 0 gnd-1.sym
-N 44200 44300 44000 44300 4
-N 44000 44300 44000 44100 4
-C 46100 43900 1 0 0 gnd-1.sym
-N 46800 45200 46800 45000 4
-N 46800 45000 46200 45000 4
-C 46400 44400 1 0 0 resistor-1.sym
-{
-T 46700 44800 5 10 0 0 0 0 1
-device=RESISTOR
-T 46600 44700 5 10 1 1 0 0 1
-refdes=R5
-T 46400 44200 5 10 1 1 0 0 1
-value=1.27 kohm
-T 46400 44400 5 10 0 0 0 0 1
-footprint=0805
-T 46400 44400 5 10 0 0 0 0 1
-pn=CRCW08051K27FKEA
-}
-N 46200 44500 46400 44500 4
-N 47300 44500 47300 46900 4
-C 47500 46000 1 0 0 resistor-1.sym
-{
-T 47800 46400 5 10 0 0 0 0 1
-device=RESISTOR
-T 47700 46300 5 10 1 1 0 0 1
-refdes=R6
-T 47500 45800 5 10 1 1 0 0 1
-value=6.65 kohm
-T 47500 46000 5 10 0 0 0 0 1
-footprint=0805
-T 47500 46000 5 10 0 0 0 0 1
-pn=CRCW08056K65FKEA
-}
-N 47500 46100 47300 46100 4
-N 47600 46900 47600 46600 4
-N 47600 46600 51400 46600 4
-N 48400 46100 48600 46100 4
-N 48600 46100 48600 46600 4
-N 49200 45900 49200 46600 4
-N 49200 45000 49200 44800 4
-N 49200 44800 47300 44800 4
-C 50300 45000 1 90 0 capacitor-1.sym
-{
-T 49600 45200 5 10 0 0 90 0 1
-device=CAPACITOR
-T 49800 45200 5 10 1 1 90 0 1
-refdes=C6
-T 49400 45200 5 10 0 0 90 0 1
-symversion=0.1
-T 50300 45000 5 10 0 0 90 0 1
-footprint=1210
-T 50400 45000 5 10 1 1 90 0 1
-value=100 uF
-T 50300 45000 5 10 0 0 0 0 1
-pn=C3225X5R0J107MT
-}
-N 50100 46600 50100 45900 4
-C 50000 43900 1 0 0 gnd-1.sym
-N 50100 45000 50100 44200 4
-N 47000 46900 47000 46500 4
-N 47000 46500 46800 46500 4
-N 46800 46500 46800 46100 4
-N 44300 46000 44100 46000 4
-N 44100 46000 44100 46600 4
-C 41200 43900 1 0 0 in-1.sym
-{
-T 41200 44200 5 10 0 0 0 0 1
-device=INPUT
-T 41200 44200 5 10 1 1 0 0 1
-refdes=GND
-}
-C 51400 46500 1 0 0 out-1.sym
-{
-T 51400 46800 5 10 0 0 0 0 1
-device=OUTPUT
-T 51400 46800 5 10 1 1 0 0 1
-refdes=VOUT
-}
-C 42400 43900 1 90 0 gnd-1.sym
-N 41800 44000 42100 44000 4
-C 41200 46500 1 0 0 in-1.sym
-{
-T 41200 46800 5 10 0 0 0 0 1
-device=INPUT
-T 41200 46800 5 10 1 1 0 0 1
-refdes=VIN
-}
-C 51100 46200 1 270 0 resistor-1.sym
-{
-T 51500 45900 5 10 0 0 270 0 1
-device=RESISTOR
-T 51400 46000 5 10 1 1 270 0 1
-refdes=R13
-T 51100 46200 5 10 0 0 270 0 1
-footprint=0603
-T 50900 46200 5 10 1 1 270 0 1
-value=300 ohms
-T 51100 46200 5 10 0 1 0 0 1
-pn=CRCW0603300RFKEAHP
-}
-C 51400 44300 1 90 0 led-3.sym
-{
-T 50750 45250 5 10 0 0 90 0 1
-device=LED
-T 50850 44750 5 10 1 1 90 0 1
-refdes=D1
-T 51400 44300 5 10 0 0 90 0 1
-footprint=0805
-T 51500 44500 5 10 1 1 90 0 1
-value=green
-T 51400 44300 5 10 0 1 0 0 1
-pn=LG R971-KN-1
-}
-N 51200 46600 51200 46200 4
-N 51200 45300 51200 45200 4
-C 51100 43900 1 0 0 gnd-1.sym
-N 51200 44300 51200 44200 4
diff --git a/bbb_cape/schematic/symbols/4-40_bolt-1.sym b/bbb_cape/schematic/symbols/4-40_bolt-1.sym
deleted file mode 100644
index 6d6fcfb..0000000
--- a/bbb_cape/schematic/symbols/4-40_bolt-1.sym
+++ /dev/null
@@ -1,14 +0,0 @@
-v 20110115 2
-V 600 500 500 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T -300 1200 8 10 0 1 0 0 1
-device=4-40_bolt
-T 500 1300 8 10 0 1 0 0 1
-description=#4-40 mounting bolt hole
-T 0 1200 8 10 0 1 0 0 1
-footprint=4-40_bolt
-T 500 700 8 10 1 1 0 0 1
-refdes=B?
-T 1100 1400 8 10 0 1 0 0 1
-numslots=1
-T 0 1100 9 10 1 0 0 0 1
-#4-40 bolt hole
diff --git a/bbb_cape/schematic/symbols/ADXRS453-1.sym b/bbb_cape/schematic/symbols/ADXRS453-1.sym
deleted file mode 100644
index 299f900..0000000
--- a/bbb_cape/schematic/symbols/ADXRS453-1.sym
+++ /dev/null
@@ -1,190 +0,0 @@
-v 20110115 2
-T 600 1800 8 10 0 1 0 0 1
-footprint=SO16W
-B 300 0 1500 2500 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 0 2300 300 2300 1 0 0
-{
-T 0 2300 5 10 0 0 0 0 1
-pintype=pwr
-T 355 2295 5 10 1 1 0 0 1
-pinlabel=DVDD
-T 205 2345 5 10 1 1 0 6 1
-pinnumber=1
-T 0 2300 5 10 0 0 0 0 1
-pinseq=1
-}
-P 0 2000 300 2000 1 0 0
-{
-T 0 2000 5 10 0 0 0 0 1
-pintype=pwr
-T 355 1995 5 10 1 1 0 0 1
-pinlabel=DVSS
-T 205 2045 5 10 1 1 0 6 1
-pinnumber=13
-T 0 2000 5 10 0 0 0 0 1
-pinseq=2
-}
-P 0 1700 300 1700 1 0 0
-{
-T 0 1700 5 10 0 0 0 0 1
-pintype=pwr
-T 355 1695 5 10 1 1 0 0 1
-pinlabel=AVDD
-T 205 1745 5 10 1 1 0 6 1
-pinnumber=14
-T 0 1700 5 10 0 0 0 0 1
-pinseq=3
-}
-P 0 1400 300 1400 1 0 0
-{
-T 0 1400 5 10 0 0 0 0 1
-pintype=pwr
-T 355 1395 5 10 1 1 0 0 1
-pinlabel=AVSS
-T 205 1445 5 10 1 1 0 6 1
-pinnumber=11
-T 0 1400 5 10 0 0 0 0 1
-pinseq=4
-}
-P 0 1100 300 1100 1 0 0
-{
-T 0 1100 5 10 0 0 0 0 1
-pintype=in
-T 355 1095 5 10 1 1 0 0 1
-pinlabel=RSVD
-T 205 1145 5 10 1 1 0 6 1
-pinnumber=2
-T 0 1100 5 10 0 0 0 0 1
-pinseq=5
-}
-P 0 800 300 800 1 0 0
-{
-T 0 800 5 10 0 0 0 0 1
-pintype=in
-T 355 795 5 10 1 1 0 0 1
-pinlabel=RSVD
-T 205 845 5 10 1 1 0 6 1
-pinnumber=3
-T 0 800 5 10 0 0 0 0 1
-pinseq=6
-}
-P 0 500 300 500 1 0 0
-{
-T 0 500 5 10 0 0 0 0 1
-pintype=in
-T 355 495 5 10 1 1 0 0 1
-pinlabel=RSVD
-T 205 545 5 10 1 1 0 6 1
-pinnumber=10
-T 0 500 5 10 0 0 0 0 1
-pinseq=7
-}
-P 0 200 300 200 1 0 0
-{
-T 0 200 5 10 0 0 0 0 1
-pintype=in
-T 355 195 5 10 1 1 0 0 1
-pinlabel=RSVD
-T 205 245 5 10 1 1 0 6 1
-pinnumber=12
-T 0 200 5 10 0 0 0 0 1
-pinseq=8
-}
-P 2100 2300 1800 2300 1 0 0
-{
-T 2100 2300 5 10 0 0 0 0 1
-pintype=in
-T 1745 2295 5 10 1 1 0 6 1
-pinlabel=\_CS\_
-T 1895 2345 5 10 1 1 0 0 1
-pinnumber=4
-T 2100 2300 5 10 0 0 0 0 1
-pinseq=9
-}
-P 2100 2000 1800 2000 1 0 0
-{
-T 2100 2000 5 10 0 0 0 0 1
-pintype=in
-T 1745 1995 5 10 1 1 0 6 1
-pinlabel=SCLK
-T 1895 2045 5 10 1 1 0 0 1
-pinnumber=16
-T 2100 2000 5 10 0 0 0 0 1
-pinseq=10
-}
-P 2100 1700 1800 1700 1 0 0
-{
-T 2100 1700 5 10 0 0 0 0 1
-pintype=out
-T 1745 1695 5 10 1 1 0 6 1
-pinlabel=MISO
-T 1895 1745 5 10 1 1 0 0 1
-pinnumber=5
-T 2100 1700 5 10 0 0 0 0 1
-pinseq=11
-}
-P 2100 1400 1800 1400 1 0 0
-{
-T 2100 1400 5 10 0 0 0 0 1
-pintype=in
-T 1745 1395 5 10 1 1 0 6 1
-pinlabel=MOSI
-T 1895 1445 5 10 1 1 0 0 1
-pinnumber=15
-T 2100 1400 5 10 0 0 0 0 1
-pinseq=12
-}
-P 2100 1100 1800 1100 1 0 0
-{
-T 2100 1100 5 10 0 0 0 0 1
-pintype=pwr
-T 1745 1095 5 10 1 1 0 6 1
-pinlabel=PDD
-T 1895 1145 5 10 1 1 0 0 1
-pinnumber=6
-T 2100 1100 5 10 0 0 0 0 1
-pinseq=13
-}
-P 2100 800 1800 800 1 0 0
-{
-T 2100 800 5 10 0 0 0 0 1
-pintype=pwr
-T 1745 795 5 10 1 1 0 6 1
-pinlabel=PSS
-T 1895 845 5 10 1 1 0 0 1
-pinnumber=7
-T 2100 800 5 10 0 0 0 0 1
-pinseq=14
-}
-P 2100 500 1800 500 1 0 0
-{
-T 2100 500 5 10 0 0 0 0 1
-pintype=pas
-T 1745 495 5 10 1 1 0 6 1
-pinlabel=VX
-T 1895 545 5 10 1 1 0 0 1
-pinnumber=8
-T 2100 500 5 10 0 0 0 0 1
-pinseq=15
-}
-P 2100 200 1800 200 1 0 0
-{
-T 2100 200 5 10 0 0 0 0 1
-pintype=pas
-T 1745 195 5 10 1 1 0 6 1
-pinlabel=CP5
-T 1895 245 5 10 1 1 0 0 1
-pinnumber=9
-T 2100 200 5 10 0 0 0 0 1
-pinseq=16
-}
-T 1000 3200 8 10 0 1 0 0 1
-device=ADXRS453
-T 1300 2800 8 10 0 1 0 0 1
-description=Analog Devices ADXRS453 gyro
-T 1500 2600 8 10 1 1 0 0 1
-refdes=U?
-T -400 2900 8 10 0 1 0 0 1
-numslots=1
-T 400 2600 9 10 1 0 0 0 1
-ADXRS453
diff --git a/bbb_cape/schematic/symbols/AM26LV32E-1.sym b/bbb_cape/schematic/symbols/AM26LV32E-1.sym
deleted file mode 100644
index a155259..0000000
--- a/bbb_cape/schematic/symbols/AM26LV32E-1.sym
+++ /dev/null
@@ -1,190 +0,0 @@
-v 20110115 2
-P 1800 2300 1500 2300 1 0 0
-{
-T 1800 2300 5 10 0 0 0 0 1
-pintype=in
-T 1445 2295 5 10 1 1 0 6 1
-pinlabel=1A
-T 1595 2345 5 10 1 1 0 0 1
-pinnumber=2
-T 1800 2300 5 10 0 0 0 0 1
-pinseq=7
-}
-P 1800 2000 1500 2000 1 0 0
-{
-T 1800 2000 5 10 0 0 0 0 1
-pintype=in
-T 1445 1995 5 10 1 1 0 6 1
-pinlabel=1B
-T 1595 2045 5 10 1 1 0 0 1
-pinnumber=1
-T 1800 2000 5 10 0 0 0 0 1
-pinseq=9
-}
-P 1800 1700 1500 1700 1 0 0
-{
-T 1800 1700 5 10 0 0 0 0 1
-pintype=in
-T 1445 1695 5 10 1 1 0 6 1
-pinlabel=2A
-T 1595 1745 5 10 1 1 0 0 1
-pinnumber=6
-T 1800 1700 5 10 0 0 0 0 1
-pinseq=11
-}
-P 1800 1400 1500 1400 1 0 0
-{
-T 1800 1400 5 10 0 0 0 0 1
-pintype=in
-T 1445 1395 5 10 1 1 0 6 1
-pinlabel=2B
-T 1595 1445 5 10 1 1 0 0 1
-pinnumber=7
-T 1800 1400 5 10 0 0 0 0 1
-pinseq=12
-}
-P 1800 800 1500 800 1 0 0
-{
-T 1800 800 5 10 0 0 0 0 1
-pintype=in
-T 1445 795 5 10 1 1 0 6 1
-pinlabel=3B
-T 1595 845 5 10 1 1 0 0 1
-pinnumber=9
-T 1800 800 5 10 0 0 0 0 1
-pinseq=14
-}
-P 1800 500 1500 500 1 0 0
-{
-T 1800 500 5 10 0 0 0 0 1
-pintype=in
-T 1445 495 5 10 1 1 0 6 1
-pinlabel=4A
-T 1595 545 5 10 1 1 0 0 1
-pinnumber=14
-T 1800 500 5 10 0 0 0 0 1
-pinseq=15
-}
-P 1800 200 1500 200 1 0 0
-{
-T 1800 200 5 10 0 0 0 0 1
-pintype=in
-T 1445 195 5 10 1 1 0 6 1
-pinlabel=4B
-T 1595 245 5 10 1 1 0 0 1
-pinnumber=15
-T 1800 200 5 10 0 0 0 0 1
-pinseq=16
-}
-P 1800 1100 1500 1100 1 0 0
-{
-T 1800 1100 5 10 0 0 0 0 1
-pintype=in
-T 1445 1095 5 10 1 1 0 6 1
-pinlabel=3A
-T 1595 1145 5 10 1 1 0 0 1
-pinnumber=10
-T 1800 1100 5 10 0 0 0 0 1
-pinseq=13
-}
-B 300 0 1200 2500 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 0 2300 300 2300 1 0 0
-{
-T 0 2300 5 10 0 0 0 0 1
-pintype=out
-T 355 2295 5 10 1 1 0 0 1
-pinlabel=1Y
-T 205 2345 5 10 1 1 0 6 1
-pinnumber=3
-T 0 2300 5 10 0 0 0 0 1
-pinseq=1
-}
-P 0 2000 300 2000 1 0 0
-{
-T 0 2000 5 10 0 0 0 0 1
-pintype=out
-T 355 1995 5 10 1 1 0 0 1
-pinlabel=2Y
-T 205 2045 5 10 1 1 0 6 1
-pinnumber=5
-T 0 2000 5 10 0 0 0 0 1
-pinseq=2
-}
-P 0 1700 300 1700 1 0 0
-{
-T 0 1700 5 10 0 0 0 0 1
-pintype=out
-T 355 1695 5 10 1 1 0 0 1
-pinlabel=3Y
-T 205 1745 5 10 1 1 0 6 1
-pinnumber=11
-T 0 1700 5 10 0 0 0 0 1
-pinseq=3
-}
-P 0 1400 300 1400 1 0 0
-{
-T 0 1400 5 10 0 0 0 0 1
-pintype=out
-T 355 1395 5 10 1 1 0 0 1
-pinlabel=4Y
-T 205 1445 5 10 1 1 0 6 1
-pinnumber=13
-T 0 1400 5 10 0 0 0 0 1
-pinseq=4
-}
-P 0 1100 300 1100 1 0 0
-{
-T 0 1100 5 10 0 0 0 0 1
-pintype=in
-T 355 1095 5 10 1 1 0 0 1
-pinlabel=ENABLE
-T 205 1145 5 10 1 1 0 6 1
-pinnumber=4
-T 0 1100 5 10 0 0 0 0 1
-pinseq=5
-}
-P 0 800 300 800 1 0 0
-{
-T 0 800 5 10 0 0 0 0 1
-pintype=in
-T 355 795 5 10 1 1 0 0 1
-pinlabel=\_ENABLE\_
-T 205 845 5 10 1 1 0 6 1
-pinnumber=12
-T 0 800 5 10 0 0 0 0 1
-pinseq=6
-}
-P 0 500 300 500 1 0 0
-{
-T 0 500 5 10 0 0 0 0 1
-pintype=pwr
-T 355 495 5 10 1 1 0 0 1
-pinlabel=GND
-T 205 545 5 10 1 1 0 6 1
-pinnumber=8
-T 0 500 5 10 0 0 0 0 1
-pinseq=8
-}
-P 0 200 300 200 1 0 0
-{
-T 0 200 5 10 0 0 0 0 1
-pintype=pwr
-T 355 195 5 10 1 1 0 0 1
-pinlabel=VCC
-T 205 245 5 10 1 1 0 6 1
-pinnumber=16
-T 0 200 5 10 0 0 0 0 1
-pinseq=10
-}
-T -600 2200 8 10 0 1 0 0 1
-device=AM26LV32E
-T -800 2000 8 10 0 1 0 0 1
-description=TI AM26LV32E LOW-VOLTAGE HIGH-SPEED QUADRUPLE DIFFERENTIAL LINE RECEIVER
-T -1400 1700 8 10 0 1 0 0 1
-footprint=TSSOP16
-T 1300 2600 8 10 1 1 0 0 1
-refdes=U?
-T -600 1200 8 10 0 1 0 0 1
-numslots=0
-T 200 2600 9 10 1 0 0 0 1
-AM26LV32E
diff --git a/bbb_cape/schematic/symbols/MCP3008-ISL-1.sym b/bbb_cape/schematic/symbols/MCP3008-ISL-1.sym
deleted file mode 100644
index 2627b4e..0000000
--- a/bbb_cape/schematic/symbols/MCP3008-ISL-1.sym
+++ /dev/null
@@ -1,190 +0,0 @@
-v 20110115 2
-B 300 0 1900 2400 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 2500 1600 2200 1600 1 0 0
-{
-T 2500 1600 5 10 0 0 0 0 1
-pintype=pwr
-T 2145 1595 5 10 1 1 0 6 1
-pinlabel=DVDD
-T 2295 1645 5 10 1 1 0 0 1
-pinnumber=16
-T 2500 1600 5 10 0 0 0 0 1
-pinseq=0
-}
-P 2500 1300 2200 1300 1 0 0
-{
-T 2500 1300 5 10 0 0 0 0 1
-pintype=pwr
-T 2145 1295 5 10 1 1 0 6 1
-pinlabel=DGND
-T 2295 1345 5 10 1 1 0 0 1
-pinnumber=9
-T 2500 1300 5 10 0 0 0 0 1
-pinseq=0
-}
-P 2500 2200 2200 2200 1 0 0
-{
-T 2500 2200 5 10 0 0 0 0 1
-pintype=pwr
-T 2145 2195 5 10 1 1 0 6 1
-pinlabel=AVDD
-T 2295 2245 5 10 1 1 0 0 1
-pinnumber=15
-T 2500 2200 5 10 0 0 0 0 1
-pinseq=0
-}
-P 2500 1900 2200 1900 1 0 0
-{
-T 2500 1900 5 10 0 0 0 0 1
-pintype=pwr
-T 2145 1895 5 10 1 1 0 6 1
-pinlabel=AGND
-T 2295 1945 5 10 1 1 0 0 1
-pinnumber=14
-T 2500 1900 5 10 0 0 0 0 1
-pinseq=0
-}
-P 2500 1000 2200 1000 1 0 0
-{
-T 2500 1000 5 10 0 0 0 0 1
-pintype=clk
-T 2145 995 5 10 1 1 0 6 1
-pinlabel=CLK
-T 2295 1045 5 10 1 1 0 0 1
-pinnumber=13
-T 2500 1000 5 10 0 0 0 0 1
-pinseq=0
-}
-P 2500 700 2200 700 1 0 0
-{
-T 2500 700 5 10 0 0 0 0 1
-pintype=in
-T 2145 695 5 10 1 1 0 6 1
-pinlabel=\_CS\_
-T 2295 745 5 10 1 1 0 0 1
-pinnumber=10
-T 2500 700 5 10 0 0 0 0 1
-pinseq=0
-}
-P 2500 400 2200 400 1 0 0
-{
-T 2500 400 5 10 0 0 0 0 1
-pintype=in
-T 2145 395 5 10 1 1 0 6 1
-pinlabel=MOSI
-T 2295 445 5 10 1 1 0 0 1
-pinnumber=11
-T 2500 400 5 10 0 0 0 0 1
-pinseq=0
-}
-P 2500 100 2200 100 1 0 0
-{
-T 2500 100 5 10 0 0 0 0 1
-pintype=out
-T 2145 95 5 10 1 1 0 6 1
-pinlabel=MISO
-T 2295 145 5 10 1 1 0 0 1
-pinnumber=12
-T 2500 100 5 10 0 0 0 0 1
-pinseq=0
-}
-P 0 2200 300 2200 1 0 0
-{
-T 0 2200 5 10 0 0 0 0 1
-pintype=in
-T 355 2195 5 10 1 1 0 0 1
-pinlabel=CH0
-T 205 2245 5 10 1 1 0 6 1
-pinnumber=1
-T 0 2200 5 10 0 0 0 0 1
-pinseq=0
-}
-P 0 1900 300 1900 1 0 0
-{
-T 0 1900 5 10 0 0 0 0 1
-pintype=in
-T 355 1895 5 10 1 1 0 0 1
-pinlabel=CH1
-T 205 1945 5 10 1 1 0 6 1
-pinnumber=2
-T 0 1900 5 10 0 0 0 0 1
-pinseq=0
-}
-P 0 1600 300 1600 1 0 0
-{
-T 0 1600 5 10 0 0 0 0 1
-pintype=in
-T 355 1595 5 10 1 1 0 0 1
-pinlabel=CH2
-T 205 1645 5 10 1 1 0 6 1
-pinnumber=3
-T 0 1600 5 10 0 0 0 0 1
-pinseq=0
-}
-P 0 1300 300 1300 1 0 0
-{
-T 0 1300 5 10 0 0 0 0 1
-pintype=in
-T 355 1295 5 10 1 1 0 0 1
-pinlabel=CH3
-T 205 1345 5 10 1 1 0 6 1
-pinnumber=4
-T 0 1300 5 10 0 0 0 0 1
-pinseq=0
-}
-P 0 1000 300 1000 1 0 0
-{
-T 0 1000 5 10 0 0 0 0 1
-pintype=in
-T 355 995 5 10 1 1 0 0 1
-pinlabel=CH4
-T 205 1045 5 10 1 1 0 6 1
-pinnumber=5
-T 0 1000 5 10 0 0 0 0 1
-pinseq=0
-}
-P 0 700 300 700 1 0 0
-{
-T 0 700 5 10 0 0 0 0 1
-pintype=in
-T 355 695 5 10 1 1 0 0 1
-pinlabel=CH5
-T 205 745 5 10 1 1 0 6 1
-pinnumber=6
-T 0 700 5 10 0 0 0 0 1
-pinseq=0
-}
-P 0 400 300 400 1 0 0
-{
-T 0 400 5 10 0 0 0 0 1
-pintype=in
-T 355 395 5 10 1 1 0 0 1
-pinlabel=CH6
-T 205 445 5 10 1 1 0 6 1
-pinnumber=7
-T 0 400 5 10 0 0 0 0 1
-pinseq=0
-}
-P 0 100 300 100 1 0 0
-{
-T 0 100 5 10 0 0 0 0 1
-pintype=in
-T 355 95 5 10 1 1 0 0 1
-pinlabel=CH7
-T 205 145 5 10 1 1 0 6 1
-pinnumber=8
-T 0 100 5 10 0 0 0 0 1
-pinseq=0
-}
-T 3100 800 8 10 0 1 0 0 1
-footprint=SO16
-T 3000 900 8 10 0 1 0 0 1
-device=MCP3008-ISL
-T 3000 600 8 10 0 1 0 0 1
-description=microchip SPI ADC
-T 1100 2200 8 10 1 1 0 0 1
-refdes=U?
-T 1400 2700 8 10 0 1 0 0 1
-numslots=1
-T 700 2500 9 10 1 0 0 0 1
-MCP3008-ISL
diff --git a/bbb_cape/schematic/symbols/STM32F2-1.sym b/bbb_cape/schematic/symbols/STM32F2-1.sym
deleted file mode 100644
index aee47d1..0000000
--- a/bbb_cape/schematic/symbols/STM32F2-1.sym
+++ /dev/null
@@ -1,718 +0,0 @@
-v 20110115 2
-B 300 0 2900 12700 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 3500 12500 3200 12500 1 0 0
-{
-T 3500 12500 5 10 0 0 0 0 1
-pintype=io
-T 3145 12495 5 10 1 1 0 6 1
-pinlabel=PA0
-T 3295 12545 5 10 1 1 0 0 1
-pinnumber=14
-T 3500 12500 5 10 0 0 0 0 1
-pinseq=1
-}
-P 3500 12100 3200 12100 1 0 0
-{
-T 3500 12100 5 10 0 0 0 0 1
-pintype=io
-T 3145 12095 5 10 1 1 0 6 1
-pinlabel=PA1
-T 3295 12145 5 10 1 1 0 0 1
-pinnumber=15
-T 3500 12100 5 10 0 0 0 0 1
-pinseq=2
-}
-P 3500 11700 3200 11700 1 0 0
-{
-T 3500 11700 5 10 0 0 0 0 1
-pintype=io
-T 3145 11695 5 10 1 1 0 6 1
-pinlabel=PA2
-T 3295 11745 5 10 1 1 0 0 1
-pinnumber=16
-T 3500 11700 5 10 0 0 0 0 1
-pinseq=3
-}
-P 3500 11300 3200 11300 1 0 0
-{
-T 3500 11300 5 10 0 0 0 0 1
-pintype=io
-T 3145 11295 5 10 1 1 0 6 1
-pinlabel=PA3
-T 3295 11345 5 10 1 1 0 0 1
-pinnumber=17
-T 3500 11300 5 10 0 0 0 0 1
-pinseq=4
-}
-P 3500 10900 3200 10900 1 0 0
-{
-T 3500 10900 5 10 0 0 0 0 1
-pintype=io
-T 3145 10895 5 10 1 1 0 6 1
-pinlabel=PA4
-T 3295 10945 5 10 1 1 0 0 1
-pinnumber=20
-T 3500 10900 5 10 0 0 0 0 1
-pinseq=5
-}
-P 3500 10500 3200 10500 1 0 0
-{
-T 3500 10500 5 10 0 0 0 0 1
-pintype=io
-T 3145 10495 5 10 1 1 0 6 1
-pinlabel=PA5
-T 3295 10545 5 10 1 1 0 0 1
-pinnumber=21
-T 3500 10500 5 10 0 0 0 0 1
-pinseq=6
-}
-P 3500 10100 3200 10100 1 0 0
-{
-T 3500 10100 5 10 0 0 0 0 1
-pintype=io
-T 3145 10095 5 10 1 1 0 6 1
-pinlabel=PA6
-T 3295 10145 5 10 1 1 0 0 1
-pinnumber=22
-T 3500 10100 5 10 0 0 0 0 1
-pinseq=7
-}
-P 3500 9700 3200 9700 1 0 0
-{
-T 3500 9700 5 10 0 0 0 0 1
-pintype=io
-T 3145 9695 5 10 1 1 0 6 1
-pinlabel=PA7
-T 3295 9745 5 10 1 1 0 0 1
-pinnumber=23
-T 3500 9700 5 10 0 0 0 0 1
-pinseq=8
-}
-P 3500 9300 3200 9300 1 0 0
-{
-T 3500 9300 5 10 0 0 0 0 1
-pintype=io
-T 3145 9295 5 10 1 1 0 6 1
-pinlabel=PA8
-T 3295 9345 5 10 1 1 0 0 1
-pinnumber=41
-T 3500 9300 5 10 0 0 0 0 1
-pinseq=9
-}
-P 3500 8900 3200 8900 1 0 0
-{
-T 3500 8900 5 10 0 0 0 0 1
-pintype=io
-T 3145 8895 5 10 1 1 0 6 1
-pinlabel=PA9
-T 3295 8945 5 10 1 1 0 0 1
-pinnumber=42
-T 3500 8900 5 10 0 0 0 0 1
-pinseq=10
-}
-P 3500 8500 3200 8500 1 0 0
-{
-T 3500 8500 5 10 0 0 0 0 1
-pintype=io
-T 3145 8495 5 10 1 1 0 6 1
-pinlabel=PA10
-T 3295 8545 5 10 1 1 0 0 1
-pinnumber=43
-T 3500 8500 5 10 0 0 0 0 1
-pinseq=11
-}
-P 3500 8100 3200 8100 1 0 0
-{
-T 3500 8100 5 10 0 0 0 0 1
-pintype=io
-T 3145 8095 5 10 1 1 0 6 1
-pinlabel=PA11
-T 3295 8145 5 10 1 1 0 0 1
-pinnumber=44
-T 3500 8100 5 10 0 0 0 0 1
-pinseq=12
-}
-P 3500 7700 3200 7700 1 0 0
-{
-T 3500 7700 5 10 0 0 0 0 1
-pintype=io
-T 3145 7695 5 10 1 1 0 6 1
-pinlabel=PA12
-T 3295 7745 5 10 1 1 0 0 1
-pinnumber=45
-T 3500 7700 5 10 0 0 0 0 1
-pinseq=13
-}
-P 3500 7300 3200 7300 1 0 0
-{
-T 3500 7300 5 10 0 0 0 0 1
-pintype=io
-T 3145 7295 5 10 1 1 0 6 1
-pinlabel=PA13
-T 3295 7345 5 10 1 1 0 0 1
-pinnumber=46
-T 3500 7300 5 10 0 0 0 0 1
-pinseq=14
-}
-P 3500 6900 3200 6900 1 0 0
-{
-T 3500 6900 5 10 0 0 0 0 1
-pintype=io
-T 3145 6895 5 10 1 1 0 6 1
-pinlabel=PA14
-T 3295 6945 5 10 1 1 0 0 1
-pinnumber=49
-T 3500 6900 5 10 0 0 0 0 1
-pinseq=15
-}
-P 3500 6500 3200 6500 1 0 0
-{
-T 3500 6500 5 10 0 0 0 0 1
-pintype=io
-T 3145 6495 5 10 1 1 0 6 1
-pinlabel=PA15
-T 3295 6545 5 10 1 1 0 0 1
-pinnumber=50
-T 3500 6500 5 10 0 0 0 0 1
-pinseq=16
-}
-P 3500 6100 3200 6100 1 0 0
-{
-T 3500 6100 5 10 0 0 0 0 1
-pintype=io
-T 3145 6095 5 10 1 1 0 6 1
-pinlabel=PB0
-T 3295 6145 5 10 1 1 0 0 1
-pinnumber=26
-T 3500 6100 5 10 0 0 0 0 1
-pinseq=17
-}
-P 3500 5700 3200 5700 1 0 0
-{
-T 3500 5700 5 10 0 0 0 0 1
-pintype=io
-T 3145 5695 5 10 1 1 0 6 1
-pinlabel=PB1
-T 3295 5745 5 10 1 1 0 0 1
-pinnumber=27
-T 3500 5700 5 10 0 0 0 0 1
-pinseq=18
-}
-P 3500 5300 3200 5300 1 0 0
-{
-T 3500 5300 5 10 0 0 0 0 1
-pintype=io
-T 3145 5295 5 10 1 1 0 6 1
-pinlabel=PB2
-T 3295 5345 5 10 1 1 0 0 1
-pinnumber=28
-T 3500 5300 5 10 0 0 0 0 1
-pinseq=19
-}
-P 3500 4900 3200 4900 1 0 0
-{
-T 3500 4900 5 10 0 0 0 0 1
-pintype=io
-T 3145 4895 5 10 1 1 0 6 1
-pinlabel=PB3
-T 3295 4945 5 10 1 1 0 0 1
-pinnumber=55
-T 3500 4900 5 10 0 0 0 0 1
-pinseq=20
-}
-P 3500 4500 3200 4500 1 0 0
-{
-T 3500 4500 5 10 0 0 0 0 1
-pintype=io
-T 3145 4495 5 10 1 1 0 6 1
-pinlabel=PB4
-T 3295 4545 5 10 1 1 0 0 1
-pinnumber=56
-T 3500 4500 5 10 0 0 0 0 1
-pinseq=21
-}
-P 3500 4100 3200 4100 1 0 0
-{
-T 3500 4100 5 10 0 0 0 0 1
-pintype=io
-T 3145 4095 5 10 1 1 0 6 1
-pinlabel=PB5
-T 3295 4145 5 10 1 1 0 0 1
-pinnumber=57
-T 3500 4100 5 10 0 0 0 0 1
-pinseq=22
-}
-P 3500 3700 3200 3700 1 0 0
-{
-T 3500 3700 5 10 0 0 0 0 1
-pintype=io
-T 3145 3695 5 10 1 1 0 6 1
-pinlabel=PB6
-T 3295 3745 5 10 1 1 0 0 1
-pinnumber=58
-T 3500 3700 5 10 0 0 0 0 1
-pinseq=23
-}
-P 3500 3300 3200 3300 1 0 0
-{
-T 3500 3300 5 10 0 0 0 0 1
-pintype=io
-T 3145 3295 5 10 1 1 0 6 1
-pinlabel=PB7
-T 3295 3345 5 10 1 1 0 0 1
-pinnumber=59
-T 3500 3300 5 10 0 0 0 0 1
-pinseq=24
-}
-P 3500 2900 3200 2900 1 0 0
-{
-T 3500 2900 5 10 0 0 0 0 1
-pintype=io
-T 3145 2895 5 10 1 1 0 6 1
-pinlabel=PB8
-T 3295 2945 5 10 1 1 0 0 1
-pinnumber=61
-T 3500 2900 5 10 0 0 0 0 1
-pinseq=25
-}
-P 3500 2500 3200 2500 1 0 0
-{
-T 3500 2500 5 10 0 0 0 0 1
-pintype=io
-T 3145 2495 5 10 1 1 0 6 1
-pinlabel=PB9
-T 3295 2545 5 10 1 1 0 0 1
-pinnumber=62
-T 3500 2500 5 10 0 0 0 0 1
-pinseq=26
-}
-P 3500 2100 3200 2100 1 0 0
-{
-T 3500 2100 5 10 0 0 0 0 1
-pintype=io
-T 3145 2095 5 10 1 1 0 6 1
-pinlabel=PB10
-T 3295 2145 5 10 1 1 0 0 1
-pinnumber=29
-T 3500 2100 5 10 0 0 0 0 1
-pinseq=27
-}
-P 3500 1700 3200 1700 1 0 0
-{
-T 3500 1700 5 10 0 0 0 0 1
-pintype=io
-T 3145 1695 5 10 1 1 0 6 1
-pinlabel=PB11
-T 3295 1745 5 10 1 1 0 0 1
-pinnumber=30
-T 3500 1700 5 10 0 0 0 0 1
-pinseq=28
-}
-P 3500 1300 3200 1300 1 0 0
-{
-T 3500 1300 5 10 0 0 0 0 1
-pintype=io
-T 3145 1295 5 10 1 1 0 6 1
-pinlabel=PB12
-T 3295 1345 5 10 1 1 0 0 1
-pinnumber=33
-T 3500 1300 5 10 0 0 0 0 1
-pinseq=29
-}
-P 3500 900 3200 900 1 0 0
-{
-T 3500 900 5 10 0 0 0 0 1
-pintype=io
-T 3145 895 5 10 1 1 0 6 1
-pinlabel=PB13
-T 3295 945 5 10 1 1 0 0 1
-pinnumber=34
-T 3500 900 5 10 0 0 0 0 1
-pinseq=30
-}
-P 3500 500 3200 500 1 0 0
-{
-T 3500 500 5 10 0 0 0 0 1
-pintype=io
-T 3145 495 5 10 1 1 0 6 1
-pinlabel=PB14
-T 3295 545 5 10 1 1 0 0 1
-pinnumber=35
-T 3500 500 5 10 0 0 0 0 1
-pinseq=31
-}
-P 3500 100 3200 100 1 0 0
-{
-T 3500 100 5 10 0 0 0 0 1
-pintype=io
-T 3145 95 5 10 1 1 0 6 1
-pinlabel=PB15
-T 3295 145 5 10 1 1 0 0 1
-pinnumber=36
-T 3500 100 5 10 0 0 0 0 1
-pinseq=32
-}
-P 0 12500 300 12500 1 0 0
-{
-T 0 12500 5 10 0 0 0 0 1
-pintype=io
-T 355 12495 5 10 1 1 0 0 1
-pinlabel=PC0
-T 205 12545 5 10 1 1 0 6 1
-pinnumber=8
-T 0 12500 5 10 0 0 0 0 1
-pinseq=33
-}
-P 0 12100 300 12100 1 0 0
-{
-T 0 12100 5 10 0 0 0 0 1
-pintype=io
-T 355 12095 5 10 1 1 0 0 1
-pinlabel=PC1
-T 205 12145 5 10 1 1 0 6 1
-pinnumber=9
-T 0 12100 5 10 0 0 0 0 1
-pinseq=34
-}
-P 0 11700 300 11700 1 0 0
-{
-T 0 11700 5 10 0 0 0 0 1
-pintype=io
-T 355 11695 5 10 1 1 0 0 1
-pinlabel=PC2
-T 205 11745 5 10 1 1 0 6 1
-pinnumber=10
-T 0 11700 5 10 0 0 0 0 1
-pinseq=35
-}
-P 0 11300 300 11300 1 0 0
-{
-T 0 11300 5 10 0 0 0 0 1
-pintype=io
-T 355 11295 5 10 1 1 0 0 1
-pinlabel=PC3
-T 205 11345 5 10 1 1 0 6 1
-pinnumber=11
-T 0 11300 5 10 0 0 0 0 1
-pinseq=36
-}
-P 0 10900 300 10900 1 0 0
-{
-T 0 10900 5 10 0 0 0 0 1
-pintype=io
-T 355 10895 5 10 1 1 0 0 1
-pinlabel=PC4
-T 205 10945 5 10 1 1 0 6 1
-pinnumber=24
-T 0 10900 5 10 0 0 0 0 1
-pinseq=37
-}
-P 0 10500 300 10500 1 0 0
-{
-T 0 10500 5 10 0 0 0 0 1
-pintype=io
-T 355 10495 5 10 1 1 0 0 1
-pinlabel=PC5
-T 205 10545 5 10 1 1 0 6 1
-pinnumber=25
-T 0 10500 5 10 0 0 0 0 1
-pinseq=38
-}
-P 0 10100 300 10100 1 0 0
-{
-T 0 10100 5 10 0 0 0 0 1
-pintype=io
-T 355 10095 5 10 1 1 0 0 1
-pinlabel=PC6
-T 205 10145 5 10 1 1 0 6 1
-pinnumber=37
-T 0 10100 5 10 0 0 0 0 1
-pinseq=39
-}
-P 0 9700 300 9700 1 0 0
-{
-T 0 9700 5 10 0 0 0 0 1
-pintype=io
-T 355 9695 5 10 1 1 0 0 1
-pinlabel=PC7
-T 205 9745 5 10 1 1 0 6 1
-pinnumber=38
-T 0 9700 5 10 0 0 0 0 1
-pinseq=40
-}
-P 0 9300 300 9300 1 0 0
-{
-T 0 9300 5 10 0 0 0 0 1
-pintype=io
-T 355 9295 5 10 1 1 0 0 1
-pinlabel=PC8
-T 205 9345 5 10 1 1 0 6 1
-pinnumber=39
-T 0 9300 5 10 0 0 0 0 1
-pinseq=41
-}
-P 0 8900 300 8900 1 0 0
-{
-T 0 8900 5 10 0 0 0 0 1
-pintype=io
-T 355 8895 5 10 1 1 0 0 1
-pinlabel=PC9
-T 205 8945 5 10 1 1 0 6 1
-pinnumber=40
-T 0 8900 5 10 0 0 0 0 1
-pinseq=42
-}
-P 0 8500 300 8500 1 0 0
-{
-T 0 8500 5 10 0 0 0 0 1
-pintype=io
-T 355 8495 5 10 1 1 0 0 1
-pinlabel=PC10
-T 205 8545 5 10 1 1 0 6 1
-pinnumber=51
-T 0 8500 5 10 0 0 0 0 1
-pinseq=43
-}
-P 0 8100 300 8100 1 0 0
-{
-T 0 8100 5 10 0 0 0 0 1
-pintype=io
-T 355 8095 5 10 1 1 0 0 1
-pinlabel=PC11
-T 205 8145 5 10 1 1 0 6 1
-pinnumber=52
-T 0 8100 5 10 0 0 0 0 1
-pinseq=44
-}
-P 0 7700 300 7700 1 0 0
-{
-T 0 7700 5 10 0 0 0 0 1
-pintype=io
-T 355 7695 5 10 1 1 0 0 1
-pinlabel=PC12
-T 205 7745 5 10 1 1 0 6 1
-pinnumber=53
-T 0 7700 5 10 0 0 0 0 1
-pinseq=45
-}
-P 0 7300 300 7300 1 0 0
-{
-T 0 7300 5 10 0 0 0 0 1
-pintype=io
-T 355 7295 5 10 1 1 0 0 1
-pinlabel=PC13
-T 205 7345 5 10 1 1 0 6 1
-pinnumber=2
-T 0 7300 5 10 0 0 0 0 1
-pinseq=46
-}
-P 0 6900 300 6900 1 0 0
-{
-T 0 6900 5 10 0 0 0 0 1
-pintype=io
-T 355 6895 5 10 1 1 0 0 1
-pinlabel=PC14
-T 205 6945 5 10 1 1 0 6 1
-pinnumber=3
-T 0 6900 5 10 0 0 0 0 1
-pinseq=47
-}
-P 0 6500 300 6500 1 0 0
-{
-T 0 6500 5 10 0 0 0 0 1
-pintype=io
-T 355 6495 5 10 1 1 0 0 1
-pinlabel=PC15
-T 205 6545 5 10 1 1 0 6 1
-pinnumber=4
-T 0 6500 5 10 0 0 0 0 1
-pinseq=48
-}
-P 0 6100 300 6100 1 0 0
-{
-T 0 6100 5 10 0 0 0 0 1
-pintype=io
-T 355 6095 5 10 1 1 0 0 1
-pinlabel=PD2
-T 205 6145 5 10 1 1 0 6 1
-pinnumber=54
-T 0 6100 5 10 0 0 0 0 1
-pinseq=49
-}
-P 0 5700 300 5700 1 0 0
-{
-T 0 5700 5 10 0 0 0 0 1
-pintype=in
-T 355 5695 5 10 1 1 0 0 1
-pinlabel=OSC in
-T 205 5745 5 10 1 1 0 6 1
-pinnumber=5
-T 0 5700 5 10 0 0 0 0 1
-pinseq=50
-}
-P 0 5300 300 5300 1 0 0
-{
-T 0 5300 5 10 0 0 0 0 1
-pintype=out
-T 355 5295 5 10 1 1 0 0 1
-pinlabel=OSC out
-T 205 5345 5 10 1 1 0 6 1
-pinnumber=6
-T 0 5300 5 10 0 0 0 0 1
-pinseq=51
-}
-P 0 4900 300 4900 1 0 0
-{
-T 0 4900 5 10 0 0 0 0 1
-pintype=in
-T 355 4895 5 10 1 1 0 0 1
-pinlabel=\_RST\_
-T 205 4945 5 10 1 1 0 6 1
-pinnumber=7
-T 0 4900 5 10 0 0 0 0 1
-pinseq=52
-}
-P 0 4500 300 4500 1 0 0
-{
-T 0 4500 5 10 0 0 0 0 1
-pintype=in
-T 355 4495 5 10 1 1 0 0 1
-pinlabel=BOOT0
-T 205 4545 5 10 1 1 0 6 1
-pinnumber=60
-T 0 4500 5 10 0 0 0 0 1
-pinseq=53
-}
-P 0 4100 300 4100 1 0 0
-{
-T 0 4100 5 10 0 0 0 0 1
-pintype=pas
-T 355 4095 5 10 1 1 0 0 1
-pinlabel=VCAP 1
-T 205 4145 5 10 1 1 0 6 1
-pinnumber=31
-T 0 4100 5 10 0 0 0 0 1
-pinseq=54
-}
-P 0 3700 300 3700 1 0 0
-{
-T 0 3700 5 10 0 0 0 0 1
-pintype=pas
-T 355 3695 5 10 1 1 0 0 1
-pinlabel=VCAP 2
-T 205 3745 5 10 1 1 0 6 1
-pinnumber=47
-T 0 3700 5 10 0 0 0 0 1
-pinseq=55
-}
-P 0 3300 300 3300 1 0 0
-{
-T 0 3300 5 10 0 0 0 0 1
-pintype=pwr
-T 355 3295 5 10 1 1 0 0 1
-pinlabel=VBAT
-T 205 3345 5 10 1 1 0 6 1
-pinnumber=1
-T 0 3300 5 10 0 0 0 0 1
-pinseq=56
-}
-P 0 2900 300 2900 1 0 0
-{
-T 0 2900 5 10 0 0 0 0 1
-pintype=pwr
-T 355 2895 5 10 1 1 0 0 1
-pinlabel=VDD 1
-T 205 2945 5 10 1 1 0 6 1
-pinnumber=32
-T 0 2900 5 10 0 0 0 0 1
-pinseq=57
-}
-P 0 2500 300 2500 1 0 0
-{
-T 0 2500 5 10 0 0 0 0 1
-pintype=pwr
-T 355 2495 5 10 1 1 0 0 1
-pinlabel=VDD 2
-T 205 2545 5 10 1 1 0 6 1
-pinnumber=48
-T 0 2500 5 10 0 0 0 0 1
-pinseq=58
-}
-P 0 2100 300 2100 1 0 0
-{
-T 0 2100 5 10 0 0 0 0 1
-pintype=pwr
-T 355 2095 5 10 1 1 0 0 1
-pinlabel=VDD 4
-T 205 2145 5 10 1 1 0 6 1
-pinnumber=19
-T 0 2100 5 10 0 0 0 0 1
-pinseq=59
-}
-P 0 1700 300 1700 1 0 0
-{
-T 0 1700 5 10 0 0 0 0 1
-pintype=pwr
-T 355 1695 5 10 1 1 0 0 1
-pinlabel=VDD 3
-T 205 1745 5 10 1 1 0 6 1
-pinnumber=64
-T 0 1700 5 10 0 0 0 0 1
-pinseq=60
-}
-P 0 1300 300 1300 1 0 0
-{
-T 0 1300 5 10 0 0 0 0 1
-pintype=pwr
-T 355 1295 5 10 1 1 0 0 1
-pinlabel=VSS 3
-T 205 1345 5 10 1 1 0 6 1
-pinnumber=63
-T 0 1300 5 10 0 0 0 0 1
-pinseq=61
-}
-P 0 900 300 900 1 0 0
-{
-T 0 900 5 10 0 0 0 0 1
-pintype=pwr
-T 355 895 5 10 1 1 0 0 1
-pinlabel=VSS 4
-T 205 945 5 10 1 1 0 6 1
-pinnumber=18
-T 0 900 5 10 0 0 0 0 1
-pinseq=62
-}
-P 0 500 300 500 1 0 0
-{
-T 0 500 5 10 0 0 0 0 1
-pintype=pwr
-T 355 495 5 10 1 1 0 0 1
-pinlabel=VDD analog
-T 205 545 5 10 1 1 0 6 1
-pinnumber=13
-T 0 500 5 10 0 0 0 0 1
-pinseq=63
-}
-P 0 100 300 100 1 0 0
-{
-T 0 100 5 10 0 0 0 0 1
-pintype=pwr
-T 355 95 5 10 1 1 0 0 1
-pinlabel=VSS analog
-T 205 145 5 10 1 1 0 6 1
-pinnumber=12
-T 0 100 5 10 0 0 0 0 1
-pinseq=64
-}
-T 13100 11700 8 10 0 1 0 0 1
-device=STM32F2
-T 13100 11700 8 10 0 1 0 0 1
-description=STM32F2 (or STM32F4)
-T 10400 12900 8 10 0 1 0 0 1
-footprint=LQFP64_10
-T 1700 12100 8 10 1 1 0 0 1
-refdes=U?
-T 16000 7300 8 10 0 1 0 0 1
-numslots=0
-T 1400 12400 9 10 1 0 0 0 1
-STM32F2
diff --git a/bbb_cape/schematic/symbols/TC1262-1.sym b/bbb_cape/schematic/symbols/TC1262-1.sym
deleted file mode 100644
index 1cdbc5c..0000000
--- a/bbb_cape/schematic/symbols/TC1262-1.sym
+++ /dev/null
@@ -1,58 +0,0 @@
-v 20110115 2
-T -8000 4300 8 10 0 1 0 0 1
-footprint=SOT223
-B 300 0 1500 700 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 0 500 300 500 1 0 0
-{
-T 0 500 5 10 0 0 0 0 1
-pintype=pwr
-T 355 495 5 10 1 1 0 0 1
-pinlabel=VIN
-T 205 545 5 10 1 1 0 6 1
-pinnumber=1
-T 0 500 5 10 0 0 0 0 1
-pinseq=1
-}
-P 0 200 300 200 1 0 0
-{
-T 0 200 5 10 0 0 0 0 1
-pintype=pwr
-T 355 195 5 10 1 1 0 0 1
-pinlabel=VOUT
-T 205 245 5 10 1 1 0 6 1
-pinnumber=3
-T 0 200 5 10 0 0 0 0 1
-pinseq=2
-}
-P 2100 500 1800 500 1 0 0
-{
-T 2100 500 5 10 0 0 0 0 1
-pintype=pwr
-T 1745 495 5 10 1 1 0 6 1
-pinlabel=GND
-T 1895 545 5 10 1 1 0 0 1
-pinnumber=2
-T 2100 500 5 10 0 0 0 0 1
-pinseq=3
-}
-P 2100 200 1800 200 1 0 0
-{
-T 2100 200 5 10 0 0 0 0 1
-pintype=pwr
-T 1745 195 5 10 1 1 0 6 1
-pinlabel=PAD
-T 1895 245 5 10 1 1 0 0 1
-pinnumber=4
-T 2100 200 5 10 0 0 0 0 1
-pinseq=4
-}
-T 1500 900 8 10 0 1 0 0 1
-device=TC1262
-T 1500 900 8 10 0 1 0 0 1
-description=500mA Fixed Output CMOS LDO
-T 1400 800 8 10 1 1 0 0 1
-refdes=U?
-T 1900 1000 8 10 0 1 0 0 1
-numslots=1
-T 500 800 9 10 1 0 0 0 1
-TC1262
diff --git a/bbb_cape/schematic/symbols/adc_buffer-1.sym b/bbb_cape/schematic/symbols/adc_buffer-1.sym
deleted file mode 100644
index d23bea0..0000000
--- a/bbb_cape/schematic/symbols/adc_buffer-1.sym
+++ /dev/null
@@ -1,124 +0,0 @@
-v 20110115 2
-B 400 0 1700 1300 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 0 1100 400 1100 1 0 0
-{
-T 0 1100 5 10 0 0 0 0 1
-pintype=in
-T 455 1095 5 10 1 1 0 0 1
-pinlabel=IN1
-T 305 1145 5 10 0 1 0 6 1
-pinnumber=IN1
-T 0 1100 5 10 0 0 0 0 1
-pinseq=1
-}
-P 0 800 400 800 1 0 0
-{
-T 0 800 5 10 0 0 0 0 1
-pintype=in
-T 455 795 5 10 1 1 0 0 1
-pinlabel=IN2
-T 305 845 5 10 0 1 0 6 1
-pinnumber=IN2
-T 0 800 5 10 0 0 0 0 1
-pinseq=2
-}
-P 0 500 400 500 1 0 0
-{
-T 0 500 5 10 0 0 0 0 1
-pintype=in
-T 455 495 5 10 1 1 0 0 1
-pinlabel=IN3
-T 305 545 5 10 0 1 0 6 1
-pinnumber=IN3
-T 0 500 5 10 0 0 0 0 1
-pinseq=3
-}
-P 0 200 400 200 1 0 0
-{
-T 0 200 5 10 0 0 0 0 1
-pintype=in
-T 455 195 5 10 1 1 0 0 1
-pinlabel=IN4
-T 305 245 5 10 0 1 0 6 1
-pinnumber=IN4
-T 0 200 5 10 0 0 0 0 1
-pinseq=4
-}
-P 1100 1600 1100 1300 1 0 0
-{
-T 1100 1600 5 10 0 0 0 0 1
-pintype=pwr
-T 1100 1245 5 10 1 1 90 6 1
-pinlabel=GND
-T 1050 1395 5 10 0 1 90 0 1
-pinnumber=GND
-T 1100 1600 5 10 0 0 0 0 1
-pinseq=5
-}
-P 1400 1600 1400 1300 1 0 0
-{
-T 1400 1600 5 10 0 0 0 0 1
-pintype=pwr
-T 1400 1245 5 10 1 1 90 6 1
-pinlabel=VCC
-T 1350 1395 5 10 0 1 90 0 1
-pinnumber=VCC
-T 1400 1600 5 10 0 0 0 0 1
-pinseq=0
-}
-P 2400 1100 2100 1100 1 0 0
-{
-T 2400 1100 5 10 0 0 0 0 1
-pintype=out
-T 2045 1095 5 10 1 1 0 6 1
-pinlabel=OUT1
-T 2195 1145 5 10 0 1 0 0 1
-pinnumber=OUT1
-T 2400 1100 5 10 0 0 0 0 1
-pinseq=7
-}
-P 2400 800 2100 800 1 0 0
-{
-T 2400 800 5 10 0 0 0 0 1
-pintype=out
-T 2045 795 5 10 1 1 0 6 1
-pinlabel=OUT2
-T 2195 845 5 10 0 1 0 0 1
-pinnumber=OUT2
-T 2400 800 5 10 0 0 0 0 1
-pinseq=8
-}
-P 2400 500 2100 500 1 0 0
-{
-T 2400 500 5 10 0 0 0 0 1
-pintype=out
-T 2045 495 5 10 1 1 0 6 1
-pinlabel=OUT3
-T 2195 545 5 10 0 1 0 0 1
-pinnumber=OUT3
-T 2400 500 5 10 0 0 0 0 1
-pinseq=9
-}
-P 2400 200 2100 200 1 0 0
-{
-T 2400 200 5 10 0 0 0 0 1
-pintype=out
-T 2045 195 5 10 1 1 0 6 1
-pinlabel=OUT4
-T 2195 245 5 10 0 1 0 0 1
-pinnumber=OUT4
-T 2400 200 5 10 0 0 0 0 1
-pinseq=10
-}
-T 2700 1500 8 10 0 1 0 0 1
-device=ADC buffer
-T 900 1900 8 10 0 1 0 0 1
-description=buffer for voltage clamping ADC inputs
-T 1200 1900 8 10 0 1 0 0 1
-source=adc_buffer.sch
-T 1700 1400 8 10 1 1 0 0 1
-refdes=X?
-T 1400 1900 8 10 0 1 0 0 1
-numslots=1
-T 100 1400 9 10 1 0 0 0 1
-ADC buffer
diff --git a/bbb_cape/schematic/symbols/beaglebone-1.sym b/bbb_cape/schematic/symbols/beaglebone-1.sym
deleted file mode 100644
index c2f9a56..0000000
--- a/bbb_cape/schematic/symbols/beaglebone-1.sym
+++ /dev/null
@@ -1,1030 +0,0 @@
-v 20110115 2
-P 8700 18500 8400 18500 1 0 0
-{
-T 8500 18550 5 8 1 1 0 0 1
-pinnumber=1
-T 8500 18450 5 8 0 1 0 2 1
-pinseq=1
-T 8350 18500 9 8 1 1 0 6 1
-pinlabel=GND
-T 8350 18500 5 8 0 1 0 8 1
-pintype=pwr
-}
-P 8700 18100 8400 18100 1 0 0
-{
-T 8500 18150 5 8 1 1 0 0 1
-pinnumber=2
-T 8500 18050 5 8 0 1 0 2 1
-pinseq=2
-T 8350 18100 9 8 1 1 0 6 1
-pinlabel=GND
-T 8350 18100 5 8 0 1 0 8 1
-pintype=pwr
-}
-P 8700 17700 8400 17700 1 0 0
-{
-T 8500 17750 5 8 1 1 0 0 1
-pinnumber=3
-T 8500 17650 5 8 0 1 0 2 1
-pinseq=3
-T 8350 17700 9 8 1 1 0 6 1
-pinlabel=(R9) GPIO1_6
-T 8350 17700 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 17300 8400 17300 1 0 0
-{
-T 8500 17350 5 8 1 1 0 0 1
-pinnumber=4
-T 8500 17250 5 8 0 1 0 2 1
-pinseq=4
-T 8350 17300 9 8 1 1 0 6 1
-pinlabel=(T9) GPIO1_7
-T 8350 17300 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 16900 8400 16900 1 0 0
-{
-T 8500 16950 5 8 1 1 0 0 1
-pinnumber=5
-T 8500 16850 5 8 0 1 0 2 1
-pinseq=5
-T 8350 16900 9 8 1 1 0 6 1
-pinlabel=(R8) GPIO1_2
-T 8350 16900 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 16500 8400 16500 1 0 0
-{
-T 8500 16550 5 8 1 1 0 0 1
-pinnumber=6
-T 8500 16450 5 8 0 1 0 2 1
-pinseq=6
-T 8350 16500 9 8 1 1 0 6 1
-pinlabel=(T8) GPIO1_3
-T 8350 16500 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 16100 8400 16100 1 0 0
-{
-T 8500 16150 5 8 1 1 0 0 1
-pinnumber=7
-T 8500 16050 5 8 0 1 0 2 1
-pinseq=7
-T 8350 16100 9 8 1 1 0 6 1
-pinlabel=(R7) TIMER4
-T 8350 16100 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 15700 8400 15700 1 0 0
-{
-T 8500 15750 5 8 1 1 0 0 1
-pinnumber=8
-T 8500 15650 5 8 0 1 0 2 1
-pinseq=8
-T 8350 15700 9 8 1 1 0 6 1
-pinlabel=(T7) TIMER7
-T 8350 15700 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 15300 8400 15300 1 0 0
-{
-T 8500 15350 5 8 1 1 0 0 1
-pinnumber=9
-T 8500 15250 5 8 0 1 0 2 1
-pinseq=9
-T 8350 15300 9 8 1 1 0 6 1
-pinlabel=(T6) TIMER5
-T 8350 15300 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 14900 8400 14900 1 0 0
-{
-T 8500 14950 5 8 1 1 0 0 1
-pinnumber=10
-T 8500 14850 5 8 0 1 0 2 1
-pinseq=10
-T 8350 14900 9 8 1 1 0 6 1
-pinlabel=(U6) TIMER6
-T 8350 14900 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 14500 8400 14500 1 0 0
-{
-T 8500 14550 5 8 1 1 0 0 1
-pinnumber=11
-T 8500 14450 5 8 0 1 0 2 1
-pinseq=11
-T 8350 14500 9 8 1 1 0 6 1
-pinlabel=(R12) GPIO1_13
-T 8350 14500 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 14100 8400 14100 1 0 0
-{
-T 8500 14150 5 8 1 1 0 0 1
-pinnumber=12
-T 8500 14050 5 8 0 1 0 2 1
-pinseq=12
-T 8350 14100 9 8 1 1 0 6 1
-pinlabel=(T12) GPIO1_12
-T 8350 14100 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 13700 8400 13700 1 0 0
-{
-T 8500 13750 5 8 1 1 0 0 1
-pinnumber=13
-T 8500 13650 5 8 0 1 0 2 1
-pinseq=13
-T 8350 13700 9 8 1 1 0 6 1
-pinlabel=(T10) EHRPWM2B
-T 8350 13700 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 13300 8400 13300 1 0 0
-{
-T 8500 13350 5 8 1 1 0 0 1
-pinnumber=14
-T 8500 13250 5 8 0 1 0 2 1
-pinseq=14
-T 8350 13300 9 8 1 1 0 6 1
-pinlabel=(T11) GPIO0_26
-T 8350 13300 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 12900 8400 12900 1 0 0
-{
-T 8500 12950 5 8 1 1 0 0 1
-pinnumber=15
-T 8500 12850 5 8 0 1 0 2 1
-pinseq=15
-T 8350 12900 9 8 1 1 0 6 1
-pinlabel=(U13) GPIO1_15
-T 8350 12900 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 12500 8400 12500 1 0 0
-{
-T 8500 12550 5 8 1 1 0 0 1
-pinnumber=16
-T 8500 12450 5 8 0 1 0 2 1
-pinseq=16
-T 8350 12500 9 8 1 1 0 6 1
-pinlabel=(V13) GPIO1_14
-T 8350 12500 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 12100 8400 12100 1 0 0
-{
-T 8500 12150 5 8 1 1 0 0 1
-pinnumber=17
-T 8500 12050 5 8 0 1 0 2 1
-pinseq=17
-T 8350 12100 9 8 1 1 0 6 1
-pinlabel=(U12) GPIO0_27
-T 8350 12100 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 11700 8400 11700 1 0 0
-{
-T 8500 11750 5 8 1 1 0 0 1
-pinnumber=18
-T 8500 11650 5 8 0 1 0 2 1
-pinseq=18
-T 8350 11700 9 8 1 1 0 6 1
-pinlabel=(V12) GPIO2_1
-T 8350 11700 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 11300 8400 11300 1 0 0
-{
-T 8500 11350 5 8 1 1 0 0 1
-pinnumber=19
-T 8500 11250 5 8 0 1 0 2 1
-pinseq=19
-T 8350 11300 9 8 1 1 0 6 1
-pinlabel=(U10) EHRPWM2A
-T 8350 11300 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 10900 8400 10900 1 0 0
-{
-T 8500 10950 5 8 1 1 0 0 1
-pinnumber=20
-T 8500 10850 5 8 0 1 0 2 1
-pinseq=20
-T 8350 10900 9 8 1 1 0 6 1
-pinlabel=(V9) GPIO1_31
-T 8350 10900 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 10500 8400 10500 1 0 0
-{
-T 8500 10550 5 8 1 1 0 0 1
-pinnumber=21
-T 8500 10450 5 8 0 1 0 2 1
-pinseq=21
-T 8350 10500 9 8 1 1 0 6 1
-pinlabel=(U9) GPIO1_30
-T 8350 10500 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 10100 8400 10100 1 0 0
-{
-T 8500 10150 5 8 1 1 0 0 1
-pinnumber=22
-T 8500 10050 5 8 0 1 0 2 1
-pinseq=22
-T 8350 10100 9 8 1 1 0 6 1
-pinlabel=(V8) GPIO1_5
-T 8350 10100 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 9700 8400 9700 1 0 0
-{
-T 8500 9750 5 8 1 1 0 0 1
-pinnumber=23
-T 8500 9650 5 8 0 1 0 2 1
-pinseq=23
-T 8350 9700 9 8 1 1 0 6 1
-pinlabel=(U8) GPIO1_4
-T 8350 9700 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 9300 8400 9300 1 0 0
-{
-T 8500 9350 5 8 1 1 0 0 1
-pinnumber=24
-T 8500 9250 5 8 0 1 0 2 1
-pinseq=24
-T 8350 9300 9 8 1 1 0 6 1
-pinlabel=(V7) GPIO1_1
-T 8350 9300 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 8900 8400 8900 1 0 0
-{
-T 8500 8950 5 8 1 1 0 0 1
-pinnumber=25
-T 8500 8850 5 8 0 1 0 2 1
-pinseq=25
-T 8350 8900 9 8 1 1 0 6 1
-pinlabel=(U7) GPIO1_0
-T 8350 8900 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 8500 8400 8500 1 0 0
-{
-T 8500 8550 5 8 1 1 0 0 1
-pinnumber=26
-T 8500 8450 5 8 0 1 0 2 1
-pinseq=26
-T 8350 8500 9 8 1 1 0 6 1
-pinlabel=(V6) GPIO1_29
-T 8350 8500 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 8100 8400 8100 1 0 0
-{
-T 8500 8150 5 8 1 1 0 0 1
-pinnumber=27
-T 8500 8050 5 8 0 1 0 2 1
-pinseq=27
-T 8350 8100 9 8 1 1 0 6 1
-pinlabel=(U5) GPIO2_22
-T 8350 8100 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 7700 8400 7700 1 0 0
-{
-T 8500 7750 5 8 1 1 0 0 1
-pinnumber=28
-T 8500 7650 5 8 0 1 0 2 1
-pinseq=28
-T 8350 7700 9 8 1 1 0 6 1
-pinlabel=(V5) GPIO2_24
-T 8350 7700 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 7300 8400 7300 1 0 0
-{
-T 8500 7350 5 8 1 1 0 0 1
-pinnumber=29
-T 8500 7250 5 8 0 1 0 2 1
-pinseq=29
-T 8350 7300 9 8 1 1 0 6 1
-pinlabel=(R5) GPIO2_23
-T 8350 7300 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 6900 8400 6900 1 0 0
-{
-T 8500 6950 5 8 1 1 0 0 1
-pinnumber=30
-T 8500 6850 5 8 0 1 0 2 1
-pinseq=30
-T 8350 6900 9 8 1 1 0 6 1
-pinlabel=(R6) GPIO2_25
-T 8350 6900 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 6500 8400 6500 1 0 0
-{
-T 8500 6550 5 8 1 1 0 0 1
-pinnumber=31
-T 8500 6450 5 8 0 1 0 2 1
-pinseq=31
-T 8350 6500 9 8 1 1 0 6 1
-pinlabel=(V4) UART5_CTSN
-T 8350 6500 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 6100 8400 6100 1 0 0
-{
-T 8500 6150 5 8 1 1 0 0 1
-pinnumber=32
-T 8500 6050 5 8 0 1 0 2 1
-pinseq=32
-T 8350 6100 9 8 1 1 0 6 1
-pinlabel=(T5) UART5_RTSN
-T 8350 6100 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 5700 8400 5700 1 0 0
-{
-T 8500 5750 5 8 1 1 0 0 1
-pinnumber=33
-T 8500 5650 5 8 0 1 0 2 1
-pinseq=33
-T 8350 5700 9 8 1 1 0 6 1
-pinlabel=(V3) UART4_RTSN
-T 8350 5700 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 5300 8400 5300 1 0 0
-{
-T 8500 5350 5 8 1 1 0 0 1
-pinnumber=34
-T 8500 5250 5 8 0 1 0 2 1
-pinseq=34
-T 8350 5300 9 8 1 1 0 6 1
-pinlabel=(U4) UART3_RTSN
-T 8350 5300 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 4900 8400 4900 1 0 0
-{
-T 8500 4950 5 8 1 1 0 0 1
-pinnumber=35
-T 8500 4850 5 8 0 1 0 2 1
-pinseq=35
-T 8350 4900 9 8 1 1 0 6 1
-pinlabel=(V2) UART4_CTSN
-T 8350 4900 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 4500 8400 4500 1 0 0
-{
-T 8500 4550 5 8 1 1 0 0 1
-pinnumber=36
-T 8500 4450 5 8 0 1 0 2 1
-pinseq=36
-T 8350 4500 9 8 1 1 0 6 1
-pinlabel=(U3) UART3_CTSN
-T 8350 4500 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 4100 8400 4100 1 0 0
-{
-T 8500 4150 5 8 1 1 0 0 1
-pinnumber=37
-T 8500 4050 5 8 0 1 0 2 1
-pinseq=37
-T 8350 4100 9 8 1 1 0 6 1
-pinlabel=(U1) UART5_TXD
-T 8350 4100 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 3700 8400 3700 1 0 0
-{
-T 8500 3750 5 8 1 1 0 0 1
-pinnumber=38
-T 8500 3650 5 8 0 1 0 2 1
-pinseq=38
-T 8350 3700 9 8 1 1 0 6 1
-pinlabel=(U2) UART5_RXD
-T 8350 3700 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 3300 8400 3300 1 0 0
-{
-T 8500 3350 5 8 1 1 0 0 1
-pinnumber=39
-T 8500 3250 5 8 0 1 0 2 1
-pinseq=39
-T 8350 3300 9 8 1 1 0 6 1
-pinlabel=(T3) GPIO2_12
-T 8350 3300 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 2900 8400 2900 1 0 0
-{
-T 8500 2950 5 8 1 1 0 0 1
-pinnumber=40
-T 8500 2850 5 8 0 1 0 2 1
-pinseq=40
-T 8350 2900 9 8 1 1 0 6 1
-pinlabel=(T4) GPIO2_13
-T 8350 2900 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 2500 8400 2500 1 0 0
-{
-T 8500 2550 5 8 1 1 0 0 1
-pinnumber=41
-T 8500 2450 5 8 0 1 0 2 1
-pinseq=41
-T 8350 2500 9 8 1 1 0 6 1
-pinlabel=(T1) GPIO2_10
-T 8350 2500 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 2100 8400 2100 1 0 0
-{
-T 8500 2150 5 8 1 1 0 0 1
-pinnumber=42
-T 8500 2050 5 8 0 1 0 2 1
-pinseq=42
-T 8350 2100 9 8 1 1 0 6 1
-pinlabel=(T2) GPIO2_11
-T 8350 2100 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 1700 8400 1700 1 0 0
-{
-T 8500 1750 5 8 1 1 0 0 1
-pinnumber=43
-T 8500 1650 5 8 0 1 0 2 1
-pinseq=43
-T 8350 1700 9 8 1 1 0 6 1
-pinlabel=(R3) GPIO2_8
-T 8350 1700 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 1300 8400 1300 1 0 0
-{
-T 8500 1350 5 8 1 1 0 0 1
-pinnumber=44
-T 8500 1250 5 8 0 1 0 2 1
-pinseq=44
-T 8350 1300 9 8 1 1 0 6 1
-pinlabel=(R4) GPIO2_9
-T 8350 1300 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 900 8400 900 1 0 0
-{
-T 8500 950 5 8 1 1 0 0 1
-pinnumber=45
-T 8500 850 5 8 0 1 0 2 1
-pinseq=45
-T 8350 900 9 8 1 1 0 6 1
-pinlabel=(R1) GPIO2_6
-T 8350 900 5 8 0 1 0 8 1
-pintype=io
-}
-P 8700 500 8400 500 1 0 0
-{
-T 8500 550 5 8 1 1 0 0 1
-pinnumber=46
-T 8500 450 5 8 0 1 0 2 1
-pinseq=46
-T 8350 500 9 8 1 1 0 6 1
-pinlabel=(R2) GPIO2_7
-T 8350 500 5 8 0 1 0 8 1
-pintype=io
-}
-P 100 18500 400 18500 1 0 0
-{
-T 300 18550 5 8 1 1 0 6 1
-pinnumber=47
-T 300 18450 5 8 0 1 0 8 1
-pinseq=1
-T 450 18500 9 8 1 1 0 0 1
-pinlabel=(1) GND
-T 450 18500 5 8 0 1 0 2 1
-pintype=pwr
-}
-P 100 18100 400 18100 1 0 0
-{
-T 300 18150 5 8 1 1 0 6 1
-pinnumber=48
-T 300 18050 5 8 0 1 0 8 1
-pinseq=2
-T 450 18100 9 8 1 1 0 0 1
-pinlabel=(2) GND
-T 450 18100 5 8 0 1 0 2 1
-pintype=pwr
-}
-P 100 17700 400 17700 1 0 0
-{
-T 300 17750 5 8 1 1 0 6 1
-pinnumber=49
-T 300 17650 5 8 0 1 0 8 1
-pinseq=3
-T 450 17700 9 8 1 1 0 0 1
-pinlabel=(3) DC_3.3V
-T 450 17700 5 8 0 1 0 2 1
-pintype=pwr
-}
-P 100 17300 400 17300 1 0 0
-{
-T 300 17350 5 8 1 1 0 6 1
-pinnumber=50
-T 300 17250 5 8 0 1 0 8 1
-pinseq=4
-T 450 17300 9 8 1 1 0 0 1
-pinlabel=(4) DC_3.3V
-T 450 17300 5 8 0 1 0 2 1
-pintype=pwr
-}
-P 100 16900 400 16900 1 0 0
-{
-T 300 16950 5 8 1 1 0 6 1
-pinnumber=51
-T 300 16850 5 8 0 1 0 8 1
-pinseq=5
-T 450 16900 9 8 1 1 0 0 1
-pinlabel=(5) VDD_5V
-T 450 16900 5 8 0 1 0 2 1
-pintype=pwr
-}
-P 100 16500 400 16500 1 0 0
-{
-T 300 16550 5 8 1 1 0 6 1
-pinnumber=52
-T 300 16450 5 8 0 1 0 8 1
-pinseq=6
-T 450 16500 9 8 1 1 0 0 1
-pinlabel=(6) VDD_5V
-T 450 16500 5 8 0 1 0 2 1
-pintype=pwr
-}
-P 100 16100 400 16100 1 0 0
-{
-T 300 16150 5 8 1 1 0 6 1
-pinnumber=53
-T 300 16050 5 8 0 1 0 8 1
-pinseq=7
-T 450 16100 9 8 1 1 0 0 1
-pinlabel=(7) SYS_5V
-T 450 16100 5 8 0 1 0 2 1
-pintype=pwr
-}
-P 100 15700 400 15700 1 0 0
-{
-T 300 15750 5 8 1 1 0 6 1
-pinnumber=54
-T 300 15650 5 8 0 1 0 8 1
-pinseq=8
-T 450 15700 9 8 1 1 0 0 1
-pinlabel=(8) SYS_5V
-T 450 15700 5 8 0 1 0 2 1
-pintype=pwr
-}
-P 100 15300 400 15300 1 0 0
-{
-T 300 15350 5 8 1 1 0 6 1
-pinnumber=55
-T 300 15250 5 8 0 1 0 8 1
-pinseq=9
-T 450 15300 9 8 1 1 0 0 1
-pinlabel=(9) PWR_BUT
-T 450 15300 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 14900 400 14900 1 0 0
-{
-T 300 14950 5 8 1 1 0 6 1
-pinnumber=56
-T 300 14850 5 8 0 1 0 8 1
-pinseq=10
-T 450 14900 9 8 1 1 0 0 1
-pinlabel=(10) SYS_RESETn (A10)
-T 450 14900 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 14500 400 14500 1 0 0
-{
-T 300 14550 5 8 1 1 0 6 1
-pinnumber=57
-T 300 14450 5 8 0 1 0 8 1
-pinseq=57
-T 450 14500 9 8 1 1 0 0 1
-pinlabel=(11) UART4_RXD (T17)
-T 450 14500 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 14100 400 14100 1 0 0
-{
-T 300 14150 5 8 1 1 0 6 1
-pinnumber=58
-T 300 14050 5 8 0 1 0 8 1
-pinseq=58
-T 450 14100 9 8 1 1 0 0 1
-pinlabel=(12) GPIO1_28 (U18)
-T 450 14100 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 13700 400 13700 1 0 0
-{
-T 300 13750 5 8 1 1 0 6 1
-pinnumber=59
-T 300 13650 5 8 0 1 0 8 1
-pinseq=59
-T 450 13700 9 8 1 1 0 0 1
-pinlabel=(13) UART4_TXD (U17)
-T 450 13700 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 13300 400 13300 1 0 0
-{
-T 300 13350 5 8 1 1 0 6 1
-pinnumber=60
-T 300 13250 5 8 0 1 0 8 1
-pinseq=60
-T 450 13300 9 8 1 1 0 0 1
-pinlabel=(14) EHRPWM1A (U14)
-T 450 13300 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 12900 400 12900 1 0 0
-{
-T 300 12950 5 8 1 1 0 6 1
-pinnumber=61
-T 300 12850 5 8 0 1 0 8 1
-pinseq=61
-T 450 12900 9 8 1 1 0 0 1
-pinlabel=(15) GPIO1_16 (R13)
-T 450 12900 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 12500 400 12500 1 0 0
-{
-T 300 12550 5 8 1 1 0 6 1
-pinnumber=62
-T 300 12450 5 8 0 1 0 8 1
-pinseq=62
-T 450 12500 9 8 1 1 0 0 1
-pinlabel=(16) EHRPWM1B (T14)
-T 450 12500 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 12100 400 12100 1 0 0
-{
-T 300 12150 5 8 1 1 0 6 1
-pinnumber=63
-T 300 12050 5 8 0 1 0 8 1
-pinseq=63
-T 450 12100 9 8 1 1 0 0 1
-pinlabel=(17) I2C1_SCL (A16)
-T 450 12100 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 11700 400 11700 1 0 0
-{
-T 300 11750 5 8 1 1 0 6 1
-pinnumber=64
-T 300 11650 5 8 0 1 0 8 1
-pinseq=64
-T 450 11700 9 8 1 1 0 0 1
-pinlabel=(18) I2C1_SDA (B16)
-T 450 11700 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 11300 400 11300 1 0 0
-{
-T 300 11350 5 8 1 1 0 6 1
-pinnumber=65
-T 300 11250 5 8 0 1 0 8 1
-pinseq=65
-T 450 11300 9 8 1 1 0 0 1
-pinlabel=(19) I2C2_SCL (D17)
-T 450 11300 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 10900 400 10900 1 0 0
-{
-T 300 10950 5 8 1 1 0 6 1
-pinnumber=66
-T 300 10850 5 8 0 1 0 8 1
-pinseq=66
-T 450 10900 9 8 1 1 0 0 1
-pinlabel=(20) I2C2_SDA (D18)
-T 450 10900 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 10500 400 10500 1 0 0
-{
-T 300 10550 5 8 1 1 0 6 1
-pinnumber=67
-T 300 10450 5 8 0 1 0 8 1
-pinseq=67
-T 450 10500 9 8 1 1 0 0 1
-pinlabel=(21) UART2_TXD (B17)
-T 450 10500 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 10100 400 10100 1 0 0
-{
-T 300 10150 5 8 1 1 0 6 1
-pinnumber=68
-T 300 10050 5 8 0 1 0 8 1
-pinseq=68
-T 450 10100 9 8 1 1 0 0 1
-pinlabel=(22) UART2_RXD (A17)
-T 450 10100 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 9700 400 9700 1 0 0
-{
-T 300 9750 5 8 1 1 0 6 1
-pinnumber=69
-T 300 9650 5 8 0 1 0 8 1
-pinseq=69
-T 450 9700 9 8 1 1 0 0 1
-pinlabel=(23) GPIO1_17 (V14)
-T 450 9700 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 9300 400 9300 1 0 0
-{
-T 300 9350 5 8 1 1 0 6 1
-pinnumber=70
-T 300 9250 5 8 0 1 0 8 1
-pinseq=70
-T 450 9300 9 8 1 1 0 0 1
-pinlabel=(24) UART1_TXD (D15)
-T 450 9300 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 8900 400 8900 1 0 0
-{
-T 300 8950 5 8 1 1 0 6 1
-pinnumber=71
-T 300 8850 5 8 0 1 0 8 1
-pinseq=71
-T 450 8900 9 8 1 1 0 0 1
-pinlabel=(25) GPIO3_21 (A14)
-T 450 8900 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 8500 400 8500 1 0 0
-{
-T 300 8550 5 8 1 1 0 6 1
-pinnumber=72
-T 300 8450 5 8 0 1 0 8 1
-pinseq=72
-T 450 8500 9 8 1 1 0 0 1
-pinlabel=(26) UART1_RXD (D16)
-T 450 8500 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 8100 400 8100 1 0 0
-{
-T 300 8150 5 8 1 1 0 6 1
-pinnumber=73
-T 300 8050 5 8 0 1 0 8 1
-pinseq=73
-T 450 8100 9 8 1 1 0 0 1
-pinlabel=(27) GPIO3_19 (C13)
-T 450 8100 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 7700 400 7700 1 0 0
-{
-T 300 7750 5 8 1 1 0 6 1
-pinnumber=74
-T 300 7650 5 8 0 1 0 8 1
-pinseq=74
-T 450 7700 9 8 1 1 0 0 1
-pinlabel=(28) SPI1_CS0 (C12)
-T 450 7700 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 7300 400 7300 1 0 0
-{
-T 300 7350 5 8 1 1 0 6 1
-pinnumber=75
-T 300 7250 5 8 0 1 0 8 1
-pinseq=75
-T 450 7300 9 8 1 1 0 0 1
-pinlabel=(29) SPI1_D0 (B13)
-T 450 7300 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 6900 400 6900 1 0 0
-{
-T 300 6950 5 8 1 1 0 6 1
-pinnumber=76
-T 300 6850 5 8 0 1 0 8 1
-pinseq=76
-T 450 6900 9 8 1 1 0 0 1
-pinlabel=(30) SPI1_D1 (D12)
-T 450 6900 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 6500 400 6500 1 0 0
-{
-T 300 6550 5 8 1 1 0 6 1
-pinnumber=77
-T 300 6450 5 8 0 1 0 8 1
-pinseq=77
-T 450 6500 9 8 1 1 0 0 1
-pinlabel=(31) SPI1_SCLK (A13)
-T 450 6500 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 6100 400 6100 1 0 0
-{
-T 300 6150 5 8 1 1 0 6 1
-pinnumber=78
-T 300 6050 5 8 0 1 0 8 1
-pinseq=78
-T 450 6100 9 8 1 1 0 0 1
-pinlabel=(32) VADC
-T 450 6100 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 5700 400 5700 1 0 0
-{
-T 300 5750 5 8 1 1 0 6 1
-pinnumber=79
-T 300 5650 5 8 0 1 0 8 1
-pinseq=79
-T 450 5700 9 8 1 1 0 0 1
-pinlabel=(33) AIN4 (C8)
-T 450 5700 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 5300 400 5300 1 0 0
-{
-T 300 5350 5 8 1 1 0 6 1
-pinnumber=80
-T 300 5250 5 8 0 1 0 8 1
-pinseq=80
-T 450 5300 9 8 1 1 0 0 1
-pinlabel=(34) AGND
-T 450 5300 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 4900 400 4900 1 0 0
-{
-T 300 4950 5 8 1 1 0 6 1
-pinnumber=81
-T 300 4850 5 8 0 1 0 8 1
-pinseq=81
-T 450 4900 9 8 1 1 0 0 1
-pinlabel=(35) AIN6 (A8)
-T 450 4900 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 4500 400 4500 1 0 0
-{
-T 300 4550 5 8 1 1 0 6 1
-pinnumber=82
-T 300 4450 5 8 0 1 0 8 1
-pinseq=82
-T 450 4500 9 8 1 1 0 0 1
-pinlabel=(36) AIN5 (B8)
-T 450 4500 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 4100 400 4100 1 0 0
-{
-T 300 4150 5 8 1 1 0 6 1
-pinnumber=83
-T 300 4050 5 8 0 1 0 8 1
-pinseq=83
-T 450 4100 9 8 1 1 0 0 1
-pinlabel=(37) AIN2 (B7)
-T 450 4100 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 3700 400 3700 1 0 0
-{
-T 300 3750 5 8 1 1 0 6 1
-pinnumber=84
-T 300 3650 5 8 0 1 0 8 1
-pinseq=84
-T 450 3700 9 8 1 1 0 0 1
-pinlabel=(38) AIN3 (A7)
-T 450 3700 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 3300 400 3300 1 0 0
-{
-T 300 3350 5 8 1 1 0 6 1
-pinnumber=85
-T 300 3250 5 8 0 1 0 8 1
-pinseq=85
-T 450 3300 9 8 1 1 0 0 1
-pinlabel=(39) AIN0 (B6)
-T 450 3300 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 2900 400 2900 1 0 0
-{
-T 300 2950 5 8 1 1 0 6 1
-pinnumber=86
-T 300 2850 5 8 0 1 0 8 1
-pinseq=86
-T 450 2900 9 8 1 1 0 0 1
-pinlabel=(40) AIN1 (C7)
-T 450 2900 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 2500 400 2500 1 0 0
-{
-T 300 2550 5 8 1 1 0 6 1
-pinnumber=87
-T 300 2450 5 8 0 1 0 8 1
-pinseq=87
-T 450 2500 9 8 1 1 0 0 1
-pinlabel=(41) CLKOUT2 (D14)
-T 450 2500 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 2100 400 2100 1 0 0
-{
-T 300 2150 5 8 1 1 0 6 1
-pinnumber=88
-T 300 2050 5 8 0 1 0 8 1
-pinseq=88
-T 450 2100 9 8 1 1 0 0 1
-pinlabel=(42) GPIO0_7 (C18)
-T 450 2100 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 1700 400 1700 1 0 0
-{
-T 300 1750 5 8 1 1 0 6 1
-pinnumber=89
-T 300 1650 5 8 0 1 0 8 1
-pinseq=89
-T 450 1700 9 8 1 1 0 0 1
-pinlabel=(43) GND
-T 450 1700 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 1300 400 1300 1 0 0
-{
-T 300 1350 5 8 1 1 0 6 1
-pinnumber=90
-T 300 1250 5 8 0 1 0 8 1
-pinseq=90
-T 450 1300 9 8 1 1 0 0 1
-pinlabel=(44) GND
-T 450 1300 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 900 400 900 1 0 0
-{
-T 300 950 5 8 1 1 0 6 1
-pinnumber=91
-T 300 850 5 8 0 1 0 8 1
-pinseq=91
-T 450 900 9 8 1 1 0 0 1
-pinlabel=(45) GND
-T 450 900 5 8 0 1 0 2 1
-pintype=io
-}
-P 100 500 400 500 1 0 0
-{
-T 300 550 5 8 1 1 0 6 1
-pinnumber=92
-T 300 450 5 8 0 1 0 8 1
-pinseq=92
-T 450 500 9 8 1 1 0 0 1
-pinlabel=(46) GND
-T 450 500 5 8 0 1 0 2 1
-pintype=io
-}
-B 400 100 8000 18800 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 8400 19000 8 10 1 1 0 6 1
-refdes=U?
-T 3400 18550 9 10 1 0 0 0 1
-BEAGLEBONE BLACK CAPE
-T 4200 9850 5 10 0 0 0 0 1
-device=BEAGLEBOND BLACK CAPE
-T 4200 10050 5 10 0 0 0 0 1
-footprint=beaglebone
-T 4200 10650 5 10 0 0 0 0 1
-description=TI Sitara AM335x powered development board
-T 4200 10850 5 10 0 0 0 0 1
-numslots=0
-T 1300 18500 3 10 1 0 0 0 1
-P9
-T 7500 18500 3 10 1 0 0 0 1
-P8
diff --git a/bbb_cape/schematic/symbols/crystal.sym b/bbb_cape/schematic/symbols/crystal.sym
deleted file mode 100644
index 17dcee8..0000000
--- a/bbb_cape/schematic/symbols/crystal.sym
+++ /dev/null
@@ -1,62 +0,0 @@
-v 20110115 2
-P 500 400 800 400 1 0 0
-{
-T 650 450 5 8 1 1 0 6 1
-pinnumber=1
-T 750 350 5 8 0 1 0 8 1
-pinseq=1
-T 850 400 9 8 0 1 0 0 1
-pinlabel=1
-T 850 400 5 8 0 1 0 2 1
-pintype=pas
-}
-P 1100 400 1400 400 1 0 1
-{
-T 1250 450 5 8 1 1 0 0 1
-pinnumber=3
-T 1250 350 5 8 0 1 0 2 1
-pinseq=3
-T 1150 400 9 8 0 1 0 6 1
-pinlabel=3
-T 1150 400 5 8 0 1 0 8 1
-pintype=pas
-}
-B 850 300 200 200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 200 500 5 10 0 0 0 0 1
-device=CRYSTAL
-L 800 540 800 260 3 0 0 0 -1 -1
-L 1100 540 1100 260 3 0 0 0 -1 -1
-T 800 700 8 10 1 1 0 0 1
-refdes=U?
-T 200 1100 5 10 0 0 0 0 1
-description=crystal
-T 200 900 5 10 0 0 0 0 1
-numslots=0
-T 200 700 5 10 0 0 0 0 1
-symversion=0.1
-P 700 200 500 200 1 0 1
-{
-T 656 248 5 8 1 1 0 6 1
-pinnumber=2
-T 650 150 5 8 0 1 0 8 1
-pinseq=2
-T 755 195 9 8 0 1 0 0 1
-pinlabel=2
-T 750 200 5 8 0 1 0 2 1
-pintype=gnd
-}
-L 1200 600 700 600 3 0 0 0 -1 -1
-P 1200 200 1400 200 1 0 1
-{
-T 1250 250 5 8 1 1 0 0 1
-pinnumber=4
-T 1250 150 5 8 0 1 0 2 1
-pinseq=4
-T 1150 200 9 8 0 1 0 6 1
-pinlabel=4
-T 1150 200 5 8 0 1 0 8 1
-pintype=pwr
-}
-L 700 600 700 200 3 0 0 0 -1 -1
-L 700 200 1200 200 3 0 0 0 -1 -1
-L 1200 200 1200 600 3 0 0 0 -1 -1
diff --git a/bbb_cape/schematic/symbols/digital-input-1.sym b/bbb_cape/schematic/symbols/digital-input-1.sym
deleted file mode 100644
index ac015c8..0000000
--- a/bbb_cape/schematic/symbols/digital-input-1.sym
+++ /dev/null
@@ -1,47 +0,0 @@
-v 20110115 2
-B 300 0 1700 700 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 0 500 300 500 1 0 0
-{
-T 0 500 5 10 0 0 0 0 1
-pintype=pwr
-T 355 495 5 10 1 1 0 0 1
-pinlabel=SGND
-T 205 545 5 10 0 1 0 6 1
-pinnumber=SGND
-T 0 500 5 10 0 0 0 0 1
-pinseq=1
-}
-P 0 200 300 200 1 0 0
-{
-T 0 200 5 10 0 0 0 0 1
-pintype=pwr
-T 355 195 5 10 1 1 0 0 1
-pinlabel=SVCC
-T 205 245 5 10 0 1 0 6 1
-pinnumber=SVCC
-T 0 200 5 10 0 0 0 0 1
-pinseq=2
-}
-P 2300 300 2000 300 1 0 0
-{
-T 2300 300 5 10 0 0 0 0 1
-pintype=out
-T 1945 295 5 10 1 1 0 6 1
-pinlabel=OUT
-T 2095 345 5 10 0 1 0 0 1
-pinnumber=OUT
-T 2300 300 5 10 0 0 0 0 1
-pinseq=3
-}
-T 2500 900 8 10 0 1 0 0 1
-device=encoder-input
-T 1400 1000 8 10 0 1 0 0 1
-description=1 encoder input
-T 2900 700 8 10 0 1 0 0 1
-source=encoder input.sch
-T 1700 800 8 10 1 1 0 0 1
-refdes=X?
-T 2900 400 8 10 0 1 0 0 1
-numslots=1
-T 400 800 9 10 1 0 0 0 1
-digital input
diff --git a/bbb_cape/schematic/symbols/digital-input-x4-1.sym b/bbb_cape/schematic/symbols/digital-input-x4-1.sym
deleted file mode 100644
index 650855d..0000000
--- a/bbb_cape/schematic/symbols/digital-input-x4-1.sym
+++ /dev/null
@@ -1,113 +0,0 @@
-v 20110115 2
-B 300 300 2000 1500 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 2600 1400 2300 1400 1 0 0
-{
-T 2600 1400 5 10 0 0 0 0 1
-pintype=out
-T 2245 1395 5 10 1 1 0 6 1
-pinlabel=OUT0
-T 2395 1445 5 10 0 1 0 0 1
-pinnumber=OUT0
-T 2600 1400 5 10 0 0 0 0 1
-pinseq=1
-}
-P 2600 1100 2300 1100 1 0 0
-{
-T 2600 1100 5 10 0 0 0 0 1
-pintype=out
-T 2245 1095 5 10 1 1 0 6 1
-pinlabel=OUT1
-T 2395 1145 5 10 0 1 0 0 1
-pinnumber=OUT1
-T 2600 1100 5 10 0 0 0 0 1
-pinseq=2
-}
-P 2600 800 2300 800 1 0 0
-{
-T 2600 800 5 10 0 0 0 0 1
-pintype=out
-T 2245 795 5 10 1 1 0 6 1
-pinlabel=OUT2
-T 2395 845 5 10 0 1 0 0 1
-pinnumber=OUT2
-T 2600 800 5 10 0 0 0 0 1
-pinseq=3
-}
-P 2600 500 2300 500 1 0 0
-{
-T 2600 500 5 10 0 0 0 0 1
-pintype=out
-T 2245 495 5 10 1 1 0 6 1
-pinlabel=OUT3
-T 2395 545 5 10 0 1 0 0 1
-pinnumber=OUT3
-T 2600 500 5 10 0 0 0 0 1
-pinseq=4
-}
-P 0 1400 300 1400 1 0 0
-{
-T 0 1400 5 10 0 0 0 0 1
-pintype=pwr
-T 355 1395 5 10 1 1 0 0 1
-pinlabel=SGND
-T 205 1445 5 10 0 1 0 6 1
-pinnumber=SGND
-T 0 1400 5 10 0 0 0 0 1
-pinseq=5
-}
-P 0 1100 300 1100 1 0 0
-{
-T 0 1100 5 10 0 0 0 0 1
-pintype=pwr
-T 355 1095 5 10 1 1 0 0 1
-pinlabel=SVCC
-T 205 1145 5 10 0 1 0 6 1
-pinnumber=SVCC
-T 0 1100 5 10 0 0 0 0 1
-pinseq=6
-}
-P 0 800 300 800 1 0 0
-{
-T 0 800 5 10 0 0 0 0 1
-pintype=pwr
-T 355 795 5 10 1 1 0 0 1
-pinlabel=DGND
-T 205 845 5 10 0 1 0 6 1
-pinnumber=DGND
-T 0 800 5 10 0 0 0 0 1
-pinseq=7
-}
-P 0 500 300 500 1 0 0
-{
-T 0 500 5 10 0 0 0 0 1
-pintype=pwr
-T 355 495 5 10 1 1 0 0 1
-pinlabel=DVCC
-T 205 545 5 10 0 1 0 6 1
-pinnumber=DVCC
-T 0 500 5 10 0 0 0 0 1
-pinseq=0
-}
-T 1300 1500 8 10 0 1 0 0 1
-device=digital-input-x4
-T 1900 1600 8 10 0 1 0 0 1
-description=set of 4 digital inputs
-T 400 1600 8 10 1 1 0 0 1
-source=unknown
-T 2000 1900 8 10 1 1 0 0 1
-refdes=X?
-T 1200 1800 8 10 0 1 0 0 1
-numslots=1
-T 400 1900 9 10 1 0 0 0 1
-digital inputs x4
-P 1300 0 1300 300 1 0 0
-{
-T 1300 0 5 10 0 0 0 0 1
-pintype=in
-T 1300 355 5 10 1 1 90 0 1
-pinlabel=DIFFA
-T 1250 205 5 10 0 1 90 6 1
-pinnumber=DIFFA
-T 1300 0 5 10 0 0 0 0 1
-pinseq=9
-}
diff --git a/bbb_cape/schematic/symbols/diode-sot23.sym b/bbb_cape/schematic/symbols/diode-sot23.sym
deleted file mode 100644
index c229137..0000000
--- a/bbb_cape/schematic/symbols/diode-sot23.sym
+++ /dev/null
@@ -1,35 +0,0 @@
-v 20110115 2
-L 300 400 300 0 3 0 0 0 -1 -1
-L 300 400 600 200 3 0 0 0 -1 -1
-T 400 600 5 10 0 0 0 0 1
-device=DIODE
-L 600 200 300 0 3 0 0 0 -1 -1
-L 600 400 600 0 3 0 0 0 -1 -1
-P 0 200 200 200 1 0 0
-{
-T 100 250 5 8 0 1 0 0 1
-pinnumber=1
-T 100 250 5 8 0 0 0 0 1
-pinseq=1
-T 100 250 5 8 0 1 0 0 1
-pinlabel=1
-T 100 250 5 8 0 1 0 0 1
-pintype=pas
-}
-P 900 200 700 200 1 0 0
-{
-T 700 250 5 8 0 1 0 0 1
-pinnumber=3
-T 700 250 5 8 0 0 0 0 1
-pinseq=3
-T 700 250 5 8 0 1 0 0 1
-pinlabel=3
-T 700 250 5 8 0 1 0 0 1
-pintype=pas
-}
-L 700 200 600 200 3 0 0 0 -1 -1
-L 300 200 200 200 3 0 0 0 -1 -1
-T 300 500 8 10 1 1 0 0 1
-refdes=D?
-T 195 700 8 10 0 1 0 0 1
-footprint=SOT23
diff --git a/bbb_cape/schematic/symbols/encoder-input-1.sym b/bbb_cape/schematic/symbols/encoder-input-1.sym
deleted file mode 100644
index 0db4194..0000000
--- a/bbb_cape/schematic/symbols/encoder-input-1.sym
+++ /dev/null
@@ -1,58 +0,0 @@
-v 20110115 2
-B 300 0 1700 700 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 0 500 300 500 1 0 0
-{
-T 0 500 5 10 0 0 0 0 1
-pintype=pwr
-T 355 495 5 10 1 1 0 0 1
-pinlabel=SGND
-T 205 545 5 10 0 1 0 6 1
-pinnumber=SGND
-T 0 500 5 10 0 0 0 0 1
-pinseq=1
-}
-P 0 200 300 200 1 0 0
-{
-T 0 200 5 10 0 0 0 0 1
-pintype=pwr
-T 355 195 5 10 1 1 0 0 1
-pinlabel=SVCC
-T 205 245 5 10 0 1 0 6 1
-pinnumber=SVCC
-T 0 200 5 10 0 0 0 0 1
-pinseq=2
-}
-P 2300 500 2000 500 1 0 0
-{
-T 2300 500 5 10 0 0 0 0 1
-pintype=out
-T 1945 495 5 10 1 1 0 6 1
-pinlabel=CH1
-T 2095 545 5 10 0 1 0 0 1
-pinnumber=CH1
-T 2300 500 5 10 0 0 0 0 1
-pinseq=3
-}
-T 2500 900 8 10 0 1 0 0 1
-device=encoder-input
-T 1400 1000 8 10 0 1 0 0 1
-description=1 encoder input
-T 2900 700 8 10 0 1 0 0 1
-source=encoder input.sch
-T 1700 800 8 10 1 1 0 0 1
-refdes=X?
-T 2900 400 8 10 0 1 0 0 1
-numslots=1
-T 400 800 9 10 1 0 0 0 1
-encoder input
-P 2300 200 2000 200 1 0 0
-{
-T 2300 200 5 10 0 0 0 0 1
-pintype=out
-T 1945 195 5 10 1 1 0 6 1
-pinlabel=CH2
-T 2095 245 5 10 0 1 0 0 1
-pinnumber=CH2
-T 2300 200 5 10 0 0 0 0 1
-pinseq=4
-}
diff --git a/bbb_cape/schematic/symbols/lmz12002-1.sym b/bbb_cape/schematic/symbols/lmz12002-1.sym
deleted file mode 100644
index 07d13f5..0000000
--- a/bbb_cape/schematic/symbols/lmz12002-1.sym
+++ /dev/null
@@ -1,98 +0,0 @@
-v 20110115 2
-B 0 200 3100 1000 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 400 0 400 200 1 0 0
-{
-T 400 0 5 10 0 0 0 0 1
-pintype=pwr
-T 400 255 5 10 1 1 90 0 1
-pinlabel=VIN
-T 350 105 5 10 1 1 90 6 1
-pinnumber=1
-T 400 0 5 10 0 0 0 0 1
-pinseq=1
-}
-P 700 0 700 200 1 0 0
-{
-T 700 0 5 10 0 0 0 0 1
-pintype=in
-T 700 255 5 10 1 1 90 0 1
-pinlabel=RON
-T 650 105 5 10 1 1 90 6 1
-pinnumber=2
-T 700 0 5 10 0 0 0 0 1
-pinseq=2
-}
-P 1000 0 1000 200 1 0 0
-{
-T 1000 0 5 10 0 0 0 0 1
-pintype=in
-T 1000 255 5 10 1 1 90 0 1
-pinlabel=EN
-T 950 105 5 10 1 1 90 6 1
-pinnumber=3
-T 1000 0 5 10 0 0 0 0 1
-pinseq=3
-}
-P 1500 0 1500 200 1 0 0
-{
-T 1500 0 5 10 0 0 0 0 1
-pintype=pwr
-T 1500 255 5 10 1 1 90 0 1
-pinlabel=GND
-T 1450 105 5 10 1 1 90 6 1
-pinnumber=4
-T 1500 0 5 10 0 0 0 0 1
-pinseq=4
-}
-P 1800 0 1800 200 1 0 0
-{
-T 1800 0 5 10 0 0 0 0 1
-pintype=pwr
-T 1800 255 5 10 1 1 90 0 1
-pinlabel=PAD
-T 1750 105 5 10 1 1 90 6 1
-pinnumber=8
-T 1800 0 5 10 0 0 0 0 1
-pinseq=8
-}
-P 2300 0 2300 200 1 0 0
-{
-T 2300 0 5 10 0 0 0 0 1
-pintype=in
-T 2300 255 5 10 1 1 90 0 1
-pinlabel=SS
-T 2250 105 5 10 1 1 90 6 1
-pinnumber=5
-T 2300 0 5 10 0 0 0 0 1
-pinseq=5
-}
-P 2600 0 2600 200 1 0 0
-{
-T 2600 0 5 10 0 0 0 0 1
-pintype=in
-T 2600 255 5 10 1 1 90 0 1
-pinlabel=FB
-T 2550 105 5 10 1 1 90 6 1
-pinnumber=6
-T 2600 0 5 10 0 0 0 0 1
-pinseq=6
-}
-P 2900 0 2900 200 1 0 0
-{
-T 2900 0 5 10 0 0 0 0 1
-pintype=out
-T 2900 255 5 10 1 1 90 0 1
-pinlabel=VOUT
-T 2850 105 5 10 1 1 90 6 1
-pinnumber=7
-T 2900 0 5 10 0 0 0 0 1
-pinseq=7
-}
-T 500 900 8 10 1 1 0 0 1
-device=LMZ12002
-T 1900 900 8 10 1 1 0 0 1
-refdes=U?
-T 1100 1295 8 10 0 1 0 0 1
-footprint=TOPMOD
-T 900 1262 8 10 0 1 0 0 1
-numslots=0
diff --git a/bbb_cape/schematic/symbols/max3221-1.sym b/bbb_cape/schematic/symbols/max3221-1.sym
deleted file mode 100644
index b67bd87..0000000
--- a/bbb_cape/schematic/symbols/max3221-1.sym
+++ /dev/null
@@ -1,193 +0,0 @@
-v 20110115 2
-T 350 8200 5 10 0 0 0 0 1
-device=MAX3221
-T 350 7900 5 10 0 0 0 0 1
-description=Maxim RS-232 transceiver with autoshutdown and ESD protection
-T 350 5500 5 10 0 0 0 0 1
-footprint=TSSOP16
-T 350 5200 5 10 0 0 0 0 1
-numslots=0
-T 2350 4200 8 10 1 1 0 6 1
-refdes=U?
-T 350 4150 9 10 1 0 0 0 1
-MAX3221
-B 300 0 2000 4100 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 300 3700 0 3700 1 0 1
-{
-T 200 3750 5 8 1 1 0 6 1
-pinnumber=13
-T 200 3650 5 8 0 1 0 8 1
-pinseq=1
-T 350 3750 9 8 1 1 0 0 1
-pinlabel=DOUT
-T 350 3650 5 8 0 1 0 2 1
-pintype=out
-}
-P 2300 3700 2600 3700 1 0 1
-{
-T 2800 3750 5 8 1 1 0 6 1
-pinnumber=15
-T 2800 3650 5 8 0 1 0 8 1
-pinseq=2
-T 2950 3750 9 8 1 1 0 0 1
-pinlabel=VCC
-T 2950 3650 5 8 0 1 0 2 1
-pintype=pwr
-}
-P 300 2100 0 2100 1 0 1
-{
-T 200 2150 5 8 1 1 0 6 1
-pinnumber=3
-T 200 2050 5 8 0 1 0 8 1
-pinseq=5
-T 350 2100 9 8 1 1 0 0 1
-pinlabel=V+
-T 350 2050 5 8 0 1 0 2 1
-pintype=pas
-}
-P 2300 2300 2600 2300 1 0 1
-{
-T 2550 2350 5 8 1 1 0 6 1
-pinnumber=9
-T 2550 2250 5 8 0 1 0 8 1
-pinseq=15
-T 2250 2350 9 8 1 1 0 6 1
-pinlabel=ROUT
-T 2250 2250 5 8 0 1 0 8 1
-pintype=out
-}
-P 200 2700 0 2700 1 0 1
-{
-T 200 2750 5 8 1 1 0 6 1
-pinnumber=10
-T 200 2650 5 8 0 1 0 8 1
-pinseq=4
-T 350 2750 9 8 1 1 0 0 1
-pinlabel=\_INVALID\_
-T 350 2650 5 8 0 1 0 2 1
-pintype=out
-}
-P 2300 1300 2600 1300 1 0 1
-{
-T 2550 1350 5 8 1 1 0 6 1
-pinnumber=4
-T 2550 1250 5 8 0 1 0 8 1
-pinseq=13
-T 2250 1300 9 8 1 1 0 6 1
-pinlabel=C1-
-T 2250 1250 5 8 0 1 0 8 1
-pintype=pas
-}
-P 2300 2700 2600 2700 1 0 1
-{
-T 2550 2750 5 8 1 1 0 6 1
-pinnumber=8
-T 2550 2650 5 8 0 1 0 8 1
-pinseq=16
-T 2250 2750 9 8 1 1 0 6 1
-pinlabel=RIN
-T 2250 2650 5 8 0 1 0 8 1
-pintype=in
-}
-P 2300 3300 2600 3300 1 0 1
-{
-T 2800 3350 5 8 1 1 0 6 1
-pinnumber=14
-T 2800 3250 5 8 0 1 0 8 1
-pinseq=3
-T 2950 3350 9 8 1 1 0 0 1
-pinlabel=GND
-T 2950 3250 5 8 0 1 0 2 1
-pintype=pwr
-}
-P 300 1700 0 1700 1 0 1
-{
-T 200 1750 5 8 1 1 0 6 1
-pinnumber=7
-T 200 1650 5 8 0 1 0 8 1
-pinseq=6
-T 350 1700 9 8 1 1 0 0 1
-pinlabel=V-
-T 350 1650 5 8 0 1 0 2 1
-pintype=pas
-}
-V 250 1100 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 200 1100 0 1100 1 0 1
-{
-T 200 1150 5 8 1 1 0 6 1
-pinnumber=1
-T 200 1050 5 8 0 1 0 8 1
-pinseq=7
-T 350 1100 9 8 1 1 0 0 1
-pinlabel=\_EN\_
-T 350 1050 5 8 0 1 0 2 1
-pintype=in
-}
-P 2300 1700 2600 1700 1 0 1
-{
-T 2550 1750 5 8 1 1 0 6 1
-pinnumber=2
-T 2550 1650 5 8 0 1 0 8 1
-pinseq=14
-T 2250 1700 9 8 1 1 0 6 1
-pinlabel=C1+
-T 2250 1650 5 8 0 1 0 8 1
-pintype=pas
-}
-P 2300 500 2600 500 1 0 1
-{
-T 2550 550 5 8 1 1 0 6 1
-pinnumber=6
-T 2550 450 5 8 0 1 0 8 1
-pinseq=11
-T 2250 500 9 8 1 1 0 6 1
-pinlabel=C2-
-T 2250 450 5 8 0 1 0 8 1
-pintype=pas
-}
-P 2300 900 2600 900 1 0 1
-{
-T 2550 950 5 8 1 1 0 6 1
-pinnumber=5
-T 2550 850 5 8 0 1 0 8 1
-pinseq=12
-T 2250 900 9 8 1 1 0 6 1
-pinlabel=C2+
-T 2250 850 5 8 0 1 0 8 1
-pintype=pas
-}
-P 300 700 0 700 1 0 1
-{
-T 200 750 5 8 1 1 0 6 1
-pinnumber=12
-T 200 650 5 8 0 1 0 8 1
-pinseq=8
-T 350 700 9 8 1 1 0 0 1
-pinlabel=FORCEON
-T 350 650 5 8 0 1 0 2 1
-pintype=in
-}
-V 250 300 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 200 300 0 300 1 0 1
-{
-T 200 350 5 8 1 1 0 6 1
-pinnumber=16
-T 200 250 5 8 0 1 0 8 1
-pinseq=9
-T 350 300 9 8 1 1 0 0 1
-pinlabel=\_FORCEOFF\_
-T 350 250 5 8 0 1 0 2 1
-pintype=in
-}
-V 250 2700 50 6 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-P 300 3300 0 3300 1 0 1
-{
-T 550 3350 5 8 1 1 0 6 1
-pinnumber=11
-T 550 3250 5 8 0 1 0 8 1
-pinseq=10
-T 250 3300 9 8 1 1 0 6 1
-pinlabel=DIN
-T 250 3250 5 8 0 1 0 8 1
-pintype=in
-}
diff --git a/bbb_cape/schematic/symbols/quad_opamp-2.sym b/bbb_cape/schematic/symbols/quad_opamp-2.sym
deleted file mode 100644
index 569bd13..0000000
--- a/bbb_cape/schematic/symbols/quad_opamp-2.sym
+++ /dev/null
@@ -1,86 +0,0 @@
-v 20050820 1
-L 200 800 200 0 3 0 0 0 -1 -1
-L 200 800 800 400 3 0 0 0 -1 -1
-T 600 600 5 10 0 0 0 0 1
-device=QUAD_OPAMP
-L 800 400 200 0 3 0 0 0 -1 -1
-L 300 250 300 150 3 0 0 0 -1 -1
-L 250 200 350 200 3 0 0 0 -1 -1
-L 250 600 350 600 3 0 0 0 -1 -1
-P 0 200 200 200 1 0 0
-{
-T 0 200 5 10 1 1 0 0 1
-pinnumber=3
-T 0 200 5 10 0 0 0 0 1
-pinseq=1
-T 0 200 5 10 0 0 0 0 1
-pintype=in
-T 0 200 5 10 0 0 0 0 1
-pinlabel=IN+
-}
-P 0 600 200 600 1 0 0
-{
-T 0 600 5 10 1 1 0 0 1
-pinnumber=2
-T 0 600 5 10 0 0 0 0 1
-pinseq=2
-T 0 600 5 10 0 0 0 0 1
-pintype=in
-T 0 600 5 10 0 0 0 0 1
-pinlabel=IN-
-}
-P 800 400 1000 400 1 0 1
-{
-T 800 400 5 10 1 1 0 0 1
-pinnumber=1
-T 800 400 5 10 0 0 0 0 1
-pinseq=5
-T 800 400 5 10 0 0 0 0 1
-pintype=out
-T 800 400 5 10 0 0 0 0 1
-pinlabel=OUT
-}
-P 500 600 500 800 1 0 1
-{
-T 600 600 5 10 1 1 0 0 1
-pinnumber=11
-T 600 600 5 10 0 0 0 0 1
-pinseq=3
-T 500 600 5 10 0 0 0 0 1
-pinlabel=V+
-T 500 600 5 10 0 0 0 0 1
-pintype=pwr
-}
-P 500 200 500 0 1 0 1
-{
-T 600 100 5 10 1 1 0 0 1
-pinnumber=4
-T 600 100 5 10 0 0 0 0 1
-pinseq=4
-T 500 200 5 10 0 0 0 0 1
-pinlabel=V-
-T 500 200 5 10 0 0 0 0 1
-pintype=pwr
-}
-T 200 900 8 10 1 1 0 0 1
-refdes=U?
-T 200 2300 5 10 0 0 0 0 1
-slot=1
-T 200 1300 5 10 0 0 0 0 1
-numslots=4
-T 200 1500 5 10 0 0 0 0 1
-slotdef=1:3,2,4,11,1
-T 200 1700 5 10 0 0 0 0 1
-slotdef=2:5,6,4,11,7
-T 200 1900 5 10 0 0 0 0 1
-slotdef=3:10,9,4,11,8
-T 200 2100 5 10 0 0 0 0 1
-slotdef=4:12,13,4,11,14
-T 2400 2300 5 10 0 0 0 0 1
-footprint=SO14
-T 2400 2100 5 10 0 0 0 0 1
-footprint2=DIP14
-T 200 2500 5 10 0 0 0 0 1
-symversion=0.1
-T 200 2700 5 10 0 0 0 0 1
-documentation=http://www.onsemi.com/pub/Collateral/LM324-D.PDF
diff --git a/bbb_cape/schematic/symbols/regulator-1.sym b/bbb_cape/schematic/symbols/regulator-1.sym
deleted file mode 100644
index b08f11c..0000000
--- a/bbb_cape/schematic/symbols/regulator-1.sym
+++ /dev/null
@@ -1,45 +0,0 @@
-v 20110115 2
-B 0 500 2000 1200 3 0 0 0 -1 -1 0 -1 -1 -1 -1 -1
-T 200 1500 9 10 1 0 0 0 1
-Power Regulator
-P 500 200 500 500 1 0 0
-{
-T 500 200 5 10 0 0 0 0 1
-pintype=pwr
-T 500 555 5 10 1 1 90 0 1
-pinlabel=GND
-T 450 405 5 10 0 1 90 6 1
-pinnumber=GND
-T 500 200 5 10 0 0 0 0 1
-pinseq=1
-}
-P 1000 200 1000 500 1 0 0
-{
-T 1000 200 5 10 0 0 0 0 1
-pintype=pwr
-T 1000 555 5 10 1 1 90 0 1
-pinlabel=VIN
-T 950 405 5 10 0 1 90 6 1
-pinnumber=VIN
-T 1000 200 5 10 0 0 0 0 1
-pinseq=2
-}
-T -1100 700 8 10 0 1 0 0 1
-device=regulator
-T -700 1300 8 10 0 1 0 0 1
-description=voltage regulator
-T 800 1300 8 10 1 1 0 0 1
-refdes=X?
-P 1500 200 1500 500 1 0 0
-{
-T 1500 200 5 10 0 0 0 0 1
-pintype=pwr
-T 1500 555 5 10 1 1 90 0 1
-pinlabel=VOUT
-T 1450 405 5 10 0 1 90 6 1
-pinnumber=VOUT
-T 1500 200 5 10 0 0 0 0 1
-pinseq=0
-}
-T 0 1100 8 10 1 1 0 0 1
-source=unknown
diff --git a/bbb_cape/src/bbb/bbb.gyp b/bbb_cape/src/bbb/bbb.gyp
deleted file mode 100644
index ea9bbb8..0000000
--- a/bbb_cape/src/bbb/bbb.gyp
+++ /dev/null
@@ -1,258 +0,0 @@
-{
-  'target_defaults': {
-    'include_dirs': [
-      '..',
-    ],
-    'direct_dependent_settings': {
-      'include_dirs': [
-        '..',
-      ],
-    },
-  },
-  'targets': [
-    {
-      'target_name': 'led',
-      'type': 'static_library',
-      'sources': [
-        'led.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/build/aos.gyp:logging',
-      ],
-    },
-    {
-      'target_name': 'crc',
-      'type': 'static_library',
-      'sources': [
-        'crc.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/common/common.gyp:once',
-        '<(AOS)/build/aos.gyp:logging',
-        'byte_io',
-      ],
-    },
-    {
-      'target_name': 'byte_io',
-      'type': 'static_library',
-      'sources': [
-        # 'byte_io.h',
-      ],
-      'dependencies': [
-        '<(AOS)/common/common.gyp:time',
-      ],
-      'export_dependent_settings': [
-        '<(AOS)/common/common.gyp:time',
-      ],
-    },
-    {
-      'target_name': 'export_uart',
-      'type': 'static_library',
-      'sources': [
-        'export_uart.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/util/util.gyp:run_command',
-      ],
-    },
-    {
-      'target_name': 'uart_reader',
-      'type': 'static_library',
-      'sources': [
-        'uart_reader.cc',
-        'uart_reader_termios2.c',
-      ],
-      'dependencies': [
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/common/common.gyp:time',
-        'byte_io',
-        'export_uart',
-      ],
-      'export_dependent_settings': [
-        '<(AOS)/common/common.gyp:time',
-        'byte_io',
-      ],
-    },
-    {
-      'target_name': 'all_tests',
-      'type': 'none',
-      'variables': {
-        'no_rsync': 1,
-      },
-      'dependencies': [
-        'cows_test',
-        'packet_finder_test',
-      ],
-    },
-    {
-      'target_name': 'cows_test',
-      'type': 'executable',
-      'sources': [
-        'cows_test.cc',
-      ],
-      'dependencies': [
-        '<(EXTERNALS):gtest',
-        '<(DEPTH)/bbb_cape/src/cape/cape.gyp:cows',
-      ],
-    },
-    {
-      'target_name': 'packet_finder_test',
-      'type': 'executable',
-      'sources': [
-        'packet_finder_test.cc',
-      ],
-      'dependencies': [
-        '<(EXTERNALS):gtest',
-        'packet_finder',
-        '<(AOS)/common/common.gyp:queue_testutils',
-        '<(AOS)/common/common.gyp:time',
-        'byte_io',
-      ],
-    },
-    {
-      'target_name': 'packet_finder',
-      'type': 'static_library',
-      'sources': [
-        'packet_finder.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/common/common.gyp:time',
-        '<(DEPTH)/bbb_cape/src/cape/cape.gyp:cows',
-        'crc',
-        'byte_io',
-        '<(AOS)/common/util/util.gyp:log_interval',
-        '<(AOS)/common/util/util.gyp:run_command',
-      ],
-      'export_dependent_settings': [
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/util/util.gyp:log_interval',
-      ],
-    },
-    {
-      'target_name': 'data_struct',
-      'type': 'static_library',
-      'sources': [
-        # 'data_struct.h',
-      ],
-      'dependencies': [
-        '<(DEPTH)/bbb_cape/src/cape/cape.gyp:data_struct',
-      ],
-      'export_dependent_settings': [
-        '<(DEPTH)/bbb_cape/src/cape/cape.gyp:data_struct',
-      ],
-    },
-    {
-      'target_name': 'uart_reader_main',
-      'type': 'executable',
-      'sources': [
-        'uart_reader_main.cc',
-      ],
-      'dependencies': [
-        'uart_reader',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        'packet_finder',
-        'data_struct',
-        '<(AOS)/common/common.gyp:time',
-      ],
-    },
-    {
-      'target_name': 'gpios',
-      'type': 'static_library',
-      'sources': [
-        'gpios.cc',
-        'gpi.cc',
-        'gpo.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/build/aos.gyp:logging',
-      ],
-    },
-    {
-      'target_name': 'sensor_reader',
-      'type': 'static_library',
-      'sources': [
-        'sensor_reader.cc',
-      ],
-      'dependencies': [
-        'packet_finder',
-        'data_struct',
-        'cape_manager',
-        '<(AOS)/common/common.gyp:time',
-        'hex_byte_reader',
-        'crc',
-        '<(AOS)/common/controls/controls.gyp:sensor_generation',
-        '<(AOS)/linux_code/linux_code.gyp:configuration',
-        '<(AOS)/common/util/util.gyp:log_interval',
-      ],
-      'export_dependent_settings': [
-        'packet_finder',
-        'data_struct',
-        'cape_manager',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/util/util.gyp:log_interval',
-      ],
-    },
-    {
-      'target_name': 'cape_flasher',
-      'type': 'static_library',
-      'sources': [
-        'cape_flasher.cc',
-      ],
-      'dependencies': [
-        'byte_io',
-        'crc',
-      ],
-    },
-    {
-      'target_name': 'hex_byte_reader',
-      'type': 'static_library',
-      'sources': [
-        'hex_byte_reader.cc',
-      ],
-      'dependencies': [
-        'byte_io',
-        '<(AOS)/common/common.gyp:time',
-        '<(EXTERNALS):stm32flash',
-        '<(AOS)/build/aos.gyp:logging',
-      ],
-      'export_dependent_settings': [
-        'byte_io',
-        '<(AOS)/common/common.gyp:time',
-      ],
-    },
-    {
-      'target_name': 'cape_manager',
-      'type': 'static_library',
-      'sources': [
-        'cape_manager.cc',
-      ],
-      'dependencies': [
-        'gpios',
-        'uart_reader',
-        'cape_flasher',
-        '<(AOS)/common/common.gyp:time',
-        'hex_byte_reader',
-      ],
-      'export_dependent_settings': [
-        'gpios',
-        'uart_reader',
-      ],
-    },
-    {
-      'target_name': 'test_sensor_receiver',
-      'type': 'executable',
-      'sources': [
-        'test_sensor_receiver.cc',
-      ],
-      'dependencies': [
-        'sensor_reader',
-        '<(AOS)/linux_code/linux_code.gyp:init',
-      ],
-    },
-  ],
-}
diff --git a/bbb_cape/src/bbb/byte_io.h b/bbb_cape/src/bbb/byte_io.h
deleted file mode 100644
index 41708e9..0000000
--- a/bbb_cape/src/bbb/byte_io.h
+++ /dev/null
@@ -1,51 +0,0 @@
-#ifndef BBB_BYTE_READER_H_
-#define BBB_BYTE_READER_H_
-
-#include <sys/types.h>
-
-#include "aos/common/time.h"
-
-namespace bbb {
-
-class ByteReaderInterface {
- public:
-  virtual ~ByteReaderInterface() {}
-
-  // Implemented by subclasses to provide a data source
-  // for these algorithms.
-  // Returns the number of bytes read, -1 if there is an error in errno, or -2
-  // if reading takes longer than timeout.
-  virtual ssize_t ReadBytes(
-      uint8_t *dest, size_t max_bytes,
-      const ::aos::time::Time &timeout = ::aos::time::Time(0, 0)) = 0;
-};
-
-class ByteWriterInterface {
- public:
-  virtual ~ByteWriterInterface() {}
-
-  // Implemented by subclasses to actually write the data somewhere.
-  // Returns true if it succeeds or false if it fails and there is an error in
-  // errno.
-  virtual bool WriteBytes(uint8_t *bytes, size_t number_bytes) = 0;
-};
-
-class ByteReaderWriterInterface : public ByteReaderInterface,
-                                  public ByteWriterInterface {};
-
-class ByteReaderAndWriter : public ByteReaderWriterInterface {
- public:
-  ByteReaderAndWriter(ByteReaderInterface *reader, ByteWriterInterface *writer)
-      : reader_(reader), writer_(writer) {}
-
-  ByteReaderInterface *reader() { return reader_; }
-  ByteWriterInterface *writer() { return writer_; }
-
- private:
-  ByteReaderInterface *const reader_;
-  ByteWriterInterface *const writer_;
-};
-
-}  // namespace bbb
-
-#endif  // BBB_BYTE_READER_H_
diff --git a/bbb_cape/src/bbb/cape_flasher.cc b/bbb_cape/src/bbb/cape_flasher.cc
deleted file mode 100644
index cb406f7..0000000
--- a/bbb_cape/src/bbb/cape_flasher.cc
+++ /dev/null
@@ -1,93 +0,0 @@
-#include "bbb/cape_flasher.h"
-
-#include <string.h>
-#include <inttypes.h>
-
-#include "aos/common/logging/logging.h"
-
-#include "bbb/crc.h"
-#include "bbb/byte_io.h"
-
-namespace bbb {
-namespace {
-namespace command {
-
-const uint8_t kAck = 0x79;
-const uint8_t kNack = 0x1F;
-
-}  // namespace command
-}  // namespace
-
-CapeFlasher::CapeFlasher(ByteReaderWriterInterface *uart) : uart_(uart) {}
-
-void CapeFlasher::Download(ByteReaderInterface *file) {
-  uint8_t bootloader_receive = 0;
-  uint8_t buffer[256];
-  ssize_t bootloader_read = 0;
-
-  while (bootloader_read <= 0 || bootloader_receive != command::kNack) {
-    bootloader_read = uart_->ReadBytes(&bootloader_receive, 1,
-                                       ::aos::time::Time::InSeconds(2));
-    if (bootloader_read == -1) {
-      PLOG(WARNING, "reading from %p (uart) failed", uart_);
-    } else if (bootloader_read == -2) {
-      LOG(WARNING, "timeout reading from uart %p\n", uart_);
-    }
-  }
-
-  while (true) {
-    size_t total_read = 0;
-    bool done = false;
-    while (total_read < sizeof(buffer)) {
-      ssize_t read = file->ReadBytes(buffer, sizeof(buffer));
-      if (read == -2) {
-        if (total_read == 0) return;
-        done = true;
-        memset(buffer + total_read, 0xFF, sizeof(buffer) - total_read);
-        total_read = sizeof(buffer);
-      } else if (read == -1) {
-        PLOG(FATAL, "reading from file %p failed", file);
-      } else {
-        total_read += read;
-      }
-    }
-
-    WriteBuffer(buffer, sizeof(buffer));
-    if (done) return;
-  }
-}
-
-void CapeFlasher::WriteBuffer(uint8_t *buffer, size_t size) {
-  while (true) {
-    uart_->WriteBytes(buffer, size);
-    uint32_t checksum = cape::CalculateChecksum(buffer, size);
-    uart_->WriteBytes(reinterpret_cast<uint8_t *>(&checksum),
-                      sizeof(checksum));
-
-    uint8_t bootloader_receive;
-    ssize_t bootloader_read = uart_->ReadBytes(
-        &bootloader_receive, 1, ::aos::time::Time::InSeconds(2));
-    if (bootloader_read == -1) {
-      PLOG(WARNING, "reading from %p (uart) failed", uart_);
-    } else if (bootloader_read == -2) {
-      LOG(WARNING, "timeout reading from uart %p\n", uart_);
-      do {
-        uint8_t byte = 0;
-        uart_->WriteBytes(&byte, 1);
-        bootloader_read = uart_->ReadBytes(&bootloader_receive, 1,
-                                           ::aos::time::Time::InSeconds(0.1));
-      } while (bootloader_read <= 0 || bootloader_receive != command::kNack);
-      switch (bootloader_receive) {
-        case command::kAck:
-          return;
-        case command::kNack:
-          break;
-        default:
-          LOG(WARNING, "unknown bootloader response %" PRIu8 "\n",
-              bootloader_receive);
-      }
-    }
-  }
-}
-
-}  // namespace bbb
diff --git a/bbb_cape/src/bbb/cape_flasher.h b/bbb_cape/src/bbb/cape_flasher.h
deleted file mode 100644
index 852321e..0000000
--- a/bbb_cape/src/bbb/cape_flasher.h
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef BBB_CAPE_SRC_BBB_CAPE_FLASHER_H_
-#define BBB_CAPE_SRC_BBB_CAPE_FLASHER_H_
-
-#include <string>
-
-#include "aos/common/macros.h"
-
-namespace bbb {
-
-class ByteReaderInterface;
-class ByteReaderWriterInterface;
-
-// Talks to the custom bootloader on the cape MCU. Expects for the cape to be
-// freshly booted into the bootloader when initialized.
-class CapeFlasher {
- public:
-  explicit CapeFlasher(ByteReaderWriterInterface *uart);
-
-  // Downloads a file.
-  // file should give the raw bytes to download, starting at the start of the
-  // main code. All reads will be done with a timeout of 0. Stops on the first
-  // timeout.
-  void Download(ByteReaderInterface *file);
-
- private:
-  void WriteBuffer(uint8_t *buffer, size_t size);
-
-  ByteReaderWriterInterface *const uart_;
-
-  DISALLOW_COPY_AND_ASSIGN(CapeFlasher);
-};
-
-}  // namespace bbb
-
-#endif  // BBB_CAPE_SRC_BBB_CAPE_FLASHER_H_
diff --git a/bbb_cape/src/bbb/cape_manager.cc b/bbb_cape/src/bbb/cape_manager.cc
deleted file mode 100644
index cf32971..0000000
--- a/bbb_cape/src/bbb/cape_manager.cc
+++ /dev/null
@@ -1,37 +0,0 @@
-#include "bbb/cape_manager.h"
-
-#include <string.h>
-#include <errno.h>
-
-#include "aos/common/time.h"
-
-#include "bbb/cape_flasher.h"
-#include "bbb/hex_byte_reader.h"
-
-namespace bbb {
-
-CapeManager::CapeManager()
-    : uart_(750000),
-      reset_(2, 5, true),
-      custom_bootloader_(2, 3, true),
-      bootloader_(2, 2, false) {}
-
-void CapeManager::DownloadHex(const ::std::string &filename) {
-  HexByteReader file(filename);
-  CapeFlasher flasher(&uart_);
-  DoReset(true);
-  flasher.Download(&file);
-  DoReset(false);
-}
-
-void CapeManager::DoReset(bool bootloader) {
-  static constexpr ::aos::time::Time kWaitTime =
-      ::aos::time::Time::InSeconds(0.1);
-  custom_bootloader_.Set(!bootloader);
-  reset_.Set(false);
-  ::aos::time::SleepFor(kWaitTime);
-  reset_.Set(true);
-  ::aos::time::SleepFor(kWaitTime);
-}
-
-}  // namespace bbb
diff --git a/bbb_cape/src/bbb/cape_manager.h b/bbb_cape/src/bbb/cape_manager.h
deleted file mode 100644
index e71a59f..0000000
--- a/bbb_cape/src/bbb/cape_manager.h
+++ /dev/null
@@ -1,39 +0,0 @@
-#ifndef BBB_CAPE_SRC_BBB_CAPE_MANAGER_H_
-#define BBB_CAPE_SRC_BBB_CAPE_MANAGER_H_
-
-#include <string>
-
-#include "aos/common/macros.h"
-
-#include "bbb/gpo.h"
-#include "bbb/uart_reader.h"
-
-namespace bbb {
-
-// Manages the connection to the cape (including GPIOs, running the bootloader,
-// setting up the serial connection, etc).
-class CapeManager {
- public:
-  CapeManager();
-
-  // Downloads a .hex file using the custom bootloader.
-  void DownloadHex(const ::std::string &filename);
-
-  // Resets the cape.
-  void Reset() { DoReset(false); }
-
-  UartReader *uart() { return &uart_; }
-
- private:
-  void DoReset(bool bootloader);
-
-  UartReader uart_;
-
-  Gpo reset_, custom_bootloader_, bootloader_;
-
-  DISALLOW_COPY_AND_ASSIGN(CapeManager);
-};
-
-}  // namespace bbb
-
-#endif  // BBB_CAPE_SRC_BBB_CAPE_MANAGER_H_
diff --git a/bbb_cape/src/bbb/cows_test.cc b/bbb_cape/src/bbb/cows_test.cc
deleted file mode 100644
index e75af6b..0000000
--- a/bbb_cape/src/bbb/cows_test.cc
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "cape/cows.h"
-
-#include <gtest/gtest.h>
-
-namespace testing {
-
-TEST(CowsTest, StupidZeros) {
-  static const uint8_t kTestInput[] = {0x02, 0x00, 0x00, 0x00, 0x00, 0x08, 0x01,
-                                       0x00};
-  uint32_t input[2];
-  memcpy(input, kTestInput, 8);
-  uint32_t output[2];
-  EXPECT_EQ(
-      1u, cows_unstuff(input, sizeof(kTestInput), output, sizeof(output) * 4));
-}
-
-}  // namespace testing
diff --git a/bbb_cape/src/bbb/crc.cc b/bbb_cape/src/bbb/crc.cc
deleted file mode 100644
index c3ab895..0000000
--- a/bbb_cape/src/bbb/crc.cc
+++ /dev/null
@@ -1,71 +0,0 @@
-#include "bbb/crc.h"
-
-#include <assert.h>
-#include <string.h>
-
-#include "aos/common/once.h"
-#include "aos/common/logging/logging.h"
-
-#include "bbb/byte_io.h"
-
-// There are various implementations that look a lot like this scattered around
-// the internet.
-
-namespace cape {
-namespace {
-
-const uint32_t kPolynomial = 0x04c11db7;
-
-const uint32_t *GenerateTable() {
-  static uint32_t table[256];
-
-  for (int i = 0; i < 256; ++i) {
-    uint32_t c = i << 24;
-    for (int j = 8; j > 0; --j) {
-      c = c & 0x80000000 ? ((c << 1) ^ kPolynomial) : (c << 1);
-    }
-    table[i] = c;
-  }
-
-  return table;
-}
-
-}  // namespace
-
-uint32_t CalculateChecksum(const uint8_t *data, size_t length,
-                           uint32_t initial) {
-  assert((length % 4) == 0);
-
-  static ::aos::Once<const uint32_t> table_once(GenerateTable);
-  const uint32_t *const table = table_once.Get();
-
-  uint32_t r = initial;
-
-  for (size_t i = 0; i < (length / 4); ++i) {
-    for (int ii = 3; ii >= 0; --ii) {
-      r = (r << 8) ^ table[(r >> 24) ^ data[i * 4 + ii]];
-    }
-  }
-
-  return r;
-}
-
-uint32_t CalculateChecksum(::bbb::ByteReaderInterface *reader) {
-  uint8_t buffer[256];
-  int remainder_bytes = 0;
-  uint32_t checksum = 0xFFFFFFFF;
-  while (true) {
-    ssize_t read = reader->ReadBytes(&buffer[remainder_bytes],
-                                     sizeof(buffer) - remainder_bytes);
-    if (read == -2) return checksum;
-    if (read == -1) {
-      PLOG(FATAL, "reader %p failed to read", reader);
-    }
-    size_t checksum_bytes = (read / 4) * 4;
-    checksum = CalculateChecksum(buffer, checksum_bytes, checksum);
-    remainder_bytes = read - checksum_bytes;
-    memmove(buffer, &buffer[checksum_bytes], remainder_bytes);
-  }
-}
-
-}  // namespace cape
diff --git a/bbb_cape/src/bbb/crc.h b/bbb_cape/src/bbb/crc.h
deleted file mode 100644
index c26f5db..0000000
--- a/bbb_cape/src/bbb/crc.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef BBB_CRC_H_
-#define BBB_CRC_H_
-
-#include <string.h>
-#include <stdint.h>
-
-namespace bbb {
-
-class ByteReaderInterface;
-
-}  // namespace bbb
-namespace cape {
-
-// Calculates a CRC32 checksum for data. This is definitely the same one as the
-// cape MCU does in hardware which seems to be the same one as Ethernet etc use.
-// length is the number of bytes of data to read. It must be a multiple of 4.
-// initial can be a previous return value to continue the same checksum over
-// more data.
-uint32_t CalculateChecksum(const uint8_t *data, size_t length,
-                           uint32_t initial = 0xFFFFFFFF);
-// Reads all data out of reader and does a checksum over all of it in reasonably
-// sized pieces. Does all of the reads with a timeout of 0. Stops on the first
-// timeout.
-uint32_t CalculateChecksum(::bbb::ByteReaderInterface *reader);
-
-}  // namespace cape
-
-#endif  // BBB_CRC_H_
diff --git a/bbb_cape/src/bbb/data_struct.h b/bbb_cape/src/bbb/data_struct.h
deleted file mode 100644
index 767c0e0..0000000
--- a/bbb_cape/src/bbb/data_struct.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <stdint.h>
-
-namespace bbb {
-
-#define DATA_STRUCT_NAME DataStruct
-#include "cape/data_struct.h"
-#undef DATA_STRUCT_NAME
-
-}  // namespace bbb
diff --git a/bbb_cape/src/bbb/export_uart.cc b/bbb_cape/src/bbb/export_uart.cc
deleted file mode 100644
index bcb1a7c..0000000
--- a/bbb_cape/src/bbb/export_uart.cc
+++ /dev/null
@@ -1,64 +0,0 @@
-#include "bbb/export_uart.h"
-
-#include <unistd.h>
-#include <errno.h>
-#include <string.h>
-#include <sys/wait.h>
-
-#include "aos/common/logging/logging.h"
-#include "aos/common/time.h"
-#include "aos/common/util/run_command.h"
-
-namespace bbb {
-namespace {
-
-// TODO(brians): Determine this in some way that allows easy switching for
-// testing with /dev/ttyUSB0 for example.
-const char *device = "/dev/ttyO1";
-
-bool easy_access(const char *path) {
-  if (access(path, R_OK | W_OK) == 0) return true;
-  if (errno == EACCES || errno == ENOENT) return false;
-  PLOG(FATAL, "access(%s, F_OK) failed", path);
-}
-
-}  // namespace
-
-const char *UartDevice() { return device; }
-
-void ExportUart() {
-  if (easy_access(device)) {
-    LOG(INFO, "unexporting BB-UART1\n");
-    const int result = ::aos::util::RunCommand(
-        "bash -c 'echo -$(cat /sys/devices/bone_capemgr.*/slots"
-        " | fgrep BB-UART1"
-        " | cut -d : -f 1 | tr -d \" \")"
-        " > /sys/devices/bone_capemgr.*/slots'");
-    if (result == -1) {
-      PLOG(FATAL, "RunCommand([disable OMAP UART]) failed");
-    } else if (!WIFEXITED(result) || WEXITSTATUS(result) != 0) {
-      LOG(FATAL, "command to disable OMAP UART failed; result = %x\n", result);
-    }
-    while (easy_access(device)) {
-      LOG(DEBUG, "waiting for BB-UART1 to be unexported\n");
-      ::aos::time::SleepFor(::aos::time::Time::InSeconds(0.1));
-    }
-  }
-
-  LOG(INFO, "exporting BB-UART1\n");
-  // 2 strings to work around a VIM bug where the indenter locks up when they're
-  // combined as 1...
-  const int result = ::aos::util::RunCommand(
-      "bash -c 'echo BB-UART1 > /sys/devices/bone_capemgr.*" "/slots'");
-  if (result == -1) {
-    PLOG(FATAL, "RunCommand([enable OMAP UART]) failed");
-  } else if (!WIFEXITED(result) || WEXITSTATUS(result) != 0) {
-    LOG(FATAL, "command to enable OMAP UART failed; result = %x\n", result);
-  }
-  while (!easy_access(device)) {
-    LOG(DEBUG, "waiting for BB-UART1 to be exported\n");
-    ::aos::time::SleepFor(::aos::time::Time::InSeconds(0.1));
-  }
-}
-
-}  // namespace bbb
diff --git a/bbb_cape/src/bbb/export_uart.h b/bbb_cape/src/bbb/export_uart.h
deleted file mode 100644
index 4f91a57..0000000
--- a/bbb_cape/src/bbb/export_uart.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef BBB_EXPORT_UART_H_
-#define BBB_EXPORT_UART_H_
-
-namespace bbb {
-
-// Returns a pointer to static memory with the name of the device file for the
-// UART.
-const char *UartDevice();
-
-// Unexports (if already exported) and then reexports the UART cape slot.
-void ExportUart();
-
-}  // namespace bbb
-
-#endif  // BBB_EXPORT_UART_H_
diff --git a/bbb_cape/src/bbb/gpi.cc b/bbb_cape/src/bbb/gpi.cc
deleted file mode 100644
index 64e0198..0000000
--- a/bbb_cape/src/bbb/gpi.cc
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "bbb/gpi.h"
-
-#include <stdio.h>
-#include <string.h>
-
-#include "aos/common/logging/logging.h"
-
-namespace bbb {
-
-Gpi::Gpi(int bank, int pin) : GpioPin(bank, pin, true) {
-}
-
-bool Gpi::Read() {
-  rewind(value_handle_);
-  int value = fgetc(value_handle_);
-  if (value < 0) {
-    PLOG(FATAL, "fgetc(%p) for pin (%d,%d) failed", value_handle_, bank_, pin_);
-  }
-  switch (value - '0') {
-    case 0: return false;
-    case 1: return true;
-    default:
-      LOG(FATAL, "unknown pin value %c\n", value);
-  }
-}
-
-}  // namespace bbb
diff --git a/bbb_cape/src/bbb/gpi.h b/bbb_cape/src/bbb/gpi.h
deleted file mode 100644
index 0583f0b..0000000
--- a/bbb_cape/src/bbb/gpi.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef BBB_CAPE_SRC_BBB_GPI_H_
-#define BBB_CAPE_SRC_BBB_GPI_H_
-
-#include "bbb/gpios.h"
-
-namespace bbb {
-
-// Subclass of Pin for input pins.
-class Gpi : public GpioPin {
- public:
-  Gpi(int bank, int pin);
-
-  // Read the current value of the pin.
-  // Returns true if it's high and false if it's low.
-  bool Read();
-};
-
-}  // namespace bbb
-
-#endif
diff --git a/bbb_cape/src/bbb/gpios.cc b/bbb_cape/src/bbb/gpios.cc
deleted file mode 100644
index 0ec3051..0000000
--- a/bbb_cape/src/bbb/gpios.cc
+++ /dev/null
@@ -1,69 +0,0 @@
-#include "bbb/gpios.h"
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include "aos/common/logging/logging.h"
-
-namespace bbb {
-
-GpioPin::GpioPin(int bank, int pin, bool input, bool initial_value)
-    : bank_(bank), pin_(pin), kernel_pin_(bank * 32 + pin) {
-  // Export the pin.
-  FILE *export_handle = fopen("/sys/class/gpio/export", "w");
-  if (export_handle == NULL) {
-    PLOG(WARNING, "Could not open file to export pin (%d,%d)", bank_, pin_);
-  } else {
-    if (fprintf(export_handle, "%d", kernel_pin_) < 0) {
-      PLOG(WARNING, "Could not write to file %p to export pin (%d,%d)",
-           export_handle, bank_, pin_);
-    }
-    if (fclose(export_handle) == -1) {
-      PLOG(WARNING, "fclose(%p) failed", export_handle);
-    }
-  }
-
-  char direction_path[64];
-  snprintf(direction_path, sizeof(direction_path),
-           "/sys/class/gpio/gpio%d/direction", kernel_pin_);
-
-  FILE *direction_handle = fopen(direction_path, "w");
-  if (direction_handle == NULL) {
-    PLOG(FATAL, "fopen(%s, \"w\") failed", direction_path);
-  }
-
-  if (fputs(input ? "in" : (initial_value ? "high" : "low"),
-            direction_handle) < 0) {
-    PLOG(FATAL, "setting direction for pin (%d,%d) failed", bank_, pin_);
-  }
-  if (fclose(direction_handle) == -1) {
-    PLOG(WARNING, "fclose(%p) failed", direction_handle);
-  }
-
-  char value_path[64];
-  snprintf(value_path, sizeof(value_path),
-           "/sys/class/gpio/gpio%d/value", kernel_pin_);
-  value_handle_ = fopen(value_path, "w+");
-  if (value_handle_ == NULL) {
-    PLOG(FATAL, "fopen(%s, \"w+\") failed", value_path);
-  }
-}
-
-GpioPin::~GpioPin() {
-  // Unexport the pin.
-  FILE *unexport_handle = fopen("/sys/class/gpio/unexport", "a");
-  if (unexport_handle == NULL) {
-    PLOG(WARNING, "Could not open file to unexport pin (%d,%d)", bank_, pin_);
-  } else {
-    if (fprintf(unexport_handle, "%d", kernel_pin_) < 0) {
-      PLOG(WARNING, "Could not write to file %p to unexport pin (%d,%d)",
-           unexport_handle, bank_, pin_);
-    }
-    if (fclose(unexport_handle) == -1) {
-      PLOG(WARNING, "fclose(%p) failed", unexport_handle);
-    }
-  }
-}
-
-}  // namespace bbb
diff --git a/bbb_cape/src/bbb/gpios.h b/bbb_cape/src/bbb/gpios.h
deleted file mode 100644
index 0ba3323..0000000
--- a/bbb_cape/src/bbb/gpios.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef BBB_CAPE_SRC_BBB_GPIOS_H_
-#define BBB_CAPE_SRC_BBB_GPIOS_H_
-
-#include <stdio.h>
-
-#include "aos/common/macros.h"
-
-// Controlling GPIO pins
-// from C++ is a pain. This code provides a simple wrapper that makes it easy to
-// use cleanly.
-
-// Based on example from
-// <http://learnbuildshare.wordpress.com/2013/05/29/beaglebone-black-digital-ouput/>
-
-// This is a base class for all gpio related stuff.
-// Use either the Gpi or the Gpo subclass if you want to do things.
-namespace bbb {
-
-class GpioPin {
- protected:
-  // initial_value only matters if input is false.
-  GpioPin(int bank, int pin, bool input, bool initial_value = false);
-  virtual ~GpioPin();
-
-  FILE *value_handle_ = NULL;
-  const int bank_, pin_, kernel_pin_;
-
- private:
-  DISALLOW_COPY_AND_ASSIGN(GpioPin);
-};
-
-}  // namespace bbb
-
-#endif  // BBB_CAPE_SRC_BBB_GPIOS_H_
diff --git a/bbb_cape/src/bbb/gpo.cc b/bbb_cape/src/bbb/gpo.cc
deleted file mode 100644
index acb4295..0000000
--- a/bbb_cape/src/bbb/gpo.cc
+++ /dev/null
@@ -1,26 +0,0 @@
-#include "bbb/gpo.h"
-
-#include <stdio.h>
-#include <string.h>
-#include <unistd.h>
-
-#include "aos/common/logging/logging.h"
-
-namespace bbb {
-
-Gpo::Gpo(int bank, int pin, bool initial_value)
-    : GpioPin(bank, pin, false, initial_value) {}
-
-void Gpo::Set(bool high) {
-  rewind(value_handle_);
-  if (fputc(high ? '1' : '0', value_handle_) == EOF) {
-    PLOG(FATAL, "fputc(%c, %p) for pin (%d,%d) failed",
-         high ? '1': '0', value_handle_, bank_, pin_);
-  }
-  if (fflush(value_handle_) == EOF) {
-    PLOG(FATAL, "fflush(%p) for pin (%d,%d) failed",
-         value_handle_, bank_, pin_);
-  }
-}
-
-}  // namespace bbb
diff --git a/bbb_cape/src/bbb/gpo.h b/bbb_cape/src/bbb/gpo.h
deleted file mode 100644
index 493ddd3..0000000
--- a/bbb_cape/src/bbb/gpo.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef BBB_CAPE_SRC_BBB_GPO_H_
-#define BBB_CAPE_SRC_BBB_GPO_H_
-
-#include "bbb/gpios.h"
-
-namespace bbb {
-
-// Gpios subclass for output pins.
-class Gpo : public GpioPin {
- public:
-  Gpo(int bank, int pin, bool initial_value = false);
-  // Sets the pin to either high (true) or low (false).
-  void Set(bool high);
-};
-
-}  // namespace bbb
-
-#endif
diff --git a/bbb_cape/src/bbb/hex_byte_reader.cc b/bbb_cape/src/bbb/hex_byte_reader.cc
deleted file mode 100644
index 4e2f7e4..0000000
--- a/bbb_cape/src/bbb/hex_byte_reader.cc
+++ /dev/null
@@ -1,52 +0,0 @@
-#include "bbb/hex_byte_reader.h"
-
-#include <string.h>
-
-#include "stm32flash/parsers/parser.h"
-#include "stm32flash/parsers/hex.h"
-
-#include "aos/common/logging/logging.h"
-
-namespace bbb {
-namespace {
-
-const parser_t kParser = PARSER_HEX;
-
-__attribute__((noreturn)) void DieParserError(parser_err_t perr) {
-  if (perr == PARSER_ERR_SYSTEM) {
-    PLOG(ERROR, "parser error");
-  }
-  LOG(FATAL, "%s error: %s\n", kParser.name, parser_errstr(perr));
-}
-
-}  // namespace
-
-HexByteReader::HexByteReader(const ::std::string &filename)
-    : parser_status_(kParser.init()) {
-  LOG(DEBUG, "reading hex file %s\n", filename.c_str());
-  if (parser_status_ == NULL) {
-    LOG(FATAL, "%s parser failed to initialize.\n", kParser.name);
-  }
-  parser_err_t perr = kParser.open(parser_status_, filename.c_str(), 0);
-  if (perr != PARSER_ERR_OK) {
-    DieParserError(perr);
-  }
-}
-
-ssize_t HexByteReader::ReadBytes(uint8_t *dest, size_t max_bytes,
-                                 const ::aos::time::Time &/*timeout*/) {
-  unsigned int bytes = max_bytes;
-  parser_err_t perr = kParser.read(parser_status_, dest, &bytes);
-  if (perr != PARSER_ERR_OK) {
-    if (perr == PARSER_ERR_SYSTEM) return -1;
-    DieParserError(perr);
-  }
-  if (bytes == 0) return -2;
-  return bytes;
-}
-
-unsigned int HexByteReader::GetSize() {
-  return kParser.size(parser_status_);
-}
-
-}  // namespace bbb
diff --git a/bbb_cape/src/bbb/hex_byte_reader.h b/bbb_cape/src/bbb/hex_byte_reader.h
deleted file mode 100644
index 8bbbe6d..0000000
--- a/bbb_cape/src/bbb/hex_byte_reader.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef BBB_CAPE_SRC_BBB_HEX_BYTE_READER_H_
-#define BBB_CAPE_SRC_BBB_HEX_BYTE_READER_H_
-
-#include <string>
-
-#include "aos/common/time.h"
-
-#include "bbb/byte_io.h"
-
-namespace bbb {
-
-// Reads bytes from a .hex file.
-class HexByteReader : public ByteReaderInterface {
- public:
-  explicit HexByteReader(const ::std::string &filename);
-  virtual ~HexByteReader() {}
-
-  virtual ssize_t ReadBytes(
-      uint8_t *dest, size_t max_bytes,
-      const ::aos::time::Time &timeout = ::aos::time::Time(0, 0)) override;
-
-  // Returns the total number of bytes that we will eventually read out.
-  unsigned int GetSize();
-
- private:
-  void *const parser_status_;
-};
-
-}  // namespace bbb
-
-#endif  // BBB_CAPE_SRC_BBB_HEX_BYTE_READER_H_
diff --git a/bbb_cape/src/bbb/led.cc b/bbb_cape/src/bbb/led.cc
deleted file mode 100644
index df8139e..0000000
--- a/bbb_cape/src/bbb/led.cc
+++ /dev/null
@@ -1,54 +0,0 @@
-#include "bbb_cape/src/bbb/led.h"
-
-#include "aos/common/logging/logging.h"
-
-#include <string.h>
-
-#define DIRECTORY "/sys/class/leds/beaglebone:green:usr%d/"
-
-namespace bbb {
-
-LED::LED(int number) : number_(number) {
-  char trigger_path[64];
-  snprintf(trigger_path, sizeof(trigger_path), DIRECTORY "trigger", number_);
-  FILE *trigger_handle = fopen(trigger_path, "w");
-  if (trigger_handle == nullptr) {
-    PLOG(FATAL, "couldn't open trigger file for LED %d", number_);
-  }
-  if (fputs("none", trigger_handle) < 0) {
-    PLOG(FATAL, "writing 'none' to file %p (trigger for LED %d) failed",
-         trigger_handle, number_);
-  }
-  if (fclose(trigger_handle) == -1) {
-    PLOG(WARNING, "fclose(%p) failed", trigger_handle);
-  }
-
-  char brightness_path[64];
-  snprintf(brightness_path, sizeof(brightness_path),
-           DIRECTORY "brightness", number_);
-
-  brightness_handle_ = fopen(brightness_path, "w");
-  if (brightness_handle_ == nullptr) {
-    PLOG(FATAL, "fopen('%s', 'w') failed", brightness_path);
-  }
-}
-
-LED::~LED() {
-  if (fclose(brightness_handle_) == -1) {
-    PLOG(WARNING, "fclose(%p) failed", brightness_handle_);
-  }
-}
-
-void LED::Set(bool on) {
-  rewind(brightness_handle_);
-  if (fputs(on ? "255" : "0", brightness_handle_) == EOF) {
-    PLOG(FATAL, "fputs(255|0, %p) for LED %d failed",
-         brightness_handle_, number_);
-  }
-  if (fflush(brightness_handle_) == EOF) {
-    PLOG(FATAL, "fflush(%p) for LED %d failed",
-         brightness_handle_, number_);
-  }
-}
-
-}  // namespace bbb
diff --git a/bbb_cape/src/bbb/led.h b/bbb_cape/src/bbb/led.h
deleted file mode 100644
index 19976e6..0000000
--- a/bbb_cape/src/bbb/led.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef BBB_CAPE_SRC_BBB_LED_H_
-#define BBB_CAPE_SRC_BBB_LED_H_
-
-#include <stdio.h>
-
-#include "aos/common/macros.h"
-
-namespace bbb {
-
-// Allows easily controlling one of the LEDs.
-class LED {
- public:
-  LED(int number);
-  ~LED();
-
-  void Set(bool on);
-
- private:
-  FILE *brightness_handle_ = nullptr;
-  const int number_;
-
-  DISALLOW_COPY_AND_ASSIGN(LED);
-};
-
-}  // namespace bbb
-
-#endif  // BBB_CAPE_SRC_BBB_LED_H_
diff --git a/bbb_cape/src/bbb/packet_finder.cc b/bbb_cape/src/bbb/packet_finder.cc
deleted file mode 100644
index f3ca2b5..0000000
--- a/bbb_cape/src/bbb/packet_finder.cc
+++ /dev/null
@@ -1,176 +0,0 @@
-// This has to come before anybody drags in <stdlib.h> or else we end up with
-// the wrong version of WIFEXITED etc (for one thing, they don't const-qualify
-// their casts) (sometimes at least).
-#include <sys/wait.h>
-
-#include "bbb/packet_finder.h"
-
-#include <inttypes.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-
-#include <algorithm>
-
-#include "aos/common/logging/logging.h"
-#include "aos/common/util/run_command.h"
-
-#include "cape/cows.h"
-#include "bbb/crc.h"
-#include "bbb/byte_io.h"
-
-using ::aos::time::Time;
-
-namespace bbb {
-namespace {
-
-// Enabling all of the debugging logs during normal operation on the BBB causes
-// it to use most of the CPU when it runs into trouble.
-const bool kDebugLogs = false;
-
-}  // namespace
-
-constexpr ::aos::time::Time PacketFinder::kDebugLogInterval;
-
-PacketFinder::PacketFinder(ByteReaderInterface *reader, size_t packet_size)
-    : reader_(reader),
-      packet_size_(packet_size),
-      buf_(new AlignedChar[packet_size_ + kZeros]),
-      unstuffed_data_(new AlignedChar[packet_size_ - 4]) {
-  CHECK((packet_size_ % 4) == 0);
-}
-
-PacketFinder::~PacketFinder() {
-  delete[] buf_;
-  delete[] unstuffed_data_;
-}
-
-bool PacketFinder::FindPacket(const ::Time &timeout_time) {
-  // How many 0 bytes we've found at the front so far.
-  int zeros_found = 0;
-  while (true) {
-    size_t already_read = ::std::max(0, packet_bytes_);
-    size_t to_read = packet_size_ - already_read;
-    if (packet_bytes_ == -1) to_read += kZeros;
-    ssize_t new_bytes =
-        reader_->ReadBytes((uint8_t *)(buf_ + already_read),
-                           to_read, timeout_time);
-    if (new_bytes < 0) {
-      if (new_bytes == -1) {
-        PLOG(ERROR, "ReadBytes(%p, %zd) failed",
-             buf_ + already_read, to_read);
-      } else if (new_bytes == -2) {
-        LOG(WARNING, "timed out\n");
-      } else {
-        LOG(WARNING, "bad ByteReader %p returned %zd\n", reader_, new_bytes);
-      }
-      return false;
-    }
-
-    if (!irq_priority_increased_) {
-      // Iff we're root.
-      if (getuid() == 0) {
-        // TODO(brians): Do this cleanly.
-        const int chrt_result = ::aos::util::RunCommand(
-            "chrt -o 0 bash -c 'chrt -r -p 55 $(pgrep irq/89)'");
-        if (chrt_result == -1) {
-          LOG(FATAL, "RunCommand(chrt -r -p 55 the_irq) failed\n");
-        } else if (!WIFEXITED(chrt_result) || WEXITSTATUS(chrt_result) != 0) {
-          LOG(FATAL, "$(chrt -r -p 55 the_irq) failed; result = %x\n",
-              chrt_result);
-        }
-      } else {
-        LOG(WARNING, "not root, so not increasing priority of the IRQ\n");
-      }
-
-      irq_priority_increased_ = true;
-    }
-
-    if (packet_bytes_ == -1) {
-      for (size_t to_check = already_read; to_check < already_read + new_bytes;
-           ++to_check) {
-        if (buf(to_check) == 0) {
-          ++zeros_found;
-          if (zeros_found == kZeros) {
-            packet_bytes_ = 0;
-            zeros_found = 0;
-            new_bytes -= to_check + 1;
-            memmove(buf_, buf_ + to_check + 1, new_bytes);
-            to_check = 0;
-            break;
-          }
-        } else {
-          zeros_found = 0;
-        }
-      }
-    }
-    if (packet_bytes_ != -1) {  // if we decided that these are good bytes
-      packet_bytes_ += new_bytes;
-      CHECK_LE(packet_bytes_, static_cast<ssize_t>(packet_size_));
-      if (packet_bytes_ == static_cast<ssize_t>(packet_size_)) return true;
-    }
-  }
-}
-
-bool PacketFinder::ProcessPacket() {
-  uint32_t unstuffed = cows_unstuff(
-      reinterpret_cast<uint32_t *>(buf_), packet_size_,
-      reinterpret_cast<uint32_t *>(unstuffed_data_), packet_size_ - 4);
-  invalid_packet_.Print();
-  bad_checksum_.Print();
-
-  if (unstuffed == 0) {
-    if (kDebugLogs) LOG(WARNING, "invalid\n");
-    LOG_INTERVAL(invalid_packet_);
-    return false;
-  } else if (unstuffed != (packet_size_ - 4) / 4) {
-    LOG(WARNING, "packet is %" PRIu32 " words instead of %zu\n",
-        unstuffed, (packet_size_ - 4) / 4);
-    return false;
-  }
-
-  // Make sure the checksum checks out.
-  uint32_t sent_checksum;
-  memcpy(&sent_checksum, unstuffed_data_ + packet_size_ - 8, 4);
-  uint32_t calculated_checksum = cape::CalculateChecksum(
-      reinterpret_cast<uint8_t *>(unstuffed_data_), packet_size_ - 8);
-  if (sent_checksum != calculated_checksum) {
-    if (kDebugLogs) {
-      LOG(WARNING, "sent %" PRIx32 " not %" PRIx32 "\n", sent_checksum,
-          calculated_checksum);
-    }
-    LOG_INTERVAL(bad_checksum_);
-    return false;
-  }
-
-  return true;
-}
-
-bool PacketFinder::ReadPacket(const ::Time &timeout_time) {
-  if (!FindPacket(timeout_time)) return false;
-
-  if (!ProcessPacket()) {
-    packet_bytes_ = -1;
-    int zeros = 0;
-    for (size_t i = 0; i < packet_size_; ++i) {
-      if (buf(i) == 0) {
-        ++zeros;
-        if (zeros == kZeros) {
-          if (kDebugLogs) LOG(INFO, "start at %zd\n", i);
-          packet_bytes_ = packet_size_ - (i + 1);
-          memmove(buf_, buf_ + i + 1, packet_bytes_);
-          return false;
-        }
-      } else {
-        zeros = 0;
-      }
-    }
-    return false;
-  } else {
-    packet_bytes_ = -1;
-  }
-
-  return true;
-}
-
-}  // namespace bbb
diff --git a/bbb_cape/src/bbb/packet_finder.h b/bbb_cape/src/bbb/packet_finder.h
deleted file mode 100644
index 15ce6b8..0000000
--- a/bbb_cape/src/bbb/packet_finder.h
+++ /dev/null
@@ -1,91 +0,0 @@
-#ifndef BBB_CAPE_SRC_BBB_PACKET_FINDER_H_
-#define BBB_CAPE_SRC_BBB_PACKET_FINDER_H_
-
-#include <stdint.h>
-#include <string.h>
-
-#include "aos/common/logging/logging.h"
-#include "aos/common/time.h"
-#include "aos/common/macros.h"
-#include "aos/common/util/log_interval.h"
-
-namespace bbb {
-
-class ByteReaderInterface;
-
-class PacketFinder {
- public:
-  // *reader has to stay alive for the entire lifetime of this object but this
-  // object does not take ownership.
-  PacketFinder(ByteReaderInterface *reader, size_t packet_size);
-  ~PacketFinder();
-
-  // Returns true if it succeeds or false if it gets an I/O error (or timeout)
-  // first.
-  // timeout_time is when this method should give up trying to read a packet and
-  // return false.
-  bool ReadPacket(const ::aos::time::Time &timeout_time);
-
-  // Gets a reference to the received packet.
-  // The most recent call to ReadPacket() must have returned true or the data
-  // pointed to is undefined.
-  template <typename T>
-  const T *get_packet() {
-    static_assert(alignof(T) <= alignof(AlignedChar),
-                  "We need to align our data better.");
-    CHECK(sizeof(T) <= packet_size_ - 8);
-    return reinterpret_cast<const T *>(unstuffed_data_);
-  }
-
- private:
-  // We have 64-bit ints in some of our data.
-  typedef char __attribute__((aligned(8))) AlignedChar;
-
-  static const int kZeros = 4;
-
-  // Reads bytes until there are 4 zeros and then fills up buf_.
-  // Returns true if it finds one or false if it gets an I/O error first or the
-  // packet is invalid in some way.
-  bool FindPacket(const ::aos::time::Time &timeout_time);
-
-  // Processes a packet currently in buf_ and leaves the result in
-  // unstuffed_data_.
-  // Returns true if it succeeds or false if there was something wrong with the
-  // data.
-  bool ProcessPacket();
-
-  // Avoids issues with accessing elements of buf_ that are technically not
-  // aligned correctly.
-  uint8_t buf(size_t index) const {
-    uint8_t r;
-    memcpy(&r, &buf_[index], 1);
-    return r;
-  }
-
-  ByteReaderInterface *const reader_;
-  const size_t packet_size_;
-
-  AlignedChar *const buf_;
-  AlignedChar *const unstuffed_data_;
-
-  // How many bytes of the packet we've read in (or -1 if we don't know where
-  // the packet is).
-  int packet_bytes_ = -1;
-
-  // Whether we've increased the priority of the IRQ yet.
-  bool irq_priority_increased_ = false;
-
-  typedef ::aos::util::SimpleLogInterval SimpleLogInterval;
-  static constexpr ::aos::time::Time kDebugLogInterval =
-      ::aos::time::Time::InSeconds(0.3);
-  SimpleLogInterval invalid_packet_ =
-      SimpleLogInterval(kDebugLogInterval, WARNING, "invalid packet");
-  SimpleLogInterval bad_checksum_ =
-      SimpleLogInterval(kDebugLogInterval, WARNING, "bad checksum");
-
-  DISALLOW_COPY_AND_ASSIGN(PacketFinder);
-};
-
-}  // namespace bbb
-
-#endif
diff --git a/bbb_cape/src/bbb/packet_finder_test.cc b/bbb_cape/src/bbb/packet_finder_test.cc
deleted file mode 100644
index bd64957..0000000
--- a/bbb_cape/src/bbb/packet_finder_test.cc
+++ /dev/null
@@ -1,206 +0,0 @@
-#include "bbb/packet_finder.h"
-
-#include <malloc.h>
-
-#include <array>
-#include <algorithm>
-
-#include "gtest/gtest.h"
-
-#include "aos/common/queue_testutils.h"
-#include "aos/common/time.h"
-
-#include "bbb/byte_io.h"
-
-namespace bbb {
-namespace testing {
-
-class TestByteReader : public ByteReaderInterface {
- public:
-  template <size_t bytes>
-  TestByteReader(const ::std::array<uint8_t, bytes> &data)
-      : data_(memalign(8, data.size())),
-        data_size_(data.size()),
-        bytes_left_(data.size()) {
-    memcpy(data_, &data.at(0), data.size());
-  }
-
-  ~TestByteReader() {
-    free(data_);
-  }
-
-  virtual ssize_t ReadBytes(uint8_t *dest, size_t max_bytes,
-                            const ::aos::time::Time &/*timeout_time*/)
-      override {
-    size_t to_transfer = ::std::min(max_bytes, bytes_left_);
-    if (to_transfer == 0) return -2;
-    memcpy(dest, static_cast<const uint8_t *>(data_) + data_size_ - bytes_left_,
-           to_transfer);
-    bytes_left_ -= to_transfer;
-    return to_transfer;
-  }
-
- private:
-  void *const data_;
-  const size_t data_size_;
-  size_t bytes_left_;
-};
-
-class PacketFinderTest : public ::testing::Test {
- public:
-  void SetUp() override {
-    ::aos::common::testing::EnableTestLogging();
-  }
-
-  template <typename Data, size_t N>
-  void ReceivePackets(const Data &data, int packets,
-                      ::std::array<int, N> expected_failures) {
-    TestByteReader reader(data);
-    PacketFinder packet_finder(&reader, 144);
-    auto failure = expected_failures.begin();
-    for (int i = 1; i < packets; ++i) {
-      SCOPED_TRACE("packet " + ::std::to_string(i));
-      bool expect_failure = false;
-      if (failure != expected_failures.end() && *failure == i) {
-        expect_failure = true;
-        ++failure;
-      }
-      EXPECT_EQ(!expect_failure,
-                packet_finder.ReadPacket(::aos::time::Time(0, 0)));
-      if (expect_failure &&
-          (failure == expected_failures.end() || i + 1 != *failure) &&
-          i + 1 != packets) {
-        int failures = 0;
-        while (!packet_finder.ReadPacket(::aos::time::Time(0, 0))) {
-          ++failures;
-          SCOPED_TRACE("failure " + ::std::to_string(failures));
-          ASSERT_LT(failures, 500);
-        }
-        i += 1;
-      }
-    }
-    EXPECT_FALSE(packet_finder.ReadPacket(::aos::time::Time(0, 0)));
-  }
-
-  template <typename Data>
-  void ReceivePackets(const Data &data, int packets) {
-    // Not implemented as calling the overload with expected_failures because
-    // ubsan doesn't like stdlibc++'s std::array (at least for now) and this is
-    // really simple.
-    TestByteReader reader(data);
-    PacketFinder packet_finder(&reader, 144);
-    for (int i = 1; i < packets; ++i) {
-      SCOPED_TRACE("packet " + ::std::to_string(i));
-      EXPECT_TRUE(packet_finder.ReadPacket(::aos::time::Time(0, 0)));
-    }
-    EXPECT_FALSE(packet_finder.ReadPacket(::aos::time::Time(0, 0)));
-  }
-};
-
-static constexpr ::std::array<uint8_t, 896> kTestData1{
-  {0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xC0, 0x07, 0x01, 0x00, 0x02,
-   0x00, 0x00, 0x00, 0x69, 0x3D, 0xE0, 0x03, 0x02, 0x00, 0x00, 0x00, 0x43, 0x5E,
-   0x12, 0x16, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
-   0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
-   0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01,
-   0x00, 0x2A, 0x00, 0x00, 0x00, 0x10, 0x00, 0x2A, 0x00, 0x1B, 0x00, 0x4E, 0x01,
-   0x72, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xF1, 0xFF, 0xFF,
-   0xFF, 0x90, 0x01, 0x00, 0x20, 0x00, 0xED, 0x00, 0xE0, 0x01, 0x00, 0x00, 0x00,
-   0x02, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x40, 0x05, 0x00, 0x00, 0x00, 0x00,
-   0x80, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0xED,
-   0x00, 0xE0, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00,
-   0x00, 0xFF, 0x8E, 0xFE, 0x9E, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
-   0xD0, 0x07, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xA1, 0x79, 0xE0, 0x03, 0x02,
-   0x00, 0x00, 0x00, 0x43, 0x5E, 0x12, 0x16, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
-   0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
-   0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
-   0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x10, 0x00, 0x29,
-   0x00, 0x1B, 0x00, 0x50, 0x01, 0x72, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,
-   0x00, 0x00, 0xF1, 0xFF, 0xFF, 0xFF, 0x90, 0x01, 0x00, 0x20, 0x00, 0xED, 0x00,
-   0xE0, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x40,
-   0x03, 0x00, 0x00, 0x00, 0x00, 0xB0, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x06,
-   0x00, 0x00, 0x00, 0xF1, 0xFF, 0xFF, 0xFF, 0x00, 0x38, 0x00, 0x40, 0x00, 0x38,
-   0x00, 0x40, 0x82, 0x00, 0x00, 0x00, 0xE6, 0x6F, 0x7E, 0xC7, 0x00, 0x00, 0x00,
-   0x00, 0x02, 0x00, 0x00, 0x00, 0xE0, 0x07, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00,
-   0xDA, 0xB5, 0xE0, 0x03, 0x02, 0x00, 0x00, 0x00, 0x43, 0x5E, 0x12, 0x16, 0x01,
-   0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
-   0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
-   0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2B, 0x00,
-   0x00, 0x00, 0x10, 0x00, 0x2A, 0x00, 0x1B, 0x00, 0x50, 0x01, 0x72, 0x00, 0x01,
-   0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xF1, 0xFF, 0xFF, 0xFF, 0x90, 0x01,
-   0x00, 0x20, 0x00, 0xED, 0x00, 0xE0, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00,
-   0x00, 0x00, 0x38, 0x00, 0x40, 0x05, 0x00, 0x00, 0x00, 0x00, 0xD0, 0x00, 0x00,
-   0x00, 0x10, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xF1, 0xFF, 0xFF, 0xFF, 0x00,
-   0x38, 0x00, 0x40, 0x00, 0x38, 0x00, 0x40, 0x80, 0x00, 0x00, 0x00, 0xDD, 0xD1,
-   0x5D, 0x8E, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xF0, 0x07, 0x01,
-   0x00, 0x02, 0x00, 0x00, 0x00, 0x13, 0xF2, 0xE0, 0x03, 0x02, 0x00, 0x00, 0x00,
-   0x43, 0x5E, 0x12, 0x16, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
-   0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
-   0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00,
-   0x00, 0x02, 0x00, 0x2B, 0x00, 0x00, 0x00, 0x10, 0x00, 0x29, 0x00, 0x1B, 0x00,
-   0x50, 0x01, 0x72, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xF1,
-   0xFF, 0xFF, 0xFF, 0x90, 0x01, 0x00, 0x20, 0x00, 0xED, 0x00, 0xE0, 0x01, 0x00,
-   0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x40, 0x01, 0x00, 0x00,
-   0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00,
-   0x00, 0xED, 0x00, 0xE0, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02,
-   0x00, 0x00, 0x00, 0x68, 0x26, 0xC4, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
-   0x00, 0x00, 0x00, 0x08, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x4B, 0x2E, 0xE1,
-   0x03, 0x02, 0x00, 0x00, 0x00, 0x43, 0x5E, 0x12, 0x16, 0x01, 0x00, 0x00, 0x00,
-   0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
-   0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
-   0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x10,
-   0x00, 0x2A, 0x00, 0x1C, 0x00, 0x50, 0x01, 0x72, 0x00, 0x01, 0x00, 0x00, 0x00,
-   0x04, 0x00, 0x00, 0x00, 0xF1, 0xFF, 0xFF, 0xFF, 0x90, 0x01, 0x00, 0x20, 0x00,
-   0xED, 0x00, 0xE0, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x38,
-   0x00, 0x40, 0x04, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x10, 0x00,
-   0x00, 0x06, 0x00, 0x00, 0x00, 0xF1, 0xFF, 0xFF, 0xFF, 0x00, 0x38, 0x00, 0x40,
-   0x00, 0x38, 0x00, 0x40, 0x00, 0x38, 0x00, 0x40, 0xAD, 0x8B, 0x6A, 0x10, 0x00,
-   0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x08, 0x01, 0x00, 0x02, 0x00,
-   0x00, 0x00, 0x84, 0x6A, 0xE1, 0x03, 0x02, 0x00, 0x00, 0x00, 0x43, 0x5E, 0x12,
-   0x16, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
-   0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
-   0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00,
-   0x2A, 0x00, 0x00, 0x00, 0x10, 0x00, 0x29, 0x00, 0x1B, 0x00, 0x4E, 0x01, 0x72,
-   0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xF1, 0xFF, 0xFF, 0xFF,
-   0x90, 0x01, 0x00, 0x20, 0x00, 0xED, 0x00, 0xE0, 0x01, 0x00, 0x00, 0x00, 0x07,
-   0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x40, 0x06, 0x00, 0x00, 0x00, 0x00, 0xE0,
-   0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0xED, 0x00,
-   0xE0, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
-   0xFC, 0x94, 0x39, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00}
-};
-
-// This data has some leading 0s in the data part of at least one of the packets
-// that used to confuse the code.
-TEST_F(PacketFinderTest, LeadingZeros) {
-  ReceivePackets(kTestData1, 7);
-}
-
-// Tests to make sure that dropping any byte will result in missing that packet
-// and no future ones.
-TEST_F(PacketFinderTest, DropAnyByte) {
-  static constexpr auto kTestData = kTestData1;
-  for (int i = 0; i < static_cast<int>(kTestData.size()); ++i) {
-    SCOPED_TRACE("dropping byte " + ::std::to_string(i));
-    ::std::array<uint8_t, kTestData.size() - 1> data;
-    ::std::copy(kTestData.begin(), kTestData.begin() + i, data.begin());
-    ::std::copy(kTestData.begin() + i + 1, kTestData.end(),
-                data.begin() + i);
-    ReceivePackets(data, 7, ::std::array<int, 1>{{i / 148 + 1}});
-  }
-}
-
-// Tests to make sure that bitwise-NOTing any byte will result in missing that
-// packet and no future ones.
-TEST_F(PacketFinderTest, InvertAnyByte) {
-  static constexpr auto kTestData = kTestData1;
-  for (int i = 0; i < static_cast<int>(kTestData.size()); ++i) {
-    SCOPED_TRACE("inverting byte " + ::std::to_string(i));
-    ::std::array<uint8_t, kTestData.size()> data;
-    ::std::copy(kTestData.begin(), kTestData.end(), data.begin());
-    data.at(i) ^= 0xFF;
-    ReceivePackets(data, 7, ::std::array<int, 1>{{i / 148 + 1}});
-  }
-}
-
-}  // namespace testing
-}  // namespace bbb
diff --git a/bbb_cape/src/bbb/sensor_reader.cc b/bbb_cape/src/bbb/sensor_reader.cc
deleted file mode 100644
index b65df89..0000000
--- a/bbb_cape/src/bbb/sensor_reader.cc
+++ /dev/null
@@ -1,103 +0,0 @@
-#include "bbb/sensor_reader.h"
-
-#include <sys/types.h>
-#include <unistd.h>
-#include <inttypes.h>
-#include <stdint.h>
-
-#include "aos/linux_code/configuration.h"
-#include "aos/common/controls/sensor_generation.q.h"
-
-#include "bbb/crc.h"
-#include "bbb/hex_byte_reader.h"
-
-namespace bbb {
-namespace {
-
-uint32_t ReadChecksum(const ::std::string &filename) {
-  HexByteReader reader(filename);
-  {
-    static const size_t kSkipBytes = 0x4000;
-    size_t i = 0;
-    uint8_t buffer[1024];
-    while (i < kSkipBytes) {
-      ssize_t read = reader.ReadBytes(
-          buffer, ::std::min<size_t>(sizeof(buffer), kSkipBytes - i));
-      if (read < 0) {
-        LOG(FATAL, "error skipping bytes before actual data\n");
-      }
-      i += read;
-    }
-  }
-  return ::cape::CalculateChecksum(&reader);
-}
-
-}  // namespace
-
-SensorReader::SensorReader(const ::std::string &cape_code)
-    : hex_filename_(::std::string(::aos::configuration::GetRootDirectory()) +
-                    "/main_" + cape_code + ".hex"),
-      manager_(),
-      packet_finder_(manager_.uart(), DATA_STRUCT_SEND_SIZE - 4),
-      expected_checksum_(ReadChecksum(hex_filename_)) {
-  static_assert(
-      sizeof(::aos::controls::SensorGeneration::reader_pid) >= sizeof(pid_t),
-      "pid_t is really big?");
-  ResetHappened();
-}
-
-const DataStruct *SensorReader::ReadPacket() {
-  static constexpr ::aos::time::Time kResetTimeout =
-      ::aos::time::Time::InSeconds(5);
-
-  while (true) {
-    receive_failed_.Print();
-
-    ::aos::time::Time next_timeout = last_received_time_ + kResetTimeout;
-    if (next_timeout <= ::aos::time::Time::Now()) {
-      LOG(WARNING, "Too long since good packet received. Resetting.\n");
-      manager_.Reset();
-      ResetHappened();
-      continue;
-    }
-    if (packet_finder_.ReadPacket(next_timeout)) {
-      last_received_time_ = ::aos::time::Time::Now();
-      const DataStruct *data = packet_finder_.get_packet<DataStruct>();
-      if (data->flash_checksum != expected_checksum_) {
-        // TODO(brians): Fix the custom bootloader stuff and then change this to
-        // WARNING.
-        LOG(FATAL, "Cape code checksum is 0x%" PRIx32 ". Expected 0x%" PRIx32
-                   ". Reflashing.\n",
-            data->flash_checksum, expected_checksum_);
-        manager_.DownloadHex(hex_filename_);
-        ResetHappened();
-        continue;
-      }
-      if (data->timestamp < last_cape_timestamp_) {
-        // TODO(brians): A common failure mode of the cape is to send the same 2
-        // packets (from the ring buffer) out repeatedly. Detect that and reset
-        // it.
-        LOG(WARNING, "cape timestamp decreased: %" PRIu64 " to %" PRIu64 "\n",
-            last_cape_timestamp_, data->timestamp);
-        ResetHappened();
-        continue;
-      }
-      last_cape_timestamp_ = data->timestamp;
-      return data;
-    }
-    LOG_INTERVAL(receive_failed_);
-  }
-}
-
-::aos::time::Time SensorReader::GetCapeTimestamp() {
-  return ::aos::time::Time::InUS(last_cape_timestamp_ * 10);
-}
-
-void SensorReader::ResetHappened() {
-  ::aos::controls::sensor_generation.MakeWithBuilder().reader_pid(getpid())
-      .cape_resets(cape_resets_++).Send();
-  last_received_time_ = ::aos::time::Time::Now();
-  last_cape_timestamp_ = 0;
-}
-
-}  // namespace bbb
diff --git a/bbb_cape/src/bbb/sensor_reader.h b/bbb_cape/src/bbb/sensor_reader.h
deleted file mode 100644
index ed2fbcf..0000000
--- a/bbb_cape/src/bbb/sensor_reader.h
+++ /dev/null
@@ -1,64 +0,0 @@
-#ifndef BBB_CAPE_SRC_BBB_SENSOR_READER_H_
-#define BBB_CAPE_SRC_BBB_SENSOR_READER_H_
-
-#include <stdint.h>
-
-#include <string>
-
-#include "aos/common/time.h"
-#include "aos/common/macros.h"
-#include "aos/common/util/log_interval.h"
-
-#include "bbb/packet_finder.h"
-#include "bbb/data_struct.h"
-#include "bbb/cape_manager.h"
-
-namespace bbb {
-
-// A class that handles reading sensor values from the BBB cape.
-// Automatically handles the gyro data and exposes the other data for other code
-// to deal with.
-class SensorReader {
- public:
-  // The relative priority that tasks doing this should get run at (ie what to
-  // pass to ::aos::Init(int)).
-  static const int kRelativePriority = 5;
-
-  // cape_code is the name of the code that should be deployed to the cape if
-  // it's not already there.
-  explicit SensorReader(const ::std::string &cape_code);
-
-  // Reads in 1 data packet, handles the gyro data in it, and returns a pointer
-  // to it.
-  const DataStruct *ReadPacket();
-
-  // Returns the timestamp the cape sent with the most recently read packet.
-  ::aos::time::Time GetCapeTimestamp();
-
- private:
-  // Resets the cape.
-  void Reset(bool reflash);
-  // Called after a reset happens.
-  void ResetHappened();
-
-  const ::std::string hex_filename_;
-
-  CapeManager manager_;
-  PacketFinder packet_finder_;
-
-  const uint32_t expected_checksum_;
-
-  int cape_resets_ = 0;
-  ::aos::time::Time last_received_time_ = ::aos::time::Time::InSeconds(0);
-  uint64_t last_cape_timestamp_;
-
-  ::aos::util::SimpleLogInterval receive_failed_ =
-      ::aos::util::SimpleLogInterval(::aos::time::Time::InSeconds(0.2), WARNING,
-                                     "receive failed");
-
-  DISALLOW_COPY_AND_ASSIGN(SensorReader);
-};
-
-}  // namespace bbb
-
-#endif  // BBB_CAPE_SRC_BBB_SENSOR_READER_H_
diff --git a/bbb_cape/src/bbb/test_sensor_receiver.cc b/bbb_cape/src/bbb/test_sensor_receiver.cc
deleted file mode 100644
index 584acd3..0000000
--- a/bbb_cape/src/bbb/test_sensor_receiver.cc
+++ /dev/null
@@ -1,50 +0,0 @@
-#include <inttypes.h>
-
-#include "aos/linux_code/init.h"
-
-#include "bbb/sensor_reader.h"
-
-#ifndef M_PI
-#define M_PI 3.14159265358979323846
-#endif
-
-namespace {
-
-double gyro_translate(int64_t in) {
-  return in / 16.0 / 1000.0 / (180.0 / M_PI);
-}
-
-void PacketReceived(const ::bbb::DataStruct *data,
-                    const ::aos::time::Time &cape_timestamp) {
-  LOG(DEBUG, "cape timestamp %010" PRId32 ".%09" PRId32 "s\n",
-      cape_timestamp.sec(), cape_timestamp.nsec());
-  if (data->uninitialized_gyro) {
-    LOG(DEBUG, "uninitialized gyro\n");
-  } else if (data->zeroing_gyro) {
-    LOG(DEBUG, "zeroing gyro\n");
-  } else if (data->bad_gyro) {
-    LOG(ERROR, "bad gyro\n");
-  } else if (data->old_gyro_reading) {
-    LOG(WARNING, "old/bad gyro reading\n");
-  } else {
-    LOG(DEBUG, "gyro reading is %f\n", gyro_translate(data->gyro_angle));
-  }
-
-  LOG(DEBUG, "digitals=%x\n", data->test.digitals);
-  for (int i = 0; i < 8; ++i) {
-    LOG(DEBUG, "enc[%d]=%" PRId32 "\n", i, data->test.encoders[i]);
-    LOG(DEBUG, "adc[%d]=%f (%" PRIx16 ")\n", i,
-        3.3 * data->test.analogs[i] / 0x3FF, data->test.analogs[i]);
-  }
-}
-
-}  // namespace
-
-int main() {
-  ::aos::Init(::bbb::SensorReader::kRelativePriority);
-  ::bbb::SensorReader reader("test");
-  while (true) {
-    PacketReceived(reader.ReadPacket(), reader.GetCapeTimestamp());
-  }
-  ::aos::Cleanup();
-}
diff --git a/bbb_cape/src/bbb/uart_reader.cc b/bbb_cape/src/bbb/uart_reader.cc
deleted file mode 100644
index 3221980..0000000
--- a/bbb_cape/src/bbb/uart_reader.cc
+++ /dev/null
@@ -1,91 +0,0 @@
-#include "bbb/uart_reader.h"
-
-#include <errno.h>
-#include <fcntl.h>
-#include <linux/serial.h>
-#include <unistd.h>
-
-#include "aos/common/logging/logging.h"
-
-#include "bbb/export_uart.h"
-
-// This is the code for receiving data from the cape via UART.
-// fragment active.
-// `su -c "echo BB-UART1 > /sys/devices/bone_capemgr.*/slots"` works, but
-// you have to do it every time. It is also possible to set it up to do that
-// every time it boots.
-
-namespace bbb {
-namespace {
-
-int open_device() {
-  ExportUart();
-
-  return open(UartDevice(), O_RDWR | O_NOCTTY | O_NONBLOCK);
-}
-
-}  // namespace
-
-extern "C" {
-
-// Sets all of the weird, annoying TTY flags on fd. In a separate file because
-// the structure it uses is so weird and annoying and carries so much baggage it
-// messes up all the #includes in whatever file it's used in.
-// Defined in uart_reader_termios2.c.
-extern int aos_uart_reader_set_tty_options(int fd, int baud_rate);
-
-}  // extern "C"
-
-UartReader::UartReader(int32_t baud_rate)
-    : fd_(open_device()) {
-  
-  if (fd_ < 0) {
-    PLOG(FATAL, "open(%s, O_RDWR | O_NOCTTY | O_NOBLOCK) failed", UartDevice());
-  }
-
-  if (aos_uart_reader_set_tty_options(fd_, baud_rate) != 0) {
-    PLOG(FATAL, "aos_uart_reader_set_tty_options(%d) failed", fd_);
-  }
-}
-
-UartReader::~UartReader() {
-  if (fd_ > 0) close(fd_);
-}
-
-ssize_t UartReader::ReadBytes(uint8_t *dest, size_t max_bytes,
-                              const ::aos::time::Time &timeout_time) {
-  fd_set fds;
-  FD_ZERO(&fds);
-  do {
-    ::aos::time::Time timeout = timeout_time - ::aos::time::Time::Now();
-    if (timeout < ::aos::time::Time(0, 0)) return -2;
-    struct timeval timeout_timeval = timeout.ToTimeval();
-    FD_SET(fd_, &fds);
-    switch (select(fd_ + 1, &fds, NULL, NULL, &timeout_timeval)) {
-      case 0:
-        return -2;
-      case -1:
-        continue;
-      case 1:
-        break;
-      default:
-        LOG(WARNING, "unknown select return value\n");
-        return -1;
-    }
-    ssize_t r = read(fd_, dest, max_bytes);
-    if (r != -1) return r;
-  } while (errno == EINTR);
-  return -1;
-}
-
-bool UartReader::WriteBytes(uint8_t *bytes, size_t number_bytes) {
-  size_t written = 0;
-  while (written < number_bytes) {
-    ssize_t r = write(fd_, &bytes[written], number_bytes - written);
-    if (r == -1) return false;
-    written += r;
-  }
-  return true;
-}
-
-}  // namespace bbb
diff --git a/bbb_cape/src/bbb/uart_reader.h b/bbb_cape/src/bbb/uart_reader.h
deleted file mode 100644
index 7861003..0000000
--- a/bbb_cape/src/bbb/uart_reader.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef BBB_CAPE_SRC_BBB_UART_READER_H_
-#define BBB_CAPE_SRC_BBB_UART_READER_H_
-
-#include <stdint.h>
-#include <string.h>
-#include <sys/select.h>
-
-#include "aos/common/time.h"
-#include "aos/common/macros.h"
-
-#include "bbb/byte_io.h"
-
-namespace bbb {
-
-class UartReader : public ByteReaderWriterInterface {
- public:
-  explicit UartReader(int32_t baud_rate);
-  virtual ~UartReader();
-
-  virtual ssize_t ReadBytes(
-      uint8_t *dest, size_t max_bytes,
-      const ::aos::time::Time &timeout_time = ::aos::time::Time(0, 0)) override;
-  virtual bool WriteBytes(uint8_t *bytes, size_t number_bytes) override;
-
- private:
-  const int fd_;
-
-  DISALLOW_COPY_AND_ASSIGN(UartReader);
-};
-
-}  // namespace bbb
-
-#endif
diff --git a/bbb_cape/src/bbb/uart_reader_main.cc b/bbb_cape/src/bbb/uart_reader_main.cc
deleted file mode 100644
index 9178209..0000000
--- a/bbb_cape/src/bbb/uart_reader_main.cc
+++ /dev/null
@@ -1,43 +0,0 @@
-#include <stdint.h>
-#include <inttypes.h>
-
-#include "aos/linux_code/init.h"
-#include "aos/common/logging/logging_impl.h"
-#include "aos/common/time.h"
-
-#include "bbb/uart_reader.h"
-#include "bbb/packet_finder.h"
-#include "bbb/data_struct.h"
-
-int main() {
-  ::aos::Init();
-
-  ::bbb::UartReader reader(750000);
-  ::bbb::PacketFinder receiver(&reader, DATA_STRUCT_SEND_SIZE - 4);
-
-  while (true) {
-    if (!receiver.ReadPacket(::aos::time::Time::Now() +
-                             ::aos::time::Time::InSeconds(1.5))) {
-      LOG(WARNING, "Could not read a packet.\n");
-      continue;
-    }
-
-    const ::bbb::DataStruct *packet = receiver.get_packet< ::bbb::DataStruct>();
-    LOG(DEBUG, "got one!\n");
-    LOG(DEBUG, "timestamp %" PRIu64 "\n", packet->timestamp);
-    LOG(DEBUG, "gyro old=%d uninit=%d z=%d bad=%d %" PRId64 " \n",
-        packet->old_gyro_reading, packet->uninitialized_gyro,
-        packet->zeroing_gyro, packet->bad_gyro, packet->gyro_angle);
-    for (int i = 0; i < 8; ++i) {
-      LOG(DEBUG, "enc[%d]=%" PRId32 "\n", i, packet->test.encoders[i]);
-      LOG(DEBUG, "adc[%d]=%f (%" PRIx16 ")\n", i,
-          3.3 * packet->test.analogs[i] / 0x3FF, packet->test.analogs[i]);
-    }
-    LOG(DEBUG, "digitals=%x\n", packet->test.digitals);
-    LOG(DEBUG, "+=%" PRId32 "/%" PRIu8 " and -=%" PRId32 "/%" PRIu8 "\n",
-        packet->test.posedge_value, packet->test.posedge_count,
-        packet->test.negedge_value, packet->test.negedge_count);
-  }
-
-  ::aos::Cleanup();
-}
diff --git a/bbb_cape/src/bbb/uart_reader_termios2.c b/bbb_cape/src/bbb/uart_reader_termios2.c
deleted file mode 100644
index 4ee609f..0000000
--- a/bbb_cape/src/bbb/uart_reader_termios2.c
+++ /dev/null
@@ -1,46 +0,0 @@
-// This file is to work around #include conflicts when including the kernel's
-// termios.h file to get the new termios2 struct.
-
-#include <asm/termios.h>
-
-// We can't even #include <sys/ioctl.h>...
-extern int ioctl(int d, int request, ...);
-
-int aos_uart_reader_set_tty_options(int fd, int baud_rate) {
-	struct termios2 options;
-	if (ioctl(fd, TCGETS2, &options) != 0) {
-    return -1;
-	}
-
-	options.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR |
-											 ICRNL | IXON);
-	options.c_oflag &= ~OPOST;
-	options.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
-	options.c_cflag &= ~(CSIZE | PARENB);
-	options.c_cflag |= CS8;
-
-	options.c_ispeed = baud_rate;
-	options.c_ospeed = baud_rate;
-	options.c_cflag = (options.c_cflag & ~CBAUD) | BOTHER;
-
-  options.c_cflag |= CLOCAL;  // ignore modem flow control
-  options.c_cflag |= CREAD;  // enable receiver
-  options.c_cflag &= ~CRTSCTS;  // disable flow control
-  //options.c_cflag |= PARENB;  // enable parity; defaults to even
-  options.c_cflag = (options.c_cflag & ~CSIZE) | CS8;  // 8 bits
-  options.c_cflag &= ~CSTOPB;  // 1 stop bit
-  options.c_iflag = 0;
-  // Replace any received characters with parity or framing errors with 0s.
-  options.c_iflag = (options.c_iflag & ~(IGNPAR | PARMRK)) | INPCK;
-  //options.c_iflag |= IGNCR | PARMRK;
-  options.c_oflag = 0;
-  options.c_lflag = 0;
-  options.c_cc[VMIN] = 20;
-  options.c_cc[VTIME] = 0;
-
-	if (ioctl(fd, TCSETS2, &options) != 0) {
-    return -1;
-	}
-
-  return 0;
-}
diff --git a/bbb_cape/src/cape/.gitignore b/bbb_cape/src/cape/.gitignore
deleted file mode 100644
index 01dd76a..0000000
--- a/bbb_cape/src/cape/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-.obj/
diff --git a/bbb_cape/src/cape/CMSIS/STM32F2XX.h b/bbb_cape/src/cape/CMSIS/STM32F2XX.h
deleted file mode 100644
index 0f676b0..0000000
--- a/bbb_cape/src/cape/CMSIS/STM32F2XX.h
+++ /dev/null
@@ -1,6720 +0,0 @@
-/**
-  ******************************************************************************
-  * @file    stm32f2xx.h
-  * @author  MCD Application Team
-  * @version V1.0.0
-  * @date    18-April-2011
-  * @brief   CMSIS Cortex-M3 Device Peripheral Access Layer Header File. 
-  *          This file contains all the peripheral register's definitions, bits 
-  *          definitions and memory mapping for STM32F2xx devices.
-  *            
-  *          The file is the unique include file that the application programmer
-  *          is using in the C source code, usually in main.c. This file contains:
-  *           - Configuration section that allows to select:
-  *           - Data structures and the address mapping for all peripherals
-  *           - Peripheral's registers declarations and bits definition
-  *           - Macros to access peripheralÂ’s registers hardware
-  *  
-  ******************************************************************************
-  * @attention
-  *
-  * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
-  * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
-  * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
-  * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
-  * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
-  * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
-  *
-  * <h2><center>&copy; COPYRIGHT 2011 STMicroelectronics</center></h2>
-  ******************************************************************************  
-  */ 
-
-#ifndef __STM32F2xx_H
-#define __STM32F2xx_H
-
-#ifdef __cplusplus
- extern "C" {
-#endif /* __cplusplus */
-  
-/**
- * @brief STM32F2Xxx Standard Peripherals Library version number V1.0.0
-   */
-#define __STM32F2XX_STDPERIPH_VERSION_MAIN   (0x01) /*!< [31:24] main version */                                  
-#define __STM32F2XX_STDPERIPH_VERSION_SUB1   (0x00) /*!< [23:16] sub1 version */
-#define __STM32F2XX_STDPERIPH_VERSION_SUB2   (0x00) /*!< [15:8]  sub2 version */
-#define __STM32F2XX_STDPERIPH_VERSION_RC     (0x00) /*!< [7:0]  release candidate */ 
-#define __STM32F2XX_STDPERIPH_VERSION        ((__STM32F2XX_STDPERIPH_VERSION_MAIN << 24)\
-                                             |(__STM32F2XX_STDPERIPH_VERSION_SUB1 << 16)\
-                                             |(__STM32F2XX_STDPERIPH_VERSION_SUB2 << 8)\
-                                             |(__STM32F2XX_STDPERIPH_VERSION_RC))
-                                             
-/**
- * @brief Configuration of the Cortex-M3 Processor and Core Peripherals 
- */
-#define __MPU_PRESENT             1 /*!< STM32F2XX provide an MPU */
-#define __NVIC_PRIO_BITS          4 /*!< STM32F2XX uses 4 Bits for the Priority Levels */
-#define __Vendor_SysTickConfig    0 /*!< Set to 1 if different SysTick Config is used */
-
-/**
- * @brief STM32F2XX Interrupt Number Definition, according to the selected device 
- *        in @ref Library_configuration_section 
- */
-typedef enum IRQn
-{
-/******  Cortex-M3 Processor Exceptions Numbers ****************************************************************/
-  NonMaskableInt_IRQn         = -14,    /*!< 2 Non Maskable Interrupt                                          */
-  MemoryManagement_IRQn       = -12,    /*!< 4 Cortex-M3 Memory Management Interrupt                           */
-  BusFault_IRQn               = -11,    /*!< 5 Cortex-M3 Bus Fault Interrupt                                   */
-  UsageFault_IRQn             = -10,    /*!< 6 Cortex-M3 Usage Fault Interrupt                                 */
-  SVCall_IRQn                 = -5,     /*!< 11 Cortex-M3 SV Call Interrupt                                    */
-  DebugMonitor_IRQn           = -4,     /*!< 12 Cortex-M3 Debug Monitor Interrupt                              */
-  PendSV_IRQn                 = -2,     /*!< 14 Cortex-M3 Pend SV Interrupt                                    */
-  SysTick_IRQn                = -1,     /*!< 15 Cortex-M3 System Tick Interrupt                                */
-/******  STM32 specific Interrupt Numbers **********************************************************************/
-  WWDG_IRQn                   = 0,      /*!< Window WatchDog Interrupt                                         */
-  PVD_IRQn                    = 1,      /*!< PVD through EXTI Line detection Interrupt                         */
-  TAMP_STAMP_IRQn             = 2,      /*!< Tamper and TimeStamp interrupts through the EXTI line             */
-  RTC_WKUP_IRQn               = 3,      /*!< RTC Wakeup interrupt through the EXTI line                        */
-  FLASH_IRQn                  = 4,      /*!< FLASH global Interrupt                                            */
-  RCC_IRQn                    = 5,      /*!< RCC global Interrupt                                              */
-  EXTI0_IRQn                  = 6,      /*!< EXTI Line0 Interrupt                                              */
-  EXTI1_IRQn                  = 7,      /*!< EXTI Line1 Interrupt                                              */
-  EXTI2_IRQn                  = 8,      /*!< EXTI Line2 Interrupt                                              */
-  EXTI3_IRQn                  = 9,      /*!< EXTI Line3 Interrupt                                              */
-  EXTI4_IRQn                  = 10,     /*!< EXTI Line4 Interrupt                                              */
-  DMA1_Stream0_IRQn           = 11,     /*!< DMA1 Stream 0 global Interrupt                                    */
-  DMA1_Stream1_IRQn           = 12,     /*!< DMA1 Stream 1 global Interrupt                                    */
-  DMA1_Stream2_IRQn           = 13,     /*!< DMA1 Stream 2 global Interrupt                                    */
-  DMA1_Stream3_IRQn           = 14,     /*!< DMA1 Stream 3 global Interrupt                                    */
-  DMA1_Stream4_IRQn           = 15,     /*!< DMA1 Stream 4 global Interrupt                                    */
-  DMA1_Stream5_IRQn           = 16,     /*!< DMA1 Stream 5 global Interrupt                                    */
-  DMA1_Stream6_IRQn           = 17,     /*!< DMA1 Stream 6 global Interrupt                                    */
-  ADC_IRQn                    = 18,     /*!< ADC1, ADC2 and ADC3 global Interrupts                             */
-  CAN1_TX_IRQn                = 19,     /*!< CAN1 TX Interrupt                                                 */
-  CAN1_RX0_IRQn               = 20,     /*!< CAN1 RX0 Interrupt                                                */
-  CAN1_RX1_IRQn               = 21,     /*!< CAN1 RX1 Interrupt                                                */
-  CAN1_SCE_IRQn               = 22,     /*!< CAN1 SCE Interrupt                                                */
-  EXTI9_5_IRQn                = 23,     /*!< External Line[9:5] Interrupts                                     */
-  TIM1_BRK_TIM9_IRQn          = 24,     /*!< TIM1 Break interrupt and TIM9 global interrupt                    */
-  TIM1_UP_TIM10_IRQn          = 25,     /*!< TIM1 Update Interrupt and TIM10 global interrupt                  */
-  TIM1_TRG_COM_TIM11_IRQn     = 26,     /*!< TIM1 Trigger and Commutation Interrupt and TIM11 global interrupt */
-  TIM1_CC_IRQn                = 27,     /*!< TIM1 Capture Compare Interrupt                                    */
-  TIM2_IRQn                   = 28,     /*!< TIM2 global Interrupt                                             */
-  TIM3_IRQn                   = 29,     /*!< TIM3 global Interrupt                                             */
-  TIM4_IRQn                   = 30,     /*!< TIM4 global Interrupt                                             */
-  I2C1_EV_IRQn                = 31,     /*!< I2C1 Event Interrupt                                              */
-  I2C1_ER_IRQn                = 32,     /*!< I2C1 Error Interrupt                                              */
-  I2C2_EV_IRQn                = 33,     /*!< I2C2 Event Interrupt                                              */
-  I2C2_ER_IRQn                = 34,     /*!< I2C2 Error Interrupt                                              */  
-  SPI1_IRQn                   = 35,     /*!< SPI1 global Interrupt                                             */
-  SPI2_IRQn                   = 36,     /*!< SPI2 global Interrupt                                             */
-  USART1_IRQn                 = 37,     /*!< USART1 global Interrupt                                           */
-  USART2_IRQn                 = 38,     /*!< USART2 global Interrupt                                           */
-  USART3_IRQn                 = 39,     /*!< USART3 global Interrupt                                           */
-  EXTI15_10_IRQn              = 40,     /*!< External Line[15:10] Interrupts                                   */
-  RTC_Alarm_IRQn              = 41,     /*!< RTC Alarm (A and B) through EXTI Line Interrupt                   */
-  OTG_FS_WKUP_IRQn            = 42,     /*!< USB OTG FS Wakeup through EXTI line interrupt                     */    
-  TIM8_BRK_TIM12_IRQn         = 43,     /*!< TIM8 Break Interrupt and TIM12 global interrupt                   */
-  TIM8_UP_TIM13_IRQn          = 44,     /*!< TIM8 Update Interrupt and TIM13 global interrupt                  */
-  TIM8_TRG_COM_TIM14_IRQn     = 45,     /*!< TIM8 Trigger and Commutation Interrupt and TIM14 global interrupt */
-  TIM8_CC_IRQn                = 46,     /*!< TIM8 Capture Compare Interrupt                                    */
-  DMA1_Stream7_IRQn           = 47,     /*!< DMA1 Stream7 Interrupt                                            */
-  FSMC_IRQn                   = 48,     /*!< FSMC global Interrupt                                             */
-  SDIO_IRQn                   = 49,     /*!< SDIO global Interrupt                                             */
-  TIM5_IRQn                   = 50,     /*!< TIM5 global Interrupt                                             */
-  SPI3_IRQn                   = 51,     /*!< SPI3 global Interrupt                                             */
-  UART4_IRQn                  = 52,     /*!< UART4 global Interrupt                                            */
-  UART5_IRQn                  = 53,     /*!< UART5 global Interrupt                                            */
-  TIM6_DAC_IRQn               = 54,     /*!< TIM6 global and DAC1&2 underrun error  interrupts                 */
-  TIM7_IRQn                   = 55,     /*!< TIM7 global interrupt                                             */
-  DMA2_Stream0_IRQn           = 56,     /*!< DMA2 Stream 0 global Interrupt                                    */
-  DMA2_Stream1_IRQn           = 57,     /*!< DMA2 Stream 1 global Interrupt                                    */
-  DMA2_Stream2_IRQn           = 58,     /*!< DMA2 Stream 2 global Interrupt                                    */
-  DMA2_Stream3_IRQn           = 59,     /*!< DMA2 Stream 3 global Interrupt                                    */
-  DMA2_Stream4_IRQn           = 60,     /*!< DMA2 Stream 4 global Interrupt                                    */
-  ETH_IRQn                    = 61,     /*!< Ethernet global Interrupt                                         */
-  ETH_WKUP_IRQn               = 62,     /*!< Ethernet Wakeup through EXTI line Interrupt                       */
-  CAN2_TX_IRQn                = 63,     /*!< CAN2 TX Interrupt                                                 */
-  CAN2_RX0_IRQn               = 64,     /*!< CAN2 RX0 Interrupt                                                */
-  CAN2_RX1_IRQn               = 65,     /*!< CAN2 RX1 Interrupt                                                */
-  CAN2_SCE_IRQn               = 66,     /*!< CAN2 SCE Interrupt                                                */
-  OTG_FS_IRQn                 = 67,     /*!< USB OTG FS global Interrupt                                       */
-  DMA2_Stream5_IRQn           = 68,     /*!< DMA2 Stream 5 global interrupt                                    */
-  DMA2_Stream6_IRQn           = 69,     /*!< DMA2 Stream 6 global interrupt                                    */
-  DMA2_Stream7_IRQn           = 70,     /*!< DMA2 Stream 7 global interrupt                                    */
-  USART6_IRQn                 = 71,     /*!< USART6 global interrupt                                           */ 
-  I2C3_EV_IRQn                = 72,     /*!< I2C3 event interrupt                                              */
-  I2C3_ER_IRQn                = 73,     /*!< I2C3 error interrupt                                              */
-  OTG_HS_EP1_OUT_IRQn         = 74,     /*!< USB OTG HS End Point 1 Out global interrupt                       */
-  OTG_HS_EP1_IN_IRQn          = 75,     /*!< USB OTG HS End Point 1 In global interrupt                        */
-  OTG_HS_WKUP_IRQn            = 76,     /*!< USB OTG HS Wakeup through EXTI interrupt                          */
-  OTG_HS_IRQn                 = 77,     /*!< USB OTG HS global interrupt                                       */
-  DCMI_IRQn                   = 78,     /*!< DCMI global interrupt                                             */
-  CRYP_IRQn                   = 79,     /*!< CRYP crypto global interrupt                                      */
-  HASH_RNG_IRQn               = 80      /*!< Hash and Rng global interrupt                                     */
-} IRQn_Type;
-
-#include "core_cm3.h"
-#include <stdint.h>
-
-/*!< STM32F10x Standard Peripheral Library old types (maintained for legacy purpose) */
-typedef int32_t  s32;
-typedef int16_t s16;
-typedef int8_t  s8;
-
-typedef const int32_t sc32;  /*!< Read Only */
-typedef const int16_t sc16;  /*!< Read Only */
-typedef const int8_t sc8;   /*!< Read Only */
-
-typedef __IO int32_t  vs32;
-typedef __IO int16_t  vs16;
-typedef __IO int8_t   vs8;
-
-typedef __I int32_t vsc32;  /*!< Read Only */
-typedef __I int16_t vsc16;  /*!< Read Only */
-typedef __I int8_t vsc8;   /*!< Read Only */
-
-typedef uint32_t  u32;
-typedef uint16_t u16;
-typedef uint8_t  u8;
-
-typedef const uint32_t uc32;  /*!< Read Only */
-typedef const uint16_t uc16;  /*!< Read Only */
-typedef const uint8_t uc8;   /*!< Read Only */
-
-typedef __IO uint32_t  vu32;
-typedef __IO uint16_t vu16;
-typedef __IO uint8_t  vu8;
-
-typedef __I uint32_t vuc32;  /*!< Read Only */
-typedef __I uint16_t vuc16;  /*!< Read Only */
-typedef __I uint8_t vuc8;   /*!< Read Only */
-
-typedef enum {RESET = 0, SET = !RESET} FlagStatus, ITStatus;
-
-typedef enum {DISABLE = 0, ENABLE = !DISABLE} FunctionalState;
-#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))
-
-typedef enum {ERROR = 0, SUCCESS = !ERROR} ErrorStatus;
-
-/** 
-  * @brief Analog to Digital Converter  
-  */
-
-typedef struct
-{
-  __IO uint32_t SR;     /*!< ADC status register,                         Address offset: 0x00 */
-  __IO uint32_t CR1;    /*!< ADC control register 1,                      Address offset: 0x04 */      
-  __IO uint32_t CR2;    /*!< ADC control register 2,                      Address offset: 0x08 */
-  __IO uint32_t SMPR1;  /*!< ADC sample time register 1,                  Address offset: 0x0C */
-  __IO uint32_t SMPR2;  /*!< ADC sample time register 2,                  Address offset: 0x10 */
-  __IO uint32_t JOFR1;  /*!< ADC injected channel data offset register 1, Address offset: 0x14 */
-  __IO uint32_t JOFR2;  /*!< ADC injected channel data offset register 2, Address offset: 0x18 */
-  __IO uint32_t JOFR3;  /*!< ADC injected channel data offset register 3, Address offset: 0x1C */
-  __IO uint32_t JOFR4;  /*!< ADC injected channel data offset register 4, Address offset: 0x20 */
-  __IO uint32_t HTR;    /*!< ADC watchdog higher threshold register,      Address offset: 0x24 */
-  __IO uint32_t LTR;    /*!< ADC watchdog lower threshold register,       Address offset: 0x28 */
-  __IO uint32_t SQR1;   /*!< ADC regular sequence register 1,             Address offset: 0x2C */
-  __IO uint32_t SQR2;   /*!< ADC regular sequence register 2,             Address offset: 0x30 */
-  __IO uint32_t SQR3;   /*!< ADC regular sequence register 3,             Address offset: 0x34 */
-  __IO uint32_t JSQR;   /*!< ADC injected sequence register,              Address offset: 0x38*/
-  __IO uint32_t JDR1;   /*!< ADC injected data register 1,                Address offset: 0x3C */
-  __IO uint32_t JDR2;   /*!< ADC injected data register 2,                Address offset: 0x40 */
-  __IO uint32_t JDR3;   /*!< ADC injected data register 3,                Address offset: 0x44 */
-  __IO uint32_t JDR4;   /*!< ADC injected data register 4,                Address offset: 0x48 */
-  __IO uint32_t DR;     /*!< ADC regular data register,                   Address offset: 0x4C */
-} ADC_TypeDef;
-
-typedef struct
-{
-  __IO uint32_t CSR;    /*!< ADC Common status register,                  Address offset: ADC1 base address + 0x300 */
-  __IO uint32_t CCR;    /*!< ADC common control register,                 Address offset: ADC1 base address + 0x304 */
-  __IO uint32_t CDR;    /*!< ADC common regular data register for dual
-                             AND triple modes,                            Address offset: ADC1 base address + 0x308 */
-} ADC_Common_TypeDef;
-
-
-/** 
-  * @brief Controller Area Network TxMailBox 
-  */
-
-typedef struct
-{
-  __IO uint32_t TIR;  /*!< CAN TX mailbox identifier register */
-  __IO uint32_t TDTR; /*!< CAN mailbox data length control and time stamp register */
-  __IO uint32_t TDLR; /*!< CAN mailbox data low register */
-  __IO uint32_t TDHR; /*!< CAN mailbox data high register */
-} CAN_TxMailBox_TypeDef;
-
-/** 
-  * @brief Controller Area Network FIFOMailBox 
-  */
-  
-typedef struct
-{
-  __IO uint32_t RIR;  /*!< CAN receive FIFO mailbox identifier register */
-  __IO uint32_t RDTR; /*!< CAN receive FIFO mailbox data length control and time stamp register */
-  __IO uint32_t RDLR; /*!< CAN receive FIFO mailbox data low register */
-  __IO uint32_t RDHR; /*!< CAN receive FIFO mailbox data high register */
-} CAN_FIFOMailBox_TypeDef;
-
-/** 
-  * @brief Controller Area Network FilterRegister 
-  */
-  
-typedef struct
-{
-  __IO uint32_t FR1; /*!< CAN Filter bank register 1 */
-  __IO uint32_t FR2; /*!< CAN Filter bank register 1 */
-} CAN_FilterRegister_TypeDef;
-
-/** 
-  * @brief Controller Area Network 
-  */
-  
-typedef struct
-{
-  __IO uint32_t              MCR;                 /*!< CAN master control register,         Address offset: 0x00          */
-  __IO uint32_t              MSR;                 /*!< CAN master status register,          Address offset: 0x04          */
-  __IO uint32_t              TSR;                 /*!< CAN transmit status register,        Address offset: 0x08          */
-  __IO uint32_t              RF0R;                /*!< CAN receive FIFO 0 register,         Address offset: 0x0C          */
-  __IO uint32_t              RF1R;                /*!< CAN receive FIFO 1 register,         Address offset: 0x10          */
-  __IO uint32_t              IER;                 /*!< CAN interrupt enable register,       Address offset: 0x14          */
-  __IO uint32_t              ESR;                 /*!< CAN error status register,           Address offset: 0x18          */
-  __IO uint32_t              BTR;                 /*!< CAN bit timing register,             Address offset: 0x1C          */
-  uint32_t                   RESERVED0[88];       /*!< Reserved, 0x020 - 0x17F                                            */
-  CAN_TxMailBox_TypeDef      sTxMailBox[3];       /*!< CAN Tx MailBox,                      Address offset: 0x180 - 0x1AC */
-  CAN_FIFOMailBox_TypeDef    sFIFOMailBox[2];     /*!< CAN FIFO MailBox,                    Address offset: 0x1B0 - 0x1CC */
-  uint32_t                   RESERVED1[12];       /*!< Reserved, 0x1D0 - 0x1FF                                            */
-  __IO uint32_t              FMR;                 /*!< CAN filter master register,          Address offset: 0x200         */
-  __IO uint32_t              FM1R;                /*!< CAN filter mode register,            Address offset: 0x204         */
-  uint32_t                   RESERVED2;           /*!< Reserved, 0x208                                                    */
-  __IO uint32_t              FS1R;                /*!< CAN filter scale register,           Address offset: 0x20C         */
-  uint32_t                   RESERVED3;           /*!< Reserved, 0x210                                                    */
-  __IO uint32_t              FFA1R;               /*!< CAN filter FIFO assignment register, Address offset: 0x214         */
-  uint32_t                   RESERVED4;           /*!< Reserved, 0x218                                                    */
-  __IO uint32_t              FA1R;                /*!< CAN filter activation register,      Address offset: 0x21C         */
-  uint32_t                   RESERVED5[8];        /*!< Reserved, 0x220-0x23F                                              */ 
-  CAN_FilterRegister_TypeDef sFilterRegister[28]; /*!< CAN Filter Register,                 Address offset: 0x240-0x31C   */
-} CAN_TypeDef;
-
-/** 
-  * @brief CRC calculation unit 
-  */
-
-typedef struct
-{
-  __IO uint32_t DR;         /*!< CRC Data register,             Address offset: 0x00 */
-  __IO uint8_t  IDR;        /*!< CRC Independent data register, Address offset: 0x04 */
-  uint8_t       RESERVED0;  /*!< Reserved, 0x05                                      */
-  uint16_t      RESERVED1;  /*!< Reserved, 0x06                                      */
-  __IO uint32_t CR;         /*!< CRC Control register,          Address offset: 0x08 */
-} CRC_TypeDef;
-
-/** 
-  * @brief Digital to Analog Converter
-  */
-
-typedef struct
-{
-  __IO uint32_t CR;       /*!< DAC control register,                                    Address offset: 0x00 */
-  __IO uint32_t SWTRIGR;  /*!< DAC software trigger register,                           Address offset: 0x04 */
-  __IO uint32_t DHR12R1;  /*!< DAC channel1 12-bit right-aligned data holding register, Address offset: 0x08 */
-  __IO uint32_t DHR12L1;  /*!< DAC channel1 12-bit left aligned data holding register,  Address offset: 0x0C */
-  __IO uint32_t DHR8R1;   /*!< DAC channel1 8-bit right aligned data holding register,  Address offset: 0x10 */
-  __IO uint32_t DHR12R2;  /*!< DAC channel2 12-bit right aligned data holding register, Address offset: 0x14 */
-  __IO uint32_t DHR12L2;  /*!< DAC channel2 12-bit left aligned data holding register,  Address offset: 0x18 */
-  __IO uint32_t DHR8R2;   /*!< DAC channel2 8-bit right-aligned data holding register,  Address offset: 0x1C */
-  __IO uint32_t DHR12RD;  /*!< Dual DAC 12-bit right-aligned data holding register,     Address offset: 0x20 */
-  __IO uint32_t DHR12LD;  /*!< DUAL DAC 12-bit left aligned data holding register,      Address offset: 0x24 */
-  __IO uint32_t DHR8RD;   /*!< DUAL DAC 8-bit right aligned data holding register,      Address offset: 0x28 */
-  __IO uint32_t DOR1;     /*!< DAC channel1 data output register,                       Address offset: 0x2C */
-  __IO uint32_t DOR2;     /*!< DAC channel2 data output register,                       Address offset: 0x30 */
-  __IO uint32_t SR;       /*!< DAC status register,                                     Address offset: 0x34 */
-} DAC_TypeDef;
-
-/** 
-  * @brief Debug MCU
-  */
-
-typedef struct
-{
-  __IO uint32_t IDCODE;  /*!< MCU device ID code,               Address offset: 0x00 */
-  __IO uint32_t CR;      /*!< Debug MCU configuration register, Address offset: 0x04 */
-  __IO uint32_t APB1FZ;  /*!< Debug MCU APB1 freeze register,   Address offset: 0x08 */
-  __IO uint32_t APB2FZ;  /*!< Debug MCU APB2 freeze register,   Address offset: 0x0C */
-}DBGMCU_TypeDef;
-
-/** 
-  * @brief DCMI
-  */
-
-typedef struct
-{
-  __IO uint32_t CR;       /*!< DCMI control register 1,                       Address offset: 0x00 */
-  __IO uint32_t SR;       /*!< DCMI status register,                          Address offset: 0x04 */
-  __IO uint32_t RISR;     /*!< DCMI raw interrupt status register,            Address offset: 0x08 */
-  __IO uint32_t IER;      /*!< DCMI interrupt enable register,                Address offset: 0x0C */
-  __IO uint32_t MISR;     /*!< DCMI masked interrupt status register,         Address offset: 0x10 */
-  __IO uint32_t ICR;      /*!< DCMI interrupt clear register,                 Address offset: 0x14 */
-  __IO uint32_t ESCR;     /*!< DCMI embedded synchronization code register,   Address offset: 0x18 */
-  __IO uint32_t ESUR;     /*!< DCMI embedded synchronization unmask register, Address offset: 0x1C */
-  __IO uint32_t CWSTRTR;  /*!< DCMI crop window start,                        Address offset: 0x20 */
-  __IO uint32_t CWSIZER;  /*!< DCMI crop window size,                         Address offset: 0x24 */
-  __IO uint32_t DR;       /*!< DCMI data register,                            Address offset: 0x28 */
-} DCMI_TypeDef;
-
-/** 
-  * @brief DMA Controller
-  */
-
-typedef struct
-{
-  __IO uint32_t CR;     /*!< DMA stream x configuration register      */
-  __IO uint32_t NDTR;   /*!< DMA stream x number of data register     */
-  __IO uint32_t PAR;    /*!< DMA stream x peripheral address register */
-  __IO uint32_t M0AR;   /*!< DMA stream x memory 0 address register   */
-  __IO uint32_t M1AR;   /*!< DMA stream x memory 1 address register   */
-  __IO uint32_t FCR;    /*!< DMA stream x FIFO control register       */
-} DMA_Stream_TypeDef;
-
-typedef struct
-{
-  __IO uint32_t LISR;   /*!< DMA low interrupt status register,      Address offset: 0x00 */
-  __IO uint32_t HISR;   /*!< DMA high interrupt status register,     Address offset: 0x04 */
-  __IO uint32_t LIFCR;  /*!< DMA low interrupt flag clear register,  Address offset: 0x08 */
-  __IO uint32_t HIFCR;  /*!< DMA high interrupt flag clear register, Address offset: 0x0C */
-} DMA_TypeDef;
-
-/** 
-  * @brief Ethernet MAC
-  */
-
-typedef struct
-{
-  __IO uint32_t MACCR;
-  __IO uint32_t MACFFR;
-  __IO uint32_t MACHTHR;
-  __IO uint32_t MACHTLR;
-  __IO uint32_t MACMIIAR;
-  __IO uint32_t MACMIIDR;
-  __IO uint32_t MACFCR;
-  __IO uint32_t MACVLANTR;             /*    8 */
-  uint32_t      RESERVED0[2];
-  __IO uint32_t MACRWUFFR;             /*   11 */
-  __IO uint32_t MACPMTCSR;
-  uint32_t      RESERVED1[2];
-  __IO uint32_t MACSR;                 /*   15 */
-  __IO uint32_t MACIMR;
-  __IO uint32_t MACA0HR;
-  __IO uint32_t MACA0LR;
-  __IO uint32_t MACA1HR;
-  __IO uint32_t MACA1LR;
-  __IO uint32_t MACA2HR;
-  __IO uint32_t MACA2LR;
-  __IO uint32_t MACA3HR;
-  __IO uint32_t MACA3LR;               /*   24 */
-  uint32_t      RESERVED2[40];
-  __IO uint32_t MMCCR;                 /*   65 */
-  __IO uint32_t MMCRIR;
-  __IO uint32_t MMCTIR;
-  __IO uint32_t MMCRIMR;
-  __IO uint32_t MMCTIMR;               /*   69 */
-  uint32_t      RESERVED3[14];
-  __IO uint32_t MMCTGFSCCR;            /*   84 */
-  __IO uint32_t MMCTGFMSCCR;
-  uint32_t      RESERVED4[5];
-  __IO uint32_t MMCTGFCR;
-  uint32_t      RESERVED5[10];
-  __IO uint32_t MMCRFCECR;
-  __IO uint32_t MMCRFAECR;
-  uint32_t      RESERVED6[10];
-  __IO uint32_t MMCRGUFCR;
-  uint32_t      RESERVED7[334];
-  __IO uint32_t PTPTSCR;
-  __IO uint32_t PTPSSIR;
-  __IO uint32_t PTPTSHR;
-  __IO uint32_t PTPTSLR;
-  __IO uint32_t PTPTSHUR;
-  __IO uint32_t PTPTSLUR;
-  __IO uint32_t PTPTSAR;
-  __IO uint32_t PTPTTHR;
-  __IO uint32_t PTPTTLR;
-  __IO uint32_t RESERVED8;
-  __IO uint32_t PTPTSSR;  /* added for STM32F2xx */
-  uint32_t      RESERVED9[565];
-  __IO uint32_t DMABMR;
-  __IO uint32_t DMATPDR;
-  __IO uint32_t DMARPDR;
-  __IO uint32_t DMARDLAR;
-  __IO uint32_t DMATDLAR;
-  __IO uint32_t DMASR;
-  __IO uint32_t DMAOMR;
-  __IO uint32_t DMAIER;
-  __IO uint32_t DMAMFBOCR;
-  __IO uint32_t DMARSWTR;  /* added for STM32F2xx */
-  uint32_t      RESERVED10[8];
-  __IO uint32_t DMACHTDR;
-  __IO uint32_t DMACHRDR;
-  __IO uint32_t DMACHTBAR;
-  __IO uint32_t DMACHRBAR;
-} ETH_TypeDef;
-
-/** 
-  * @brief External Interrupt/Event Controller
-  */
-
-typedef struct
-{
-  __IO uint32_t IMR;    /*!< EXTI Interrupt mask register,            Address offset: 0x00 */
-  __IO uint32_t EMR;    /*!< EXTI Event mask register,                Address offset: 0x04 */
-  __IO uint32_t RTSR;   /*!< EXTI Rising trigger selection register,  Address offset: 0x08 */
-  __IO uint32_t FTSR;   /*!< EXTI Falling trigger selection register, Address offset: 0x0C */
-  __IO uint32_t SWIER;  /*!< EXTI Software interrupt event register,  Address offset: 0x10 */
-  __IO uint32_t PR;     /*!< EXTI Pending register,                   Address offset: 0x14 */
-} EXTI_TypeDef;
-
-/** 
-  * @brief FLASH Registers
-  */
-
-typedef struct
-{
-  __IO uint32_t ACR;      /*!< FLASH access control register, Address offset: 0x00 */
-  __IO uint32_t KEYR;     /*!< FLASH key register,            Address offset: 0x04 */
-  __IO uint32_t OPTKEYR;  /*!< FLASH option key register,     Address offset: 0x08 */
-  __IO uint32_t SR;       /*!< FLASH status register,         Address offset: 0x0C */
-  __IO uint32_t CR;       /*!< FLASH control register,        Address offset: 0x10 */
-  __IO uint32_t OPTCR;    /*!< FLASH option control register, Address offset: 0x14 */
-} FLASH_TypeDef;
-
-/** 
-  * @brief Flexible Static Memory Controller
-  */
-
-typedef struct
-{
-  __IO uint32_t BTCR[8];    /*!< NOR/PSRAM chip-select control register(BCR) and chip-select timing register(BTR), Address offset: 0x00-1C */   
-} FSMC_Bank1_TypeDef; 
-
-/** 
-  * @brief Flexible Static Memory Controller Bank1E
-  */
-  
-typedef struct
-{
-  __IO uint32_t BWTR[7];    /*!< NOR/PSRAM write timing registers, Address offset: 0x104-0x11C */
-} FSMC_Bank1E_TypeDef;
-
-/** 
-  * @brief Flexible Static Memory Controller Bank2
-  */
-  
-typedef struct
-{
-  __IO uint32_t PCR2;       /*!< NAND Flash control register 2,                       Address offset: 0x60 */
-  __IO uint32_t SR2;        /*!< NAND Flash FIFO status and interrupt register 2,     Address offset: 0x64 */
-  __IO uint32_t PMEM2;      /*!< NAND Flash Common memory space timing register 2,    Address offset: 0x68 */
-  __IO uint32_t PATT2;      /*!< NAND Flash Attribute memory space timing register 2, Address offset: 0x6C */
-  uint32_t      RESERVED0;  /*!< Reserved, 0x70                                                            */
-  __IO uint32_t ECCR2;      /*!< NAND Flash ECC result registers 2,                   Address offset: 0x74 */
-} FSMC_Bank2_TypeDef;
-
-/** 
-  * @brief Flexible Static Memory Controller Bank3
-  */
-  
-typedef struct
-{
-  __IO uint32_t PCR3;       /*!< NAND Flash control register 3,                       Address offset: 0x80 */
-  __IO uint32_t SR3;        /*!< NAND Flash FIFO status and interrupt register 3,     Address offset: 0x84 */
-  __IO uint32_t PMEM3;      /*!< NAND Flash Common memory space timing register 3,    Address offset: 0x88 */
-  __IO uint32_t PATT3;      /*!< NAND Flash Attribute memory space timing register 3, Address offset: 0x8C */
-  uint32_t      RESERVED0;  /*!< Reserved, 0x90                                                            */
-  __IO uint32_t ECCR3;      /*!< NAND Flash ECC result registers 3,                   Address offset: 0x94 */
-} FSMC_Bank3_TypeDef;
-
-/** 
-  * @brief Flexible Static Memory Controller Bank4
-  */
-  
-typedef struct
-{
-  __IO uint32_t PCR4;       /*!< PC Card  control register 4,                       Address offset: 0xA0 */
-  __IO uint32_t SR4;        /*!< PC Card  FIFO status and interrupt register 4,     Address offset: 0xA4 */
-  __IO uint32_t PMEM4;      /*!< PC Card  Common memory space timing register 4,    Address offset: 0xA8 */
-  __IO uint32_t PATT4;      /*!< PC Card  Attribute memory space timing register 4, Address offset: 0xAC */
-  __IO uint32_t PIO4;       /*!< PC Card  I/O space timing register 4,              Address offset: 0xB0 */
-} FSMC_Bank4_TypeDef; 
-
-/** 
-  * @brief General Purpose I/O
-  */
-
-typedef struct
-{
-  __IO uint32_t MODER;    /*!< GPIO port mode register,               Address offset: 0x00      */
-  __IO uint32_t OTYPER;   /*!< GPIO port output type register,        Address offset: 0x04      */
-  __IO uint32_t OSPEEDR;  /*!< GPIO port output speed register,       Address offset: 0x08      */
-  __IO uint32_t PUPDR;    /*!< GPIO port pull-up/pull-down register,  Address offset: 0x0C      */
-  __IO uint32_t IDR;      /*!< GPIO port input data register,         Address offset: 0x10      */
-  __IO uint32_t ODR;      /*!< GPIO port output data register,        Address offset: 0x14      */
-  __IO uint16_t BSRRL;    /*!< GPIO port bit set/reset low register,  Address offset: 0x18      */
-  __IO uint16_t BSRRH;    /*!< GPIO port bit set/reset high register, Address offset: 0x1A      */
-  __IO uint32_t LCKR;     /*!< GPIO port configuration lock register, Address offset: 0x1C      */
-  __IO uint32_t AFR[2];   /*!< GPIO alternate function registers,     Address offset: 0x24-0x28 */
-} GPIO_TypeDef;
-
-/** 
-  * @brief System configuration controller
-  */
-  
-typedef struct
-{
-  __IO uint32_t MEMRMP;       /*!< SYSCFG memory remap register,                      Address offset: 0x00      */
-  __IO uint32_t PMC;          /*!< SYSCFG peripheral mode configuration register,     Address offset: 0x04      */
-  __IO uint32_t EXTICR[4];    /*!< SYSCFG external interrupt configuration registers, Address offset: 0x08-0x14 */
-  uint32_t      RESERVED[2];  /*!< Reserved, 0x18-0x1C                                                          */ 
-  __IO uint32_t CMPCR;        /*!< SYSCFG Compensation cell control register,         Address offset: 0x20      */
-} SYSCFG_TypeDef;
-
-/** 
-  * @brief Inter-integrated Circuit Interface
-  */
-
-typedef struct
-{
-  __IO uint16_t CR1;        /*!< I2C Control register 1,     Address offset: 0x00 */
-  uint16_t      RESERVED0;  /*!< Reserved, 0x02                                   */
-  __IO uint16_t CR2;        /*!< I2C Control register 2,     Address offset: 0x04 */
-  uint16_t      RESERVED1;  /*!< Reserved, 0x06                                   */
-  __IO uint16_t OAR1;       /*!< I2C Own address register 1, Address offset: 0x08 */
-  uint16_t      RESERVED2;  /*!< Reserved, 0x0A                                   */
-  __IO uint16_t OAR2;       /*!< I2C Own address register 2, Address offset: 0x0C */
-  uint16_t      RESERVED3;  /*!< Reserved, 0x0E                                   */
-  __IO uint16_t DR;         /*!< I2C Data register,          Address offset: 0x10 */
-  uint16_t      RESERVED4;  /*!< Reserved, 0x12                                   */
-  __IO uint16_t SR1;        /*!< I2C Status register 1,      Address offset: 0x14 */
-  uint16_t      RESERVED5;  /*!< Reserved, 0x16                                   */
-  __IO uint16_t SR2;        /*!< I2C Status register 2,      Address offset: 0x18 */
-  uint16_t      RESERVED6;  /*!< Reserved, 0x1A                                   */
-  __IO uint16_t CCR;        /*!< I2C Clock control register, Address offset: 0x1C */
-  uint16_t      RESERVED7;  /*!< Reserved, 0x1E                                   */
-  __IO uint16_t TRISE;      /*!< I2C TRISE register,         Address offset: 0x20 */
-  uint16_t      RESERVED8;  /*!< Reserved, 0x22                                   */
-} I2C_TypeDef;
-
-/** 
-  * @brief Independent WATCHDOG
-  */
-
-typedef struct
-{
-  __IO uint32_t KR;   /*!< IWDG Key register,       Address offset: 0x00 */
-  __IO uint32_t PR;   /*!< IWDG Prescaler register, Address offset: 0x04 */
-  __IO uint32_t RLR;  /*!< IWDG Reload register,    Address offset: 0x08 */
-  __IO uint32_t SR;   /*!< IWDG Status register,    Address offset: 0x0C */
-} IWDG_TypeDef;
-
-/** 
-  * @brief Power Control
-  */
-
-typedef struct
-{
-  __IO uint32_t CR;   /*!< PWR power control register,        Address offset: 0x00 */
-  __IO uint32_t CSR;  /*!< PWR power control/status register, Address offset: 0x04 */
-} PWR_TypeDef;
-
-/** 
-  * @brief Reset and Clock Control
-  */
-
-typedef struct
-{
-  __IO uint32_t CR;            /*!< RCC clock control register,                                  Address offset: 0x00 */
-  __IO uint32_t PLLCFGR;       /*!< RCC PLL configuration register,                              Address offset: 0x04 */
-  __IO uint32_t CFGR;          /*!< RCC clock configuration register,                            Address offset: 0x08 */
-  __IO uint32_t CIR;           /*!< RCC clock interrupt register,                                Address offset: 0x0C */
-  __IO uint32_t AHB1RSTR;      /*!< RCC AHB1 peripheral reset register,                          Address offset: 0x10 */
-  __IO uint32_t AHB2RSTR;      /*!< RCC AHB2 peripheral reset register,                          Address offset: 0x14 */
-  __IO uint32_t AHB3RSTR;      /*!< RCC AHB3 peripheral reset register,                          Address offset: 0x18 */
-  uint32_t      RESERVED0;     /*!< Reserved, 0x1C                                                                    */
-  __IO uint32_t APB1RSTR;      /*!< RCC APB1 peripheral reset register,                          Address offset: 0x20 */
-  __IO uint32_t APB2RSTR;      /*!< RCC APB2 peripheral reset register,                          Address offset: 0x24 */
-  uint32_t      RESERVED1[2];  /*!< Reserved, 0x28-0x2C                                                               */
-  __IO uint32_t AHB1ENR;       /*!< RCC AHB1 peripheral clock register,                          Address offset: 0x30 */
-  __IO uint32_t AHB2ENR;       /*!< RCC AHB2 peripheral clock register,                          Address offset: 0x34 */
-  __IO uint32_t AHB3ENR;       /*!< RCC AHB3 peripheral clock register,                          Address offset: 0x38 */
-  uint32_t      RESERVED2;     /*!< Reserved, 0x3C                                                                    */
-  __IO uint32_t APB1ENR;       /*!< RCC APB1 peripheral clock enable register,                   Address offset: 0x40 */
-  __IO uint32_t APB2ENR;       /*!< RCC APB2 peripheral clock enable register,                   Address offset: 0x44 */
-  uint32_t      RESERVED3[2];  /*!< Reserved, 0x48-0x4C                                                               */
-  __IO uint32_t AHB1LPENR;     /*!< RCC AHB1 peripheral clock enable in low power mode register, Address offset: 0x50 */
-  __IO uint32_t AHB2LPENR;     /*!< RCC AHB2 peripheral clock enable in low power mode register, Address offset: 0x54 */
-  __IO uint32_t AHB3LPENR;     /*!< RCC AHB3 peripheral clock enable in low power mode register, Address offset: 0x58 */
-  uint32_t      RESERVED4;     /*!< Reserved, 0x5C                                                                    */
-  __IO uint32_t APB1LPENR;     /*!< RCC APB1 peripheral clock enable in low power mode register, Address offset: 0x60 */
-  __IO uint32_t APB2LPENR;     /*!< RCC APB2 peripheral clock enable in low power mode register, Address offset: 0x64 */
-  uint32_t      RESERVED5[2];  /*!< Reserved, 0x68-0x6C                                                               */
-  __IO uint32_t BDCR;          /*!< RCC Backup domain control register,                          Address offset: 0x70 */
-  __IO uint32_t CSR;           /*!< RCC clock control & status register,                         Address offset: 0x74 */
-  uint32_t      RESERVED6[2];  /*!< Reserved, 0x78-0x7C                                                               */
-  __IO uint32_t SSCGR;         /*!< RCC spread spectrum clock generation register,               Address offset: 0x80 */
-  __IO uint32_t PLLI2SCFGR;    /*!< RCC PLLI2S configuration register,                           Address offset: 0x84 */
-} RCC_TypeDef;
-
-/** 
-  * @brief Real-Time Clock
-  */
-
-typedef struct
-{
-  __IO uint32_t TR;      /*!< RTC time register,                                        Address offset: 0x00 */
-  __IO uint32_t DR;      /*!< RTC date register,                                        Address offset: 0x04 */
-  __IO uint32_t CR;      /*!< RTC control register,                                     Address offset: 0x08 */
-  __IO uint32_t ISR;     /*!< RTC initialization and status register,                   Address offset: 0x0C */
-  __IO uint32_t PRER;    /*!< RTC prescaler register,                                   Address offset: 0x10 */
-  __IO uint32_t WUTR;    /*!< RTC wakeup timer register,                                Address offset: 0x14 */
-  __IO uint32_t CALIBR;  /*!< RTC calibration register,                                 Address offset: 0x18 */
-  __IO uint32_t ALRMAR;  /*!< RTC alarm A register,                                     Address offset: 0x1C */
-  __IO uint32_t ALRMBR;  /*!< RTC alarm B register,                                     Address offset: 0x20 */
-  __IO uint32_t WPR;     /*!< RTC write protection register,                            Address offset: 0x24 */
-  uint32_t RESERVED1;    /*!< Reserved, 0x28                                                                 */
-  uint32_t RESERVED2;    /*!< Reserved, 0x2C                                                                 */
-  __IO uint32_t TSTR;    /*!< RTC time stamp time register,                             Address offset: 0x30 */
-  __IO uint32_t TSDR;    /*!< RTC time stamp date register,                             Address offset: 0x34 */
-  uint32_t RESERVED3;    /*!< Reserved, 0x38                                                                 */
-  uint32_t RESERVED4;    /*!< Reserved, 0x3C                                                                 */
-  __IO uint32_t TAFCR;   /*!< RTC tamper and alternate function configuration register, Address offset: 0x40 */
-  uint32_t RESERVED5;    /*!< Reserved, 0x44                                                                 */
-  uint32_t RESERVED6;    /*!< Reserved, 0x48                                                                 */
-  uint32_t RESERVED7;    /*!< Reserved, 0x4C                                                                 */
-  __IO uint32_t BKP0R;   /*!< RTC backup register 1,                                    Address offset: 0x50 */
-  __IO uint32_t BKP1R;   /*!< RTC backup register 1,                                    Address offset: 0x54 */
-  __IO uint32_t BKP2R;   /*!< RTC backup register 2,                                    Address offset: 0x58 */
-  __IO uint32_t BKP3R;   /*!< RTC backup register 3,                                    Address offset: 0x5C */
-  __IO uint32_t BKP4R;   /*!< RTC backup register 4,                                    Address offset: 0x60 */
-  __IO uint32_t BKP5R;   /*!< RTC backup register 5,                                    Address offset: 0x64 */
-  __IO uint32_t BKP6R;   /*!< RTC backup register 6,                                    Address offset: 0x68 */
-  __IO uint32_t BKP7R;   /*!< RTC backup register 7,                                    Address offset: 0x6C */
-  __IO uint32_t BKP8R;   /*!< RTC backup register 8,                                    Address offset: 0x70 */
-  __IO uint32_t BKP9R;   /*!< RTC backup register 9,                                    Address offset: 0x74 */
-  __IO uint32_t BKP10R;  /*!< RTC backup register 10,                                   Address offset: 0x78 */
-  __IO uint32_t BKP11R;  /*!< RTC backup register 11,                                   Address offset: 0x7C */
-  __IO uint32_t BKP12R;  /*!< RTC backup register 12,                                   Address offset: 0x80 */
-  __IO uint32_t BKP13R;  /*!< RTC backup register 13,                                   Address offset: 0x84 */
-  __IO uint32_t BKP14R;  /*!< RTC backup register 14,                                   Address offset: 0x88 */
-  __IO uint32_t BKP15R;  /*!< RTC backup register 15,                                   Address offset: 0x8C */
-  __IO uint32_t BKP16R;  /*!< RTC backup register 16,                                   Address offset: 0x90 */
-  __IO uint32_t BKP17R;  /*!< RTC backup register 17,                                   Address offset: 0x94 */
-  __IO uint32_t BKP18R;  /*!< RTC backup register 18,                                   Address offset: 0x98 */
-  __IO uint32_t BKP19R;  /*!< RTC backup register 19,                                   Address offset: 0x9C */
-} RTC_TypeDef;
-
-/** 
-  * @brief SD host Interface
-  */
-
-typedef struct
-{
-  __IO uint32_t POWER;          /*!< SDIO power control register,    Address offset: 0x00 */
-  __IO uint32_t CLKCR;          /*!< SDI clock control register,     Address offset: 0x04 */
-  __IO uint32_t ARG;            /*!< SDIO argument register,         Address offset: 0x08 */
-  __IO uint32_t CMD;            /*!< SDIO command register,          Address offset: 0x0C */
-  __I uint32_t  RESPCMD;        /*!< SDIO command response register, Address offset: 0x10 */
-  __I uint32_t  RESP1;          /*!< SDIO response 1 register,       Address offset: 0x14 */
-  __I uint32_t  RESP2;          /*!< SDIO response 2 register,       Address offset: 0x18 */
-  __I uint32_t  RESP3;          /*!< SDIO response 3 register,       Address offset: 0x1C */
-  __I uint32_t  RESP4;          /*!< SDIO response 4 register,       Address offset: 0x20 */
-  __IO uint32_t DTIMER;         /*!< SDIO data timer register,       Address offset: 0x24 */
-  __IO uint32_t DLEN;           /*!< SDIO data length register,      Address offset: 0x28 */
-  __IO uint32_t DCTRL;          /*!< SDIO data control register,     Address offset: 0x2C */
-  __I uint32_t  DCOUNT;         /*!< SDIO data counter register,     Address offset: 0x30 */
-  __I uint32_t  STA;            /*!< SDIO status register,           Address offset: 0x34 */
-  __IO uint32_t ICR;            /*!< SDIO interrupt clear register,  Address offset: 0x38 */
-  __IO uint32_t MASK;           /*!< SDIO mask register,             Address offset: 0x3C */
-  uint32_t      RESERVED0[2];   /*!< Reserved, 0x40-0x44                                  */
-  __I uint32_t  FIFOCNT;        /*!< SDIO FIFO counter register,     Address offset: 0x48 */
-  uint32_t      RESERVED1[13];  /*!< Reserved, 0x4C-0x7C                                  */
-  __IO uint32_t FIFO;           /*!< SDIO data FIFO register,        Address offset: 0x80 */
-} SDIO_TypeDef;
-
-/** 
-  * @brief Serial Peripheral Interface
-  */
-
-typedef struct
-{
-  __IO uint16_t CR1;        /*!< SPI control register 1 (not used in I2S mode),      Address offset: 0x00 */
-  uint16_t      RESERVED0;  /*!< Reserved, 0x02                                                           */
-  __IO uint16_t CR2;        /*!< SPI control register 2,                             Address offset: 0x04 */
-  uint16_t      RESERVED1;  /*!< Reserved, 0x06                                                           */
-  __IO uint16_t SR;         /*!< SPI status register,                                Address offset: 0x08 */
-  uint16_t      RESERVED2;  /*!< Reserved, 0x0A                                                           */
-  __IO uint16_t DR;         /*!< SPI data register,                                  Address offset: 0x0C */
-  uint16_t      RESERVED3;  /*!< Reserved, 0x0E                                                           */
-  __IO uint16_t CRCPR;      /*!< SPI CRC polynomial register (not used in I2S mode), Address offset: 0x10 */
-  uint16_t      RESERVED4;  /*!< Reserved, 0x12                                                           */
-  __IO uint16_t RXCRCR;     /*!< SPI RX CRC register (not used in I2S mode),         Address offset: 0x14 */
-  uint16_t      RESERVED5;  /*!< Reserved, 0x16                                                           */
-  __IO uint16_t TXCRCR;     /*!< SPI TX CRC register (not used in I2S mode),         Address offset: 0x18 */
-  uint16_t      RESERVED6;  /*!< Reserved, 0x1A                                                           */
-  __IO uint16_t I2SCFGR;    /*!< SPI_I2S configuration register,                     Address offset: 0x1C */
-  uint16_t      RESERVED7;  /*!< Reserved, 0x1E                                                           */
-  __IO uint16_t I2SPR;      /*!< SPI_I2S prescaler register,                         Address offset: 0x20 */
-  uint16_t      RESERVED8;  /*!< Reserved, 0x22                                                           */
-} SPI_TypeDef;
-
-typedef struct
-{
-  __IO uint16_t CR1;         /*!< TIM control register 1,              Address offset: 0x00 */
-  uint16_t      RESERVED0;   /*!< Reserved, 0x02                                            */
-  __IO uint16_t CR2;         /*!< TIM control register 2,              Address offset: 0x04 */
-  uint16_t      RESERVED1;   /*!< Reserved, 0x06                                            */
-  __IO uint16_t SMCR;        /*!< TIM slave mode control register,     Address offset: 0x08 */
-  uint16_t      RESERVED2;   /*!< Reserved, 0x0A                                            */
-  __IO uint16_t DIER;        /*!< TIM DMA/interrupt enable register,   Address offset: 0x0C */
-  uint16_t      RESERVED3;   /*!< Reserved, 0x0E                                            */
-  __IO uint16_t SR;          /*!< TIM status register,                 Address offset: 0x10 */
-  uint16_t      RESERVED4;   /*!< Reserved, 0x12                                            */
-  __IO uint16_t EGR;         /*!< TIM event generation register,       Address offset: 0x14 */
-  uint16_t      RESERVED5;   /*!< Reserved, 0x16                                            */
-  __IO uint16_t CCMR1;       /*!< TIM capture/compare mode register 1, Address offset: 0x18 */
-  uint16_t      RESERVED6;   /*!< Reserved, 0x1A                                            */
-  __IO uint16_t CCMR2;       /*!< TIM capture/compare mode register 2, Address offset: 0x1C */
-  uint16_t      RESERVED7;   /*!< Reserved, 0x1E                                            */
-  __IO uint16_t CCER;        /*!< TIM capture/compare enable register, Address offset: 0x20 */
-  uint16_t      RESERVED8;   /*!< Reserved, 0x22                                            */
-  __IO uint32_t CNT;         /*!< TIM counter register,                Address offset: 0x24 */
-  __IO uint16_t PSC;         /*!< TIM prescaler,                       Address offset: 0x28 */
-  uint16_t      RESERVED9;   /*!< Reserved, 0x2A                                            */
-  __IO uint32_t ARR;         /*!< TIM auto-reload register,            Address offset: 0x2C */
-  __IO uint16_t RCR;         /*!< TIM repetition counter register,     Address offset: 0x30 */
-  uint16_t      RESERVED10;  /*!< Reserved, 0x32                                            */
-  __IO uint32_t CCR1;        /*!< TIM capture/compare register 1,      Address offset: 0x34 */
-  __IO uint32_t CCR2;        /*!< TIM capture/compare register 2,      Address offset: 0x38 */
-  __IO uint32_t CCR3;        /*!< TIM capture/compare register 3,      Address offset: 0x3C */
-  __IO uint32_t CCR4;        /*!< TIM capture/compare register 4,      Address offset: 0x40 */
-  __IO uint16_t BDTR;        /*!< TIM break and dead-time register,    Address offset: 0x44 */
-  uint16_t      RESERVED11;  /*!< Reserved, 0x46                                            */
-  __IO uint16_t DCR;         /*!< TIM DMA control register,            Address offset: 0x48 */
-  uint16_t      RESERVED12;  /*!< Reserved, 0x4A                                            */
-  __IO uint16_t DMAR;        /*!< TIM DMA address for full transfer,   Address offset: 0x4C */
-  uint16_t      RESERVED13;  /*!< Reserved, 0x4E                                            */
-  __IO uint16_t OR;          /*!< TIM option register,                 Address offset: 0x50 */
-  uint16_t      RESERVED14;  /*!< Reserved, 0x52                                            */
-} TIM_TypeDef;
-
-/** 
-  * @brief Universal Synchronous Asynchronous Receiver Transmitter
-  */
- 
-typedef struct
-{
-  __IO uint16_t SR;         /*!< USART Status register,                   Address offset: 0x00 */
-  uint16_t      RESERVED0;  /*!< Reserved, 0x02                                                */
-  __IO uint16_t DR;         /*!< USART Data register,                     Address offset: 0x04 */
-  uint16_t      RESERVED1;  /*!< Reserved, 0x06                                                */
-  __IO uint16_t BRR;        /*!< USART Baud rate register,                Address offset: 0x08 */
-  uint16_t      RESERVED2;  /*!< Reserved, 0x0A                                                */
-  __IO uint16_t CR1;        /*!< USART Control register 1,                Address offset: 0x0C */
-  uint16_t      RESERVED3;  /*!< Reserved, 0x0E                                                */
-  __IO uint16_t CR2;        /*!< USART Control register 2,                Address offset: 0x10 */
-  uint16_t      RESERVED4;  /*!< Reserved, 0x12                                                */
-  __IO uint16_t CR3;        /*!< USART Control register 3,                Address offset: 0x14 */
-  uint16_t      RESERVED5;  /*!< Reserved, 0x16                                                */
-  __IO uint16_t GTPR;       /*!< USART Guard time and prescaler register, Address offset: 0x18 */
-  uint16_t      RESERVED6;  /*!< Reserved, 0x1A                                                */
-} USART_TypeDef;
-
-/** 
-  * @brief Window WATCHDOG
-  */
-
-typedef struct
-{
-  __IO uint32_t CR;   /*!< WWDG Control register,       Address offset: 0x00 */
-  __IO uint32_t CFR;  /*!< WWDG Configuration register, Address offset: 0x04 */
-  __IO uint32_t SR;   /*!< WWDG Status register,        Address offset: 0x08 */
-} WWDG_TypeDef;
-
-/** 
-  * @brief Crypto Processor
-  */
-
-typedef struct
-{
-  __IO uint32_t CR;     /*!< CRYP control register,                            Address offset: 0x00 */
-  __IO uint32_t SR;     /*!< CRYP status register,                             Address offset: 0x04 */
-  __IO uint32_t DR;     /*!< CRYP data input register,                         Address offset: 0x08 */
-  __IO uint32_t DOUT;   /*!< CRYP data output register,                        Address offset: 0x0C */
-  __IO uint32_t DMACR;  /*!< CRYP DMA control register,                        Address offset: 0x10 */
-  __IO uint32_t IMSCR;  /*!< CRYP interrupt mask set/clear register,           Address offset: 0x14 */
-  __IO uint32_t RISR;   /*!< CRYP raw interrupt status register,               Address offset: 0x18 */
-  __IO uint32_t MISR;   /*!< CRYP masked interrupt status register,            Address offset: 0x1C */
-  __IO uint32_t K0LR;   /*!< CRYP key left  register 0,                        Address offset: 0x20 */
-  __IO uint32_t K0RR;   /*!< CRYP key right register 0,                        Address offset: 0x24 */
-  __IO uint32_t K1LR;   /*!< CRYP key left  register 1,                        Address offset: 0x28 */
-  __IO uint32_t K1RR;   /*!< CRYP key right register 1,                        Address offset: 0x2C */
-  __IO uint32_t K2LR;   /*!< CRYP key left  register 2,                        Address offset: 0x30 */
-  __IO uint32_t K2RR;   /*!< CRYP key right register 2,                        Address offset: 0x34 */
-  __IO uint32_t K3LR;   /*!< CRYP key left  register 3,                        Address offset: 0x38 */
-  __IO uint32_t K3RR;   /*!< CRYP key right register 3,                        Address offset: 0x3C */
-  __IO uint32_t IV0LR;  /*!< CRYP initialization vector left-word  register 0, Address offset: 0x40 */
-  __IO uint32_t IV0RR;  /*!< CRYP initialization vector right-word register 0, Address offset: 0x44 */
-  __IO uint32_t IV1LR;  /*!< CRYP initialization vector left-word  register 1, Address offset: 0x48 */
-  __IO uint32_t IV1RR;  /*!< CRYP initialization vector right-word register 1, Address offset: 0x4C */
-} CRYP_TypeDef;
-
-typedef struct 
-{
-  __IO uint32_t CR;        /*!< HASH control register,          Address offset: 0x00        */
-  __IO uint32_t DIN;       /*!< HASH data input register,       Address offset: 0x04        */
-  __IO uint32_t STR;       /*!< HASH start register,            Address offset: 0x08        */
-  __IO uint32_t HR[5];     /*!< HASH digest registers,          Address offset: 0x0C-0x1C   */
-  __IO uint32_t IMR;       /*!< HASH interrupt enable register, Address offset: 0x20        */
-  __IO uint32_t SR;        /*!< HASH status register,           Address offset: 0x24        */
-  uint32_t  RESERVED[52];  /*!< Reserved, 0x28-0xF4                                         */
-  __IO uint32_t CSR[51];   /*!< HASH context swap registers,    Address offset: 0x0F8-0x1C0 */  
-} HASH_TypeDef;
-
-typedef struct 
-{
-  __IO uint32_t CR;  /*!< RNG control register, Address offset: 0x00 */
-  __IO uint32_t SR;  /*!< RNG status register,  Address offset: 0x04 */
-  __IO uint32_t DR;  /*!< RNG data register,    Address offset: 0x08 */
-} RNG_TypeDef;
-
-#define FLASH_BASE            ((uint32_t)0x08000000) /*!< FLASH base address in the alias region */
-#define SRAM_BASE             ((uint32_t)0x20000000) /*!< SRAM base address in the alias region */
-#define PERIPH_BASE           ((uint32_t)0x40000000) /*!< Peripheral base address in the alias region */
-
-#define SRAM_BB_BASE          ((uint32_t)0x22000000) /*!< SRAM base address in the bit-band region */
-#define PERIPH_BB_BASE        ((uint32_t)0x42000000) /*!< Peripheral base address in the bit-band region */
-
-#define FSMC_R_BASE           ((uint32_t)0xA0000000) /*!< FSMC registers base address */
-
-/*!< Peripheral memory map */
-#define APB1PERIPH_BASE       PERIPH_BASE
-#define APB2PERIPH_BASE       (PERIPH_BASE + 0x00010000)
-#define AHB1PERIPH_BASE       (PERIPH_BASE + 0x00020000)
-#define AHB2PERIPH_BASE       (PERIPH_BASE + 0x10000000)
-
-/*!< APB1 peripherals */
-#define TIM2_BASE             (APB1PERIPH_BASE + 0x0000)
-#define TIM3_BASE             (APB1PERIPH_BASE + 0x0400)
-#define TIM4_BASE             (APB1PERIPH_BASE + 0x0800)
-#define TIM5_BASE             (APB1PERIPH_BASE + 0x0C00)
-#define TIM6_BASE             (APB1PERIPH_BASE + 0x1000)
-#define TIM7_BASE             (APB1PERIPH_BASE + 0x1400)
-#define TIM12_BASE            (APB1PERIPH_BASE + 0x1800)
-#define TIM13_BASE            (APB1PERIPH_BASE + 0x1C00)
-#define TIM14_BASE            (APB1PERIPH_BASE + 0x2000)
-#define RTC_BASE              (APB1PERIPH_BASE + 0x2800)
-#define WWDG_BASE             (APB1PERIPH_BASE + 0x2C00)
-#define IWDG_BASE             (APB1PERIPH_BASE + 0x3000)
-#define SPI2_BASE             (APB1PERIPH_BASE + 0x3800)
-#define SPI3_BASE             (APB1PERIPH_BASE + 0x3C00)
-#define USART2_BASE           (APB1PERIPH_BASE + 0x4400)
-#define USART3_BASE           (APB1PERIPH_BASE + 0x4800)
-#define UART4_BASE            (APB1PERIPH_BASE + 0x4C00)
-#define UART5_BASE            (APB1PERIPH_BASE + 0x5000)
-#define I2C1_BASE             (APB1PERIPH_BASE + 0x5400)
-#define I2C2_BASE             (APB1PERIPH_BASE + 0x5800)
-#define I2C3_BASE             (APB1PERIPH_BASE + 0x5C00)
-#define CAN1_BASE             (APB1PERIPH_BASE + 0x6400)
-#define CAN2_BASE             (APB1PERIPH_BASE + 0x6800)
-#define PWR_BASE              (APB1PERIPH_BASE + 0x7000)
-#define DAC_BASE              (APB1PERIPH_BASE + 0x7400)
-
-/*!< APB2 peripherals */
-#define TIM1_BASE             (APB2PERIPH_BASE + 0x0000)
-#define TIM8_BASE             (APB2PERIPH_BASE + 0x0400)
-#define USART1_BASE           (APB2PERIPH_BASE + 0x1000)
-#define USART6_BASE           (APB2PERIPH_BASE + 0x1400)
-#define ADC1_BASE             (APB2PERIPH_BASE + 0x2000)
-#define ADC2_BASE             (APB2PERIPH_BASE + 0x2100)
-#define ADC3_BASE             (APB2PERIPH_BASE + 0x2200)
-#define ADC_BASE              (APB2PERIPH_BASE + 0x2300)
-#define SDIO_BASE             (APB2PERIPH_BASE + 0x2C00)
-#define SPI1_BASE             (APB2PERIPH_BASE + 0x3000)
-#define SYSCFG_BASE           (APB2PERIPH_BASE + 0x3800)
-#define EXTI_BASE             (APB2PERIPH_BASE + 0x3C00)
-#define TIM9_BASE             (APB2PERIPH_BASE + 0x4000)
-#define TIM10_BASE            (APB2PERIPH_BASE + 0x4400)
-#define TIM11_BASE            (APB2PERIPH_BASE + 0x4800)
-
-/*!< AHB1 peripherals */
-#define GPIOA_BASE            (AHB1PERIPH_BASE + 0x0000)
-#define GPIOB_BASE            (AHB1PERIPH_BASE + 0x0400)
-#define GPIOC_BASE            (AHB1PERIPH_BASE + 0x0800)
-#define GPIOD_BASE            (AHB1PERIPH_BASE + 0x0C00)
-#define GPIOE_BASE            (AHB1PERIPH_BASE + 0x1000)
-#define GPIOF_BASE            (AHB1PERIPH_BASE + 0x1400)
-#define GPIOG_BASE            (AHB1PERIPH_BASE + 0x1800)
-#define GPIOH_BASE            (AHB1PERIPH_BASE + 0x1C00)
-#define GPIOI_BASE            (AHB1PERIPH_BASE + 0x2000)
-#define CRC_BASE              (AHB1PERIPH_BASE + 0x3000)
-#define RCC_BASE              (AHB1PERIPH_BASE + 0x3800)
-#define FLASH_R_BASE          (AHB1PERIPH_BASE + 0x3C00) 
-#define BKPSRAM_BASE          (AHB1PERIPH_BASE + 0x4000)
-#define DMA1_BASE             (AHB1PERIPH_BASE + 0x6000)
-#define DMA1_Stream0_BASE     (DMA1_BASE + 0x010)
-#define DMA1_Stream1_BASE     (DMA1_BASE + 0x028)
-#define DMA1_Stream2_BASE     (DMA1_BASE + 0x040)
-#define DMA1_Stream3_BASE     (DMA1_BASE + 0x058)
-#define DMA1_Stream4_BASE     (DMA1_BASE + 0x070)
-#define DMA1_Stream5_BASE     (DMA1_BASE + 0x088)
-#define DMA1_Stream6_BASE     (DMA1_BASE + 0x0A0)
-#define DMA1_Stream7_BASE     (DMA1_BASE + 0x0B8)
-#define DMA2_BASE             (AHB1PERIPH_BASE + 0x6400)
-#define DMA2_Stream0_BASE     (DMA2_BASE + 0x010)
-#define DMA2_Stream1_BASE     (DMA2_BASE + 0x028)
-#define DMA2_Stream2_BASE     (DMA2_BASE + 0x040)
-#define DMA2_Stream3_BASE     (DMA2_BASE + 0x058)
-#define DMA2_Stream4_BASE     (DMA2_BASE + 0x070)
-#define DMA2_Stream5_BASE     (DMA2_BASE + 0x088)
-#define DMA2_Stream6_BASE     (DMA2_BASE + 0x0A0)
-#define DMA2_Stream7_BASE     (DMA2_BASE + 0x0B8)
-#define ETH_BASE              (AHB1PERIPH_BASE + 0x8000)
-#define ETH_MAC_BASE          (ETH_BASE)
-#define ETH_MMC_BASE          (ETH_BASE + 0x0100)
-#define ETH_PTP_BASE          (ETH_BASE + 0x0700)
-#define ETH_DMA_BASE          (ETH_BASE + 0x1000)
-
-/*!< AHB2 peripherals */
-#define DCMI_BASE             (AHB2PERIPH_BASE + 0x50000)
-#define CRYP_BASE             (AHB2PERIPH_BASE + 0x60000)
-#define HASH_BASE             (AHB2PERIPH_BASE + 0x60400)
-#define RNG_BASE              (AHB2PERIPH_BASE + 0x60800)
-
-/*!< FSMC Bankx registers base address */
-#define FSMC_Bank1_R_BASE     (FSMC_R_BASE + 0x0000)
-#define FSMC_Bank1E_R_BASE    (FSMC_R_BASE + 0x0104)
-#define FSMC_Bank2_R_BASE     (FSMC_R_BASE + 0x0060)
-#define FSMC_Bank3_R_BASE     (FSMC_R_BASE + 0x0080)
-#define FSMC_Bank4_R_BASE     (FSMC_R_BASE + 0x00A0)
-
-/* Debug MCU registers base address */
-#define DBGMCU_BASE           ((uint32_t )0xE0042000)
-
-#define TIM2                ((TIM_TypeDef *) TIM2_BASE)
-#define TIM3                ((TIM_TypeDef *) TIM3_BASE)
-#define TIM4                ((TIM_TypeDef *) TIM4_BASE)
-#define TIM5                ((TIM_TypeDef *) TIM5_BASE)
-#define TIM6                ((TIM_TypeDef *) TIM6_BASE)
-#define TIM7                ((TIM_TypeDef *) TIM7_BASE)
-#define TIM12               ((TIM_TypeDef *) TIM12_BASE)
-#define TIM13               ((TIM_TypeDef *) TIM13_BASE)
-#define TIM14               ((TIM_TypeDef *) TIM14_BASE)
-#define RTC                 ((RTC_TypeDef *) RTC_BASE)
-#define WWDG                ((WWDG_TypeDef *) WWDG_BASE)
-#define IWDG                ((IWDG_TypeDef *) IWDG_BASE)
-#define SPI2                ((SPI_TypeDef *) SPI2_BASE)
-#define SPI3                ((SPI_TypeDef *) SPI3_BASE)
-#define USART2              ((USART_TypeDef *) USART2_BASE)
-#define USART3              ((USART_TypeDef *) USART3_BASE)
-#define UART4               ((USART_TypeDef *) UART4_BASE)
-#define UART5               ((USART_TypeDef *) UART5_BASE)
-#define I2C1                ((I2C_TypeDef *) I2C1_BASE)
-#define I2C2                ((I2C_TypeDef *) I2C2_BASE)
-#define I2C3                ((I2C_TypeDef *) I2C3_BASE)
-#define CAN1                ((CAN_TypeDef *) CAN1_BASE)
-#define CAN2                ((CAN_TypeDef *) CAN2_BASE)
-#define PWR                 ((PWR_TypeDef *) PWR_BASE)
-#define DAC                 ((DAC_TypeDef *) DAC_BASE)
-#define TIM1                ((TIM_TypeDef *) TIM1_BASE)
-#define TIM8                ((TIM_TypeDef *) TIM8_BASE)
-#define USART1              ((USART_TypeDef *) USART1_BASE)
-#define USART6              ((USART_TypeDef *) USART6_BASE)
-#define ADC                 ((ADC_Common_TypeDef *) ADC_BASE)
-#define ADC1                ((ADC_TypeDef *) ADC1_BASE)
-#define ADC2                ((ADC_TypeDef *) ADC2_BASE)
-#define ADC3                ((ADC_TypeDef *) ADC3_BASE)
-#define SDIO                ((SDIO_TypeDef *) SDIO_BASE)
-#define SPI1                ((SPI_TypeDef *) SPI1_BASE)
-#define SYSCFG              ((SYSCFG_TypeDef *) SYSCFG_BASE)
-#define EXTI                ((EXTI_TypeDef *) EXTI_BASE)
-#define TIM9                ((TIM_TypeDef *) TIM9_BASE)
-#define TIM10               ((TIM_TypeDef *) TIM10_BASE)
-#define TIM11               ((TIM_TypeDef *) TIM11_BASE)
-#define GPIOA               ((GPIO_TypeDef *) GPIOA_BASE)
-#define GPIOB               ((GPIO_TypeDef *) GPIOB_BASE)
-#define GPIOC               ((GPIO_TypeDef *) GPIOC_BASE)
-#define GPIOD               ((GPIO_TypeDef *) GPIOD_BASE)
-#define GPIOE               ((GPIO_TypeDef *) GPIOE_BASE)
-#define GPIOF               ((GPIO_TypeDef *) GPIOF_BASE)
-#define GPIOG               ((GPIO_TypeDef *) GPIOG_BASE)
-#define GPIOH               ((GPIO_TypeDef *) GPIOH_BASE)
-#define GPIOI               ((GPIO_TypeDef *) GPIOI_BASE)
-#define CRC                 ((CRC_TypeDef *) CRC_BASE)
-#define RCC                 ((RCC_TypeDef *) RCC_BASE)
-#define FLASH               ((FLASH_TypeDef *) FLASH_R_BASE)
-#define DMA1                ((DMA_TypeDef *) DMA1_BASE)
-#define DMA1_Stream0        ((DMA_Stream_TypeDef *) DMA1_Stream0_BASE)
-#define DMA1_Stream1        ((DMA_Stream_TypeDef *) DMA1_Stream1_BASE)
-#define DMA1_Stream2        ((DMA_Stream_TypeDef *) DMA1_Stream2_BASE)
-#define DMA1_Stream3        ((DMA_Stream_TypeDef *) DMA1_Stream3_BASE)
-#define DMA1_Stream4        ((DMA_Stream_TypeDef *) DMA1_Stream4_BASE)
-#define DMA1_Stream5        ((DMA_Stream_TypeDef *) DMA1_Stream5_BASE)
-#define DMA1_Stream6        ((DMA_Stream_TypeDef *) DMA1_Stream6_BASE)
-#define DMA1_Stream7        ((DMA_Stream_TypeDef *) DMA1_Stream7_BASE)
-#define DMA2                ((DMA_TypeDef *) DMA2_BASE)
-#define DMA2_Stream0        ((DMA_Stream_TypeDef *) DMA2_Stream0_BASE)
-#define DMA2_Stream1        ((DMA_Stream_TypeDef *) DMA2_Stream1_BASE)
-#define DMA2_Stream2        ((DMA_Stream_TypeDef *) DMA2_Stream2_BASE)
-#define DMA2_Stream3        ((DMA_Stream_TypeDef *) DMA2_Stream3_BASE)
-#define DMA2_Stream4        ((DMA_Stream_TypeDef *) DMA2_Stream4_BASE)
-#define DMA2_Stream5        ((DMA_Stream_TypeDef *) DMA2_Stream5_BASE)
-#define DMA2_Stream6        ((DMA_Stream_TypeDef *) DMA2_Stream6_BASE)
-#define DMA2_Stream7        ((DMA_Stream_TypeDef *) DMA2_Stream7_BASE)
-#define ETH                 ((ETH_TypeDef *) ETH_BASE)  
-#define DCMI                ((DCMI_TypeDef *) DCMI_BASE)
-#define CRYP                ((CRYP_TypeDef *) CRYP_BASE)
-#define HASH                ((HASH_TypeDef *) HASH_BASE)
-#define RNG                 ((RNG_TypeDef *) RNG_BASE)
-#define FSMC_Bank1          ((FSMC_Bank1_TypeDef *) FSMC_Bank1_R_BASE)
-#define FSMC_Bank1E         ((FSMC_Bank1E_TypeDef *) FSMC_Bank1E_R_BASE)
-#define FSMC_Bank2          ((FSMC_Bank2_TypeDef *) FSMC_Bank2_R_BASE)
-#define FSMC_Bank3          ((FSMC_Bank3_TypeDef *) FSMC_Bank3_R_BASE)
-#define FSMC_Bank4          ((FSMC_Bank4_TypeDef *) FSMC_Bank4_R_BASE)
-#define DBGMCU              ((DBGMCU_TypeDef *) DBGMCU_BASE)
-
-/******************************************************************************/
-/*                         Peripheral Registers_Bits_Definition               */
-/******************************************************************************/
-
-/******************************************************************************/
-/*                                                                            */
-/*                        Analog to Digital Converter                         */
-/*                                                                            */
-/******************************************************************************/
-/********************  Bit definition for ADC_SR register  ********************/
-#define  ADC_SR_AWD                          ((uint8_t)0x01)               /*!<Analog watchdog flag */
-#define  ADC_SR_EOC                          ((uint8_t)0x02)               /*!<End of conversion */
-#define  ADC_SR_JEOC                         ((uint8_t)0x04)               /*!<Injected channel end of conversion */
-#define  ADC_SR_JSTRT                        ((uint8_t)0x08)               /*!<Injected channel Start flag */
-#define  ADC_SR_STRT                         ((uint8_t)0x10)               /*!<Regular channel Start flag */
-#define  ADC_SR_OVR                          ((uint8_t)0x20)               /*!<Overrun flag */
-
-/*******************  Bit definition for ADC_CR1 register  ********************/
-#define  ADC_CR1_AWDCH                       ((uint32_t)0x0000001F)        /*!<AWDCH[4:0] bits (Analog watchdog channel select bits) */
-#define  ADC_CR1_AWDCH_0                     ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  ADC_CR1_AWDCH_1                     ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  ADC_CR1_AWDCH_2                     ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  ADC_CR1_AWDCH_3                     ((uint32_t)0x00000008)        /*!<Bit 3 */
-#define  ADC_CR1_AWDCH_4                     ((uint32_t)0x00000010)        /*!<Bit 4 */
-#define  ADC_CR1_EOCIE                       ((uint32_t)0x00000020)        /*!<Interrupt enable for EOC */
-#define  ADC_CR1_AWDIE                       ((uint32_t)0x00000040)        /*!<AAnalog Watchdog interrupt enable */
-#define  ADC_CR1_JEOCIE                      ((uint32_t)0x00000080)        /*!<Interrupt enable for injected channels */
-#define  ADC_CR1_SCAN                        ((uint32_t)0x00000100)        /*!<Scan mode */
-#define  ADC_CR1_AWDSGL                      ((uint32_t)0x00000200)        /*!<Enable the watchdog on a single channel in scan mode */
-#define  ADC_CR1_JAUTO                       ((uint32_t)0x00000400)        /*!<Automatic injected group conversion */
-#define  ADC_CR1_DISCEN                      ((uint32_t)0x00000800)        /*!<Discontinuous mode on regular channels */
-#define  ADC_CR1_JDISCEN                     ((uint32_t)0x00001000)        /*!<Discontinuous mode on injected channels */
-#define  ADC_CR1_DISCNUM                     ((uint32_t)0x0000E000)        /*!<DISCNUM[2:0] bits (Discontinuous mode channel count) */
-#define  ADC_CR1_DISCNUM_0                   ((uint32_t)0x00002000)        /*!<Bit 0 */
-#define  ADC_CR1_DISCNUM_1                   ((uint32_t)0x00004000)        /*!<Bit 1 */
-#define  ADC_CR1_DISCNUM_2                   ((uint32_t)0x00008000)        /*!<Bit 2 */
-#define  ADC_CR1_JAWDEN                      ((uint32_t)0x00400000)        /*!<Analog watchdog enable on injected channels */
-#define  ADC_CR1_AWDEN                       ((uint32_t)0x00800000)        /*!<Analog watchdog enable on regular channels */
-#define  ADC_CR1_RES                         ((uint32_t)0x03000000)        /*!<RES[2:0] bits (Resolution) */
-#define  ADC_CR1_RES_0                       ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  ADC_CR1_RES_1                       ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  ADC_CR1_OVRIE                       ((uint32_t)0x04000000)         /*!<overrun interrupt enable */
-  
-/*******************  Bit definition for ADC_CR2 register  ********************/
-#define  ADC_CR2_ADON                        ((uint32_t)0x00000001)        /*!<A/D Converter ON / OFF */
-#define  ADC_CR2_CONT                        ((uint32_t)0x00000002)        /*!<Continuous Conversion */
-#define  ADC_CR2_DMA                         ((uint32_t)0x00000100)        /*!<Direct Memory access mode */
-#define  ADC_CR2_DDS                         ((uint32_t)0x00000200)        /*!<DMA disable selection (Single ADC) */
-#define  ADC_CR2_EOCS                        ((uint32_t)0x00000400)        /*!<End of conversion selection */
-#define  ADC_CR2_ALIGN                       ((uint32_t)0x00000800)        /*!<Data Alignment */
-#define  ADC_CR2_JEXTSEL                     ((uint32_t)0x000F0000)        /*!<JEXTSEL[3:0] bits (External event select for injected group) */
-#define  ADC_CR2_JEXTSEL_0                   ((uint32_t)0x00010000)        /*!<Bit 0 */
-#define  ADC_CR2_JEXTSEL_1                   ((uint32_t)0x00020000)        /*!<Bit 1 */
-#define  ADC_CR2_JEXTSEL_2                   ((uint32_t)0x00040000)        /*!<Bit 2 */
-#define  ADC_CR2_JEXTSEL_3                   ((uint32_t)0x00080000)        /*!<Bit 3 */
-#define  ADC_CR2_JEXTEN                      ((uint32_t)0x00300000)        /*!<JEXTEN[1:0] bits (External Trigger Conversion mode for injected channelsp) */
-#define  ADC_CR2_JEXTEN_0                    ((uint32_t)0x00100000)        /*!<Bit 0 */
-#define  ADC_CR2_JEXTEN_1                    ((uint32_t)0x00200000)        /*!<Bit 1 */
-#define  ADC_CR2_JSWSTART                    ((uint32_t)0x00400000)        /*!<Start Conversion of injected channels */
-#define  ADC_CR2_EXTSEL                      ((uint32_t)0x0F000000)        /*!<EXTSEL[3:0] bits (External Event Select for regular group) */
-#define  ADC_CR2_EXTSEL_0                    ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  ADC_CR2_EXTSEL_1                    ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  ADC_CR2_EXTSEL_2                    ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  ADC_CR2_EXTSEL_3                    ((uint32_t)0x08000000)        /*!<Bit 3 */
-#define  ADC_CR2_EXTEN                       ((uint32_t)0x30000000)        /*!<EXTEN[1:0] bits (External Trigger Conversion mode for regular channelsp) */
-#define  ADC_CR2_EXTEN_0                     ((uint32_t)0x10000000)        /*!<Bit 0 */
-#define  ADC_CR2_EXTEN_1                     ((uint32_t)0x20000000)        /*!<Bit 1 */
-#define  ADC_CR2_SWSTART                     ((uint32_t)0x40000000)        /*!<Start Conversion of regular channels */
-
-/******************  Bit definition for ADC_SMPR1 register  *******************/
-#define  ADC_SMPR1_SMP10                     ((uint32_t)0x00000007)        /*!<SMP10[2:0] bits (Channel 10 Sample time selection) */
-#define  ADC_SMPR1_SMP10_0                   ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  ADC_SMPR1_SMP10_1                   ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  ADC_SMPR1_SMP10_2                   ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  ADC_SMPR1_SMP11                     ((uint32_t)0x00000038)        /*!<SMP11[2:0] bits (Channel 11 Sample time selection) */
-#define  ADC_SMPR1_SMP11_0                   ((uint32_t)0x00000008)        /*!<Bit 0 */
-#define  ADC_SMPR1_SMP11_1                   ((uint32_t)0x00000010)        /*!<Bit 1 */
-#define  ADC_SMPR1_SMP11_2                   ((uint32_t)0x00000020)        /*!<Bit 2 */
-#define  ADC_SMPR1_SMP12                     ((uint32_t)0x000001C0)        /*!<SMP12[2:0] bits (Channel 12 Sample time selection) */
-#define  ADC_SMPR1_SMP12_0                   ((uint32_t)0x00000040)        /*!<Bit 0 */
-#define  ADC_SMPR1_SMP12_1                   ((uint32_t)0x00000080)        /*!<Bit 1 */
-#define  ADC_SMPR1_SMP12_2                   ((uint32_t)0x00000100)        /*!<Bit 2 */
-#define  ADC_SMPR1_SMP13                     ((uint32_t)0x00000E00)        /*!<SMP13[2:0] bits (Channel 13 Sample time selection) */
-#define  ADC_SMPR1_SMP13_0                   ((uint32_t)0x00000200)        /*!<Bit 0 */
-#define  ADC_SMPR1_SMP13_1                   ((uint32_t)0x00000400)        /*!<Bit 1 */
-#define  ADC_SMPR1_SMP13_2                   ((uint32_t)0x00000800)        /*!<Bit 2 */
-#define  ADC_SMPR1_SMP14                     ((uint32_t)0x00007000)        /*!<SMP14[2:0] bits (Channel 14 Sample time selection) */
-#define  ADC_SMPR1_SMP14_0                   ((uint32_t)0x00001000)        /*!<Bit 0 */
-#define  ADC_SMPR1_SMP14_1                   ((uint32_t)0x00002000)        /*!<Bit 1 */
-#define  ADC_SMPR1_SMP14_2                   ((uint32_t)0x00004000)        /*!<Bit 2 */
-#define  ADC_SMPR1_SMP15                     ((uint32_t)0x00038000)        /*!<SMP15[2:0] bits (Channel 15 Sample time selection) */
-#define  ADC_SMPR1_SMP15_0                   ((uint32_t)0x00008000)        /*!<Bit 0 */
-#define  ADC_SMPR1_SMP15_1                   ((uint32_t)0x00010000)        /*!<Bit 1 */
-#define  ADC_SMPR1_SMP15_2                   ((uint32_t)0x00020000)        /*!<Bit 2 */
-#define  ADC_SMPR1_SMP16                     ((uint32_t)0x001C0000)        /*!<SMP16[2:0] bits (Channel 16 Sample time selection) */
-#define  ADC_SMPR1_SMP16_0                   ((uint32_t)0x00040000)        /*!<Bit 0 */
-#define  ADC_SMPR1_SMP16_1                   ((uint32_t)0x00080000)        /*!<Bit 1 */
-#define  ADC_SMPR1_SMP16_2                   ((uint32_t)0x00100000)        /*!<Bit 2 */
-#define  ADC_SMPR1_SMP17                     ((uint32_t)0x00E00000)        /*!<SMP17[2:0] bits (Channel 17 Sample time selection) */
-#define  ADC_SMPR1_SMP17_0                   ((uint32_t)0x00200000)        /*!<Bit 0 */
-#define  ADC_SMPR1_SMP17_1                   ((uint32_t)0x00400000)        /*!<Bit 1 */
-#define  ADC_SMPR1_SMP17_2                   ((uint32_t)0x00800000)        /*!<Bit 2 */
-#define  ADC_SMPR1_SMP18                     ((uint32_t)0x07000000)        /*!<SMP18[2:0] bits (Channel 18 Sample time selection) */
-#define  ADC_SMPR1_SMP18_0                   ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  ADC_SMPR1_SMP18_1                   ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  ADC_SMPR1_SMP18_2                   ((uint32_t)0x04000000)        /*!<Bit 2 */
-
-/******************  Bit definition for ADC_SMPR2 register  *******************/
-#define  ADC_SMPR2_SMP0                      ((uint32_t)0x00000007)        /*!<SMP0[2:0] bits (Channel 0 Sample time selection) */
-#define  ADC_SMPR2_SMP0_0                    ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  ADC_SMPR2_SMP0_1                    ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  ADC_SMPR2_SMP0_2                    ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  ADC_SMPR2_SMP1                      ((uint32_t)0x00000038)        /*!<SMP1[2:0] bits (Channel 1 Sample time selection) */
-#define  ADC_SMPR2_SMP1_0                    ((uint32_t)0x00000008)        /*!<Bit 0 */
-#define  ADC_SMPR2_SMP1_1                    ((uint32_t)0x00000010)        /*!<Bit 1 */
-#define  ADC_SMPR2_SMP1_2                    ((uint32_t)0x00000020)        /*!<Bit 2 */
-#define  ADC_SMPR2_SMP2                      ((uint32_t)0x000001C0)        /*!<SMP2[2:0] bits (Channel 2 Sample time selection) */
-#define  ADC_SMPR2_SMP2_0                    ((uint32_t)0x00000040)        /*!<Bit 0 */
-#define  ADC_SMPR2_SMP2_1                    ((uint32_t)0x00000080)        /*!<Bit 1 */
-#define  ADC_SMPR2_SMP2_2                    ((uint32_t)0x00000100)        /*!<Bit 2 */
-#define  ADC_SMPR2_SMP3                      ((uint32_t)0x00000E00)        /*!<SMP3[2:0] bits (Channel 3 Sample time selection) */
-#define  ADC_SMPR2_SMP3_0                    ((uint32_t)0x00000200)        /*!<Bit 0 */
-#define  ADC_SMPR2_SMP3_1                    ((uint32_t)0x00000400)        /*!<Bit 1 */
-#define  ADC_SMPR2_SMP3_2                    ((uint32_t)0x00000800)        /*!<Bit 2 */
-#define  ADC_SMPR2_SMP4                      ((uint32_t)0x00007000)        /*!<SMP4[2:0] bits (Channel 4 Sample time selection) */
-#define  ADC_SMPR2_SMP4_0                    ((uint32_t)0x00001000)        /*!<Bit 0 */
-#define  ADC_SMPR2_SMP4_1                    ((uint32_t)0x00002000)        /*!<Bit 1 */
-#define  ADC_SMPR2_SMP4_2                    ((uint32_t)0x00004000)        /*!<Bit 2 */
-#define  ADC_SMPR2_SMP5                      ((uint32_t)0x00038000)        /*!<SMP5[2:0] bits (Channel 5 Sample time selection) */
-#define  ADC_SMPR2_SMP5_0                    ((uint32_t)0x00008000)        /*!<Bit 0 */
-#define  ADC_SMPR2_SMP5_1                    ((uint32_t)0x00010000)        /*!<Bit 1 */
-#define  ADC_SMPR2_SMP5_2                    ((uint32_t)0x00020000)        /*!<Bit 2 */
-#define  ADC_SMPR2_SMP6                      ((uint32_t)0x001C0000)        /*!<SMP6[2:0] bits (Channel 6 Sample time selection) */
-#define  ADC_SMPR2_SMP6_0                    ((uint32_t)0x00040000)        /*!<Bit 0 */
-#define  ADC_SMPR2_SMP6_1                    ((uint32_t)0x00080000)        /*!<Bit 1 */
-#define  ADC_SMPR2_SMP6_2                    ((uint32_t)0x00100000)        /*!<Bit 2 */
-#define  ADC_SMPR2_SMP7                      ((uint32_t)0x00E00000)        /*!<SMP7[2:0] bits (Channel 7 Sample time selection) */
-#define  ADC_SMPR2_SMP7_0                    ((uint32_t)0x00200000)        /*!<Bit 0 */
-#define  ADC_SMPR2_SMP7_1                    ((uint32_t)0x00400000)        /*!<Bit 1 */
-#define  ADC_SMPR2_SMP7_2                    ((uint32_t)0x00800000)        /*!<Bit 2 */
-#define  ADC_SMPR2_SMP8                      ((uint32_t)0x07000000)        /*!<SMP8[2:0] bits (Channel 8 Sample time selection) */
-#define  ADC_SMPR2_SMP8_0                    ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  ADC_SMPR2_SMP8_1                    ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  ADC_SMPR2_SMP8_2                    ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  ADC_SMPR2_SMP9                      ((uint32_t)0x38000000)        /*!<SMP9[2:0] bits (Channel 9 Sample time selection) */
-#define  ADC_SMPR2_SMP9_0                    ((uint32_t)0x08000000)        /*!<Bit 0 */
-#define  ADC_SMPR2_SMP9_1                    ((uint32_t)0x10000000)        /*!<Bit 1 */
-#define  ADC_SMPR2_SMP9_2                    ((uint32_t)0x20000000)        /*!<Bit 2 */
-
-/******************  Bit definition for ADC_JOFR1 register  *******************/
-#define  ADC_JOFR1_JOFFSET1                  ((uint16_t)0x0FFF)            /*!<Data offset for injected channel 1 */
-
-/******************  Bit definition for ADC_JOFR2 register  *******************/
-#define  ADC_JOFR2_JOFFSET2                  ((uint16_t)0x0FFF)            /*!<Data offset for injected channel 2 */
-
-/******************  Bit definition for ADC_JOFR3 register  *******************/
-#define  ADC_JOFR3_JOFFSET3                  ((uint16_t)0x0FFF)            /*!<Data offset for injected channel 3 */
-
-/******************  Bit definition for ADC_JOFR4 register  *******************/
-#define  ADC_JOFR4_JOFFSET4                  ((uint16_t)0x0FFF)            /*!<Data offset for injected channel 4 */
-
-/*******************  Bit definition for ADC_HTR register  ********************/
-#define  ADC_HTR_HT                          ((uint16_t)0x0FFF)            /*!<Analog watchdog high threshold */
-
-/*******************  Bit definition for ADC_LTR register  ********************/
-#define  ADC_LTR_LT                          ((uint16_t)0x0FFF)            /*!<Analog watchdog low threshold */
-
-/*******************  Bit definition for ADC_SQR1 register  *******************/
-#define  ADC_SQR1_SQ13                       ((uint32_t)0x0000001F)        /*!<SQ13[4:0] bits (13th conversion in regular sequence) */
-#define  ADC_SQR1_SQ13_0                     ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  ADC_SQR1_SQ13_1                     ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  ADC_SQR1_SQ13_2                     ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  ADC_SQR1_SQ13_3                     ((uint32_t)0x00000008)        /*!<Bit 3 */
-#define  ADC_SQR1_SQ13_4                     ((uint32_t)0x00000010)        /*!<Bit 4 */
-#define  ADC_SQR1_SQ14                       ((uint32_t)0x000003E0)        /*!<SQ14[4:0] bits (14th conversion in regular sequence) */
-#define  ADC_SQR1_SQ14_0                     ((uint32_t)0x00000020)        /*!<Bit 0 */
-#define  ADC_SQR1_SQ14_1                     ((uint32_t)0x00000040)        /*!<Bit 1 */
-#define  ADC_SQR1_SQ14_2                     ((uint32_t)0x00000080)        /*!<Bit 2 */
-#define  ADC_SQR1_SQ14_3                     ((uint32_t)0x00000100)        /*!<Bit 3 */
-#define  ADC_SQR1_SQ14_4                     ((uint32_t)0x00000200)        /*!<Bit 4 */
-#define  ADC_SQR1_SQ15                       ((uint32_t)0x00007C00)        /*!<SQ15[4:0] bits (15th conversion in regular sequence) */
-#define  ADC_SQR1_SQ15_0                     ((uint32_t)0x00000400)        /*!<Bit 0 */
-#define  ADC_SQR1_SQ15_1                     ((uint32_t)0x00000800)        /*!<Bit 1 */
-#define  ADC_SQR1_SQ15_2                     ((uint32_t)0x00001000)        /*!<Bit 2 */
-#define  ADC_SQR1_SQ15_3                     ((uint32_t)0x00002000)        /*!<Bit 3 */
-#define  ADC_SQR1_SQ15_4                     ((uint32_t)0x00004000)        /*!<Bit 4 */
-#define  ADC_SQR1_SQ16                       ((uint32_t)0x000F8000)        /*!<SQ16[4:0] bits (16th conversion in regular sequence) */
-#define  ADC_SQR1_SQ16_0                     ((uint32_t)0x00008000)        /*!<Bit 0 */
-#define  ADC_SQR1_SQ16_1                     ((uint32_t)0x00010000)        /*!<Bit 1 */
-#define  ADC_SQR1_SQ16_2                     ((uint32_t)0x00020000)        /*!<Bit 2 */
-#define  ADC_SQR1_SQ16_3                     ((uint32_t)0x00040000)        /*!<Bit 3 */
-#define  ADC_SQR1_SQ16_4                     ((uint32_t)0x00080000)        /*!<Bit 4 */
-#define  ADC_SQR1_L                          ((uint32_t)0x00F00000)        /*!<L[3:0] bits (Regular channel sequence length) */
-#define  ADC_SQR1_L_0                        ((uint32_t)0x00100000)        /*!<Bit 0 */
-#define  ADC_SQR1_L_1                        ((uint32_t)0x00200000)        /*!<Bit 1 */
-#define  ADC_SQR1_L_2                        ((uint32_t)0x00400000)        /*!<Bit 2 */
-#define  ADC_SQR1_L_3                        ((uint32_t)0x00800000)        /*!<Bit 3 */
-
-/*******************  Bit definition for ADC_SQR2 register  *******************/
-#define  ADC_SQR2_SQ7                        ((uint32_t)0x0000001F)        /*!<SQ7[4:0] bits (7th conversion in regular sequence) */
-#define  ADC_SQR2_SQ7_0                      ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  ADC_SQR2_SQ7_1                      ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  ADC_SQR2_SQ7_2                      ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  ADC_SQR2_SQ7_3                      ((uint32_t)0x00000008)        /*!<Bit 3 */
-#define  ADC_SQR2_SQ7_4                      ((uint32_t)0x00000010)        /*!<Bit 4 */
-#define  ADC_SQR2_SQ8                        ((uint32_t)0x000003E0)        /*!<SQ8[4:0] bits (8th conversion in regular sequence) */
-#define  ADC_SQR2_SQ8_0                      ((uint32_t)0x00000020)        /*!<Bit 0 */
-#define  ADC_SQR2_SQ8_1                      ((uint32_t)0x00000040)        /*!<Bit 1 */
-#define  ADC_SQR2_SQ8_2                      ((uint32_t)0x00000080)        /*!<Bit 2 */
-#define  ADC_SQR2_SQ8_3                      ((uint32_t)0x00000100)        /*!<Bit 3 */
-#define  ADC_SQR2_SQ8_4                      ((uint32_t)0x00000200)        /*!<Bit 4 */
-#define  ADC_SQR2_SQ9                        ((uint32_t)0x00007C00)        /*!<SQ9[4:0] bits (9th conversion in regular sequence) */
-#define  ADC_SQR2_SQ9_0                      ((uint32_t)0x00000400)        /*!<Bit 0 */
-#define  ADC_SQR2_SQ9_1                      ((uint32_t)0x00000800)        /*!<Bit 1 */
-#define  ADC_SQR2_SQ9_2                      ((uint32_t)0x00001000)        /*!<Bit 2 */
-#define  ADC_SQR2_SQ9_3                      ((uint32_t)0x00002000)        /*!<Bit 3 */
-#define  ADC_SQR2_SQ9_4                      ((uint32_t)0x00004000)        /*!<Bit 4 */
-#define  ADC_SQR2_SQ10                       ((uint32_t)0x000F8000)        /*!<SQ10[4:0] bits (10th conversion in regular sequence) */
-#define  ADC_SQR2_SQ10_0                     ((uint32_t)0x00008000)        /*!<Bit 0 */
-#define  ADC_SQR2_SQ10_1                     ((uint32_t)0x00010000)        /*!<Bit 1 */
-#define  ADC_SQR2_SQ10_2                     ((uint32_t)0x00020000)        /*!<Bit 2 */
-#define  ADC_SQR2_SQ10_3                     ((uint32_t)0x00040000)        /*!<Bit 3 */
-#define  ADC_SQR2_SQ10_4                     ((uint32_t)0x00080000)        /*!<Bit 4 */
-#define  ADC_SQR2_SQ11                       ((uint32_t)0x01F00000)        /*!<SQ11[4:0] bits (11th conversion in regular sequence) */
-#define  ADC_SQR2_SQ11_0                     ((uint32_t)0x00100000)        /*!<Bit 0 */
-#define  ADC_SQR2_SQ11_1                     ((uint32_t)0x00200000)        /*!<Bit 1 */
-#define  ADC_SQR2_SQ11_2                     ((uint32_t)0x00400000)        /*!<Bit 2 */
-#define  ADC_SQR2_SQ11_3                     ((uint32_t)0x00800000)        /*!<Bit 3 */
-#define  ADC_SQR2_SQ11_4                     ((uint32_t)0x01000000)        /*!<Bit 4 */
-#define  ADC_SQR2_SQ12                       ((uint32_t)0x3E000000)        /*!<SQ12[4:0] bits (12th conversion in regular sequence) */
-#define  ADC_SQR2_SQ12_0                     ((uint32_t)0x02000000)        /*!<Bit 0 */
-#define  ADC_SQR2_SQ12_1                     ((uint32_t)0x04000000)        /*!<Bit 1 */
-#define  ADC_SQR2_SQ12_2                     ((uint32_t)0x08000000)        /*!<Bit 2 */
-#define  ADC_SQR2_SQ12_3                     ((uint32_t)0x10000000)        /*!<Bit 3 */
-#define  ADC_SQR2_SQ12_4                     ((uint32_t)0x20000000)        /*!<Bit 4 */
-
-/*******************  Bit definition for ADC_SQR3 register  *******************/
-#define  ADC_SQR3_SQ1                        ((uint32_t)0x0000001F)        /*!<SQ1[4:0] bits (1st conversion in regular sequence) */
-#define  ADC_SQR3_SQ1_0                      ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  ADC_SQR3_SQ1_1                      ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  ADC_SQR3_SQ1_2                      ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  ADC_SQR3_SQ1_3                      ((uint32_t)0x00000008)        /*!<Bit 3 */
-#define  ADC_SQR3_SQ1_4                      ((uint32_t)0x00000010)        /*!<Bit 4 */
-#define  ADC_SQR3_SQ2                        ((uint32_t)0x000003E0)        /*!<SQ2[4:0] bits (2nd conversion in regular sequence) */
-#define  ADC_SQR3_SQ2_0                      ((uint32_t)0x00000020)        /*!<Bit 0 */
-#define  ADC_SQR3_SQ2_1                      ((uint32_t)0x00000040)        /*!<Bit 1 */
-#define  ADC_SQR3_SQ2_2                      ((uint32_t)0x00000080)        /*!<Bit 2 */
-#define  ADC_SQR3_SQ2_3                      ((uint32_t)0x00000100)        /*!<Bit 3 */
-#define  ADC_SQR3_SQ2_4                      ((uint32_t)0x00000200)        /*!<Bit 4 */
-#define  ADC_SQR3_SQ3                        ((uint32_t)0x00007C00)        /*!<SQ3[4:0] bits (3rd conversion in regular sequence) */
-#define  ADC_SQR3_SQ3_0                      ((uint32_t)0x00000400)        /*!<Bit 0 */
-#define  ADC_SQR3_SQ3_1                      ((uint32_t)0x00000800)        /*!<Bit 1 */
-#define  ADC_SQR3_SQ3_2                      ((uint32_t)0x00001000)        /*!<Bit 2 */
-#define  ADC_SQR3_SQ3_3                      ((uint32_t)0x00002000)        /*!<Bit 3 */
-#define  ADC_SQR3_SQ3_4                      ((uint32_t)0x00004000)        /*!<Bit 4 */
-#define  ADC_SQR3_SQ4                        ((uint32_t)0x000F8000)        /*!<SQ4[4:0] bits (4th conversion in regular sequence) */
-#define  ADC_SQR3_SQ4_0                      ((uint32_t)0x00008000)        /*!<Bit 0 */
-#define  ADC_SQR3_SQ4_1                      ((uint32_t)0x00010000)        /*!<Bit 1 */
-#define  ADC_SQR3_SQ4_2                      ((uint32_t)0x00020000)        /*!<Bit 2 */
-#define  ADC_SQR3_SQ4_3                      ((uint32_t)0x00040000)        /*!<Bit 3 */
-#define  ADC_SQR3_SQ4_4                      ((uint32_t)0x00080000)        /*!<Bit 4 */
-#define  ADC_SQR3_SQ5                        ((uint32_t)0x01F00000)        /*!<SQ5[4:0] bits (5th conversion in regular sequence) */
-#define  ADC_SQR3_SQ5_0                      ((uint32_t)0x00100000)        /*!<Bit 0 */
-#define  ADC_SQR3_SQ5_1                      ((uint32_t)0x00200000)        /*!<Bit 1 */
-#define  ADC_SQR3_SQ5_2                      ((uint32_t)0x00400000)        /*!<Bit 2 */
-#define  ADC_SQR3_SQ5_3                      ((uint32_t)0x00800000)        /*!<Bit 3 */
-#define  ADC_SQR3_SQ5_4                      ((uint32_t)0x01000000)        /*!<Bit 4 */
-#define  ADC_SQR3_SQ6                        ((uint32_t)0x3E000000)        /*!<SQ6[4:0] bits (6th conversion in regular sequence) */
-#define  ADC_SQR3_SQ6_0                      ((uint32_t)0x02000000)        /*!<Bit 0 */
-#define  ADC_SQR3_SQ6_1                      ((uint32_t)0x04000000)        /*!<Bit 1 */
-#define  ADC_SQR3_SQ6_2                      ((uint32_t)0x08000000)        /*!<Bit 2 */
-#define  ADC_SQR3_SQ6_3                      ((uint32_t)0x10000000)        /*!<Bit 3 */
-#define  ADC_SQR3_SQ6_4                      ((uint32_t)0x20000000)        /*!<Bit 4 */
-
-/*******************  Bit definition for ADC_JSQR register  *******************/
-#define  ADC_JSQR_JSQ1                       ((uint32_t)0x0000001F)        /*!<JSQ1[4:0] bits (1st conversion in injected sequence) */  
-#define  ADC_JSQR_JSQ1_0                     ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  ADC_JSQR_JSQ1_1                     ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  ADC_JSQR_JSQ1_2                     ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  ADC_JSQR_JSQ1_3                     ((uint32_t)0x00000008)        /*!<Bit 3 */
-#define  ADC_JSQR_JSQ1_4                     ((uint32_t)0x00000010)        /*!<Bit 4 */
-#define  ADC_JSQR_JSQ2                       ((uint32_t)0x000003E0)        /*!<JSQ2[4:0] bits (2nd conversion in injected sequence) */
-#define  ADC_JSQR_JSQ2_0                     ((uint32_t)0x00000020)        /*!<Bit 0 */
-#define  ADC_JSQR_JSQ2_1                     ((uint32_t)0x00000040)        /*!<Bit 1 */
-#define  ADC_JSQR_JSQ2_2                     ((uint32_t)0x00000080)        /*!<Bit 2 */
-#define  ADC_JSQR_JSQ2_3                     ((uint32_t)0x00000100)        /*!<Bit 3 */
-#define  ADC_JSQR_JSQ2_4                     ((uint32_t)0x00000200)        /*!<Bit 4 */
-#define  ADC_JSQR_JSQ3                       ((uint32_t)0x00007C00)        /*!<JSQ3[4:0] bits (3rd conversion in injected sequence) */
-#define  ADC_JSQR_JSQ3_0                     ((uint32_t)0x00000400)        /*!<Bit 0 */
-#define  ADC_JSQR_JSQ3_1                     ((uint32_t)0x00000800)        /*!<Bit 1 */
-#define  ADC_JSQR_JSQ3_2                     ((uint32_t)0x00001000)        /*!<Bit 2 */
-#define  ADC_JSQR_JSQ3_3                     ((uint32_t)0x00002000)        /*!<Bit 3 */
-#define  ADC_JSQR_JSQ3_4                     ((uint32_t)0x00004000)        /*!<Bit 4 */
-#define  ADC_JSQR_JSQ4                       ((uint32_t)0x000F8000)        /*!<JSQ4[4:0] bits (4th conversion in injected sequence) */
-#define  ADC_JSQR_JSQ4_0                     ((uint32_t)0x00008000)        /*!<Bit 0 */
-#define  ADC_JSQR_JSQ4_1                     ((uint32_t)0x00010000)        /*!<Bit 1 */
-#define  ADC_JSQR_JSQ4_2                     ((uint32_t)0x00020000)        /*!<Bit 2 */
-#define  ADC_JSQR_JSQ4_3                     ((uint32_t)0x00040000)        /*!<Bit 3 */
-#define  ADC_JSQR_JSQ4_4                     ((uint32_t)0x00080000)        /*!<Bit 4 */
-#define  ADC_JSQR_JL                         ((uint32_t)0x00300000)        /*!<JL[1:0] bits (Injected Sequence length) */
-#define  ADC_JSQR_JL_0                       ((uint32_t)0x00100000)        /*!<Bit 0 */
-#define  ADC_JSQR_JL_1                       ((uint32_t)0x00200000)        /*!<Bit 1 */
-
-/*******************  Bit definition for ADC_JDR1 register  *******************/
-#define  ADC_JDR1_JDATA                      ((uint16_t)0xFFFF)            /*!<Injected data */
-
-/*******************  Bit definition for ADC_JDR2 register  *******************/
-#define  ADC_JDR2_JDATA                      ((uint16_t)0xFFFF)            /*!<Injected data */
-
-/*******************  Bit definition for ADC_JDR3 register  *******************/
-#define  ADC_JDR3_JDATA                      ((uint16_t)0xFFFF)            /*!<Injected data */
-
-/*******************  Bit definition for ADC_JDR4 register  *******************/
-#define  ADC_JDR4_JDATA                      ((uint16_t)0xFFFF)            /*!<Injected data */
-
-/********************  Bit definition for ADC_DR register  ********************/
-#define  ADC_DR_DATA                         ((uint32_t)0x0000FFFF)        /*!<Regular data */
-#define  ADC_DR_ADC2DATA                     ((uint32_t)0xFFFF0000)        /*!<ADC2 data */
-
-/*******************  Bit definition for ADC_CSR register  ********************/
-#define  ADC_CSR_AWD1                        ((uint32_t)0x00000001)        /*!<ADC1 Analog watchdog flag */
-#define  ADC_CSR_EOC1                        ((uint32_t)0x00000002)        /*!<ADC1 End of conversion */
-#define  ADC_CSR_JEOC1                       ((uint32_t)0x00000004)        /*!<ADC1 Injected channel end of conversion */
-#define  ADC_CSR_JSTRT1                      ((uint32_t)0x00000008)        /*!<ADC1 Injected channel Start flag */
-#define  ADC_CSR_STRT1                       ((uint32_t)0x00000010)        /*!<ADC1 Regular channel Start flag */
-#define  ADC_CSR_DOVR1                       ((uint32_t)0x00000020)        /*!<ADC1 DMA overrun  flag */
-#define  ADC_CSR_AWD2                        ((uint32_t)0x00000100)        /*!<ADC2 Analog watchdog flag */
-#define  ADC_CSR_EOC2                        ((uint32_t)0x00000200)        /*!<ADC2 End of conversion */
-#define  ADC_CSR_JEOC2                       ((uint32_t)0x00000400)        /*!<ADC2 Injected channel end of conversion */
-#define  ADC_CSR_JSTRT2                      ((uint32_t)0x00000800)        /*!<ADC2 Injected channel Start flag */
-#define  ADC_CSR_STRT2                       ((uint32_t)0x00001000)        /*!<ADC2 Regular channel Start flag */
-#define  ADC_CSR_DOVR2                       ((uint32_t)0x00002000)        /*!<ADC2 DMA overrun  flag */
-#define  ADC_CSR_AWD3                        ((uint32_t)0x00010000)        /*!<ADC3 Analog watchdog flag */
-#define  ADC_CSR_EOC3                        ((uint32_t)0x00020000)        /*!<ADC3 End of conversion */
-#define  ADC_CSR_JEOC3                       ((uint32_t)0x00040000)        /*!<ADC3 Injected channel end of conversion */
-#define  ADC_CSR_JSTRT3                      ((uint32_t)0x00080000)        /*!<ADC3 Injected channel Start flag */
-#define  ADC_CSR_STRT3                       ((uint32_t)0x00100000)        /*!<ADC3 Regular channel Start flag */
-#define  ADC_CSR_DOVR3                       ((uint32_t)0x00200000)        /*!<ADC3 DMA overrun  flag */
-
-/*******************  Bit definition for ADC_CCR register  ********************/
-#define  ADC_CCR_MULTI                       ((uint32_t)0x0000001F)        /*!<MULTI[4:0] bits (Multi-ADC mode selection) */  
-#define  ADC_CCR_MULTI_0                     ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  ADC_CCR_MULTI_1                     ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  ADC_CCR_MULTI_2                     ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  ADC_CCR_MULTI_3                     ((uint32_t)0x00000008)        /*!<Bit 3 */
-#define  ADC_CCR_MULTI_4                     ((uint32_t)0x00000010)        /*!<Bit 4 */
-#define  ADC_CCR_DELAY                       ((uint32_t)0x00000F00)        /*!<DELAY[3:0] bits (Delay between 2 sampling phases) */  
-#define  ADC_CCR_DELAY_0                     ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  ADC_CCR_DELAY_1                     ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  ADC_CCR_DELAY_2                     ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  ADC_CCR_DELAY_3                     ((uint32_t)0x00000800)        /*!<Bit 3 */
-#define  ADC_CCR_DDS                         ((uint32_t)0x00002000)        /*!<DMA disable selection (Multi-ADC mode) */
-#define  ADC_CCR_DMA                         ((uint32_t)0x0000C000)        /*!<DMA[1:0] bits (Direct Memory Access mode for multimode) */  
-#define  ADC_CCR_DMA_0                       ((uint32_t)0x00004000)        /*!<Bit 0 */
-#define  ADC_CCR_DMA_1                       ((uint32_t)0x00008000)        /*!<Bit 1 */
-#define  ADC_CCR_ADCPRE                      ((uint32_t)0x00030000)        /*!<ADCPRE[1:0] bits (ADC prescaler) */  
-#define  ADC_CCR_ADCPRE_0                    ((uint32_t)0x00010000)        /*!<Bit 0 */
-#define  ADC_CCR_ADCPRE_1                    ((uint32_t)0x00020000)        /*!<Bit 1 */
-#define  ADC_CCR_VBATE                       ((uint32_t)0x00400000)        /*!<VBAT Enable */
-#define  ADC_CCR_TSVREFE                     ((uint32_t)0x00800000)        /*!<Temperature Sensor and VREFINT Enable */
-
-/*******************  Bit definition for ADC_CDR register  ********************/
-#define  ADC_CDR_DATA1                      ((uint32_t)0x0000FFFF)         /*!<1st data of a pair of regular conversions */
-#define  ADC_CDR_DATA2                      ((uint32_t)0xFFFF0000)         /*!<2nd data of a pair of regular conversions */
-
-/******************************************************************************/
-/*                                                                            */
-/*                         Controller Area Network                            */
-/*                                                                            */
-/******************************************************************************/
-/*!<CAN control and status registers */
-/*******************  Bit definition for CAN_MCR register  ********************/
-#define  CAN_MCR_INRQ                        ((uint16_t)0x0001)            /*!<Initialization Request */
-#define  CAN_MCR_SLEEP                       ((uint16_t)0x0002)            /*!<Sleep Mode Request */
-#define  CAN_MCR_TXFP                        ((uint16_t)0x0004)            /*!<Transmit FIFO Priority */
-#define  CAN_MCR_RFLM                        ((uint16_t)0x0008)            /*!<Receive FIFO Locked Mode */
-#define  CAN_MCR_NART                        ((uint16_t)0x0010)            /*!<No Automatic Retransmission */
-#define  CAN_MCR_AWUM                        ((uint16_t)0x0020)            /*!<Automatic Wakeup Mode */
-#define  CAN_MCR_ABOM                        ((uint16_t)0x0040)            /*!<Automatic Bus-Off Management */
-#define  CAN_MCR_TTCM                        ((uint16_t)0x0080)            /*!<Time Triggered Communication Mode */
-#define  CAN_MCR_RESET                       ((uint16_t)0x8000)            /*!<bxCAN software master reset */
-
-/*******************  Bit definition for CAN_MSR register  ********************/
-#define  CAN_MSR_INAK                        ((uint16_t)0x0001)            /*!<Initialization Acknowledge */
-#define  CAN_MSR_SLAK                        ((uint16_t)0x0002)            /*!<Sleep Acknowledge */
-#define  CAN_MSR_ERRI                        ((uint16_t)0x0004)            /*!<Error Interrupt */
-#define  CAN_MSR_WKUI                        ((uint16_t)0x0008)            /*!<Wakeup Interrupt */
-#define  CAN_MSR_SLAKI                       ((uint16_t)0x0010)            /*!<Sleep Acknowledge Interrupt */
-#define  CAN_MSR_TXM                         ((uint16_t)0x0100)            /*!<Transmit Mode */
-#define  CAN_MSR_RXM                         ((uint16_t)0x0200)            /*!<Receive Mode */
-#define  CAN_MSR_SAMP                        ((uint16_t)0x0400)            /*!<Last Sample Point */
-#define  CAN_MSR_RX                          ((uint16_t)0x0800)            /*!<CAN Rx Signal */
-
-/*******************  Bit definition for CAN_TSR register  ********************/
-#define  CAN_TSR_RQCP0                       ((uint32_t)0x00000001)        /*!<Request Completed Mailbox0 */
-#define  CAN_TSR_TXOK0                       ((uint32_t)0x00000002)        /*!<Transmission OK of Mailbox0 */
-#define  CAN_TSR_ALST0                       ((uint32_t)0x00000004)        /*!<Arbitration Lost for Mailbox0 */
-#define  CAN_TSR_TERR0                       ((uint32_t)0x00000008)        /*!<Transmission Error of Mailbox0 */
-#define  CAN_TSR_ABRQ0                       ((uint32_t)0x00000080)        /*!<Abort Request for Mailbox0 */
-#define  CAN_TSR_RQCP1                       ((uint32_t)0x00000100)        /*!<Request Completed Mailbox1 */
-#define  CAN_TSR_TXOK1                       ((uint32_t)0x00000200)        /*!<Transmission OK of Mailbox1 */
-#define  CAN_TSR_ALST1                       ((uint32_t)0x00000400)        /*!<Arbitration Lost for Mailbox1 */
-#define  CAN_TSR_TERR1                       ((uint32_t)0x00000800)        /*!<Transmission Error of Mailbox1 */
-#define  CAN_TSR_ABRQ1                       ((uint32_t)0x00008000)        /*!<Abort Request for Mailbox 1 */
-#define  CAN_TSR_RQCP2                       ((uint32_t)0x00010000)        /*!<Request Completed Mailbox2 */
-#define  CAN_TSR_TXOK2                       ((uint32_t)0x00020000)        /*!<Transmission OK of Mailbox 2 */
-#define  CAN_TSR_ALST2                       ((uint32_t)0x00040000)        /*!<Arbitration Lost for mailbox 2 */
-#define  CAN_TSR_TERR2                       ((uint32_t)0x00080000)        /*!<Transmission Error of Mailbox 2 */
-#define  CAN_TSR_ABRQ2                       ((uint32_t)0x00800000)        /*!<Abort Request for Mailbox 2 */
-#define  CAN_TSR_CODE                        ((uint32_t)0x03000000)        /*!<Mailbox Code */
-
-#define  CAN_TSR_TME                         ((uint32_t)0x1C000000)        /*!<TME[2:0] bits */
-#define  CAN_TSR_TME0                        ((uint32_t)0x04000000)        /*!<Transmit Mailbox 0 Empty */
-#define  CAN_TSR_TME1                        ((uint32_t)0x08000000)        /*!<Transmit Mailbox 1 Empty */
-#define  CAN_TSR_TME2                        ((uint32_t)0x10000000)        /*!<Transmit Mailbox 2 Empty */
-
-#define  CAN_TSR_LOW                         ((uint32_t)0xE0000000)        /*!<LOW[2:0] bits */
-#define  CAN_TSR_LOW0                        ((uint32_t)0x20000000)        /*!<Lowest Priority Flag for Mailbox 0 */
-#define  CAN_TSR_LOW1                        ((uint32_t)0x40000000)        /*!<Lowest Priority Flag for Mailbox 1 */
-#define  CAN_TSR_LOW2                        ((uint32_t)0x80000000)        /*!<Lowest Priority Flag for Mailbox 2 */
-
-/*******************  Bit definition for CAN_RF0R register  *******************/
-#define  CAN_RF0R_FMP0                       ((uint8_t)0x03)               /*!<FIFO 0 Message Pending */
-#define  CAN_RF0R_FULL0                      ((uint8_t)0x08)               /*!<FIFO 0 Full */
-#define  CAN_RF0R_FOVR0                      ((uint8_t)0x10)               /*!<FIFO 0 Overrun */
-#define  CAN_RF0R_RFOM0                      ((uint8_t)0x20)               /*!<Release FIFO 0 Output Mailbox */
-
-/*******************  Bit definition for CAN_RF1R register  *******************/
-#define  CAN_RF1R_FMP1                       ((uint8_t)0x03)               /*!<FIFO 1 Message Pending */
-#define  CAN_RF1R_FULL1                      ((uint8_t)0x08)               /*!<FIFO 1 Full */
-#define  CAN_RF1R_FOVR1                      ((uint8_t)0x10)               /*!<FIFO 1 Overrun */
-#define  CAN_RF1R_RFOM1                      ((uint8_t)0x20)               /*!<Release FIFO 1 Output Mailbox */
-
-/********************  Bit definition for CAN_IER register  *******************/
-#define  CAN_IER_TMEIE                       ((uint32_t)0x00000001)        /*!<Transmit Mailbox Empty Interrupt Enable */
-#define  CAN_IER_FMPIE0                      ((uint32_t)0x00000002)        /*!<FIFO Message Pending Interrupt Enable */
-#define  CAN_IER_FFIE0                       ((uint32_t)0x00000004)        /*!<FIFO Full Interrupt Enable */
-#define  CAN_IER_FOVIE0                      ((uint32_t)0x00000008)        /*!<FIFO Overrun Interrupt Enable */
-#define  CAN_IER_FMPIE1                      ((uint32_t)0x00000010)        /*!<FIFO Message Pending Interrupt Enable */
-#define  CAN_IER_FFIE1                       ((uint32_t)0x00000020)        /*!<FIFO Full Interrupt Enable */
-#define  CAN_IER_FOVIE1                      ((uint32_t)0x00000040)        /*!<FIFO Overrun Interrupt Enable */
-#define  CAN_IER_EWGIE                       ((uint32_t)0x00000100)        /*!<Error Warning Interrupt Enable */
-#define  CAN_IER_EPVIE                       ((uint32_t)0x00000200)        /*!<Error Passive Interrupt Enable */
-#define  CAN_IER_BOFIE                       ((uint32_t)0x00000400)        /*!<Bus-Off Interrupt Enable */
-#define  CAN_IER_LECIE                       ((uint32_t)0x00000800)        /*!<Last Error Code Interrupt Enable */
-#define  CAN_IER_ERRIE                       ((uint32_t)0x00008000)        /*!<Error Interrupt Enable */
-#define  CAN_IER_WKUIE                       ((uint32_t)0x00010000)        /*!<Wakeup Interrupt Enable */
-#define  CAN_IER_SLKIE                       ((uint32_t)0x00020000)        /*!<Sleep Interrupt Enable */
-
-/********************  Bit definition for CAN_ESR register  *******************/
-#define  CAN_ESR_EWGF                        ((uint32_t)0x00000001)        /*!<Error Warning Flag */
-#define  CAN_ESR_EPVF                        ((uint32_t)0x00000002)        /*!<Error Passive Flag */
-#define  CAN_ESR_BOFF                        ((uint32_t)0x00000004)        /*!<Bus-Off Flag */
-
-#define  CAN_ESR_LEC                         ((uint32_t)0x00000070)        /*!<LEC[2:0] bits (Last Error Code) */
-#define  CAN_ESR_LEC_0                       ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  CAN_ESR_LEC_1                       ((uint32_t)0x00000020)        /*!<Bit 1 */
-#define  CAN_ESR_LEC_2                       ((uint32_t)0x00000040)        /*!<Bit 2 */
-
-#define  CAN_ESR_TEC                         ((uint32_t)0x00FF0000)        /*!<Least significant byte of the 9-bit Transmit Error Counter */
-#define  CAN_ESR_REC                         ((uint32_t)0xFF000000)        /*!<Receive Error Counter */
-
-/*******************  Bit definition for CAN_BTR register  ********************/
-#define  CAN_BTR_BRP                         ((uint32_t)0x000003FF)        /*!<Baud Rate Prescaler */
-#define  CAN_BTR_TS1                         ((uint32_t)0x000F0000)        /*!<Time Segment 1 */
-#define  CAN_BTR_TS2                         ((uint32_t)0x00700000)        /*!<Time Segment 2 */
-#define  CAN_BTR_SJW                         ((uint32_t)0x03000000)        /*!<Resynchronization Jump Width */
-#define  CAN_BTR_LBKM                        ((uint32_t)0x40000000)        /*!<Loop Back Mode (Debug) */
-#define  CAN_BTR_SILM                        ((uint32_t)0x80000000)        /*!<Silent Mode */
-
-/*!<Mailbox registers */
-/******************  Bit definition for CAN_TI0R register  ********************/
-#define  CAN_TI0R_TXRQ                       ((uint32_t)0x00000001)        /*!<Transmit Mailbox Request */
-#define  CAN_TI0R_RTR                        ((uint32_t)0x00000002)        /*!<Remote Transmission Request */
-#define  CAN_TI0R_IDE                        ((uint32_t)0x00000004)        /*!<Identifier Extension */
-#define  CAN_TI0R_EXID                       ((uint32_t)0x001FFFF8)        /*!<Extended Identifier */
-#define  CAN_TI0R_STID                       ((uint32_t)0xFFE00000)        /*!<Standard Identifier or Extended Identifier */
-
-/******************  Bit definition for CAN_TDT0R register  *******************/
-#define  CAN_TDT0R_DLC                       ((uint32_t)0x0000000F)        /*!<Data Length Code */
-#define  CAN_TDT0R_TGT                       ((uint32_t)0x00000100)        /*!<Transmit Global Time */
-#define  CAN_TDT0R_TIME                      ((uint32_t)0xFFFF0000)        /*!<Message Time Stamp */
-
-/******************  Bit definition for CAN_TDL0R register  *******************/
-#define  CAN_TDL0R_DATA0                     ((uint32_t)0x000000FF)        /*!<Data byte 0 */
-#define  CAN_TDL0R_DATA1                     ((uint32_t)0x0000FF00)        /*!<Data byte 1 */
-#define  CAN_TDL0R_DATA2                     ((uint32_t)0x00FF0000)        /*!<Data byte 2 */
-#define  CAN_TDL0R_DATA3                     ((uint32_t)0xFF000000)        /*!<Data byte 3 */
-
-/******************  Bit definition for CAN_TDH0R register  *******************/
-#define  CAN_TDH0R_DATA4                     ((uint32_t)0x000000FF)        /*!<Data byte 4 */
-#define  CAN_TDH0R_DATA5                     ((uint32_t)0x0000FF00)        /*!<Data byte 5 */
-#define  CAN_TDH0R_DATA6                     ((uint32_t)0x00FF0000)        /*!<Data byte 6 */
-#define  CAN_TDH0R_DATA7                     ((uint32_t)0xFF000000)        /*!<Data byte 7 */
-
-/*******************  Bit definition for CAN_TI1R register  *******************/
-#define  CAN_TI1R_TXRQ                       ((uint32_t)0x00000001)        /*!<Transmit Mailbox Request */
-#define  CAN_TI1R_RTR                        ((uint32_t)0x00000002)        /*!<Remote Transmission Request */
-#define  CAN_TI1R_IDE                        ((uint32_t)0x00000004)        /*!<Identifier Extension */
-#define  CAN_TI1R_EXID                       ((uint32_t)0x001FFFF8)        /*!<Extended Identifier */
-#define  CAN_TI1R_STID                       ((uint32_t)0xFFE00000)        /*!<Standard Identifier or Extended Identifier */
-
-/*******************  Bit definition for CAN_TDT1R register  ******************/
-#define  CAN_TDT1R_DLC                       ((uint32_t)0x0000000F)        /*!<Data Length Code */
-#define  CAN_TDT1R_TGT                       ((uint32_t)0x00000100)        /*!<Transmit Global Time */
-#define  CAN_TDT1R_TIME                      ((uint32_t)0xFFFF0000)        /*!<Message Time Stamp */
-
-/*******************  Bit definition for CAN_TDL1R register  ******************/
-#define  CAN_TDL1R_DATA0                     ((uint32_t)0x000000FF)        /*!<Data byte 0 */
-#define  CAN_TDL1R_DATA1                     ((uint32_t)0x0000FF00)        /*!<Data byte 1 */
-#define  CAN_TDL1R_DATA2                     ((uint32_t)0x00FF0000)        /*!<Data byte 2 */
-#define  CAN_TDL1R_DATA3                     ((uint32_t)0xFF000000)        /*!<Data byte 3 */
-
-/*******************  Bit definition for CAN_TDH1R register  ******************/
-#define  CAN_TDH1R_DATA4                     ((uint32_t)0x000000FF)        /*!<Data byte 4 */
-#define  CAN_TDH1R_DATA5                     ((uint32_t)0x0000FF00)        /*!<Data byte 5 */
-#define  CAN_TDH1R_DATA6                     ((uint32_t)0x00FF0000)        /*!<Data byte 6 */
-#define  CAN_TDH1R_DATA7                     ((uint32_t)0xFF000000)        /*!<Data byte 7 */
-
-/*******************  Bit definition for CAN_TI2R register  *******************/
-#define  CAN_TI2R_TXRQ                       ((uint32_t)0x00000001)        /*!<Transmit Mailbox Request */
-#define  CAN_TI2R_RTR                        ((uint32_t)0x00000002)        /*!<Remote Transmission Request */
-#define  CAN_TI2R_IDE                        ((uint32_t)0x00000004)        /*!<Identifier Extension */
-#define  CAN_TI2R_EXID                       ((uint32_t)0x001FFFF8)        /*!<Extended identifier */
-#define  CAN_TI2R_STID                       ((uint32_t)0xFFE00000)        /*!<Standard Identifier or Extended Identifier */
-
-/*******************  Bit definition for CAN_TDT2R register  ******************/  
-#define  CAN_TDT2R_DLC                       ((uint32_t)0x0000000F)        /*!<Data Length Code */
-#define  CAN_TDT2R_TGT                       ((uint32_t)0x00000100)        /*!<Transmit Global Time */
-#define  CAN_TDT2R_TIME                      ((uint32_t)0xFFFF0000)        /*!<Message Time Stamp */
-
-/*******************  Bit definition for CAN_TDL2R register  ******************/
-#define  CAN_TDL2R_DATA0                     ((uint32_t)0x000000FF)        /*!<Data byte 0 */
-#define  CAN_TDL2R_DATA1                     ((uint32_t)0x0000FF00)        /*!<Data byte 1 */
-#define  CAN_TDL2R_DATA2                     ((uint32_t)0x00FF0000)        /*!<Data byte 2 */
-#define  CAN_TDL2R_DATA3                     ((uint32_t)0xFF000000)        /*!<Data byte 3 */
-
-/*******************  Bit definition for CAN_TDH2R register  ******************/
-#define  CAN_TDH2R_DATA4                     ((uint32_t)0x000000FF)        /*!<Data byte 4 */
-#define  CAN_TDH2R_DATA5                     ((uint32_t)0x0000FF00)        /*!<Data byte 5 */
-#define  CAN_TDH2R_DATA6                     ((uint32_t)0x00FF0000)        /*!<Data byte 6 */
-#define  CAN_TDH2R_DATA7                     ((uint32_t)0xFF000000)        /*!<Data byte 7 */
-
-/*******************  Bit definition for CAN_RI0R register  *******************/
-#define  CAN_RI0R_RTR                        ((uint32_t)0x00000002)        /*!<Remote Transmission Request */
-#define  CAN_RI0R_IDE                        ((uint32_t)0x00000004)        /*!<Identifier Extension */
-#define  CAN_RI0R_EXID                       ((uint32_t)0x001FFFF8)        /*!<Extended Identifier */
-#define  CAN_RI0R_STID                       ((uint32_t)0xFFE00000)        /*!<Standard Identifier or Extended Identifier */
-
-/*******************  Bit definition for CAN_RDT0R register  ******************/
-#define  CAN_RDT0R_DLC                       ((uint32_t)0x0000000F)        /*!<Data Length Code */
-#define  CAN_RDT0R_FMI                       ((uint32_t)0x0000FF00)        /*!<Filter Match Index */
-#define  CAN_RDT0R_TIME                      ((uint32_t)0xFFFF0000)        /*!<Message Time Stamp */
-
-/*******************  Bit definition for CAN_RDL0R register  ******************/
-#define  CAN_RDL0R_DATA0                     ((uint32_t)0x000000FF)        /*!<Data byte 0 */
-#define  CAN_RDL0R_DATA1                     ((uint32_t)0x0000FF00)        /*!<Data byte 1 */
-#define  CAN_RDL0R_DATA2                     ((uint32_t)0x00FF0000)        /*!<Data byte 2 */
-#define  CAN_RDL0R_DATA3                     ((uint32_t)0xFF000000)        /*!<Data byte 3 */
-
-/*******************  Bit definition for CAN_RDH0R register  ******************/
-#define  CAN_RDH0R_DATA4                     ((uint32_t)0x000000FF)        /*!<Data byte 4 */
-#define  CAN_RDH0R_DATA5                     ((uint32_t)0x0000FF00)        /*!<Data byte 5 */
-#define  CAN_RDH0R_DATA6                     ((uint32_t)0x00FF0000)        /*!<Data byte 6 */
-#define  CAN_RDH0R_DATA7                     ((uint32_t)0xFF000000)        /*!<Data byte 7 */
-
-/*******************  Bit definition for CAN_RI1R register  *******************/
-#define  CAN_RI1R_RTR                        ((uint32_t)0x00000002)        /*!<Remote Transmission Request */
-#define  CAN_RI1R_IDE                        ((uint32_t)0x00000004)        /*!<Identifier Extension */
-#define  CAN_RI1R_EXID                       ((uint32_t)0x001FFFF8)        /*!<Extended identifier */
-#define  CAN_RI1R_STID                       ((uint32_t)0xFFE00000)        /*!<Standard Identifier or Extended Identifier */
-
-/*******************  Bit definition for CAN_RDT1R register  ******************/
-#define  CAN_RDT1R_DLC                       ((uint32_t)0x0000000F)        /*!<Data Length Code */
-#define  CAN_RDT1R_FMI                       ((uint32_t)0x0000FF00)        /*!<Filter Match Index */
-#define  CAN_RDT1R_TIME                      ((uint32_t)0xFFFF0000)        /*!<Message Time Stamp */
-
-/*******************  Bit definition for CAN_RDL1R register  ******************/
-#define  CAN_RDL1R_DATA0                     ((uint32_t)0x000000FF)        /*!<Data byte 0 */
-#define  CAN_RDL1R_DATA1                     ((uint32_t)0x0000FF00)        /*!<Data byte 1 */
-#define  CAN_RDL1R_DATA2                     ((uint32_t)0x00FF0000)        /*!<Data byte 2 */
-#define  CAN_RDL1R_DATA3                     ((uint32_t)0xFF000000)        /*!<Data byte 3 */
-
-/*******************  Bit definition for CAN_RDH1R register  ******************/
-#define  CAN_RDH1R_DATA4                     ((uint32_t)0x000000FF)        /*!<Data byte 4 */
-#define  CAN_RDH1R_DATA5                     ((uint32_t)0x0000FF00)        /*!<Data byte 5 */
-#define  CAN_RDH1R_DATA6                     ((uint32_t)0x00FF0000)        /*!<Data byte 6 */
-#define  CAN_RDH1R_DATA7                     ((uint32_t)0xFF000000)        /*!<Data byte 7 */
-
-/*!<CAN filter registers */
-/*******************  Bit definition for CAN_FMR register  ********************/
-#define  CAN_FMR_FINIT                       ((uint8_t)0x01)               /*!<Filter Init Mode */
-
-/*******************  Bit definition for CAN_FM1R register  *******************/
-#define  CAN_FM1R_FBM                        ((uint16_t)0x3FFF)            /*!<Filter Mode */
-#define  CAN_FM1R_FBM0                       ((uint16_t)0x0001)            /*!<Filter Init Mode bit 0 */
-#define  CAN_FM1R_FBM1                       ((uint16_t)0x0002)            /*!<Filter Init Mode bit 1 */
-#define  CAN_FM1R_FBM2                       ((uint16_t)0x0004)            /*!<Filter Init Mode bit 2 */
-#define  CAN_FM1R_FBM3                       ((uint16_t)0x0008)            /*!<Filter Init Mode bit 3 */
-#define  CAN_FM1R_FBM4                       ((uint16_t)0x0010)            /*!<Filter Init Mode bit 4 */
-#define  CAN_FM1R_FBM5                       ((uint16_t)0x0020)            /*!<Filter Init Mode bit 5 */
-#define  CAN_FM1R_FBM6                       ((uint16_t)0x0040)            /*!<Filter Init Mode bit 6 */
-#define  CAN_FM1R_FBM7                       ((uint16_t)0x0080)            /*!<Filter Init Mode bit 7 */
-#define  CAN_FM1R_FBM8                       ((uint16_t)0x0100)            /*!<Filter Init Mode bit 8 */
-#define  CAN_FM1R_FBM9                       ((uint16_t)0x0200)            /*!<Filter Init Mode bit 9 */
-#define  CAN_FM1R_FBM10                      ((uint16_t)0x0400)            /*!<Filter Init Mode bit 10 */
-#define  CAN_FM1R_FBM11                      ((uint16_t)0x0800)            /*!<Filter Init Mode bit 11 */
-#define  CAN_FM1R_FBM12                      ((uint16_t)0x1000)            /*!<Filter Init Mode bit 12 */
-#define  CAN_FM1R_FBM13                      ((uint16_t)0x2000)            /*!<Filter Init Mode bit 13 */
-
-/*******************  Bit definition for CAN_FS1R register  *******************/
-#define  CAN_FS1R_FSC                        ((uint16_t)0x3FFF)            /*!<Filter Scale Configuration */
-#define  CAN_FS1R_FSC0                       ((uint16_t)0x0001)            /*!<Filter Scale Configuration bit 0 */
-#define  CAN_FS1R_FSC1                       ((uint16_t)0x0002)            /*!<Filter Scale Configuration bit 1 */
-#define  CAN_FS1R_FSC2                       ((uint16_t)0x0004)            /*!<Filter Scale Configuration bit 2 */
-#define  CAN_FS1R_FSC3                       ((uint16_t)0x0008)            /*!<Filter Scale Configuration bit 3 */
-#define  CAN_FS1R_FSC4                       ((uint16_t)0x0010)            /*!<Filter Scale Configuration bit 4 */
-#define  CAN_FS1R_FSC5                       ((uint16_t)0x0020)            /*!<Filter Scale Configuration bit 5 */
-#define  CAN_FS1R_FSC6                       ((uint16_t)0x0040)            /*!<Filter Scale Configuration bit 6 */
-#define  CAN_FS1R_FSC7                       ((uint16_t)0x0080)            /*!<Filter Scale Configuration bit 7 */
-#define  CAN_FS1R_FSC8                       ((uint16_t)0x0100)            /*!<Filter Scale Configuration bit 8 */
-#define  CAN_FS1R_FSC9                       ((uint16_t)0x0200)            /*!<Filter Scale Configuration bit 9 */
-#define  CAN_FS1R_FSC10                      ((uint16_t)0x0400)            /*!<Filter Scale Configuration bit 10 */
-#define  CAN_FS1R_FSC11                      ((uint16_t)0x0800)            /*!<Filter Scale Configuration bit 11 */
-#define  CAN_FS1R_FSC12                      ((uint16_t)0x1000)            /*!<Filter Scale Configuration bit 12 */
-#define  CAN_FS1R_FSC13                      ((uint16_t)0x2000)            /*!<Filter Scale Configuration bit 13 */
-
-/******************  Bit definition for CAN_FFA1R register  *******************/
-#define  CAN_FFA1R_FFA                       ((uint16_t)0x3FFF)            /*!<Filter FIFO Assignment */
-#define  CAN_FFA1R_FFA0                      ((uint16_t)0x0001)            /*!<Filter FIFO Assignment for Filter 0 */
-#define  CAN_FFA1R_FFA1                      ((uint16_t)0x0002)            /*!<Filter FIFO Assignment for Filter 1 */
-#define  CAN_FFA1R_FFA2                      ((uint16_t)0x0004)            /*!<Filter FIFO Assignment for Filter 2 */
-#define  CAN_FFA1R_FFA3                      ((uint16_t)0x0008)            /*!<Filter FIFO Assignment for Filter 3 */
-#define  CAN_FFA1R_FFA4                      ((uint16_t)0x0010)            /*!<Filter FIFO Assignment for Filter 4 */
-#define  CAN_FFA1R_FFA5                      ((uint16_t)0x0020)            /*!<Filter FIFO Assignment for Filter 5 */
-#define  CAN_FFA1R_FFA6                      ((uint16_t)0x0040)            /*!<Filter FIFO Assignment for Filter 6 */
-#define  CAN_FFA1R_FFA7                      ((uint16_t)0x0080)            /*!<Filter FIFO Assignment for Filter 7 */
-#define  CAN_FFA1R_FFA8                      ((uint16_t)0x0100)            /*!<Filter FIFO Assignment for Filter 8 */
-#define  CAN_FFA1R_FFA9                      ((uint16_t)0x0200)            /*!<Filter FIFO Assignment for Filter 9 */
-#define  CAN_FFA1R_FFA10                     ((uint16_t)0x0400)            /*!<Filter FIFO Assignment for Filter 10 */
-#define  CAN_FFA1R_FFA11                     ((uint16_t)0x0800)            /*!<Filter FIFO Assignment for Filter 11 */
-#define  CAN_FFA1R_FFA12                     ((uint16_t)0x1000)            /*!<Filter FIFO Assignment for Filter 12 */
-#define  CAN_FFA1R_FFA13                     ((uint16_t)0x2000)            /*!<Filter FIFO Assignment for Filter 13 */
-
-/*******************  Bit definition for CAN_FA1R register  *******************/
-#define  CAN_FA1R_FACT                       ((uint16_t)0x3FFF)            /*!<Filter Active */
-#define  CAN_FA1R_FACT0                      ((uint16_t)0x0001)            /*!<Filter 0 Active */
-#define  CAN_FA1R_FACT1                      ((uint16_t)0x0002)            /*!<Filter 1 Active */
-#define  CAN_FA1R_FACT2                      ((uint16_t)0x0004)            /*!<Filter 2 Active */
-#define  CAN_FA1R_FACT3                      ((uint16_t)0x0008)            /*!<Filter 3 Active */
-#define  CAN_FA1R_FACT4                      ((uint16_t)0x0010)            /*!<Filter 4 Active */
-#define  CAN_FA1R_FACT5                      ((uint16_t)0x0020)            /*!<Filter 5 Active */
-#define  CAN_FA1R_FACT6                      ((uint16_t)0x0040)            /*!<Filter 6 Active */
-#define  CAN_FA1R_FACT7                      ((uint16_t)0x0080)            /*!<Filter 7 Active */
-#define  CAN_FA1R_FACT8                      ((uint16_t)0x0100)            /*!<Filter 8 Active */
-#define  CAN_FA1R_FACT9                      ((uint16_t)0x0200)            /*!<Filter 9 Active */
-#define  CAN_FA1R_FACT10                     ((uint16_t)0x0400)            /*!<Filter 10 Active */
-#define  CAN_FA1R_FACT11                     ((uint16_t)0x0800)            /*!<Filter 11 Active */
-#define  CAN_FA1R_FACT12                     ((uint16_t)0x1000)            /*!<Filter 12 Active */
-#define  CAN_FA1R_FACT13                     ((uint16_t)0x2000)            /*!<Filter 13 Active */
-
-/*******************  Bit definition for CAN_F0R1 register  *******************/
-#define  CAN_F0R1_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F0R1_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F0R1_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F0R1_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F0R1_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F0R1_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F0R1_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F0R1_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F0R1_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F0R1_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F0R1_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F0R1_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F0R1_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F0R1_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F0R1_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F0R1_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F0R1_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F0R1_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F0R1_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F0R1_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F0R1_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F0R1_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F0R1_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F0R1_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F0R1_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F0R1_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F0R1_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F0R1_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F0R1_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F0R1_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F0R1_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F0R1_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F1R1 register  *******************/
-#define  CAN_F1R1_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F1R1_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F1R1_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F1R1_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F1R1_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F1R1_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F1R1_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F1R1_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F1R1_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F1R1_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F1R1_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F1R1_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F1R1_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F1R1_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F1R1_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F1R1_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F1R1_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F1R1_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F1R1_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F1R1_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F1R1_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F1R1_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F1R1_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F1R1_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F1R1_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F1R1_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F1R1_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F1R1_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F1R1_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F1R1_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F1R1_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F1R1_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F2R1 register  *******************/
-#define  CAN_F2R1_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F2R1_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F2R1_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F2R1_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F2R1_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F2R1_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F2R1_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F2R1_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F2R1_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F2R1_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F2R1_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F2R1_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F2R1_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F2R1_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F2R1_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F2R1_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F2R1_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F2R1_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F2R1_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F2R1_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F2R1_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F2R1_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F2R1_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F2R1_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F2R1_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F2R1_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F2R1_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F2R1_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F2R1_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F2R1_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F2R1_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F2R1_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F3R1 register  *******************/
-#define  CAN_F3R1_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F3R1_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F3R1_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F3R1_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F3R1_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F3R1_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F3R1_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F3R1_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F3R1_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F3R1_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F3R1_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F3R1_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F3R1_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F3R1_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F3R1_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F3R1_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F3R1_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F3R1_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F3R1_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F3R1_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F3R1_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F3R1_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F3R1_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F3R1_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F3R1_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F3R1_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F3R1_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F3R1_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F3R1_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F3R1_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F3R1_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F3R1_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F4R1 register  *******************/
-#define  CAN_F4R1_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F4R1_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F4R1_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F4R1_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F4R1_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F4R1_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F4R1_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F4R1_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F4R1_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F4R1_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F4R1_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F4R1_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F4R1_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F4R1_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F4R1_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F4R1_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F4R1_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F4R1_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F4R1_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F4R1_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F4R1_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F4R1_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F4R1_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F4R1_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F4R1_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F4R1_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F4R1_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F4R1_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F4R1_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F4R1_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F4R1_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F4R1_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F5R1 register  *******************/
-#define  CAN_F5R1_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F5R1_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F5R1_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F5R1_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F5R1_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F5R1_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F5R1_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F5R1_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F5R1_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F5R1_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F5R1_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F5R1_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F5R1_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F5R1_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F5R1_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F5R1_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F5R1_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F5R1_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F5R1_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F5R1_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F5R1_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F5R1_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F5R1_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F5R1_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F5R1_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F5R1_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F5R1_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F5R1_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F5R1_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F5R1_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F5R1_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F5R1_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F6R1 register  *******************/
-#define  CAN_F6R1_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F6R1_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F6R1_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F6R1_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F6R1_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F6R1_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F6R1_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F6R1_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F6R1_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F6R1_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F6R1_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F6R1_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F6R1_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F6R1_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F6R1_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F6R1_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F6R1_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F6R1_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F6R1_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F6R1_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F6R1_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F6R1_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F6R1_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F6R1_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F6R1_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F6R1_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F6R1_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F6R1_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F6R1_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F6R1_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F6R1_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F6R1_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F7R1 register  *******************/
-#define  CAN_F7R1_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F7R1_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F7R1_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F7R1_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F7R1_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F7R1_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F7R1_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F7R1_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F7R1_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F7R1_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F7R1_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F7R1_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F7R1_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F7R1_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F7R1_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F7R1_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F7R1_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F7R1_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F7R1_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F7R1_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F7R1_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F7R1_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F7R1_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F7R1_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F7R1_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F7R1_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F7R1_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F7R1_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F7R1_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F7R1_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F7R1_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F7R1_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F8R1 register  *******************/
-#define  CAN_F8R1_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F8R1_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F8R1_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F8R1_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F8R1_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F8R1_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F8R1_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F8R1_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F8R1_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F8R1_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F8R1_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F8R1_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F8R1_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F8R1_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F8R1_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F8R1_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F8R1_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F8R1_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F8R1_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F8R1_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F8R1_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F8R1_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F8R1_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F8R1_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F8R1_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F8R1_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F8R1_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F8R1_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F8R1_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F8R1_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F8R1_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F8R1_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F9R1 register  *******************/
-#define  CAN_F9R1_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F9R1_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F9R1_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F9R1_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F9R1_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F9R1_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F9R1_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F9R1_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F9R1_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F9R1_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F9R1_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F9R1_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F9R1_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F9R1_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F9R1_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F9R1_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F9R1_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F9R1_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F9R1_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F9R1_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F9R1_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F9R1_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F9R1_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F9R1_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F9R1_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F9R1_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F9R1_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F9R1_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F9R1_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F9R1_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F9R1_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F9R1_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F10R1 register  ******************/
-#define  CAN_F10R1_FB0                       ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F10R1_FB1                       ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F10R1_FB2                       ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F10R1_FB3                       ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F10R1_FB4                       ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F10R1_FB5                       ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F10R1_FB6                       ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F10R1_FB7                       ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F10R1_FB8                       ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F10R1_FB9                       ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F10R1_FB10                      ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F10R1_FB11                      ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F10R1_FB12                      ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F10R1_FB13                      ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F10R1_FB14                      ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F10R1_FB15                      ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F10R1_FB16                      ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F10R1_FB17                      ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F10R1_FB18                      ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F10R1_FB19                      ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F10R1_FB20                      ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F10R1_FB21                      ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F10R1_FB22                      ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F10R1_FB23                      ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F10R1_FB24                      ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F10R1_FB25                      ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F10R1_FB26                      ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F10R1_FB27                      ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F10R1_FB28                      ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F10R1_FB29                      ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F10R1_FB30                      ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F10R1_FB31                      ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F11R1 register  ******************/
-#define  CAN_F11R1_FB0                       ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F11R1_FB1                       ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F11R1_FB2                       ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F11R1_FB3                       ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F11R1_FB4                       ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F11R1_FB5                       ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F11R1_FB6                       ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F11R1_FB7                       ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F11R1_FB8                       ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F11R1_FB9                       ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F11R1_FB10                      ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F11R1_FB11                      ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F11R1_FB12                      ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F11R1_FB13                      ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F11R1_FB14                      ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F11R1_FB15                      ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F11R1_FB16                      ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F11R1_FB17                      ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F11R1_FB18                      ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F11R1_FB19                      ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F11R1_FB20                      ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F11R1_FB21                      ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F11R1_FB22                      ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F11R1_FB23                      ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F11R1_FB24                      ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F11R1_FB25                      ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F11R1_FB26                      ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F11R1_FB27                      ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F11R1_FB28                      ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F11R1_FB29                      ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F11R1_FB30                      ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F11R1_FB31                      ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F12R1 register  ******************/
-#define  CAN_F12R1_FB0                       ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F12R1_FB1                       ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F12R1_FB2                       ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F12R1_FB3                       ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F12R1_FB4                       ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F12R1_FB5                       ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F12R1_FB6                       ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F12R1_FB7                       ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F12R1_FB8                       ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F12R1_FB9                       ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F12R1_FB10                      ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F12R1_FB11                      ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F12R1_FB12                      ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F12R1_FB13                      ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F12R1_FB14                      ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F12R1_FB15                      ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F12R1_FB16                      ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F12R1_FB17                      ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F12R1_FB18                      ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F12R1_FB19                      ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F12R1_FB20                      ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F12R1_FB21                      ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F12R1_FB22                      ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F12R1_FB23                      ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F12R1_FB24                      ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F12R1_FB25                      ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F12R1_FB26                      ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F12R1_FB27                      ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F12R1_FB28                      ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F12R1_FB29                      ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F12R1_FB30                      ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F12R1_FB31                      ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F13R1 register  ******************/
-#define  CAN_F13R1_FB0                       ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F13R1_FB1                       ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F13R1_FB2                       ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F13R1_FB3                       ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F13R1_FB4                       ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F13R1_FB5                       ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F13R1_FB6                       ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F13R1_FB7                       ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F13R1_FB8                       ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F13R1_FB9                       ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F13R1_FB10                      ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F13R1_FB11                      ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F13R1_FB12                      ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F13R1_FB13                      ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F13R1_FB14                      ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F13R1_FB15                      ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F13R1_FB16                      ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F13R1_FB17                      ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F13R1_FB18                      ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F13R1_FB19                      ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F13R1_FB20                      ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F13R1_FB21                      ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F13R1_FB22                      ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F13R1_FB23                      ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F13R1_FB24                      ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F13R1_FB25                      ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F13R1_FB26                      ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F13R1_FB27                      ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F13R1_FB28                      ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F13R1_FB29                      ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F13R1_FB30                      ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F13R1_FB31                      ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F0R2 register  *******************/
-#define  CAN_F0R2_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F0R2_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F0R2_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F0R2_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F0R2_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F0R2_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F0R2_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F0R2_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F0R2_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F0R2_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F0R2_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F0R2_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F0R2_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F0R2_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F0R2_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F0R2_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F0R2_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F0R2_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F0R2_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F0R2_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F0R2_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F0R2_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F0R2_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F0R2_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F0R2_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F0R2_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F0R2_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F0R2_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F0R2_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F0R2_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F0R2_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F0R2_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F1R2 register  *******************/
-#define  CAN_F1R2_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F1R2_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F1R2_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F1R2_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F1R2_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F1R2_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F1R2_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F1R2_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F1R2_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F1R2_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F1R2_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F1R2_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F1R2_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F1R2_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F1R2_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F1R2_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F1R2_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F1R2_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F1R2_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F1R2_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F1R2_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F1R2_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F1R2_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F1R2_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F1R2_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F1R2_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F1R2_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F1R2_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F1R2_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F1R2_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F1R2_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F1R2_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F2R2 register  *******************/
-#define  CAN_F2R2_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F2R2_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F2R2_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F2R2_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F2R2_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F2R2_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F2R2_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F2R2_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F2R2_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F2R2_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F2R2_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F2R2_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F2R2_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F2R2_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F2R2_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F2R2_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F2R2_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F2R2_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F2R2_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F2R2_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F2R2_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F2R2_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F2R2_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F2R2_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F2R2_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F2R2_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F2R2_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F2R2_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F2R2_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F2R2_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F2R2_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F2R2_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F3R2 register  *******************/
-#define  CAN_F3R2_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F3R2_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F3R2_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F3R2_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F3R2_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F3R2_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F3R2_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F3R2_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F3R2_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F3R2_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F3R2_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F3R2_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F3R2_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F3R2_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F3R2_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F3R2_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F3R2_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F3R2_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F3R2_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F3R2_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F3R2_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F3R2_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F3R2_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F3R2_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F3R2_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F3R2_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F3R2_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F3R2_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F3R2_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F3R2_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F3R2_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F3R2_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F4R2 register  *******************/
-#define  CAN_F4R2_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F4R2_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F4R2_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F4R2_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F4R2_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F4R2_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F4R2_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F4R2_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F4R2_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F4R2_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F4R2_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F4R2_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F4R2_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F4R2_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F4R2_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F4R2_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F4R2_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F4R2_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F4R2_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F4R2_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F4R2_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F4R2_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F4R2_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F4R2_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F4R2_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F4R2_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F4R2_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F4R2_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F4R2_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F4R2_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F4R2_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F4R2_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F5R2 register  *******************/
-#define  CAN_F5R2_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F5R2_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F5R2_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F5R2_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F5R2_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F5R2_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F5R2_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F5R2_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F5R2_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F5R2_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F5R2_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F5R2_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F5R2_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F5R2_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F5R2_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F5R2_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F5R2_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F5R2_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F5R2_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F5R2_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F5R2_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F5R2_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F5R2_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F5R2_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F5R2_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F5R2_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F5R2_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F5R2_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F5R2_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F5R2_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F5R2_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F5R2_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F6R2 register  *******************/
-#define  CAN_F6R2_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F6R2_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F6R2_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F6R2_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F6R2_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F6R2_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F6R2_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F6R2_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F6R2_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F6R2_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F6R2_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F6R2_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F6R2_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F6R2_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F6R2_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F6R2_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F6R2_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F6R2_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F6R2_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F6R2_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F6R2_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F6R2_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F6R2_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F6R2_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F6R2_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F6R2_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F6R2_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F6R2_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F6R2_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F6R2_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F6R2_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F6R2_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F7R2 register  *******************/
-#define  CAN_F7R2_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F7R2_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F7R2_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F7R2_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F7R2_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F7R2_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F7R2_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F7R2_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F7R2_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F7R2_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F7R2_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F7R2_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F7R2_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F7R2_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F7R2_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F7R2_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F7R2_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F7R2_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F7R2_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F7R2_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F7R2_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F7R2_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F7R2_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F7R2_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F7R2_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F7R2_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F7R2_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F7R2_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F7R2_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F7R2_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F7R2_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F7R2_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F8R2 register  *******************/
-#define  CAN_F8R2_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F8R2_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F8R2_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F8R2_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F8R2_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F8R2_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F8R2_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F8R2_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F8R2_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F8R2_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F8R2_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F8R2_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F8R2_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F8R2_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F8R2_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F8R2_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F8R2_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F8R2_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F8R2_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F8R2_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F8R2_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F8R2_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F8R2_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F8R2_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F8R2_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F8R2_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F8R2_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F8R2_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F8R2_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F8R2_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F8R2_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F8R2_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F9R2 register  *******************/
-#define  CAN_F9R2_FB0                        ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F9R2_FB1                        ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F9R2_FB2                        ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F9R2_FB3                        ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F9R2_FB4                        ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F9R2_FB5                        ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F9R2_FB6                        ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F9R2_FB7                        ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F9R2_FB8                        ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F9R2_FB9                        ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F9R2_FB10                       ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F9R2_FB11                       ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F9R2_FB12                       ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F9R2_FB13                       ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F9R2_FB14                       ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F9R2_FB15                       ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F9R2_FB16                       ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F9R2_FB17                       ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F9R2_FB18                       ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F9R2_FB19                       ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F9R2_FB20                       ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F9R2_FB21                       ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F9R2_FB22                       ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F9R2_FB23                       ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F9R2_FB24                       ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F9R2_FB25                       ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F9R2_FB26                       ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F9R2_FB27                       ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F9R2_FB28                       ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F9R2_FB29                       ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F9R2_FB30                       ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F9R2_FB31                       ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F10R2 register  ******************/
-#define  CAN_F10R2_FB0                       ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F10R2_FB1                       ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F10R2_FB2                       ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F10R2_FB3                       ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F10R2_FB4                       ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F10R2_FB5                       ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F10R2_FB6                       ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F10R2_FB7                       ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F10R2_FB8                       ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F10R2_FB9                       ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F10R2_FB10                      ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F10R2_FB11                      ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F10R2_FB12                      ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F10R2_FB13                      ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F10R2_FB14                      ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F10R2_FB15                      ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F10R2_FB16                      ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F10R2_FB17                      ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F10R2_FB18                      ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F10R2_FB19                      ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F10R2_FB20                      ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F10R2_FB21                      ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F10R2_FB22                      ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F10R2_FB23                      ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F10R2_FB24                      ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F10R2_FB25                      ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F10R2_FB26                      ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F10R2_FB27                      ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F10R2_FB28                      ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F10R2_FB29                      ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F10R2_FB30                      ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F10R2_FB31                      ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F11R2 register  ******************/
-#define  CAN_F11R2_FB0                       ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F11R2_FB1                       ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F11R2_FB2                       ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F11R2_FB3                       ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F11R2_FB4                       ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F11R2_FB5                       ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F11R2_FB6                       ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F11R2_FB7                       ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F11R2_FB8                       ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F11R2_FB9                       ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F11R2_FB10                      ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F11R2_FB11                      ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F11R2_FB12                      ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F11R2_FB13                      ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F11R2_FB14                      ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F11R2_FB15                      ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F11R2_FB16                      ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F11R2_FB17                      ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F11R2_FB18                      ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F11R2_FB19                      ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F11R2_FB20                      ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F11R2_FB21                      ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F11R2_FB22                      ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F11R2_FB23                      ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F11R2_FB24                      ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F11R2_FB25                      ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F11R2_FB26                      ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F11R2_FB27                      ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F11R2_FB28                      ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F11R2_FB29                      ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F11R2_FB30                      ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F11R2_FB31                      ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F12R2 register  ******************/
-#define  CAN_F12R2_FB0                       ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F12R2_FB1                       ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F12R2_FB2                       ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F12R2_FB3                       ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F12R2_FB4                       ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F12R2_FB5                       ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F12R2_FB6                       ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F12R2_FB7                       ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F12R2_FB8                       ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F12R2_FB9                       ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F12R2_FB10                      ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F12R2_FB11                      ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F12R2_FB12                      ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F12R2_FB13                      ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F12R2_FB14                      ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F12R2_FB15                      ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F12R2_FB16                      ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F12R2_FB17                      ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F12R2_FB18                      ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F12R2_FB19                      ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F12R2_FB20                      ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F12R2_FB21                      ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F12R2_FB22                      ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F12R2_FB23                      ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F12R2_FB24                      ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F12R2_FB25                      ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F12R2_FB26                      ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F12R2_FB27                      ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F12R2_FB28                      ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F12R2_FB29                      ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F12R2_FB30                      ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F12R2_FB31                      ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/*******************  Bit definition for CAN_F13R2 register  ******************/
-#define  CAN_F13R2_FB0                       ((uint32_t)0x00000001)        /*!<Filter bit 0 */
-#define  CAN_F13R2_FB1                       ((uint32_t)0x00000002)        /*!<Filter bit 1 */
-#define  CAN_F13R2_FB2                       ((uint32_t)0x00000004)        /*!<Filter bit 2 */
-#define  CAN_F13R2_FB3                       ((uint32_t)0x00000008)        /*!<Filter bit 3 */
-#define  CAN_F13R2_FB4                       ((uint32_t)0x00000010)        /*!<Filter bit 4 */
-#define  CAN_F13R2_FB5                       ((uint32_t)0x00000020)        /*!<Filter bit 5 */
-#define  CAN_F13R2_FB6                       ((uint32_t)0x00000040)        /*!<Filter bit 6 */
-#define  CAN_F13R2_FB7                       ((uint32_t)0x00000080)        /*!<Filter bit 7 */
-#define  CAN_F13R2_FB8                       ((uint32_t)0x00000100)        /*!<Filter bit 8 */
-#define  CAN_F13R2_FB9                       ((uint32_t)0x00000200)        /*!<Filter bit 9 */
-#define  CAN_F13R2_FB10                      ((uint32_t)0x00000400)        /*!<Filter bit 10 */
-#define  CAN_F13R2_FB11                      ((uint32_t)0x00000800)        /*!<Filter bit 11 */
-#define  CAN_F13R2_FB12                      ((uint32_t)0x00001000)        /*!<Filter bit 12 */
-#define  CAN_F13R2_FB13                      ((uint32_t)0x00002000)        /*!<Filter bit 13 */
-#define  CAN_F13R2_FB14                      ((uint32_t)0x00004000)        /*!<Filter bit 14 */
-#define  CAN_F13R2_FB15                      ((uint32_t)0x00008000)        /*!<Filter bit 15 */
-#define  CAN_F13R2_FB16                      ((uint32_t)0x00010000)        /*!<Filter bit 16 */
-#define  CAN_F13R2_FB17                      ((uint32_t)0x00020000)        /*!<Filter bit 17 */
-#define  CAN_F13R2_FB18                      ((uint32_t)0x00040000)        /*!<Filter bit 18 */
-#define  CAN_F13R2_FB19                      ((uint32_t)0x00080000)        /*!<Filter bit 19 */
-#define  CAN_F13R2_FB20                      ((uint32_t)0x00100000)        /*!<Filter bit 20 */
-#define  CAN_F13R2_FB21                      ((uint32_t)0x00200000)        /*!<Filter bit 21 */
-#define  CAN_F13R2_FB22                      ((uint32_t)0x00400000)        /*!<Filter bit 22 */
-#define  CAN_F13R2_FB23                      ((uint32_t)0x00800000)        /*!<Filter bit 23 */
-#define  CAN_F13R2_FB24                      ((uint32_t)0x01000000)        /*!<Filter bit 24 */
-#define  CAN_F13R2_FB25                      ((uint32_t)0x02000000)        /*!<Filter bit 25 */
-#define  CAN_F13R2_FB26                      ((uint32_t)0x04000000)        /*!<Filter bit 26 */
-#define  CAN_F13R2_FB27                      ((uint32_t)0x08000000)        /*!<Filter bit 27 */
-#define  CAN_F13R2_FB28                      ((uint32_t)0x10000000)        /*!<Filter bit 28 */
-#define  CAN_F13R2_FB29                      ((uint32_t)0x20000000)        /*!<Filter bit 29 */
-#define  CAN_F13R2_FB30                      ((uint32_t)0x40000000)        /*!<Filter bit 30 */
-#define  CAN_F13R2_FB31                      ((uint32_t)0x80000000)        /*!<Filter bit 31 */
-
-/******************************************************************************/
-/*                                                                            */
-/*                          CRC calculation unit                              */
-/*                                                                            */
-/******************************************************************************/
-/*******************  Bit definition for CRC_DR register  *********************/
-#define  CRC_DR_DR                           ((uint32_t)0xFFFFFFFF) /*!< Data register bits */
-
-
-/*******************  Bit definition for CRC_IDR register  ********************/
-#define  CRC_IDR_IDR                         ((uint8_t)0xFF)        /*!< General-purpose 8-bit data register bits */
-
-
-/********************  Bit definition for CRC_CR register  ********************/
-#define  CRC_CR_RESET                        ((uint8_t)0x01)        /*!< RESET bit */
-
-/******************************************************************************/
-/*                                                                            */
-/*                            Crypto Processor                                */
-/*                                                                            */
-/******************************************************************************/
-/******************* Bits definition for CRYP_CR register  ********************/
-#define CRYP_CR_ALGODIR                      ((uint32_t)0x00000004)
-
-#define CRYP_CR_ALGOMODE                     ((uint32_t)0x00000038)
-#define CRYP_CR_ALGOMODE_0                   ((uint32_t)0x00000008)
-#define CRYP_CR_ALGOMODE_1                   ((uint32_t)0x00000010)
-#define CRYP_CR_ALGOMODE_2                   ((uint32_t)0x00000020)
-#define CRYP_CR_ALGOMODE_TDES_ECB            ((uint32_t)0x00000000)
-#define CRYP_CR_ALGOMODE_TDES_CBC            ((uint32_t)0x00000008)
-#define CRYP_CR_ALGOMODE_DES_ECB             ((uint32_t)0x00000010)
-#define CRYP_CR_ALGOMODE_DES_CBC             ((uint32_t)0x00000018)
-#define CRYP_CR_ALGOMODE_AES_ECB             ((uint32_t)0x00000020)
-#define CRYP_CR_ALGOMODE_AES_CBC             ((uint32_t)0x00000028)
-#define CRYP_CR_ALGOMODE_AES_CTR             ((uint32_t)0x00000030)
-#define CRYP_CR_ALGOMODE_AES_KEY             ((uint32_t)0x00000038)
-
-#define CRYP_CR_DATATYPE                     ((uint32_t)0x000000C0)
-#define CRYP_CR_DATATYPE_0                   ((uint32_t)0x00000040)
-#define CRYP_CR_DATATYPE_1                   ((uint32_t)0x00000080)
-#define CRYP_CR_KEYSIZE                      ((uint32_t)0x00000300)
-#define CRYP_CR_KEYSIZE_0                    ((uint32_t)0x00000100)
-#define CRYP_CR_KEYSIZE_1                    ((uint32_t)0x00000200)
-#define CRYP_CR_FFLUSH                       ((uint32_t)0x00004000)
-#define CRYP_CR_CRYPEN                       ((uint32_t)0x00008000)
-/****************** Bits definition for CRYP_SR register  *********************/
-#define CRYP_SR_IFEM                         ((uint32_t)0x00000001)
-#define CRYP_SR_IFNF                         ((uint32_t)0x00000002)
-#define CRYP_SR_OFNE                         ((uint32_t)0x00000004)
-#define CRYP_SR_OFFU                         ((uint32_t)0x00000008)
-#define CRYP_SR_BUSY                         ((uint32_t)0x00000010)
-/****************** Bits definition for CRYP_DMACR register  ******************/
-#define CRYP_DMACR_DIEN                      ((uint32_t)0x00000001)
-#define CRYP_DMACR_DOEN                      ((uint32_t)0x00000002)
-/*****************  Bits definition for CRYP_IMSCR register  ******************/
-#define CRYP_IMSCR_INIM                      ((uint32_t)0x00000001)
-#define CRYP_IMSCR_OUTIM                     ((uint32_t)0x00000002)
-/****************** Bits definition for CRYP_RISR register  *******************/
-#define CRYP_RISR_OUTRIS                     ((uint32_t)0x00000001)
-#define CRYP_RISR_INRIS                      ((uint32_t)0x00000002)
-/****************** Bits definition for CRYP_MISR register  *******************/
-#define CRYP_MISR_INMIS                      ((uint32_t)0x00000001)
-#define CRYP_MISR_OUTMIS                     ((uint32_t)0x00000002)
-
-/******************************************************************************/
-/*                                                                            */
-/*                      Digital to Analog Converter                           */
-/*                                                                            */
-/******************************************************************************/
-/********************  Bit definition for DAC_CR register  ********************/
-#define  DAC_CR_EN1                          ((uint32_t)0x00000001)        /*!<DAC channel1 enable */
-#define  DAC_CR_BOFF1                        ((uint32_t)0x00000002)        /*!<DAC channel1 output buffer disable */
-#define  DAC_CR_TEN1                         ((uint32_t)0x00000004)        /*!<DAC channel1 Trigger enable */
-
-#define  DAC_CR_TSEL1                        ((uint32_t)0x00000038)        /*!<TSEL1[2:0] (DAC channel1 Trigger selection) */
-#define  DAC_CR_TSEL1_0                      ((uint32_t)0x00000008)        /*!<Bit 0 */
-#define  DAC_CR_TSEL1_1                      ((uint32_t)0x00000010)        /*!<Bit 1 */
-#define  DAC_CR_TSEL1_2                      ((uint32_t)0x00000020)        /*!<Bit 2 */
-
-#define  DAC_CR_WAVE1                        ((uint32_t)0x000000C0)        /*!<WAVE1[1:0] (DAC channel1 noise/triangle wave generation enable) */
-#define  DAC_CR_WAVE1_0                      ((uint32_t)0x00000040)        /*!<Bit 0 */
-#define  DAC_CR_WAVE1_1                      ((uint32_t)0x00000080)        /*!<Bit 1 */
-
-#define  DAC_CR_MAMP1                        ((uint32_t)0x00000F00)        /*!<MAMP1[3:0] (DAC channel1 Mask/Amplitude selector) */
-#define  DAC_CR_MAMP1_0                      ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  DAC_CR_MAMP1_1                      ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  DAC_CR_MAMP1_2                      ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  DAC_CR_MAMP1_3                      ((uint32_t)0x00000800)        /*!<Bit 3 */
-
-#define  DAC_CR_DMAEN1                       ((uint32_t)0x00001000)        /*!<DAC channel1 DMA enable */
-#define  DAC_CR_EN2                          ((uint32_t)0x00010000)        /*!<DAC channel2 enable */
-#define  DAC_CR_BOFF2                        ((uint32_t)0x00020000)        /*!<DAC channel2 output buffer disable */
-#define  DAC_CR_TEN2                         ((uint32_t)0x00040000)        /*!<DAC channel2 Trigger enable */
-
-#define  DAC_CR_TSEL2                        ((uint32_t)0x00380000)        /*!<TSEL2[2:0] (DAC channel2 Trigger selection) */
-#define  DAC_CR_TSEL2_0                      ((uint32_t)0x00080000)        /*!<Bit 0 */
-#define  DAC_CR_TSEL2_1                      ((uint32_t)0x00100000)        /*!<Bit 1 */
-#define  DAC_CR_TSEL2_2                      ((uint32_t)0x00200000)        /*!<Bit 2 */
-
-#define  DAC_CR_WAVE2                        ((uint32_t)0x00C00000)        /*!<WAVE2[1:0] (DAC channel2 noise/triangle wave generation enable) */
-#define  DAC_CR_WAVE2_0                      ((uint32_t)0x00400000)        /*!<Bit 0 */
-#define  DAC_CR_WAVE2_1                      ((uint32_t)0x00800000)        /*!<Bit 1 */
-
-#define  DAC_CR_MAMP2                        ((uint32_t)0x0F000000)        /*!<MAMP2[3:0] (DAC channel2 Mask/Amplitude selector) */
-#define  DAC_CR_MAMP2_0                      ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  DAC_CR_MAMP2_1                      ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  DAC_CR_MAMP2_2                      ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  DAC_CR_MAMP2_3                      ((uint32_t)0x08000000)        /*!<Bit 3 */
-
-#define  DAC_CR_DMAEN2                       ((uint32_t)0x10000000)        /*!<DAC channel2 DMA enabled */
-
-/*****************  Bit definition for DAC_SWTRIGR register  ******************/
-#define  DAC_SWTRIGR_SWTRIG1                 ((uint8_t)0x01)               /*!<DAC channel1 software trigger */
-#define  DAC_SWTRIGR_SWTRIG2                 ((uint8_t)0x02)               /*!<DAC channel2 software trigger */
-
-/*****************  Bit definition for DAC_DHR12R1 register  ******************/
-#define  DAC_DHR12R1_DACC1DHR                ((uint16_t)0x0FFF)            /*!<DAC channel1 12-bit Right aligned data */
-
-/*****************  Bit definition for DAC_DHR12L1 register  ******************/
-#define  DAC_DHR12L1_DACC1DHR                ((uint16_t)0xFFF0)            /*!<DAC channel1 12-bit Left aligned data */
-
-/******************  Bit definition for DAC_DHR8R1 register  ******************/
-#define  DAC_DHR8R1_DACC1DHR                 ((uint8_t)0xFF)               /*!<DAC channel1 8-bit Right aligned data */
-
-/*****************  Bit definition for DAC_DHR12R2 register  ******************/
-#define  DAC_DHR12R2_DACC2DHR                ((uint16_t)0x0FFF)            /*!<DAC channel2 12-bit Right aligned data */
-
-/*****************  Bit definition for DAC_DHR12L2 register  ******************/
-#define  DAC_DHR12L2_DACC2DHR                ((uint16_t)0xFFF0)            /*!<DAC channel2 12-bit Left aligned data */
-
-/******************  Bit definition for DAC_DHR8R2 register  ******************/
-#define  DAC_DHR8R2_DACC2DHR                 ((uint8_t)0xFF)               /*!<DAC channel2 8-bit Right aligned data */
-
-/*****************  Bit definition for DAC_DHR12RD register  ******************/
-#define  DAC_DHR12RD_DACC1DHR                ((uint32_t)0x00000FFF)        /*!<DAC channel1 12-bit Right aligned data */
-#define  DAC_DHR12RD_DACC2DHR                ((uint32_t)0x0FFF0000)        /*!<DAC channel2 12-bit Right aligned data */
-
-/*****************  Bit definition for DAC_DHR12LD register  ******************/
-#define  DAC_DHR12LD_DACC1DHR                ((uint32_t)0x0000FFF0)        /*!<DAC channel1 12-bit Left aligned data */
-#define  DAC_DHR12LD_DACC2DHR                ((uint32_t)0xFFF00000)        /*!<DAC channel2 12-bit Left aligned data */
-
-/******************  Bit definition for DAC_DHR8RD register  ******************/
-#define  DAC_DHR8RD_DACC1DHR                 ((uint16_t)0x00FF)            /*!<DAC channel1 8-bit Right aligned data */
-#define  DAC_DHR8RD_DACC2DHR                 ((uint16_t)0xFF00)            /*!<DAC channel2 8-bit Right aligned data */
-
-/*******************  Bit definition for DAC_DOR1 register  *******************/
-#define  DAC_DOR1_DACC1DOR                   ((uint16_t)0x0FFF)            /*!<DAC channel1 data output */
-
-/*******************  Bit definition for DAC_DOR2 register  *******************/
-#define  DAC_DOR2_DACC2DOR                   ((uint16_t)0x0FFF)            /*!<DAC channel2 data output */
-
-/********************  Bit definition for DAC_SR register  ********************/
-#define  DAC_SR_DMAUDR1                      ((uint32_t)0x00002000)        /*!<DAC channel1 DMA underrun flag */
-#define  DAC_SR_DMAUDR2                      ((uint32_t)0x20000000)        /*!<DAC channel2 DMA underrun flag */
-
-/******************************************************************************/
-/*                                                                            */
-/*                                 Debug MCU                                  */
-/*                                                                            */
-/******************************************************************************/
-
-/******************************************************************************/
-/*                                                                            */
-/*                                    DCMI                                    */
-/*                                                                            */
-/******************************************************************************/
-/********************  Bits definition for DCMI_CR register  ******************/
-#define DCMI_CR_CAPTURE                      ((uint32_t)0x00000001)
-#define DCMI_CR_CM                           ((uint32_t)0x00000002)
-#define DCMI_CR_CROP                         ((uint32_t)0x00000004)
-#define DCMI_CR_JPEG                         ((uint32_t)0x00000008)
-#define DCMI_CR_ESS                          ((uint32_t)0x00000010)
-#define DCMI_CR_PCKPOL                       ((uint32_t)0x00000020)
-#define DCMI_CR_HSPOL                        ((uint32_t)0x00000040)
-#define DCMI_CR_VSPOL                        ((uint32_t)0x00000080)
-#define DCMI_CR_FCRC_0                       ((uint32_t)0x00000100)
-#define DCMI_CR_FCRC_1                       ((uint32_t)0x00000200)
-#define DCMI_CR_EDM_0                        ((uint32_t)0x00000400)
-#define DCMI_CR_EDM_1                        ((uint32_t)0x00000800)
-#define DCMI_CR_CRE                          ((uint32_t)0x00001000)
-#define DCMI_CR_ENABLE                       ((uint32_t)0x00004000)
-
-/********************  Bits definition for DCMI_SR register  ******************/
-#define DCMI_SR_HSYNC                        ((uint32_t)0x00000001)
-#define DCMI_SR_VSYNC                        ((uint32_t)0x00000002)
-#define DCMI_SR_FNE                          ((uint32_t)0x00000004)
-
-/********************  Bits definition for DCMI_RISR register  ****************/
-#define DCMI_RISR_FRAME_RIS                  ((uint32_t)0x00000001)
-#define DCMI_RISR_OVF_RIS                    ((uint32_t)0x00000002)
-#define DCMI_RISR_ERR_RIS                    ((uint32_t)0x00000004)
-#define DCMI_RISR_VSYNC_RIS                  ((uint32_t)0x00000008)
-#define DCMI_RISR_LINE_RIS                   ((uint32_t)0x00000010)
-
-/********************  Bits definition for DCMI_IER register  *****************/
-#define DCMI_IER_FRAME_IE                    ((uint32_t)0x00000001)
-#define DCMI_IER_OVF_IE                      ((uint32_t)0x00000002)
-#define DCMI_IER_ERR_IE                      ((uint32_t)0x00000004)
-#define DCMI_IER_VSYNC_IE                    ((uint32_t)0x00000008)
-#define DCMI_IER_LINE_IE                     ((uint32_t)0x00000010)
-
-/********************  Bits definition for DCMI_MISR register  ****************/
-#define DCMI_MISR_FRAME_MIS                  ((uint32_t)0x00000001)
-#define DCMI_MISR_OVF_MIS                    ((uint32_t)0x00000002)
-#define DCMI_MISR_ERR_MIS                    ((uint32_t)0x00000004)
-#define DCMI_MISR_VSYNC_MIS                  ((uint32_t)0x00000008)
-#define DCMI_MISR_LINE_MIS                   ((uint32_t)0x00000010)
-
-/********************  Bits definition for DCMI_ICR register  *****************/
-#define DCMI_ICR_FRAME_ISC                   ((uint32_t)0x00000001)
-#define DCMI_ICR_OVF_ISC                     ((uint32_t)0x00000002)
-#define DCMI_ICR_ERR_ISC                     ((uint32_t)0x00000004)
-#define DCMI_ICR_VSYNC_ISC                   ((uint32_t)0x00000008)
-#define DCMI_ICR_LINE_ISC                    ((uint32_t)0x00000010)
-
-/******************************************************************************/
-/*                                                                            */
-/*                             DMA Controller                                 */
-/*                                                                            */
-/******************************************************************************/
-/********************  Bits definition for DMA_SxCR register  *****************/ 
-#define DMA_SxCR_CHSEL                       ((uint32_t)0x0E000000)
-#define DMA_SxCR_CHSEL_0                     ((uint32_t)0x02000000)
-#define DMA_SxCR_CHSEL_1                     ((uint32_t)0x04000000)
-#define DMA_SxCR_CHSEL_2                     ((uint32_t)0x08000000) 
-#define DMA_SxCR_MBURST                      ((uint32_t)0x01800000)
-#define DMA_SxCR_MBURST_0                    ((uint32_t)0x00800000)
-#define DMA_SxCR_MBURST_1                    ((uint32_t)0x01000000)
-#define DMA_SxCR_PBURST                      ((uint32_t)0x00600000)
-#define DMA_SxCR_PBURST_0                    ((uint32_t)0x00200000)
-#define DMA_SxCR_PBURST_1                    ((uint32_t)0x00400000)
-#define DMA_SxCR_ACK                         ((uint32_t)0x00100000)
-#define DMA_SxCR_CT                          ((uint32_t)0x00080000)  
-#define DMA_SxCR_DBM                         ((uint32_t)0x00040000)
-#define DMA_SxCR_PL                          ((uint32_t)0x00030000)
-#define DMA_SxCR_PL_0                        ((uint32_t)0x00010000)
-#define DMA_SxCR_PL_1                        ((uint32_t)0x00020000)
-#define DMA_SxCR_PINCOS                      ((uint32_t)0x00008000)
-#define DMA_SxCR_MSIZE                       ((uint32_t)0x00006000)
-#define DMA_SxCR_MSIZE_0                     ((uint32_t)0x00002000)
-#define DMA_SxCR_MSIZE_1                     ((uint32_t)0x00004000)
-#define DMA_SxCR_PSIZE                       ((uint32_t)0x00001800)
-#define DMA_SxCR_PSIZE_0                     ((uint32_t)0x00000800)
-#define DMA_SxCR_PSIZE_1                     ((uint32_t)0x00001000)
-#define DMA_SxCR_MINC                        ((uint32_t)0x00000400)
-#define DMA_SxCR_PINC                        ((uint32_t)0x00000200)
-#define DMA_SxCR_CIRC                        ((uint32_t)0x00000100)
-#define DMA_SxCR_DIR                         ((uint32_t)0x000000C0)
-#define DMA_SxCR_DIR_0                       ((uint32_t)0x00000040)
-#define DMA_SxCR_DIR_1                       ((uint32_t)0x00000080)
-#define DMA_SxCR_PFCTRL                      ((uint32_t)0x00000020)
-#define DMA_SxCR_TCIE                        ((uint32_t)0x00000010)
-#define DMA_SxCR_HTIE                        ((uint32_t)0x00000008)
-#define DMA_SxCR_TEIE                        ((uint32_t)0x00000004)
-#define DMA_SxCR_DMEIE                       ((uint32_t)0x00000002)
-#define DMA_SxCR_EN                          ((uint32_t)0x00000001)
-
-/********************  Bits definition for DMA_SxCNDTR register  **************/
-#define DMA_SxNDT                            ((uint32_t)0x0000FFFF)
-#define DMA_SxNDT_0                          ((uint32_t)0x00000001)
-#define DMA_SxNDT_1                          ((uint32_t)0x00000002)
-#define DMA_SxNDT_2                          ((uint32_t)0x00000004)
-#define DMA_SxNDT_3                          ((uint32_t)0x00000008)
-#define DMA_SxNDT_4                          ((uint32_t)0x00000010)
-#define DMA_SxNDT_5                          ((uint32_t)0x00000020)
-#define DMA_SxNDT_6                          ((uint32_t)0x00000040)
-#define DMA_SxNDT_7                          ((uint32_t)0x00000080)
-#define DMA_SxNDT_8                          ((uint32_t)0x00000100)
-#define DMA_SxNDT_9                          ((uint32_t)0x00000200)
-#define DMA_SxNDT_10                         ((uint32_t)0x00000400)
-#define DMA_SxNDT_11                         ((uint32_t)0x00000800)
-#define DMA_SxNDT_12                         ((uint32_t)0x00001000)
-#define DMA_SxNDT_13                         ((uint32_t)0x00002000)
-#define DMA_SxNDT_14                         ((uint32_t)0x00004000)
-#define DMA_SxNDT_15                         ((uint32_t)0x00008000)
-
-/********************  Bits definition for DMA_SxFCR register  ****************/ 
-#define DMA_SxFCR_FEIE                       ((uint32_t)0x00000080)
-#define DMA_SxFCR_FS                         ((uint32_t)0x00000038)
-#define DMA_SxFCR_FS_0                       ((uint32_t)0x00000008)
-#define DMA_SxFCR_FS_1                       ((uint32_t)0x00000010)
-#define DMA_SxFCR_FS_2                       ((uint32_t)0x00000020)
-#define DMA_SxFCR_DMDIS                      ((uint32_t)0x00000004)
-#define DMA_SxFCR_FTH                        ((uint32_t)0x00000003)
-#define DMA_SxFCR_FTH_0                      ((uint32_t)0x00000001)
-#define DMA_SxFCR_FTH_1                      ((uint32_t)0x00000002)
-
-/********************  Bits definition for DMA_LISR register  *****************/ 
-#define DMA_LISR_TCIF3                       ((uint32_t)0x08000000)
-#define DMA_LISR_HTIF3                       ((uint32_t)0x04000000)
-#define DMA_LISR_TEIF3                       ((uint32_t)0x02000000)
-#define DMA_LISR_DMEIF3                      ((uint32_t)0x01000000)
-#define DMA_LISR_FEIF3                       ((uint32_t)0x00400000)
-#define DMA_LISR_TCIF2                       ((uint32_t)0x00200000)
-#define DMA_LISR_HTIF2                       ((uint32_t)0x00100000)
-#define DMA_LISR_TEIF2                       ((uint32_t)0x00080000)
-#define DMA_LISR_DMEIF2                      ((uint32_t)0x00040000)
-#define DMA_LISR_FEIF2                       ((uint32_t)0x00010000)
-#define DMA_LISR_TCIF1                       ((uint32_t)0x00000800)
-#define DMA_LISR_HTIF1                       ((uint32_t)0x00000400)
-#define DMA_LISR_TEIF1                       ((uint32_t)0x00000200)
-#define DMA_LISR_DMEIF1                      ((uint32_t)0x00000100)
-#define DMA_LISR_FEIF1                       ((uint32_t)0x00000040)
-#define DMA_LISR_TCIF0                       ((uint32_t)0x00000020)
-#define DMA_LISR_HTIF0                       ((uint32_t)0x00000010)
-#define DMA_LISR_TEIF0                       ((uint32_t)0x00000008)
-#define DMA_LISR_DMEIF0                      ((uint32_t)0x00000004)
-#define DMA_LISR_FEIF0                       ((uint32_t)0x00000001)
-
-/********************  Bits definition for DMA_HISR register  *****************/ 
-#define DMA_HISR_TCIF7                       ((uint32_t)0x08000000)
-#define DMA_HISR_HTIF7                       ((uint32_t)0x04000000)
-#define DMA_HISR_TEIF7                       ((uint32_t)0x02000000)
-#define DMA_HISR_DMEIF7                      ((uint32_t)0x01000000)
-#define DMA_HISR_FEIF7                       ((uint32_t)0x00400000)
-#define DMA_HISR_TCIF6                       ((uint32_t)0x00200000)
-#define DMA_HISR_HTIF6                       ((uint32_t)0x00100000)
-#define DMA_HISR_TEIF6                       ((uint32_t)0x00080000)
-#define DMA_HISR_DMEIF6                      ((uint32_t)0x00040000)
-#define DMA_HISR_FEIF6                       ((uint32_t)0x00010000)
-#define DMA_HISR_TCIF5                       ((uint32_t)0x00000800)
-#define DMA_HISR_HTIF5                       ((uint32_t)0x00000400)
-#define DMA_HISR_TEIF5                       ((uint32_t)0x00000200)
-#define DMA_HISR_DMEIF5                      ((uint32_t)0x00000100)
-#define DMA_HISR_FEIF5                       ((uint32_t)0x00000040)
-#define DMA_HISR_TCIF4                       ((uint32_t)0x00000020)
-#define DMA_HISR_HTIF4                       ((uint32_t)0x00000010)
-#define DMA_HISR_TEIF4                       ((uint32_t)0x00000008)
-#define DMA_HISR_DMEIF4                      ((uint32_t)0x00000004)
-#define DMA_HISR_FEIF4                       ((uint32_t)0x00000001)
-
-/********************  Bits definition for DMA_LIFCR register  ****************/ 
-#define DMA_LIFCR_CTCIF3                     ((uint32_t)0x08000000)
-#define DMA_LIFCR_CHTIF3                     ((uint32_t)0x04000000)
-#define DMA_LIFCR_CTEIF3                     ((uint32_t)0x02000000)
-#define DMA_LIFCR_CDMEIF3                    ((uint32_t)0x01000000)
-#define DMA_LIFCR_CFEIF3                     ((uint32_t)0x00400000)
-#define DMA_LIFCR_CTCIF2                     ((uint32_t)0x00200000)
-#define DMA_LIFCR_CHTIF2                     ((uint32_t)0x00100000)
-#define DMA_LIFCR_CTEIF2                     ((uint32_t)0x00080000)
-#define DMA_LIFCR_CDMEIF2                    ((uint32_t)0x00040000)
-#define DMA_LIFCR_CFEIF2                     ((uint32_t)0x00010000)
-#define DMA_LIFCR_CTCIF1                     ((uint32_t)0x00000800)
-#define DMA_LIFCR_CHTIF1                     ((uint32_t)0x00000400)
-#define DMA_LIFCR_CTEIF1                     ((uint32_t)0x00000200)
-#define DMA_LIFCR_CDMEIF1                    ((uint32_t)0x00000100)
-#define DMA_LIFCR_CFEIF1                     ((uint32_t)0x00000040)
-#define DMA_LIFCR_CTCIF0                     ((uint32_t)0x00000020)
-#define DMA_LIFCR_CHTIF0                     ((uint32_t)0x00000010)
-#define DMA_LIFCR_CTEIF0                     ((uint32_t)0x00000008)
-#define DMA_LIFCR_CDMEIF0                    ((uint32_t)0x00000004)
-#define DMA_LIFCR_CFEIF0                     ((uint32_t)0x00000001)
-
-/********************  Bits definition for DMA_HIFCR  register  ****************/ 
-#define DMA_HIFCR_CTCIF7                     ((uint32_t)0x08000000)
-#define DMA_HIFCR_CHTIF7                     ((uint32_t)0x04000000)
-#define DMA_HIFCR_CTEIF7                     ((uint32_t)0x02000000)
-#define DMA_HIFCR_CDMEIF7                    ((uint32_t)0x01000000)
-#define DMA_HIFCR_CFEIF7                     ((uint32_t)0x00400000)
-#define DMA_HIFCR_CTCIF6                     ((uint32_t)0x00200000)
-#define DMA_HIFCR_CHTIF6                     ((uint32_t)0x00100000)
-#define DMA_HIFCR_CTEIF6                     ((uint32_t)0x00080000)
-#define DMA_HIFCR_CDMEIF6                    ((uint32_t)0x00040000)
-#define DMA_HIFCR_CFEIF6                     ((uint32_t)0x00010000)
-#define DMA_HIFCR_CTCIF5                     ((uint32_t)0x00000800)
-#define DMA_HIFCR_CHTIF5                     ((uint32_t)0x00000400)
-#define DMA_HIFCR_CTEIF5                     ((uint32_t)0x00000200)
-#define DMA_HIFCR_CDMEIF5                    ((uint32_t)0x00000100)
-#define DMA_HIFCR_CFEIF5                     ((uint32_t)0x00000040)
-#define DMA_HIFCR_CTCIF4                     ((uint32_t)0x00000020)
-#define DMA_HIFCR_CHTIF4                     ((uint32_t)0x00000010)
-#define DMA_HIFCR_CTEIF4                     ((uint32_t)0x00000008)
-#define DMA_HIFCR_CDMEIF4                    ((uint32_t)0x00000004)
-#define DMA_HIFCR_CFEIF4                     ((uint32_t)0x00000001)
-
-/******************************************************************************/
-/*                                                                            */
-/*                    External Interrupt/Event Controller                     */
-/*                                                                            */
-/******************************************************************************/
-/*******************  Bit definition for EXTI_IMR register  *******************/
-#define  EXTI_IMR_MR0                        ((uint32_t)0x00000001)        /*!< Interrupt Mask on line 0 */
-#define  EXTI_IMR_MR1                        ((uint32_t)0x00000002)        /*!< Interrupt Mask on line 1 */
-#define  EXTI_IMR_MR2                        ((uint32_t)0x00000004)        /*!< Interrupt Mask on line 2 */
-#define  EXTI_IMR_MR3                        ((uint32_t)0x00000008)        /*!< Interrupt Mask on line 3 */
-#define  EXTI_IMR_MR4                        ((uint32_t)0x00000010)        /*!< Interrupt Mask on line 4 */
-#define  EXTI_IMR_MR5                        ((uint32_t)0x00000020)        /*!< Interrupt Mask on line 5 */
-#define  EXTI_IMR_MR6                        ((uint32_t)0x00000040)        /*!< Interrupt Mask on line 6 */
-#define  EXTI_IMR_MR7                        ((uint32_t)0x00000080)        /*!< Interrupt Mask on line 7 */
-#define  EXTI_IMR_MR8                        ((uint32_t)0x00000100)        /*!< Interrupt Mask on line 8 */
-#define  EXTI_IMR_MR9                        ((uint32_t)0x00000200)        /*!< Interrupt Mask on line 9 */
-#define  EXTI_IMR_MR10                       ((uint32_t)0x00000400)        /*!< Interrupt Mask on line 10 */
-#define  EXTI_IMR_MR11                       ((uint32_t)0x00000800)        /*!< Interrupt Mask on line 11 */
-#define  EXTI_IMR_MR12                       ((uint32_t)0x00001000)        /*!< Interrupt Mask on line 12 */
-#define  EXTI_IMR_MR13                       ((uint32_t)0x00002000)        /*!< Interrupt Mask on line 13 */
-#define  EXTI_IMR_MR14                       ((uint32_t)0x00004000)        /*!< Interrupt Mask on line 14 */
-#define  EXTI_IMR_MR15                       ((uint32_t)0x00008000)        /*!< Interrupt Mask on line 15 */
-#define  EXTI_IMR_MR16                       ((uint32_t)0x00010000)        /*!< Interrupt Mask on line 16 */
-#define  EXTI_IMR_MR17                       ((uint32_t)0x00020000)        /*!< Interrupt Mask on line 17 */
-#define  EXTI_IMR_MR18                       ((uint32_t)0x00040000)        /*!< Interrupt Mask on line 18 */
-#define  EXTI_IMR_MR19                       ((uint32_t)0x00080000)        /*!< Interrupt Mask on line 19 */
-
-/*******************  Bit definition for EXTI_EMR register  *******************/
-#define  EXTI_EMR_MR0                        ((uint32_t)0x00000001)        /*!< Event Mask on line 0 */
-#define  EXTI_EMR_MR1                        ((uint32_t)0x00000002)        /*!< Event Mask on line 1 */
-#define  EXTI_EMR_MR2                        ((uint32_t)0x00000004)        /*!< Event Mask on line 2 */
-#define  EXTI_EMR_MR3                        ((uint32_t)0x00000008)        /*!< Event Mask on line 3 */
-#define  EXTI_EMR_MR4                        ((uint32_t)0x00000010)        /*!< Event Mask on line 4 */
-#define  EXTI_EMR_MR5                        ((uint32_t)0x00000020)        /*!< Event Mask on line 5 */
-#define  EXTI_EMR_MR6                        ((uint32_t)0x00000040)        /*!< Event Mask on line 6 */
-#define  EXTI_EMR_MR7                        ((uint32_t)0x00000080)        /*!< Event Mask on line 7 */
-#define  EXTI_EMR_MR8                        ((uint32_t)0x00000100)        /*!< Event Mask on line 8 */
-#define  EXTI_EMR_MR9                        ((uint32_t)0x00000200)        /*!< Event Mask on line 9 */
-#define  EXTI_EMR_MR10                       ((uint32_t)0x00000400)        /*!< Event Mask on line 10 */
-#define  EXTI_EMR_MR11                       ((uint32_t)0x00000800)        /*!< Event Mask on line 11 */
-#define  EXTI_EMR_MR12                       ((uint32_t)0x00001000)        /*!< Event Mask on line 12 */
-#define  EXTI_EMR_MR13                       ((uint32_t)0x00002000)        /*!< Event Mask on line 13 */
-#define  EXTI_EMR_MR14                       ((uint32_t)0x00004000)        /*!< Event Mask on line 14 */
-#define  EXTI_EMR_MR15                       ((uint32_t)0x00008000)        /*!< Event Mask on line 15 */
-#define  EXTI_EMR_MR16                       ((uint32_t)0x00010000)        /*!< Event Mask on line 16 */
-#define  EXTI_EMR_MR17                       ((uint32_t)0x00020000)        /*!< Event Mask on line 17 */
-#define  EXTI_EMR_MR18                       ((uint32_t)0x00040000)        /*!< Event Mask on line 18 */
-#define  EXTI_EMR_MR19                       ((uint32_t)0x00080000)        /*!< Event Mask on line 19 */
-
-/******************  Bit definition for EXTI_RTSR register  *******************/
-#define  EXTI_RTSR_TR0                       ((uint32_t)0x00000001)        /*!< Rising trigger event configuration bit of line 0 */
-#define  EXTI_RTSR_TR1                       ((uint32_t)0x00000002)        /*!< Rising trigger event configuration bit of line 1 */
-#define  EXTI_RTSR_TR2                       ((uint32_t)0x00000004)        /*!< Rising trigger event configuration bit of line 2 */
-#define  EXTI_RTSR_TR3                       ((uint32_t)0x00000008)        /*!< Rising trigger event configuration bit of line 3 */
-#define  EXTI_RTSR_TR4                       ((uint32_t)0x00000010)        /*!< Rising trigger event configuration bit of line 4 */
-#define  EXTI_RTSR_TR5                       ((uint32_t)0x00000020)        /*!< Rising trigger event configuration bit of line 5 */
-#define  EXTI_RTSR_TR6                       ((uint32_t)0x00000040)        /*!< Rising trigger event configuration bit of line 6 */
-#define  EXTI_RTSR_TR7                       ((uint32_t)0x00000080)        /*!< Rising trigger event configuration bit of line 7 */
-#define  EXTI_RTSR_TR8                       ((uint32_t)0x00000100)        /*!< Rising trigger event configuration bit of line 8 */
-#define  EXTI_RTSR_TR9                       ((uint32_t)0x00000200)        /*!< Rising trigger event configuration bit of line 9 */
-#define  EXTI_RTSR_TR10                      ((uint32_t)0x00000400)        /*!< Rising trigger event configuration bit of line 10 */
-#define  EXTI_RTSR_TR11                      ((uint32_t)0x00000800)        /*!< Rising trigger event configuration bit of line 11 */
-#define  EXTI_RTSR_TR12                      ((uint32_t)0x00001000)        /*!< Rising trigger event configuration bit of line 12 */
-#define  EXTI_RTSR_TR13                      ((uint32_t)0x00002000)        /*!< Rising trigger event configuration bit of line 13 */
-#define  EXTI_RTSR_TR14                      ((uint32_t)0x00004000)        /*!< Rising trigger event configuration bit of line 14 */
-#define  EXTI_RTSR_TR15                      ((uint32_t)0x00008000)        /*!< Rising trigger event configuration bit of line 15 */
-#define  EXTI_RTSR_TR16                      ((uint32_t)0x00010000)        /*!< Rising trigger event configuration bit of line 16 */
-#define  EXTI_RTSR_TR17                      ((uint32_t)0x00020000)        /*!< Rising trigger event configuration bit of line 17 */
-#define  EXTI_RTSR_TR18                      ((uint32_t)0x00040000)        /*!< Rising trigger event configuration bit of line 18 */
-#define  EXTI_RTSR_TR19                      ((uint32_t)0x00080000)        /*!< Rising trigger event configuration bit of line 19 */
-
-/******************  Bit definition for EXTI_FTSR register  *******************/
-#define  EXTI_FTSR_TR0                       ((uint32_t)0x00000001)        /*!< Falling trigger event configuration bit of line 0 */
-#define  EXTI_FTSR_TR1                       ((uint32_t)0x00000002)        /*!< Falling trigger event configuration bit of line 1 */
-#define  EXTI_FTSR_TR2                       ((uint32_t)0x00000004)        /*!< Falling trigger event configuration bit of line 2 */
-#define  EXTI_FTSR_TR3                       ((uint32_t)0x00000008)        /*!< Falling trigger event configuration bit of line 3 */
-#define  EXTI_FTSR_TR4                       ((uint32_t)0x00000010)        /*!< Falling trigger event configuration bit of line 4 */
-#define  EXTI_FTSR_TR5                       ((uint32_t)0x00000020)        /*!< Falling trigger event configuration bit of line 5 */
-#define  EXTI_FTSR_TR6                       ((uint32_t)0x00000040)        /*!< Falling trigger event configuration bit of line 6 */
-#define  EXTI_FTSR_TR7                       ((uint32_t)0x00000080)        /*!< Falling trigger event configuration bit of line 7 */
-#define  EXTI_FTSR_TR8                       ((uint32_t)0x00000100)        /*!< Falling trigger event configuration bit of line 8 */
-#define  EXTI_FTSR_TR9                       ((uint32_t)0x00000200)        /*!< Falling trigger event configuration bit of line 9 */
-#define  EXTI_FTSR_TR10                      ((uint32_t)0x00000400)        /*!< Falling trigger event configuration bit of line 10 */
-#define  EXTI_FTSR_TR11                      ((uint32_t)0x00000800)        /*!< Falling trigger event configuration bit of line 11 */
-#define  EXTI_FTSR_TR12                      ((uint32_t)0x00001000)        /*!< Falling trigger event configuration bit of line 12 */
-#define  EXTI_FTSR_TR13                      ((uint32_t)0x00002000)        /*!< Falling trigger event configuration bit of line 13 */
-#define  EXTI_FTSR_TR14                      ((uint32_t)0x00004000)        /*!< Falling trigger event configuration bit of line 14 */
-#define  EXTI_FTSR_TR15                      ((uint32_t)0x00008000)        /*!< Falling trigger event configuration bit of line 15 */
-#define  EXTI_FTSR_TR16                      ((uint32_t)0x00010000)        /*!< Falling trigger event configuration bit of line 16 */
-#define  EXTI_FTSR_TR17                      ((uint32_t)0x00020000)        /*!< Falling trigger event configuration bit of line 17 */
-#define  EXTI_FTSR_TR18                      ((uint32_t)0x00040000)        /*!< Falling trigger event configuration bit of line 18 */
-#define  EXTI_FTSR_TR19                      ((uint32_t)0x00080000)        /*!< Falling trigger event configuration bit of line 19 */
-
-/******************  Bit definition for EXTI_SWIER register  ******************/
-#define  EXTI_SWIER_SWIER0                   ((uint32_t)0x00000001)        /*!< Software Interrupt on line 0 */
-#define  EXTI_SWIER_SWIER1                   ((uint32_t)0x00000002)        /*!< Software Interrupt on line 1 */
-#define  EXTI_SWIER_SWIER2                   ((uint32_t)0x00000004)        /*!< Software Interrupt on line 2 */
-#define  EXTI_SWIER_SWIER3                   ((uint32_t)0x00000008)        /*!< Software Interrupt on line 3 */
-#define  EXTI_SWIER_SWIER4                   ((uint32_t)0x00000010)        /*!< Software Interrupt on line 4 */
-#define  EXTI_SWIER_SWIER5                   ((uint32_t)0x00000020)        /*!< Software Interrupt on line 5 */
-#define  EXTI_SWIER_SWIER6                   ((uint32_t)0x00000040)        /*!< Software Interrupt on line 6 */
-#define  EXTI_SWIER_SWIER7                   ((uint32_t)0x00000080)        /*!< Software Interrupt on line 7 */
-#define  EXTI_SWIER_SWIER8                   ((uint32_t)0x00000100)        /*!< Software Interrupt on line 8 */
-#define  EXTI_SWIER_SWIER9                   ((uint32_t)0x00000200)        /*!< Software Interrupt on line 9 */
-#define  EXTI_SWIER_SWIER10                  ((uint32_t)0x00000400)        /*!< Software Interrupt on line 10 */
-#define  EXTI_SWIER_SWIER11                  ((uint32_t)0x00000800)        /*!< Software Interrupt on line 11 */
-#define  EXTI_SWIER_SWIER12                  ((uint32_t)0x00001000)        /*!< Software Interrupt on line 12 */
-#define  EXTI_SWIER_SWIER13                  ((uint32_t)0x00002000)        /*!< Software Interrupt on line 13 */
-#define  EXTI_SWIER_SWIER14                  ((uint32_t)0x00004000)        /*!< Software Interrupt on line 14 */
-#define  EXTI_SWIER_SWIER15                  ((uint32_t)0x00008000)        /*!< Software Interrupt on line 15 */
-#define  EXTI_SWIER_SWIER16                  ((uint32_t)0x00010000)        /*!< Software Interrupt on line 16 */
-#define  EXTI_SWIER_SWIER17                  ((uint32_t)0x00020000)        /*!< Software Interrupt on line 17 */
-#define  EXTI_SWIER_SWIER18                  ((uint32_t)0x00040000)        /*!< Software Interrupt on line 18 */
-#define  EXTI_SWIER_SWIER19                  ((uint32_t)0x00080000)        /*!< Software Interrupt on line 19 */
-
-/*******************  Bit definition for EXTI_PR register  ********************/
-#define  EXTI_PR_PR0                         ((uint32_t)0x00000001)        /*!< Pending bit for line 0 */
-#define  EXTI_PR_PR1                         ((uint32_t)0x00000002)        /*!< Pending bit for line 1 */
-#define  EXTI_PR_PR2                         ((uint32_t)0x00000004)        /*!< Pending bit for line 2 */
-#define  EXTI_PR_PR3                         ((uint32_t)0x00000008)        /*!< Pending bit for line 3 */
-#define  EXTI_PR_PR4                         ((uint32_t)0x00000010)        /*!< Pending bit for line 4 */
-#define  EXTI_PR_PR5                         ((uint32_t)0x00000020)        /*!< Pending bit for line 5 */
-#define  EXTI_PR_PR6                         ((uint32_t)0x00000040)        /*!< Pending bit for line 6 */
-#define  EXTI_PR_PR7                         ((uint32_t)0x00000080)        /*!< Pending bit for line 7 */
-#define  EXTI_PR_PR8                         ((uint32_t)0x00000100)        /*!< Pending bit for line 8 */
-#define  EXTI_PR_PR9                         ((uint32_t)0x00000200)        /*!< Pending bit for line 9 */
-#define  EXTI_PR_PR10                        ((uint32_t)0x00000400)        /*!< Pending bit for line 10 */
-#define  EXTI_PR_PR11                        ((uint32_t)0x00000800)        /*!< Pending bit for line 11 */
-#define  EXTI_PR_PR12                        ((uint32_t)0x00001000)        /*!< Pending bit for line 12 */
-#define  EXTI_PR_PR13                        ((uint32_t)0x00002000)        /*!< Pending bit for line 13 */
-#define  EXTI_PR_PR14                        ((uint32_t)0x00004000)        /*!< Pending bit for line 14 */
-#define  EXTI_PR_PR15                        ((uint32_t)0x00008000)        /*!< Pending bit for line 15 */
-#define  EXTI_PR_PR16                        ((uint32_t)0x00010000)        /*!< Pending bit for line 16 */
-#define  EXTI_PR_PR17                        ((uint32_t)0x00020000)        /*!< Pending bit for line 17 */
-#define  EXTI_PR_PR18                        ((uint32_t)0x00040000)        /*!< Pending bit for line 18 */
-#define  EXTI_PR_PR19                        ((uint32_t)0x00080000)        /*!< Pending bit for line 19 */
-
-/******************************************************************************/
-/*                                                                            */
-/*                                    FLASH                                   */
-/*                                                                            */
-/******************************************************************************/
-/*******************  Bits definition for FLASH_ACR register  *****************/
-#define FLASH_ACR_LATENCY                    ((uint32_t)0x00000007)
-#define FLASH_ACR_LATENCY_0WS                ((uint32_t)0x00000000)
-#define FLASH_ACR_LATENCY_1WS                ((uint32_t)0x00000001)
-#define FLASH_ACR_LATENCY_2WS                ((uint32_t)0x00000002)
-#define FLASH_ACR_LATENCY_3WS                ((uint32_t)0x00000003)
-#define FLASH_ACR_LATENCY_4WS                ((uint32_t)0x00000004)
-#define FLASH_ACR_LATENCY_5WS                ((uint32_t)0x00000005)
-#define FLASH_ACR_LATENCY_6WS                ((uint32_t)0x00000006)
-#define FLASH_ACR_LATENCY_7WS                ((uint32_t)0x00000007)
-
-#define FLASH_ACR_PRFTEN                     ((uint32_t)0x00000100)
-#define FLASH_ACR_ICEN                       ((uint32_t)0x00000200)
-#define FLASH_ACR_DCEN                       ((uint32_t)0x00000400)
-#define FLASH_ACR_ICRST                      ((uint32_t)0x00000800)
-#define FLASH_ACR_DCRST                      ((uint32_t)0x00001000)
-#define FLASH_ACR_BYTE0_ADDRESS              ((uint32_t)0x40023C00)
-#define FLASH_ACR_BYTE2_ADDRESS              ((uint32_t)0x40023C03)
-
-/*******************  Bits definition for FLASH_SR register  ******************/
-#define FLASH_SR_EOP                         ((uint32_t)0x00000001)
-#define FLASH_SR_SOP                         ((uint32_t)0x00000002)
-#define FLASH_SR_WRPERR                      ((uint32_t)0x00000010)
-#define FLASH_SR_PGAERR                      ((uint32_t)0x00000020)
-#define FLASH_SR_PGPERR                      ((uint32_t)0x00000040)
-#define FLASH_SR_PGSERR                      ((uint32_t)0x00000080)
-#define FLASH_SR_BSY                         ((uint32_t)0x00010000)
-
-/*******************  Bits definition for FLASH_CR register  ******************/
-#define FLASH_CR_PG                          ((uint32_t)0x00000001)
-#define FLASH_CR_SER                         ((uint32_t)0x00000002)
-#define FLASH_CR_MER                         ((uint32_t)0x00000004)
-#define FLASH_CR_SNB_0                       ((uint32_t)0x00000008)
-#define FLASH_CR_SNB_1                       ((uint32_t)0x00000010)
-#define FLASH_CR_SNB_2                       ((uint32_t)0x00000020)
-#define FLASH_CR_SNB_3                       ((uint32_t)0x00000040)
-#define FLASH_CR_PSIZE_0                     ((uint32_t)0x00000100)
-#define FLASH_CR_PSIZE_1                     ((uint32_t)0x00000200)
-#define FLASH_CR_STRT                        ((uint32_t)0x00010000)
-#define FLASH_CR_EOPIE                       ((uint32_t)0x01000000)
-#define FLASH_CR_LOCK                        ((uint32_t)0x80000000)
-
-/*******************  Bits definition for FLASH_OPTCR register  ***************/
-#define FLASH_OPTCR_OPTLOCK                  ((uint32_t)0x00000001)
-#define FLASH_OPTCR_OPTSTRT                  ((uint32_t)0x00000002)
-#define FLASH_OPTCR_BOR_LEV_0                ((uint32_t)0x00000004)
-#define FLASH_OPTCR_BOR_LEV_1                ((uint32_t)0x00000008)
-#define FLASH_OPTCR_BOR_LEV                  ((uint32_t)0x0000000C)
-#define FLASH_OPTCR_WDG_SW                   ((uint32_t)0x00000020)
-#define FLASH_OPTCR_nRST_STOP                ((uint32_t)0x00000040)
-#define FLASH_OPTCR_nRST_STDBY               ((uint32_t)0x00000080)
-#define FLASH_OPTCR_RDP_0                    ((uint32_t)0x00000100)
-#define FLASH_OPTCR_RDP_1                    ((uint32_t)0x00000200)
-#define FLASH_OPTCR_RDP_2                    ((uint32_t)0x00000400)
-#define FLASH_OPTCR_RDP_3                    ((uint32_t)0x00000800)
-#define FLASH_OPTCR_RDP_4                    ((uint32_t)0x00001000)
-#define FLASH_OPTCR_RDP_5                    ((uint32_t)0x00002000)
-#define FLASH_OPTCR_RDP_6                    ((uint32_t)0x00004000)
-#define FLASH_OPTCR_RDP_7                    ((uint32_t)0x00008000)
-#define FLASH_OPTCR_nWRP_0                   ((uint32_t)0x00010000)
-#define FLASH_OPTCR_nWRP_1                   ((uint32_t)0x00020000)
-#define FLASH_OPTCR_nWRP_2                   ((uint32_t)0x00040000)
-#define FLASH_OPTCR_nWRP_3                   ((uint32_t)0x00080000)
-#define FLASH_OPTCR_nWRP_4                   ((uint32_t)0x00100000)
-#define FLASH_OPTCR_nWRP_5                   ((uint32_t)0x00200000)
-#define FLASH_OPTCR_nWRP_6                   ((uint32_t)0x00400000)
-#define FLASH_OPTCR_nWRP_7                   ((uint32_t)0x00800000)
-#define FLASH_OPTCR_nWRP_8                   ((uint32_t)0x01000000)
-#define FLASH_OPTCR_nWRP_9                   ((uint32_t)0x02000000)
-#define FLASH_OPTCR_nWRP_10                  ((uint32_t)0x04000000)
-#define FLASH_OPTCR_nWRP_11                  ((uint32_t)0x08000000)
-
-/******************************************************************************/
-/*                                                                            */
-/*                       Flexible Static Memory Controller                    */
-/*                                                                            */
-/******************************************************************************/
-/******************  Bit definition for FSMC_BCR1 register  *******************/
-#define  FSMC_BCR1_MBKEN                     ((uint32_t)0x00000001)        /*!<Memory bank enable bit */
-#define  FSMC_BCR1_MUXEN                     ((uint32_t)0x00000002)        /*!<Address/data multiplexing enable bit */
-
-#define  FSMC_BCR1_MTYP                      ((uint32_t)0x0000000C)        /*!<MTYP[1:0] bits (Memory type) */
-#define  FSMC_BCR1_MTYP_0                    ((uint32_t)0x00000004)        /*!<Bit 0 */
-#define  FSMC_BCR1_MTYP_1                    ((uint32_t)0x00000008)        /*!<Bit 1 */
-
-#define  FSMC_BCR1_MWID                      ((uint32_t)0x00000030)        /*!<MWID[1:0] bits (Memory data bus width) */
-#define  FSMC_BCR1_MWID_0                    ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_BCR1_MWID_1                    ((uint32_t)0x00000020)        /*!<Bit 1 */
-
-#define  FSMC_BCR1_FACCEN                    ((uint32_t)0x00000040)        /*!<Flash access enable */
-#define  FSMC_BCR1_BURSTEN                   ((uint32_t)0x00000100)        /*!<Burst enable bit */
-#define  FSMC_BCR1_WAITPOL                   ((uint32_t)0x00000200)        /*!<Wait signal polarity bit */
-#define  FSMC_BCR1_WRAPMOD                   ((uint32_t)0x00000400)        /*!<Wrapped burst mode support */
-#define  FSMC_BCR1_WAITCFG                   ((uint32_t)0x00000800)        /*!<Wait timing configuration */
-#define  FSMC_BCR1_WREN                      ((uint32_t)0x00001000)        /*!<Write enable bit */
-#define  FSMC_BCR1_WAITEN                    ((uint32_t)0x00002000)        /*!<Wait enable bit */
-#define  FSMC_BCR1_EXTMOD                    ((uint32_t)0x00004000)        /*!<Extended mode enable */
-#define  FSMC_BCR1_ASYNCWAIT                 ((uint32_t)0x00008000)        /*!<Asynchronous wait */
-#define  FSMC_BCR1_CBURSTRW                  ((uint32_t)0x00080000)        /*!<Write burst enable */
-
-/******************  Bit definition for FSMC_BCR2 register  *******************/
-#define  FSMC_BCR2_MBKEN                     ((uint32_t)0x00000001)        /*!<Memory bank enable bit */
-#define  FSMC_BCR2_MUXEN                     ((uint32_t)0x00000002)        /*!<Address/data multiplexing enable bit */
-
-#define  FSMC_BCR2_MTYP                      ((uint32_t)0x0000000C)        /*!<MTYP[1:0] bits (Memory type) */
-#define  FSMC_BCR2_MTYP_0                    ((uint32_t)0x00000004)        /*!<Bit 0 */
-#define  FSMC_BCR2_MTYP_1                    ((uint32_t)0x00000008)        /*!<Bit 1 */
-
-#define  FSMC_BCR2_MWID                      ((uint32_t)0x00000030)        /*!<MWID[1:0] bits (Memory data bus width) */
-#define  FSMC_BCR2_MWID_0                    ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_BCR2_MWID_1                    ((uint32_t)0x00000020)        /*!<Bit 1 */
-
-#define  FSMC_BCR2_FACCEN                    ((uint32_t)0x00000040)        /*!<Flash access enable */
-#define  FSMC_BCR2_BURSTEN                   ((uint32_t)0x00000100)        /*!<Burst enable bit */
-#define  FSMC_BCR2_WAITPOL                   ((uint32_t)0x00000200)        /*!<Wait signal polarity bit */
-#define  FSMC_BCR2_WRAPMOD                   ((uint32_t)0x00000400)        /*!<Wrapped burst mode support */
-#define  FSMC_BCR2_WAITCFG                   ((uint32_t)0x00000800)        /*!<Wait timing configuration */
-#define  FSMC_BCR2_WREN                      ((uint32_t)0x00001000)        /*!<Write enable bit */
-#define  FSMC_BCR2_WAITEN                    ((uint32_t)0x00002000)        /*!<Wait enable bit */
-#define  FSMC_BCR2_EXTMOD                    ((uint32_t)0x00004000)        /*!<Extended mode enable */
-#define  FSMC_BCR2_ASYNCWAIT                 ((uint32_t)0x00008000)        /*!<Asynchronous wait */
-#define  FSMC_BCR2_CBURSTRW                  ((uint32_t)0x00080000)        /*!<Write burst enable */
-
-/******************  Bit definition for FSMC_BCR3 register  *******************/
-#define  FSMC_BCR3_MBKEN                     ((uint32_t)0x00000001)        /*!<Memory bank enable bit */
-#define  FSMC_BCR3_MUXEN                     ((uint32_t)0x00000002)        /*!<Address/data multiplexing enable bit */
-
-#define  FSMC_BCR3_MTYP                      ((uint32_t)0x0000000C)        /*!<MTYP[1:0] bits (Memory type) */
-#define  FSMC_BCR3_MTYP_0                    ((uint32_t)0x00000004)        /*!<Bit 0 */
-#define  FSMC_BCR3_MTYP_1                    ((uint32_t)0x00000008)        /*!<Bit 1 */
-
-#define  FSMC_BCR3_MWID                      ((uint32_t)0x00000030)        /*!<MWID[1:0] bits (Memory data bus width) */
-#define  FSMC_BCR3_MWID_0                    ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_BCR3_MWID_1                    ((uint32_t)0x00000020)        /*!<Bit 1 */
-
-#define  FSMC_BCR3_FACCEN                    ((uint32_t)0x00000040)        /*!<Flash access enable */
-#define  FSMC_BCR3_BURSTEN                   ((uint32_t)0x00000100)        /*!<Burst enable bit */
-#define  FSMC_BCR3_WAITPOL                   ((uint32_t)0x00000200)        /*!<Wait signal polarity bit. */
-#define  FSMC_BCR3_WRAPMOD                   ((uint32_t)0x00000400)        /*!<Wrapped burst mode support */
-#define  FSMC_BCR3_WAITCFG                   ((uint32_t)0x00000800)        /*!<Wait timing configuration */
-#define  FSMC_BCR3_WREN                      ((uint32_t)0x00001000)        /*!<Write enable bit */
-#define  FSMC_BCR3_WAITEN                    ((uint32_t)0x00002000)        /*!<Wait enable bit */
-#define  FSMC_BCR3_EXTMOD                    ((uint32_t)0x00004000)        /*!<Extended mode enable */
-#define  FSMC_BCR3_ASYNCWAIT                 ((uint32_t)0x00008000)        /*!<Asynchronous wait */
-#define  FSMC_BCR3_CBURSTRW                  ((uint32_t)0x00080000)        /*!<Write burst enable */
-
-/******************  Bit definition for FSMC_BCR4 register  *******************/
-#define  FSMC_BCR4_MBKEN                     ((uint32_t)0x00000001)        /*!<Memory bank enable bit */
-#define  FSMC_BCR4_MUXEN                     ((uint32_t)0x00000002)        /*!<Address/data multiplexing enable bit */
-
-#define  FSMC_BCR4_MTYP                      ((uint32_t)0x0000000C)        /*!<MTYP[1:0] bits (Memory type) */
-#define  FSMC_BCR4_MTYP_0                    ((uint32_t)0x00000004)        /*!<Bit 0 */
-#define  FSMC_BCR4_MTYP_1                    ((uint32_t)0x00000008)        /*!<Bit 1 */
-
-#define  FSMC_BCR4_MWID                      ((uint32_t)0x00000030)        /*!<MWID[1:0] bits (Memory data bus width) */
-#define  FSMC_BCR4_MWID_0                    ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_BCR4_MWID_1                    ((uint32_t)0x00000020)        /*!<Bit 1 */
-
-#define  FSMC_BCR4_FACCEN                    ((uint32_t)0x00000040)        /*!<Flash access enable */
-#define  FSMC_BCR4_BURSTEN                   ((uint32_t)0x00000100)        /*!<Burst enable bit */
-#define  FSMC_BCR4_WAITPOL                   ((uint32_t)0x00000200)        /*!<Wait signal polarity bit */
-#define  FSMC_BCR4_WRAPMOD                   ((uint32_t)0x00000400)        /*!<Wrapped burst mode support */
-#define  FSMC_BCR4_WAITCFG                   ((uint32_t)0x00000800)        /*!<Wait timing configuration */
-#define  FSMC_BCR4_WREN                      ((uint32_t)0x00001000)        /*!<Write enable bit */
-#define  FSMC_BCR4_WAITEN                    ((uint32_t)0x00002000)        /*!<Wait enable bit */
-#define  FSMC_BCR4_EXTMOD                    ((uint32_t)0x00004000)        /*!<Extended mode enable */
-#define  FSMC_BCR4_ASYNCWAIT                 ((uint32_t)0x00008000)        /*!<Asynchronous wait */
-#define  FSMC_BCR4_CBURSTRW                  ((uint32_t)0x00080000)        /*!<Write burst enable */
-
-/******************  Bit definition for FSMC_BTR1 register  ******************/
-#define  FSMC_BTR1_ADDSET                    ((uint32_t)0x0000000F)        /*!<ADDSET[3:0] bits (Address setup phase duration) */
-#define  FSMC_BTR1_ADDSET_0                  ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_BTR1_ADDSET_1                  ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_BTR1_ADDSET_2                  ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_BTR1_ADDSET_3                  ((uint32_t)0x00000008)        /*!<Bit 3 */
-
-#define  FSMC_BTR1_ADDHLD                    ((uint32_t)0x000000F0)        /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
-#define  FSMC_BTR1_ADDHLD_0                  ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_BTR1_ADDHLD_1                  ((uint32_t)0x00000020)        /*!<Bit 1 */
-#define  FSMC_BTR1_ADDHLD_2                  ((uint32_t)0x00000040)        /*!<Bit 2 */
-#define  FSMC_BTR1_ADDHLD_3                  ((uint32_t)0x00000080)        /*!<Bit 3 */
-
-#define  FSMC_BTR1_DATAST                    ((uint32_t)0x0000FF00)        /*!<DATAST [3:0] bits (Data-phase duration) */
-#define  FSMC_BTR1_DATAST_0                  ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_BTR1_DATAST_1                  ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_BTR1_DATAST_2                  ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_BTR1_DATAST_3                  ((uint32_t)0x00000800)        /*!<Bit 3 */
-
-#define  FSMC_BTR1_BUSTURN                   ((uint32_t)0x000F0000)        /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
-#define  FSMC_BTR1_BUSTURN_0                 ((uint32_t)0x00010000)        /*!<Bit 0 */
-#define  FSMC_BTR1_BUSTURN_1                 ((uint32_t)0x00020000)        /*!<Bit 1 */
-#define  FSMC_BTR1_BUSTURN_2                 ((uint32_t)0x00040000)        /*!<Bit 2 */
-#define  FSMC_BTR1_BUSTURN_3                 ((uint32_t)0x00080000)        /*!<Bit 3 */
-
-#define  FSMC_BTR1_CLKDIV                    ((uint32_t)0x00F00000)        /*!<CLKDIV[3:0] bits (Clock divide ratio) */
-#define  FSMC_BTR1_CLKDIV_0                  ((uint32_t)0x00100000)        /*!<Bit 0 */
-#define  FSMC_BTR1_CLKDIV_1                  ((uint32_t)0x00200000)        /*!<Bit 1 */
-#define  FSMC_BTR1_CLKDIV_2                  ((uint32_t)0x00400000)        /*!<Bit 2 */
-#define  FSMC_BTR1_CLKDIV_3                  ((uint32_t)0x00800000)        /*!<Bit 3 */
-
-#define  FSMC_BTR1_DATLAT                    ((uint32_t)0x0F000000)        /*!<DATLA[3:0] bits (Data latency) */
-#define  FSMC_BTR1_DATLAT_0                  ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_BTR1_DATLAT_1                  ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_BTR1_DATLAT_2                  ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_BTR1_DATLAT_3                  ((uint32_t)0x08000000)        /*!<Bit 3 */
-
-#define  FSMC_BTR1_ACCMOD                    ((uint32_t)0x30000000)        /*!<ACCMOD[1:0] bits (Access mode) */
-#define  FSMC_BTR1_ACCMOD_0                  ((uint32_t)0x10000000)        /*!<Bit 0 */
-#define  FSMC_BTR1_ACCMOD_1                  ((uint32_t)0x20000000)        /*!<Bit 1 */
-
-/******************  Bit definition for FSMC_BTR2 register  *******************/
-#define  FSMC_BTR2_ADDSET                    ((uint32_t)0x0000000F)        /*!<ADDSET[3:0] bits (Address setup phase duration) */
-#define  FSMC_BTR2_ADDSET_0                  ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_BTR2_ADDSET_1                  ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_BTR2_ADDSET_2                  ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_BTR2_ADDSET_3                  ((uint32_t)0x00000008)        /*!<Bit 3 */
-
-#define  FSMC_BTR2_ADDHLD                    ((uint32_t)0x000000F0)        /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
-#define  FSMC_BTR2_ADDHLD_0                  ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_BTR2_ADDHLD_1                  ((uint32_t)0x00000020)        /*!<Bit 1 */
-#define  FSMC_BTR2_ADDHLD_2                  ((uint32_t)0x00000040)        /*!<Bit 2 */
-#define  FSMC_BTR2_ADDHLD_3                  ((uint32_t)0x00000080)        /*!<Bit 3 */
-
-#define  FSMC_BTR2_DATAST                    ((uint32_t)0x0000FF00)        /*!<DATAST [3:0] bits (Data-phase duration) */
-#define  FSMC_BTR2_DATAST_0                  ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_BTR2_DATAST_1                  ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_BTR2_DATAST_2                  ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_BTR2_DATAST_3                  ((uint32_t)0x00000800)        /*!<Bit 3 */
-
-#define  FSMC_BTR2_BUSTURN                   ((uint32_t)0x000F0000)        /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
-#define  FSMC_BTR2_BUSTURN_0                 ((uint32_t)0x00010000)        /*!<Bit 0 */
-#define  FSMC_BTR2_BUSTURN_1                 ((uint32_t)0x00020000)        /*!<Bit 1 */
-#define  FSMC_BTR2_BUSTURN_2                 ((uint32_t)0x00040000)        /*!<Bit 2 */
-#define  FSMC_BTR2_BUSTURN_3                 ((uint32_t)0x00080000)        /*!<Bit 3 */
-
-#define  FSMC_BTR2_CLKDIV                    ((uint32_t)0x00F00000)        /*!<CLKDIV[3:0] bits (Clock divide ratio) */
-#define  FSMC_BTR2_CLKDIV_0                  ((uint32_t)0x00100000)        /*!<Bit 0 */
-#define  FSMC_BTR2_CLKDIV_1                  ((uint32_t)0x00200000)        /*!<Bit 1 */
-#define  FSMC_BTR2_CLKDIV_2                  ((uint32_t)0x00400000)        /*!<Bit 2 */
-#define  FSMC_BTR2_CLKDIV_3                  ((uint32_t)0x00800000)        /*!<Bit 3 */
-
-#define  FSMC_BTR2_DATLAT                    ((uint32_t)0x0F000000)        /*!<DATLA[3:0] bits (Data latency) */
-#define  FSMC_BTR2_DATLAT_0                  ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_BTR2_DATLAT_1                  ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_BTR2_DATLAT_2                  ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_BTR2_DATLAT_3                  ((uint32_t)0x08000000)        /*!<Bit 3 */
-
-#define  FSMC_BTR2_ACCMOD                    ((uint32_t)0x30000000)        /*!<ACCMOD[1:0] bits (Access mode) */
-#define  FSMC_BTR2_ACCMOD_0                  ((uint32_t)0x10000000)        /*!<Bit 0 */
-#define  FSMC_BTR2_ACCMOD_1                  ((uint32_t)0x20000000)        /*!<Bit 1 */
-
-/*******************  Bit definition for FSMC_BTR3 register  *******************/
-#define  FSMC_BTR3_ADDSET                    ((uint32_t)0x0000000F)        /*!<ADDSET[3:0] bits (Address setup phase duration) */
-#define  FSMC_BTR3_ADDSET_0                  ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_BTR3_ADDSET_1                  ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_BTR3_ADDSET_2                  ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_BTR3_ADDSET_3                  ((uint32_t)0x00000008)        /*!<Bit 3 */
-
-#define  FSMC_BTR3_ADDHLD                    ((uint32_t)0x000000F0)        /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
-#define  FSMC_BTR3_ADDHLD_0                  ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_BTR3_ADDHLD_1                  ((uint32_t)0x00000020)        /*!<Bit 1 */
-#define  FSMC_BTR3_ADDHLD_2                  ((uint32_t)0x00000040)        /*!<Bit 2 */
-#define  FSMC_BTR3_ADDHLD_3                  ((uint32_t)0x00000080)        /*!<Bit 3 */
-
-#define  FSMC_BTR3_DATAST                    ((uint32_t)0x0000FF00)        /*!<DATAST [3:0] bits (Data-phase duration) */
-#define  FSMC_BTR3_DATAST_0                  ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_BTR3_DATAST_1                  ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_BTR3_DATAST_2                  ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_BTR3_DATAST_3                  ((uint32_t)0x00000800)        /*!<Bit 3 */
-
-#define  FSMC_BTR3_BUSTURN                   ((uint32_t)0x000F0000)        /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
-#define  FSMC_BTR3_BUSTURN_0                 ((uint32_t)0x00010000)        /*!<Bit 0 */
-#define  FSMC_BTR3_BUSTURN_1                 ((uint32_t)0x00020000)        /*!<Bit 1 */
-#define  FSMC_BTR3_BUSTURN_2                 ((uint32_t)0x00040000)        /*!<Bit 2 */
-#define  FSMC_BTR3_BUSTURN_3                 ((uint32_t)0x00080000)        /*!<Bit 3 */
-
-#define  FSMC_BTR3_CLKDIV                    ((uint32_t)0x00F00000)        /*!<CLKDIV[3:0] bits (Clock divide ratio) */
-#define  FSMC_BTR3_CLKDIV_0                  ((uint32_t)0x00100000)        /*!<Bit 0 */
-#define  FSMC_BTR3_CLKDIV_1                  ((uint32_t)0x00200000)        /*!<Bit 1 */
-#define  FSMC_BTR3_CLKDIV_2                  ((uint32_t)0x00400000)        /*!<Bit 2 */
-#define  FSMC_BTR3_CLKDIV_3                  ((uint32_t)0x00800000)        /*!<Bit 3 */
-
-#define  FSMC_BTR3_DATLAT                    ((uint32_t)0x0F000000)        /*!<DATLA[3:0] bits (Data latency) */
-#define  FSMC_BTR3_DATLAT_0                  ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_BTR3_DATLAT_1                  ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_BTR3_DATLAT_2                  ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_BTR3_DATLAT_3                  ((uint32_t)0x08000000)        /*!<Bit 3 */
-
-#define  FSMC_BTR3_ACCMOD                    ((uint32_t)0x30000000)        /*!<ACCMOD[1:0] bits (Access mode) */
-#define  FSMC_BTR3_ACCMOD_0                  ((uint32_t)0x10000000)        /*!<Bit 0 */
-#define  FSMC_BTR3_ACCMOD_1                  ((uint32_t)0x20000000)        /*!<Bit 1 */
-
-/******************  Bit definition for FSMC_BTR4 register  *******************/
-#define  FSMC_BTR4_ADDSET                    ((uint32_t)0x0000000F)        /*!<ADDSET[3:0] bits (Address setup phase duration) */
-#define  FSMC_BTR4_ADDSET_0                  ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_BTR4_ADDSET_1                  ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_BTR4_ADDSET_2                  ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_BTR4_ADDSET_3                  ((uint32_t)0x00000008)        /*!<Bit 3 */
-
-#define  FSMC_BTR4_ADDHLD                    ((uint32_t)0x000000F0)        /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
-#define  FSMC_BTR4_ADDHLD_0                  ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_BTR4_ADDHLD_1                  ((uint32_t)0x00000020)        /*!<Bit 1 */
-#define  FSMC_BTR4_ADDHLD_2                  ((uint32_t)0x00000040)        /*!<Bit 2 */
-#define  FSMC_BTR4_ADDHLD_3                  ((uint32_t)0x00000080)        /*!<Bit 3 */
-
-#define  FSMC_BTR4_DATAST                    ((uint32_t)0x0000FF00)        /*!<DATAST [3:0] bits (Data-phase duration) */
-#define  FSMC_BTR4_DATAST_0                  ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_BTR4_DATAST_1                  ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_BTR4_DATAST_2                  ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_BTR4_DATAST_3                  ((uint32_t)0x00000800)        /*!<Bit 3 */
-
-#define  FSMC_BTR4_BUSTURN                   ((uint32_t)0x000F0000)        /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
-#define  FSMC_BTR4_BUSTURN_0                 ((uint32_t)0x00010000)        /*!<Bit 0 */
-#define  FSMC_BTR4_BUSTURN_1                 ((uint32_t)0x00020000)        /*!<Bit 1 */
-#define  FSMC_BTR4_BUSTURN_2                 ((uint32_t)0x00040000)        /*!<Bit 2 */
-#define  FSMC_BTR4_BUSTURN_3                 ((uint32_t)0x00080000)        /*!<Bit 3 */
-
-#define  FSMC_BTR4_CLKDIV                    ((uint32_t)0x00F00000)        /*!<CLKDIV[3:0] bits (Clock divide ratio) */
-#define  FSMC_BTR4_CLKDIV_0                  ((uint32_t)0x00100000)        /*!<Bit 0 */
-#define  FSMC_BTR4_CLKDIV_1                  ((uint32_t)0x00200000)        /*!<Bit 1 */
-#define  FSMC_BTR4_CLKDIV_2                  ((uint32_t)0x00400000)        /*!<Bit 2 */
-#define  FSMC_BTR4_CLKDIV_3                  ((uint32_t)0x00800000)        /*!<Bit 3 */
-
-#define  FSMC_BTR4_DATLAT                    ((uint32_t)0x0F000000)        /*!<DATLA[3:0] bits (Data latency) */
-#define  FSMC_BTR4_DATLAT_0                  ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_BTR4_DATLAT_1                  ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_BTR4_DATLAT_2                  ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_BTR4_DATLAT_3                  ((uint32_t)0x08000000)        /*!<Bit 3 */
-
-#define  FSMC_BTR4_ACCMOD                    ((uint32_t)0x30000000)        /*!<ACCMOD[1:0] bits (Access mode) */
-#define  FSMC_BTR4_ACCMOD_0                  ((uint32_t)0x10000000)        /*!<Bit 0 */
-#define  FSMC_BTR4_ACCMOD_1                  ((uint32_t)0x20000000)        /*!<Bit 1 */
-
-/******************  Bit definition for FSMC_BWTR1 register  ******************/
-#define  FSMC_BWTR1_ADDSET                   ((uint32_t)0x0000000F)        /*!<ADDSET[3:0] bits (Address setup phase duration) */
-#define  FSMC_BWTR1_ADDSET_0                 ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_BWTR1_ADDSET_1                 ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_BWTR1_ADDSET_2                 ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_BWTR1_ADDSET_3                 ((uint32_t)0x00000008)        /*!<Bit 3 */
-
-#define  FSMC_BWTR1_ADDHLD                   ((uint32_t)0x000000F0)        /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
-#define  FSMC_BWTR1_ADDHLD_0                 ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_BWTR1_ADDHLD_1                 ((uint32_t)0x00000020)        /*!<Bit 1 */
-#define  FSMC_BWTR1_ADDHLD_2                 ((uint32_t)0x00000040)        /*!<Bit 2 */
-#define  FSMC_BWTR1_ADDHLD_3                 ((uint32_t)0x00000080)        /*!<Bit 3 */
-
-#define  FSMC_BWTR1_DATAST                   ((uint32_t)0x0000FF00)        /*!<DATAST [3:0] bits (Data-phase duration) */
-#define  FSMC_BWTR1_DATAST_0                 ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_BWTR1_DATAST_1                 ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_BWTR1_DATAST_2                 ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_BWTR1_DATAST_3                 ((uint32_t)0x00000800)        /*!<Bit 3 */
-
-#define  FSMC_BWTR1_CLKDIV                   ((uint32_t)0x00F00000)        /*!<CLKDIV[3:0] bits (Clock divide ratio) */
-#define  FSMC_BWTR1_CLKDIV_0                 ((uint32_t)0x00100000)        /*!<Bit 0 */
-#define  FSMC_BWTR1_CLKDIV_1                 ((uint32_t)0x00200000)        /*!<Bit 1 */
-#define  FSMC_BWTR1_CLKDIV_2                 ((uint32_t)0x00400000)        /*!<Bit 2 */
-#define  FSMC_BWTR1_CLKDIV_3                 ((uint32_t)0x00800000)        /*!<Bit 3 */
-
-#define  FSMC_BWTR1_DATLAT                   ((uint32_t)0x0F000000)        /*!<DATLA[3:0] bits (Data latency) */
-#define  FSMC_BWTR1_DATLAT_0                 ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_BWTR1_DATLAT_1                 ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_BWTR1_DATLAT_2                 ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_BWTR1_DATLAT_3                 ((uint32_t)0x08000000)        /*!<Bit 3 */
-
-#define  FSMC_BWTR1_ACCMOD                   ((uint32_t)0x30000000)        /*!<ACCMOD[1:0] bits (Access mode) */
-#define  FSMC_BWTR1_ACCMOD_0                 ((uint32_t)0x10000000)        /*!<Bit 0 */
-#define  FSMC_BWTR1_ACCMOD_1                 ((uint32_t)0x20000000)        /*!<Bit 1 */
-
-/******************  Bit definition for FSMC_BWTR2 register  ******************/
-#define  FSMC_BWTR2_ADDSET                   ((uint32_t)0x0000000F)        /*!<ADDSET[3:0] bits (Address setup phase duration) */
-#define  FSMC_BWTR2_ADDSET_0                 ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_BWTR2_ADDSET_1                 ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_BWTR2_ADDSET_2                 ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_BWTR2_ADDSET_3                 ((uint32_t)0x00000008)        /*!<Bit 3 */
-
-#define  FSMC_BWTR2_ADDHLD                   ((uint32_t)0x000000F0)        /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
-#define  FSMC_BWTR2_ADDHLD_0                 ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_BWTR2_ADDHLD_1                 ((uint32_t)0x00000020)        /*!<Bit 1 */
-#define  FSMC_BWTR2_ADDHLD_2                 ((uint32_t)0x00000040)        /*!<Bit 2 */
-#define  FSMC_BWTR2_ADDHLD_3                 ((uint32_t)0x00000080)        /*!<Bit 3 */
-
-#define  FSMC_BWTR2_DATAST                   ((uint32_t)0x0000FF00)        /*!<DATAST [3:0] bits (Data-phase duration) */
-#define  FSMC_BWTR2_DATAST_0                 ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_BWTR2_DATAST_1                 ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_BWTR2_DATAST_2                 ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_BWTR2_DATAST_3                 ((uint32_t)0x00000800)        /*!<Bit 3 */
-
-#define  FSMC_BWTR2_CLKDIV                   ((uint32_t)0x00F00000)        /*!<CLKDIV[3:0] bits (Clock divide ratio) */
-#define  FSMC_BWTR2_CLKDIV_0                 ((uint32_t)0x00100000)        /*!<Bit 0 */
-#define  FSMC_BWTR2_CLKDIV_1                 ((uint32_t)0x00200000)        /*!<Bit 1*/
-#define  FSMC_BWTR2_CLKDIV_2                 ((uint32_t)0x00400000)        /*!<Bit 2 */
-#define  FSMC_BWTR2_CLKDIV_3                 ((uint32_t)0x00800000)        /*!<Bit 3 */
-
-#define  FSMC_BWTR2_DATLAT                   ((uint32_t)0x0F000000)        /*!<DATLA[3:0] bits (Data latency) */
-#define  FSMC_BWTR2_DATLAT_0                 ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_BWTR2_DATLAT_1                 ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_BWTR2_DATLAT_2                 ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_BWTR2_DATLAT_3                 ((uint32_t)0x08000000)        /*!<Bit 3 */
-
-#define  FSMC_BWTR2_ACCMOD                   ((uint32_t)0x30000000)        /*!<ACCMOD[1:0] bits (Access mode) */
-#define  FSMC_BWTR2_ACCMOD_0                 ((uint32_t)0x10000000)        /*!<Bit 0 */
-#define  FSMC_BWTR2_ACCMOD_1                 ((uint32_t)0x20000000)        /*!<Bit 1 */
-
-/******************  Bit definition for FSMC_BWTR3 register  ******************/
-#define  FSMC_BWTR3_ADDSET                   ((uint32_t)0x0000000F)        /*!<ADDSET[3:0] bits (Address setup phase duration) */
-#define  FSMC_BWTR3_ADDSET_0                 ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_BWTR3_ADDSET_1                 ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_BWTR3_ADDSET_2                 ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_BWTR3_ADDSET_3                 ((uint32_t)0x00000008)        /*!<Bit 3 */
-
-#define  FSMC_BWTR3_ADDHLD                   ((uint32_t)0x000000F0)        /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
-#define  FSMC_BWTR3_ADDHLD_0                 ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_BWTR3_ADDHLD_1                 ((uint32_t)0x00000020)        /*!<Bit 1 */
-#define  FSMC_BWTR3_ADDHLD_2                 ((uint32_t)0x00000040)        /*!<Bit 2 */
-#define  FSMC_BWTR3_ADDHLD_3                 ((uint32_t)0x00000080)        /*!<Bit 3 */
-
-#define  FSMC_BWTR3_DATAST                   ((uint32_t)0x0000FF00)        /*!<DATAST [3:0] bits (Data-phase duration) */
-#define  FSMC_BWTR3_DATAST_0                 ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_BWTR3_DATAST_1                 ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_BWTR3_DATAST_2                 ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_BWTR3_DATAST_3                 ((uint32_t)0x00000800)        /*!<Bit 3 */
-
-#define  FSMC_BWTR3_CLKDIV                   ((uint32_t)0x00F00000)        /*!<CLKDIV[3:0] bits (Clock divide ratio) */
-#define  FSMC_BWTR3_CLKDIV_0                 ((uint32_t)0x00100000)        /*!<Bit 0 */
-#define  FSMC_BWTR3_CLKDIV_1                 ((uint32_t)0x00200000)        /*!<Bit 1 */
-#define  FSMC_BWTR3_CLKDIV_2                 ((uint32_t)0x00400000)        /*!<Bit 2 */
-#define  FSMC_BWTR3_CLKDIV_3                 ((uint32_t)0x00800000)        /*!<Bit 3 */
-
-#define  FSMC_BWTR3_DATLAT                   ((uint32_t)0x0F000000)        /*!<DATLA[3:0] bits (Data latency) */
-#define  FSMC_BWTR3_DATLAT_0                 ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_BWTR3_DATLAT_1                 ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_BWTR3_DATLAT_2                 ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_BWTR3_DATLAT_3                 ((uint32_t)0x08000000)        /*!<Bit 3 */
-
-#define  FSMC_BWTR3_ACCMOD                   ((uint32_t)0x30000000)        /*!<ACCMOD[1:0] bits (Access mode) */
-#define  FSMC_BWTR3_ACCMOD_0                 ((uint32_t)0x10000000)        /*!<Bit 0 */
-#define  FSMC_BWTR3_ACCMOD_1                 ((uint32_t)0x20000000)        /*!<Bit 1 */
-
-/******************  Bit definition for FSMC_BWTR4 register  ******************/
-#define  FSMC_BWTR4_ADDSET                   ((uint32_t)0x0000000F)        /*!<ADDSET[3:0] bits (Address setup phase duration) */
-#define  FSMC_BWTR4_ADDSET_0                 ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_BWTR4_ADDSET_1                 ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_BWTR4_ADDSET_2                 ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_BWTR4_ADDSET_3                 ((uint32_t)0x00000008)        /*!<Bit 3 */
-
-#define  FSMC_BWTR4_ADDHLD                   ((uint32_t)0x000000F0)        /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
-#define  FSMC_BWTR4_ADDHLD_0                 ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_BWTR4_ADDHLD_1                 ((uint32_t)0x00000020)        /*!<Bit 1 */
-#define  FSMC_BWTR4_ADDHLD_2                 ((uint32_t)0x00000040)        /*!<Bit 2 */
-#define  FSMC_BWTR4_ADDHLD_3                 ((uint32_t)0x00000080)        /*!<Bit 3 */
-
-#define  FSMC_BWTR4_DATAST                   ((uint32_t)0x0000FF00)        /*!<DATAST [3:0] bits (Data-phase duration) */
-#define  FSMC_BWTR4_DATAST_0                 ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_BWTR4_DATAST_1                 ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_BWTR4_DATAST_2                 ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_BWTR4_DATAST_3                 ((uint32_t)0x00000800)        /*!<Bit 3 */
-
-#define  FSMC_BWTR4_CLKDIV                   ((uint32_t)0x00F00000)        /*!<CLKDIV[3:0] bits (Clock divide ratio) */
-#define  FSMC_BWTR4_CLKDIV_0                 ((uint32_t)0x00100000)        /*!<Bit 0 */
-#define  FSMC_BWTR4_CLKDIV_1                 ((uint32_t)0x00200000)        /*!<Bit 1 */
-#define  FSMC_BWTR4_CLKDIV_2                 ((uint32_t)0x00400000)        /*!<Bit 2 */
-#define  FSMC_BWTR4_CLKDIV_3                 ((uint32_t)0x00800000)        /*!<Bit 3 */
-
-#define  FSMC_BWTR4_DATLAT                   ((uint32_t)0x0F000000)        /*!<DATLA[3:0] bits (Data latency) */
-#define  FSMC_BWTR4_DATLAT_0                 ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_BWTR4_DATLAT_1                 ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_BWTR4_DATLAT_2                 ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_BWTR4_DATLAT_3                 ((uint32_t)0x08000000)        /*!<Bit 3 */
-
-#define  FSMC_BWTR4_ACCMOD                   ((uint32_t)0x30000000)        /*!<ACCMOD[1:0] bits (Access mode) */
-#define  FSMC_BWTR4_ACCMOD_0                 ((uint32_t)0x10000000)        /*!<Bit 0 */
-#define  FSMC_BWTR4_ACCMOD_1                 ((uint32_t)0x20000000)        /*!<Bit 1 */
-
-/******************  Bit definition for FSMC_PCR2 register  *******************/
-#define  FSMC_PCR2_PWAITEN                   ((uint32_t)0x00000002)        /*!<Wait feature enable bit */
-#define  FSMC_PCR2_PBKEN                     ((uint32_t)0x00000004)        /*!<PC Card/NAND Flash memory bank enable bit */
-#define  FSMC_PCR2_PTYP                      ((uint32_t)0x00000008)        /*!<Memory type */
-
-#define  FSMC_PCR2_PWID                      ((uint32_t)0x00000030)        /*!<PWID[1:0] bits (NAND Flash databus width) */
-#define  FSMC_PCR2_PWID_0                    ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_PCR2_PWID_1                    ((uint32_t)0x00000020)        /*!<Bit 1 */
-
-#define  FSMC_PCR2_ECCEN                     ((uint32_t)0x00000040)        /*!<ECC computation logic enable bit */
-
-#define  FSMC_PCR2_TCLR                      ((uint32_t)0x00001E00)        /*!<TCLR[3:0] bits (CLE to RE delay) */
-#define  FSMC_PCR2_TCLR_0                    ((uint32_t)0x00000200)        /*!<Bit 0 */
-#define  FSMC_PCR2_TCLR_1                    ((uint32_t)0x00000400)        /*!<Bit 1 */
-#define  FSMC_PCR2_TCLR_2                    ((uint32_t)0x00000800)        /*!<Bit 2 */
-#define  FSMC_PCR2_TCLR_3                    ((uint32_t)0x00001000)        /*!<Bit 3 */
-
-#define  FSMC_PCR2_TAR                       ((uint32_t)0x0001E000)        /*!<TAR[3:0] bits (ALE to RE delay) */
-#define  FSMC_PCR2_TAR_0                     ((uint32_t)0x00002000)        /*!<Bit 0 */
-#define  FSMC_PCR2_TAR_1                     ((uint32_t)0x00004000)        /*!<Bit 1 */
-#define  FSMC_PCR2_TAR_2                     ((uint32_t)0x00008000)        /*!<Bit 2 */
-#define  FSMC_PCR2_TAR_3                     ((uint32_t)0x00010000)        /*!<Bit 3 */
-
-#define  FSMC_PCR2_ECCPS                     ((uint32_t)0x000E0000)        /*!<ECCPS[1:0] bits (ECC page size) */
-#define  FSMC_PCR2_ECCPS_0                   ((uint32_t)0x00020000)        /*!<Bit 0 */
-#define  FSMC_PCR2_ECCPS_1                   ((uint32_t)0x00040000)        /*!<Bit 1 */
-#define  FSMC_PCR2_ECCPS_2                   ((uint32_t)0x00080000)        /*!<Bit 2 */
-
-/******************  Bit definition for FSMC_PCR3 register  *******************/
-#define  FSMC_PCR3_PWAITEN                   ((uint32_t)0x00000002)        /*!<Wait feature enable bit */
-#define  FSMC_PCR3_PBKEN                     ((uint32_t)0x00000004)        /*!<PC Card/NAND Flash memory bank enable bit */
-#define  FSMC_PCR3_PTYP                      ((uint32_t)0x00000008)        /*!<Memory type */
-
-#define  FSMC_PCR3_PWID                      ((uint32_t)0x00000030)        /*!<PWID[1:0] bits (NAND Flash databus width) */
-#define  FSMC_PCR3_PWID_0                    ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_PCR3_PWID_1                    ((uint32_t)0x00000020)        /*!<Bit 1 */
-
-#define  FSMC_PCR3_ECCEN                     ((uint32_t)0x00000040)        /*!<ECC computation logic enable bit */
-
-#define  FSMC_PCR3_TCLR                      ((uint32_t)0x00001E00)        /*!<TCLR[3:0] bits (CLE to RE delay) */
-#define  FSMC_PCR3_TCLR_0                    ((uint32_t)0x00000200)        /*!<Bit 0 */
-#define  FSMC_PCR3_TCLR_1                    ((uint32_t)0x00000400)        /*!<Bit 1 */
-#define  FSMC_PCR3_TCLR_2                    ((uint32_t)0x00000800)        /*!<Bit 2 */
-#define  FSMC_PCR3_TCLR_3                    ((uint32_t)0x00001000)        /*!<Bit 3 */
-
-#define  FSMC_PCR3_TAR                       ((uint32_t)0x0001E000)        /*!<TAR[3:0] bits (ALE to RE delay) */
-#define  FSMC_PCR3_TAR_0                     ((uint32_t)0x00002000)        /*!<Bit 0 */
-#define  FSMC_PCR3_TAR_1                     ((uint32_t)0x00004000)        /*!<Bit 1 */
-#define  FSMC_PCR3_TAR_2                     ((uint32_t)0x00008000)        /*!<Bit 2 */
-#define  FSMC_PCR3_TAR_3                     ((uint32_t)0x00010000)        /*!<Bit 3 */
-
-#define  FSMC_PCR3_ECCPS                     ((uint32_t)0x000E0000)        /*!<ECCPS[2:0] bits (ECC page size) */
-#define  FSMC_PCR3_ECCPS_0                   ((uint32_t)0x00020000)        /*!<Bit 0 */
-#define  FSMC_PCR3_ECCPS_1                   ((uint32_t)0x00040000)        /*!<Bit 1 */
-#define  FSMC_PCR3_ECCPS_2                   ((uint32_t)0x00080000)        /*!<Bit 2 */
-
-/******************  Bit definition for FSMC_PCR4 register  *******************/
-#define  FSMC_PCR4_PWAITEN                   ((uint32_t)0x00000002)        /*!<Wait feature enable bit */
-#define  FSMC_PCR4_PBKEN                     ((uint32_t)0x00000004)        /*!<PC Card/NAND Flash memory bank enable bit */
-#define  FSMC_PCR4_PTYP                      ((uint32_t)0x00000008)        /*!<Memory type */
-
-#define  FSMC_PCR4_PWID                      ((uint32_t)0x00000030)        /*!<PWID[1:0] bits (NAND Flash databus width) */
-#define  FSMC_PCR4_PWID_0                    ((uint32_t)0x00000010)        /*!<Bit 0 */
-#define  FSMC_PCR4_PWID_1                    ((uint32_t)0x00000020)        /*!<Bit 1 */
-
-#define  FSMC_PCR4_ECCEN                     ((uint32_t)0x00000040)        /*!<ECC computation logic enable bit */
-
-#define  FSMC_PCR4_TCLR                      ((uint32_t)0x00001E00)        /*!<TCLR[3:0] bits (CLE to RE delay) */
-#define  FSMC_PCR4_TCLR_0                    ((uint32_t)0x00000200)        /*!<Bit 0 */
-#define  FSMC_PCR4_TCLR_1                    ((uint32_t)0x00000400)        /*!<Bit 1 */
-#define  FSMC_PCR4_TCLR_2                    ((uint32_t)0x00000800)        /*!<Bit 2 */
-#define  FSMC_PCR4_TCLR_3                    ((uint32_t)0x00001000)        /*!<Bit 3 */
-
-#define  FSMC_PCR4_TAR                       ((uint32_t)0x0001E000)        /*!<TAR[3:0] bits (ALE to RE delay) */
-#define  FSMC_PCR4_TAR_0                     ((uint32_t)0x00002000)        /*!<Bit 0 */
-#define  FSMC_PCR4_TAR_1                     ((uint32_t)0x00004000)        /*!<Bit 1 */
-#define  FSMC_PCR4_TAR_2                     ((uint32_t)0x00008000)        /*!<Bit 2 */
-#define  FSMC_PCR4_TAR_3                     ((uint32_t)0x00010000)        /*!<Bit 3 */
-
-#define  FSMC_PCR4_ECCPS                     ((uint32_t)0x000E0000)        /*!<ECCPS[2:0] bits (ECC page size) */
-#define  FSMC_PCR4_ECCPS_0                   ((uint32_t)0x00020000)        /*!<Bit 0 */
-#define  FSMC_PCR4_ECCPS_1                   ((uint32_t)0x00040000)        /*!<Bit 1 */
-#define  FSMC_PCR4_ECCPS_2                   ((uint32_t)0x00080000)        /*!<Bit 2 */
-
-/*******************  Bit definition for FSMC_SR2 register  *******************/
-#define  FSMC_SR2_IRS                        ((uint8_t)0x01)               /*!<Interrupt Rising Edge status */
-#define  FSMC_SR2_ILS                        ((uint8_t)0x02)               /*!<Interrupt Level status */
-#define  FSMC_SR2_IFS                        ((uint8_t)0x04)               /*!<Interrupt Falling Edge status */
-#define  FSMC_SR2_IREN                       ((uint8_t)0x08)               /*!<Interrupt Rising Edge detection Enable bit */
-#define  FSMC_SR2_ILEN                       ((uint8_t)0x10)               /*!<Interrupt Level detection Enable bit */
-#define  FSMC_SR2_IFEN                       ((uint8_t)0x20)               /*!<Interrupt Falling Edge detection Enable bit */
-#define  FSMC_SR2_FEMPT                      ((uint8_t)0x40)               /*!<FIFO empty */
-
-/*******************  Bit definition for FSMC_SR3 register  *******************/
-#define  FSMC_SR3_IRS                        ((uint8_t)0x01)               /*!<Interrupt Rising Edge status */
-#define  FSMC_SR3_ILS                        ((uint8_t)0x02)               /*!<Interrupt Level status */
-#define  FSMC_SR3_IFS                        ((uint8_t)0x04)               /*!<Interrupt Falling Edge status */
-#define  FSMC_SR3_IREN                       ((uint8_t)0x08)               /*!<Interrupt Rising Edge detection Enable bit */
-#define  FSMC_SR3_ILEN                       ((uint8_t)0x10)               /*!<Interrupt Level detection Enable bit */
-#define  FSMC_SR3_IFEN                       ((uint8_t)0x20)               /*!<Interrupt Falling Edge detection Enable bit */
-#define  FSMC_SR3_FEMPT                      ((uint8_t)0x40)               /*!<FIFO empty */
-
-/*******************  Bit definition for FSMC_SR4 register  *******************/
-#define  FSMC_SR4_IRS                        ((uint8_t)0x01)               /*!<Interrupt Rising Edge status */
-#define  FSMC_SR4_ILS                        ((uint8_t)0x02)               /*!<Interrupt Level status */
-#define  FSMC_SR4_IFS                        ((uint8_t)0x04)               /*!<Interrupt Falling Edge status */
-#define  FSMC_SR4_IREN                       ((uint8_t)0x08)               /*!<Interrupt Rising Edge detection Enable bit */
-#define  FSMC_SR4_ILEN                       ((uint8_t)0x10)               /*!<Interrupt Level detection Enable bit */
-#define  FSMC_SR4_IFEN                       ((uint8_t)0x20)               /*!<Interrupt Falling Edge detection Enable bit */
-#define  FSMC_SR4_FEMPT                      ((uint8_t)0x40)               /*!<FIFO empty */
-
-/******************  Bit definition for FSMC_PMEM2 register  ******************/
-#define  FSMC_PMEM2_MEMSET2                  ((uint32_t)0x000000FF)        /*!<MEMSET2[7:0] bits (Common memory 2 setup time) */
-#define  FSMC_PMEM2_MEMSET2_0                ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_PMEM2_MEMSET2_1                ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_PMEM2_MEMSET2_2                ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_PMEM2_MEMSET2_3                ((uint32_t)0x00000008)        /*!<Bit 3 */
-#define  FSMC_PMEM2_MEMSET2_4                ((uint32_t)0x00000010)        /*!<Bit 4 */
-#define  FSMC_PMEM2_MEMSET2_5                ((uint32_t)0x00000020)        /*!<Bit 5 */
-#define  FSMC_PMEM2_MEMSET2_6                ((uint32_t)0x00000040)        /*!<Bit 6 */
-#define  FSMC_PMEM2_MEMSET2_7                ((uint32_t)0x00000080)        /*!<Bit 7 */
-
-#define  FSMC_PMEM2_MEMWAIT2                 ((uint32_t)0x0000FF00)        /*!<MEMWAIT2[7:0] bits (Common memory 2 wait time) */
-#define  FSMC_PMEM2_MEMWAIT2_0               ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_PMEM2_MEMWAIT2_1               ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_PMEM2_MEMWAIT2_2               ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_PMEM2_MEMWAIT2_3               ((uint32_t)0x00000800)        /*!<Bit 3 */
-#define  FSMC_PMEM2_MEMWAIT2_4               ((uint32_t)0x00001000)        /*!<Bit 4 */
-#define  FSMC_PMEM2_MEMWAIT2_5               ((uint32_t)0x00002000)        /*!<Bit 5 */
-#define  FSMC_PMEM2_MEMWAIT2_6               ((uint32_t)0x00004000)        /*!<Bit 6 */
-#define  FSMC_PMEM2_MEMWAIT2_7               ((uint32_t)0x00008000)        /*!<Bit 7 */
-
-#define  FSMC_PMEM2_MEMHOLD2                 ((uint32_t)0x00FF0000)        /*!<MEMHOLD2[7:0] bits (Common memory 2 hold time) */
-#define  FSMC_PMEM2_MEMHOLD2_0               ((uint32_t)0x00010000)        /*!<Bit 0 */
-#define  FSMC_PMEM2_MEMHOLD2_1               ((uint32_t)0x00020000)        /*!<Bit 1 */
-#define  FSMC_PMEM2_MEMHOLD2_2               ((uint32_t)0x00040000)        /*!<Bit 2 */
-#define  FSMC_PMEM2_MEMHOLD2_3               ((uint32_t)0x00080000)        /*!<Bit 3 */
-#define  FSMC_PMEM2_MEMHOLD2_4               ((uint32_t)0x00100000)        /*!<Bit 4 */
-#define  FSMC_PMEM2_MEMHOLD2_5               ((uint32_t)0x00200000)        /*!<Bit 5 */
-#define  FSMC_PMEM2_MEMHOLD2_6               ((uint32_t)0x00400000)        /*!<Bit 6 */
-#define  FSMC_PMEM2_MEMHOLD2_7               ((uint32_t)0x00800000)        /*!<Bit 7 */
-
-#define  FSMC_PMEM2_MEMHIZ2                  ((uint32_t)0xFF000000)        /*!<MEMHIZ2[7:0] bits (Common memory 2 databus HiZ time) */
-#define  FSMC_PMEM2_MEMHIZ2_0                ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_PMEM2_MEMHIZ2_1                ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_PMEM2_MEMHIZ2_2                ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_PMEM2_MEMHIZ2_3                ((uint32_t)0x08000000)        /*!<Bit 3 */
-#define  FSMC_PMEM2_MEMHIZ2_4                ((uint32_t)0x10000000)        /*!<Bit 4 */
-#define  FSMC_PMEM2_MEMHIZ2_5                ((uint32_t)0x20000000)        /*!<Bit 5 */
-#define  FSMC_PMEM2_MEMHIZ2_6                ((uint32_t)0x40000000)        /*!<Bit 6 */
-#define  FSMC_PMEM2_MEMHIZ2_7                ((uint32_t)0x80000000)        /*!<Bit 7 */
-
-/******************  Bit definition for FSMC_PMEM3 register  ******************/
-#define  FSMC_PMEM3_MEMSET3                  ((uint32_t)0x000000FF)        /*!<MEMSET3[7:0] bits (Common memory 3 setup time) */
-#define  FSMC_PMEM3_MEMSET3_0                ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_PMEM3_MEMSET3_1                ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_PMEM3_MEMSET3_2                ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_PMEM3_MEMSET3_3                ((uint32_t)0x00000008)        /*!<Bit 3 */
-#define  FSMC_PMEM3_MEMSET3_4                ((uint32_t)0x00000010)        /*!<Bit 4 */
-#define  FSMC_PMEM3_MEMSET3_5                ((uint32_t)0x00000020)        /*!<Bit 5 */
-#define  FSMC_PMEM3_MEMSET3_6                ((uint32_t)0x00000040)        /*!<Bit 6 */
-#define  FSMC_PMEM3_MEMSET3_7                ((uint32_t)0x00000080)        /*!<Bit 7 */
-
-#define  FSMC_PMEM3_MEMWAIT3                 ((uint32_t)0x0000FF00)        /*!<MEMWAIT3[7:0] bits (Common memory 3 wait time) */
-#define  FSMC_PMEM3_MEMWAIT3_0               ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_PMEM3_MEMWAIT3_1               ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_PMEM3_MEMWAIT3_2               ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_PMEM3_MEMWAIT3_3               ((uint32_t)0x00000800)        /*!<Bit 3 */
-#define  FSMC_PMEM3_MEMWAIT3_4               ((uint32_t)0x00001000)        /*!<Bit 4 */
-#define  FSMC_PMEM3_MEMWAIT3_5               ((uint32_t)0x00002000)        /*!<Bit 5 */
-#define  FSMC_PMEM3_MEMWAIT3_6               ((uint32_t)0x00004000)        /*!<Bit 6 */
-#define  FSMC_PMEM3_MEMWAIT3_7               ((uint32_t)0x00008000)        /*!<Bit 7 */
-
-#define  FSMC_PMEM3_MEMHOLD3                 ((uint32_t)0x00FF0000)        /*!<MEMHOLD3[7:0] bits (Common memory 3 hold time) */
-#define  FSMC_PMEM3_MEMHOLD3_0               ((uint32_t)0x00010000)        /*!<Bit 0 */
-#define  FSMC_PMEM3_MEMHOLD3_1               ((uint32_t)0x00020000)        /*!<Bit 1 */
-#define  FSMC_PMEM3_MEMHOLD3_2               ((uint32_t)0x00040000)        /*!<Bit 2 */
-#define  FSMC_PMEM3_MEMHOLD3_3               ((uint32_t)0x00080000)        /*!<Bit 3 */
-#define  FSMC_PMEM3_MEMHOLD3_4               ((uint32_t)0x00100000)        /*!<Bit 4 */
-#define  FSMC_PMEM3_MEMHOLD3_5               ((uint32_t)0x00200000)        /*!<Bit 5 */
-#define  FSMC_PMEM3_MEMHOLD3_6               ((uint32_t)0x00400000)        /*!<Bit 6 */
-#define  FSMC_PMEM3_MEMHOLD3_7               ((uint32_t)0x00800000)        /*!<Bit 7 */
-
-#define  FSMC_PMEM3_MEMHIZ3                  ((uint32_t)0xFF000000)        /*!<MEMHIZ3[7:0] bits (Common memory 3 databus HiZ time) */
-#define  FSMC_PMEM3_MEMHIZ3_0                ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_PMEM3_MEMHIZ3_1                ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_PMEM3_MEMHIZ3_2                ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_PMEM3_MEMHIZ3_3                ((uint32_t)0x08000000)        /*!<Bit 3 */
-#define  FSMC_PMEM3_MEMHIZ3_4                ((uint32_t)0x10000000)        /*!<Bit 4 */
-#define  FSMC_PMEM3_MEMHIZ3_5                ((uint32_t)0x20000000)        /*!<Bit 5 */
-#define  FSMC_PMEM3_MEMHIZ3_6                ((uint32_t)0x40000000)        /*!<Bit 6 */
-#define  FSMC_PMEM3_MEMHIZ3_7                ((uint32_t)0x80000000)        /*!<Bit 7 */
-
-/******************  Bit definition for FSMC_PMEM4 register  ******************/
-#define  FSMC_PMEM4_MEMSET4                  ((uint32_t)0x000000FF)        /*!<MEMSET4[7:0] bits (Common memory 4 setup time) */
-#define  FSMC_PMEM4_MEMSET4_0                ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_PMEM4_MEMSET4_1                ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_PMEM4_MEMSET4_2                ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_PMEM4_MEMSET4_3                ((uint32_t)0x00000008)        /*!<Bit 3 */
-#define  FSMC_PMEM4_MEMSET4_4                ((uint32_t)0x00000010)        /*!<Bit 4 */
-#define  FSMC_PMEM4_MEMSET4_5                ((uint32_t)0x00000020)        /*!<Bit 5 */
-#define  FSMC_PMEM4_MEMSET4_6                ((uint32_t)0x00000040)        /*!<Bit 6 */
-#define  FSMC_PMEM4_MEMSET4_7                ((uint32_t)0x00000080)        /*!<Bit 7 */
-
-#define  FSMC_PMEM4_MEMWAIT4                 ((uint32_t)0x0000FF00)        /*!<MEMWAIT4[7:0] bits (Common memory 4 wait time) */
-#define  FSMC_PMEM4_MEMWAIT4_0               ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_PMEM4_MEMWAIT4_1               ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_PMEM4_MEMWAIT4_2               ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_PMEM4_MEMWAIT4_3               ((uint32_t)0x00000800)        /*!<Bit 3 */
-#define  FSMC_PMEM4_MEMWAIT4_4               ((uint32_t)0x00001000)        /*!<Bit 4 */
-#define  FSMC_PMEM4_MEMWAIT4_5               ((uint32_t)0x00002000)        /*!<Bit 5 */
-#define  FSMC_PMEM4_MEMWAIT4_6               ((uint32_t)0x00004000)        /*!<Bit 6 */
-#define  FSMC_PMEM4_MEMWAIT4_7               ((uint32_t)0x00008000)        /*!<Bit 7 */
-
-#define  FSMC_PMEM4_MEMHOLD4                 ((uint32_t)0x00FF0000)        /*!<MEMHOLD4[7:0] bits (Common memory 4 hold time) */
-#define  FSMC_PMEM4_MEMHOLD4_0               ((uint32_t)0x00010000)        /*!<Bit 0 */
-#define  FSMC_PMEM4_MEMHOLD4_1               ((uint32_t)0x00020000)        /*!<Bit 1 */
-#define  FSMC_PMEM4_MEMHOLD4_2               ((uint32_t)0x00040000)        /*!<Bit 2 */
-#define  FSMC_PMEM4_MEMHOLD4_3               ((uint32_t)0x00080000)        /*!<Bit 3 */
-#define  FSMC_PMEM4_MEMHOLD4_4               ((uint32_t)0x00100000)        /*!<Bit 4 */
-#define  FSMC_PMEM4_MEMHOLD4_5               ((uint32_t)0x00200000)        /*!<Bit 5 */
-#define  FSMC_PMEM4_MEMHOLD4_6               ((uint32_t)0x00400000)        /*!<Bit 6 */
-#define  FSMC_PMEM4_MEMHOLD4_7               ((uint32_t)0x00800000)        /*!<Bit 7 */
-
-#define  FSMC_PMEM4_MEMHIZ4                  ((uint32_t)0xFF000000)        /*!<MEMHIZ4[7:0] bits (Common memory 4 databus HiZ time) */
-#define  FSMC_PMEM4_MEMHIZ4_0                ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_PMEM4_MEMHIZ4_1                ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_PMEM4_MEMHIZ4_2                ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_PMEM4_MEMHIZ4_3                ((uint32_t)0x08000000)        /*!<Bit 3 */
-#define  FSMC_PMEM4_MEMHIZ4_4                ((uint32_t)0x10000000)        /*!<Bit 4 */
-#define  FSMC_PMEM4_MEMHIZ4_5                ((uint32_t)0x20000000)        /*!<Bit 5 */
-#define  FSMC_PMEM4_MEMHIZ4_6                ((uint32_t)0x40000000)        /*!<Bit 6 */
-#define  FSMC_PMEM4_MEMHIZ4_7                ((uint32_t)0x80000000)        /*!<Bit 7 */
-
-/******************  Bit definition for FSMC_PATT2 register  ******************/
-#define  FSMC_PATT2_ATTSET2                  ((uint32_t)0x000000FF)        /*!<ATTSET2[7:0] bits (Attribute memory 2 setup time) */
-#define  FSMC_PATT2_ATTSET2_0                ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_PATT2_ATTSET2_1                ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_PATT2_ATTSET2_2                ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_PATT2_ATTSET2_3                ((uint32_t)0x00000008)        /*!<Bit 3 */
-#define  FSMC_PATT2_ATTSET2_4                ((uint32_t)0x00000010)        /*!<Bit 4 */
-#define  FSMC_PATT2_ATTSET2_5                ((uint32_t)0x00000020)        /*!<Bit 5 */
-#define  FSMC_PATT2_ATTSET2_6                ((uint32_t)0x00000040)        /*!<Bit 6 */
-#define  FSMC_PATT2_ATTSET2_7                ((uint32_t)0x00000080)        /*!<Bit 7 */
-
-#define  FSMC_PATT2_ATTWAIT2                 ((uint32_t)0x0000FF00)        /*!<ATTWAIT2[7:0] bits (Attribute memory 2 wait time) */
-#define  FSMC_PATT2_ATTWAIT2_0               ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_PATT2_ATTWAIT2_1               ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_PATT2_ATTWAIT2_2               ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_PATT2_ATTWAIT2_3               ((uint32_t)0x00000800)        /*!<Bit 3 */
-#define  FSMC_PATT2_ATTWAIT2_4               ((uint32_t)0x00001000)        /*!<Bit 4 */
-#define  FSMC_PATT2_ATTWAIT2_5               ((uint32_t)0x00002000)        /*!<Bit 5 */
-#define  FSMC_PATT2_ATTWAIT2_6               ((uint32_t)0x00004000)        /*!<Bit 6 */
-#define  FSMC_PATT2_ATTWAIT2_7               ((uint32_t)0x00008000)        /*!<Bit 7 */
-
-#define  FSMC_PATT2_ATTHOLD2                 ((uint32_t)0x00FF0000)        /*!<ATTHOLD2[7:0] bits (Attribute memory 2 hold time) */
-#define  FSMC_PATT2_ATTHOLD2_0               ((uint32_t)0x00010000)        /*!<Bit 0 */
-#define  FSMC_PATT2_ATTHOLD2_1               ((uint32_t)0x00020000)        /*!<Bit 1 */
-#define  FSMC_PATT2_ATTHOLD2_2               ((uint32_t)0x00040000)        /*!<Bit 2 */
-#define  FSMC_PATT2_ATTHOLD2_3               ((uint32_t)0x00080000)        /*!<Bit 3 */
-#define  FSMC_PATT2_ATTHOLD2_4               ((uint32_t)0x00100000)        /*!<Bit 4 */
-#define  FSMC_PATT2_ATTHOLD2_5               ((uint32_t)0x00200000)        /*!<Bit 5 */
-#define  FSMC_PATT2_ATTHOLD2_6               ((uint32_t)0x00400000)        /*!<Bit 6 */
-#define  FSMC_PATT2_ATTHOLD2_7               ((uint32_t)0x00800000)        /*!<Bit 7 */
-
-#define  FSMC_PATT2_ATTHIZ2                  ((uint32_t)0xFF000000)        /*!<ATTHIZ2[7:0] bits (Attribute memory 2 databus HiZ time) */
-#define  FSMC_PATT2_ATTHIZ2_0                ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_PATT2_ATTHIZ2_1                ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_PATT2_ATTHIZ2_2                ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_PATT2_ATTHIZ2_3                ((uint32_t)0x08000000)        /*!<Bit 3 */
-#define  FSMC_PATT2_ATTHIZ2_4                ((uint32_t)0x10000000)        /*!<Bit 4 */
-#define  FSMC_PATT2_ATTHIZ2_5                ((uint32_t)0x20000000)        /*!<Bit 5 */
-#define  FSMC_PATT2_ATTHIZ2_6                ((uint32_t)0x40000000)        /*!<Bit 6 */
-#define  FSMC_PATT2_ATTHIZ2_7                ((uint32_t)0x80000000)        /*!<Bit 7 */
-
-/******************  Bit definition for FSMC_PATT3 register  ******************/
-#define  FSMC_PATT3_ATTSET3                  ((uint32_t)0x000000FF)        /*!<ATTSET3[7:0] bits (Attribute memory 3 setup time) */
-#define  FSMC_PATT3_ATTSET3_0                ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_PATT3_ATTSET3_1                ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_PATT3_ATTSET3_2                ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_PATT3_ATTSET3_3                ((uint32_t)0x00000008)        /*!<Bit 3 */
-#define  FSMC_PATT3_ATTSET3_4                ((uint32_t)0x00000010)        /*!<Bit 4 */
-#define  FSMC_PATT3_ATTSET3_5                ((uint32_t)0x00000020)        /*!<Bit 5 */
-#define  FSMC_PATT3_ATTSET3_6                ((uint32_t)0x00000040)        /*!<Bit 6 */
-#define  FSMC_PATT3_ATTSET3_7                ((uint32_t)0x00000080)        /*!<Bit 7 */
-
-#define  FSMC_PATT3_ATTWAIT3                 ((uint32_t)0x0000FF00)        /*!<ATTWAIT3[7:0] bits (Attribute memory 3 wait time) */
-#define  FSMC_PATT3_ATTWAIT3_0               ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_PATT3_ATTWAIT3_1               ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_PATT3_ATTWAIT3_2               ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_PATT3_ATTWAIT3_3               ((uint32_t)0x00000800)        /*!<Bit 3 */
-#define  FSMC_PATT3_ATTWAIT3_4               ((uint32_t)0x00001000)        /*!<Bit 4 */
-#define  FSMC_PATT3_ATTWAIT3_5               ((uint32_t)0x00002000)        /*!<Bit 5 */
-#define  FSMC_PATT3_ATTWAIT3_6               ((uint32_t)0x00004000)        /*!<Bit 6 */
-#define  FSMC_PATT3_ATTWAIT3_7               ((uint32_t)0x00008000)        /*!<Bit 7 */
-
-#define  FSMC_PATT3_ATTHOLD3                 ((uint32_t)0x00FF0000)        /*!<ATTHOLD3[7:0] bits (Attribute memory 3 hold time) */
-#define  FSMC_PATT3_ATTHOLD3_0               ((uint32_t)0x00010000)        /*!<Bit 0 */
-#define  FSMC_PATT3_ATTHOLD3_1               ((uint32_t)0x00020000)        /*!<Bit 1 */
-#define  FSMC_PATT3_ATTHOLD3_2               ((uint32_t)0x00040000)        /*!<Bit 2 */
-#define  FSMC_PATT3_ATTHOLD3_3               ((uint32_t)0x00080000)        /*!<Bit 3 */
-#define  FSMC_PATT3_ATTHOLD3_4               ((uint32_t)0x00100000)        /*!<Bit 4 */
-#define  FSMC_PATT3_ATTHOLD3_5               ((uint32_t)0x00200000)        /*!<Bit 5 */
-#define  FSMC_PATT3_ATTHOLD3_6               ((uint32_t)0x00400000)        /*!<Bit 6 */
-#define  FSMC_PATT3_ATTHOLD3_7               ((uint32_t)0x00800000)        /*!<Bit 7 */
-
-#define  FSMC_PATT3_ATTHIZ3                  ((uint32_t)0xFF000000)        /*!<ATTHIZ3[7:0] bits (Attribute memory 3 databus HiZ time) */
-#define  FSMC_PATT3_ATTHIZ3_0                ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_PATT3_ATTHIZ3_1                ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_PATT3_ATTHIZ3_2                ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_PATT3_ATTHIZ3_3                ((uint32_t)0x08000000)        /*!<Bit 3 */
-#define  FSMC_PATT3_ATTHIZ3_4                ((uint32_t)0x10000000)        /*!<Bit 4 */
-#define  FSMC_PATT3_ATTHIZ3_5                ((uint32_t)0x20000000)        /*!<Bit 5 */
-#define  FSMC_PATT3_ATTHIZ3_6                ((uint32_t)0x40000000)        /*!<Bit 6 */
-#define  FSMC_PATT3_ATTHIZ3_7                ((uint32_t)0x80000000)        /*!<Bit 7 */
-
-/******************  Bit definition for FSMC_PATT4 register  ******************/
-#define  FSMC_PATT4_ATTSET4                  ((uint32_t)0x000000FF)        /*!<ATTSET4[7:0] bits (Attribute memory 4 setup time) */
-#define  FSMC_PATT4_ATTSET4_0                ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_PATT4_ATTSET4_1                ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_PATT4_ATTSET4_2                ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_PATT4_ATTSET4_3                ((uint32_t)0x00000008)        /*!<Bit 3 */
-#define  FSMC_PATT4_ATTSET4_4                ((uint32_t)0x00000010)        /*!<Bit 4 */
-#define  FSMC_PATT4_ATTSET4_5                ((uint32_t)0x00000020)        /*!<Bit 5 */
-#define  FSMC_PATT4_ATTSET4_6                ((uint32_t)0x00000040)        /*!<Bit 6 */
-#define  FSMC_PATT4_ATTSET4_7                ((uint32_t)0x00000080)        /*!<Bit 7 */
-
-#define  FSMC_PATT4_ATTWAIT4                 ((uint32_t)0x0000FF00)        /*!<ATTWAIT4[7:0] bits (Attribute memory 4 wait time) */
-#define  FSMC_PATT4_ATTWAIT4_0               ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_PATT4_ATTWAIT4_1               ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_PATT4_ATTWAIT4_2               ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_PATT4_ATTWAIT4_3               ((uint32_t)0x00000800)        /*!<Bit 3 */
-#define  FSMC_PATT4_ATTWAIT4_4               ((uint32_t)0x00001000)        /*!<Bit 4 */
-#define  FSMC_PATT4_ATTWAIT4_5               ((uint32_t)0x00002000)        /*!<Bit 5 */
-#define  FSMC_PATT4_ATTWAIT4_6               ((uint32_t)0x00004000)        /*!<Bit 6 */
-#define  FSMC_PATT4_ATTWAIT4_7               ((uint32_t)0x00008000)        /*!<Bit 7 */
-
-#define  FSMC_PATT4_ATTHOLD4                 ((uint32_t)0x00FF0000)        /*!<ATTHOLD4[7:0] bits (Attribute memory 4 hold time) */
-#define  FSMC_PATT4_ATTHOLD4_0               ((uint32_t)0x00010000)        /*!<Bit 0 */
-#define  FSMC_PATT4_ATTHOLD4_1               ((uint32_t)0x00020000)        /*!<Bit 1 */
-#define  FSMC_PATT4_ATTHOLD4_2               ((uint32_t)0x00040000)        /*!<Bit 2 */
-#define  FSMC_PATT4_ATTHOLD4_3               ((uint32_t)0x00080000)        /*!<Bit 3 */
-#define  FSMC_PATT4_ATTHOLD4_4               ((uint32_t)0x00100000)        /*!<Bit 4 */
-#define  FSMC_PATT4_ATTHOLD4_5               ((uint32_t)0x00200000)        /*!<Bit 5 */
-#define  FSMC_PATT4_ATTHOLD4_6               ((uint32_t)0x00400000)        /*!<Bit 6 */
-#define  FSMC_PATT4_ATTHOLD4_7               ((uint32_t)0x00800000)        /*!<Bit 7 */
-
-#define  FSMC_PATT4_ATTHIZ4                  ((uint32_t)0xFF000000)        /*!<ATTHIZ4[7:0] bits (Attribute memory 4 databus HiZ time) */
-#define  FSMC_PATT4_ATTHIZ4_0                ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_PATT4_ATTHIZ4_1                ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_PATT4_ATTHIZ4_2                ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_PATT4_ATTHIZ4_3                ((uint32_t)0x08000000)        /*!<Bit 3 */
-#define  FSMC_PATT4_ATTHIZ4_4                ((uint32_t)0x10000000)        /*!<Bit 4 */
-#define  FSMC_PATT4_ATTHIZ4_5                ((uint32_t)0x20000000)        /*!<Bit 5 */
-#define  FSMC_PATT4_ATTHIZ4_6                ((uint32_t)0x40000000)        /*!<Bit 6 */
-#define  FSMC_PATT4_ATTHIZ4_7                ((uint32_t)0x80000000)        /*!<Bit 7 */
-
-/******************  Bit definition for FSMC_PIO4 register  *******************/
-#define  FSMC_PIO4_IOSET4                    ((uint32_t)0x000000FF)        /*!<IOSET4[7:0] bits (I/O 4 setup time) */
-#define  FSMC_PIO4_IOSET4_0                  ((uint32_t)0x00000001)        /*!<Bit 0 */
-#define  FSMC_PIO4_IOSET4_1                  ((uint32_t)0x00000002)        /*!<Bit 1 */
-#define  FSMC_PIO4_IOSET4_2                  ((uint32_t)0x00000004)        /*!<Bit 2 */
-#define  FSMC_PIO4_IOSET4_3                  ((uint32_t)0x00000008)        /*!<Bit 3 */
-#define  FSMC_PIO4_IOSET4_4                  ((uint32_t)0x00000010)        /*!<Bit 4 */
-#define  FSMC_PIO4_IOSET4_5                  ((uint32_t)0x00000020)        /*!<Bit 5 */
-#define  FSMC_PIO4_IOSET4_6                  ((uint32_t)0x00000040)        /*!<Bit 6 */
-#define  FSMC_PIO4_IOSET4_7                  ((uint32_t)0x00000080)        /*!<Bit 7 */
-
-#define  FSMC_PIO4_IOWAIT4                   ((uint32_t)0x0000FF00)        /*!<IOWAIT4[7:0] bits (I/O 4 wait time) */
-#define  FSMC_PIO4_IOWAIT4_0                 ((uint32_t)0x00000100)        /*!<Bit 0 */
-#define  FSMC_PIO4_IOWAIT4_1                 ((uint32_t)0x00000200)        /*!<Bit 1 */
-#define  FSMC_PIO4_IOWAIT4_2                 ((uint32_t)0x00000400)        /*!<Bit 2 */
-#define  FSMC_PIO4_IOWAIT4_3                 ((uint32_t)0x00000800)        /*!<Bit 3 */
-#define  FSMC_PIO4_IOWAIT4_4                 ((uint32_t)0x00001000)        /*!<Bit 4 */
-#define  FSMC_PIO4_IOWAIT4_5                 ((uint32_t)0x00002000)        /*!<Bit 5 */
-#define  FSMC_PIO4_IOWAIT4_6                 ((uint32_t)0x00004000)        /*!<Bit 6 */
-#define  FSMC_PIO4_IOWAIT4_7                 ((uint32_t)0x00008000)        /*!<Bit 7 */
-
-#define  FSMC_PIO4_IOHOLD4                   ((uint32_t)0x00FF0000)        /*!<IOHOLD4[7:0] bits (I/O 4 hold time) */
-#define  FSMC_PIO4_IOHOLD4_0                 ((uint32_t)0x00010000)        /*!<Bit 0 */
-#define  FSMC_PIO4_IOHOLD4_1                 ((uint32_t)0x00020000)        /*!<Bit 1 */
-#define  FSMC_PIO4_IOHOLD4_2                 ((uint32_t)0x00040000)        /*!<Bit 2 */
-#define  FSMC_PIO4_IOHOLD4_3                 ((uint32_t)0x00080000)        /*!<Bit 3 */
-#define  FSMC_PIO4_IOHOLD4_4                 ((uint32_t)0x00100000)        /*!<Bit 4 */
-#define  FSMC_PIO4_IOHOLD4_5                 ((uint32_t)0x00200000)        /*!<Bit 5 */
-#define  FSMC_PIO4_IOHOLD4_6                 ((uint32_t)0x00400000)        /*!<Bit 6 */
-#define  FSMC_PIO4_IOHOLD4_7                 ((uint32_t)0x00800000)        /*!<Bit 7 */
-
-#define  FSMC_PIO4_IOHIZ4                    ((uint32_t)0xFF000000)        /*!<IOHIZ4[7:0] bits (I/O 4 databus HiZ time) */
-#define  FSMC_PIO4_IOHIZ4_0                  ((uint32_t)0x01000000)        /*!<Bit 0 */
-#define  FSMC_PIO4_IOHIZ4_1                  ((uint32_t)0x02000000)        /*!<Bit 1 */
-#define  FSMC_PIO4_IOHIZ4_2                  ((uint32_t)0x04000000)        /*!<Bit 2 */
-#define  FSMC_PIO4_IOHIZ4_3                  ((uint32_t)0x08000000)        /*!<Bit 3 */
-#define  FSMC_PIO4_IOHIZ4_4                  ((uint32_t)0x10000000)        /*!<Bit 4 */
-#define  FSMC_PIO4_IOHIZ4_5                  ((uint32_t)0x20000000)        /*!<Bit 5 */
-#define  FSMC_PIO4_IOHIZ4_6                  ((uint32_t)0x40000000)        /*!<Bit 6 */
-#define  FSMC_PIO4_IOHIZ4_7                  ((uint32_t)0x80000000)        /*!<Bit 7 */
-
-/******************  Bit definition for FSMC_ECCR2 register  ******************/
-#define  FSMC_ECCR2_ECC2                     ((uint32_t)0xFFFFFFFF)        /*!<ECC result */
-
-/******************  Bit definition for FSMC_ECCR3 register  ******************/
-#define  FSMC_ECCR3_ECC3                     ((uint32_t)0xFFFFFFFF)        /*!<ECC result */
-
-/******************************************************************************/
-/*                                                                            */
-/*                            General Purpose I/O                             */
-/*                                                                            */
-/******************************************************************************/
-/******************  Bits definition for GPIO_MODER register  *****************/
-#define GPIO_MODER_MODER0                    ((uint32_t)0x00000003)
-#define GPIO_MODER_MODER0_0                  ((uint32_t)0x00000001)
-#define GPIO_MODER_MODER0_1                  ((uint32_t)0x00000002)
-
-#define GPIO_MODER_MODER1                    ((uint32_t)0x0000000C)
-#define GPIO_MODER_MODER1_0                  ((uint32_t)0x00000004)
-#define GPIO_MODER_MODER1_1                  ((uint32_t)0x00000008)
-
-#define GPIO_MODER_MODER2                    ((uint32_t)0x00000030)
-#define GPIO_MODER_MODER2_0                  ((uint32_t)0x00000010)
-#define GPIO_MODER_MODER2_1                  ((uint32_t)0x00000020)
-
-#define GPIO_MODER_MODER3                    ((uint32_t)0x000000C0)
-#define GPIO_MODER_MODER3_0                  ((uint32_t)0x00000040)
-#define GPIO_MODER_MODER3_1                  ((uint32_t)0x00000080)
-
-#define GPIO_MODER_MODER4                    ((uint32_t)0x00000300)
-#define GPIO_MODER_MODER4_0                  ((uint32_t)0x00000100)
-#define GPIO_MODER_MODER4_1                  ((uint32_t)0x00000200)
-
-#define GPIO_MODER_MODER5                    ((uint32_t)0x00000C00)
-#define GPIO_MODER_MODER5_0                  ((uint32_t)0x00000400)
-#define GPIO_MODER_MODER5_1                  ((uint32_t)0x00000800)
-
-#define GPIO_MODER_MODER6                    ((uint32_t)0x00003000)
-#define GPIO_MODER_MODER6_0                  ((uint32_t)0x00001000)
-#define GPIO_MODER_MODER6_1                  ((uint32_t)0x00002000)
-
-#define GPIO_MODER_MODER7                    ((uint32_t)0x0000C000)
-#define GPIO_MODER_MODER7_0                  ((uint32_t)0x00004000)
-#define GPIO_MODER_MODER7_1                  ((uint32_t)0x00008000)
-
-#define GPIO_MODER_MODER8                    ((uint32_t)0x00030000)
-#define GPIO_MODER_MODER8_0                  ((uint32_t)0x00010000)
-#define GPIO_MODER_MODER8_1                  ((uint32_t)0x00020000)
-
-#define GPIO_MODER_MODER9                    ((uint32_t)0x000C0000)
-#define GPIO_MODER_MODER9_0                  ((uint32_t)0x00040000)
-#define GPIO_MODER_MODER9_1                  ((uint32_t)0x00080000)
-
-#define GPIO_MODER_MODER10                   ((uint32_t)0x00300000)
-#define GPIO_MODER_MODER10_0                 ((uint32_t)0x00100000)
-#define GPIO_MODER_MODER10_1                 ((uint32_t)0x00200000)
-
-#define GPIO_MODER_MODER11                   ((uint32_t)0x00C00000)
-#define GPIO_MODER_MODER11_0                 ((uint32_t)0x00400000)
-#define GPIO_MODER_MODER11_1                 ((uint32_t)0x00800000)
-
-#define GPIO_MODER_MODER12                   ((uint32_t)0x03000000)
-#define GPIO_MODER_MODER12_0                 ((uint32_t)0x01000000)
-#define GPIO_MODER_MODER12_1                 ((uint32_t)0x02000000)
-
-#define GPIO_MODER_MODER13                   ((uint32_t)0x0C000000)
-#define GPIO_MODER_MODER13_0                 ((uint32_t)0x04000000)
-#define GPIO_MODER_MODER13_1                 ((uint32_t)0x08000000)
-
-#define GPIO_MODER_MODER14                   ((uint32_t)0x30000000)
-#define GPIO_MODER_MODER14_0                 ((uint32_t)0x10000000)
-#define GPIO_MODER_MODER14_1                 ((uint32_t)0x20000000)
-
-#define GPIO_MODER_MODER15                   ((uint32_t)0xC0000000)
-#define GPIO_MODER_MODER15_0                 ((uint32_t)0x40000000)
-#define GPIO_MODER_MODER15_1                 ((uint32_t)0x80000000)
-
-/******************  Bits definition for GPIO_OTYPER register  ****************/
-#define GPIO_OTYPER_OT_0                     ((uint32_t)0x00000001)
-#define GPIO_OTYPER_OT_1                     ((uint32_t)0x00000002)
-#define GPIO_OTYPER_OT_2                     ((uint32_t)0x00000004)
-#define GPIO_OTYPER_OT_3                     ((uint32_t)0x00000008)
-#define GPIO_OTYPER_OT_4                     ((uint32_t)0x00000010)
-#define GPIO_OTYPER_OT_5                     ((uint32_t)0x00000020)
-#define GPIO_OTYPER_OT_6                     ((uint32_t)0x00000040)
-#define GPIO_OTYPER_OT_7                     ((uint32_t)0x00000080)
-#define GPIO_OTYPER_OT_8                     ((uint32_t)0x00000100)
-#define GPIO_OTYPER_OT_9                     ((uint32_t)0x00000200)
-#define GPIO_OTYPER_OT_10                    ((uint32_t)0x00000400)
-#define GPIO_OTYPER_OT_11                    ((uint32_t)0x00000800)
-#define GPIO_OTYPER_OT_12                    ((uint32_t)0x00001000)
-#define GPIO_OTYPER_OT_13                    ((uint32_t)0x00002000)
-#define GPIO_OTYPER_OT_14                    ((uint32_t)0x00004000)
-#define GPIO_OTYPER_OT_15                    ((uint32_t)0x00008000)
-
-/******************  Bits definition for GPIO_OSPEEDR register  ***************/
-#define GPIO_OSPEEDER_OSPEEDR0               ((uint32_t)0x00000003)
-#define GPIO_OSPEEDER_OSPEEDR0_0             ((uint32_t)0x00000001)
-#define GPIO_OSPEEDER_OSPEEDR0_1             ((uint32_t)0x00000002)
-
-#define GPIO_OSPEEDER_OSPEEDR1               ((uint32_t)0x0000000C)
-#define GPIO_OSPEEDER_OSPEEDR1_0             ((uint32_t)0x00000004)
-#define GPIO_OSPEEDER_OSPEEDR1_1             ((uint32_t)0x00000008)
-
-#define GPIO_OSPEEDER_OSPEEDR2               ((uint32_t)0x00000030)
-#define GPIO_OSPEEDER_OSPEEDR2_0             ((uint32_t)0x00000010)
-#define GPIO_OSPEEDER_OSPEEDR2_1             ((uint32_t)0x00000020)
-
-#define GPIO_OSPEEDER_OSPEEDR3               ((uint32_t)0x000000C0)
-#define GPIO_OSPEEDER_OSPEEDR3_0             ((uint32_t)0x00000040)
-#define GPIO_OSPEEDER_OSPEEDR3_1             ((uint32_t)0x00000080)
-
-#define GPIO_OSPEEDER_OSPEEDR4               ((uint32_t)0x00000300)
-#define GPIO_OSPEEDER_OSPEEDR4_0             ((uint32_t)0x00000100)
-#define GPIO_OSPEEDER_OSPEEDR4_1             ((uint32_t)0x00000200)
-
-#define GPIO_OSPEEDER_OSPEEDR5               ((uint32_t)0x00000C00)
-#define GPIO_OSPEEDER_OSPEEDR5_0             ((uint32_t)0x00000400)
-#define GPIO_OSPEEDER_OSPEEDR5_1             ((uint32_t)0x00000800)
-
-#define GPIO_OSPEEDER_OSPEEDR6               ((uint32_t)0x00003000)
-#define GPIO_OSPEEDER_OSPEEDR6_0             ((uint32_t)0x00001000)
-#define GPIO_OSPEEDER_OSPEEDR6_1             ((uint32_t)0x00002000)
-
-#define GPIO_OSPEEDER_OSPEEDR7               ((uint32_t)0x0000C000)
-#define GPIO_OSPEEDER_OSPEEDR7_0             ((uint32_t)0x00004000)
-#define GPIO_OSPEEDER_OSPEEDR7_1             ((uint32_t)0x00008000)
-
-#define GPIO_OSPEEDER_OSPEEDR8               ((uint32_t)0x00030000)
-#define GPIO_OSPEEDER_OSPEEDR8_0             ((uint32_t)0x00010000)
-#define GPIO_OSPEEDER_OSPEEDR8_1             ((uint32_t)0x00020000)
-
-#define GPIO_OSPEEDER_OSPEEDR9               ((uint32_t)0x000C0000)
-#define GPIO_OSPEEDER_OSPEEDR9_0             ((uint32_t)0x00040000)
-#define GPIO_OSPEEDER_OSPEEDR9_1             ((uint32_t)0x00080000)
-
-#define GPIO_OSPEEDER_OSPEEDR10              ((uint32_t)0x00300000)
-#define GPIO_OSPEEDER_OSPEEDR10_0            ((uint32_t)0x00100000)
-#define GPIO_OSPEEDER_OSPEEDR10_1            ((uint32_t)0x00200000)
-
-#define GPIO_OSPEEDER_OSPEEDR11              ((uint32_t)0x00C00000)
-#define GPIO_OSPEEDER_OSPEEDR11_0            ((uint32_t)0x00400000)
-#define GPIO_OSPEEDER_OSPEEDR11_1            ((uint32_t)0x00800000)
-
-#define GPIO_OSPEEDER_OSPEEDR12              ((uint32_t)0x03000000)
-#define GPIO_OSPEEDER_OSPEEDR12_0            ((uint32_t)0x01000000)
-#define GPIO_OSPEEDER_OSPEEDR12_1            ((uint32_t)0x02000000)
-
-#define GPIO_OSPEEDER_OSPEEDR13              ((uint32_t)0x0C000000)
-#define GPIO_OSPEEDER_OSPEEDR13_0            ((uint32_t)0x04000000)
-#define GPIO_OSPEEDER_OSPEEDR13_1            ((uint32_t)0x08000000)
-
-#define GPIO_OSPEEDER_OSPEEDR14              ((uint32_t)0x30000000)
-#define GPIO_OSPEEDER_OSPEEDR14_0            ((uint32_t)0x10000000)
-#define GPIO_OSPEEDER_OSPEEDR14_1            ((uint32_t)0x20000000)
-
-#define GPIO_OSPEEDER_OSPEEDR15              ((uint32_t)0xC0000000)
-#define GPIO_OSPEEDER_OSPEEDR15_0            ((uint32_t)0x40000000)
-#define GPIO_OSPEEDER_OSPEEDR15_1            ((uint32_t)0x80000000)
-
-/******************  Bits definition for GPIO_PUPDR register  *****************/
-#define GPIO_PUPDR_PUPDR0                    ((uint32_t)0x00000003)
-#define GPIO_PUPDR_PUPDR0_0                  ((uint32_t)0x00000001)
-#define GPIO_PUPDR_PUPDR0_1                  ((uint32_t)0x00000002)
-
-#define GPIO_PUPDR_PUPDR1                    ((uint32_t)0x0000000C)
-#define GPIO_PUPDR_PUPDR1_0                  ((uint32_t)0x00000004)
-#define GPIO_PUPDR_PUPDR1_1                  ((uint32_t)0x00000008)
-
-#define GPIO_PUPDR_PUPDR2                    ((uint32_t)0x00000030)
-#define GPIO_PUPDR_PUPDR2_0                  ((uint32_t)0x00000010)
-#define GPIO_PUPDR_PUPDR2_1                  ((uint32_t)0x00000020)
-
-#define GPIO_PUPDR_PUPDR3                    ((uint32_t)0x000000C0)
-#define GPIO_PUPDR_PUPDR3_0                  ((uint32_t)0x00000040)
-#define GPIO_PUPDR_PUPDR3_1                  ((uint32_t)0x00000080)
-
-#define GPIO_PUPDR_PUPDR4                    ((uint32_t)0x00000300)
-#define GPIO_PUPDR_PUPDR4_0                  ((uint32_t)0x00000100)
-#define GPIO_PUPDR_PUPDR4_1                  ((uint32_t)0x00000200)
-
-#define GPIO_PUPDR_PUPDR5                    ((uint32_t)0x00000C00)
-#define GPIO_PUPDR_PUPDR5_0                  ((uint32_t)0x00000400)
-#define GPIO_PUPDR_PUPDR5_1                  ((uint32_t)0x00000800)
-
-#define GPIO_PUPDR_PUPDR6                    ((uint32_t)0x00003000)
-#define GPIO_PUPDR_PUPDR6_0                  ((uint32_t)0x00001000)
-#define GPIO_PUPDR_PUPDR6_1                  ((uint32_t)0x00002000)
-
-#define GPIO_PUPDR_PUPDR7                    ((uint32_t)0x0000C000)
-#define GPIO_PUPDR_PUPDR7_0                  ((uint32_t)0x00004000)
-#define GPIO_PUPDR_PUPDR7_1                  ((uint32_t)0x00008000)
-
-#define GPIO_PUPDR_PUPDR8                    ((uint32_t)0x00030000)
-#define GPIO_PUPDR_PUPDR8_0                  ((uint32_t)0x00010000)
-#define GPIO_PUPDR_PUPDR8_1                  ((uint32_t)0x00020000)
-
-#define GPIO_PUPDR_PUPDR9                    ((uint32_t)0x000C0000)
-#define GPIO_PUPDR_PUPDR9_0                  ((uint32_t)0x00040000)
-#define GPIO_PUPDR_PUPDR9_1                  ((uint32_t)0x00080000)
-
-#define GPIO_PUPDR_PUPDR10                   ((uint32_t)0x00300000)
-#define GPIO_PUPDR_PUPDR10_0                 ((uint32_t)0x00100000)
-#define GPIO_PUPDR_PUPDR10_1                 ((uint32_t)0x00200000)
-
-#define GPIO_PUPDR_PUPDR11                   ((uint32_t)0x00C00000)
-#define GPIO_PUPDR_PUPDR11_0                 ((uint32_t)0x00400000)
-#define GPIO_PUPDR_PUPDR11_1                 ((uint32_t)0x00800000)
-
-#define GPIO_PUPDR_PUPDR12                   ((uint32_t)0x03000000)
-#define GPIO_PUPDR_PUPDR12_0                 ((uint32_t)0x01000000)
-#define GPIO_PUPDR_PUPDR12_1                 ((uint32_t)0x02000000)
-
-#define GPIO_PUPDR_PUPDR13                   ((uint32_t)0x0C000000)
-#define GPIO_PUPDR_PUPDR13_0                 ((uint32_t)0x04000000)
-#define GPIO_PUPDR_PUPDR13_1                 ((uint32_t)0x08000000)
-
-#define GPIO_PUPDR_PUPDR14                   ((uint32_t)0x30000000)
-#define GPIO_PUPDR_PUPDR14_0                 ((uint32_t)0x10000000)
-#define GPIO_PUPDR_PUPDR14_1                 ((uint32_t)0x20000000)
-
-#define GPIO_PUPDR_PUPDR15                   ((uint32_t)0xC0000000)
-#define GPIO_PUPDR_PUPDR15_0                 ((uint32_t)0x40000000)
-#define GPIO_PUPDR_PUPDR15_1                 ((uint32_t)0x80000000)
-
-/******************  Bits definition for GPIO_IDR register  *******************/
-#define GPIO_OTYPER_IDR_0                    ((uint32_t)0x00000001)
-#define GPIO_OTYPER_IDR_1                    ((uint32_t)0x00000002)
-#define GPIO_OTYPER_IDR_2                    ((uint32_t)0x00000004)
-#define GPIO_OTYPER_IDR_3                    ((uint32_t)0x00000008)
-#define GPIO_OTYPER_IDR_4                    ((uint32_t)0x00000010)
-#define GPIO_OTYPER_IDR_5                    ((uint32_t)0x00000020)
-#define GPIO_OTYPER_IDR_6                    ((uint32_t)0x00000040)
-#define GPIO_OTYPER_IDR_7                    ((uint32_t)0x00000080)
-#define GPIO_OTYPER_IDR_8                    ((uint32_t)0x00000100)
-#define GPIO_OTYPER_IDR_9                    ((uint32_t)0x00000200)
-#define GPIO_OTYPER_IDR_10                   ((uint32_t)0x00000400)
-#define GPIO_OTYPER_IDR_11                   ((uint32_t)0x00000800)
-#define GPIO_OTYPER_IDR_12                   ((uint32_t)0x00001000)
-#define GPIO_OTYPER_IDR_13                   ((uint32_t)0x00002000)
-#define GPIO_OTYPER_IDR_14                   ((uint32_t)0x00004000)
-#define GPIO_OTYPER_IDR_15                   ((uint32_t)0x00008000)
-
-/******************  Bits definition for GPIO_ODR register  *******************/
-#define GPIO_OTYPER_ODR_0                    ((uint32_t)0x00000001)
-#define GPIO_OTYPER_ODR_1                    ((uint32_t)0x00000002)
-#define GPIO_OTYPER_ODR_2                    ((uint32_t)0x00000004)
-#define GPIO_OTYPER_ODR_3                    ((uint32_t)0x00000008)
-#define GPIO_OTYPER_ODR_4                    ((uint32_t)0x00000010)
-#define GPIO_OTYPER_ODR_5                    ((uint32_t)0x00000020)
-#define GPIO_OTYPER_ODR_6                    ((uint32_t)0x00000040)
-#define GPIO_OTYPER_ODR_7                    ((uint32_t)0x00000080)
-#define GPIO_OTYPER_ODR_8                    ((uint32_t)0x00000100)
-#define GPIO_OTYPER_ODR_9                    ((uint32_t)0x00000200)
-#define GPIO_OTYPER_ODR_10                   ((uint32_t)0x00000400)
-#define GPIO_OTYPER_ODR_11                   ((uint32_t)0x00000800)
-#define GPIO_OTYPER_ODR_12                   ((uint32_t)0x00001000)
-#define GPIO_OTYPER_ODR_13                   ((uint32_t)0x00002000)
-#define GPIO_OTYPER_ODR_14                   ((uint32_t)0x00004000)
-#define GPIO_OTYPER_ODR_15                   ((uint32_t)0x00008000)
-
-/******************  Bits definition for GPIO_BSRR register  ******************/
-#define GPIO_BSRR_BS_0                       ((uint32_t)0x00000001)
-#define GPIO_BSRR_BS_1                       ((uint32_t)0x00000002)
-#define GPIO_BSRR_BS_2                       ((uint32_t)0x00000004)
-#define GPIO_BSRR_BS_3                       ((uint32_t)0x00000008)
-#define GPIO_BSRR_BS_4                       ((uint32_t)0x00000010)
-#define GPIO_BSRR_BS_5                       ((uint32_t)0x00000020)
-#define GPIO_BSRR_BS_6                       ((uint32_t)0x00000040)
-#define GPIO_BSRR_BS_7                       ((uint32_t)0x00000080)
-#define GPIO_BSRR_BS_8                       ((uint32_t)0x00000100)
-#define GPIO_BSRR_BS_9                       ((uint32_t)0x00000200)
-#define GPIO_BSRR_BS_10                      ((uint32_t)0x00000400)
-#define GPIO_BSRR_BS_11                      ((uint32_t)0x00000800)
-#define GPIO_BSRR_BS_12                      ((uint32_t)0x00001000)
-#define GPIO_BSRR_BS_13                      ((uint32_t)0x00002000)
-#define GPIO_BSRR_BS_14                      ((uint32_t)0x00004000)
-#define GPIO_BSRR_BS_15                      ((uint32_t)0x00008000)
-#define GPIO_BSRR_BR_0                       ((uint32_t)0x00010000)
-#define GPIO_BSRR_BR_1                       ((uint32_t)0x00020000)
-#define GPIO_BSRR_BR_2                       ((uint32_t)0x00040000)
-#define GPIO_BSRR_BR_3                       ((uint32_t)0x00080000)
-#define GPIO_BSRR_BR_4                       ((uint32_t)0x00100000)
-#define GPIO_BSRR_BR_5                       ((uint32_t)0x00200000)
-#define GPIO_BSRR_BR_6                       ((uint32_t)0x00400000)
-#define GPIO_BSRR_BR_7                       ((uint32_t)0x00800000)
-#define GPIO_BSRR_BR_8                       ((uint32_t)0x01000000)
-#define GPIO_BSRR_BR_9                       ((uint32_t)0x02000000)
-#define GPIO_BSRR_BR_10                      ((uint32_t)0x04000000)
-#define GPIO_BSRR_BR_11                      ((uint32_t)0x08000000)
-#define GPIO_BSRR_BR_12                      ((uint32_t)0x10000000)
-#define GPIO_BSRR_BR_13                      ((uint32_t)0x20000000)
-#define GPIO_BSRR_BR_14                      ((uint32_t)0x40000000)
-#define GPIO_BSRR_BR_15                      ((uint32_t)0x80000000)
-
-/******************************************************************************/
-/*                                                                            */
-/*                                    HASH                                    */
-/*                                                                            */
-/******************************************************************************/
-/******************  Bits definition for HASH_CR register  ********************/
-#define HASH_CR_INIT                         ((uint32_t)0x00000004)
-#define HASH_CR_DMAE                         ((uint32_t)0x00000008)
-#define HASH_CR_DATATYPE                     ((uint32_t)0x00000030)
-#define HASH_CR_DATATYPE_0                   ((uint32_t)0x00000010)
-#define HASH_CR_DATATYPE_1                   ((uint32_t)0x00000020)
-#define HASH_CR_MODE                         ((uint32_t)0x00000040)
-#define HASH_CR_ALGO                         ((uint32_t)0x00000080)
-#define HASH_CR_NBW                          ((uint32_t)0x00000F00)
-#define HASH_CR_NBW_0                        ((uint32_t)0x00000100)
-#define HASH_CR_NBW_1                        ((uint32_t)0x00000200)
-#define HASH_CR_NBW_2                        ((uint32_t)0x00000400)
-#define HASH_CR_NBW_3                        ((uint32_t)0x00000800)
-#define HASH_CR_DINNE                        ((uint32_t)0x00001000)
-#define HASH_CR_LKEY                         ((uint32_t)0x00010000)
-
-/******************  Bits definition for HASH_STR register  *******************/
-#define HASH_STR_NBW                         ((uint32_t)0x0000001F)
-#define HASH_STR_NBW_0                       ((uint32_t)0x00000001)
-#define HASH_STR_NBW_1                       ((uint32_t)0x00000002)
-#define HASH_STR_NBW_2                       ((uint32_t)0x00000004)
-#define HASH_STR_NBW_3                       ((uint32_t)0x00000008)
-#define HASH_STR_NBW_4                       ((uint32_t)0x00000010)
-#define HASH_STR_DCAL                        ((uint32_t)0x00000100)
-
-/******************  Bits definition for HASH_IMR register  *******************/
-#define HASH_IMR_DINIM                       ((uint32_t)0x00000001)
-#define HASH_IMR_DCIM                        ((uint32_t)0x00000002)
-
-/******************  Bits definition for HASH_SR register  ********************/
-#define HASH_SR_DINIS                        ((uint32_t)0x00000001)
-#define HASH_SR_DCIS                         ((uint32_t)0x00000002)
-#define HASH_SR_DMAS                         ((uint32_t)0x00000004)
-#define HASH_SR_BUSY                         ((uint32_t)0x00000008)
-
-/******************************************************************************/
-/*                                                                            */
-/*                      Inter-integrated Circuit Interface                    */
-/*                                                                            */
-/******************************************************************************/
-/*******************  Bit definition for I2C_CR1 register  ********************/
-#define  I2C_CR1_PE                          ((uint16_t)0x0001)            /*!<Peripheral Enable */
-#define  I2C_CR1_SMBUS                       ((uint16_t)0x0002)            /*!<SMBus Mode */
-#define  I2C_CR1_SMBTYPE                     ((uint16_t)0x0008)            /*!<SMBus Type */
-#define  I2C_CR1_ENARP                       ((uint16_t)0x0010)            /*!<ARP Enable */
-#define  I2C_CR1_ENPEC                       ((uint16_t)0x0020)            /*!<PEC Enable */
-#define  I2C_CR1_ENGC                        ((uint16_t)0x0040)            /*!<General Call Enable */
-#define  I2C_CR1_NOSTRETCH                   ((uint16_t)0x0080)            /*!<Clock Stretching Disable (Slave mode) */
-#define  I2C_CR1_START                       ((uint16_t)0x0100)            /*!<Start Generation */
-#define  I2C_CR1_STOP                        ((uint16_t)0x0200)            /*!<Stop Generation */
-#define  I2C_CR1_ACK                         ((uint16_t)0x0400)            /*!<Acknowledge Enable */
-#define  I2C_CR1_POS                         ((uint16_t)0x0800)            /*!<Acknowledge/PEC Position (for data reception) */
-#define  I2C_CR1_PEC                         ((uint16_t)0x1000)            /*!<Packet Error Checking */
-#define  I2C_CR1_ALERT                       ((uint16_t)0x2000)            /*!<SMBus Alert */
-#define  I2C_CR1_SWRST                       ((uint16_t)0x8000)            /*!<Software Reset */
-
-/*******************  Bit definition for I2C_CR2 register  ********************/
-#define  I2C_CR2_FREQ                        ((uint16_t)0x003F)            /*!<FREQ[5:0] bits (Peripheral Clock Frequency) */
-#define  I2C_CR2_FREQ_0                      ((uint16_t)0x0001)            /*!<Bit 0 */
-#define  I2C_CR2_FREQ_1                      ((uint16_t)0x0002)            /*!<Bit 1 */
-#define  I2C_CR2_FREQ_2                      ((uint16_t)0x0004)            /*!<Bit 2 */
-#define  I2C_CR2_FREQ_3                      ((uint16_t)0x0008)            /*!<Bit 3 */
-#define  I2C_CR2_FREQ_4                      ((uint16_t)0x0010)            /*!<Bit 4 */
-#define  I2C_CR2_FREQ_5                      ((uint16_t)0x0020)            /*!<Bit 5 */
-
-#define  I2C_CR2_ITERREN                     ((uint16_t)0x0100)            /*!<Error Interrupt Enable */
-#define  I2C_CR2_ITEVTEN                     ((uint16_t)0x0200)            /*!<Event Interrupt Enable */
-#define  I2C_CR2_ITBUFEN                     ((uint16_t)0x0400)            /*!<Buffer Interrupt Enable */
-#define  I2C_CR2_DMAEN                       ((uint16_t)0x0800)            /*!<DMA Requests Enable */
-#define  I2C_CR2_LAST                        ((uint16_t)0x1000)            /*!<DMA Last Transfer */
-
-/*******************  Bit definition for I2C_OAR1 register  *******************/
-#define  I2C_OAR1_ADD1_7                     ((uint16_t)0x00FE)            /*!<Interface Address */
-#define  I2C_OAR1_ADD8_9                     ((uint16_t)0x0300)            /*!<Interface Address */
-
-#define  I2C_OAR1_ADD0                       ((uint16_t)0x0001)            /*!<Bit 0 */
-#define  I2C_OAR1_ADD1                       ((uint16_t)0x0002)            /*!<Bit 1 */
-#define  I2C_OAR1_ADD2                       ((uint16_t)0x0004)            /*!<Bit 2 */
-#define  I2C_OAR1_ADD3                       ((uint16_t)0x0008)            /*!<Bit 3 */
-#define  I2C_OAR1_ADD4                       ((uint16_t)0x0010)            /*!<Bit 4 */
-#define  I2C_OAR1_ADD5                       ((uint16_t)0x0020)            /*!<Bit 5 */
-#define  I2C_OAR1_ADD6                       ((uint16_t)0x0040)            /*!<Bit 6 */
-#define  I2C_OAR1_ADD7                       ((uint16_t)0x0080)            /*!<Bit 7 */
-#define  I2C_OAR1_ADD8                       ((uint16_t)0x0100)            /*!<Bit 8 */
-#define  I2C_OAR1_ADD9                       ((uint16_t)0x0200)            /*!<Bit 9 */
-
-#define  I2C_OAR1_ADDMODE                    ((uint16_t)0x8000)            /*!<Addressing Mode (Slave mode) */
-
-/*******************  Bit definition for I2C_OAR2 register  *******************/
-#define  I2C_OAR2_ENDUAL                     ((uint8_t)0x01)               /*!<Dual addressing mode enable */
-#define  I2C_OAR2_ADD2                       ((uint8_t)0xFE)               /*!<Interface address */
-
-/********************  Bit definition for I2C_DR register  ********************/
-#define  I2C_DR_DR                           ((uint8_t)0xFF)               /*!<8-bit Data Register */
-
-/*******************  Bit definition for I2C_SR1 register  ********************/
-#define  I2C_SR1_SB                          ((uint16_t)0x0001)            /*!<Start Bit (Master mode) */
-#define  I2C_SR1_ADDR                        ((uint16_t)0x0002)            /*!<Address sent (master mode)/matched (slave mode) */
-#define  I2C_SR1_BTF                         ((uint16_t)0x0004)            /*!<Byte Transfer Finished */
-#define  I2C_SR1_ADD10                       ((uint16_t)0x0008)            /*!<10-bit header sent (Master mode) */
-#define  I2C_SR1_STOPF                       ((uint16_t)0x0010)            /*!<Stop detection (Slave mode) */
-#define  I2C_SR1_RXNE                        ((uint16_t)0x0040)            /*!<Data Register not Empty (receivers) */
-#define  I2C_SR1_TXE                         ((uint16_t)0x0080)            /*!<Data Register Empty (transmitters) */
-#define  I2C_SR1_BERR                        ((uint16_t)0x0100)            /*!<Bus Error */
-#define  I2C_SR1_ARLO                        ((uint16_t)0x0200)            /*!<Arbitration Lost (master mode) */
-#define  I2C_SR1_AF                          ((uint16_t)0x0400)            /*!<Acknowledge Failure */
-#define  I2C_SR1_OVR                         ((uint16_t)0x0800)            /*!<Overrun/Underrun */
-#define  I2C_SR1_PECERR                      ((uint16_t)0x1000)            /*!<PEC Error in reception */
-#define  I2C_SR1_TIMEOUT                     ((uint16_t)0x4000)            /*!<Timeout or Tlow Error */
-#define  I2C_SR1_SMBALERT                    ((uint16_t)0x8000)            /*!<SMBus Alert */
-
-/*******************  Bit definition for I2C_SR2 register  ********************/
-#define  I2C_SR2_MSL                         ((uint16_t)0x0001)            /*!<Master/Slave */
-#define  I2C_SR2_BUSY                        ((uint16_t)0x0002)            /*!<Bus Busy */
-#define  I2C_SR2_TRA                         ((uint16_t)0x0004)            /*!<Transmitter/Receiver */
-#define  I2C_SR2_GENCALL                     ((uint16_t)0x0010)            /*!<General Call Address (Slave mode) */
-#define  I2C_SR2_SMBDEFAULT                  ((uint16_t)0x0020)            /*!<SMBus Device Default Address (Slave mode) */
-#define  I2C_SR2_SMBHOST                     ((uint16_t)0x0040)            /*!<SMBus Host Header (Slave mode) */
-#define  I2C_SR2_DUALF                       ((uint16_t)0x0080)            /*!<Dual Flag (Slave mode) */
-#define  I2C_SR2_PEC                         ((uint16_t)0xFF00)            /*!<Packet Error Checking Register */
-
-/*******************  Bit definition for I2C_CCR register  ********************/
-#define  I2C_CCR_CCR                         ((uint16_t)0x0FFF)            /*!<Clock Control Register in Fast/Standard mode (Master mode) */
-#define  I2C_CCR_DUTY                        ((uint16_t)0x4000)            /*!<Fast Mode Duty Cycle */
-#define  I2C_CCR_FS                          ((uint16_t)0x8000)            /*!<I2C Master Mode Selection */
-
-/******************  Bit definition for I2C_TRISE register  *******************/
-#define  I2C_TRISE_TRISE                     ((uint8_t)0x3F)               /*!<Maximum Rise Time in Fast/Standard mode (Master mode) */
-
-/******************************************************************************/
-/*                                                                            */
-/*                           Independent WATCHDOG                             */
-/*                                                                            */
-/******************************************************************************/
-/*******************  Bit definition for IWDG_KR register  ********************/
-#define  IWDG_KR_KEY                         ((uint16_t)0xFFFF)            /*!<Key value (write only, read 0000h) */
-
-/*******************  Bit definition for IWDG_PR register  ********************/
-#define  IWDG_PR_PR                          ((uint8_t)0x07)               /*!<PR[2:0] (Prescaler divider) */
-#define  IWDG_PR_PR_0                        ((uint8_t)0x01)               /*!<Bit 0 */
-#define  IWDG_PR_PR_1                        ((uint8_t)0x02)               /*!<Bit 1 */
-#define  IWDG_PR_PR_2                        ((uint8_t)0x04)               /*!<Bit 2 */
-
-/*******************  Bit definition for IWDG_RLR register  *******************/
-#define  IWDG_RLR_RL                         ((uint16_t)0x0FFF)            /*!<Watchdog counter reload value */
-
-/*******************  Bit definition for IWDG_SR register  ********************/
-#define  IWDG_SR_PVU                         ((uint8_t)0x01)               /*!<Watchdog prescaler value update */
-#define  IWDG_SR_RVU                         ((uint8_t)0x02)               /*!<Watchdog counter reload value update */
-
-/******************************************************************************/
-/*                                                                            */
-/*                             Power Control                                  */
-/*                                                                            */
-/******************************************************************************/
-/********************  Bit definition for PWR_CR register  ********************/
-#define  PWR_CR_LPDS                         ((uint16_t)0x0001)     /*!< Low-Power Deepsleep */
-#define  PWR_CR_PDDS                         ((uint16_t)0x0002)     /*!< Power Down Deepsleep */
-#define  PWR_CR_CWUF                         ((uint16_t)0x0004)     /*!< Clear Wakeup Flag */
-#define  PWR_CR_CSBF                         ((uint16_t)0x0008)     /*!< Clear Standby Flag */
-#define  PWR_CR_PVDE                         ((uint16_t)0x0010)     /*!< Power Voltage Detector Enable */
-
-#define  PWR_CR_PLS                          ((uint16_t)0x00E0)     /*!< PLS[2:0] bits (PVD Level Selection) */
-#define  PWR_CR_PLS_0                        ((uint16_t)0x0020)     /*!< Bit 0 */
-#define  PWR_CR_PLS_1                        ((uint16_t)0x0040)     /*!< Bit 1 */
-#define  PWR_CR_PLS_2                        ((uint16_t)0x0080)     /*!< Bit 2 */
-
-/*!< PVD level configuration */
-#define  PWR_CR_PLS_LEV0                     ((uint16_t)0x0000)     /*!< PVD level 0 */
-#define  PWR_CR_PLS_LEV1                     ((uint16_t)0x0020)     /*!< PVD level 1 */
-#define  PWR_CR_PLS_LEV2                     ((uint16_t)0x0040)     /*!< PVD level 2 */
-#define  PWR_CR_PLS_LEV3                     ((uint16_t)0x0060)     /*!< PVD level 3 */
-#define  PWR_CR_PLS_LEV4                     ((uint16_t)0x0080)     /*!< PVD level 4 */
-#define  PWR_CR_PLS_LEV5                     ((uint16_t)0x00A0)     /*!< PVD level 5 */
-#define  PWR_CR_PLS_LEV6                     ((uint16_t)0x00C0)     /*!< PVD level 6 */
-#define  PWR_CR_PLS_LEV7                     ((uint16_t)0x00E0)     /*!< PVD level 7 */
-
-#define  PWR_CR_DBP                          ((uint16_t)0x0100)     /*!< Disable Backup Domain write protection */
-#define  PWR_CR_FPDS                         ((uint16_t)0x0200)     /*!< Flash power down in Stop mode */
-
-
-/*******************  Bit definition for PWR_CSR register  ********************/
-#define  PWR_CSR_WUF                         ((uint16_t)0x0001)     /*!< Wakeup Flag */
-#define  PWR_CSR_SBF                         ((uint16_t)0x0002)     /*!< Standby Flag */
-#define  PWR_CSR_PVDO                        ((uint16_t)0x0004)     /*!< PVD Output */
-#define  PWR_CSR_BRR                         ((uint16_t)0x0008)     /*!< Backup regulator ready */
-#define  PWR_CSR_EWUP                        ((uint16_t)0x0100)     /*!< Enable WKUP pin */
-#define  PWR_CSR_BRE                         ((uint16_t)0x0200)     /*!< Backup regulator enable */
-
-/******************************************************************************/
-/*                                                                            */
-/*                         Reset and Clock Control                            */
-/*                                                                            */
-/******************************************************************************/
-/********************  Bit definition for RCC_CR register  ********************/
-#define  RCC_CR_HSION                        ((uint32_t)0x00000001)
-#define  RCC_CR_HSIRDY                       ((uint32_t)0x00000002)
-
-#define  RCC_CR_HSITRIM                      ((uint32_t)0x000000F8)
-#define  RCC_CR_HSITRIM_0                    ((uint32_t)0x00000008)/*!<Bit 0 */
-#define  RCC_CR_HSITRIM_1                    ((uint32_t)0x00000010)/*!<Bit 1 */
-#define  RCC_CR_HSITRIM_2                    ((uint32_t)0x00000020)/*!<Bit 2 */
-#define  RCC_CR_HSITRIM_3                    ((uint32_t)0x00000040)/*!<Bit 3 */
-#define  RCC_CR_HSITRIM_4                    ((uint32_t)0x00000080)/*!<Bit 4 */
-
-#define  RCC_CR_HSICAL                       ((uint32_t)0x0000FF00)
-#define  RCC_CR_HSICAL_0                     ((uint32_t)0x00000100)/*!<Bit 0 */
-#define  RCC_CR_HSICAL_1                     ((uint32_t)0x00000200)/*!<Bit 1 */
-#define  RCC_CR_HSICAL_2                     ((uint32_t)0x00000400)/*!<Bit 2 */
-#define  RCC_CR_HSICAL_3                     ((uint32_t)0x00000800)/*!<Bit 3 */
-#define  RCC_CR_HSICAL_4                     ((uint32_t)0x00001000)/*!<Bit 4 */
-#define  RCC_CR_HSICAL_5                     ((uint32_t)0x00002000)/*!<Bit 5 */
-#define  RCC_CR_HSICAL_6                     ((uint32_t)0x00004000)/*!<Bit 6 */
-#define  RCC_CR_HSICAL_7                     ((uint32_t)0x00008000)/*!<Bit 7 */
-
-#define  RCC_CR_HSEON                        ((uint32_t)0x00010000)
-#define  RCC_CR_HSERDY                       ((uint32_t)0x00020000)
-#define  RCC_CR_HSEBYP                       ((uint32_t)0x00040000)
-#define  RCC_CR_CSSON                        ((uint32_t)0x00080000)
-#define  RCC_CR_PLLON                        ((uint32_t)0x01000000)
-#define  RCC_CR_PLLRDY                       ((uint32_t)0x02000000)
-#define  RCC_CR_PLLI2SON                     ((uint32_t)0x04000000)
-#define  RCC_CR_PLLI2SRDY                    ((uint32_t)0x08000000)
-
-/********************  Bit definition for RCC_PLLCFGR register  ***************/
-#define  RCC_PLLCFGR_PLLM                    ((uint32_t)0x0000003F)
-#define  RCC_PLLCFGR_PLLM_0                  ((uint32_t)0x00000001)
-#define  RCC_PLLCFGR_PLLM_1                  ((uint32_t)0x00000002)
-#define  RCC_PLLCFGR_PLLM_2                  ((uint32_t)0x00000004)
-#define  RCC_PLLCFGR_PLLM_3                  ((uint32_t)0x00000008)
-#define  RCC_PLLCFGR_PLLM_4                  ((uint32_t)0x00000010)
-#define  RCC_PLLCFGR_PLLM_5                  ((uint32_t)0x00000020)
-
-#define  RCC_PLLCFGR_PLLN                     ((uint32_t)0x00007FC0)
-#define  RCC_PLLCFGR_PLLN_0                   ((uint32_t)0x00000040)
-#define  RCC_PLLCFGR_PLLN_1                   ((uint32_t)0x00000080)
-#define  RCC_PLLCFGR_PLLN_2                   ((uint32_t)0x00000100)
-#define  RCC_PLLCFGR_PLLN_3                   ((uint32_t)0x00000200)
-#define  RCC_PLLCFGR_PLLN_4                   ((uint32_t)0x00000400)
-#define  RCC_PLLCFGR_PLLN_5                   ((uint32_t)0x00000800)
-#define  RCC_PLLCFGR_PLLN_6                   ((uint32_t)0x00001000)
-#define  RCC_PLLCFGR_PLLN_7                   ((uint32_t)0x00002000)
-#define  RCC_PLLCFGR_PLLN_8                   ((uint32_t)0x00004000)
-
-#define  RCC_PLLCFGR_PLLP                    ((uint32_t)0x00030000)
-#define  RCC_PLLCFGR_PLLP_0                  ((uint32_t)0x00010000)
-#define  RCC_PLLCFGR_PLLP_1                  ((uint32_t)0x00020000)
-
-#define  RCC_PLLCFGR_PLLSRC                  ((uint32_t)0x00400000)
-#define  RCC_PLLCFGR_PLLSRC_HSE              ((uint32_t)0x00400000)
-#define  RCC_PLLCFGR_PLLSRC_HSI              ((uint32_t)0x00000000)
-
-#define  RCC_PLLCFGR_PLLQ                    ((uint32_t)0x0F000000)
-#define  RCC_PLLCFGR_PLLQ_0                  ((uint32_t)0x01000000)
-#define  RCC_PLLCFGR_PLLQ_1                  ((uint32_t)0x02000000)
-#define  RCC_PLLCFGR_PLLQ_2                  ((uint32_t)0x04000000)
-#define  RCC_PLLCFGR_PLLQ_3                  ((uint32_t)0x08000000)
-
-/********************  Bit definition for RCC_CFGR register  ******************/
-/*!< SW configuration */
-#define  RCC_CFGR_SW                         ((uint32_t)0x00000003)        /*!< SW[1:0] bits (System clock Switch) */
-#define  RCC_CFGR_SW_0                       ((uint32_t)0x00000001)        /*!< Bit 0 */
-#define  RCC_CFGR_SW_1                       ((uint32_t)0x00000002)        /*!< Bit 1 */
-
-#define  RCC_CFGR_SW_HSI                     ((uint32_t)0x00000000)        /*!< HSI selected as system clock */
-#define  RCC_CFGR_SW_HSE                     ((uint32_t)0x00000001)        /*!< HSE selected as system clock */
-#define  RCC_CFGR_SW_PLL                     ((uint32_t)0x00000002)        /*!< PLL selected as system clock */
-
-/*!< SWS configuration */
-#define  RCC_CFGR_SWS                        ((uint32_t)0x0000000C)        /*!< SWS[1:0] bits (System Clock Switch Status) */
-#define  RCC_CFGR_SWS_0                      ((uint32_t)0x00000004)        /*!< Bit 0 */
-#define  RCC_CFGR_SWS_1                      ((uint32_t)0x00000008)        /*!< Bit 1 */
-
-#define  RCC_CFGR_SWS_HSI                    ((uint32_t)0x00000000)        /*!< HSI oscillator used as system clock */
-#define  RCC_CFGR_SWS_HSE                    ((uint32_t)0x00000004)        /*!< HSE oscillator used as system clock */
-#define  RCC_CFGR_SWS_PLL                    ((uint32_t)0x00000008)        /*!< PLL used as system clock */
-
-/*!< HPRE configuration */
-#define  RCC_CFGR_HPRE                       ((uint32_t)0x000000F0)        /*!< HPRE[3:0] bits (AHB prescaler) */
-#define  RCC_CFGR_HPRE_0                     ((uint32_t)0x00000010)        /*!< Bit 0 */
-#define  RCC_CFGR_HPRE_1                     ((uint32_t)0x00000020)        /*!< Bit 1 */
-#define  RCC_CFGR_HPRE_2                     ((uint32_t)0x00000040)        /*!< Bit 2 */
-#define  RCC_CFGR_HPRE_3                     ((uint32_t)0x00000080)        /*!< Bit 3 */
-
-#define  RCC_CFGR_HPRE_DIV1                  ((uint32_t)0x00000000)        /*!< SYSCLK not divided */
-#define  RCC_CFGR_HPRE_DIV2                  ((uint32_t)0x00000080)        /*!< SYSCLK divided by 2 */
-#define  RCC_CFGR_HPRE_DIV4                  ((uint32_t)0x00000090)        /*!< SYSCLK divided by 4 */
-#define  RCC_CFGR_HPRE_DIV8                  ((uint32_t)0x000000A0)        /*!< SYSCLK divided by 8 */
-#define  RCC_CFGR_HPRE_DIV16                 ((uint32_t)0x000000B0)        /*!< SYSCLK divided by 16 */
-#define  RCC_CFGR_HPRE_DIV64                 ((uint32_t)0x000000C0)        /*!< SYSCLK divided by 64 */
-#define  RCC_CFGR_HPRE_DIV128                ((uint32_t)0x000000D0)        /*!< SYSCLK divided by 128 */
-#define  RCC_CFGR_HPRE_DIV256                ((uint32_t)0x000000E0)        /*!< SYSCLK divided by 256 */
-#define  RCC_CFGR_HPRE_DIV512                ((uint32_t)0x000000F0)        /*!< SYSCLK divided by 512 */
-
-/*!< PPRE1 configuration */
-#define  RCC_CFGR_PPRE1                      ((uint32_t)0x00001C00)        /*!< PRE1[2:0] bits (APB1 prescaler) */
-#define  RCC_CFGR_PPRE1_0                    ((uint32_t)0x00000400)        /*!< Bit 0 */
-#define  RCC_CFGR_PPRE1_1                    ((uint32_t)0x00000800)        /*!< Bit 1 */
-#define  RCC_CFGR_PPRE1_2                    ((uint32_t)0x00001000)        /*!< Bit 2 */
-
-#define  RCC_CFGR_PPRE1_DIV1                 ((uint32_t)0x00000000)        /*!< HCLK not divided */
-#define  RCC_CFGR_PPRE1_DIV2                 ((uint32_t)0x00001000)        /*!< HCLK divided by 2 */
-#define  RCC_CFGR_PPRE1_DIV4                 ((uint32_t)0x00001400)        /*!< HCLK divided by 4 */
-#define  RCC_CFGR_PPRE1_DIV8                 ((uint32_t)0x00001800)        /*!< HCLK divided by 8 */
-#define  RCC_CFGR_PPRE1_DIV16                ((uint32_t)0x00001C00)        /*!< HCLK divided by 16 */
-
-/*!< PPRE2 configuration */
-#define  RCC_CFGR_PPRE2                      ((uint32_t)0x0000E000)        /*!< PRE2[2:0] bits (APB2 prescaler) */
-#define  RCC_CFGR_PPRE2_0                    ((uint32_t)0x00002000)        /*!< Bit 0 */
-#define  RCC_CFGR_PPRE2_1                    ((uint32_t)0x00004000)        /*!< Bit 1 */
-#define  RCC_CFGR_PPRE2_2                    ((uint32_t)0x00008000)        /*!< Bit 2 */
-
-#define  RCC_CFGR_PPRE2_DIV1                 ((uint32_t)0x00000000)        /*!< HCLK not divided */
-#define  RCC_CFGR_PPRE2_DIV2                 ((uint32_t)0x00008000)        /*!< HCLK divided by 2 */
-#define  RCC_CFGR_PPRE2_DIV4                 ((uint32_t)0x0000A000)        /*!< HCLK divided by 4 */
-#define  RCC_CFGR_PPRE2_DIV8                 ((uint32_t)0x0000C000)        /*!< HCLK divided by 8 */
-#define  RCC_CFGR_PPRE2_DIV16                ((uint32_t)0x0000E00)         /*!< HCLK divided by 16 */
-
-/*!< RTCPRE configuration */
-#define  RCC_CFGR_RTCPRE                     ((uint32_t)0x001F0000)
-#define  RCC_CFGR_RTCPRE_0                   ((uint32_t)0x00010000)
-#define  RCC_CFGR_RTCPRE_1                   ((uint32_t)0x00020000)
-#define  RCC_CFGR_RTCPRE_2                   ((uint32_t)0x00040000)
-#define  RCC_CFGR_RTCPRE_3                   ((uint32_t)0x00080000)
-#define  RCC_CFGR_RTCPRE_4                   ((uint32_t)0x00100000)
-
-/*!< MCO1 configuration */
-#define  RCC_CFGR_MCO1                       ((uint32_t)0x00600000)
-#define  RCC_CFGR_MCO1_0                     ((uint32_t)0x00200000)
-#define  RCC_CFGR_MCO1_1                     ((uint32_t)0x00400000)
-
-#define  RCC_CFGR_I2SSRC                     ((uint32_t)0x00800000)
-
-#define  RCC_CFGR_MCO1PRE                    ((uint32_t)0x07000000)
-#define  RCC_CFGR_MCO1PRE_0                  ((uint32_t)0x01000000)
-#define  RCC_CFGR_MCO1PRE_1                  ((uint32_t)0x02000000)
-#define  RCC_CFGR_MCO1PRE_2                  ((uint32_t)0x04000000)
-
-#define  RCC_CFGR_MCO2PRE                    ((uint32_t)0x38000000)
-#define  RCC_CFGR_MCO2PRE_0                  ((uint32_t)0x08000000)
-#define  RCC_CFGR_MCO2PRE_1                  ((uint32_t)0x10000000)
-#define  RCC_CFGR_MCO2PRE_2                  ((uint32_t)0x20000000)
-
-#define  RCC_CFGR_MCO2                       ((uint32_t)0xC0000000)
-#define  RCC_CFGR_MCO2_0                     ((uint32_t)0x40000000)
-#define  RCC_CFGR_MCO2_1                     ((uint32_t)0x80000000)
-
-/********************  Bit definition for RCC_CIR register  *******************/
-#define  RCC_CIR_LSIRDYF                     ((uint32_t)0x00000001)
-#define  RCC_CIR_LSERDYF                     ((uint32_t)0x00000002)
-#define  RCC_CIR_HSIRDYF                     ((uint32_t)0x00000004)
-#define  RCC_CIR_HSERDYF                     ((uint32_t)0x00000008)
-#define  RCC_CIR_PLLRDYF                     ((uint32_t)0x00000010)
-#define  RCC_CIR_PLLI2SRDYF                  ((uint32_t)0x00000020)
-#define  RCC_CIR_CSSF                        ((uint32_t)0x00000080)
-#define  RCC_CIR_LSIRDYIE                    ((uint32_t)0x00000100)
-#define  RCC_CIR_LSERDYIE                    ((uint32_t)0x00000200)
-#define  RCC_CIR_HSIRDYIE                    ((uint32_t)0x00000400)
-#define  RCC_CIR_HSERDYIE                    ((uint32_t)0x00000800)
-#define  RCC_CIR_PLLRDYIE                    ((uint32_t)0x00001000)
-#define  RCC_CIR_PLLI2SRDYIE                 ((uint32_t)0x00002000)
-#define  RCC_CIR_LSIRDYC                     ((uint32_t)0x00010000)
-#define  RCC_CIR_LSERDYC                     ((uint32_t)0x00020000)
-#define  RCC_CIR_HSIRDYC                     ((uint32_t)0x00040000)
-#define  RCC_CIR_HSERDYC                     ((uint32_t)0x00080000)
-#define  RCC_CIR_PLLRDYC                     ((uint32_t)0x00100000)
-#define  RCC_CIR_PLLI2SRDYC                  ((uint32_t)0x00200000)
-#define  RCC_CIR_CSSC                        ((uint32_t)0x00800000)
-
-/********************  Bit definition for RCC_AHB1RSTR register  **************/
-#define  RCC_AHB1RSTR_GPIOARST               ((uint32_t)0x00000001)
-#define  RCC_AHB1RSTR_GPIOBRST               ((uint32_t)0x00000002)
-#define  RCC_AHB1RSTR_GPIOCRST               ((uint32_t)0x00000004)
-#define  RCC_AHB1RSTR_GPIODRST               ((uint32_t)0x00000008)
-#define  RCC_AHB1RSTR_GPIOERST               ((uint32_t)0x00000010)
-#define  RCC_AHB1RSTR_GPIOFRST               ((uint32_t)0x00000020)
-#define  RCC_AHB1RSTR_GPIOGRST               ((uint32_t)0x00000040)
-#define  RCC_AHB1RSTR_GPIOHRST               ((uint32_t)0x00000080)
-#define  RCC_AHB1RSTR_GPIOIRST               ((uint32_t)0x00000100)
-#define  RCC_AHB1RSTR_CRCRST                 ((uint32_t)0x00001000)
-#define  RCC_AHB1RSTR_DMA1RST                ((uint32_t)0x00200000)
-#define  RCC_AHB1RSTR_DMA2RST                ((uint32_t)0x00400000)
-#define  RCC_AHB1RSTR_ETHMACRST              ((uint32_t)0x02000000)
-#define  RCC_AHB1RSTR_OTGHRST                ((uint32_t)0x10000000)
-
-/********************  Bit definition for RCC_AHB2RSTR register  **************/
-#define  RCC_AHB2RSTR_DCMIRST                ((uint32_t)0x00000001)
-#define  RCC_AHB2RSTR_CRYPRST                ((uint32_t)0x00000010)
-#define  RCC_AHB2RSTR_HSAHRST                ((uint32_t)0x00000020)
-#define  RCC_AHB2RSTR_RNGRST                 ((uint32_t)0x00000040)
-#define  RCC_AHB2RSTR_OTGFSRST               ((uint32_t)0x00000080)
-
-/********************  Bit definition for RCC_AHB3RSTR register  **************/
-#define  RCC_AHB3RSTR_FSMCRST                ((uint32_t)0x00000001)
-
-/********************  Bit definition for RCC_APB1RSTR register  **************/
-#define  RCC_APB1RSTR_TIM2RST                ((uint32_t)0x00000001)
-#define  RCC_APB1RSTR_TIM3RST                ((uint32_t)0x00000002)
-#define  RCC_APB1RSTR_TIM4RST                ((uint32_t)0x00000004)
-#define  RCC_APB1RSTR_TIM5RST                ((uint32_t)0x00000008)
-#define  RCC_APB1RSTR_TIM6RST                ((uint32_t)0x00000010)
-#define  RCC_APB1RSTR_TIM7RST                ((uint32_t)0x00000020)
-#define  RCC_APB1RSTR_TIM12RST               ((uint32_t)0x00000040)
-#define  RCC_APB1RSTR_TIM13RST               ((uint32_t)0x00000080)
-#define  RCC_APB1RSTR_TIM14RST               ((uint32_t)0x00000100)
-#define  RCC_APB1RSTR_WWDGEN                 ((uint32_t)0x00000800)
-#define  RCC_APB1RSTR_SPI2RST                ((uint32_t)0x00008000)
-#define  RCC_APB1RSTR_SPI3RST                ((uint32_t)0x00010000)
-#define  RCC_APB1RSTR_USART2RST              ((uint32_t)0x00020000)
-#define  RCC_APB1RSTR_USART3RST              ((uint32_t)0x00040000)
-#define  RCC_APB1RSTR_UART4RST               ((uint32_t)0x00080000)
-#define  RCC_APB1RSTR_UART5RST               ((uint32_t)0x00100000)
-#define  RCC_APB1RSTR_I2C1RST                ((uint32_t)0x00200000)
-#define  RCC_APB1RSTR_I2C2RST                ((uint32_t)0x00400000)
-#define  RCC_APB1RSTR_I2C3RST                ((uint32_t)0x00800000)
-#define  RCC_APB1RSTR_CAN1RST                ((uint32_t)0x02000000)
-#define  RCC_APB1RSTR_CAN2RST                ((uint32_t)0x04000000)
-#define  RCC_APB1RSTR_PWRRST                 ((uint32_t)0x10000000)
-#define  RCC_APB1RSTR_DACRST                 ((uint32_t)0x20000000)
-
-/********************  Bit definition for RCC_APB2RSTR register  **************/
-#define  RCC_APB2RSTR_TIM1RST                ((uint32_t)0x00000001)
-#define  RCC_APB2RSTR_TIM8RST                ((uint32_t)0x00000002)
-#define  RCC_APB2RSTR_USART1RST              ((uint32_t)0x00000010)
-#define  RCC_APB2RSTR_USART6RST              ((uint32_t)0x00000020)
-#define  RCC_APB2RSTR_ADCRST                 ((uint32_t)0x00000100)
-#define  RCC_APB2RSTR_SDIORST                ((uint32_t)0x00000800)
-#define  RCC_APB2RSTR_SPI1RST                ((uint32_t)0x00001000)
-#define  RCC_APB2RSTR_SYSCFGRST              ((uint32_t)0x00004000)
-#define  RCC_APB2RSTR_TIM9RST                ((uint32_t)0x00010000)
-#define  RCC_APB2RSTR_TIM10RST               ((uint32_t)0x00020000)
-#define  RCC_APB2RSTR_TIM11RST               ((uint32_t)0x00040000)
-
-/********************  Bit definition for RCC_AHB1ENR register  ***************/
-#define  RCC_AHB1ENR_GPIOAEN                 ((uint32_t)0x00000001)
-#define  RCC_AHB1ENR_GPIOBEN                 ((uint32_t)0x00000002)
-#define  RCC_AHB1ENR_GPIOCEN                 ((uint32_t)0x00000004)
-#define  RCC_AHB1ENR_GPIODEN                 ((uint32_t)0x00000008)
-#define  RCC_AHB1ENR_GPIOEEN                 ((uint32_t)0x00000010)
-#define  RCC_AHB1ENR_GPIOFEN                 ((uint32_t)0x00000020)
-#define  RCC_AHB1ENR_GPIOGEN                 ((uint32_t)0x00000040)
-#define  RCC_AHB1ENR_GPIOHEN                 ((uint32_t)0x00000080)
-#define  RCC_AHB1ENR_GPIOIEN                 ((uint32_t)0x00000100)
-#define  RCC_AHB1ENR_CRCEN                   ((uint32_t)0x00001000)
-#define  RCC_AHB1ENR_BKPSRAMEN               ((uint32_t)0x00040000)
-#define  RCC_AHB1ENR_DMA1EN                  ((uint32_t)0x00200000)
-#define  RCC_AHB1ENR_DMA2EN                  ((uint32_t)0x00400000)
-#define  RCC_AHB1ENR_ETHMACEN                ((uint32_t)0x02000000)
-#define  RCC_AHB1ENR_ETHMACTXEN              ((uint32_t)0x04000000)
-#define  RCC_AHB1ENR_ETHMACRXEN              ((uint32_t)0x08000000)
-#define  RCC_AHB1ENR_ETHMACPTPEN             ((uint32_t)0x10000000)
-#define  RCC_AHB1ENR_OTGHSEN                 ((uint32_t)0x20000000)
-#define  RCC_AHB1ENR_OTGHSULPIEN             ((uint32_t)0x40000000)
-
-/********************  Bit definition for RCC_AHB2ENR register  ***************/
-#define  RCC_AHB2ENR_DCMIEN                  ((uint32_t)0x00000001)
-#define  RCC_AHB2ENR_CRYPEN                  ((uint32_t)0x00000010)
-#define  RCC_AHB2ENR_HASHEN                  ((uint32_t)0x00000020)
-#define  RCC_AHB2ENR_RNGEN                   ((uint32_t)0x00000040)
-#define  RCC_AHB2ENR_OTGFSEN                 ((uint32_t)0x00000080)
-
-/********************  Bit definition for RCC_AHB3ENR register  ***************/
-#define  RCC_AHB3ENR_FSMCEN                  ((uint32_t)0x00000001)
-
-/********************  Bit definition for RCC_APB1ENR register  ***************/
-#define  RCC_APB1ENR_TIM2EN                  ((uint32_t)0x00000001)
-#define  RCC_APB1ENR_TIM3EN                  ((uint32_t)0x00000002)
-#define  RCC_APB1ENR_TIM4EN                  ((uint32_t)0x00000004)
-#define  RCC_APB1ENR_TIM5EN                  ((uint32_t)0x00000008)
-#define  RCC_APB1ENR_TIM6EN                  ((uint32_t)0x00000010)
-#define  RCC_APB1ENR_TIM7EN                  ((uint32_t)0x00000020)
-#define  RCC_APB1ENR_TIM12EN                 ((uint32_t)0x00000040)
-#define  RCC_APB1ENR_TIM13EN                 ((uint32_t)0x00000080)
-#define  RCC_APB1ENR_TIM14EN                 ((uint32_t)0x00000100)
-#define  RCC_APB1ENR_WWDGEN                  ((uint32_t)0x00000800)
-#define  RCC_APB1ENR_SPI2EN                  ((uint32_t)0x00004000)
-#define  RCC_APB1ENR_SPI3EN                  ((uint32_t)0x00008000)
-#define  RCC_APB1ENR_USART2EN                ((uint32_t)0x00020000)
-#define  RCC_APB1ENR_USART3EN                ((uint32_t)0x00040000)
-#define  RCC_APB1ENR_UART4EN                 ((uint32_t)0x00080000)
-#define  RCC_APB1ENR_UART5EN                 ((uint32_t)0x00100000)
-#define  RCC_APB1ENR_I2C1EN                  ((uint32_t)0x00200000)
-#define  RCC_APB1ENR_I2C2EN                  ((uint32_t)0x00400000)
-#define  RCC_APB1ENR_I2C3EN                  ((uint32_t)0x00800000)
-#define  RCC_APB1ENR_CAN1EN                  ((uint32_t)0x02000000)
-#define  RCC_APB1ENR_CAN2EN                  ((uint32_t)0x04000000)
-#define  RCC_APB1ENR_PWREN                   ((uint32_t)0x10000000)
-#define  RCC_APB1ENR_DACEN                   ((uint32_t)0x20000000)
-
-/********************  Bit definition for RCC_APB2ENR register  ***************/
-#define  RCC_APB2ENR_TIM1EN                  ((uint32_t)0x00000001)
-#define  RCC_APB2ENR_TIM8EN                  ((uint32_t)0x00000002)
-#define  RCC_APB2ENR_USART1EN                ((uint32_t)0x00000010)
-#define  RCC_APB2ENR_USART6EN                ((uint32_t)0x00000020)
-#define  RCC_APB2ENR_ADC1EN                  ((uint32_t)0x00000100)
-#define  RCC_APB2ENR_ADC2EN                  ((uint32_t)0x00000200)
-#define  RCC_APB2ENR_ADC3EN                  ((uint32_t)0x00000400)
-#define  RCC_APB2ENR_SDIOEN                  ((uint32_t)0x00000800)
-#define  RCC_APB2ENR_SPI1EN                  ((uint32_t)0x00001000)
-#define  RCC_APB2ENR_SYSCFGEN                ((uint32_t)0x00004000)
-#define  RCC_APB2ENR_TIM11EN                 ((uint32_t)0x00040000)
-#define  RCC_APB2ENR_TIM10EN                 ((uint32_t)0x00020000)
-#define  RCC_APB2ENR_TIM9EN                  ((uint32_t)0x00010000)
-
-/********************  Bit definition for RCC_AHB1LPENR register  *************/
-#define  RCC_AHB1LPENR_GPIOALPEN             ((uint32_t)0x00000001)
-#define  RCC_AHB1LPENR_GPIOBLPEN             ((uint32_t)0x00000002)
-#define  RCC_AHB1LPENR_GPIOCLPEN             ((uint32_t)0x00000004)
-#define  RCC_AHB1LPENR_GPIODLPEN             ((uint32_t)0x00000008)
-#define  RCC_AHB1LPENR_GPIOELPEN             ((uint32_t)0x00000010)
-#define  RCC_AHB1LPENR_GPIOFLPEN             ((uint32_t)0x00000020)
-#define  RCC_AHB1LPENR_GPIOGLPEN             ((uint32_t)0x00000040)
-#define  RCC_AHB1LPENR_GPIOHLPEN             ((uint32_t)0x00000080)
-#define  RCC_AHB1LPENR_GPIOILPEN             ((uint32_t)0x00000100)
-#define  RCC_AHB1LPENR_CRCLPEN               ((uint32_t)0x00001000)
-#define  RCC_AHB1LPENR_FLITFLPEN             ((uint32_t)0x00008000)
-#define  RCC_AHB1LPENR_SRAM1LPEN             ((uint32_t)0x00010000)
-#define  RCC_AHB1LPENR_SRAM2LPEN             ((uint32_t)0x00020000)
-#define  RCC_AHB1LPENR_BKPSRAMLPEN           ((uint32_t)0x00040000)
-#define  RCC_AHB1LPENR_DMA1LPEN              ((uint32_t)0x00200000)
-#define  RCC_AHB1LPENR_DMA2LPEN              ((uint32_t)0x00400000)
-#define  RCC_AHB1LPENR_ETHMACLPEN            ((uint32_t)0x02000000)
-#define  RCC_AHB1LPENR_ETHMACTXLPEN          ((uint32_t)0x04000000)
-#define  RCC_AHB1LPENR_ETHMACRXLPEN          ((uint32_t)0x08000000)
-#define  RCC_AHB1LPENR_ETHMACPTPLPEN         ((uint32_t)0x10000000)
-#define  RCC_AHB1LPENR_OTGHSLPEN             ((uint32_t)0x20000000)
-#define  RCC_AHB1LPENR_OTGHSULPILPEN         ((uint32_t)0x40000000)
-
-/********************  Bit definition for RCC_AHB2LPENR register  *************/
-#define  RCC_AHB2LPENR_DCMILPEN              ((uint32_t)0x00000001)
-#define  RCC_AHB2LPENR_CRYPLPEN              ((uint32_t)0x00000010)
-#define  RCC_AHB2LPENR_HASHLPEN              ((uint32_t)0x00000020)
-#define  RCC_AHB2LPENR_RNGLPEN               ((uint32_t)0x00000040)
-#define  RCC_AHB2LPENR_OTGFSLPEN             ((uint32_t)0x00000080)
-
-/********************  Bit definition for RCC_AHB3LPENR register  *************/
-#define  RCC_AHB3LPENR_FSMCLPEN              ((uint32_t)0x00000001)
-
-/********************  Bit definition for RCC_APB1LPENR register  *************/
-#define  RCC_APB1LPENR_TIM2LPEN              ((uint32_t)0x00000001)
-#define  RCC_APB1LPENR_TIM3LPEN              ((uint32_t)0x00000002)
-#define  RCC_APB1LPENR_TIM4LPEN              ((uint32_t)0x00000004)
-#define  RCC_APB1LPENR_TIM5LPEN              ((uint32_t)0x00000008)
-#define  RCC_APB1LPENR_TIM6LPEN              ((uint32_t)0x00000010)
-#define  RCC_APB1LPENR_TIM7LPEN              ((uint32_t)0x00000020)
-#define  RCC_APB1LPENR_TIM12LPEN             ((uint32_t)0x00000040)
-#define  RCC_APB1LPENR_TIM13LPEN             ((uint32_t)0x00000080)
-#define  RCC_APB1LPENR_TIM14LPEN             ((uint32_t)0x00000100)
-#define  RCC_APB1LPENR_WWDGLPEN              ((uint32_t)0x00000800)
-#define  RCC_APB1LPENR_SPI2LPEN              ((uint32_t)0x00004000)
-#define  RCC_APB1LPENR_SPI3LPEN              ((uint32_t)0x00008000)
-#define  RCC_APB1LPENR_USART2LPEN            ((uint32_t)0x00020000)
-#define  RCC_APB1LPENR_USART3LPEN            ((uint32_t)0x00040000)
-#define  RCC_APB1LPENR_UART4LPEN             ((uint32_t)0x00080000)
-#define  RCC_APB1LPENR_UART5LPEN             ((uint32_t)0x00100000)
-#define  RCC_APB1LPENR_I2C1LPEN              ((uint32_t)0x00200000)
-#define  RCC_APB1LPENR_I2C2LPEN              ((uint32_t)0x00400000)
-#define  RCC_APB1LPENR_I2C3LPEN              ((uint32_t)0x00800000)
-#define  RCC_APB1LPENR_CAN1LPEN              ((uint32_t)0x02000000)
-#define  RCC_APB1LPENR_CAN2LPEN              ((uint32_t)0x04000000)
-#define  RCC_APB1LPENR_PWRLPEN               ((uint32_t)0x10000000)
-#define  RCC_APB1LPENR_DACLPEN               ((uint32_t)0x20000000)
-
-/********************  Bit definition for RCC_APB2LPENR register  *************/
-#define  RCC_APB2LPENR_TIM1LPEN              ((uint32_t)0x00000001)
-#define  RCC_APB2LPENR_TIM8LPEN              ((uint32_t)0x00000002)
-#define  RCC_APB2LPENR_USART1LPEN            ((uint32_t)0x00000010)
-#define  RCC_APB2LPENR_USART6LPEN            ((uint32_t)0x00000020)
-#define  RCC_APB2LPENR_ADC1LPEN              ((uint32_t)0x00000100)
-#define  RCC_APB2LPENR_ADC2PEN               ((uint32_t)0x00000200)
-#define  RCC_APB2LPENR_ADC3LPEN              ((uint32_t)0x00000400)
-#define  RCC_APB2LPENR_SDIOLPEN              ((uint32_t)0x00000800)
-#define  RCC_APB2LPENR_SPI1LPEN              ((uint32_t)0x00001000)
-#define  RCC_APB2LPENR_SYSCFGLPEN            ((uint32_t)0x00004000)
-#define  RCC_APB2LPENR_TIM9LPEN              ((uint32_t)0x00010000)
-#define  RCC_APB2LPENR_TIM10LPEN             ((uint32_t)0x00020000)
-#define  RCC_APB2LPENR_TIM11LPEN             ((uint32_t)0x00040000)
-
-/********************  Bit definition for RCC_BDCR register  ******************/
-#define  RCC_BDCR_LSEON                      ((uint32_t)0x00000001)
-#define  RCC_BDCR_LSERDY                     ((uint32_t)0x00000002)
-#define  RCC_BDCR_LSEBYP                     ((uint32_t)0x00000004)
-
-#define  RCC_BDCR_RTCSEL                    ((uint32_t)0x00000300)
-#define  RCC_BDCR_RTCSEL_0                  ((uint32_t)0x00000100)
-#define  RCC_BDCR_RTCSEL_1                  ((uint32_t)0x00000200)
-
-#define  RCC_BDCR_RTCEN                      ((uint32_t)0x00008000)
-#define  RCC_BDCR_BDRST                      ((uint32_t)0x00010000)
-
-/********************  Bit definition for RCC_CSR register  *******************/
-#define  RCC_CSR_LSION                       ((uint32_t)0x00000001)
-#define  RCC_CSR_LSIRDY                      ((uint32_t)0x00000002)
-#define  RCC_CSR_RMVF                        ((uint32_t)0x01000000)
-#define  RCC_CSR_BORRSTF                     ((uint32_t)0x02000000)
-#define  RCC_CSR_PADRSTF                     ((uint32_t)0x04000000)
-#define  RCC_CSR_PORRSTF                     ((uint32_t)0x08000000)
-#define  RCC_CSR_SFTRSTF                     ((uint32_t)0x10000000)
-#define  RCC_CSR_WDGRSTF                     ((uint32_t)0x20000000)
-#define  RCC_CSR_WWDGRSTF                    ((uint32_t)0x40000000)
-#define  RCC_CSR_LPWRRSTF                    ((uint32_t)0x80000000)
-
-/********************  Bit definition for RCC_SSCGR register  *****************/
-#define  RCC_SSCGR_MODPER                    ((uint32_t)0x00001FFF)
-#define  RCC_SSCGR_INCSTEP                   ((uint32_t)0x0FFFE000)
-#define  RCC_SSCGR_SPREADSEL                 ((uint32_t)0x40000000)
-#define  RCC_SSCGR_SSCGEN                    ((uint32_t)0x80000000)
-
-/********************  Bit definition for RCC_PLLI2SCFGR register  ************/
-#define  RCC_PLLI2SCFGR_PLLI2SN              ((uint32_t)0x00007FC0)
-#define  RCC_PLLI2SCFGR_PLLI2SR              ((uint32_t)0x70000000)
-
-/******************************************************************************/
-/*                                                                            */
-/*                                    RNG                                     */
-/*                                                                            */
-/******************************************************************************/
-/********************  Bits definition for RNG_CR register  *******************/
-#define RNG_CR_RNGEN                         ((uint32_t)0x00000004)
-#define RNG_CR_IE                            ((uint32_t)0x00000008)
-
-/********************  Bits definition for RNG_SR register  *******************/
-#define RNG_SR_DRDY                          ((uint32_t)0x00000001)
-#define RNG_SR_CECS                          ((uint32_t)0x00000002)
-#define RNG_SR_SECS                          ((uint32_t)0x00000004)
-#define RNG_SR_CEIS                          ((uint32_t)0x00000020)
-#define RNG_SR_SEIS                          ((uint32_t)0x00000040)
-
-/******************************************************************************/
-/*                                                                            */
-/*                           Real-Time Clock (RTC)                            */
-/*                                                                            */
-/******************************************************************************/
-/********************  Bits definition for RTC_TR register  *******************/
-#define RTC_TR_PM                            ((uint32_t)0x00400000)
-#define RTC_TR_HT                            ((uint32_t)0x00300000)
-#define RTC_TR_HT_0                          ((uint32_t)0x00100000)
-#define RTC_TR_HT_1                          ((uint32_t)0x00200000)
-#define RTC_TR_HU                            ((uint32_t)0x000F0000)
-#define RTC_TR_HU_0                          ((uint32_t)0x00010000)
-#define RTC_TR_HU_1                          ((uint32_t)0x00020000)
-#define RTC_TR_HU_2                          ((uint32_t)0x00040000)
-#define RTC_TR_HU_3                          ((uint32_t)0x00080000)
-#define RTC_TR_MNT                           ((uint32_t)0x00007000)
-#define RTC_TR_MNT_0                         ((uint32_t)0x00001000)
-#define RTC_TR_MNT_1                         ((uint32_t)0x00002000)
-#define RTC_TR_MNT_2                         ((uint32_t)0x00004000)
-#define RTC_TR_MNU                           ((uint32_t)0x00000F00)
-#define RTC_TR_MNU_0                         ((uint32_t)0x00000100)
-#define RTC_TR_MNU_1                         ((uint32_t)0x00000200)
-#define RTC_TR_MNU_2                         ((uint32_t)0x00000400)
-#define RTC_TR_MNU_3                         ((uint32_t)0x00000800)
-#define RTC_TR_ST                            ((uint32_t)0x00000070)
-#define RTC_TR_ST_0                          ((uint32_t)0x00000010)
-#define RTC_TR_ST_1                          ((uint32_t)0x00000020)
-#define RTC_TR_ST_2                          ((uint32_t)0x00000040)
-#define RTC_TR_SU                            ((uint32_t)0x0000000F)
-#define RTC_TR_SU_0                          ((uint32_t)0x00000001)
-#define RTC_TR_SU_1                          ((uint32_t)0x00000002)
-#define RTC_TR_SU_2                          ((uint32_t)0x00000004)
-#define RTC_TR_SU_3                          ((uint32_t)0x00000008)
-
-/********************  Bits definition for RTC_DR register  *******************/
-#define RTC_DR_YT                            ((uint32_t)0x00F00000)
-#define RTC_DR_YT_0                          ((uint32_t)0x00100000)
-#define RTC_DR_YT_1                          ((uint32_t)0x00200000)
-#define RTC_DR_YT_2                          ((uint32_t)0x00400000)
-#define RTC_DR_YT_3                          ((uint32_t)0x00800000)
-#define RTC_DR_YU                            ((uint32_t)0x000F0000)
-#define RTC_DR_YU_0                          ((uint32_t)0x00010000)
-#define RTC_DR_YU_1                          ((uint32_t)0x00020000)
-#define RTC_DR_YU_2                          ((uint32_t)0x00040000)
-#define RTC_DR_YU_3                          ((uint32_t)0x00080000)
-#define RTC_DR_WDU                           ((uint32_t)0x0000E000)
-#define RTC_DR_WDU_0                         ((uint32_t)0x00002000)
-#define RTC_DR_WDU_1                         ((uint32_t)0x00004000)
-#define RTC_DR_WDU_2                         ((uint32_t)0x00008000)
-#define RTC_DR_MT                            ((uint32_t)0x00001000)
-#define RTC_DR_MU                            ((uint32_t)0x00000F00)
-#define RTC_DR_MU_0                          ((uint32_t)0x00000100)
-#define RTC_DR_MU_1                          ((uint32_t)0x00000200)
-#define RTC_DR_MU_2                          ((uint32_t)0x00000400)
-#define RTC_DR_MU_3                          ((uint32_t)0x00000800)
-#define RTC_DR_DT                            ((uint32_t)0x00000030)
-#define RTC_DR_DT_0                          ((uint32_t)0x00000010)
-#define RTC_DR_DT_1                          ((uint32_t)0x00000020)
-#define RTC_DR_DU                            ((uint32_t)0x0000000F)
-#define RTC_DR_DU_0                          ((uint32_t)0x00000001)
-#define RTC_DR_DU_1                          ((uint32_t)0x00000002)
-#define RTC_DR_DU_2                          ((uint32_t)0x00000004)
-#define RTC_DR_DU_3                          ((uint32_t)0x00000008)
-
-/********************  Bits definition for RTC_CR register  *******************/
-#define RTC_CR_COE                           ((uint32_t)0x00800000)
-#define RTC_CR_OSEL                          ((uint32_t)0x00600000)
-#define RTC_CR_OSEL_0                        ((uint32_t)0x00200000)
-#define RTC_CR_OSEL_1                        ((uint32_t)0x00400000)
-#define RTC_CR_POL                           ((uint32_t)0x00100000)
-#define RTC_CR_BCK                           ((uint32_t)0x00040000)
-#define RTC_CR_SUB1H                         ((uint32_t)0x00020000)
-#define RTC_CR_ADD1H                         ((uint32_t)0x00010000)
-#define RTC_CR_TSIE                          ((uint32_t)0x00008000)
-#define RTC_CR_WUTIE                         ((uint32_t)0x00004000)
-#define RTC_CR_ALRBIE                        ((uint32_t)0x00002000)
-#define RTC_CR_ALRAIE                        ((uint32_t)0x00001000)
-#define RTC_CR_TSE                           ((uint32_t)0x00000800)
-#define RTC_CR_WUTE                          ((uint32_t)0x00000400)
-#define RTC_CR_ALRBE                         ((uint32_t)0x00000200)
-#define RTC_CR_ALRAE                         ((uint32_t)0x00000100)
-#define RTC_CR_DCE                           ((uint32_t)0x00000080)
-#define RTC_CR_FMT                           ((uint32_t)0x00000040)
-#define RTC_CR_REFCKON                       ((uint32_t)0x00000010)
-#define RTC_CR_TSEDGE                        ((uint32_t)0x00000008)
-#define RTC_CR_WUCKSEL                       ((uint32_t)0x00000007)
-#define RTC_CR_WUCKSEL_0                     ((uint32_t)0x00000001)
-#define RTC_CR_WUCKSEL_1                     ((uint32_t)0x00000002)
-#define RTC_CR_WUCKSEL_2                     ((uint32_t)0x00000004)
-
-/********************  Bits definition for RTC_ISR register  ******************/
-#define RTC_ISR_TAMP1F                       ((uint32_t)0x00002000)
-#define RTC_ISR_TSOVF                        ((uint32_t)0x00001000)
-#define RTC_ISR_TSF                          ((uint32_t)0x00000800)
-#define RTC_ISR_WUTF                         ((uint32_t)0x00000400)
-#define RTC_ISR_ALRBF                        ((uint32_t)0x00000200)
-#define RTC_ISR_ALRAF                        ((uint32_t)0x00000100)
-#define RTC_ISR_INIT                         ((uint32_t)0x00000080)
-#define RTC_ISR_INITF                        ((uint32_t)0x00000040)
-#define RTC_ISR_RSF                          ((uint32_t)0x00000020)
-#define RTC_ISR_INITS                        ((uint32_t)0x00000010)
-#define RTC_ISR_WUTWF                        ((uint32_t)0x00000004)
-#define RTC_ISR_ALRBWF                       ((uint32_t)0x00000002)
-#define RTC_ISR_ALRAWF                       ((uint32_t)0x00000001)
-
-/********************  Bits definition for RTC_PRER register  *****************/
-#define RTC_PRER_PREDIV_A                    ((uint32_t)0x007F0000)
-#define RTC_PRER_PREDIV_S                    ((uint32_t)0x00001FFF)
-
-/********************  Bits definition for RTC_WUTR register  *****************/
-#define RTC_WUTR_WUT                         ((uint32_t)0x0000FFFF)
-
-/********************  Bits definition for RTC_CALIBR register  ***************/
-#define RTC_CALIBR_DCS                       ((uint32_t)0x00000080)
-#define RTC_CALIBR_DC                        ((uint32_t)0x0000001F)
-
-/********************  Bits definition for RTC_ALRMAR register  ***************/
-#define RTC_ALRMAR_MSK4                      ((uint32_t)0x80000000)
-#define RTC_ALRMAR_WDSEL                     ((uint32_t)0x40000000)
-#define RTC_ALRMAR_DT                        ((uint32_t)0x30000000)
-#define RTC_ALRMAR_DT_0                      ((uint32_t)0x10000000)
-#define RTC_ALRMAR_DT_1                      ((uint32_t)0x20000000)
-#define RTC_ALRMAR_DU                        ((uint32_t)0x0F000000)
-#define RTC_ALRMAR_DU_0                      ((uint32_t)0x01000000)
-#define RTC_ALRMAR_DU_1                      ((uint32_t)0x02000000)
-#define RTC_ALRMAR_DU_2                      ((uint32_t)0x04000000)
-#define RTC_ALRMAR_DU_3                      ((uint32_t)0x08000000)
-#define RTC_ALRMAR_MSK3                      ((uint32_t)0x00800000)
-#define RTC_ALRMAR_PM                        ((uint32_t)0x00400000)
-#define RTC_ALRMAR_HT                        ((uint32_t)0x00300000)
-#define RTC_ALRMAR_HT_0                      ((uint32_t)0x00100000)
-#define RTC_ALRMAR_HT_1                      ((uint32_t)0x00200000)
-#define RTC_ALRMAR_HU                        ((uint32_t)0x000F0000)
-#define RTC_ALRMAR_HU_0                      ((uint32_t)0x00010000)
-#define RTC_ALRMAR_HU_1                      ((uint32_t)0x00020000)
-#define RTC_ALRMAR_HU_2                      ((uint32_t)0x00040000)
-#define RTC_ALRMAR_HU_3                      ((uint32_t)0x00080000)
-#define RTC_ALRMAR_MSK2                      ((uint32_t)0x00008000)
-#define RTC_ALRMAR_MNT                       ((uint32_t)0x00007000)
-#define RTC_ALRMAR_MNT_0                     ((uint32_t)0x00001000)
-#define RTC_ALRMAR_MNT_1                     ((uint32_t)0x00002000)
-#define RTC_ALRMAR_MNT_2                     ((uint32_t)0x00004000)
-#define RTC_ALRMAR_MNU                       ((uint32_t)0x00000F00)
-#define RTC_ALRMAR_MNU_0                     ((uint32_t)0x00000100)
-#define RTC_ALRMAR_MNU_1                     ((uint32_t)0x00000200)
-#define RTC_ALRMAR_MNU_2                     ((uint32_t)0x00000400)
-#define RTC_ALRMAR_MNU_3                     ((uint32_t)0x00000800)
-#define RTC_ALRMAR_MSK1                      ((uint32_t)0x00000080)
-#define RTC_ALRMAR_ST                        ((uint32_t)0x00000070)
-#define RTC_ALRMAR_ST_0                      ((uint32_t)0x00000010)
-#define RTC_ALRMAR_ST_1                      ((uint32_t)0x00000020)
-#define RTC_ALRMAR_ST_2                      ((uint32_t)0x00000040)
-#define RTC_ALRMAR_SU                        ((uint32_t)0x0000000F)
-#define RTC_ALRMAR_SU_0                      ((uint32_t)0x00000001)
-#define RTC_ALRMAR_SU_1                      ((uint32_t)0x00000002)
-#define RTC_ALRMAR_SU_2                      ((uint32_t)0x00000004)
-#define RTC_ALRMAR_SU_3                      ((uint32_t)0x00000008)
-
-/********************  Bits definition for RTC_ALRMBR register  ***************/
-#define RTC_ALRMBR_MSK4                      ((uint32_t)0x80000000)
-#define RTC_ALRMBR_WDSEL                     ((uint32_t)0x40000000)
-#define RTC_ALRMBR_DT                        ((uint32_t)0x30000000)
-#define RTC_ALRMBR_DT_0                      ((uint32_t)0x10000000)
-#define RTC_ALRMBR_DT_1                      ((uint32_t)0x20000000)
-#define RTC_ALRMBR_DU                        ((uint32_t)0x0F000000)
-#define RTC_ALRMBR_DU_0                      ((uint32_t)0x01000000)
-#define RTC_ALRMBR_DU_1                      ((uint32_t)0x02000000)
-#define RTC_ALRMBR_DU_2                      ((uint32_t)0x04000000)
-#define RTC_ALRMBR_DU_3                      ((uint32_t)0x08000000)
-#define RTC_ALRMBR_MSK3                      ((uint32_t)0x00800000)
-#define RTC_ALRMBR_PM                        ((uint32_t)0x00400000)
-#define RTC_ALRMBR_HT                        ((uint32_t)0x00300000)
-#define RTC_ALRMBR_HT_0                      ((uint32_t)0x00100000)
-#define RTC_ALRMBR_HT_1                      ((uint32_t)0x00200000)
-#define RTC_ALRMBR_HU                        ((uint32_t)0x000F0000)
-#define RTC_ALRMBR_HU_0                      ((uint32_t)0x00010000)
-#define RTC_ALRMBR_HU_1                      ((uint32_t)0x00020000)
-#define RTC_ALRMBR_HU_2                      ((uint32_t)0x00040000)
-#define RTC_ALRMBR_HU_3                      ((uint32_t)0x00080000)
-#define RTC_ALRMBR_MSK2                      ((uint32_t)0x00008000)
-#define RTC_ALRMBR_MNT                       ((uint32_t)0x00007000)
-#define RTC_ALRMBR_MNT_0                     ((uint32_t)0x00001000)
-#define RTC_ALRMBR_MNT_1                     ((uint32_t)0x00002000)
-#define RTC_ALRMBR_MNT_2                     ((uint32_t)0x00004000)
-#define RTC_ALRMBR_MNU                       ((uint32_t)0x00000F00)
-#define RTC_ALRMBR_MNU_0                     ((uint32_t)0x00000100)
-#define RTC_ALRMBR_MNU_1                     ((uint32_t)0x00000200)
-#define RTC_ALRMBR_MNU_2                     ((uint32_t)0x00000400)
-#define RTC_ALRMBR_MNU_3                     ((uint32_t)0x00000800)
-#define RTC_ALRMBR_MSK1                      ((uint32_t)0x00000080)
-#define RTC_ALRMBR_ST                        ((uint32_t)0x00000070)
-#define RTC_ALRMBR_ST_0                      ((uint32_t)0x00000010)
-#define RTC_ALRMBR_ST_1                      ((uint32_t)0x00000020)
-#define RTC_ALRMBR_ST_2                      ((uint32_t)0x00000040)
-#define RTC_ALRMBR_SU                        ((uint32_t)0x0000000F)
-#define RTC_ALRMBR_SU_0                      ((uint32_t)0x00000001)
-#define RTC_ALRMBR_SU_1                      ((uint32_t)0x00000002)
-#define RTC_ALRMBR_SU_2                      ((uint32_t)0x00000004)
-#define RTC_ALRMBR_SU_3                      ((uint32_t)0x00000008)
-
-/********************  Bits definition for RTC_WPR register  ******************/
-#define RTC_WPR_KEY                          ((uint32_t)0x000000FF)
-
-/********************  Bits definition for RTC_TSTR register  *****************/
-#define RTC_TSTR_PM                          ((uint32_t)0x00400000)
-#define RTC_TSTR_HT                          ((uint32_t)0x00300000)
-#define RTC_TSTR_HT_0                        ((uint32_t)0x00100000)
-#define RTC_TSTR_HT_1                        ((uint32_t)0x00200000)
-#define RTC_TSTR_HU                          ((uint32_t)0x000F0000)
-#define RTC_TSTR_HU_0                        ((uint32_t)0x00010000)
-#define RTC_TSTR_HU_1                        ((uint32_t)0x00020000)
-#define RTC_TSTR_HU_2                        ((uint32_t)0x00040000)
-#define RTC_TSTR_HU_3                        ((uint32_t)0x00080000)
-#define RTC_TSTR_MNT                         ((uint32_t)0x00007000)
-#define RTC_TSTR_MNT_0                       ((uint32_t)0x00001000)
-#define RTC_TSTR_MNT_1                       ((uint32_t)0x00002000)
-#define RTC_TSTR_MNT_2                       ((uint32_t)0x00004000)
-#define RTC_TSTR_MNU                         ((uint32_t)0x00000F00)
-#define RTC_TSTR_MNU_0                       ((uint32_t)0x00000100)
-#define RTC_TSTR_MNU_1                       ((uint32_t)0x00000200)
-#define RTC_TSTR_MNU_2                       ((uint32_t)0x00000400)
-#define RTC_TSTR_MNU_3                       ((uint32_t)0x00000800)
-#define RTC_TSTR_ST                          ((uint32_t)0x00000070)
-#define RTC_TSTR_ST_0                        ((uint32_t)0x00000010)
-#define RTC_TSTR_ST_1                        ((uint32_t)0x00000020)
-#define RTC_TSTR_ST_2                        ((uint32_t)0x00000040)
-#define RTC_TSTR_SU                          ((uint32_t)0x0000000F)
-#define RTC_TSTR_SU_0                        ((uint32_t)0x00000001)
-#define RTC_TSTR_SU_1                        ((uint32_t)0x00000002)
-#define RTC_TSTR_SU_2                        ((uint32_t)0x00000004)
-#define RTC_TSTR_SU_3                        ((uint32_t)0x00000008)
-
-/********************  Bits definition for RTC_TSDR register  *****************/
-#define RTC_TSDR_WDU                         ((uint32_t)0x0000E000)
-#define RTC_TSDR_WDU_0                       ((uint32_t)0x00002000)
-#define RTC_TSDR_WDU_1                       ((uint32_t)0x00004000)
-#define RTC_TSDR_WDU_2                       ((uint32_t)0x00008000)
-#define RTC_TSDR_MT                          ((uint32_t)0x00001000)
-#define RTC_TSDR_MU                          ((uint32_t)0x00000F00)
-#define RTC_TSDR_MU_0                        ((uint32_t)0x00000100)
-#define RTC_TSDR_MU_1                        ((uint32_t)0x00000200)
-#define RTC_TSDR_MU_2                        ((uint32_t)0x00000400)
-#define RTC_TSDR_MU_3                        ((uint32_t)0x00000800)
-#define RTC_TSDR_DT                          ((uint32_t)0x00000030)
-#define RTC_TSDR_DT_0                        ((uint32_t)0x00000010)
-#define RTC_TSDR_DT_1                        ((uint32_t)0x00000020)
-#define RTC_TSDR_DU                          ((uint32_t)0x0000000F)
-#define RTC_TSDR_DU_0                        ((uint32_t)0x00000001)
-#define RTC_TSDR_DU_1                        ((uint32_t)0x00000002)
-#define RTC_TSDR_DU_2                        ((uint32_t)0x00000004)
-#define RTC_TSDR_DU_3                        ((uint32_t)0x00000008)
-
-/********************  Bits definition for RTC_TAFCR register  ****************/
-#define RTC_TAFCR_ALARMOUTTYPE               ((uint32_t)0x00040000)
-#define RTC_TAFCR_TSINSEL                    ((uint32_t)0x00020000)
-#define RTC_TAFCR_TAMPINSEL                  ((uint32_t)0x00010000)
-#define RTC_TAFCR_TAMPIE                     ((uint32_t)0x00000004)
-#define RTC_TAFCR_TAMP1TRG                   ((uint32_t)0x00000002)
-#define RTC_TAFCR_TAMP1E                     ((uint32_t)0x00000001)
-
-/********************  Bits definition for RTC_BKP0R register  ****************/
-#define RTC_BKP0R                            ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP1R register  ****************/
-#define RTC_BKP1R                            ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP2R register  ****************/
-#define RTC_BKP2R                            ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP3R register  ****************/
-#define RTC_BKP3R                            ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP4R register  ****************/
-#define RTC_BKP4R                            ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP5R register  ****************/
-#define RTC_BKP5R                            ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP6R register  ****************/
-#define RTC_BKP6R                            ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP7R register  ****************/
-#define RTC_BKP7R                            ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP8R register  ****************/
-#define RTC_BKP8R                            ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP9R register  ****************/
-#define RTC_BKP9R                            ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP10R register  ***************/
-#define RTC_BKP10R                           ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP11R register  ***************/
-#define RTC_BKP11R                           ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP12R register  ***************/
-#define RTC_BKP12R                           ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP13R register  ***************/
-#define RTC_BKP13R                           ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP14R register  ***************/
-#define RTC_BKP14R                           ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP15R register  ***************/
-#define RTC_BKP15R                           ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP16R register  ***************/
-#define RTC_BKP16R                           ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP17R register  ***************/
-#define RTC_BKP17R                           ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP18R register  ***************/
-#define RTC_BKP18R                           ((uint32_t)0xFFFFFFFF)
-
-/********************  Bits definition for RTC_BKP19R register  ***************/
-#define RTC_BKP19R                           ((uint32_t)0xFFFFFFFF)
-
-/******************************************************************************/
-/*                                                                            */
-/*                          SD host Interface                                 */
-/*                                                                            */
-/******************************************************************************/
-/******************  Bit definition for SDIO_POWER register  ******************/
-#define  SDIO_POWER_PWRCTRL                  ((uint8_t)0x03)               /*!<PWRCTRL[1:0] bits (Power supply control bits) */
-#define  SDIO_POWER_PWRCTRL_0                ((uint8_t)0x01)               /*!<Bit 0 */
-#define  SDIO_POWER_PWRCTRL_1                ((uint8_t)0x02)               /*!<Bit 1 */
-
-/******************  Bit definition for SDIO_CLKCR register  ******************/
-#define  SDIO_CLKCR_CLKDIV                   ((uint16_t)0x00FF)            /*!<Clock divide factor */
-#define  SDIO_CLKCR_CLKEN                    ((uint16_t)0x0100)            /*!<Clock enable bit */
-#define  SDIO_CLKCR_PWRSAV                   ((uint16_t)0x0200)            /*!<Power saving configuration bit */
-#define  SDIO_CLKCR_BYPASS                   ((uint16_t)0x0400)            /*!<Clock divider bypass enable bit */
-
-#define  SDIO_CLKCR_WIDBUS                   ((uint16_t)0x1800)            /*!<WIDBUS[1:0] bits (Wide bus mode enable bit) */
-#define  SDIO_CLKCR_WIDBUS_0                 ((uint16_t)0x0800)            /*!<Bit 0 */
-#define  SDIO_CLKCR_WIDBUS_1                 ((uint16_t)0x1000)            /*!<Bit 1 */
-
-#define  SDIO_CLKCR_NEGEDGE                  ((uint16_t)0x2000)            /*!<SDIO_CK dephasing selection bit */
-#define  SDIO_CLKCR_HWFC_EN                  ((uint16_t)0x4000)            /*!<HW Flow Control enable */
-
-/*******************  Bit definition for SDIO_ARG register  *******************/
-#define  SDIO_ARG_CMDARG                     ((uint32_t)0xFFFFFFFF)            /*!<Command argument */
-
-/*******************  Bit definition for SDIO_CMD register  *******************/
-#define  SDIO_CMD_CMDINDEX                   ((uint16_t)0x003F)            /*!<Command Index */
-
-#define  SDIO_CMD_WAITRESP                   ((uint16_t)0x00C0)            /*!<WAITRESP[1:0] bits (Wait for response bits) */
-#define  SDIO_CMD_WAITRESP_0                 ((uint16_t)0x0040)            /*!< Bit 0 */
-#define  SDIO_CMD_WAITRESP_1                 ((uint16_t)0x0080)            /*!< Bit 1 */
-
-#define  SDIO_CMD_WAITINT                    ((uint16_t)0x0100)            /*!<CPSM Waits for Interrupt Request */
-#define  SDIO_CMD_WAITPEND                   ((uint16_t)0x0200)            /*!<CPSM Waits for ends of data transfer (CmdPend internal signal) */
-#define  SDIO_CMD_CPSMEN                     ((uint16_t)0x0400)            /*!<Command path state machine (CPSM) Enable bit */
-#define  SDIO_CMD_SDIOSUSPEND                ((uint16_t)0x0800)            /*!<SD I/O suspend command */
-#define  SDIO_CMD_ENCMDCOMPL                 ((uint16_t)0x1000)            /*!<Enable CMD completion */
-#define  SDIO_CMD_NIEN                       ((uint16_t)0x2000)            /*!<Not Interrupt Enable */
-#define  SDIO_CMD_CEATACMD                   ((uint16_t)0x4000)            /*!<CE-ATA command */
-
-/*****************  Bit definition for SDIO_RESPCMD register  *****************/
-#define  SDIO_RESPCMD_RESPCMD                ((uint8_t)0x3F)               /*!<Response command index */
-
-/******************  Bit definition for SDIO_RESP0 register  ******************/
-#define  SDIO_RESP0_CARDSTATUS0              ((uint32_t)0xFFFFFFFF)        /*!<Card Status */
-
-/******************  Bit definition for SDIO_RESP1 register  ******************/
-#define  SDIO_RESP1_CARDSTATUS1              ((uint32_t)0xFFFFFFFF)        /*!<Card Status */
-
-/******************  Bit definition for SDIO_RESP2 register  ******************/
-#define  SDIO_RESP2_CARDSTATUS2              ((uint32_t)0xFFFFFFFF)        /*!<Card Status */
-
-/******************  Bit definition for SDIO_RESP3 register  ******************/
-#define  SDIO_RESP3_CARDSTATUS3              ((uint32_t)0xFFFFFFFF)        /*!<Card Status */
-
-/******************  Bit definition for SDIO_RESP4 register  ******************/
-#define  SDIO_RESP4_CARDSTATUS4              ((uint32_t)0xFFFFFFFF)        /*!<Card Status */
-
-/******************  Bit definition for SDIO_DTIMER register  *****************/
-#define  SDIO_DTIMER_DATATIME                ((uint32_t)0xFFFFFFFF)        /*!<Data timeout period. */
-
-/******************  Bit definition for SDIO_DLEN register  *******************/
-#define  SDIO_DLEN_DATALENGTH                ((uint32_t)0x01FFFFFF)        /*!<Data length value */
-
-/******************  Bit definition for SDIO_DCTRL register  ******************/
-#define  SDIO_DCTRL_DTEN                     ((uint16_t)0x0001)            /*!<Data transfer enabled bit */
-#define  SDIO_DCTRL_DTDIR                    ((uint16_t)0x0002)            /*!<Data transfer direction selection */
-#define  SDIO_DCTRL_DTMODE                   ((uint16_t)0x0004)            /*!<Data transfer mode selection */
-#define  SDIO_DCTRL_DMAEN                    ((uint16_t)0x0008)            /*!<DMA enabled bit */
-
-#define  SDIO_DCTRL_DBLOCKSIZE               ((uint16_t)0x00F0)            /*!<DBLOCKSIZE[3:0] bits (Data block size) */
-#define  SDIO_DCTRL_DBLOCKSIZE_0             ((uint16_t)0x0010)            /*!<Bit 0 */
-#define  SDIO_DCTRL_DBLOCKSIZE_1             ((uint16_t)0x0020)            /*!<Bit 1 */
-#define  SDIO_DCTRL_DBLOCKSIZE_2             ((uint16_t)0x0040)            /*!<Bit 2 */
-#define  SDIO_DCTRL_DBLOCKSIZE_3             ((uint16_t)0x0080)            /*!<Bit 3 */
-
-#define  SDIO_DCTRL_RWSTART                  ((uint16_t)0x0100)            /*!<Read wait start */
-#define  SDIO_DCTRL_RWSTOP                   ((uint16_t)0x0200)            /*!<Read wait stop */
-#define  SDIO_DCTRL_RWMOD                    ((uint16_t)0x0400)            /*!<Read wait mode */
-#define  SDIO_DCTRL_SDIOEN                   ((uint16_t)0x0800)            /*!<SD I/O enable functions */
-
-/******************  Bit definition for SDIO_DCOUNT register  *****************/
-#define  SDIO_DCOUNT_DATACOUNT               ((uint32_t)0x01FFFFFF)        /*!<Data count value */
-
-/******************  Bit definition for SDIO_STA register  ********************/
-#define  SDIO_STA_CCRCFAIL                   ((uint32_t)0x00000001)        /*!<Command response received (CRC check failed) */
-#define  SDIO_STA_DCRCFAIL                   ((uint32_t)0x00000002)        /*!<Data block sent/received (CRC check failed) */
-#define  SDIO_STA_CTIMEOUT                   ((uint32_t)0x00000004)        /*!<Command response timeout */
-#define  SDIO_STA_DTIMEOUT                   ((uint32_t)0x00000008)        /*!<Data timeout */
-#define  SDIO_STA_TXUNDERR                   ((uint32_t)0x00000010)        /*!<Transmit FIFO underrun error */
-#define  SDIO_STA_RXOVERR                    ((uint32_t)0x00000020)        /*!<Received FIFO overrun error */
-#define  SDIO_STA_CMDREND                    ((uint32_t)0x00000040)        /*!<Command response received (CRC check passed) */
-#define  SDIO_STA_CMDSENT                    ((uint32_t)0x00000080)        /*!<Command sent (no response required) */
-#define  SDIO_STA_DATAEND                    ((uint32_t)0x00000100)        /*!<Data end (data counter, SDIDCOUNT, is zero) */
-#define  SDIO_STA_STBITERR                   ((uint32_t)0x00000200)        /*!<Start bit not detected on all data signals in wide bus mode */
-#define  SDIO_STA_DBCKEND                    ((uint32_t)0x00000400)        /*!<Data block sent/received (CRC check passed) */
-#define  SDIO_STA_CMDACT                     ((uint32_t)0x00000800)        /*!<Command transfer in progress */
-#define  SDIO_STA_TXACT                      ((uint32_t)0x00001000)        /*!<Data transmit in progress */
-#define  SDIO_STA_RXACT                      ((uint32_t)0x00002000)        /*!<Data receive in progress */
-#define  SDIO_STA_TXFIFOHE                   ((uint32_t)0x00004000)        /*!<Transmit FIFO Half Empty: at least 8 words can be written into the FIFO */
-#define  SDIO_STA_RXFIFOHF                   ((uint32_t)0x00008000)        /*!<Receive FIFO Half Full: there are at least 8 words in the FIFO */
-#define  SDIO_STA_TXFIFOF                    ((uint32_t)0x00010000)        /*!<Transmit FIFO full */
-#define  SDIO_STA_RXFIFOF                    ((uint32_t)0x00020000)        /*!<Receive FIFO full */
-#define  SDIO_STA_TXFIFOE                    ((uint32_t)0x00040000)        /*!<Transmit FIFO empty */
-#define  SDIO_STA_RXFIFOE                    ((uint32_t)0x00080000)        /*!<Receive FIFO empty */
-#define  SDIO_STA_TXDAVL                     ((uint32_t)0x00100000)        /*!<Data available in transmit FIFO */
-#define  SDIO_STA_RXDAVL                     ((uint32_t)0x00200000)        /*!<Data available in receive FIFO */
-#define  SDIO_STA_SDIOIT                     ((uint32_t)0x00400000)        /*!<SDIO interrupt received */
-#define  SDIO_STA_CEATAEND                   ((uint32_t)0x00800000)        /*!<CE-ATA command completion signal received for CMD61 */
-
-/*******************  Bit definition for SDIO_ICR register  *******************/
-#define  SDIO_ICR_CCRCFAILC                  ((uint32_t)0x00000001)        /*!<CCRCFAIL flag clear bit */
-#define  SDIO_ICR_DCRCFAILC                  ((uint32_t)0x00000002)        /*!<DCRCFAIL flag clear bit */
-#define  SDIO_ICR_CTIMEOUTC                  ((uint32_t)0x00000004)        /*!<CTIMEOUT flag clear bit */
-#define  SDIO_ICR_DTIMEOUTC                  ((uint32_t)0x00000008)        /*!<DTIMEOUT flag clear bit */
-#define  SDIO_ICR_TXUNDERRC                  ((uint32_t)0x00000010)        /*!<TXUNDERR flag clear bit */
-#define  SDIO_ICR_RXOVERRC                   ((uint32_t)0x00000020)        /*!<RXOVERR flag clear bit */
-#define  SDIO_ICR_CMDRENDC                   ((uint32_t)0x00000040)        /*!<CMDREND flag clear bit */
-#define  SDIO_ICR_CMDSENTC                   ((uint32_t)0x00000080)        /*!<CMDSENT flag clear bit */
-#define  SDIO_ICR_DATAENDC                   ((uint32_t)0x00000100)        /*!<DATAEND flag clear bit */
-#define  SDIO_ICR_STBITERRC                  ((uint32_t)0x00000200)        /*!<STBITERR flag clear bit */
-#define  SDIO_ICR_DBCKENDC                   ((uint32_t)0x00000400)        /*!<DBCKEND flag clear bit */
-#define  SDIO_ICR_SDIOITC                    ((uint32_t)0x00400000)        /*!<SDIOIT flag clear bit */
-#define  SDIO_ICR_CEATAENDC                  ((uint32_t)0x00800000)        /*!<CEATAEND flag clear bit */
-
-/******************  Bit definition for SDIO_MASK register  *******************/
-#define  SDIO_MASK_CCRCFAILIE                ((uint32_t)0x00000001)        /*!<Command CRC Fail Interrupt Enable */
-#define  SDIO_MASK_DCRCFAILIE                ((uint32_t)0x00000002)        /*!<Data CRC Fail Interrupt Enable */
-#define  SDIO_MASK_CTIMEOUTIE                ((uint32_t)0x00000004)        /*!<Command TimeOut Interrupt Enable */
-#define  SDIO_MASK_DTIMEOUTIE                ((uint32_t)0x00000008)        /*!<Data TimeOut Interrupt Enable */
-#define  SDIO_MASK_TXUNDERRIE                ((uint32_t)0x00000010)        /*!<Tx FIFO UnderRun Error Interrupt Enable */
-#define  SDIO_MASK_RXOVERRIE                 ((uint32_t)0x00000020)        /*!<Rx FIFO OverRun Error Interrupt Enable */
-#define  SDIO_MASK_CMDRENDIE                 ((uint32_t)0x00000040)        /*!<Command Response Received Interrupt Enable */
-#define  SDIO_MASK_CMDSENTIE                 ((uint32_t)0x00000080)        /*!<Command Sent Interrupt Enable */
-#define  SDIO_MASK_DATAENDIE                 ((uint32_t)0x00000100)        /*!<Data End Interrupt Enable */
-#define  SDIO_MASK_STBITERRIE                ((uint32_t)0x00000200)        /*!<Start Bit Error Interrupt Enable */
-#define  SDIO_MASK_DBCKENDIE                 ((uint32_t)0x00000400)        /*!<Data Block End Interrupt Enable */
-#define  SDIO_MASK_CMDACTIE                  ((uint32_t)0x00000800)        /*!<CCommand Acting Interrupt Enable */
-#define  SDIO_MASK_TXACTIE                   ((uint32_t)0x00001000)        /*!<Data Transmit Acting Interrupt Enable */
-#define  SDIO_MASK_RXACTIE                   ((uint32_t)0x00002000)        /*!<Data receive acting interrupt enabled */
-#define  SDIO_MASK_TXFIFOHEIE                ((uint32_t)0x00004000)        /*!<Tx FIFO Half Empty interrupt Enable */
-#define  SDIO_MASK_RXFIFOHFIE                ((uint32_t)0x00008000)        /*!<Rx FIFO Half Full interrupt Enable */
-#define  SDIO_MASK_TXFIFOFIE                 ((uint32_t)0x00010000)        /*!<Tx FIFO Full interrupt Enable */
-#define  SDIO_MASK_RXFIFOFIE                 ((uint32_t)0x00020000)        /*!<Rx FIFO Full interrupt Enable */
-#define  SDIO_MASK_TXFIFOEIE                 ((uint32_t)0x00040000)        /*!<Tx FIFO Empty interrupt Enable */
-#define  SDIO_MASK_RXFIFOEIE                 ((uint32_t)0x00080000)        /*!<Rx FIFO Empty interrupt Enable */
-#define  SDIO_MASK_TXDAVLIE                  ((uint32_t)0x00100000)        /*!<Data available in Tx FIFO interrupt Enable */
-#define  SDIO_MASK_RXDAVLIE                  ((uint32_t)0x00200000)        /*!<Data available in Rx FIFO interrupt Enable */
-#define  SDIO_MASK_SDIOITIE                  ((uint32_t)0x00400000)        /*!<SDIO Mode Interrupt Received interrupt Enable */
-#define  SDIO_MASK_CEATAENDIE                ((uint32_t)0x00800000)        /*!<CE-ATA command completion signal received Interrupt Enable */
-
-/*****************  Bit definition for SDIO_FIFOCNT register  *****************/
-#define  SDIO_FIFOCNT_FIFOCOUNT              ((uint32_t)0x00FFFFFF)        /*!<Remaining number of words to be written to or read from the FIFO */
-
-/******************  Bit definition for SDIO_FIFO register  *******************/
-#define  SDIO_FIFO_FIFODATA                  ((uint32_t)0xFFFFFFFF)        /*!<Receive and transmit FIFO data */
-
-/******************************************************************************/
-/*                                                                            */
-/*                        Serial Peripheral Interface                         */
-/*                                                                            */
-/******************************************************************************/
-/*******************  Bit definition for SPI_CR1 register  ********************/
-#define  SPI_CR1_CPHA                        ((uint16_t)0x0001)            /*!<Clock Phase */
-#define  SPI_CR1_CPOL                        ((uint16_t)0x0002)            /*!<Clock Polarity */
-#define  SPI_CR1_MSTR                        ((uint16_t)0x0004)            /*!<Master Selection */
-
-#define  SPI_CR1_BR                          ((uint16_t)0x0038)            /*!<BR[2:0] bits (Baud Rate Control) */
-#define  SPI_CR1_BR_0                        ((uint16_t)0x0008)            /*!<Bit 0 */
-#define  SPI_CR1_BR_1                        ((uint16_t)0x0010)            /*!<Bit 1 */
-#define  SPI_CR1_BR_2                        ((uint16_t)0x0020)            /*!<Bit 2 */
-
-#define  SPI_CR1_SPE                         ((uint16_t)0x0040)            /*!<SPI Enable */
-#define  SPI_CR1_LSBFIRST                    ((uint16_t)0x0080)            /*!<Frame Format */
-#define  SPI_CR1_SSI                         ((uint16_t)0x0100)            /*!<Internal slave select */
-#define  SPI_CR1_SSM                         ((uint16_t)0x0200)            /*!<Software slave management */
-#define  SPI_CR1_RXONLY                      ((uint16_t)0x0400)            /*!<Receive only */
-#define  SPI_CR1_DFF                         ((uint16_t)0x0800)            /*!<Data Frame Format */
-#define  SPI_CR1_CRCNEXT                     ((uint16_t)0x1000)            /*!<Transmit CRC next */
-#define  SPI_CR1_CRCEN                       ((uint16_t)0x2000)            /*!<Hardware CRC calculation enable */
-#define  SPI_CR1_BIDIOE                      ((uint16_t)0x4000)            /*!<Output enable in bidirectional mode */
-#define  SPI_CR1_BIDIMODE                    ((uint16_t)0x8000)            /*!<Bidirectional data mode enable */
-
-/*******************  Bit definition for SPI_CR2 register  ********************/
-#define  SPI_CR2_RXDMAEN                     ((uint8_t)0x01)               /*!<Rx Buffer DMA Enable */
-#define  SPI_CR2_TXDMAEN                     ((uint8_t)0x02)               /*!<Tx Buffer DMA Enable */
-#define  SPI_CR2_SSOE                        ((uint8_t)0x04)               /*!<SS Output Enable */
-#define  SPI_CR2_ERRIE                       ((uint8_t)0x20)               /*!<Error Interrupt Enable */
-#define  SPI_CR2_RXNEIE                      ((uint8_t)0x40)               /*!<RX buffer Not Empty Interrupt Enable */
-#define  SPI_CR2_TXEIE                       ((uint8_t)0x80)               /*!<Tx buffer Empty Interrupt Enable */
-
-/********************  Bit definition for SPI_SR register  ********************/
-#define  SPI_SR_RXNE                         ((uint8_t)0x01)               /*!<Receive buffer Not Empty */
-#define  SPI_SR_TXE                          ((uint8_t)0x02)               /*!<Transmit buffer Empty */
-#define  SPI_SR_CHSIDE                       ((uint8_t)0x04)               /*!<Channel side */
-#define  SPI_SR_UDR                          ((uint8_t)0x08)               /*!<Underrun flag */
-#define  SPI_SR_CRCERR                       ((uint8_t)0x10)               /*!<CRC Error flag */
-#define  SPI_SR_MODF                         ((uint8_t)0x20)               /*!<Mode fault */
-#define  SPI_SR_OVR                          ((uint8_t)0x40)               /*!<Overrun flag */
-#define  SPI_SR_BSY                          ((uint8_t)0x80)               /*!<Busy flag */
-
-/********************  Bit definition for SPI_DR register  ********************/
-#define  SPI_DR_DR                           ((uint16_t)0xFFFF)            /*!<Data Register */
-
-/*******************  Bit definition for SPI_CRCPR register  ******************/
-#define  SPI_CRCPR_CRCPOLY                   ((uint16_t)0xFFFF)            /*!<CRC polynomial register */
-
-/******************  Bit definition for SPI_RXCRCR register  ******************/
-#define  SPI_RXCRCR_RXCRC                    ((uint16_t)0xFFFF)            /*!<Rx CRC Register */
-
-/******************  Bit definition for SPI_TXCRCR register  ******************/
-#define  SPI_TXCRCR_TXCRC                    ((uint16_t)0xFFFF)            /*!<Tx CRC Register */
-
-/******************  Bit definition for SPI_I2SCFGR register  *****************/
-#define  SPI_I2SCFGR_CHLEN                   ((uint16_t)0x0001)            /*!<Channel length (number of bits per audio channel) */
-
-#define  SPI_I2SCFGR_DATLEN                  ((uint16_t)0x0006)            /*!<DATLEN[1:0] bits (Data length to be transferred) */
-#define  SPI_I2SCFGR_DATLEN_0                ((uint16_t)0x0002)            /*!<Bit 0 */
-#define  SPI_I2SCFGR_DATLEN_1                ((uint16_t)0x0004)            /*!<Bit 1 */
-
-#define  SPI_I2SCFGR_CKPOL                   ((uint16_t)0x0008)            /*!<steady state clock polarity */
-
-#define  SPI_I2SCFGR_I2SSTD                  ((uint16_t)0x0030)            /*!<I2SSTD[1:0] bits (I2S standard selection) */
-#define  SPI_I2SCFGR_I2SSTD_0                ((uint16_t)0x0010)            /*!<Bit 0 */
-#define  SPI_I2SCFGR_I2SSTD_1                ((uint16_t)0x0020)            /*!<Bit 1 */
-
-#define  SPI_I2SCFGR_PCMSYNC                 ((uint16_t)0x0080)            /*!<PCM frame synchronization */
-
-#define  SPI_I2SCFGR_I2SCFG                  ((uint16_t)0x0300)            /*!<I2SCFG[1:0] bits (I2S configuration mode) */
-#define  SPI_I2SCFGR_I2SCFG_0                ((uint16_t)0x0100)            /*!<Bit 0 */
-#define  SPI_I2SCFGR_I2SCFG_1                ((uint16_t)0x0200)            /*!<Bit 1 */
-
-#define  SPI_I2SCFGR_I2SE                    ((uint16_t)0x0400)            /*!<I2S Enable */
-#define  SPI_I2SCFGR_I2SMOD                  ((uint16_t)0x0800)            /*!<I2S mode selection */
-
-/******************  Bit definition for SPI_I2SPR register  *******************/
-#define  SPI_I2SPR_I2SDIV                    ((uint16_t)0x00FF)            /*!<I2S Linear prescaler */
-#define  SPI_I2SPR_ODD                       ((uint16_t)0x0100)            /*!<Odd factor for the prescaler */
-#define  SPI_I2SPR_MCKOE                     ((uint16_t)0x0200)            /*!<Master Clock Output Enable */
-
-/******************************************************************************/
-/*                                                                            */
-/*                                 SYSCFG                                     */
-/*                                                                            */
-/******************************************************************************/
-/******************  Bit definition for SYSCFG_MEMRMP register  ***************/  
-#define SYSCFG_MEMRMP_MEM_MODE          ((uint32_t)0x00000003) /*!<SYSCFG_Memory Remap Config */
-#define SYSCFG_MEMRMP_MEM_MODE_0        ((uint32_t)0x00000001)
-#define SYSCFG_MEMRMP_MEM_MODE_1        ((uint32_t)0x00000002)
-
-/******************  Bit definition for SYSCFG_PMC register  ******************/
-#define SYSCFG_PMC_MII_RMII            ((uint16_t)0x0080) /*!<Ethernet PHY interface selection */
-
-/*****************  Bit definition for SYSCFG_EXTICR1 register  ***************/
-#define SYSCFG_EXTICR1_EXTI0            ((uint16_t)0x000F) /*!<EXTI 0 configuration */
-#define SYSCFG_EXTICR1_EXTI1            ((uint16_t)0x00F0) /*!<EXTI 1 configuration */
-#define SYSCFG_EXTICR1_EXTI2            ((uint16_t)0x0F00) /*!<EXTI 2 configuration */
-#define SYSCFG_EXTICR1_EXTI3            ((uint16_t)0xF000) /*!<EXTI 3 configuration */
-/** 
-  * @brief   EXTI0 configuration  
-  */ 
-#define SYSCFG_EXTICR1_EXTI0_PA         ((uint16_t)0x0000) /*!<PA[0] pin */
-#define SYSCFG_EXTICR1_EXTI0_PB         ((uint16_t)0x0001) /*!<PB[0] pin */
-#define SYSCFG_EXTICR1_EXTI0_PC         ((uint16_t)0x0002) /*!<PC[0] pin */
-#define SYSCFG_EXTICR1_EXTI0_PD         ((uint16_t)0x0003) /*!<PD[0] pin */
-#define SYSCFG_EXTICR1_EXTI0_PE         ((uint16_t)0x0004) /*!<PE[0] pin */
-#define SYSCFG_EXTICR1_EXTI0_PF         ((uint16_t)0x0005) /*!<PF[0] pin */
-#define SYSCFG_EXTICR1_EXTI0_PG         ((uint16_t)0x0006) /*!<PG[0] pin */
-#define SYSCFG_EXTICR1_EXTI0_PH         ((uint16_t)0x0007) /*!<PH[0] pin */
-#define SYSCFG_EXTICR1_EXTI0_PI         ((uint16_t)0x0008) /*!<PI[0] pin */
-/** 
-  * @brief   EXTI1 configuration  
-  */ 
-#define SYSCFG_EXTICR1_EXTI1_PA         ((uint16_t)0x0000) /*!<PA[1] pin */
-#define SYSCFG_EXTICR1_EXTI1_PB         ((uint16_t)0x0010) /*!<PB[1] pin */
-#define SYSCFG_EXTICR1_EXTI1_PC         ((uint16_t)0x0020) /*!<PC[1] pin */
-#define SYSCFG_EXTICR1_EXTI1_PD         ((uint16_t)0x0030) /*!<PD[1] pin */
-#define SYSCFG_EXTICR1_EXTI1_PE         ((uint16_t)0x0040) /*!<PE[1] pin */
-#define SYSCFG_EXTICR1_EXTI1_PF         ((uint16_t)0x0050) /*!<PF[1] pin */
-#define SYSCFG_EXTICR1_EXTI1_PG         ((uint16_t)0x0060) /*!<PG[1] pin */
-#define SYSCFG_EXTICR1_EXTI1_PH         ((uint16_t)0x0070) /*!<PH[1] pin */
-#define SYSCFG_EXTICR1_EXTI1_PI         ((uint16_t)0x0080) /*!<PI[1] pin */
-/** 
-  * @brief   EXTI2 configuration  
-  */ 
-#define SYSCFG_EXTICR1_EXTI2_PA         ((uint16_t)0x0000) /*!<PA[2] pin */
-#define SYSCFG_EXTICR1_EXTI2_PB         ((uint16_t)0x0100) /*!<PB[2] pin */
-#define SYSCFG_EXTICR1_EXTI2_PC         ((uint16_t)0x0200) /*!<PC[2] pin */
-#define SYSCFG_EXTICR1_EXTI2_PD         ((uint16_t)0x0300) /*!<PD[2] pin */
-#define SYSCFG_EXTICR1_EXTI2_PE         ((uint16_t)0x0400) /*!<PE[2] pin */
-#define SYSCFG_EXTICR1_EXTI2_PF         ((uint16_t)0x0500) /*!<PF[2] pin */
-#define SYSCFG_EXTICR1_EXTI2_PG         ((uint16_t)0x0600) /*!<PG[2] pin */
-#define SYSCFG_EXTICR1_EXTI2_PH         ((uint16_t)0x0700) /*!<PH[2] pin */
-#define SYSCFG_EXTICR1_EXTI2_PI         ((uint16_t)0x0800) /*!<PI[2] pin */
-/** 
-  * @brief   EXTI3 configuration  
-  */ 
-#define SYSCFG_EXTICR1_EXTI3_PA         ((uint16_t)0x0000) /*!<PA[3] pin */
-#define SYSCFG_EXTICR1_EXTI3_PB         ((uint16_t)0x1000) /*!<PB[3] pin */
-#define SYSCFG_EXTICR1_EXTI3_PC         ((uint16_t)0x2000) /*!<PC[3] pin */
-#define SYSCFG_EXTICR1_EXTI3_PD         ((uint16_t)0x3000) /*!<PD[3] pin */
-#define SYSCFG_EXTICR1_EXTI3_PE         ((uint16_t)0x4000) /*!<PE[3] pin */
-#define SYSCFG_EXTICR1_EXTI3_PF         ((uint16_t)0x5000) /*!<PF[3] pin */
-#define SYSCFG_EXTICR1_EXTI3_PG         ((uint16_t)0x6000) /*!<PG[3] pin */
-#define SYSCFG_EXTICR1_EXTI3_PH         ((uint16_t)0x7000) /*!<PH[3] pin */
-#define SYSCFG_EXTICR1_EXTI3_PI         ((uint16_t)0x8000) /*!<PI[3] pin */
-
-/*****************  Bit definition for SYSCFG_EXTICR2 register  ***************/
-#define SYSCFG_EXTICR2_EXTI4            ((uint16_t)0x000F) /*!<EXTI 4 configuration */
-#define SYSCFG_EXTICR2_EXTI5            ((uint16_t)0x00F0) /*!<EXTI 5 configuration */
-#define SYSCFG_EXTICR2_EXTI6            ((uint16_t)0x0F00) /*!<EXTI 6 configuration */
-#define SYSCFG_EXTICR2_EXTI7            ((uint16_t)0xF000) /*!<EXTI 7 configuration */
-/** 
-  * @brief   EXTI4 configuration  
-  */ 
-#define SYSCFG_EXTICR2_EXTI4_PA         ((uint16_t)0x0000) /*!<PA[4] pin */
-#define SYSCFG_EXTICR2_EXTI4_PB         ((uint16_t)0x0001) /*!<PB[4] pin */
-#define SYSCFG_EXTICR2_EXTI4_PC         ((uint16_t)0x0002) /*!<PC[4] pin */
-#define SYSCFG_EXTICR2_EXTI4_PD         ((uint16_t)0x0003) /*!<PD[4] pin */
-#define SYSCFG_EXTICR2_EXTI4_PE         ((uint16_t)0x0004) /*!<PE[4] pin */
-#define SYSCFG_EXTICR2_EXTI4_PF         ((uint16_t)0x0005) /*!<PF[4] pin */
-#define SYSCFG_EXTICR2_EXTI4_PG         ((uint16_t)0x0006) /*!<PG[4] pin */
-#define SYSCFG_EXTICR2_EXTI4_PH         ((uint16_t)0x0007) /*!<PH[4] pin */
-#define SYSCFG_EXTICR2_EXTI4_PI         ((uint16_t)0x0008) /*!<PI[4] pin */
-/** 
-  * @brief   EXTI5 configuration  
-  */ 
-#define SYSCFG_EXTICR2_EXTI5_PA         ((uint16_t)0x0000) /*!<PA[5] pin */
-#define SYSCFG_EXTICR2_EXTI5_PB         ((uint16_t)0x0010) /*!<PB[5] pin */
-#define SYSCFG_EXTICR2_EXTI5_PC         ((uint16_t)0x0020) /*!<PC[5] pin */
-#define SYSCFG_EXTICR2_EXTI5_PD         ((uint16_t)0x0030) /*!<PD[5] pin */
-#define SYSCFG_EXTICR2_EXTI5_PE         ((uint16_t)0x0040) /*!<PE[5] pin */
-#define SYSCFG_EXTICR2_EXTI5_PF         ((uint16_t)0x0050) /*!<PF[5] pin */
-#define SYSCFG_EXTICR2_EXTI5_PG         ((uint16_t)0x0060) /*!<PG[5] pin */
-#define SYSCFG_EXTICR2_EXTI5_PH         ((uint16_t)0x0070) /*!<PH[5] pin */
-#define SYSCFG_EXTICR2_EXTI5_PI         ((uint16_t)0x0080) /*!<PI[5] pin */
-/** 
-  * @brief   EXTI6 configuration  
-  */ 
-#define SYSCFG_EXTICR2_EXTI6_PA         ((uint16_t)0x0000) /*!<PA[6] pin */
-#define SYSCFG_EXTICR2_EXTI6_PB         ((uint16_t)0x0100) /*!<PB[6] pin */
-#define SYSCFG_EXTICR2_EXTI6_PC         ((uint16_t)0x0200) /*!<PC[6] pin */
-#define SYSCFG_EXTICR2_EXTI6_PD         ((uint16_t)0x0300) /*!<PD[6] pin */
-#define SYSCFG_EXTICR2_EXTI6_PE         ((uint16_t)0x0400) /*!<PE[6] pin */
-#define SYSCFG_EXTICR2_EXTI6_PF         ((uint16_t)0x0500) /*!<PF[6] pin */
-#define SYSCFG_EXTICR2_EXTI6_PG         ((uint16_t)0x0600) /*!<PG[6] pin */
-#define SYSCFG_EXTICR2_EXTI6_PH         ((uint16_t)0x0700) /*!<PH[6] pin */
-#define SYSCFG_EXTICR2_EXTI6_PI         ((uint16_t)0x0800) /*!<PI[6] pin */
-/** 
-  * @brief   EXTI7 configuration  
-  */ 
-#define SYSCFG_EXTICR2_EXTI7_PA         ((uint16_t)0x0000) /*!<PA[7] pin */
-#define SYSCFG_EXTICR2_EXTI7_PB         ((uint16_t)0x1000) /*!<PB[7] pin */
-#define SYSCFG_EXTICR2_EXTI7_PC         ((uint16_t)0x2000) /*!<PC[7] pin */
-#define SYSCFG_EXTICR2_EXTI7_PD         ((uint16_t)0x3000) /*!<PD[7] pin */
-#define SYSCFG_EXTICR2_EXTI7_PE         ((uint16_t)0x4000) /*!<PE[7] pin */
-#define SYSCFG_EXTICR2_EXTI7_PF         ((uint16_t)0x5000) /*!<PF[7] pin */
-#define SYSCFG_EXTICR2_EXTI7_PG         ((uint16_t)0x6000) /*!<PG[7] pin */
-#define SYSCFG_EXTICR2_EXTI7_PH         ((uint16_t)0x7000) /*!<PH[7] pin */
-#define SYSCFG_EXTICR2_EXTI7_PI         ((uint16_t)0x8000) /*!<PI[7] pin */
-
-/*****************  Bit definition for SYSCFG_EXTICR3 register  ***************/
-#define SYSCFG_EXTICR3_EXTI8            ((uint16_t)0x000F) /*!<EXTI 8 configuration */
-#define SYSCFG_EXTICR3_EXTI9            ((uint16_t)0x00F0) /*!<EXTI 9 configuration */
-#define SYSCFG_EXTICR3_EXTI10           ((uint16_t)0x0F00) /*!<EXTI 10 configuration */
-#define SYSCFG_EXTICR3_EXTI11           ((uint16_t)0xF000) /*!<EXTI 11 configuration */
-           
-/** 
-  * @brief   EXTI8 configuration  
-  */ 
-#define SYSCFG_EXTICR3_EXTI8_PA         ((uint16_t)0x0000) /*!<PA[8] pin */
-#define SYSCFG_EXTICR3_EXTI8_PB         ((uint16_t)0x0001) /*!<PB[8] pin */
-#define SYSCFG_EXTICR3_EXTI8_PC         ((uint16_t)0x0002) /*!<PC[8] pin */
-#define SYSCFG_EXTICR3_EXTI8_PD         ((uint16_t)0x0003) /*!<PD[8] pin */
-#define SYSCFG_EXTICR3_EXTI8_PE         ((uint16_t)0x0004) /*!<PE[8] pin */
-#define SYSCFG_EXTICR3_EXTI8_PF         ((uint16_t)0x0005) /*!<PF[8] pin */
-#define SYSCFG_EXTICR3_EXTI8_PG         ((uint16_t)0x0006) /*!<PG[8] pin */
-#define SYSCFG_EXTICR3_EXTI8_PH         ((uint16_t)0x0007) /*!<PH[8] pin */
-#define SYSCFG_EXTICR3_EXTI8_PI         ((uint16_t)0x0008) /*!<PI[8] pin */
-/** 
-  * @brief   EXTI9 configuration  
-  */ 
-#define SYSCFG_EXTICR3_EXTI9_PA         ((uint16_t)0x0000) /*!<PA[9] pin */
-#define SYSCFG_EXTICR3_EXTI9_PB         ((uint16_t)0x0010) /*!<PB[9] pin */
-#define SYSCFG_EXTICR3_EXTI9_PC         ((uint16_t)0x0020) /*!<PC[9] pin */
-#define SYSCFG_EXTICR3_EXTI9_PD         ((uint16_t)0x0030) /*!<PD[9] pin */
-#define SYSCFG_EXTICR3_EXTI9_PE         ((uint16_t)0x0040) /*!<PE[9] pin */
-#define SYSCFG_EXTICR3_EXTI9_PF         ((uint16_t)0x0050) /*!<PF[9] pin */
-#define SYSCFG_EXTICR3_EXTI9_PG         ((uint16_t)0x0060) /*!<PG[9] pin */
-#define SYSCFG_EXTICR3_EXTI9_PH         ((uint16_t)0x0070) /*!<PH[9] pin */
-#define SYSCFG_EXTICR3_EXTI9_PI         ((uint16_t)0x0080) /*!<PI[9] pin */
-/** 
-  * @brief   EXTI10 configuration  
-  */ 
-#define SYSCFG_EXTICR3_EXTI10_PA        ((uint16_t)0x0000) /*!<PA[10] pin */
-#define SYSCFG_EXTICR3_EXTI10_PB        ((uint16_t)0x0100) /*!<PB[10] pin */
-#define SYSCFG_EXTICR3_EXTI10_PC        ((uint16_t)0x0200) /*!<PC[10] pin */
-#define SYSCFG_EXTICR3_EXTI10_PD        ((uint16_t)0x0300) /*!<PD[10] pin */
-#define SYSCFG_EXTICR3_EXTI10_PE        ((uint16_t)0x0400) /*!<PE[10] pin */
-#define SYSCFG_EXTICR3_EXTI10_PF        ((uint16_t)0x0500) /*!<PF[10] pin */
-#define SYSCFG_EXTICR3_EXTI10_PG        ((uint16_t)0x0600) /*!<PG[10] pin */
-#define SYSCFG_EXTICR3_EXTI10_PH        ((uint16_t)0x0700) /*!<PH[10] pin */
-#define SYSCFG_EXTICR3_EXTI10_PI        ((uint16_t)0x0800) /*!<PI[10] pin */
-/** 
-  * @brief   EXTI11 configuration  
-  */ 
-#define SYSCFG_EXTICR3_EXTI11_PA        ((uint16_t)0x0000) /*!<PA[11] pin */
-#define SYSCFG_EXTICR3_EXTI11_PB        ((uint16_t)0x1000) /*!<PB[11] pin */
-#define SYSCFG_EXTICR3_EXTI11_PC        ((uint16_t)0x2000) /*!<PC[11] pin */
-#define SYSCFG_EXTICR3_EXTI11_PD        ((uint16_t)0x3000) /*!<PD[11] pin */
-#define SYSCFG_EXTICR3_EXTI11_PE        ((uint16_t)0x4000) /*!<PE[11] pin */
-#define SYSCFG_EXTICR3_EXTI11_PF        ((uint16_t)0x5000) /*!<PF[11] pin */
-#define SYSCFG_EXTICR3_EXTI11_PG        ((uint16_t)0x6000) /*!<PG[11] pin */
-#define SYSCFG_EXTICR3_EXTI11_PH        ((uint16_t)0x7000) /*!<PH[11] pin */
-#define SYSCFG_EXTICR3_EXTI11_PI        ((uint16_t)0x8000) /*!<PI[11] pin */
-
-/*****************  Bit definition for SYSCFG_EXTICR4 register  ***************/
-#define SYSCFG_EXTICR4_EXTI12           ((uint16_t)0x000F) /*!<EXTI 12 configuration */
-#define SYSCFG_EXTICR4_EXTI13           ((uint16_t)0x00F0) /*!<EXTI 13 configuration */
-#define SYSCFG_EXTICR4_EXTI14           ((uint16_t)0x0F00) /*!<EXTI 14 configuration */
-#define SYSCFG_EXTICR4_EXTI15           ((uint16_t)0xF000) /*!<EXTI 15 configuration */
-/** 
-  * @brief   EXTI12 configuration  
-  */ 
-#define SYSCFG_EXTICR4_EXTI12_PA        ((uint16_t)0x0000) /*!<PA[12] pin */
-#define SYSCFG_EXTICR4_EXTI12_PB        ((uint16_t)0x0001) /*!<PB[12] pin */
-#define SYSCFG_EXTICR4_EXTI12_PC        ((uint16_t)0x0002) /*!<PC[12] pin */
-#define SYSCFG_EXTICR4_EXTI12_PD        ((uint16_t)0x0003) /*!<PD[12] pin */
-#define SYSCFG_EXTICR4_EXTI12_PE        ((uint16_t)0x0004) /*!<PE[12] pin */
-#define SYSCFG_EXTICR4_EXTI12_PF        ((uint16_t)0x0005) /*!<PF[12] pin */
-#define SYSCFG_EXTICR4_EXTI12_PG        ((uint16_t)0x0006) /*!<PG[12] pin */
-#define SYSCFG_EXTICR3_EXTI12_PH        ((uint16_t)0x0007) /*!<PH[12] pin */
-/** 
-  * @brief   EXTI13 configuration  
-  */ 
-#define SYSCFG_EXTICR4_EXTI13_PA        ((uint16_t)0x0000) /*!<PA[13] pin */
-#define SYSCFG_EXTICR4_EXTI13_PB        ((uint16_t)0x0010) /*!<PB[13] pin */
-#define SYSCFG_EXTICR4_EXTI13_PC        ((uint16_t)0x0020) /*!<PC[13] pin */
-#define SYSCFG_EXTICR4_EXTI13_PD        ((uint16_t)0x0030) /*!<PD[13] pin */
-#define SYSCFG_EXTICR4_EXTI13_PE        ((uint16_t)0x0040) /*!<PE[13] pin */
-#define SYSCFG_EXTICR4_EXTI13_PF        ((uint16_t)0x0050) /*!<PF[13] pin */
-#define SYSCFG_EXTICR4_EXTI13_PG        ((uint16_t)0x0060) /*!<PG[13] pin */
-#define SYSCFG_EXTICR3_EXTI13_PH        ((uint16_t)0x0070) /*!<PH[13] pin */
-/** 
-  * @brief   EXTI14 configuration  
-  */ 
-#define SYSCFG_EXTICR4_EXTI14_PA        ((uint16_t)0x0000) /*!<PA[14] pin */
-#define SYSCFG_EXTICR4_EXTI14_PB        ((uint16_t)0x0100) /*!<PB[14] pin */
-#define SYSCFG_EXTICR4_EXTI14_PC        ((uint16_t)0x0200) /*!<PC[14] pin */
-#define SYSCFG_EXTICR4_EXTI14_PD        ((uint16_t)0x0300) /*!<PD[14] pin */
-#define SYSCFG_EXTICR4_EXTI14_PE        ((uint16_t)0x0400) /*!<PE[14] pin */
-#define SYSCFG_EXTICR4_EXTI14_PF        ((uint16_t)0x0500) /*!<PF[14] pin */
-#define SYSCFG_EXTICR4_EXTI14_PG        ((uint16_t)0x0600) /*!<PG[14] pin */
-#define SYSCFG_EXTICR3_EXTI14_PH        ((uint16_t)0x0700) /*!<PH[14] pin */
-/** 
-  * @brief   EXTI15 configuration  
-  */ 
-#define SYSCFG_EXTICR4_EXTI15_PA        ((uint16_t)0x0000) /*!<PA[15] pin */
-#define SYSCFG_EXTICR4_EXTI15_PB        ((uint16_t)0x1000) /*!<PB[15] pin */
-#define SYSCFG_EXTICR4_EXTI15_PC        ((uint16_t)0x2000) /*!<PC[15] pin */
-#define SYSCFG_EXTICR4_EXTI15_PD        ((uint16_t)0x3000) /*!<PD[15] pin */
-#define SYSCFG_EXTICR4_EXTI15_PE        ((uint16_t)0x4000) /*!<PE[15] pin */
-#define SYSCFG_EXTICR4_EXTI15_PF        ((uint16_t)0x5000) /*!<PF[15] pin */
-#define SYSCFG_EXTICR4_EXTI15_PG        ((uint16_t)0x6000) /*!<PG[15] pin */
-#define SYSCFG_EXTICR3_EXTI15_PH        ((uint16_t)0x7000) /*!<PH[15] pin */
-
-/******************  Bit definition for SYSCFG_CMPCR register  ****************/  
-#define SYSCFG_CMPCR_CMP_PD             ((uint32_t)0x00000001) /*!<Compensation cell ready flag */
-#define SYSCFG_CMPCR_READY              ((uint32_t)0x00000100) /*!<Compensation cell power-down */
-
-/******************************************************************************/
-/*                                                                            */
-/*                                    TIM                                     */
-/*                                                                            */
-/******************************************************************************/
-/*******************  Bit definition for TIM_CR1 register  ********************/
-#define  TIM_CR1_CEN                         ((uint16_t)0x0001)            /*!<Counter enable */
-#define  TIM_CR1_UDIS                        ((uint16_t)0x0002)            /*!<Update disable */
-#define  TIM_CR1_URS                         ((uint16_t)0x0004)            /*!<Update request source */
-#define  TIM_CR1_OPM                         ((uint16_t)0x0008)            /*!<One pulse mode */
-#define  TIM_CR1_DIR                         ((uint16_t)0x0010)            /*!<Direction */
-
-#define  TIM_CR1_CMS                         ((uint16_t)0x0060)            /*!<CMS[1:0] bits (Center-aligned mode selection) */
-#define  TIM_CR1_CMS_0                       ((uint16_t)0x0020)            /*!<Bit 0 */
-#define  TIM_CR1_CMS_1                       ((uint16_t)0x0040)            /*!<Bit 1 */
-
-#define  TIM_CR1_ARPE                        ((uint16_t)0x0080)            /*!<Auto-reload preload enable */
-
-#define  TIM_CR1_CKD                         ((uint16_t)0x0300)            /*!<CKD[1:0] bits (clock division) */
-#define  TIM_CR1_CKD_0                       ((uint16_t)0x0100)            /*!<Bit 0 */
-#define  TIM_CR1_CKD_1                       ((uint16_t)0x0200)            /*!<Bit 1 */
-
-/*******************  Bit definition for TIM_CR2 register  ********************/
-#define  TIM_CR2_CCPC                        ((uint16_t)0x0001)            /*!<Capture/Compare Preloaded Control */
-#define  TIM_CR2_CCUS                        ((uint16_t)0x0004)            /*!<Capture/Compare Control Update Selection */
-#define  TIM_CR2_CCDS                        ((uint16_t)0x0008)            /*!<Capture/Compare DMA Selection */
-
-#define  TIM_CR2_MMS                         ((uint16_t)0x0070)            /*!<MMS[2:0] bits (Master Mode Selection) */
-#define  TIM_CR2_MMS_0                       ((uint16_t)0x0010)            /*!<Bit 0 */
-#define  TIM_CR2_MMS_1                       ((uint16_t)0x0020)            /*!<Bit 1 */
-#define  TIM_CR2_MMS_2                       ((uint16_t)0x0040)            /*!<Bit 2 */
-
-#define  TIM_CR2_TI1S                        ((uint16_t)0x0080)            /*!<TI1 Selection */
-#define  TIM_CR2_OIS1                        ((uint16_t)0x0100)            /*!<Output Idle state 1 (OC1 output) */
-#define  TIM_CR2_OIS1N                       ((uint16_t)0x0200)            /*!<Output Idle state 1 (OC1N output) */
-#define  TIM_CR2_OIS2                        ((uint16_t)0x0400)            /*!<Output Idle state 2 (OC2 output) */
-#define  TIM_CR2_OIS2N                       ((uint16_t)0x0800)            /*!<Output Idle state 2 (OC2N output) */
-#define  TIM_CR2_OIS3                        ((uint16_t)0x1000)            /*!<Output Idle state 3 (OC3 output) */
-#define  TIM_CR2_OIS3N                       ((uint16_t)0x2000)            /*!<Output Idle state 3 (OC3N output) */
-#define  TIM_CR2_OIS4                        ((uint16_t)0x4000)            /*!<Output Idle state 4 (OC4 output) */
-
-/*******************  Bit definition for TIM_SMCR register  *******************/
-#define  TIM_SMCR_SMS                        ((uint16_t)0x0007)            /*!<SMS[2:0] bits (Slave mode selection) */
-#define  TIM_SMCR_SMS_0                      ((uint16_t)0x0001)            /*!<Bit 0 */
-#define  TIM_SMCR_SMS_1                      ((uint16_t)0x0002)            /*!<Bit 1 */
-#define  TIM_SMCR_SMS_2                      ((uint16_t)0x0004)            /*!<Bit 2 */
-
-#define  TIM_SMCR_TS                         ((uint16_t)0x0070)            /*!<TS[2:0] bits (Trigger selection) */
-#define  TIM_SMCR_TS_0                       ((uint16_t)0x0010)            /*!<Bit 0 */
-#define  TIM_SMCR_TS_1                       ((uint16_t)0x0020)            /*!<Bit 1 */
-#define  TIM_SMCR_TS_2                       ((uint16_t)0x0040)            /*!<Bit 2 */
-
-#define  TIM_SMCR_MSM                        ((uint16_t)0x0080)            /*!<Master/slave mode */
-
-#define  TIM_SMCR_ETF                        ((uint16_t)0x0F00)            /*!<ETF[3:0] bits (External trigger filter) */
-#define  TIM_SMCR_ETF_0                      ((uint16_t)0x0100)            /*!<Bit 0 */
-#define  TIM_SMCR_ETF_1                      ((uint16_t)0x0200)            /*!<Bit 1 */
-#define  TIM_SMCR_ETF_2                      ((uint16_t)0x0400)            /*!<Bit 2 */
-#define  TIM_SMCR_ETF_3                      ((uint16_t)0x0800)            /*!<Bit 3 */
-
-#define  TIM_SMCR_ETPS                       ((uint16_t)0x3000)            /*!<ETPS[1:0] bits (External trigger prescaler) */
-#define  TIM_SMCR_ETPS_0                     ((uint16_t)0x1000)            /*!<Bit 0 */
-#define  TIM_SMCR_ETPS_1                     ((uint16_t)0x2000)            /*!<Bit 1 */
-
-#define  TIM_SMCR_ECE                        ((uint16_t)0x4000)            /*!<External clock enable */
-#define  TIM_SMCR_ETP                        ((uint16_t)0x8000)            /*!<External trigger polarity */
-
-/*******************  Bit definition for TIM_DIER register  *******************/
-#define  TIM_DIER_UIE                        ((uint16_t)0x0001)            /*!<Update interrupt enable */
-#define  TIM_DIER_CC1IE                      ((uint16_t)0x0002)            /*!<Capture/Compare 1 interrupt enable */
-#define  TIM_DIER_CC2IE                      ((uint16_t)0x0004)            /*!<Capture/Compare 2 interrupt enable */
-#define  TIM_DIER_CC3IE                      ((uint16_t)0x0008)            /*!<Capture/Compare 3 interrupt enable */
-#define  TIM_DIER_CC4IE                      ((uint16_t)0x0010)            /*!<Capture/Compare 4 interrupt enable */
-#define  TIM_DIER_COMIE                      ((uint16_t)0x0020)            /*!<COM interrupt enable */
-#define  TIM_DIER_TIE                        ((uint16_t)0x0040)            /*!<Trigger interrupt enable */
-#define  TIM_DIER_BIE                        ((uint16_t)0x0080)            /*!<Break interrupt enable */
-#define  TIM_DIER_UDE                        ((uint16_t)0x0100)            /*!<Update DMA request enable */
-#define  TIM_DIER_CC1DE                      ((uint16_t)0x0200)            /*!<Capture/Compare 1 DMA request enable */
-#define  TIM_DIER_CC2DE                      ((uint16_t)0x0400)            /*!<Capture/Compare 2 DMA request enable */
-#define  TIM_DIER_CC3DE                      ((uint16_t)0x0800)            /*!<Capture/Compare 3 DMA request enable */
-#define  TIM_DIER_CC4DE                      ((uint16_t)0x1000)            /*!<Capture/Compare 4 DMA request enable */
-#define  TIM_DIER_COMDE                      ((uint16_t)0x2000)            /*!<COM DMA request enable */
-#define  TIM_DIER_TDE                        ((uint16_t)0x4000)            /*!<Trigger DMA request enable */
-
-/********************  Bit definition for TIM_SR register  ********************/
-#define  TIM_SR_UIF                          ((uint16_t)0x0001)            /*!<Update interrupt Flag */
-#define  TIM_SR_CC1IF                        ((uint16_t)0x0002)            /*!<Capture/Compare 1 interrupt Flag */
-#define  TIM_SR_CC2IF                        ((uint16_t)0x0004)            /*!<Capture/Compare 2 interrupt Flag */
-#define  TIM_SR_CC3IF                        ((uint16_t)0x0008)            /*!<Capture/Compare 3 interrupt Flag */
-#define  TIM_SR_CC4IF                        ((uint16_t)0x0010)            /*!<Capture/Compare 4 interrupt Flag */
-#define  TIM_SR_COMIF                        ((uint16_t)0x0020)            /*!<COM interrupt Flag */
-#define  TIM_SR_TIF                          ((uint16_t)0x0040)            /*!<Trigger interrupt Flag */
-#define  TIM_SR_BIF                          ((uint16_t)0x0080)            /*!<Break interrupt Flag */
-#define  TIM_SR_CC1OF                        ((uint16_t)0x0200)            /*!<Capture/Compare 1 Overcapture Flag */
-#define  TIM_SR_CC2OF                        ((uint16_t)0x0400)            /*!<Capture/Compare 2 Overcapture Flag */
-#define  TIM_SR_CC3OF                        ((uint16_t)0x0800)            /*!<Capture/Compare 3 Overcapture Flag */
-#define  TIM_SR_CC4OF                        ((uint16_t)0x1000)            /*!<Capture/Compare 4 Overcapture Flag */
-
-/*******************  Bit definition for TIM_EGR register  ********************/
-#define  TIM_EGR_UG                          ((uint8_t)0x01)               /*!<Update Generation */
-#define  TIM_EGR_CC1G                        ((uint8_t)0x02)               /*!<Capture/Compare 1 Generation */
-#define  TIM_EGR_CC2G                        ((uint8_t)0x04)               /*!<Capture/Compare 2 Generation */
-#define  TIM_EGR_CC3G                        ((uint8_t)0x08)               /*!<Capture/Compare 3 Generation */
-#define  TIM_EGR_CC4G                        ((uint8_t)0x10)               /*!<Capture/Compare 4 Generation */
-#define  TIM_EGR_COMG                        ((uint8_t)0x20)               /*!<Capture/Compare Control Update Generation */
-#define  TIM_EGR_TG                          ((uint8_t)0x40)               /*!<Trigger Generation */
-#define  TIM_EGR_BG                          ((uint8_t)0x80)               /*!<Break Generation */
-
-/******************  Bit definition for TIM_CCMR1 register  *******************/
-#define  TIM_CCMR1_CC1S                      ((uint16_t)0x0003)            /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */
-#define  TIM_CCMR1_CC1S_0                    ((uint16_t)0x0001)            /*!<Bit 0 */
-#define  TIM_CCMR1_CC1S_1                    ((uint16_t)0x0002)            /*!<Bit 1 */
-
-#define  TIM_CCMR1_OC1FE                     ((uint16_t)0x0004)            /*!<Output Compare 1 Fast enable */
-#define  TIM_CCMR1_OC1PE                     ((uint16_t)0x0008)            /*!<Output Compare 1 Preload enable */
-
-#define  TIM_CCMR1_OC1M                      ((uint16_t)0x0070)            /*!<OC1M[2:0] bits (Output Compare 1 Mode) */
-#define  TIM_CCMR1_OC1M_0                    ((uint16_t)0x0010)            /*!<Bit 0 */
-#define  TIM_CCMR1_OC1M_1                    ((uint16_t)0x0020)            /*!<Bit 1 */
-#define  TIM_CCMR1_OC1M_2                    ((uint16_t)0x0040)            /*!<Bit 2 */
-
-#define  TIM_CCMR1_OC1CE                     ((uint16_t)0x0080)            /*!<Output Compare 1Clear Enable */
-
-#define  TIM_CCMR1_CC2S                      ((uint16_t)0x0300)            /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */
-#define  TIM_CCMR1_CC2S_0                    ((uint16_t)0x0100)            /*!<Bit 0 */
-#define  TIM_CCMR1_CC2S_1                    ((uint16_t)0x0200)            /*!<Bit 1 */
-
-#define  TIM_CCMR1_OC2FE                     ((uint16_t)0x0400)            /*!<Output Compare 2 Fast enable */
-#define  TIM_CCMR1_OC2PE                     ((uint16_t)0x0800)            /*!<Output Compare 2 Preload enable */
-
-#define  TIM_CCMR1_OC2M                      ((uint16_t)0x7000)            /*!<OC2M[2:0] bits (Output Compare 2 Mode) */
-#define  TIM_CCMR1_OC2M_0                    ((uint16_t)0x1000)            /*!<Bit 0 */
-#define  TIM_CCMR1_OC2M_1                    ((uint16_t)0x2000)            /*!<Bit 1 */
-#define  TIM_CCMR1_OC2M_2                    ((uint16_t)0x4000)            /*!<Bit 2 */
-
-#define  TIM_CCMR1_OC2CE                     ((uint16_t)0x8000)            /*!<Output Compare 2 Clear Enable */
-
-/*----------------------------------------------------------------------------*/
-
-#define  TIM_CCMR1_IC1PSC                    ((uint16_t)0x000C)            /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */
-#define  TIM_CCMR1_IC1PSC_0                  ((uint16_t)0x0004)            /*!<Bit 0 */
-#define  TIM_CCMR1_IC1PSC_1                  ((uint16_t)0x0008)            /*!<Bit 1 */
-
-#define  TIM_CCMR1_IC1F                      ((uint16_t)0x00F0)            /*!<IC1F[3:0] bits (Input Capture 1 Filter) */
-#define  TIM_CCMR1_IC1F_0                    ((uint16_t)0x0010)            /*!<Bit 0 */
-#define  TIM_CCMR1_IC1F_1                    ((uint16_t)0x0020)            /*!<Bit 1 */
-#define  TIM_CCMR1_IC1F_2                    ((uint16_t)0x0040)            /*!<Bit 2 */
-#define  TIM_CCMR1_IC1F_3                    ((uint16_t)0x0080)            /*!<Bit 3 */
-
-#define  TIM_CCMR1_IC2PSC                    ((uint16_t)0x0C00)            /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */
-#define  TIM_CCMR1_IC2PSC_0                  ((uint16_t)0x0400)            /*!<Bit 0 */
-#define  TIM_CCMR1_IC2PSC_1                  ((uint16_t)0x0800)            /*!<Bit 1 */
-
-#define  TIM_CCMR1_IC2F                      ((uint16_t)0xF000)            /*!<IC2F[3:0] bits (Input Capture 2 Filter) */
-#define  TIM_CCMR1_IC2F_0                    ((uint16_t)0x1000)            /*!<Bit 0 */
-#define  TIM_CCMR1_IC2F_1                    ((uint16_t)0x2000)            /*!<Bit 1 */
-#define  TIM_CCMR1_IC2F_2                    ((uint16_t)0x4000)            /*!<Bit 2 */
-#define  TIM_CCMR1_IC2F_3                    ((uint16_t)0x8000)            /*!<Bit 3 */
-
-/******************  Bit definition for TIM_CCMR2 register  *******************/
-#define  TIM_CCMR2_CC3S                      ((uint16_t)0x0003)            /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */
-#define  TIM_CCMR2_CC3S_0                    ((uint16_t)0x0001)            /*!<Bit 0 */
-#define  TIM_CCMR2_CC3S_1                    ((uint16_t)0x0002)            /*!<Bit 1 */
-
-#define  TIM_CCMR2_OC3FE                     ((uint16_t)0x0004)            /*!<Output Compare 3 Fast enable */
-#define  TIM_CCMR2_OC3PE                     ((uint16_t)0x0008)            /*!<Output Compare 3 Preload enable */
-
-#define  TIM_CCMR2_OC3M                      ((uint16_t)0x0070)            /*!<OC3M[2:0] bits (Output Compare 3 Mode) */
-#define  TIM_CCMR2_OC3M_0                    ((uint16_t)0x0010)            /*!<Bit 0 */
-#define  TIM_CCMR2_OC3M_1                    ((uint16_t)0x0020)            /*!<Bit 1 */
-#define  TIM_CCMR2_OC3M_2                    ((uint16_t)0x0040)            /*!<Bit 2 */
-
-#define  TIM_CCMR2_OC3CE                     ((uint16_t)0x0080)            /*!<Output Compare 3 Clear Enable */
-
-#define  TIM_CCMR2_CC4S                      ((uint16_t)0x0300)            /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */
-#define  TIM_CCMR2_CC4S_0                    ((uint16_t)0x0100)            /*!<Bit 0 */
-#define  TIM_CCMR2_CC4S_1                    ((uint16_t)0x0200)            /*!<Bit 1 */
-
-#define  TIM_CCMR2_OC4FE                     ((uint16_t)0x0400)            /*!<Output Compare 4 Fast enable */
-#define  TIM_CCMR2_OC4PE                     ((uint16_t)0x0800)            /*!<Output Compare 4 Preload enable */
-
-#define  TIM_CCMR2_OC4M                      ((uint16_t)0x7000)            /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
-#define  TIM_CCMR2_OC4M_0                    ((uint16_t)0x1000)            /*!<Bit 0 */
-#define  TIM_CCMR2_OC4M_1                    ((uint16_t)0x2000)            /*!<Bit 1 */
-#define  TIM_CCMR2_OC4M_2                    ((uint16_t)0x4000)            /*!<Bit 2 */
-
-#define  TIM_CCMR2_OC4CE                     ((uint16_t)0x8000)            /*!<Output Compare 4 Clear Enable */
-
-/*----------------------------------------------------------------------------*/
-
-#define  TIM_CCMR2_IC3PSC                    ((uint16_t)0x000C)            /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */
-#define  TIM_CCMR2_IC3PSC_0                  ((uint16_t)0x0004)            /*!<Bit 0 */
-#define  TIM_CCMR2_IC3PSC_1                  ((uint16_t)0x0008)            /*!<Bit 1 */
-
-#define  TIM_CCMR2_IC3F                      ((uint16_t)0x00F0)            /*!<IC3F[3:0] bits (Input Capture 3 Filter) */
-#define  TIM_CCMR2_IC3F_0                    ((uint16_t)0x0010)            /*!<Bit 0 */
-#define  TIM_CCMR2_IC3F_1                    ((uint16_t)0x0020)            /*!<Bit 1 */
-#define  TIM_CCMR2_IC3F_2                    ((uint16_t)0x0040)            /*!<Bit 2 */
-#define  TIM_CCMR2_IC3F_3                    ((uint16_t)0x0080)            /*!<Bit 3 */
-
-#define  TIM_CCMR2_IC4PSC                    ((uint16_t)0x0C00)            /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */
-#define  TIM_CCMR2_IC4PSC_0                  ((uint16_t)0x0400)            /*!<Bit 0 */
-#define  TIM_CCMR2_IC4PSC_1                  ((uint16_t)0x0800)            /*!<Bit 1 */
-
-#define  TIM_CCMR2_IC4F                      ((uint16_t)0xF000)            /*!<IC4F[3:0] bits (Input Capture 4 Filter) */
-#define  TIM_CCMR2_IC4F_0                    ((uint16_t)0x1000)            /*!<Bit 0 */
-#define  TIM_CCMR2_IC4F_1                    ((uint16_t)0x2000)            /*!<Bit 1 */
-#define  TIM_CCMR2_IC4F_2                    ((uint16_t)0x4000)            /*!<Bit 2 */
-#define  TIM_CCMR2_IC4F_3                    ((uint16_t)0x8000)            /*!<Bit 3 */
-
-/*******************  Bit definition for TIM_CCER register  *******************/
-#define  TIM_CCER_CC1E                       ((uint16_t)0x0001)            /*!<Capture/Compare 1 output enable */
-#define  TIM_CCER_CC1P                       ((uint16_t)0x0002)            /*!<Capture/Compare 1 output Polarity */
-#define  TIM_CCER_CC1NE                      ((uint16_t)0x0004)            /*!<Capture/Compare 1 Complementary output enable */
-#define  TIM_CCER_CC1NP                      ((uint16_t)0x0008)            /*!<Capture/Compare 1 Complementary output Polarity */
-#define  TIM_CCER_CC2E                       ((uint16_t)0x0010)            /*!<Capture/Compare 2 output enable */
-#define  TIM_CCER_CC2P                       ((uint16_t)0x0020)            /*!<Capture/Compare 2 output Polarity */
-#define  TIM_CCER_CC2NE                      ((uint16_t)0x0040)            /*!<Capture/Compare 2 Complementary output enable */
-#define  TIM_CCER_CC2NP                      ((uint16_t)0x0080)            /*!<Capture/Compare 2 Complementary output Polarity */
-#define  TIM_CCER_CC3E                       ((uint16_t)0x0100)            /*!<Capture/Compare 3 output enable */
-#define  TIM_CCER_CC3P                       ((uint16_t)0x0200)            /*!<Capture/Compare 3 output Polarity */
-#define  TIM_CCER_CC3NE                      ((uint16_t)0x0400)            /*!<Capture/Compare 3 Complementary output enable */
-#define  TIM_CCER_CC3NP                      ((uint16_t)0x0800)            /*!<Capture/Compare 3 Complementary output Polarity */
-#define  TIM_CCER_CC4E                       ((uint16_t)0x1000)            /*!<Capture/Compare 4 output enable */
-#define  TIM_CCER_CC4P                       ((uint16_t)0x2000)            /*!<Capture/Compare 4 output Polarity */
-#define  TIM_CCER_CC4NP                      ((uint16_t)0x8000)            /*!<Capture/Compare 4 Complementary output Polarity */
-
-/*******************  Bit definition for TIM_CNT register  ********************/
-#define  TIM_CNT_CNT                         ((uint16_t)0xFFFF)            /*!<Counter Value */
-
-/*******************  Bit definition for TIM_PSC register  ********************/
-#define  TIM_PSC_PSC                         ((uint16_t)0xFFFF)            /*!<Prescaler Value */
-
-/*******************  Bit definition for TIM_ARR register  ********************/
-#define  TIM_ARR_ARR                         ((uint16_t)0xFFFF)            /*!<actual auto-reload Value */
-
-/*******************  Bit definition for TIM_RCR register  ********************/
-#define  TIM_RCR_REP                         ((uint8_t)0xFF)               /*!<Repetition Counter Value */
-
-/*******************  Bit definition for TIM_CCR1 register  *******************/
-#define  TIM_CCR1_CCR1                       ((uint16_t)0xFFFF)            /*!<Capture/Compare 1 Value */
-
-/*******************  Bit definition for TIM_CCR2 register  *******************/
-#define  TIM_CCR2_CCR2                       ((uint16_t)0xFFFF)            /*!<Capture/Compare 2 Value */
-
-/*******************  Bit definition for TIM_CCR3 register  *******************/
-#define  TIM_CCR3_CCR3                       ((uint16_t)0xFFFF)            /*!<Capture/Compare 3 Value */
-
-/*******************  Bit definition for TIM_CCR4 register  *******************/
-#define  TIM_CCR4_CCR4                       ((uint16_t)0xFFFF)            /*!<Capture/Compare 4 Value */
-
-/*******************  Bit definition for TIM_BDTR register  *******************/
-#define  TIM_BDTR_DTG                        ((uint16_t)0x00FF)            /*!<DTG[0:7] bits (Dead-Time Generator set-up) */
-#define  TIM_BDTR_DTG_0                      ((uint16_t)0x0001)            /*!<Bit 0 */
-#define  TIM_BDTR_DTG_1                      ((uint16_t)0x0002)            /*!<Bit 1 */
-#define  TIM_BDTR_DTG_2                      ((uint16_t)0x0004)            /*!<Bit 2 */
-#define  TIM_BDTR_DTG_3                      ((uint16_t)0x0008)            /*!<Bit 3 */
-#define  TIM_BDTR_DTG_4                      ((uint16_t)0x0010)            /*!<Bit 4 */
-#define  TIM_BDTR_DTG_5                      ((uint16_t)0x0020)            /*!<Bit 5 */
-#define  TIM_BDTR_DTG_6                      ((uint16_t)0x0040)            /*!<Bit 6 */
-#define  TIM_BDTR_DTG_7                      ((uint16_t)0x0080)            /*!<Bit 7 */
-
-#define  TIM_BDTR_LOCK                       ((uint16_t)0x0300)            /*!<LOCK[1:0] bits (Lock Configuration) */
-#define  TIM_BDTR_LOCK_0                     ((uint16_t)0x0100)            /*!<Bit 0 */
-#define  TIM_BDTR_LOCK_1                     ((uint16_t)0x0200)            /*!<Bit 1 */
-
-#define  TIM_BDTR_OSSI                       ((uint16_t)0x0400)            /*!<Off-State Selection for Idle mode */
-#define  TIM_BDTR_OSSR                       ((uint16_t)0x0800)            /*!<Off-State Selection for Run mode */
-#define  TIM_BDTR_BKE                        ((uint16_t)0x1000)            /*!<Break enable */
-#define  TIM_BDTR_BKP                        ((uint16_t)0x2000)            /*!<Break Polarity */
-#define  TIM_BDTR_AOE                        ((uint16_t)0x4000)            /*!<Automatic Output enable */
-#define  TIM_BDTR_MOE                        ((uint16_t)0x8000)            /*!<Main Output enable */
-
-/*******************  Bit definition for TIM_DCR register  ********************/
-#define  TIM_DCR_DBA                         ((uint16_t)0x001F)            /*!<DBA[4:0] bits (DMA Base Address) */
-#define  TIM_DCR_DBA_0                       ((uint16_t)0x0001)            /*!<Bit 0 */
-#define  TIM_DCR_DBA_1                       ((uint16_t)0x0002)            /*!<Bit 1 */
-#define  TIM_DCR_DBA_2                       ((uint16_t)0x0004)            /*!<Bit 2 */
-#define  TIM_DCR_DBA_3                       ((uint16_t)0x0008)            /*!<Bit 3 */
-#define  TIM_DCR_DBA_4                       ((uint16_t)0x0010)            /*!<Bit 4 */
-
-#define  TIM_DCR_DBL                         ((uint16_t)0x1F00)            /*!<DBL[4:0] bits (DMA Burst Length) */
-#define  TIM_DCR_DBL_0                       ((uint16_t)0x0100)            /*!<Bit 0 */
-#define  TIM_DCR_DBL_1                       ((uint16_t)0x0200)            /*!<Bit 1 */
-#define  TIM_DCR_DBL_2                       ((uint16_t)0x0400)            /*!<Bit 2 */
-#define  TIM_DCR_DBL_3                       ((uint16_t)0x0800)            /*!<Bit 3 */
-#define  TIM_DCR_DBL_4                       ((uint16_t)0x1000)            /*!<Bit 4 */
-
-/*******************  Bit definition for TIM_DMAR register  *******************/
-#define  TIM_DMAR_DMAB                       ((uint16_t)0xFFFF)            /*!<DMA register for burst accesses */
-
-/*******************  Bit definition for TIM_OR register  *********************/
-#define TIM_OR_TI4_RMP                       ((uint16_t)0x00C0)            /*!<TI4_RMP[1:0] bits (TIM5 Input 4 remap) */
-#define TIM_OR_TI4_RMP_0                     ((uint16_t)0x0040)            /*!<Bit 0 */
-#define TIM_OR_TI4_RMP_1                     ((uint16_t)0x0080)            /*!<Bit 1 */
-#define TIM_OR_ITR1_RMP                      ((uint16_t)0x0C00)            /*!<ITR1_RMP[1:0] bits (TIM2 Internal trigger 1 remap) */
-#define TIM_OR_ITR1_RMP_0                    ((uint16_t)0x0400)            /*!<Bit 0 */
-#define TIM_OR_ITR1_RMP_1                    ((uint16_t)0x0800)            /*!<Bit 1 */
-
-
-/******************************************************************************/
-/*                                                                            */
-/*         Universal Synchronous Asynchronous Receiver Transmitter            */
-/*                                                                            */
-/******************************************************************************/
-/*******************  Bit definition for USART_SR register  *******************/
-#define  USART_SR_PE                         ((uint16_t)0x0001)            /*!<Parity Error */
-#define  USART_SR_FE                         ((uint16_t)0x0002)            /*!<Framing Error */
-#define  USART_SR_NE                         ((uint16_t)0x0004)            /*!<Noise Error Flag */
-#define  USART_SR_ORE                        ((uint16_t)0x0008)            /*!<OverRun Error */
-#define  USART_SR_IDLE                       ((uint16_t)0x0010)            /*!<IDLE line detected */
-#define  USART_SR_RXNE                       ((uint16_t)0x0020)            /*!<Read Data Register Not Empty */
-#define  USART_SR_TC                         ((uint16_t)0x0040)            /*!<Transmission Complete */
-#define  USART_SR_TXE                        ((uint16_t)0x0080)            /*!<Transmit Data Register Empty */
-#define  USART_SR_LBD                        ((uint16_t)0x0100)            /*!<LIN Break Detection Flag */
-#define  USART_SR_CTS                        ((uint16_t)0x0200)            /*!<CTS Flag */
-
-/*******************  Bit definition for USART_DR register  *******************/
-#define  USART_DR_DR                         ((uint16_t)0x01FF)            /*!<Data value */
-
-/******************  Bit definition for USART_BRR register  *******************/
-#define  USART_BRR_DIV_Fraction              ((uint16_t)0x000F)            /*!<Fraction of USARTDIV */
-#define  USART_BRR_DIV_Mantissa              ((uint16_t)0xFFF0)            /*!<Mantissa of USARTDIV */
-
-/******************  Bit definition for USART_CR1 register  *******************/
-#define  USART_CR1_SBK                       ((uint16_t)0x0001)            /*!<Send Break */
-#define  USART_CR1_RWU                       ((uint16_t)0x0002)            /*!<Receiver wakeup */
-#define  USART_CR1_RE                        ((uint16_t)0x0004)            /*!<Receiver Enable */
-#define  USART_CR1_TE                        ((uint16_t)0x0008)            /*!<Transmitter Enable */
-#define  USART_CR1_IDLEIE                    ((uint16_t)0x0010)            /*!<IDLE Interrupt Enable */
-#define  USART_CR1_RXNEIE                    ((uint16_t)0x0020)            /*!<RXNE Interrupt Enable */
-#define  USART_CR1_TCIE                      ((uint16_t)0x0040)            /*!<Transmission Complete Interrupt Enable */
-#define  USART_CR1_TXEIE                     ((uint16_t)0x0080)            /*!<PE Interrupt Enable */
-#define  USART_CR1_PEIE                      ((uint16_t)0x0100)            /*!<PE Interrupt Enable */
-#define  USART_CR1_PS                        ((uint16_t)0x0200)            /*!<Parity Selection */
-#define  USART_CR1_PCE                       ((uint16_t)0x0400)            /*!<Parity Control Enable */
-#define  USART_CR1_WAKE                      ((uint16_t)0x0800)            /*!<Wakeup method */
-#define  USART_CR1_M                         ((uint16_t)0x1000)            /*!<Word length */
-#define  USART_CR1_UE                        ((uint16_t)0x2000)            /*!<USART Enable */
-#define  USART_CR1_OVER8                     ((uint16_t)0x8000)            /*!<USART Oversampling by 8 enable */
-
-/******************  Bit definition for USART_CR2 register  *******************/
-#define  USART_CR2_ADD                       ((uint16_t)0x000F)            /*!<Address of the USART node */
-#define  USART_CR2_LBDL                      ((uint16_t)0x0020)            /*!<LIN Break Detection Length */
-#define  USART_CR2_LBDIE                     ((uint16_t)0x0040)            /*!<LIN Break Detection Interrupt Enable */
-#define  USART_CR2_LBCL                      ((uint16_t)0x0100)            /*!<Last Bit Clock pulse */
-#define  USART_CR2_CPHA                      ((uint16_t)0x0200)            /*!<Clock Phase */
-#define  USART_CR2_CPOL                      ((uint16_t)0x0400)            /*!<Clock Polarity */
-#define  USART_CR2_CLKEN                     ((uint16_t)0x0800)            /*!<Clock Enable */
-
-#define  USART_CR2_STOP                      ((uint16_t)0x3000)            /*!<STOP[1:0] bits (STOP bits) */
-#define  USART_CR2_STOP_0                    ((uint16_t)0x1000)            /*!<Bit 0 */
-#define  USART_CR2_STOP_1                    ((uint16_t)0x2000)            /*!<Bit 1 */
-
-#define  USART_CR2_LINEN                     ((uint16_t)0x4000)            /*!<LIN mode enable */
-
-/******************  Bit definition for USART_CR3 register  *******************/
-#define  USART_CR3_EIE                       ((uint16_t)0x0001)            /*!<Error Interrupt Enable */
-#define  USART_CR3_IREN                      ((uint16_t)0x0002)            /*!<IrDA mode Enable */
-#define  USART_CR3_IRLP                      ((uint16_t)0x0004)            /*!<IrDA Low-Power */
-#define  USART_CR3_HDSEL                     ((uint16_t)0x0008)            /*!<Half-Duplex Selection */
-#define  USART_CR3_NACK                      ((uint16_t)0x0010)            /*!<Smartcard NACK enable */
-#define  USART_CR3_SCEN                      ((uint16_t)0x0020)            /*!<Smartcard mode enable */
-#define  USART_CR3_DMAR                      ((uint16_t)0x0040)            /*!<DMA Enable Receiver */
-#define  USART_CR3_DMAT                      ((uint16_t)0x0080)            /*!<DMA Enable Transmitter */
-#define  USART_CR3_RTSE                      ((uint16_t)0x0100)            /*!<RTS Enable */
-#define  USART_CR3_CTSE                      ((uint16_t)0x0200)            /*!<CTS Enable */
-#define  USART_CR3_CTSIE                     ((uint16_t)0x0400)            /*!<CTS Interrupt Enable */
-#define  USART_CR3_ONEBIT                    ((uint16_t)0x0800)            /*!<USART One bit method enable */
-
-/******************  Bit definition for USART_GTPR register  ******************/
-#define  USART_GTPR_PSC                      ((uint16_t)0x00FF)            /*!<PSC[7:0] bits (Prescaler value) */
-#define  USART_GTPR_PSC_0                    ((uint16_t)0x0001)            /*!<Bit 0 */
-#define  USART_GTPR_PSC_1                    ((uint16_t)0x0002)            /*!<Bit 1 */
-#define  USART_GTPR_PSC_2                    ((uint16_t)0x0004)            /*!<Bit 2 */
-#define  USART_GTPR_PSC_3                    ((uint16_t)0x0008)            /*!<Bit 3 */
-#define  USART_GTPR_PSC_4                    ((uint16_t)0x0010)            /*!<Bit 4 */
-#define  USART_GTPR_PSC_5                    ((uint16_t)0x0020)            /*!<Bit 5 */
-#define  USART_GTPR_PSC_6                    ((uint16_t)0x0040)            /*!<Bit 6 */
-#define  USART_GTPR_PSC_7                    ((uint16_t)0x0080)            /*!<Bit 7 */
-
-#define  USART_GTPR_GT                       ((uint16_t)0xFF00)            /*!<Guard time value */
-
-/******************************************************************************/
-/*                                                                            */
-/*                            Window WATCHDOG                                 */
-/*                                                                            */
-/******************************************************************************/
-/*******************  Bit definition for WWDG_CR register  ********************/
-#define  WWDG_CR_T                           ((uint8_t)0x7F)               /*!<T[6:0] bits (7-Bit counter (MSB to LSB)) */
-#define  WWDG_CR_T0                          ((uint8_t)0x01)               /*!<Bit 0 */
-#define  WWDG_CR_T1                          ((uint8_t)0x02)               /*!<Bit 1 */
-#define  WWDG_CR_T2                          ((uint8_t)0x04)               /*!<Bit 2 */
-#define  WWDG_CR_T3                          ((uint8_t)0x08)               /*!<Bit 3 */
-#define  WWDG_CR_T4                          ((uint8_t)0x10)               /*!<Bit 4 */
-#define  WWDG_CR_T5                          ((uint8_t)0x20)               /*!<Bit 5 */
-#define  WWDG_CR_T6                          ((uint8_t)0x40)               /*!<Bit 6 */
-
-#define  WWDG_CR_WDGA                        ((uint8_t)0x80)               /*!<Activation bit */
-
-/*******************  Bit definition for WWDG_CFR register  *******************/
-#define  WWDG_CFR_W                          ((uint16_t)0x007F)            /*!<W[6:0] bits (7-bit window value) */
-#define  WWDG_CFR_W0                         ((uint16_t)0x0001)            /*!<Bit 0 */
-#define  WWDG_CFR_W1                         ((uint16_t)0x0002)            /*!<Bit 1 */
-#define  WWDG_CFR_W2                         ((uint16_t)0x0004)            /*!<Bit 2 */
-#define  WWDG_CFR_W3                         ((uint16_t)0x0008)            /*!<Bit 3 */
-#define  WWDG_CFR_W4                         ((uint16_t)0x0010)            /*!<Bit 4 */
-#define  WWDG_CFR_W5                         ((uint16_t)0x0020)            /*!<Bit 5 */
-#define  WWDG_CFR_W6                         ((uint16_t)0x0040)            /*!<Bit 6 */
-
-#define  WWDG_CFR_WDGTB                      ((uint16_t)0x0180)            /*!<WDGTB[1:0] bits (Timer Base) */
-#define  WWDG_CFR_WDGTB0                     ((uint16_t)0x0080)            /*!<Bit 0 */
-#define  WWDG_CFR_WDGTB1                     ((uint16_t)0x0100)            /*!<Bit 1 */
-
-#define  WWDG_CFR_EWI                        ((uint16_t)0x0200)            /*!<Early Wakeup Interrupt */
-
-/*******************  Bit definition for WWDG_SR register  ********************/
-#define  WWDG_SR_EWIF                        ((uint8_t)0x01)               /*!<Early Wakeup Interrupt Flag */
-
-
-/******************************************************************************/
-/*                                                                            */
-/*                                DBG                                         */
-/*                                                                            */
-/******************************************************************************/
-/********************  Bit definition for DBGMCU_IDCODE register  *************/
-#define  DBGMCU_IDCODE_DEV_ID                ((uint32_t)0x00000FFF)
-#define  DBGMCU_IDCODE_REV_ID                ((uint32_t)0xFFFF0000)
-
-/********************  Bit definition for DBGMCU_CR register  *****************/
-#define  DBGMCU_CR_DBG_SLEEP                 ((uint32_t)0x00000001)
-#define  DBGMCU_CR_DBG_STOP                  ((uint32_t)0x00000002)
-#define  DBGMCU_CR_DBG_STANDBY               ((uint32_t)0x00000004)
-#define  DBGMCU_CR_TRACE_IOEN                ((uint32_t)0x00000020)
-
-#define  DBGMCU_CR_TRACE_MODE                ((uint32_t)0x000000C0)
-#define  DBGMCU_CR_TRACE_MODE_0              ((uint32_t)0x00000040)/*!<Bit 0 */
-#define  DBGMCU_CR_TRACE_MODE_1              ((uint32_t)0x00000080)/*!<Bit 1 */
-
-/********************  Bit definition for DBGMCU_APB1_FZ register  ************/
-#define  DBGMCU_APB1_FZ_DBG_TIM2_STOP        ((uint32_t)0x00000001)
-#define  DBGMCU_APB1_FZ_DBG_TIM3_STOP        ((uint32_t)0x00000002)
-#define  DBGMCU_APB1_FZ_DBG_TIM4_STOP        ((uint32_t)0x00000004)
-#define  DBGMCU_APB1_FZ_DBG_TIM5_STOP        ((uint32_t)0x00000008)
-#define  DBGMCU_APB1_FZ_DBG_TIM6_STOP        ((uint32_t)0x00000010)
-#define  DBGMCU_APB1_FZ_DBG_TIM7_STOP        ((uint32_t)0x00000020)
-#define  DBGMCU_APB1_FZ_DBG_TIM12_STOP       ((uint32_t)0x00000040)
-#define  DBGMCU_APB1_FZ_DBG_TIM13_STOP       ((uint32_t)0x00000080)
-#define  DBGMCU_APB1_FZ_DBG_TIM14_STOP       ((uint32_t)0x00000100)
-#define  DBGMCU_APB1_FZ_DBG_RTC_STOP         ((uint32_t)0x00000400)
-#define  DBGMCU_APB1_FZ_DBG_WWDG_STOP        ((uint32_t)0x00000800)
-#define  DBGMCU_APB1_FZ_DBG_IWDG_STOP        ((uint32_t)0x00001000)
-#define  DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT   ((uint32_t)0x00200000)
-#define  DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT   ((uint32_t)0x00400000)
-#define  DBGMCU_APB1_FZ_DBG_I2C3_SMBUS_TIMEOUT   ((uint32_t)0x00800000)
-#define  DBGMCU_APB1_FZ_DBG_CAN1_STOP            ((uint32_t)0x02000000)
-#define  DBGMCU_APB1_FZ_DBG_CAN2_STOP            ((uint32_t)0x04000000)
-
-/********************  Bit definition for DBGMCU_APB2_FZ register  ************/
-#define  DBGMCU_APB1_FZ_DBG_TIM1_STOP        ((uint32_t)0x00000001)
-#define  DBGMCU_APB1_FZ_DBG_TIM8_STOP        ((uint32_t)0x00000002)
-#define  DBGMCU_APB1_FZ_DBG_TIM9_STOP        ((uint32_t)0x00010000)
-#define  DBGMCU_APB1_FZ_DBG_TIM10_STOP       ((uint32_t)0x00020000)
-#define  DBGMCU_APB1_FZ_DBG_TIM11_STOP       ((uint32_t)0x00040000)
-
-/******************************************************************************/
-/*                                                                            */
-/*                Ethernet MAC Registers bits definitions                     */
-/*                                                                            */
-/******************************************************************************/
-/* Bit definition for Ethernet MAC Control Register register */
-#define ETH_MACCR_WD      ((uint32_t)0x00800000)  /* Watchdog disable */
-#define ETH_MACCR_JD      ((uint32_t)0x00400000)  /* Jabber disable */
-#define ETH_MACCR_IFG     ((uint32_t)0x000E0000)  /* Inter-frame gap */
-#define ETH_MACCR_IFG_96Bit     ((uint32_t)0x00000000)  /* Minimum IFG between frames during transmission is 96Bit */
-  #define ETH_MACCR_IFG_88Bit     ((uint32_t)0x00020000)  /* Minimum IFG between frames during transmission is 88Bit */
-  #define ETH_MACCR_IFG_80Bit     ((uint32_t)0x00040000)  /* Minimum IFG between frames during transmission is 80Bit */
-  #define ETH_MACCR_IFG_72Bit     ((uint32_t)0x00060000)  /* Minimum IFG between frames during transmission is 72Bit */
-  #define ETH_MACCR_IFG_64Bit     ((uint32_t)0x00080000)  /* Minimum IFG between frames during transmission is 64Bit */        
-  #define ETH_MACCR_IFG_56Bit     ((uint32_t)0x000A0000)  /* Minimum IFG between frames during transmission is 56Bit */
-  #define ETH_MACCR_IFG_48Bit     ((uint32_t)0x000C0000)  /* Minimum IFG between frames during transmission is 48Bit */
-  #define ETH_MACCR_IFG_40Bit     ((uint32_t)0x000E0000)  /* Minimum IFG between frames during transmission is 40Bit */              
-#define ETH_MACCR_CSD     ((uint32_t)0x00010000)  /* Carrier sense disable (during transmission) */
-#define ETH_MACCR_FES     ((uint32_t)0x00004000)  /* Fast ethernet speed */
-#define ETH_MACCR_ROD     ((uint32_t)0x00002000)  /* Receive own disable */
-#define ETH_MACCR_LM      ((uint32_t)0x00001000)  /* loopback mode */
-#define ETH_MACCR_DM      ((uint32_t)0x00000800)  /* Duplex mode */
-#define ETH_MACCR_IPCO    ((uint32_t)0x00000400)  /* IP Checksum offload */
-#define ETH_MACCR_RD      ((uint32_t)0x00000200)  /* Retry disable */
-#define ETH_MACCR_APCS    ((uint32_t)0x00000080)  /* Automatic Pad/CRC stripping */
-#define ETH_MACCR_BL      ((uint32_t)0x00000060)  /* Back-off limit: random integer number (r) of slot time delays before rescheduling
-                                                       a transmission attempt during retries after a collision: 0 =< r <2^k */
-  #define ETH_MACCR_BL_10    ((uint32_t)0x00000000)  /* k = min (n, 10) */
-  #define ETH_MACCR_BL_8     ((uint32_t)0x00000020)  /* k = min (n, 8) */
-  #define ETH_MACCR_BL_4     ((uint32_t)0x00000040)  /* k = min (n, 4) */
-  #define ETH_MACCR_BL_1     ((uint32_t)0x00000060)  /* k = min (n, 1) */ 
-#define ETH_MACCR_DC      ((uint32_t)0x00000010)  /* Defferal check */
-#define ETH_MACCR_TE      ((uint32_t)0x00000008)  /* Transmitter enable */
-#define ETH_MACCR_RE      ((uint32_t)0x00000004)  /* Receiver enable */
-
-/* Bit definition for Ethernet MAC Frame Filter Register */
-#define ETH_MACFFR_RA     ((uint32_t)0x80000000)  /* Receive all */ 
-#define ETH_MACFFR_HPF    ((uint32_t)0x00000400)  /* Hash or perfect filter */ 
-#define ETH_MACFFR_SAF    ((uint32_t)0x00000200)  /* Source address filter enable */ 
-#define ETH_MACFFR_SAIF   ((uint32_t)0x00000100)  /* SA inverse filtering */ 
-#define ETH_MACFFR_PCF    ((uint32_t)0x000000C0)  /* Pass control frames: 3 cases */
-  #define ETH_MACFFR_PCF_BlockAll                ((uint32_t)0x00000040)  /* MAC filters all control frames from reaching the application */
-  #define ETH_MACFFR_PCF_ForwardAll              ((uint32_t)0x00000080)  /* MAC forwards all control frames to application even if they fail the Address Filter */
-  #define ETH_MACFFR_PCF_ForwardPassedAddrFilter ((uint32_t)0x000000C0)  /* MAC forwards control frames that pass the Address Filter. */ 
-#define ETH_MACFFR_BFD    ((uint32_t)0x00000020)  /* Broadcast frame disable */ 
-#define ETH_MACFFR_PAM    ((uint32_t)0x00000010)  /* Pass all mutlicast */ 
-#define ETH_MACFFR_DAIF   ((uint32_t)0x00000008)  /* DA Inverse filtering */ 
-#define ETH_MACFFR_HM     ((uint32_t)0x00000004)  /* Hash multicast */ 
-#define ETH_MACFFR_HU     ((uint32_t)0x00000002)  /* Hash unicast */
-#define ETH_MACFFR_PM     ((uint32_t)0x00000001)  /* Promiscuous mode */
-
-/* Bit definition for Ethernet MAC Hash Table High Register */
-#define ETH_MACHTHR_HTH   ((uint32_t)0xFFFFFFFF)  /* Hash table high */
-
-/* Bit definition for Ethernet MAC Hash Table Low Register */
-#define ETH_MACHTLR_HTL   ((uint32_t)0xFFFFFFFF)  /* Hash table low */
-
-/* Bit definition for Ethernet MAC MII Address Register */
-#define ETH_MACMIIAR_PA   ((uint32_t)0x0000F800)  /* Physical layer address */ 
-#define ETH_MACMIIAR_MR   ((uint32_t)0x000007C0)  /* MII register in the selected PHY */ 
-#define ETH_MACMIIAR_CR   ((uint32_t)0x0000001C)  /* CR clock range: 6 cases */ 
-  #define ETH_MACMIIAR_CR_Div42   ((uint32_t)0x00000000)  /* HCLK:60-100 MHz; MDC clock= HCLK/42 */
-  #define ETH_MACMIIAR_CR_Div62   ((uint32_t)0x00000004)  /* HCLK:100-120 MHz; MDC clock= HCLK/62 */
-  #define ETH_MACMIIAR_CR_Div16   ((uint32_t)0x00000008)  /* HCLK:20-35 MHz; MDC clock= HCLK/16 */
-  #define ETH_MACMIIAR_CR_Div26   ((uint32_t)0x0000000C)  /* HCLK:35-60 MHz; MDC clock= HCLK/42 */  
-#define ETH_MACMIIAR_MW   ((uint32_t)0x00000002)  /* MII write */ 
-#define ETH_MACMIIAR_MB   ((uint32_t)0x00000001)  /* MII busy */ 
-  
-/* Bit definition for Ethernet MAC MII Data Register */
-#define ETH_MACMIIDR_MD   ((uint32_t)0x0000FFFF)  /* MII data: read/write data from/to PHY */
-
-/* Bit definition for Ethernet MAC Flow Control Register */
-#define ETH_MACFCR_PT     ((uint32_t)0xFFFF0000)  /* Pause time */
-#define ETH_MACFCR_ZQPD   ((uint32_t)0x00000080)  /* Zero-quanta pause disable */
-#define ETH_MACFCR_PLT    ((uint32_t)0x00000030)  /* Pause low threshold: 4 cases */
-  #define ETH_MACFCR_PLT_Minus4   ((uint32_t)0x00000000)  /* Pause time minus 4 slot times */
-  #define ETH_MACFCR_PLT_Minus28  ((uint32_t)0x00000010)  /* Pause time minus 28 slot times */
-  #define ETH_MACFCR_PLT_Minus144 ((uint32_t)0x00000020)  /* Pause time minus 144 slot times */
-  #define ETH_MACFCR_PLT_Minus256 ((uint32_t)0x00000030)  /* Pause time minus 256 slot times */      
-#define ETH_MACFCR_UPFD   ((uint32_t)0x00000008)  /* Unicast pause frame detect */
-#define ETH_MACFCR_RFCE   ((uint32_t)0x00000004)  /* Receive flow control enable */
-#define ETH_MACFCR_TFCE   ((uint32_t)0x00000002)  /* Transmit flow control enable */
-#define ETH_MACFCR_FCBBPA ((uint32_t)0x00000001)  /* Flow control busy/backpressure activate */
-
-/* Bit definition for Ethernet MAC VLAN Tag Register */
-#define ETH_MACVLANTR_VLANTC ((uint32_t)0x00010000)  /* 12-bit VLAN tag comparison */
-#define ETH_MACVLANTR_VLANTI ((uint32_t)0x0000FFFF)  /* VLAN tag identifier (for receive frames) */
-
-/* Bit definition for Ethernet MAC Remote Wake-UpFrame Filter Register */ 
-#define ETH_MACRWUFFR_D   ((uint32_t)0xFFFFFFFF)  /* Wake-up frame filter register data */
-/* Eight sequential Writes to this address (offset 0x28) will write all Wake-UpFrame Filter Registers.
-   Eight sequential Reads from this address (offset 0x28) will read all Wake-UpFrame Filter Registers. */
-/* Wake-UpFrame Filter Reg0 : Filter 0 Byte Mask
-   Wake-UpFrame Filter Reg1 : Filter 1 Byte Mask
-   Wake-UpFrame Filter Reg2 : Filter 2 Byte Mask
-   Wake-UpFrame Filter Reg3 : Filter 3 Byte Mask
-   Wake-UpFrame Filter Reg4 : RSVD - Filter3 Command - RSVD - Filter2 Command - 
-                              RSVD - Filter1 Command - RSVD - Filter0 Command
-   Wake-UpFrame Filter Re5 : Filter3 Offset - Filter2 Offset - Filter1 Offset - Filter0 Offset
-   Wake-UpFrame Filter Re6 : Filter1 CRC16 - Filter0 CRC16
-   Wake-UpFrame Filter Re7 : Filter3 CRC16 - Filter2 CRC16 */
-
-/* Bit definition for Ethernet MAC PMT Control and Status Register */ 
-#define ETH_MACPMTCSR_WFFRPR ((uint32_t)0x80000000)  /* Wake-Up Frame Filter Register Pointer Reset */
-#define ETH_MACPMTCSR_GU     ((uint32_t)0x00000200)  /* Global Unicast */
-#define ETH_MACPMTCSR_WFR    ((uint32_t)0x00000040)  /* Wake-Up Frame Received */
-#define ETH_MACPMTCSR_MPR    ((uint32_t)0x00000020)  /* Magic Packet Received */
-#define ETH_MACPMTCSR_WFE    ((uint32_t)0x00000004)  /* Wake-Up Frame Enable */
-#define ETH_MACPMTCSR_MPE    ((uint32_t)0x00000002)  /* Magic Packet Enable */
-#define ETH_MACPMTCSR_PD     ((uint32_t)0x00000001)  /* Power Down */
-
-/* Bit definition for Ethernet MAC Status Register */
-#define ETH_MACSR_TSTS      ((uint32_t)0x00000200)  /* Time stamp trigger status */
-#define ETH_MACSR_MMCTS     ((uint32_t)0x00000040)  /* MMC transmit status */
-#define ETH_MACSR_MMMCRS    ((uint32_t)0x00000020)  /* MMC receive status */
-#define ETH_MACSR_MMCS      ((uint32_t)0x00000010)  /* MMC status */
-#define ETH_MACSR_PMTS      ((uint32_t)0x00000008)  /* PMT status */
-
-/* Bit definition for Ethernet MAC Interrupt Mask Register */
-#define ETH_MACIMR_TSTIM     ((uint32_t)0x00000200)  /* Time stamp trigger interrupt mask */
-#define ETH_MACIMR_PMTIM     ((uint32_t)0x00000008)  /* PMT interrupt mask */
-
-/* Bit definition for Ethernet MAC Address0 High Register */
-#define ETH_MACA0HR_MACA0H   ((uint32_t)0x0000FFFF)  /* MAC address0 high */
-
-/* Bit definition for Ethernet MAC Address0 Low Register */
-#define ETH_MACA0LR_MACA0L   ((uint32_t)0xFFFFFFFF)  /* MAC address0 low */
-
-/* Bit definition for Ethernet MAC Address1 High Register */
-#define ETH_MACA1HR_AE       ((uint32_t)0x80000000)  /* Address enable */
-#define ETH_MACA1HR_SA       ((uint32_t)0x40000000)  /* Source address */
-#define ETH_MACA1HR_MBC      ((uint32_t)0x3F000000)  /* Mask byte control: bits to mask for comparison of the MAC Address bytes */
-  #define ETH_MACA1HR_MBC_HBits15_8    ((uint32_t)0x20000000)  /* Mask MAC Address high reg bits [15:8] */
-  #define ETH_MACA1HR_MBC_HBits7_0     ((uint32_t)0x10000000)  /* Mask MAC Address high reg bits [7:0] */
-  #define ETH_MACA1HR_MBC_LBits31_24   ((uint32_t)0x08000000)  /* Mask MAC Address low reg bits [31:24] */
-  #define ETH_MACA1HR_MBC_LBits23_16   ((uint32_t)0x04000000)  /* Mask MAC Address low reg bits [23:16] */
-  #define ETH_MACA1HR_MBC_LBits15_8    ((uint32_t)0x02000000)  /* Mask MAC Address low reg bits [15:8] */
-  #define ETH_MACA1HR_MBC_LBits7_0     ((uint32_t)0x01000000)  /* Mask MAC Address low reg bits [7:0] */ 
-#define ETH_MACA1HR_MACA1H   ((uint32_t)0x0000FFFF)  /* MAC address1 high */
-
-/* Bit definition for Ethernet MAC Address1 Low Register */
-#define ETH_MACA1LR_MACA1L   ((uint32_t)0xFFFFFFFF)  /* MAC address1 low */
-
-/* Bit definition for Ethernet MAC Address2 High Register */
-#define ETH_MACA2HR_AE       ((uint32_t)0x80000000)  /* Address enable */
-#define ETH_MACA2HR_SA       ((uint32_t)0x40000000)  /* Source address */
-#define ETH_MACA2HR_MBC      ((uint32_t)0x3F000000)  /* Mask byte control */
-  #define ETH_MACA2HR_MBC_HBits15_8    ((uint32_t)0x20000000)  /* Mask MAC Address high reg bits [15:8] */
-  #define ETH_MACA2HR_MBC_HBits7_0     ((uint32_t)0x10000000)  /* Mask MAC Address high reg bits [7:0] */
-  #define ETH_MACA2HR_MBC_LBits31_24   ((uint32_t)0x08000000)  /* Mask MAC Address low reg bits [31:24] */
-  #define ETH_MACA2HR_MBC_LBits23_16   ((uint32_t)0x04000000)  /* Mask MAC Address low reg bits [23:16] */
-  #define ETH_MACA2HR_MBC_LBits15_8    ((uint32_t)0x02000000)  /* Mask MAC Address low reg bits [15:8] */
-  #define ETH_MACA2HR_MBC_LBits7_0     ((uint32_t)0x01000000)  /* Mask MAC Address low reg bits [70] */
-#define ETH_MACA2HR_MACA2H   ((uint32_t)0x0000FFFF)  /* MAC address1 high */
-
-/* Bit definition for Ethernet MAC Address2 Low Register */
-#define ETH_MACA2LR_MACA2L   ((uint32_t)0xFFFFFFFF)  /* MAC address2 low */
-
-/* Bit definition for Ethernet MAC Address3 High Register */
-#define ETH_MACA3HR_AE       ((uint32_t)0x80000000)  /* Address enable */
-#define ETH_MACA3HR_SA       ((uint32_t)0x40000000)  /* Source address */
-#define ETH_MACA3HR_MBC      ((uint32_t)0x3F000000)  /* Mask byte control */
-  #define ETH_MACA3HR_MBC_HBits15_8    ((uint32_t)0x20000000)  /* Mask MAC Address high reg bits [15:8] */
-  #define ETH_MACA3HR_MBC_HBits7_0     ((uint32_t)0x10000000)  /* Mask MAC Address high reg bits [7:0] */
-  #define ETH_MACA3HR_MBC_LBits31_24   ((uint32_t)0x08000000)  /* Mask MAC Address low reg bits [31:24] */
-  #define ETH_MACA3HR_MBC_LBits23_16   ((uint32_t)0x04000000)  /* Mask MAC Address low reg bits [23:16] */
-  #define ETH_MACA3HR_MBC_LBits15_8    ((uint32_t)0x02000000)  /* Mask MAC Address low reg bits [15:8] */
-  #define ETH_MACA3HR_MBC_LBits7_0     ((uint32_t)0x01000000)  /* Mask MAC Address low reg bits [70] */
-#define ETH_MACA3HR_MACA3H   ((uint32_t)0x0000FFFF)  /* MAC address3 high */
-
-/* Bit definition for Ethernet MAC Address3 Low Register */
-#define ETH_MACA3LR_MACA3L   ((uint32_t)0xFFFFFFFF)  /* MAC address3 low */
-
-/******************************************************************************/
-/*                Ethernet MMC Registers bits definition                      */
-/******************************************************************************/
-
-/* Bit definition for Ethernet MMC Contol Register */
-#define ETH_MMCCR_MCFHP      ((uint32_t)0x00000020)  /* MMC counter Full-Half preset (Only in STM32F2xx) */
-#define ETH_MMCCR_MCP        ((uint32_t)0x00000010)  /* MMC counter preset (Only in STM32F2xx) */
-#define ETH_MMCCR_MCF        ((uint32_t)0x00000008)  /* MMC Counter Freeze */
-#define ETH_MMCCR_ROR        ((uint32_t)0x00000004)  /* Reset on Read */
-#define ETH_MMCCR_CSR        ((uint32_t)0x00000002)  /* Counter Stop Rollover */
-#define ETH_MMCCR_CR         ((uint32_t)0x00000001)  /* Counters Reset */
-
-/* Bit definition for Ethernet MMC Receive Interrupt Register */
-#define ETH_MMCRIR_RGUFS     ((uint32_t)0x00020000)  /* Set when Rx good unicast frames counter reaches half the maximum value */
-#define ETH_MMCRIR_RFAES     ((uint32_t)0x00000040)  /* Set when Rx alignment error counter reaches half the maximum value */
-#define ETH_MMCRIR_RFCES     ((uint32_t)0x00000020)  /* Set when Rx crc error counter reaches half the maximum value */
-
-/* Bit definition for Ethernet MMC Transmit Interrupt Register */
-#define ETH_MMCTIR_TGFS      ((uint32_t)0x00200000)  /* Set when Tx good frame count counter reaches half the maximum value */
-#define ETH_MMCTIR_TGFMSCS   ((uint32_t)0x00008000)  /* Set when Tx good multi col counter reaches half the maximum value */
-#define ETH_MMCTIR_TGFSCS    ((uint32_t)0x00004000)  /* Set when Tx good single col counter reaches half the maximum value */
-
-/* Bit definition for Ethernet MMC Receive Interrupt Mask Register */
-#define ETH_MMCRIMR_RGUFM    ((uint32_t)0x00020000)  /* Mask the interrupt when Rx good unicast frames counter reaches half the maximum value */
-#define ETH_MMCRIMR_RFAEM    ((uint32_t)0x00000040)  /* Mask the interrupt when when Rx alignment error counter reaches half the maximum value */
-#define ETH_MMCRIMR_RFCEM    ((uint32_t)0x00000020)  /* Mask the interrupt when Rx crc error counter reaches half the maximum value */
-
-/* Bit definition for Ethernet MMC Transmit Interrupt Mask Register */
-#define ETH_MMCTIMR_TGFM     ((uint32_t)0x00200000)  /* Mask the interrupt when Tx good frame count counter reaches half the maximum value */
-#define ETH_MMCTIMR_TGFMSCM  ((uint32_t)0x00008000)  /* Mask the interrupt when Tx good multi col counter reaches half the maximum value */
-#define ETH_MMCTIMR_TGFSCM   ((uint32_t)0x00004000)  /* Mask the interrupt when Tx good single col counter reaches half the maximum value */
-
-/* Bit definition for Ethernet MMC Transmitted Good Frames after Single Collision Counter Register */
-#define ETH_MMCTGFSCCR_TGFSCC     ((uint32_t)0xFFFFFFFF)  /* Number of successfully transmitted frames after a single collision in Half-duplex mode. */
-
-/* Bit definition for Ethernet MMC Transmitted Good Frames after More than a Single Collision Counter Register */
-#define ETH_MMCTGFMSCCR_TGFMSCC   ((uint32_t)0xFFFFFFFF)  /* Number of successfully transmitted frames after more than a single collision in Half-duplex mode. */
-
-/* Bit definition for Ethernet MMC Transmitted Good Frames Counter Register */
-#define ETH_MMCTGFCR_TGFC    ((uint32_t)0xFFFFFFFF)  /* Number of good frames transmitted. */
-
-/* Bit definition for Ethernet MMC Received Frames with CRC Error Counter Register */
-#define ETH_MMCRFCECR_RFCEC  ((uint32_t)0xFFFFFFFF)  /* Number of frames received with CRC error. */
-
-/* Bit definition for Ethernet MMC Received Frames with Alignement Error Counter Register */
-#define ETH_MMCRFAECR_RFAEC  ((uint32_t)0xFFFFFFFF)  /* Number of frames received with alignment (dribble) error */
-
-/* Bit definition for Ethernet MMC Received Good Unicast Frames Counter Register */
-#define ETH_MMCRGUFCR_RGUFC  ((uint32_t)0xFFFFFFFF)  /* Number of good unicast frames received. */
-
-/******************************************************************************/
-/*               Ethernet PTP Registers bits definition                       */
-/******************************************************************************/
-
-/* Bit definition for Ethernet PTP Time Stamp Contol Register */
-#define ETH_PTPTSCR_TSCNT       ((uint32_t)0x00030000)  /* Time stamp clock node type */
-#define ETH_PTPTSSR_TSSMRME     ((uint32_t)0x00008000)  /* Time stamp snapshot for message relevant to master enable */
-#define ETH_PTPTSSR_TSSEME      ((uint32_t)0x00004000)  /* Time stamp snapshot for event message enable */
-#define ETH_PTPTSSR_TSSIPV4FE   ((uint32_t)0x00002000)  /* Time stamp snapshot for IPv4 frames enable */
-#define ETH_PTPTSSR_TSSIPV6FE   ((uint32_t)0x00001000)  /* Time stamp snapshot for IPv6 frames enable */
-#define ETH_PTPTSSR_TSSPTPOEFE  ((uint32_t)0x00000800)  /* Time stamp snapshot for PTP over ethernet frames enable */
-#define ETH_PTPTSSR_TSPTPPSV2E  ((uint32_t)0x00000400)  /* Time stamp PTP packet snooping for version2 format enable */
-#define ETH_PTPTSSR_TSSSR       ((uint32_t)0x00000200)  /* Time stamp Sub-seconds rollover */
-#define ETH_PTPTSSR_TSSARFE     ((uint32_t)0x00000100)  /* Time stamp snapshot for all received frames enable */
-
-#define ETH_PTPTSCR_TSARU    ((uint32_t)0x00000020)  /* Addend register update */
-#define ETH_PTPTSCR_TSITE    ((uint32_t)0x00000010)  /* Time stamp interrupt trigger enable */
-#define ETH_PTPTSCR_TSSTU    ((uint32_t)0x00000008)  /* Time stamp update */
-#define ETH_PTPTSCR_TSSTI    ((uint32_t)0x00000004)  /* Time stamp initialize */
-#define ETH_PTPTSCR_TSFCU    ((uint32_t)0x00000002)  /* Time stamp fine or coarse update */
-#define ETH_PTPTSCR_TSE      ((uint32_t)0x00000001)  /* Time stamp enable */
-
-/* Bit definition for Ethernet PTP Sub-Second Increment Register */
-#define ETH_PTPSSIR_STSSI    ((uint32_t)0x000000FF)  /* System time Sub-second increment value */
-
-/* Bit definition for Ethernet PTP Time Stamp High Register */
-#define ETH_PTPTSHR_STS      ((uint32_t)0xFFFFFFFF)  /* System Time second */
-
-/* Bit definition for Ethernet PTP Time Stamp Low Register */
-#define ETH_PTPTSLR_STPNS    ((uint32_t)0x80000000)  /* System Time Positive or negative time */
-#define ETH_PTPTSLR_STSS     ((uint32_t)0x7FFFFFFF)  /* System Time sub-seconds */
-
-/* Bit definition for Ethernet PTP Time Stamp High Update Register */
-#define ETH_PTPTSHUR_TSUS    ((uint32_t)0xFFFFFFFF)  /* Time stamp update seconds */
-
-/* Bit definition for Ethernet PTP Time Stamp Low Update Register */
-#define ETH_PTPTSLUR_TSUPNS  ((uint32_t)0x80000000)  /* Time stamp update Positive or negative time */
-#define ETH_PTPTSLUR_TSUSS   ((uint32_t)0x7FFFFFFF)  /* Time stamp update sub-seconds */
-
-/* Bit definition for Ethernet PTP Time Stamp Addend Register */
-#define ETH_PTPTSAR_TSA      ((uint32_t)0xFFFFFFFF)  /* Time stamp addend */
-
-/* Bit definition for Ethernet PTP Target Time High Register */
-#define ETH_PTPTTHR_TTSH     ((uint32_t)0xFFFFFFFF)  /* Target time stamp high */
-
-/* Bit definition for Ethernet PTP Target Time Low Register */
-#define ETH_PTPTTLR_TTSL     ((uint32_t)0xFFFFFFFF)  /* Target time stamp low */
-
-/* Bit definition for Ethernet PTP Time Stamp Status Register */
-#define ETH_PTPTSSR_TSTTR    ((uint32_t)0x00000020)  /* Time stamp target time reached */
-#define ETH_PTPTSSR_TSSO     ((uint32_t)0x00000010)  /* Time stamp seconds overflow */
-
-/******************************************************************************/
-/*                 Ethernet DMA Registers bits definition                     */
-/******************************************************************************/
-
-/* Bit definition for Ethernet DMA Bus Mode Register */
-#define ETH_DMABMR_AAB       ((uint32_t)0x02000000)  /* Address-Aligned beats */
-#define ETH_DMABMR_FPM        ((uint32_t)0x01000000)  /* 4xPBL mode */
-#define ETH_DMABMR_USP       ((uint32_t)0x00800000)  /* Use separate PBL */
-#define ETH_DMABMR_RDP       ((uint32_t)0x007E0000)  /* RxDMA PBL */
-  #define ETH_DMABMR_RDP_1Beat    ((uint32_t)0x00020000)  /* maximum number of beats to be transferred in one RxDMA transaction is 1 */
-  #define ETH_DMABMR_RDP_2Beat    ((uint32_t)0x00040000)  /* maximum number of beats to be transferred in one RxDMA transaction is 2 */
-  #define ETH_DMABMR_RDP_4Beat    ((uint32_t)0x00080000)  /* maximum number of beats to be transferred in one RxDMA transaction is 4 */
-  #define ETH_DMABMR_RDP_8Beat    ((uint32_t)0x00100000)  /* maximum number of beats to be transferred in one RxDMA transaction is 8 */
-  #define ETH_DMABMR_RDP_16Beat   ((uint32_t)0x00200000)  /* maximum number of beats to be transferred in one RxDMA transaction is 16 */
-  #define ETH_DMABMR_RDP_32Beat   ((uint32_t)0x00400000)  /* maximum number of beats to be transferred in one RxDMA transaction is 32 */                
-  #define ETH_DMABMR_RDP_4xPBL_4Beat   ((uint32_t)0x01020000)  /* maximum number of beats to be transferred in one RxDMA transaction is 4 */
-  #define ETH_DMABMR_RDP_4xPBL_8Beat   ((uint32_t)0x01040000)  /* maximum number of beats to be transferred in one RxDMA transaction is 8 */
-  #define ETH_DMABMR_RDP_4xPBL_16Beat  ((uint32_t)0x01080000)  /* maximum number of beats to be transferred in one RxDMA transaction is 16 */
-  #define ETH_DMABMR_RDP_4xPBL_32Beat  ((uint32_t)0x01100000)  /* maximum number of beats to be transferred in one RxDMA transaction is 32 */
-  #define ETH_DMABMR_RDP_4xPBL_64Beat  ((uint32_t)0x01200000)  /* maximum number of beats to be transferred in one RxDMA transaction is 64 */
-  #define ETH_DMABMR_RDP_4xPBL_128Beat ((uint32_t)0x01400000)  /* maximum number of beats to be transferred in one RxDMA transaction is 128 */  
-#define ETH_DMABMR_FB        ((uint32_t)0x00010000)  /* Fixed Burst */
-#define ETH_DMABMR_RTPR      ((uint32_t)0x0000C000)  /* Rx Tx priority ratio */
-  #define ETH_DMABMR_RTPR_1_1     ((uint32_t)0x00000000)  /* Rx Tx priority ratio */
-  #define ETH_DMABMR_RTPR_2_1     ((uint32_t)0x00004000)  /* Rx Tx priority ratio */
-  #define ETH_DMABMR_RTPR_3_1     ((uint32_t)0x00008000)  /* Rx Tx priority ratio */
-  #define ETH_DMABMR_RTPR_4_1     ((uint32_t)0x0000C000)  /* Rx Tx priority ratio */  
-#define ETH_DMABMR_PBL    ((uint32_t)0x00003F00)  /* Programmable burst length */
-  #define ETH_DMABMR_PBL_1Beat    ((uint32_t)0x00000100)  /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 1 */
-  #define ETH_DMABMR_PBL_2Beat    ((uint32_t)0x00000200)  /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 2 */
-  #define ETH_DMABMR_PBL_4Beat    ((uint32_t)0x00000400)  /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 4 */
-  #define ETH_DMABMR_PBL_8Beat    ((uint32_t)0x00000800)  /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 8 */
-  #define ETH_DMABMR_PBL_16Beat   ((uint32_t)0x00001000)  /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 16 */
-  #define ETH_DMABMR_PBL_32Beat   ((uint32_t)0x00002000)  /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 32 */                
-  #define ETH_DMABMR_PBL_4xPBL_4Beat   ((uint32_t)0x01000100)  /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 4 */
-  #define ETH_DMABMR_PBL_4xPBL_8Beat   ((uint32_t)0x01000200)  /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 8 */
-  #define ETH_DMABMR_PBL_4xPBL_16Beat  ((uint32_t)0x01000400)  /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 16 */
-  #define ETH_DMABMR_PBL_4xPBL_32Beat  ((uint32_t)0x01000800)  /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 32 */
-  #define ETH_DMABMR_PBL_4xPBL_64Beat  ((uint32_t)0x01001000)  /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 64 */
-  #define ETH_DMABMR_PBL_4xPBL_128Beat ((uint32_t)0x01002000)  /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 128 */
-#define ETH_DMABMR_EDE       ((uint32_t)0x00000080)  /* Enhanced Descriptor Enable */
-#define ETH_DMABMR_DSL       ((uint32_t)0x0000007C)  /* Descriptor Skip Length */
-#define ETH_DMABMR_DA        ((uint32_t)0x00000002)  /* DMA arbitration scheme */
-#define ETH_DMABMR_SR        ((uint32_t)0x00000001)  /* Software reset */
-
-/* Bit definition for Ethernet DMA Transmit Poll Demand Register */
-#define ETH_DMATPDR_TPD      ((uint32_t)0xFFFFFFFF)  /* Transmit poll demand */
-
-/* Bit definition for Ethernet DMA Receive Poll Demand Register */
-#define ETH_DMARPDR_RPD      ((uint32_t)0xFFFFFFFF)  /* Receive poll demand  */
-
-/* Bit definition for Ethernet DMA Receive Descriptor List Address Register */
-#define ETH_DMARDLAR_SRL     ((uint32_t)0xFFFFFFFF)  /* Start of receive list */
-
-/* Bit definition for Ethernet DMA Transmit Descriptor List Address Register */
-#define ETH_DMATDLAR_STL     ((uint32_t)0xFFFFFFFF)  /* Start of transmit list */
-
-/* Bit definition for Ethernet DMA Status Register */
-#define ETH_DMASR_TSTS       ((uint32_t)0x20000000)  /* Time-stamp trigger status */
-#define ETH_DMASR_PMTS       ((uint32_t)0x10000000)  /* PMT status */
-#define ETH_DMASR_MMCS       ((uint32_t)0x08000000)  /* MMC status */
-#define ETH_DMASR_EBS        ((uint32_t)0x03800000)  /* Error bits status */
-  /* combination with EBS[2:0] for GetFlagStatus function */
-  #define ETH_DMASR_EBS_DescAccess      ((uint32_t)0x02000000)  /* Error bits 0-data buffer, 1-desc. access */
-  #define ETH_DMASR_EBS_ReadTransf      ((uint32_t)0x01000000)  /* Error bits 0-write trnsf, 1-read transfr */
-  #define ETH_DMASR_EBS_DataTransfTx    ((uint32_t)0x00800000)  /* Error bits 0-Rx DMA, 1-Tx DMA */
-#define ETH_DMASR_TPS         ((uint32_t)0x00700000)  /* Transmit process state */
-  #define ETH_DMASR_TPS_Stopped         ((uint32_t)0x00000000)  /* Stopped - Reset or Stop Tx Command issued  */
-  #define ETH_DMASR_TPS_Fetching        ((uint32_t)0x00100000)  /* Running - fetching the Tx descriptor */
-  #define ETH_DMASR_TPS_Waiting         ((uint32_t)0x00200000)  /* Running - waiting for status */
-  #define ETH_DMASR_TPS_Reading         ((uint32_t)0x00300000)  /* Running - reading the data from host memory */
-  #define ETH_DMASR_TPS_Suspended       ((uint32_t)0x00600000)  /* Suspended - Tx Descriptor unavailabe */
-  #define ETH_DMASR_TPS_Closing         ((uint32_t)0x00700000)  /* Running - closing Rx descriptor */
-#define ETH_DMASR_RPS         ((uint32_t)0x000E0000)  /* Receive process state */
-  #define ETH_DMASR_RPS_Stopped         ((uint32_t)0x00000000)  /* Stopped - Reset or Stop Rx Command issued */
-  #define ETH_DMASR_RPS_Fetching        ((uint32_t)0x00020000)  /* Running - fetching the Rx descriptor */
-  #define ETH_DMASR_RPS_Waiting         ((uint32_t)0x00060000)  /* Running - waiting for packet */
-  #define ETH_DMASR_RPS_Suspended       ((uint32_t)0x00080000)  /* Suspended - Rx Descriptor unavailable */
-  #define ETH_DMASR_RPS_Closing         ((uint32_t)0x000A0000)  /* Running - closing descriptor */
-  #define ETH_DMASR_RPS_Queuing         ((uint32_t)0x000E0000)  /* Running - queuing the recieve frame into host memory */
-#define ETH_DMASR_NIS        ((uint32_t)0x00010000)  /* Normal interrupt summary */
-#define ETH_DMASR_AIS        ((uint32_t)0x00008000)  /* Abnormal interrupt summary */
-#define ETH_DMASR_ERS        ((uint32_t)0x00004000)  /* Early receive status */
-#define ETH_DMASR_FBES       ((uint32_t)0x00002000)  /* Fatal bus error status */
-#define ETH_DMASR_ETS        ((uint32_t)0x00000400)  /* Early transmit status */
-#define ETH_DMASR_RWTS       ((uint32_t)0x00000200)  /* Receive watchdog timeout status */
-#define ETH_DMASR_RPSS       ((uint32_t)0x00000100)  /* Receive process stopped status */
-#define ETH_DMASR_RBUS       ((uint32_t)0x00000080)  /* Receive buffer unavailable status */
-#define ETH_DMASR_RS         ((uint32_t)0x00000040)  /* Receive status */
-#define ETH_DMASR_TUS        ((uint32_t)0x00000020)  /* Transmit underflow status */
-#define ETH_DMASR_ROS        ((uint32_t)0x00000010)  /* Receive overflow status */
-#define ETH_DMASR_TJTS       ((uint32_t)0x00000008)  /* Transmit jabber timeout status */
-#define ETH_DMASR_TBUS       ((uint32_t)0x00000004)  /* Transmit buffer unavailable status */
-#define ETH_DMASR_TPSS       ((uint32_t)0x00000002)  /* Transmit process stopped status */
-#define ETH_DMASR_TS         ((uint32_t)0x00000001)  /* Transmit status */
-
-/* Bit definition for Ethernet DMA Operation Mode Register */
-#define ETH_DMAOMR_DTCEFD    ((uint32_t)0x04000000)  /* Disable Dropping of TCP/IP checksum error frames */
-#define ETH_DMAOMR_RSF       ((uint32_t)0x02000000)  /* Receive store and forward */
-#define ETH_DMAOMR_DFRF      ((uint32_t)0x01000000)  /* Disable flushing of received frames */
-#define ETH_DMAOMR_TSF       ((uint32_t)0x00200000)  /* Transmit store and forward */
-#define ETH_DMAOMR_FTF       ((uint32_t)0x00100000)  /* Flush transmit FIFO */
-#define ETH_DMAOMR_TTC       ((uint32_t)0x0001C000)  /* Transmit threshold control */
-  #define ETH_DMAOMR_TTC_64Bytes       ((uint32_t)0x00000000)  /* threshold level of the MTL Transmit FIFO is 64 Bytes */
-  #define ETH_DMAOMR_TTC_128Bytes      ((uint32_t)0x00004000)  /* threshold level of the MTL Transmit FIFO is 128 Bytes */
-  #define ETH_DMAOMR_TTC_192Bytes      ((uint32_t)0x00008000)  /* threshold level of the MTL Transmit FIFO is 192 Bytes */
-  #define ETH_DMAOMR_TTC_256Bytes      ((uint32_t)0x0000C000)  /* threshold level of the MTL Transmit FIFO is 256 Bytes */
-  #define ETH_DMAOMR_TTC_40Bytes       ((uint32_t)0x00010000)  /* threshold level of the MTL Transmit FIFO is 40 Bytes */
-  #define ETH_DMAOMR_TTC_32Bytes       ((uint32_t)0x00014000)  /* threshold level of the MTL Transmit FIFO is 32 Bytes */
-  #define ETH_DMAOMR_TTC_24Bytes       ((uint32_t)0x00018000)  /* threshold level of the MTL Transmit FIFO is 24 Bytes */
-  #define ETH_DMAOMR_TTC_16Bytes       ((uint32_t)0x0001C000)  /* threshold level of the MTL Transmit FIFO is 16 Bytes */
-#define ETH_DMAOMR_ST        ((uint32_t)0x00002000)  /* Start/stop transmission command */
-#define ETH_DMAOMR_FEF       ((uint32_t)0x00000080)  /* Forward error frames */
-#define ETH_DMAOMR_FUGF      ((uint32_t)0x00000040)  /* Forward undersized good frames */
-#define ETH_DMAOMR_RTC       ((uint32_t)0x00000018)  /* receive threshold control */
-  #define ETH_DMAOMR_RTC_64Bytes       ((uint32_t)0x00000000)  /* threshold level of the MTL Receive FIFO is 64 Bytes */
-  #define ETH_DMAOMR_RTC_32Bytes       ((uint32_t)0x00000008)  /* threshold level of the MTL Receive FIFO is 32 Bytes */
-  #define ETH_DMAOMR_RTC_96Bytes       ((uint32_t)0x00000010)  /* threshold level of the MTL Receive FIFO is 96 Bytes */
-  #define ETH_DMAOMR_RTC_128Bytes      ((uint32_t)0x00000018)  /* threshold level of the MTL Receive FIFO is 128 Bytes */
-#define ETH_DMAOMR_OSF       ((uint32_t)0x00000004)  /* operate on second frame */
-#define ETH_DMAOMR_SR        ((uint32_t)0x00000002)  /* Start/stop receive */
-
-/* Bit definition for Ethernet DMA Interrupt Enable Register */
-#define ETH_DMAIER_NISE      ((uint32_t)0x00010000)  /* Normal interrupt summary enable */
-#define ETH_DMAIER_AISE      ((uint32_t)0x00008000)  /* Abnormal interrupt summary enable */
-#define ETH_DMAIER_ERIE      ((uint32_t)0x00004000)  /* Early receive interrupt enable */
-#define ETH_DMAIER_FBEIE     ((uint32_t)0x00002000)  /* Fatal bus error interrupt enable */
-#define ETH_DMAIER_ETIE      ((uint32_t)0x00000400)  /* Early transmit interrupt enable */
-#define ETH_DMAIER_RWTIE     ((uint32_t)0x00000200)  /* Receive watchdog timeout interrupt enable */
-#define ETH_DMAIER_RPSIE     ((uint32_t)0x00000100)  /* Receive process stopped interrupt enable */
-#define ETH_DMAIER_RBUIE     ((uint32_t)0x00000080)  /* Receive buffer unavailable interrupt enable */
-#define ETH_DMAIER_RIE       ((uint32_t)0x00000040)  /* Receive interrupt enable */
-#define ETH_DMAIER_TUIE      ((uint32_t)0x00000020)  /* Transmit Underflow interrupt enable */
-#define ETH_DMAIER_ROIE      ((uint32_t)0x00000010)  /* Receive Overflow interrupt enable */
-#define ETH_DMAIER_TJTIE     ((uint32_t)0x00000008)  /* Transmit jabber timeout interrupt enable */
-#define ETH_DMAIER_TBUIE     ((uint32_t)0x00000004)  /* Transmit buffer unavailable interrupt enable */
-#define ETH_DMAIER_TPSIE     ((uint32_t)0x00000002)  /* Transmit process stopped interrupt enable */
-#define ETH_DMAIER_TIE       ((uint32_t)0x00000001)  /* Transmit interrupt enable */
-
-/* Bit definition for Ethernet DMA Missed Frame and Buffer Overflow Counter Register */
-#define ETH_DMAMFBOCR_OFOC   ((uint32_t)0x10000000)  /* Overflow bit for FIFO overflow counter */
-#define ETH_DMAMFBOCR_MFA    ((uint32_t)0x0FFE0000)  /* Number of frames missed by the application */
-#define ETH_DMAMFBOCR_OMFC   ((uint32_t)0x00010000)  /* Overflow bit for missed frame counter */
-#define ETH_DMAMFBOCR_MFC    ((uint32_t)0x0000FFFF)  /* Number of frames missed by the controller */
-
-/* Bit definition for Ethernet DMA Current Host Transmit Descriptor Register */
-#define ETH_DMACHTDR_HTDAP   ((uint32_t)0xFFFFFFFF)  /* Host transmit descriptor address pointer */
-
-/* Bit definition for Ethernet DMA Current Host Receive Descriptor Register */
-#define ETH_DMACHRDR_HRDAP   ((uint32_t)0xFFFFFFFF)  /* Host receive descriptor address pointer */
-
-/* Bit definition for Ethernet DMA Current Host Transmit Buffer Address Register */
-#define ETH_DMACHTBAR_HTBAP  ((uint32_t)0xFFFFFFFF)  /* Host transmit buffer address pointer */
-
-/* Bit definition for Ethernet DMA Current Host Receive Buffer Address Register */
-#define ETH_DMACHRBAR_HRBAP  ((uint32_t)0xFFFFFFFF)  /* Host receive buffer address pointer */
-
-#define SET_BIT(REG, BIT)     ((REG) |= (BIT))
-
-#define CLEAR_BIT(REG, BIT)   ((REG) &= ~(BIT))
-
-#define READ_BIT(REG, BIT)    ((REG) & (BIT))
-
-#define CLEAR_REG(REG)        ((REG) = (0x0))
-
-#define WRITE_REG(REG, VAL)   ((REG) = (VAL))
-
-#define READ_REG(REG)         ((REG))
-
-#define MODIFY_REG(REG, CLEARMASK, SETMASK)  WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) | (SETMASK)))
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#endif /* __STM32F2xx_H */
-
-/******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/
diff --git a/bbb_cape/src/cape/CMSIS/core_cm3.h b/bbb_cape/src/cape/CMSIS/core_cm3.h
deleted file mode 100644
index 122c9aa..0000000
--- a/bbb_cape/src/cape/CMSIS/core_cm3.h
+++ /dev/null
@@ -1,1627 +0,0 @@
-/**************************************************************************//**
- * @file     core_cm3.h
- * @brief    CMSIS Cortex-M3 Core Peripheral Access Layer Header File
- * @version  V3.20
- * @date     25. February 2013
- *
- * @note
- *
- ******************************************************************************/
-/* Copyright (c) 2009 - 2013 ARM LIMITED
-
-   All rights reserved.
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-   - Redistributions of source code must retain the above copyright
-     notice, this list of conditions and the following disclaimer.
-   - Redistributions in binary form must reproduce the above copyright
-     notice, this list of conditions and the following disclaimer in the
-     documentation and/or other materials provided with the distribution.
-   - Neither the name of ARM nor the names of its contributors may be used
-     to endorse or promote products derived from this software without
-     specific prior written permission.
-   *
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-   ---------------------------------------------------------------------------*/
-
-
-#if defined ( __ICCARM__ )
- #pragma system_include  /* treat file as system include file for MISRA check */
-#endif
-
-#ifdef __cplusplus
- extern "C" {
-#endif
-
-#ifndef __CORE_CM3_H_GENERIC
-#define __CORE_CM3_H_GENERIC
-
-/** \page CMSIS_MISRA_Exceptions  MISRA-C:2004 Compliance Exceptions
-  CMSIS violates the following MISRA-C:2004 rules:
-
-   \li Required Rule 8.5, object/function definition in header file.<br>
-     Function definitions in header files are used to allow 'inlining'.
-
-   \li Required Rule 18.4, declaration of union type or object of union type: '{...}'.<br>
-     Unions are used for effective representation of core registers.
-
-   \li Advisory Rule 19.7, Function-like macro defined.<br>
-     Function-like macros are used to allow more efficient code.
- */
-
-
-/*******************************************************************************
- *                 CMSIS definitions
- ******************************************************************************/
-/** \ingroup Cortex_M3
-  @{
- */
-
-/*  CMSIS CM3 definitions */
-#define __CM3_CMSIS_VERSION_MAIN  (0x03)                                   /*!< [31:16] CMSIS HAL main version   */
-#define __CM3_CMSIS_VERSION_SUB   (0x20)                                   /*!< [15:0]  CMSIS HAL sub version    */
-#define __CM3_CMSIS_VERSION       ((__CM3_CMSIS_VERSION_MAIN << 16) | \
-                                    __CM3_CMSIS_VERSION_SUB          )     /*!< CMSIS HAL version number         */
-
-#define __CORTEX_M                (0x03)                                   /*!< Cortex-M Core                    */
-
-
-#if   defined ( __CC_ARM )
-  #define __ASM            __asm                                      /*!< asm keyword for ARM Compiler          */
-  #define __INLINE         __inline                                   /*!< inline keyword for ARM Compiler       */
-  #define __STATIC_INLINE  static __inline
-
-#elif defined ( __ICCARM__ )
-  #define __ASM            __asm                                      /*!< asm keyword for IAR Compiler          */
-  #define __INLINE         inline                                     /*!< inline keyword for IAR Compiler. Only available in High optimization mode! */
-  #define __STATIC_INLINE  static inline
-
-#elif defined ( __TMS470__ )
-  #define __ASM            __asm                                      /*!< asm keyword for TI CCS Compiler       */
-  #define __STATIC_INLINE  static inline
-
-#elif defined ( __GNUC__ )
-  #define __ASM            __asm                                      /*!< asm keyword for GNU Compiler          */
-  #define __INLINE         inline                                     /*!< inline keyword for GNU Compiler       */
-  #define __STATIC_INLINE  static inline
-
-#elif defined ( __TASKING__ )
-  #define __ASM            __asm                                      /*!< asm keyword for TASKING Compiler      */
-  #define __INLINE         inline                                     /*!< inline keyword for TASKING Compiler   */
-  #define __STATIC_INLINE  static inline
-
-#endif
-
-/** __FPU_USED indicates whether an FPU is used or not. This core does not support an FPU at all
-*/
-#define __FPU_USED       0
-
-#if defined ( __CC_ARM )
-  #if defined __TARGET_FPU_VFP
-    #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
-  #endif
-
-#elif defined ( __ICCARM__ )
-  #if defined __ARMVFP__
-    #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
-  #endif
-
-#elif defined ( __TMS470__ )
-  #if defined __TI__VFP_SUPPORT____
-    #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
-  #endif
-
-#elif defined ( __GNUC__ )
-  #if defined (__VFP_FP__) && !defined(__SOFTFP__)
-    #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
-  #endif
-
-#elif defined ( __TASKING__ )
-  #if defined __FPU_VFP__
-    #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
-  #endif
-#endif
-
-#include <stdint.h>                      /* standard types definitions                      */
-#include <core_cmInstr.h>                /* Core Instruction Access                         */
-#include <core_cmFunc.h>                 /* Core Function Access                            */
-
-#endif /* __CORE_CM3_H_GENERIC */
-
-#ifndef __CMSIS_GENERIC
-
-#ifndef __CORE_CM3_H_DEPENDANT
-#define __CORE_CM3_H_DEPENDANT
-
-/* check device defines and use defaults */
-#if defined __CHECK_DEVICE_DEFINES
-  #ifndef __CM3_REV
-    #define __CM3_REV               0x0200
-    #warning "__CM3_REV not defined in device header file; using default!"
-  #endif
-
-  #ifndef __MPU_PRESENT
-    #define __MPU_PRESENT             0
-    #warning "__MPU_PRESENT not defined in device header file; using default!"
-  #endif
-
-  #ifndef __NVIC_PRIO_BITS
-    #define __NVIC_PRIO_BITS          4
-    #warning "__NVIC_PRIO_BITS not defined in device header file; using default!"
-  #endif
-
-  #ifndef __Vendor_SysTickConfig
-    #define __Vendor_SysTickConfig    0
-    #warning "__Vendor_SysTickConfig not defined in device header file; using default!"
-  #endif
-#endif
-
-/* IO definitions (access restrictions to peripheral registers) */
-/**
-    \defgroup CMSIS_glob_defs CMSIS Global Defines
-
-    <strong>IO Type Qualifiers</strong> are used
-    \li to specify the access to peripheral variables.
-    \li for automatic generation of peripheral register debug information.
-*/
-#ifdef __cplusplus
-  #define   __I     volatile             /*!< Defines 'read only' permissions                 */
-#else
-  #define   __I     volatile const       /*!< Defines 'read only' permissions                 */
-#endif
-#define     __O     volatile             /*!< Defines 'write only' permissions                */
-#define     __IO    volatile             /*!< Defines 'read / write' permissions              */
-
-/*@} end of group Cortex_M3 */
-
-
-
-/*******************************************************************************
- *                 Register Abstraction
-  Core Register contain:
-  - Core Register
-  - Core NVIC Register
-  - Core SCB Register
-  - Core SysTick Register
-  - Core Debug Register
-  - Core MPU Register
- ******************************************************************************/
-/** \defgroup CMSIS_core_register Defines and Type Definitions
-    \brief Type definitions and defines for Cortex-M processor based devices.
-*/
-
-/** \ingroup    CMSIS_core_register
-    \defgroup   CMSIS_CORE  Status and Control Registers
-    \brief  Core Register type definitions.
-  @{
- */
-
-/** \brief  Union type to access the Application Program Status Register (APSR).
- */
-typedef union
-{
-  struct
-  {
-#if (__CORTEX_M != 0x04)
-    uint32_t _reserved0:27;              /*!< bit:  0..26  Reserved                           */
-#else
-    uint32_t _reserved0:16;              /*!< bit:  0..15  Reserved                           */
-    uint32_t GE:4;                       /*!< bit: 16..19  Greater than or Equal flags        */
-    uint32_t _reserved1:7;               /*!< bit: 20..26  Reserved                           */
-#endif
-    uint32_t Q:1;                        /*!< bit:     27  Saturation condition flag          */
-    uint32_t V:1;                        /*!< bit:     28  Overflow condition code flag       */
-    uint32_t C:1;                        /*!< bit:     29  Carry condition code flag          */
-    uint32_t Z:1;                        /*!< bit:     30  Zero condition code flag           */
-    uint32_t N:1;                        /*!< bit:     31  Negative condition code flag       */
-  } b;                                   /*!< Structure used for bit  access                  */
-  uint32_t w;                            /*!< Type      used for word access                  */
-} APSR_Type;
-
-
-/** \brief  Union type to access the Interrupt Program Status Register (IPSR).
- */
-typedef union
-{
-  struct
-  {
-    uint32_t ISR:9;                      /*!< bit:  0.. 8  Exception number                   */
-    uint32_t _reserved0:23;              /*!< bit:  9..31  Reserved                           */
-  } b;                                   /*!< Structure used for bit  access                  */
-  uint32_t w;                            /*!< Type      used for word access                  */
-} IPSR_Type;
-
-
-/** \brief  Union type to access the Special-Purpose Program Status Registers (xPSR).
- */
-typedef union
-{
-  struct
-  {
-    uint32_t ISR:9;                      /*!< bit:  0.. 8  Exception number                   */
-#if (__CORTEX_M != 0x04)
-    uint32_t _reserved0:15;              /*!< bit:  9..23  Reserved                           */
-#else
-    uint32_t _reserved0:7;               /*!< bit:  9..15  Reserved                           */
-    uint32_t GE:4;                       /*!< bit: 16..19  Greater than or Equal flags        */
-    uint32_t _reserved1:4;               /*!< bit: 20..23  Reserved                           */
-#endif
-    uint32_t T:1;                        /*!< bit:     24  Thumb bit        (read 0)          */
-    uint32_t IT:2;                       /*!< bit: 25..26  saved IT state   (read 0)          */
-    uint32_t Q:1;                        /*!< bit:     27  Saturation condition flag          */
-    uint32_t V:1;                        /*!< bit:     28  Overflow condition code flag       */
-    uint32_t C:1;                        /*!< bit:     29  Carry condition code flag          */
-    uint32_t Z:1;                        /*!< bit:     30  Zero condition code flag           */
-    uint32_t N:1;                        /*!< bit:     31  Negative condition code flag       */
-  } b;                                   /*!< Structure used for bit  access                  */
-  uint32_t w;                            /*!< Type      used for word access                  */
-} xPSR_Type;
-
-
-/** \brief  Union type to access the Control Registers (CONTROL).
- */
-typedef union
-{
-  struct
-  {
-    uint32_t nPRIV:1;                    /*!< bit:      0  Execution privilege in Thread mode */
-    uint32_t SPSEL:1;                    /*!< bit:      1  Stack to be used                   */
-    uint32_t FPCA:1;                     /*!< bit:      2  FP extension active flag           */
-    uint32_t _reserved0:29;              /*!< bit:  3..31  Reserved                           */
-  } b;                                   /*!< Structure used for bit  access                  */
-  uint32_t w;                            /*!< Type      used for word access                  */
-} CONTROL_Type;
-
-/*@} end of group CMSIS_CORE */
-
-
-/** \ingroup    CMSIS_core_register
-    \defgroup   CMSIS_NVIC  Nested Vectored Interrupt Controller (NVIC)
-    \brief      Type definitions for the NVIC Registers
-  @{
- */
-
-/** \brief  Structure type to access the Nested Vectored Interrupt Controller (NVIC).
- */
-typedef struct
-{
-  __IO uint32_t ISER[8];                 /*!< Offset: 0x000 (R/W)  Interrupt Set Enable Register           */
-       uint32_t RESERVED0[24];
-  __IO uint32_t ICER[8];                 /*!< Offset: 0x080 (R/W)  Interrupt Clear Enable Register         */
-       uint32_t RSERVED1[24];
-  __IO uint32_t ISPR[8];                 /*!< Offset: 0x100 (R/W)  Interrupt Set Pending Register          */
-       uint32_t RESERVED2[24];
-  __IO uint32_t ICPR[8];                 /*!< Offset: 0x180 (R/W)  Interrupt Clear Pending Register        */
-       uint32_t RESERVED3[24];
-  __IO uint32_t IABR[8];                 /*!< Offset: 0x200 (R/W)  Interrupt Active bit Register           */
-       uint32_t RESERVED4[56];
-  __IO uint8_t  IP[240];                 /*!< Offset: 0x300 (R/W)  Interrupt Priority Register (8Bit wide) */
-       uint32_t RESERVED5[644];
-  __O  uint32_t STIR;                    /*!< Offset: 0xE00 ( /W)  Software Trigger Interrupt Register     */
-}  NVIC_Type;
-
-/* Software Triggered Interrupt Register Definitions */
-#define NVIC_STIR_INTID_Pos                 0                                          /*!< STIR: INTLINESNUM Position */
-#define NVIC_STIR_INTID_Msk                (0x1FFUL << NVIC_STIR_INTID_Pos)            /*!< STIR: INTLINESNUM Mask */
-
-/*@} end of group CMSIS_NVIC */
-
-
-/** \ingroup  CMSIS_core_register
-    \defgroup CMSIS_SCB     System Control Block (SCB)
-    \brief      Type definitions for the System Control Block Registers
-  @{
- */
-
-/** \brief  Structure type to access the System Control Block (SCB).
- */
-typedef struct
-{
-  __I  uint32_t CPUID;                   /*!< Offset: 0x000 (R/ )  CPUID Base Register                                   */
-  __IO uint32_t ICSR;                    /*!< Offset: 0x004 (R/W)  Interrupt Control and State Register                  */
-  __IO uint32_t VTOR;                    /*!< Offset: 0x008 (R/W)  Vector Table Offset Register                          */
-  __IO uint32_t AIRCR;                   /*!< Offset: 0x00C (R/W)  Application Interrupt and Reset Control Register      */
-  __IO uint32_t SCR;                     /*!< Offset: 0x010 (R/W)  System Control Register                               */
-  __IO uint32_t CCR;                     /*!< Offset: 0x014 (R/W)  Configuration Control Register                        */
-  __IO uint8_t  SHP[12];                 /*!< Offset: 0x018 (R/W)  System Handlers Priority Registers (4-7, 8-11, 12-15) */
-  __IO uint32_t SHCSR;                   /*!< Offset: 0x024 (R/W)  System Handler Control and State Register             */
-  __IO uint32_t CFSR;                    /*!< Offset: 0x028 (R/W)  Configurable Fault Status Register                    */
-  __IO uint32_t HFSR;                    /*!< Offset: 0x02C (R/W)  HardFault Status Register                             */
-  __IO uint32_t DFSR;                    /*!< Offset: 0x030 (R/W)  Debug Fault Status Register                           */
-  __IO uint32_t MMFAR;                   /*!< Offset: 0x034 (R/W)  MemManage Fault Address Register                      */
-  __IO uint32_t BFAR;                    /*!< Offset: 0x038 (R/W)  BusFault Address Register                             */
-  __IO uint32_t AFSR;                    /*!< Offset: 0x03C (R/W)  Auxiliary Fault Status Register                       */
-  __I  uint32_t PFR[2];                  /*!< Offset: 0x040 (R/ )  Processor Feature Register                            */
-  __I  uint32_t DFR;                     /*!< Offset: 0x048 (R/ )  Debug Feature Register                                */
-  __I  uint32_t ADR;                     /*!< Offset: 0x04C (R/ )  Auxiliary Feature Register                            */
-  __I  uint32_t MMFR[4];                 /*!< Offset: 0x050 (R/ )  Memory Model Feature Register                         */
-  __I  uint32_t ISAR[5];                 /*!< Offset: 0x060 (R/ )  Instruction Set Attributes Register                   */
-       uint32_t RESERVED0[5];
-  __IO uint32_t CPACR;                   /*!< Offset: 0x088 (R/W)  Coprocessor Access Control Register                   */
-} SCB_Type;
-
-/* SCB CPUID Register Definitions */
-#define SCB_CPUID_IMPLEMENTER_Pos          24                                             /*!< SCB CPUID: IMPLEMENTER Position */
-#define SCB_CPUID_IMPLEMENTER_Msk          (0xFFUL << SCB_CPUID_IMPLEMENTER_Pos)          /*!< SCB CPUID: IMPLEMENTER Mask */
-
-#define SCB_CPUID_VARIANT_Pos              20                                             /*!< SCB CPUID: VARIANT Position */
-#define SCB_CPUID_VARIANT_Msk              (0xFUL << SCB_CPUID_VARIANT_Pos)               /*!< SCB CPUID: VARIANT Mask */
-
-#define SCB_CPUID_ARCHITECTURE_Pos         16                                             /*!< SCB CPUID: ARCHITECTURE Position */
-#define SCB_CPUID_ARCHITECTURE_Msk         (0xFUL << SCB_CPUID_ARCHITECTURE_Pos)          /*!< SCB CPUID: ARCHITECTURE Mask */
-
-#define SCB_CPUID_PARTNO_Pos                4                                             /*!< SCB CPUID: PARTNO Position */
-#define SCB_CPUID_PARTNO_Msk               (0xFFFUL << SCB_CPUID_PARTNO_Pos)              /*!< SCB CPUID: PARTNO Mask */
-
-#define SCB_CPUID_REVISION_Pos              0                                             /*!< SCB CPUID: REVISION Position */
-#define SCB_CPUID_REVISION_Msk             (0xFUL << SCB_CPUID_REVISION_Pos)              /*!< SCB CPUID: REVISION Mask */
-
-/* SCB Interrupt Control State Register Definitions */
-#define SCB_ICSR_NMIPENDSET_Pos            31                                             /*!< SCB ICSR: NMIPENDSET Position */
-#define SCB_ICSR_NMIPENDSET_Msk            (1UL << SCB_ICSR_NMIPENDSET_Pos)               /*!< SCB ICSR: NMIPENDSET Mask */
-
-#define SCB_ICSR_PENDSVSET_Pos             28                                             /*!< SCB ICSR: PENDSVSET Position */
-#define SCB_ICSR_PENDSVSET_Msk             (1UL << SCB_ICSR_PENDSVSET_Pos)                /*!< SCB ICSR: PENDSVSET Mask */
-
-#define SCB_ICSR_PENDSVCLR_Pos             27                                             /*!< SCB ICSR: PENDSVCLR Position */
-#define SCB_ICSR_PENDSVCLR_Msk             (1UL << SCB_ICSR_PENDSVCLR_Pos)                /*!< SCB ICSR: PENDSVCLR Mask */
-
-#define SCB_ICSR_PENDSTSET_Pos             26                                             /*!< SCB ICSR: PENDSTSET Position */
-#define SCB_ICSR_PENDSTSET_Msk             (1UL << SCB_ICSR_PENDSTSET_Pos)                /*!< SCB ICSR: PENDSTSET Mask */
-
-#define SCB_ICSR_PENDSTCLR_Pos             25                                             /*!< SCB ICSR: PENDSTCLR Position */
-#define SCB_ICSR_PENDSTCLR_Msk             (1UL << SCB_ICSR_PENDSTCLR_Pos)                /*!< SCB ICSR: PENDSTCLR Mask */
-
-#define SCB_ICSR_ISRPREEMPT_Pos            23                                             /*!< SCB ICSR: ISRPREEMPT Position */
-#define SCB_ICSR_ISRPREEMPT_Msk            (1UL << SCB_ICSR_ISRPREEMPT_Pos)               /*!< SCB ICSR: ISRPREEMPT Mask */
-
-#define SCB_ICSR_ISRPENDING_Pos            22                                             /*!< SCB ICSR: ISRPENDING Position */
-#define SCB_ICSR_ISRPENDING_Msk            (1UL << SCB_ICSR_ISRPENDING_Pos)               /*!< SCB ICSR: ISRPENDING Mask */
-
-#define SCB_ICSR_VECTPENDING_Pos           12                                             /*!< SCB ICSR: VECTPENDING Position */
-#define SCB_ICSR_VECTPENDING_Msk           (0x1FFUL << SCB_ICSR_VECTPENDING_Pos)          /*!< SCB ICSR: VECTPENDING Mask */
-
-#define SCB_ICSR_RETTOBASE_Pos             11                                             /*!< SCB ICSR: RETTOBASE Position */
-#define SCB_ICSR_RETTOBASE_Msk             (1UL << SCB_ICSR_RETTOBASE_Pos)                /*!< SCB ICSR: RETTOBASE Mask */
-
-#define SCB_ICSR_VECTACTIVE_Pos             0                                             /*!< SCB ICSR: VECTACTIVE Position */
-#define SCB_ICSR_VECTACTIVE_Msk            (0x1FFUL << SCB_ICSR_VECTACTIVE_Pos)           /*!< SCB ICSR: VECTACTIVE Mask */
-
-/* SCB Vector Table Offset Register Definitions */
-#if (__CM3_REV < 0x0201)                   /* core r2p1 */
-#define SCB_VTOR_TBLBASE_Pos               29                                             /*!< SCB VTOR: TBLBASE Position */
-#define SCB_VTOR_TBLBASE_Msk               (1UL << SCB_VTOR_TBLBASE_Pos)                  /*!< SCB VTOR: TBLBASE Mask */
-
-#define SCB_VTOR_TBLOFF_Pos                 7                                             /*!< SCB VTOR: TBLOFF Position */
-#define SCB_VTOR_TBLOFF_Msk                (0x3FFFFFUL << SCB_VTOR_TBLOFF_Pos)            /*!< SCB VTOR: TBLOFF Mask */
-#else
-#define SCB_VTOR_TBLOFF_Pos                 7                                             /*!< SCB VTOR: TBLOFF Position */
-#define SCB_VTOR_TBLOFF_Msk                (0x1FFFFFFUL << SCB_VTOR_TBLOFF_Pos)           /*!< SCB VTOR: TBLOFF Mask */
-#endif
-
-/* SCB Application Interrupt and Reset Control Register Definitions */
-#define SCB_AIRCR_VECTKEY_Pos              16                                             /*!< SCB AIRCR: VECTKEY Position */
-#define SCB_AIRCR_VECTKEY_Msk              (0xFFFFUL << SCB_AIRCR_VECTKEY_Pos)            /*!< SCB AIRCR: VECTKEY Mask */
-
-#define SCB_AIRCR_VECTKEYSTAT_Pos          16                                             /*!< SCB AIRCR: VECTKEYSTAT Position */
-#define SCB_AIRCR_VECTKEYSTAT_Msk          (0xFFFFUL << SCB_AIRCR_VECTKEYSTAT_Pos)        /*!< SCB AIRCR: VECTKEYSTAT Mask */
-
-#define SCB_AIRCR_ENDIANESS_Pos            15                                             /*!< SCB AIRCR: ENDIANESS Position */
-#define SCB_AIRCR_ENDIANESS_Msk            (1UL << SCB_AIRCR_ENDIANESS_Pos)               /*!< SCB AIRCR: ENDIANESS Mask */
-
-#define SCB_AIRCR_PRIGROUP_Pos              8                                             /*!< SCB AIRCR: PRIGROUP Position */
-#define SCB_AIRCR_PRIGROUP_Msk             (7UL << SCB_AIRCR_PRIGROUP_Pos)                /*!< SCB AIRCR: PRIGROUP Mask */
-
-#define SCB_AIRCR_SYSRESETREQ_Pos           2                                             /*!< SCB AIRCR: SYSRESETREQ Position */
-#define SCB_AIRCR_SYSRESETREQ_Msk          (1UL << SCB_AIRCR_SYSRESETREQ_Pos)             /*!< SCB AIRCR: SYSRESETREQ Mask */
-
-#define SCB_AIRCR_VECTCLRACTIVE_Pos         1                                             /*!< SCB AIRCR: VECTCLRACTIVE Position */
-#define SCB_AIRCR_VECTCLRACTIVE_Msk        (1UL << SCB_AIRCR_VECTCLRACTIVE_Pos)           /*!< SCB AIRCR: VECTCLRACTIVE Mask */
-
-#define SCB_AIRCR_VECTRESET_Pos             0                                             /*!< SCB AIRCR: VECTRESET Position */
-#define SCB_AIRCR_VECTRESET_Msk            (1UL << SCB_AIRCR_VECTRESET_Pos)               /*!< SCB AIRCR: VECTRESET Mask */
-
-/* SCB System Control Register Definitions */
-#define SCB_SCR_SEVONPEND_Pos               4                                             /*!< SCB SCR: SEVONPEND Position */
-#define SCB_SCR_SEVONPEND_Msk              (1UL << SCB_SCR_SEVONPEND_Pos)                 /*!< SCB SCR: SEVONPEND Mask */
-
-#define SCB_SCR_SLEEPDEEP_Pos               2                                             /*!< SCB SCR: SLEEPDEEP Position */
-#define SCB_SCR_SLEEPDEEP_Msk              (1UL << SCB_SCR_SLEEPDEEP_Pos)                 /*!< SCB SCR: SLEEPDEEP Mask */
-
-#define SCB_SCR_SLEEPONEXIT_Pos             1                                             /*!< SCB SCR: SLEEPONEXIT Position */
-#define SCB_SCR_SLEEPONEXIT_Msk            (1UL << SCB_SCR_SLEEPONEXIT_Pos)               /*!< SCB SCR: SLEEPONEXIT Mask */
-
-/* SCB Configuration Control Register Definitions */
-#define SCB_CCR_STKALIGN_Pos                9                                             /*!< SCB CCR: STKALIGN Position */
-#define SCB_CCR_STKALIGN_Msk               (1UL << SCB_CCR_STKALIGN_Pos)                  /*!< SCB CCR: STKALIGN Mask */
-
-#define SCB_CCR_BFHFNMIGN_Pos               8                                             /*!< SCB CCR: BFHFNMIGN Position */
-#define SCB_CCR_BFHFNMIGN_Msk              (1UL << SCB_CCR_BFHFNMIGN_Pos)                 /*!< SCB CCR: BFHFNMIGN Mask */
-
-#define SCB_CCR_DIV_0_TRP_Pos               4                                             /*!< SCB CCR: DIV_0_TRP Position */
-#define SCB_CCR_DIV_0_TRP_Msk              (1UL << SCB_CCR_DIV_0_TRP_Pos)                 /*!< SCB CCR: DIV_0_TRP Mask */
-
-#define SCB_CCR_UNALIGN_TRP_Pos             3                                             /*!< SCB CCR: UNALIGN_TRP Position */
-#define SCB_CCR_UNALIGN_TRP_Msk            (1UL << SCB_CCR_UNALIGN_TRP_Pos)               /*!< SCB CCR: UNALIGN_TRP Mask */
-
-#define SCB_CCR_USERSETMPEND_Pos            1                                             /*!< SCB CCR: USERSETMPEND Position */
-#define SCB_CCR_USERSETMPEND_Msk           (1UL << SCB_CCR_USERSETMPEND_Pos)              /*!< SCB CCR: USERSETMPEND Mask */
-
-#define SCB_CCR_NONBASETHRDENA_Pos          0                                             /*!< SCB CCR: NONBASETHRDENA Position */
-#define SCB_CCR_NONBASETHRDENA_Msk         (1UL << SCB_CCR_NONBASETHRDENA_Pos)            /*!< SCB CCR: NONBASETHRDENA Mask */
-
-/* SCB System Handler Control and State Register Definitions */
-#define SCB_SHCSR_USGFAULTENA_Pos          18                                             /*!< SCB SHCSR: USGFAULTENA Position */
-#define SCB_SHCSR_USGFAULTENA_Msk          (1UL << SCB_SHCSR_USGFAULTENA_Pos)             /*!< SCB SHCSR: USGFAULTENA Mask */
-
-#define SCB_SHCSR_BUSFAULTENA_Pos          17                                             /*!< SCB SHCSR: BUSFAULTENA Position */
-#define SCB_SHCSR_BUSFAULTENA_Msk          (1UL << SCB_SHCSR_BUSFAULTENA_Pos)             /*!< SCB SHCSR: BUSFAULTENA Mask */
-
-#define SCB_SHCSR_MEMFAULTENA_Pos          16                                             /*!< SCB SHCSR: MEMFAULTENA Position */
-#define SCB_SHCSR_MEMFAULTENA_Msk          (1UL << SCB_SHCSR_MEMFAULTENA_Pos)             /*!< SCB SHCSR: MEMFAULTENA Mask */
-
-#define SCB_SHCSR_SVCALLPENDED_Pos         15                                             /*!< SCB SHCSR: SVCALLPENDED Position */
-#define SCB_SHCSR_SVCALLPENDED_Msk         (1UL << SCB_SHCSR_SVCALLPENDED_Pos)            /*!< SCB SHCSR: SVCALLPENDED Mask */
-
-#define SCB_SHCSR_BUSFAULTPENDED_Pos       14                                             /*!< SCB SHCSR: BUSFAULTPENDED Position */
-#define SCB_SHCSR_BUSFAULTPENDED_Msk       (1UL << SCB_SHCSR_BUSFAULTPENDED_Pos)          /*!< SCB SHCSR: BUSFAULTPENDED Mask */
-
-#define SCB_SHCSR_MEMFAULTPENDED_Pos       13                                             /*!< SCB SHCSR: MEMFAULTPENDED Position */
-#define SCB_SHCSR_MEMFAULTPENDED_Msk       (1UL << SCB_SHCSR_MEMFAULTPENDED_Pos)          /*!< SCB SHCSR: MEMFAULTPENDED Mask */
-
-#define SCB_SHCSR_USGFAULTPENDED_Pos       12                                             /*!< SCB SHCSR: USGFAULTPENDED Position */
-#define SCB_SHCSR_USGFAULTPENDED_Msk       (1UL << SCB_SHCSR_USGFAULTPENDED_Pos)          /*!< SCB SHCSR: USGFAULTPENDED Mask */
-
-#define SCB_SHCSR_SYSTICKACT_Pos           11                                             /*!< SCB SHCSR: SYSTICKACT Position */
-#define SCB_SHCSR_SYSTICKACT_Msk           (1UL << SCB_SHCSR_SYSTICKACT_Pos)              /*!< SCB SHCSR: SYSTICKACT Mask */
-
-#define SCB_SHCSR_PENDSVACT_Pos            10                                             /*!< SCB SHCSR: PENDSVACT Position */
-#define SCB_SHCSR_PENDSVACT_Msk            (1UL << SCB_SHCSR_PENDSVACT_Pos)               /*!< SCB SHCSR: PENDSVACT Mask */
-
-#define SCB_SHCSR_MONITORACT_Pos            8                                             /*!< SCB SHCSR: MONITORACT Position */
-#define SCB_SHCSR_MONITORACT_Msk           (1UL << SCB_SHCSR_MONITORACT_Pos)              /*!< SCB SHCSR: MONITORACT Mask */
-
-#define SCB_SHCSR_SVCALLACT_Pos             7                                             /*!< SCB SHCSR: SVCALLACT Position */
-#define SCB_SHCSR_SVCALLACT_Msk            (1UL << SCB_SHCSR_SVCALLACT_Pos)               /*!< SCB SHCSR: SVCALLACT Mask */
-
-#define SCB_SHCSR_USGFAULTACT_Pos           3                                             /*!< SCB SHCSR: USGFAULTACT Position */
-#define SCB_SHCSR_USGFAULTACT_Msk          (1UL << SCB_SHCSR_USGFAULTACT_Pos)             /*!< SCB SHCSR: USGFAULTACT Mask */
-
-#define SCB_SHCSR_BUSFAULTACT_Pos           1                                             /*!< SCB SHCSR: BUSFAULTACT Position */
-#define SCB_SHCSR_BUSFAULTACT_Msk          (1UL << SCB_SHCSR_BUSFAULTACT_Pos)             /*!< SCB SHCSR: BUSFAULTACT Mask */
-
-#define SCB_SHCSR_MEMFAULTACT_Pos           0                                             /*!< SCB SHCSR: MEMFAULTACT Position */
-#define SCB_SHCSR_MEMFAULTACT_Msk          (1UL << SCB_SHCSR_MEMFAULTACT_Pos)             /*!< SCB SHCSR: MEMFAULTACT Mask */
-
-/* SCB Configurable Fault Status Registers Definitions */
-#define SCB_CFSR_USGFAULTSR_Pos            16                                             /*!< SCB CFSR: Usage Fault Status Register Position */
-#define SCB_CFSR_USGFAULTSR_Msk            (0xFFFFUL << SCB_CFSR_USGFAULTSR_Pos)          /*!< SCB CFSR: Usage Fault Status Register Mask */
-
-#define SCB_CFSR_BUSFAULTSR_Pos             8                                             /*!< SCB CFSR: Bus Fault Status Register Position */
-#define SCB_CFSR_BUSFAULTSR_Msk            (0xFFUL << SCB_CFSR_BUSFAULTSR_Pos)            /*!< SCB CFSR: Bus Fault Status Register Mask */
-
-#define SCB_CFSR_MEMFAULTSR_Pos             0                                             /*!< SCB CFSR: Memory Manage Fault Status Register Position */
-#define SCB_CFSR_MEMFAULTSR_Msk            (0xFFUL << SCB_CFSR_MEMFAULTSR_Pos)            /*!< SCB CFSR: Memory Manage Fault Status Register Mask */
-
-/* SCB Hard Fault Status Registers Definitions */
-#define SCB_HFSR_DEBUGEVT_Pos              31                                             /*!< SCB HFSR: DEBUGEVT Position */
-#define SCB_HFSR_DEBUGEVT_Msk              (1UL << SCB_HFSR_DEBUGEVT_Pos)                 /*!< SCB HFSR: DEBUGEVT Mask */
-
-#define SCB_HFSR_FORCED_Pos                30                                             /*!< SCB HFSR: FORCED Position */
-#define SCB_HFSR_FORCED_Msk                (1UL << SCB_HFSR_FORCED_Pos)                   /*!< SCB HFSR: FORCED Mask */
-
-#define SCB_HFSR_VECTTBL_Pos                1                                             /*!< SCB HFSR: VECTTBL Position */
-#define SCB_HFSR_VECTTBL_Msk               (1UL << SCB_HFSR_VECTTBL_Pos)                  /*!< SCB HFSR: VECTTBL Mask */
-
-/* SCB Debug Fault Status Register Definitions */
-#define SCB_DFSR_EXTERNAL_Pos               4                                             /*!< SCB DFSR: EXTERNAL Position */
-#define SCB_DFSR_EXTERNAL_Msk              (1UL << SCB_DFSR_EXTERNAL_Pos)                 /*!< SCB DFSR: EXTERNAL Mask */
-
-#define SCB_DFSR_VCATCH_Pos                 3                                             /*!< SCB DFSR: VCATCH Position */
-#define SCB_DFSR_VCATCH_Msk                (1UL << SCB_DFSR_VCATCH_Pos)                   /*!< SCB DFSR: VCATCH Mask */
-
-#define SCB_DFSR_DWTTRAP_Pos                2                                             /*!< SCB DFSR: DWTTRAP Position */
-#define SCB_DFSR_DWTTRAP_Msk               (1UL << SCB_DFSR_DWTTRAP_Pos)                  /*!< SCB DFSR: DWTTRAP Mask */
-
-#define SCB_DFSR_BKPT_Pos                   1                                             /*!< SCB DFSR: BKPT Position */
-#define SCB_DFSR_BKPT_Msk                  (1UL << SCB_DFSR_BKPT_Pos)                     /*!< SCB DFSR: BKPT Mask */
-
-#define SCB_DFSR_HALTED_Pos                 0                                             /*!< SCB DFSR: HALTED Position */
-#define SCB_DFSR_HALTED_Msk                (1UL << SCB_DFSR_HALTED_Pos)                   /*!< SCB DFSR: HALTED Mask */
-
-/*@} end of group CMSIS_SCB */
-
-
-/** \ingroup  CMSIS_core_register
-    \defgroup CMSIS_SCnSCB System Controls not in SCB (SCnSCB)
-    \brief      Type definitions for the System Control and ID Register not in the SCB
-  @{
- */
-
-/** \brief  Structure type to access the System Control and ID Register not in the SCB.
- */
-typedef struct
-{
-       uint32_t RESERVED0[1];
-  __I  uint32_t ICTR;                    /*!< Offset: 0x004 (R/ )  Interrupt Controller Type Register      */
-#if ((defined __CM3_REV) && (__CM3_REV >= 0x200))
-  __IO uint32_t ACTLR;                   /*!< Offset: 0x008 (R/W)  Auxiliary Control Register      */
-#else
-       uint32_t RESERVED1[1];
-#endif
-} SCnSCB_Type;
-
-/* Interrupt Controller Type Register Definitions */
-#define SCnSCB_ICTR_INTLINESNUM_Pos         0                                          /*!< ICTR: INTLINESNUM Position */
-#define SCnSCB_ICTR_INTLINESNUM_Msk        (0xFUL << SCnSCB_ICTR_INTLINESNUM_Pos)      /*!< ICTR: INTLINESNUM Mask */
-
-/* Auxiliary Control Register Definitions */
-
-#define SCnSCB_ACTLR_DISFOLD_Pos            2                                          /*!< ACTLR: DISFOLD Position */
-#define SCnSCB_ACTLR_DISFOLD_Msk           (1UL << SCnSCB_ACTLR_DISFOLD_Pos)           /*!< ACTLR: DISFOLD Mask */
-
-#define SCnSCB_ACTLR_DISDEFWBUF_Pos         1                                          /*!< ACTLR: DISDEFWBUF Position */
-#define SCnSCB_ACTLR_DISDEFWBUF_Msk        (1UL << SCnSCB_ACTLR_DISDEFWBUF_Pos)        /*!< ACTLR: DISDEFWBUF Mask */
-
-#define SCnSCB_ACTLR_DISMCYCINT_Pos         0                                          /*!< ACTLR: DISMCYCINT Position */
-#define SCnSCB_ACTLR_DISMCYCINT_Msk        (1UL << SCnSCB_ACTLR_DISMCYCINT_Pos)        /*!< ACTLR: DISMCYCINT Mask */
-
-/*@} end of group CMSIS_SCnotSCB */
-
-
-/** \ingroup  CMSIS_core_register
-    \defgroup CMSIS_SysTick     System Tick Timer (SysTick)
-    \brief      Type definitions for the System Timer Registers.
-  @{
- */
-
-/** \brief  Structure type to access the System Timer (SysTick).
- */
-typedef struct
-{
-  __IO uint32_t CTRL;                    /*!< Offset: 0x000 (R/W)  SysTick Control and Status Register */
-  __IO uint32_t LOAD;                    /*!< Offset: 0x004 (R/W)  SysTick Reload Value Register       */
-  __IO uint32_t VAL;                     /*!< Offset: 0x008 (R/W)  SysTick Current Value Register      */
-  __I  uint32_t CALIB;                   /*!< Offset: 0x00C (R/ )  SysTick Calibration Register        */
-} SysTick_Type;
-
-/* SysTick Control / Status Register Definitions */
-#define SysTick_CTRL_COUNTFLAG_Pos         16                                             /*!< SysTick CTRL: COUNTFLAG Position */
-#define SysTick_CTRL_COUNTFLAG_Msk         (1UL << SysTick_CTRL_COUNTFLAG_Pos)            /*!< SysTick CTRL: COUNTFLAG Mask */
-
-#define SysTick_CTRL_CLKSOURCE_Pos          2                                             /*!< SysTick CTRL: CLKSOURCE Position */
-#define SysTick_CTRL_CLKSOURCE_Msk         (1UL << SysTick_CTRL_CLKSOURCE_Pos)            /*!< SysTick CTRL: CLKSOURCE Mask */
-
-#define SysTick_CTRL_TICKINT_Pos            1                                             /*!< SysTick CTRL: TICKINT Position */
-#define SysTick_CTRL_TICKINT_Msk           (1UL << SysTick_CTRL_TICKINT_Pos)              /*!< SysTick CTRL: TICKINT Mask */
-
-#define SysTick_CTRL_ENABLE_Pos             0                                             /*!< SysTick CTRL: ENABLE Position */
-#define SysTick_CTRL_ENABLE_Msk            (1UL << SysTick_CTRL_ENABLE_Pos)               /*!< SysTick CTRL: ENABLE Mask */
-
-/* SysTick Reload Register Definitions */
-#define SysTick_LOAD_RELOAD_Pos             0                                             /*!< SysTick LOAD: RELOAD Position */
-#define SysTick_LOAD_RELOAD_Msk            (0xFFFFFFUL << SysTick_LOAD_RELOAD_Pos)        /*!< SysTick LOAD: RELOAD Mask */
-
-/* SysTick Current Register Definitions */
-#define SysTick_VAL_CURRENT_Pos             0                                             /*!< SysTick VAL: CURRENT Position */
-#define SysTick_VAL_CURRENT_Msk            (0xFFFFFFUL << SysTick_VAL_CURRENT_Pos)        /*!< SysTick VAL: CURRENT Mask */
-
-/* SysTick Calibration Register Definitions */
-#define SysTick_CALIB_NOREF_Pos            31                                             /*!< SysTick CALIB: NOREF Position */
-#define SysTick_CALIB_NOREF_Msk            (1UL << SysTick_CALIB_NOREF_Pos)               /*!< SysTick CALIB: NOREF Mask */
-
-#define SysTick_CALIB_SKEW_Pos             30                                             /*!< SysTick CALIB: SKEW Position */
-#define SysTick_CALIB_SKEW_Msk             (1UL << SysTick_CALIB_SKEW_Pos)                /*!< SysTick CALIB: SKEW Mask */
-
-#define SysTick_CALIB_TENMS_Pos             0                                             /*!< SysTick CALIB: TENMS Position */
-#define SysTick_CALIB_TENMS_Msk            (0xFFFFFFUL << SysTick_VAL_CURRENT_Pos)        /*!< SysTick CALIB: TENMS Mask */
-
-/*@} end of group CMSIS_SysTick */
-
-
-/** \ingroup  CMSIS_core_register
-    \defgroup CMSIS_ITM     Instrumentation Trace Macrocell (ITM)
-    \brief      Type definitions for the Instrumentation Trace Macrocell (ITM)
-  @{
- */
-
-/** \brief  Structure type to access the Instrumentation Trace Macrocell Register (ITM).
- */
-typedef struct
-{
-  __O  union
-  {
-    __O  uint8_t    u8;                  /*!< Offset: 0x000 ( /W)  ITM Stimulus Port 8-bit                   */
-    __O  uint16_t   u16;                 /*!< Offset: 0x000 ( /W)  ITM Stimulus Port 16-bit                  */
-    __O  uint32_t   u32;                 /*!< Offset: 0x000 ( /W)  ITM Stimulus Port 32-bit                  */
-  }  PORT [32];                          /*!< Offset: 0x000 ( /W)  ITM Stimulus Port Registers               */
-       uint32_t RESERVED0[864];
-  __IO uint32_t TER;                     /*!< Offset: 0xE00 (R/W)  ITM Trace Enable Register                 */
-       uint32_t RESERVED1[15];
-  __IO uint32_t TPR;                     /*!< Offset: 0xE40 (R/W)  ITM Trace Privilege Register              */
-       uint32_t RESERVED2[15];
-  __IO uint32_t TCR;                     /*!< Offset: 0xE80 (R/W)  ITM Trace Control Register                */
-       uint32_t RESERVED3[29];
-  __O  uint32_t IWR;                     /*!< Offset: 0xEF8 ( /W)  ITM Integration Write Register            */
-  __I  uint32_t IRR;                     /*!< Offset: 0xEFC (R/ )  ITM Integration Read Register             */
-  __IO uint32_t IMCR;                    /*!< Offset: 0xF00 (R/W)  ITM Integration Mode Control Register     */
-       uint32_t RESERVED4[43];
-  __O  uint32_t LAR;                     /*!< Offset: 0xFB0 ( /W)  ITM Lock Access Register                  */
-  __I  uint32_t LSR;                     /*!< Offset: 0xFB4 (R/ )  ITM Lock Status Register                  */
-       uint32_t RESERVED5[6];
-  __I  uint32_t PID4;                    /*!< Offset: 0xFD0 (R/ )  ITM Peripheral Identification Register #4 */
-  __I  uint32_t PID5;                    /*!< Offset: 0xFD4 (R/ )  ITM Peripheral Identification Register #5 */
-  __I  uint32_t PID6;                    /*!< Offset: 0xFD8 (R/ )  ITM Peripheral Identification Register #6 */
-  __I  uint32_t PID7;                    /*!< Offset: 0xFDC (R/ )  ITM Peripheral Identification Register #7 */
-  __I  uint32_t PID0;                    /*!< Offset: 0xFE0 (R/ )  ITM Peripheral Identification Register #0 */
-  __I  uint32_t PID1;                    /*!< Offset: 0xFE4 (R/ )  ITM Peripheral Identification Register #1 */
-  __I  uint32_t PID2;                    /*!< Offset: 0xFE8 (R/ )  ITM Peripheral Identification Register #2 */
-  __I  uint32_t PID3;                    /*!< Offset: 0xFEC (R/ )  ITM Peripheral Identification Register #3 */
-  __I  uint32_t CID0;                    /*!< Offset: 0xFF0 (R/ )  ITM Component  Identification Register #0 */
-  __I  uint32_t CID1;                    /*!< Offset: 0xFF4 (R/ )  ITM Component  Identification Register #1 */
-  __I  uint32_t CID2;                    /*!< Offset: 0xFF8 (R/ )  ITM Component  Identification Register #2 */
-  __I  uint32_t CID3;                    /*!< Offset: 0xFFC (R/ )  ITM Component  Identification Register #3 */
-} ITM_Type;
-
-/* ITM Trace Privilege Register Definitions */
-#define ITM_TPR_PRIVMASK_Pos                0                                             /*!< ITM TPR: PRIVMASK Position */
-#define ITM_TPR_PRIVMASK_Msk               (0xFUL << ITM_TPR_PRIVMASK_Pos)                /*!< ITM TPR: PRIVMASK Mask */
-
-/* ITM Trace Control Register Definitions */
-#define ITM_TCR_BUSY_Pos                   23                                             /*!< ITM TCR: BUSY Position */
-#define ITM_TCR_BUSY_Msk                   (1UL << ITM_TCR_BUSY_Pos)                      /*!< ITM TCR: BUSY Mask */
-
-#define ITM_TCR_TraceBusID_Pos             16                                             /*!< ITM TCR: ATBID Position */
-#define ITM_TCR_TraceBusID_Msk             (0x7FUL << ITM_TCR_TraceBusID_Pos)             /*!< ITM TCR: ATBID Mask */
-
-#define ITM_TCR_GTSFREQ_Pos                10                                             /*!< ITM TCR: Global timestamp frequency Position */
-#define ITM_TCR_GTSFREQ_Msk                (3UL << ITM_TCR_GTSFREQ_Pos)                   /*!< ITM TCR: Global timestamp frequency Mask */
-
-#define ITM_TCR_TSPrescale_Pos              8                                             /*!< ITM TCR: TSPrescale Position */
-#define ITM_TCR_TSPrescale_Msk             (3UL << ITM_TCR_TSPrescale_Pos)                /*!< ITM TCR: TSPrescale Mask */
-
-#define ITM_TCR_SWOENA_Pos                  4                                             /*!< ITM TCR: SWOENA Position */
-#define ITM_TCR_SWOENA_Msk                 (1UL << ITM_TCR_SWOENA_Pos)                    /*!< ITM TCR: SWOENA Mask */
-
-#define ITM_TCR_DWTENA_Pos                  3                                             /*!< ITM TCR: DWTENA Position */
-#define ITM_TCR_DWTENA_Msk                 (1UL << ITM_TCR_DWTENA_Pos)                    /*!< ITM TCR: DWTENA Mask */
-
-#define ITM_TCR_SYNCENA_Pos                 2                                             /*!< ITM TCR: SYNCENA Position */
-#define ITM_TCR_SYNCENA_Msk                (1UL << ITM_TCR_SYNCENA_Pos)                   /*!< ITM TCR: SYNCENA Mask */
-
-#define ITM_TCR_TSENA_Pos                   1                                             /*!< ITM TCR: TSENA Position */
-#define ITM_TCR_TSENA_Msk                  (1UL << ITM_TCR_TSENA_Pos)                     /*!< ITM TCR: TSENA Mask */
-
-#define ITM_TCR_ITMENA_Pos                  0                                             /*!< ITM TCR: ITM Enable bit Position */
-#define ITM_TCR_ITMENA_Msk                 (1UL << ITM_TCR_ITMENA_Pos)                    /*!< ITM TCR: ITM Enable bit Mask */
-
-/* ITM Integration Write Register Definitions */
-#define ITM_IWR_ATVALIDM_Pos                0                                             /*!< ITM IWR: ATVALIDM Position */
-#define ITM_IWR_ATVALIDM_Msk               (1UL << ITM_IWR_ATVALIDM_Pos)                  /*!< ITM IWR: ATVALIDM Mask */
-
-/* ITM Integration Read Register Definitions */
-#define ITM_IRR_ATREADYM_Pos                0                                             /*!< ITM IRR: ATREADYM Position */
-#define ITM_IRR_ATREADYM_Msk               (1UL << ITM_IRR_ATREADYM_Pos)                  /*!< ITM IRR: ATREADYM Mask */
-
-/* ITM Integration Mode Control Register Definitions */
-#define ITM_IMCR_INTEGRATION_Pos            0                                             /*!< ITM IMCR: INTEGRATION Position */
-#define ITM_IMCR_INTEGRATION_Msk           (1UL << ITM_IMCR_INTEGRATION_Pos)              /*!< ITM IMCR: INTEGRATION Mask */
-
-/* ITM Lock Status Register Definitions */
-#define ITM_LSR_ByteAcc_Pos                 2                                             /*!< ITM LSR: ByteAcc Position */
-#define ITM_LSR_ByteAcc_Msk                (1UL << ITM_LSR_ByteAcc_Pos)                   /*!< ITM LSR: ByteAcc Mask */
-
-#define ITM_LSR_Access_Pos                  1                                             /*!< ITM LSR: Access Position */
-#define ITM_LSR_Access_Msk                 (1UL << ITM_LSR_Access_Pos)                    /*!< ITM LSR: Access Mask */
-
-#define ITM_LSR_Present_Pos                 0                                             /*!< ITM LSR: Present Position */
-#define ITM_LSR_Present_Msk                (1UL << ITM_LSR_Present_Pos)                   /*!< ITM LSR: Present Mask */
-
-/*@}*/ /* end of group CMSIS_ITM */
-
-
-/** \ingroup  CMSIS_core_register
-    \defgroup CMSIS_DWT     Data Watchpoint and Trace (DWT)
-    \brief      Type definitions for the Data Watchpoint and Trace (DWT)
-  @{
- */
-
-/** \brief  Structure type to access the Data Watchpoint and Trace Register (DWT).
- */
-typedef struct
-{
-  __IO uint32_t CTRL;                    /*!< Offset: 0x000 (R/W)  Control Register                          */
-  __IO uint32_t CYCCNT;                  /*!< Offset: 0x004 (R/W)  Cycle Count Register                      */
-  __IO uint32_t CPICNT;                  /*!< Offset: 0x008 (R/W)  CPI Count Register                        */
-  __IO uint32_t EXCCNT;                  /*!< Offset: 0x00C (R/W)  Exception Overhead Count Register         */
-  __IO uint32_t SLEEPCNT;                /*!< Offset: 0x010 (R/W)  Sleep Count Register                      */
-  __IO uint32_t LSUCNT;                  /*!< Offset: 0x014 (R/W)  LSU Count Register                        */
-  __IO uint32_t FOLDCNT;                 /*!< Offset: 0x018 (R/W)  Folded-instruction Count Register         */
-  __I  uint32_t PCSR;                    /*!< Offset: 0x01C (R/ )  Program Counter Sample Register           */
-  __IO uint32_t COMP0;                   /*!< Offset: 0x020 (R/W)  Comparator Register 0                     */
-  __IO uint32_t MASK0;                   /*!< Offset: 0x024 (R/W)  Mask Register 0                           */
-  __IO uint32_t FUNCTION0;               /*!< Offset: 0x028 (R/W)  Function Register 0                       */
-       uint32_t RESERVED0[1];
-  __IO uint32_t COMP1;                   /*!< Offset: 0x030 (R/W)  Comparator Register 1                     */
-  __IO uint32_t MASK1;                   /*!< Offset: 0x034 (R/W)  Mask Register 1                           */
-  __IO uint32_t FUNCTION1;               /*!< Offset: 0x038 (R/W)  Function Register 1                       */
-       uint32_t RESERVED1[1];
-  __IO uint32_t COMP2;                   /*!< Offset: 0x040 (R/W)  Comparator Register 2                     */
-  __IO uint32_t MASK2;                   /*!< Offset: 0x044 (R/W)  Mask Register 2                           */
-  __IO uint32_t FUNCTION2;               /*!< Offset: 0x048 (R/W)  Function Register 2                       */
-       uint32_t RESERVED2[1];
-  __IO uint32_t COMP3;                   /*!< Offset: 0x050 (R/W)  Comparator Register 3                     */
-  __IO uint32_t MASK3;                   /*!< Offset: 0x054 (R/W)  Mask Register 3                           */
-  __IO uint32_t FUNCTION3;               /*!< Offset: 0x058 (R/W)  Function Register 3                       */
-} DWT_Type;
-
-/* DWT Control Register Definitions */
-#define DWT_CTRL_NUMCOMP_Pos               28                                          /*!< DWT CTRL: NUMCOMP Position */
-#define DWT_CTRL_NUMCOMP_Msk               (0xFUL << DWT_CTRL_NUMCOMP_Pos)             /*!< DWT CTRL: NUMCOMP Mask */
-
-#define DWT_CTRL_NOTRCPKT_Pos              27                                          /*!< DWT CTRL: NOTRCPKT Position */
-#define DWT_CTRL_NOTRCPKT_Msk              (0x1UL << DWT_CTRL_NOTRCPKT_Pos)            /*!< DWT CTRL: NOTRCPKT Mask */
-
-#define DWT_CTRL_NOEXTTRIG_Pos             26                                          /*!< DWT CTRL: NOEXTTRIG Position */
-#define DWT_CTRL_NOEXTTRIG_Msk             (0x1UL << DWT_CTRL_NOEXTTRIG_Pos)           /*!< DWT CTRL: NOEXTTRIG Mask */
-
-#define DWT_CTRL_NOCYCCNT_Pos              25                                          /*!< DWT CTRL: NOCYCCNT Position */
-#define DWT_CTRL_NOCYCCNT_Msk              (0x1UL << DWT_CTRL_NOCYCCNT_Pos)            /*!< DWT CTRL: NOCYCCNT Mask */
-
-#define DWT_CTRL_NOPRFCNT_Pos              24                                          /*!< DWT CTRL: NOPRFCNT Position */
-#define DWT_CTRL_NOPRFCNT_Msk              (0x1UL << DWT_CTRL_NOPRFCNT_Pos)            /*!< DWT CTRL: NOPRFCNT Mask */
-
-#define DWT_CTRL_CYCEVTENA_Pos             22                                          /*!< DWT CTRL: CYCEVTENA Position */
-#define DWT_CTRL_CYCEVTENA_Msk             (0x1UL << DWT_CTRL_CYCEVTENA_Pos)           /*!< DWT CTRL: CYCEVTENA Mask */
-
-#define DWT_CTRL_FOLDEVTENA_Pos            21                                          /*!< DWT CTRL: FOLDEVTENA Position */
-#define DWT_CTRL_FOLDEVTENA_Msk            (0x1UL << DWT_CTRL_FOLDEVTENA_Pos)          /*!< DWT CTRL: FOLDEVTENA Mask */
-
-#define DWT_CTRL_LSUEVTENA_Pos             20                                          /*!< DWT CTRL: LSUEVTENA Position */
-#define DWT_CTRL_LSUEVTENA_Msk             (0x1UL << DWT_CTRL_LSUEVTENA_Pos)           /*!< DWT CTRL: LSUEVTENA Mask */
-
-#define DWT_CTRL_SLEEPEVTENA_Pos           19                                          /*!< DWT CTRL: SLEEPEVTENA Position */
-#define DWT_CTRL_SLEEPEVTENA_Msk           (0x1UL << DWT_CTRL_SLEEPEVTENA_Pos)         /*!< DWT CTRL: SLEEPEVTENA Mask */
-
-#define DWT_CTRL_EXCEVTENA_Pos             18                                          /*!< DWT CTRL: EXCEVTENA Position */
-#define DWT_CTRL_EXCEVTENA_Msk             (0x1UL << DWT_CTRL_EXCEVTENA_Pos)           /*!< DWT CTRL: EXCEVTENA Mask */
-
-#define DWT_CTRL_CPIEVTENA_Pos             17                                          /*!< DWT CTRL: CPIEVTENA Position */
-#define DWT_CTRL_CPIEVTENA_Msk             (0x1UL << DWT_CTRL_CPIEVTENA_Pos)           /*!< DWT CTRL: CPIEVTENA Mask */
-
-#define DWT_CTRL_EXCTRCENA_Pos             16                                          /*!< DWT CTRL: EXCTRCENA Position */
-#define DWT_CTRL_EXCTRCENA_Msk             (0x1UL << DWT_CTRL_EXCTRCENA_Pos)           /*!< DWT CTRL: EXCTRCENA Mask */
-
-#define DWT_CTRL_PCSAMPLENA_Pos            12                                          /*!< DWT CTRL: PCSAMPLENA Position */
-#define DWT_CTRL_PCSAMPLENA_Msk            (0x1UL << DWT_CTRL_PCSAMPLENA_Pos)          /*!< DWT CTRL: PCSAMPLENA Mask */
-
-#define DWT_CTRL_SYNCTAP_Pos               10                                          /*!< DWT CTRL: SYNCTAP Position */
-#define DWT_CTRL_SYNCTAP_Msk               (0x3UL << DWT_CTRL_SYNCTAP_Pos)             /*!< DWT CTRL: SYNCTAP Mask */
-
-#define DWT_CTRL_CYCTAP_Pos                 9                                          /*!< DWT CTRL: CYCTAP Position */
-#define DWT_CTRL_CYCTAP_Msk                (0x1UL << DWT_CTRL_CYCTAP_Pos)              /*!< DWT CTRL: CYCTAP Mask */
-
-#define DWT_CTRL_POSTINIT_Pos               5                                          /*!< DWT CTRL: POSTINIT Position */
-#define DWT_CTRL_POSTINIT_Msk              (0xFUL << DWT_CTRL_POSTINIT_Pos)            /*!< DWT CTRL: POSTINIT Mask */
-
-#define DWT_CTRL_POSTPRESET_Pos             1                                          /*!< DWT CTRL: POSTPRESET Position */
-#define DWT_CTRL_POSTPRESET_Msk            (0xFUL << DWT_CTRL_POSTPRESET_Pos)          /*!< DWT CTRL: POSTPRESET Mask */
-
-#define DWT_CTRL_CYCCNTENA_Pos              0                                          /*!< DWT CTRL: CYCCNTENA Position */
-#define DWT_CTRL_CYCCNTENA_Msk             (0x1UL << DWT_CTRL_CYCCNTENA_Pos)           /*!< DWT CTRL: CYCCNTENA Mask */
-
-/* DWT CPI Count Register Definitions */
-#define DWT_CPICNT_CPICNT_Pos               0                                          /*!< DWT CPICNT: CPICNT Position */
-#define DWT_CPICNT_CPICNT_Msk              (0xFFUL << DWT_CPICNT_CPICNT_Pos)           /*!< DWT CPICNT: CPICNT Mask */
-
-/* DWT Exception Overhead Count Register Definitions */
-#define DWT_EXCCNT_EXCCNT_Pos               0                                          /*!< DWT EXCCNT: EXCCNT Position */
-#define DWT_EXCCNT_EXCCNT_Msk              (0xFFUL << DWT_EXCCNT_EXCCNT_Pos)           /*!< DWT EXCCNT: EXCCNT Mask */
-
-/* DWT Sleep Count Register Definitions */
-#define DWT_SLEEPCNT_SLEEPCNT_Pos           0                                          /*!< DWT SLEEPCNT: SLEEPCNT Position */
-#define DWT_SLEEPCNT_SLEEPCNT_Msk          (0xFFUL << DWT_SLEEPCNT_SLEEPCNT_Pos)       /*!< DWT SLEEPCNT: SLEEPCNT Mask */
-
-/* DWT LSU Count Register Definitions */
-#define DWT_LSUCNT_LSUCNT_Pos               0                                          /*!< DWT LSUCNT: LSUCNT Position */
-#define DWT_LSUCNT_LSUCNT_Msk              (0xFFUL << DWT_LSUCNT_LSUCNT_Pos)           /*!< DWT LSUCNT: LSUCNT Mask */
-
-/* DWT Folded-instruction Count Register Definitions */
-#define DWT_FOLDCNT_FOLDCNT_Pos             0                                          /*!< DWT FOLDCNT: FOLDCNT Position */
-#define DWT_FOLDCNT_FOLDCNT_Msk            (0xFFUL << DWT_FOLDCNT_FOLDCNT_Pos)         /*!< DWT FOLDCNT: FOLDCNT Mask */
-
-/* DWT Comparator Mask Register Definitions */
-#define DWT_MASK_MASK_Pos                   0                                          /*!< DWT MASK: MASK Position */
-#define DWT_MASK_MASK_Msk                  (0x1FUL << DWT_MASK_MASK_Pos)               /*!< DWT MASK: MASK Mask */
-
-/* DWT Comparator Function Register Definitions */
-#define DWT_FUNCTION_MATCHED_Pos           24                                          /*!< DWT FUNCTION: MATCHED Position */
-#define DWT_FUNCTION_MATCHED_Msk           (0x1UL << DWT_FUNCTION_MATCHED_Pos)         /*!< DWT FUNCTION: MATCHED Mask */
-
-#define DWT_FUNCTION_DATAVADDR1_Pos        16                                          /*!< DWT FUNCTION: DATAVADDR1 Position */
-#define DWT_FUNCTION_DATAVADDR1_Msk        (0xFUL << DWT_FUNCTION_DATAVADDR1_Pos)      /*!< DWT FUNCTION: DATAVADDR1 Mask */
-
-#define DWT_FUNCTION_DATAVADDR0_Pos        12                                          /*!< DWT FUNCTION: DATAVADDR0 Position */
-#define DWT_FUNCTION_DATAVADDR0_Msk        (0xFUL << DWT_FUNCTION_DATAVADDR0_Pos)      /*!< DWT FUNCTION: DATAVADDR0 Mask */
-
-#define DWT_FUNCTION_DATAVSIZE_Pos         10                                          /*!< DWT FUNCTION: DATAVSIZE Position */
-#define DWT_FUNCTION_DATAVSIZE_Msk         (0x3UL << DWT_FUNCTION_DATAVSIZE_Pos)       /*!< DWT FUNCTION: DATAVSIZE Mask */
-
-#define DWT_FUNCTION_LNK1ENA_Pos            9                                          /*!< DWT FUNCTION: LNK1ENA Position */
-#define DWT_FUNCTION_LNK1ENA_Msk           (0x1UL << DWT_FUNCTION_LNK1ENA_Pos)         /*!< DWT FUNCTION: LNK1ENA Mask */
-
-#define DWT_FUNCTION_DATAVMATCH_Pos         8                                          /*!< DWT FUNCTION: DATAVMATCH Position */
-#define DWT_FUNCTION_DATAVMATCH_Msk        (0x1UL << DWT_FUNCTION_DATAVMATCH_Pos)      /*!< DWT FUNCTION: DATAVMATCH Mask */
-
-#define DWT_FUNCTION_CYCMATCH_Pos           7                                          /*!< DWT FUNCTION: CYCMATCH Position */
-#define DWT_FUNCTION_CYCMATCH_Msk          (0x1UL << DWT_FUNCTION_CYCMATCH_Pos)        /*!< DWT FUNCTION: CYCMATCH Mask */
-
-#define DWT_FUNCTION_EMITRANGE_Pos          5                                          /*!< DWT FUNCTION: EMITRANGE Position */
-#define DWT_FUNCTION_EMITRANGE_Msk         (0x1UL << DWT_FUNCTION_EMITRANGE_Pos)       /*!< DWT FUNCTION: EMITRANGE Mask */
-
-#define DWT_FUNCTION_FUNCTION_Pos           0                                          /*!< DWT FUNCTION: FUNCTION Position */
-#define DWT_FUNCTION_FUNCTION_Msk          (0xFUL << DWT_FUNCTION_FUNCTION_Pos)        /*!< DWT FUNCTION: FUNCTION Mask */
-
-/*@}*/ /* end of group CMSIS_DWT */
-
-
-/** \ingroup  CMSIS_core_register
-    \defgroup CMSIS_TPI     Trace Port Interface (TPI)
-    \brief      Type definitions for the Trace Port Interface (TPI)
-  @{
- */
-
-/** \brief  Structure type to access the Trace Port Interface Register (TPI).
- */
-typedef struct
-{
-  __IO uint32_t SSPSR;                   /*!< Offset: 0x000 (R/ )  Supported Parallel Port Size Register     */
-  __IO uint32_t CSPSR;                   /*!< Offset: 0x004 (R/W)  Current Parallel Port Size Register */
-       uint32_t RESERVED0[2];
-  __IO uint32_t ACPR;                    /*!< Offset: 0x010 (R/W)  Asynchronous Clock Prescaler Register */
-       uint32_t RESERVED1[55];
-  __IO uint32_t SPPR;                    /*!< Offset: 0x0F0 (R/W)  Selected Pin Protocol Register */
-       uint32_t RESERVED2[131];
-  __I  uint32_t FFSR;                    /*!< Offset: 0x300 (R/ )  Formatter and Flush Status Register */
-  __IO uint32_t FFCR;                    /*!< Offset: 0x304 (R/W)  Formatter and Flush Control Register */
-  __I  uint32_t FSCR;                    /*!< Offset: 0x308 (R/ )  Formatter Synchronization Counter Register */
-       uint32_t RESERVED3[759];
-  __I  uint32_t TRIGGER;                 /*!< Offset: 0xEE8 (R/ )  TRIGGER */
-  __I  uint32_t FIFO0;                   /*!< Offset: 0xEEC (R/ )  Integration ETM Data */
-  __I  uint32_t ITATBCTR2;               /*!< Offset: 0xEF0 (R/ )  ITATBCTR2 */
-       uint32_t RESERVED4[1];
-  __I  uint32_t ITATBCTR0;               /*!< Offset: 0xEF8 (R/ )  ITATBCTR0 */
-  __I  uint32_t FIFO1;                   /*!< Offset: 0xEFC (R/ )  Integration ITM Data */
-  __IO uint32_t ITCTRL;                  /*!< Offset: 0xF00 (R/W)  Integration Mode Control */
-       uint32_t RESERVED5[39];
-  __IO uint32_t CLAIMSET;                /*!< Offset: 0xFA0 (R/W)  Claim tag set */
-  __IO uint32_t CLAIMCLR;                /*!< Offset: 0xFA4 (R/W)  Claim tag clear */
-       uint32_t RESERVED7[8];
-  __I  uint32_t DEVID;                   /*!< Offset: 0xFC8 (R/ )  TPIU_DEVID */
-  __I  uint32_t DEVTYPE;                 /*!< Offset: 0xFCC (R/ )  TPIU_DEVTYPE */
-} TPI_Type;
-
-/* TPI Asynchronous Clock Prescaler Register Definitions */
-#define TPI_ACPR_PRESCALER_Pos              0                                          /*!< TPI ACPR: PRESCALER Position */
-#define TPI_ACPR_PRESCALER_Msk             (0x1FFFUL << TPI_ACPR_PRESCALER_Pos)        /*!< TPI ACPR: PRESCALER Mask */
-
-/* TPI Selected Pin Protocol Register Definitions */
-#define TPI_SPPR_TXMODE_Pos                 0                                          /*!< TPI SPPR: TXMODE Position */
-#define TPI_SPPR_TXMODE_Msk                (0x3UL << TPI_SPPR_TXMODE_Pos)              /*!< TPI SPPR: TXMODE Mask */
-
-/* TPI Formatter and Flush Status Register Definitions */
-#define TPI_FFSR_FtNonStop_Pos              3                                          /*!< TPI FFSR: FtNonStop Position */
-#define TPI_FFSR_FtNonStop_Msk             (0x1UL << TPI_FFSR_FtNonStop_Pos)           /*!< TPI FFSR: FtNonStop Mask */
-
-#define TPI_FFSR_TCPresent_Pos              2                                          /*!< TPI FFSR: TCPresent Position */
-#define TPI_FFSR_TCPresent_Msk             (0x1UL << TPI_FFSR_TCPresent_Pos)           /*!< TPI FFSR: TCPresent Mask */
-
-#define TPI_FFSR_FtStopped_Pos              1                                          /*!< TPI FFSR: FtStopped Position */
-#define TPI_FFSR_FtStopped_Msk             (0x1UL << TPI_FFSR_FtStopped_Pos)           /*!< TPI FFSR: FtStopped Mask */
-
-#define TPI_FFSR_FlInProg_Pos               0                                          /*!< TPI FFSR: FlInProg Position */
-#define TPI_FFSR_FlInProg_Msk              (0x1UL << TPI_FFSR_FlInProg_Pos)            /*!< TPI FFSR: FlInProg Mask */
-
-/* TPI Formatter and Flush Control Register Definitions */
-#define TPI_FFCR_TrigIn_Pos                 8                                          /*!< TPI FFCR: TrigIn Position */
-#define TPI_FFCR_TrigIn_Msk                (0x1UL << TPI_FFCR_TrigIn_Pos)              /*!< TPI FFCR: TrigIn Mask */
-
-#define TPI_FFCR_EnFCont_Pos                1                                          /*!< TPI FFCR: EnFCont Position */
-#define TPI_FFCR_EnFCont_Msk               (0x1UL << TPI_FFCR_EnFCont_Pos)             /*!< TPI FFCR: EnFCont Mask */
-
-/* TPI TRIGGER Register Definitions */
-#define TPI_TRIGGER_TRIGGER_Pos             0                                          /*!< TPI TRIGGER: TRIGGER Position */
-#define TPI_TRIGGER_TRIGGER_Msk            (0x1UL << TPI_TRIGGER_TRIGGER_Pos)          /*!< TPI TRIGGER: TRIGGER Mask */
-
-/* TPI Integration ETM Data Register Definitions (FIFO0) */
-#define TPI_FIFO0_ITM_ATVALID_Pos          29                                          /*!< TPI FIFO0: ITM_ATVALID Position */
-#define TPI_FIFO0_ITM_ATVALID_Msk          (0x3UL << TPI_FIFO0_ITM_ATVALID_Pos)        /*!< TPI FIFO0: ITM_ATVALID Mask */
-
-#define TPI_FIFO0_ITM_bytecount_Pos        27                                          /*!< TPI FIFO0: ITM_bytecount Position */
-#define TPI_FIFO0_ITM_bytecount_Msk        (0x3UL << TPI_FIFO0_ITM_bytecount_Pos)      /*!< TPI FIFO0: ITM_bytecount Mask */
-
-#define TPI_FIFO0_ETM_ATVALID_Pos          26                                          /*!< TPI FIFO0: ETM_ATVALID Position */
-#define TPI_FIFO0_ETM_ATVALID_Msk          (0x3UL << TPI_FIFO0_ETM_ATVALID_Pos)        /*!< TPI FIFO0: ETM_ATVALID Mask */
-
-#define TPI_FIFO0_ETM_bytecount_Pos        24                                          /*!< TPI FIFO0: ETM_bytecount Position */
-#define TPI_FIFO0_ETM_bytecount_Msk        (0x3UL << TPI_FIFO0_ETM_bytecount_Pos)      /*!< TPI FIFO0: ETM_bytecount Mask */
-
-#define TPI_FIFO0_ETM2_Pos                 16                                          /*!< TPI FIFO0: ETM2 Position */
-#define TPI_FIFO0_ETM2_Msk                 (0xFFUL << TPI_FIFO0_ETM2_Pos)              /*!< TPI FIFO0: ETM2 Mask */
-
-#define TPI_FIFO0_ETM1_Pos                  8                                          /*!< TPI FIFO0: ETM1 Position */
-#define TPI_FIFO0_ETM1_Msk                 (0xFFUL << TPI_FIFO0_ETM1_Pos)              /*!< TPI FIFO0: ETM1 Mask */
-
-#define TPI_FIFO0_ETM0_Pos                  0                                          /*!< TPI FIFO0: ETM0 Position */
-#define TPI_FIFO0_ETM0_Msk                 (0xFFUL << TPI_FIFO0_ETM0_Pos)              /*!< TPI FIFO0: ETM0 Mask */
-
-/* TPI ITATBCTR2 Register Definitions */
-#define TPI_ITATBCTR2_ATREADY_Pos           0                                          /*!< TPI ITATBCTR2: ATREADY Position */
-#define TPI_ITATBCTR2_ATREADY_Msk          (0x1UL << TPI_ITATBCTR2_ATREADY_Pos)        /*!< TPI ITATBCTR2: ATREADY Mask */
-
-/* TPI Integration ITM Data Register Definitions (FIFO1) */
-#define TPI_FIFO1_ITM_ATVALID_Pos          29                                          /*!< TPI FIFO1: ITM_ATVALID Position */
-#define TPI_FIFO1_ITM_ATVALID_Msk          (0x3UL << TPI_FIFO1_ITM_ATVALID_Pos)        /*!< TPI FIFO1: ITM_ATVALID Mask */
-
-#define TPI_FIFO1_ITM_bytecount_Pos        27                                          /*!< TPI FIFO1: ITM_bytecount Position */
-#define TPI_FIFO1_ITM_bytecount_Msk        (0x3UL << TPI_FIFO1_ITM_bytecount_Pos)      /*!< TPI FIFO1: ITM_bytecount Mask */
-
-#define TPI_FIFO1_ETM_ATVALID_Pos          26                                          /*!< TPI FIFO1: ETM_ATVALID Position */
-#define TPI_FIFO1_ETM_ATVALID_Msk          (0x3UL << TPI_FIFO1_ETM_ATVALID_Pos)        /*!< TPI FIFO1: ETM_ATVALID Mask */
-
-#define TPI_FIFO1_ETM_bytecount_Pos        24                                          /*!< TPI FIFO1: ETM_bytecount Position */
-#define TPI_FIFO1_ETM_bytecount_Msk        (0x3UL << TPI_FIFO1_ETM_bytecount_Pos)      /*!< TPI FIFO1: ETM_bytecount Mask */
-
-#define TPI_FIFO1_ITM2_Pos                 16                                          /*!< TPI FIFO1: ITM2 Position */
-#define TPI_FIFO1_ITM2_Msk                 (0xFFUL << TPI_FIFO1_ITM2_Pos)              /*!< TPI FIFO1: ITM2 Mask */
-
-#define TPI_FIFO1_ITM1_Pos                  8                                          /*!< TPI FIFO1: ITM1 Position */
-#define TPI_FIFO1_ITM1_Msk                 (0xFFUL << TPI_FIFO1_ITM1_Pos)              /*!< TPI FIFO1: ITM1 Mask */
-
-#define TPI_FIFO1_ITM0_Pos                  0                                          /*!< TPI FIFO1: ITM0 Position */
-#define TPI_FIFO1_ITM0_Msk                 (0xFFUL << TPI_FIFO1_ITM0_Pos)              /*!< TPI FIFO1: ITM0 Mask */
-
-/* TPI ITATBCTR0 Register Definitions */
-#define TPI_ITATBCTR0_ATREADY_Pos           0                                          /*!< TPI ITATBCTR0: ATREADY Position */
-#define TPI_ITATBCTR0_ATREADY_Msk          (0x1UL << TPI_ITATBCTR0_ATREADY_Pos)        /*!< TPI ITATBCTR0: ATREADY Mask */
-
-/* TPI Integration Mode Control Register Definitions */
-#define TPI_ITCTRL_Mode_Pos                 0                                          /*!< TPI ITCTRL: Mode Position */
-#define TPI_ITCTRL_Mode_Msk                (0x1UL << TPI_ITCTRL_Mode_Pos)              /*!< TPI ITCTRL: Mode Mask */
-
-/* TPI DEVID Register Definitions */
-#define TPI_DEVID_NRZVALID_Pos             11                                          /*!< TPI DEVID: NRZVALID Position */
-#define TPI_DEVID_NRZVALID_Msk             (0x1UL << TPI_DEVID_NRZVALID_Pos)           /*!< TPI DEVID: NRZVALID Mask */
-
-#define TPI_DEVID_MANCVALID_Pos            10                                          /*!< TPI DEVID: MANCVALID Position */
-#define TPI_DEVID_MANCVALID_Msk            (0x1UL << TPI_DEVID_MANCVALID_Pos)          /*!< TPI DEVID: MANCVALID Mask */
-
-#define TPI_DEVID_PTINVALID_Pos             9                                          /*!< TPI DEVID: PTINVALID Position */
-#define TPI_DEVID_PTINVALID_Msk            (0x1UL << TPI_DEVID_PTINVALID_Pos)          /*!< TPI DEVID: PTINVALID Mask */
-
-#define TPI_DEVID_MinBufSz_Pos              6                                          /*!< TPI DEVID: MinBufSz Position */
-#define TPI_DEVID_MinBufSz_Msk             (0x7UL << TPI_DEVID_MinBufSz_Pos)           /*!< TPI DEVID: MinBufSz Mask */
-
-#define TPI_DEVID_AsynClkIn_Pos             5                                          /*!< TPI DEVID: AsynClkIn Position */
-#define TPI_DEVID_AsynClkIn_Msk            (0x1UL << TPI_DEVID_AsynClkIn_Pos)          /*!< TPI DEVID: AsynClkIn Mask */
-
-#define TPI_DEVID_NrTraceInput_Pos          0                                          /*!< TPI DEVID: NrTraceInput Position */
-#define TPI_DEVID_NrTraceInput_Msk         (0x1FUL << TPI_DEVID_NrTraceInput_Pos)      /*!< TPI DEVID: NrTraceInput Mask */
-
-/* TPI DEVTYPE Register Definitions */
-#define TPI_DEVTYPE_SubType_Pos             0                                          /*!< TPI DEVTYPE: SubType Position */
-#define TPI_DEVTYPE_SubType_Msk            (0xFUL << TPI_DEVTYPE_SubType_Pos)          /*!< TPI DEVTYPE: SubType Mask */
-
-#define TPI_DEVTYPE_MajorType_Pos           4                                          /*!< TPI DEVTYPE: MajorType Position */
-#define TPI_DEVTYPE_MajorType_Msk          (0xFUL << TPI_DEVTYPE_MajorType_Pos)        /*!< TPI DEVTYPE: MajorType Mask */
-
-/*@}*/ /* end of group CMSIS_TPI */
-
-
-#if (__MPU_PRESENT == 1)
-/** \ingroup  CMSIS_core_register
-    \defgroup CMSIS_MPU     Memory Protection Unit (MPU)
-    \brief      Type definitions for the Memory Protection Unit (MPU)
-  @{
- */
-
-/** \brief  Structure type to access the Memory Protection Unit (MPU).
- */
-typedef struct
-{
-  __I  uint32_t TYPE;                    /*!< Offset: 0x000 (R/ )  MPU Type Register                              */
-  __IO uint32_t CTRL;                    /*!< Offset: 0x004 (R/W)  MPU Control Register                           */
-  __IO uint32_t RNR;                     /*!< Offset: 0x008 (R/W)  MPU Region RNRber Register                     */
-  __IO uint32_t RBAR;                    /*!< Offset: 0x00C (R/W)  MPU Region Base Address Register               */
-  __IO uint32_t RASR;                    /*!< Offset: 0x010 (R/W)  MPU Region Attribute and Size Register         */
-  __IO uint32_t RBAR_A1;                 /*!< Offset: 0x014 (R/W)  MPU Alias 1 Region Base Address Register       */
-  __IO uint32_t RASR_A1;                 /*!< Offset: 0x018 (R/W)  MPU Alias 1 Region Attribute and Size Register */
-  __IO uint32_t RBAR_A2;                 /*!< Offset: 0x01C (R/W)  MPU Alias 2 Region Base Address Register       */
-  __IO uint32_t RASR_A2;                 /*!< Offset: 0x020 (R/W)  MPU Alias 2 Region Attribute and Size Register */
-  __IO uint32_t RBAR_A3;                 /*!< Offset: 0x024 (R/W)  MPU Alias 3 Region Base Address Register       */
-  __IO uint32_t RASR_A3;                 /*!< Offset: 0x028 (R/W)  MPU Alias 3 Region Attribute and Size Register */
-} MPU_Type;
-
-/* MPU Type Register */
-#define MPU_TYPE_IREGION_Pos               16                                             /*!< MPU TYPE: IREGION Position */
-#define MPU_TYPE_IREGION_Msk               (0xFFUL << MPU_TYPE_IREGION_Pos)               /*!< MPU TYPE: IREGION Mask */
-
-#define MPU_TYPE_DREGION_Pos                8                                             /*!< MPU TYPE: DREGION Position */
-#define MPU_TYPE_DREGION_Msk               (0xFFUL << MPU_TYPE_DREGION_Pos)               /*!< MPU TYPE: DREGION Mask */
-
-#define MPU_TYPE_SEPARATE_Pos               0                                             /*!< MPU TYPE: SEPARATE Position */
-#define MPU_TYPE_SEPARATE_Msk              (1UL << MPU_TYPE_SEPARATE_Pos)                 /*!< MPU TYPE: SEPARATE Mask */
-
-/* MPU Control Register */
-#define MPU_CTRL_PRIVDEFENA_Pos             2                                             /*!< MPU CTRL: PRIVDEFENA Position */
-#define MPU_CTRL_PRIVDEFENA_Msk            (1UL << MPU_CTRL_PRIVDEFENA_Pos)               /*!< MPU CTRL: PRIVDEFENA Mask */
-
-#define MPU_CTRL_HFNMIENA_Pos               1                                             /*!< MPU CTRL: HFNMIENA Position */
-#define MPU_CTRL_HFNMIENA_Msk              (1UL << MPU_CTRL_HFNMIENA_Pos)                 /*!< MPU CTRL: HFNMIENA Mask */
-
-#define MPU_CTRL_ENABLE_Pos                 0                                             /*!< MPU CTRL: ENABLE Position */
-#define MPU_CTRL_ENABLE_Msk                (1UL << MPU_CTRL_ENABLE_Pos)                   /*!< MPU CTRL: ENABLE Mask */
-
-/* MPU Region Number Register */
-#define MPU_RNR_REGION_Pos                  0                                             /*!< MPU RNR: REGION Position */
-#define MPU_RNR_REGION_Msk                 (0xFFUL << MPU_RNR_REGION_Pos)                 /*!< MPU RNR: REGION Mask */
-
-/* MPU Region Base Address Register */
-#define MPU_RBAR_ADDR_Pos                   5                                             /*!< MPU RBAR: ADDR Position */
-#define MPU_RBAR_ADDR_Msk                  (0x7FFFFFFUL << MPU_RBAR_ADDR_Pos)             /*!< MPU RBAR: ADDR Mask */
-
-#define MPU_RBAR_VALID_Pos                  4                                             /*!< MPU RBAR: VALID Position */
-#define MPU_RBAR_VALID_Msk                 (1UL << MPU_RBAR_VALID_Pos)                    /*!< MPU RBAR: VALID Mask */
-
-#define MPU_RBAR_REGION_Pos                 0                                             /*!< MPU RBAR: REGION Position */
-#define MPU_RBAR_REGION_Msk                (0xFUL << MPU_RBAR_REGION_Pos)                 /*!< MPU RBAR: REGION Mask */
-
-/* MPU Region Attribute and Size Register */
-#define MPU_RASR_ATTRS_Pos                 16                                             /*!< MPU RASR: MPU Region Attribute field Position */
-#define MPU_RASR_ATTRS_Msk                 (0xFFFFUL << MPU_RASR_ATTRS_Pos)               /*!< MPU RASR: MPU Region Attribute field Mask */
-
-#define MPU_RASR_XN_Pos                    28                                             /*!< MPU RASR: ATTRS.XN Position */
-#define MPU_RASR_XN_Msk                    (1UL << MPU_RASR_XN_Pos)                       /*!< MPU RASR: ATTRS.XN Mask */
-
-#define MPU_RASR_AP_Pos                    24                                             /*!< MPU RASR: ATTRS.AP Position */
-#define MPU_RASR_AP_Msk                    (0x7UL << MPU_RASR_AP_Pos)                     /*!< MPU RASR: ATTRS.AP Mask */
-
-#define MPU_RASR_TEX_Pos                   19                                             /*!< MPU RASR: ATTRS.TEX Position */
-#define MPU_RASR_TEX_Msk                   (0x7UL << MPU_RASR_TEX_Pos)                    /*!< MPU RASR: ATTRS.TEX Mask */
-
-#define MPU_RASR_S_Pos                     18                                             /*!< MPU RASR: ATTRS.S Position */
-#define MPU_RASR_S_Msk                     (1UL << MPU_RASR_S_Pos)                        /*!< MPU RASR: ATTRS.S Mask */
-
-#define MPU_RASR_C_Pos                     17                                             /*!< MPU RASR: ATTRS.C Position */
-#define MPU_RASR_C_Msk                     (1UL << MPU_RASR_C_Pos)                        /*!< MPU RASR: ATTRS.C Mask */
-
-#define MPU_RASR_B_Pos                     16                                             /*!< MPU RASR: ATTRS.B Position */
-#define MPU_RASR_B_Msk                     (1UL << MPU_RASR_B_Pos)                        /*!< MPU RASR: ATTRS.B Mask */
-
-#define MPU_RASR_SRD_Pos                    8                                             /*!< MPU RASR: Sub-Region Disable Position */
-#define MPU_RASR_SRD_Msk                   (0xFFUL << MPU_RASR_SRD_Pos)                   /*!< MPU RASR: Sub-Region Disable Mask */
-
-#define MPU_RASR_SIZE_Pos                   1                                             /*!< MPU RASR: Region Size Field Position */
-#define MPU_RASR_SIZE_Msk                  (0x1FUL << MPU_RASR_SIZE_Pos)                  /*!< MPU RASR: Region Size Field Mask */
-
-#define MPU_RASR_ENABLE_Pos                 0                                             /*!< MPU RASR: Region enable bit Position */
-#define MPU_RASR_ENABLE_Msk                (1UL << MPU_RASR_ENABLE_Pos)                   /*!< MPU RASR: Region enable bit Disable Mask */
-
-/*@} end of group CMSIS_MPU */
-#endif
-
-
-/** \ingroup  CMSIS_core_register
-    \defgroup CMSIS_CoreDebug       Core Debug Registers (CoreDebug)
-    \brief      Type definitions for the Core Debug Registers
-  @{
- */
-
-/** \brief  Structure type to access the Core Debug Register (CoreDebug).
- */
-typedef struct
-{
-  __IO uint32_t DHCSR;                   /*!< Offset: 0x000 (R/W)  Debug Halting Control and Status Register    */
-  __O  uint32_t DCRSR;                   /*!< Offset: 0x004 ( /W)  Debug Core Register Selector Register        */
-  __IO uint32_t DCRDR;                   /*!< Offset: 0x008 (R/W)  Debug Core Register Data Register            */
-  __IO uint32_t DEMCR;                   /*!< Offset: 0x00C (R/W)  Debug Exception and Monitor Control Register */
-} CoreDebug_Type;
-
-/* Debug Halting Control and Status Register */
-#define CoreDebug_DHCSR_DBGKEY_Pos         16                                             /*!< CoreDebug DHCSR: DBGKEY Position */
-#define CoreDebug_DHCSR_DBGKEY_Msk         (0xFFFFUL << CoreDebug_DHCSR_DBGKEY_Pos)       /*!< CoreDebug DHCSR: DBGKEY Mask */
-
-#define CoreDebug_DHCSR_S_RESET_ST_Pos     25                                             /*!< CoreDebug DHCSR: S_RESET_ST Position */
-#define CoreDebug_DHCSR_S_RESET_ST_Msk     (1UL << CoreDebug_DHCSR_S_RESET_ST_Pos)        /*!< CoreDebug DHCSR: S_RESET_ST Mask */
-
-#define CoreDebug_DHCSR_S_RETIRE_ST_Pos    24                                             /*!< CoreDebug DHCSR: S_RETIRE_ST Position */
-#define CoreDebug_DHCSR_S_RETIRE_ST_Msk    (1UL << CoreDebug_DHCSR_S_RETIRE_ST_Pos)       /*!< CoreDebug DHCSR: S_RETIRE_ST Mask */
-
-#define CoreDebug_DHCSR_S_LOCKUP_Pos       19                                             /*!< CoreDebug DHCSR: S_LOCKUP Position */
-#define CoreDebug_DHCSR_S_LOCKUP_Msk       (1UL << CoreDebug_DHCSR_S_LOCKUP_Pos)          /*!< CoreDebug DHCSR: S_LOCKUP Mask */
-
-#define CoreDebug_DHCSR_S_SLEEP_Pos        18                                             /*!< CoreDebug DHCSR: S_SLEEP Position */
-#define CoreDebug_DHCSR_S_SLEEP_Msk        (1UL << CoreDebug_DHCSR_S_SLEEP_Pos)           /*!< CoreDebug DHCSR: S_SLEEP Mask */
-
-#define CoreDebug_DHCSR_S_HALT_Pos         17                                             /*!< CoreDebug DHCSR: S_HALT Position */
-#define CoreDebug_DHCSR_S_HALT_Msk         (1UL << CoreDebug_DHCSR_S_HALT_Pos)            /*!< CoreDebug DHCSR: S_HALT Mask */
-
-#define CoreDebug_DHCSR_S_REGRDY_Pos       16                                             /*!< CoreDebug DHCSR: S_REGRDY Position */
-#define CoreDebug_DHCSR_S_REGRDY_Msk       (1UL << CoreDebug_DHCSR_S_REGRDY_Pos)          /*!< CoreDebug DHCSR: S_REGRDY Mask */
-
-#define CoreDebug_DHCSR_C_SNAPSTALL_Pos     5                                             /*!< CoreDebug DHCSR: C_SNAPSTALL Position */
-#define CoreDebug_DHCSR_C_SNAPSTALL_Msk    (1UL << CoreDebug_DHCSR_C_SNAPSTALL_Pos)       /*!< CoreDebug DHCSR: C_SNAPSTALL Mask */
-
-#define CoreDebug_DHCSR_C_MASKINTS_Pos      3                                             /*!< CoreDebug DHCSR: C_MASKINTS Position */
-#define CoreDebug_DHCSR_C_MASKINTS_Msk     (1UL << CoreDebug_DHCSR_C_MASKINTS_Pos)        /*!< CoreDebug DHCSR: C_MASKINTS Mask */
-
-#define CoreDebug_DHCSR_C_STEP_Pos          2                                             /*!< CoreDebug DHCSR: C_STEP Position */
-#define CoreDebug_DHCSR_C_STEP_Msk         (1UL << CoreDebug_DHCSR_C_STEP_Pos)            /*!< CoreDebug DHCSR: C_STEP Mask */
-
-#define CoreDebug_DHCSR_C_HALT_Pos          1                                             /*!< CoreDebug DHCSR: C_HALT Position */
-#define CoreDebug_DHCSR_C_HALT_Msk         (1UL << CoreDebug_DHCSR_C_HALT_Pos)            /*!< CoreDebug DHCSR: C_HALT Mask */
-
-#define CoreDebug_DHCSR_C_DEBUGEN_Pos       0                                             /*!< CoreDebug DHCSR: C_DEBUGEN Position */
-#define CoreDebug_DHCSR_C_DEBUGEN_Msk      (1UL << CoreDebug_DHCSR_C_DEBUGEN_Pos)         /*!< CoreDebug DHCSR: C_DEBUGEN Mask */
-
-/* Debug Core Register Selector Register */
-#define CoreDebug_DCRSR_REGWnR_Pos         16                                             /*!< CoreDebug DCRSR: REGWnR Position */
-#define CoreDebug_DCRSR_REGWnR_Msk         (1UL << CoreDebug_DCRSR_REGWnR_Pos)            /*!< CoreDebug DCRSR: REGWnR Mask */
-
-#define CoreDebug_DCRSR_REGSEL_Pos          0                                             /*!< CoreDebug DCRSR: REGSEL Position */
-#define CoreDebug_DCRSR_REGSEL_Msk         (0x1FUL << CoreDebug_DCRSR_REGSEL_Pos)         /*!< CoreDebug DCRSR: REGSEL Mask */
-
-/* Debug Exception and Monitor Control Register */
-#define CoreDebug_DEMCR_TRCENA_Pos         24                                             /*!< CoreDebug DEMCR: TRCENA Position */
-#define CoreDebug_DEMCR_TRCENA_Msk         (1UL << CoreDebug_DEMCR_TRCENA_Pos)            /*!< CoreDebug DEMCR: TRCENA Mask */
-
-#define CoreDebug_DEMCR_MON_REQ_Pos        19                                             /*!< CoreDebug DEMCR: MON_REQ Position */
-#define CoreDebug_DEMCR_MON_REQ_Msk        (1UL << CoreDebug_DEMCR_MON_REQ_Pos)           /*!< CoreDebug DEMCR: MON_REQ Mask */
-
-#define CoreDebug_DEMCR_MON_STEP_Pos       18                                             /*!< CoreDebug DEMCR: MON_STEP Position */
-#define CoreDebug_DEMCR_MON_STEP_Msk       (1UL << CoreDebug_DEMCR_MON_STEP_Pos)          /*!< CoreDebug DEMCR: MON_STEP Mask */
-
-#define CoreDebug_DEMCR_MON_PEND_Pos       17                                             /*!< CoreDebug DEMCR: MON_PEND Position */
-#define CoreDebug_DEMCR_MON_PEND_Msk       (1UL << CoreDebug_DEMCR_MON_PEND_Pos)          /*!< CoreDebug DEMCR: MON_PEND Mask */
-
-#define CoreDebug_DEMCR_MON_EN_Pos         16                                             /*!< CoreDebug DEMCR: MON_EN Position */
-#define CoreDebug_DEMCR_MON_EN_Msk         (1UL << CoreDebug_DEMCR_MON_EN_Pos)            /*!< CoreDebug DEMCR: MON_EN Mask */
-
-#define CoreDebug_DEMCR_VC_HARDERR_Pos     10                                             /*!< CoreDebug DEMCR: VC_HARDERR Position */
-#define CoreDebug_DEMCR_VC_HARDERR_Msk     (1UL << CoreDebug_DEMCR_VC_HARDERR_Pos)        /*!< CoreDebug DEMCR: VC_HARDERR Mask */
-
-#define CoreDebug_DEMCR_VC_INTERR_Pos       9                                             /*!< CoreDebug DEMCR: VC_INTERR Position */
-#define CoreDebug_DEMCR_VC_INTERR_Msk      (1UL << CoreDebug_DEMCR_VC_INTERR_Pos)         /*!< CoreDebug DEMCR: VC_INTERR Mask */
-
-#define CoreDebug_DEMCR_VC_BUSERR_Pos       8                                             /*!< CoreDebug DEMCR: VC_BUSERR Position */
-#define CoreDebug_DEMCR_VC_BUSERR_Msk      (1UL << CoreDebug_DEMCR_VC_BUSERR_Pos)         /*!< CoreDebug DEMCR: VC_BUSERR Mask */
-
-#define CoreDebug_DEMCR_VC_STATERR_Pos      7                                             /*!< CoreDebug DEMCR: VC_STATERR Position */
-#define CoreDebug_DEMCR_VC_STATERR_Msk     (1UL << CoreDebug_DEMCR_VC_STATERR_Pos)        /*!< CoreDebug DEMCR: VC_STATERR Mask */
-
-#define CoreDebug_DEMCR_VC_CHKERR_Pos       6                                             /*!< CoreDebug DEMCR: VC_CHKERR Position */
-#define CoreDebug_DEMCR_VC_CHKERR_Msk      (1UL << CoreDebug_DEMCR_VC_CHKERR_Pos)         /*!< CoreDebug DEMCR: VC_CHKERR Mask */
-
-#define CoreDebug_DEMCR_VC_NOCPERR_Pos      5                                             /*!< CoreDebug DEMCR: VC_NOCPERR Position */
-#define CoreDebug_DEMCR_VC_NOCPERR_Msk     (1UL << CoreDebug_DEMCR_VC_NOCPERR_Pos)        /*!< CoreDebug DEMCR: VC_NOCPERR Mask */
-
-#define CoreDebug_DEMCR_VC_MMERR_Pos        4                                             /*!< CoreDebug DEMCR: VC_MMERR Position */
-#define CoreDebug_DEMCR_VC_MMERR_Msk       (1UL << CoreDebug_DEMCR_VC_MMERR_Pos)          /*!< CoreDebug DEMCR: VC_MMERR Mask */
-
-#define CoreDebug_DEMCR_VC_CORERESET_Pos    0                                             /*!< CoreDebug DEMCR: VC_CORERESET Position */
-#define CoreDebug_DEMCR_VC_CORERESET_Msk   (1UL << CoreDebug_DEMCR_VC_CORERESET_Pos)      /*!< CoreDebug DEMCR: VC_CORERESET Mask */
-
-/*@} end of group CMSIS_CoreDebug */
-
-
-/** \ingroup    CMSIS_core_register
-    \defgroup   CMSIS_core_base     Core Definitions
-    \brief      Definitions for base addresses, unions, and structures.
-  @{
- */
-
-/* Memory mapping of Cortex-M3 Hardware */
-#define SCS_BASE            (0xE000E000UL)                            /*!< System Control Space Base Address  */
-#define ITM_BASE            (0xE0000000UL)                            /*!< ITM Base Address                   */
-#define DWT_BASE            (0xE0001000UL)                            /*!< DWT Base Address                   */
-#define TPI_BASE            (0xE0040000UL)                            /*!< TPI Base Address                   */
-#define CoreDebug_BASE      (0xE000EDF0UL)                            /*!< Core Debug Base Address            */
-#define SysTick_BASE        (SCS_BASE +  0x0010UL)                    /*!< SysTick Base Address               */
-#define NVIC_BASE           (SCS_BASE +  0x0100UL)                    /*!< NVIC Base Address                  */
-#define SCB_BASE            (SCS_BASE +  0x0D00UL)                    /*!< System Control Block Base Address  */
-
-#define SCnSCB              ((SCnSCB_Type    *)     SCS_BASE      )   /*!< System control Register not in SCB */
-#define SCB                 ((SCB_Type       *)     SCB_BASE      )   /*!< SCB configuration struct           */
-#define SysTick             ((SysTick_Type   *)     SysTick_BASE  )   /*!< SysTick configuration struct       */
-#define NVIC                ((NVIC_Type      *)     NVIC_BASE     )   /*!< NVIC configuration struct          */
-#define ITM                 ((ITM_Type       *)     ITM_BASE      )   /*!< ITM configuration struct           */
-#define DWT                 ((DWT_Type       *)     DWT_BASE      )   /*!< DWT configuration struct           */
-#define TPI                 ((TPI_Type       *)     TPI_BASE      )   /*!< TPI configuration struct           */
-#define CoreDebug           ((CoreDebug_Type *)     CoreDebug_BASE)   /*!< Core Debug configuration struct    */
-
-#if (__MPU_PRESENT == 1)
-  #define MPU_BASE          (SCS_BASE +  0x0D90UL)                    /*!< Memory Protection Unit             */
-  #define MPU               ((MPU_Type       *)     MPU_BASE      )   /*!< Memory Protection Unit             */
-#endif
-
-/*@} */
-
-
-
-/*******************************************************************************
- *                Hardware Abstraction Layer
-  Core Function Interface contains:
-  - Core NVIC Functions
-  - Core SysTick Functions
-  - Core Debug Functions
-  - Core Register Access Functions
- ******************************************************************************/
-/** \defgroup CMSIS_Core_FunctionInterface Functions and Instructions Reference
-*/
-
-
-
-/* ##########################   NVIC functions  #################################### */
-/** \ingroup  CMSIS_Core_FunctionInterface
-    \defgroup CMSIS_Core_NVICFunctions NVIC Functions
-    \brief      Functions that manage interrupts and exceptions via the NVIC.
-    @{
- */
-
-/** \brief  Set Priority Grouping
-
-  The function sets the priority grouping field using the required unlock sequence.
-  The parameter PriorityGroup is assigned to the field SCB->AIRCR [10:8] PRIGROUP field.
-  Only values from 0..7 are used.
-  In case of a conflict between priority grouping and available
-  priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set.
-
-    \param [in]      PriorityGroup  Priority grouping field.
- */
-__STATIC_INLINE void NVIC_SetPriorityGrouping(uint32_t PriorityGroup)
-{
-  uint32_t reg_value;
-  uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07);               /* only values 0..7 are used          */
-
-  reg_value  =  SCB->AIRCR;                                                   /* read old register configuration    */
-  reg_value &= ~(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk);             /* clear bits to change               */
-  reg_value  =  (reg_value                                 |
-                ((uint32_t)0x5FA << SCB_AIRCR_VECTKEY_Pos) |
-                (PriorityGroupTmp << 8));                                     /* Insert write key and priorty group */
-  SCB->AIRCR =  reg_value;
-}
-
-
-/** \brief  Get Priority Grouping
-
-  The function reads the priority grouping field from the NVIC Interrupt Controller.
-
-    \return                Priority grouping field (SCB->AIRCR [10:8] PRIGROUP field).
- */
-__STATIC_INLINE uint32_t NVIC_GetPriorityGrouping(void)
-{
-  return ((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos);   /* read priority grouping field */
-}
-
-
-/** \brief  Enable External Interrupt
-
-    The function enables a device-specific interrupt in the NVIC interrupt controller.
-
-    \param [in]      IRQn  External interrupt number. Value cannot be negative.
- */
-__STATIC_INLINE void NVIC_EnableIRQ(IRQn_Type IRQn)
-{
-  NVIC->ISER[((uint32_t)(IRQn) >> 5)] = (1 << ((uint32_t)(IRQn) & 0x1F)); /* enable interrupt */
-}
-
-
-/** \brief  Disable External Interrupt
-
-    The function disables a device-specific interrupt in the NVIC interrupt controller.
-
-    \param [in]      IRQn  External interrupt number. Value cannot be negative.
- */
-__STATIC_INLINE void NVIC_DisableIRQ(IRQn_Type IRQn)
-{
-  NVIC->ICER[((uint32_t)(IRQn) >> 5)] = (1 << ((uint32_t)(IRQn) & 0x1F)); /* disable interrupt */
-}
-
-
-/** \brief  Get Pending Interrupt
-
-    The function reads the pending register in the NVIC and returns the pending bit
-    for the specified interrupt.
-
-    \param [in]      IRQn  Interrupt number.
-
-    \return             0  Interrupt status is not pending.
-    \return             1  Interrupt status is pending.
- */
-__STATIC_INLINE uint32_t NVIC_GetPendingIRQ(IRQn_Type IRQn)
-{
-  return((uint32_t) ((NVIC->ISPR[(uint32_t)(IRQn) >> 5] & (1 << ((uint32_t)(IRQn) & 0x1F)))?1:0)); /* Return 1 if pending else 0 */
-}
-
-
-/** \brief  Set Pending Interrupt
-
-    The function sets the pending bit of an external interrupt.
-
-    \param [in]      IRQn  Interrupt number. Value cannot be negative.
- */
-__STATIC_INLINE void NVIC_SetPendingIRQ(IRQn_Type IRQn)
-{
-  NVIC->ISPR[((uint32_t)(IRQn) >> 5)] = (1 << ((uint32_t)(IRQn) & 0x1F)); /* set interrupt pending */
-}
-
-
-/** \brief  Clear Pending Interrupt
-
-    The function clears the pending bit of an external interrupt.
-
-    \param [in]      IRQn  External interrupt number. Value cannot be negative.
- */
-__STATIC_INLINE void NVIC_ClearPendingIRQ(IRQn_Type IRQn)
-{
-  NVIC->ICPR[((uint32_t)(IRQn) >> 5)] = (1 << ((uint32_t)(IRQn) & 0x1F)); /* Clear pending interrupt */
-}
-
-
-/** \brief  Get Active Interrupt
-
-    The function reads the active register in NVIC and returns the active bit.
-
-    \param [in]      IRQn  Interrupt number.
-
-    \return             0  Interrupt status is not active.
-    \return             1  Interrupt status is active.
- */
-__STATIC_INLINE uint32_t NVIC_GetActive(IRQn_Type IRQn)
-{
-  return((uint32_t)((NVIC->IABR[(uint32_t)(IRQn) >> 5] & (1 << ((uint32_t)(IRQn) & 0x1F)))?1:0)); /* Return 1 if active else 0 */
-}
-
-
-/** \brief  Set Interrupt Priority
-
-    The function sets the priority of an interrupt.
-
-    \note The priority cannot be set for every core interrupt.
-
-    \param [in]      IRQn  Interrupt number.
-    \param [in]  priority  Priority to set.
- */
-__STATIC_INLINE void NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority)
-{
-  if(IRQn < 0) {
-    SCB->SHP[((uint32_t)(IRQn) & 0xF)-4] = ((priority << (8 - __NVIC_PRIO_BITS)) & 0xff); } /* set Priority for Cortex-M  System Interrupts */
-  else {
-    NVIC->IP[(uint32_t)(IRQn)] = ((priority << (8 - __NVIC_PRIO_BITS)) & 0xff);    }        /* set Priority for device specific Interrupts  */
-}
-
-
-/** \brief  Get Interrupt Priority
-
-    The function reads the priority of an interrupt. The interrupt
-    number can be positive to specify an external (device specific)
-    interrupt, or negative to specify an internal (core) interrupt.
-
-
-    \param [in]   IRQn  Interrupt number.
-    \return             Interrupt Priority. Value is aligned automatically to the implemented
-                        priority bits of the microcontroller.
- */
-__STATIC_INLINE uint32_t NVIC_GetPriority(IRQn_Type IRQn)
-{
-
-  if(IRQn < 0) {
-    return((uint32_t)(SCB->SHP[((uint32_t)(IRQn) & 0xF)-4] >> (8 - __NVIC_PRIO_BITS)));  } /* get priority for Cortex-M  system interrupts */
-  else {
-    return((uint32_t)(NVIC->IP[(uint32_t)(IRQn)]           >> (8 - __NVIC_PRIO_BITS)));  } /* get priority for device specific interrupts  */
-}
-
-
-/** \brief  Encode Priority
-
-    The function encodes the priority for an interrupt with the given priority group,
-    preemptive priority value, and subpriority value.
-    In case of a conflict between priority grouping and available
-    priority bits (__NVIC_PRIO_BITS), the samllest possible priority group is set.
-
-    \param [in]     PriorityGroup  Used priority group.
-    \param [in]   PreemptPriority  Preemptive priority value (starting from 0).
-    \param [in]       SubPriority  Subpriority value (starting from 0).
-    \return                        Encoded priority. Value can be used in the function \ref NVIC_SetPriority().
- */
-__STATIC_INLINE uint32_t NVIC_EncodePriority (uint32_t PriorityGroup, uint32_t PreemptPriority, uint32_t SubPriority)
-{
-  uint32_t PriorityGroupTmp = (PriorityGroup & 0x07);          /* only values 0..7 are used          */
-  uint32_t PreemptPriorityBits;
-  uint32_t SubPriorityBits;
-
-  PreemptPriorityBits = ((7 - PriorityGroupTmp) > __NVIC_PRIO_BITS) ? __NVIC_PRIO_BITS : 7 - PriorityGroupTmp;
-  SubPriorityBits     = ((PriorityGroupTmp + __NVIC_PRIO_BITS) < 7) ? 0 : PriorityGroupTmp - 7 + __NVIC_PRIO_BITS;
-
-  return (
-           ((PreemptPriority & ((1 << (PreemptPriorityBits)) - 1)) << SubPriorityBits) |
-           ((SubPriority     & ((1 << (SubPriorityBits    )) - 1)))
-         );
-}
-
-
-/** \brief  Decode Priority
-
-    The function decodes an interrupt priority value with a given priority group to
-    preemptive priority value and subpriority value.
-    In case of a conflict between priority grouping and available
-    priority bits (__NVIC_PRIO_BITS) the samllest possible priority group is set.
-
-    \param [in]         Priority   Priority value, which can be retrieved with the function \ref NVIC_GetPriority().
-    \param [in]     PriorityGroup  Used priority group.
-    \param [out] pPreemptPriority  Preemptive priority value (starting from 0).
-    \param [out]     pSubPriority  Subpriority value (starting from 0).
- */
-__STATIC_INLINE void NVIC_DecodePriority (uint32_t Priority, uint32_t PriorityGroup, uint32_t* pPreemptPriority, uint32_t* pSubPriority)
-{
-  uint32_t PriorityGroupTmp = (PriorityGroup & 0x07);          /* only values 0..7 are used          */
-  uint32_t PreemptPriorityBits;
-  uint32_t SubPriorityBits;
-
-  PreemptPriorityBits = ((7 - PriorityGroupTmp) > __NVIC_PRIO_BITS) ? __NVIC_PRIO_BITS : 7 - PriorityGroupTmp;
-  SubPriorityBits     = ((PriorityGroupTmp + __NVIC_PRIO_BITS) < 7) ? 0 : PriorityGroupTmp - 7 + __NVIC_PRIO_BITS;
-
-  *pPreemptPriority = (Priority >> SubPriorityBits) & ((1 << (PreemptPriorityBits)) - 1);
-  *pSubPriority     = (Priority                   ) & ((1 << (SubPriorityBits    )) - 1);
-}
-
-
-/** \brief  System Reset
-
-    The function initiates a system reset request to reset the MCU.
- */
-__STATIC_INLINE void NVIC_SystemReset(void)
-{
-  __DSB();                                                     /* Ensure all outstanding memory accesses included
-                                                                  buffered write are completed before reset */
-  SCB->AIRCR  = ((0x5FA << SCB_AIRCR_VECTKEY_Pos)      |
-                 (SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) |
-                 SCB_AIRCR_SYSRESETREQ_Msk);                   /* Keep priority group unchanged */
-  __DSB();                                                     /* Ensure completion of memory access */
-  while(1);                                                    /* wait until reset */
-}
-
-/*@} end of CMSIS_Core_NVICFunctions */
-
-
-
-/* ##################################    SysTick function  ############################################ */
-/** \ingroup  CMSIS_Core_FunctionInterface
-    \defgroup CMSIS_Core_SysTickFunctions SysTick Functions
-    \brief      Functions that configure the System.
-  @{
- */
-
-#if (__Vendor_SysTickConfig == 0)
-
-/** \brief  System Tick Configuration
-
-    The function initializes the System Timer and its interrupt, and starts the System Tick Timer.
-    Counter is in free running mode to generate periodic interrupts.
-
-    \param [in]  ticks  Number of ticks between two interrupts.
-
-    \return          0  Function succeeded.
-    \return          1  Function failed.
-
-    \note     When the variable <b>__Vendor_SysTickConfig</b> is set to 1, then the
-    function <b>SysTick_Config</b> is not included. In this case, the file <b><i>device</i>.h</b>
-    must contain a vendor-specific implementation of this function.
-
- */
-__STATIC_INLINE uint32_t SysTick_Config(uint32_t ticks)
-{
-  if ((ticks - 1) > SysTick_LOAD_RELOAD_Msk)  return (1);      /* Reload value impossible */
-
-  SysTick->LOAD  = ticks - 1;                                  /* set reload register */
-  NVIC_SetPriority (SysTick_IRQn, (1<<__NVIC_PRIO_BITS) - 1);  /* set Priority for Systick Interrupt */
-  SysTick->VAL   = 0;                                          /* Load the SysTick Counter Value */
-  SysTick->CTRL  = SysTick_CTRL_CLKSOURCE_Msk |
-                   SysTick_CTRL_TICKINT_Msk   |
-                   SysTick_CTRL_ENABLE_Msk;                    /* Enable SysTick IRQ and SysTick Timer */
-  return (0);                                                  /* Function successful */
-}
-
-#endif
-
-/*@} end of CMSIS_Core_SysTickFunctions */
-
-
-
-/* ##################################### Debug In/Output function ########################################### */
-/** \ingroup  CMSIS_Core_FunctionInterface
-    \defgroup CMSIS_core_DebugFunctions ITM Functions
-    \brief   Functions that access the ITM debug interface.
-  @{
- */
-
-extern volatile int32_t ITM_RxBuffer;                    /*!< External variable to receive characters.                         */
-#define                 ITM_RXBUFFER_EMPTY    0x5AA55AA5 /*!< Value identifying \ref ITM_RxBuffer is ready for next character. */
-
-
-/** \brief  ITM Send Character
-
-    The function transmits a character via the ITM channel 0, and
-    \li Just returns when no debugger is connected that has booked the output.
-    \li Is blocking when a debugger is connected, but the previous character sent has not been transmitted.
-
-    \param [in]     ch  Character to transmit.
-
-    \returns            Character to transmit.
- */
-__STATIC_INLINE uint32_t ITM_SendChar (uint32_t ch)
-{
-  if ((ITM->TCR & ITM_TCR_ITMENA_Msk)                  &&      /* ITM enabled */
-      (ITM->TER & (1UL << 0)        )                    )     /* ITM Port #0 enabled */
-  {
-    while (ITM->PORT[0].u32 == 0);
-    ITM->PORT[0].u8 = (uint8_t) ch;
-  }
-  return (ch);
-}
-
-
-/** \brief  ITM Receive Character
-
-    The function inputs a character via the external variable \ref ITM_RxBuffer.
-
-    \return             Received character.
-    \return         -1  No character pending.
- */
-__STATIC_INLINE int32_t ITM_ReceiveChar (void) {
-  int32_t ch = -1;                           /* no character available */
-
-  if (ITM_RxBuffer != ITM_RXBUFFER_EMPTY) {
-    ch = ITM_RxBuffer;
-    ITM_RxBuffer = ITM_RXBUFFER_EMPTY;       /* ready for next character */
-  }
-
-  return (ch);
-}
-
-
-/** \brief  ITM Check Character
-
-    The function checks whether a character is pending for reading in the variable \ref ITM_RxBuffer.
-
-    \return          0  No character available.
-    \return          1  Character available.
- */
-__STATIC_INLINE int32_t ITM_CheckChar (void) {
-
-  if (ITM_RxBuffer == ITM_RXBUFFER_EMPTY) {
-    return (0);                                 /* no character available */
-  } else {
-    return (1);                                 /*    character available */
-  }
-}
-
-/*@} end of CMSIS_core_DebugFunctions */
-
-#endif /* __CORE_CM3_H_DEPENDANT */
-
-#endif /* __CMSIS_GENERIC */
-
-#ifdef __cplusplus
-}
-#endif
diff --git a/bbb_cape/src/cape/CMSIS/core_cmFunc.h b/bbb_cape/src/cape/CMSIS/core_cmFunc.h
deleted file mode 100644
index 0a18faf..0000000
--- a/bbb_cape/src/cape/CMSIS/core_cmFunc.h
+++ /dev/null
@@ -1,636 +0,0 @@
-/**************************************************************************//**
- * @file     core_cmFunc.h
- * @brief    CMSIS Cortex-M Core Function Access Header File
- * @version  V3.20
- * @date     25. February 2013
- *
- * @note
- *
- ******************************************************************************/
-/* Copyright (c) 2009 - 2013 ARM LIMITED
-
-   All rights reserved.
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-   - Redistributions of source code must retain the above copyright
-     notice, this list of conditions and the following disclaimer.
-   - Redistributions in binary form must reproduce the above copyright
-     notice, this list of conditions and the following disclaimer in the
-     documentation and/or other materials provided with the distribution.
-   - Neither the name of ARM nor the names of its contributors may be used
-     to endorse or promote products derived from this software without
-     specific prior written permission.
-   *
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-   ---------------------------------------------------------------------------*/
-
-
-#ifndef __CORE_CMFUNC_H
-#define __CORE_CMFUNC_H
-
-
-/* ###########################  Core Function Access  ########################### */
-/** \ingroup  CMSIS_Core_FunctionInterface
-    \defgroup CMSIS_Core_RegAccFunctions CMSIS Core Register Access Functions
-  @{
- */
-
-#if   defined ( __CC_ARM ) /*------------------RealView Compiler -----------------*/
-/* ARM armcc specific functions */
-
-#if (__ARMCC_VERSION < 400677)
-  #error "Please use ARM Compiler Toolchain V4.0.677 or later!"
-#endif
-
-/* intrinsic void __enable_irq();     */
-/* intrinsic void __disable_irq();    */
-
-/** \brief  Get Control Register
-
-    This function returns the content of the Control Register.
-
-    \return               Control Register value
- */
-__STATIC_INLINE uint32_t __get_CONTROL(void)
-{
-  register uint32_t __regControl         __ASM("control");
-  return(__regControl);
-}
-
-
-/** \brief  Set Control Register
-
-    This function writes the given value to the Control Register.
-
-    \param [in]    control  Control Register value to set
- */
-__STATIC_INLINE void __set_CONTROL(uint32_t control)
-{
-  register uint32_t __regControl         __ASM("control");
-  __regControl = control;
-}
-
-
-/** \brief  Get IPSR Register
-
-    This function returns the content of the IPSR Register.
-
-    \return               IPSR Register value
- */
-__STATIC_INLINE uint32_t __get_IPSR(void)
-{
-  register uint32_t __regIPSR          __ASM("ipsr");
-  return(__regIPSR);
-}
-
-
-/** \brief  Get APSR Register
-
-    This function returns the content of the APSR Register.
-
-    \return               APSR Register value
- */
-__STATIC_INLINE uint32_t __get_APSR(void)
-{
-  register uint32_t __regAPSR          __ASM("apsr");
-  return(__regAPSR);
-}
-
-
-/** \brief  Get xPSR Register
-
-    This function returns the content of the xPSR Register.
-
-    \return               xPSR Register value
- */
-__STATIC_INLINE uint32_t __get_xPSR(void)
-{
-  register uint32_t __regXPSR          __ASM("xpsr");
-  return(__regXPSR);
-}
-
-
-/** \brief  Get Process Stack Pointer
-
-    This function returns the current value of the Process Stack Pointer (PSP).
-
-    \return               PSP Register value
- */
-__STATIC_INLINE uint32_t __get_PSP(void)
-{
-  register uint32_t __regProcessStackPointer  __ASM("psp");
-  return(__regProcessStackPointer);
-}
-
-
-/** \brief  Set Process Stack Pointer
-
-    This function assigns the given value to the Process Stack Pointer (PSP).
-
-    \param [in]    topOfProcStack  Process Stack Pointer value to set
- */
-__STATIC_INLINE void __set_PSP(uint32_t topOfProcStack)
-{
-  register uint32_t __regProcessStackPointer  __ASM("psp");
-  __regProcessStackPointer = topOfProcStack;
-}
-
-
-/** \brief  Get Main Stack Pointer
-
-    This function returns the current value of the Main Stack Pointer (MSP).
-
-    \return               MSP Register value
- */
-__STATIC_INLINE uint32_t __get_MSP(void)
-{
-  register uint32_t __regMainStackPointer     __ASM("msp");
-  return(__regMainStackPointer);
-}
-
-
-/** \brief  Set Main Stack Pointer
-
-    This function assigns the given value to the Main Stack Pointer (MSP).
-
-    \param [in]    topOfMainStack  Main Stack Pointer value to set
- */
-__STATIC_INLINE void __set_MSP(uint32_t topOfMainStack)
-{
-  register uint32_t __regMainStackPointer     __ASM("msp");
-  __regMainStackPointer = topOfMainStack;
-}
-
-
-/** \brief  Get Priority Mask
-
-    This function returns the current state of the priority mask bit from the Priority Mask Register.
-
-    \return               Priority Mask value
- */
-__STATIC_INLINE uint32_t __get_PRIMASK(void)
-{
-  register uint32_t __regPriMask         __ASM("primask");
-  return(__regPriMask);
-}
-
-
-/** \brief  Set Priority Mask
-
-    This function assigns the given value to the Priority Mask Register.
-
-    \param [in]    priMask  Priority Mask
- */
-__STATIC_INLINE void __set_PRIMASK(uint32_t priMask)
-{
-  register uint32_t __regPriMask         __ASM("primask");
-  __regPriMask = (priMask);
-}
-
-
-#if       (__CORTEX_M >= 0x03)
-
-/** \brief  Enable FIQ
-
-    This function enables FIQ interrupts by clearing the F-bit in the CPSR.
-    Can only be executed in Privileged modes.
- */
-#define __enable_fault_irq                __enable_fiq
-
-
-/** \brief  Disable FIQ
-
-    This function disables FIQ interrupts by setting the F-bit in the CPSR.
-    Can only be executed in Privileged modes.
- */
-#define __disable_fault_irq               __disable_fiq
-
-
-/** \brief  Get Base Priority
-
-    This function returns the current value of the Base Priority register.
-
-    \return               Base Priority register value
- */
-__STATIC_INLINE uint32_t  __get_BASEPRI(void)
-{
-  register uint32_t __regBasePri         __ASM("basepri");
-  return(__regBasePri);
-}
-
-
-/** \brief  Set Base Priority
-
-    This function assigns the given value to the Base Priority register.
-
-    \param [in]    basePri  Base Priority value to set
- */
-__STATIC_INLINE void __set_BASEPRI(uint32_t basePri)
-{
-  register uint32_t __regBasePri         __ASM("basepri");
-  __regBasePri = (basePri & 0xff);
-}
-
-
-/** \brief  Get Fault Mask
-
-    This function returns the current value of the Fault Mask register.
-
-    \return               Fault Mask register value
- */
-__STATIC_INLINE uint32_t __get_FAULTMASK(void)
-{
-  register uint32_t __regFaultMask       __ASM("faultmask");
-  return(__regFaultMask);
-}
-
-
-/** \brief  Set Fault Mask
-
-    This function assigns the given value to the Fault Mask register.
-
-    \param [in]    faultMask  Fault Mask value to set
- */
-__STATIC_INLINE void __set_FAULTMASK(uint32_t faultMask)
-{
-  register uint32_t __regFaultMask       __ASM("faultmask");
-  __regFaultMask = (faultMask & (uint32_t)1);
-}
-
-#endif /* (__CORTEX_M >= 0x03) */
-
-
-#if       (__CORTEX_M == 0x04)
-
-/** \brief  Get FPSCR
-
-    This function returns the current value of the Floating Point Status/Control register.
-
-    \return               Floating Point Status/Control register value
- */
-__STATIC_INLINE uint32_t __get_FPSCR(void)
-{
-#if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
-  register uint32_t __regfpscr         __ASM("fpscr");
-  return(__regfpscr);
-#else
-   return(0);
-#endif
-}
-
-
-/** \brief  Set FPSCR
-
-    This function assigns the given value to the Floating Point Status/Control register.
-
-    \param [in]    fpscr  Floating Point Status/Control value to set
- */
-__STATIC_INLINE void __set_FPSCR(uint32_t fpscr)
-{
-#if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
-  register uint32_t __regfpscr         __ASM("fpscr");
-  __regfpscr = (fpscr);
-#endif
-}
-
-#endif /* (__CORTEX_M == 0x04) */
-
-
-#elif defined ( __ICCARM__ ) /*------------------ ICC Compiler -------------------*/
-/* IAR iccarm specific functions */
-
-#include <cmsis_iar.h>
-
-
-#elif defined ( __TMS470__ ) /*---------------- TI CCS Compiler ------------------*/
-/* TI CCS specific functions */
-
-#include <cmsis_ccs.h>
-
-
-#elif defined ( __GNUC__ ) /*------------------ GNU Compiler ---------------------*/
-/* GNU gcc specific functions */
-
-/** \brief  Enable IRQ Interrupts
-
-  This function enables IRQ interrupts by clearing the I-bit in the CPSR.
-  Can only be executed in Privileged modes.
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __enable_irq(void)
-{
-  __ASM volatile ("cpsie i" : : : "memory");
-}
-
-
-/** \brief  Disable IRQ Interrupts
-
-  This function disables IRQ interrupts by setting the I-bit in the CPSR.
-  Can only be executed in Privileged modes.
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __disable_irq(void)
-{
-  __ASM volatile ("cpsid i" : : : "memory");
-}
-
-
-/** \brief  Get Control Register
-
-    This function returns the content of the Control Register.
-
-    \return               Control Register value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_CONTROL(void)
-{
-  uint32_t result;
-
-  __ASM volatile ("MRS %0, control" : "=r" (result) );
-  return(result);
-}
-
-
-/** \brief  Set Control Register
-
-    This function writes the given value to the Control Register.
-
-    \param [in]    control  Control Register value to set
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_CONTROL(uint32_t control)
-{
-  __ASM volatile ("MSR control, %0" : : "r" (control) : "memory");
-}
-
-
-/** \brief  Get IPSR Register
-
-    This function returns the content of the IPSR Register.
-
-    \return               IPSR Register value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_IPSR(void)
-{
-  uint32_t result;
-
-  __ASM volatile ("MRS %0, ipsr" : "=r" (result) );
-  return(result);
-}
-
-
-/** \brief  Get APSR Register
-
-    This function returns the content of the APSR Register.
-
-    \return               APSR Register value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_APSR(void)
-{
-  uint32_t result;
-
-  __ASM volatile ("MRS %0, apsr" : "=r" (result) );
-  return(result);
-}
-
-
-/** \brief  Get xPSR Register
-
-    This function returns the content of the xPSR Register.
-
-    \return               xPSR Register value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_xPSR(void)
-{
-  uint32_t result;
-
-  __ASM volatile ("MRS %0, xpsr" : "=r" (result) );
-  return(result);
-}
-
-
-/** \brief  Get Process Stack Pointer
-
-    This function returns the current value of the Process Stack Pointer (PSP).
-
-    \return               PSP Register value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_PSP(void)
-{
-  register uint32_t result;
-
-  __ASM volatile ("MRS %0, psp\n"  : "=r" (result) );
-  return(result);
-}
-
-
-/** \brief  Set Process Stack Pointer
-
-    This function assigns the given value to the Process Stack Pointer (PSP).
-
-    \param [in]    topOfProcStack  Process Stack Pointer value to set
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_PSP(uint32_t topOfProcStack)
-{
-  __ASM volatile ("MSR psp, %0\n" : : "r" (topOfProcStack) : "sp");
-}
-
-
-/** \brief  Get Main Stack Pointer
-
-    This function returns the current value of the Main Stack Pointer (MSP).
-
-    \return               MSP Register value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_MSP(void)
-{
-  register uint32_t result;
-
-  __ASM volatile ("MRS %0, msp\n" : "=r" (result) );
-  return(result);
-}
-
-
-/** \brief  Set Main Stack Pointer
-
-    This function assigns the given value to the Main Stack Pointer (MSP).
-
-    \param [in]    topOfMainStack  Main Stack Pointer value to set
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_MSP(uint32_t topOfMainStack)
-{
-  __ASM volatile ("MSR msp, %0\n" : : "r" (topOfMainStack) : "sp");
-}
-
-
-/** \brief  Get Priority Mask
-
-    This function returns the current state of the priority mask bit from the Priority Mask Register.
-
-    \return               Priority Mask value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_PRIMASK(void)
-{
-  uint32_t result;
-
-  __ASM volatile ("MRS %0, primask" : "=r" (result) );
-  return(result);
-}
-
-
-/** \brief  Set Priority Mask
-
-    This function assigns the given value to the Priority Mask Register.
-
-    \param [in]    priMask  Priority Mask
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_PRIMASK(uint32_t priMask)
-{
-  __ASM volatile ("MSR primask, %0" : : "r" (priMask) : "memory");
-}
-
-
-#if       (__CORTEX_M >= 0x03)
-
-/** \brief  Enable FIQ
-
-    This function enables FIQ interrupts by clearing the F-bit in the CPSR.
-    Can only be executed in Privileged modes.
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __enable_fault_irq(void)
-{
-  __ASM volatile ("cpsie f" : : : "memory");
-}
-
-
-/** \brief  Disable FIQ
-
-    This function disables FIQ interrupts by setting the F-bit in the CPSR.
-    Can only be executed in Privileged modes.
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __disable_fault_irq(void)
-{
-  __ASM volatile ("cpsid f" : : : "memory");
-}
-
-
-/** \brief  Get Base Priority
-
-    This function returns the current value of the Base Priority register.
-
-    \return               Base Priority register value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_BASEPRI(void)
-{
-  uint32_t result;
-
-  __ASM volatile ("MRS %0, basepri_max" : "=r" (result) );
-  return(result);
-}
-
-
-/** \brief  Set Base Priority
-
-    This function assigns the given value to the Base Priority register.
-
-    \param [in]    basePri  Base Priority value to set
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_BASEPRI(uint32_t value)
-{
-  __ASM volatile ("MSR basepri, %0" : : "r" (value) : "memory");
-}
-
-
-/** \brief  Get Fault Mask
-
-    This function returns the current value of the Fault Mask register.
-
-    \return               Fault Mask register value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_FAULTMASK(void)
-{
-  uint32_t result;
-
-  __ASM volatile ("MRS %0, faultmask" : "=r" (result) );
-  return(result);
-}
-
-
-/** \brief  Set Fault Mask
-
-    This function assigns the given value to the Fault Mask register.
-
-    \param [in]    faultMask  Fault Mask value to set
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_FAULTMASK(uint32_t faultMask)
-{
-  __ASM volatile ("MSR faultmask, %0" : : "r" (faultMask) : "memory");
-}
-
-#endif /* (__CORTEX_M >= 0x03) */
-
-
-#if       (__CORTEX_M == 0x04)
-
-/** \brief  Get FPSCR
-
-    This function returns the current value of the Floating Point Status/Control register.
-
-    \return               Floating Point Status/Control register value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_FPSCR(void)
-{
-#if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
-  uint32_t result;
-
-  /* Empty asm statement works as a scheduling barrier */
-  __ASM volatile ("");
-  __ASM volatile ("VMRS %0, fpscr" : "=r" (result) );
-  __ASM volatile ("");
-  return(result);
-#else
-   return(0);
-#endif
-}
-
-
-/** \brief  Set FPSCR
-
-    This function assigns the given value to the Floating Point Status/Control register.
-
-    \param [in]    fpscr  Floating Point Status/Control value to set
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __set_FPSCR(uint32_t fpscr)
-{
-#if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
-  /* Empty asm statement works as a scheduling barrier */
-  __ASM volatile ("");
-  __ASM volatile ("VMSR fpscr, %0" : : "r" (fpscr) : "vfpcc");
-  __ASM volatile ("");
-#endif
-}
-
-#endif /* (__CORTEX_M == 0x04) */
-
-
-#elif defined ( __TASKING__ ) /*------------------ TASKING Compiler --------------*/
-/* TASKING carm specific functions */
-
-/*
- * The CMSIS functions have been implemented as intrinsics in the compiler.
- * Please use "carm -?i" to get an up to date list of all instrinsics,
- * Including the CMSIS ones.
- */
-
-#endif
-
-/*@} end of CMSIS_Core_RegAccFunctions */
-
-
-#endif /* __CORE_CMFUNC_H */
diff --git a/bbb_cape/src/cape/CMSIS/core_cmInstr.h b/bbb_cape/src/cape/CMSIS/core_cmInstr.h
deleted file mode 100644
index d213f0e..0000000
--- a/bbb_cape/src/cape/CMSIS/core_cmInstr.h
+++ /dev/null
@@ -1,688 +0,0 @@
-/**************************************************************************//**
- * @file     core_cmInstr.h
- * @brief    CMSIS Cortex-M Core Instruction Access Header File
- * @version  V3.20
- * @date     05. March 2013
- *
- * @note
- *
- ******************************************************************************/
-/* Copyright (c) 2009 - 2013 ARM LIMITED
-
-   All rights reserved.
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-   - Redistributions of source code must retain the above copyright
-     notice, this list of conditions and the following disclaimer.
-   - Redistributions in binary form must reproduce the above copyright
-     notice, this list of conditions and the following disclaimer in the
-     documentation and/or other materials provided with the distribution.
-   - Neither the name of ARM nor the names of its contributors may be used
-     to endorse or promote products derived from this software without
-     specific prior written permission.
-   *
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-   ---------------------------------------------------------------------------*/
-
-
-#ifndef __CORE_CMINSTR_H
-#define __CORE_CMINSTR_H
-
-
-/* ##########################  Core Instruction Access  ######################### */
-/** \defgroup CMSIS_Core_InstructionInterface CMSIS Core Instruction Interface
-  Access to dedicated instructions
-  @{
-*/
-
-#if   defined ( __CC_ARM ) /*------------------RealView Compiler -----------------*/
-/* ARM armcc specific functions */
-
-#if (__ARMCC_VERSION < 400677)
-  #error "Please use ARM Compiler Toolchain V4.0.677 or later!"
-#endif
-
-
-/** \brief  No Operation
-
-    No Operation does nothing. This instruction can be used for code alignment purposes.
- */
-#define __NOP                             __nop
-
-
-/** \brief  Wait For Interrupt
-
-    Wait For Interrupt is a hint instruction that suspends execution
-    until one of a number of events occurs.
- */
-#define __WFI                             __wfi
-
-
-/** \brief  Wait For Event
-
-    Wait For Event is a hint instruction that permits the processor to enter
-    a low-power state until one of a number of events occurs.
- */
-#define __WFE                             __wfe
-
-
-/** \brief  Send Event
-
-    Send Event is a hint instruction. It causes an event to be signaled to the CPU.
- */
-#define __SEV                             __sev
-
-
-/** \brief  Instruction Synchronization Barrier
-
-    Instruction Synchronization Barrier flushes the pipeline in the processor,
-    so that all instructions following the ISB are fetched from cache or
-    memory, after the instruction has been completed.
- */
-#define __ISB()                           __isb(0xF)
-
-
-/** \brief  Data Synchronization Barrier
-
-    This function acts as a special kind of Data Memory Barrier.
-    It completes when all explicit memory accesses before this instruction complete.
- */
-#define __DSB()                           __dsb(0xF)
-
-
-/** \brief  Data Memory Barrier
-
-    This function ensures the apparent order of the explicit memory operations before
-    and after the instruction, without ensuring their completion.
- */
-#define __DMB()                           __dmb(0xF)
-
-
-/** \brief  Reverse byte order (32 bit)
-
-    This function reverses the byte order in integer value.
-
-    \param [in]    value  Value to reverse
-    \return               Reversed value
- */
-#define __REV                             __rev
-
-
-/** \brief  Reverse byte order (16 bit)
-
-    This function reverses the byte order in two unsigned short values.
-
-    \param [in]    value  Value to reverse
-    \return               Reversed value
- */
-#ifndef __NO_EMBEDDED_ASM
-__attribute__((section(".rev16_text"))) __STATIC_INLINE __ASM uint32_t __REV16(uint32_t value)
-{
-  rev16 r0, r0
-  bx lr
-}
-#endif
-
-/** \brief  Reverse byte order in signed short value
-
-    This function reverses the byte order in a signed short value with sign extension to integer.
-
-    \param [in]    value  Value to reverse
-    \return               Reversed value
- */
-#ifndef __NO_EMBEDDED_ASM
-__attribute__((section(".revsh_text"))) __STATIC_INLINE __ASM int32_t __REVSH(int32_t value)
-{
-  revsh r0, r0
-  bx lr
-}
-#endif
-
-
-/** \brief  Rotate Right in unsigned value (32 bit)
-
-    This function Rotate Right (immediate) provides the value of the contents of a register rotated by a variable number of bits.
-
-    \param [in]    value  Value to rotate
-    \param [in]    value  Number of Bits to rotate
-    \return               Rotated value
- */
-#define __ROR                             __ror
-
-
-/** \brief  Breakpoint
-
-    This function causes the processor to enter Debug state.
-    Debug tools can use this to investigate system state when the instruction at a particular address is reached.
-
-    \param [in]    value  is ignored by the processor.
-                   If required, a debugger can use it to store additional information about the breakpoint.
- */
-#define __BKPT(value)                       __breakpoint(value)
-
-
-#if       (__CORTEX_M >= 0x03)
-
-/** \brief  Reverse bit order of value
-
-    This function reverses the bit order of the given value.
-
-    \param [in]    value  Value to reverse
-    \return               Reversed value
- */
-#define __RBIT                            __rbit
-
-
-/** \brief  LDR Exclusive (8 bit)
-
-    This function performs a exclusive LDR command for 8 bit value.
-
-    \param [in]    ptr  Pointer to data
-    \return             value of type uint8_t at (*ptr)
- */
-#define __LDREXB(ptr)                     ((uint8_t ) __ldrex(ptr))
-
-
-/** \brief  LDR Exclusive (16 bit)
-
-    This function performs a exclusive LDR command for 16 bit values.
-
-    \param [in]    ptr  Pointer to data
-    \return        value of type uint16_t at (*ptr)
- */
-#define __LDREXH(ptr)                     ((uint16_t) __ldrex(ptr))
-
-
-/** \brief  LDR Exclusive (32 bit)
-
-    This function performs a exclusive LDR command for 32 bit values.
-
-    \param [in]    ptr  Pointer to data
-    \return        value of type uint32_t at (*ptr)
- */
-#define __LDREXW(ptr)                     ((uint32_t ) __ldrex(ptr))
-
-
-/** \brief  STR Exclusive (8 bit)
-
-    This function performs a exclusive STR command for 8 bit values.
-
-    \param [in]  value  Value to store
-    \param [in]    ptr  Pointer to location
-    \return          0  Function succeeded
-    \return          1  Function failed
- */
-#define __STREXB(value, ptr)              __strex(value, ptr)
-
-
-/** \brief  STR Exclusive (16 bit)
-
-    This function performs a exclusive STR command for 16 bit values.
-
-    \param [in]  value  Value to store
-    \param [in]    ptr  Pointer to location
-    \return          0  Function succeeded
-    \return          1  Function failed
- */
-#define __STREXH(value, ptr)              __strex(value, ptr)
-
-
-/** \brief  STR Exclusive (32 bit)
-
-    This function performs a exclusive STR command for 32 bit values.
-
-    \param [in]  value  Value to store
-    \param [in]    ptr  Pointer to location
-    \return          0  Function succeeded
-    \return          1  Function failed
- */
-#define __STREXW(value, ptr)              __strex(value, ptr)
-
-
-/** \brief  Remove the exclusive lock
-
-    This function removes the exclusive lock which is created by LDREX.
-
- */
-#define __CLREX                           __clrex
-
-
-/** \brief  Signed Saturate
-
-    This function saturates a signed value.
-
-    \param [in]  value  Value to be saturated
-    \param [in]    sat  Bit position to saturate to (1..32)
-    \return             Saturated value
- */
-#define __SSAT                            __ssat
-
-
-/** \brief  Unsigned Saturate
-
-    This function saturates an unsigned value.
-
-    \param [in]  value  Value to be saturated
-    \param [in]    sat  Bit position to saturate to (0..31)
-    \return             Saturated value
- */
-#define __USAT                            __usat
-
-
-/** \brief  Count leading zeros
-
-    This function counts the number of leading zeros of a data value.
-
-    \param [in]  value  Value to count the leading zeros
-    \return             number of leading zeros in value
- */
-#define __CLZ                             __clz
-
-#endif /* (__CORTEX_M >= 0x03) */
-
-
-
-#elif defined ( __ICCARM__ ) /*------------------ ICC Compiler -------------------*/
-/* IAR iccarm specific functions */
-
-#include <cmsis_iar.h>
-
-
-#elif defined ( __TMS470__ ) /*---------------- TI CCS Compiler ------------------*/
-/* TI CCS specific functions */
-
-#include <cmsis_ccs.h>
-
-
-#elif defined ( __GNUC__ ) /*------------------ GNU Compiler ---------------------*/
-/* GNU gcc specific functions */
-
-/* Define macros for porting to both thumb1 and thumb2.
- * For thumb1, use low register (r0-r7), specified by constrant "l"
- * Otherwise, use general registers, specified by constrant "r" */
-#if defined (__thumb__) && !defined (__thumb2__)
-#define __CMSIS_GCC_OUT_REG(r) "=l" (r)
-#define __CMSIS_GCC_USE_REG(r) "l" (r)
-#else
-#define __CMSIS_GCC_OUT_REG(r) "=r" (r)
-#define __CMSIS_GCC_USE_REG(r) "r" (r)
-#endif
-
-/** \brief  No Operation
-
-    No Operation does nothing. This instruction can be used for code alignment purposes.
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __NOP(void)
-{
-  __ASM volatile ("nop");
-}
-
-
-/** \brief  Wait For Interrupt
-
-    Wait For Interrupt is a hint instruction that suspends execution
-    until one of a number of events occurs.
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __WFI(void)
-{
-  __ASM volatile ("wfi");
-}
-
-
-/** \brief  Wait For Event
-
-    Wait For Event is a hint instruction that permits the processor to enter
-    a low-power state until one of a number of events occurs.
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __WFE(void)
-{
-  __ASM volatile ("wfe");
-}
-
-
-/** \brief  Send Event
-
-    Send Event is a hint instruction. It causes an event to be signaled to the CPU.
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __SEV(void)
-{
-  __ASM volatile ("sev");
-}
-
-
-/** \brief  Instruction Synchronization Barrier
-
-    Instruction Synchronization Barrier flushes the pipeline in the processor,
-    so that all instructions following the ISB are fetched from cache or
-    memory, after the instruction has been completed.
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __ISB(void)
-{
-  __ASM volatile ("isb");
-}
-
-
-/** \brief  Data Synchronization Barrier
-
-    This function acts as a special kind of Data Memory Barrier.
-    It completes when all explicit memory accesses before this instruction complete.
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __DSB(void)
-{
-  __ASM volatile ("dsb");
-}
-
-
-/** \brief  Data Memory Barrier
-
-    This function ensures the apparent order of the explicit memory operations before
-    and after the instruction, without ensuring their completion.
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __DMB(void)
-{
-  __ASM volatile ("dmb");
-}
-
-
-/** \brief  Reverse byte order (32 bit)
-
-    This function reverses the byte order in integer value.
-
-    \param [in]    value  Value to reverse
-    \return               Reversed value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __REV(uint32_t value)
-{
-#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
-  return __builtin_bswap32(value);
-#else
-  uint32_t result;
-
-  __ASM volatile ("rev %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) );
-  return(result);
-#endif
-}
-
-
-/** \brief  Reverse byte order (16 bit)
-
-    This function reverses the byte order in two unsigned short values.
-
-    \param [in]    value  Value to reverse
-    \return               Reversed value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __REV16(uint32_t value)
-{
-  uint32_t result;
-
-  __ASM volatile ("rev16 %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) );
-  return(result);
-}
-
-
-/** \brief  Reverse byte order in signed short value
-
-    This function reverses the byte order in a signed short value with sign extension to integer.
-
-    \param [in]    value  Value to reverse
-    \return               Reversed value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE int32_t __REVSH(int32_t value)
-{
-#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
-  return (short)__builtin_bswap16(value);
-#else
-  uint32_t result;
-
-  __ASM volatile ("revsh %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) );
-  return(result);
-#endif
-}
-
-
-/** \brief  Rotate Right in unsigned value (32 bit)
-
-    This function Rotate Right (immediate) provides the value of the contents of a register rotated by a variable number of bits.
-
-    \param [in]    value  Value to rotate
-    \param [in]    value  Number of Bits to rotate
-    \return               Rotated value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __ROR(uint32_t op1, uint32_t op2)
-{
-  return (op1 >> op2) | (op1 << (32 - op2)); 
-}
-
-
-/** \brief  Breakpoint
-
-    This function causes the processor to enter Debug state.
-    Debug tools can use this to investigate system state when the instruction at a particular address is reached.
-
-    \param [in]    value  is ignored by the processor.
-                   If required, a debugger can use it to store additional information about the breakpoint.
- */
-#define __BKPT(value)                       __ASM volatile ("bkpt "#value)
-
-
-#if       (__CORTEX_M >= 0x03)
-
-/** \brief  Reverse bit order of value
-
-    This function reverses the bit order of the given value.
-
-    \param [in]    value  Value to reverse
-    \return               Reversed value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __RBIT(uint32_t value)
-{
-  uint32_t result;
-
-   __ASM volatile ("rbit %0, %1" : "=r" (result) : "r" (value) );
-   return(result);
-}
-
-
-/** \brief  LDR Exclusive (8 bit)
-
-    This function performs a exclusive LDR command for 8 bit value.
-
-    \param [in]    ptr  Pointer to data
-    \return             value of type uint8_t at (*ptr)
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint8_t __LDREXB(volatile uint8_t *addr)
-{
-    uint32_t result;
-
-#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
-   __ASM volatile ("ldrexb %0, %1" : "=r" (result) : "Q" (*addr) );
-#else
-    /* Prior to GCC 4.8, "Q" will be expanded to [rx, #0] which is not
-       accepted by assembler. So has to use following less efficient pattern.
-    */
-   __ASM volatile ("ldrexb %0, [%1]" : "=r" (result) : "r" (addr) : "memory" );
-#endif
-   return(result);
-}
-
-
-/** \brief  LDR Exclusive (16 bit)
-
-    This function performs a exclusive LDR command for 16 bit values.
-
-    \param [in]    ptr  Pointer to data
-    \return        value of type uint16_t at (*ptr)
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint16_t __LDREXH(volatile uint16_t *addr)
-{
-    uint32_t result;
-
-#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
-   __ASM volatile ("ldrexh %0, %1" : "=r" (result) : "Q" (*addr) );
-#else
-    /* Prior to GCC 4.8, "Q" will be expanded to [rx, #0] which is not
-       accepted by assembler. So has to use following less efficient pattern.
-    */
-   __ASM volatile ("ldrexh %0, [%1]" : "=r" (result) : "r" (addr) : "memory" );
-#endif
-   return(result);
-}
-
-
-/** \brief  LDR Exclusive (32 bit)
-
-    This function performs a exclusive LDR command for 32 bit values.
-
-    \param [in]    ptr  Pointer to data
-    \return        value of type uint32_t at (*ptr)
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __LDREXW(volatile uint32_t *addr)
-{
-    uint32_t result;
-
-   __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) );
-   return(result);
-}
-
-
-/** \brief  STR Exclusive (8 bit)
-
-    This function performs a exclusive STR command for 8 bit values.
-
-    \param [in]  value  Value to store
-    \param [in]    ptr  Pointer to location
-    \return          0  Function succeeded
-    \return          1  Function failed
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __STREXB(uint8_t value, volatile uint8_t *addr)
-{
-   uint32_t result;
-
-   __ASM volatile ("strexb %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) );
-   return(result);
-}
-
-
-/** \brief  STR Exclusive (16 bit)
-
-    This function performs a exclusive STR command for 16 bit values.
-
-    \param [in]  value  Value to store
-    \param [in]    ptr  Pointer to location
-    \return          0  Function succeeded
-    \return          1  Function failed
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __STREXH(uint16_t value, volatile uint16_t *addr)
-{
-   uint32_t result;
-
-   __ASM volatile ("strexh %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) );
-   return(result);
-}
-
-
-/** \brief  STR Exclusive (32 bit)
-
-    This function performs a exclusive STR command for 32 bit values.
-
-    \param [in]  value  Value to store
-    \param [in]    ptr  Pointer to location
-    \return          0  Function succeeded
-    \return          1  Function failed
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __STREXW(uint32_t value, volatile uint32_t *addr)
-{
-   uint32_t result;
-
-   __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) );
-   return(result);
-}
-
-
-/** \brief  Remove the exclusive lock
-
-    This function removes the exclusive lock which is created by LDREX.
-
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE void __CLREX(void)
-{
-  __ASM volatile ("clrex" ::: "memory");
-}
-
-
-/** \brief  Signed Saturate
-
-    This function saturates a signed value.
-
-    \param [in]  value  Value to be saturated
-    \param [in]    sat  Bit position to saturate to (1..32)
-    \return             Saturated value
- */
-#define __SSAT(ARG1,ARG2) \
-({                          \
-  uint32_t __RES, __ARG1 = (ARG1); \
-  __ASM ("ssat %0, %1, %2" : "=r" (__RES) :  "I" (ARG2), "r" (__ARG1) ); \
-  __RES; \
- })
-
-
-/** \brief  Unsigned Saturate
-
-    This function saturates an unsigned value.
-
-    \param [in]  value  Value to be saturated
-    \param [in]    sat  Bit position to saturate to (0..31)
-    \return             Saturated value
- */
-#define __USAT(ARG1,ARG2) \
-({                          \
-  uint32_t __RES, __ARG1 = (ARG1); \
-  __ASM ("usat %0, %1, %2" : "=r" (__RES) :  "I" (ARG2), "r" (__ARG1) ); \
-  __RES; \
- })
-
-
-/** \brief  Count leading zeros
-
-    This function counts the number of leading zeros of a data value.
-
-    \param [in]  value  Value to count the leading zeros
-    \return             number of leading zeros in value
- */
-__attribute__( ( always_inline ) ) __STATIC_INLINE uint8_t __CLZ(uint32_t value)
-{
-   uint32_t result;
-
-  __ASM volatile ("clz %0, %1" : "=r" (result) : "r" (value) );
-  return(result);
-}
-
-#endif /* (__CORTEX_M >= 0x03) */
-
-
-
-
-#elif defined ( __TASKING__ ) /*------------------ TASKING Compiler --------------*/
-/* TASKING carm specific functions */
-
-/*
- * The CMSIS functions have been implemented as intrinsics in the compiler.
- * Please use "carm -?i" to get an up to date list of all intrinsics,
- * Including the CMSIS ones.
- */
-
-#endif
-
-/*@}*/ /* end of group CMSIS_Core_InstructionInterface */
-
-#endif /* __CORE_CMINSTR_H */
diff --git a/bbb_cape/src/cape/Makefile b/bbb_cape/src/cape/Makefile
deleted file mode 100644
index ce65f8b..0000000
--- a/bbb_cape/src/cape/Makefile
+++ /dev/null
@@ -1,109 +0,0 @@
-OBJDIR := .obj/
-UNAME_S := $(shell uname -s)
-
-$(shell mkdir -p $(OBJDIR))
-
-
-ifeq ($(OS),Windows_NT)
-  CROSS_COMPILE := arm-none-eabi-
-else ifeq ($(UNAME_S),Darwin)
-  CROSS_COMPILE := arm-none-eabi-
-else
-  CROSS_COMPILE := /opt/cortex-m3/bin/arm-eabi-
-endif
-
-CC := $(CROSS_COMPILE)gcc
-LD := $(CROSS_COMPILE)ld
-OBJCOPY := $(CROSS_COMPILE)objcopy
-OBJDUMP := $(CROSS_COMPILE)objdump
-AS := $(CROSS_COMPILE)as
-
-CPPFLAGS := -I.. -ICMSIS \
-
-CFLAGS := -nostartfiles -nostdlib -ffreestanding -fbuiltin \
-	-O3 -mcpu=cortex-m3 \
-	-mthumb -Wl,--gc-sections -ffunction-sections -Wl,-static \
-	-Wall -Werror --std=gnu99 \
-	-Wstrict-aliasing=2 -Wcast-qual -Wpointer-arith \
-
-LDFLAGS := -O3 -mcpu=cortex-m3 \
-	-nostartfiles -nostdlib \
-	-T gcc_arm.ld \
-
-ASFLAGS := -O3 -mcpu=cortex-m3 \
-	-nostartfiles -nostdlib \
-	-mthumb \
-
-OBJECTS_main_common := main \
-	uart_common \
-	uart_dma \
-	uart \
-	fill_packet \
-	cows \
-	encoder \
-	crc \
-	gyro \
-	led \
-	analog \
-	digital \
-	util \
-	robot \
-
-OBJECTS_bootloader := bootloader \
-	uart_common \
-	uart_byte \
-	led \
-	bootloader_impl \
-	crc \
-
-OBJECTS_main_test := $(OBJECTS_main_common) \
-	robot_test \
-
-OBJECTS_main_comp := $(OBJECTS_main_common) \
-	robot_comp \
-
-OUTPUTS := main_test main_comp bootloader
-
-# The sort is to remove duplicates because Make warns about those.
-OBJECTS := $(sort $(foreach output,$(OUTPUTS),$(OBJECTS_$(output))))
-
-OUTPUTS_elf := $(OUTPUTS:%=$(OBJDIR)%.elf)
-OUTPUTS_hex := $(OUTPUTS:%=$(OBJDIR)%.hex)
-
-.PHONY: all
-all: $(OUTPUTS_hex)
-
--include $(OBJECTS:%=$(OBJDIR)%.d)
-
-.SECONDEXPANSION:
-PERCENT := %
-
-# "$(OBJDIR)%.elf: $(OBJECTS_%:%=$(OBJDIR)%.o)" with the % signs meaning the
-# right thing in the right places.
-$(OUTPUTS_elf): $(OBJDIR)%.elf: $$(OBJECTS_$$*:$$(PERCENT)=$(OBJDIR)$$(PERCENT).o)
-$(OUTPUTS_elf): $(OBJDIR)%.elf:	gcc_arm.ld %.ld $(OBJDIR)STM32F2XX_startup.o
-	$(CC) $(CPPFLAGS) -T $*.ld $(LDFLAGS) -o $@ \
-		$(OBJDIR)STM32F2XX_startup.o \
-		$(OBJECTS_$*:%=$(OBJDIR)%.o) \
-		-Wa,-Map -Wa,$(OBJDIR)$*.map
-
-$(OBJECTS:%=$(OBJDIR)%.o): $(OBJDIR)%.o: %.c
-	$(CC) $(CPPFLAGS) $(CFLAGS) -MD -MP -MT '$@ $*.s' -c -o $@ $<
-$(OBJDIR)%.o: %.S
-	$(CC) $(CPPFLAGS) $(ASFLAGS) -MD -MP -MT '$@ $*.s' -c -o $@ $<
-
-# So that you can see the assembly for an individual file with any comments etc.
-$(OBJECTS:%=%.s): %.s: %.c
-	$(CC) $(CPPFLAGS) $(CFLAGS) -S -o $@ $<
-%.s: %.S
-	$(CC) $(CPPFLAGS) $(ASFLAGS) -S -o $@ $< > $@
-
-# So that you can see the assembly of the whole .elf file.
-$(OUTPUTS:%=elf_%.s): elf_%.s: $(OBJDIR)%.elf
-	$(OBJDUMP) -d -S $< > $@
-
-$(OUTPUTS_hex): $(OBJDIR)%.hex: $(OBJDIR)%.elf
-	$(OBJCOPY) -O ihex $< $@
-
-clean:
-	rm -rf $(OBJDIR)
diff --git a/bbb_cape/src/cape/README b/bbb_cape/src/cape/README
deleted file mode 100644
index ddda84c..0000000
--- a/bbb_cape/src/cape/README
+++ /dev/null
@@ -1,16 +0,0 @@
-[files]
-  Low-level hardware interface files: These are files copied (and tweaked) from
-      other places that deal with the low-level hardware stuff.
-	CMSIS/STM32F2XX.h: This has the declarations for all of the peripherial
-	    registers and other stuff specific to this MCU. It was downloaded from
-		the Rowley Associates STM32 BSP.
-    CMSIS/core_cm3.h: This has the declarations for the generic Cortex-M3
-	    registers. It is a generic file that seems to be dowloadable from lots
-		of places (with slight differences between each, of course). STM32F2XX.h
-		#includes it.
-	STM32FXX_startup.S: This defines the exception vector table and handles
-	    copying data into RAM etc before calling main.
-    *.ld: These are linker scripts. They defines where in memory everything
-	    actually goes and give various locations names so that the startup
-		code (described above) can find them and put the data where it
-		belongs.
diff --git a/bbb_cape/src/cape/STM32F2XX_startup.S b/bbb_cape/src/cape/STM32F2XX_startup.S
deleted file mode 100644
index ace098a..0000000
--- a/bbb_cape/src/cape/STM32F2XX_startup.S
+++ /dev/null
@@ -1,233 +0,0 @@
-/* File: startup_ARMCM3.S
- * Purpose: startup file for Cortex-M3 devices. Should use with
- *   GCC for ARM Embedded Processors
- * Version: V1.4
- * Date: 20 Dezember 2012
- *
- */
-/* Copyright (c) 2011 - 2012 ARM LIMITED
-
-   All rights reserved.
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-   - Redistributions of source code must retain the above copyright
-     notice, this list of conditions and the following disclaimer.
-   - Redistributions in binary form must reproduce the above copyright
-     notice, this list of conditions and the following disclaimer in the
-     documentation and/or other materials provided with the distribution.
-   - Neither the name of ARM nor the names of its contributors may be used
-     to endorse or promote products derived from this software without
-     specific prior written permission.
-   *
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-   ---------------------------------------------------------------------------*/
-
-
-.syntax unified
-.arch armv7-m
-.code 16  
-
-.section .stack
-  .align 3
-
-  .equ  Stack_Size, 0x00000400
-
- .globl  __StackLimit
- __StackLimit:
-  .space  Stack_Size
-  .size __StackLimit, . - __StackLimit
-
- .globl  __StackTop
- __StackTop:
-  .size __StackTop, . - __StackTop
-
-.section .heap
-  .align 3
-
- .globl  __HeapBase
- __HeapBase:
-  .equ  Heap_Size, 0x00000C00
-  .if  Heap_Size
-    .space  Heap_Size
-  .endif
-  .size __HeapBase, . - __HeapBase
-
- .globl  __HeapLimit
- __HeapLimit:
-  .size __HeapLimit, . - __HeapLimit
-
-.macro ISR_HANDLER name=
-  .section .vectors, "a"
-    .word \name
-  .section .init, "ax"
-   .thumb_func
-   .weak \name
-   \name:
-    1: b 1b /* endless loop */
-.endm
-
-.macro ISR_RESERVED
-  .section .vectors, "a"
-    .word 0
-.endm
-
-.section .vectors, "a"
- .global _vectors
- _vectors:
-  .long  __StackTop
-  .long  Reset_Handler
-  ISR_HANDLER NMI_Handler
-  ISR_HANDLER HardFault_Handler
-  ISR_HANDLER MemManage_Handler 
-  ISR_HANDLER BusFault_Handler
-  ISR_HANDLER UsageFault_Handler
-  ISR_RESERVED
-  ISR_RESERVED
-  ISR_RESERVED
-  ISR_RESERVED
-  ISR_HANDLER SVC_Handler
-  ISR_HANDLER DebugMon_Handler
-  ISR_RESERVED
-  ISR_HANDLER PendSV_Handler
-  ISR_HANDLER SysTick_Handler 
-
-  /* interrupts */
-  ISR_HANDLER WWDG_IRQHandler
-  ISR_HANDLER PVD_IRQHandler
-  ISR_HANDLER TAMP_STAMP_IRQHandler
-  ISR_HANDLER RTC_WKUP_IRQHandler
-  ISR_HANDLER FLASH_IRQHandler
-  ISR_HANDLER RCC_IRQHandler
-  ISR_HANDLER EXTI0_IRQHandler
-  ISR_HANDLER EXTI1_IRQHandler
-  ISR_HANDLER EXTI2_IRQHandler
-  ISR_HANDLER EXTI3_IRQHandler
-  ISR_HANDLER EXTI4_IRQHandler
-  ISR_HANDLER DMA1_Stream0_IRQHandler
-  ISR_HANDLER DMA1_Stream1_IRQHandler
-  ISR_HANDLER DMA1_Stream2_IRQHandler
-  ISR_HANDLER DMA1_Stream3_IRQHandler
-  ISR_HANDLER DMA1_Stream4_IRQHandler
-  ISR_HANDLER DMA1_Stream5_IRQHandler
-  ISR_HANDLER DMA1_Stream6_IRQHandler
-  ISR_HANDLER ADC_IRQHandler
-  ISR_HANDLER CAN1_TX_IRQHandler
-  ISR_HANDLER CAN1_RX0_IRQHandler
-  ISR_HANDLER CAN1_RX1_IRQHandler
-  ISR_HANDLER CAN1_SCE_IRQHandler
-  ISR_HANDLER EXTI9_5_IRQHandler
-  ISR_HANDLER TIM1_BRK_TIM9_IRQHandler
-  ISR_HANDLER TIM1_UP_TIM10_IRQHandler
-  ISR_HANDLER TIM1_TRG_COM_TIM11_IRQHandler
-  ISR_HANDLER TIM1_CC_IRQHandler
-  ISR_HANDLER TIM2_IRQHandler
-  ISR_HANDLER TIM3_IRQHandler
-  ISR_HANDLER TIM4_IRQHandler
-  ISR_HANDLER I2C1_EV_IRQHandler
-  ISR_HANDLER I2C1_ER_IRQHandler
-  ISR_HANDLER I2C2_EV_IRQHandler
-  ISR_HANDLER I2C2_ER_IRQHandler
-  ISR_HANDLER SPI1_IRQHandler
-  ISR_HANDLER SPI2_IRQHandler
-  ISR_HANDLER USART1_IRQHandler
-  ISR_HANDLER USART2_IRQHandler
-  ISR_HANDLER USART3_IRQHandler
-  ISR_HANDLER EXTI15_10_IRQHandler
-  ISR_HANDLER RTC_Alarm_IRQHandler
-  ISR_HANDLER OTG_FS_WKUP_IRQHandler
-  ISR_HANDLER TIM8_BRK_TIM12_IRQHandler
-  ISR_HANDLER TIM8_UP_TIM13_IRQHandler
-  ISR_HANDLER TIM8_TRG_COM_TIM14_IRQHandler
-  ISR_HANDLER TIM8_CC_IRQHandler
-  ISR_HANDLER DMA1_Stream7_IRQHandler
-  ISR_HANDLER FSMC_IRQHandler
-  ISR_HANDLER SDIO_IRQHandler
-  ISR_HANDLER TIM5_IRQHandler
-  ISR_HANDLER SPI3_IRQHandler
-  ISR_HANDLER UART4_IRQHandler
-  ISR_HANDLER UART5_IRQHandler
-  ISR_HANDLER TIM6_DAC_IRQHandler
-  ISR_HANDLER TIM7_IRQHandler
-  ISR_HANDLER DMA2_Stream0_IRQHandler
-  ISR_HANDLER DMA2_Stream1_IRQHandler
-  ISR_HANDLER DMA2_Stream2_IRQHandler
-  ISR_HANDLER DMA2_Stream3_IRQHandler
-  ISR_HANDLER DMA2_Stream4_IRQHandler
-  ISR_HANDLER ETH_IRQHandler
-  ISR_HANDLER ETH_WKUP_IRQHandler
-  ISR_HANDLER CAN2_TX_IRQHandler
-  ISR_HANDLER CAN2_RX0_IRQHandler
-  ISR_HANDLER CAN2_RX1_IRQHandler
-  ISR_HANDLER CAN2_SCE_IRQHandler
-  ISR_HANDLER OTG_FS_IRQHandler
-  ISR_HANDLER DMA2_Stream5_IRQHandler
-  ISR_HANDLER DMA2_Stream6_IRQHandler
-  ISR_HANDLER DMA2_Stream7_IRQHandler
-  ISR_HANDLER USART6_IRQHandler
-  ISR_HANDLER I2C3_EV_IRQHandler
-  ISR_HANDLER I2C3_ER_IRQHandler
-  ISR_HANDLER OTG_HS_EP1_OUT_IRQHandler
-  ISR_HANDLER OTG_HS_EP1_IN_IRQHandler
-  ISR_HANDLER OTG_HS_WKUP_IRQHandler
-  ISR_HANDLER OTG_HS_IRQHandler
-  ISR_HANDLER DCMI_IRQHandler
-  ISR_HANDLER CRYP_IRQHandler
-  ISR_HANDLER HASH_RNG_IRQHandler
-
-.section .vectors, "a"
- _vectors_end:
-
-.text
- .thumb_func
- .align 2
- .globl  Reset_Handler
- .type  Reset_Handler, %function
- Reset_Handler:
-
-/*     Loop to copy data from read only memory to RAM. The ranges
- *      of copy from/to are specified by following symbols evaluated in
- *      linker script.
- *      __etext: End of code section, i.e., begin of data sections to copy from.
- *      __data_start__/__data_end__: RAM address range that data should be
- *      copied to. Both must be aligned to 4 bytes boundary.  */
-  ldr  r1, =__etext
-  ldr  r2, =__data_start__
-  ldr  r3, =__data_end__
-  subs  r3, r2
-  ble  .LC1
- .LC0:
-  subs  r3, #4
-  ldr  r0, [r1, r3]
-  str  r0, [r2, r3]
-  bgt  .LC0
- .LC1:
-
-/*     Loop to zero out BSS section, which uses following symbols
- *     in linker script:
- *      __bss_start__: start of BSS section. Must align to 4
- *      __bss_end__: end of BSS section. Must align to 4
- */
-  ldr r1, =__bss_start__
-  ldr r2, =__bss_end__
-  movs  r0, 0
- .LC2:
-  cmp   r1, r2
-  itt  lt
-  strlt   r0, [r1], #4
-  blt  .LC2
-
-  bl  _start
-  1: b 1b /* endless loop if it ever returns */
-
-  .pool
-  .size Reset_Handler, . - Reset_Handler
diff --git a/bbb_cape/src/cape/analog.c b/bbb_cape/src/cape/analog.c
deleted file mode 100644
index 14c176c..0000000
--- a/bbb_cape/src/cape/analog.c
+++ /dev/null
@@ -1,126 +0,0 @@
-#include "cape/analog.h"
-
-#include <string.h>
-
-#include "cape/util.h"
-#include "cape/led.h"
-
-#define SPI SPI2
-#define SPI_IRQHandler SPI2_IRQHandler
-#define SPI_IRQn SPI2_IRQn
-#define RCC_APB1ENR_SPIEN RCC_APB1ENR_SPI2EN
-#define TIM TIM14
-#define TIM_IRQHandler TIM8_TRG_COM_TIM14_IRQHandler
-#define TIM_IRQn TIM8_TRG_COM_TIM14_IRQn
-#define RCC_APB1ENR_TIMEN RCC_APB1ENR_TIM14EN
-#define CSEL_GPIO GPIOB
-#define CSEL_NUM 12
-
-#define NUM_CHANNELS 8
-
-// This file handles reading values from the MCP3008-I/SL ADC.
-
-uint16_t analog_readings[NUM_CHANNELS] __attribute__((aligned(8)));
-static volatile int current_channel;
-static volatile int partial_reading;
-static volatile int frame;
-static volatile int analog_errors;
-
-void SPI_IRQHandler(void) {
-  uint32_t status = SPI->SR;
-  if (status & SPI_SR_RXNE) {
-    uint16_t value = SPI->DR;
-    if (frame == 0) {
-      frame = 1;
-      partial_reading = value;
-    } else {
-      frame = 2;
-      // Masking off the high bits is important because there's nothing driving
-      // the MISO line during the time the MCU receives them.
-      analog_readings[current_channel] =
-          (partial_reading << 16 | value) & 0x3FF;
-      for (int i = 0; i < 100; ++i) gpio_off(CSEL_GPIO, CSEL_NUM);
-      gpio_on(CSEL_GPIO, CSEL_NUM);
-
-      current_channel = (current_channel + 1) % NUM_CHANNELS;
-    }
-  }
-}
-
-void TIM_IRQHandler(void) {
-  TIM->SR = ~TIM_SR_UIF;
-
-  if (frame != 2) {
-    // We're not done with the previous reading yet, so we're going to reset and
-    // try again.
-    // 270ns*120MHz = 32.4
-    for (int i = 0; i < 33; ++i) gpio_on(CSEL_GPIO, CSEL_NUM);
-    ++analog_errors;
-  }
-
-  // This needs to wait 13 cycles between enabling the CSEL pin and starting to
-  // send data.
-  // (100ns+8ns)*120MHz = 12.96
-
-  // Clear the CSEL pin to select it.
-  for (int i = 0; i < 9; ++i) gpio_off(CSEL_GPIO, CSEL_NUM);
-  partial_reading = 0;
-  frame = 0;
-  SPI->DR = 1;  // start bit
-  uint16_t data = (1 << 15) /* not differential */ |
-      (current_channel << 12);
-  while (!(SPI->SR & SPI_SR_TXE));
-  SPI->DR = data;
-}
-
-void analog_init(void) {
-  memset(analog_readings, 0xFF, sizeof(analog_readings));
-
-  RCC->APB1ENR |= RCC_APB1ENR_SPIEN;
-  RCC->APB1ENR |= RCC_APB1ENR_TIMEN;
-
-  gpio_setup_out(CSEL_GPIO, CSEL_NUM, 3);
-  gpio_on(CSEL_GPIO, CSEL_NUM);  // deselect it
-
-  gpio_setup_alt(GPIOB, 13, 5);  // SCK
-  gpio_setup_alt(GPIOB, 14, 5);  // MISO
-  gpio_setup_alt(GPIOB, 15, 5);  // MOSI
-
-  NVIC_SetPriority(SPI_IRQn, 6);
-  NVIC_EnableIRQ(SPI_IRQn);
-  NVIC_SetPriority(TIM_IRQn, 6);
-  NVIC_EnableIRQ(TIM_IRQn);
-
-  // We set it up to trigger at 4.44KHz (each sensor at just over 500Hz).
-  // 1/(1.875MHz)*32 = 17067ns (58.6Khz), and we don't want to be close (other
-  // interrupts do get in the way, and there's no reason to be).
-  TIM->CR1 = 0;
-  TIM->DIER = TIM_DIER_UIE;
-  // Make each tick take 45000ns.
-  TIM->PSC = (60 * 45000 / 1000) - 1;
-  // Only count to 5 before triggering the interrupt and wrapping around.
-  TIM->ARR = 5;
-
-  SPI->CR1 = 0;  // make sure it's disabled
-  SPI->CR1 =
-      SPI_CR1_DFF /* 16 bit frame */ |
-      SPI_CR1_SSM | SPI_CR1_SSI | /* don't watch for other masters */
-      3 << 3 /* 30MHz/16 = 1.875MHz */ |
-      SPI_CR1_MSTR /* master mode */;
-  SPI->CR2 = SPI_CR2_RXNEIE;
-  SPI->CR1 |= SPI_CR1_SPE;  // enable it
-
-  current_channel = 0;
-  analog_errors = 0;
-
-  TIM->EGR = TIM_EGR_UG;
-  TIM->CR1 |= TIM_CR1_CEN;
-}
-
-int analog_get_errors(void) {
-  NVIC_DisableIRQ(TIM_IRQn);
-  int r = analog_errors;
-  analog_errors = 0;
-  NVIC_EnableIRQ(TIM_IRQn);
-  return r;
-}
diff --git a/bbb_cape/src/cape/analog.h b/bbb_cape/src/cape/analog.h
deleted file mode 100644
index cd9ce82..0000000
--- a/bbb_cape/src/cape/analog.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef CAPE_ANALOG_H_
-#define CAPE_ANALOG_H_
-
-#include <stdint.h>
-
-#include <STM32F2XX.h>
-
-// Starts up constantly reading analog values and storing them in an array to
-// be retrieved by analog_get.
-void analog_init(void);
-
-static inline uint16_t analog_get(int num) {
-  if (num < 0 || num > 7) return 0xFFFF;
-
-  extern uint16_t analog_readings[8] __attribute__((aligned(8)));
-  return analog_readings[num];
-}
-
-// Returns the number of errors since last called.
-// Must be called from something with priority equal to or lower than our
-// timer's IRQ.
-int analog_get_errors(void);
-
-#endif  // CAPE_ANALOG_H_
diff --git a/bbb_cape/src/cape/bootloader.c b/bbb_cape/src/cape/bootloader.c
deleted file mode 100644
index 5194832..0000000
--- a/bbb_cape/src/cape/bootloader.c
+++ /dev/null
@@ -1,81 +0,0 @@
-#include <stdint.h>
-
-#include <STM32F2XX.h>
-
-#include "cape/bootloader_handoff.h"
-#include "cape/led.h"
-#include "cape/util.h"
-
-// Actually runs the bootloader code.
-// Implemented in bootloader_impl.c.
-void bootloader_start(void) __attribute__((noreturn));
-
-// Sets everything up and then jumps to the main code.
-static void jump_to_main(void) __attribute__((noreturn));
-static void jump_to_main(void) {
-  __asm__ __volatile__(
-      "mov sp, %[stack]\n\t"
-      "bx %[reset]" : :
-      [stack]"r"(RAM_START + RAM_SIZE), [reset]"r"(MAIN_FLASH_START | 1)
-      : "memory");
-  __builtin_unreachable();
-}
-
-static void setup_main_clock(void) {
-  // We set up a couple of registers here separately from the actual register to
-  // avoid having to think about what happens when the value is in some
-  // intermediate state.
-
-  RCC->CR |= RCC_CR_HSEON;  // get the HSE oscillator going
-
-  FLASH->ACR = FLASH_ACR_PRFTEN | FLASH_ACR_ICEN | FLASH_ACR_DCEN |
-               FLASH_ACR_LATENCY_3WS;
-
-  uint32_t rcc_pllcfgr = 0;
-  rcc_pllcfgr |= RCC_PLLCFGR_PLLSRC;  // use the external oscillator
-  // 8MHz * 120 / 4 / 2 = 120MHz
-  rcc_pllcfgr |= 120 << 6;  // multiplier
-  rcc_pllcfgr |= 4;  // divider
-  rcc_pllcfgr |= 5 << 24;  // other stuff divider = 5, just in case
-  RCC->PLLCFGR = rcc_pllcfgr;
-
-  uint32_t rcc_cfgr = 0;
-  rcc_cfgr |= 4 << 13;  // APB2 divider = 2
-  rcc_cfgr |= 5 << 10;  // APB1 divider = 4
-  rcc_cfgr |= 2;  // use the PLL
-
-  // Wait for the HSE oscillator to be stable.
-  while (!(RCC->CR & RCC_CR_HSERDY)) {}
-
-  RCC->CR |= RCC_CR_PLLON;
-  // Wait for the main PLL to be stable.
-  while (!(RCC->CR & RCC_CR_PLLRDY)) {}
-  // Wait until the flash is using 3 wait states.
-  while ((FLASH->ACR & 7) != 3) {}
-  RCC->CFGR = rcc_cfgr;
-  // Wait until we are using the PLL as our main clock source.
-  while ((RCC->CFGR & (3 << 2)) != (2 << 2)) {}
-}
-
-void _start(void) {
-  // Enable the GPIO pin clocks.
-  // We don't have anything attached to the 1 port D pin, so don't bother
-  // enabling it.
-  RCC->AHB1ENR |=
-      RCC_AHB1ENR_GPIOAEN | RCC_AHB1ENR_GPIOBEN | RCC_AHB1ENR_GPIOCEN;
-  led_init();
-  led_set(LED_HB, 1);
-  gpio_set_pupd(GPIOC, 2, 2);
-
-  setup_main_clock();
-
-  RCC->APB2ENR |= RCC_APB2ENR_SYSCFGEN;
-  SYSCFG->CMPCR |= SYSCFG_CMPCR_CMP_PD;  // enable IO compensation cell
-  while (!(SYSCFG->CMPCR & SYSCFG_CMPCR_READY)) {}  // wait for it to be ready
-
-  if (GPIOC->IDR & (1 << 2)) {
-    jump_to_main();
-  } else {
-    bootloader_start();
-  }
-}
diff --git a/bbb_cape/src/cape/bootloader.ld b/bbb_cape/src/cape/bootloader.ld
deleted file mode 100644
index 6751529..0000000
--- a/bbb_cape/src/cape/bootloader.ld
+++ /dev/null
@@ -1,13 +0,0 @@
-MEMORY
-{
-  FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 16k
-  RAM (rwx)  : ORIGIN = 0x20000000, LENGTH = 128k
-}
-
-SECTIONS
-{
-	.text :
-	{
-		KEEP(*(.vectors))
-	} > FLASH
-}
diff --git a/bbb_cape/src/cape/bootloader_handoff.h b/bbb_cape/src/cape/bootloader_handoff.h
deleted file mode 100644
index 3804d97..0000000
--- a/bbb_cape/src/cape/bootloader_handoff.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef CAPE_BOOTLOADER_HANDOFF_H_
-#define CAPE_BOOTLOADER_HANDOFF_H_
-
-// This file has constants and functions for dealing with the handoff between
-// the bootloader and the main code.
-
-// How much flash the bootloader has (starting at address 0).
-#define BOOTLOADER_FLASH_SIZE 0x4000
-// Where the main code's flash starts.
-#define MAIN_FLASH_START BOOTLOADER_FLASH_SIZE
-
-#define MAIN_FLASH_START_SECTOR 1
-#define MAIN_FLASH_END_SECTOR 11
-#define MAIN_FLASH_END 0x100000
-
-#define RAM_START 0x20000000
-#define RAM_SIZE 0x20000
-
-#endif  // CAPE_BOOTLOADER_HANDOFF_H_
diff --git a/bbb_cape/src/cape/bootloader_impl.c b/bbb_cape/src/cape/bootloader_impl.c
deleted file mode 100644
index 2cd287d..0000000
--- a/bbb_cape/src/cape/bootloader_impl.c
+++ /dev/null
@@ -1,109 +0,0 @@
-#include "cape/bootloader_handoff.h"
-
-#include <string.h>
-
-#include "cape/uart_byte.h"
-#include "cape/uart_common.h"
-#include "cape/crc.h"
-#include "cape/util.h"
-#include "cape/led.h"
-
-// The protocol is pretty simple. Basically, when the bootloader is started, it
-// expects repeated "packets" of data to write. It starts at MAIN_FLASH_START,
-// erases from MAIN_FLASH_START_SECTOR to MAIN_FLASH_END_SECTOR, and keeps
-// writing until MAIN_FLASH_END (if it gets data).
-//
-// The bootloader sends a NACK when it is first ready to receive bytes. It then
-// expects DATA_BYTES-sized packets (+ the checksum calculated with the standard
-// CRC algorithm). When it successfully receives one and writes it out, it sends
-// ACK. If it has any errors, it waits until there's a 1-second gap (or it
-// receives all the bytes and sees a checksum error) and then sends a NACK.
-
-#define DATA_BYTES 256
-
-#define ACK 0x79
-#define NACK 0x1F
-
-static void process_buffer(uint32_t *buffer) {
-  static uint32_t *out_pointer = (uint32_t *)MAIN_FLASH_START;
-  if ((out_pointer + DATA_BYTES / 4) >= (uint32_t *)MAIN_FLASH_END) return;
-
-  while (FLASH->SR & FLASH_SR_BSY) {}
-  FLASH->CR |= FLASH_CR_PG;
-  for (int i = 0; i < (DATA_BYTES / 4); ++i) {
-    *(out_pointer++) = buffer[i];
-  }
-  while (FLASH->SR & FLASH_SR_BSY) {}
-  FLASH->CR &= ~FLASH_CR_PG;
-}
-
-__attribute__((noreturn)) void bootloader_start(void) {
-  led_set(LED_ERR, 1);
-  led_set(LED_DB, 1);
-  led_set(LED_Z, 1);
-  led_set(LED_HB, 0);
-
-  crc_init();
-
-  // Unlock the flash so we can program it.
-  FLASH->KEYR = 0x45670123;
-  FLASH->KEYR = 0xCDEF89AB;
-  while (FLASH->CR & FLASH_CR_LOCK) {}
-
-  FLASH->CR =
-      (FLASH->CR & ~(FLASH_CR_PSIZE_0 | FLASH_CR_PSIZE_1)) | FLASH_CR_PSIZE_1;
-
-  FLASH->CR |= FLASH_CR_SER;
-  for (int i = MAIN_FLASH_START_SECTOR; i <= MAIN_FLASH_END_SECTOR; ++i) {
-    while (FLASH->SR & FLASH_SR_BSY) {}
-    FLASH->CR = (FLASH->CR & ~(FLASH_CR_SNB_0 | FLASH_CR_SNB_1 |
-                               FLASH_CR_SNB_2 | FLASH_CR_SNB_3)) |
-                i << 3;
-    FLASH->CR |= FLASH_CR_STRT;
-    while (FLASH->CR & FLASH_SR_BSY) {}
-  }
-  FLASH->CR &= ~FLASH_CR_SER;
-
-  uart_common_configure(115200);
-  uart_byte_configure();
-
-  uint8_t buffer[DATA_BYTES + 4] __attribute__((aligned(4)));
-  // Whether we've already encountered an error in this block or not.
-  int error = 0;
-  int bytes_received = 0;
-
-  uart_byte_send(NACK);
-
-  while (1) {
-    // Receive with a 1 second timeout.
-    int received = uart_byte_receive(60000, 1000 - 1);
-    if (received < 0) {
-      if (received == -1) {
-        uart_byte_send(NACK);
-        error = 0;
-        bytes_received = 0;
-      } else {
-        error = 1;
-      }
-    } else {  // successfully received a byte
-      led_set(LED_HB, bytes_received & 1);
-      if (error == 0) {
-        buffer[bytes_received++] = (uint8_t)received;
-        if (bytes_received == sizeof(buffer)) {
-          bytes_received = 0;
-          uint32_t checksum;
-          memcpy(&checksum, &buffer[DATA_BYTES], 4);
-          uint32_t *buffer32;
-          uint8_t *buffer8 = buffer;
-          memcpy(&buffer32, &buffer8, 4);
-          if (crc_calculate(buffer32, DATA_BYTES / 4) != checksum) {
-            uart_byte_send(NACK);
-          } else {
-            process_buffer(buffer32);
-            uart_byte_send(ACK);
-          }
-        }
-      }
-    }
-  }
-}
diff --git a/bbb_cape/src/cape/cape.gyp b/bbb_cape/src/cape/cape.gyp
deleted file mode 100644
index 91ec298..0000000
--- a/bbb_cape/src/cape/cape.gyp
+++ /dev/null
@@ -1,20 +0,0 @@
-{
-  'target_defaults': {
-    'include_dirs': [
-      '..',
-    ],
-  },
-  'targets': [
-    {
-      'target_name': 'cows',
-      'type': 'static_library',
-      'sources': [
-        'cows.c',
-      ],
-    },
-    {
-      'target_name': 'data_struct',
-      'type': 'static_library',
-    },
-  ],
-}
diff --git a/bbb_cape/src/cape/cows.c b/bbb_cape/src/cape/cows.c
deleted file mode 100644
index bcf6308..0000000
--- a/bbb_cape/src/cape/cows.c
+++ /dev/null
@@ -1,77 +0,0 @@
-#include "cape/cows.h"
-
-#include <limits.h>
-
-#if __STDC_HOSTED__
-#include <assert.h>
-#else
-#define assert(...)
-#endif
-
-// This implementation is based on
-// <http://www.jacquesf.com/2011/03/consistent-overhead-byte-stuffing/>.
-
-uint32_t cows_stuff(const void *__restrict__ source_in, size_t source_length,
-                    void *__restrict__ destination_in) {
-  assert((source_length % 4) == 0);
-  const uint32_t *restrict source = (const uint32_t *)source_in;
-  uint32_t *restrict destination = (uint32_t *)destination_in;
-  size_t source_index = 0;
-  size_t destination_index = 1;
-  size_t code_index = 0;
-  uint32_t code = 1;
-
-  while (source_index < source_length / 4) {
-    if (source[source_index] == 0) {
-      destination[code_index] = code;
-      code = 1;
-      code_index = destination_index++;
-      ++source_index;
-    } else {
-      destination[destination_index++] = source[source_index++];
-      ++code;
-      if (code == UINT32_MAX) {
-        destination[code_index] = code;
-        code = 1;
-        code_index = destination_index++;
-      }
-    }
-  }
-  destination[code_index] = code;
-  return destination_index;
-}
-
-uint32_t cows_unstuff(const uint32_t *__restrict__ source, size_t source_length,
-                      uint32_t *__restrict__ destination,
-                      size_t destination_length) {
-  assert((source_length % 4) == 0);
-  assert((destination_length % 4) == 0);
-  size_t source_index = 0;
-  size_t destination_index = 0;
-  uint32_t code;
-
-  while (1) {
-    code = source[source_index];
-    if (source_index + code > source_length / 4 && code != 1) {
-      return 0;
-    }
-
-    ++source_index;
-
-    for (uint32_t i = 1; i < code; ++i) {
-      if (destination_index >= destination_length / 4) {
-        return 0;
-      }
-      destination[destination_index++] = source[source_index++];
-    }
-    if (source_index == source_length / 4) {
-      return destination_index;
-    }
-    if (code != UINT32_MAX) {
-      if (destination_index >= destination_length / 4) {
-        return 0;
-      }
-      destination[destination_index++] = 0;
-    }
-  }
-}
diff --git a/bbb_cape/src/cape/cows.h b/bbb_cape/src/cape/cows.h
deleted file mode 100644
index 9c47827..0000000
--- a/bbb_cape/src/cape/cows.h
+++ /dev/null
@@ -1,42 +0,0 @@
-#ifndef CAPE_COWS_H_
-#define CAPE_COWS_H_
-
-#include <sys/types.h>
-#include <stdint.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-// This file implements something very similar to Consistent Overhead Byte
-// Stuffing <http://en.wikipedia.org/wiki/Consistent_Overhead_Byte_Stuffing>. It
-// uses that algorithm except with 4-byte chunks instead of individual bytes
-// because that's more efficient on 32-bit processors. I'm calling it Consistent
-// Overhead Word Stuffing.
-
-// source_length must be a multiple of 4. That many bytes of source
-// will be read.
-// destination must have at least
-// ((source_length / (2^32 - 1)) rounded up) * 4
-// more bytes than source_length available.
-// source and destination both have to be 4-byte aligned.
-// Returns the total number of words written (not necessarily the maximum given
-// in the above description of destination).
-uint32_t cows_stuff(const void *__restrict__ source, size_t source_length,
-                    void *__restrict__ destination);
-
-// source_length must be a multiple of 4. That many bytes of source
-// will be read.
-// source and destination both have to be 4-byte aligned.
-// Returns the total number of words written to destination or 0 for error.
-// Possible errors are trying to unstuff more data than is available in source
-// or trying to write more than destination_length bytes out.
-uint32_t cows_unstuff(const uint32_t *__restrict__ source, size_t source_length,
-                      uint32_t *__restrict__ destination,
-                      size_t destination_length);
-
-#ifdef __cplusplus
-} // extern C
-#endif
-
-#endif  // CAPE_COWS_H_
diff --git a/bbb_cape/src/cape/crc.c b/bbb_cape/src/cape/crc.c
deleted file mode 100644
index 8182610..0000000
--- a/bbb_cape/src/cape/crc.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "cape/crc.h"
-
-#include <STM32F2XX.h>
-
-void crc_init(void) {
-  RCC->AHB1ENR |= RCC_AHB1ENR_CRCEN;
-}
-
-uint32_t crc_calculate(uint32_t *data, size_t words) {
-  CRC->CR = 1;  // reset it
-  uint32_t *end = data + words;
-  for (; data < end; ++data) {
-    CRC->DR = *data;
-  }
-  return CRC->DR;
-}
diff --git a/bbb_cape/src/cape/crc.h b/bbb_cape/src/cape/crc.h
deleted file mode 100644
index 2aeed82..0000000
--- a/bbb_cape/src/cape/crc.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef CAPE_CRC_H_
-#define CAPE_CRC_H_
-
-#include <stdint.h>
-#include <sys/types.h>
-
-void crc_init(void);
-
-// The second argument is the number of words to checksum, NOT the number of
-// bytes.
-uint32_t crc_calculate(uint32_t *restrict data, size_t words);
-
-#endif  // CAPE_CRC_H_
diff --git a/bbb_cape/src/cape/data_struct.h b/bbb_cape/src/cape/data_struct.h
deleted file mode 100644
index 13e8e11..0000000
--- a/bbb_cape/src/cape/data_struct.h
+++ /dev/null
@@ -1,136 +0,0 @@
-// This isn't really a header file. It's designed to be #included directly into
-// other code (possibly in a namespace or whatever), so it doesn't have include
-// guards.
-// This means that it can not #include anything else because it (sometimes) gets
-// #included inside a namespace.
-// <stdint.h> must be #included by the containing file.
-// In the cape code, bbb_cape/src/cape/fill_packet.h #includes this file.
-// In the prime code, bbb_cape/src/bbb/data_struct.h #includes this file.
-
-#pragma pack(push, 1)
-typedef struct {
-  uint8_t posedges, negedges;
-} HallEffectEdges;
-typedef struct {
-  int32_t position, posedge_position, negedge_position;
-
-  HallEffectEdges front, calibration, back;
-
-  struct {
-    uint16_t front : 1;
-    uint16_t calibration : 1;
-    uint16_t back : 1;
-  } bools;
-} SingleClawPosition;
-
-// Be careful with declaration order in here. ARM doesn't like unaligned
-// accesses and this structure is packed, so messing the order up will cause the
-// compiler to generate very inefficient code to access fields.
-struct DATA_STRUCT_NAME {
-  int64_t gyro_angle;
-
-  union {
-    struct {
-      // In 10us since the cape last reset.
-      uint64_t timestamp;
-
-      // The CRC32 (same algorithm as the checksum for the packet) of the whole
-      // contents of flash for the main code (aka what's in the .hex file).
-      uint32_t flash_checksum;
-
-      uint8_t analog_errors;
-
-      struct {
-        // If the current gyro_angle has been not updated because of a bad
-        // reading from the sensor.
-        uint8_t old_gyro_reading : 1;
-        // If the gyro is still initializing.
-        // If this is 1, then all of the other gyro data is invalid.
-        uint8_t uninitialized_gyro : 1;
-        // If the gyro is still zeroing.
-        // If this is 1, then all of the other gyro data is invalid.
-        uint8_t zeroing_gyro : 1;
-        // If we're not going to get any more good gyro_angles.
-        uint8_t bad_gyro : 1;
-      };
-    };
-    struct {
-      uint64_t header1, header2;
-    };
-  };
-
-  // We are 64-bit aligned at this point.
-
-  union {
-    // This is for the test code that basically just sends all of the values
-    // over to make sure that everything is working.
-    struct {
-      int32_t encoders[8];
-
-      uint16_t analogs[8];
-
-      uint32_t digitals;
-
-      int32_t posedge_value, negedge_value;
-      uint8_t posedge_count, negedge_count;
-    } test;
-
-    // This is for the comp and practice robots.
-    struct {
-      SingleClawPosition top_claw, bottom_claw;
-
-      int32_t left_drive;
-      int32_t right_drive;
-
-      // The length of the pulse from the ultrasonic sensor in 100KHz ticks.
-      uint32_t ultrasonic_pulse_length;
-
-      // The length of the pulse from the sidecar PWM output in 10MHz ticks.
-      // Goes to non-0 exactly once for each pulse received.
-      uint32_t output_check_pulse_length;
-
-      int32_t shooter_position, pusher_distal_posedge_position,
-          pusher_proximal_posedge_position;
-
-      uint16_t low_left_drive_hall;
-      uint16_t high_left_drive_hall;
-      uint16_t low_right_drive_hall;
-      uint16_t high_right_drive_hall;
-
-      uint16_t battery_voltage_high, battery_voltage_low;
-
-      uint16_t auto_mode_selector;
-
-      HallEffectEdges pusher_distal, pusher_proximal;
-
-      struct {
-        uint8_t plunger : 1;
-        uint8_t pusher_distal : 1;
-        uint8_t pusher_proximal : 1;
-        uint8_t latch : 1;
-      } bools;
-    } main;
-  };
-} __attribute__((aligned(8)));
-#pragma pack(pop)
-
-// The number of bytes that we actually send (so it stays consistent) (including
-// the byte-stuffing overhead and the CRC on the end).
-// This will always be a multiple of 4.
-#define DATA_STRUCT_SEND_SIZE 148
-
-#ifdef __cplusplus
-#define STATIC_ASSERT(cond, msg) static_assert(cond, #msg)
-#endif
-// 4 bytes of 0s at the beginning, 4 bytes of byte-stuffing overhead, and 4
-// bytes of CRC on the end.
-STATIC_ASSERT(
-    (sizeof(struct DATA_STRUCT_NAME) + 8 + 4) <= DATA_STRUCT_SEND_SIZE,
-    The_sensor_data_structure_is_too_big);
-// The byte-stuffing and CRC both work in chunks of 4 bytes, so it has to be a
-// multiple of that in size.
-STATIC_ASSERT((sizeof(struct DATA_STRUCT_NAME) % 4) == 0,
-              The_sensor_data_structure_is_not_a_multiple_of_4_bytes);
-#ifdef __cplusplus
-#undef STATIC_ASSERT
-#endif
diff --git a/bbb_cape/src/cape/digital.c b/bbb_cape/src/cape/digital.c
deleted file mode 100644
index 70fce99..0000000
--- a/bbb_cape/src/cape/digital.c
+++ /dev/null
@@ -1,211 +0,0 @@
-#include "cape/digital.h"
-
-#include <STM32F2XX.h>
-
-#include "cape/util.h"
-
-static void digital_capture_default(void) {}
-
-void digital_capture_0P(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_0N(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_1P(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_1N(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_2P(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_2N(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_3P(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_3N(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_4P(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_4N(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_5P(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_5N(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_6P(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_6N(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_7P(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_7N(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_8P(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_8N(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_9P(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_9N(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_10P(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_10N(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_11P(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_11N(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_12P(void) ALIAS_WEAK(digital_capture_default);
-void digital_capture_12N(void) ALIAS_WEAK(digital_capture_default);
-
-void EXTI2_IRQHandler(void) {
-  uint32_t inputs = GPIOB->IDR;
-  EXTI->PR = EXTI_PR_PR2;
-  if (inputs & (1 << 2)) {
-    digital_capture_11N();
-  } else {
-    digital_capture_11P();
-  }
-}
-
-void EXTI4_IRQHandler(void) {
-  uint32_t inputs = GPIOC->IDR;
-  EXTI->PR = EXTI_PR_PR4;
-  if (inputs & (1 << 4)) {
-    digital_capture_0N();
-  } else {
-    digital_capture_0P();
-  }
-}
-
-static void EXTI5_Handler(uint32_t inputs) {
-  if (inputs & (1 << 5)) {
-    digital_capture_1N();
-  } else {
-    digital_capture_1P();
-  }
-}
-
-static void EXTI7_Handler(uint32_t inputs) {
-  if (inputs & (1 << 7)) {
-    digital_capture_10N();
-  } else {
-    digital_capture_10P();
-  }
-}
-
-static void EXTI8_Handler(uint32_t inputs) {
-  if (inputs & (1 << 8)) {
-    digital_capture_7N();
-  } else {
-    digital_capture_7P();
-  }
-}
-
-static void EXTI9_Handler(uint32_t inputs) {
-  if (inputs & (1 << 9)) {
-    digital_capture_6N();
-  } else {
-    digital_capture_6P();
-  }
-}
-
-void EXTI9_5_IRQHandler(void) {
-  uint32_t a_inputs = GPIOA->IDR, b_inputs = GPIOB->IDR, c_inputs = GPIOC->IDR;
-  uint32_t exti = __clz(EXTI->PR);
-  EXTI->PR = (1 << 31) >> exti;
-  switch (exti) {
-    case 31 - 5:
-      EXTI5_Handler(c_inputs);
-      break;
-    case 31 - 7:
-      EXTI7_Handler(a_inputs);
-      break;
-    case 31 - 8:
-      EXTI8_Handler(b_inputs);
-      break;
-    case 31 - 9:
-      EXTI9_Handler(b_inputs);
-      break;
-  }
-}
-
-static void EXTI10_Handler(uint32_t inputs) {
-  if (inputs & (1 << 10)) {
-    digital_capture_5N();
-  } else {
-    digital_capture_5P();
-  }
-}
-
-static void EXTI11_Handler(uint32_t inputs) {
-  if (inputs & (1 << 11)) {
-    digital_capture_9N();
-  } else {
-    digital_capture_9P();
-  }
-}
-
-static void EXTI12_Handler(uint32_t inputs) {
-  if (inputs & (1 << 12)) {
-    digital_capture_8N();
-  } else {
-    digital_capture_8P();
-  }
-}
-
-static void EXTI13_Handler(uint32_t inputs) {
-  if (inputs & (1 << 13)) {
-    digital_capture_2N();
-  } else {
-    digital_capture_2P();
-  }
-}
-
-static void EXTI14_Handler(uint32_t inputs) {
-  if (inputs & (1 << 14)) {
-    digital_capture_3N();
-  } else {
-    digital_capture_3P();
-  }
-}
-
-static void EXTI15_Handler(uint32_t inputs) {
-  if (inputs & (1 << 15)) {
-    digital_capture_4N();
-  } else {
-    digital_capture_4P();
-  }
-}
-
-void EXTI15_10_IRQHandler(void) {
-  uint32_t a_inputs = GPIOA->IDR, b_inputs = GPIOB->IDR, c_inputs = GPIOC->IDR;
-  uint32_t exti = __clz(EXTI->PR);
-  EXTI->PR = (1 << 31) >> exti;
-  switch (exti) {
-    case 31 - 10:
-      EXTI10_Handler(b_inputs);
-      break;
-    case 31 - 11:
-      EXTI11_Handler(a_inputs);
-      break;
-    case 31 - 12:
-      EXTI12_Handler(a_inputs);
-      break;
-    case 31 - 13:
-      EXTI13_Handler(c_inputs);
-      break;
-    case 31 - 14:
-      EXTI14_Handler(c_inputs);
-      break;
-    case 31 - 15:
-      EXTI15_Handler(c_inputs);
-      break;
-  }
-}
-
-static void init_exti(int exti, int port) {
-  EXTI_set(exti, port);
-  EXTI->IMR |= 1 << exti;
-  EXTI->RTSR |= 1 << exti;
-  EXTI->FTSR |= 1 << exti;
-}
-
-void digital_init(void) {
-  init_exti(2, 1);
-  init_exti(4, 2);
-  init_exti(5, 2);
-  init_exti(7, 0);
-  init_exti(8, 1);
-  init_exti(9, 1);
-  init_exti(10, 1);
-  init_exti(11, 0);
-  init_exti(12, 0);
-  init_exti(13, 2);
-  init_exti(14, 2);
-  init_exti(15, 2);
-
-  NVIC_SetPriority(EXTI2_IRQn, 1);
-  NVIC_EnableIRQ(EXTI2_IRQn);
-  NVIC_SetPriority(EXTI4_IRQn, 1);
-  NVIC_EnableIRQ(EXTI4_IRQn);
-  NVIC_SetPriority(EXTI9_5_IRQn, 1);
-  NVIC_EnableIRQ(EXTI9_5_IRQn);
-  NVIC_SetPriority(EXTI15_10_IRQn, 1);
-  NVIC_EnableIRQ(EXTI15_10_IRQn);
-}
diff --git a/bbb_cape/src/cape/digital.h b/bbb_cape/src/cape/digital.h
deleted file mode 100644
index 6071ca8..0000000
--- a/bbb_cape/src/cape/digital.h
+++ /dev/null
@@ -1,126 +0,0 @@
-#ifndef CAPE_DIGITAL_H_
-#define CAPE_DIGITAL_H_
-
-#include <STM32F2XX.h>
-
-void digital_init(void);
-
-// For all of the digital functions, a high voltage level on the input reads as
-// 1 (and a low to high transition is a positive edge).
-// Encoder inputs 0-7 A and B are mapped to "digital inputs" 12-27 (12 is 0A,
-// 13 is B, 14 is 1A, etc).
-
-static inline int digital_read(int num) {
-  switch (num) {
-    case 0:
-      return !(GPIOC->IDR & (1 << 4));
-    case 1:
-      return !(GPIOC->IDR & (1 << 5));
-    case 2:
-      return !(GPIOC->IDR & (1 << 13));
-    case 3:
-      return !(GPIOC->IDR & (1 << 14));
-    case 4:
-      return !(GPIOC->IDR & (1 << 15));
-    case 5:
-      return !(GPIOB->IDR & (1 << 10));
-    case 6:
-      return !(GPIOB->IDR & (1 << 9));
-    case 7:
-      return !(GPIOB->IDR & (1 << 8));
-    case 8:
-      return !(GPIOA->IDR & (1 << 12));
-    case 9:
-      return !(GPIOA->IDR & (1 << 11));
-    case 10:
-      return !(GPIOA->IDR & (1 << 7));
-    case 11:
-      return !(GPIOB->IDR & (1 << 2));
-    case 12:  // encoder 0
-      return !(GPIOC->IDR & (1 << 6));
-    case 13:
-      return !(GPIOC->IDR & (1 << 7));
-    case 14:  // encoder 1
-      return !(GPIOC->IDR & (1 << 0));
-    case 15:
-      return !(GPIOC->IDR & (1 << 1));
-    case 16:  // encoder 2
-      return !(GPIOA->IDR & (1 << 0));
-    case 17:
-      return !(GPIOA->IDR & (1 << 1));
-    case 18:  // encoder 3
-      return !(GPIOA->IDR & (1 << 2));
-    case 19:
-      return !(GPIOA->IDR & (1 << 3));
-    case 20:  // encoder 4
-      return !(GPIOA->IDR & (1 << 8));
-    case 21:
-      return !(GPIOB->IDR & (1 << 0));
-    case 22:  // encoder 5
-      return !(GPIOA->IDR & (1 << 5));
-    case 23:
-      return !(GPIOB->IDR & (1 << 3));
-    case 24:  // encoder 6
-      return !(GPIOA->IDR & (1 << 6));
-    case 25:
-      return !(GPIOB->IDR & (1 << 5));
-    case 26:  // encoder 7
-      return !(GPIOB->IDR & (1 << 6));
-    case 27:
-      return !(GPIOB->IDR & (1 << 7));
-    default:
-      return 0;
-  }
-}
-
-// A helper function for implementing digital_capture_{disable,enable}.
-static inline enum IRQn digital_capture_getirqn(int num) {
-  switch (num) {
-    case 0:
-      return EXTI4_IRQn;
-    case 1:
-      return EXTI9_5_IRQn;
-    case 2:
-      return EXTI15_10_IRQn;
-    case 3:
-      return EXTI15_10_IRQn;
-    case 4:
-      return EXTI15_10_IRQn;
-    case 5:
-      return EXTI15_10_IRQn;
-    case 6:
-      return EXTI9_5_IRQn;
-    case 7:
-      return EXTI9_5_IRQn;
-    case 8:
-      return EXTI15_10_IRQn;
-    case 9:
-      return EXTI15_10_IRQn;
-    case 10:
-      return EXTI9_5_IRQn;
-    case 11:
-      return EXTI2_IRQn;
-    default:
-      __builtin_trap();
-  }
-}
-
-// May disable other capture inputs too.
-static inline void digital_capture_disable(int num) {
-  NVIC_DisableIRQ(digital_capture_getirqn(num));
-}
-
-// May enable other capture inputs too.
-static inline void digital_capture_enable(int num) {
-  NVIC_EnableIRQ(digital_capture_getirqn(num));
-}
-
-// These are the functions for handling edges on the inputs. They have
-// default (weak symbol) implementations that do nothing.
-//void digital_capture_0P(void);
-//void digital_capture_0N(void);
-//void digital_capture_1P(void);
-//void digital_capture_1N(void);
-//...
-
-#endif  // CAPE_DIGITAL_H_
diff --git a/bbb_cape/src/cape/encoder.c b/bbb_cape/src/cape/encoder.c
deleted file mode 100644
index 881f2a8..0000000
--- a/bbb_cape/src/cape/encoder.c
+++ /dev/null
@@ -1,196 +0,0 @@
-#include "cape/encoder.h"
-
-#include <STM32F2XX.h>
-
-#include "cape/util.h"
-
-// Here is where each encoder is hooked up:
-// 0: PC6,PC7 TIM8(APB2)
-// 1: PC0,PC1 EXTI0,EXTI1
-// 2: PA0,PA1 TIM5(32)
-// 3: PA2,PA3 TIM9.1,EXTI3
-// 4: PA8,PB0 TIM1.1,TIM3.3
-// 5: PA5,PB3 TIM2(32)
-// 6: PA6,PB5 TIM3
-// 7: PB6,PB7 TIM4
-
-volatile int32_t encoder1_value = 0;
-volatile int32_t encoder3_value = 0;
-volatile int32_t encoder4_value = 0;
-
-// 1.A
-void EXTI0_IRQHandler(void) {
-  uint32_t inputs = GPIOC->IDR;
-  EXTI->PR = EXTI_PR_PR0;
-	int32_t old_value = encoder1_value;
-	int32_t new_value;
-  // This looks like a weird way to XOR the 2 inputs, but it compiles down to
-  // just 2 instructions, which is hard to beat.
-  if (((inputs >> 1) ^ inputs) & (1 << 0)) {
-		new_value = old_value + 1;
-  } else {
-		new_value = old_value - 1;
-  }
-	encoder1_value = new_value;
-}
-
-// 1.B
-void EXTI1_IRQHandler(void) {
-  uint32_t inputs = GPIOC->IDR;
-  EXTI->PR = EXTI_PR_PR1;
-	int32_t old_value = encoder1_value;
-	int32_t new_value;
-  if (((inputs >> 1) ^ inputs) & (1 << 0)) {
-		new_value = old_value - 1;
-  } else {
-		new_value = old_value + 1;
-  }
-	encoder1_value = new_value;
-}
-
-// 3.A
-void TIM1_BRK_TIM9_IRQHandler(void) {
-  uint32_t inputs = GPIOA->IDR;
-  TIM9->SR = ~TIM_SR_CC1IF;
-	int32_t old_value = encoder3_value;
-	int32_t new_value;
-  if (((inputs >> 1) ^ inputs) & (1 << 2)) {
-		new_value = old_value + 1;
-  } else {
-		new_value = old_value - 1;
-  }
-	encoder3_value = new_value;
-}
-
-// 3.B
-void EXTI3_IRQHandler(void) {
-  uint32_t inputs = GPIOA->IDR;
-  EXTI->PR = EXTI_PR_PR3;
-	int32_t old_value = encoder3_value;
-	int32_t new_value;
-  if (((inputs >> 1) ^ inputs) & (1 << 2)) {
-		new_value = old_value - 1;
-  } else {
-		new_value = old_value + 1;
-  }
-	encoder3_value = new_value;
-}
-
-#if 0
-TODO(brians): Figure out a good way to let robot_comp override this.
-// 4.A
-void TIM1_CC_IRQHandler(void) {
-  uint32_t a_inputs = GPIOA->IDR, b_inputs = GPIOB->IDR;
-  TIM1->SR = ~TIM_SR_CC1IF;
-	int32_t old_value = encoder4_value;
-	int32_t new_value;
-  if (((a_inputs >> 8) ^ b_inputs) & (1 << 0)) {
-		new_value = old_value + 1;
-  } else {
-		new_value = old_value - 1;
-  }
-	encoder4_value = new_value;
-}
-#endif
-
-// 4.B
-void TIM3_IRQHandler(void) {
-  uint32_t a_inputs = GPIOA->IDR, b_inputs = GPIOB->IDR;
-  TIM3->SR = ~TIM_SR_CC3IF;
-	int32_t old_value = encoder4_value;
-	int32_t new_value;
-  if (((a_inputs >> 8) ^ b_inputs) & (1 << 0)) {
-		new_value = old_value - 1;
-  } else {
-		new_value = old_value + 1;
-  }
-	encoder4_value = new_value;
-}
-
-static void encoder_setup(TIM_TypeDef *timer, int fast) {
-  timer->CR1 =
-      TIM_CR1_URS | /* don't generate spurious update interrupts that
-                     might be shared with other timers */
-      (fast ? (1 << 8) : 0) /* divide filter clock by 2 on fast encoders */;
-  timer->SMCR = 3;  // 4x quadrature encoder mode
-  timer->CCER = 0;
-  timer->CCMR1 =
-      TIM_CCMR1_CC2S_0 | /* input pin 2 -> timer input 2 */
-      TIM_CCMR1_CC1S_0 | /* input pin 1 -> timer input 1 */
-      (0xE << 4) | /* divide filter clock by 32, need 6 in a row to trigger */
-      (0xE << 12) /* same for other input */;
-  timer->PSC = 0;
-  timer->EGR = TIM_EGR_UG;
-  timer->CR1 |= TIM_CR1_CEN;
-}
-
-void encoder_init(void) {
-  // Set up the 3 simple software encoder inputs.
-  EXTI_set(0, 2);
-  EXTI_set(1, 2);
-  EXTI_set(3, 0);
-  EXTI->IMR |= EXTI_IMR_MR0 | EXTI_IMR_MR1 | EXTI_IMR_MR3;
-  EXTI->RTSR |= EXTI_RTSR_TR0 | EXTI_RTSR_TR1 | EXTI_RTSR_TR3;
-  EXTI->FTSR |= EXTI_FTSR_TR0 | EXTI_FTSR_TR1 | EXTI_FTSR_TR3;
-  NVIC_EnableIRQ(EXTI0_IRQn);
-  NVIC_EnableIRQ(EXTI1_IRQn);
-  NVIC_EnableIRQ(EXTI3_IRQn);
-
-  // Set up the A2 software encoder input through TIM9 input 1.
-  gpio_setup_alt(GPIOA, 2, 3);
-  RCC->APB2ENR |= RCC_APB2ENR_TIM9EN;
-  TIM9->CR1 = 0;
-  TIM9->DIER = TIM_DIER_CC1IE;
-  TIM9->CCMR1 = TIM_CCMR1_CC1S_0; /* input pin 1 -> timer input 1 */
-  TIM9->CCER = TIM_CCER_CC1NP | TIM_CCER_CC1P | TIM_CCER_CC1E;
-  TIM9->EGR = TIM_EGR_UG;
-  TIM9->CR1 |= TIM_CR1_CEN;
-  NVIC_EnableIRQ(TIM1_BRK_TIM9_IRQn);
-
-	// Set up the A4 software encoder input through TIM1 input 1.
-  gpio_setup_alt(GPIOA, 8, 1);
-  RCC->APB2ENR |= RCC_APB2ENR_TIM1EN;
-	TIM1->CR1 = 0;
-	TIM1->DIER = TIM_DIER_CC1IE;
-	TIM1->CCMR1 = TIM_CCMR1_CC1S_0; /* input pin 1 -> timer input 1 */
-	TIM1->CCER = TIM_CCER_CC1NP | TIM_CCER_CC1P | TIM_CCER_CC1E;
-	TIM1->EGR = TIM_EGR_UG;
-	TIM1->CR1 |= TIM_CR1_CEN;
-	NVIC_EnableIRQ(TIM1_CC_IRQn);
-
-	// Set up the B4 software encoder input through TIM3 input 3.
-  gpio_setup_alt(GPIOB, 0, 2);
-	RCC->APB1ENR |= RCC_APB1ENR_TIM3EN;
-	TIM3->CR1 = 0;
-	TIM3->DIER = TIM_DIER_CC3IE;
-	TIM3->CCMR2 = TIM_CCMR2_CC3S_0; /* input pin 3 -> timer input 3 */
-	TIM3->CCER = TIM_CCER_CC3NP | TIM_CCER_CC3P | TIM_CCER_CC3E;
-	TIM3->EGR = TIM_EGR_UG;
-	TIM3->CR1 |= TIM_CR1_CEN;
-	NVIC_EnableIRQ(TIM3_IRQn);
-
-  gpio_setup_alt(GPIOA, 5, 1);
-  gpio_setup_alt(GPIOB, 3, 1);
-  RCC->APB1ENR |= RCC_APB1ENR_TIM2EN;
-  encoder_setup(TIM2, 0);
-
-  gpio_setup_alt(GPIOA, 6, 2);
-  gpio_setup_alt(GPIOB, 5, 2);
-  RCC->APB1ENR |= RCC_APB1ENR_TIM3EN;
-  encoder_setup(TIM3, 0);
-
-  gpio_setup_alt(GPIOB, 6, 2);
-  gpio_setup_alt(GPIOB, 7, 2);
-  RCC->APB1ENR |= RCC_APB1ENR_TIM4EN;
-  encoder_setup(TIM4, 0);
-
-  gpio_setup_alt(GPIOA, 0, 2);
-  gpio_setup_alt(GPIOA, 1, 2);
-  RCC->APB1ENR |= RCC_APB1ENR_TIM5EN;
-  encoder_setup(TIM5, 0);
-
-  gpio_setup_alt(GPIOC, 6, 3);
-  gpio_setup_alt(GPIOC, 7, 3);
-  RCC->APB2ENR |= RCC_APB2ENR_TIM8EN;
-  encoder_setup(TIM8, 1);
-}
diff --git a/bbb_cape/src/cape/encoder.h b/bbb_cape/src/cape/encoder.h
deleted file mode 100644
index 8e3ef18..0000000
--- a/bbb_cape/src/cape/encoder.h
+++ /dev/null
@@ -1,80 +0,0 @@
-#ifndef CAPE_ENCODER_H_
-#define CAPE_ENCODER_H_
-
-#include <stdint.h>
-#include <limits.h>
-
-#include <STM32F2XX.h>
-
-void encoder_init(void);
-
-// Updates a signed 32-bit counter with a new 16-bit value. Assumes that the
-// value will not more than half-wrap between updates.
-// new is 32 bits so it doesn't have to get masked, but the value passed in must
-// be <= UINT16_MAX.
-// Useful for 16-bit encoder counters.
-static inline void counter_update_s32_u16(int32_t *restrict counter,
-                                          uint32_t new) {
-  static const uint16_t kHalf = 0xFFFF / 2;
-  uint16_t old = *counter & 0xFFFF;
-  int32_t counter_top = *counter ^ old;
-  int32_t delta = (int32_t)old - (int32_t)new;
-  int32_t new_counter;
-  if (__builtin_expect(delta < -kHalf, 0)) {
-    new_counter = (counter_top - 0x10000) ^ 0xFFFF;
-  } else if (__builtin_expect(delta > kHalf, 0)) {
-    new_counter = counter_top + 0x10000;
-  } else {
-    new_counter = counter_top;
-  }
-  *counter = new_counter | new;
-}
-
-// Updates an unsigned 64-bit counter with a new 16-bit value. Assumes that the
-// value will not wrap more than once between updates.
-// new is 32 bits so it doesn't have to get masked, but the value passed in must
-// be <= UINT16_MAX.
-// Useful for 16-bit timers being used for absolute timings.
-static inline void counter_update_u64_u16(uint64_t *restrict counter,
-                                          uint32_t new) {
-  uint16_t old = *counter & 0xFFFF;
-  int64_t counter_top = *counter ^ old;
-  int64_t new_counter;
-  if (__builtin_expect(new < old, 0)) {
-    new_counter = counter_top + 0x10000;
-  } else {
-    new_counter = counter_top;
-  }
-  *counter = new_counter | new;
-}
-
-// number is the 0-indexed number on the silkscreen
-static inline int32_t encoder_read(int number) {
-  static int32_t value0, value6, value7;
-  extern volatile int32_t encoder1_value, encoder3_value, encoder4_value;
-  switch (number) {
-    case 0:
-      counter_update_s32_u16(&value0, TIM8->CNT);
-      return value0;
-    case 1:
-      return encoder1_value;
-    case 2:
-      return TIM5->CNT;
-    case 3:
-      return encoder3_value;
-    case 4:
-      return encoder4_value;
-    case 5:
-      return TIM2->CNT;
-    case 6:
-      counter_update_s32_u16(&value6, TIM3->CNT);
-      return value6;
-    case 7:
-      counter_update_s32_u16(&value7, TIM4->CNT);
-      return value7;
-    default:
-      return INT32_MAX;
-  }
-}
-
-#endif  // CAPE_ENCODER_H_
diff --git a/bbb_cape/src/cape/fill_packet.c b/bbb_cape/src/cape/fill_packet.c
deleted file mode 100644
index a0b2b13..0000000
--- a/bbb_cape/src/cape/fill_packet.c
+++ /dev/null
@@ -1,99 +0,0 @@
-#include "cape/fill_packet.h"
-
-#include <string.h>
-
-#include <STM32F2XX.h>
-
-#include "cape/uart_dma.h"
-#include "cape/uart_common.h"
-#include "cape/cows.h"
-#include "cape/encoder.h"
-#include "cape/crc.h"
-#include "cape/bootloader_handoff.h"
-#include "cape/gyro.h"
-#include "cape/analog.h"
-#include "cape/robot.h"
-#include "cape/digital.h"
-#include "cape/led.h"
-
-#include "cape/uart_byte.h"
-
-#define TIMESTAMP_TIM TIM6
-#define RCC_APB1ENR_TIMESTAMP_TIMEN RCC_APB1ENR_TIM6EN
-
-static uint8_t buffer1[DATA_STRUCT_SEND_SIZE] __attribute__((aligned(4)));
-static uint8_t buffer2[DATA_STRUCT_SEND_SIZE] __attribute__((aligned(4)));
-
-static uint32_t flash_checksum;
-
-static inline void do_fill_packet(struct DataStruct *packet) {
-  static uint64_t timestamp = 0;
-  counter_update_u64_u16(&timestamp, TIMESTAMP_TIM->CNT);
-  packet->timestamp = timestamp;
-
-  packet->flash_checksum = flash_checksum;
-
-  struct GyroOutput gyro_output;
-  gyro_get_output(&gyro_output);
-  packet->gyro_angle = gyro_output.angle;
-  packet->old_gyro_reading = gyro_output.last_reading_bad;
-  packet->uninitialized_gyro = !gyro_output.initialized;
-  packet->zeroing_gyro = !gyro_output.zeroed;
-  packet->bad_gyro = gyro_output.gyro_bad;
-  packet->analog_errors = analog_get_errors();
-
-  robot_fill_packet(packet);
-  //counter_update_u64_u16(&timestamp, TIMESTAMP_TIM->CNT);
-  //packet->main.encoders[0] = timestamp;
-}
-
-// Fills the new packet with data.
-void uart_dma_callback(uint8_t *buffer) {
-  struct {
-    struct DataStruct packet;
-    uint8_t padding[DATA_STRUCT_SEND_SIZE - sizeof(struct DataStruct) - 12];
-    uint32_t checksum;
-  } __attribute__((packed)) data __attribute__((aligned(4)));
-  STATIC_ASSERT(sizeof(data) == DATA_STRUCT_SEND_SIZE - 8,
-                The_size_of_the_data_is_wrong);
-  struct DataStruct *packet = &data.packet;
-
-  do_fill_packet(packet);
-
-  uint32_t *p;
-  memcpy(&p, &packet, sizeof(void *));
-  data.checksum = crc_calculate(p, (sizeof(data) - 4) / 4);
-
-  ((uint32_t *)buffer)[0] = 0;
-  cows_stuff(&data, sizeof(data), buffer + 4);
-}
-
-void fill_packet_start(void) {
-  RCC->APB1ENR |= RCC_APB1ENR_TIMESTAMP_TIMEN;
-  TIMESTAMP_TIM->CR1 = 0;
-  TIMESTAMP_TIM->PSC = 600 - 1;
-  TIMESTAMP_TIM->EGR = TIM_EGR_UG;
-  TIMESTAMP_TIM->CR1 |= TIM_CR1_CEN;
-
-  crc_init();
-  analog_init();
-  encoder_init();
-  digital_init();
-
-  {
-    extern uint32_t __flash_end, __data_start__, __data_end__;
-    const uint32_t main_flash_end = (uint32_t) & __flash_end + (uint32_t) &
-                                    __data_end__ - (uint32_t) & __data_start__;
-    flash_checksum =
-        crc_calculate((void *)MAIN_FLASH_START,
-                      (size_t)(main_flash_end - MAIN_FLASH_START) / 4);
-  }
-
-  led_set(LED_ERR, 0);
-  gyro_init();
-
-  robot_init();
-
-  uart_common_configure(750000);
-  uart_dma_configure(DATA_STRUCT_SEND_SIZE, buffer1, buffer2);
-}
diff --git a/bbb_cape/src/cape/fill_packet.h b/bbb_cape/src/cape/fill_packet.h
deleted file mode 100644
index f3f1543..0000000
--- a/bbb_cape/src/cape/fill_packet.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef CAPE_FILL_PACKET_H_
-#define CAPE_FILL_PACKET_H_
-
-#include <stdint.h>
-
-#include "cape/util.h"
-#define DATA_STRUCT_NAME DataStruct
-#include "cape/data_struct.h"
-#undef DATA_STRUCT_NAME
-
-// Starts writing out sensor packets as fast as the serial port can write them.
-void fill_packet_start(void);
-
-#endif  // CAPE_FILL_PACKET_H_
diff --git a/bbb_cape/src/cape/gcc_arm.ld b/bbb_cape/src/cape/gcc_arm.ld
deleted file mode 100644
index 26a43e8..0000000
--- a/bbb_cape/src/cape/gcc_arm.ld
+++ /dev/null
@@ -1,150 +0,0 @@
-GROUP(libgcc.a libc.a libm.a)
-
-/* Linker script to place sections and symbol values. Should be used together
- * with other linker script that defines memory regions FLASH and RAM.
- * It references following symbols, which must be defined in code:
- *   Reset_Handler : Entry of reset handler
- *
- * It defines following symbols, which code can use without definition:
- *   __exidx_start
- *   __exidx_end
- *   __etext
- *   __data_start__
- *   __preinit_array_start
- *   __preinit_array_end
- *   __init_array_start
- *   __init_array_end
- *   __fini_array_start
- *   __fini_array_end
- *   __data_end__
- *   __bss_start__
- *   __bss_end__
- *   __end__
- *   end
- *   __HeapLimit
- *   __StackLimit
- *   __StackTop
- *   __stack
- */
-ENTRY(Reset_Handler)
-
-SECTIONS
-{
-	.text :
-	{
-		*(.text*)
-
-		KEEP(*(.init))
-		KEEP(*(.fini))
-
-		/* .ctors */
-		*crtbegin.o(.ctors)
-		*crtbegin?.o(.ctors)
-		*(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
-		*(SORT(.ctors.*))
-		*(.ctors)
-
-		/* .dtors */
- 		*crtbegin.o(.dtors)
- 		*crtbegin?.o(.dtors)
- 		*(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
- 		*(SORT(.dtors.*))
- 		*(.dtors)
-
-		*(.rodata*)
-
-		KEEP(*(.eh_frame*))
-	} > FLASH
-
-	.ARM.extab :
-	{
-		*(.ARM.extab* .gnu.linkonce.armextab.*)
-	} > FLASH
-
-	__exidx_start = .;
-	.ARM.exidx :
-	{
-		*(.ARM.exidx* .gnu.linkonce.armexidx.*)
-	} > FLASH
-	__exidx_end = .;
-
-	__etext = .;
-
-	.data : AT (__etext)
-	{
-		__data_start__ = .;
-
-		/* bootloader.ld sticks this at the beginning of FLASH before here */
-		KEEP(*(.vectors))
-
-		*(vtable)
-		*(.data*)
-
-		. = ALIGN(4);
-		/* preinit data */
-		PROVIDE_HIDDEN (__preinit_array_start = .);
-		KEEP(*(.preinit_array))
-		PROVIDE_HIDDEN (__preinit_array_end = .);
-
-		. = ALIGN(4);
-		/* init data */
-		PROVIDE_HIDDEN (__init_array_start = .);
-		KEEP(*(SORT(.init_array.*)))
-		KEEP(*(.init_array))
-		PROVIDE_HIDDEN (__init_array_end = .);
-
-
-		. = ALIGN(4);
-		/* finit data */
-		PROVIDE_HIDDEN (__fini_array_start = .);
-		KEEP(*(SORT(.fini_array.*)))
-		KEEP(*(.fini_array))
-		PROVIDE_HIDDEN (__fini_array_end = .);
-
-		KEEP(*(.jcr*))
-		. = ALIGN(4);
-		/* All data end */
-		__data_end__ = .;
-
-	} > RAM
-
-	.bss :
-	{
-		. = ALIGN(4);
-		__bss_start__ = .;
-		*(.bss*)
-		*(COMMON)
-		. = ALIGN(4);
-		__bss_end__ = .;
-	} > RAM
-
-	.heap (COPY):
-	{
-		__end__ = .;
-		end = __end__;
-		*(.heap*)
-		__HeapLimit = .;
-	} > RAM
-
-	/* .stack_dummy section doesn't contains any symbols. It is only
-	 * used for linker to calculate size of stack sections, and assign
-	 * values to stack symbols later */
-	.stack_dummy (COPY):
-	{
-		*(.stack*)
-	} > RAM
-
-	/* Set stack top to end of RAM, and stack limit move down by
-	 * size of stack_dummy section */
-	__StackTop = ORIGIN(RAM) + LENGTH(RAM);
-	__StackLimit = __StackTop - SIZEOF(.stack_dummy);
-	PROVIDE(__stack = __StackTop);
-
-	/* Check if data + heap + stack exceeds RAM limit */
-	ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
-
-	.flash_end :
-	{
-		__flash_end = .;
-	} > FLASH
-}
diff --git a/bbb_cape/src/cape/gyro.c b/bbb_cape/src/cape/gyro.c
deleted file mode 100644
index d650d4b..0000000
--- a/bbb_cape/src/cape/gyro.c
+++ /dev/null
@@ -1,413 +0,0 @@
-#include "cape/gyro.h"
-
-#include <inttypes.h>
-
-#include <STM32F2XX.h>
-
-#include "cape/util.h"
-#include "cape/led.h"
-
-#define printf(...)
-
-#define SPI SPI3
-#define SPI_IRQHandler SPI3_IRQHandler
-#define SPI_IRQn SPI3_IRQn
-#define RCC_APB1ENR_SPIEN RCC_APB1ENR_SPI3EN
-#define TIM TIM13
-#define TIM_IRQHandler TIM8_UP_TIM13_IRQHandler
-#define TIM_IRQn TIM8_UP_TIM13_IRQn
-#define RCC_APB1ENR_TIMEN RCC_APB1ENR_TIM13EN
-#define CSEL_GPIO GPIOA
-#define CSEL_NUM 4
-// The header file also contains references to TIM in gyro_read.
-
-struct GyroOutput gyro_output;
-
-// Set when a parity error is detected and cleared before starting a read.
-static volatile int parity_error;
-// Which byte we're currently waiting to read.
-static volatile int receive_byte;
-// The first byte that we receive (the most significant one).
-static volatile uint16_t high_value;
-
-// 1 if the latest result is potentially bad and 0 if it's good.
-static volatile int bad_reading;
-// 1 if the gyro is bad and we're not going to get any more readings.
-static volatile int bad_gyro;
-// The new reading waiting for the next timer cycle to be outputted.
-static volatile int16_t new_reading;
-
-struct GyroOutput gyro_output;
-
-// How many times per second to read the gyro value.
-#define kGyroReadFrequency 200
-// How many times per second to flash the LED.
-// Must evenly divide kGyroReadFrequency.
-#define kFlashFrequency 10
-
-#define kStartupCycles (kGyroReadFrequency * 2)
-#define kZeroingCycles (kGyroReadFrequency * 6)
-
-// An accumulator for all of the values read while zeroing.
-int32_t zero_bias = 0;
-
-int startup_cycles_left = kStartupCycles;
-int zeroing_cycles_left = kZeroingCycles;
-
-// These are a pair that hold the offset calculated while zeroing.
-// full_units_ is the base (in ticks) and remainder_ ranges between 0 and
-// kZeroingCycles (like struct timespec). remainder_ is used to calculate which
-// cycles to add an additional unit to the result.
-int32_t full_units_offset = 0;
-int32_t remainder_offset = 0;
-// This keeps track of when to add 1 to the read value (using _offset).
-int32_t remainder_sum = 0;
-
-int32_t led_flash = 0;
-
-enum State {
-  STATE_SETUP0,
-  STATE_SETUP1,
-  STATE_SETUP2,
-  STATE_SETUP3,
-  STATE_READ,
-};
-static volatile enum State state;
-static int setup_counter;
-
-// Switches to new_state in time TIM milliseconds (aka it shows in the TIM ISR).
-static void switch_state(enum State new_state, int time) {
-  TIM->CR1 = 0;
-  state = new_state;
-  TIM->CCR1 = time;
-  TIM->EGR = TIM_EGR_UG;
-  TIM->CR1 |= TIM_CR1_CEN;
-}
-
-static void gyro_setup_failed(void) {
-  printf("gyro setup failed. stopping\n");
-  gyro_output.angle = 0;
-  gyro_output.last_reading_bad = gyro_output.gyro_bad = 1;
-  gyro_output.initialized = 1;
-  gyro_output.zeroed = 0;
-  led_set(LED_ERR, 1);
-}
-
-static void gyro_enable_csel(void) {
-  // Clear the CSEL pin to select it.
-  // Do it 8 times (9 cycles) to wait for the amount of time the gyro datasheet
-  // says we need to.
-  // (1/2/(7.5MHz)+8ns)*120MHz = 8.96
-  for (int i = 0; i < 8; ++i) gpio_off(CSEL_GPIO, CSEL_NUM);
-}
-
-// Blocks until there is space to enqueue data.
-static void spi_write(uint16_t data) {
-  while (!(SPI->SR & SPI_SR_TXE)) {}
-  SPI->DR = data;
-}
-
-static void do_gyro_read(uint32_t data) {
-  parity_error = 0;
-  receive_byte = 0;
-
-  gyro_enable_csel();
-  spi_write(data >> 16);
-  if (__builtin_parity(data & ~1) == 0) data |= 1;
-  spi_write(data);
-}
-
-// Returns all of the non-data bits in the "header" except the parity from
-// value.
-static uint8_t gyro_status(uint32_t value) {
-  return (value >> 26) & ~4;
-}
-
-// Returns all of the error bits in the "footer" from value.
-static uint8_t gyro_errors(uint32_t value) {
-  return (value >> 1) & 0x7F;
-}
-
-static void reading_received(uint32_t reading) {
-    switch (state) {
-      case STATE_SETUP0:
-        if (parity_error) {
-          switch_state(STATE_SETUP0, 100);
-        } else {
-          if (reading != 1) {
-            printf("gyro unexpected initial response 0x%" PRIx32 "\n", reading);
-            // There's a chance that we're retrying because of a parity error
-            // previously, so keep going.
-          }
-          // Wait for it to assert the fault conditions before reading them.
-          switch_state(STATE_SETUP1, 50);
-        }
-        break;
-      case STATE_SETUP1:
-        if (parity_error) {
-          switch_state(STATE_SETUP0, 100);
-        } else {
-          // Wait for it to clear the fault conditions before reading again.
-          switch_state(STATE_SETUP2, 50);
-        }
-        break;
-      case STATE_SETUP2:
-        if (parity_error) {
-          switch_state(STATE_SETUP0, 100);
-        } else {
-          // If it's not reporting self test data.
-          if (gyro_status(reading) != 2) {
-            printf("gyro first value 0x%" PRIx32 " not self test data\n",
-                   reading);
-            switch_state(STATE_SETUP0, 100);
-            break;
-          }
-          // If we don't see all of the errors.
-          if (gyro_errors(reading) != 0x7F) {
-            printf("gyro self test value 0x%" PRIx32 " is bad\n", reading);
-            gyro_setup_failed();
-            break;
-          }
-          // Wait for the sequential transfer delay before reading out the last
-          // of
-          // the self test data.
-          switch_state(STATE_SETUP3, 1);
-        }
-        break;
-      case STATE_SETUP3:
-        if (parity_error) {
-          switch_state(STATE_SETUP0, 100);
-        } else {
-          // It should still be reporting self test data.
-          if (gyro_status(reading) != 2) {
-            printf("gyro second value 0x%" PRIx32 " not self test data\n",
-                   reading);
-            switch_state(STATE_SETUP0, 100);
-            break;
-          }
-
-          gyro_output.initialized = 1;
-          gyro_output.angle = 0;
-          gyro_output.last_reading_bad = 1;  // until we're started up
-          gyro_output.gyro_bad = bad_gyro = 0;
-          // Start reading values (after the sequential transfer delay).
-          switch_state(STATE_READ, 1);
-        }
-        break;
-      case STATE_READ:
-        if (parity_error) {
-          bad_reading = 1;
-        } else {
-          // This check assumes that the sequence bits are all 0, but they should
-          // be
-          // because that's all we send.
-          if (gyro_status(reading) != 1) {
-            uint8_t status = gyro_status(reading);
-            if (status == 0) {
-              printf("gyro says sensor data is bad\n");
-            } else {
-              printf("gyro gave weird status 0x%" PRIx8 "\n", status);
-            }
-            bad_reading = 1;
-          }
-
-          if (gyro_errors(reading) != 0) {
-            uint8_t errors = gyro_errors(reading);
-            if (errors & ~(1 << 1)) {
-              bad_reading = 1;
-              // Error 1 (continuous self-test error) will set status to 0 if it's
-              // bad
-              // enough by itself.
-            }
-            if (errors & (1 << 6)) {
-              printf("gyro PLL error\n");
-            }
-            if (errors & (1 << 5)) {
-              printf("gyro quadrature error\n");
-            }
-            if (errors & (1 << 4)) {
-              printf("gyro non-volatile memory error\n");
-              bad_gyro = 1;
-            }
-            if (errors & (1 << 3)) {
-              printf("gyro volatile memory error\n");
-              bad_gyro = 1;
-            }
-            if (errors & (1 << 2)) {
-              printf("gyro power error\n");
-            }
-            if (errors & (1 << 1)) {
-              printf("gyro continuous self-test error\n");
-            }
-            if (errors & 1) {
-              printf("gyro unexpected self check mode\n");
-            }
-          }
-          if (bad_gyro) {
-            bad_reading = 1;
-          }
-          new_reading = -(int16_t)(reading >> 10 & 0xFFFF);
-        }
-        switch_state(STATE_READ, 1000 / kGyroReadFrequency);
-        break;
-    }
-}
-
-
-void SPI_IRQHandler(void) {
-  uint32_t status = SPI->SR;
-  if (status & SPI_SR_RXNE) {
-    uint16_t value = SPI->DR;
-    if (receive_byte == 0) {
-      receive_byte = 1;
-
-      if (__builtin_parity(value) != 1) {
-        parity_error = 1;
-        high_value = 0;
-      } else {
-        high_value = value;
-      }
-    } else {
-      uint32_t full_value = high_value << 16 | value;
-      if (__builtin_parity(full_value) != 1) {
-        parity_error = 1;
-      }
-
-      // We have to wait for the hardware to finish sending all the bits first.
-      while (SPI->SR & SPI_SR_BSY) {}
-      // Do it 8 times (9 cycles) to wait for the amount of time the gyro datasheet
-      // says we need to.
-      // (1/2/(7.5MHz)+8ns)*120MHz = 8.96
-      for (int i = 0; i < 8; ++i) gpio_off(CSEL_GPIO, CSEL_NUM);
-
-      // Set the CSEL pin high to deselect it.
-      gpio_on(CSEL_GPIO, CSEL_NUM);
-
-      reading_received(full_value);
-    }
-  }
-}
-
-void TIM_IRQHandler(void) {
-  TIM->CR1 &= ~TIM_CR1_CEN;
-  TIM->SR = ~TIM_SR_CC1IF;
-  switch (state) {
-    case STATE_SETUP0:
-      if (setup_counter++ < 100) {
-        // Get it started doing a check.
-        do_gyro_read(0x20000003);
-      } else {
-        gyro_setup_failed();
-      }
-      break;
-    case STATE_SETUP1:  // Dummy read to clear the old latched state.
-    case STATE_SETUP2:  // Read self-test data.
-    case STATE_SETUP3:  // Read the second latched self-test data.
-      do_gyro_read(0x20000000);
-      break;
-    case STATE_READ:
-      ++led_flash;
-      if (led_flash < kGyroReadFrequency / kFlashFrequency / 2) {
-        led_set(LED_HB, 0);
-      } else {
-        led_set(LED_HB, 1);
-      }
-      if (led_flash >= kGyroReadFrequency / kFlashFrequency) {
-        led_flash = 0;
-      }
-
-      if (bad_gyro) {
-        led_set(LED_ERR, 1);
-        printf("gyro reader giving up because of bad gyro\n");
-        gyro_output.gyro_bad = 1;
-        gyro_output.last_reading_bad = 1;
-        gyro_output.angle = 0;
-        break;
-      }
-
-      if (startup_cycles_left) {
-        led_set(LED_Z, 0);
-        --startup_cycles_left;
-        if (bad_reading) {
-          printf("gyro retrying startup wait because of bad reading\n");
-          startup_cycles_left = kStartupCycles;
-        }
-      } else if (zeroing_cycles_left) {
-        led_set(LED_Z, 1);
-        --zeroing_cycles_left;
-        if (bad_reading) {
-          printf("gyro restarting zeroing because of bad reading\n");
-          zeroing_cycles_left = kZeroingCycles;
-          zero_bias = 0;
-        } else {
-          zero_bias -= new_reading;
-          if (zeroing_cycles_left == 0) {
-            // Do all the nice math
-            full_units_offset = zero_bias / kZeroingCycles;
-            remainder_offset = zero_bias % kZeroingCycles;
-            if (remainder_offset < 0) {
-              remainder_offset += kZeroingCycles;
-              --full_units_offset;
-            }
-            gyro_output.zeroed = 1;
-          }
-        }
-      } else {
-        led_set(LED_Z, 0);
-
-        int64_t new_angle = gyro_output.angle;
-        if (!bad_reading) new_angle += new_reading + full_units_offset;
-        if (remainder_sum >= kZeroingCycles) {
-          remainder_sum -= kZeroingCycles;
-          new_angle += 1;
-        }
-        gyro_output.angle = new_angle;
-        gyro_output.last_reading_bad = bad_reading;
-        remainder_sum += remainder_offset;
-      }
-      do_gyro_read(0x20000000);
-      break;
-  }
-}
-
-void gyro_init(void) {
-  gyro_output.initialized = 0;
-  gyro_output.zeroed = 0;
-
-  RCC->APB1ENR |= RCC_APB1ENR_SPIEN;
-  RCC->APB1ENR |= RCC_APB1ENR_TIMEN;
-
-  // Set up CSEL.
-  gpio_setup_out(CSEL_GPIO, CSEL_NUM, 3);
-  gpio_on(CSEL_GPIO, CSEL_NUM);  // deselect it
-
-  // Set up SCK, MISO, and MOSI.
-  gpio_setup_alt(GPIOC, 10, 6);  // SCK
-  gpio_setup_alt(GPIOC, 11, 6);  // MISO
-  gpio_setup_alt(GPIOC, 12, 6);  // MOSI
-
-  NVIC_SetPriority(SPI_IRQn, 4);
-  NVIC_EnableIRQ(SPI_IRQn);
-  NVIC_SetPriority(TIM_IRQn, 5);
-  NVIC_EnableIRQ(TIM_IRQn);
-
-  TIM->CR1 = 0;
-  TIM->DIER = TIM_DIER_CC1IE;
-  TIM->CCMR1 = 0;
-  // Make it generate 1 tick every ms.
-  TIM->PSC = 60000 - 1;
-  TIM->EGR = TIM_EGR_UG;
-
-  SPI->CR1 = 0;  // make sure it's disabled
-  SPI->CR1 =
-      SPI_CR1_DFF /* 16 bit frame */ |
-      SPI_CR1_SSM | SPI_CR1_SSI | /* don't watch for other masters */
-      1 << 3 /* 30MHz/4 = 7.5MHz */ |
-      SPI_CR1_MSTR /* master mode */;
-  SPI->CR2 = SPI_CR2_RXNEIE;
-  SPI->CR1 |= SPI_CR1_SPE;  // enable it
-
-  setup_counter = 0;
-  led_set(LED_Z, 1);
-  switch_state(STATE_SETUP0, 100);
-}
diff --git a/bbb_cape/src/cape/gyro.h b/bbb_cape/src/cape/gyro.h
deleted file mode 100644
index 5af74e9..0000000
--- a/bbb_cape/src/cape/gyro.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef GYRO_BOARD_SRC_USB_GYRO_H_
-#define GYRO_BOARD_SRC_USB_GYRO_H_
-
-#include <stdint.h>
-#include <string.h>
-
-#include <STM32F2XX.h>
-
-// Does everything to set up the gyro code, including starting a timer which
-// triggers reads and integrates the gyro values and blinks the LEDs etc.
-void gyro_init(void);
-
-struct GyroOutput {
-  int64_t angle;
-  int last_reading_bad;
-  int gyro_bad;
-  int initialized;
-  int zeroed;
-};
-
-// Reads the most recent output value and avoids race conditions.
-// Must be called from a lower-priority ISR than TIM10's.
-static inline void gyro_get_output(struct GyroOutput *output) {
-  extern struct GyroOutput gyro_output;
-  NVIC_DisableIRQ(TIM8_UP_TIM13_IRQn);
-  memcpy(output, &gyro_output, sizeof(gyro_output));
-  NVIC_EnableIRQ(TIM8_UP_TIM13_IRQn);
-}
-
-#endif  // GYRO_BOARD_SRC_USB_GYRO_H_
diff --git a/bbb_cape/src/cape/hardware.notes b/bbb_cape/src/cape/hardware.notes
deleted file mode 100644
index 54c8029..0000000
--- a/bbb_cape/src/cape/hardware.notes
+++ /dev/null
@@ -1,81 +0,0 @@
-EXTI interrupt groupings:
-  by number in the port
-  0,1,2,3,4,5-9,10-15
-
-
-PA0  TIM5.1
-PA1  TIM5.2
-PA2
-PA3
-PA4  SPI3_NSS (slave select)
-PA5  TIM2.1
-PA6  TIM3.1
-PA7
-PA8  TIM1.1
-PA9  USART1_TX (bootloader)
-PA10 USART1_RX (bootloader)
-PA11 (don't change during reset into bootloader)
-PA12 (don't change during reset into bootloader)
-PA13 SWDIO
-PA14 SWCLK
-PA15 (gets pulled up during reset (JTAG pin))
-PB0  TIM3.3
-PB1
-PB2  BOOT1 (tie to GND)
-PB3  TIM2.2
-PB4  (gets pulled up during reset (JTAG pin))
-PB5  TIM3.2 (don't change during reset into bootloader)
-PB6  TIM4.1
-PB7  TIM4.2
-PB8
-PB9
-PB10
-PB11 (don't change during reset into bootloader)
-PB12 SPI2_NSS (slave select)
-PB13 SPI2_SCK
-PB14 SPI2_MISO
-PB15 SPI2_MOSI
-PC0
-PC1
-PC2
-PC3
-PC4
-PC5
-PC6  TIM8.1
-PC7  TIM8.2
-PC8
-PC9
-PC10 SPI3_SCK
-PC11 SPI3_MISO
-PC12 SPI3_MOSI
-PC13
-PC14
-PC15
-PD2
-
-[GPIOs]
-C0  enc
-C1  enc
-A2  enc (as TIM9.1)
-A3  enc
-
-B2
-C4
-C5
-A7
-B8
-B9
-B10
-A11
-A12
-C13
-C14
-C15
-
-C8  BBB_RST TIM8.3
-
-
-IO compensation cell?
-  controls slew rates
-  increased power draw
-  should probably just enable it?
diff --git a/bbb_cape/src/cape/led.c b/bbb_cape/src/cape/led.c
deleted file mode 100644
index 92edaf1..0000000
--- a/bbb_cape/src/cape/led.c
+++ /dev/null
@@ -1,50 +0,0 @@
-#include "cape/led.h"
-
-#include <STM32F2XX.h>
-
-#include "cape/util.h"
-
-#define LED_SPEED 0
-
-// DB = PC3
-// Z = PB1
-// HB = PB4
-// ERR = PB11
-
-static void do_led_set(GPIO_TypeDef *port, int number, int on) {
-  // The LEDs are hooked up between 3.3V and the GPIO pin, so these are
-  // backwards.
-  if (on) {
-    gpio_off(port, number);
-  } else {
-    gpio_on(port, number);
-  }
-}
-
-void led_set(enum LED led, int on) {
-  switch (led) {
-    case LED_ERR:
-      do_led_set(GPIOB, 11, on);
-      break;
-    case LED_HB:
-      do_led_set(GPIOB, 4, on);
-      break;
-    case LED_Z:
-      do_led_set(GPIOB, 1, on);
-      break;
-    case LED_DB:
-      do_led_set(GPIOC, 3, on);
-      break;
-  }
-}
-
-void led_init(void) {
-  gpio_setup_out(GPIOB, 11, LED_SPEED);
-  led_set(LED_ERR, 0);
-  gpio_setup_out(GPIOB, 4, LED_SPEED);
-  led_set(LED_HB, 0);
-  gpio_setup_out(GPIOB, 1, LED_SPEED);
-  led_set(LED_Z, 0);
-  gpio_setup_out(GPIOC, 3, LED_SPEED);
-  led_set(LED_DB, 0);
-}
diff --git a/bbb_cape/src/cape/led.h b/bbb_cape/src/cape/led.h
deleted file mode 100644
index ee47853..0000000
--- a/bbb_cape/src/cape/led.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef CAPE_LED_H_
-#define CAPE_LED_H_
-
-// The LEDs as referenced by the silkscreen.
-enum LED {
-  LED_ERR,
-  LED_HB,
-  LED_Z,
-  LED_DB,
-};
-
-// Turns the indicated LED on or off.
-void led_set(enum LED led, int on);
-
-void led_init(void);
-
-#endif  // CAPE_LED_H_
diff --git a/bbb_cape/src/cape/main.c b/bbb_cape/src/cape/main.c
deleted file mode 100644
index 390112b..0000000
--- a/bbb_cape/src/cape/main.c
+++ /dev/null
@@ -1,30 +0,0 @@
-#include <STM32F2XX.h>
-
-#include "cape/fill_packet.h"
-#include "cape/led.h"
-
-// The startup asm code defines this to the start of our exception vector table.
-extern uint32_t _vectors;
-
-void _start(void) {
-  led_set(LED_ERR, 1);
-  led_set(LED_HB, 0);
-  // Change the vector table offset to use our vector table instead of the
-  // bootloader's.
-  SCB->VTOR = (uint32_t)&_vectors;
-  // Data Memory Barrier to make sure it gets the updated vector table.
-  __asm__ __volatile__("dmb");
-
-  fill_packet_start();
-
-  // Make it go right to sleep after handling all exceptions. This actually
-  // decreses ISR latency a little bit because it doesn't have to stack the
-  // registers for the first one.
-  SCB->SCR |= SCB_SCR_SLEEPONEXIT_Msk;
-
-  // This seems like the perfect place to use WFI, but Brian on 2013-12-13
-  // couldn't find anything verifying that WFI doesn't increase the latency for
-  // the first interrupt handled, and we should never actually get here anyways,
-  // so it doesn't matter.
-  while (1) {}
-}
diff --git a/bbb_cape/src/cape/main.ld b/bbb_cape/src/cape/main.ld
deleted file mode 100644
index 058c2eb..0000000
--- a/bbb_cape/src/cape/main.ld
+++ /dev/null
@@ -1,14 +0,0 @@
-MEMORY
-{
-  FLASH (rx) : ORIGIN = 16k, LENGTH = 1024k - 16k
-  RAM (rwx)  : ORIGIN = 0x20000000, LENGTH = 128k
-}
-
-SECTIONS
-{
-	.text :
-	{
-		/* make sure this stays at the beginning of FLASH */
-		KEEP(*(Reset_Handler))
-	} > FLASH
-}
diff --git a/bbb_cape/src/cape/main_comp.ld b/bbb_cape/src/cape/main_comp.ld
deleted file mode 120000
index af355cc..0000000
--- a/bbb_cape/src/cape/main_comp.ld
+++ /dev/null
@@ -1 +0,0 @@
-main.ld
\ No newline at end of file
diff --git a/bbb_cape/src/cape/main_test.ld b/bbb_cape/src/cape/main_test.ld
deleted file mode 120000
index af355cc..0000000
--- a/bbb_cape/src/cape/main_test.ld
+++ /dev/null
@@ -1 +0,0 @@
-main.ld
\ No newline at end of file
diff --git a/bbb_cape/src/cape/peripherial_usage.notes b/bbb_cape/src/cape/peripherial_usage.notes
deleted file mode 100644
index c8005c3..0000000
--- a/bbb_cape/src/cape/peripherial_usage.notes
+++ /dev/null
@@ -1,60 +0,0 @@
-This file documents what code is using which peripherial(s), priorities when
-applicable, and which file(s) the code is in. The purpose is to make assigning
-priorities to everything else easier because the relative priorities of
-everything is what matters; the absolute priority is meaningless. It also helps
-with choosing things like timers.
-
-[BBB communication]
-uart_common
-  USART1
-uart
-  USART1_IRQ:3
-uart_dma
-  DMA2.7:2
-  DMA2.7_IRQ:8
-uart_byte
-  TIM7
-
-[gyro communication]
-gyro
-  SPI3
-  SPI3_IRQ:4
-  TIM13
-  TIM13_IRQ:5 (aka TIM8_UP)
-
-[ADC communication]
-analog
-  SPI2
-  SPI2_IRQ:6
-  TIM14
-  TIM14_IRQ:6 (aka TIM8_TRG_COM)
-
-[encoders]
-encoder
-  TIM2,TIM3,TIM4,TIM5,TIM8
-  EXTI0,EXTI1,EXTI3
-  EXTI0_IRQ:0,EXTI1_IRQ:0,EXTI3_IRQ:0
-  TIM9 (for its input capture 1)
-  TIM9_IRQ:0 (aka TIM1_BRK)
-  TIM1 (for its input capture 1)
-  TIM1_CC_IRQ:0
-  TIM3 (for its input capture 3)
-  TIM3_IRQ:0
-
-[digital inputs]
-digital
-  EXTI2,EXTI4-15
-  EXTI2_IRQ:1,EXTI4-15_IRQ:1
-
-[sensor packet sending]
-fill_packet
-  TIM6
-
-[utilities]
-crc
-  CRC
-
-[robots]
-robot_comp
-  TIM11
-  TIM11_IRQ:1 (aka TIM1_TRG_COM)
diff --git a/bbb_cape/src/cape/robot.c b/bbb_cape/src/cape/robot.c
deleted file mode 100644
index 71c0233..0000000
--- a/bbb_cape/src/cape/robot.c
+++ /dev/null
@@ -1,4 +0,0 @@
-#include "cape/robot.h"
-
-void robot_init(void) __attribute__((weak));
-void robot_init(void) {}
diff --git a/bbb_cape/src/cape/robot.h b/bbb_cape/src/cape/robot.h
deleted file mode 100644
index cd238a6..0000000
--- a/bbb_cape/src/cape/robot.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef CAPE_ROBOT_H_
-#define CAPE_ROBOT_H_
-
-// This header file is for the robot-specific files which should be named
-// robot_name.c. It documents what functions each robot should implement.
-
-#include "cape/fill_packet.h"
-
-// Has a default (weak empty) definition.
-void robot_init(void);
-
-void robot_fill_packet(struct DataStruct *packet);
-
-#endif  // CAPE_ROBOT_H_
diff --git a/bbb_cape/src/cape/robot_comp.c b/bbb_cape/src/cape/robot_comp.c
deleted file mode 100644
index 73969c7..0000000
--- a/bbb_cape/src/cape/robot_comp.c
+++ /dev/null
@@ -1,138 +0,0 @@
-#include "cape/robot.h"
-
-#include <STM32F2XX.h>
-
-#include "cape/encoder.h"
-#include "cape/analog.h"
-#include "cape/digital.h"
-#include "cape/util.h"
-#include "cape/timer.h"
-
-typedef struct {
-  uint32_t posedges, negedges;
-} EdgeCounts;
-
-#define COPY_EDGE_COUNTS(edge_counts, hall_effect_edges) \
-  hall_effect_edges.posedges = edge_counts.negedges;     \
-  hall_effect_edges.negedges = edge_counts.posedges;
-
-#define HALL_CAPTURE(num, edges, encoder, capture) \
-  void digital_capture_##num##P(void) {            \
-    ++edges.posedges;                              \
-    capture.posedge = encoder_read(encoder);       \
-  }                                                \
-  void digital_capture_##num##N(void) {            \
-    ++edges.negedges;                              \
-    capture.negedge = encoder_read(encoder);       \
-  }
-#define HALL_CAPTURE_DECL(num, edges, encoder, capture) \
-  static volatile EdgeCounts edges = {0, 0};            \
-  HALL_CAPTURE(num, edges, encoder, capture)
-
-static volatile struct {
-  int32_t posedge, negedge;
-} pusher_distal_captures, pusher_proximal_captures;
-
-#define SHOOTER(plunger_num, pusher_distal_num, pusher_proximal_num,         \
-                latch_num, encoder)                                          \
-  HALL_CAPTURE_DECL(pusher_distal_num, pusher_distal, encoder,               \
-                    pusher_distal_captures);                                 \
-  HALL_CAPTURE_DECL(pusher_proximal_num, pusher_proximal, encoder,           \
-                    pusher_proximal_captures);                               \
-  static inline void fill_shooter_values(struct DataStruct *packet) {        \
-    digital_capture_disable(pusher_distal_num);                              \
-    digital_capture_disable(pusher_proximal_num);                            \
-    packet->main.shooter_position = encoder_read(encoder);                   \
-    packet->main.pusher_distal_posedge_position =                            \
-        pusher_distal_captures.negedge;                                      \
-    packet->main.pusher_proximal_posedge_position =                          \
-        pusher_proximal_captures.negedge;                                    \
-    packet->main.bools.pusher_distal = !digital_read(pusher_distal_num);     \
-    packet->main.bools.pusher_proximal = !digital_read(pusher_proximal_num); \
-    COPY_EDGE_COUNTS(pusher_distal, packet->main.pusher_distal);             \
-    COPY_EDGE_COUNTS(pusher_proximal, packet->main.pusher_proximal);         \
-    digital_capture_enable(pusher_distal_num);                               \
-    digital_capture_enable(pusher_proximal_num);                             \
-    packet->main.bools.plunger = !digital_read(plunger_num);                 \
-    packet->main.bools.latch = !digital_read(latch_num);                     \
-  }
-
-typedef struct {
-  int32_t posedge, negedge;
-  EdgeCounts front, calibration, back;
-} SingleClawCaptures;
-
-#define CLAW(front_num, calibration_num, back_num, name, encoder)           \
-  static volatile SingleClawCaptures name = {0, 0, {0, 0}, {0, 0}, {0, 0}}; \
-  HALL_CAPTURE(front_num, name.front, encoder, name);                       \
-  HALL_CAPTURE(calibration_num, name.calibration, encoder, name);           \
-  HALL_CAPTURE(back_num, name.back, encoder, name);                         \
-  static inline void fill_##name##_values(struct DataStruct *packet) {      \
-    digital_capture_disable(front_num);                                     \
-    digital_capture_disable(calibration_num);                               \
-    digital_capture_disable(back_num);                                      \
-    packet->main.name.position = encoder_read(encoder);                     \
-    packet->main.name.negedge_position = name.posedge;                      \
-    packet->main.name.posedge_position = name.negedge;                      \
-    packet->main.name.bools.front = !digital_read(front_num);               \
-    packet->main.name.bools.calibration = !digital_read(calibration_num);   \
-    packet->main.name.bools.back = !digital_read(back_num);                 \
-    COPY_EDGE_COUNTS(name.front, packet->main.name.front);                  \
-    COPY_EDGE_COUNTS(name.calibration, packet->main.name.calibration);      \
-    COPY_EDGE_COUNTS(name.back, packet->main.name.back);                    \
-    digital_capture_enable(front_num);                                      \
-    digital_capture_enable(calibration_num);                                \
-    digital_capture_enable(back_num);                                       \
-  }
-
-CLAW(1, 2, 0, top_claw, 2);
-CLAW(10, 11, 9, bottom_claw, 7);
-SHOOTER(7, 5, 4, 8, 0)
-
-// TIM11.1 on PB9, aka digital input 6.
-timer_declare(TIM11, TIM1_TRG_COM_TIM11_IRQHandler, 1, 1, ultrasonic)
-
-// TIM1.1 on PA8, aka encoder input 4A.
-timer_declare(TIM1, TIM1_CC_IRQHandler, 1, 1, output_check)
-
-void robot_init(void) {
-  gpio_setup_alt(GPIOB, 9, 3);
-  RCC->APB2ENR |= RCC_APB2ENR_TIM11EN;
-  TIM11->CCMR1 = TIM_CCMR1_CC1S_0 /* input pin 1 -> timer input 1 */;
-  TIM11->PSC = 1200 - 1;  // 100KHz timer
-  timer_setup(TIM11, TIM1_TRG_COM_TIM11_IRQn, 1);
-
-  gpio_setup_alt(GPIOA, 8, 1);
-  RCC->APB2ENR |= RCC_APB2ENR_TIM1EN;
-  TIM1->CCMR1 = TIM_CCMR1_CC1S_0 /* input pin 1 -> timer input 1 */;
-  TIM1->PSC = 12 - 1;  // 10MHz timer
-  timer_setup(TIM1, TIM1_CC_IRQn, 1);
-}
-
-void robot_fill_packet(struct DataStruct *packet) {
-  packet->main.left_drive = encoder_read(6);
-  packet->main.right_drive = encoder_read(5);
-  packet->main.low_left_drive_hall = analog_get(7);
-  packet->main.low_right_drive_hall = analog_get(0);
-  packet->main.high_left_drive_hall = analog_get(6);
-  packet->main.high_right_drive_hall = analog_get(1);
-
-  packet->main.battery_voltage_high = analog_get(5);
-  packet->main.battery_voltage_low = analog_get(3);
-
-  packet->main.auto_mode_selector = analog_get(4);
-
-  packet->main.ultrasonic_pulse_length = ultrasonic_length;
-
-  {
-    NVIC_DisableIRQ(TIM1_CC_IRQn);
-    const uint32_t temp_output_check_length = output_check_length;
-    output_check_length = 0;
-    NVIC_EnableIRQ(TIM1_CC_IRQn);
-    packet->main.output_check_pulse_length = temp_output_check_length;
-  }
-
-  fill_top_claw_values(packet);
-  fill_bottom_claw_values(packet);
-  fill_shooter_values(packet);
-}
diff --git a/bbb_cape/src/cape/robot_comp.s b/bbb_cape/src/cape/robot_comp.s
deleted file mode 100644
index ada4f07..0000000
--- a/bbb_cape/src/cape/robot_comp.s
+++ /dev/null
@@ -1,922 +0,0 @@
-	.syntax unified
-	.cpu cortex-m3
-	.fpu softvfp
-	.eabi_attribute 20, 1
-	.eabi_attribute 21, 1
-	.eabi_attribute 23, 3
-	.eabi_attribute 24, 1
-	.eabi_attribute 25, 1
-	.eabi_attribute 26, 1
-	.eabi_attribute 30, 2
-	.eabi_attribute 18, 4
-	.thumb
-	.file	"robot_comp.c"
-	.section	.text.digital_capture_1P,"ax",%progbits
-	.align	2
-	.global	digital_capture_1P
-	.thumb
-	.thumb_func
-	.type	digital_capture_1P, %function
-digital_capture_1P:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	movw	r3, #:lower16:.LANCHOR0
-	movt	r3, #:upper16:.LANCHOR0
-	ldr	r1, [r3, #8]
-	mov	r2, #3072
-	adds	r1, r1, #1
-	str	r1, [r3, #8]
-	movt	r2, 16384
-	ldr	r2, [r2, #36]
-	str	r2, [r3, #0]
-	bx	lr
-	.size	digital_capture_1P, .-digital_capture_1P
-	.section	.text.digital_capture_1N,"ax",%progbits
-	.align	2
-	.global	digital_capture_1N
-	.thumb
-	.thumb_func
-	.type	digital_capture_1N, %function
-digital_capture_1N:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	movw	r3, #:lower16:.LANCHOR0
-	movt	r3, #:upper16:.LANCHOR0
-	ldr	r1, [r3, #12]
-	mov	r2, #3072
-	adds	r1, r1, #1
-	str	r1, [r3, #12]
-	movt	r2, 16384
-	ldr	r2, [r2, #36]
-	str	r2, [r3, #4]
-	bx	lr
-	.size	digital_capture_1N, .-digital_capture_1N
-	.section	.text.digital_capture_2P,"ax",%progbits
-	.align	2
-	.global	digital_capture_2P
-	.thumb
-	.thumb_func
-	.type	digital_capture_2P, %function
-digital_capture_2P:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	movw	r3, #:lower16:.LANCHOR0
-	movt	r3, #:upper16:.LANCHOR0
-	ldr	r1, [r3, #16]
-	mov	r2, #3072
-	adds	r1, r1, #1
-	str	r1, [r3, #16]
-	movt	r2, 16384
-	ldr	r2, [r2, #36]
-	str	r2, [r3, #0]
-	bx	lr
-	.size	digital_capture_2P, .-digital_capture_2P
-	.section	.text.digital_capture_2N,"ax",%progbits
-	.align	2
-	.global	digital_capture_2N
-	.thumb
-	.thumb_func
-	.type	digital_capture_2N, %function
-digital_capture_2N:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	movw	r3, #:lower16:.LANCHOR0
-	movt	r3, #:upper16:.LANCHOR0
-	ldr	r1, [r3, #20]
-	mov	r2, #3072
-	adds	r1, r1, #1
-	str	r1, [r3, #20]
-	movt	r2, 16384
-	ldr	r2, [r2, #36]
-	str	r2, [r3, #4]
-	bx	lr
-	.size	digital_capture_2N, .-digital_capture_2N
-	.section	.text.digital_capture_0P,"ax",%progbits
-	.align	2
-	.global	digital_capture_0P
-	.thumb
-	.thumb_func
-	.type	digital_capture_0P, %function
-digital_capture_0P:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	movw	r3, #:lower16:.LANCHOR0
-	movt	r3, #:upper16:.LANCHOR0
-	ldr	r1, [r3, #24]
-	mov	r2, #3072
-	adds	r1, r1, #1
-	str	r1, [r3, #24]
-	movt	r2, 16384
-	ldr	r2, [r2, #36]
-	str	r2, [r3, #0]
-	bx	lr
-	.size	digital_capture_0P, .-digital_capture_0P
-	.section	.text.digital_capture_0N,"ax",%progbits
-	.align	2
-	.global	digital_capture_0N
-	.thumb
-	.thumb_func
-	.type	digital_capture_0N, %function
-digital_capture_0N:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	movw	r3, #:lower16:.LANCHOR0
-	movt	r3, #:upper16:.LANCHOR0
-	ldr	r1, [r3, #28]
-	mov	r2, #3072
-	adds	r1, r1, #1
-	str	r1, [r3, #28]
-	movt	r2, 16384
-	ldr	r2, [r2, #36]
-	str	r2, [r3, #4]
-	bx	lr
-	.size	digital_capture_0N, .-digital_capture_0N
-	.section	.text.digital_capture_10P,"ax",%progbits
-	.align	2
-	.global	digital_capture_10P
-	.thumb
-	.thumb_func
-	.type	digital_capture_10P, %function
-digital_capture_10P:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	ldr	r3, .L12
-	mov	r1, #2048
-	ldr	r0, [r3, #40]
-	ldr	r2, [r3, #64]
-	adds	r0, r0, #1
-	str	r0, [r3, #40]
-	movt	r1, 16384
-	ldr	r1, [r1, #36]
-	uxth	r0, r2
-	rsb	ip, r1, r0
-	cmn	ip, #32768
-	eor	r2, r0, r2
-	ble	.L11
-	cmp	ip, #32768
-	it	ge
-	addge	r2, r2, #65536
-.L9:
-	orrs	r2, r2, r1
-	str	r2, [r3, #64]
-	str	r2, [r3, #32]
-	bx	lr
-.L11:
-	sub	r2, r2, #65536
-	movw	ip, #65535
-	eor	r2, r2, ip
-	b	.L9
-.L13:
-	.align	2
-.L12:
-	.word	.LANCHOR0
-	.size	digital_capture_10P, .-digital_capture_10P
-	.section	.text.digital_capture_10N,"ax",%progbits
-	.align	2
-	.global	digital_capture_10N
-	.thumb
-	.thumb_func
-	.type	digital_capture_10N, %function
-digital_capture_10N:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	ldr	r3, .L18
-	mov	r1, #2048
-	ldr	r0, [r3, #44]
-	ldr	r2, [r3, #64]
-	adds	r0, r0, #1
-	str	r0, [r3, #44]
-	movt	r1, 16384
-	ldr	r1, [r1, #36]
-	uxth	r0, r2
-	rsb	ip, r1, r0
-	cmn	ip, #32768
-	eor	r2, r0, r2
-	ble	.L17
-	cmp	ip, #32768
-	it	ge
-	addge	r2, r2, #65536
-.L16:
-	orrs	r2, r2, r1
-	str	r2, [r3, #64]
-	str	r2, [r3, #36]
-	bx	lr
-.L17:
-	sub	r2, r2, #65536
-	movw	ip, #65535
-	eor	r2, r2, ip
-	b	.L16
-.L19:
-	.align	2
-.L18:
-	.word	.LANCHOR0
-	.size	digital_capture_10N, .-digital_capture_10N
-	.section	.text.digital_capture_11P,"ax",%progbits
-	.align	2
-	.global	digital_capture_11P
-	.thumb
-	.thumb_func
-	.type	digital_capture_11P, %function
-digital_capture_11P:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	ldr	r3, .L24
-	mov	r1, #2048
-	ldr	r0, [r3, #48]
-	ldr	r2, [r3, #64]
-	adds	r0, r0, #1
-	str	r0, [r3, #48]
-	movt	r1, 16384
-	ldr	r1, [r1, #36]
-	uxth	r0, r2
-	rsb	ip, r1, r0
-	cmn	ip, #32768
-	eor	r2, r0, r2
-	ble	.L23
-	cmp	ip, #32768
-	it	ge
-	addge	r2, r2, #65536
-.L22:
-	orrs	r2, r2, r1
-	str	r2, [r3, #64]
-	str	r2, [r3, #32]
-	bx	lr
-.L23:
-	sub	r2, r2, #65536
-	movw	ip, #65535
-	eor	r2, r2, ip
-	b	.L22
-.L25:
-	.align	2
-.L24:
-	.word	.LANCHOR0
-	.size	digital_capture_11P, .-digital_capture_11P
-	.section	.text.digital_capture_11N,"ax",%progbits
-	.align	2
-	.global	digital_capture_11N
-	.thumb
-	.thumb_func
-	.type	digital_capture_11N, %function
-digital_capture_11N:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	ldr	r3, .L30
-	mov	r1, #2048
-	ldr	r0, [r3, #52]
-	ldr	r2, [r3, #64]
-	adds	r0, r0, #1
-	str	r0, [r3, #52]
-	movt	r1, 16384
-	ldr	r1, [r1, #36]
-	uxth	r0, r2
-	rsb	ip, r1, r0
-	cmn	ip, #32768
-	eor	r2, r0, r2
-	ble	.L29
-	cmp	ip, #32768
-	it	ge
-	addge	r2, r2, #65536
-.L28:
-	orrs	r2, r2, r1
-	str	r2, [r3, #64]
-	str	r2, [r3, #36]
-	bx	lr
-.L29:
-	sub	r2, r2, #65536
-	movw	ip, #65535
-	eor	r2, r2, ip
-	b	.L28
-.L31:
-	.align	2
-.L30:
-	.word	.LANCHOR0
-	.size	digital_capture_11N, .-digital_capture_11N
-	.section	.text.digital_capture_9P,"ax",%progbits
-	.align	2
-	.global	digital_capture_9P
-	.thumb
-	.thumb_func
-	.type	digital_capture_9P, %function
-digital_capture_9P:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	ldr	r3, .L36
-	mov	r1, #2048
-	ldr	r0, [r3, #56]
-	ldr	r2, [r3, #64]
-	adds	r0, r0, #1
-	str	r0, [r3, #56]
-	movt	r1, 16384
-	ldr	r1, [r1, #36]
-	uxth	r0, r2
-	rsb	ip, r1, r0
-	cmn	ip, #32768
-	eor	r2, r0, r2
-	ble	.L35
-	cmp	ip, #32768
-	it	ge
-	addge	r2, r2, #65536
-.L34:
-	orrs	r2, r2, r1
-	str	r2, [r3, #64]
-	str	r2, [r3, #32]
-	bx	lr
-.L35:
-	sub	r2, r2, #65536
-	movw	ip, #65535
-	eor	r2, r2, ip
-	b	.L34
-.L37:
-	.align	2
-.L36:
-	.word	.LANCHOR0
-	.size	digital_capture_9P, .-digital_capture_9P
-	.section	.text.digital_capture_9N,"ax",%progbits
-	.align	2
-	.global	digital_capture_9N
-	.thumb
-	.thumb_func
-	.type	digital_capture_9N, %function
-digital_capture_9N:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	ldr	r3, .L42
-	mov	r1, #2048
-	ldr	r0, [r3, #60]
-	ldr	r2, [r3, #64]
-	adds	r0, r0, #1
-	str	r0, [r3, #60]
-	movt	r1, 16384
-	ldr	r1, [r1, #36]
-	uxth	r0, r2
-	rsb	ip, r1, r0
-	cmn	ip, #32768
-	eor	r2, r0, r2
-	ble	.L41
-	cmp	ip, #32768
-	it	ge
-	addge	r2, r2, #65536
-.L40:
-	orrs	r2, r2, r1
-	str	r2, [r3, #64]
-	str	r2, [r3, #36]
-	bx	lr
-.L41:
-	sub	r2, r2, #65536
-	movw	ip, #65535
-	eor	r2, r2, ip
-	b	.L40
-.L43:
-	.align	2
-.L42:
-	.word	.LANCHOR0
-	.size	digital_capture_9N, .-digital_capture_9N
-	.section	.text.digital_capture_5P,"ax",%progbits
-	.align	2
-	.global	digital_capture_5P
-	.thumb
-	.thumb_func
-	.type	digital_capture_5P, %function
-digital_capture_5P:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	ldr	r3, .L48
-	mov	r1, #1024
-	ldr	r0, [r3, #68]
-	ldr	r2, [r3, #76]
-	adds	r0, r0, #1
-	str	r0, [r3, #68]
-	movt	r1, 16385
-	ldr	r1, [r1, #36]
-	uxth	r0, r2
-	rsb	ip, r1, r0
-	cmn	ip, #32768
-	eor	r2, r0, r2
-	ble	.L47
-	cmp	ip, #32768
-	it	ge
-	addge	r2, r2, #65536
-.L46:
-	orrs	r2, r2, r1
-	str	r2, [r3, #76]
-	str	r2, [r3, #80]
-	bx	lr
-.L47:
-	sub	r2, r2, #65536
-	movw	ip, #65535
-	eor	r2, r2, ip
-	b	.L46
-.L49:
-	.align	2
-.L48:
-	.word	.LANCHOR0
-	.size	digital_capture_5P, .-digital_capture_5P
-	.section	.text.digital_capture_5N,"ax",%progbits
-	.align	2
-	.global	digital_capture_5N
-	.thumb
-	.thumb_func
-	.type	digital_capture_5N, %function
-digital_capture_5N:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	ldr	r3, .L54
-	mov	r1, #1024
-	ldr	r0, [r3, #72]
-	ldr	r2, [r3, #76]
-	adds	r0, r0, #1
-	str	r0, [r3, #72]
-	movt	r1, 16385
-	ldr	r1, [r1, #36]
-	uxth	r0, r2
-	rsb	ip, r1, r0
-	cmn	ip, #32768
-	eor	r2, r0, r2
-	ble	.L53
-	cmp	ip, #32768
-	it	ge
-	addge	r2, r2, #65536
-.L52:
-	orrs	r2, r2, r1
-	str	r2, [r3, #76]
-	str	r2, [r3, #84]
-	bx	lr
-.L53:
-	sub	r2, r2, #65536
-	movw	ip, #65535
-	eor	r2, r2, ip
-	b	.L52
-.L55:
-	.align	2
-.L54:
-	.word	.LANCHOR0
-	.size	digital_capture_5N, .-digital_capture_5N
-	.section	.text.digital_capture_4P,"ax",%progbits
-	.align	2
-	.global	digital_capture_4P
-	.thumb
-	.thumb_func
-	.type	digital_capture_4P, %function
-digital_capture_4P:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	ldr	r3, .L60
-	mov	r1, #1024
-	ldr	r0, [r3, #88]
-	ldr	r2, [r3, #76]
-	adds	r0, r0, #1
-	str	r0, [r3, #88]
-	movt	r1, 16385
-	ldr	r1, [r1, #36]
-	uxth	r0, r2
-	rsb	ip, r1, r0
-	cmn	ip, #32768
-	eor	r2, r0, r2
-	ble	.L59
-	cmp	ip, #32768
-	it	ge
-	addge	r2, r2, #65536
-.L58:
-	orrs	r2, r2, r1
-	str	r2, [r3, #76]
-	str	r2, [r3, #96]
-	bx	lr
-.L59:
-	sub	r2, r2, #65536
-	movw	ip, #65535
-	eor	r2, r2, ip
-	b	.L58
-.L61:
-	.align	2
-.L60:
-	.word	.LANCHOR0
-	.size	digital_capture_4P, .-digital_capture_4P
-	.section	.text.digital_capture_4N,"ax",%progbits
-	.align	2
-	.global	digital_capture_4N
-	.thumb
-	.thumb_func
-	.type	digital_capture_4N, %function
-digital_capture_4N:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	ldr	r3, .L66
-	mov	r1, #1024
-	ldr	r0, [r3, #92]
-	ldr	r2, [r3, #76]
-	adds	r0, r0, #1
-	str	r0, [r3, #92]
-	movt	r1, 16385
-	ldr	r1, [r1, #36]
-	uxth	r0, r2
-	rsb	ip, r1, r0
-	cmn	ip, #32768
-	eor	r2, r0, r2
-	ble	.L65
-	cmp	ip, #32768
-	it	ge
-	addge	r2, r2, #65536
-.L64:
-	orrs	r2, r2, r1
-	str	r2, [r3, #76]
-	str	r2, [r3, #100]
-	bx	lr
-.L65:
-	sub	r2, r2, #65536
-	movw	ip, #65535
-	eor	r2, r2, ip
-	b	.L64
-.L67:
-	.align	2
-.L66:
-	.word	.LANCHOR0
-	.size	digital_capture_4N, .-digital_capture_4N
-	.section	.text.TIM1_TR_GCOM_TIM11_IRQHandler,"ax",%progbits
-	.align	2
-	.global	TIM1_TR_GCOM_TIM11_IRQHandler
-	.thumb
-	.thumb_func
-	.type	TIM1_TR_GCOM_TIM11_IRQHandler, %function
-TIM1_TR_GCOM_TIM11_IRQHandler:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	mov	r3, #18432
-	movt	r3, 16385
-	movw	r2, 65533	@ movhi
-	strh	r2, [r3, #16]	@ movhi
-	bx	lr
-	.size	TIM1_TR_GCOM_TIM11_IRQHandler, .-TIM1_TR_GCOM_TIM11_IRQHandler
-	.section	.text.robot_init,"ax",%progbits
-	.align	2
-	.global	robot_init
-	.thumb
-	.thumb_func
-	.type	robot_init, %function
-robot_init:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	mov	r3, #1024
-	movt	r3, 16386
-	ldr	r1, [r3, #0]
-	mov	r2, #14336
-	bic	r1, r1, #786432
-	orr	r1, r1, #524288
-	str	r1, [r3, #0]
-	ldr	r1, [r3, #36]
-	movt	r2, 16386
-	bic	r1, r1, #240
-	orr	r1, r1, #48
-	str	r1, [r3, #36]
-	ldr	r0, [r2, #68]
-	mov	r3, #18432
-	orr	r0, r0, #262144
-	str	r0, [r2, #68]
-	movt	r3, 16385
-	movs	r1, #1
-	movw	r2, 1199	@ movhi
-	strh	r1, [r3, #24]	@ movhi
-	strh	r2, [r3, #40]	@ movhi
-	movs	r2, #4
-	strh	r2, [r3, #0]	@ movhi
-	movs	r2, #2
-	strh	r2, [r3, #12]	@ movhi
-	movs	r2, #3
-	strh	r2, [r3, #32]	@ movhi
-	strh	r1, [r3, #20]	@ movhi
-	ldrh	r1, [r3, #0]
-	mov	r2, #57600
-	uxth	r1, r1
-	orr	r1, r1, #1
-	strh	r1, [r3, #0]	@ movhi
-	movt	r2, 57344
-	movs	r3, #16
-	strb	r3, [r2, #794]
-	mov	r3, #67108864
-	str	r3, [r2, #0]
-	bx	lr
-	.size	robot_init, .-robot_init
-	.section	.text.robot_fill_packet,"ax",%progbits
-	.align	2
-	.global	robot_fill_packet
-	.thumb
-	.thumb_func
-	.type	robot_fill_packet, %function
-robot_fill_packet:
-	@ args = 0, pretend = 0, frame = 0
-	@ frame_needed = 0, uses_anonymous_args = 0
-	@ link register save eliminated.
-	ldr	r3, .L80
-	mov	r2, #1024
-	ldr	r1, [r3, #104]
-	movt	r2, 16384
-	ldr	r2, [r2, #36]
-	uxth	ip, r1
-	push	{r4, r5, r6, r7, r8, sl}
-	rsb	r4, r2, ip
-	cmn	r4, #32768
-	eor	r1, ip, r1
-	ble	.L77
-	cmp	r4, #32768
-	it	ge
-	addge	r1, r1, #65536
-.L72:
-	orr	r2, r1, r2
-	lsrs	r1, r2, #16
-	str	r2, [r3, #104]
-	strh	r2, [r0, #62]	@ movhi
-	strh	r1, [r0, #64]	@ movhi
-	mov	r2, #1073741824
-	ldr	r2, [r2, #36]
-	ldr	r1, .L80+4
-	lsr	ip, r2, #16
-	strh	r2, [r0, #66]	@ movhi
-	strh	ip, [r0, #68]	@ movhi
-	ldrh	sl, [r1, #14]
-	ldr	r7, [r3, #108]
-	strh	sl, [r0, #90]	@ movhi
-	ldrh	sl, [r1, #12]
-	mov	r2, #57600
-	strh	sl, [r0, #92]	@ movhi
-	ldrh	sl, [r1, #10]
-	movt	r2, 57344
-	strh	sl, [r0, #98]	@ movhi
-	ldrh	sl, [r1, #0]
-	mov	ip, #256
-	strh	sl, [r0, #94]	@ movhi
-	ldrh	sl, [r1, #2]
-	ldrh	r1, [r1, #6]
-	mov	r4, #8388608
-	lsr	r8, r7, #16
-	mov	r6, #1024
-	mov	r5, #3072
-	strh	r7, [r0, #70]	@ movhi
-	strh	r8, [r0, #72]	@ movhi
-	strh	r1, [r0, #100]	@ movhi
-	strh	sl, [r0, #96]	@ movhi
-	movt	r5, 16384
-	str	r4, [r2, #128]
-	str	ip, [r2, #132]
-	str	r6, [r2, #128]
-	ldr	r8, [r5, #36]
-	ldr	r7, [r3, #0]
-	ldr	r5, [r3, #4]
-	mov	r1, #2048
-	str	r5, [r0, #28]
-	movt	r1, 16386
-	str	r8, [r0, #24]
-	str	r7, [r0, #32]
-	ldr	r7, [r1, #16]
-	ldrb	r5, [r0, #42]	@ zero_extendqisi2
-	ubfx	r7, r7, #5, #1
-	bfi	r5, r7, #0, #1
-	strb	r5, [r0, #42]
-	ldr	r7, [r1, #16]
-	uxtb	r5, r5
-	ubfx	r7, r7, #13, #1
-	bfi	r5, r7, #1, #1
-	strb	r5, [r0, #42]
-	ldr	r5, [r1, #16]
-	ldrb	r1, [r0, #42]	@ zero_extendqisi2
-	ubfx	r5, r5, #4, #1
-	bfi	r1, r5, #2, #1
-	strb	r1, [r0, #42]
-	ldr	r5, [r3, #12]
-	mov	r1, #2048
-	strb	r5, [r0, #36]
-	ldr	r5, [r3, #8]
-	movt	r1, 16384
-	strb	r5, [r0, #37]
-	ldr	r5, [r3, #20]
-	strb	r5, [r0, #38]
-	ldr	r5, [r3, #16]
-	strb	r5, [r0, #39]
-	ldr	r5, [r3, #28]
-	strb	r5, [r0, #40]
-	ldr	r5, [r3, #24]
-	strb	r5, [r0, #41]
-	ldr	r5, [r3, #64]
-	str	r4, [r2, #0]
-	str	ip, [r2, #4]
-	str	r6, [r2, #0]
-	str	r4, [r2, #128]
-	str	ip, [r2, #128]
-	str	ip, [r2, #132]
-	ldr	r1, [r1, #36]
-	uxth	r2, r5
-	rsb	ip, r1, r2
-	eors	r2, r2, r5
-	cmn	ip, #32768
-	ble	.L78
-	cmp	ip, #32768
-	it	ge
-	addge	r2, r2, #65536
-.L74:
-	orrs	r2, r2, r1
-	str	r2, [r3, #64]
-	ldr	r1, [r0, #44]
-	strb	r2, [r0, #43]
-	and	r1, r1, #-16777216
-	orr	r2, r1, r2, lsr #8
-	str	r2, [r0, #44]
-	ldr	r1, [r0, #52]
-	ldr	r2, [r3, #32]
-	and	r1, r1, #-16777216
-	strb	r2, [r0, #51]
-	orr	r2, r1, r2, lsr #8
-	str	r2, [r0, #52]
-	ldr	ip, [r0, #48]
-	ldr	r1, [r3, #36]
-	and	ip, ip, #-16777216
-	orr	ip, ip, r1, lsr #8
-	movs	r2, #0
-	str	ip, [r0, #48]
-	strb	r1, [r0, #47]
-	movt	r2, 16386
-	ldr	r1, [r2, #16]
-	ldrb	ip, [r0, #61]	@ zero_extendqisi2
-	ubfx	r1, r1, #7, #1
-	bfi	ip, r1, #0, #1
-	mov	r1, #1024
-	strb	ip, [r0, #61]
-	movt	r1, 16386
-	ldr	ip, [r1, #16]
-	ldrb	r1, [r0, #61]	@ zero_extendqisi2
-	ubfx	ip, ip, #2, #1
-	bfi	r1, ip, #1, #1
-	strb	r1, [r0, #61]
-	ldr	r1, [r2, #16]
-	ldrb	r2, [r0, #61]	@ zero_extendqisi2
-	ubfx	r1, r1, #11, #1
-	bfi	r2, r1, #2, #1
-	strb	r2, [r0, #61]
-	ldr	r1, [r3, #44]
-	mov	r2, #57600
-	strb	r1, [r0, #55]
-	ldr	r1, [r3, #40]
-	movt	r2, 57344
-	strb	r1, [r0, #56]
-	ldr	ip, [r3, #52]
-	mov	r1, #256
-	strb	ip, [r0, #57]
-	ldr	ip, [r3, #48]
-	mov	r4, #1024
-	strb	ip, [r0, #58]
-	ldr	ip, [r3, #60]
-	movt	r4, 16385
-	strb	ip, [r0, #59]
-	ldr	ip, [r3, #56]
-	strb	ip, [r0, #60]
-	mov	ip, #8388608
-	str	ip, [r2, #0]
-	str	r1, [r2, #0]
-	ldr	ip, [r3, #76]
-	str	r1, [r2, #4]
-	str	r1, [r2, #132]
-	str	r1, [r2, #132]
-	ldr	r1, [r4, #36]
-	uxth	r2, ip
-	subs	r4, r2, r1
-	cmn	r4, #32768
-	eor	r2, r2, ip
-	ble	.L79
-	cmp	r4, #32768
-	it	ge
-	addge	r2, r2, #65536
-.L76:
-	orrs	r2, r2, r1
-	lsrs	r1, r2, #16
-	str	r2, [r3, #76]
-	strh	r2, [r0, #78]	@ movhi
-	strh	r1, [r0, #80]	@ movhi
-	ldr	r1, [r3, #84]
-	mov	r2, #1024
-	lsr	ip, r1, #16
-	strh	ip, [r0, #84]	@ movhi
-	strh	r1, [r0, #82]	@ movhi
-	ldr	r1, [r3, #100]
-	movt	r2, 16386
-	lsr	ip, r1, #16
-	strh	ip, [r0, #88]	@ movhi
-	strh	r1, [r0, #86]	@ movhi
-	ldr	r1, [r2, #16]
-	ldrb	ip, [r0, #106]	@ zero_extendqisi2
-	ubfx	r1, r1, #10, #1
-	bfi	ip, r1, #1, #1
-	mov	r1, #2048
-	strb	ip, [r0, #106]
-	movt	r1, 16386
-	ldr	ip, [r1, #16]
-	ldrb	r1, [r0, #106]	@ zero_extendqisi2
-	ubfx	ip, ip, #15, #1
-	bfi	r1, ip, #2, #1
-	strb	r1, [r0, #106]
-	ldr	ip, [r3, #72]
-	mov	r1, #57600
-	strb	ip, [r0, #102]
-	ldr	ip, [r3, #68]
-	movt	r1, 57344
-	strb	ip, [r0, #103]
-	ldr	r4, [r3, #92]
-	mov	ip, #256
-	strb	r4, [r0, #104]
-	ldr	r4, [r3, #88]
-	movs	r3, #0
-	strb	r4, [r0, #105]
-	str	ip, [r1, #4]
-	str	ip, [r1, #4]
-	ldr	r1, [r2, #16]
-	ldrb	r2, [r0, #106]	@ zero_extendqisi2
-	ubfx	r1, r1, #8, #1
-	bfi	r2, r1, #0, #1
-	strb	r2, [r0, #106]
-	movt	r3, 16386
-	ldr	r2, [r3, #16]
-	ldrb	r3, [r0, #106]	@ zero_extendqisi2
-	ubfx	r2, r2, #12, #1
-	bfi	r3, r2, #3, #1
-	strb	r3, [r0, #106]
-	pop	{r4, r5, r6, r7, r8, sl}
-	bx	lr
-.L77:
-	sub	r1, r1, #65536
-	movw	r4, #65535
-	eors	r1, r1, r4
-	b	.L72
-.L79:
-	sub	r2, r2, #65536
-	movw	r4, #65535
-	eors	r2, r2, r4
-	b	.L76
-.L78:
-	sub	r2, r2, #65536
-	movw	ip, #65535
-	eor	r2, r2, ip
-	b	.L74
-.L81:
-	.align	2
-.L80:
-	.word	.LANCHOR0
-	.word	analog_readings
-	.size	robot_fill_packet, .-robot_fill_packet
-	.bss
-	.align	2
-	.set	.LANCHOR0,. + 0
-	.type	top_claw, %object
-	.size	top_claw, 32
-top_claw:
-	.space	32
-	.type	bottom_claw, %object
-	.size	bottom_claw, 32
-bottom_claw:
-	.space	32
-	.type	value7.2464, %object
-	.size	value7.2464, 4
-value7.2464:
-	.space	4
-	.type	pusher_distal, %object
-	.size	pusher_distal, 8
-pusher_distal:
-	.space	8
-	.type	value0.2462, %object
-	.size	value0.2462, 4
-value0.2462:
-	.space	4
-	.type	pusher_distal_captures, %object
-	.size	pusher_distal_captures, 8
-pusher_distal_captures:
-	.space	8
-	.type	pusher_proximal, %object
-	.size	pusher_proximal, 8
-pusher_proximal:
-	.space	8
-	.type	pusher_proximal_captures, %object
-	.size	pusher_proximal_captures, 8
-pusher_proximal_captures:
-	.space	8
-	.type	value6.2463, %object
-	.size	value6.2463, 4
-value6.2463:
-	.space	4
-	.type	ultrasonic_length, %object
-	.size	ultrasonic_length, 4
-ultrasonic_length:
-	.space	4
-	.ident	"GCC: (GNU) 4.5.4"
diff --git a/bbb_cape/src/cape/robot_test.c b/bbb_cape/src/cape/robot_test.c
deleted file mode 100644
index f329790..0000000
--- a/bbb_cape/src/cape/robot_test.c
+++ /dev/null
@@ -1,51 +0,0 @@
-#include "cape/robot.h"
-
-#include "cape/encoder.h"
-#include "cape/analog.h"
-#include "cape/digital.h"
-
-#define CAPTURE_NUM 11
-
-#define CAPTURE(num, np) digital_capture_ ## num ## np
-#define CAPTURE2(num, np) CAPTURE(num, np)
-#define CAPTURE_P CAPTURE2(CAPTURE_NUM, P)
-#define CAPTURE_N CAPTURE2(CAPTURE_NUM, N)
-
-static int32_t posedge_value, negedge_value;
-static uint8_t posedge_count = 0, negedge_count = 0;
-
-void CAPTURE_P(void) {
-  ++posedge_count;
-  posedge_value = encoder_read(1);
-}
-void CAPTURE_N(void) {
-  ++negedge_count;
-  negedge_value = encoder_read(1);
-}
-
-void robot_fill_packet(struct DataStruct *packet) {
-  packet->test.encoders[0] = encoder_read(0);
-  packet->test.encoders[1] = encoder_read(1);
-  packet->test.encoders[2] = encoder_read(2);
-  packet->test.encoders[3] = encoder_read(3);
-  packet->test.encoders[4] = encoder_read(4);
-  packet->test.encoders[5] = encoder_read(5);
-  packet->test.encoders[6] = encoder_read(6);
-  packet->test.encoders[7] = encoder_read(7);
-
-  for (int i = 0; i < 8; ++i) {
-    packet->test.analogs[i] = analog_get(i);
-  }
-
-  packet->test.digitals = 0;
-  for (int i = 0; i < 12; ++i) {
-    SET_BITS(packet->test.digitals, 1, digital_read(i), i);
-  }
-
-  digital_capture_disable(CAPTURE_NUM);
-  packet->test.posedge_count = posedge_count;
-  packet->test.posedge_value = posedge_value;
-  packet->test.negedge_count = negedge_count;
-  packet->test.negedge_value = negedge_value;
-  digital_capture_enable(CAPTURE_NUM);
-}
diff --git a/bbb_cape/src/cape/startup.notes b/bbb_cape/src/cape/startup.notes
deleted file mode 100644
index eac1b35..0000000
--- a/bbb_cape/src/cape/startup.notes
+++ /dev/null
@@ -1,23 +0,0 @@
-This file describes the processor startup process.
-
-The basic idea is that the bootloader and main code each have their own
-exception handler tables and code. The bootloader's code lives at the bottom
-of flash and the main code is in the rest of it. They both use the same startup
-code (STM32F2XX_startup.S, which deals with copying .data etc into RAM and
-zeroing RAM for .bss etc. This same file also defines the layout of the
-exception table (full of weak symbols). Although they both use the same startup
-code, it gets put into different places by the different linker scripts. The
-main code's exception table is in .data so it gets copied into RAM before being
-used to avoid waiting for flash reads to handle interrupts, but the bootloader's
-just gets put in flash because it has to be there (at address 0) and it doesn't
-care about interrupt performance.
-
-The bootloader code has its exception table starting at address 0, which is
-where the processor goes to start. The processor sets the stack pointer to the
-1st entry in the table and then jumps to the 2nd (the reset handler). Our
-bootloader then checks if it should pass through to the main code. If it does
-that, it then uses the same kind of interface to the main code's startup file.
-The main code's exception table lives in RAM, so the bootloader just uses the
-stack pointer and reset handler values that it knows because they're always the
-same (stack pointer to the top of RAM and reset handler at the beginning of
-the main code's flash).
diff --git a/bbb_cape/src/cape/timer.h b/bbb_cape/src/cape/timer.h
deleted file mode 100644
index 0cca0de..0000000
--- a/bbb_cape/src/cape/timer.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef CAPE_TIMER_H_
-#define CAPE_TIMER_H_
-
-#include <STM32F2XX.h>
-
-// inverted is 1 for timing low periods, 0 for high ones.
-#define timer_declare(timer, irq, input, inverted, name)                   \
-  static volatile uint32_t name##_length = 0;                              \
-  void irq(void) {                                                         \
-    timer->SR = ~TIM_SR_CC##input##IF;                                     \
-    const uint32_t ccer = timer->CCER;                                     \
-    timer->CCER = ccer ^ (TIM_CCER_CC##input##P | TIM_CCER_CC##input##NP); \
-    const uint32_t rising = ccer & TIM_CCER_CC##input##P;                  \
-    if (inverted ? rising : !rising) {                                     \
-      name##_length = timer->CCR##input;                                   \
-    } else {                                                               \
-      timer->EGR = TIM_EGR_UG;                                             \
-    }                                                                      \
-  }
-
-// You need to enable the clock, set up the alt function for the input pin,
-// set the prescaler, and set up the timer input before calling this.
-#define timer_setup(timer, irq, input)                           \
-  do {                                                           \
-    timer->CR1 = TIM_CR1_URS;                                    \
-    timer->DIER = TIM_DIER_CC##input##IE;                        \
-    timer->CCER = TIM_CCER_CC##input##P | TIM_CCER_CC##input##E; \
-    timer->EGR = TIM_EGR_UG;                                     \
-    timer->CR1 |= TIM_CR1_CEN;                                   \
-    NVIC_SetPriority(irq, 1);                                    \
-    NVIC_EnableIRQ(irq);                                         \
-  } while (0)
-
-#endif  // CAPE_TIMER_H_
diff --git a/bbb_cape/src/cape/toolchain-build-notes.txt b/bbb_cape/src/cape/toolchain-build-notes.txt
deleted file mode 100644
index d81c905..0000000
--- a/bbb_cape/src/cape/toolchain-build-notes.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-These are Brian's notes from building a toolchain on 2013-03-29.
-It compiles the code successfully and lives in /opt/cortex-m3.
-The flags are from logic, Austin's gcc, and
-  <http://www.coactionos.com/getting-started/43-building-and-installing-a-cortex-m3-compiler-on-ubuntu.html>
-  (for some of the newlib flags).
-This has been uploaded to our package repository for wheezy as arm-eabi-gcc.
-
-binutils
-	../binutils-2.23.2/configure --prefix=/opt/cortex-m3 --target=arm-eabi
-	make -j6
-	make install
-gcc
-	Symlinked in gmp-4.3.2, mpc-0.8.1, and mpfr-2.4.2 first.
-	../gcc-4.5.4/configure --target=arm-eabi --prefix=/opt/cortex-m3 --enable-interwork --enable-multilib --enable-languages=c,c++ --with-newlib --with-headers --disable-shared --with-gnu-as --with-gnu-ld --with-cpu-cortex-m3 --disable-shared --with-float=soft --with-cpu=cortex-m3 --with-tune=cortex-m3 --disable-libmudflap --disable-libgomp --with-mode=thumb
-	make -j6 all-gcc
-	sudo make install-gcc
-newlib
-	../newlib-1.20.0/configure --target=arm-eabi --prefix=/opt/cortex-m3 --enable-interwork --enable-multilib --enable-languages=c,c++ --with-headers --disable-shared --with-gnu-as --with-gnu-ld --with-cpu-cortex-m3 --disable-shared --with-float=soft --with-cpu=cortex-m3 --with-tune=cortex-m3 --disable-libmudflap --disable-libgomp --with-mode=thumb --disable-werror --disable-newlib-supplied-syscalls --disable-nls --enable-target-optspace --disable-libssp --enable-newlib-reent-small --enable-newlib-multithread --disable-libgloss
-	make CFLAGS_FOR_TARGET="-D__IEEE_BIG_ENDIAN -D__IEEE_BYTES_LITTLE_ENDIAN -D__BUFSIZ__=128"
-	sudo make install
-gcc
-	make -j6
-	sudo make install
diff --git a/bbb_cape/src/cape/uart.c b/bbb_cape/src/cape/uart.c
deleted file mode 100644
index 63620ab..0000000
--- a/bbb_cape/src/cape/uart.c
+++ /dev/null
@@ -1,66 +0,0 @@
-#include "cape/uart.h"
-#include "cape/uart_common_private.h"
-
-#include "cape/util.h"
-#include "cape/uart_common.h"
-
-// TODO(brians): Add error checking.
-
-static void default_callback(int bytes) {}
-
-void uart_transmit_callback(int bytes_transmitted) ALIAS_WEAK(default_callback);
-void uart_receive_callback(int bytes_received) ALIAS_WEAK(default_callback);
-
-static int transmit_bytes, receive_bytes;
-// These actually contain 1 less than the indicated number to make the common
-// path through the ISR faster.
-static int transmitted_bytes, received_bytes;
-static uint8_t *transmit_data, *receive_data;
-
-// Enable the transmitter and interrupt when we can write.
-static const uint32_t kTransmitBits = USART_CR1_TE | USART_CR1_TXEIE;
-// Enable the receive and interrupt when there's data to read.
-static const uint32_t kReceiveBits = USART_CR1_RE | USART_CR1_RXNEIE;
-
-void USART1_IRQHandler(void) {
-  uint32_t status = UART->SR;
-  if (status & USART_SR_TXE) {
-    if ((transmitted_bytes + 1) < transmit_bytes) {
-      UART->DR = transmit_data[++transmitted_bytes];
-    } else {
-      // Get another interrupt when it's done writing that last byte.
-      UART->CR1 = (UART->CR1 & ~USART_CR1_TXEIE) | USART_CR1_TCIE;
-    }
-  } else if (status & USART_SR_RXNE) {
-    receive_data[++received_bytes] = UART->DR;
-    if ((received_bytes + 1) >= receive_bytes) {
-      UART->CR1 &= ~kReceiveBits;
-      uart_receive_callback(receive_bytes);
-    }
-  } else if (status & USART_SR_TC) {
-      UART->CR1 &= ~(USART_CR1_TCIE | USART_CR1_TE);
-      uart_transmit_callback(transmit_bytes);
-  }
-}
-
-void uart_configure(void) {
-  NVIC_SetPriority(USART1_IRQn, 3);
-  NVIC_EnableIRQ(USART1_IRQn);
-}
-
-void uart_transmit(int bytes, uint8_t *data) {
-  transmit_bytes = bytes;
-  transmitted_bytes = 0;
-  transmit_data = data;
-  compiler_memory_barrier();
-  UART->CR1 |= kTransmitBits;
-  UART->DR = data[0];
-}
-
-void uart_receive(int bytes, uint8_t *data) {
-  receive_bytes = bytes;
-  received_bytes = -1;
-  receive_data = data;
-  compiler_memory_barrier();
-  UART->CR1 |= kReceiveBits;
-}
diff --git a/bbb_cape/src/cape/uart.h b/bbb_cape/src/cape/uart.h
deleted file mode 100644
index fd43c99..0000000
--- a/bbb_cape/src/cape/uart.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef CAPE_UART_H_
-#define CAPE_UART_H_
-
-#include <stdint.h>
-
-// This file deals with USART1. It sends bytes from a buffer or receives bytes
-// into a buffer and then calls a callback function.
-
-// uart_common_configure must be called before this.
-void uart_configure(void);
-
-// Callbacks to be implemented by the user.
-// Implemented as weak symbols that do nothing by default.
-// The argument is the number of bytes transmitted or received. It will be less
-// than the requested number if there was an error.
-void uart_transmit_callback(int bytes_transmitted);
-void uart_receive_callback(int bytes_received);
-
-void uart_transmit(int bytes, uint8_t *data);
-void uart_receive(int bytes, uint8_t *data);
-
-#endif  // CAPE_UART_H_
diff --git a/bbb_cape/src/cape/uart_byte.c b/bbb_cape/src/cape/uart_byte.c
deleted file mode 100644
index 2cd95b4..0000000
--- a/bbb_cape/src/cape/uart_byte.c
+++ /dev/null
@@ -1,41 +0,0 @@
-#include "cape/uart_byte.h"
-#include "cape/uart_common_private.h"
-
-#include <STM32F2XX.h>
-
-#define TIMEOUT_TIM TIM7
-#define RCC_APB1ENR_TIMEOUT_TIMEN RCC_APB1ENR_TIM7EN
-
-void uart_byte_configure(void) {
-  RCC->APB1ENR |= RCC_APB1ENR_TIMEOUT_TIMEN;
-
-  TIMEOUT_TIM->CR1 = 0;
-}
-
-int uart_byte_receive(uint16_t timeout_count, uint16_t timeout_divider) {
-  TIMEOUT_TIM->PSC = timeout_divider;
-  TIMEOUT_TIM->EGR = TIM_EGR_UG;
-  TIMEOUT_TIM->CR1 |= TIM_CR1_CEN;
-
-  while ((UART->SR & USART_SR_RXNE) == 0) {
-    if (TIMEOUT_TIM->CNT >= timeout_count) {
-      TIMEOUT_TIM->CR1 &= ~TIM_CR1_CEN;
-      return -1;
-    }
-  }
-
-  int r = UART->DR;  // do it now to clear interrupts etc
-
-  if (UART->SR & USART_SR_PE) r = -2;
-  if (UART->SR & USART_SR_FE) r = -3;
-  if (UART->SR & USART_SR_NE) r = -4;
-  if (UART->SR & USART_SR_ORE) r = -5;
-
-  TIMEOUT_TIM->CR1 &= ~TIM_CR1_CEN;
-  return r;
-}
-
-void uart_byte_send(uint8_t value) {
-  while ((UART->SR & USART_SR_TXE) == 0) {}
-  UART->DR = value;
-}
diff --git a/bbb_cape/src/cape/uart_byte.h b/bbb_cape/src/cape/uart_byte.h
deleted file mode 100644
index 3423d7a..0000000
--- a/bbb_cape/src/cape/uart_byte.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef CAPE_UART_BYTE_H_
-#define CAPE_UART_BYTE_H_
-
-#include <stdint.h>
-
-// uart_common_configure must be called before this.
-void uart_byte_configure(void);
-
-// Spins until 1 byte is received or some amount of time. The timeout is
-// timeout_count*(timeout_divider+1)/60MHz.
-// The result is <0 for timeout/error or the received byte.
-// errors:
-//   -1  timeout
-//   -2  parity
-//   -3  framing
-//   -4  noise detected
-//   -5  overrun
-int uart_byte_receive(uint16_t timeout_count, uint16_t timeout_divider);
-
-// Spins until 1 byte can be written out.
-void uart_byte_send(uint8_t value);
-
-#endif  // CAPE_UART_BYTE_H_
diff --git a/bbb_cape/src/cape/uart_common.c b/bbb_cape/src/cape/uart_common.c
deleted file mode 100644
index f22c597..0000000
--- a/bbb_cape/src/cape/uart_common.c
+++ /dev/null
@@ -1,33 +0,0 @@
-#include "cape/uart_common.h"
-#include "cape/uart_common_private.h"
-
-#include "cape/util.h"
-
-#define RCC_APB2ENR_UARTEN RCC_APB2ENR_USART1EN
-
-#define FPCLK 60000000
-
-// The UART is on PA9 and PA10.
-void uart_common_configure(int baud) {
-  gpio_setup_alt(GPIOA, 9, 7);
-  gpio_setup_alt(GPIOA, 10, 7);
-  RCC->APB2ENR |= RCC_APB2ENR_UARTEN;
-
-  UART->CR1 =
-      //USART_CR1_M /* 9th bit for the parity */ |
-      //USART_CR1_PCE /* enable parity (even by default) */ |
-      //USART_CR1_OVER8 /* support going faster */ |
-      0;
-
-  // baud = 60MHz / kMultiplier * (whole_part + fraction / kMultiplier))
-  static const int kMultiplier = 16 /* 8 * (2 - OVER8) */;
-  // The divisor of FPCLK that we want (*2).
-  int divisor = FPCLK * 2 / baud;
-  // The whole-number part of the divisor.
-  int mantissa = divisor / kMultiplier / 2;
-  // The fractional part of the divisor (*2).
-  int fraction = divisor % (kMultiplier * 2);
-  UART->BRR = (mantissa << 4) | ((fraction + 1) / 2);
-
-  UART->CR1 |= USART_CR1_UE;  // enable it
-}
diff --git a/bbb_cape/src/cape/uart_common.h b/bbb_cape/src/cape/uart_common.h
deleted file mode 100644
index bb98a07..0000000
--- a/bbb_cape/src/cape/uart_common.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef CAPE_UART_COMMON_H_
-#define CAPE_UART_COMMON_H_
-
-// Configures it for baud, 1 start bit, 1 stop bit, and 1 even parity bit.
-// baud must be between 57KHz and 3.75MHz. It must be something that the USART can
-// handle exactly (see
-// <http://www.st.com/web/en/resource/technical/document/reference_manual/CD00225773.pdf#page=633>
-// or so for choices (fPCLK = 60MHz, OVER8 = 0 for now)).
-void uart_common_configure(int baud);
-
-#endif  // CAPE_UART_COMMON_H_
diff --git a/bbb_cape/src/cape/uart_common_private.h b/bbb_cape/src/cape/uart_common_private.h
deleted file mode 100644
index 3836b29..0000000
--- a/bbb_cape/src/cape/uart_common_private.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef CAPE_UART_COMMON_PRIVATE_H_
-#define CAPE_UART_COMMON_PRIVATE_H_
-
-#include <STM32F2XX.h>
-
-#define UART USART1
-
-#endif  // CAPE_UART_COMMON_PRIVATE_H_
diff --git a/bbb_cape/src/cape/uart_dma.c b/bbb_cape/src/cape/uart_dma.c
deleted file mode 100644
index 4a6ac92..0000000
--- a/bbb_cape/src/cape/uart_dma.c
+++ /dev/null
@@ -1,76 +0,0 @@
-#include "cape/uart_dma.h"
-#include "cape/uart_common_private.h"
-
-#include "cape/util.h"
-#include "cape/uart_common.h"
-#include "cape/led.h"
-
-#define DMA DMA2
-#define DMA_Stream DMA2_Stream7
-#define DMA_SR DMA2->HISR
-#define DMA_FCR DMA2->HIFCR
-#define DMA_Stream_IRQHandler DMA2_Stream7_IRQHandler
-#define DMA_Stream_IRQn DMA2_Stream7_IRQn
-#define DMA_CHANNEL_NUMBER 4
-#define RCC_AHB1ENR_DMAEN RCC_AHB1ENR_DMA2EN
-
-#define DMA_SR_SHIFT(value) ((value) << 22)
-#define DMA_SR_BIT(bit) DMA_SR_SHIFT(1 << (bit))
-
-void uart_dma_callback(uint8_t *new_buffer) __attribute__((weak));
-void uart_dma_callback(uint8_t *new_buffer) {}
-
-static uint8_t *volatile buffer1, *volatile buffer2;
-
-void DMA_Stream_IRQHandler(void) {
-  uint32_t status = DMA_SR;
-  if (status & DMA_SR_BIT(5)) {  // transfer completed
-    DMA_FCR = DMA_SR_BIT(5);
-    uart_dma_callback(((DMA_Stream->CR & DMA_SxCR_CT) == 0) ? buffer2
-                                                            : buffer1);
-  } else if (status & DMA_SR_BIT(3)) {  // transfer error
-    DMA_FCR = DMA_SR_BIT(3);
-    // Somebody probably wrote to the wrong buffer, which disables the DMA, so
-    // we now need to re-enable it.
-    // If we're fighting somebody else writing stuff, we'll do this a bunch of
-    // times, but oh well.
-    DMA_Stream->CR |= DMA_SxCR_EN;
-    led_set(LED_ERR, 1);
-  }
-}
-
-void uart_dma_configure(int bytes, uint8_t *buffer1_in, uint8_t *buffer2_in) {
-  buffer1 = buffer1_in;
-  buffer2 = buffer2_in;
-  uart_dma_callback(buffer1);
-
-  UART->CR3 = USART_CR3_DMAT;
-  UART->CR1 |= USART_CR1_TE;
-
-  RCC->AHB1ENR |= RCC_AHB1ENR_DMAEN;
-  DMA_Stream->CR = 0;
-  while (DMA_Stream->CR & DMA_SxCR_EN);  // make sure it's disabled
-  DMA_Stream->PAR = (uint32_t)&UART->DR;
-  DMA_Stream->M0AR = (uint32_t)buffer1;
-  DMA_Stream->M1AR = (uint32_t)buffer2;
-  // This is measured in chunks of PSIZE bytes, not MSIZE.
-  DMA_Stream->NDTR = bytes;
-  DMA_Stream->CR = DMA_CHANNEL_NUMBER << 25 |
-      DMA_SxCR_DBM /* enable double buffer mode */ |
-      2 << 16 /* priority */ |
-      2 << 13 /* memory data size = 32 bits */ |
-      0 << 11 /* peripherial data size = 8 bits */ |
-      DMA_SxCR_MINC /* increment memory address */ |
-      1 << 6 /* memory to peripherial */ |
-      DMA_SxCR_TCIE | DMA_SxCR_TEIE;
-  DMA_Stream->FCR =
-      DMA_SxFCR_DMDIS /* disable direct mode (enable the FIFO) */ |
-      1 /* 1/2 full threshold */;
-  UART->SR = ~USART_SR_TC;
-  DMA_FCR = DMA_SR_SHIFT(1 << 0 | 1 << 2 | 1 << 3 | 1 << 4 | 1 << 5);
-  DMA_Stream->CR |= DMA_SxCR_EN;  // enable it
-  NVIC_SetPriority(DMA_Stream_IRQn, 8);
-  NVIC_EnableIRQ(DMA_Stream_IRQn);
-
-  uart_dma_callback(buffer2);
-}
diff --git a/bbb_cape/src/cape/uart_dma.h b/bbb_cape/src/cape/uart_dma.h
deleted file mode 100644
index cc68eed..0000000
--- a/bbb_cape/src/cape/uart_dma.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef CAPE_UART_DMA_H_
-#define CAPE_UART_DMA_H_
-
-#include <stdint.h>
-
-// This file deals with USART1 over DMA. It sets the DMA stream to double-buffer
-// mode and calls a function when it's time to fill a new buffer. It only
-// supports sending.
-
-// Callback to be implemented by the user.
-// Implemented as a weak symbol that does nothing by default.
-// new_buffer is the buffer that should be filled out to be written next.
-void uart_dma_callback(uint8_t *new_buffer);
-
-// uart_common_configure must be called before this.
-// bytes is the size off buffer1 and buffer2.
-// Calls uart_dma_callback twice (for each buffer) to get started.
-void uart_dma_configure(int bytes, uint8_t *buffer1, uint8_t *buffer2);
-
-#endif  // CAPE_UART_DMA_H_
diff --git a/bbb_cape/src/cape/util.c b/bbb_cape/src/cape/util.c
deleted file mode 100644
index 4f2d9e1..0000000
--- a/bbb_cape/src/cape/util.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "cape/util.h"
-
-#include "cape/led.h"
-
-void led_write(uint32_t value, int bits) {
-  for (int i = -2; i < bits; ++i) {
-    led_set(LED_Z, i < 0);
-    for (int ii = 0; ii < 1000000; ++ii) {
-      led_set(LED_ERR, i >= 0 && ii < 500000);
-      if (i >= 0) {
-        led_set(LED_DB, value & (1 << i));
-      } else {
-        led_set(LED_DB, 0);
-      }
-    }
-  }
-}
diff --git a/bbb_cape/src/cape/util.h b/bbb_cape/src/cape/util.h
deleted file mode 100644
index 9188adb..0000000
--- a/bbb_cape/src/cape/util.h
+++ /dev/null
@@ -1,81 +0,0 @@
-#ifndef CAPE_UTIL_H_
-#define CAPE_UTIL_H_
-
-#include <stdint.h>
-
-#include <STM32F2XX.h>
-
-#define ALIAS_WEAK(f) __attribute__ ((weak, alias (#f)))
-
-// MSG has to be separated_with_spaces.
-#define STATIC_ASSERT(COND,MSG) typedef char static_assertion_##MSG[(!!(COND))*2-1]
-
-// Prevents the compiler from reordering memory operations around this.
-static inline void compiler_memory_barrier(void) {
-  __asm__ __volatile__("" ::: "memory");
-}
-
-// Count leading zeros.
-// Returns 0 if bit 31 is set etc.
-__attribute__((always_inline)) static __INLINE uint32_t __clz(uint32_t value) {
-  uint32_t result;
-  __asm__("clz %0, %1" : "=r" (result) : "r" (value));
-  return result;
-}
-
-// Sets number_of_bits (shifted left shift number of slots) to value in
-// variable.
-// This means that the total shift is number_bits*shift.
-#define SET_BITS(variable, number_bits, value, shift) do { \
-  variable = (((variable) & \
-               ~(((1 << (number_bits)) - 1) << (shift * (number_bits)))) | \
-              ((value) << (shift * (number_bits)))); \
-} while (0);
-
-// A convenient way to set up a GPIO pin for some alternate function without
-// missing part or messing up which bits need setting to what.
-// pin is the 0-indexed pin number.
-// afr is 0-0xF for the various alternate functions.
-static inline void gpio_setup_alt(GPIO_TypeDef *port, int pin, int afr) {
-  SET_BITS(port->MODER, 2, 2 /* alternate function */, pin);
-  if (pin < 8) {
-    SET_BITS(port->AFR[0], 4, afr, pin);
-  } else {
-    SET_BITS(port->AFR[1], 4, afr, (pin - 8));
-  }
-}
-
-// A convenient way to set up a GPIO pin for output (push-pull) without missing
-// part or messing up which bits need setting to what.
-// speed is 0 (slow) to 3 (fast)
-static inline void gpio_setup_out(GPIO_TypeDef *port, int pin, int speed) {
-  SET_BITS(port->MODER, 2, 1 /* output */, pin);
-  SET_BITS(port->OSPEEDR, 2, speed, pin);
-}
-
-static inline void gpio_setup_in(GPIO_TypeDef *port, int pin) {
-  SET_BITS(port->MODER, 2, 0 /* input */, pin);
-}
-
-// dir: 0 => none, 1 => up, 2 => down
-static inline void gpio_set_pupd(GPIO_TypeDef *port, int pin, int dir) {
-  SET_BITS(port->PUPDR, 2, dir, pin);
-}
-
-// exti is which EXTI line to set
-// port is 0 for A, 1 for B, etc
-static inline void EXTI_set(int exti, int port) {
-  SET_BITS(SYSCFG->EXTICR[exti / 4], 4, port, exti % 4);
-}
-
-static inline void gpio_on(GPIO_TypeDef *port, int pin) {
-  port->BSRRL = 1 << pin;
-}
-
-static inline void gpio_off(GPIO_TypeDef *port, int pin) {
-  port->BSRRH = 1 << pin;
-}
-
-void led_write(uint32_t value, int bits);
-
-#endif  // CAPE_UTIL_H_
diff --git a/bbb_cape/src/flasher/build.sh b/bbb_cape/src/flasher/build.sh
deleted file mode 100755
index ecf6a2b..0000000
--- a/bbb_cape/src/flasher/build.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-
-cd $(dirname $0)
-
-../../../aos/build/build.sh linux flasher.gyp no flasher "$@"
diff --git a/bbb_cape/src/flasher/flasher.gyp b/bbb_cape/src/flasher/flasher.gyp
deleted file mode 100644
index 09e4ccf..0000000
--- a/bbb_cape/src/flasher/flasher.gyp
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'All',
-      'type': 'none',
-      'dependencies': [
-        'stm32_flasher',
-      ],
-    },
-    {
-      'target_name': 'stm32_flasher',
-      'type': 'executable',
-      'sources': [
-        'stm32_flasher.cc',
-      ],
-      'dependencies': [
-        '<(EXTERNALS):stm32flash',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(DEPTH)/bbb_cape/src/bbb/bbb.gyp:gpios',
-        '<(DEPTH)/bbb_cape/src/bbb/bbb.gyp:export_uart',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/libc/libc.gyp:dirname',
-      ],
-    },
-  ],
-}
diff --git a/bbb_cape/src/flasher/stm32_flasher.cc b/bbb_cape/src/flasher/stm32_flasher.cc
deleted file mode 100644
index 639908a..0000000
--- a/bbb_cape/src/flasher/stm32_flasher.cc
+++ /dev/null
@@ -1,233 +0,0 @@
-#include <libgen.h>
-#include <string.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-
-#include <string>
-
-#include "aos/common/logging/logging.h"
-#include "aos/common/logging/logging_impl.h"
-#include "aos/common/time.h"
-#include "aos/common/libc/dirname.h"
-
-extern "C" {
-#include "stm32flash/parsers/parser.h"
-#include "stm32flash/parsers/hex.h"
-#include "stm32flash/serial.h"
-#include "stm32flash/stm32.h"
-#include "stm32flash/init.h"
-}
-
-#include "bbb/gpo.h"
-#include "bbb/export_uart.h"
-
-namespace {
-
-void Reset(bool into_bootloader) {
-  ::bbb::Gpo reset(2, 5, true);
-  ::bbb::Gpo bootloader(2, 2, into_bootloader);
-  static constexpr ::aos::time::Time kWaitTime =
-      ::aos::time::Time::InSeconds(0.1);
-  reset.Set(false);
-  ::aos::time::SleepFor(kWaitTime);
-  reset.Set(true);
-  ::aos::time::SleepFor(kWaitTime);
-}
-
-}  // namespace
-
-int main(int argc, char **argv) {
-  ::aos::logging::Init();
-  ::aos::logging::AddImplementation(
-      new ::aos::logging::StreamLogImplementation(stdout));
-
-  Reset(true);
-
-  if (argc < 2) {
-    fputs("Need an argument saying which target to download.\n", stderr);
-    return 1;
-  }
-  ::std::string target = argv[1];
-
-  serial_baud_t baud_rate = SERIAL_BAUD_57600;
-
-  ::std::string filename = ::aos::libc::Dirname(argv[0]) +
-                           "/../../../bbb_cape/src/cape/.obj/" + target +
-                           ".hex";
-
-  int file = open(filename.c_str(), O_RDONLY);
-  if (file == -1) {
-    filename = target;
-    file = open(filename.c_str(), O_RDONLY);
-    if (file == -1) {
-      PLOG(FATAL, "open(%s, O_RDONLY) failed", filename.c_str());
-    } else {
-      LOG(INFO, "using filename %s from the command line\n", filename.c_str());
-    }
-  }
-
-  uint16_t start_address = 0;
-  {
-    uint8_t buffer[1 /* : */ + 2 /* record size */ + 4 /* address */ +
-        2 /* record type */];
-    ssize_t bytes = read(file, buffer, sizeof(buffer));
-    if (close(file) == -1) {
-      PLOG(FATAL, "close(%d) failed", file);
-    }
-    if (bytes != sizeof(buffer)) {
-      LOG(FATAL, "read %zd bytes from %s instead of %zu\n",
-          bytes, filename.c_str(), sizeof(buffer));
-    }
-    if (buffer[0] != ':' || buffer[7] != '0' || buffer[8] != '0') {
-      LOG(FATAL, "%s isn't a valid hex file that we know how to handle\n",
-          filename.c_str());
-    }
-    for (int i = 0; i < 4; ++i) {
-      uint8_t digit = buffer[3 + i];
-      int value;
-      if (digit >= '0' && digit <= '9') {
-        value = digit - '0';
-      } else if (digit >= 'a' && digit <= 'f') {
-        value = digit - 'a';
-      } else if (digit >= 'A' && digit <= 'F') {
-        value = digit - 'A';
-      } else {
-        LOG(FATAL, "unknown hex digit %c\n", digit);
-      }
-      start_address |= value << (12 - (4 * i));
-    }
-    LOG(INFO, "start address = 0x%x\n", start_address);
-  }
-
-  parser_t *parser = &PARSER_HEX;
-  void *p_st = parser->init();
-  if (p_st == NULL) {
-    LOG(FATAL, "%s parser failed to initialize.\n", parser->name);
-  }
-  if (parser->open(p_st, filename.c_str(), 0) != PARSER_ERR_OK) {
-    PLOG(FATAL, "opening file %s failed\n", filename.c_str());
-  }
-
-  ::bbb::ExportUart();
-
-  const char *device = ::bbb::UartDevice();
-
-  serial_t *serial = serial_open(device);
-  if (serial == NULL) {
-    PLOG(FATAL, "failed to open serial port %s", device);
-  }
-  if (serial_setup(serial, baud_rate,
-                   SERIAL_BITS_8,
-                   SERIAL_PARITY_EVEN,
-                   SERIAL_STOPBIT_1) != SERIAL_ERR_OK) {
-    PLOG(FATAL, "setting up serial port %s failed", device);
-  }
-  LOG(INFO, "serial configuration: %s\n", serial_get_setup_str(serial));
-
-  if (init_bl_entry(serial, NULL /* GPIO sequence */) == 0) {
-    LOG(FATAL, "init_bl_entry(%p, NULL) failed\n", serial);
-  }
-  stm32_t *stm = stm32_init(serial, true);
-  if (stm == NULL) {
-    LOG(FATAL, "stm32_init(%p, true) failed\n", serial);
-  }
-
-  unsigned int last_byte = parser->size(p_st);
-  unsigned int size = last_byte - start_address;
-
-  // An array of the sizes of each sector.
-  static const uint32_t kSectorSizes[12] = {0x4000, 0x4000, 0x4000, 0x4000,
-                                            0x10000, 0x20000, 0x20000, 0x20000,
-                                            0x20000, 0x20000, 0x20000, 0x20000};
-  static const int kNumSectors = sizeof(kSectorSizes) / sizeof(kSectorSizes[0]);
-  // The sector number that we're going to start writing at.
-  int start_sector = 0;
-  for (uint32_t address = 0; start_sector <= kNumSectors;
-       address += kSectorSizes[start_sector++]) {
-    if (start_sector == kNumSectors) {
-      LOG(FATAL, "start address %x is too big\n", start_address);
-    }
-    if (address > start_address) {
-      LOG(FATAL, "start address %x is not on a sector boundary\n",
-          start_address);
-    }
-    if (address == start_address) break;
-  }
-
-  // The first sector that we're not going to erase.
-  int end_sector = 0;
-  for (uint32_t address = 0; end_sector <= kNumSectors;
-       address += kSectorSizes[end_sector++]) {
-    if (address > start_address + size) break;
-    if (end_sector == kNumSectors) {
-      LOG(FATAL, "%x bytes beyond start address of %x is too big\n",
-          size, start_address);
-    }
-  }
-
-  if (!stm32_erase_memory(stm, start_sector, end_sector - start_sector)) {
-    LOG(FATAL, "failed to erase memory\n");
-  }
-
-  // Read all of the 0xFFs that the parser inserts to pad the data out.
-  {
-    uint8_t garbage[1024];
-    size_t length = start_address;
-    while (length > 0) {
-      uint32_t read = ::std::min(sizeof(garbage), length);
-      if (parser->read(p_st, garbage, &read) != PARSER_ERR_OK) {
-        LOG(FATAL, "reading 0xFFs from the hex parser failed\n");
-      }
-      length -= read;
-    }
-  }
-
-  uint32_t kFlashStart = 0x08000000;
-
-  uint8_t buffer[256];  // 256 is the biggest size supported
-  size_t completed = 0;
-  while (completed < size) {
-    uint32_t address = start_address + completed + kFlashStart;
-    uint32_t length = ::std::min(size - completed, sizeof(buffer));
-    if (parser->read(p_st, buffer, &length) != PARSER_ERR_OK) {
-      LOG(FATAL, "reading file failed\n");
-    }
-    if (length == 0) {
-      LOG(FATAL, "failed to read input file\n");
-    }
-    if ((length % 4) != 0) {
-      // Pad the size we want to write to a multiple of 4 bytes.
-      for (unsigned int i = 0; i < (4 - (length % 4)); ++i) {
-        buffer[length++] = 0xFF;
-      }
-    }
-    if (!stm32_write_memory(stm, address, buffer, length)) {
-      LOG(FATAL, "failed to write memory at address 0x%x\n", address);
-    }
-    uint8_t compare_buffer[sizeof(buffer)];
-    if (!stm32_read_memory(stm, address, compare_buffer, length)) {
-      LOG(FATAL, "failed to read memory at address 0x%x\n", address);
-    }
-    if (memcmp(buffer, compare_buffer, length) != 0) {
-      printf("\n");
-      for (size_t i = 0; i < length; ++i) {
-        LOG(DEBUG, "want %x have %x\n", buffer[i], compare_buffer[i]);
-      }
-      LOG(FATAL, "verify from 0x%x to 0x%x failed\n",
-          address, address + length);
-    }
-    completed += length;
-    printf("\rWrote and verified 0x%08zx/0x%08x",
-           completed, size);
-    fflush(stdout);
-  }
-  printf("\n");
-
-  if (init_bl_exit(stm, serial, NULL /* GPIO sequence */)) {
-    LOG(INFO, "all done\n");
-    Reset(false);
-  } else {
-    LOG(FATAL, "init_bl_exit failed\n");
-  }
-}
diff --git a/bot3/actions/actions.gyp b/bot3/actions/actions.gyp
deleted file mode 100644
index a1c0130..0000000
--- a/bot3/actions/actions.gyp
+++ /dev/null
@@ -1,101 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'action_client',
-      'type': 'static_library',
-      'sources': [
-        #'<(DEPTH)/frc971/actions/action_client.h',
-      ],
-      'dependencies': [
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/common/common.gyp:queues',
-      ],
-      'export_dependent_settings': [
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/common/common.gyp:queues',
-      ],
-    },
-    {
-      'target_name': 'action_queue',
-      'type': 'static_library',
-      'sources': [
-        '<(DEPTH)/frc971/actions/action.q',
-      ],
-      'variables': {
-        'header_path': 'frc971/actions',
-      },
-      'includes': ['../../aos/build/queues.gypi'],
-    },
-    {
-      'target_name': 'drivetrain_action_queue',
-      'type': 'static_library',
-      'sources': [
-        '<(DEPTH)/frc971/actions/drivetrain_action.q',
-      ],
-      'variables': {
-        'header_path': 'frc971/actions',
-      },
-      'dependencies': [
-        'action_queue',
-      ],
-      'export_dependent_settings': [
-        'action_queue',
-      ],
-      'includes': ['../../aos/build/queues.gypi'],
-    },
-    {
-      'target_name': 'drivetrain_action_lib',
-      'type': 'static_library',
-      'sources': [
-        'drivetrain_action.cc',
-      ],
-      'dependencies': [
-        'drivetrain_action_queue',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/util/util.gyp:phased_loop',
-        '<(AOS)/build/aos.gyp:logging',
-        'action_client',
-        'action',
-        '<(EXTERNALS):eigen',
-        '<(DEPTH)/bot3/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
-        '<(DEPTH)/bot3/control_loops/drivetrain/drivetrain.gyp:polydrivetrain_plants',
-        '<(AOS)/common/util/util.gyp:trapezoid_profile',
-      ],
-      'export_dependent_settings': [
-        'action',
-        'drivetrain_action_queue',
-        'action_client',
-      ],
-    },
-    {
-      'target_name': 'action',
-      'type': 'static_library',
-      'sources': [
-        #'action.h',
-      ],
-      'dependencies': [
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/logging/logging.gyp:queue_logging',
-      ],
-      'export_dependent_settings': [
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/logging/logging.gyp:queue_logging',
-      ],
-    },
-    {
-      'target_name': 'drivetrain_action',
-      'type': 'executable',
-      'sources': [
-        'drivetrain_action_main.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        'drivetrain_action_queue',
-        'drivetrain_action_lib',
-        'action',
-      ],
-    },
-  ],
-}
diff --git a/bot3/actions/drivetrain_action.cc b/bot3/actions/drivetrain_action.cc
deleted file mode 100644
index 93b3d46..0000000
--- a/bot3/actions/drivetrain_action.cc
+++ /dev/null
@@ -1,164 +0,0 @@
-#include <functional>
-#include <numeric>
-
-#include <Eigen/Dense>
-
-#include "aos/common/util/phased_loop.h"
-#include "aos/common/logging/logging.h"
-#include "aos/common/util/trapezoid_profile.h"
-#include "aos/common/commonmath.h"
-
-#include "bot3/actions/drivetrain_action.h"
-#include "bot3/control_loops/drivetrain/drivetrain.q.h"
-#include "bot3/control_loops/drivetrain/drivetrain_constants.h"
-#include "bot3/control_loops/drivetrain/drivetrain_dog_motor_plant.h"
-
-namespace bot3 {
-namespace actions {
-
-DrivetrainAction::DrivetrainAction(::frc971::actions::DrivetrainActionQueueGroup* s)
-    : ::frc971::actions::ActionBase
-        <::frc971::actions::DrivetrainActionQueueGroup>(s) {}
-
-void DrivetrainAction::RunAction() {
-  static const auto K = control_loops::MakeDrivetrainLoop().K();
-
-  const double yoffset = action_q_->goal->y_offset;
-  const double turn_offset =
-      action_q_->goal->theta_offset * control_loops::kBot3TurnWidth / 2.0;
-  LOG(INFO, "Going to move %f and turn %f\n", yoffset, turn_offset);
-
-  // Measured conversion to get the distance right.
-  ::aos::util::TrapezoidProfile profile(::aos::time::Time::InMS(10));
-  ::aos::util::TrapezoidProfile turn_profile(::aos::time::Time::InMS(10));
-  const double goal_velocity = 0.0;
-  const double epsilon = 0.01;
-  ::Eigen::Matrix<double, 2, 1> left_goal_state, right_goal_state;
-
-  profile.set_maximum_acceleration(action_q_->goal->maximum_acceleration);
-  profile.set_maximum_velocity(action_q_->goal->maximum_velocity);
-  turn_profile.set_maximum_acceleration(
-      10.0 * control_loops::kBot3TurnWidth / 2.0);
-  turn_profile.set_maximum_velocity(3.0 * control_loops::kBot3TurnWidth / 2.0);
-
-  while (true) {
-    // wait until next 10ms tick
-    ::aos::time::PhasedLoop10MS(5000);
-
-    control_loops::drivetrain.status.FetchLatest();
-    if (control_loops::drivetrain.status.get()) {
-      const auto &status = *control_loops::drivetrain.status;
-      if (::std::abs(status.uncapped_left_voltage -
-                     status.uncapped_right_voltage) >
-          24) {
-        LOG(DEBUG, "spinning in place\n");
-        // They're more than 24V apart, so stop moving forwards and let it deal
-        // with spinning first.
-        profile.SetGoal(
-            (status.filtered_left_position + status.filtered_right_position) /
-            2.0);
-      } else {
-        static const double divisor = K(0, 0) + K(0, 2);
-        double dx_left, dx_right;
-        if (status.uncapped_left_voltage > 12.0) {
-          dx_left = (status.uncapped_left_voltage - 12.0) / divisor;
-        } else if (status.uncapped_left_voltage < -12.0) {
-          dx_left = (status.uncapped_left_voltage + 12.0) / divisor;
-        } else {
-          dx_left = 0;
-        }
-        if (status.uncapped_right_voltage > 12.0) {
-          dx_right = (status.uncapped_right_voltage - 12.0) / divisor;
-        } else if (status.uncapped_right_voltage < -12.0) {
-          dx_right = (status.uncapped_right_voltage + 12.0) / divisor;
-        } else {
-          dx_right = 0;
-        }
-        double dx;
-        if (dx_left == 0 && dx_right == 0) {
-          dx = 0;
-        } else if (dx_left != 0 && dx_right != 0 &&
-                   ::aos::sign(dx_left) != ::aos::sign(dx_right)) {
-          // Both saturating in opposite directions. Don't do anything.
-          dx = 0;
-        } else if (::std::abs(dx_left) > ::std::abs(dx_right)) {
-          dx = dx_left;
-        } else {
-          dx = dx_right;
-        }
-        if (dx != 0) {
-          LOG(DEBUG, "adjusting goal by %f\n", dx);
-          profile.MoveGoal(-dx);
-        }
-      }
-    } else {
-      // If we ever get here, that's bad and we should just give up
-      LOG(FATAL, "no drivetrain status!\n");
-    }
-
-    const auto drive_profile_goal_state =
-        profile.Update(yoffset, goal_velocity);
-    const auto turn_profile_goal_state = turn_profile.Update(turn_offset, 0.0);
-    left_goal_state = drive_profile_goal_state - turn_profile_goal_state;
-    right_goal_state = drive_profile_goal_state + turn_profile_goal_state;
-
-    if (::std::abs(drive_profile_goal_state(0, 0) - yoffset) < epsilon &&
-        ::std::abs(turn_profile_goal_state(0, 0) - turn_offset) < epsilon) {
-      break;
-    }
-    if (ShouldCancel()) return;
-
-    LOG(DEBUG, "Driving left to %f, right to %f\n",
-        left_goal_state(0, 0) + action_q_->goal->left_initial_position,
-        right_goal_state(0, 0) + action_q_->goal->right_initial_position);
-    control_loops::drivetrain.goal.MakeWithBuilder()
-        .control_loop_driving(true)
-        .highgear(false)
-        .left_goal(left_goal_state(0, 0) + action_q_->goal->left_initial_position)
-        .right_goal(right_goal_state(0, 0) + action_q_->goal->right_initial_position)
-        .left_velocity_goal(left_goal_state(1, 0))
-        .right_velocity_goal(right_goal_state(1, 0))
-        .Send();
-  }
-  if (ShouldCancel()) return;
-  control_loops::drivetrain.status.FetchLatest();
-  while (!control_loops::drivetrain.status.get()) {
-    LOG(WARNING,
-        "No previous drivetrain status packet, trying to fetch again\n");
-    control_loops::drivetrain.status.FetchNextBlocking();
-    if (ShouldCancel()) return;
-  }
-  while (true) {
-    if (ShouldCancel()) return;
-    const double kPositionThreshold = 0.05;
-
-    const double left_error = ::std::abs(
-        control_loops::drivetrain.status->filtered_left_position -
-        (left_goal_state(0, 0) + action_q_->goal->left_initial_position));
-    const double right_error = ::std::abs(
-        control_loops::drivetrain.status->filtered_right_position -
-        (right_goal_state(0, 0) + action_q_->goal->right_initial_position));
-    const double velocity_error =
-        ::std::abs(control_loops::drivetrain.status->robot_speed);
-    if (left_error < kPositionThreshold && right_error < kPositionThreshold &&
-        velocity_error < 0.2) {
-      break;
-    } else {
-      LOG(DEBUG, "Drivetrain error is %f, %f, %f\n", left_error, right_error,
-          velocity_error);
-    }
-    control_loops::drivetrain.status.FetchNextBlocking();
-  }
-  LOG(INFO, "Done moving\n");
-}
-
-::std::unique_ptr<::frc971::TypedAction< ::frc971::actions::DrivetrainActionQueueGroup>>
-MakeDrivetrainAction() {
-  return ::std::unique_ptr<
-      ::frc971::TypedAction< ::frc971::actions::DrivetrainActionQueueGroup>>(
-      new ::frc971::TypedAction< ::frc971::actions::DrivetrainActionQueueGroup>(
-          &::frc971::actions::drivetrain_action));
-}
-
-}  // namespace actions
-}  // namespace bot3
diff --git a/bot3/actions/drivetrain_action.h b/bot3/actions/drivetrain_action.h
deleted file mode 100644
index fc4b837..0000000
--- a/bot3/actions/drivetrain_action.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef BOT3_ACTIONS_DRIVETRAIN_ACTION_H_
-#define BOT3_ACTIONS_DRIVETRAIN_ACTION_H_
-
-#include <memory>
-
-#include "frc971/actions/action.h"
-#include "frc971/actions/action_client.h"
-#include "frc971/actions/drivetrain_action.q.h"
-
-namespace bot3 {
-namespace actions {
-
-class DrivetrainAction : public
-    ::frc971::actions::ActionBase<::frc971::actions::DrivetrainActionQueueGroup> {
- public:
-  explicit DrivetrainAction(::frc971::actions::DrivetrainActionQueueGroup* s);
-
-  virtual void RunAction();
-};
-
-// Makes a new DrivetrainAction action.
-::std::unique_ptr<::frc971::TypedAction
-    < ::frc971::actions::DrivetrainActionQueueGroup>>
-MakeDrivetrainAction();
-
-}  // namespace actions
-}  // namespace bot3
-
-#endif
diff --git a/bot3/actions/drivetrain_action_main.cc b/bot3/actions/drivetrain_action_main.cc
deleted file mode 100644
index d68a3bc..0000000
--- a/bot3/actions/drivetrain_action_main.cc
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <stdio.h>
-
-#include "aos/linux_code/init.h"
-#include "aos/common/logging/logging.h"
-#include "bot3/actions/drivetrain_action.h"
-#include "frc971/actions/drivetrain_action.q.h"
-
-using ::aos::time::Time;
-
-int main(int /*argc*/, char * /*argv*/[]) {
-  ::aos::Init();
-
-  bot3::actions::DrivetrainAction drivetrain(&::frc971::actions::drivetrain_action);
-  drivetrain.Run();
-
-  ::aos::Cleanup();
-  return 0;
-}
-
diff --git a/bot3/autonomous/auto.cc b/bot3/autonomous/auto.cc
deleted file mode 100644
index ab9ffa5..0000000
--- a/bot3/autonomous/auto.cc
+++ /dev/null
@@ -1,177 +0,0 @@
-#include <stdio.h>
-
-#include <memory>
-
-#include "aos/common/util/phased_loop.h"
-#include "aos/common/time.h"
-#include "aos/common/util/trapezoid_profile.h"
-#include "aos/common/logging/logging.h"
-
-#include "bot3/actions/drivetrain_action.h"
-#include "bot3/control_loops/drivetrain/drivetrain.q.h"
-#include "bot3/control_loops/drivetrain/drivetrain_constants.h"
-#include "bot3/control_loops/rollers/rollers.q.h"
-#include "frc971/actions/action_client.h"
-#include "frc971/actions/drivetrain_action.q.h"
-#include "frc971/autonomous/auto.q.h"
-#include "frc971/queues/other_sensors.q.h"
-
-using ::aos::time::Time;
-
-namespace bot3 {
-namespace autonomous {
-
-namespace time = ::aos::time;
-
-static double left_initial_position, right_initial_position;
-
-bool ShouldExitAuto() {
-  ::frc971::autonomous::autonomous.FetchLatest();
-  bool ans = !::frc971::autonomous::autonomous->run_auto;
-  if (ans) {
-    LOG(INFO, "Time to exit auto mode\n");
-  }
-  return ans;
-}
-
-void StopDrivetrain() {
-  LOG(INFO, "Stopping the drivetrain\n");
-  control_loops::drivetrain.goal.MakeWithBuilder()
-      .control_loop_driving(true)
-      .left_goal(left_initial_position)
-      .left_velocity_goal(0)
-      .right_goal(right_initial_position)
-      .right_velocity_goal(0)
-      .quickturn(false)
-      .Send();
-}
-
-void ResetDrivetrain() {
-  LOG(INFO, "resetting the drivetrain\n");
-  control_loops::drivetrain.goal.MakeWithBuilder()
-      .control_loop_driving(false)
-      .highgear(false)
-      .steering(0.0)
-      .throttle(0.0)
-      .left_goal(left_initial_position)
-      .left_velocity_goal(0)
-      .right_goal(right_initial_position)
-      .right_velocity_goal(0)
-      .Send();
-}
-
-void WaitUntilDoneOrCanceled(::frc971::Action *action) {
-  while (true) {
-    // Poll the running bit and auto done bits.
-    ::aos::time::PhasedLoop10MS(5000);
-    if (!action->Running() || ShouldExitAuto()) {
-      return;
-    }
-  }
-}
-
-::std::unique_ptr<::frc971::TypedAction
-    < ::frc971::actions::DrivetrainActionQueueGroup>>
-SetDriveGoal(double distance, bool slow_acceleration,
-             double maximum_velocity = 1.7, double theta = 0) {
-  LOG(INFO, "Driving to %f\n", distance);
-  auto drivetrain_action = actions::MakeDrivetrainAction();
-  drivetrain_action->GetGoal()->left_initial_position = left_initial_position;
-  drivetrain_action->GetGoal()->right_initial_position = right_initial_position;
-  drivetrain_action->GetGoal()->y_offset = distance;
-  drivetrain_action->GetGoal()->theta_offset = theta;
-  drivetrain_action->GetGoal()->maximum_velocity = maximum_velocity;
-  drivetrain_action->GetGoal()->maximum_acceleration =
-      slow_acceleration ? 2.5 : 3.0;
-  drivetrain_action->Start();
-  left_initial_position +=
-      distance - theta * control_loops::kBot3TurnWidth / 2.0;
-  right_initial_position +=
-      distance + theta * control_loops::kBot3TurnWidth / 2.0;
-  return ::std::move(drivetrain_action);
-}
-
-void InitializeEncoders() {
-  control_loops::drivetrain.status.FetchLatest();
-  while (!control_loops::drivetrain.status.get()) {
-    LOG(WARNING,
-        "No previous drivetrain position packet, trying to fetch again\n");
-    control_loops::drivetrain.status.FetchNextBlocking();
-  }
-  left_initial_position =
-    control_loops::drivetrain.status->filtered_left_position;
-  right_initial_position =
-    control_loops::drivetrain.status->filtered_right_position;
-
-}
-
-void StopRollers() {
-  control_loops::rollers.goal.MakeWithBuilder()
-    .intake(0)
-    .low_spit(0)
-    .human_player(false)
-    .Send();
-}
-
-void SpitBallFront() {
-  control_loops::rollers.goal.MakeWithBuilder()
-      .intake(0)
-      .low_spit(1)
-      .human_player(false)
-      .Send();
-  time::SleepFor(time::Time::InSeconds(1));
-  StopRollers();
-}
-
-void IntakeBallBack() {
-  control_loops::rollers.goal.MakeWithBuilder()
-    .intake(-1)
-    .low_spit(0)
-    .human_player(false)
-    .Send();
-  time::SleepFor(time::Time::InSeconds(1.5));
-  StopRollers();
-}
-
-void ScoreBall(const double distance, const double velocity) {
-  // Drive to the goal, score, and drive back.
-  {
-    // Drive forward.
-    auto drivetrain_action = SetDriveGoal(distance,
-                                          false, velocity);
-    LOG(INFO, "Waiting until drivetrain is finished.\n");
-    WaitUntilDoneOrCanceled(drivetrain_action.get());
-    time::SleepFor(time::Time::InSeconds(0.5));
-    if (ShouldExitAuto()) return;
-  }
-  {
-    LOG(INFO, "Spitting ball.\n");
-    SpitBallFront();
-    time::SleepFor(time::Time::InSeconds(0.5));
-    if (ShouldExitAuto()) return;
-  }
-  {
-    // Drive back.
-    LOG(INFO, "Driving back.\n");
-    auto drivetrain_action = SetDriveGoal(-distance,
-                                          false, velocity);
-    LOG(INFO, "Waiting until drivetrain is finished.\n");
-    WaitUntilDoneOrCanceled(drivetrain_action.get());
-    if (ShouldExitAuto()) return;
-  }
-}
-
-void HandleAuto() {
-  constexpr double kDriveDistance = 4.86;
-  constexpr double kAutoVelocity = 2.5;
-
-  if (ShouldExitAuto()) return;
-  ResetDrivetrain();
-  InitializeEncoders();
-  if (ShouldExitAuto()) return;
-
-  ScoreBall(kDriveDistance, kAutoVelocity);
-}
-
-}  // namespace autonomous
-}  // namespace bot3
diff --git a/bot3/autonomous/auto.h b/bot3/autonomous/auto.h
deleted file mode 100644
index 896d22c..0000000
--- a/bot3/autonomous/auto.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef BOT3_AUTONOMOUS_AUTO_H_
-#define BOT3_AUTONOMOUS_AUTO_H_
-
-namespace bot3 {
-namespace autonomous {
-
-void HandleAuto();
-
-}  // namespace autonomous
-}  // namespace bot3
-
-#endif  // BOT3_AUTONOMOUS_AUTO_H_
diff --git a/bot3/autonomous/auto_main.cc b/bot3/autonomous/auto_main.cc
deleted file mode 100644
index eb8f865..0000000
--- a/bot3/autonomous/auto_main.cc
+++ /dev/null
@@ -1,42 +0,0 @@
-#include <stdio.h>
-
-#include "aos/common/time.h"
-#include "aos/linux_code/init.h"
-#include "aos/common/logging/logging.h"
-#include "bot3/autonomous/auto.h"
-#include "frc971/autonomous/auto.q.h"
-
-using ::aos::time::Time;
-
-int main(int /*argc*/, char * /*argv*/[]) {
-  ::aos::Init();
-
-  LOG(INFO, "Auto main started\n");
-  ::frc971::autonomous::autonomous.FetchLatest();
-  while (!::frc971::autonomous::autonomous.get()) {
-    ::frc971::autonomous::autonomous.FetchNextBlocking();
-    LOG(INFO, "Got another auto packet\n");
-  }
-
-  while (true) {
-    while (!::frc971::autonomous::autonomous->run_auto) {
-      ::frc971::autonomous::autonomous.FetchNextBlocking();
-      LOG(INFO, "Got another auto packet\n");
-    }
-    LOG(INFO, "Starting auto mode\n");
-    ::aos::time::Time start_time = ::aos::time::Time::Now();
-    ::bot3::autonomous::HandleAuto();
-
-    ::aos::time::Time elapsed_time = ::aos::time::Time::Now() - start_time;
-    LOG(INFO, "Auto mode exited in %f, waiting for it to finish.\n",
-        elapsed_time.ToSeconds());
-    while (::frc971::autonomous::autonomous->run_auto) {
-      ::frc971::autonomous::autonomous.FetchNextBlocking();
-      LOG(INFO, "Got another auto packet\n");
-    }
-    LOG(INFO, "Waiting for auto to start back up.\n");
-  }
-  ::aos::Cleanup();
-  return 0;
-}
-
diff --git a/bot3/autonomous/autonomous.gyp b/bot3/autonomous/autonomous.gyp
deleted file mode 100644
index 01d95d0..0000000
--- a/bot3/autonomous/autonomous.gyp
+++ /dev/null
@@ -1,50 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'auto_queue',
-      'type': 'static_library',
-      'sources': [
-        '<(DEPTH)/frc971/autonomous/auto.q',
-      ],
-      'variables': {
-        'header_path': 'frc971/autonomous',
-      },
-      'includes': ['../../aos/build/queues.gypi'],
-    },
-    {
-      'target_name': 'auto_lib',
-      'type': 'static_library',
-      'sources': [
-        'auto.cc',
-      ],
-      'dependencies': [
-        'auto_queue',
-        '<(AOS)/common/controls/controls.gyp:control_loop',
-        '<(DEPTH)/bot3/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
-        '<(DEPTH)/bot3/control_loops/rollers/rollers.gyp:rollers_loop',
-        '<(DEPTH)/bot3/actions/actions.gyp:action_client',
-        '<(DEPTH)/bot3/actions/actions.gyp:drivetrain_action_lib',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/util/util.gyp:phased_loop',
-        '<(AOS)/common/util/util.gyp:trapezoid_profile',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(DEPTH)/frc971/queues/queues.gyp:queues',
-      ],
-      'export_dependent_settings': [
-        '<(AOS)/common/controls/controls.gyp:control_loop',
-      ],
-    },
-    {
-      'target_name': 'auto',
-      'type': 'executable',
-      'sources': [
-        'auto_main.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        'auto_queue',
-        'auto_lib',
-      ],
-    },
-  ],
-}
diff --git a/bot3/control_loops/drivetrain/drivetrain.cc b/bot3/control_loops/drivetrain/drivetrain.cc
deleted file mode 100644
index 3a40836..0000000
--- a/bot3/control_loops/drivetrain/drivetrain.cc
+++ /dev/null
@@ -1,718 +0,0 @@
-#include "bot3/control_loops/drivetrain/drivetrain.h"
-
-#include <math.h>
-#include <stdio.h>
-#include <sched.h>
-
-#include <functional>
-#include <memory>
-
-#include "Eigen/Dense"
-
-#include "aos/common/logging/logging.h"
-#include "aos/common/controls/polytope.h"
-#include "aos/common/commonmath.h"
-#include "aos/common/logging/queue_logging.h"
-#include "aos/common/logging/matrix_logging.h"
-
-#include "bot3/control_loops/drivetrain/drivetrain.q.h"
-#include "bot3/control_loops/drivetrain/drivetrain_constants.h"
-#include "bot3/control_loops/drivetrain/drivetrain_dog_motor_plant.h"
-#include "bot3/control_loops/drivetrain/polydrivetrain_cim_plant.h"
-#include "bot3/control_loops/drivetrain/polydrivetrain_dog_motor_plant.h"
-#include "bot3/shifter_hall_effect.h"
-#include "frc971/control_loops/coerce_goal.h"
-#include "frc971/control_loops/state_feedback_loop.h"
-#include "frc971/queues/other_sensors.q.h"
-
-using ::frc971::sensors::gyro_reading;
-using ::frc971::control_loops::DoCoerceGoal;
-using ::frc971::control_loops::CoerceGoal;
-
-namespace bot3 {
-namespace control_loops {
-
-class DrivetrainMotorsSS {
- public:
-  class LimitedDrivetrainLoop : public StateFeedbackLoop<4, 2, 2> {
-   public:
-    LimitedDrivetrainLoop(StateFeedbackLoop<4, 2, 2> &&loop)
-        : StateFeedbackLoop<4, 2, 2>(::std::move(loop)),
-        U_Poly_((Eigen::Matrix<double, 4, 2>() << 1, 0,
-                 -1, 0,
-                 0, 1,
-                 0, -1).finished(),
-                (Eigen::Matrix<double, 4, 1>() << 12.0, 12.0,
-                 12.0, 12.0).finished()) {
-      ::aos::controls::HPolytope<0>::Init();
-      T << 1, -1, 1, 1;
-      T_inverse = T.inverse();
-    }
-
-    bool output_was_capped() const {
-      return output_was_capped_;
-    }
-
-   private:
-    virtual void CapU() {
-      const Eigen::Matrix<double, 4, 1> error = R() - X_hat();
-
-      if (::std::abs(U(0, 0)) > 12.0 || ::std::abs(U(1, 0)) > 12.0) {
-        output_was_capped_ = true;
-        LOG_MATRIX(DEBUG, "U at start", U());
-
-        Eigen::Matrix<double, 2, 2> position_K;
-        position_K << K(0, 0), K(0, 2),
-                   K(1, 0), K(1, 2);
-        Eigen::Matrix<double, 2, 2> velocity_K;
-        velocity_K << K(0, 1), K(0, 3),
-                   K(1, 1), K(1, 3);
-
-        Eigen::Matrix<double, 2, 1> position_error;
-        position_error << error(0, 0), error(2, 0);
-        const auto drive_error = T_inverse * position_error;
-        Eigen::Matrix<double, 2, 1> velocity_error;
-        velocity_error << error(1, 0), error(3, 0);
-        LOG_MATRIX(DEBUG, "error", error);
-
-        const auto &poly = U_Poly_;
-        const Eigen::Matrix<double, 4, 2> pos_poly_H =
-            poly.H() * position_K * T;
-        const Eigen::Matrix<double, 4, 1> pos_poly_k =
-            poly.k() - poly.H() * velocity_K * velocity_error;
-        const ::aos::controls::HPolytope<2> pos_poly(pos_poly_H, pos_poly_k);
-
-        Eigen::Matrix<double, 2, 1> adjusted_pos_error;
-        {
-          const auto &P = drive_error;
-
-          Eigen::Matrix<double, 1, 2> L45;
-          L45 << ::aos::sign(P(1, 0)), -::aos::sign(P(0, 0));
-          const double w45 = 0;
-
-          Eigen::Matrix<double, 1, 2> LH;
-          if (::std::abs(P(0, 0)) > ::std::abs(P(1, 0))) {
-            LH << 0, 1;
-          } else {
-            LH << 1, 0;
-          }
-          const double wh = LH.dot(P);
-
-          Eigen::Matrix<double, 2, 2> standard;
-          standard << L45, LH;
-          Eigen::Matrix<double, 2, 1> W;
-          W << w45, wh;
-          const Eigen::Matrix<double, 2, 1> intersection =
-              standard.inverse() * W;
-
-          bool is_inside_h;
-          const auto adjusted_pos_error_h =
-              DoCoerceGoal(pos_poly, LH, wh, drive_error, &is_inside_h);
-          const auto adjusted_pos_error_45 =
-              DoCoerceGoal(pos_poly, L45, w45, intersection, nullptr);
-          if (pos_poly.IsInside(intersection)) {
-            adjusted_pos_error = adjusted_pos_error_h;
-          } else {
-            if (is_inside_h) {
-              if (adjusted_pos_error_h.norm() > adjusted_pos_error_45.norm()) {
-                adjusted_pos_error = adjusted_pos_error_h;
-              } else {
-                adjusted_pos_error = adjusted_pos_error_45;
-              }
-            } else {
-              adjusted_pos_error = adjusted_pos_error_45;
-            }
-          }
-        }
-
-        LOG_MATRIX(DEBUG, "adjusted_pos_error", adjusted_pos_error);
-        mutable_U() =
-            velocity_K * velocity_error + position_K * T * adjusted_pos_error;
-        LOG_MATRIX(DEBUG, "U is now", U());
-      } else {
-        output_was_capped_ = false;
-      }
-    }
-
-    const ::aos::controls::HPolytope<2> U_Poly_;
-    Eigen::Matrix<double, 2, 2> T, T_inverse;
-    bool output_was_capped_ = false;;
-  };
-
-  DrivetrainMotorsSS()
-      : loop_(new LimitedDrivetrainLoop(
-            MakeDrivetrainLoop())),
-        filtered_offset_(0.0),
-        gyro_(0.0),
-        left_goal_(0.0),
-        right_goal_(0.0),
-        raw_left_(0.0),
-        raw_right_(0.0) {
-    // Low gear on both.
-    loop_->set_controller_index(0);
-  }
-
-  void SetGoal(double left, double left_velocity, double right,
-               double right_velocity) {
-    left_goal_ = left;
-    right_goal_ = right;
-    loop_->mutable_R() << left, left_velocity, right, right_velocity;
-  }
-  void SetRawPosition(double left, double right) {
-    raw_right_ = right;
-    raw_left_ = left;
-    Eigen::Matrix<double, 2, 1> Y;
-    Y << left + filtered_offset_, right - filtered_offset_;
-    loop_->Correct(Y);
-  }
-  void SetPosition(double left, double right, double gyro) {
-    // Decay the offset quickly because this gyro is great.
-    const double offset =
-        (right - left - gyro * kBot3TurnWidth) / 2.0;
-    // TODO(brians): filtered_offset_ = offset first time around.
-    filtered_offset_ = 0.25 * offset + 0.75 * filtered_offset_;
-    gyro_ = gyro;
-    SetRawPosition(left, right);
-  }
-
-  void SetExternalMotors(double left_voltage, double right_voltage) {
-    loop_->mutable_U() << left_voltage, right_voltage;
-  }
-
-  void Update(bool stop_motors, bool enable_control_loop) {
-    if (enable_control_loop) {
-      loop_->Update(stop_motors);
-    } else {
-      if (stop_motors) {
-        loop_->mutable_U().setZero();
-        loop_->mutable_U_uncapped().setZero();
-      }
-      loop_->UpdateObserver();
-    }
-    ::Eigen::Matrix<double, 4, 1> E = loop_->R() - loop_->X_hat();
-    LOG_MATRIX(DEBUG, "E", E);
-  }
-
-  double GetEstimatedRobotSpeed() const {
-    // lets just call the average of left and right velocities close enough
-    return (loop_->X_hat(1, 0) + loop_->X_hat(3, 0)) / 2;
-  }
-
-  double GetEstimatedLeftEncoder() const {
-    return loop_->X_hat(0, 0);
-  }
-
-  double GetEstimatedRightEncoder() const {
-    return loop_->X_hat(2, 0);
-  }
-
-  bool OutputWasCapped() const {
-    return loop_->output_was_capped();
-  }
-
-  void SendMotors(Drivetrain::Output *output) const {
-    if (output) {
-      output->left_voltage = loop_->U(0, 0);
-      output->right_voltage = loop_->U(1, 0);
-      output->left_high = false;
-      output->right_high = false;
-    }
-  }
-
-  const LimitedDrivetrainLoop &loop() const { return *loop_; }
-
- private:
-  ::std::unique_ptr<LimitedDrivetrainLoop> loop_;
-
-  double filtered_offset_;
-  double gyro_;
-  double left_goal_;
-  double right_goal_;
-  double raw_left_;
-  double raw_right_;
-};
-
-class PolyDrivetrain {
- public:
-
-  enum Gear {
-    HIGH,
-    LOW,
-    SHIFTING_UP,
-    SHIFTING_DOWN
-  };
-  // Stall Torque in N m
-  static constexpr double kStallTorque = 2.42;
-  // Stall Current in Amps
-  static constexpr double kStallCurrent = 133;
-  // Free Speed in RPM. Used number from last year.
-  static constexpr double kFreeSpeed = 4650.0;
-  // Free Current in Amps
-  static constexpr double kFreeCurrent = 2.7;
-  // Moment of inertia of the drivetrain in kg m^2
-  // Just borrowed from last year.
-  static constexpr double J = 6.4;
-  // Mass of the robot, in kg.
-  static constexpr double m = 68;
-  // Radius of the robot, in meters (from last year).
-  static constexpr double rb = 0.617998644 / 2.0;
-  static constexpr double kWheelRadius = 0.04445;
-  // Resistance of the motor, divided by the number of motors.
-  static constexpr double kR = (12.0 / kStallCurrent / 4 + 0.03) / (0.93 * 0.93);
-  // Motor velocity constant
-  static constexpr double Kv =
-      ((kFreeSpeed / 60.0 * 2.0 * M_PI) / (12.0 - kR * kFreeCurrent));
-  // Torque constant
-  static constexpr double Kt = kStallTorque / kStallCurrent;
-
-  PolyDrivetrain()
-      : U_Poly_((Eigen::Matrix<double, 4, 2>() << /*[[*/ 1, 0 /*]*/,
-                 /*[*/ -1, 0 /*]*/,
-                 /*[*/ 0, 1 /*]*/,
-                 /*[*/ 0, -1 /*]]*/).finished(),
-                (Eigen::Matrix<double, 4, 1>() << /*[[*/ 12 /*]*/,
-                 /*[*/ 12 /*]*/,
-                 /*[*/ 12 /*]*/,
-                 /*[*/ 12 /*]]*/).finished()),
-        loop_(new StateFeedbackLoop<2, 2, 2>(
-            MakeVelocityDrivetrainLoop())),
-        ttrust_(1.1),
-        wheel_(0.0),
-        throttle_(0.0),
-        quickturn_(false),
-        stale_count_(0),
-        position_time_delta_(0.01),
-        left_gear_(LOW),
-        right_gear_(LOW),
-        counter_(0) {
-
-    last_position_.Zero();
-    position_.Zero();
-  }
-  static bool IsInGear(Gear gear) { return gear == LOW || gear == HIGH; }
-
-  static double MotorSpeed(const constants::ShifterHallEffect &hall_effect,
-                           double shifter_position, double velocity, Gear gear) {
-    // TODO(austin): G_high, G_low and kWheelRadius
-    const double avg_hall_effect =
-        (hall_effect.clear_high + hall_effect.clear_low) / 2.0;
-
-    const bool use_high =
-        kBot3SimpleShifting ? gear == HIGH : shifter_position > avg_hall_effect;
-    if (use_high) {
-      return velocity / kBot3HighGearRatio / kWheelRadius;
-    } else {
-      return velocity / kBot3LowGearRatio / kWheelRadius;
-    }
-  }
-
-  void SetGoal(double wheel, double throttle, bool quickturn, bool highgear) {
-    const double kWheelNonLinearity = 0.3;
-    // Apply a sin function that's scaled to make it feel better.
-    const double angular_range = M_PI_2 * kWheelNonLinearity;
-    wheel_ = sin(angular_range * wheel) / sin(angular_range);
-    wheel_ = sin(angular_range * wheel_) / sin(angular_range);
-    quickturn_ = quickturn;
-
-    static const double kThrottleDeadband = 0.05;
-    if (::std::abs(throttle) < kThrottleDeadband) {
-      throttle_ = 0;
-    } else {
-      throttle_ = copysign((::std::abs(throttle) - kThrottleDeadband) /
-                           (1.0 - kThrottleDeadband), throttle);
-    }
-
-    // TODO(austin): Fix the upshift logic to include states.
-    Gear requested_gear;
-    requested_gear = highgear ? HIGH : LOW;
-
-    // Can be set to HIGH and LOW instead if we want to use simple shifting.
-    const Gear shift_up = kBot3SimpleShifting ? HIGH : SHIFTING_UP;
-    const Gear shift_down = kBot3SimpleShifting ? LOW : SHIFTING_DOWN;
-
-    if (left_gear_ != requested_gear) {
-      if (IsInGear(left_gear_)) {
-        if (requested_gear == HIGH) {
-          left_gear_ = shift_up;
-        } else {
-          left_gear_ = shift_down;
-        }
-      } else {
-        if (requested_gear == HIGH && left_gear_ == SHIFTING_DOWN) {
-          left_gear_ = SHIFTING_UP;
-        } else if (requested_gear == LOW && left_gear_ == SHIFTING_UP) {
-          left_gear_ = SHIFTING_DOWN;
-        }
-      }
-    }
-    if (right_gear_ != requested_gear) {
-      if (IsInGear(right_gear_)) {
-        if (requested_gear == HIGH) {
-          right_gear_ = shift_up;
-        } else {
-          right_gear_ = shift_down;
-        }
-      } else {
-        if (requested_gear == HIGH && right_gear_ == SHIFTING_DOWN) {
-          right_gear_ = SHIFTING_UP;
-        } else if (requested_gear == LOW && right_gear_ == SHIFTING_UP) {
-          right_gear_ = SHIFTING_DOWN;
-        }
-      }
-    }
-  }
-
-  void SetPosition(const Drivetrain::Position *position) {
-    if (position == NULL) {
-      ++stale_count_;
-    } else {
-      last_position_ = position_;
-      position_ = *position;
-      position_time_delta_ = (stale_count_ + 1) * 0.01;
-      stale_count_ = 0;
-    }
-
-    if (position) {
-      GearLogging gear_logging;
-      // Switch to the correct controller.
-      const double left_middle_shifter_position =
-          (kBot3LeftDriveShifter.clear_high +
-          kBot3LeftDriveShifter.clear_low) / 2.0;
-      const double right_middle_shifter_position =
-          (kBot3RightDriveShifter.clear_high +
-          kBot3RightDriveShifter.clear_low) / 2.0;
-
-      if (position->left_shifter_position < left_middle_shifter_position ||
-          left_gear_ == LOW) {
-        if (position->right_shifter_position < right_middle_shifter_position ||
-            right_gear_ == LOW) {
-          gear_logging.left_loop_high = false;
-          gear_logging.right_loop_high = false;
-          loop_->set_controller_index(gear_logging.controller_index = 0);
-        } else {
-          gear_logging.left_loop_high = false;
-          gear_logging.right_loop_high = true;
-          loop_->set_controller_index(gear_logging.controller_index = 1);
-        }
-      } else {
-        if (position->right_shifter_position < right_middle_shifter_position ||
-            right_gear_ == LOW) {
-          gear_logging.left_loop_high = true;
-          gear_logging.right_loop_high = false;
-          loop_->set_controller_index(gear_logging.controller_index = 2);
-        } else {
-          gear_logging.left_loop_high = true;
-          gear_logging.right_loop_high = true;
-          loop_->set_controller_index(gear_logging.controller_index = 3);
-        }
-      }
-
-      // TODO(austin): Constants.
-      if (position->left_shifter_position >
-          kBot3LeftDriveShifter.clear_high &&
-          left_gear_ == SHIFTING_UP) {
-        left_gear_ = HIGH;
-      }
-      if (position->left_shifter_position <
-          kBot3LeftDriveShifter.clear_low &&
-          left_gear_ == SHIFTING_DOWN) {
-        left_gear_ = LOW;
-      }
-      if (position->right_shifter_position >
-          kBot3RightDriveShifter.clear_high &&
-          right_gear_ == SHIFTING_UP) {
-        right_gear_ = HIGH;
-      }
-      if (position->right_shifter_position <
-          kBot3RightDriveShifter.clear_low &&
-          right_gear_ == SHIFTING_DOWN) {
-        right_gear_ = LOW;
-      }
-
-      gear_logging.left_state = left_gear_;
-      gear_logging.right_state = right_gear_;
-      LOG_STRUCT(DEBUG, "state", gear_logging);
-    }
-  }
-
-  double FilterVelocity(double throttle) {
-    const Eigen::Matrix<double, 2, 2> FF =
-        loop_->B().inverse() *
-        (Eigen::Matrix<double, 2, 2>::Identity() - loop_->A());
-
-    constexpr int kHighGearController = 3;
-    const Eigen::Matrix<double, 2, 2> FF_high =
-        loop_->controller(kHighGearController).plant.B().inverse() *
-        (Eigen::Matrix<double, 2, 2>::Identity() -
-         loop_->controller(kHighGearController).plant.A());
-
-    ::Eigen::Matrix<double, 1, 2> FF_sum = FF.colwise().sum();
-    int min_FF_sum_index;
-    const double min_FF_sum = FF_sum.minCoeff(&min_FF_sum_index);
-    const double min_K_sum = loop_->K().col(min_FF_sum_index).sum();
-    const double high_min_FF_sum = FF_high.col(0).sum();
-
-    const double adjusted_ff_voltage = ::aos::Clip(
-        throttle * 12.0 * min_FF_sum / high_min_FF_sum, -12.0, 12.0);
-    return ((adjusted_ff_voltage +
-             ttrust_ * min_K_sum * (loop_->X_hat(0, 0) + loop_->X_hat(1, 0)) / 2.0) /
-            (ttrust_ * min_K_sum + min_FF_sum));
-  }
-
-  double MaxVelocity() {
-    const Eigen::Matrix<double, 2, 2> FF =
-        loop_->B().inverse() *
-        (Eigen::Matrix<double, 2, 2>::Identity() - loop_->A());
-
-    constexpr int kHighGearController = 3;
-    const Eigen::Matrix<double, 2, 2> FF_high =
-        loop_->controller(kHighGearController).plant.B().inverse() *
-        (Eigen::Matrix<double, 2, 2>::Identity() -
-         loop_->controller(kHighGearController).plant.A());
-
-    ::Eigen::Matrix<double, 1, 2> FF_sum = FF.colwise().sum();
-    int min_FF_sum_index;
-    const double min_FF_sum = FF_sum.minCoeff(&min_FF_sum_index);
-    //const double min_K_sum = loop_->K().col(min_FF_sum_index).sum();
-    const double high_min_FF_sum = FF_high.col(0).sum();
-
-    const double adjusted_ff_voltage = ::aos::Clip(
-        12.0 * min_FF_sum / high_min_FF_sum, -12.0, 12.0);
-    return adjusted_ff_voltage / min_FF_sum;
-  }
-
-  void Update() {
-    // TODO(austin): Observer for the current velocity instead of difference
-    // calculations.
-    ++counter_;
-    const double current_left_velocity =
-        (position_.left_encoder - last_position_.left_encoder) /
-        position_time_delta_;
-    const double current_right_velocity =
-        (position_.right_encoder - last_position_.right_encoder) /
-        position_time_delta_;
-    const double left_motor_speed =
-        MotorSpeed(kBot3LeftDriveShifter,
-                   position_.left_shifter_position,
-                   current_left_velocity,
-                   left_gear_);
-    const double right_motor_speed =
-        MotorSpeed(kBot3RightDriveShifter,
-                   position_.right_shifter_position,
-                   current_right_velocity,
-                   right_gear_);
-
-    {
-      CIMLogging logging;
-
-      // Reset the CIM model to the current conditions to be ready for when we
-      // shift.
-      if (IsInGear(left_gear_)) {
-        logging.left_in_gear = true;
-      } else {
-        logging.left_in_gear = false;
-      }
-      logging.left_motor_speed = left_motor_speed;
-      logging.left_velocity = current_left_velocity;
-      if (IsInGear(right_gear_)) {
-        logging.right_in_gear = true;
-      } else {
-        logging.right_in_gear = false;
-      }
-      logging.right_motor_speed = right_motor_speed;
-      logging.right_velocity = current_right_velocity;
-
-      LOG_STRUCT(DEBUG, "currently", logging);
-    }
-
-    if (IsInGear(left_gear_) && IsInGear(right_gear_)) {
-      // FF * X = U (steady state)
-      const Eigen::Matrix<double, 2, 2> FF =
-          loop_->B().inverse() *
-          (Eigen::Matrix<double, 2, 2>::Identity() - loop_->A());
-
-      // Invert the plant to figure out how the velocity filter would have to
-      // work
-      // out in order to filter out the forwards negative inertia.
-      // This math assumes that the left and right power and velocity are
-      // equals,
-      // and that the plant is the same on the left and right.
-      const double fvel = FilterVelocity(throttle_);
-
-      const double sign_svel = wheel_ * ((fvel > 0.0) ? 1.0 : -1.0);
-      double steering_velocity;
-      if (quickturn_) {
-        steering_velocity = wheel_ * MaxVelocity();
-      } else {
-        steering_velocity = ::std::abs(fvel) * wheel_;
-      }
-      const double left_velocity = fvel - steering_velocity;
-      const double right_velocity = fvel + steering_velocity;
-
-      // Integrate velocity to get the position.
-      // This position is used to get integral control.
-      loop_->mutable_R() << left_velocity, right_velocity;
-
-      if (!quickturn_) {
-        // K * R = w
-        Eigen::Matrix<double, 1, 2> equality_k;
-        equality_k << 1 + sign_svel, -(1 - sign_svel);
-        const double equality_w = 0.0;
-
-        // Construct a constraint on R by manipulating the constraint on U
-        ::aos::controls::HPolytope<2> R_poly = ::aos::controls::HPolytope<2>(
-            U_Poly_.H() * (loop_->K() + FF),
-            U_Poly_.k() + U_Poly_.H() * loop_->K() * loop_->X_hat());
-
-        // Limit R back inside the box.
-        loop_->mutable_R() =
-            CoerceGoal(R_poly, equality_k, equality_w, loop_->R());
-      }
-
-      const Eigen::Matrix<double, 2, 1> FF_volts = FF * loop_->R();
-      const Eigen::Matrix<double, 2, 1> U_ideal =
-          loop_->K() * (loop_->R() - loop_->X_hat()) + FF_volts;
-
-      for (int i = 0; i < 2; i++) {
-        loop_->mutable_U()[i] = ::aos::Clip(U_ideal[i], -12, 12);
-      }
-
-      // TODO(austin): Model this better.
-      // TODO(austin): Feed back?
-      loop_->mutable_X_hat() =
-          loop_->A() * loop_->X_hat() + loop_->B() * loop_->U();
-    } else {
-      // Any motor is not in gear.  Speed match.
-      ::Eigen::Matrix<double, 1, 1> R_left;
-      ::Eigen::Matrix<double, 1, 1> R_right;
-      R_left(0, 0) = left_motor_speed;
-      R_right(0, 0) = right_motor_speed;
-
-      const double wiggle =
-          (static_cast<double>((counter_ % 20) / 10) - 0.5) * 5.0;
-
-      loop_->mutable_U(0, 0) = ::aos::Clip(
-          (R_left / Kv)(0, 0) + (IsInGear(left_gear_) ? 0 : wiggle),
-          -12.0, 12.0);
-      loop_->mutable_U(1, 0) = ::aos::Clip(
-          (R_right / Kv)(0, 0) + (IsInGear(right_gear_) ? 0 : wiggle),
-          -12.0, 12.0);
-      loop_->mutable_U() *= 12.0 / position_.battery_voltage;
-    }
-  }
-
-  void SendMotors(Drivetrain::Output *output) {
-    if (output != NULL) {
-      output->left_voltage = loop_->U(0, 0);
-      output->right_voltage = loop_->U(1, 0);
-      output->left_high = left_gear_ == HIGH || left_gear_ == SHIFTING_UP;
-      output->right_high = right_gear_ == HIGH || right_gear_ == SHIFTING_UP;
-    }
-  }
-
- private:
-  const ::aos::controls::HPolytope<2> U_Poly_;
-
-  ::std::unique_ptr<StateFeedbackLoop<2, 2, 2>> loop_;
-
-  const double ttrust_;
-  double wheel_;
-  double throttle_;
-  bool quickturn_;
-  int stale_count_;
-  double position_time_delta_;
-  Gear left_gear_;
-  Gear right_gear_;
-  Drivetrain::Position last_position_;
-  Drivetrain::Position position_;
-  int counter_;
-};
-constexpr double PolyDrivetrain::kStallTorque;
-constexpr double PolyDrivetrain::kStallCurrent;
-constexpr double PolyDrivetrain::kFreeSpeed;
-constexpr double PolyDrivetrain::kFreeCurrent;
-constexpr double PolyDrivetrain::J;
-constexpr double PolyDrivetrain::m;
-constexpr double PolyDrivetrain::rb;
-constexpr double PolyDrivetrain::kWheelRadius;
-constexpr double PolyDrivetrain::kR;
-constexpr double PolyDrivetrain::Kv;
-constexpr double PolyDrivetrain::Kt;
-
-
-void DrivetrainLoop::RunIteration(const Drivetrain::Goal *goal,
-                                  const Drivetrain::Position *position,
-                                  Drivetrain::Output *output,
-                                  Drivetrain::Status * status) {
-  // TODO(aschuh): These should be members of the class.
-  static DrivetrainMotorsSS dt_closedloop;
-  static PolyDrivetrain dt_openloop;
-
-  bool bad_pos = false;
-  if (position == nullptr) {
-    LOG_INTERVAL(no_position_);
-    bad_pos = true;
-  }
-  no_position_.Print();
-
-  double wheel = goal->steering;
-  double throttle = goal->throttle;
-  bool quickturn = goal->quickturn;
-  bool highgear = goal->highgear;
-
-  bool control_loop_driving = goal->control_loop_driving;
-  double left_goal = goal->left_goal;
-  double right_goal = goal->right_goal;
-
-  dt_closedloop.SetGoal(left_goal, goal->left_velocity_goal, right_goal,
-                        goal->right_velocity_goal);
-  if (!bad_pos) {
-    const double left_encoder = position->left_encoder;
-    const double right_encoder = position->right_encoder;
-    if (gyro_reading.FetchLatest()) {
-      LOG_STRUCT(DEBUG, "using", *gyro_reading.get());
-      dt_closedloop.SetPosition(left_encoder, right_encoder,
-                                gyro_reading->angle);
-    } else {
-      dt_closedloop.SetRawPosition(left_encoder, right_encoder);
-    }
-  }
-  dt_openloop.SetPosition(position);
-  dt_openloop.SetGoal(wheel, throttle, quickturn, highgear);
-  dt_openloop.Update();
-
-  if (control_loop_driving) {
-    dt_closedloop.Update(output == NULL, true);
-    dt_closedloop.SendMotors(output);
-  } else {
-    dt_openloop.SendMotors(output);
-    if (output) {
-      dt_closedloop.SetExternalMotors(output->left_voltage,
-                                      output->right_voltage);
-    }
-    dt_closedloop.Update(output == NULL, false);
-  }
-
-  // set the output status of the control loop state
-  if (status) {
-    bool done = false;
-    if (goal) {
-      done = ((::std::abs(goal->left_goal -
-                          dt_closedloop.GetEstimatedLeftEncoder()) <
-               kBot3DrivetrainDoneDistance) &&
-              (::std::abs(goal->right_goal -
-                          dt_closedloop.GetEstimatedRightEncoder()) <
-               kBot3DrivetrainDoneDistance));
-    }
-    status->is_done = done;
-    status->robot_speed = dt_closedloop.GetEstimatedRobotSpeed();
-    status->filtered_left_position = dt_closedloop.GetEstimatedLeftEncoder();
-    status->filtered_right_position = dt_closedloop.GetEstimatedRightEncoder();
-    status->output_was_capped = dt_closedloop.OutputWasCapped();
-    status->uncapped_left_voltage = dt_closedloop.loop().U_uncapped(0, 0);
-    status->uncapped_right_voltage = dt_closedloop.loop().U_uncapped(1, 0);
-  }
-}
-
-}  // namespace control_loops
-}  // namespace bot3
diff --git a/bot3/control_loops/drivetrain/drivetrain.gyp b/bot3/control_loops/drivetrain/drivetrain.gyp
deleted file mode 100644
index d17cdf2..0000000
--- a/bot3/control_loops/drivetrain/drivetrain.gyp
+++ /dev/null
@@ -1,102 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'drivetrain_loop',
-      'type': 'static_library',
-      'sources': ['drivetrain.q'],
-      'variables': {
-        'header_path': 'bot3/control_loops/drivetrain',
-      },
-      'dependencies': [
-        '<(AOS)/common/controls/controls.gyp:control_loop_queues',
-      ],
-      'export_dependent_settings': [
-        '<(AOS)/common/controls/controls.gyp:control_loop_queues',
-      ],
-      'includes': ['../../../aos/build/queues.gypi'],
-    },
-    {
-      'target_name': 'polydrivetrain_plants',
-      'type': 'static_library',
-      'sources': [
-        'polydrivetrain_dog_motor_plant.cc',
-        'drivetrain_dog_motor_plant.cc',
-      ],
-      'dependencies': [
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop',
-      ],
-      'export_dependent_settings': [
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop',
-      ],
-    },
-    {
-      'target_name': 'drivetrain_constants',
-      'type': 'static_library',
-      'sources': [
-        #'drivetrain_constants.h'
-      ],
-      'dependencies': [
-        'polydrivetrain_plants',
-      ],
-      'export_dependent_settings': [
-        'polydrivetrain_plants',
-      ],
-    },
-    {
-      'target_name': 'drivetrain_lib',
-      'type': 'static_library',
-      'sources': [
-        'drivetrain.cc',
-        'polydrivetrain_cim_plant.cc',
-      ],
-      'dependencies': [
-        'drivetrain_loop',
-        'drivetrain_constants',
-        '<(AOS)/common/controls/controls.gyp:control_loop',
-        '<(AOS)/common/controls/controls.gyp:polytope',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:coerce_goal',
-        '<(DEPTH)/frc971/queues/queues.gyp:queues',
-        '<(AOS)/common/util/util.gyp:log_interval',
-        '<(AOS)/common/logging/logging.gyp:queue_logging',
-        '<(AOS)/common/logging/logging.gyp:matrix_logging',
-      ],
-      'export_dependent_settings': [
-        '<(AOS)/common/controls/controls.gyp:polytope',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:coerce_goal',
-        '<(AOS)/common/controls/controls.gyp:control_loop',
-        'drivetrain_loop',
-      ],
-    },
-    {
-      'target_name': 'drivetrain_lib_test',
-      'type': 'executable',
-      'sources': [
-        'drivetrain_lib_test.cc',
-      ],
-      'dependencies': [
-        '<(EXTERNALS):gtest',
-        'drivetrain_loop',
-        'drivetrain_lib',
-        '<(AOS)/common/controls/controls.gyp:control_loop_test',
-        '<(AOS)/common/network/network.gyp:team_number',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop',
-        '<(DEPTH)/frc971/queues/queues.gyp:queues',
-        '<(AOS)/common/common.gyp:queues',
-      ],
-    },
-    {
-      'target_name': 'drivetrain',
-      'type': 'executable',
-      'sources': [
-        'drivetrain_main.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        'drivetrain_lib',
-        'drivetrain_loop',
-      ],
-    },
-  ],
-}
diff --git a/bot3/control_loops/drivetrain/drivetrain.h b/bot3/control_loops/drivetrain/drivetrain.h
deleted file mode 100644
index b2bed8c..0000000
--- a/bot3/control_loops/drivetrain/drivetrain.h
+++ /dev/null
@@ -1,43 +0,0 @@
-#ifndef BOT3_CONTROL_LOOPS_DRIVETRAIN_H_
-#define BOT3_CONTROL_LOOPS_DRIVETRAIN_H_
-
-#include "Eigen/Dense"
-
-#include "aos/common/controls/polytope.h"
-#include "aos/common/controls/control_loop.h"
-#include "aos/common/controls/polytope.h"
-#include "aos/common/util/log_interval.h"
-#include "bot3/control_loops/drivetrain/drivetrain.q.h"
-
-namespace bot3 {
-namespace control_loops {
-
-class DrivetrainLoop
-    : public aos::controls::ControlLoop<control_loops::Drivetrain, true, false> {
- public:
-  // Constructs a control loop which can take a Drivetrain or defaults to the
-  // drivetrain at bot3::control_loops::drivetrain
-  explicit DrivetrainLoop(
-      control_loops::Drivetrain *my_drivetrain = &control_loops::drivetrain)
-      : aos::controls::ControlLoop<control_loops::Drivetrain, true, false>(
-          my_drivetrain) {
-    ::aos::controls::HPolytope<0>::Init();
-  }
-
- protected:
-  // Executes one cycle of the control loop.
-  virtual void RunIteration(
-      const control_loops::Drivetrain::Goal *goal,
-      const control_loops::Drivetrain::Position *position,
-      control_loops::Drivetrain::Output *output,
-      control_loops::Drivetrain::Status *status);
-
-  typedef ::aos::util::SimpleLogInterval SimpleLogInterval;
-  SimpleLogInterval no_position_ = SimpleLogInterval(
-      ::aos::time::Time::InSeconds(0.25), WARNING, "no position");
-};
-
-}  // namespace control_loops
-}  // namespace bot3
-
-#endif  // BOT3_CONTROL_LOOPS_DRIVETRAIN_H_
diff --git a/bot3/control_loops/drivetrain/drivetrain.q b/bot3/control_loops/drivetrain/drivetrain.q
deleted file mode 100644
index f4fe3d5..0000000
--- a/bot3/control_loops/drivetrain/drivetrain.q
+++ /dev/null
@@ -1,70 +0,0 @@
-package bot3.control_loops;
-
-import "aos/common/controls/control_loops.q";
-
-struct GearLogging {
-  int8_t controller_index;
-  bool left_loop_high;
-  bool right_loop_high;
-  int8_t left_state;
-  int8_t right_state;
-};
-
-struct CIMLogging {
-  bool left_in_gear;
-  bool right_in_gear;
-  double left_motor_speed;
-  double right_motor_speed;
-  double left_velocity;
-  double right_velocity;
-};
-
-queue_group Drivetrain {
-  implements aos.control_loops.ControlLoop;
-
-  message Goal {
-    double steering;
-    double throttle;
-    bool highgear;
-    bool quickturn;
-    bool control_loop_driving;
-    double left_goal;
-    double left_velocity_goal;
-    double right_goal;
-    double right_velocity_goal;
-  };
-
-  message Position {
-    double left_encoder;
-    double right_encoder;
-    double left_shifter_position;
-    double right_shifter_position;
-    double battery_voltage;
-  };
-
-  message Output {
-    double left_voltage;
-    double right_voltage;
-    bool left_high;
-    bool right_high;
-  };
-
-  message Status {
-    double robot_speed;
-    double filtered_left_position;
-    double filtered_right_position;
-
-    double uncapped_left_voltage;
-    double uncapped_right_voltage;
-    bool output_was_capped;
-
-    bool is_done;
-  };
-
-  queue Goal goal;
-  queue Position position;
-  queue Output output;
-  queue Status status;
-};
-
-queue_group Drivetrain drivetrain;
diff --git a/bot3/control_loops/drivetrain/drivetrain_constants.h b/bot3/control_loops/drivetrain/drivetrain_constants.h
deleted file mode 100644
index 28848b0..0000000
--- a/bot3/control_loops/drivetrain/drivetrain_constants.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef BOT3_CONTROL_LOOPS_DRIVETRAIN_CONSTANTS_H_
-#define BOT3_CONTROL_LOOPS_DRIVETRAIN_CONSTANTS_H_
-
-#include "bot3/shifter_hall_effect.h"
-
-namespace bot3 {
-namespace control_loops {
-
-constexpr constants::ShifterHallEffect kBot3LeftDriveShifter =
-    {426, 171, 0.6, 0.47};
-constexpr constants::ShifterHallEffect kBot3RightDriveShifter =
-    {424, 172, 0.62, 0.55};
-
-constexpr double kBot3TurnWidth = 0.5;
-constexpr double kBot3DrivetrainDoneDistance = 0.02;
-
-constexpr double kBot3LowGearRatio = 14.0 / 60.0 * 17.0 / 50.0;
-constexpr double kBot3HighGearRatio = 30.0 / 44.0 * 17.0 / 50.0;
-
-// If this is true, we don't use the analog hall effects for shifting.
-constexpr bool kBot3SimpleShifting = true;
-
-}  // control_loops
-}  // bot3
-
-#endif
diff --git a/bot3/control_loops/drivetrain/drivetrain_dog_motor_plant.cc b/bot3/control_loops/drivetrain/drivetrain_dog_motor_plant.cc
deleted file mode 100644
index da59426..0000000
--- a/bot3/control_loops/drivetrain/drivetrain_dog_motor_plant.cc
+++ /dev/null
@@ -1,125 +0,0 @@
-#include "bot3/control_loops/drivetrain/drivetrain_dog_motor_plant.h"
-
-#include <vector>
-
-#include "frc971/control_loops/state_feedback_loop.h"
-
-namespace bot3 {
-namespace control_loops {
-
-StateFeedbackPlantCoefficients<4, 2, 2> MakeDrivetrainLowLowPlantCoefficients() {
-  Eigen::Matrix<double, 4, 4> A;
-  A << 1.0, 0.00718627304278, 0.0, 0.000575327102319, 0.0, 0.498791664199, 0.0, 0.0897184892451, 0.0, 0.000575327102319, 1.0, 0.00718627304278, 0.0, 0.0897184892451, 0.0, 0.498791664199;
-  Eigen::Matrix<double, 4, 2> B;
-  B << 0.000404687213064, -8.27470202964e-05, 0.0720868114296, -0.0129038552514, -8.27470202964e-05, 0.000404687213064, -0.0129038552514, 0.0720868114296;
-  Eigen::Matrix<double, 2, 4> C;
-  C << 1, 0, 0, 0, 0, 0, 1, 0;
-  Eigen::Matrix<double, 2, 2> D;
-  D << 0, 0, 0, 0;
-  Eigen::Matrix<double, 2, 1> U_max;
-  U_max << 12.0, 12.0;
-  Eigen::Matrix<double, 2, 1> U_min;
-  U_min << -12.0, -12.0;
-  return StateFeedbackPlantCoefficients<4, 2, 2>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackPlantCoefficients<4, 2, 2> MakeDrivetrainLowHighPlantCoefficients() {
-  Eigen::Matrix<double, 4, 4> A;
-  A << 1.0, 0.00715806931946, 0.0, 8.27195198739e-05, 0.0, 0.491841728751, 0.0, 0.0145551608494, 0.0, 0.000706303878161, 1.0, 0.00959963582133, 0.0, 0.124279814134, 0.0, 0.921454874639;
-  Eigen::Matrix<double, 4, 2> B;
-  B << 0.000408743642973, -3.47646073582e-05, 0.0730863931411, -0.00611711060145, -0.000101584891631, 0.000168261415116, -0.0178746738354, 0.0330102308046;
-  Eigen::Matrix<double, 2, 4> C;
-  C << 1, 0, 0, 0, 0, 0, 1, 0;
-  Eigen::Matrix<double, 2, 2> D;
-  D << 0, 0, 0, 0;
-  Eigen::Matrix<double, 2, 1> U_max;
-  U_max << 12.0, 12.0;
-  Eigen::Matrix<double, 2, 1> U_min;
-  U_min << -12.0, -12.0;
-  return StateFeedbackPlantCoefficients<4, 2, 2>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackPlantCoefficients<4, 2, 2> MakeDrivetrainHighLowPlantCoefficients() {
-  Eigen::Matrix<double, 4, 4> A;
-  A << 1.0, 0.00959963582133, 0.0, 0.000706303878161, 0.0, 0.921454874639, 0.0, 0.124279814134, 0.0, 8.27195198739e-05, 1.0, 0.00715806931946, 0.0, 0.0145551608494, 0.0, 0.491841728751;
-  Eigen::Matrix<double, 4, 2> B;
-  B << 0.000168261415116, -0.000101584891631, 0.0330102308046, -0.0178746738354, -3.47646073582e-05, 0.000408743642973, -0.00611711060145, 0.0730863931411;
-  Eigen::Matrix<double, 2, 4> C;
-  C << 1, 0, 0, 0, 0, 0, 1, 0;
-  Eigen::Matrix<double, 2, 2> D;
-  D << 0, 0, 0, 0;
-  Eigen::Matrix<double, 2, 1> U_max;
-  U_max << 12.0, 12.0;
-  Eigen::Matrix<double, 2, 1> U_min;
-  U_min << -12.0, -12.0;
-  return StateFeedbackPlantCoefficients<4, 2, 2>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackPlantCoefficients<4, 2, 2> MakeDrivetrainHighHighPlantCoefficients() {
-  Eigen::Matrix<double, 4, 4> A;
-  A << 1.0, 0.00959512220091, 0.0, 0.000100752776744, 0.0, 0.920202836632, 0.0, 0.0195951135, 0.0, 0.000100752776744, 1.0, 0.00959512220091, 0.0, 0.0195951135, 0.0, 0.920202836632;
-  Eigen::Matrix<double, 4, 2> B;
-  B << 0.000170158358449, -4.23434605168e-05, 0.0335364259492, -0.00823525605573, -4.23434605168e-05, 0.000170158358449, -0.00823525605573, 0.0335364259492;
-  Eigen::Matrix<double, 2, 4> C;
-  C << 1, 0, 0, 0, 0, 0, 1, 0;
-  Eigen::Matrix<double, 2, 2> D;
-  D << 0, 0, 0, 0;
-  Eigen::Matrix<double, 2, 1> U_max;
-  U_max << 12.0, 12.0;
-  Eigen::Matrix<double, 2, 1> U_min;
-  U_min << -12.0, -12.0;
-  return StateFeedbackPlantCoefficients<4, 2, 2>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackController<4, 2, 2> MakeDrivetrainLowLowController() {
-  Eigen::Matrix<double, 4, 2> L;
-  L << 0.798791664199, 0.0897184892451, 3.57844915691, 3.42875197165, 0.0897184892451, 0.798791664199, 3.42875197165, 3.57844915691;
-  Eigen::Matrix<double, 2, 4> K;
-  K << 118.526561433, 4.19900632703, 7.79020074229, 0.921948843301, 7.79020074228, 0.921948843301, 118.526561433, 4.19900632703;
-  return StateFeedbackController<4, 2, 2>(L, K, MakeDrivetrainLowLowPlantCoefficients());
-}
-
-StateFeedbackController<4, 2, 2> MakeDrivetrainLowHighController() {
-  Eigen::Matrix<double, 4, 2> L;
-  L << 0.780361183952, 0.0157698223449, 2.31127571816, 1.09059511674, 0.0157698223449, 1.23293541944, 3.02157734826, 34.5051463402;
-  Eigen::Matrix<double, 2, 4> K;
-  K << 116.74766142, 4.04674599343, -6.38397728262, -0.174173971494, 20.8480994015, 2.49474383494, 135.799605924, 11.0272286082;
-  return StateFeedbackController<4, 2, 2>(L, K, MakeDrivetrainLowHighPlantCoefficients());
-}
-
-StateFeedbackController<4, 2, 2> MakeDrivetrainHighLowController() {
-  Eigen::Matrix<double, 4, 2> L;
-  L << 1.26735275667, 0.0994717602348, 37.3766125148, 7.14618746927, 0.0994717602348, 0.745943846725, 2.20133516364, 1.9922178483;
-  Eigen::Matrix<double, 2, 4> K;
-  K << 135.799605924, 11.0272286082, 20.8480994015, 2.49474383494, -6.38397728263, -0.174173971495, 116.74766142, 4.04674599343;
-  return StateFeedbackController<4, 2, 2>(L, K, MakeDrivetrainHighLowPlantCoefficients());
-}
-
-StateFeedbackController<4, 2, 2> MakeDrivetrainHighHighController() {
-  Eigen::Matrix<double, 4, 2> L;
-  L << 1.22020283663, 0.0195951135, 33.6437810428, 1.9756574066, 0.0195951135, 1.22020283663, 1.9756574066, 33.6437810428;
-  Eigen::Matrix<double, 2, 4> K;
-  K << 136.125709167, 11.0402255404, 6.0764292977, 1.24911698877, 6.0764292977, 1.24911698877, 136.125709167, 11.0402255404;
-  return StateFeedbackController<4, 2, 2>(L, K, MakeDrivetrainHighHighPlantCoefficients());
-}
-
-StateFeedbackPlant<4, 2, 2> MakeDrivetrainPlant() {
-  ::std::vector<StateFeedbackPlantCoefficients<4, 2, 2> *> plants(4);
-  plants[0] = new StateFeedbackPlantCoefficients<4, 2, 2>(MakeDrivetrainLowLowPlantCoefficients());
-  plants[1] = new StateFeedbackPlantCoefficients<4, 2, 2>(MakeDrivetrainLowHighPlantCoefficients());
-  plants[2] = new StateFeedbackPlantCoefficients<4, 2, 2>(MakeDrivetrainHighLowPlantCoefficients());
-  plants[3] = new StateFeedbackPlantCoefficients<4, 2, 2>(MakeDrivetrainHighHighPlantCoefficients());
-  return StateFeedbackPlant<4, 2, 2>(plants);
-}
-
-StateFeedbackLoop<4, 2, 2> MakeDrivetrainLoop() {
-  ::std::vector<StateFeedbackController<4, 2, 2> *> controllers(4);
-  controllers[0] = new StateFeedbackController<4, 2, 2>(MakeDrivetrainLowLowController());
-  controllers[1] = new StateFeedbackController<4, 2, 2>(MakeDrivetrainLowHighController());
-  controllers[2] = new StateFeedbackController<4, 2, 2>(MakeDrivetrainHighLowController());
-  controllers[3] = new StateFeedbackController<4, 2, 2>(MakeDrivetrainHighHighController());
-  return StateFeedbackLoop<4, 2, 2>(controllers);
-}
-
-}  // namespace control_loops
-}  // namespace bot3
diff --git a/bot3/control_loops/drivetrain/drivetrain_dog_motor_plant.h b/bot3/control_loops/drivetrain/drivetrain_dog_motor_plant.h
deleted file mode 100644
index f5d5896..0000000
--- a/bot3/control_loops/drivetrain/drivetrain_dog_motor_plant.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef BOT3_CONTROL_LOOPS_DRIVETRAIN_DRIVETRAIN_DOG_MOTOR_PLANT_H_
-#define BOT3_CONTROL_LOOPS_DRIVETRAIN_DRIVETRAIN_DOG_MOTOR_PLANT_H_
-
-#include "frc971/control_loops/state_feedback_loop.h"
-
-namespace bot3 {
-namespace control_loops {
-
-StateFeedbackPlantCoefficients<4, 2, 2> MakeDrivetrainLowLowPlantCoefficients();
-
-StateFeedbackController<4, 2, 2> MakeDrivetrainLowLowController();
-
-StateFeedbackPlantCoefficients<4, 2, 2> MakeDrivetrainLowHighPlantCoefficients();
-
-StateFeedbackController<4, 2, 2> MakeDrivetrainLowHighController();
-
-StateFeedbackPlantCoefficients<4, 2, 2> MakeDrivetrainHighLowPlantCoefficients();
-
-StateFeedbackController<4, 2, 2> MakeDrivetrainHighLowController();
-
-StateFeedbackPlantCoefficients<4, 2, 2> MakeDrivetrainHighHighPlantCoefficients();
-
-StateFeedbackController<4, 2, 2> MakeDrivetrainHighHighController();
-
-StateFeedbackPlant<4, 2, 2> MakeDrivetrainPlant();
-
-StateFeedbackLoop<4, 2, 2> MakeDrivetrainLoop();
-
-}  // namespace control_loops
-}  // namespace bot3
-
-#endif  // BOT3_CONTROL_LOOPS_DRIVETRAIN_DRIVETRAIN_DOG_MOTOR_PLANT_H_
diff --git a/bot3/control_loops/drivetrain/drivetrain_lib_test.cc b/bot3/control_loops/drivetrain/drivetrain_lib_test.cc
deleted file mode 100644
index 89e41c6..0000000
--- a/bot3/control_loops/drivetrain/drivetrain_lib_test.cc
+++ /dev/null
@@ -1,294 +0,0 @@
-#include <unistd.h>
-
-#include <memory>
-
-#include "gtest/gtest.h"
-#include "aos/common/network/team_number.h"
-#include "aos/common/queue_testutils.h"
-#include "aos/common/controls/polytope.h"
-#include "aos/common/controls/control_loop_test.h"
-
-#include "bot3/control_loops/drivetrain/drivetrain.q.h"
-#include "bot3/control_loops/drivetrain/drivetrain.h"
-#include "bot3/control_loops/drivetrain/drivetrain_dog_motor_plant.h"
-#include "frc971/control_loops/state_feedback_loop.h"
-#include "frc971/control_loops/coerce_goal.h"
-#include "frc971/queues/other_sensors.q.h"
-
-
-namespace bot3 {
-namespace control_loops {
-namespace testing {
-
-class Environment : public ::testing::Environment {
- public:
-  virtual ~Environment() {}
-  // how to set up the environment.
-  virtual void SetUp() {
-    aos::controls::HPolytope<0>::Init();
-  }
-};
-::testing::Environment* const holder_env =
-  ::testing::AddGlobalTestEnvironment(new Environment);
-
-class TeamNumberEnvironment : public ::testing::Environment {
- public:
-  // Override this to define how to set up the environment.
-  virtual void SetUp() { aos::network::OverrideTeamNumber(971); }
-};
-
-::testing::Environment* const team_number_env =
-    ::testing::AddGlobalTestEnvironment(new TeamNumberEnvironment);
-
-// Class which simulates the drivetrain and sends out queue messages containing
-// the position.
-class DrivetrainSimulation {
- public:
-  // Constructs a motor simulation.
-  // TODO(aschuh) Do we want to test the clutch one too?
-  DrivetrainSimulation()
-      : drivetrain_plant_(
-            new StateFeedbackPlant<4, 2, 2>(MakeDrivetrainPlant())),
-        my_drivetrain_loop_(".frc971.control_loops.drivetrain",
-                       0x8a8dde77, ".frc971.control_loops.drivetrain.goal",
-                       ".frc971.control_loops.drivetrain.position",
-                       ".frc971.control_loops.drivetrain.output",
-                       ".frc971.control_loops.drivetrain.status") {
-    Reinitialize();
-  }
-
-  // Resets the plant.
-  void Reinitialize() {
-    drivetrain_plant_->mutable_X(0, 0) = 0.0;
-    drivetrain_plant_->mutable_X(1, 0) = 0.0;
-    drivetrain_plant_->mutable_Y() =
-        drivetrain_plant_->C() * drivetrain_plant_->X();
-    last_left_position_ = drivetrain_plant_->Y(0, 0);
-    last_right_position_ = drivetrain_plant_->Y(1, 0);
-  }
-
-  // Returns the position of the drivetrain.
-  double GetLeftPosition() const { return drivetrain_plant_->Y(0, 0); }
-  double GetRightPosition() const { return drivetrain_plant_->Y(1, 0); }
-
-  // Sends out the position queue messages.
-  void SendPositionMessage() {
-    const double left_encoder = GetLeftPosition();
-    const double right_encoder = GetRightPosition();
-
-    ::aos::ScopedMessagePtr<control_loops::Drivetrain::Position> position =
-        my_drivetrain_loop_.position.MakeMessage();
-    position->left_encoder = left_encoder;
-    position->right_encoder = right_encoder;
-    position.Send();
-  }
-
-  // Simulates the drivetrain moving for one timestep.
-  void Simulate() {
-    last_left_position_ = drivetrain_plant_->Y(0, 0);
-    last_right_position_ = drivetrain_plant_->Y(1, 0);
-    EXPECT_TRUE(my_drivetrain_loop_.output.FetchLatest());
-    drivetrain_plant_->mutable_U() << my_drivetrain_loop_.output->left_voltage,
-        my_drivetrain_loop_.output->right_voltage;
-    drivetrain_plant_->Update();
-  }
-
-  ::std::unique_ptr<StateFeedbackPlant<4, 2, 2>> drivetrain_plant_;
- private:
-  Drivetrain my_drivetrain_loop_;
-  double last_left_position_;
-  double last_right_position_;
-};
-
-class DrivetrainTest : public ::aos::testing::ControlLoopTest {
- protected:
-  // Create a new instance of the test queue so that it invalidates the queue
-  // that it points to.  Otherwise, we will have a pointer to shared memory that
-  // is no longer valid.
-  Drivetrain my_drivetrain_loop_;
-
-  // Create a loop and simulation plant.
-  DrivetrainLoop drivetrain_motor_;
-  DrivetrainSimulation drivetrain_motor_plant_;
-
-  DrivetrainTest() : my_drivetrain_loop_(".frc971.control_loops.drivetrain",
-                               0x8a8dde77,
-                               ".frc971.control_loops.drivetrain.goal",
-                               ".frc971.control_loops.drivetrain.position",
-                               ".frc971.control_loops.drivetrain.output",
-                               ".frc971.control_loops.drivetrain.status"),
-                drivetrain_motor_(&my_drivetrain_loop_),
-                drivetrain_motor_plant_() {
-    ::frc971::sensors::gyro_reading.Clear();
-  }
-
-  void VerifyNearGoal() {
-    my_drivetrain_loop_.goal.FetchLatest();
-    my_drivetrain_loop_.position.FetchLatest();
-    EXPECT_NEAR(my_drivetrain_loop_.goal->left_goal,
-                drivetrain_motor_plant_.GetLeftPosition(),
-                1e-2);
-    EXPECT_NEAR(my_drivetrain_loop_.goal->right_goal,
-                drivetrain_motor_plant_.GetRightPosition(),
-                1e-2);
-  }
-
-  virtual ~DrivetrainTest() {
-    ::frc971::sensors::gyro_reading.Clear();
-  }
-};
-
-// Tests that the drivetrain converges on a goal.
-TEST_F(DrivetrainTest, ConvergesCorrectly) {
-  my_drivetrain_loop_.goal.MakeWithBuilder().control_loop_driving(true)
-      .left_goal(-1.0)
-      .right_goal(1.0).Send();
-  for (int i = 0; i < 200; ++i) {
-    drivetrain_motor_plant_.SendPositionMessage();
-    drivetrain_motor_.Iterate();
-    drivetrain_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  VerifyNearGoal();
-}
-
-// Tests that it survives disabling.
-TEST_F(DrivetrainTest, SurvivesDisabling) {
-  my_drivetrain_loop_.goal.MakeWithBuilder().control_loop_driving(true)
-      .left_goal(-1.0)
-      .right_goal(1.0).Send();
-  for (int i = 0; i < 500; ++i) {
-    drivetrain_motor_plant_.SendPositionMessage();
-    drivetrain_motor_.Iterate();
-    drivetrain_motor_plant_.Simulate();
-    if (i > 20 && i < 200) {
-      SimulateTimestep(false);
-    } else {
-      SimulateTimestep(true);
-    }
-  }
-  VerifyNearGoal();
-}
-
-// Tests surviving bad positions.
-TEST_F(DrivetrainTest, SurvivesBadPosition) {
-  my_drivetrain_loop_.goal.MakeWithBuilder().control_loop_driving(true)
-      .left_goal(-1.0)
-      .right_goal(1.0).Send();
-  for (int i = 0; i < 500; ++i) {
-    if (i > 20 && i < 200) {
-    } else {
-      drivetrain_motor_plant_.SendPositionMessage();
-    }
-    drivetrain_motor_.Iterate();
-    drivetrain_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  VerifyNearGoal();
-}
-
-::aos::controls::HPolytope<2> MakeBox(double x1_min, double x1_max,
-                                      double x2_min, double x2_max) {
-  Eigen::Matrix<double, 4, 2> box_H;
-  box_H << /*[[*/ 1.0, 0.0 /*]*/,
-            /*[*/-1.0, 0.0 /*]*/,
-            /*[*/ 0.0, 1.0 /*]*/,
-            /*[*/ 0.0,-1.0 /*]]*/;
-  Eigen::Matrix<double, 4, 1> box_k;
-  box_k << /*[[*/ x1_max /*]*/,
-            /*[*/-x1_min /*]*/,
-            /*[*/ x2_max /*]*/,
-            /*[*/-x2_min /*]]*/;
-  ::aos::controls::HPolytope<2> t_poly(box_H, box_k);
-  return t_poly;
-}
-
-class CoerceGoalTest : public ::testing::Test {
- public:
-  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
-};
-
-// WHOOOHH!
-TEST_F(CoerceGoalTest, Inside) {
-  ::aos::controls::HPolytope<2> box = MakeBox(1, 2, 1, 2);
-
-  Eigen::Matrix<double, 1, 2> K;
-  K << /*[[*/ 1, -1 /*]]*/;
-
-  Eigen::Matrix<double, 2, 1> R;
-  R << /*[[*/ 1.5, 1.5 /*]]*/;
-
-  Eigen::Matrix<double, 2, 1> output =
-      ::frc971::control_loops::CoerceGoal(box, K, 0, R);
-
-  EXPECT_EQ(R(0, 0), output(0, 0));
-  EXPECT_EQ(R(1, 0), output(1, 0));
-}
-
-TEST_F(CoerceGoalTest, Outside_Inside_Intersect) {
-  ::aos::controls::HPolytope<2> box = MakeBox(1, 2, 1, 2);
-
-  Eigen::Matrix<double, 1, 2> K;
-  K << 1, -1;
-
-  Eigen::Matrix<double, 2, 1> R;
-  R << 5, 5;
-
-  Eigen::Matrix<double, 2, 1> output =
-      ::frc971::control_loops::CoerceGoal(box, K, 0, R);
-
-  EXPECT_EQ(2.0, output(0, 0));
-  EXPECT_EQ(2.0, output(1, 0));
-}
-
-TEST_F(CoerceGoalTest, Outside_Inside_no_Intersect) {
-  ::aos::controls::HPolytope<2> box = MakeBox(3, 4, 1, 2);
-
-  Eigen::Matrix<double, 1, 2> K;
-  K << 1, -1;
-
-  Eigen::Matrix<double, 2, 1> R;
-  R << 5, 5;
-
-  Eigen::Matrix<double, 2, 1> output =
-      ::frc971::control_loops::CoerceGoal(box, K, 0, R);
-
-  EXPECT_EQ(3.0, output(0, 0));
-  EXPECT_EQ(2.0, output(1, 0));
-}
-
-TEST_F(CoerceGoalTest, Middle_Of_Edge) {
-  ::aos::controls::HPolytope<2> box = MakeBox(0, 4, 1, 2);
-
-  Eigen::Matrix<double, 1, 2> K;
-  K << -1, 1;
-
-  Eigen::Matrix<double, 2, 1> R;
-  R << 5, 5;
-
-  Eigen::Matrix<double, 2, 1> output =
-      ::frc971::control_loops::CoerceGoal(box, K, 0, R);
-
-  EXPECT_EQ(2.0, output(0, 0));
-  EXPECT_EQ(2.0, output(1, 0));
-}
-
-TEST_F(CoerceGoalTest, PerpendicularLine) {
-  ::aos::controls::HPolytope<2> box = MakeBox(1, 2, 1, 2);
-
-  Eigen::Matrix<double, 1, 2> K;
-  K << 1, 1;
-
-  Eigen::Matrix<double, 2, 1> R;
-  R << 5, 5;
-
-  Eigen::Matrix<double, 2, 1> output =
-      ::frc971::control_loops::CoerceGoal(box, K, 0, R);
-
-  EXPECT_EQ(1.0, output(0, 0));
-  EXPECT_EQ(1.0, output(1, 0));
-}
-
-}  // namespace testing
-}  // namespace control_loops
-}  // namespace bot3
diff --git a/bot3/control_loops/drivetrain/drivetrain_main.cc b/bot3/control_loops/drivetrain/drivetrain_main.cc
deleted file mode 100644
index f06acc0..0000000
--- a/bot3/control_loops/drivetrain/drivetrain_main.cc
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "bot3/control_loops/drivetrain/drivetrain.h"
-
-#include "aos/linux_code/init.h"
-
-int main() {
-  ::aos::Init();
-  bot3::control_loops::DrivetrainLoop drivetrain;
-  drivetrain.Run();
-  ::aos::Cleanup();
-  return 0;
-}
diff --git a/bot3/control_loops/drivetrain/polydrivetrain_cim_plant.cc b/bot3/control_loops/drivetrain/polydrivetrain_cim_plant.cc
deleted file mode 100644
index 1287483..0000000
--- a/bot3/control_loops/drivetrain/polydrivetrain_cim_plant.cc
+++ /dev/null
@@ -1,47 +0,0 @@
-#include "frc971/control_loops/drivetrain/polydrivetrain_cim_plant.h"
-
-#include <vector>
-
-#include "frc971/control_loops/state_feedback_loop.h"
-
-namespace frc971 {
-namespace control_loops {
-
-StateFeedbackPlantCoefficients<1, 1, 1> MakeCIMPlantCoefficients() {
-  Eigen::Matrix<double, 1, 1> A;
-  A << 0.614537580221;
-  Eigen::Matrix<double, 1, 1> B;
-  B << 15.9657598852;
-  Eigen::Matrix<double, 1, 1> C;
-  C << 1;
-  Eigen::Matrix<double, 1, 1> D;
-  D << 0;
-  Eigen::Matrix<double, 1, 1> U_max;
-  U_max << 12.0;
-  Eigen::Matrix<double, 1, 1> U_min;
-  U_min << -12.0;
-  return StateFeedbackPlantCoefficients<1, 1, 1>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackController<1, 1, 1> MakeCIMController() {
-  Eigen::Matrix<double, 1, 1> L;
-  L << 0.604537580221;
-  Eigen::Matrix<double, 1, 1> K;
-  K << 0.0378646293422;
-  return StateFeedbackController<1, 1, 1>(L, K, MakeCIMPlantCoefficients());
-}
-
-StateFeedbackPlant<1, 1, 1> MakeCIMPlant() {
-  ::std::vector<StateFeedbackPlantCoefficients<1, 1, 1> *> plants(1);
-  plants[0] = new StateFeedbackPlantCoefficients<1, 1, 1>(MakeCIMPlantCoefficients());
-  return StateFeedbackPlant<1, 1, 1>(plants);
-}
-
-StateFeedbackLoop<1, 1, 1> MakeCIMLoop() {
-  ::std::vector<StateFeedbackController<1, 1, 1> *> controllers(1);
-  controllers[0] = new StateFeedbackController<1, 1, 1>(MakeCIMController());
-  return StateFeedbackLoop<1, 1, 1>(controllers);
-}
-
-}  // namespace control_loops
-}  // namespace frc971
diff --git a/bot3/control_loops/drivetrain/polydrivetrain_cim_plant.h b/bot3/control_loops/drivetrain/polydrivetrain_cim_plant.h
deleted file mode 100644
index 12b2c59..0000000
--- a/bot3/control_loops/drivetrain/polydrivetrain_cim_plant.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef FRC971_CONTROL_LOOPS_DRIVETRAIN_POLYDRIVETRAIN_CIM_PLANT_H_
-#define FRC971_CONTROL_LOOPS_DRIVETRAIN_POLYDRIVETRAIN_CIM_PLANT_H_
-
-#include "frc971/control_loops/state_feedback_loop.h"
-
-namespace frc971 {
-namespace control_loops {
-
-StateFeedbackPlantCoefficients<1, 1, 1> MakeCIMPlantCoefficients();
-
-StateFeedbackController<1, 1, 1> MakeCIMController();
-
-StateFeedbackPlant<1, 1, 1> MakeCIMPlant();
-
-StateFeedbackLoop<1, 1, 1> MakeCIMLoop();
-
-}  // namespace control_loops
-}  // namespace frc971
-
-#endif  // FRC971_CONTROL_LOOPS_DRIVETRAIN_POLYDRIVETRAIN_CIM_PLANT_H_
diff --git a/bot3/control_loops/drivetrain/polydrivetrain_dog_motor_plant.cc b/bot3/control_loops/drivetrain/polydrivetrain_dog_motor_plant.cc
deleted file mode 100644
index 540741c..0000000
--- a/bot3/control_loops/drivetrain/polydrivetrain_dog_motor_plant.cc
+++ /dev/null
@@ -1,125 +0,0 @@
-#include "bot3/control_loops/drivetrain/polydrivetrain_dog_motor_plant.h"
-
-#include <vector>
-
-#include "frc971/control_loops/state_feedback_loop.h"
-
-namespace bot3 {
-namespace control_loops {
-
-StateFeedbackPlantCoefficients<2, 2, 2> MakeVelocityDrivetrainLowLowPlantCoefficients() {
-  Eigen::Matrix<double, 2, 2> A;
-  A << 0.498791664199, 0.0897184892451, 0.0897184892451, 0.498791664199;
-  Eigen::Matrix<double, 2, 2> B;
-  B << 0.0720868114296, -0.0129038552514, -0.0129038552514, 0.0720868114296;
-  Eigen::Matrix<double, 2, 2> C;
-  C << 1.0, 0.0, 0.0, 1.0;
-  Eigen::Matrix<double, 2, 2> D;
-  D << 0.0, 0.0, 0.0, 0.0;
-  Eigen::Matrix<double, 2, 1> U_max;
-  U_max << 12.0, 12.0;
-  Eigen::Matrix<double, 2, 1> U_min;
-  U_min << -12.0, -12.0;
-  return StateFeedbackPlantCoefficients<2, 2, 2>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackPlantCoefficients<2, 2, 2> MakeVelocityDrivetrainLowHighPlantCoefficients() {
-  Eigen::Matrix<double, 2, 2> A;
-  A << 0.491841728751, 0.0145551608494, 0.124279814134, 0.921454874639;
-  Eigen::Matrix<double, 2, 2> B;
-  B << 0.0730863931411, -0.00611711060145, -0.0178746738354, 0.0330102308046;
-  Eigen::Matrix<double, 2, 2> C;
-  C << 1.0, 0.0, 0.0, 1.0;
-  Eigen::Matrix<double, 2, 2> D;
-  D << 0.0, 0.0, 0.0, 0.0;
-  Eigen::Matrix<double, 2, 1> U_max;
-  U_max << 12.0, 12.0;
-  Eigen::Matrix<double, 2, 1> U_min;
-  U_min << -12.0, -12.0;
-  return StateFeedbackPlantCoefficients<2, 2, 2>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackPlantCoefficients<2, 2, 2> MakeVelocityDrivetrainHighLowPlantCoefficients() {
-  Eigen::Matrix<double, 2, 2> A;
-  A << 0.921454874639, 0.124279814134, 0.0145551608494, 0.491841728751;
-  Eigen::Matrix<double, 2, 2> B;
-  B << 0.0330102308046, -0.0178746738354, -0.00611711060145, 0.0730863931411;
-  Eigen::Matrix<double, 2, 2> C;
-  C << 1.0, 0.0, 0.0, 1.0;
-  Eigen::Matrix<double, 2, 2> D;
-  D << 0.0, 0.0, 0.0, 0.0;
-  Eigen::Matrix<double, 2, 1> U_max;
-  U_max << 12.0, 12.0;
-  Eigen::Matrix<double, 2, 1> U_min;
-  U_min << -12.0, -12.0;
-  return StateFeedbackPlantCoefficients<2, 2, 2>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackPlantCoefficients<2, 2, 2> MakeVelocityDrivetrainHighHighPlantCoefficients() {
-  Eigen::Matrix<double, 2, 2> A;
-  A << 0.920202836632, 0.0195951135, 0.0195951135, 0.920202836632;
-  Eigen::Matrix<double, 2, 2> B;
-  B << 0.0335364259492, -0.00823525605573, -0.00823525605573, 0.0335364259492;
-  Eigen::Matrix<double, 2, 2> C;
-  C << 1.0, 0.0, 0.0, 1.0;
-  Eigen::Matrix<double, 2, 2> D;
-  D << 0.0, 0.0, 0.0, 0.0;
-  Eigen::Matrix<double, 2, 1> U_max;
-  U_max << 12.0, 12.0;
-  Eigen::Matrix<double, 2, 1> U_min;
-  U_min << -12.0, -12.0;
-  return StateFeedbackPlantCoefficients<2, 2, 2>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackController<2, 2, 2> MakeVelocityDrivetrainLowLowController() {
-  Eigen::Matrix<double, 2, 2> L;
-  L << 0.478791664199, 0.0897184892451, 0.0897184892451, 0.478791664199;
-  Eigen::Matrix<double, 2, 2> K;
-  K << -1.22029287467, 1.0261517351, 1.0261517351, -1.22029287467;
-  return StateFeedbackController<2, 2, 2>(L, K, MakeVelocityDrivetrainLowLowPlantCoefficients());
-}
-
-StateFeedbackController<2, 2, 2> MakeVelocityDrivetrainLowHighController() {
-  Eigen::Matrix<double, 2, 2> L;
-  L << 0.450790078471, 0.12008012565, 0.12008012565, 0.922506524919;
-  Eigen::Matrix<double, 2, 2> K;
-  K << -1.22005303899, 1.06234079364, 3.10424257883, 10.3132835345;
-  return StateFeedbackController<2, 2, 2>(L, K, MakeVelocityDrivetrainLowHighPlantCoefficients());
-}
-
-StateFeedbackController<2, 2, 2> MakeVelocityDrivetrainHighLowController() {
-  Eigen::Matrix<double, 2, 2> L;
-  L << 0.918551885829, 0.0172871978996, 0.0172871978996, 0.454744717561;
-  Eigen::Matrix<double, 2, 2> K;
-  K << 10.3132835345, 3.10424257883, 1.06234079364, -1.22005303899;
-  return StateFeedbackController<2, 2, 2>(L, K, MakeVelocityDrivetrainHighLowPlantCoefficients());
-}
-
-StateFeedbackController<2, 2, 2> MakeVelocityDrivetrainHighHighController() {
-  Eigen::Matrix<double, 2, 2> L;
-  L << 0.900202836632, 0.0195951135, 0.0195951135, 0.900202836632;
-  Eigen::Matrix<double, 2, 2> K;
-  K << 10.3132878272, 3.11684016931, 3.11684016931, 10.3132878272;
-  return StateFeedbackController<2, 2, 2>(L, K, MakeVelocityDrivetrainHighHighPlantCoefficients());
-}
-
-StateFeedbackPlant<2, 2, 2> MakeVelocityDrivetrainPlant() {
-  ::std::vector<StateFeedbackPlantCoefficients<2, 2, 2> *> plants(4);
-  plants[0] = new StateFeedbackPlantCoefficients<2, 2, 2>(MakeVelocityDrivetrainLowLowPlantCoefficients());
-  plants[1] = new StateFeedbackPlantCoefficients<2, 2, 2>(MakeVelocityDrivetrainLowHighPlantCoefficients());
-  plants[2] = new StateFeedbackPlantCoefficients<2, 2, 2>(MakeVelocityDrivetrainHighLowPlantCoefficients());
-  plants[3] = new StateFeedbackPlantCoefficients<2, 2, 2>(MakeVelocityDrivetrainHighHighPlantCoefficients());
-  return StateFeedbackPlant<2, 2, 2>(plants);
-}
-
-StateFeedbackLoop<2, 2, 2> MakeVelocityDrivetrainLoop() {
-  ::std::vector<StateFeedbackController<2, 2, 2> *> controllers(4);
-  controllers[0] = new StateFeedbackController<2, 2, 2>(MakeVelocityDrivetrainLowLowController());
-  controllers[1] = new StateFeedbackController<2, 2, 2>(MakeVelocityDrivetrainLowHighController());
-  controllers[2] = new StateFeedbackController<2, 2, 2>(MakeVelocityDrivetrainHighLowController());
-  controllers[3] = new StateFeedbackController<2, 2, 2>(MakeVelocityDrivetrainHighHighController());
-  return StateFeedbackLoop<2, 2, 2>(controllers);
-}
-
-}  // namespace control_loops
-}  // namespace bot3
diff --git a/bot3/control_loops/drivetrain/polydrivetrain_dog_motor_plant.h b/bot3/control_loops/drivetrain/polydrivetrain_dog_motor_plant.h
deleted file mode 100644
index 191d1aa..0000000
--- a/bot3/control_loops/drivetrain/polydrivetrain_dog_motor_plant.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef BOT3_CONTROL_LOOPS_DRIVETRAIN_POLYDRIVETRAIN_DOG_MOTOR_PLANT_H_
-#define BOT3_CONTROL_LOOPS_DRIVETRAIN_POLYDRIVETRAIN_DOG_MOTOR_PLANT_H_
-
-#include "frc971/control_loops/state_feedback_loop.h"
-
-namespace bot3 {
-namespace control_loops {
-
-StateFeedbackPlantCoefficients<2, 2, 2> MakeVelocityDrivetrainLowLowPlantCoefficients();
-
-StateFeedbackController<2, 2, 2> MakeVelocityDrivetrainLowLowController();
-
-StateFeedbackPlantCoefficients<2, 2, 2> MakeVelocityDrivetrainLowHighPlantCoefficients();
-
-StateFeedbackController<2, 2, 2> MakeVelocityDrivetrainLowHighController();
-
-StateFeedbackPlantCoefficients<2, 2, 2> MakeVelocityDrivetrainHighLowPlantCoefficients();
-
-StateFeedbackController<2, 2, 2> MakeVelocityDrivetrainHighLowController();
-
-StateFeedbackPlantCoefficients<2, 2, 2> MakeVelocityDrivetrainHighHighPlantCoefficients();
-
-StateFeedbackController<2, 2, 2> MakeVelocityDrivetrainHighHighController();
-
-StateFeedbackPlant<2, 2, 2> MakeVelocityDrivetrainPlant();
-
-StateFeedbackLoop<2, 2, 2> MakeVelocityDrivetrainLoop();
-
-}  // namespace control_loops
-}  // namespace bot3
-
-#endif  // BOT3_CONTROL_LOOPS_DRIVETRAIN_POLYDRIVETRAIN_DOG_MOTOR_PLANT_H_
diff --git a/bot3/control_loops/python/drivetrain.py b/bot3/control_loops/python/drivetrain.py
deleted file mode 100755
index 0a0ef39..0000000
--- a/bot3/control_loops/python/drivetrain.py
+++ /dev/null
@@ -1,239 +0,0 @@
-#!/usr/bin/python
-
-import control_loop
-import controls
-import numpy
-import sys
-from matplotlib import pylab
-
-
-class CIM(control_loop.ControlLoop):
-  def __init__(self):
-    super(CIM, self).__init__("CIM")
-    # Stall Torque in N m
-    self.stall_torque = 2.42
-    # Stall Current in Amps
-    self.stall_current = 133
-    # Free Speed in RPM
-    self.free_speed = 4650.0
-    # Free Current in Amps
-    self.free_current = 2.7
-    # Moment of inertia of the CIM in kg m^2
-    self.J = 0.0001
-    # Resistance of the motor, divided by 2 to account for the 2 motors
-    self.R = 12.0 / self.stall_current
-    # Motor velocity constant
-    self.Kv = ((self.free_speed / 60.0 * 2.0 * numpy.pi) /
-              (12.0 - self.R * self.free_current))
-    # Torque constant
-    self.Kt = self.stall_torque / self.stall_current
-    # Control loop time step
-    self.dt = 0.01
-
-    # State feedback matrices
-    self.A_continuous = numpy.matrix(
-        [[-self.Kt / self.Kv / (self.J * self.R)]])
-    self.B_continuous = numpy.matrix(
-        [[self.Kt / (self.J * self.R)]])
-    self.C = numpy.matrix([[1]])
-    self.D = numpy.matrix([[0]])
-
-    self.A, self.B = self.ContinuousToDiscrete(self.A_continuous,
-                                               self.B_continuous, self.dt)
-
-    self.PlaceControllerPoles([0.01])
-    self.PlaceObserverPoles([0.01])
-
-    self.U_max = numpy.matrix([[12.0]])
-    self.U_min = numpy.matrix([[-12.0]])
-
-    self.InitializeState()
-
-
-class Drivetrain(control_loop.ControlLoop):
-  def __init__(self, name="Drivetrain", left_low=True, right_low=True):
-    super(Drivetrain, self).__init__(name)
-    # Stall Torque in N m
-    self.stall_torque = 2.42
-    # Stall Current in Amps
-    self.stall_current = 133
-    # Free Speed in RPM. Used number from last year.
-    self.free_speed = 4650.0
-    # Free Current in Amps
-    self.free_current = 2.7
-    # Moment of inertia of the drivetrain in kg m^2
-    # Just borrowed from last year.
-    self.J = 4.5
-    # Mass of the robot, in kg.
-    self.m = 60
-    # Radius of the robot, in meters (from last year).
-    self.rb = 0.7112 / 2.0
-    # Radius of the wheels, in meters.
-    self.r = .04445
-    # Resistance of the motor, divided by the number of motors.
-    self.R = 12.0 / self.stall_current / 4
-    # Motor velocity constant
-    self.Kv = ((self.free_speed / 60.0 * 2.0 * numpy.pi) /
-               (12.0 - self.R * self.free_current))
-    # Torque constant
-    self.Kt = self.stall_torque / self.stall_current
-    # Gear ratios
-    self.G_low = 14.0 / 60.0 * 17.0 / 50.0
-    self.G_high = 30.0 / 44.0 * 17.0 / 50.0
-    if left_low:
-      self.Gl = self.G_low
-    else:
-      self.Gl = self.G_high
-    if right_low:
-      self.Gr = self.G_low
-    else:
-      self.Gr = self.G_high
-    # Control loop time step
-    self.dt = 0.01
-
-    # These describe the way that a given side of a robot will be influenced
-    # by the other side. Units of 1 / kg.
-    self.msp = 1.0 / self.m + self.rb * self.rb / self.J
-    self.msn = 1.0 / self.m - self.rb * self.rb / self.J
-    # The calculations which we will need for A and B.
-    self.tcl = -self.Kt / self.Kv / (self.Gl * self.Gl * self.R * self.r * self.r)
-    self.tcr = -self.Kt / self.Kv / (self.Gr * self.Gr * self.R * self.r * self.r)
-    self.mpl = self.Kt / (self.Gl * self.R * self.r)
-    self.mpr = self.Kt / (self.Gr * self.R * self.r)
-
-    # State feedback matrices
-    # X will be of the format
-    # [[positionl], [velocityl], [positionr], velocityr]]
-    self.A_continuous = numpy.matrix(
-        [[0, 1, 0, 0],
-         [0, self.msp * self.tcl, 0, self.msn * self.tcr],
-         [0, 0, 0, 1],
-         [0, self.msn * self.tcl, 0, self.msp * self.tcr]])
-    self.B_continuous = numpy.matrix(
-        [[0, 0],
-         [self.msp * self.mpl, self.msn * self.mpr],
-         [0, 0],
-         [self.msn * self.mpl, self.msp * self.mpr]])
-    self.C = numpy.matrix([[1, 0, 0, 0],
-                           [0, 0, 1, 0]])
-    self.D = numpy.matrix([[0, 0],
-                           [0, 0]])
-
-    #print "THE NUMBER I WANT" + str(numpy.linalg.inv(self.A_continuous) * -self.B_continuous * numpy.matrix([[12.0], [12.0]]))
-    self.A, self.B = self.ContinuousToDiscrete(
-        self.A_continuous, self.B_continuous, self.dt)
-
-    # Poles from last year.
-    self.hp = 0.65
-    self.lp = 0.83
-    self.PlaceControllerPoles([self.hp, self.lp, self.hp, self.lp])
-    print self.K
-    q_pos = 0.07
-    q_vel = 1.0
-    self.Q = numpy.matrix([[(1.0 / (q_pos ** 2.0)), 0.0, 0.0, 0.0],
-                           [0.0, (1.0 / (q_vel ** 2.0)), 0.0, 0.0],
-                           [0.0, 0.0, (1.0 / (q_pos ** 2.0)), 0.0],
-                           [0.0, 0.0, 0.0, (1.0 / (q_vel ** 2.0))]])
-
-    self.R = numpy.matrix([[(1.0 / (12.0 ** 2.0)), 0.0],
-                           [0.0, (1.0 / (12.0 ** 2.0))]])
-    self.K = controls.dlqr(self.A, self.B, self.Q, self.R)
-    print self.A
-    print self.B
-    print self.K
-    print numpy.linalg.eig(self.A - self.B * self.K)[0]
-
-    self.hlp = 0.3
-    self.llp = 0.4
-    self.PlaceObserverPoles([self.hlp, self.hlp, self.llp, self.llp])
-
-    self.U_max = numpy.matrix([[12.0], [12.0]])
-    self.U_min = numpy.matrix([[-12.0], [-12.0]])
-    self.InitializeState()
-
-def main(argv):
-  # Simulate the response of the system to a step input.
-  drivetrain = Drivetrain()
-  simulated_left = []
-  simulated_right = []
-  for _ in xrange(100):
-    drivetrain.Update(numpy.matrix([[12.0], [12.0]]))
-    simulated_left.append(drivetrain.X[0, 0])
-    simulated_right.append(drivetrain.X[2, 0])
-
-  #pylab.plot(range(100), simulated_left)
-  #pylab.plot(range(100), simulated_right)
-  #pylab.show()
-
-  # Simulate forwards motion.
-  drivetrain = Drivetrain()
-  close_loop_left = []
-  close_loop_right = []
-  R = numpy.matrix([[1.0], [0.0], [1.0], [0.0]])
-  for _ in xrange(100):
-    U = numpy.clip(drivetrain.K * (R - drivetrain.X_hat),
-                   drivetrain.U_min, drivetrain.U_max)
-    drivetrain.UpdateObserver(U)
-    drivetrain.Update(U)
-    close_loop_left.append(drivetrain.X[0, 0])
-    close_loop_right.append(drivetrain.X[2, 0])
-
-  #pylab.plot(range(100), close_loop_left)
-  #pylab.plot(range(100), close_loop_right)
-  #pylab.show()
-
-  # Try turning in place
-  drivetrain = Drivetrain()
-  close_loop_left = []
-  close_loop_right = []
-  R = numpy.matrix([[-1.0], [0.0], [1.0], [0.0]])
-  for _ in xrange(100):
-    U = numpy.clip(drivetrain.K * (R - drivetrain.X_hat),
-                   drivetrain.U_min, drivetrain.U_max)
-    drivetrain.UpdateObserver(U)
-    drivetrain.Update(U)
-    close_loop_left.append(drivetrain.X[0, 0])
-    close_loop_right.append(drivetrain.X[2, 0])
-
-  #pylab.plot(range(100), close_loop_left)
-  #pylab.plot(range(100), close_loop_right)
-  #pylab.show()
-
-  # Try turning just one side.
-  drivetrain = Drivetrain()
-  close_loop_left = []
-  close_loop_right = []
-  R = numpy.matrix([[0.0], [0.0], [1.0], [0.0]])
-  for _ in xrange(100):
-    U = numpy.clip(drivetrain.K * (R - drivetrain.X_hat),
-                   drivetrain.U_min, drivetrain.U_max)
-    drivetrain.UpdateObserver(U)
-    drivetrain.Update(U)
-    close_loop_left.append(drivetrain.X[0, 0])
-    close_loop_right.append(drivetrain.X[2, 0])
-
-  #pylab.plot(range(100), close_loop_left)
-  #pylab.plot(range(100), close_loop_right)
-  #pylab.show()
-
-  # Write the generated constants out to a file.
-  print "Output one"
-  drivetrain_low_low = Drivetrain(name="DrivetrainLowLow", left_low=True, right_low=True)
-  drivetrain_low_high = Drivetrain(name="DrivetrainLowHigh", left_low=True, right_low=False)
-  drivetrain_high_low = Drivetrain(name="DrivetrainHighLow", left_low=False, right_low=True)
-  drivetrain_high_high = Drivetrain(name="DrivetrainHighHigh", left_low=False, right_low=False)
-
-  if len(argv) != 3:
-    print "Expected .h file name and .cc file name"
-  else:
-    dog_loop_writer = control_loop.ControlLoopWriter(
-        "Drivetrain", [drivetrain_low_low, drivetrain_low_high,
-                       drivetrain_high_low, drivetrain_high_high],
-        namespaces = ["bot3", "control_loops"])
-    if argv[1][-3:] == '.cc':
-      dog_loop_writer.Write(argv[2], argv[1])
-    else:
-      dog_loop_writer.Write(argv[1], argv[2])
-
-if __name__ == '__main__':
-  sys.exit(main(sys.argv))
diff --git a/bot3/control_loops/python/polydrivetrain.py b/bot3/control_loops/python/polydrivetrain.py
deleted file mode 100755
index 49d390b..0000000
--- a/bot3/control_loops/python/polydrivetrain.py
+++ /dev/null
@@ -1,501 +0,0 @@
-#!/usr/bin/python
-
-import numpy
-import sys
-import polytope
-import drivetrain
-import control_loop
-import controls
-from matplotlib import pylab
-
-__author__ = 'Austin Schuh (austin.linux@gmail.com)'
-
-
-def CoerceGoal(region, K, w, R):
-  """Intersects a line with a region, and finds the closest point to R.
-
-  Finds a point that is closest to R inside the region, and on the line
-  defined by K X = w.  If it is not possible to find a point on the line,
-  finds a point that is inside the region and closest to the line.  This
-  function assumes that
-
-  Args:
-    region: HPolytope, the valid goal region.
-    K: numpy.matrix (2 x 1), the matrix for the equation [K1, K2] [x1; x2] = w
-    w: float, the offset in the equation above.
-    R: numpy.matrix (2 x 1), the point to be closest to.
-
-  Returns:
-    numpy.matrix (2 x 1), the point.
-  """
-  return DoCoerceGoal(region, K, w, R)[0]
-
-def DoCoerceGoal(region, K, w, R):
-  if region.IsInside(R):
-    return (R, True)
-
-  perpendicular_vector = K.T / numpy.linalg.norm(K)
-  parallel_vector = numpy.matrix([[perpendicular_vector[1, 0]],
-                                  [-perpendicular_vector[0, 0]]])
-
-  # We want to impose the constraint K * X = w on the polytope H * X <= k.
-  # We do this by breaking X up into parallel and perpendicular components to
-  # the half plane.  This gives us the following equation.
-  #
-  #  parallel * (parallel.T \dot X) + perpendicular * (perpendicular \dot X)) = X
-  #
-  # Then, substitute this into the polytope.
-  #
-  #  H * (parallel * (parallel.T \dot X) + perpendicular * (perpendicular \dot X)) <= k
-  #
-  # Substitute K * X = w
-  #
-  # H * parallel * (parallel.T \dot X) + H * perpendicular * w <= k
-  #
-  # Move all the knowns to the right side.
-  #
-  # H * parallel * ([parallel1 parallel2] * X) <= k - H * perpendicular * w
-  #
-  # Let t = parallel.T \dot X, the component parallel to the surface.
-  #
-  # H * parallel * t <= k - H * perpendicular * w
-  #
-  # This is a polytope which we can solve, and use to figure out the range of X
-  # that we care about!
-
-  t_poly = polytope.HPolytope(
-      region.H * parallel_vector,
-      region.k - region.H * perpendicular_vector * w)
-
-  vertices = t_poly.Vertices()
-
-  if vertices.shape[0]:
-    # The region exists!
-    # Find the closest vertex
-    min_distance = numpy.infty
-    closest_point = None
-    for vertex in vertices:
-      point = parallel_vector * vertex + perpendicular_vector * w
-      length = numpy.linalg.norm(R - point)
-      if length < min_distance:
-        min_distance = length
-        closest_point = point
-
-    return (closest_point, True)
-  else:
-    # Find the vertex of the space that is closest to the line.
-    region_vertices = region.Vertices()
-    min_distance = numpy.infty
-    closest_point = None
-    for vertex in region_vertices:
-      point = vertex.T
-      length = numpy.abs((perpendicular_vector.T * point)[0, 0])
-      if length < min_distance:
-        min_distance = length
-        closest_point = point
-
-    return (closest_point, False)
-
-
-class VelocityDrivetrainModel(control_loop.ControlLoop):
-  def __init__(self, left_low=True, right_low=True, name="VelocityDrivetrainModel"):
-    super(VelocityDrivetrainModel, self).__init__(name)
-    self._drivetrain = drivetrain.Drivetrain(left_low=left_low,
-                                             right_low=right_low)
-    self.dt = 0.01
-    self.A_continuous = numpy.matrix(
-        [[self._drivetrain.A_continuous[1, 1], self._drivetrain.A_continuous[1, 3]],
-         [self._drivetrain.A_continuous[3, 1], self._drivetrain.A_continuous[3, 3]]])
-
-    self.B_continuous = numpy.matrix(
-        [[self._drivetrain.B_continuous[1, 0], self._drivetrain.B_continuous[1, 1]],
-         [self._drivetrain.B_continuous[3, 0], self._drivetrain.B_continuous[3, 1]]])
-    self.C = numpy.matrix(numpy.eye(2));
-    self.D = numpy.matrix(numpy.zeros((2, 2)));
-
-    self.A, self.B = self.ContinuousToDiscrete(self.A_continuous,
-                                               self.B_continuous, self.dt)
-
-    # FF * X = U (steady state)
-    self.FF = self.B.I * (numpy.eye(2) - self.A)
-
-    self.PlaceControllerPoles([0.6, 0.6])
-    self.PlaceObserverPoles([0.02, 0.02])
-
-    self.G_high = self._drivetrain.G_high
-    self.G_low = self._drivetrain.G_low
-    self.R = self._drivetrain.R
-    self.r = self._drivetrain.r
-    self.Kv = self._drivetrain.Kv
-    self.Kt = self._drivetrain.Kt
-
-    self.U_max = self._drivetrain.U_max
-    self.U_min = self._drivetrain.U_min
-
-
-class VelocityDrivetrain(object):
-  HIGH = 'high'
-  LOW = 'low'
-  SHIFTING_UP = 'up'
-  SHIFTING_DOWN = 'down'
-
-  def __init__(self):
-    self.drivetrain_low_low = VelocityDrivetrainModel(
-        left_low=True, right_low=True, name='VelocityDrivetrainLowLow')
-    self.drivetrain_low_high = VelocityDrivetrainModel(left_low=True, right_low=False, name='VelocityDrivetrainLowHigh')
-    self.drivetrain_high_low = VelocityDrivetrainModel(left_low=False, right_low=True, name = 'VelocityDrivetrainHighLow')
-    self.drivetrain_high_high = VelocityDrivetrainModel(left_low=False, right_low=False, name = 'VelocityDrivetrainHighHigh')
-
-    # X is [lvel, rvel]
-    self.X = numpy.matrix(
-        [[0.0],
-         [0.0]])
-
-    self.U_poly = polytope.HPolytope(
-        numpy.matrix([[1, 0],
-                      [-1, 0],
-                      [0, 1],
-                      [0, -1]]),
-        numpy.matrix([[12],
-                      [12],
-                      [12],
-                      [12]]))
-
-    self.U_max = numpy.matrix(
-        [[12.0],
-         [12.0]])
-    self.U_min = numpy.matrix(
-        [[-12.0000000000],
-         [-12.0000000000]])
-
-    self.dt = 0.01
-
-    self.R = numpy.matrix(
-        [[0.0],
-         [0.0]])
-
-    # ttrust is the comprimise between having full throttle negative inertia,
-    # and having no throttle negative inertia.  A value of 0 is full throttle
-    # inertia.  A value of 1 is no throttle negative inertia.
-    self.ttrust = 1.0
-
-    self.left_gear = VelocityDrivetrain.LOW
-    self.right_gear = VelocityDrivetrain.LOW
-    self.left_shifter_position = 0.0
-    self.right_shifter_position = 0.0
-    self.left_cim = drivetrain.CIM()
-    self.right_cim = drivetrain.CIM()
-
-  def IsInGear(self, gear):
-    return gear is VelocityDrivetrain.HIGH or gear is VelocityDrivetrain.LOW
-
-  def MotorRPM(self, shifter_position, velocity):
-    if shifter_position > 0.5:
-      return (velocity / self.CurrentDrivetrain().G_high /
-              self.CurrentDrivetrain().r)
-    else:
-      return (velocity / self.CurrentDrivetrain().G_low /
-              self.CurrentDrivetrain().r)
-
-  def CurrentDrivetrain(self):
-    if self.left_shifter_position > 0.5:
-      if self.right_shifter_position > 0.5:
-        return self.drivetrain_high_high
-      else:
-        return self.drivetrain_high_low
-    else:
-      if self.right_shifter_position > 0.5:
-        return self.drivetrain_low_high
-      else:
-        return self.drivetrain_low_low
-
-  def SimShifter(self, gear, shifter_position):
-    if gear is VelocityDrivetrain.HIGH or gear is VelocityDrivetrain.SHIFTING_UP:
-      shifter_position = min(shifter_position + 0.5, 1.0)
-    else:
-      shifter_position = max(shifter_position - 0.5, 0.0)
-
-    if shifter_position == 1.0:
-      gear = VelocityDrivetrain.HIGH
-    elif shifter_position == 0.0:
-      gear = VelocityDrivetrain.LOW
-
-    return gear, shifter_position
-
-  def ComputeGear(self, wheel_velocity, should_print=False, current_gear=False, gear_name=None):
-    high_omega = (wheel_velocity / self.CurrentDrivetrain().G_high /
-                  self.CurrentDrivetrain().r)
-    low_omega = (wheel_velocity / self.CurrentDrivetrain().G_low /
-                 self.CurrentDrivetrain().r)
-    #print gear_name, "Motor Energy Difference.", 0.5 * 0.000140032647 * (low_omega * low_omega - high_omega * high_omega), "joules"
-    high_torque = ((12.0 - high_omega / self.CurrentDrivetrain().Kv) *
-                   self.CurrentDrivetrain().Kt / self.CurrentDrivetrain().R)
-    low_torque = ((12.0 - low_omega / self.CurrentDrivetrain().Kv) *
-                  self.CurrentDrivetrain().Kt / self.CurrentDrivetrain().R)
-    high_power = high_torque * high_omega
-    low_power = low_torque * low_omega
-    #if should_print:
-    #  print gear_name, "High omega", high_omega, "Low omega", low_omega
-    #  print gear_name, "High torque", high_torque, "Low torque", low_torque
-    #  print gear_name, "High power", high_power, "Low power", low_power
-
-    # Shift algorithm improvements.
-    # TODO(aschuh):
-    # It takes time to shift.  Shifting down for 1 cycle doesn't make sense
-    # because you will end up slower than without shifting.  Figure out how
-    # to include that info.
-    # If the driver is still in high gear, but isn't asking for the extra power
-    # from low gear, don't shift until he asks for it.
-    goal_gear_is_high = high_power > low_power
-    #goal_gear_is_high = True
-
-    if not self.IsInGear(current_gear):
-      print gear_name, 'Not in gear.'
-      return current_gear
-    else:
-      is_high = current_gear is VelocityDrivetrain.HIGH
-      if is_high != goal_gear_is_high:
-        if goal_gear_is_high:
-          print gear_name, 'Shifting up.'
-          return VelocityDrivetrain.SHIFTING_UP
-        else:
-          print gear_name, 'Shifting down.'
-          return VelocityDrivetrain.SHIFTING_DOWN
-      else:
-        return current_gear
-
-  def FilterVelocity(self, throttle):
-    # Invert the plant to figure out how the velocity filter would have to work
-    # out in order to filter out the forwards negative inertia.
-    # This math assumes that the left and right power and velocity are equal.
-
-    # The throttle filter should filter such that the motor in the highest gear
-    # should be controlling the time constant.
-    # Do this by finding the index of FF that has the lowest value, and computing
-    # the sums using that index.
-    FF_sum = self.CurrentDrivetrain().FF.sum(axis=1)
-    min_FF_sum_index = numpy.argmin(FF_sum)
-    min_FF_sum = FF_sum[min_FF_sum_index, 0]
-    min_K_sum = self.CurrentDrivetrain().K[min_FF_sum_index, :].sum()
-    # Compute the FF sum for high gear.
-    high_min_FF_sum = self.drivetrain_high_high.FF[0, :].sum()
-
-    # U = self.K[0, :].sum() * (R - x_avg) + self.FF[0, :].sum() * R
-    # throttle * 12.0 = (self.K[0, :].sum() + self.FF[0, :].sum()) * R
-    #                   - self.K[0, :].sum() * x_avg
-
-    # R = (throttle * 12.0 + self.K[0, :].sum() * x_avg) /
-    #     (self.K[0, :].sum() + self.FF[0, :].sum())
-
-    # U = (K + FF) * R - K * X
-    # (K + FF) ^-1 * (U + K * X) = R
-
-    # Scale throttle by min_FF_sum / high_min_FF_sum.  This will make low gear
-    # have the same velocity goal as high gear, and so that the robot will hold
-    # the same speed for the same throttle for all gears.
-    adjusted_ff_voltage = numpy.clip(throttle * 12.0 * min_FF_sum / high_min_FF_sum, -12.0, 12.0)
-    return ((adjusted_ff_voltage + self.ttrust * min_K_sum * (self.X[0, 0] + self.X[1, 0]) / 2.0)
-            / (self.ttrust * min_K_sum + min_FF_sum))
-
-  def Update(self, throttle, steering):
-    # Shift into the gear which sends the most power to the floor.
-    # This is the same as sending the most torque down to the floor at the
-    # wheel.
-
-    self.left_gear = self.ComputeGear(self.X[0, 0], should_print=True,
-                                      current_gear=self.left_gear,
-                                      gear_name="left")
-    self.right_gear = self.ComputeGear(self.X[1, 0], should_print=True,
-                                       current_gear=self.right_gear,
-                                       gear_name="right")
-    if self.IsInGear(self.left_gear):
-      self.left_cim.X[0, 0] = self.MotorRPM(self.left_shifter_position, self.X[0, 0])
-
-    if self.IsInGear(self.right_gear):
-      self.right_cim.X[0, 0] = self.MotorRPM(self.right_shifter_position, self.X[0, 0])
-
-    if self.IsInGear(self.left_gear) and self.IsInGear(self.right_gear):
-      # Filter the throttle to provide a nicer response.
-      fvel = self.FilterVelocity(throttle)
-
-      # Constant radius means that angualar_velocity / linear_velocity = constant.
-      # Compute the left and right velocities.
-      left_velocity = fvel - steering * numpy.abs(fvel)
-      right_velocity = fvel + steering * numpy.abs(fvel)
-
-      # Write this constraint in the form of K * R = w
-      # angular velocity / linear velocity = constant
-      # (left - right) / (left + right) = constant
-      # left - right = constant * left + constant * right
-
-      # (fvel - steering * numpy.abs(fvel) - fvel - steering * numpy.abs(fvel)) /
-      #  (fvel - steering * numpy.abs(fvel) + fvel + steering * numpy.abs(fvel)) =
-      #       constant
-      # (- 2 * steering * numpy.abs(fvel)) / (2 * fvel) = constant
-      # (-steering * sign(fvel)) = constant
-      # (-steering * sign(fvel)) * (left + right) = left - right
-      # (steering * sign(fvel) + 1) * left + (steering * sign(fvel) - 1) * right = 0
-
-      equality_k = numpy.matrix(
-          [[1 + steering * numpy.sign(fvel), -(1 - steering * numpy.sign(fvel))]])
-      equality_w = 0.0
-
-      self.R[0, 0] = left_velocity
-      self.R[1, 0] = right_velocity
-
-      # Construct a constraint on R by manipulating the constraint on U
-      # Start out with H * U <= k
-      # U = FF * R + K * (R - X)
-      # H * (FF * R + K * R - K * X) <= k
-      # H * (FF + K) * R <= k + H * K * X
-      R_poly = polytope.HPolytope(
-          self.U_poly.H * (self.CurrentDrivetrain().K + self.CurrentDrivetrain().FF),
-          self.U_poly.k + self.U_poly.H * self.CurrentDrivetrain().K * self.X)
-
-      # Limit R back inside the box.
-      self.boxed_R = CoerceGoal(R_poly, equality_k, equality_w, self.R)
-
-      FF_volts = self.CurrentDrivetrain().FF * self.boxed_R
-      self.U_ideal = self.CurrentDrivetrain().K * (self.boxed_R - self.X) + FF_volts
-    else:
-      print 'Not all in gear'
-      if not self.IsInGear(self.left_gear) and not self.IsInGear(self.right_gear):
-        # TODO(austin): Use battery volts here.
-        R_left = self.MotorRPM(self.left_shifter_position, self.X[0, 0])
-        self.U_ideal[0, 0] = numpy.clip(
-            self.left_cim.K * (R_left - self.left_cim.X) + R_left / self.left_cim.Kv,
-            self.left_cim.U_min, self.left_cim.U_max)
-        self.left_cim.Update(self.U_ideal[0, 0])
-
-        R_right = self.MotorRPM(self.right_shifter_position, self.X[1, 0])
-        self.U_ideal[1, 0] = numpy.clip(
-            self.right_cim.K * (R_right - self.right_cim.X) + R_right / self.right_cim.Kv,
-            self.right_cim.U_min, self.right_cim.U_max)
-        self.right_cim.Update(self.U_ideal[1, 0])
-      else:
-        assert False
-
-    self.U = numpy.clip(self.U_ideal, self.U_min, self.U_max)
-
-    # TODO(austin): Model the robot as not accelerating when you shift...
-    # This hack only works when you shift at the same time.
-    if self.IsInGear(self.left_gear) and self.IsInGear(self.right_gear):
-      self.X = self.CurrentDrivetrain().A * self.X + self.CurrentDrivetrain().B * self.U
-
-    self.left_gear, self.left_shifter_position = self.SimShifter(
-        self.left_gear, self.left_shifter_position)
-    self.right_gear, self.right_shifter_position = self.SimShifter(
-        self.right_gear, self.right_shifter_position)
-
-    print "U is", self.U[0, 0], self.U[1, 0]
-    print "Left shifter", self.left_gear, self.left_shifter_position, "Right shifter", self.right_gear, self.right_shifter_position
-
-
-def main(argv):
-  vdrivetrain = VelocityDrivetrain()
-
-  if len(argv) != 5:
-    print "Expected .h file name and .cc file name"
-  else:
-    dog_loop_writer = control_loop.ControlLoopWriter(
-        "VelocityDrivetrain", [vdrivetrain.drivetrain_low_low,
-                       vdrivetrain.drivetrain_low_high,
-                       vdrivetrain.drivetrain_high_low,
-                       vdrivetrain.drivetrain_high_high],
-        namespaces = ["bot3", "control_loops"])
-
-    if argv[1][-3:] == '.cc':
-      dog_loop_writer.Write(argv[2], argv[1])
-    else:
-      dog_loop_writer.Write(argv[1], argv[2])
-
-    cim_writer = control_loop.ControlLoopWriter(
-        "CIM", [drivetrain.CIM()])
-
-    if argv[3][-3:] == '.cc':
-      cim_writer.Write(argv[4], argv[3])
-    else:
-      cim_writer.Write(argv[3], argv[4])
-    return
-
-  vl_plot = []
-  vr_plot = []
-  ul_plot = []
-  ur_plot = []
-  radius_plot = []
-  t_plot = []
-  left_gear_plot = []
-  right_gear_plot = []
-  vdrivetrain.left_shifter_position = 0.0
-  vdrivetrain.right_shifter_position = 0.0
-  vdrivetrain.left_gear = VelocityDrivetrain.LOW
-  vdrivetrain.right_gear = VelocityDrivetrain.LOW
-
-  print "K is", vdrivetrain.CurrentDrivetrain().K
-
-  if vdrivetrain.left_gear is VelocityDrivetrain.HIGH:
-    print "Left is high"
-  else:
-    print "Left is low"
-  if vdrivetrain.right_gear is VelocityDrivetrain.HIGH:
-    print "Right is high"
-  else:
-    print "Right is low"
-
-  for t in numpy.arange(0, 4.0, vdrivetrain.dt):
-    if t < 1.0:
-      vdrivetrain.Update(throttle=1.00, steering=0.0)
-    elif t < 1.2:
-      vdrivetrain.Update(throttle=1.00, steering=0.0)
-    else:
-      vdrivetrain.Update(throttle=1.00, steering=0.0)
-    t_plot.append(t)
-    vl_plot.append(vdrivetrain.X[0, 0])
-    vr_plot.append(vdrivetrain.X[1, 0])
-    ul_plot.append(vdrivetrain.U[0, 0])
-    ur_plot.append(vdrivetrain.U[1, 0])
-    left_gear_plot.append((vdrivetrain.left_gear is VelocityDrivetrain.HIGH) * 2.0 - 10.0)
-    right_gear_plot.append((vdrivetrain.right_gear is VelocityDrivetrain.HIGH) * 2.0 - 10.0)
-
-    fwd_velocity = (vdrivetrain.X[1, 0] + vdrivetrain.X[0, 0]) / 2
-    turn_velocity = (vdrivetrain.X[1, 0] - vdrivetrain.X[0, 0])
-    if abs(fwd_velocity) < 0.0000001:
-      radius_plot.append(turn_velocity)
-    else:
-      radius_plot.append(turn_velocity / fwd_velocity)
-
-  cim_velocity_plot = []
-  cim_voltage_plot = []
-  cim_time = []
-  cim = drivetrain.CIM()
-  R = numpy.matrix([[300]])
-  for t in numpy.arange(0, 0.5, cim.dt):
-    U = numpy.clip(cim.K * (R - cim.X) + R / cim.Kv, cim.U_min, cim.U_max)
-    cim.Update(U)
-    cim_velocity_plot.append(cim.X[0, 0])
-    cim_voltage_plot.append(U[0, 0] * 10)
-    cim_time.append(t)
-  #pylab.plot(cim_time, cim_velocity_plot, label='cim spinup')
-  #pylab.plot(cim_time, cim_voltage_plot, label='cim voltage')
-  #pylab.legend()
-  #pylab.show()
-
-  # TODO(austin):
-  # Shifting compensation.
-
-  # Tighten the turn.
-  # Closed loop drive.
-
-  pylab.plot(t_plot, vl_plot, label='left velocity')
-  pylab.plot(t_plot, vr_plot, label='right velocity')
-  pylab.plot(t_plot, ul_plot, label='left voltage')
-  pylab.plot(t_plot, ur_plot, label='right voltage')
-  pylab.plot(t_plot, radius_plot, label='radius')
-  pylab.plot(t_plot, left_gear_plot, label='left gear high')
-  pylab.plot(t_plot, right_gear_plot, label='right gear high')
-  pylab.legend()
-  pylab.show()
-  return 0
-
-if __name__ == '__main__':
-  sys.exit(main(sys.argv))
diff --git a/bot3/control_loops/python/polydrivetrain_test.py b/bot3/control_loops/python/polydrivetrain_test.py
deleted file mode 100755
index 434cdca..0000000
--- a/bot3/control_loops/python/polydrivetrain_test.py
+++ /dev/null
@@ -1,82 +0,0 @@
-#!/usr/bin/python
-
-import polydrivetrain
-import numpy
-from numpy.testing import *
-import polytope
-import unittest
-
-__author__ = 'Austin Schuh (austin.linux@gmail.com)'
-
-
-class TestVelocityDrivetrain(unittest.TestCase):
-  def MakeBox(self, x1_min, x1_max, x2_min, x2_max):
-    H = numpy.matrix([[1, 0],
-                      [-1, 0],
-                      [0, 1],
-                      [0, -1]])
-    K = numpy.matrix([[x1_max],
-                      [-x1_min],
-                      [x2_max],
-                      [-x2_min]])
-    return polytope.HPolytope(H, K)
-
-  def test_coerce_inside(self):
-    """Tests coercion when the point is inside the box."""
-    box = self.MakeBox(1, 2, 1, 2)
-
-    # x1 = x2
-    K = numpy.matrix([[1, -1]])
-    w = 0
-
-    assert_array_equal(polydrivetrain.CoerceGoal(box, K, w,
-                                                 numpy.matrix([[1.5], [1.5]])),
-                       numpy.matrix([[1.5], [1.5]]))
-
-  def test_coerce_outside_intersect(self):
-    """Tests coercion when the line intersects the box."""
-    box = self.MakeBox(1, 2, 1, 2)
-
-    # x1 = x2
-    K = numpy.matrix([[1, -1]])
-    w = 0
-
-    assert_array_equal(polydrivetrain.CoerceGoal(box, K, w, numpy.matrix([[5], [5]])),
-                       numpy.matrix([[2.0], [2.0]]))
-
-  def test_coerce_outside_no_intersect(self):
-    """Tests coercion when the line does not intersect the box."""
-    box = self.MakeBox(3, 4, 1, 2)
-
-    # x1 = x2
-    K = numpy.matrix([[1, -1]])
-    w = 0
-
-    assert_array_equal(polydrivetrain.CoerceGoal(box, K, w, numpy.matrix([[5], [5]])),
-                       numpy.matrix([[3.0], [2.0]]))
-
-  def test_coerce_middle_of_edge(self):
-    """Tests coercion when the line intersects the middle of an edge."""
-    box = self.MakeBox(0, 4, 1, 2)
-
-    # x1 = x2
-    K = numpy.matrix([[-1, 1]])
-    w = 0
-
-    assert_array_equal(polydrivetrain.CoerceGoal(box, K, w, numpy.matrix([[5], [5]])),
-                       numpy.matrix([[2.0], [2.0]]))
-
-  def test_coerce_perpendicular_line(self):
-    """Tests coercion when the line does not intersect and is in quadrant 2."""
-    box = self.MakeBox(1, 2, 1, 2)
-
-    # x1 = -x2
-    K = numpy.matrix([[1, 1]])
-    w = 0
-
-    assert_array_equal(polydrivetrain.CoerceGoal(box, K, w, numpy.matrix([[5], [5]])),
-                       numpy.matrix([[1.0], [1.0]]))
-
-
-if __name__ == '__main__':
-  unittest.main()
diff --git a/bot3/control_loops/rollers/rollers.cc b/bot3/control_loops/rollers/rollers.cc
deleted file mode 100644
index 8777549..0000000
--- a/bot3/control_loops/rollers/rollers.cc
+++ /dev/null
@@ -1,74 +0,0 @@
-#include "bot3/control_loops/rollers/rollers.h"
-#include "bot3/control_loops/rollers/rollers.q.h"
-
-namespace bot3 {
-namespace control_loops {
-
-void RollersLoop::RunIteration(const Rollers::Goal *goal,
-                               const Rollers::Position * /*position*/,
-                               Rollers::Output *output,
-                               Rollers::Status * /*status*/) {
-  constexpr double kBot3IntakeForwardVoltage = 12.0;
-  constexpr double kBot3IntakeBackwardVoltage = -12.0;
-  constexpr double kBot3LowGoalForwardVoltage = 6.0;
-  constexpr double kBot3LowGoalBackwardVoltage = -6.0;
-
-  const int intake = goal->intake;
-  const int low_spit = goal->low_spit;
-  const bool human_player = goal->human_player;
-
-  if (!output) {
-    return;
-  }
-
-  output->Zero();
-
-  switch (low_spit) {
-    case 1:
-      // Spit towards front
-      output->low_goal_voltage = kBot3LowGoalBackwardVoltage;
-      output->front_intake_voltage = kBot3IntakeBackwardVoltage;
-      output->back_intake_voltage = -kBot3IntakeForwardVoltage;
-      break;
-    case -1:
-      // Spit towards back
-      output->low_goal_voltage = kBot3LowGoalForwardVoltage;
-      output->back_intake_voltage = -kBot3IntakeBackwardVoltage;
-      output->front_intake_voltage = kBot3IntakeForwardVoltage;
-      break;
-    default:
-      // Stationary
-      break;
-  }
-
-  switch (intake) {
-    case 1:
-      // Front intake.
-      output->front_extended = true;
-      output->back_extended = false;
-      output->front_intake_voltage = kBot3IntakeForwardVoltage;
-      output->back_intake_voltage = 0.0;
-      break;
-    case -1:
-      // Back intake.
-      output->back_extended = true;
-      output->front_extended = false;
-      output->back_intake_voltage = -kBot3IntakeForwardVoltage;
-      output->front_intake_voltage = 0.0;
-      break;
-    default:
-      // Stationary
-      break;
-  }
-
-  if (human_player) {
-    // Intake for human player.
-    output->front_extended = false;
-    output->back_extended = false;
-    output->front_intake_voltage = kBot3IntakeForwardVoltage;
-    output->back_intake_voltage = -kBot3IntakeForwardVoltage;
-  }
-}
-
-}  //  namespace control_loops
-}  //  namespace bot3
diff --git a/bot3/control_loops/rollers/rollers.gyp b/bot3/control_loops/rollers/rollers.gyp
deleted file mode 100644
index e865ed8..0000000
--- a/bot3/control_loops/rollers/rollers.gyp
+++ /dev/null
@@ -1,45 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'rollers_loop',
-      'type': 'static_library',
-      'sources': ['rollers.q'],
-      'variables': {
-        'header_path': 'bot3/control_loops/rollers',
-      },
-      'dependencies': [
-        '<(AOS)/common/controls/controls.gyp:control_loop_queues',
-      ],
-      'export_dependent_settings': [
-        '<(AOS)/common/controls/controls.gyp:control_loop_queues',
-      ],
-      'includes': ['../../../aos/build/queues.gypi'],
-    },
-    {
-      'target_name': 'rollers_lib',
-      'type': 'static_library',
-      'sources': [
-        'rollers.cc',
-      ],
-      'dependencies': [
-        'rollers_loop',
-        '<(AOS)/common/controls/controls.gyp:control_loop',
-      ],
-      'export_dependent_settings': [
-        'rollers_loop',
-        '<(AOS)/common/controls/controls.gyp:control_loop',
-      ],
-    },
-    {
-      'target_name': 'rollers',
-      'type': 'executable',
-      'sources': [
-        'rollers_main.cc',
-      ],
-      'dependencies': [
-        'rollers_lib',
-        '<(AOS)/linux_code/linux_code.gyp:init'
-      ],
-    },
-  ],
-}
diff --git a/bot3/control_loops/rollers/rollers.h b/bot3/control_loops/rollers/rollers.h
deleted file mode 100644
index f67b372..0000000
--- a/bot3/control_loops/rollers/rollers.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef BOT3_CONTROL_LOOPS_ROLLERS_H_
-#define BOT3_CONTROL_LOOPS_ROLLERS_H_
-
-#include "aos/common/controls/control_loop.h"
-#include "bot3/control_loops/rollers/rollers.q.h"
-
-namespace bot3 {
-namespace control_loops {
-
-class RollersLoop
-  : public aos::controls::ControlLoop<control_loops::Rollers,
-      false, false, true> {
- public:
-  // Constructs a control loops which can take a rollers or defaults to the
-  // rollers at ::bot3::control_loops::rollers.
-  explicit RollersLoop(
-      control_loops::Rollers *my_rollers = &control_loops::rollers)
-      : aos::controls::ControlLoop<control_loops::Rollers, false, false, true>(
-          my_rollers) {}
-
- protected:
-  // Executes one cycle of the control loop.
-  virtual void RunIteration(
-      const control_loops::Rollers::Goal *goal,
-      const control_loops::Rollers::Position *position,
-      control_loops::Rollers::Output *output,
-      control_loops::Rollers::Status *status);
-};
-
-}  // namespace control_loops
-}  // namespace bot3
-
-#endif  // BOT3_CONTROL_LOOPS_ROLLERS_H_
diff --git a/bot3/control_loops/rollers/rollers.q b/bot3/control_loops/rollers/rollers.q
deleted file mode 100644
index 5abb488..0000000
--- a/bot3/control_loops/rollers/rollers.q
+++ /dev/null
@@ -1,40 +0,0 @@
-package bot3.control_loops;
-
-import "aos/common/controls/control_loops.q";
-
-queue_group Rollers {
-  implements aos.control_loops.ControlLoop;
-
-  message Goal {
-    // -1 = back intake, 1 = front intake, all else = stationary.
-    int16_t intake;
-    // -1 = backwards, 1 = forwards, all else = stationary.
-    int16_t low_spit;
-    // Whether we want the human player load function.
-    bool human_player;
-  };
-
-  message Position {};
-
-  message Output {
-    // Positive voltage = intaking, Negative = spitting.
-    double front_intake_voltage;
-    double back_intake_voltage;
-    // Voltage for the low goal rollers.
-    // Positive voltage = ball towards back, Negative = ball towards front.
-    double low_goal_voltage;
-
-    // Whether the front and back intake pistons are extended.
-    bool front_extended;
-    bool back_extended;
-  };
-
-  message Status {};
-
-  queue Goal goal;
-  queue Position position;
-  queue Output output;
-  queue Status status;
-};
-
-queue_group Rollers rollers;
diff --git a/bot3/control_loops/rollers/rollers_main.cc b/bot3/control_loops/rollers/rollers_main.cc
deleted file mode 100644
index 75d2cc6..0000000
--- a/bot3/control_loops/rollers/rollers_main.cc
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "bot3/control_loops/rollers/rollers.h"
-
-#include "aos/linux_code/init.h"
-
-int main() {
-  ::aos::Init();
-  bot3::control_loops::RollersLoop rollers;
-  rollers.Run();
-  ::aos::Cleanup();
-  return 0;
-}
diff --git a/bot3/control_loops/update_drivetrain.sh b/bot3/control_loops/update_drivetrain.sh
deleted file mode 100755
index 91ff838..0000000
--- a/bot3/control_loops/update_drivetrain.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/bash
-#
-# Updates the drivetrain controllers for the third robot.
-
-cd $(dirname $0)
-
-PYTHONPATH=$PYTHONPATH:../../frc971/control_loops/python \
-./python/drivetrain.py drivetrain/drivetrain_dog_motor_plant.h \
-    drivetrain/drivetrain_dog_motor_plant.cc
diff --git a/bot3/control_loops/update_polydrivetrain.sh b/bot3/control_loops/update_polydrivetrain.sh
deleted file mode 100755
index d8e2d7a..0000000
--- a/bot3/control_loops/update_polydrivetrain.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-#
-# Updates the polydrivetrain controllers and CIM models for the third robot.
-
-cd $(dirname $0)
-
-PYTHONPATH=$PYTHONPATH:../../frc971/control_loops/python \
-./python/polydrivetrain.py drivetrain/polydrivetrain_dog_motor_plant.h \
-    drivetrain/polydrivetrain_dog_motor_plant.cc \
-    drivetrain/polydrivetrain_cim_plant.h \
-    drivetrain/polydrivetrain_cim_plant.cc
diff --git a/bot3/input/input.gyp b/bot3/input/input.gyp
deleted file mode 100644
index aec28b7..0000000
--- a/bot3/input/input.gyp
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'joystick_reader',
-      'type': 'executable',
-      'sources': [
-        'joystick_reader.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/prime/input/input.gyp:joystick_input',
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/util/util.gyp:log_interval',
-        '<(DEPTH)/frc971/queues/queues.gyp:queues',
-        '<(DEPTH)/bot3/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
-        '<(DEPTH)/bot3/autonomous/autonomous.gyp:auto_queue',
-        '<(DEPTH)/bot3/control_loops/rollers/rollers.gyp:rollers_loop',
-      ],
-    },
-    {
-      'target_name': 'sensor_receiver',
-      'type': 'executable',
-      'sources': [
-        'sensor_receiver.cc',
-      ],
-      'dependencies': [
-        '<(DEPTH)/bot3/control_loops/drivetrain/drivetrain.gyp:drivetrain_constants',
-        '<(DEPTH)/bot3/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
-        '<(DEPTH)/bot3/queues/queues.gyp:queues',
-        '<(DEPTH)/frc971/queues/queues.gyp:queues',
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/common/util/util.gyp:wrapping_counter',
-        '<(DEPTH)/bbb_cape/src/bbb/bbb.gyp:sensor_reader',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/logging/logging.gyp:queue_logging',
-        '<(AOS)/common/controls/controls.gyp:output_check',
-      ],
-    },
-  ],
-}
diff --git a/bot3/input/joystick_reader.cc b/bot3/input/joystick_reader.cc
deleted file mode 100644
index b8ac058..0000000
--- a/bot3/input/joystick_reader.cc
+++ /dev/null
@@ -1,173 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-#include <unistd.h>
-#include <math.h>
-
-#include "aos/linux_code/init.h"
-#include "aos/prime/input/joystick_input.h"
-#include "aos/common/input/driver_station_data.h"
-#include "aos/common/logging/logging.h"
-#include "aos/common/util/log_interval.h"
-#include "aos/common/time.h"
-
-#include "bot3/control_loops/drivetrain/drivetrain.q.h"
-#include "bot3/control_loops/drivetrain/drivetrain_constants.h"
-#include "bot3/control_loops/rollers/rollers.q.h"
-#include "frc971/autonomous/auto.q.h"
-#include "frc971/queues/other_sensors.q.h"
-
-using ::bot3::control_loops::drivetrain;
-using ::frc971::sensors::gyro_reading;
-
-using ::aos::input::driver_station::ButtonLocation;
-using ::aos::input::driver_station::JoystickAxis;
-using ::aos::input::driver_station::ControlBit;
-
-namespace bot3 {
-namespace input {
-namespace joysticks {
-
-const ButtonLocation kDriveControlLoopEnable1(1, 7),
-                     kDriveControlLoopEnable2(1, 11);
-const JoystickAxis kSteeringWheel(1, 1), kDriveThrottle(4, 2);
-const ButtonLocation kShiftHigh(4, 1), kShiftLow(4, 3);
-const ButtonLocation kQuickTurn(1, 5);
-
-const ButtonLocation kFrontRollersIn(3, 5);
-const ButtonLocation kBackRollersIn(3, 3);
-const ButtonLocation kFrontRollersOut(3, 12);
-const ButtonLocation kBackRollersOut(3, 8);
-const ButtonLocation kHumanPlayer(3, 11);
-
-class Reader : public ::aos::input::JoystickInput {
- public:
-  Reader()
-      : is_high_gear_(false) {}
-
-  virtual void RunIteration(const ::aos::input::driver_station::Data &data) {
-    if (data.GetControlBit(ControlBit::kAutonomous)) {
-      if (data.PosEdge(ControlBit::kEnabled)){
-        LOG(INFO, "Starting auto mode\n");
-        ::frc971::autonomous::autonomous.MakeWithBuilder()
-            .run_auto(true)
-            .Send();
-      } else if (data.NegEdge(ControlBit::kEnabled)) {
-        LOG(INFO, "Stopping auto mode\n");
-        ::frc971::autonomous::autonomous.MakeWithBuilder()
-            .run_auto(false)
-            .Send();
-      } else if (!data.GetControlBit(ControlBit::kEnabled)) {
-        auto goal = drivetrain.goal.MakeMessage();
-        goal->Zero();
-        goal->control_loop_driving = false;
-        goal->left_goal = goal->right_goal = 0;
-        goal->left_velocity_goal = goal->right_velocity_goal = 0;
-        if (!goal.Send()) {
-          LOG(WARNING, "sending 0 drivetrain goal failed\n");
-        }
-      }
-    } else {
-      HandleTeleop(data);
-    }
-  }
-
-  void HandleDrivetrain(const ::aos::input::driver_station::Data &data) {
-    bool is_control_loop_driving = false;
-    double left_goal = 0.0;
-    double right_goal = 0.0;
-    const double wheel = -data.GetAxis(kSteeringWheel);
-    const double throttle = -data.GetAxis(kDriveThrottle);
-    const double kThrottleGain = 1.0 / 2.5;
-    if (false && (data.IsPressed(kDriveControlLoopEnable1) ||
-                  data.IsPressed(kDriveControlLoopEnable2))) {
-      static double distance = 0.0;
-      static double angle = 0.0;
-      static double filtered_goal_distance = 0.0;
-      if (data.PosEdge(kDriveControlLoopEnable1) ||
-          data.PosEdge(kDriveControlLoopEnable2)) {
-        if (drivetrain.position.FetchLatest() && gyro_reading.FetchLatest()) {
-          distance = (drivetrain.position->left_encoder +
-                      drivetrain.position->right_encoder) /
-                         2.0 -
-                     throttle * kThrottleGain / 2.0;
-          angle = gyro_reading->angle;
-          filtered_goal_distance = distance;
-        }
-      }
-      is_control_loop_driving = true;
-
-      // const double gyro_angle = Gyro.View().angle;
-      const double goal_theta = angle - wheel * 0.27;
-      const double goal_distance = distance + throttle * kThrottleGain;
-      const double robot_width = 22.0 / 100.0 * 2.54;
-      const double kMaxVelocity = 0.6;
-      if (goal_distance > kMaxVelocity * 0.02 + filtered_goal_distance) {
-        filtered_goal_distance += kMaxVelocity * 0.02;
-      } else if (goal_distance <
-                 -kMaxVelocity * 0.02 + filtered_goal_distance) {
-        filtered_goal_distance -= kMaxVelocity * 0.02;
-      } else {
-        filtered_goal_distance = goal_distance;
-      }
-      left_goal = filtered_goal_distance - robot_width * goal_theta / 2.0;
-      right_goal = filtered_goal_distance + robot_width * goal_theta / 2.0;
-      is_high_gear_ = false;
-
-      LOG(DEBUG, "Left goal %f Right goal %f\n", left_goal, right_goal);
-    }
-    if (!drivetrain.goal.MakeWithBuilder()
-             .steering(wheel)
-             .throttle(throttle)
-             .highgear(is_high_gear_)
-             .quickturn(data.IsPressed(kQuickTurn))
-             .control_loop_driving(is_control_loop_driving)
-             .left_goal(left_goal)
-             .right_goal(right_goal)
-             .left_velocity_goal(0)
-             .right_velocity_goal(0)
-             .Send()) {
-      LOG(WARNING, "sending stick values failed\n");
-    }
-    if (data.PosEdge(kShiftHigh)) {
-      is_high_gear_ = false;
-    }
-    if (data.PosEdge(kShiftLow)) {
-      is_high_gear_ = true;
-    }
-  }
-
-  void HandleTeleop(const ::aos::input::driver_station::Data &data) {
-    HandleDrivetrain(data);
-
-    // Rollers.
-    auto rollers_goal = control_loops::rollers.goal.MakeMessage();
-    if (data.IsPressed(kFrontRollersIn)) {
-      rollers_goal->intake = 1;
-    } else if (data.IsPressed(kFrontRollersOut)) {
-      rollers_goal->low_spit = 1;
-    } else if (data.IsPressed(kBackRollersIn)) {
-      rollers_goal->intake = -1;
-    } else if (data.IsPressed(kBackRollersOut)) {
-      rollers_goal->low_spit = -1;
-    } else if (data.IsPressed(kHumanPlayer)) {
-      rollers_goal->human_player = true;
-    }
-    if (!rollers_goal.Send()) {
-      LOG(WARNING, "Sending rollers values failed.\n");
-    }
-  }
-
- private:
-  bool is_high_gear_;
-};
-
-}  // namespace joysticks
-}  // namespace input
-}  // namespace bot3
-
-int main() {
-  ::aos::Init();
-  ::bot3::input::joysticks::Reader reader;
-  reader.Run();
-  ::aos::Cleanup();
-}
diff --git a/bot3/input/sensor_receiver.cc b/bot3/input/sensor_receiver.cc
deleted file mode 100644
index 683d5d1..0000000
--- a/bot3/input/sensor_receiver.cc
+++ /dev/null
@@ -1,148 +0,0 @@
-#include <inttypes.h>
-
-#include "aos/linux_code/init.h"
-#include "aos/common/logging/logging.h"
-#include "aos/common/util/wrapping_counter.h"
-#include "aos/common/time.h"
-#include "aos/common/logging/queue_logging.h"
-#include "aos/common/controls/output_check.q.h"
-
-#include "bbb/sensor_reader.h"
-
-#include "bot3/control_loops/drivetrain/drivetrain.q.h"
-#include "bot3/control_loops/drivetrain/drivetrain_constants.h"
-#include "bot3/queues/to_log.q.h"
-#include "bot3/shifter_hall_effect.h"
-#include "frc971/queues/other_sensors.q.h"
-
-#ifndef M_PI
-#define M_PI 3.14159265358979323846
-#endif
-
-using ::bot3::control_loops::drivetrain;
-using ::frc971::sensors::gyro_reading;
-using ::aos::util::WrappingCounter;
-
-namespace bot3 {
-namespace {
-
-double drivetrain_translate(int32_t in) {
-  return static_cast<double>(in)
-      / (256.0 /*cpr*/ * 4.0 /*quad*/)
-      * (18.0 / 50.0 /*output stage*/) * (64.0 / 24.0 /*encoder gears*/)
-      // * constants::GetValues().drivetrain_encoder_ratio
-      * (3.5 /*wheel diameter*/ * 2.54 / 100.0 * M_PI) * -1.0;
-}
-
-static const double kVcc = 5.15;
-
-// Translates values from the ADC into voltage.
-double adc_translate(uint16_t in) {
-  if (false) {
-    // This is the simple theoretical math.
-    static const uint16_t kMaximumValue = 0x3FF;
-    static const double kR1 = 5, kR2 = 6.65;
-    const double raw =
-        (kVcc * static_cast<double>(in) / static_cast<double>(kMaximumValue));
-    return (raw * (kR1 + kR2) - (kVcc / 2) * kR2) / kR1;
-  } else {
-    // This is from a linear regression calculated with some actual data points.
-    static const double kM = 0.012133, kB = -3.6813;
-    return static_cast<double>(in) * kM + kB;
-  }
-}
-
-double battery_translate(uint16_t in_high, uint16_t in_low) {
-  const double high = adc_translate(in_high), low = adc_translate(in_low);
-  static const double kDividerBig = 5.55, kDividerSmall = 2.66;
-  return (high - low) * (kDividerBig + kDividerSmall) / kDividerSmall +
-      kDividerBig / kDividerSmall * kVcc;
-}
-
-double gyro_translate(int64_t in) {
-  return in / 16.0 / 1000.0 / (180.0 / M_PI);
-}
-
-double hall_translate(const constants::ShifterHallEffect & k,
-    uint16_t in_value) {
-    double out = (in_value - static_cast<double>(k.low)) /
-        static_cast<double>(k.high - k.low);
-    return out;
-}
-
-void PacketReceived(const ::bbb::DataStruct *data,
-                    const ::aos::time::Time &cape_timestamp) {
-  ::aos::time::TimeFreezer time_freezer;
-
-  ::frc971::logging_structs::CapeReading reading_to_log(
-      cape_timestamp, static_cast<uint16_t>(sizeof(*data)),
-      data->main.low_left_drive_hall, data->main.high_left_drive_hall,
-      data->main.low_right_drive_hall, data->main.high_right_drive_hall);
-  LOG_STRUCT(DEBUG, "cape reading", reading_to_log);
-  bool bad_gyro;
-  // TODO(brians): Switch to LogInterval for these things.
-  if (data->uninitialized_gyro) {
-    LOG(DEBUG, "uninitialized gyro\n");
-    bad_gyro = true;
-  } else if (data->zeroing_gyro) {
-    LOG(DEBUG, "zeroing gyro\n");
-    bad_gyro = true;
-  } else if (data->bad_gyro) {
-    LOG(ERROR, "bad gyro\n");
-    bad_gyro = true;
-  } else if (data->old_gyro_reading) {
-    LOG(WARNING, "old/bad gyro reading\n");
-    bad_gyro = true;
-  } else {
-    bad_gyro = false;
-  }
-
-  if (!bad_gyro) {
-    gyro_reading.MakeWithBuilder()
-        .angle(gyro_translate(data->gyro_angle))
-        .Send();
-  }
-
-  if (data->analog_errors != 0) {
-    LOG(WARNING, "%" PRIu8 " analog errors\n", data->analog_errors);
-  }
-
-  if (data->main.output_check_pulse_length != 0) {
-    auto message = ::aos::controls::output_check_received.MakeMessage();
-    // TODO(brians): Fix this math to match what the cRIO actually does.
-    // It's close but not quite right.
-    message->pulse_length =
-        static_cast<double>(data->main.output_check_pulse_length) / 10000.0;
-    if (message->pulse_length > 2.7) {
-      LOG(WARNING, "insane PWM pulse length %fms\n", message->pulse_length);
-    } else {
-      // TODO(danielp): Send the actual pulse length if we ever add that cable.
-      message->pwm_value = 1.0;
-      LOG_STRUCT(DEBUG, "received", *message);
-      message.Send();
-    }
-  }
-
-  drivetrain.position.MakeWithBuilder()
-      .right_encoder(drivetrain_translate(data->main.right_drive))
-      .left_encoder(-drivetrain_translate(data->main.left_drive))
-      .left_shifter_position(hall_translate(control_loops::kBot3LeftDriveShifter,
-                                            data->main.low_left_drive_hall))
-      .right_shifter_position(hall_translate(control_loops::kBot3RightDriveShifter,
-                                             data->main.low_right_drive_hall))
-      .battery_voltage(battery_translate(data->main.battery_voltage_high,
-                                         data->main.battery_voltage_low))
-      .Send();
-}
-
-}  // namespace
-}  // namespace bot3
-
-int main() {
-  ::aos::Init(::bbb::SensorReader::kRelativePriority);
-  ::bbb::SensorReader reader("comp");
-  while (true) {
-    ::bot3::PacketReceived(reader.ReadPacket(), reader.GetCapeTimestamp());
-  }
-  ::aos::Cleanup();
-}
diff --git a/bot3/output/motor_writer.cc b/bot3/output/motor_writer.cc
deleted file mode 100644
index 18b263e..0000000
--- a/bot3/output/motor_writer.cc
+++ /dev/null
@@ -1,121 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-#include <unistd.h>
-
-#include "aos/prime/output/motor_output.h"
-#include "aos/common/logging/logging.h"
-#include "aos/linux_code/init.h"
-#include "aos/common/util/log_interval.h"
-#include "aos/common/time.h"
-#include "aos/common/logging/queue_logging.h"
-#include "aos/common/controls/output_check.q.h"
-
-#include "bot3/control_loops/drivetrain/drivetrain.q.h"
-#include "bot3/control_loops/rollers/rollers.q.h"
-
-using ::aos::util::SimpleLogInterval;
-
-namespace bot3 {
-namespace output {
-
-class MotorWriter : public ::aos::MotorOutput {
-  // Maximum age of an output packet before the motors get zeroed instead.
-  static const int kOutputMaxAgeMS = 20;
-  static constexpr ::aos::time::Time kOldLogInterval =
-      ::aos::time::Time::InSeconds(0.5);
-
-  double Cap(double value, double max) {
-    if (value > max) return max;
-    if (value < -max) return -max;
-    return value;
-  }
-
-  virtual void RunIteration() {
-    values_.digital_module = 0;
-    values_.pressure_switch_channel = 1;
-    values_.compressor_channel = 1;
-    values_.solenoid_module = 0;
-
-    if (true) {
-      static auto &drivetrain = ::bot3::control_loops::drivetrain.output;
-      drivetrain.FetchLatest();
-      if (drivetrain.IsNewerThanMS(kOutputMaxAgeMS)) {
-        LOG_STRUCT(DEBUG, "will output", *drivetrain);
-        SetPWMOutput(5, drivetrain->right_voltage / 12.0, kTalonBounds);
-        SetPWMOutput(2, -drivetrain->left_voltage / 12.0, kTalonBounds);
-        SetSolenoid(1, drivetrain->left_high);
-        SetSolenoid(8, drivetrain->right_high);
-      } else {
-        DisablePWMOutput(2);
-        DisablePWMOutput(5);
-        LOG_INTERVAL(drivetrain_old_);
-      }
-      drivetrain_old_.Print();
-    }
-
-    {
-      static auto &rollers = ::bot3::control_loops::rollers.output;
-      rollers.FetchLatest();
-      if (rollers.IsNewerThanMS(kOutputMaxAgeMS)) {
-        LOG_STRUCT(DEBUG, "will output", *rollers);
-        // There are two motors for each of these.
-        SetPWMOutput(3, rollers->front_intake_voltage / 12.0, kTalonBounds);
-        SetPWMOutput(7, -rollers->front_intake_voltage / 12.0, kTalonBounds);
-        SetPWMOutput(1, rollers->back_intake_voltage / 12.0, kTalonBounds);
-        SetPWMOutput(6, -rollers->back_intake_voltage / 12.0, kTalonBounds);
-        SetPWMOutput(4, rollers->low_goal_voltage / 12.0, kTalonBounds);
-
-        SetSolenoid(2, rollers->front_extended);
-        SetSolenoid(5, !rollers->front_extended);
-        SetSolenoid(3, rollers->back_extended);
-        SetSolenoid(4, !rollers->back_extended);
-      } else {
-        DisablePWMOutput(3);
-        DisablePWMOutput(7);
-        DisablePWMOutput(1);
-        DisablePWMOutput(6);
-        DisablePWMOutput(4);
-
-        // Retract intakes.
-        SetSolenoid(2, false);
-        SetSolenoid(3, false);
-        SetSolenoid(5, true);
-        SetSolenoid(4, true);
-
-        LOG_INTERVAL(rollers_old_);
-      }
-      rollers_old_.Print();
-    }
-
-    {
-      auto message = ::aos::controls::output_check_sent.MakeMessage();
-      ++output_check_;
-      if (output_check_ == 0) output_check_ = 1;
-      SetRawPWMOutput(10, output_check_);
-      message->pwm_value = output_check_;
-      message->pulse_length =
-          static_cast<double>(message->pwm_value) / 255.0 * 2.0 + 0.5;
-      LOG_STRUCT(DEBUG, "sending", *message);
-      message.Send();
-    }
-  }
-
-  SimpleLogInterval drivetrain_old_ =
-      SimpleLogInterval(kOldLogInterval, WARNING, "drivetrain too old");
-  SimpleLogInterval rollers_old_ =
-      SimpleLogInterval(kOldLogInterval, WARNING, "rollers too old");
-
-  uint8_t output_check_ = 0;
-};
-
-constexpr ::aos::time::Time MotorWriter::kOldLogInterval;
-
-}  // namespace output
-}  // namespace bot3
-
-int main() {
-  ::aos::Init();
-  ::bot3::output::MotorWriter writer;
-  writer.Run();
-  ::aos::Cleanup();
-}
diff --git a/bot3/output/output.gyp b/bot3/output/output.gyp
deleted file mode 100644
index 5e4ff3a..0000000
--- a/bot3/output/output.gyp
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'motor_writer',
-      'type': 'executable',
-      'sources': [
-        'motor_writer.cc'
-      ],
-      'dependencies': [
-        '<(AOS)/prime/output/output.gyp:motor_output',
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(DEPTH)/bot3/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
-        '<(DEPTH)/bot3/control_loops/rollers/rollers.gyp:rollers_loop',
-        '<(AOS)/common/controls/controls.gyp:control_loop',
-        '<(DEPTH)/bot3/queues/queues.gyp:queues',
-        '<(AOS)/common/util/util.gyp:log_interval',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/logging/logging.gyp:queue_logging',
-        '<(AOS)/common/controls/controls.gyp:output_check',
-      ],
-    },
-  ],
-}
diff --git a/bot3/prime/build.sh b/bot3/prime/build.sh
deleted file mode 100755
index 6ae1c81..0000000
--- a/bot3/prime/build.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-
-cd $(dirname $0)
-
-exec ../../aos/build/build.py $0 bot3_prime prime.gyp "$@"
diff --git a/bot3/prime/prime.gyp b/bot3/prime/prime.gyp
deleted file mode 100644
index 986f9fa..0000000
--- a/bot3/prime/prime.gyp
+++ /dev/null
@@ -1,52 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'All',
-      'type': 'none',
-      'dependencies': [
-        '<(AOS)/build/aos_all.gyp:Prime',
-        '<(DEPTH)/bbb_cape/src/bbb/bbb.gyp:all_tests',
-
-        '../control_loops/drivetrain/drivetrain.gyp:drivetrain',
-        '../control_loops/drivetrain/drivetrain.gyp:drivetrain_lib_test',
-        '../control_loops/rollers/rollers.gyp:rollers',
-        '../autonomous/autonomous.gyp:auto',
-        '../actions/actions.gyp:drivetrain_action',
-        '../input/input.gyp:joystick_reader',
-        '../output/output.gyp:motor_writer',
-        '../input/input.gyp:sensor_receiver',
-        '<(DEPTH)/bbb_cape/src/bbb/bbb.gyp:uart_reader_main',
-        '<(DEPTH)/bbb_cape/src/bbb/bbb.gyp:test_sensor_receiver',
-        '<(DEPTH)/bbb_cape/src/flasher/flasher.gyp:stm32_flasher',
-        '<(AOS)/prime/input/input.gyp:joystick_proxy',
-      ],
-      'variables': {
-        'cape_src': '<(DEPTH)/bbb_cape/src/cape',
-        'cape_hex': '<(cape_src)/.obj/main_comp.hex',
-      },
-      'actions': [
-        {
-          'action_name': 'make_cape',
-          'inputs': [
-            '<!@(find <(cape_src) -name ".*" -prune -o -type f -print)',
-            '<(cape_src)/Makefile',
-          ],
-          'outputs': [
-            '<(cape_hex)',
-          ],
-          'action': ['make', '-C', '<(cape_src)'],
-          'message': 'Building cape code',
-        },
-      ],
-      'copies': [
-        {
-          'destination': '<(rsync_dir)',
-          'files': [
-            '<(cape_hex)',
-            'start_list.txt',
-          ],
-        },
-      ],
-    },
-  ],
-}
diff --git a/bot3/prime/start_list.txt b/bot3/prime/start_list.txt
deleted file mode 100644
index 6b08ba0..0000000
--- a/bot3/prime/start_list.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-binary_log_writer
-motor_writer
-joystick_reader
-drivetrain
-drivetrain_action
-auto
-sensor_receiver
-joystick_proxy
-rollers
-auto
diff --git a/bot3/queues/queues.gyp b/bot3/queues/queues.gyp
deleted file mode 100644
index a7f03c2..0000000
--- a/bot3/queues/queues.gyp
+++ /dev/null
@@ -1,18 +0,0 @@
-{
-  'variables': {
-    'queue_files': [
-      'to_log.q',
-    ]
-  },
-  'targets': [
-    {
-      'target_name': 'queues',
-      'type': 'static_library',
-      'sources': ['<@(queue_files)'],
-      'variables': {
-        'header_path': 'bot3/queues',
-      },
-      'includes': ['../../aos/build/queues.gypi'],
-    },
-  ],
-}
diff --git a/bot3/queues/to_log.q b/bot3/queues/to_log.q
deleted file mode 100644
index aa28082..0000000
--- a/bot3/queues/to_log.q
+++ /dev/null
@@ -1,11 +0,0 @@
-package frc971.logging_structs;
-
-struct CapeReading {
-  Time time;
-  uint16_t struct_size;
-
-  uint16_t left_low;
-  uint16_t left_high;
-  uint16_t right_low;
-  uint16_t right_high;
-};
diff --git a/bot3/shifter_hall_effect.h b/bot3/shifter_hall_effect.h
deleted file mode 100644
index abe81e3..0000000
--- a/bot3/shifter_hall_effect.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef BOT3_SHIFTER_HALL_EFFECT_H_
-#define BOT3_SHIFTER_HALL_EFFECT_H_
-
-namespace bot3 {
-namespace constants {
-
-// Contains the voltages for an analog hall effect sensor on a shifter.
-struct ShifterHallEffect {
-  // The numbers to use for scaling raw voltages to 0-1.
-  double high, low;
-
-  // The numbers for when the dog is clear of each gear.
-  double clear_high, clear_low;
-};
-
-
-} // constants
-} // bot3
-
-#endif
diff --git a/doc/vxworks-notes.txt b/doc/vxworks-notes.txt
deleted file mode 100644
index dcf405b..0000000
--- a/doc/vxworks-notes.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-This file has a bunch of random notes about VxWorks.
-
-[Stuff Not to Use]
-Their POSIX condition variable implementation is completely broken (it doesn't
-  actually fix the race condition).
-Pretty much all of the pthread stuff uses semMCreate(SEM_INVERSION_SAFE).
-taskVarLib corrupts the heap (or something).
-semMCreate(SEM_INVERSION_SAFE) fixes the usual priority inversion problem by
-  creating a different one.
-  See the docs on it for details.
diff --git a/doc/wpilib-check-notes.txt b/doc/wpilib-check-notes.txt
deleted file mode 100644
index e8c1a0f..0000000
--- a/doc/wpilib-check-notes.txt
+++ /dev/null
@@ -1,50 +0,0 @@
-This file has the results of going through all of the WPILib code that we use.
-If you use any more parts of WPILib, then check them carefully (preferrably get
-multiple people to do it) and then add the results here.
-The notes are so that it is clear what has been checked and how things interact
-in nonintiutive ways to potentially create subtle bugs.
-
-DriverStationEnhancedIO
-  only checked what DriverStation does to it
-  the rest of it is implemented horribly
-DriverStation
-  GetMatchTime() is garbage (DriverStation shouldn't keep track of that
-    information and it does a bad job of it)
-  don't call Set*PriorityDashboardPackerToUse
-  IsNewControlData() and WaitForData() are OK
-  make sure to GetDataReadLock() correctly when you want to read data
-  GetStickAxis uses brain-dead math
-  most of the "helper" methods to retrieve parts of the control data have no
-    benefit and do other weird things besides just get the value
-Dashboard
-  GetStatusBuffer and Flush do get called from a separate task by DriverStation
-  only checked what DriverStation does to it
-MotorSafetyHelper
-  CheckMotors() does get called from a separate task by DriverStation
-RobotBase
-  the Is* methods are garbage (call them directly on the instances of the
-    objects that they forward too)
-Task
-  the constructor and Start get called in RobotBase in a task without the
-    floating point save flag set
-ReentrantSemaphore
-Synchronized
-Error
-  it synchronizes all of the non-const methods internally, and does it right
-  Do not use EnableStackTrace.
-ErrorBase
-  the mutable Error instance varible is weird, but safe
-Utility
-  it is a bad idea to use wpi_selfTrace()
-    That gets called if you use Error::EnableStackTrace or
-      wpi_stackOnAssertEnable, so don't call those.
-  The assertions NEVER stop on failure unless you wpi_SuspendOnAssertEnabled.
-Global
-Watchdog
-  the return value of Feed() is garbage
-Module
-DigitalModule
-  didn't look at I2C
-AnalogChannel
-AnalogModule
-NetworkRobot
diff --git a/doc/wpilib-issues.txt b/doc/wpilib-issues.txt
deleted file mode 100644
index 1b46940..0000000
--- a/doc/wpilib-issues.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-sprintf
-ErrorBase/Error not thread safe (aka CANJaguar)
-all of the sync issues last year
-Module not thread safe
-
-compressor turned on as soon as power was turned on (2 times in a row)
diff --git a/frc971/actions/actions.gyp b/frc971/actions/actions.gyp
index 1d75b02..0c42c36 100644
--- a/frc971/actions/actions.gyp
+++ b/frc971/actions/actions.gyp
@@ -25,21 +25,6 @@
       'includes': ['../../aos/build/queues.gypi'],
     },
     {
-      'target_name': 'shoot_action_queue',
-      'type': 'static_library',
-      'sources': ['shoot_action.q'],
-      'variables': {
-        'header_path': 'frc971/actions',
-      },
-      'dependencies': [
-        'action_queue',
-      ],
-      'export_dependent_settings': [
-        'action_queue',
-      ],
-      'includes': ['../../aos/build/queues.gypi'],
-    },
-    {
       'target_name': 'drivetrain_action_queue',
       'type': 'static_library',
       'sources': ['drivetrain_action.q'],
@@ -55,60 +40,6 @@
       'includes': ['../../aos/build/queues.gypi'],
     },
     {
-      'target_name': 'selfcatch_action_queue',
-      'type': 'static_library',
-      'sources': ['selfcatch_action.q'],
-      'variables': {
-        'header_path': 'frc971/actions',
-      },
-      'dependencies': [
-        'action_queue',
-      ],
-      'export_dependent_settings': [
-        'action_queue',
-      ],
-      'includes': ['../../aos/build/queues.gypi'],
-    },
-    {
-      'target_name': 'catch_action_queue',
-      'type': 'static_library',
-      'sources': ['catch_action.q'],
-      'variables': {
-        'header_path': 'frc971/actions',
-      },
-      'dependencies': [
-        'action_queue',
-      ],
-      'export_dependent_settings': [
-        'action_queue',
-      ],
-      'includes': ['../../aos/build/queues.gypi'],
-    },
-    {
-      'target_name': 'shoot_action_lib',
-      'type': 'static_library',
-      'sources': [
-        'shoot_action.cc',
-      ],
-      'dependencies': [
-        'shoot_action_queue',
-        '<(DEPTH)/frc971/frc971.gyp:constants',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(DEPTH)/frc971/control_loops/shooter/shooter.gyp:shooter_loop',
-        '<(DEPTH)/frc971/control_loops/claw/claw.gyp:claw_loop',
-        '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
-        'action_client',
-        'action',
-      ],
-      'export_dependent_settings': [
-        'action',
-        'shoot_action_queue',
-        'action_client',
-        '<(AOS)/common/common.gyp:time',
-      ],
-    },
-    {
       'target_name': 'drivetrain_action_lib',
       'type': 'static_library',
       'sources': [
@@ -150,51 +81,6 @@
       ],
     },
     {
-      'target_name': 'selfcatch_action_lib',
-      'type': 'static_library',
-      'sources': [
-        'selfcatch_action.cc',
-      ],
-      'dependencies': [
-        'selfcatch_action_queue',
-        '<(DEPTH)/frc971/frc971.gyp:constants',
-        '<(DEPTH)/frc971/queues/queues.gyp:queues',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(DEPTH)/frc971/control_loops/shooter/shooter.gyp:shooter_loop',
-        '<(DEPTH)/frc971/control_loops/claw/claw.gyp:claw_loop',
-        '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
-      ],
-    },
-    {
-      'target_name': 'catch_action_lib',
-      'type': 'static_library',
-      'sources': [
-        'catch_action.cc',
-      ],
-      'dependencies': [
-        'catch_action_queue',
-        'action',
-        '<(DEPTH)/frc971/queues/queues.gyp:queues',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(DEPTH)/frc971/control_loops/claw/claw.gyp:claw_loop',
-      ],
-    },
-    {
-      'target_name': 'shoot_action',
-      'type': 'executable',
-      'sources': [
-        'shoot_action_main.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        'shoot_action_queue',
-        'shoot_action_lib',
-        'action',
-      ],
-    },
-    {
       'target_name': 'drivetrain_action',
       'type': 'executable',
       'sources': [
@@ -207,31 +93,5 @@
         'action',
       ],
     },
-    {
-      'target_name': 'selfcatch_action',
-      'type': 'executable',
-      'sources': [
-        'selfcatch_action_main.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        'selfcatch_action_queue',
-        'selfcatch_action_lib',
-        'action',
-      ],
-    },
-    {
-      'target_name': 'catch_action',
-      'type': 'executable',
-      'sources': [
-        'catch_action_main.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        'catch_action_queue',
-        'catch_action_lib',
-        'action',
-      ],
-    },
   ],
 }
diff --git a/frc971/actions/catch_action.cc b/frc971/actions/catch_action.cc
deleted file mode 100644
index 7b67645..0000000
--- a/frc971/actions/catch_action.cc
+++ /dev/null
@@ -1,154 +0,0 @@
-#include <complex>
-#include <functional>
-
-#include "aos/common/logging/logging.h"
-
-#include "frc971/actions/catch_action.h"
-#include "frc971/control_loops/claw/claw.q.h"
-#include "frc971/queues/other_sensors.q.h"
-
-namespace frc971 {
-namespace actions {
-
-CatchAction::CatchAction(actions::CatchActionGroup* s)
-    : actions::ActionBase<actions::CatchActionGroup>(s) {}
-
-void CatchAction::RunAction() {
-  control_loops::claw_queue_group.goal.FetchLatest();
-  if (control_loops::claw_queue_group.goal.get() == nullptr) {
-    LOG(WARNING, "no claw goal\n");
-    return;
-  }
-
-  // Set claw angle.
-  if (!control_loops::claw_queue_group.goal.MakeWithBuilder()
-           .bottom_angle(action_q_->goal->catch_angle - kCatchSeparation / 2.0)
-           .separation_angle(kCatchSeparation)
-           .intake(kCatchIntake)
-           .centering(kCatchCentering)
-           .Send()) {
-    LOG(WARNING, "sending claw goal failed\n");
-    return;
-  }
-
-  control_loops::claw_queue_group.goal.FetchLatest();
-
-  LOG(INFO, "Waiting for the claw to be ready\n");
-
-  // wait for claw to be ready
-  if (WaitUntil(::std::bind(&CatchAction::DoneSetupCatch, this))) return;
-  LOG(INFO, "Waiting for the sonar\n");
-
-  close_count_ = 0;
-
-  // wait for the sonar to trigger
-  if (WaitUntil(::std::bind(&CatchAction::DoneFoundSonar, this))) return;
-
-  LOG(INFO, "Closing the claw\n");
-
-  // close the claw
-  if (!control_loops::claw_queue_group.goal.MakeWithBuilder()
-           .bottom_angle(action_q_->goal->catch_angle)
-           .separation_angle(0.0)
-           .intake(kCatchIntake)
-           .centering(kCatchCentering)
-           .Send()) {
-    LOG(WARNING, "sending claw goal failed\n");
-    return;
-  }
-
-  control_loops::claw_queue_group.goal.FetchLatest();
-
-  // claw now closed
-  if (WaitUntil(::std::bind(&CatchAction::DoneClawWithBall, this))) return;
-
-  for (int i = 0; i < 5; ++i) {
-    aos::time::SleepFor(aos::time::Time::InSeconds(0.05));
-    if (ShouldCancel()) return;
-  }
-}
-
-
-/*bool CatchAction::DoneBallIn() {
-  if (!sensors::othersensors.FetchLatest()) {
-    sensors::othersensors.FetchNextBlocking();
-  }
-  if (sensors::othersensors->travis_hall_effect_distance > 0.005) {
-    LOG(INFO, "Ball in at %.2f.\n",
-        sensors::othersensors->travis_hall_effect_distance);
-    return true;
-  }
-  return false;
-}*/
-
-bool CatchAction::DoneClawWithBall() {
-  if (!control_loops::claw_queue_group.status.FetchLatest()) {
-    control_loops::claw_queue_group.status.FetchNextBlocking();
-  }
-
-  bool ans =
-      control_loops::claw_queue_group.status->zeroed &&
-      (::std::abs(control_loops::claw_queue_group.status->bottom_velocity) <
-       1.0) &&
-      (::std::abs(control_loops::claw_queue_group.status->bottom -
-                  control_loops::claw_queue_group.goal->bottom_angle) < 0.10) &&
-      (::std::abs(control_loops::claw_queue_group.status->separation -
-                  control_loops::claw_queue_group.goal->separation_angle) <
-       0.4);
-
-  if (!ans) {
-    LOG(INFO,
-        "Claw is ready %d zeroed %d bottom_velocity %f bottom %f sep %f\n", ans,
-        control_loops::claw_queue_group.status->zeroed,
-        ::std::abs(control_loops::claw_queue_group.status->bottom_velocity),
-        ::std::abs(control_loops::claw_queue_group.status->bottom -
-                   control_loops::claw_queue_group.goal->bottom_angle),
-        ::std::abs(control_loops::claw_queue_group.status->separation -
-                   control_loops::claw_queue_group.goal->separation_angle));
-  }
-  return ans;
-}
-
-bool CatchAction::DoneFoundSonar() {
-  if (!sensors::other_sensors.FetchLatest()) {
-    sensors::other_sensors.FetchNextBlocking();
-  }
-  LOG(DEBUG, "Sonar at %.2f.\n", sensors::other_sensors->sonar_distance);
-  if (sensors::other_sensors->sonar_distance > 0.1 &&
-      sensors::other_sensors->sonar_distance < kSonarTriggerDist) {
-    ++close_count_;
-  } else {
-    close_count_ = 0;
-  }
-  if (close_count_ > 50) {
-    return true;
-  }
-  return false;
-}
-
-bool CatchAction::DoneSetupCatch() {
-  if (!control_loops::claw_queue_group.status.FetchLatest()) {
-    control_loops::claw_queue_group.status.FetchNextBlocking();
-  }
-
-  // Make sure that the shooter and claw has reached the necessary state.
-  // Check the current positions of the various mechanisms to make sure that we
-  // avoid race conditions where we send it a new goal but it still thinks that
-  // it has the old goal and thinks that it is already done.
-  bool claw_angle_correct =
-      ::std::abs(control_loops::claw_queue_group.status->bottom -
-                 control_loops::claw_queue_group.goal->bottom_angle) < 0.15;
-  bool open_enough =
-      control_loops::claw_queue_group.status->separation > kCatchMinSeparation;
-
-  if (claw_angle_correct && open_enough) {
-    LOG(INFO, "Claw ready for catching.\n");
-    return true;
-  }
-
-  return false;
-}
-
-}  // namespace actions
-}  // namespace frc971
-
diff --git a/frc971/actions/catch_action.h b/frc971/actions/catch_action.h
deleted file mode 100644
index 56c5f42..0000000
--- a/frc971/actions/catch_action.h
+++ /dev/null
@@ -1,42 +0,0 @@
-#include "frc971/actions/catch_action.q.h"
-#include "frc971/actions/action.h"
-#include "aos/common/time.h"
-
-namespace frc971 {
-namespace actions {
-
-class CatchAction : public ActionBase<CatchActionGroup> {
- public:
-
-  explicit CatchAction(CatchActionGroup* s);
-
-  // Actually executes the action of moving the claw into position and closing
-  // it.
-  virtual void RunAction();
-
-  static constexpr double kCatchSeparation = 0.8;
-  static constexpr double kCatchMinSeparation = 0.65;
-  static constexpr double kCatchIntake = 12.0;
-  static constexpr double kSonarTriggerDist = 0.725;
-  static constexpr double kCatchCentering = 12.0;
-  static constexpr double kFinishAngle = 0.2;
-
- protected:
-  // ready for shot
-  bool DonePreShotOpen();
-  // in the right place
-  bool DoneSetupCatch();
-  // sonar is in valid range to close
-  bool DoneFoundSonar();
-  // Claw reports it is done
-  bool DoneClawWithBall();
-  // hall effect reports the ball is in
-  bool DoneBallIn();
-
- private:
-  int close_count_;
-};
-
-}  // namespace actions
-}  // namespace frc971
-
diff --git a/frc971/actions/catch_action.q b/frc971/actions/catch_action.q
deleted file mode 100644
index 73d21ed..0000000
--- a/frc971/actions/catch_action.q
+++ /dev/null
@@ -1,17 +0,0 @@
-package frc971.actions;
-
-import "frc971/actions/action.q";
-
-queue_group CatchActionGroup {
-  implements frc971.actions.ActionQueueGroup;
-
-  message Goal {
-    uint32_t run;
-    double catch_angle;
-  };
-
-  queue Goal goal;
-  queue frc971.actions.Status status;
-};
-
-queue_group CatchActionGroup catch_action;
diff --git a/frc971/actions/catch_action_main.cc b/frc971/actions/catch_action_main.cc
deleted file mode 100644
index e37ae57..0000000
--- a/frc971/actions/catch_action_main.cc
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "aos/common/time.h"
-#include "aos/linux_code/init.h"
-#include "aos/common/logging/logging.h"
-#include "frc971/actions/catch_action.q.h"
-#include "frc971/actions/catch_action.h"
-
-using ::aos::time::Time;
-
-int main(int /*argc*/, char * /*argv*/ []) {
-  ::aos::Init();
-
-  frc971::actions::CatchAction action_catch(
-      &::frc971::actions::catch_action);
-  action_catch.Run();
-
-  ::aos::Cleanup();
-  return 0;
-}
-
diff --git a/frc971/actions/selfcatch_action.cc b/frc971/actions/selfcatch_action.cc
deleted file mode 100644
index bdb88cc..0000000
--- a/frc971/actions/selfcatch_action.cc
+++ /dev/null
@@ -1,243 +0,0 @@
-#include <functional>
-
-#include "aos/common/logging/logging.h"
-#include "frc971/constants.h"
-
-#include "frc971/actions/selfcatch_action.h"
-#include "frc971/control_loops/drivetrain/drivetrain.q.h"
-#include "frc971/control_loops/shooter/shooter.q.h"
-#include "frc971/control_loops/claw/claw.q.h"
-#include "frc971/queues/other_sensors.q.h"
-
-namespace frc971 {
-namespace actions {
-
-SelfCatchAction::SelfCatchAction(actions::SelfCatchActionGroup* s)
-    : actions::ActionBase<actions::SelfCatchActionGroup>(s) {}
-
-double SelfCatchAction::SpeedToAngleOffset(double speed) {
-  const frc971::constants::Values& values = frc971::constants::GetValues();
-  // scale speed to a [0.0-1.0] on something close to the max
-  return (speed / values.drivetrain_max_speed) *
-         SelfCatchAction::kSpeedOffsetRadians;
-}
-
-void SelfCatchAction::RunAction() {
-  const frc971::constants::Values& values = frc971::constants::GetValues();
-
-  // Set shot power to established constant
-  if (!control_loops::shooter_queue_group.goal.MakeWithBuilder().shot_power(
-          kShotPower)
-          .shot_requested(false).unload_requested(false).load_requested(false)
-          .Send()) {
-    LOG(ERROR, "Failed to send the shoot action\n");
-    return;
-  }
-
-  // Set claw angle to account for velocity
-  control_loops::drivetrain.status.FetchLatest();
-  if (!control_loops::claw_queue_group.goal.MakeWithBuilder().bottom_angle(
-          0.0 +
-          SpeedToAngleOffset(control_loops::drivetrain.status->robot_speed))
-          .separation_angle(0.0).intake(2.0).centering(1.0).Send()) {
-    LOG(WARNING, "sending claw goal failed\n");
-    return;
-  }
-
-  // wait for claw to be ready
-  if (WaitUntil(::std::bind(&SelfCatchAction::DoneSetupShot, this))) return;
-
-  // Open up the claw in preparation for shooting.
-  if (!control_loops::claw_queue_group.goal.MakeWithBuilder().bottom_angle(
-          0.0 +
-          SpeedToAngleOffset(control_loops::drivetrain.status->robot_speed))
-          .separation_angle(values.shooter_action.claw_separation_goal)
-          .intake(2.0).centering(1.0).Send()) {
-    LOG(WARNING, "sending claw goal failed\n");
-    return;
-  }
-
-  // wait for the claw to open up a little before we shoot
-  if (WaitUntil(::std::bind(&SelfCatchAction::DonePreShotOpen, this))) return;
-
-  // Make sure that we have the latest shooter status.
-  control_loops::shooter_queue_group.status.FetchLatest();
-  // Get the number of shots fired up to this point. This should not be updated
-  // again for another few cycles.
-  previous_shots_ = control_loops::shooter_queue_group.status->shots;
-  // Shoot!
-  if (!control_loops::shooter_queue_group.goal.MakeWithBuilder().shot_power(
-          kShotPower)
-          .shot_requested(true).unload_requested(false).load_requested(false)
-          .Send()) {
-    LOG(WARNING, "sending shooter goal failed\n");
-    return;
-  }
-
-  // wait for record of shot having been fired
-  if (WaitUntil(::std::bind(&SelfCatchAction::DoneShot, this))) return;
-  
-  // Set claw angle to account for velocity note this is negative
-  // since we will be catching from behind
-  control_loops::drivetrain.status.FetchLatest();
-  if (!control_loops::claw_queue_group.goal.MakeWithBuilder().bottom_angle(
-          0.0 -
-          SpeedToAngleOffset(control_loops::drivetrain.status->robot_speed))
-          .separation_angle(kCatchSeperation).intake(kCatchIntake)
-          .centering(kCatchCentering).Send()) {
-    LOG(WARNING, "sending claw goal failed\n");
-    return;
-  }
-
-  // wait for the sonar to trigger
-  if (WaitUntil(::std::bind(&SelfCatchAction::DoneFoundSonar, this))) return;
-
-  // close the claw
-  if (!control_loops::claw_queue_group.goal.MakeWithBuilder().bottom_angle(
-          kFinishAngle)
-          .separation_angle(0.0).intake(kCatchIntake).centering(kCatchCentering)
-          .Send()) {
-    LOG(WARNING, "sending claw goal failed\n");
-    return;
-  }
-
-  // claw now closed
-  if (WaitUntil(::std::bind(&SelfCatchAction::DoneClawWithBall, this))) return;
-  // ball is fully in
-  if (WaitUntil(::std::bind(&SelfCatchAction::DoneBallIn, this))) return;
-
-  // head to a finshed pose
-  if (!control_loops::claw_queue_group.goal.MakeWithBuilder().bottom_angle(
-          kFinishAngle)
-          .separation_angle(0.0).intake(0.0).centering(0.0).Send()) {
-    LOG(WARNING, "sending claw goal failed\n");
-    return;
-  }
-
-  // thats it
-  if (WaitUntil(::std::bind(&SelfCatchAction::DoneClawWithBall, this))) return;
-
-  // done with action
-  return;
-}
-
-
-bool SelfCatchAction::DoneBallIn() {
-  if (!sensors::other_sensors.FetchLatest()) {
-  	sensors::other_sensors.FetchNextBlocking();
-  }
-  if (sensors::other_sensors->plunger_hall_effect_distance > 0.005) {
-    LOG(INFO, "Ball in at %.2f.\n",
-        sensors::other_sensors->plunger_hall_effect_distance);
-  	return true;
-  }
-  return false;
-}
-
-bool SelfCatchAction::DoneClawWithBall() {
-  if (!control_loops::claw_queue_group.status.FetchLatest()) {
-  	control_loops::claw_queue_group.status.FetchNextBlocking();
-  }
-  // Make sure that both the shooter and claw have reached the necessary
-  // states.
-  if (control_loops::claw_queue_group.status->done_with_ball) {
-    LOG(INFO, "Claw at goal.\n");
-    return true;
-  }
-  return false;
-}
-
-bool SelfCatchAction::DoneFoundSonar() {
-  if (!sensors::other_sensors.FetchLatest()) {
-  	sensors::other_sensors.FetchNextBlocking();
-  }
-  if (sensors::other_sensors->sonar_distance > 0.3 &&
-      sensors::other_sensors->sonar_distance < kSonarTriggerDist) {
-    LOG(INFO, "Hit Sonar at %.2f.\n", sensors::other_sensors->sonar_distance);
-  	return true;
-  }
-  return false;
-}
-
-bool SelfCatchAction::DoneSetupShot() {
-  if (!control_loops::shooter_queue_group.status.FetchLatest()) {
-  	control_loops::shooter_queue_group.status.FetchNextBlocking();
-  }
-  if (!control_loops::claw_queue_group.status.FetchLatest()) {
-  	control_loops::claw_queue_group.status.FetchNextBlocking();
-  }
-  if (!control_loops::shooter_queue_group.goal.FetchLatest()) {
-    LOG(ERROR, "Failed to fetch shooter goal.\n");
-  }
-  if (!control_loops::claw_queue_group.goal.FetchLatest()) {
-    LOG(ERROR, "Failed to fetch claw goal.\n");
-  }
-  // Make sure that both the shooter and claw have reached the necessary
-  // states.
-  // Check the current positions of the various mechanisms to make sure that we
-  // avoid race conditions where we send it a new goal but it still thinks that
-  // it has the old goal and thinks that it is already done.
-  bool shooter_power_correct =
-      ::std::abs(control_loops::shooter_queue_group.status->hard_stop_power -
-                 control_loops::shooter_queue_group.goal->shot_power) <
-      0.005;
-
-  bool claw_angle_correct =
-      ::std::abs(control_loops::claw_queue_group.status->bottom -
-                 control_loops::claw_queue_group.goal->bottom_angle) <
-      0.005;
-
-  if (control_loops::shooter_queue_group.status->ready &&
-      control_loops::claw_queue_group.status->done_with_ball &&
-      shooter_power_correct && claw_angle_correct) {
-    LOG(INFO, "Claw and Shooter ready for shooting.\n");
-    // TODO(james): Get realer numbers for shooter_action.
-    return true;
-  }
-
-  // update the claw position to track velocity
-  // TODO(ben): the claw may never reach the goal if the velocity is
-  // continually changing, we will need testing to see
-  control_loops::drivetrain.status.FetchLatest();
-  if (!control_loops::claw_queue_group.goal.MakeWithBuilder().bottom_angle(
-          selfcatch_action.goal->shot_angle +
-          SpeedToAngleOffset(control_loops::drivetrain.status->robot_speed))
-          .separation_angle(0.0).intake(2.0).centering(1.0).Send()) {
-    LOG(WARNING, "sending claw goal failed\n");
-    abort_ = true;
-    return true;
-  } else {
-    LOG(INFO, "Updating claw angle for velocity offset(%.4f).\n",
-        SpeedToAngleOffset(control_loops::drivetrain.status->robot_speed));
-  }
-  return false;
-}
-
-bool SelfCatchAction::DonePreShotOpen() {
-  const frc971::constants::Values& values = frc971::constants::GetValues();
-  if (!control_loops::claw_queue_group.status.FetchLatest()) {
-  	control_loops::claw_queue_group.status.FetchNextBlocking();
-  }
-
-  if (control_loops::claw_queue_group.status->separation >
-      values.shooter_action.claw_shooting_separation) {
-    LOG(INFO, "Opened up enough to shoot.\n");
-    return true;
-  }
-  return false;
-}
-
-bool SelfCatchAction::DoneShot() {
-  if (!control_loops::shooter_queue_group.status.FetchLatest()) {
-  	control_loops::shooter_queue_group.status.FetchNextBlocking();
-  }
-  if (control_loops::shooter_queue_group.status->shots > previous_shots_) {
-    LOG(INFO, "Shot succeeded!\n");
-    return true;
-  }
-  return false;
-}
-
-}  // namespace actions
-}  // namespace frc971
-
diff --git a/frc971/actions/selfcatch_action.h b/frc971/actions/selfcatch_action.h
deleted file mode 100644
index c57d24a..0000000
--- a/frc971/actions/selfcatch_action.h
+++ /dev/null
@@ -1,48 +0,0 @@
-#include "frc971/actions/selfcatch_action.q.h"
-#include "frc971/actions/action.h"
-#include "aos/common/time.h"
-
-namespace frc971 {
-namespace actions {
-
-class SelfCatchAction : public ActionBase<SelfCatchActionGroup> {
- public:
-
-  explicit SelfCatchAction(SelfCatchActionGroup* s);
-
-  // Actually execute the action of moving the claw and shooter into position
-  // and actually firing them.
-  virtual void RunAction();
-
-  // calc an offset to our requested shot based on robot speed
-  double SpeedToAngleOffset(double speed);
-
-  static constexpr double kSpeedOffsetRadians = 0.2;
-  static constexpr double kShotPower = 100.0;
-  static constexpr double kCatchSeperation = 1.0;
-  static constexpr double kCatchIntake = 12.0;
-  static constexpr double kSonarTriggerDist = 0.8;
-  static constexpr double kCatchCentering = 12.0;
-  static constexpr double kFinishAngle = 0.2;
-
- protected:
-  // completed shot
-  bool DoneShot();
-  // ready for shot
-  bool DonePreShotOpen();
-  // in the right place
-  bool DoneSetupShot();
-  // sonar is in valid range to close
-  bool DoneFoundSonar();
-  // Claw reports it is done
-  bool DoneClawWithBall();
-  // hall effect reports the ball is in
-  bool DoneBallIn();
-
-  // to track when shot is complete
-  int previous_shots_;
-};
-
-}  // namespace actions
-}  // namespace frc971
-
diff --git a/frc971/actions/selfcatch_action.q b/frc971/actions/selfcatch_action.q
deleted file mode 100644
index bd8ab55..0000000
--- a/frc971/actions/selfcatch_action.q
+++ /dev/null
@@ -1,17 +0,0 @@
-package frc971.actions;
-
-import "frc971/actions/action.q";
-
-queue_group SelfCatchActionGroup {
-  implements frc971.actions.ActionQueueGroup;
-
-  message Goal {
-    uint32_t run;
-    double shot_angle;
-  };
-
-  queue Goal goal;
-  queue frc971.actions.Status status;
-};
-
-queue_group SelfCatchActionGroup selfcatch_action;
diff --git a/frc971/actions/selfcatch_action_main.cc b/frc971/actions/selfcatch_action_main.cc
deleted file mode 100644
index dd48365..0000000
--- a/frc971/actions/selfcatch_action_main.cc
+++ /dev/null
@@ -1,21 +0,0 @@
-#include "stdio.h"
-
-#include "aos/common/time.h"
-#include "aos/linux_code/init.h"
-#include "aos/common/logging/logging.h"
-#include "frc971/actions/selfcatch_action.q.h"
-#include "frc971/actions/selfcatch_action.h"
-
-using ::aos::time::Time;
-
-int main(int /*argc*/, char * /*argv*/ []) {
-  ::aos::Init();
-
-  frc971::actions::SelfCatchAction selfcatch(
-      &::frc971::actions::selfcatch_action);
-  selfcatch.Run();
-
-  ::aos::Cleanup();
-  return 0;
-}
-
diff --git a/frc971/actions/shoot_action.cc b/frc971/actions/shoot_action.cc
deleted file mode 100644
index fa2afdf..0000000
--- a/frc971/actions/shoot_action.cc
+++ /dev/null
@@ -1,184 +0,0 @@
-#include <functional>
-
-#include "aos/common/logging/logging.h"
-
-#include "frc971/actions/shoot_action.h"
-#include "frc971/control_loops/shooter/shooter.q.h"
-#include "frc971/control_loops/claw/claw.q.h"
-#include "frc971/constants.h"
-#include "frc971/control_loops/drivetrain/drivetrain.q.h"
-
-namespace frc971 {
-namespace actions {
-namespace {
-
-bool IntakeOff() {
-  control_loops::claw_queue_group.goal.FetchLatest();
-  if (!control_loops::claw_queue_group.goal.get()) {
-    LOG(WARNING, "no claw goal\n");
-    // If it doesn't have a goal, then the intake isn't on so we don't have to
-    // turn it off.
-    return true;
-  } else {
-    if (!control_loops::claw_queue_group.goal.MakeWithBuilder()
-        .bottom_angle(control_loops::claw_queue_group.goal->bottom_angle)
-        .separation_angle(
-            control_loops::claw_queue_group.goal->separation_angle)
-        .intake(0.0)
-        .centering(0.0)
-        .Send()) {
-      LOG(WARNING, "sending claw goal failed\n");
-      return false;
-    }
-  }
-  return true;
-}
-
-}  // namespace
-
-constexpr double ShootAction::kOffsetRadians;
-constexpr double ShootAction::kClawShootingSeparation;
-constexpr double ShootAction::kClawShootingSeparationGoal;
-
-ShootAction::ShootAction(actions::ShootActionQueueGroup* s)
-    : actions::ActionBase<actions::ShootActionQueueGroup>(s) {}
-
-double ShootAction::SpeedToAngleOffset(double speed) {
-  const frc971::constants::Values& values = frc971::constants::GetValues();
-  // scale speed to a [0.0-1.0] on something close to the max
-  return (speed / values.drivetrain_max_speed) * ShootAction::kOffsetRadians;
-}
-void ShootAction::RunAction() {
-  InnerRunAction();
-
-  // Now do our 'finally' block and make sure that we aren't requesting shots
-  // continually.
-  control_loops::shooter_queue_group.goal.FetchLatest();
-  if (control_loops::shooter_queue_group.goal.get() == nullptr) {
-    return;
-  }
-  if (!control_loops::shooter_queue_group.goal.MakeWithBuilder()
-           .shot_power(control_loops::shooter_queue_group.goal->shot_power)
-           .shot_requested(false)
-           .unload_requested(false)
-           .load_requested(false)
-           .Send()) {
-    LOG(WARNING, "sending shooter goal failed\n");
-    return;
-  }
-
-  LOG(INFO, "finished\n");
-}
-
-void ShootAction::InnerRunAction() {
-  LOG(INFO, "Shooting at the current angle and power.\n");
-
-  // wait for claw to be ready
-  if (WaitUntil(::std::bind(&ShootAction::DoneSetupShot, this))) {
-    return;
-  }
-
-  if (!IntakeOff()) return;
-
-  // Make sure that we have the latest shooter status.
-  control_loops::shooter_queue_group.status.FetchLatest();
-  // Get the number of shots fired up to this point. This should not be updated
-  // again for another few cycles.
-  previous_shots_ = control_loops::shooter_queue_group.status->shots;
-  // Shoot!
-  if (!control_loops::shooter_queue_group.goal.MakeWithBuilder()
-           .shot_power(control_loops::shooter_queue_group.goal->shot_power)
-           .shot_requested(true)
-           .unload_requested(false)
-           .load_requested(false)
-           .Send()) {
-    LOG(WARNING, "sending shooter goal failed\n");
-    return;
-  }
-
-  // wait for record of shot having been fired
-  if (WaitUntil(::std::bind(&ShootAction::DoneShot, this))) return;
-
-  if (!IntakeOff()) return;
-}
-
-bool ClawIsReady() {
-  control_loops::claw_queue_group.goal.FetchLatest();
-
-  bool ans =
-      control_loops::claw_queue_group.status->zeroed &&
-      (::std::abs(control_loops::claw_queue_group.status->bottom_velocity) <
-       0.5) &&
-      (::std::abs(control_loops::claw_queue_group.status->bottom -
-                  control_loops::claw_queue_group.goal->bottom_angle) < 0.10) &&
-      (::std::abs(control_loops::claw_queue_group.status->separation -
-                  control_loops::claw_queue_group.goal->separation_angle) <
-       0.4);
-  LOG(DEBUG, "Claw is %sready zeroed %d bottom_velocity %f bottom %f sep %f\n",
-      ans ? "" : "not ", control_loops::claw_queue_group.status->zeroed,
-      ::std::abs(control_loops::claw_queue_group.status->bottom_velocity),
-      ::std::abs(control_loops::claw_queue_group.status->bottom -
-                 control_loops::claw_queue_group.goal->bottom_angle),
-      ::std::abs(control_loops::claw_queue_group.status->separation -
-                 control_loops::claw_queue_group.goal->separation_angle));
-  return ans;
-}
-
-bool ShooterIsReady() {
-  control_loops::shooter_queue_group.goal.FetchLatest();
-
-  LOG(DEBUG, "Power error is %f - %f -> %f, ready %d\n",
-      control_loops::shooter_queue_group.status->hard_stop_power,
-      control_loops::shooter_queue_group.goal->shot_power,
-      ::std::abs(control_loops::shooter_queue_group.status->hard_stop_power -
-                 control_loops::shooter_queue_group.goal->shot_power),
-      control_loops::shooter_queue_group.status->ready);
-  return (::std::abs(
-              control_loops::shooter_queue_group.status->hard_stop_power -
-              control_loops::shooter_queue_group.goal->shot_power) < 1.0) &&
-         control_loops::shooter_queue_group.status->ready;
-}
-
-bool ShootAction::DoneSetupShot() {
-  control_loops::shooter_queue_group.status.FetchAnother();
-  control_loops::claw_queue_group.status.FetchAnother();
-  // Make sure that both the shooter and claw have reached the necessary
-  // states.
-  if (ShooterIsReady() && ClawIsReady()) {
-    LOG(INFO, "Claw and Shooter ready for shooting.\n");
-    return true;
-  }
-
-  return false;
-}
-
-bool ShootAction::DonePreShotOpen() {
-  control_loops::claw_queue_group.status.FetchAnother();
-  if (control_loops::claw_queue_group.status->separation >
-      kClawShootingSeparation) {
-    LOG(INFO, "Opened up enough to shoot.\n");
-    return true;
-  }
-  return false;
-}
-
-bool ShootAction::DoneShot() {
-  control_loops::shooter_queue_group.status.FetchAnother();
-  if (control_loops::shooter_queue_group.status->shots > previous_shots_) {
-    LOG(INFO, "Shot succeeded!\n");
-    return true;
-  }
-  return false;
-}
-
-::std::unique_ptr<TypedAction< ::frc971::actions::ShootActionQueueGroup>>
-MakeShootAction() {
-  return ::std::unique_ptr<
-      TypedAction< ::frc971::actions::ShootActionQueueGroup>>(
-      new TypedAction< ::frc971::actions::ShootActionQueueGroup>(
-          &::frc971::actions::shoot_action));
-}
-
-}  // namespace actions
-}  // namespace frc971
-
diff --git a/frc971/actions/shoot_action.h b/frc971/actions/shoot_action.h
deleted file mode 100644
index cc44bee..0000000
--- a/frc971/actions/shoot_action.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#include <memory>
-
-#include "aos/common/time.h"
-
-#include "frc971/actions/shoot_action.q.h"
-#include "frc971/actions/action.h"
-#include "frc971/actions/action_client.h"
-
-namespace frc971 {
-namespace actions {
-
-class ShootAction : public ActionBase<actions::ShootActionQueueGroup> {
- public:
-
-  explicit ShootAction(actions::ShootActionQueueGroup* s);
-
-  // Actually execute the action of moving the claw and shooter into position
-  // and actually firing them.
-  virtual void RunAction();
-  void InnerRunAction();
-
-  // calc an offset to our requested shot based on robot speed
-  double SpeedToAngleOffset(double speed);
-
-  static constexpr double kOffsetRadians = 0.4;
-  static constexpr double kClawShootingSeparation = 0.10;
-  static constexpr double kClawShootingSeparationGoal = 0.10;
-
- protected:
-  // completed shot
-  bool DoneShot();
-  // ready for shot
-  bool DonePreShotOpen();
-  // in the right place
-  bool DoneSetupShot();
-
-  // to track when shot is complete
-  int previous_shots_;
-};
-
-// Makes a new ShootAction action.
-::std::unique_ptr<TypedAction< ::frc971::actions::ShootActionQueueGroup>>
-MakeShootAction();
-
-}  // namespace actions
-}  // namespace frc971
diff --git a/frc971/actions/shoot_action.q b/frc971/actions/shoot_action.q
deleted file mode 100644
index 4552c64..0000000
--- a/frc971/actions/shoot_action.q
+++ /dev/null
@@ -1,12 +0,0 @@
-package frc971.actions;
-
-import "frc971/actions/action.q";
-
-queue_group ShootActionQueueGroup {
-  implements frc971.actions.ActionQueueGroup;
-
-  queue frc971.actions.Goal goal;
-  queue frc971.actions.Status status;
-};
-
-queue_group ShootActionQueueGroup shoot_action;
diff --git a/frc971/actions/shoot_action_main.cc b/frc971/actions/shoot_action_main.cc
deleted file mode 100644
index 18df9aa..0000000
--- a/frc971/actions/shoot_action_main.cc
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <stdio.h>
-
-#include "aos/linux_code/init.h"
-#include "aos/common/logging/logging.h"
-#include "frc971/actions/shoot_action.q.h"
-#include "frc971/actions/shoot_action.h"
-
-using ::aos::time::Time;
-
-int main(int /*argc*/, char * /*argv*/[]) {
-  ::aos::Init();
-
-  frc971::actions::ShootAction shoot(&::frc971::actions::shoot_action);
-  shoot.Run();
-
-  ::aos::Cleanup();
-  return 0;
-}
-
diff --git a/frc971/autonomous/auto.cc b/frc971/autonomous/auto.cc
index 29722e4..e340354 100644
--- a/frc971/autonomous/auto.cc
+++ b/frc971/autonomous/auto.cc
@@ -11,13 +11,8 @@
 #include "frc971/autonomous/auto.q.h"
 #include "frc971/constants.h"
 #include "frc971/control_loops/drivetrain/drivetrain.q.h"
-#include "frc971/control_loops/shooter/shooter.q.h"
-#include "frc971/control_loops/claw/claw.q.h"
 #include "frc971/actions/action_client.h"
-#include "frc971/actions/shoot_action.h"
 #include "frc971/actions/drivetrain_action.h"
-#include "frc971/queues/other_sensors.q.h"
-#include "frc971/queues/hot_goal.q.h"
 
 using ::aos::time::Time;
 
@@ -102,64 +97,6 @@
   LOG(INFO, "Done moving\n");
 }
 
-void PositionClawVertically(double intake_power = 0.0, double centering_power = 0.0) {
-  if (!control_loops::claw_queue_group.goal.MakeWithBuilder()
-           .bottom_angle(0.0)
-           .separation_angle(0.0)
-           .intake(intake_power)
-           .centering(centering_power)
-           .Send()) {
-    LOG(WARNING, "sending claw goal failed\n");
-  }
-}
-
-void PositionClawBackIntake() {
-  if (!control_loops::claw_queue_group.goal.MakeWithBuilder()
-           .bottom_angle(-2.273474)
-           .separation_angle(0.0)
-           .intake(12.0)
-           .centering(12.0)
-           .Send()) {
-    LOG(WARNING, "sending claw goal failed\n");
-  }
-}
-
-void PositionClawUpClosed() {
-  // Move the claw to where we're going to shoot from but keep it closed until
-  // it gets there.
-  if (!control_loops::claw_queue_group.goal.MakeWithBuilder()
-           .bottom_angle(0.86)
-           .separation_angle(0.0)
-           .intake(4.0)
-           .centering(1.0)
-           .Send()) {
-    LOG(WARNING, "sending claw goal failed\n");
-  }
-}
-
-void PositionClawForShot() {
-  if (!control_loops::claw_queue_group.goal.MakeWithBuilder()
-           .bottom_angle(0.86)
-           .separation_angle(0.10)
-           .intake(4.0)
-           .centering(1.0)
-           .Send()) {
-    LOG(WARNING, "sending claw goal failed\n");
-  }
-}
-
-void SetShotPower(double power) {
-  LOG(INFO, "Setting shot power to %f\n", power);
-  if (!control_loops::shooter_queue_group.goal.MakeWithBuilder()
-           .shot_power(power)
-           .shot_requested(false)
-           .unload_requested(false)
-           .load_requested(false)
-           .Send()) {
-    LOG(WARNING, "sending shooter goal failed\n");
-  }
-}
-
 void WaitUntilDoneOrCanceled(Action *action) {
   while (true) {
     // Poll the running bit and auto done bits.
@@ -170,13 +107,6 @@
   }
 }
 
-void Shoot() {
-  // Shoot.
-  auto shoot_action = actions::MakeShootAction();
-  shoot_action->Start();
-  WaitUntilDoneOrCanceled(shoot_action.get());
-}
-
 ::std::unique_ptr<TypedAction< ::frc971::actions::DrivetrainActionQueueGroup>>
 SetDriveGoal(double distance, bool slow_acceleration,
              double maximum_velocity = 1.7, double theta = 0) {
@@ -211,314 +141,14 @@
 
 }
 
-void WaitUntilClawDone() {
-  while (true) {
-    // Poll the running bit and auto done bits.
-    ::aos::time::PhasedLoop10MS(5000);
-    control_loops::claw_queue_group.status.FetchLatest();
-    control_loops::claw_queue_group.goal.FetchLatest();
-    if (ShouldExitAuto()) {
-      return;
-    }
-    if (control_loops::claw_queue_group.status.get() == nullptr ||
-        control_loops::claw_queue_group.goal.get() == nullptr) {
-      continue;
-    }
-    bool ans =
-        control_loops::claw_queue_group.status->zeroed &&
-        (::std::abs(control_loops::claw_queue_group.status->bottom_velocity) <
-         1.0) &&
-        (::std::abs(control_loops::claw_queue_group.status->bottom -
-                    control_loops::claw_queue_group.goal->bottom_angle) <
-         0.10) &&
-        (::std::abs(control_loops::claw_queue_group.status->separation -
-                    control_loops::claw_queue_group.goal->separation_angle) <
-         0.4);
-    if (ans) {
-      return;
-    }
-  }
-}
-
-class HotGoalDecoder {
- public:
-  HotGoalDecoder() {
-    ResetCounts();
-  }
-
-  void ResetCounts() {
-    hot_goal.FetchLatest();
-    if (hot_goal.get()) {
-      start_counts_ = *hot_goal;
-      LOG_STRUCT(INFO, "counts reset to", start_counts_);
-      start_counts_valid_ = true;
-    } else {
-      LOG(WARNING, "no hot goal message. ignoring\n");
-      start_counts_valid_ = false;
-    }
-  }
-
-  void Update(bool block = false) {
-    if (block) {
-      hot_goal.FetchAnother();
-    } else {
-      hot_goal.FetchLatest();
-    }
-    if (hot_goal.get()) LOG_STRUCT(INFO, "new counts", *hot_goal);
-  }
-
-  bool left_triggered() const {
-    if (!start_counts_valid_ || !hot_goal.get()) return false;
-    return (hot_goal->left_count - start_counts_.left_count) > kThreshold;
-  }
-
-  bool right_triggered() const {
-    if (!start_counts_valid_ || !hot_goal.get()) return false;
-    return (hot_goal->right_count - start_counts_.right_count) > kThreshold;
-  }
-
-  bool is_left() const {
-    if (!start_counts_valid_ || !hot_goal.get()) return false;
-    const uint64_t left_difference =
-        hot_goal->left_count - start_counts_.left_count;
-    const uint64_t right_difference =
-        hot_goal->right_count - start_counts_.right_count;
-    if (left_difference > kThreshold) {
-      if (right_difference > kThreshold) {
-        // We've seen a lot of both, so pick the one we've seen the most of.
-        return left_difference > right_difference;
-      } else {
-        // We've seen enough left but not enough right, so go with it.
-        return true;
-      }
-    } else {
-      // We haven't seen enough left, so it's not left.
-      return false;
-    }
-  }
-
-  bool is_right() const {
-    if (!start_counts_valid_ || !hot_goal.get()) return false;
-    const uint64_t left_difference =
-        hot_goal->left_count - start_counts_.left_count;
-    const uint64_t right_difference =
-        hot_goal->right_count - start_counts_.right_count;
-    if (right_difference > kThreshold) {
-      if (left_difference > kThreshold) {
-        // We've seen a lot of both, so pick the one we've seen the most of.
-        return right_difference > left_difference;
-      } else {
-        // We've seen enough right but not enough left, so go with it.
-        return true;
-      }
-    } else {
-      // We haven't seen enough right, so it's not right.
-      return false;
-    }
-  }
-
- private:
-  static const uint64_t kThreshold = 5;
-
-  ::frc971::HotGoal start_counts_;
-  bool start_counts_valid_;
-};
-
 void HandleAuto() {
-  enum class AutoVersion : uint8_t {
-    kStraight,
-    kDoubleHot,
-    kSingleHot,
-  };
-
-  // The front of the robot is 1.854 meters from the wall
-  static const double kShootDistance = 3.15;
-  static const double kPickupDistance = 0.5;
-  static const double kTurnAngle = 0.3;
-
   ::aos::time::Time start_time = ::aos::time::Time::Now();
-  LOG(INFO, "Handling auto mode\n");
-
-  AutoVersion auto_version;
-  ::frc971::sensors::auto_mode.FetchLatest();
-  if (!::frc971::sensors::auto_mode.get()) {
-    LOG(WARNING, "not sure which auto mode to use\n");
-    auto_version = AutoVersion::kStraight;
-  } else {
-    static const double kSelectorMin = 0.2, kSelectorMax = 4.4;
-
-    const double kSelectorStep = (kSelectorMax - kSelectorMin) / 3.0;
-    if (::frc971::sensors::auto_mode->voltage < kSelectorStep + kSelectorMin) {
-      auto_version = AutoVersion::kSingleHot;
-    } else if (::frc971::sensors::auto_mode->voltage <
-               2 * kSelectorStep + kSelectorMin) {
-      auto_version = AutoVersion::kStraight;
-    } else {
-      auto_version = AutoVersion::kDoubleHot;
-    }
-  }
-  LOG(INFO, "running auto %" PRIu8 "\n", static_cast<uint8_t>(auto_version));
-
-  const bool drive_slow_acceleration = auto_version == AutoVersion::kStraight;
-
-  HotGoalDecoder hot_goal_decoder;
-  // True for left, false for right.
-  bool first_shot_left, second_shot_left_default, second_shot_left;
+  LOG(INFO, "Handling auto mode at %f\n", start_time.ToSeconds());
 
   ResetDrivetrain();
 
   if (ShouldExitAuto()) return;
   InitializeEncoders();
-
-  // Turn the claw on, keep it straight up until the ball has been grabbed.
-  LOG(INFO, "Claw going up at %f\n",
-      (::aos::time::Time::Now() - start_time).ToSeconds());
-  PositionClawVertically(12.0, 4.0);
-  SetShotPower(115.0);
-
-  // Wait for the ball to enter the claw.
-  time::SleepFor(time::Time::InSeconds(0.25));
-  if (ShouldExitAuto()) return;
-  LOG(INFO, "Readying claw for shot at %f\n",
-      (::aos::time::Time::Now() - start_time).ToSeconds());
-
-  {
-    if (ShouldExitAuto()) return;
-    // Drive to the goal.
-    auto drivetrain_action = SetDriveGoal(-kShootDistance,
-                                          drive_slow_acceleration, 2.5);
-    time::SleepFor(time::Time::InSeconds(0.75));
-    PositionClawForShot();
-    LOG(INFO, "Waiting until drivetrain is finished\n");
-    WaitUntilDoneOrCanceled(drivetrain_action.get());
-    if (ShouldExitAuto()) return;
-  }
-
-  hot_goal_decoder.Update();
-  if (hot_goal_decoder.is_left()) {
-    LOG(INFO, "first shot left\n");
-    first_shot_left = true;
-    second_shot_left_default = false;
-  } else if (hot_goal_decoder.is_right()) {
-    LOG(INFO, "first shot right\n");
-    first_shot_left = false;
-    second_shot_left_default = true;
-  } else {
-    LOG(INFO, "first shot defaulting left\n");
-    first_shot_left = true;
-    second_shot_left_default = true;
-  }
-  if (auto_version == AutoVersion::kDoubleHot) {
-    if (ShouldExitAuto()) return;
-    auto drivetrain_action =
-        SetDriveGoal(0, drive_slow_acceleration, 2,
-                     first_shot_left ? kTurnAngle : -kTurnAngle);
-    WaitUntilDoneOrCanceled(drivetrain_action.get());
-    if (ShouldExitAuto()) return;
-  } else if (auto_version == AutoVersion::kSingleHot) {
-    do {
-      // TODO(brians): Wait for next message with timeout or something.
-      ::aos::time::SleepFor(::aos::time::Time::InSeconds(0.003));
-      hot_goal_decoder.Update(false);
-      if (ShouldExitAuto()) return;
-    } while (!hot_goal_decoder.left_triggered() &&
-             (::aos::time::Time::Now() - start_time) <
-                 ::aos::time::Time::InSeconds(9));
-  } else if (auto_version == AutoVersion::kStraight) {
-    time::SleepFor(time::Time::InSeconds(0.4));
-  }
-
-  // Shoot.
-  LOG(INFO, "Shooting at %f\n",
-      (::aos::time::Time::Now() - start_time).ToSeconds());
-  Shoot();
-  time::SleepFor(time::Time::InSeconds(0.05));
-
-  if (auto_version == AutoVersion::kDoubleHot) {
-    if (ShouldExitAuto()) return;
-    auto drivetrain_action =
-        SetDriveGoal(0, drive_slow_acceleration, 2,
-                     first_shot_left ? -kTurnAngle : kTurnAngle);
-    WaitUntilDoneOrCanceled(drivetrain_action.get());
-    if (ShouldExitAuto()) return;
-  } else if (auto_version == AutoVersion::kSingleHot) {
-    LOG(INFO, "auto done at %f\n",
-        (::aos::time::Time::Now() - start_time).ToSeconds());
-    PositionClawVertically(0.0, 0.0);
-    return;
-  }
-  
-  {
-    if (ShouldExitAuto()) return;
-    // Intake the new ball.
-    LOG(INFO, "Claw ready for intake at %f\n",
-        (::aos::time::Time::Now() - start_time).ToSeconds());
-    PositionClawBackIntake();
-    auto drivetrain_action =
-        SetDriveGoal(kShootDistance + kPickupDistance,
-                     drive_slow_acceleration, 2.5);
-    LOG(INFO, "Waiting until drivetrain is finished\n");
-    WaitUntilDoneOrCanceled(drivetrain_action.get());
-    if (ShouldExitAuto()) return;
-    LOG(INFO, "Wait for the claw at %f\n",
-        (::aos::time::Time::Now() - start_time).ToSeconds());
-    WaitUntilClawDone();
-    if (ShouldExitAuto()) return;
-  }
-
-  // Drive back.
-  {
-    LOG(INFO, "Driving back at %f\n",
-        (::aos::time::Time::Now() - start_time).ToSeconds());
-    auto drivetrain_action =
-        SetDriveGoal(-(kShootDistance + kPickupDistance),
-                     drive_slow_acceleration, 2.5);
-    time::SleepFor(time::Time::InSeconds(0.3));
-    hot_goal_decoder.ResetCounts();
-    if (ShouldExitAuto()) return;
-    PositionClawUpClosed();
-    WaitUntilClawDone();
-    if (ShouldExitAuto()) return;
-    PositionClawForShot();
-    LOG(INFO, "Waiting until drivetrain is finished\n");
-    WaitUntilDoneOrCanceled(drivetrain_action.get());
-    if (ShouldExitAuto()) return;
-    WaitUntilClawDone();
-    if (ShouldExitAuto()) return;
-  }
-
-  hot_goal_decoder.Update();
-  if (hot_goal_decoder.is_left()) {
-    LOG(INFO, "second shot left\n");
-    second_shot_left = true;
-  } else if (hot_goal_decoder.is_right()) {
-    LOG(INFO, "second shot right\n");
-    second_shot_left = false;
-  } else {
-    LOG(INFO, "second shot defaulting %s\n",
-        second_shot_left_default ? "left" : "right");
-    second_shot_left = second_shot_left_default;
-  }
-  if (auto_version == AutoVersion::kDoubleHot) {
-    if (ShouldExitAuto()) return;
-    auto drivetrain_action =
-        SetDriveGoal(0, drive_slow_acceleration, 2,
-                     second_shot_left ? kTurnAngle : -kTurnAngle);
-    WaitUntilDoneOrCanceled(drivetrain_action.get());
-    if (ShouldExitAuto()) return;
-  } else if (auto_version == AutoVersion::kStraight) {
-    time::SleepFor(time::Time::InSeconds(0.4));
-  }
-
-  LOG(INFO, "Shooting at %f\n",
-      (::aos::time::Time::Now() - start_time).ToSeconds());
-  // Shoot
-  Shoot();
-  if (ShouldExitAuto()) return;
-
-  // Get ready to zero when we come back up.
-  time::SleepFor(time::Time::InSeconds(0.05));
-  PositionClawVertically(0.0, 0.0);
 }
 
 }  // namespace autonomous
diff --git a/frc971/autonomous/autonomous.gyp b/frc971/autonomous/autonomous.gyp
index bde28b8..98c1ee8 100644
--- a/frc971/autonomous/autonomous.gyp
+++ b/frc971/autonomous/autonomous.gyp
@@ -19,18 +19,13 @@
         'auto_queue',
         '<(AOS)/common/controls/controls.gyp:control_loop',
         '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
-        '<(DEPTH)/frc971/control_loops/shooter/shooter.gyp:shooter_loop',
-        '<(DEPTH)/frc971/control_loops/claw/claw.gyp:claw_loop',
         '<(DEPTH)/frc971/frc971.gyp:constants',
         '<(AOS)/common/common.gyp:time',
         '<(AOS)/common/util/util.gyp:phased_loop',
         '<(AOS)/common/util/util.gyp:trapezoid_profile',
         '<(AOS)/build/aos.gyp:logging',
         '<(DEPTH)/frc971/actions/actions.gyp:action_client',
-        '<(DEPTH)/frc971/actions/actions.gyp:shoot_action_lib',
         '<(DEPTH)/frc971/actions/actions.gyp:drivetrain_action_lib',
-        '<(DEPTH)/frc971/queues/queues.gyp:queues',
-        '<(DEPTH)/frc971/queues/queues.gyp:hot_goal',
         '<(AOS)/common/logging/logging.gyp:queue_logging',
       ],
       'export_dependent_settings': [
diff --git a/frc971/control_loops/claw/claw.cc b/frc971/control_loops/claw/claw.cc
deleted file mode 100644
index 10ea25f..0000000
--- a/frc971/control_loops/claw/claw.cc
+++ /dev/null
@@ -1,993 +0,0 @@
-#include "frc971/control_loops/claw/claw.h"
-
-#include <algorithm>
-
-#include "aos/common/controls/control_loops.q.h"
-#include "aos/common/logging/logging.h"
-#include "aos/common/logging/queue_logging.h"
-#include "aos/common/logging/matrix_logging.h"
-#include "aos/common/commonmath.h"
-
-#include "frc971/constants.h"
-#include "frc971/control_loops/claw/claw_motor_plant.h"
-
-// Zeroing plan.
-// There are 2 types of zeros.  Enabled and disabled ones.
-// Disabled ones are only valid during auto mode, and can be used to speed up
-// the enabled zero process.  We need to re-zero during teleop in case the auto
-// zero was poor and causes us to miss all our shots.
-//
-// We need to be able to zero manually while disabled by moving the joint over
-// the zeros.
-// Zero on the down edge when disabled (gravity in the direction of motion)
-//
-// When enabled, zero on the up edge (gravity opposing the direction of motion)
-// The enabled sequence needs to work as follows.  We can crash the claw if we
-// bring them too close to each other or too far from each other.  The only safe
-// thing to do is to move them in unison.
-//
-// Start by moving them both towards the front of the bot to either find either
-// the middle hall effect on either jaw, or the front hall effect on the bottom
-// jaw.  Any edge that isn't the desired edge will provide an approximate edge
-// location that can be used for the fine tuning step.
-// Once an edge is found on the front claw, move back the other way with both
-// claws until an edge is found for the other claw.
-// Now that we have an approximate zero, we can robustify the limits to keep
-// both claws safe.  Then, we can move both claws to a position that is the
-// correct side of the zero and go zero.
-
-// Valid region plan.
-// Difference between the arms has a range, and the values of each arm has a
-// range.
-// If a claw runs up against a static limit, don't let the goal change outside
-// the limit.
-// If a claw runs up against a movable limit, move both claws outwards to get
-// out of the condition.
-
-namespace frc971 {
-namespace control_loops {
-
-static const double kZeroingVoltage = 4.0;
-static const double kMaxVoltage = 12.0;
-const double kRezeroThreshold = 0.07;
-
-ClawLimitedLoop::ClawLimitedLoop(StateFeedbackLoop<4, 2, 2> &&loop)
-    : StateFeedbackLoop<4, 2, 2>(::std::move(loop)),
-      uncapped_average_voltage_(0.0),
-      is_zeroing_(true),
-      U_Poly_((Eigen::Matrix<double, 4, 2>() << 1, 0,
-               -1, 0,
-               0, 1,
-               0, -1).finished(),
-              (Eigen::Matrix<double, 4, 1>() << kMaxVoltage, kMaxVoltage,
-               kMaxVoltage, kMaxVoltage).finished()),
-      U_Poly_zeroing_((Eigen::Matrix<double, 4, 2>() << 1, 0,
-               -1, 0,
-               0, 1,
-               0, -1).finished(),
-              (Eigen::Matrix<double, 4, 1>() <<
-               kZeroingVoltage, kZeroingVoltage,
-               kZeroingVoltage, kZeroingVoltage).finished()) {
-  ::aos::controls::HPolytope<0>::Init();
-}
-
-// Caps the voltage prioritizing reducing velocity error over reducing
-// positional error.
-// Uses the polytope libararies which we used to just use for the drivetrain.
-// Uses a region representing the maximum voltage and then transforms it such
-// that the points represent different amounts of positional error and
-// constrains the region such that, if at all possible, it will maintain its
-// current efforts to reduce velocity error.
-void ClawLimitedLoop::CapU() {
-  const Eigen::Matrix<double, 4, 1> error = R() - X_hat();
-
-  double u_top = U(1, 0);
-  double u_bottom = U(0, 0);
-
-  uncapped_average_voltage_ = (u_top + u_bottom) / 2;
-
-  double max_voltage = is_zeroing_ ? kZeroingVoltage : kMaxVoltage;
-
-  if (::std::abs(u_bottom) > max_voltage || ::std::abs(u_top) > max_voltage) {
-    LOG_MATRIX(DEBUG, "U at start", U());
-    // H * U <= k
-    // U = UPos + UVel
-    // H * (UPos + UVel) <= k
-    // H * UPos <= k - H * UVel
-
-    // Now, we can do a coordinate transformation and say the following.
-
-    // UPos = position_K * position_error
-    // (H * position_K) * position_error <= k - H * UVel
-
-    Eigen::Matrix<double, 2, 2> position_K;
-    position_K << K(0, 0), K(0, 1),
-                  K(1, 0), K(1, 1);
-    Eigen::Matrix<double, 2, 2> velocity_K;
-    velocity_K << K(0, 2), K(0, 3),
-                  K(1, 2), K(1, 3);
-
-    Eigen::Matrix<double, 2, 1> position_error;
-    position_error << error(0, 0), error(1, 0);
-    Eigen::Matrix<double, 2, 1> velocity_error;
-    velocity_error << error(2, 0), error(3, 0);
-    LOG_MATRIX(DEBUG, "error", error);
-
-    const auto &poly = is_zeroing_ ? U_Poly_zeroing_ : U_Poly_;
-    const Eigen::Matrix<double, 4, 2> pos_poly_H = poly.H() * position_K;
-    const Eigen::Matrix<double, 4, 1> pos_poly_k =
-        poly.k() - poly.H() * velocity_K * velocity_error;
-    const ::aos::controls::HPolytope<2> pos_poly(pos_poly_H, pos_poly_k);
-
-    Eigen::Matrix<double, 2, 1> adjusted_pos_error;
-    {
-      const auto &P = position_error;
-
-      // This line was at 45 degrees but is now at some angle steeper than the
-      // straight one between the points.
-      Eigen::Matrix<double, 1, 2> angle_45;
-      // If the top claw is above its soft upper limit, make the line actually
-      // 45 degrees to avoid smashing it into the limit in an attempt to fix the
-      // separation error faster than the bottom position one.
-      if (X_hat(0, 0) + X_hat(1, 0) >
-          constants::GetValues().claw.upper_claw.upper_limit) {
-        angle_45 << 1, 1;
-      } else {
-        // Fixing separation error half as fast as positional error works well
-        // because it means they both close evenly.
-        angle_45 << ::std::sqrt(3), 1;
-      }
-      Eigen::Matrix<double, 1, 2> L45_quadrant;
-      L45_quadrant << ::aos::sign(P(1, 0)), -::aos::sign(P(0, 0));
-      const auto L45 = L45_quadrant.cwiseProduct(angle_45);
-      const double w45 = 0;
-
-      Eigen::Matrix<double, 1, 2> LH;
-      if (::std::abs(P(0, 0)) > ::std::abs(P(1, 0))) {
-        LH << 0, 1;
-      } else {
-        LH << 1, 0;
-      }
-      const double wh = LH.dot(P);
-
-      Eigen::Matrix<double, 2, 2> standard;
-      standard << L45, LH;
-      Eigen::Matrix<double, 2, 1> W;
-      W << w45, wh;
-      const Eigen::Matrix<double, 2, 1> intersection = standard.inverse() * W;
-
-      bool is_inside_h;
-      const auto adjusted_pos_error_h =
-          DoCoerceGoal(pos_poly, LH, wh, position_error, &is_inside_h);
-      const auto adjusted_pos_error_45 =
-          DoCoerceGoal(pos_poly, L45, w45, intersection, nullptr);
-      if (pos_poly.IsInside(intersection)) {
-        adjusted_pos_error = adjusted_pos_error_h;
-      } else {
-        if (is_inside_h) {
-          if (adjusted_pos_error_h.norm() > adjusted_pos_error_45.norm()) {
-            adjusted_pos_error = adjusted_pos_error_h;
-          } else {
-            adjusted_pos_error = adjusted_pos_error_45;
-          }
-        } else {
-          adjusted_pos_error = adjusted_pos_error_45;
-        }
-      }
-    }
-
-    LOG_MATRIX(DEBUG, "adjusted_pos_error", adjusted_pos_error);
-    mutable_U() = velocity_K * velocity_error + position_K * adjusted_pos_error;
-    LOG_MATRIX(DEBUG, "U is now", U());
-
-    {
-      const auto values = constants::GetValues().claw;
-      if (top_known_) {
-        if (X_hat(0, 0) + X_hat(1, 0) > values.upper_claw.upper_limit && U(1, 0) > 0) {
-          LOG(WARNING, "upper claw too high and moving up\n");
-          mutable_U(1, 0) = 0;
-        } else if (X_hat(0, 0) + X_hat(1, 0) < values.upper_claw.lower_limit &&
-                   U(1, 0) < 0) {
-          LOG(WARNING, "upper claw too low and moving down\n");
-          mutable_U(1, 0) = 0;
-        }
-      }
-      if (bottom_known_) {
-        if (X_hat(0, 0) > values.lower_claw.upper_limit && U(0, 0) > 0) {
-          LOG(WARNING, "lower claw too high and moving up\n");
-          mutable_U(0, 0) = 0;
-        } else if (X_hat(0, 0) < values.lower_claw.lower_limit && U(0, 0) < 0) {
-          LOG(WARNING, "lower claw too low and moving down\n");
-          mutable_U(0, 0) = 0;
-        }
-      }
-    }
-  }
-}
-
-ZeroedStateFeedbackLoop::ZeroedStateFeedbackLoop(const char *name,
-                                                 ClawMotor *motor)
-    : offset_(0.0),
-      name_(name),
-      motor_(motor),
-      zeroing_state_(UNKNOWN_POSITION),
-      posedge_value_(0.0),
-      negedge_value_(0.0),
-      encoder_(0.0),
-      last_encoder_(0.0) {}
-
-void ZeroedStateFeedbackLoop::SetPositionValues(const HalfClawPosition &claw) {
-  front_.Update(claw.front);
-  calibration_.Update(claw.calibration);
-  back_.Update(claw.back);
-
-  bool any_sensor_triggered = any_triggered();
-  if (any_sensor_triggered && any_triggered_last_) {
-    // We are still on the hall effect and nothing has changed.
-    min_hall_effect_on_angle_ =
-        ::std::min(min_hall_effect_on_angle_, claw.position);
-    max_hall_effect_on_angle_ =
-        ::std::max(max_hall_effect_on_angle_, claw.position);
-  } else if (!any_sensor_triggered && !any_triggered_last_) {
-    // We are still off the hall effect and nothing has changed.
-    min_hall_effect_off_angle_ =
-        ::std::min(min_hall_effect_off_angle_, claw.position);
-    max_hall_effect_off_angle_ =
-        ::std::max(max_hall_effect_off_angle_, claw.position);
-  } else if (any_sensor_triggered && !any_triggered_last_) {
-    // Saw a posedge on the hall effect.  Reset the limits.
-    min_hall_effect_on_angle_ = ::std::min(claw.posedge_value, claw.position);
-    max_hall_effect_on_angle_ = ::std::max(claw.posedge_value, claw.position);
-  } else if (!any_sensor_triggered && any_triggered_last_) {
-    // Saw a negedge on the hall effect.  Reset the limits.
-    min_hall_effect_off_angle_ = ::std::min(claw.negedge_value, claw.position);
-    max_hall_effect_off_angle_ = ::std::max(claw.negedge_value, claw.position);
-  }
-
-  posedge_value_ = claw.posedge_value;
-  negedge_value_ = claw.negedge_value;
-  last_encoder_ = encoder_;
-  if (front().value() || calibration().value() || back().value()) {
-    last_on_encoder_ = encoder_;
-  } else {
-    last_off_encoder_ = encoder_;
-  }
-  encoder_ = claw.position;
-  any_triggered_last_ = any_sensor_triggered;
-}
-
-void ZeroedStateFeedbackLoop::Reset(const HalfClawPosition &claw) {
-  set_zeroing_state(ZeroedStateFeedbackLoop::UNKNOWN_POSITION);
-
-  front_.Reset(claw.front);
-  calibration_.Reset(claw.calibration);
-  back_.Reset(claw.back);
-  // close up the min and max edge positions as they are no longer valid and
-  // will be expanded in future iterations
-  min_hall_effect_on_angle_ = claw.position;
-  max_hall_effect_on_angle_ = claw.position;
-  min_hall_effect_off_angle_ = claw.position;
-  max_hall_effect_off_angle_ = claw.position;
-  any_triggered_last_ = any_triggered();
-}
-
-bool TopZeroedStateFeedbackLoop::SetCalibrationOnEdge(
-    const constants::Values::Claws::Claw &claw_values,
-    JointZeroingState zeroing_state) {
-  double edge_encoder;
-  double edge_angle;
-  if (GetPositionOfEdge(claw_values, &edge_encoder, &edge_angle)) {
-    LOG(INFO, "Calibration edge edge should be %f.\n", edge_angle);
-    SetCalibration(edge_encoder, edge_angle);
-    set_zeroing_state(zeroing_state);
-    return true;
-  }
-  return false;
-}
-
-void TopZeroedStateFeedbackLoop::HandleCalibrationError(
-    const constants::Values::Claws::Claw &claw_values) {
-  double edge_encoder;
-  double edge_angle;
-  if (GetPositionOfEdge(claw_values, &edge_encoder, &edge_angle)) {
-    const double calibration_error =
-        ComputeCalibrationChange(edge_encoder, edge_angle);
-    LOG(INFO, "Top calibration error is %f\n", calibration_error);
-    if (::std::abs(calibration_error) > kRezeroThreshold) {
-      LOG(WARNING, "rezeroing top\n");
-      SetCalibration(edge_encoder, edge_angle);
-      set_zeroing_state(ZeroedStateFeedbackLoop::UNKNOWN_POSITION);
-    }
-  }
-}
-
-
-void BottomZeroedStateFeedbackLoop::HandleCalibrationError(
-    const constants::Values::Claws::Claw &claw_values) {
-  double edge_encoder;
-  double edge_angle;
-  if (GetPositionOfEdge(claw_values, &edge_encoder, &edge_angle)) {
-    const double calibration_error =
-        ComputeCalibrationChange(edge_encoder, edge_angle);
-    LOG(INFO, "Bottom calibration error is %f\n", calibration_error);
-    if (::std::abs(calibration_error) > kRezeroThreshold) {
-      LOG(WARNING, "rezeroing bottom\n");
-      SetCalibration(edge_encoder, edge_angle);
-      set_zeroing_state(ZeroedStateFeedbackLoop::UNKNOWN_POSITION);
-    }
-  }
-}
-
-bool BottomZeroedStateFeedbackLoop::SetCalibrationOnEdge(
-    const constants::Values::Claws::Claw &claw_values,
-    JointZeroingState zeroing_state) {
-  double edge_encoder;
-  double edge_angle;
-  if (GetPositionOfEdge(claw_values, &edge_encoder, &edge_angle)) {
-    LOG(INFO, "Calibration edge.\n");
-    SetCalibration(edge_encoder, edge_angle);
-    set_zeroing_state(zeroing_state);
-    return true;
-  }
-  return false;
-}
-
-ClawMotor::ClawMotor(control_loops::ClawGroup *my_claw)
-    : aos::controls::ControlLoop<control_loops::ClawGroup, false>(my_claw),
-      has_top_claw_goal_(false),
-      top_claw_goal_(0.0),
-      top_claw_(this),
-      has_bottom_claw_goal_(false),
-      bottom_claw_goal_(0.0),
-      bottom_claw_(this),
-      claw_(MakeClawLoop()),
-      was_enabled_(false),
-      doing_calibration_fine_tune_(false),
-      capped_goal_(false),
-      mode_(UNKNOWN_LOCATION) {}
-
-const int ZeroedStateFeedbackLoop::kZeroingMaxVoltage;
-
-bool ZeroedStateFeedbackLoop::SawFilteredPosedge(
-    const HallEffectTracker &this_sensor, const HallEffectTracker &sensorA,
-    const HallEffectTracker &sensorB) {
-  if (posedge_filter_ == nullptr && this_sensor.posedge_count_changed() &&
-      !sensorA.posedge_count_changed() && !sensorB.posedge_count_changed() &&
-      this_sensor.value() && !this_sensor.last_value()) {
-    posedge_filter_ = &this_sensor;
-  } else if (posedge_filter_ == &this_sensor &&
-             !this_sensor.posedge_count_changed() &&
-             !sensorA.posedge_count_changed() &&
-             !sensorB.posedge_count_changed() && this_sensor.value()) {
-    posedge_filter_ = nullptr;
-    return true;
-  } else if (posedge_filter_ == &this_sensor) {
-    posedge_filter_ = nullptr;
-  }
-  return false;
-}
-
-bool ZeroedStateFeedbackLoop::SawFilteredNegedge(
-    const HallEffectTracker &this_sensor, const HallEffectTracker &sensorA,
-    const HallEffectTracker &sensorB) {
-  if (negedge_filter_ == nullptr && this_sensor.negedge_count_changed() &&
-      !sensorA.negedge_count_changed() && !sensorB.negedge_count_changed() &&
-      !this_sensor.value() && this_sensor.last_value()) {
-    negedge_filter_ = &this_sensor;
-  } else if (negedge_filter_ == &this_sensor &&
-             !this_sensor.negedge_count_changed() &&
-             !sensorA.negedge_count_changed() &&
-             !sensorB.negedge_count_changed() && !this_sensor.value()) {
-    negedge_filter_ = nullptr;
-    return true;
-  } else if (negedge_filter_ == &this_sensor) {
-    negedge_filter_ = nullptr;
-  }
-  return false;
-}
-
-bool ZeroedStateFeedbackLoop::DoGetPositionOfEdge(
-    const constants::Values::Claws::AnglePair &angles, double *edge_encoder,
-    double *edge_angle, const HallEffectTracker &this_sensor,
-    const HallEffectTracker &sensorA, const HallEffectTracker &sensorB,
-    const char *hall_effect_name) {
-  bool found_edge = false;
-
-  if (SawFilteredPosedge(this_sensor, sensorA, sensorB)) {
-    if (min_hall_effect_off_angle_ == max_hall_effect_off_angle_) {
-      LOG(WARNING, "%s: Uncertain which side, rejecting posedge\n", name_);
-    } else {
-      const double average_last_encoder =
-          (min_hall_effect_off_angle_ + max_hall_effect_off_angle_) / 2.0;
-      if (posedge_value_ < average_last_encoder) {
-        *edge_angle = angles.upper_decreasing_angle;
-        LOG(INFO, "%s Posedge upper of %s -> %f posedge: %f avg_encoder: %f\n",
-            name_, hall_effect_name, *edge_angle, posedge_value_,
-            average_last_encoder);
-      } else {
-        *edge_angle = angles.lower_angle;
-        LOG(INFO, "%s Posedge lower of %s -> %f posedge: %f avg_encoder: %f\n",
-            name_, hall_effect_name, *edge_angle, posedge_value_,
-            average_last_encoder);
-      }
-      *edge_encoder = posedge_value_;
-      found_edge = true;
-    }
-  }
-
-  if (SawFilteredNegedge(this_sensor, sensorA, sensorB)) {
-    if (min_hall_effect_on_angle_ == max_hall_effect_on_angle_) {
-      LOG(WARNING, "%s: Uncertain which side, rejecting negedge\n", name_);
-    } else {
-      const double average_last_encoder =
-          (min_hall_effect_on_angle_ + max_hall_effect_on_angle_) / 2.0;
-      if (negedge_value_ > average_last_encoder) {
-        *edge_angle = angles.upper_angle;
-        LOG(INFO, "%s Negedge upper of %s -> %f negedge: %f avg_encoder: %f\n",
-            name_, hall_effect_name, *edge_angle, negedge_value_,
-            average_last_encoder);
-      } else {
-        *edge_angle = angles.lower_decreasing_angle;
-        LOG(INFO, "%s Negedge lower of %s -> %f negedge: %f avg_encoder: %f\n",
-            name_, hall_effect_name, *edge_angle, negedge_value_,
-            average_last_encoder);
-      }
-      *edge_encoder = negedge_value_;
-      found_edge = true;
-    }
-  }
-
-  return found_edge;
-}
-
-bool ZeroedStateFeedbackLoop::GetPositionOfEdge(
-    const constants::Values::Claws::Claw &claw_values, double *edge_encoder,
-    double *edge_angle) {
-  if (DoGetPositionOfEdge(claw_values.front, edge_encoder, edge_angle, front_,
-                          calibration_, back_, "front")) {
-    return true;
-  }
-  if (DoGetPositionOfEdge(claw_values.calibration, edge_encoder, edge_angle,
-                          calibration_, front_, back_, "calibration")) {
-    return true;
-  }
-  if (DoGetPositionOfEdge(claw_values.back, edge_encoder, edge_angle, back_,
-                          calibration_, front_, "back")) {
-    return true;
-  }
-  return false;
-}
-
-void TopZeroedStateFeedbackLoop::SetCalibration(double edge_encoder,
-                                                double edge_angle) {
-  double old_offset = offset_;
-  offset_ = edge_angle - edge_encoder;
-  const double doffset = offset_ - old_offset;
-  motor_->ChangeTopOffset(doffset);
-}
-
-double TopZeroedStateFeedbackLoop::ComputeCalibrationChange(double edge_encoder,
-                                                            double edge_angle) {
-  const double offset = edge_angle - edge_encoder;
-  const double doffset = offset - offset_;
-  return doffset;
-}
-
-void BottomZeroedStateFeedbackLoop::SetCalibration(double edge_encoder,
-                                                   double edge_angle) {
-  double old_offset = offset_;
-  offset_ = edge_angle - edge_encoder;
-  const double doffset = offset_ - old_offset;
-  motor_->ChangeBottomOffset(doffset);
-}
-
-double BottomZeroedStateFeedbackLoop::ComputeCalibrationChange(
-    double edge_encoder, double edge_angle) {
-  const double offset = edge_angle - edge_encoder;
-  const double doffset = offset - offset_;
-  return doffset;
-}
-
-void ClawMotor::ChangeTopOffset(double doffset) {
-  claw_.ChangeTopOffset(doffset);
-  if (has_top_claw_goal_) {
-    top_claw_goal_ += doffset;
-  }
-}
-
-void ClawMotor::ChangeBottomOffset(double doffset) {
-  claw_.ChangeBottomOffset(doffset);
-  if (has_bottom_claw_goal_) {
-    bottom_claw_goal_ += doffset;
-  }
-}
-
-void ClawLimitedLoop::ChangeTopOffset(double doffset) {
-  mutable_Y()(1, 0) += doffset;
-  mutable_X_hat()(1, 0) += doffset;
-  LOG(INFO, "Changing top offset by %f\n", doffset);
-}
-void ClawLimitedLoop::ChangeBottomOffset(double doffset) {
-  mutable_Y()(0, 0) += doffset;
-  mutable_X_hat()(0, 0) += doffset;
-  mutable_X_hat()(1, 0) -= doffset;
-  LOG(INFO, "Changing bottom offset by %f\n", doffset);
-}
-
-void LimitClawGoal(double *bottom_goal, double *top_goal,
-                   const frc971::constants::Values &values) {
-  // first update position based on angle limit
-  const double separation = *top_goal - *bottom_goal;
-  if (separation > values.claw.soft_max_separation) {
-    LOG_STRUCT(DEBUG, "before", ClawPositionToLog(*top_goal, *bottom_goal));
-    const double dsep = (separation - values.claw.soft_max_separation) / 2.0;
-    *bottom_goal += dsep;
-    *top_goal -= dsep;
-    LOG_STRUCT(DEBUG, "after", ClawPositionToLog(*top_goal, *bottom_goal));
-  }
-  if (separation < values.claw.soft_min_separation) {
-    LOG_STRUCT(DEBUG, "before", ClawPositionToLog(*top_goal, *bottom_goal));
-    const double dsep = (separation - values.claw.soft_min_separation) / 2.0;
-    *bottom_goal += dsep;
-    *top_goal -= dsep;
-    LOG_STRUCT(DEBUG, "after", ClawPositionToLog(*top_goal, *bottom_goal));
-  }
-
-  // now move both goals in unison
-  if (*bottom_goal < values.claw.lower_claw.lower_limit) {
-    LOG_STRUCT(DEBUG, "before", ClawPositionToLog(*top_goal, *bottom_goal));
-    *top_goal += values.claw.lower_claw.lower_limit - *bottom_goal;
-    *bottom_goal = values.claw.lower_claw.lower_limit;
-    LOG_STRUCT(DEBUG, "after", ClawPositionToLog(*top_goal, *bottom_goal));
-  }
-  if (*bottom_goal > values.claw.lower_claw.upper_limit) {
-    LOG_STRUCT(DEBUG, "before", ClawPositionToLog(*top_goal, *bottom_goal));
-    *top_goal -= *bottom_goal - values.claw.lower_claw.upper_limit;
-    *bottom_goal = values.claw.lower_claw.upper_limit;
-    LOG_STRUCT(DEBUG, "after", ClawPositionToLog(*top_goal, *bottom_goal));
-  }
-
-  if (*top_goal < values.claw.upper_claw.lower_limit) {
-    LOG_STRUCT(DEBUG, "before", ClawPositionToLog(*top_goal, *bottom_goal));
-    *bottom_goal += values.claw.upper_claw.lower_limit - *top_goal;
-    *top_goal = values.claw.upper_claw.lower_limit;
-    LOG_STRUCT(DEBUG, "after", ClawPositionToLog(*top_goal, *bottom_goal));
-  }
-  if (*top_goal > values.claw.upper_claw.upper_limit) {
-    LOG_STRUCT(DEBUG, "before", ClawPositionToLog(*top_goal, *bottom_goal));
-    *bottom_goal -= *top_goal - values.claw.upper_claw.upper_limit;
-    *top_goal = values.claw.upper_claw.upper_limit;
-    LOG_STRUCT(DEBUG, "after", ClawPositionToLog(*top_goal, *bottom_goal));
-  }
-}
-
-bool ClawMotor::is_ready() const {
-  return (
-      (top_claw_.zeroing_state() == ZeroedStateFeedbackLoop::CALIBRATED &&
-       bottom_claw_.zeroing_state() == ZeroedStateFeedbackLoop::CALIBRATED) ||
-      (((::aos::robot_state.get() == NULL) ? true
-                                           : ::aos::robot_state->autonomous) &&
-       ((top_claw_.zeroing_state() == ZeroedStateFeedbackLoop::CALIBRATED ||
-         top_claw_.zeroing_state() ==
-             ZeroedStateFeedbackLoop::DISABLED_CALIBRATION) &&
-        (bottom_claw_.zeroing_state() == ZeroedStateFeedbackLoop::CALIBRATED ||
-         bottom_claw_.zeroing_state() ==
-             ZeroedStateFeedbackLoop::DISABLED_CALIBRATION))));
-}
-
-bool ClawMotor::is_zeroing() const { return !is_ready(); }
-
-// Positive angle is up, and positive power is up.
-void ClawMotor::RunIteration(const control_loops::ClawGroup::Goal *goal,
-                             const control_loops::ClawGroup::Position *position,
-                             control_loops::ClawGroup::Output *output,
-                             control_loops::ClawGroup::Status *status) {
-  constexpr double dt = 0.01;
-
-  // Disable the motors now so that all early returns will return with the
-  // motors disabled.
-  if (output) {
-    output->top_claw_voltage = 0;
-    output->bottom_claw_voltage = 0;
-    output->intake_voltage = 0;
-    output->tusk_voltage = 0;
-  }
-
-  if (goal) {
-    if (::std::isnan(goal->bottom_angle) ||
-        ::std::isnan(goal->separation_angle) || ::std::isnan(goal->intake) ||
-        ::std::isnan(goal->centering)) {
-      return;
-    }
-  }
-
-  if (reset()) {
-    top_claw_.Reset(position->top);
-    bottom_claw_.Reset(position->bottom);
-  }
-
-  const frc971::constants::Values &values = constants::GetValues();
-
-  if (position) {
-    Eigen::Matrix<double, 2, 1> Y;
-    Y << position->bottom.position + bottom_claw_.offset(),
-        position->top.position + top_claw_.offset();
-    claw_.Correct(Y);
-
-    top_claw_.SetPositionValues(position->top);
-    bottom_claw_.SetPositionValues(position->bottom);
-
-    if (!has_top_claw_goal_) {
-      has_top_claw_goal_ = true;
-      top_claw_goal_ = top_claw_.absolute_position();
-      initial_separation_ =
-          top_claw_.absolute_position() - bottom_claw_.absolute_position();
-    }
-    if (!has_bottom_claw_goal_) {
-      has_bottom_claw_goal_ = true;
-      bottom_claw_goal_ = bottom_claw_.absolute_position();
-      initial_separation_ =
-          top_claw_.absolute_position() - bottom_claw_.absolute_position();
-    }
-    LOG_STRUCT(DEBUG, "absolute position",
-               ClawPositionToLog(top_claw_.absolute_position(),
-                                 bottom_claw_.absolute_position()));
-  }
-
-  bool autonomous, enabled;
-  if (::aos::robot_state.get() == nullptr) {
-    autonomous = true;
-    enabled = false;
-  } else {
-    autonomous = ::aos::robot_state->autonomous;
-    enabled = ::aos::robot_state->enabled;
-  }
-
-  double bottom_claw_velocity_ = 0.0;
-  double top_claw_velocity_ = 0.0;
-
-  if (goal != NULL &&
-      ((top_claw_.zeroing_state() == ZeroedStateFeedbackLoop::CALIBRATED &&
-        bottom_claw_.zeroing_state() == ZeroedStateFeedbackLoop::CALIBRATED) ||
-       (autonomous &&
-        ((top_claw_.zeroing_state() == ZeroedStateFeedbackLoop::CALIBRATED ||
-          top_claw_.zeroing_state() ==
-              ZeroedStateFeedbackLoop::DISABLED_CALIBRATION) &&
-         (bottom_claw_.zeroing_state() == ZeroedStateFeedbackLoop::CALIBRATED ||
-          bottom_claw_.zeroing_state() ==
-              ZeroedStateFeedbackLoop::DISABLED_CALIBRATION))))) {
-    // Ready to use the claw.
-    // Limit the goals here.
-    bottom_claw_goal_ = goal->bottom_angle;
-    top_claw_goal_ = goal->bottom_angle + goal->separation_angle;
-    has_bottom_claw_goal_ = true;
-    has_top_claw_goal_ = true;
-    doing_calibration_fine_tune_ = false;
-    mode_ = READY;
-
-    bottom_claw_.HandleCalibrationError(values.claw.lower_claw);
-    top_claw_.HandleCalibrationError(values.claw.upper_claw);
-  } else if (top_claw_.zeroing_state() !=
-             ZeroedStateFeedbackLoop::UNKNOWN_POSITION &&
-             bottom_claw_.zeroing_state() !=
-             ZeroedStateFeedbackLoop::UNKNOWN_POSITION) {
-    // Time to fine tune the zero.
-    // Limit the goals here.
-    if (!enabled) {
-      // If we are disabled, start the fine tune process over again.
-      doing_calibration_fine_tune_ = false;
-    }
-    if (bottom_claw_.zeroing_state() != ZeroedStateFeedbackLoop::CALIBRATED) {
-      // always get the bottom claw to calibrated first
-      LOG(DEBUG, "Calibrating the bottom of the claw\n");
-      if (!doing_calibration_fine_tune_) {
-        if (::std::abs(bottom_absolute_position() -
-                       values.claw.start_fine_tune_pos) <
-            values.claw.claw_unimportant_epsilon) {
-          doing_calibration_fine_tune_ = true;
-          bottom_claw_goal_ += values.claw.claw_zeroing_speed * dt;
-          top_claw_velocity_ = bottom_claw_velocity_ =
-              values.claw.claw_zeroing_speed;
-          LOG(DEBUG, "Ready to fine tune the bottom\n");
-          mode_ = FINE_TUNE_BOTTOM;
-        } else {
-          // send bottom to zeroing start
-          bottom_claw_goal_ = values.claw.start_fine_tune_pos;
-          LOG(DEBUG, "Going to the start position for the bottom\n");
-          mode_ = PREP_FINE_TUNE_BOTTOM;
-        }
-      } else {
-        mode_ = FINE_TUNE_BOTTOM;
-        bottom_claw_goal_ += values.claw.claw_zeroing_speed * dt;
-        top_claw_velocity_ = bottom_claw_velocity_ =
-            values.claw.claw_zeroing_speed;
-        if (top_claw_.front_or_back_triggered() ||
-            bottom_claw_.front_or_back_triggered()) {
-          // We shouldn't hit a limit, but if we do, go back to the zeroing
-          // point and try again.
-          doing_calibration_fine_tune_ = false;
-          bottom_claw_goal_ = values.claw.start_fine_tune_pos;
-          top_claw_velocity_ = bottom_claw_velocity_ = 0.0;
-          LOG(DEBUG, "Found a limit, starting over.\n");
-          mode_ = PREP_FINE_TUNE_BOTTOM;
-        }
-
-        if (position && bottom_claw_.SawFilteredPosedge(
-                            bottom_claw_.calibration(), bottom_claw_.front(),
-                            bottom_claw_.back())) {
-          // do calibration
-          bottom_claw_.SetCalibration(
-              position->bottom.posedge_value,
-              values.claw.lower_claw.calibration.lower_angle);
-          bottom_claw_.set_zeroing_state(ZeroedStateFeedbackLoop::CALIBRATED);
-          // calibrated so we are done fine tuning bottom
-          doing_calibration_fine_tune_ = false;
-          LOG(DEBUG, "Calibrated the bottom correctly!\n");
-        } else if (bottom_claw_.calibration().last_value()) {
-          LOG(DEBUG, "Aborting bottom fine tune because sensor triggered\n");
-          doing_calibration_fine_tune_ = false;
-          bottom_claw_.set_zeroing_state(
-              ZeroedStateFeedbackLoop::UNKNOWN_POSITION);
-        } else {
-          LOG(DEBUG, "Fine tuning\n");
-        }
-      }
-      // now set the top claw to track
-
-      top_claw_goal_ = bottom_claw_goal_ + values.claw.claw_zeroing_separation;
-    } else {
-      // bottom claw must be calibrated, start on the top
-      if (!doing_calibration_fine_tune_) {
-        if (::std::abs(top_absolute_position() -
-                       values.claw.start_fine_tune_pos) <
-            values.claw.claw_unimportant_epsilon) {
-          doing_calibration_fine_tune_ = true;
-          top_claw_goal_ += values.claw.claw_zeroing_speed * dt;
-          top_claw_velocity_ = bottom_claw_velocity_ =
-              values.claw.claw_zeroing_speed;
-          LOG(DEBUG, "Ready to fine tune the top\n");
-          mode_ = FINE_TUNE_TOP;
-        } else {
-          // send top to zeroing start
-          top_claw_goal_ = values.claw.start_fine_tune_pos;
-          LOG(DEBUG, "Going to the start position for the top\n");
-          mode_ = PREP_FINE_TUNE_TOP;
-        }
-      } else {
-        mode_ = FINE_TUNE_TOP;
-        top_claw_goal_ += values.claw.claw_zeroing_speed * dt;
-        top_claw_velocity_ = bottom_claw_velocity_ =
-            values.claw.claw_zeroing_speed;
-        if (top_claw_.front_or_back_triggered() ||
-            bottom_claw_.front_or_back_triggered()) {
-          // this should not happen, but now we know it won't
-          doing_calibration_fine_tune_ = false;
-          top_claw_goal_ = values.claw.start_fine_tune_pos;
-          top_claw_velocity_ = bottom_claw_velocity_ = 0.0;
-          LOG(DEBUG, "Found a limit, starting over.\n");
-          mode_ = PREP_FINE_TUNE_TOP;
-        }
-
-        if (position &&
-            top_claw_.SawFilteredPosedge(top_claw_.calibration(),
-                                         top_claw_.front(), top_claw_.back())) {
-          // do calibration
-          top_claw_.SetCalibration(
-              position->top.posedge_value,
-              values.claw.upper_claw.calibration.lower_angle);
-          top_claw_.set_zeroing_state(ZeroedStateFeedbackLoop::CALIBRATED);
-          // calibrated so we are done fine tuning top
-          doing_calibration_fine_tune_ = false;
-          LOG(DEBUG, "Calibrated the top correctly!\n");
-        } else if (top_claw_.calibration().last_value()) {
-          LOG(DEBUG, "Aborting top fine tune because sensor triggered\n");
-          doing_calibration_fine_tune_ = false;
-          top_claw_.set_zeroing_state(
-              ZeroedStateFeedbackLoop::UNKNOWN_POSITION);
-        }
-      }
-      // now set the bottom claw to track
-      bottom_claw_goal_ = top_claw_goal_ - values.claw.claw_zeroing_separation;
-    }
-  } else {
-    doing_calibration_fine_tune_ = false;
-    if (!was_enabled_ && enabled) {
-      if (position) {
-        top_claw_goal_ = position->top.position + top_claw_.offset();
-        bottom_claw_goal_ = position->bottom.position + bottom_claw_.offset();
-        initial_separation_ =
-            position->top.position - position->bottom.position;
-      } else {
-        has_top_claw_goal_ = false;
-        has_bottom_claw_goal_ = false;
-      }
-    }
-
-    if ((bottom_claw_.zeroing_state() !=
-             ZeroedStateFeedbackLoop::UNKNOWN_POSITION ||
-         bottom_claw_.front().value() || top_claw_.front().value()) &&
-        !top_claw_.back().value() && !bottom_claw_.back().value()) {
-      if (enabled) {
-        // Time to slowly move back up to find any position to narrow down the
-        // zero.
-        top_claw_goal_ += values.claw.claw_zeroing_off_speed * dt;
-        bottom_claw_goal_ += values.claw.claw_zeroing_off_speed * dt;
-        top_claw_velocity_ = bottom_claw_velocity_ =
-            values.claw.claw_zeroing_off_speed;
-        LOG(DEBUG, "Bottom is known.\n");
-      }
-    } else {
-      // We don't know where either claw is.  Slowly start moving down to find
-      // any hall effect.
-      if (enabled) {
-        top_claw_goal_ -= values.claw.claw_zeroing_off_speed * dt;
-        bottom_claw_goal_ -= values.claw.claw_zeroing_off_speed * dt;
-        top_claw_velocity_ = bottom_claw_velocity_ =
-            -values.claw.claw_zeroing_off_speed;
-        LOG(DEBUG, "Both are unknown.\n");
-      }
-    }
-
-    if (position) {
-      if (enabled) {
-        top_claw_.SetCalibrationOnEdge(
-            values.claw.upper_claw,
-            ZeroedStateFeedbackLoop::APPROXIMATE_CALIBRATION);
-        bottom_claw_.SetCalibrationOnEdge(
-            values.claw.lower_claw,
-            ZeroedStateFeedbackLoop::APPROXIMATE_CALIBRATION);
-      } else {
-        // TODO(austin): Only calibrate on the predetermined edge.
-        // We might be able to just ignore this since the backlash is soooo
-        // low.
-        // :)
-        top_claw_.SetCalibrationOnEdge(
-            values.claw.upper_claw,
-            ZeroedStateFeedbackLoop::DISABLED_CALIBRATION);
-        bottom_claw_.SetCalibrationOnEdge(
-            values.claw.lower_claw,
-            ZeroedStateFeedbackLoop::DISABLED_CALIBRATION);
-      }
-    }
-    mode_ = UNKNOWN_LOCATION;
-  }
-
-  // Limit the goals if both claws have been (mostly) found.
-  if (mode_ != UNKNOWN_LOCATION) {
-    LimitClawGoal(&bottom_claw_goal_, &top_claw_goal_, values);
-  }
-
-  claw_.set_positions_known(
-      top_claw_.zeroing_state() != ZeroedStateFeedbackLoop::UNKNOWN_POSITION,
-      bottom_claw_.zeroing_state() !=
-          ZeroedStateFeedbackLoop::UNKNOWN_POSITION);
-  if (has_top_claw_goal_ && has_bottom_claw_goal_) {
-    claw_.mutable_R() << bottom_claw_goal_, top_claw_goal_ - bottom_claw_goal_,
-        bottom_claw_velocity_, top_claw_velocity_ - bottom_claw_velocity_;
-    LOG_MATRIX(DEBUG, "actual goal", claw_.R());
-
-    // Only cap power when one of the halves of the claw is moving slowly and
-    // could wind up.
-    claw_.set_is_zeroing(mode_ == UNKNOWN_LOCATION || mode_ == FINE_TUNE_TOP ||
-                         mode_ == FINE_TUNE_BOTTOM);
-    claw_.Update(output == nullptr);
-  } else {
-    claw_.Update(true);
-  }
-
-  capped_goal_ = false;
-  switch (mode_) {
-    case READY:
-    case PREP_FINE_TUNE_TOP:
-    case PREP_FINE_TUNE_BOTTOM:
-      break;
-    case FINE_TUNE_BOTTOM:
-    case FINE_TUNE_TOP:
-    case UNKNOWN_LOCATION: {
-      if (claw_.uncapped_average_voltage() > values.claw.max_zeroing_voltage) {
-        double dx_bot = (claw_.U_uncapped(0, 0) -
-                     values.claw.max_zeroing_voltage) /
-                    claw_.K(0, 0);
-        double dx_top = (claw_.U_uncapped(1, 0) -
-                     values.claw.max_zeroing_voltage) /
-                    claw_.K(0, 0);
-        double dx = ::std::max(dx_top, dx_bot);
-        bottom_claw_goal_ -= dx;
-        top_claw_goal_ -= dx;
-        Eigen::Matrix<double, 4, 1> R;
-        R << bottom_claw_goal_, top_claw_goal_ - bottom_claw_goal_, claw_.R(2, 0),
-            claw_.R(3, 0);
-        claw_.mutable_U() = claw_.K() * (R - claw_.X_hat());
-        capped_goal_ = true;
-        LOG(DEBUG, "Moving the goal by %f to prevent windup."
-            " Uncapped is %f, max is %f, difference is %f\n",
-            dx,
-            claw_.uncapped_average_voltage(), values.claw.max_zeroing_voltage,
-            (claw_.uncapped_average_voltage() -
-             values.claw.max_zeroing_voltage));
-      } else if (claw_.uncapped_average_voltage() <
-                 -values.claw.max_zeroing_voltage) {
-        double dx_bot = (claw_.U_uncapped(0, 0) +
-                     values.claw.max_zeroing_voltage) /
-                    claw_.K(0, 0);
-        double dx_top = (claw_.U_uncapped(1, 0) +
-                     values.claw.max_zeroing_voltage) /
-                    claw_.K(0, 0);
-        double dx = ::std::min(dx_top, dx_bot);
-        bottom_claw_goal_ -= dx;
-        top_claw_goal_ -= dx;
-        Eigen::Matrix<double, 4, 1> R;
-        R << bottom_claw_goal_, top_claw_goal_ - bottom_claw_goal_, claw_.R(2, 0),
-            claw_.R(3, 0);
-        claw_.mutable_U() = claw_.K() * (R - claw_.X_hat());
-        capped_goal_ = true;
-        LOG(DEBUG, "Moving the goal by %f to prevent windup\n", dx);
-      }
-    } break;
-  }
-
-  if (output) {
-    if (goal) {
-      //setup the intake
-      output->intake_voltage =
-          (goal->intake > 12.0) ? 12 : (goal->intake < -12.0) ? -12.0
-                                                              : goal->intake;
-      output->tusk_voltage = goal->centering;
-      output->tusk_voltage =
-          (goal->centering > 12.0) ? 12 : (goal->centering < -12.0)
-              ? -12.0
-              : goal->centering;
-    }
-    output->top_claw_voltage = claw_.U(1, 0);
-    output->bottom_claw_voltage = claw_.U(0, 0);
-
-    if (output->top_claw_voltage > kMaxVoltage) {
-      output->top_claw_voltage = kMaxVoltage;
-    } else if (output->top_claw_voltage < -kMaxVoltage) {
-      output->top_claw_voltage = -kMaxVoltage;
-    }
-
-    if (output->bottom_claw_voltage > kMaxVoltage) {
-      output->bottom_claw_voltage = kMaxVoltage;
-    } else if (output->bottom_claw_voltage < -kMaxVoltage) {
-      output->bottom_claw_voltage = -kMaxVoltage;
-    }
-  }
-
-  status->bottom = bottom_absolute_position();
-  status->separation = top_absolute_position() - bottom_absolute_position();
-  status->bottom_velocity = claw_.X_hat(2, 0);
-  status->separation_velocity = claw_.X_hat(3, 0);
-
-  if (goal) {
-    bool bottom_done =
-        ::std::abs(bottom_absolute_position() - goal->bottom_angle) < 0.020;
-    bool bottom_velocity_done = ::std::abs(status->bottom_velocity) < 0.2;
-    bool separation_done =
-        ::std::abs((top_absolute_position() - bottom_absolute_position()) -
-                   goal->separation_angle) < 0.020;
-    bool separation_done_with_ball =
-        ::std::abs((top_absolute_position() - bottom_absolute_position()) -
-                   goal->separation_angle) < 0.06;
-    status->done = is_ready() && separation_done && bottom_done && bottom_velocity_done;
-    status->done_with_ball =
-        is_ready() && separation_done_with_ball && bottom_done && bottom_velocity_done;
-  } else {
-    status->done = status->done_with_ball = false;
-  }
-
-  status->zeroed = is_ready();
-  status->zeroed_for_auto =
-      (top_claw_.zeroing_state() == ZeroedStateFeedbackLoop::CALIBRATED ||
-       top_claw_.zeroing_state() ==
-           ZeroedStateFeedbackLoop::DISABLED_CALIBRATION) &&
-      (bottom_claw_.zeroing_state() == ZeroedStateFeedbackLoop::CALIBRATED ||
-       bottom_claw_.zeroing_state() ==
-           ZeroedStateFeedbackLoop::DISABLED_CALIBRATION);
-
-  was_enabled_ = enabled;
-}
-
-}  // namespace control_loops
-}  // namespace frc971
-
diff --git a/frc971/control_loops/claw/claw.gyp b/frc971/control_loops/claw/claw.gyp
deleted file mode 100644
index 58a2d2e..0000000
--- a/frc971/control_loops/claw/claw.gyp
+++ /dev/null
@@ -1,84 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'claw_loop',
-      'type': 'static_library',
-      'sources': ['claw.q'],
-      'variables': {
-        'header_path': 'frc971/control_loops/claw',
-      },
-      'dependencies': [
-        '<(AOS)/common/controls/controls.gyp:control_loop_queues',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:queues',
-      ],
-      'export_dependent_settings': [
-        '<(AOS)/common/controls/controls.gyp:control_loop_queues',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:queues',
-      ],
-      'includes': ['../../../aos/build/queues.gypi'],
-    },
-    {
-      'target_name': 'claw_lib',
-      'type': 'static_library',
-      'sources': [
-        'claw.cc',
-        'claw_motor_plant.cc',
-      ],
-      'dependencies': [
-        'claw_loop',
-        '<(AOS)/common/controls/controls.gyp:control_loop',
-        '<(DEPTH)/frc971/frc971.gyp:constants',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop',
-        '<(AOS)/common/controls/controls.gyp:polytope',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:coerce_goal',
-        '<(AOS)/common/logging/logging.gyp:queue_logging',
-        '<(AOS)/common/logging/logging.gyp:matrix_logging',
-      ],
-      'export_dependent_settings': [
-        'claw_loop',
-        '<(AOS)/common/controls/controls.gyp:control_loop',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop',
-        '<(AOS)/common/controls/controls.gyp:polytope',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:coerce_goal',
-      ],
-    },
-    {
-      'target_name': 'claw_lib_test',
-      'type': 'executable',
-      'sources': [
-        'claw_lib_test.cc',
-      ],
-      'dependencies': [
-        '<(EXTERNALS):gtest',
-        'claw_loop',
-        'claw_lib',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop',
-        '<(AOS)/common/controls/controls.gyp:control_loop_test',
-      ],
-    },
-    {
-      'target_name': 'claw_calibration',
-      'type': 'executable',
-      'sources': [
-        'claw_calibration.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        'claw_loop',
-        '<(AOS)/common/controls/controls.gyp:control_loop',
-        '<(DEPTH)/frc971/frc971.gyp:constants',
-      ],
-    },
-    {
-      'target_name': 'claw',
-      'type': 'executable',
-      'sources': [
-        'claw_main.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        'claw_lib',
-      ],
-    },
-  ],
-}
diff --git a/frc971/control_loops/claw/claw.h b/frc971/control_loops/claw/claw.h
deleted file mode 100644
index 175657c..0000000
--- a/frc971/control_loops/claw/claw.h
+++ /dev/null
@@ -1,268 +0,0 @@
-#ifndef FRC971_CONTROL_LOOPS_CLAW_CLAW_H_
-#define FRC971_CONTROL_LOOPS_CLAW_CLAW_H_
-
-#include <memory>
-
-#include "aos/common/controls/control_loop.h"
-#include "aos/common/controls/polytope.h"
-#include "frc971/constants.h"
-#include "frc971/control_loops/state_feedback_loop.h"
-#include "frc971/control_loops/coerce_goal.h"
-#include "frc971/control_loops/claw/claw.q.h"
-#include "frc971/control_loops/claw/claw_motor_plant.h"
-#include "frc971/control_loops/hall_effect_tracker.h"
-
-namespace frc971 {
-namespace control_loops {
-namespace testing {
-class WindupClawTest;
-};
-
-// Note: Everything in this file assumes that there is a 1 cycle delay between
-// power being requested and it showing up at the motor.  It assumes that
-// X_hat(2, 1) is the voltage being applied as well.  It will go unstable if
-// that isn't true.
-
-class ClawLimitedLoop : public StateFeedbackLoop<4, 2, 2> {
- public:
-  ClawLimitedLoop(StateFeedbackLoop<4, 2, 2> &&loop);
-  virtual void CapU();
-
-  void set_is_zeroing(bool is_zeroing) { is_zeroing_ = is_zeroing; }
-  void set_positions_known(bool top_known, bool bottom_known) {
-    top_known_ = top_known;
-    bottom_known_ = bottom_known;
-  }
-
-  void ChangeTopOffset(double doffset);
-  void ChangeBottomOffset(double doffset);
-
-  double uncapped_average_voltage() const { return uncapped_average_voltage_; }
-
- private:
-  double uncapped_average_voltage_;
-  bool is_zeroing_;
-
-  bool top_known_ = false, bottom_known_ = false;
-
-  const ::aos::controls::HPolytope<2> U_Poly_, U_Poly_zeroing_;
-};
-
-class ClawMotor;
-
-// This class implements the CapU function correctly given all the extra
-// information that we know about from the wrist motor.
-// It does not have any zeroing logic in it, only logic to deal with a delta U
-// controller.
-class ZeroedStateFeedbackLoop {
- public:
-  ZeroedStateFeedbackLoop(const char *name, ClawMotor *motor);
-
-  const static int kZeroingMaxVoltage = 5;
-
-  enum JointZeroingState {
-    // We don't know where the joint is at all.
-    UNKNOWN_POSITION,
-    // We have an approximate position for where the claw is using.
-    APPROXIMATE_CALIBRATION,
-    // We observed the calibration edge while disabled. This is good enough for
-    // autonomous mode.
-    DISABLED_CALIBRATION,
-    // Ready for use during teleop.
-    CALIBRATED
-  };
-
-  void set_zeroing_state(JointZeroingState zeroing_state) {
-    zeroing_state_ = zeroing_state;
-  }
-  JointZeroingState zeroing_state() const { return zeroing_state_; }
-
-  void SetPositionValues(const HalfClawPosition &claw);
-
-  void Reset(const HalfClawPosition &claw);
-
-  double absolute_position() const { return encoder() + offset(); }
-
-  const HallEffectTracker &front() const { return front_; }
-  const HallEffectTracker &calibration() const { return calibration_; }
-  const HallEffectTracker &back() const { return back_; }
-
-  bool any_hall_effect_changed() const {
-    return front().either_count_changed() ||
-           calibration().either_count_changed() ||
-           back().either_count_changed();
-  }
-  bool front_or_back_triggered() const {
-    return front().value() || back().value();
-  }
-  bool any_triggered() const {
-    return calibration().value() || front().value() || back().value();
-  }
-
-  double encoder() const { return encoder_; }
-  double last_encoder() const { return last_encoder_; }
-
-  double offset() const { return offset_; }
-
-  // Returns true if an edge was detected in the last cycle and then sets the
-  // edge_position to the absolute position of the edge.
-  bool GetPositionOfEdge(const constants::Values::Claws::Claw &claw,
-                         double *edge_encoder, double *edge_angle);
-
-  bool SawFilteredPosedge(const HallEffectTracker &this_sensor,
-                          const HallEffectTracker &sensorA,
-                          const HallEffectTracker &sensorB);
-
-  bool SawFilteredNegedge(const HallEffectTracker &this_sensor,
-                          const HallEffectTracker &sensorA,
-                          const HallEffectTracker &sensorB);
-
-#undef COUNT_SETTER_GETTER
-
- protected:
-  // The accumulated voltage to apply to the motor.
-  double offset_;
-  const char *name_;
-
-  ClawMotor *motor_;
-
-  HallEffectTracker front_, calibration_, back_;
-
-  JointZeroingState zeroing_state_;
-  double posedge_value_;
-  double negedge_value_;
-  double min_hall_effect_on_angle_;
-  double max_hall_effect_on_angle_;
-  double min_hall_effect_off_angle_;
-  double max_hall_effect_off_angle_;
-  double encoder_;
-  double last_encoder_;
-  double last_on_encoder_;
-  double last_off_encoder_;
-  bool any_triggered_last_;
-
-  const HallEffectTracker* posedge_filter_ = nullptr;
-  const HallEffectTracker* negedge_filter_ = nullptr;
-
- private:
-  // Does the edges of 1 sensor for GetPositionOfEdge.
-  bool DoGetPositionOfEdge(const constants::Values::Claws::AnglePair &angles,
-                           double *edge_encoder, double *edge_angle,
-                           const HallEffectTracker &sensor,
-                           const HallEffectTracker &sensorA,
-                           const HallEffectTracker &sensorB,
-                           const char *hall_effect_name);
-};
-
-class TopZeroedStateFeedbackLoop : public ZeroedStateFeedbackLoop {
- public:
-  TopZeroedStateFeedbackLoop(ClawMotor *motor)
-      : ZeroedStateFeedbackLoop("top", motor) {}
-  // Sets the calibration offset given the absolute angle and the corrisponding
-  // encoder value.
-  void SetCalibration(double edge_encoder, double edge_angle);
-
-  bool SetCalibrationOnEdge(const constants::Values::Claws::Claw &claw_values,
-                            JointZeroingState zeroing_state);
-  double ComputeCalibrationChange(double edge_encoder, double edge_angle);
-  void HandleCalibrationError(
-      const constants::Values::Claws::Claw &claw_values);
-};
-
-class BottomZeroedStateFeedbackLoop : public ZeroedStateFeedbackLoop {
- public:
-  BottomZeroedStateFeedbackLoop(ClawMotor *motor)
-      : ZeroedStateFeedbackLoop("bottom", motor) {}
-  // Sets the calibration offset given the absolute angle and the corrisponding
-  // encoder value.
-  void SetCalibration(double edge_encoder, double edge_angle);
-
-  bool SetCalibrationOnEdge(const constants::Values::Claws::Claw &claw_values,
-                            JointZeroingState zeroing_state);
-  double ComputeCalibrationChange(double edge_encoder, double edge_angle);
-  void HandleCalibrationError(
-      const constants::Values::Claws::Claw &claw_values);
-};
-
-class ClawMotor : public aos::controls::ControlLoop<
-    control_loops::ClawGroup, false> {
- public:
-  explicit ClawMotor(control_loops::ClawGroup *my_claw =
-                         &control_loops::claw_queue_group);
-
-  // True if the state machine is ready.
-  bool capped_goal() const { return capped_goal_; }
-
-  double uncapped_average_voltage() const {
-    return claw_.uncapped_average_voltage();
-  }
-
-  // True if the claw is zeroing.
-  bool is_zeroing() const;
-
-  // True if the state machine is ready.
-  bool is_ready() const;
-
-  void ChangeTopOffset(double doffset);
-  void ChangeBottomOffset(double doffset);
-
-  enum CalibrationMode {
-    READY,
-    PREP_FINE_TUNE_TOP,
-    FINE_TUNE_TOP,
-    PREP_FINE_TUNE_BOTTOM,
-    FINE_TUNE_BOTTOM,
-    UNKNOWN_LOCATION
-  };
-
-  CalibrationMode mode() const { return mode_; }
-
- protected:
-  virtual void RunIteration(const control_loops::ClawGroup::Goal *goal,
-                            const control_loops::ClawGroup::Position *position,
-                            control_loops::ClawGroup::Output *output,
-                            control_loops::ClawGroup::Status *status);
-
-  double top_absolute_position() const {
-    return claw_.X_hat(1, 0) + claw_.X_hat(0, 0);
-  }
-  double bottom_absolute_position() const { return claw_.X_hat(0, 0); }
-
- private:
-  // Friend the test classes for acces to the internal state.
-  friend class testing::WindupClawTest;
-
-  // The zeroed joint to use.
-  bool has_top_claw_goal_;
-  double top_claw_goal_;
-  TopZeroedStateFeedbackLoop top_claw_;
-
-  bool has_bottom_claw_goal_;
-  double bottom_claw_goal_;
-  BottomZeroedStateFeedbackLoop bottom_claw_;
-
-  // The claw loop.
-  ClawLimitedLoop claw_;
-
-  bool was_enabled_;
-  bool doing_calibration_fine_tune_;
-
-  // The initial separation when disabled.  Used as the safe separation
-  // distance.
-  double initial_separation_;
-
-  bool capped_goal_;
-  CalibrationMode mode_;
-
-  DISALLOW_COPY_AND_ASSIGN(ClawMotor);
-};
-
-// Modifies the bottom and top goal such that they are within the limits and
-// their separation isn't too much or little.
-void LimitClawGoal(double *bottom_goal, double *top_goal,
-                   const frc971::constants::Values &values);
-
-}  // namespace control_loops
-}  // namespace frc971
-
-#endif  // FRC971_CONTROL_LOOPS_CLAW_CLAW_H_
diff --git a/frc971/control_loops/claw/claw.q b/frc971/control_loops/claw/claw.q
deleted file mode 100644
index 860854b..0000000
--- a/frc971/control_loops/claw/claw.q
+++ /dev/null
@@ -1,82 +0,0 @@
-package frc971.control_loops;
-
-import "aos/common/controls/control_loops.q";
-import "frc971/control_loops/control_loops.q";
-
-struct HalfClawPosition {
-  // The current position of this half of the claw.
-  double position;
-
-  // The hall effect sensor at the front limit.
-  HallEffectStruct front;
-  // The hall effect sensor in the middle to use for real calibration.
-  HallEffectStruct calibration;
-  // The hall effect at the back limit.
-  HallEffectStruct back;
-
-  // The encoder value at the last posedge of any of the claw hall effect
-  // sensors (front, calibration, or back).
-  double posedge_value;
-  // The encoder value at the last negedge of any of the claw hall effect
-  // sensors (front, calibration, or back).
-  double negedge_value;
-};
-
-// All angles here are 0 vertical, positive "up" (aka backwards).
-queue_group ClawGroup {
-  implements aos.control_loops.ControlLoop;
-
-  message Goal {
-    // The angle of the bottom claw.
-    double bottom_angle;
-    // How much higher the top claw is.
-    double separation_angle;
-    // top claw intake roller
-    double intake;
-    // bottom claw tusk centering
-    double centering;
-  };
-
-  message Position {
-    // All the top claw information.
-    HalfClawPosition top;
-    // All the bottom claw information.
-    HalfClawPosition bottom;
-  };
-
-  message Output {
-    double intake_voltage;
-    double top_claw_voltage;
-    double bottom_claw_voltage;
-    double tusk_voltage;
-  };
-
-  message Status {
-    // True if zeroed enough for the current period (autonomous or teleop).
-    bool zeroed;
-    // True if zeroed as much as we will force during autonomous.
-    bool zeroed_for_auto;
-    // True if zeroed and within tolerance for separation and bottom angle.
-    bool done;
-    // True if zeroed and within tolerance for separation and bottom angle.
-    // seperation allowance much wider as a ball may be included
-    bool done_with_ball;
-    // Dump the values of the state matrix.
-    double bottom;
-    double bottom_velocity;
-    double separation;
-    double separation_velocity;
-  };
-
-  queue Goal goal;
-  queue Position position;
-  queue Output output;
-  queue Status status;
-};
-
-queue_group ClawGroup claw_queue_group;
-
-struct ClawPositionToLog {
-	double top;
-	double bottom;
-};
diff --git a/frc971/control_loops/claw/claw_calibration.cc b/frc971/control_loops/claw/claw_calibration.cc
deleted file mode 100644
index 94bff15..0000000
--- a/frc971/control_loops/claw/claw_calibration.cc
+++ /dev/null
@@ -1,310 +0,0 @@
-#include "frc971/control_loops/claw/claw.q.h"
-#include "frc971/control_loops/control_loops.q.h"
-
-#include "aos/linux_code/init.h"
-#include "frc971/constants.h"
-
-namespace frc971 {
-
-typedef constants::Values::Claws Claws;
-
-class Sensor {
- public:
-  Sensor(const double start_position,
-         const HallEffectStruct &initial_hall_effect)
-      : start_position_(start_position),
-        last_hall_effect_(initial_hall_effect),
-        last_posedge_count_(initial_hall_effect.posedge_count),
-        last_negedge_count_(initial_hall_effect.negedge_count) {
-    last_on_min_position_ = start_position;
-    last_on_max_position_ = start_position;
-    last_off_min_position_ = start_position;
-    last_off_max_position_ = start_position;
-  }
-
-  bool DoGetPositionOfEdge(
-      const control_loops::HalfClawPosition &claw_position,
-      const HallEffectStruct &hall_effect, Claws::AnglePair *limits) {
-    bool print = false;
-
-    if (hall_effect.posedge_count != last_posedge_count_) {
-      const double avg_off_position = (last_off_min_position_ + last_off_max_position_) / 2.0;
-      if (claw_position.posedge_value < avg_off_position) {
-        printf("Posedge upper current %f posedge %f avg_off %f [%f, %f]\n",
-               claw_position.position, claw_position.posedge_value,
-               avg_off_position, last_off_min_position_,
-               last_off_max_position_);
-        limits->upper_decreasing_angle = claw_position.posedge_value - start_position_;
-      } else {
-        printf("Posedge lower current %f posedge %f avg_off %f [%f, %f]\n",
-               claw_position.position, claw_position.posedge_value,
-               avg_off_position, last_off_min_position_,
-               last_off_max_position_);
-        limits->lower_angle =
-            claw_position.posedge_value - start_position_;
-      }
-      print = true;
-    }
-    if (hall_effect.negedge_count != last_negedge_count_) {
-      const double avg_on_position = (last_on_min_position_ + last_on_max_position_) / 2.0;
-      if (claw_position.negedge_value > avg_on_position) {
-        printf("Negedge upper current %f negedge %f last_on %f [%f, %f]\n",
-               claw_position.position, claw_position.negedge_value,
-               avg_on_position, last_on_min_position_,
-               last_on_max_position_);
-        limits->upper_angle =
-            claw_position.negedge_value - start_position_;
-      } else {
-        printf("Negedge lower current %f negedge %f last_on %f [%f, %f]\n",
-               claw_position.position, claw_position.negedge_value,
-               avg_on_position, last_on_min_position_,
-               last_on_max_position_);
-        limits->lower_decreasing_angle = claw_position.negedge_value - start_position_;
-      }
-      print = true;
-    }
-
-    if (hall_effect.current) {
-      if (!last_hall_effect_.current) {
-        last_on_min_position_ = last_on_max_position_ = claw_position.position;
-      } else {
-        last_on_min_position_ =
-            ::std::min(claw_position.position, last_on_min_position_);
-        last_on_max_position_ =
-            ::std::max(claw_position.position, last_on_max_position_);
-      }
-    } else {
-      if (last_hall_effect_.current) {
-        last_off_min_position_ = last_off_max_position_ = claw_position.position;
-      } else {
-        last_off_min_position_ =
-            ::std::min(claw_position.position, last_off_min_position_);
-        last_off_max_position_ =
-            ::std::max(claw_position.position, last_off_max_position_);
-      }
-    }
-
-    last_hall_effect_ = hall_effect;
-    last_posedge_count_ = hall_effect.posedge_count;
-    last_negedge_count_ = hall_effect.negedge_count;
-
-    return print;
-  }
-
- private:
-  const double start_position_;
-  HallEffectStruct last_hall_effect_;
-  int32_t last_posedge_count_;
-  int32_t last_negedge_count_;
-  double last_on_min_position_;
-  double last_off_min_position_;
-  double last_on_max_position_;
-  double last_off_max_position_;
-};
-
-class ClawSensors {
- public:
-  ClawSensors(const double start_position,
-              const control_loops::HalfClawPosition &initial_claw_position)
-      : start_position_(start_position),
-        front_(start_position, initial_claw_position.front),
-        calibration_(start_position, initial_claw_position.calibration),
-        back_(start_position, initial_claw_position.back) {}
-
-  bool GetPositionOfEdge(const control_loops::HalfClawPosition &claw_position,
-                         Claws::Claw *claw) {
-
-    bool print = false;
-    if (front_.DoGetPositionOfEdge(claw_position,
-                                   claw_position.front, &claw->front)) {
-      print = true;
-    } else if (calibration_.DoGetPositionOfEdge(claw_position,
-                                                claw_position.calibration,
-                                                &claw->calibration)) {
-      print = true;
-    } else if (back_.DoGetPositionOfEdge(claw_position,
-                                         claw_position.back, &claw->back)) {
-      print = true;
-    }
-
-    double position = claw_position.position - start_position_;
-
-    if (position > claw->upper_limit) {
-      claw->upper_hard_limit = claw->upper_limit = position;
-      print = true;
-    }
-    if (position < claw->lower_limit) {
-      claw->lower_hard_limit = claw->lower_limit = position;
-      print = true;
-    }
-    return print;
-  }
-
- private:
-  const double start_position_;
-  Sensor front_;
-  Sensor calibration_;
-  Sensor back_;
-};
-
-int Main() {
-  control_loops::claw_queue_group.position.FetchNextBlocking();
-
-  const double top_start_position =
-      control_loops::claw_queue_group.position->top.position;
-  const double bottom_start_position =
-      control_loops::claw_queue_group.position->bottom.position;
-
-  ClawSensors top(top_start_position,
-                  control_loops::claw_queue_group.position->top);
-  ClawSensors bottom(bottom_start_position,
-                     control_loops::claw_queue_group.position->bottom);
-
-  Claws limits;
-
-  limits.claw_zeroing_off_speed = 0.5;
-  limits.claw_zeroing_speed = 0.1;
-  limits.claw_zeroing_separation = 0.1;
-
-  // claw separation that would be considered a collision
-  limits.claw_min_separation = 0.0;
-  limits.claw_max_separation = 0.0;
-
-  // We should never get closer/farther than these.
-  limits.soft_min_separation = 0.0;
-  limits.soft_max_separation = 0.0;
-
-  limits.upper_claw.lower_hard_limit = 0.0;
-  limits.upper_claw.upper_hard_limit = 0.0;
-  limits.upper_claw.lower_limit = 0.0;
-  limits.upper_claw.upper_limit = 0.0;
-  limits.upper_claw.front.lower_angle = 0.0;
-  limits.upper_claw.front.upper_angle = 0.0;
-  limits.upper_claw.front.lower_decreasing_angle = 0.0;
-  limits.upper_claw.front.upper_decreasing_angle = 0.0;
-  limits.upper_claw.calibration.lower_angle = 0.0;
-  limits.upper_claw.calibration.upper_angle = 0.0;
-  limits.upper_claw.calibration.lower_decreasing_angle = 0.0;
-  limits.upper_claw.calibration.upper_decreasing_angle = 0.0;
-  limits.upper_claw.back.lower_angle = 0.0;
-  limits.upper_claw.back.upper_angle = 0.0;
-  limits.upper_claw.back.lower_decreasing_angle = 0.0;
-  limits.upper_claw.back.upper_decreasing_angle = 0.0;
-
-  limits.lower_claw.lower_hard_limit = 0.0;
-  limits.lower_claw.upper_hard_limit = 0.0;
-  limits.lower_claw.lower_limit = 0.0;
-  limits.lower_claw.upper_limit = 0.0;
-  limits.lower_claw.front.lower_angle = 0.0;
-  limits.lower_claw.front.upper_angle = 0.0;
-  limits.lower_claw.front.lower_decreasing_angle = 0.0;
-  limits.lower_claw.front.upper_decreasing_angle = 0.0;
-  limits.lower_claw.calibration.lower_angle = 0.0;
-  limits.lower_claw.calibration.upper_angle = 0.0;
-  limits.lower_claw.calibration.lower_decreasing_angle = 0.0;
-  limits.lower_claw.calibration.upper_decreasing_angle = 0.0;
-  limits.lower_claw.back.lower_angle = 0.0;
-  limits.lower_claw.back.upper_angle = 0.0;
-  limits.lower_claw.back.lower_decreasing_angle = 0.0;
-  limits.lower_claw.back.upper_decreasing_angle = 0.0;
-
-  limits.claw_unimportant_epsilon = 0.01;
-  limits.start_fine_tune_pos = -0.2;
-  limits.max_zeroing_voltage = 4.0;
-
-  control_loops::ClawGroup::Position last_position =
-      *control_loops::claw_queue_group.position;
-
-  while (true) {
-    control_loops::claw_queue_group.position.FetchNextBlocking();
-    bool print = false;
-    if (top.GetPositionOfEdge(control_loops::claw_queue_group.position->top,
-                              &limits.upper_claw)) {
-      print = true;
-      printf("Got an edge on the upper claw\n");
-    }
-    if (bottom.GetPositionOfEdge(
-            control_loops::claw_queue_group.position->bottom,
-            &limits.lower_claw)) {
-      print = true;
-      printf("Got an edge on the lower claw\n");
-    }
-    const double top_position =
-        control_loops::claw_queue_group.position->top.position -
-        top_start_position;
-    const double bottom_position =
-        control_loops::claw_queue_group.position->bottom.position -
-        bottom_start_position;
-    const double separation = top_position - bottom_position;
-    if (separation > limits.claw_max_separation) {
-      limits.soft_max_separation = limits.claw_max_separation = separation;
-      print = true;
-    }
-    if (separation < limits.claw_min_separation) {
-      limits.soft_min_separation = limits.claw_min_separation = separation;
-      print = true;
-    }
-
-    if (print) {
-      printf("{%f,\n", limits.claw_zeroing_off_speed);
-      printf("%f,\n", limits.claw_zeroing_speed);
-      printf("%f,\n", limits.claw_zeroing_separation);
-      printf("%f,\n", limits.claw_min_separation);
-      printf("%f,\n", limits.claw_max_separation);
-      printf("%f,\n", limits.soft_min_separation);
-      printf("%f,\n", limits.soft_max_separation);
-      printf(
-          "{%f, %f, %f, %f, {%f, %f, %f, %f}, {%f, %f, %f, %f}, {%f, %f, %f, "
-          "%f}},\n",
-          limits.upper_claw.lower_hard_limit,
-          limits.upper_claw.upper_hard_limit, limits.upper_claw.lower_limit,
-          limits.upper_claw.upper_limit, limits.upper_claw.front.lower_angle,
-          limits.upper_claw.front.upper_angle,
-          limits.upper_claw.front.lower_decreasing_angle,
-          limits.upper_claw.front.upper_decreasing_angle,
-          limits.upper_claw.calibration.lower_angle,
-          limits.upper_claw.calibration.upper_angle,
-          limits.upper_claw.calibration.lower_decreasing_angle,
-          limits.upper_claw.calibration.upper_decreasing_angle,
-          limits.upper_claw.back.lower_angle,
-          limits.upper_claw.back.upper_angle,
-          limits.upper_claw.back.lower_decreasing_angle,
-          limits.upper_claw.back.upper_decreasing_angle);
-
-      printf(
-          "{%f, %f, %f, %f, {%f, %f, %f, %f}, {%f, %f, %f, %f}, {%f, %f, %f, "
-          "%f}},\n",
-          limits.lower_claw.lower_hard_limit,
-          limits.lower_claw.upper_hard_limit, limits.lower_claw.lower_limit,
-          limits.lower_claw.upper_limit, limits.lower_claw.front.lower_angle,
-          limits.lower_claw.front.upper_angle,
-          limits.lower_claw.front.lower_decreasing_angle,
-          limits.lower_claw.front.upper_decreasing_angle,
-          limits.lower_claw.calibration.lower_angle,
-          limits.lower_claw.calibration.upper_angle,
-          limits.lower_claw.calibration.lower_decreasing_angle,
-          limits.lower_claw.calibration.upper_decreasing_angle,
-          limits.lower_claw.back.lower_angle,
-          limits.lower_claw.back.upper_angle,
-          limits.lower_claw.back.lower_decreasing_angle,
-          limits.lower_claw.back.upper_decreasing_angle);
-      printf("%f,  // claw_unimportant_epsilon\n",
-             limits.claw_unimportant_epsilon);
-      printf("%f,   // start_fine_tune_pos\n", limits.start_fine_tune_pos);
-      printf("%f,\n", limits.max_zeroing_voltage);
-      printf("}\n");
-    }
-
-    last_position = *control_loops::claw_queue_group.position;
-  }
-  return 0;
-}
-
-}  // namespace frc971
-
-int main() {
-  ::aos::Init();
-  int returnvalue = ::frc971::Main();
-  ::aos::Cleanup();
-  return returnvalue;
-}
diff --git a/frc971/control_loops/claw/claw_lib_test.cc b/frc971/control_loops/claw/claw_lib_test.cc
deleted file mode 100644
index cfdcd11..0000000
--- a/frc971/control_loops/claw/claw_lib_test.cc
+++ /dev/null
@@ -1,634 +0,0 @@
-#include <unistd.h>
-
-#include <memory>
-
-#include "aos/common/network/team_number.h"
-#include "aos/common/controls/control_loop_test.h"
-
-#include "frc971/control_loops/claw/claw.q.h"
-#include "frc971/control_loops/claw/claw.h"
-#include "frc971/constants.h"
-#include "frc971/control_loops/claw/claw_motor_plant.h"
-
-#include "gtest/gtest.h"
-
-
-namespace frc971 {
-namespace control_loops {
-namespace testing {
-
-typedef enum {
-	TOP_CLAW = 0,
-	BOTTOM_CLAW,
-
-	CLAW_COUNT
-} ClawType;
-
-class TeamNumberEnvironment : public ::testing::Environment {
- public:
-  // Override this to define how to set up the environment.
-  virtual void SetUp() { aos::network::OverrideTeamNumber(1); }
-};
-
-::testing::Environment* const team_number_env =
-    ::testing::AddGlobalTestEnvironment(new TeamNumberEnvironment);
-
-// Class which simulates the wrist and sends out queue messages containing the
-// position.
-class ClawMotorSimulation {
- public:
-  // Constructs a motor simulation.  initial_position is the inital angle of the
-  // wrist, which will be treated as 0 by the encoder.
-  ClawMotorSimulation(double initial_top_position,
-                      double initial_bottom_position)
-      : claw_plant_(new StateFeedbackPlant<4, 2, 2>(MakeClawPlant())),
-        claw_queue_group(".frc971.control_loops.claw_queue_group", 0x9f1a99dd,
-                         ".frc971.control_loops.claw_queue_group.goal",
-                         ".frc971.control_loops.claw_queue_group.position",
-                         ".frc971.control_loops.claw_queue_group.output",
-                         ".frc971.control_loops.claw_queue_group.status") {
-    Reinitialize(initial_top_position, initial_bottom_position);
-  }
-
-  void Reinitialize(double initial_top_position,
-                    double initial_bottom_position) {
-    LOG(INFO, "Reinitializing to {top: %f, bottom: %f}\n", initial_top_position,
-        initial_bottom_position);
-    claw_plant_->mutable_X(0, 0) = initial_bottom_position;
-    claw_plant_->mutable_X(1, 0) = initial_top_position - initial_bottom_position;
-    claw_plant_->mutable_X(2, 0) = 0.0;
-    claw_plant_->mutable_X(3, 0) = 0.0;
-    claw_plant_->mutable_Y() = claw_plant_->C() * claw_plant_->X();
-
-    ReinitializePartial(TOP_CLAW, initial_top_position);
-    ReinitializePartial(BOTTOM_CLAW, initial_bottom_position);
-    last_position_.Zero();
-    SetPhysicalSensors(&last_position_);
-  }
-
-  // Returns the absolute angle of the wrist.
-  double GetAbsolutePosition(ClawType type) const {
-    if (type == TOP_CLAW) {
-      return claw_plant_->Y(1, 0);
-    } else {
-      return claw_plant_->Y(0, 0);
-    }
-  }
-
-  // Returns the adjusted angle of the wrist.
-  double GetPosition(ClawType type) const {
-    return GetAbsolutePosition(type) - initial_position_[type];
-  }
-
-  // Makes sure pos is inside range (exclusive)
-  bool CheckRange(double pos, const constants::Values::Claws::AnglePair &pair) {
-    // Note: If the >= and <= signs are used, then the there exists a case
-    // where the wrist starts precisely on the edge and because initial
-    // position and the *edge_value_ are the same, then the comparison
-    // in ZeroedStateFeedbackLoop::DoGetPositionOfEdge will return that
-    // the lower, rather than upper, edge of the hall effect was passed.
-    return (pos > pair.lower_angle && pos < pair.upper_angle);
-  }
-
-  void SetHallEffect(double pos,
-                     const constants::Values::Claws::AnglePair &pair,
-                     HallEffectStruct *hall_effect) {
-    hall_effect->current = CheckRange(pos, pair);
-  }
-
-  void SetClawHallEffects(double pos,
-                          const constants::Values::Claws::Claw &claw,
-                          control_loops::HalfClawPosition *half_claw) {
-    SetHallEffect(pos, claw.front, &half_claw->front);
-    SetHallEffect(pos, claw.calibration, &half_claw->calibration);
-    SetHallEffect(pos, claw.back, &half_claw->back);
-  }
-
-  // Sets the values of the physical sensors that can be directly observed
-  // (encoder, hall effect).
-  void SetPhysicalSensors(control_loops::ClawGroup::Position *position) {
-    position->top.position = GetPosition(TOP_CLAW);
-    position->bottom.position = GetPosition(BOTTOM_CLAW);
-
-    double pos[2] = {GetAbsolutePosition(TOP_CLAW),
-                     GetAbsolutePosition(BOTTOM_CLAW)};
-    LOG(DEBUG, "Physical claws are at {top: %f, bottom: %f}\n", pos[TOP_CLAW],
-        pos[BOTTOM_CLAW]);
-
-    const frc971::constants::Values& values = constants::GetValues();
-
-    // Signal that each hall effect sensor has been triggered if it is within
-    // the correct range.
-    SetClawHallEffects(pos[TOP_CLAW], values.claw.upper_claw, &position->top);
-    SetClawHallEffects(pos[BOTTOM_CLAW], values.claw.lower_claw,
-                       &position->bottom);
-  }
-
-  void UpdateHallEffect(double angle,
-                        double last_angle,
-                        double initial_position,
-                        double *posedge_value,
-                        double *negedge_value,
-                        HallEffectStruct *position,
-                        const HallEffectStruct &last_position,
-                        const constants::Values::Claws::AnglePair &pair,
-                        const char *claw_name, const char *hall_effect_name) {
-    if (position->current && !last_position.current) {
-      ++position->posedge_count;
-
-      if (last_angle < pair.lower_angle) {
-        LOG(DEBUG, "%s: Positive lower edge on %s hall effect\n", claw_name,
-            hall_effect_name);
-        *posedge_value = pair.lower_angle - initial_position;
-      } else {
-        LOG(DEBUG, "%s: Positive upper edge on %s hall effect\n", claw_name,
-            hall_effect_name);
-        *posedge_value = pair.upper_angle - initial_position;
-      }
-    }
-    if (!position->current && last_position.current) {
-      ++position->negedge_count;
-
-      if (angle < pair.lower_angle) {
-        LOG(DEBUG, "%s: Negative lower edge on %s hall effect\n", claw_name,
-            hall_effect_name);
-        *negedge_value = pair.lower_angle - initial_position;
-      } else {
-        LOG(DEBUG, "%s: Negative upper edge on %s hall effect\n", claw_name,
-            hall_effect_name);
-        *negedge_value = pair.upper_angle - initial_position;
-      }
-    }
-  }
-
-  void UpdateClawHallEffects(
-      control_loops::HalfClawPosition *position,
-      const control_loops::HalfClawPosition &last_position,
-      const constants::Values::Claws::Claw &claw, double initial_position,
-      const char *claw_name) {
-    UpdateHallEffect(position->position + initial_position,
-                     last_position.position + initial_position,
-                     initial_position, &position->posedge_value,
-                     &position->negedge_value, &position->front,
-                     last_position.front, claw.front, claw_name, "front");
-    UpdateHallEffect(position->position + initial_position,
-                     last_position.position + initial_position,
-                     initial_position, &position->posedge_value,
-                     &position->negedge_value, &position->calibration,
-                     last_position.calibration, claw.calibration, claw_name,
-                     "calibration");
-    UpdateHallEffect(position->position + initial_position,
-                     last_position.position + initial_position,
-                     initial_position, &position->posedge_value,
-                     &position->negedge_value, &position->back,
-                     last_position.back, claw.back, claw_name, "back");
-  }
-
-  // Sends out the position queue messages.
-  void SendPositionMessage() {
-    ::aos::ScopedMessagePtr<control_loops::ClawGroup::Position> position =
-        claw_queue_group.position.MakeMessage();
-
-    // Initialize all the counters to their previous values.
-    *position = last_position_;
-
-    SetPhysicalSensors(position.get());
-
-    const frc971::constants::Values& values = constants::GetValues();
-
-    UpdateClawHallEffects(&position->top, last_position_.top,
-                          values.claw.upper_claw, initial_position_[TOP_CLAW],
-                          "Top");
-    UpdateClawHallEffects(&position->bottom, last_position_.bottom,
-                          values.claw.lower_claw,
-                          initial_position_[BOTTOM_CLAW], "Bottom");
-
-    // Only set calibration if it changed last cycle.  Calibration starts out
-    // with a value of 0.
-    last_position_ = *position;
-    position.Send();
-  }
-
-  // Simulates the claw moving for one timestep.
-  void Simulate() {
-    const frc971::constants::Values& v = constants::GetValues();
-    EXPECT_TRUE(claw_queue_group.output.FetchLatest());
-
-    claw_plant_->mutable_U() << claw_queue_group.output->bottom_claw_voltage,
-        claw_queue_group.output->top_claw_voltage;
-    claw_plant_->Update();
-
-    // Check that the claw is within the limits.
-    EXPECT_GE(v.claw.upper_claw.upper_limit, claw_plant_->Y(0, 0));
-    EXPECT_LE(v.claw.upper_claw.lower_hard_limit, claw_plant_->Y(0, 0));
-
-    EXPECT_GE(v.claw.lower_claw.upper_hard_limit, claw_plant_->Y(1, 0));
-    EXPECT_LE(v.claw.lower_claw.lower_hard_limit, claw_plant_->Y(1, 0));
-
-    EXPECT_LE(claw_plant_->Y(1, 0) - claw_plant_->Y(0, 0),
-              v.claw.claw_max_separation);
-    EXPECT_GE(claw_plant_->Y(1, 0) - claw_plant_->Y(0, 0),
-              v.claw.claw_min_separation);
-  }
-  // The whole claw.
-  ::std::unique_ptr<StateFeedbackPlant<4, 2, 2>> claw_plant_;
-
- private:
-  // Resets the plant so that it starts at initial_position.
-  void ReinitializePartial(ClawType type, double initial_position) {
-    initial_position_[type] = initial_position;
-  }
-
-  ClawGroup claw_queue_group;
-  double initial_position_[CLAW_COUNT];
-
-  control_loops::ClawGroup::Position last_position_;
-};
-
-
-class ClawTest : public ::aos::testing::ControlLoopTest {
- protected:
-  // Create a new instance of the test queue so that it invalidates the queue
-  // that it points to.  Otherwise, we will have a pointer to shared memory that
-  // is no longer valid.
-  ClawGroup claw_queue_group;
-
-  // Create a loop and simulation plant.
-  ClawMotor claw_motor_;
-  ClawMotorSimulation claw_motor_plant_;
-
-  // Minimum amount of acceptable separation between the top and bottom of the
-  // claw.
-  double min_separation_;
-
-  ClawTest()
-      : claw_queue_group(".frc971.control_loops.claw_queue_group", 0x9f1a99dd,
-                         ".frc971.control_loops.claw_queue_group.goal",
-                         ".frc971.control_loops.claw_queue_group.position",
-                         ".frc971.control_loops.claw_queue_group.output",
-                         ".frc971.control_loops.claw_queue_group.status"),
-        claw_motor_(&claw_queue_group),
-        claw_motor_plant_(0.4, 0.2),
-        min_separation_(constants::GetValues().claw.claw_min_separation) {
-  }
-
-  void VerifyNearGoal() {
-    claw_queue_group.goal.FetchLatest();
-    claw_queue_group.position.FetchLatest();
-    double bottom = claw_motor_plant_.GetAbsolutePosition(BOTTOM_CLAW);
-    double separation =
-        claw_motor_plant_.GetAbsolutePosition(TOP_CLAW) - bottom;
-    EXPECT_NEAR(claw_queue_group.goal->bottom_angle, bottom, 1e-4);
-    EXPECT_NEAR(claw_queue_group.goal->separation_angle, separation, 1e-4);
-    EXPECT_LE(min_separation_, separation);
-  }
-};
-
-TEST_F(ClawTest, HandlesNAN) {
-  claw_queue_group.goal.MakeWithBuilder()
-      .bottom_angle(::std::nan(""))
-      .separation_angle(::std::nan(""))
-      .Send();
-  for (int i = 0; i < 500; ++i) {
-    claw_motor_plant_.SendPositionMessage();
-    claw_motor_.Iterate();
-    claw_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-}
-
-// Tests that the wrist zeros correctly and goes to a position.
-TEST_F(ClawTest, ZerosCorrectly) {
-  claw_queue_group.goal.MakeWithBuilder()
-      .bottom_angle(0.1)
-      .separation_angle(0.2)
-      .Send();
-  for (int i = 0; i < 500; ++i) {
-    claw_motor_plant_.SendPositionMessage();
-    claw_motor_.Iterate();
-    claw_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  VerifyNearGoal();
-}
-
-// Tests that the wrist zeros correctly and goes to a position.
-TEST_F(ClawTest, LimitClawGoal) {
-  frc971::constants::Values values;
-  values.claw.claw_min_separation = -2.0;
-  values.claw.claw_max_separation = 1.0;
-  values.claw.soft_min_separation = -2.0;
-  values.claw.soft_max_separation = 1.0;
-  values.claw.upper_claw.lower_limit = -5.0;
-  values.claw.upper_claw.upper_limit = 7.5;
-  values.claw.lower_claw.lower_limit = -5.5;
-  values.claw.lower_claw.upper_limit = 8.0;
-
-  double bottom_goal = 0.0;
-  double top_goal = 0.0;
-
-  LimitClawGoal(&bottom_goal, &top_goal, values);
-  EXPECT_NEAR(0.0, bottom_goal, 1e-4);
-  EXPECT_NEAR(0.0, top_goal, 1e-4);
-
-  bottom_goal = 0.0;
-  top_goal = -4.0;
-
-  LimitClawGoal(&bottom_goal, &top_goal, values);
-  EXPECT_NEAR(-1.0, bottom_goal, 1e-4);
-  EXPECT_NEAR(-3.0, top_goal, 1e-4);
-
-  bottom_goal = 0.0;
-  top_goal = 4.0;
-
-  LimitClawGoal(&bottom_goal, &top_goal, values);
-  EXPECT_NEAR(1.5, bottom_goal, 1e-4);
-  EXPECT_NEAR(2.5, top_goal, 1e-4);
-
-  bottom_goal = -10.0;
-  top_goal = -9.5;
-
-  LimitClawGoal(&bottom_goal, &top_goal, values);
-  EXPECT_NEAR(-5.5, bottom_goal, 1e-4);
-  EXPECT_NEAR(-5.0, top_goal, 1e-4);
-
-  bottom_goal = -20.0;
-  top_goal = -4.0;
-
-  LimitClawGoal(&bottom_goal, &top_goal, values);
-  EXPECT_NEAR(-5.5, bottom_goal, 1e-4);
-  EXPECT_NEAR(-4.5, top_goal, 1e-4);
-
-  bottom_goal = -20.0;
-  top_goal = -4.0;
-
-  LimitClawGoal(&bottom_goal, &top_goal, values);
-  EXPECT_NEAR(-5.5, bottom_goal, 1e-4);
-  EXPECT_NEAR(-4.5, top_goal, 1e-4);
-
-  bottom_goal = -5.0;
-  top_goal = -10.0;
-
-  LimitClawGoal(&bottom_goal, &top_goal, values);
-  EXPECT_NEAR(-3.0, bottom_goal, 1e-4);
-  EXPECT_NEAR(-5.0, top_goal, 1e-4);
-
-  bottom_goal = 10.0;
-  top_goal = 9.0;
-
-  LimitClawGoal(&bottom_goal, &top_goal, values);
-  EXPECT_NEAR(8.0, bottom_goal, 1e-4);
-  EXPECT_NEAR(7.0, top_goal, 1e-4);
-
-  bottom_goal = 8.0;
-  top_goal = 9.0;
-
-  LimitClawGoal(&bottom_goal, &top_goal, values);
-  EXPECT_NEAR(6.5, bottom_goal, 1e-4);
-  EXPECT_NEAR(7.5, top_goal, 1e-4);
-}
-
-
-class ZeroingClawTest
-    : public ClawTest,
-      public ::testing::WithParamInterface< ::std::pair<double, double>> {};
-
-// Tests that the wrist zeros correctly starting on the hall effect sensor.
-TEST_P(ZeroingClawTest, ParameterizedZero) {
-  claw_motor_plant_.Reinitialize(GetParam().first, GetParam().second);
-
-  claw_queue_group.goal.MakeWithBuilder()
-      .bottom_angle(0.1)
-      .separation_angle(0.2)
-      .Send();
-  for (int i = 0; i < 700; ++i) {
-    claw_motor_plant_.SendPositionMessage();
-    claw_motor_.Iterate();
-    claw_motor_plant_.Simulate();
-
-    SimulateTimestep(true);
-  }
-  VerifyNearGoal();
-}
-
-// Tests that missing positions are correctly handled.
-TEST_P(ZeroingClawTest, HandleMissingPosition) {
-  claw_motor_plant_.Reinitialize(GetParam().first, GetParam().second);
-
-  claw_queue_group.goal.MakeWithBuilder()
-      .bottom_angle(0.1)
-      .separation_angle(0.2)
-      .Send();
-  for (int i = 0; i < 700; ++i) {
-    if (i % 23) {
-      claw_motor_plant_.SendPositionMessage();
-    }
-    claw_motor_.Iterate();
-    claw_motor_plant_.Simulate();
-
-    SimulateTimestep(true);
-  }
-  VerifyNearGoal();
-}
-
-INSTANTIATE_TEST_CASE_P(ZeroingClawTest, ZeroingClawTest,
-                        ::testing::Values(::std::make_pair(0.04, 0.02),
-                                          ::std::make_pair(0.2, 0.1),
-                                          ::std::make_pair(0.3, 0.2),
-                                          ::std::make_pair(0.4, 0.3),
-                                          ::std::make_pair(0.5, 0.4),
-                                          ::std::make_pair(0.6, 0.5),
-                                          ::std::make_pair(0.7, 0.6),
-                                          ::std::make_pair(0.8, 0.7),
-                                          ::std::make_pair(0.9, 0.8),
-                                          ::std::make_pair(1.0, 0.9),
-                                          ::std::make_pair(1.1, 1.0),
-                                          ::std::make_pair(1.15, 1.05),
-                                          ::std::make_pair(1.05, 0.95),
-                                          ::std::make_pair(1.2, 1.1),
-                                          ::std::make_pair(1.3, 1.2),
-                                          ::std::make_pair(1.4, 1.3),
-                                          ::std::make_pair(1.5, 1.4),
-                                          ::std::make_pair(1.6, 1.5),
-                                          ::std::make_pair(1.7, 1.6),
-                                          ::std::make_pair(1.8, 1.7),
-                                          ::std::make_pair(2.015, 2.01)
-));
-
-/*
-// Tests that loosing the encoder for a second triggers a re-zero.
-TEST_F(ClawTest, RezeroWithMissingPos) {
-  claw_queue_group.goal.MakeWithBuilder()
-      .bottom_angle(0.1)
-      .separation_angle(0.2)
-      .Send();
-  for (int i = 0; i < 800; ++i) {
-    // After 3 seconds, simulate the encoder going missing.
-    // This should trigger a re-zero.  To make sure it works, change the goal as
-    // well.
-    if (i < 300 || i > 400) {
-      claw_motor_plant_.SendPositionMessage();
-    } else {
-      if (i > 310) {
-        // Should be re-zeroing now.
-        EXPECT_TRUE(claw_motor_.is_uninitialized());
-      }
-      claw_queue_group.goal.MakeWithBuilder()
-          .bottom_angle(0.2)
-          .separation_angle(0.2)
-          .Send();
-    }
-    if (i == 410) {
-      EXPECT_TRUE(claw_motor_.is_zeroing());
-      // TODO(austin): Expose if the top and bototm is zeroing through
-      // functions.
-      // EXPECT_TRUE(bottom_claw_motor_.is_zeroing());
-    }
-
-    claw_motor_.Iterate();
-    claw_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  VerifyNearGoal();
-}
-
-// Tests that disabling while zeroing sends the state machine into the
-// uninitialized state.
-TEST_F(ClawTest, DisableGoesUninitialized) {
-  claw_queue_group.goal.MakeWithBuilder()
-      .bottom_angle(0.1)
-      .separation_angle(0.2)
-      .Send();
-  for (int i = 0; i < 800; ++i) {
-    claw_motor_plant_.SendPositionMessage();
-    // After 0.5 seconds, disable the robot.
-    if (i > 50 && i < 200) {
-      SimulateTimestep(false);
-      if (i > 100) {
-        // Give the loop a couple cycled to get the message and then verify that
-        // it is in the correct state.
-        EXPECT_TRUE(claw_motor_.is_uninitialized());
-        // When disabled, we should be applying 0 power.
-        EXPECT_TRUE(claw_queue_group.output.FetchLatest());
-        EXPECT_EQ(0, claw_queue_group.output->top_claw_voltage);
-        EXPECT_EQ(0, claw_queue_group.output->bottom_claw_voltage);
-      }
-    } else {
-      SimulateTimestep(true);
-    }
-    if (i == 202) {
-      // Verify that we are zeroing after the bot gets enabled again.
-      EXPECT_TRUE(wrist_motor_.is_zeroing());
-      // TODO(austin): Expose if the top and bottom is zeroing through
-      // functions.
-    }
-
-    claw_motor_.Iterate();
-    claw_motor_plant_.Simulate();
-  }
-  VerifyNearGoal();
-}
-*/
-
-class WindupClawTest : public ClawTest {
- protected:
-  void TestWindup(ClawMotor::CalibrationMode mode, int start_time, double offset) {
-    int capped_count = 0;
-    const frc971::constants::Values& values = constants::GetValues();
-    bool kicked = false;
-    bool measured = false;
-    for (int i = 0; i < 700; ++i) {
-      claw_motor_plant_.SendPositionMessage();
-      if (i >= start_time && mode == claw_motor_.mode() && !kicked) {
-        EXPECT_EQ(mode, claw_motor_.mode());
-        // Move the zeroing position far away and verify that it gets moved
-        // back.
-        claw_motor_.top_claw_goal_ += offset;
-        claw_motor_.bottom_claw_goal_ += offset;
-        kicked = true;
-      } else {
-        if (kicked && !measured) {
-          measured = true;
-          EXPECT_EQ(mode, claw_motor_.mode());
-
-          Eigen::Matrix<double, 4, 1> R;
-          R << claw_motor_.bottom_claw_goal_,
-              claw_motor_.top_claw_goal_ - claw_motor_.bottom_claw_goal_, 0.0,
-              0.0;
-          Eigen::Matrix<double, 2, 1> uncapped_voltage =
-              claw_motor_.claw_.K() * (R - claw_motor_.claw_.X_hat());
-          // Use a factor of 1.8 because so long as it isn't actually running
-          // away, the CapU function will deal with getting the actual output
-          // down.
-          EXPECT_LT(::std::abs(uncapped_voltage(0, 0)),
-                    values.claw.max_zeroing_voltage * 1.8);
-          EXPECT_LT(::std::abs(uncapped_voltage(1, 0)),
-                    values.claw.max_zeroing_voltage * 1.8);
-        }
-      }
-      if (claw_motor_.mode() == mode) {
-        if (claw_motor_.capped_goal()) {
-          ++capped_count;
-          // The cycle after we kick the zero position is the only cycle during
-          // which we should expect to see a high uncapped power during zeroing.
-          ASSERT_LT(values.claw.max_zeroing_voltage,
-                    ::std::abs(claw_motor_.uncapped_average_voltage()));
-        } else {
-          ASSERT_GT(values.claw.max_zeroing_voltage,
-                    ::std::abs(claw_motor_.uncapped_average_voltage()));
-        }
-      }
-
-      claw_motor_.Iterate();
-      claw_motor_plant_.Simulate();
-      SimulateTimestep(true);
-    }
-    EXPECT_TRUE(kicked);
-    EXPECT_TRUE(measured);
-    EXPECT_LE(1, capped_count);
-    EXPECT_GE(3, capped_count);
-  }
-};
-
-// Tests that the wrist can't get too far away from the zeroing position if the
-// zeroing position is saturating the goal.
-TEST_F(WindupClawTest, NoWindupPositive) {
-  claw_queue_group.goal.MakeWithBuilder()
-      .bottom_angle(0.1)
-      .separation_angle(0.2)
-      .Send();
-
-  TestWindup(ClawMotor::UNKNOWN_LOCATION, 100, 971.0);
-
-  VerifyNearGoal();
-}
-
-// Tests that the wrist can't get too far away from the zeroing position if the
-// zeroing position is saturating the goal.
-TEST_F(WindupClawTest, NoWindupNegative) {
-  claw_queue_group.goal.MakeWithBuilder()
-      .bottom_angle(0.1)
-      .separation_angle(0.2)
-      .Send();
-
-  TestWindup(ClawMotor::UNKNOWN_LOCATION, 100, -971.0);
-
-  VerifyNearGoal();
-}
-
-// Tests that the wrist can't get too far away from the zeroing position if the
-// zeroing position is saturating the goal.
-TEST_F(WindupClawTest, NoWindupNegativeFineTune) {
-  claw_queue_group.goal.MakeWithBuilder()
-      .bottom_angle(0.1)
-      .separation_angle(0.2)
-      .Send();
-
-  TestWindup(ClawMotor::FINE_TUNE_BOTTOM, 200, -971.0);
-
-  VerifyNearGoal();
-}
-
-}  // namespace testing
-}  // namespace control_loops
-}  // namespace frc971
diff --git a/frc971/control_loops/claw/claw_main.cc b/frc971/control_loops/claw/claw_main.cc
deleted file mode 100644
index 3b7c181..0000000
--- a/frc971/control_loops/claw/claw_main.cc
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "frc971/control_loops/claw/claw.h"
-
-#include "aos/linux_code/init.h"
-
-int main() {
-  ::aos::Init();
-  frc971::control_loops::ClawMotor claw;
-  claw.Run();
-  ::aos::Cleanup();
-  return 0;
-}
diff --git a/frc971/control_loops/claw/claw_motor_plant.cc b/frc971/control_loops/claw/claw_motor_plant.cc
deleted file mode 100644
index 28151ad..0000000
--- a/frc971/control_loops/claw/claw_motor_plant.cc
+++ /dev/null
@@ -1,47 +0,0 @@
-#include "frc971/control_loops/claw/claw_motor_plant.h"
-
-#include <vector>
-
-#include "frc971/control_loops/state_feedback_loop.h"
-
-namespace frc971 {
-namespace control_loops {
-
-StateFeedbackPlantCoefficients<4, 2, 2> MakeClawPlantCoefficients() {
-  Eigen::Matrix<double, 4, 4> A;
-  A << 1.0, 0.0, 0.00909331035298, 0.0, 0.0, 1.0, -6.04514323962e-05, 0.00903285892058, 0.0, 0.0, 0.824315642255, 0.0, 0.0, 0.0, -0.0112975266368, 0.813018115618;
-  Eigen::Matrix<double, 4, 2> B;
-  B << 0.000352527133889, 0.0, -0.000352527133889, 0.000376031064118, 0.0683072794628, 0.0, -0.0683072794628, 0.0726998350615;
-  Eigen::Matrix<double, 2, 4> C;
-  C << 1, 0, 0, 0, 1, 1, 0, 0;
-  Eigen::Matrix<double, 2, 2> D;
-  D << 0, 0, 0, 0;
-  Eigen::Matrix<double, 2, 1> U_max;
-  U_max << 12.0, 12.0;
-  Eigen::Matrix<double, 2, 1> U_min;
-  U_min << -12.0, -12.0;
-  return StateFeedbackPlantCoefficients<4, 2, 2>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackController<4, 2, 2> MakeClawController() {
-  Eigen::Matrix<double, 4, 2> L;
-  L << 1.72431564225, 1.53329341668e-19, -1.72431564225, 1.71301811562, 65.9456997026, -0, -65.9456997026, 64.4642687194;
-  Eigen::Matrix<double, 2, 4> K;
-  K << 106.138028875, 0.0, 4.20012492658, 0.0, 99.5038407367, 99.7251230882, 3.77683310096, 3.78980738032;
-  return StateFeedbackController<4, 2, 2>(L, K, MakeClawPlantCoefficients());
-}
-
-StateFeedbackPlant<4, 2, 2> MakeClawPlant() {
-  ::std::vector<StateFeedbackPlantCoefficients<4, 2, 2> *> plants(1);
-  plants[0] = new StateFeedbackPlantCoefficients<4, 2, 2>(MakeClawPlantCoefficients());
-  return StateFeedbackPlant<4, 2, 2>(plants);
-}
-
-StateFeedbackLoop<4, 2, 2> MakeClawLoop() {
-  ::std::vector<StateFeedbackController<4, 2, 2> *> controllers(1);
-  controllers[0] = new StateFeedbackController<4, 2, 2>(MakeClawController());
-  return StateFeedbackLoop<4, 2, 2>(controllers);
-}
-
-}  // namespace control_loops
-}  // namespace frc971
diff --git a/frc971/control_loops/claw/claw_motor_plant.h b/frc971/control_loops/claw/claw_motor_plant.h
deleted file mode 100644
index 1e21dc5..0000000
--- a/frc971/control_loops/claw/claw_motor_plant.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef FRC971_CONTROL_LOOPS_CLAW_CLAW_MOTOR_PLANT_H_
-#define FRC971_CONTROL_LOOPS_CLAW_CLAW_MOTOR_PLANT_H_
-
-#include "frc971/control_loops/state_feedback_loop.h"
-
-namespace frc971 {
-namespace control_loops {
-static constexpr double kClawMomentOfInertiaRatio = 0.933333;
-
-
-StateFeedbackPlantCoefficients<4, 2, 2> MakeClawPlantCoefficients();
-
-StateFeedbackController<4, 2, 2> MakeClawController();
-
-StateFeedbackPlant<4, 2, 2> MakeClawPlant();
-
-StateFeedbackLoop<4, 2, 2> MakeClawLoop();
-
-}  // namespace control_loops
-}  // namespace frc971
-
-#endif  // FRC971_CONTROL_LOOPS_CLAW_CLAW_MOTOR_PLANT_H_
diff --git a/frc971/control_loops/shooter/shooter.cc b/frc971/control_loops/shooter/shooter.cc
deleted file mode 100644
index 2a35c62..0000000
--- a/frc971/control_loops/shooter/shooter.cc
+++ /dev/null
@@ -1,687 +0,0 @@
-#include "frc971/control_loops/shooter/shooter.h"
-
-#include <stdio.h>
-
-#include <algorithm>
-
-#include "aos/common/controls/control_loops.q.h"
-#include "aos/common/logging/logging.h"
-#include "aos/common/logging/queue_logging.h"
-
-#include "frc971/constants.h"
-#include "frc971/control_loops/shooter/shooter_motor_plant.h"
-
-namespace frc971 {
-namespace control_loops {
-
-using ::aos::time::Time;
-
-void ZeroedStateFeedbackLoop::CapU() {
-  const double old_voltage = voltage_;
-  voltage_ += U(0, 0);
-
-  uncapped_voltage_ = voltage_;
-
-  // Make sure that reality and the observer can't get too far off.  There is a
-  // delay by one cycle between the applied voltage and X_hat(2, 0), so compare
-  // against last cycle's voltage.
-  if (X_hat(2, 0) > last_voltage_ + 4.0) {
-    voltage_ -= X_hat(2, 0) - (last_voltage_ + 4.0);
-    LOG(DEBUG, "Capping due to runaway\n");
-  } else if (X_hat(2, 0) < last_voltage_ - 4.0) {
-    voltage_ += X_hat(2, 0) - (last_voltage_ - 4.0);
-    LOG(DEBUG, "Capping due to runaway\n");
-  }
-
-  voltage_ = std::min(max_voltage_, voltage_);
-  voltage_ = std::max(-max_voltage_, voltage_);
-  mutable_U(0, 0) = voltage_ - old_voltage;
-
-  LOG_STRUCT(DEBUG, "output", ShooterVoltageToLog(X_hat(2, 0), voltage_));
-
-  last_voltage_ = voltage_;
-  capped_goal_ = false;
-}
-
-void ZeroedStateFeedbackLoop::CapGoal() {
-  if (uncapped_voltage() > max_voltage_) {
-    double dx;
-    if (controller_index() == 0) {
-      dx = (uncapped_voltage() - max_voltage_) /
-           (K(0, 0) - A(1, 0) * K(0, 2) / A(1, 2));
-      mutable_R(0, 0) -= dx;
-      mutable_R(2, 0) -= -A(1, 0) / A(1, 2) * dx;
-    } else {
-      dx = (uncapped_voltage() - max_voltage_) / K(0, 0);
-      mutable_R(0, 0) -= dx;
-    }
-    capped_goal_ = true;
-    LOG_STRUCT(DEBUG, "to prevent windup", ShooterMovingGoal(dx));
-  } else if (uncapped_voltage() < -max_voltage_) {
-    double dx;
-    if (controller_index() == 0) {
-      dx = (uncapped_voltage() + max_voltage_) /
-           (K(0, 0) - A(1, 0) * K(0, 2) / A(1, 2));
-      mutable_R(0, 0) -= dx;
-      mutable_R(2, 0) -= -A(1, 0) / A(1, 2) * dx;
-    } else {
-      dx = (uncapped_voltage() + max_voltage_) / K(0, 0);
-      mutable_R(0, 0) -= dx;
-    }
-    capped_goal_ = true;
-    LOG_STRUCT(DEBUG, "to prevent windup", ShooterMovingGoal(dx));
-  } else {
-    capped_goal_ = false;
-  }
-}
-
-void ZeroedStateFeedbackLoop::RecalculatePowerGoal() {
-  if (controller_index() == 0) {
-    mutable_R(2, 0) = (-A(1, 0) / A(1, 2) * R(0, 0) - A(1, 1) / A(1, 2) * R(1, 0));
-  } else {
-    mutable_R(2, 0) = -A(1, 1) / A(1, 2) * R(1, 0);
-  }
-}
-
-void ZeroedStateFeedbackLoop::SetCalibration(double encoder_val,
-                                             double known_position) {
-  double old_position = absolute_position();
-  double previous_offset = offset_;
-  offset_ = known_position - encoder_val;
-  double doffset = offset_ - previous_offset;
-  mutable_X_hat(0, 0) += doffset;
-  // Offset our measurements because the offset is baked into them.
-  // This is safe because if we got here, it means position != nullptr, which
-  // means we already set Y to something and it won't just get overwritten.
-  mutable_Y(0, 0) += doffset;
-  // Offset the goal so we don't move.
-  mutable_R(0, 0) += doffset;
-  if (controller_index() == 0) {
-    mutable_R(2, 0) += -A(1, 0) / A(1, 2) * (doffset);
-  }
-  LOG_STRUCT(
-      DEBUG, "sensor edge (fake?)",
-      ShooterChangeCalibration(encoder_val, known_position, old_position,
-                               absolute_position(), previous_offset, offset_));
-}
-
-ShooterMotor::ShooterMotor(control_loops::ShooterGroup *my_shooter)
-    : aos::controls::ControlLoop<control_loops::ShooterGroup>(my_shooter),
-      shooter_(MakeShooterLoop()),
-      state_(STATE_INITIALIZE),
-      loading_problem_end_time_(0, 0),
-      load_timeout_(0, 0),
-      shooter_brake_set_time_(0, 0),
-      unload_timeout_(0, 0),
-      shot_end_time_(0, 0),
-      cycles_not_moved_(0),
-      shot_count_(0),
-      zeroed_(false),
-      distal_posedge_validation_cycles_left_(0),
-      proximal_posedge_validation_cycles_left_(0),
-      last_distal_current_(true),
-      last_proximal_current_(true) {}
-
-double ShooterMotor::PowerToPosition(double power) {
-  const frc971::constants::Values &values = constants::GetValues();
-  double maxpower = 0.5 * kSpringConstant *
-                    (kMaxExtension * kMaxExtension -
-                     (kMaxExtension - values.shooter.upper_limit) *
-                         (kMaxExtension - values.shooter.upper_limit));
-  if (power < 0) {
-    LOG_STRUCT(WARNING, "negative power", PowerAdjustment(power, 0));
-    power = 0;
-  } else if (power > maxpower) {
-    LOG_STRUCT(WARNING, "power too high", PowerAdjustment(power, maxpower));
-    power = maxpower;
-  }
-
-  double mp = kMaxExtension * kMaxExtension - (power + power) / kSpringConstant;
-  double new_pos = 0.10;
-  if (mp < 0) {
-    LOG(ERROR,
-        "Power calculation has negative number before square root (%f).\n", mp);
-  } else {
-    new_pos = kMaxExtension - ::std::sqrt(mp);
-  }
-
-  new_pos = ::std::min(::std::max(new_pos, values.shooter.lower_limit),
-                              values.shooter.upper_limit);
-  return new_pos;
-}
-
-double ShooterMotor::PositionToPower(double position) {
-  double power = kSpringConstant * position * (kMaxExtension - position / 2.0);
-  return power;
-}
-
-void ShooterMotor::CheckCalibrations(
-    const control_loops::ShooterGroup::Position *position) {
-  CHECK_NOTNULL(position);
-  const frc971::constants::Values &values = constants::GetValues();
-
-  // TODO(austin): Validate that this is the right edge.
-  // If we see a posedge on any of the hall effects,
-  if (position->pusher_proximal.posedge_count != last_proximal_posedge_count_ &&
-      !last_proximal_current_) {
-    proximal_posedge_validation_cycles_left_ = 2;
-  }
-  if (proximal_posedge_validation_cycles_left_ > 0) {
-    if (position->pusher_proximal.current) {
-      --proximal_posedge_validation_cycles_left_;
-      if (proximal_posedge_validation_cycles_left_ == 0) {
-        shooter_.SetCalibration(
-            position->pusher_proximal.posedge_value,
-            values.shooter.pusher_proximal.upper_angle);
-
-        LOG(DEBUG, "Setting calibration using proximal sensor\n");
-        zeroed_ = true;
-      }
-    } else {
-      proximal_posedge_validation_cycles_left_ = 0;
-    }
-  }
-
-  if (position->pusher_distal.posedge_count != last_distal_posedge_count_ &&
-      !last_distal_current_) {
-    distal_posedge_validation_cycles_left_ = 2;
-  }
-  if (distal_posedge_validation_cycles_left_ > 0) {
-    if (position->pusher_distal.current) {
-      --distal_posedge_validation_cycles_left_;
-      if (distal_posedge_validation_cycles_left_ == 0) {
-        shooter_.SetCalibration(
-            position->pusher_distal.posedge_value,
-            values.shooter.pusher_distal.upper_angle);
-
-        LOG(DEBUG, "Setting calibration using distal sensor\n");
-        zeroed_ = true;
-      }
-    } else {
-      distal_posedge_validation_cycles_left_ = 0;
-    }
-  }
-}
-
-// Positive is out, and positive power is out.
-void ShooterMotor::RunIteration(
-    const control_loops::ShooterGroup::Goal *goal,
-    const control_loops::ShooterGroup::Position *position,
-    control_loops::ShooterGroup::Output *output,
-    control_loops::ShooterGroup::Status *status) {
-  constexpr double dt = 0.01;
-
-  if (::std::isnan(goal->shot_power)) {
-	  state_ = STATE_ESTOP;
-    LOG(ERROR, "Estopping because got a shot power of NAN.\n");
-  }
-
-  // we must always have these or we have issues.
-  if (goal == NULL || status == NULL) {
-    if (output) output->voltage = 0;
-    LOG(ERROR, "Thought I would just check for null and die.\n");
-    return;
-  }
-  status->ready = false;
-
-  if (reset()) {
-    state_ = STATE_INITIALIZE;
-    last_distal_current_ = position->pusher_distal.current;
-    last_proximal_current_ = position->pusher_proximal.current;
-  }
-  if (position) {
-    shooter_.CorrectPosition(position->position);
-  }
-
-  // Disable the motors now so that all early returns will return with the
-  // motors disabled.
-  if (output) output->voltage = 0;
-
-  const frc971::constants::Values &values = constants::GetValues();
-
-  // Don't even let the control loops run.
-  bool shooter_loop_disable = false;
-
-  const bool disabled =
-      !::aos::robot_state.get() || !::aos::robot_state->enabled;
-
-  // If true, move the goal if we saturate.
-  bool cap_goal = false;
-
-  // TODO(austin): Move the offset if we see or don't see a hall effect when we
-  // expect to see one.
-  // Probably not needed yet.
-
-  if (position) {
-    int last_controller_index = shooter_.controller_index();
-    if (position->plunger && position->latch) {
-      // Use the controller without the spring if the latch is set and the
-      // plunger is back
-      shooter_.set_controller_index(1);
-    } else {
-      // Otherwise use the controller with the spring.
-      shooter_.set_controller_index(0);
-    }
-    if (shooter_.controller_index() != last_controller_index) {
-      shooter_.RecalculatePowerGoal();
-    }
-  }
-
-  switch (state_) {
-    case STATE_INITIALIZE:
-      if (position) {
-        // Reinitialize the internal filter state.
-        shooter_.InitializeState(position->position);
-
-        // Start off with the assumption that we are at the value
-        // futhest back given our sensors.
-        if (position->pusher_distal.current) {
-          shooter_.SetCalibration(position->position,
-                                  values.shooter.pusher_distal.lower_angle);
-        } else if (position->pusher_proximal.current) {
-          shooter_.SetCalibration(position->position,
-                                  values.shooter.pusher_proximal.upper_angle);
-        } else {
-          shooter_.SetCalibration(position->position,
-                                  values.shooter.upper_limit);
-        }
-
-        // Go to the current position.
-        shooter_.SetGoalPosition(shooter_.absolute_position(), 0.0);
-        // If the plunger is all the way back, we want to be latched.
-        latch_piston_ = position->plunger;
-        brake_piston_ = false;
-        if (position->latch == latch_piston_) {
-          state_ = STATE_REQUEST_LOAD;
-        } else {
-          shooter_loop_disable = true;
-          LOG(DEBUG,
-              "Not moving on until the latch has moved to avoid a crash\n");
-        }
-      } else {
-        // If we can't start yet because we don't know where we are, set the
-        // latch and brake to their defaults.
-        latch_piston_ = true;
-        brake_piston_ = true;
-      }
-      break;
-    case STATE_REQUEST_LOAD:
-      if (position) {
-        zeroed_ = false;
-        if (position->pusher_distal.current ||
-            position->pusher_proximal.current) {
-          // We started on the sensor, back up until we are found.
-          // If the plunger is all the way back and not latched, it won't be
-          // there for long.
-          state_ = STATE_LOAD_BACKTRACK;
-
-          // The plunger is already back and latched.  Don't release it.
-          if (position->plunger && position->latch) {
-            latch_piston_ = true;
-          } else {
-            latch_piston_ = false;
-          }
-        } else if (position->plunger && position->latch) {
-          // The plunger is back and we are latched.  We most likely got here
-          // from Initialize, in which case we want to 'load' again anyways to
-          // zero.
-          Load();
-          latch_piston_ = true;
-        } else {
-          // Off the sensor, start loading.
-          Load();
-          latch_piston_ = false;
-        }
-      }
-
-      // Hold our current position.
-      shooter_.SetGoalPosition(shooter_.absolute_position(), 0.0);
-      brake_piston_ = false;
-      break;
-    case STATE_LOAD_BACKTRACK:
-      // If we are here, then that means we started past the edge where we want
-      // to zero.  Move backwards until we don't see the sensor anymore.
-      // The plunger is contacting the pusher (or will be shortly).
-
-      if (!disabled) {
-        shooter_.SetGoalPosition(
-            shooter_.goal_position() + values.shooter.zeroing_speed * dt,
-            values.shooter.zeroing_speed);
-      }
-      cap_goal = true;
-      shooter_.set_max_voltage(4.0);
-
-      if (position) {
-        if (!position->pusher_distal.current &&
-            !position->pusher_proximal.current) {
-          Load();
-        }
-        latch_piston_ = position->plunger;
-      }
-
-      brake_piston_ = false;
-      break;
-    case STATE_LOAD:
-      // If we are disabled right now, reset the timer.
-      if (disabled) {
-        Load();
-        // Latch defaults to true when disabled.  Leave it latched until we have
-        // useful sensor data.
-        latch_piston_ = true;
-      }
-      if (output == nullptr) {
-        load_timeout_ += ::aos::controls::kLoopFrequency;
-      }
-      // Go to 0, which should be the latch position, or trigger a hall effect
-      // on the way.  If we don't see edges where we are supposed to, the
-      // offset will be updated by code above.
-      shooter_.SetGoalPosition(0.0, 0.0);
-
-      if (position) {
-        CheckCalibrations(position);
-
-        // Latch if the plunger is far enough back to trigger the hall effect.
-        // This happens when the distal sensor is triggered.
-        latch_piston_ = position->pusher_distal.current || position->plunger;
-
-        // Check if we are latched and back.  Make sure the plunger is all the
-        // way back as well.
-        if (position->plunger && position->latch &&
-            position->pusher_distal.current) {
-          if (!zeroed_) {
-            state_ = STATE_REQUEST_LOAD;
-          } else {
-            state_ = STATE_PREPARE_SHOT;
-          }
-        } else if (position->plunger &&
-                   ::std::abs(shooter_.absolute_position() -
-                              shooter_.goal_position()) < 0.001) {
-          // We are at the goal, but not latched.
-          state_ = STATE_LOADING_PROBLEM;
-          loading_problem_end_time_ = Time::Now() + kLoadProblemEndTimeout;
-        }
-      }
-      if (load_timeout_ < Time::Now()) {
-        if (position) {
-          if (!position->pusher_distal.current ||
-              !position->pusher_proximal.current) {
-            state_ = STATE_ESTOP;
-            LOG(ERROR, "Estopping because took too long to load.\n");
-          }
-        }
-      }
-      brake_piston_ = false;
-      break;
-    case STATE_LOADING_PROBLEM:
-      if (disabled) {
-        state_ = STATE_REQUEST_LOAD;
-        break;
-      }
-      // We got to the goal, but the latch hasn't registered as down.  It might
-      // be stuck, or on it's way but not there yet.
-      if (Time::Now() > loading_problem_end_time_) {
-        // Timeout by unloading.
-        Unload();
-      } else if (position && position->plunger && position->latch) {
-        // If both trigger, we are latched.
-        state_ = STATE_PREPARE_SHOT;
-      }
-      // Move a bit further back to help it trigger.
-      // If the latch is slow due to the air flowing through the tubes or
-      // inertia, but is otherwise free, this won't have much time to do
-      // anything and is safe.  Otherwise this gives us a bit more room to free
-      // up the latch.
-      shooter_.SetGoalPosition(values.shooter.lower_limit, 0.0);
-      if (position) {
-        LOG(DEBUG, "Waiting on latch: plunger %d, latch: %d\n",
-            position->plunger, position->latch);
-      }
-
-      latch_piston_ = true;
-      brake_piston_ = false;
-      break;
-    case STATE_PREPARE_SHOT:
-      // Move the shooter to the shot power set point and then lock the brake.
-      // TODO(austin): Timeout.  Low priority.
-
-      shooter_.SetGoalPosition(PowerToPosition(goal->shot_power), 0.0);
-
-      LOG(DEBUG, "PDIFF: absolute_position: %.2f, pow: %.2f\n",
-          shooter_.absolute_position(), PowerToPosition(goal->shot_power));
-      if (::std::abs(shooter_.absolute_position() -
-                     PowerToPosition(goal->shot_power)) < 0.001 &&
-          ::std::abs(shooter_.absolute_velocity()) < 0.005) {
-        // We are there, set the brake and move on.
-        latch_piston_ = true;
-        brake_piston_ = true;
-        shooter_brake_set_time_ = Time::Now() + kShooterBrakeSetTime;
-        state_ = STATE_READY;
-      } else {
-        latch_piston_ = true;
-        brake_piston_ = false;
-      }
-      if (goal->unload_requested) {
-        Unload();
-      }
-      break;
-    case STATE_READY:
-      LOG(DEBUG, "In ready\n");
-      // Wait until the brake is set, and a shot is requested or the shot power
-      // is changed.
-      if (Time::Now() > shooter_brake_set_time_) {
-        status->ready = true;
-        // We have waited long enough for the brake to set, turn the shooter
-        // control loop off.
-        shooter_loop_disable = true;
-        LOG(DEBUG, "Brake is now set\n");
-        if (goal->shot_requested && !disabled) {
-          LOG(DEBUG, "Shooting now\n");
-          shooter_loop_disable = true;
-          shot_end_time_ = Time::Now() + kShotEndTimeout;
-          firing_starting_position_ = shooter_.absolute_position();
-          state_ = STATE_FIRE;
-        }
-      }
-      if (state_ == STATE_READY &&
-          ::std::abs(shooter_.absolute_position() -
-                     PowerToPosition(goal->shot_power)) > 0.002) {
-        // TODO(austin): Add a state to release the brake.
-
-        // TODO(austin): Do we want to set the brake here or after shooting?
-        // Depends on air usage.
-        status->ready = false;
-        LOG(DEBUG, "Preparing shot again.\n");
-        state_ = STATE_PREPARE_SHOT;
-      }
-
-      shooter_.SetGoalPosition(PowerToPosition(goal->shot_power), 0.0);
-
-      latch_piston_ = true;
-      brake_piston_ = true;
-
-      if (goal->unload_requested) {
-        Unload();
-      }
-      break;
-
-    case STATE_FIRE:
-      if (disabled) {
-        if (position) {
-          if (position->plunger) {
-            // If disabled and the plunger is still back there, reset the
-            // timeout.
-            shot_end_time_ = Time::Now() + kShotEndTimeout;
-          }
-        }
-      }
-      shooter_loop_disable = true;
-      // Count the number of contiguous cycles during which we haven't moved.
-      if (::std::abs(last_position_.position - shooter_.absolute_position()) <
-          0.0005) {
-        ++cycles_not_moved_;
-      } else {
-        cycles_not_moved_ = 0;
-      }
-
-      // If we have moved any amount since the start and the shooter has now
-      // been still for a couple cycles, the shot finished.
-      // Also move on if it times out.
-      if ((::std::abs(firing_starting_position_ -
-                      shooter_.absolute_position()) > 0.0005 &&
-           cycles_not_moved_ > 3) ||
-          Time::Now() > shot_end_time_) {
-        state_ = STATE_REQUEST_LOAD;
-        ++shot_count_;
-      }
-      latch_piston_ = false;
-      brake_piston_ = true;
-      break;
-    case STATE_UNLOAD:
-      // Reset the timeouts.
-      if (disabled) Unload();
-
-      // If it is latched and the plunger is back, move the pusher back to catch
-      // the plunger.
-      bool all_back;
-      if (position) {
-        all_back = position->plunger && position->latch;
-      } else {
-        all_back = last_position_.plunger && last_position_.latch;
-      }
-
-      if (all_back) {
-        // Pull back to 0, 0.
-        shooter_.SetGoalPosition(0.0, 0.0);
-        if (shooter_.absolute_position() < 0.005) {
-          // When we are close enough, 'fire'.
-          latch_piston_ = false;
-        } else {
-          latch_piston_ = true;
-
-          if (position) {
-            CheckCalibrations(position);
-          }
-        }
-      } else {
-        // The plunger isn't all the way back, or it is and it is unlatched, so
-        // we can now unload.
-        shooter_.SetGoalPosition(shooter_.absolute_position(), 0.0);
-        latch_piston_ = false;
-        state_ = STATE_UNLOAD_MOVE;
-        unload_timeout_ = Time::Now() + kUnloadTimeout;
-      }
-
-      if (Time::Now() > unload_timeout_) {
-        // We have been stuck trying to unload for way too long, give up and
-        // turn everything off.
-        state_ = STATE_ESTOP;
-        LOG(ERROR, "Estopping because took too long to unload.\n");
-      }
-
-      brake_piston_ = false;
-      break;
-    case STATE_UNLOAD_MOVE: {
-      if (disabled) {
-        unload_timeout_ = Time::Now() + kUnloadTimeout;
-        shooter_.SetGoalPosition(shooter_.absolute_position(), 0.0);
-      }
-      cap_goal = true;
-      shooter_.set_max_voltage(6.0);
-
-      // Slowly move back until we hit the upper limit.
-      // If we were at the limit last cycle, we are done unloading.
-      // This is because if we saturate, we might hit the limit before we are
-      // actually there.
-      if (shooter_.goal_position() >= values.shooter.upper_limit) {
-        shooter_.SetGoalPosition(values.shooter.upper_limit, 0.0);
-        // We don't want the loop fighting the spring when we are unloaded.
-        // Turn it off.
-        shooter_loop_disable = true;
-        state_ = STATE_READY_UNLOAD;
-      } else {
-        shooter_.SetGoalPosition(
-            ::std::min(
-                values.shooter.upper_limit,
-                shooter_.goal_position() + values.shooter.unload_speed * dt),
-            values.shooter.unload_speed);
-      }
-
-      latch_piston_ = false;
-      brake_piston_ = false;
-    } break;
-    case STATE_READY_UNLOAD:
-      if (goal->load_requested) {
-        state_ = STATE_REQUEST_LOAD;
-      }
-      // If we are ready to load again,
-      shooter_loop_disable = true;
-
-      latch_piston_ = false;
-      brake_piston_ = false;
-      break;
-
-    case STATE_ESTOP:
-      LOG(WARNING, "estopped\n");
-      // Totally lost, go to a safe state.
-      shooter_loop_disable = true;
-      latch_piston_ = true;
-      brake_piston_ = true;
-      break;
-  }
-
-  if (!shooter_loop_disable) {
-    LOG_STRUCT(DEBUG, "running the loop",
-               ShooterStatusToLog(shooter_.goal_position(),
-                                  shooter_.absolute_position()));
-    if (!cap_goal) {
-      shooter_.set_max_voltage(12.0);
-    }
-    shooter_.Update(output == NULL);
-    if (cap_goal) {
-      shooter_.CapGoal();
-    }
-    // We don't really want to output anything if we went through everything
-    // assuming the motors weren't working.
-    if (output) output->voltage = shooter_.voltage();
-  } else {
-    shooter_.Update(true);
-    shooter_.ZeroPower();
-    if (output) output->voltage = 0.0;
-  }
-
-  status->hard_stop_power = PositionToPower(shooter_.absolute_position());
-
-  if (output) {
-    output->latch_piston = latch_piston_;
-    output->brake_piston = brake_piston_;
-  }
-
-  if (position) {
-    LOG_STRUCT(DEBUG, "internal state",
-               ShooterStateToLog(
-                   shooter_.absolute_position(), shooter_.absolute_velocity(),
-                   state_, position->latch, position->pusher_proximal.current,
-                   position->pusher_distal.current, position->plunger,
-                   brake_piston_, latch_piston_));
-
-    last_position_ = *position;
-
-    last_distal_posedge_count_ = position->pusher_distal.posedge_count;
-    last_proximal_posedge_count_ = position->pusher_proximal.posedge_count;
-    last_distal_current_ = position->pusher_distal.current;
-    last_proximal_current_ = position->pusher_proximal.current;
-  }
-
-  status->shots = shot_count_;
-}
-
-void ShooterMotor::ZeroOutputs() {
-  queue_group()->output.MakeWithBuilder()
-      .voltage(0)
-      .latch_piston(latch_piston_)
-      .brake_piston(brake_piston_)
-      .Send();
-}
-
-}  // namespace control_loops
-}  // namespace frc971
diff --git a/frc971/control_loops/shooter/shooter.gyp b/frc971/control_loops/shooter/shooter.gyp
deleted file mode 100644
index a21903c..0000000
--- a/frc971/control_loops/shooter/shooter.gyp
+++ /dev/null
@@ -1,67 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'shooter_loop',
-      'type': 'static_library',
-      'sources': ['shooter.q'],
-      'variables': {
-        'header_path': 'frc971/control_loops/shooter',
-      },
-      'dependencies': [
-        '<(AOS)/common/controls/controls.gyp:control_loop_queues',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:queues',
-      ],
-      'export_dependent_settings': [
-        '<(AOS)/common/controls/controls.gyp:control_loop_queues',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:queues',
-      ],
-      'includes': ['../../../aos/build/queues.gypi'],
-    },
-    {
-      'target_name': 'shooter_lib',
-      'type': 'static_library',
-      'sources': [
-        'shooter.cc',
-        'shooter_motor_plant.cc',
-        'unaugmented_shooter_motor_plant.cc',
-      ],
-      'dependencies': [
-        'shooter_loop',
-        '<(AOS)/common/controls/controls.gyp:control_loop',
-        '<(DEPTH)/frc971/frc971.gyp:constants',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop',
-        '<(AOS)/common/logging/logging.gyp:queue_logging',
-      ],
-      'export_dependent_settings': [
-        'shooter_loop',
-        '<(AOS)/common/controls/controls.gyp:control_loop',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop',
-      ],
-    },
-    {
-      'target_name': 'shooter_lib_test',
-      'type': 'executable',
-      'sources': [
-        'shooter_lib_test.cc',
-      ],
-      'dependencies': [
-        '<(EXTERNALS):gtest',
-        'shooter_loop',
-        'shooter_lib',
-        '<(AOS)/common/controls/controls.gyp:control_loop_test',
-        '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop',
-      ],
-    },
-    {
-      'target_name': 'shooter',
-      'type': 'executable',
-      'sources': [
-        'shooter_main.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        'shooter_lib',
-      ],
-    },
-  ],
-}
diff --git a/frc971/control_loops/shooter/shooter.h b/frc971/control_loops/shooter/shooter.h
deleted file mode 100644
index 370f9e5..0000000
--- a/frc971/control_loops/shooter/shooter.h
+++ /dev/null
@@ -1,224 +0,0 @@
-#ifndef FRC971_CONTROL_LOOPS_shooter_shooter_H_
-#define FRC971_CONTROL_LOOPS_shooter_shooter_H_
-
-#include <memory>
-
-#include "aos/common/controls/control_loop.h"
-#include "frc971/control_loops/state_feedback_loop.h"
-#include "aos/common/time.h"
-
-#include "frc971/constants.h"
-#include "frc971/control_loops/shooter/shooter_motor_plant.h"
-#include "frc971/control_loops/shooter/shooter.q.h"
-
-namespace frc971 {
-namespace control_loops {
-namespace testing {
-class ShooterTest_UnloadWindupPositive_Test;
-class ShooterTest_UnloadWindupNegative_Test;
-class ShooterTest_RezeroWhileUnloading_Test;
-};
-
-using ::aos::time::Time;
-
-// Note: Everything in this file assumes that there is a 1 cycle delay between
-// power being requested and it showing up at the motor.  It assumes that
-// X_hat(2, 1) is the voltage being applied as well.  It will go unstable if
-// that isn't true.
-
-// This class implements the CapU function correctly given all the extra
-// information that we know about.
-// It does not have any zeroing logic in it, only logic to deal with a delta U
-// controller.
-class ZeroedStateFeedbackLoop : public StateFeedbackLoop<3, 1, 1> {
- public:
-  ZeroedStateFeedbackLoop(StateFeedbackLoop<3, 1, 1> &&loop)
-      : StateFeedbackLoop<3, 1, 1>(::std::move(loop)),
-        voltage_(0.0),
-        last_voltage_(0.0),
-        uncapped_voltage_(0.0),
-        offset_(0.0),
-        max_voltage_(12.0),
-        capped_goal_(false) {}
-
-  const static int kZeroingMaxVoltage = 5;
-
-  virtual void CapU();
-
-  // Returns the accumulated voltage.
-  double voltage() const { return voltage_; }
-
-  // Returns the uncapped voltage.
-  double uncapped_voltage() const { return uncapped_voltage_; }
-
-  // Zeros the accumulator.
-  void ZeroPower() { voltage_ = 0.0; }
-
-  // Sets the calibration offset given the absolute angle and the corrisponding
-  // encoder value.
-  void SetCalibration(double encoder_val, double known_position);
-
-  double offset() const { return offset_; }
-
-  double absolute_position() const { return X_hat(0, 0) + kPositionOffset; }
-  double absolute_velocity() const { return X_hat(1, 0); }
-
-  void CorrectPosition(double position) {
-    Eigen::Matrix<double, 1, 1> Y;
-    Y << position + offset_ - kPositionOffset;
-    Correct(Y);
-  }
-
-  // Recomputes the power goal for the current controller and position/velocity.
-  void RecalculatePowerGoal();
-
-  double goal_position() const { return R(0, 0) + kPositionOffset; }
-  double goal_velocity() const { return R(1, 0); }
-  void InitializeState(double position) {
-    mutable_X_hat(0, 0) = position - kPositionOffset;
-    mutable_X_hat(1, 0) = 0.0;
-    mutable_X_hat(2, 0) = 0.0;
-  }
-
-  void SetGoalPosition(double desired_position, double desired_velocity) {
-    LOG(DEBUG, "Goal position: %f Goal velocity: %f\n", desired_position,
-        desired_velocity);
-
-    mutable_R() << desired_position - kPositionOffset, desired_velocity,
-        (-A(1, 0) / A(1, 2) * (desired_position - kPositionOffset) -
-         A(1, 1) / A(1, 2) * desired_velocity);
-  }
-
-  double position() const { return X_hat(0, 0) - offset_ + kPositionOffset; }
-
-  void set_max_voltage(double max_voltage) { max_voltage_ = max_voltage; }
-  bool capped_goal() const { return capped_goal_; }
-
-  void CapGoal();
-
-  // Friend the test classes for acces to the internal state.
-  friend class testing::ShooterTest_RezeroWhileUnloading_Test;
-
- private:
-  // The offset between what is '0' (0 rate on the spring) and the 0 (all the
-  // way cocked).
-  constexpr static double kPositionOffset = kMaxExtension;
-  // The accumulated voltage to apply to the motor.
-  double voltage_;
-  double last_voltage_;
-  double uncapped_voltage_;
-  double offset_;
-  double max_voltage_;
-  bool capped_goal_;
-};
-
-const Time kUnloadTimeout = Time::InSeconds(10);
-const Time kLoadTimeout = Time::InSeconds(2);
-const Time kLoadProblemEndTimeout = Time::InSeconds(1.0);
-const Time kShooterBrakeSetTime = Time::InSeconds(0.05);
-// Time to wait after releasing the latch piston before winching back again.
-const Time kShotEndTimeout = Time::InSeconds(0.2);
-const Time kPrepareFireEndTime = Time::InMS(40);
-
-class ShooterMotor
-    : public aos::controls::ControlLoop<control_loops::ShooterGroup> {
- public:
-  explicit ShooterMotor(control_loops::ShooterGroup *my_shooter =
-                            &control_loops::shooter_queue_group);
-
-  // True if the goal was moved to avoid goal windup.
-  bool capped_goal() const { return shooter_.capped_goal(); }
-
-  double PowerToPosition(double power);
-  double PositionToPower(double position);
-  void CheckCalibrations(const control_loops::ShooterGroup::Position *position);
-
-  typedef enum {
-    STATE_INITIALIZE = 0,
-    STATE_REQUEST_LOAD = 1,
-    STATE_LOAD_BACKTRACK = 2,
-    STATE_LOAD = 3,
-    STATE_LOADING_PROBLEM = 4,
-    STATE_PREPARE_SHOT = 5,
-    STATE_READY = 6,
-    STATE_FIRE = 8,
-    STATE_UNLOAD = 9,
-    STATE_UNLOAD_MOVE = 10,
-    STATE_READY_UNLOAD = 11,
-    STATE_ESTOP = 12
-  } State;
-
-  State state() { return state_; }
-
- protected:
-  virtual void RunIteration(
-      const ShooterGroup::Goal *goal,
-      const control_loops::ShooterGroup::Position *position,
-      ShooterGroup::Output *output, ShooterGroup::Status *status);
-
- private:
-  // We have to override this to keep the pistons in the correct positions.
-  virtual void ZeroOutputs();
-
-  // Friend the test classes for acces to the internal state.
-  friend class testing::ShooterTest_UnloadWindupPositive_Test;
-  friend class testing::ShooterTest_UnloadWindupNegative_Test;
-  friend class testing::ShooterTest_RezeroWhileUnloading_Test;
-
-  // Enter state STATE_UNLOAD
-  void Unload() {
-    state_ = STATE_UNLOAD;
-    unload_timeout_ = Time::Now() + kUnloadTimeout;
-  }
-  // Enter state STATE_LOAD
-  void Load() {
-    state_ = STATE_LOAD;
-    load_timeout_ = Time::Now() + kLoadTimeout;
-  }
-
-  control_loops::ShooterGroup::Position last_position_;
-
-  ZeroedStateFeedbackLoop shooter_;
-
-  // state machine state
-  State state_;
-
-  // time to giving up on loading problem
-  Time loading_problem_end_time_;
-
-  // The end time when loading for it to timeout.
-  Time load_timeout_;
-
-  // wait for brake to set
-  Time shooter_brake_set_time_;
-
-  // The timeout for unloading.
-  Time unload_timeout_;
-
-  // time that shot must have completed
-  Time shot_end_time_;
-
-  // track cycles that we are stuck to detect errors
-  int cycles_not_moved_;
-
-  double firing_starting_position_;
-
-  // True if the latch should be engaged and the brake should be engaged.
-  bool latch_piston_;
-  bool brake_piston_;
-  int32_t last_distal_posedge_count_;
-  int32_t last_proximal_posedge_count_;
-  uint32_t shot_count_;
-  bool zeroed_;
-  int distal_posedge_validation_cycles_left_;
-  int proximal_posedge_validation_cycles_left_;
-  bool last_distal_current_;
-  bool last_proximal_current_;
-
-  DISALLOW_COPY_AND_ASSIGN(ShooterMotor);
-};
-
-}  // namespace control_loops
-}  // namespace frc971
-
-#endif  // FRC971_CONTROL_LOOPS_shooter_shooter_H_
diff --git a/frc971/control_loops/shooter/shooter.q b/frc971/control_loops/shooter/shooter.q
deleted file mode 100644
index bc83ff7..0000000
--- a/frc971/control_loops/shooter/shooter.q
+++ /dev/null
@@ -1,100 +0,0 @@
-package frc971.control_loops;
-
-import "aos/common/controls/control_loops.q";
-import "frc971/control_loops/control_loops.q";
-
-queue_group ShooterGroup {
-  implements aos.control_loops.ControlLoop;
-
-  message Output {
-    double voltage;
-    // true: latch engaged, false: latch open
-    bool latch_piston;
-    // true: brake engaged false: brake released
-    bool brake_piston;
-  };
-  message Goal {
-    // Shot power in joules.
-    double shot_power;
-    // Shoots as soon as this is true.
-    bool shot_requested;
-    bool unload_requested;
-    bool load_requested;
-  };
-
-  // Back is when the springs are all the way stretched.
-  message Position {
-    // In meters, out is positive.
-    double position;
-
-    // If the latch piston is fired and this hall effect has been triggered, the
-    // plunger is all the way back and latched.
-    bool plunger;
-    // Gets triggered when the pusher is all the way back.
-    PosedgeOnlyCountedHallEffectStruct pusher_distal;
-    // Triggers just before pusher_distal.
-    PosedgeOnlyCountedHallEffectStruct pusher_proximal;
-    // Triggers when the latch engages.
-    bool latch;
-  };
-  message Status {
-    // Whether it's ready to shoot right now.
-    bool ready;
-    // Whether the plunger is in and out of the way of grabbing a ball.
-    // TODO(ben): Populate these!
-    bool cocked;
-    // How many times we've shot.
-    int32_t shots;
-    bool done;
-    // What we think the current position of the hard stop on the shooter is, in
-    // shot power (Joules).
-    double hard_stop_power;
-  };
-
-  queue Goal goal;
-  queue Position position;
-  queue Output output;
-  queue Status status;
-};
-
-queue_group ShooterGroup shooter_queue_group;
-
-struct ShooterStateToLog {
-	double absolute_position;
-	double absolute_velocity;
-	uint32_t state;
-	bool latch_sensor;
-	bool proximal;
-	bool distal;
-	bool plunger;
-	bool brake;
-	bool latch_piston;
-};
-
-struct ShooterVoltageToLog {
-	double X_hat;
-	double applied;
-};
-
-struct ShooterMovingGoal {
-	double dx;
-};
-
-struct ShooterChangeCalibration {
-	double encoder;
-	double real_position;
-	double old_position;
-	double new_position;
-	double old_offset;
-	double new_offset;
-};
-
-struct ShooterStatusToLog {
-	double goal;
-	double position;
-};
-
-struct PowerAdjustment {
-	double requested_power;
-	double actual_power;
-};
diff --git a/frc971/control_loops/shooter/shooter_lib_test.cc b/frc971/control_loops/shooter/shooter_lib_test.cc
deleted file mode 100644
index d5ca637..0000000
--- a/frc971/control_loops/shooter/shooter_lib_test.cc
+++ /dev/null
@@ -1,723 +0,0 @@
-#include <unistd.h>
-
-#include <memory>
-
-#include "gtest/gtest.h"
-#include "aos/common/network/team_number.h"
-#include "aos/common/controls/control_loop_test.h"
-#include "frc971/control_loops/shooter/shooter.q.h"
-#include "frc971/control_loops/shooter/shooter.h"
-#include "frc971/control_loops/shooter/unaugmented_shooter_motor_plant.h"
-#include "frc971/constants.h"
-
-using ::aos::time::Time;
-
-namespace frc971 {
-namespace control_loops {
-namespace testing {
-
-static const int kTestTeam = 1;
-
-class TeamNumberEnvironment : public ::testing::Environment {
- public:
-  // Override this to define how to set up the environment.
-  virtual void SetUp() { aos::network::OverrideTeamNumber(kTestTeam); }
-};
-
-::testing::Environment *const team_number_env =
-    ::testing::AddGlobalTestEnvironment(new TeamNumberEnvironment);
-
-
-// Class which simulates the shooter and sends out queue messages containing the
-// position.
-class ShooterSimulation {
- public:
-  // Constructs a motor simulation.
-  ShooterSimulation(double initial_position)
-      : shooter_plant_(new StateFeedbackPlant<2, 1, 1>(MakeRawShooterPlant())),
-        latch_piston_state_(false),
-        latch_delay_count_(0),
-        plunger_latched_(false),
-        brake_piston_state_(true),
-        brake_delay_count_(0),
-        shooter_queue_group_(
-            ".frc971.control_loops.shooter_queue_group", 0xcbf22ba9,
-            ".frc971.control_loops.shooter_queue_group.goal",
-            ".frc971.control_loops.shooter_queue_group.position",
-            ".frc971.control_loops.shooter_queue_group.output",
-            ".frc971.control_loops.shooter_queue_group.status") {
-    Reinitialize(initial_position);
-  }
-
-  // The difference between the position with 0 at the back, and the position
-  // with 0 measured where the spring has 0 force.
-  constexpr static double kPositionOffset = kMaxExtension;
-
-  void Reinitialize(double initial_position) {
-    LOG(INFO, "Reinitializing to {pos: %f}\n", initial_position);
-    StateFeedbackPlant<2, 1, 1> *plant = shooter_plant_.get();
-    initial_position_ = initial_position;
-    plant->mutable_X(0, 0) = initial_position_ - kPositionOffset;
-    plant->mutable_X(1, 0) = 0.0;
-    plant->mutable_Y() = plant->C() * plant->X();
-    last_voltage_ = 0.0;
-    last_plant_position_ = 0.0;
-    SetPhysicalSensors(&last_position_message_);
-  }
-
-  // Returns the absolute angle of the shooter.
-  double GetAbsolutePosition() const {
-    return shooter_plant_->Y(0, 0) + kPositionOffset;
-  }
-
-  // Returns the adjusted angle of the shooter.
-  double GetPosition() const {
-    return GetAbsolutePosition() - initial_position_;
-  }
-
-  // Makes sure pos is inside range (inclusive)
-  bool CheckRange(double pos, struct constants::Values::AnglePair pair) {
-    return (pos >= pair.lower_angle && pos <= pair.upper_angle);
-  }
-
-  // Sets the values of the physical sensors that can be directly observed
-  // (encoder, hall effect).
-  void SetPhysicalSensors(control_loops::ShooterGroup::Position *position) {
-    const frc971::constants::Values &values = constants::GetValues();
-
-   	position->position = GetPosition();
-
-    LOG(DEBUG, "Physical shooter at {%f}\n", GetAbsolutePosition());
-
-    // Signal that the hall effect sensor has been triggered if it is within
-    // the correct range.
-    if (plunger_latched_) {
-      position->plunger = true;
-      // Only disengage the spring if we are greater than 0, which is where the
-      // latch will take the load off the pusher.
-      if (GetAbsolutePosition() > 0.0) {
-        shooter_plant_->set_plant_index(1);
-      } else {
-        shooter_plant_->set_plant_index(0);
-      }
-    } else {
-      shooter_plant_->set_plant_index(0);
-      position->plunger =
-          CheckRange(GetAbsolutePosition(), values.shooter.plunger_back);
-    }
-    position->pusher_distal.current =
-        CheckRange(GetAbsolutePosition(), values.shooter.pusher_distal);
-    position->pusher_proximal.current =
-        CheckRange(GetAbsolutePosition(), values.shooter.pusher_proximal);
-  }
-
-  void UpdateEffectEdge(
-      PosedgeOnlyCountedHallEffectStruct *sensor,
-      const PosedgeOnlyCountedHallEffectStruct &last_sensor,
-      const constants::Values::AnglePair &limits,
-      const control_loops::ShooterGroup::Position &last_position) {
-    sensor->posedge_count = last_sensor.posedge_count;
-    sensor->negedge_count = last_sensor.negedge_count;
-
-    sensor->posedge_value = last_sensor.posedge_value;
-
-    if (sensor->current && !last_sensor.current) {
-      ++sensor->posedge_count;
-      if (last_position.position + initial_position_ < limits.lower_angle) {
-        LOG(DEBUG, "Posedge value on lower edge of sensor, count is now %d\n",
-            sensor->posedge_count);
-        sensor->posedge_value = limits.lower_angle - initial_position_;
-      } else {
-        LOG(DEBUG, "Posedge value on upper edge of sensor, count is now %d\n",
-            sensor->posedge_count);
-        sensor->posedge_value = limits.upper_angle - initial_position_;
-      }
-    }
-    if (!sensor->current && last_sensor.current) {
-      ++sensor->negedge_count;
-    }
-  }
-
-  void SendPositionMessage() {
-    // the first bool is false
-    SendPositionMessage(false, false, false, false);
-  }
-
-  // Sends out the position queue messages.
-  // if the first bool is false then this is
-  // just the default state, otherwise will force
-  // it into a state using the passed values
-  void SendPositionMessage(bool use_passed, bool plunger_in,
-                           bool latch_in, bool brake_in) {
-    const frc971::constants::Values &values = constants::GetValues();
-    ::aos::ScopedMessagePtr<control_loops::ShooterGroup::Position> position =
-        shooter_queue_group_.position.MakeMessage();
-
-    if (use_passed) {
-      plunger_latched_ = latch_in && plunger_in;
-      latch_piston_state_ = plunger_latched_;
-      brake_piston_state_ = brake_in;
-    }
-
-    SetPhysicalSensors(position.get());
-
-    position->latch = latch_piston_state_;
-
-    // Handle pusher distal hall effect
-    UpdateEffectEdge(&position->pusher_distal,
-                     last_position_message_.pusher_distal,
-                     values.shooter.pusher_distal, last_position_message_);
-
-    // Handle pusher proximal hall effect
-    UpdateEffectEdge(&position->pusher_proximal,
-                     last_position_message_.pusher_proximal,
-                     values.shooter.pusher_proximal, last_position_message_);
-
-    last_position_message_ = *position;
-    position.Send();
-  }
-
-  // Simulates the claw moving for one timestep.
-  void Simulate() {
-    last_plant_position_ = GetAbsolutePosition();
-    EXPECT_TRUE(shooter_queue_group_.output.FetchLatest());
-    if (shooter_queue_group_.output->latch_piston && !latch_piston_state_ &&
-        latch_delay_count_ <= 0) {
-      ASSERT_EQ(0, latch_delay_count_) << "The test doesn't support that.";
-      latch_delay_count_ = 6;
-    } else if (!shooter_queue_group_.output->latch_piston &&
-               latch_piston_state_ && latch_delay_count_ >= 0) {
-      ASSERT_EQ(0, latch_delay_count_) << "The test doesn't support that.";
-      latch_delay_count_ = -6;
-    }
-
-    if (shooter_queue_group_.output->brake_piston && !brake_piston_state_ &&
-        brake_delay_count_ <= 0) {
-      ASSERT_EQ(0, brake_delay_count_) << "The test doesn't support that.";
-      brake_delay_count_ = 5;
-    } else if (!shooter_queue_group_.output->brake_piston &&
-               brake_piston_state_ && brake_delay_count_ >= 0) {
-      ASSERT_EQ(0, brake_delay_count_) << "The test doesn't support that.";
-      brake_delay_count_ = -5;
-    }
-
-    // Handle brake internal state
-    if (!brake_piston_state_ && brake_delay_count_ > 0) {
-      if (brake_delay_count_ == 1) {
-        brake_piston_state_ = true;
-      }
-      brake_delay_count_--;
-    } else if (brake_piston_state_ && brake_delay_count_ < 0) {
-      if (brake_delay_count_ == -1) {
-        brake_piston_state_ = false;
-      }
-      brake_delay_count_++;
-    }
-
-    if (brake_piston_state_) {
-      shooter_plant_->mutable_U() << 0.0;
-      shooter_plant_->mutable_X(1, 0) = 0.0;
-      shooter_plant_->mutable_Y() = shooter_plant_->C() * shooter_plant_->X() +
-                                   shooter_plant_->D() * shooter_plant_->U();
-    } else {
-      shooter_plant_->mutable_U() << last_voltage_;
-      //shooter_plant_->U << shooter_queue_group_.output->voltage;
-      shooter_plant_->Update();
-    }
-    LOG(DEBUG, "Plant index is %d\n", shooter_plant_->plant_index());
-
-    // Handle latch hall effect
-    if (!latch_piston_state_ && latch_delay_count_ > 0) {
-      LOG(DEBUG, "latching simulation: %dp\n", latch_delay_count_);
-      if (latch_delay_count_ == 1) {
-        latch_piston_state_ = true;
-        EXPECT_GE(constants::GetValues().shooter.latch_max_safe_position,
-                  GetAbsolutePosition());
-        plunger_latched_ = true;
-      }
-      latch_delay_count_--;
-    } else if (latch_piston_state_ && latch_delay_count_ < 0) {
-      LOG(DEBUG, "latching simulation: %dn\n", latch_delay_count_);
-      if (latch_delay_count_ == -1) {
-        latch_piston_state_ = false;
-        if (GetAbsolutePosition() > 0.002) {
-          EXPECT_TRUE(brake_piston_state_) << "Must have the brake set when "
-                                              "releasing the latch for "
-                                              "powerful shots.";
-        }
-        plunger_latched_ = false;
-        // TODO(austin): The brake should be set for a number of cycles after
-        // this as well.
-        shooter_plant_->mutable_X(0, 0) += 0.005;
-      }
-      latch_delay_count_++;
-    }
-
-    EXPECT_GE(constants::GetValues().shooter.upper_hard_limit,
-              GetAbsolutePosition());
-    EXPECT_LE(constants::GetValues().shooter.lower_hard_limit,
-              GetAbsolutePosition());
-
-    last_voltage_ = shooter_queue_group_.output->voltage;
-    ::aos::time::Time::IncrementMockTime(::aos::time::Time::InMS(10.0));
-  }
-
-  // pointer to plant
-  const ::std::unique_ptr<StateFeedbackPlant<2, 1, 1>> shooter_plant_;
-
-  // true latch closed
-  bool latch_piston_state_;
-  // greater than zero, delaying close. less than zero delaying open
-  int latch_delay_count_;
-
-  // Goes to true after latch_delay_count_ hits 0 while the plunger is back.
-  bool plunger_latched_;
-
-  // true brake locked
-  bool brake_piston_state_;
-  // greater than zero, delaying close. less than zero delaying open
-  int brake_delay_count_;
-
- private:
-  ShooterGroup shooter_queue_group_;
-  double initial_position_;
-  double last_voltage_;
-
-  control_loops::ShooterGroup::Position last_position_message_;
-  double last_plant_position_;
-};
-
-class ShooterTest : public ::aos::testing::ControlLoopTest {
-
- protected:
-  // Create a new instance of the test queue so that it invalidates the queue
-  // that it points to.  Otherwise, we will have a pointer to shared memory that
-  // is no longer valid.
-  ShooterGroup shooter_queue_group_;
-
-  // Create a loop and simulation plant.
-  ShooterMotor shooter_motor_;
-  ShooterSimulation shooter_motor_plant_;
-
-  void Reinitialize(double position) {
-    shooter_motor_plant_.Reinitialize(position);
-  }
-
-  ShooterTest()
-      : shooter_queue_group_(
-            ".frc971.control_loops.shooter_queue_group", 0xcbf22ba9,
-            ".frc971.control_loops.shooter_queue_group.goal",
-            ".frc971.control_loops.shooter_queue_group.position",
-            ".frc971.control_loops.shooter_queue_group.output",
-            ".frc971.control_loops.shooter_queue_group.status"),
-        shooter_motor_(&shooter_queue_group_),
-        shooter_motor_plant_(0.2) {
-  }
-
-  void VerifyNearGoal() {
-    shooter_queue_group_.goal.FetchLatest();
-    shooter_queue_group_.position.FetchLatest();
-    double pos = shooter_motor_plant_.GetAbsolutePosition();
-    EXPECT_NEAR(shooter_queue_group_.goal->shot_power, pos, 1e-4);
-  }
-};
-
-TEST_F(ShooterTest, PowerConversion) {
-  const frc971::constants::Values &values = constants::GetValues();
-  // test a couple of values return the right thing
-  EXPECT_NEAR(0.254001, shooter_motor_.PowerToPosition(140.0), 0.00001);
-  EXPECT_NEAR(0.00058, shooter_motor_.PowerToPosition(0.53), 0.00001);
-  EXPECT_NEAR(0.095251238129837101, shooter_motor_.PowerToPosition(73.67),
-              0.00001);
-
-  // value too large should get max
-  EXPECT_NEAR(values.shooter.upper_limit,
-              shooter_motor_.PowerToPosition(505050.99), 0.00001);
-  // negative values should zero
-  EXPECT_NEAR(0, shooter_motor_.PowerToPosition(-123.4), 0.00001);
-}
-
-// Test that PowerToPosition and PositionToPower are inverses of each other.
-// Note that PowerToPosition will cap position whereas PositionToPower will not
-// cap power.
-TEST_F(ShooterTest, InversePowerConversion) {
-  // Test a few values.
-  double power = 140.0;
-  double position = shooter_motor_.PowerToPosition(power);
-  EXPECT_NEAR(power, shooter_motor_.PositionToPower(position), 1e-5);
-  power = .53;
-  position = shooter_motor_.PowerToPosition(power);
-  EXPECT_NEAR(power, shooter_motor_.PositionToPower(position), 1e-5);
-  power = 71.971;
-  position = shooter_motor_.PowerToPosition(power);
-  EXPECT_NEAR(power, shooter_motor_.PositionToPower(position), 1e-5);
-}
-
-// Tests that the shooter zeros correctly and goes to a position.
-TEST_F(ShooterTest, GoesToValue) {
-  shooter_queue_group_.goal.MakeWithBuilder().shot_power(70.0).Send();
-  for (int i = 0; i < 200; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  // EXPECT_NEAR(0.0, shooter_motor_.GetPosition(), 0.01);
-  double pos = shooter_motor_plant_.GetAbsolutePosition();
-  EXPECT_NEAR(
-      shooter_motor_.PowerToPosition(shooter_queue_group_.goal->shot_power),
-      pos, 0.05);
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-}
-
-// Tests that the shooter zeros correctly and goes to a position.
-TEST_F(ShooterTest, Fire) {
-  shooter_queue_group_.goal.MakeWithBuilder().shot_power(70.0).Send();
-  for (int i = 0; i < 120; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-  shooter_queue_group_.goal.MakeWithBuilder()
-      .shot_power(35.0)
-      .shot_requested(true)
-      .Send();
-
-  bool hit_fire = false;
-  for (int i = 0; i < 400; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-    if (shooter_motor_.state() == ShooterMotor::STATE_FIRE) {
-      if (!hit_fire) {
-        shooter_queue_group_.goal.MakeWithBuilder()
-            .shot_power(17.0)
-            .shot_requested(false)
-            .Send();
-      }
-      hit_fire = true;
-    }
-  }
-
-  double pos = shooter_motor_plant_.GetAbsolutePosition();
-  EXPECT_NEAR(
-      shooter_motor_.PowerToPosition(shooter_queue_group_.goal->shot_power),
-      pos, 0.05);
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-  EXPECT_TRUE(hit_fire);
-}
-
-// Tests that the shooter zeros correctly and goes to a position.
-TEST_F(ShooterTest, FireLong) {
-  shooter_queue_group_.goal.MakeWithBuilder().shot_power(70.0).Send();
-  for (int i = 0; i < 150; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-  shooter_queue_group_.goal.MakeWithBuilder().shot_requested(true).Send();
-
-  bool hit_fire = false;
-  for (int i = 0; i < 400; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-    if (shooter_motor_.state() == ShooterMotor::STATE_FIRE) {
-      if (!hit_fire) {
-        shooter_queue_group_.goal.MakeWithBuilder()
-            .shot_requested(false)
-            .Send();
-      }
-      hit_fire = true;
-    }
-  }
-
-  double pos = shooter_motor_plant_.GetAbsolutePosition();
-  EXPECT_NEAR(shooter_motor_.PowerToPosition(shooter_queue_group_.goal->shot_power), pos, 0.05);
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-  EXPECT_TRUE(hit_fire);
-}
-
-// Verifies that it doesn't try to go out too far if you give it a ridicilous
-// power.
-TEST_F(ShooterTest, LoadTooFar) {
-  shooter_queue_group_.goal.MakeWithBuilder().shot_power(500.0).Send();
-  for (int i = 0; i < 160; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-    EXPECT_LT(
-        shooter_motor_plant_.GetAbsolutePosition(),
-        constants::GetValuesForTeam(kTestTeam).shooter.upper_limit);
-  }
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-}
-
-// Tests that the shooter zeros correctly and goes to a position.
-TEST_F(ShooterTest, MoveGoal) {
-  shooter_queue_group_.goal.MakeWithBuilder().shot_power(70.0).Send();
-  for (int i = 0; i < 150; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-  shooter_queue_group_.goal.MakeWithBuilder().shot_power(14.0).Send();
-
-  for (int i = 0; i < 100; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-
-  double pos = shooter_motor_plant_.GetAbsolutePosition();
-  EXPECT_NEAR(
-      shooter_motor_.PowerToPosition(shooter_queue_group_.goal->shot_power),
-      pos, 0.05);
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-}
-
-
-TEST_F(ShooterTest, Unload) {
-  shooter_queue_group_.goal.MakeWithBuilder().shot_power(70.0).Send();
-  for (int i = 0; i < 150; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-  shooter_queue_group_.goal.MakeWithBuilder().unload_requested(true).Send();
-
-  for (int i = 0;
-       i < 800 && shooter_motor_.state() != ShooterMotor::STATE_READY_UNLOAD;
-       ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-
-  EXPECT_NEAR(constants::GetValues().shooter.upper_limit,
-              shooter_motor_plant_.GetAbsolutePosition(), 0.015);
-  EXPECT_EQ(ShooterMotor::STATE_READY_UNLOAD, shooter_motor_.state());
-}
-
-// Tests that it rezeros while unloading.
-TEST_F(ShooterTest, RezeroWhileUnloading) {
-  shooter_queue_group_.goal.MakeWithBuilder().shot_power(70.0).Send();
-  for (int i = 0; i < 150; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-
-  shooter_motor_.shooter_.offset_ += 0.01;
-  for (int i = 0; i < 50; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-
-  shooter_queue_group_.goal.MakeWithBuilder().unload_requested(true).Send();
-
-  for (int i = 0;
-       i < 800 && shooter_motor_.state() != ShooterMotor::STATE_READY_UNLOAD;
-       ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-
-  EXPECT_NEAR(constants::GetValues().shooter.upper_limit,
-              shooter_motor_plant_.GetAbsolutePosition(), 0.015);
-  EXPECT_EQ(ShooterMotor::STATE_READY_UNLOAD, shooter_motor_.state());
-}
-
-// Tests that the shooter zeros correctly and goes to a position.
-TEST_F(ShooterTest, UnloadWindupNegative) {
-  shooter_queue_group_.goal.MakeWithBuilder().shot_power(70.0).Send();
-  for (int i = 0; i < 150; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-  shooter_queue_group_.goal.MakeWithBuilder().unload_requested(true).Send();
-
-  int kicked_delay = 20;
-  int capped_goal_count = 0;
-  for (int i = 0;
-       i < 800 && shooter_motor_.state() != ShooterMotor::STATE_READY_UNLOAD;
-       ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    if (shooter_motor_.state() == ShooterMotor::STATE_UNLOAD_MOVE) {
-      LOG(DEBUG, "State is UnloadMove\n");
-      --kicked_delay;
-      if (kicked_delay == 0) {
-        shooter_motor_.shooter_.mutable_R(0, 0) -= 100;
-      }
-    }
-    if (shooter_motor_.capped_goal() && kicked_delay < 0) {
-      ++capped_goal_count;
-    }
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-
-  EXPECT_NEAR(constants::GetValues().shooter.upper_limit,
-              shooter_motor_plant_.GetAbsolutePosition(), 0.05);
-  EXPECT_EQ(ShooterMotor::STATE_READY_UNLOAD, shooter_motor_.state());
-  EXPECT_LE(1, capped_goal_count);
-  EXPECT_GE(3, capped_goal_count);
-}
-
-// Tests that the shooter zeros correctly and goes to a position.
-TEST_F(ShooterTest, UnloadWindupPositive) {
-  shooter_queue_group_.goal.MakeWithBuilder().shot_power(70.0).Send();
-  for (int i = 0; i < 150; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-  shooter_queue_group_.goal.MakeWithBuilder().unload_requested(true).Send();
-
-  int kicked_delay = 20;
-  int capped_goal_count = 0;
-  for (int i = 0;
-       i < 800 && shooter_motor_.state() != ShooterMotor::STATE_READY_UNLOAD;
-       ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    if (shooter_motor_.state() == ShooterMotor::STATE_UNLOAD_MOVE) {
-      LOG(DEBUG, "State is UnloadMove\n");
-      --kicked_delay;
-      if (kicked_delay == 0) {
-        shooter_motor_.shooter_.mutable_R(0, 0) += 0.1;
-      }
-    }
-    if (shooter_motor_.capped_goal() && kicked_delay < 0) {
-      ++capped_goal_count;
-    }
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-
-  EXPECT_NEAR(constants::GetValues().shooter.upper_limit,
-              shooter_motor_plant_.GetAbsolutePosition(), 0.05);
-  EXPECT_EQ(ShooterMotor::STATE_READY_UNLOAD, shooter_motor_.state());
-  EXPECT_LE(1, capped_goal_count);
-  EXPECT_GE(3, capped_goal_count);
-}
-
-double HallEffectMiddle(constants::Values::AnglePair pair) {
-  return (pair.lower_angle + pair.upper_angle) / 2.0;
-}
-
-// Tests that the shooter zeros correctly and goes to a position.
-TEST_F(ShooterTest, StartsOnDistal) {
-  Reinitialize(HallEffectMiddle(constants::GetValues().shooter.pusher_distal));
-  shooter_queue_group_.goal.MakeWithBuilder().shot_power(70.0).Send();
-  for (int i = 0; i < 200; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  // EXPECT_NEAR(0.0, shooter_motor_.GetPosition(), 0.01);
-  double pos = shooter_motor_plant_.GetAbsolutePosition();
-  EXPECT_NEAR(
-      shooter_motor_.PowerToPosition(shooter_queue_group_.goal->shot_power),
-      pos, 0.05);
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-}
-
-
-// Tests that the shooter zeros correctly and goes to a position.
-TEST_F(ShooterTest, StartsOnProximal) {
-  Reinitialize(
-      HallEffectMiddle(constants::GetValues().shooter.pusher_proximal));
-  shooter_queue_group_.goal.MakeWithBuilder().shot_power(70.0).Send();
-  for (int i = 0; i < 300; ++i) {
-    shooter_motor_plant_.SendPositionMessage();
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  // EXPECT_NEAR(0.0, shooter_motor_.GetPosition(), 0.01);
-  double pos = shooter_motor_plant_.GetAbsolutePosition();
-  EXPECT_NEAR(
-      shooter_motor_.PowerToPosition(shooter_queue_group_.goal->shot_power),
-      pos, 0.05);
-  EXPECT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-}
-
-class ShooterZeroingTest : public ShooterTest,
-                    public ::testing::WithParamInterface<
-                        ::std::tr1::tuple<bool, bool, bool, double>> {};
-
-TEST_P(ShooterZeroingTest, AllDisparateStartingZero) {
-  bool latch = ::std::tr1::get<0>(GetParam());
-  bool brake = ::std::tr1::get<1>(GetParam());
-  bool plunger_back = ::std::tr1::get<2>(GetParam());
-  double start_pos = ::std::tr1::get<3>(GetParam());
-  // flag to initialize test
-	//printf("@@@@ l= %d b= %d p= %d s= %.3f\n",
-	//		latch, brake, plunger_back, start_pos);
-  bool initialized = false;
-  Reinitialize(start_pos);
-  shooter_queue_group_.goal.MakeWithBuilder().shot_power(120.0).Send();
-  for (int i = 0; i < 200; ++i) {
-    shooter_motor_plant_.SendPositionMessage(!initialized, plunger_back, latch, brake);
-    initialized = true;
-    shooter_motor_.Iterate();
-    shooter_motor_plant_.Simulate();
-    SimulateTimestep(true);
-  }
-  // EXPECT_NEAR(0.0, shooter_motor_.GetPosition(), 0.01);
-  double pos = shooter_motor_plant_.GetAbsolutePosition();
-  EXPECT_NEAR(
-      shooter_motor_.PowerToPosition(shooter_queue_group_.goal->shot_power),
-      pos, 0.05);
-  ASSERT_EQ(ShooterMotor::STATE_READY, shooter_motor_.state());
-}
-
-INSTANTIATE_TEST_CASE_P(
-    ShooterZeroingTest, ShooterZeroingTest,
-    ::testing::Combine(
-        ::testing::Bool(), ::testing::Bool(), ::testing::Bool(),
-        ::testing::Values(
-            0.05,
-            constants::GetValuesForTeam(kTestTeam).shooter.upper_limit - 0.05,
-            HallEffectMiddle(constants::GetValuesForTeam(kTestTeam)
-                                 .shooter.pusher_proximal),
-            HallEffectMiddle(constants::GetValuesForTeam(kTestTeam)
-                                 .shooter.pusher_distal),
-            constants::GetValuesForTeam(kTestTeam)
-                    .shooter.latch_max_safe_position -
-                0.001)));
-
-// TODO(austin): Slip the encoder somewhere.
-
-// TODO(austin): Test all the timeouts...
-
-}  // namespace testing
-}  // namespace control_loops
-}  // namespace frc971
diff --git a/frc971/control_loops/shooter/shooter_main.cc b/frc971/control_loops/shooter/shooter_main.cc
deleted file mode 100644
index e4e25ad..0000000
--- a/frc971/control_loops/shooter/shooter_main.cc
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "frc971/control_loops/shooter/shooter.h"
-
-#include "aos/linux_code/init.h"
-
-int main() {
-  ::aos::Init();
-  frc971::control_loops::ShooterMotor shooter;
-  shooter.Run();
-  ::aos::Cleanup();
-  return 0;
-}
diff --git a/frc971/control_loops/shooter/shooter_motor_plant.cc b/frc971/control_loops/shooter/shooter_motor_plant.cc
deleted file mode 100644
index 546387d..0000000
--- a/frc971/control_loops/shooter/shooter_motor_plant.cc
+++ /dev/null
@@ -1,73 +0,0 @@
-#include "frc971/control_loops/shooter/shooter_motor_plant.h"
-
-#include <vector>
-
-#include "frc971/control_loops/state_feedback_loop.h"
-
-namespace frc971 {
-namespace control_loops {
-
-StateFeedbackPlantCoefficients<3, 1, 1> MakeSprungShooterPlantCoefficients() {
-  Eigen::Matrix<double, 3, 3> A;
-  A << 0.999391114909, 0.00811316740387, 7.59766686183e-05, -0.113584343654, 0.64780421498, 0.0141730519709, 0.0, 0.0, 1.0;
-  Eigen::Matrix<double, 3, 1> B;
-  B << 0.0, 0.0, 1.0;
-  Eigen::Matrix<double, 1, 3> C;
-  C << 1.0, 0.0, 0.0;
-  Eigen::Matrix<double, 1, 1> D;
-  D << 0.0;
-  Eigen::Matrix<double, 1, 1> U_max;
-  U_max << 12.0;
-  Eigen::Matrix<double, 1, 1> U_min;
-  U_min << -12.0;
-  return StateFeedbackPlantCoefficients<3, 1, 1>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackPlantCoefficients<3, 1, 1> MakeShooterPlantCoefficients() {
-  Eigen::Matrix<double, 3, 3> A;
-  A << 1.0, 0.00811505488455, 7.59852687598e-05, 0.0, 0.648331305446, 0.0141763492481, 0.0, 0.0, 1.0;
-  Eigen::Matrix<double, 3, 1> B;
-  B << 0.0, 0.0, 1.0;
-  Eigen::Matrix<double, 1, 3> C;
-  C << 1.0, 0.0, 0.0;
-  Eigen::Matrix<double, 1, 1> D;
-  D << 0.0;
-  Eigen::Matrix<double, 1, 1> U_max;
-  U_max << 12.0;
-  Eigen::Matrix<double, 1, 1> U_min;
-  U_min << -12.0;
-  return StateFeedbackPlantCoefficients<3, 1, 1>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackController<3, 1, 1> MakeSprungShooterController() {
-  Eigen::Matrix<double, 3, 1> L;
-  L << 1.64719532989, 57.0572680832, 636.74290365;
-  Eigen::Matrix<double, 1, 3> K;
-  K << 450.571849185, 11.8404918938, 0.997195329889;
-  return StateFeedbackController<3, 1, 1>(L, K, MakeSprungShooterPlantCoefficients());
-}
-
-StateFeedbackController<3, 1, 1> MakeShooterController() {
-  Eigen::Matrix<double, 3, 1> L;
-  L << 1.64833130545, 57.2417604572, 636.668851906;
-  Eigen::Matrix<double, 1, 3> K;
-  K << 349.173113146, 8.65077618169, 0.848331305446;
-  return StateFeedbackController<3, 1, 1>(L, K, MakeShooterPlantCoefficients());
-}
-
-StateFeedbackPlant<3, 1, 1> MakeShooterPlant() {
-  ::std::vector<StateFeedbackPlantCoefficients<3, 1, 1> *> plants(2);
-  plants[0] = new StateFeedbackPlantCoefficients<3, 1, 1>(MakeSprungShooterPlantCoefficients());
-  plants[1] = new StateFeedbackPlantCoefficients<3, 1, 1>(MakeShooterPlantCoefficients());
-  return StateFeedbackPlant<3, 1, 1>(plants);
-}
-
-StateFeedbackLoop<3, 1, 1> MakeShooterLoop() {
-  ::std::vector<StateFeedbackController<3, 1, 1> *> controllers(2);
-  controllers[0] = new StateFeedbackController<3, 1, 1>(MakeSprungShooterController());
-  controllers[1] = new StateFeedbackController<3, 1, 1>(MakeShooterController());
-  return StateFeedbackLoop<3, 1, 1>(controllers);
-}
-
-}  // namespace control_loops
-}  // namespace frc971
diff --git a/frc971/control_loops/shooter/shooter_motor_plant.h b/frc971/control_loops/shooter/shooter_motor_plant.h
deleted file mode 100644
index 606395a..0000000
--- a/frc971/control_loops/shooter/shooter_motor_plant.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef FRC971_CONTROL_LOOPS_SHOOTER_SHOOTER_MOTOR_PLANT_H_
-#define FRC971_CONTROL_LOOPS_SHOOTER_SHOOTER_MOTOR_PLANT_H_
-
-#include "frc971/control_loops/state_feedback_loop.h"
-
-namespace frc971 {
-namespace control_loops {
-static constexpr double kMaxExtension = 0.323850;
-
-static constexpr double kSpringConstant = 2800.000000;
-
-
-StateFeedbackPlantCoefficients<3, 1, 1> MakeSprungShooterPlantCoefficients();
-
-StateFeedbackController<3, 1, 1> MakeSprungShooterController();
-
-StateFeedbackPlantCoefficients<3, 1, 1> MakeShooterPlantCoefficients();
-
-StateFeedbackController<3, 1, 1> MakeShooterController();
-
-StateFeedbackPlant<3, 1, 1> MakeShooterPlant();
-
-StateFeedbackLoop<3, 1, 1> MakeShooterLoop();
-
-}  // namespace control_loops
-}  // namespace frc971
-
-#endif  // FRC971_CONTROL_LOOPS_SHOOTER_SHOOTER_MOTOR_PLANT_H_
diff --git a/frc971/control_loops/shooter/unaugmented_shooter_motor_plant.cc b/frc971/control_loops/shooter/unaugmented_shooter_motor_plant.cc
deleted file mode 100644
index 42b166f..0000000
--- a/frc971/control_loops/shooter/unaugmented_shooter_motor_plant.cc
+++ /dev/null
@@ -1,73 +0,0 @@
-#include "frc971/control_loops/shooter/unaugmented_shooter_motor_plant.h"
-
-#include <vector>
-
-#include "frc971/control_loops/state_feedback_loop.h"
-
-namespace frc971 {
-namespace control_loops {
-
-StateFeedbackPlantCoefficients<2, 1, 1> MakeRawSprungShooterPlantCoefficients() {
-  Eigen::Matrix<double, 2, 2> A;
-  A << 0.999391114909, 0.00811316740387, -0.113584343654, 0.64780421498;
-  Eigen::Matrix<double, 2, 1> B;
-  B << 7.59766686183e-05, 0.0141730519709;
-  Eigen::Matrix<double, 1, 2> C;
-  C << 1, 0;
-  Eigen::Matrix<double, 1, 1> D;
-  D << 0;
-  Eigen::Matrix<double, 1, 1> U_max;
-  U_max << 12.0;
-  Eigen::Matrix<double, 1, 1> U_min;
-  U_min << -12.0;
-  return StateFeedbackPlantCoefficients<2, 1, 1>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackPlantCoefficients<2, 1, 1> MakeRawShooterPlantCoefficients() {
-  Eigen::Matrix<double, 2, 2> A;
-  A << 1.0, 0.00811505488455, 0.0, 0.648331305446;
-  Eigen::Matrix<double, 2, 1> B;
-  B << 7.59852687598e-05, 0.0141763492481;
-  Eigen::Matrix<double, 1, 2> C;
-  C << 1, 0;
-  Eigen::Matrix<double, 1, 1> D;
-  D << 0;
-  Eigen::Matrix<double, 1, 1> U_max;
-  U_max << 12.0;
-  Eigen::Matrix<double, 1, 1> U_min;
-  U_min << -12.0;
-  return StateFeedbackPlantCoefficients<2, 1, 1>(A, B, C, D, U_max, U_min);
-}
-
-StateFeedbackController<2, 1, 1> MakeRawSprungShooterController() {
-  Eigen::Matrix<double, 2, 1> L;
-  L << 1.54719532989, 43.9345489758;
-  Eigen::Matrix<double, 1, 2> K;
-  K << 2126.06977433, 41.3223370936;
-  return StateFeedbackController<2, 1, 1>(L, K, MakeRawSprungShooterPlantCoefficients());
-}
-
-StateFeedbackController<2, 1, 1> MakeRawShooterController() {
-  Eigen::Matrix<double, 2, 1> L;
-  L << 1.54833130545, 44.1155797675;
-  Eigen::Matrix<double, 1, 2> K;
-  K << 2133.83569145, 41.3499425476;
-  return StateFeedbackController<2, 1, 1>(L, K, MakeRawShooterPlantCoefficients());
-}
-
-StateFeedbackPlant<2, 1, 1> MakeRawShooterPlant() {
-  ::std::vector<StateFeedbackPlantCoefficients<2, 1, 1> *> plants(2);
-  plants[0] = new StateFeedbackPlantCoefficients<2, 1, 1>(MakeRawSprungShooterPlantCoefficients());
-  plants[1] = new StateFeedbackPlantCoefficients<2, 1, 1>(MakeRawShooterPlantCoefficients());
-  return StateFeedbackPlant<2, 1, 1>(plants);
-}
-
-StateFeedbackLoop<2, 1, 1> MakeRawShooterLoop() {
-  ::std::vector<StateFeedbackController<2, 1, 1> *> controllers(2);
-  controllers[0] = new StateFeedbackController<2, 1, 1>(MakeRawSprungShooterController());
-  controllers[1] = new StateFeedbackController<2, 1, 1>(MakeRawShooterController());
-  return StateFeedbackLoop<2, 1, 1>(controllers);
-}
-
-}  // namespace control_loops
-}  // namespace frc971
diff --git a/frc971/control_loops/shooter/unaugmented_shooter_motor_plant.h b/frc971/control_loops/shooter/unaugmented_shooter_motor_plant.h
deleted file mode 100644
index 26504ce..0000000
--- a/frc971/control_loops/shooter/unaugmented_shooter_motor_plant.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef FRC971_CONTROL_LOOPS_SHOOTER_UNAUGMENTED_SHOOTER_MOTOR_PLANT_H_
-#define FRC971_CONTROL_LOOPS_SHOOTER_UNAUGMENTED_SHOOTER_MOTOR_PLANT_H_
-
-#include "frc971/control_loops/state_feedback_loop.h"
-
-namespace frc971 {
-namespace control_loops {
-
-StateFeedbackPlantCoefficients<2, 1, 1> MakeRawSprungShooterPlantCoefficients();
-
-StateFeedbackController<2, 1, 1> MakeRawSprungShooterController();
-
-StateFeedbackPlantCoefficients<2, 1, 1> MakeRawShooterPlantCoefficients();
-
-StateFeedbackController<2, 1, 1> MakeRawShooterController();
-
-StateFeedbackPlant<2, 1, 1> MakeRawShooterPlant();
-
-StateFeedbackLoop<2, 1, 1> MakeRawShooterLoop();
-
-}  // namespace control_loops
-}  // namespace frc971
-
-#endif  // FRC971_CONTROL_LOOPS_SHOOTER_UNAUGMENTED_SHOOTER_MOTOR_PLANT_H_
diff --git a/frc971/control_loops/update_claw.sh b/frc971/control_loops/update_claw.sh
deleted file mode 100755
index 2800d2a..0000000
--- a/frc971/control_loops/update_claw.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-#
-# Updates the claw controllers.
-
-cd $(dirname $0)
-
-./python/claw.py claw/claw_motor_plant.h \
-    claw/claw_motor_plant.cc
diff --git a/frc971/control_loops/update_shooter.sh b/frc971/control_loops/update_shooter.sh
deleted file mode 100755
index a9c5807..0000000
--- a/frc971/control_loops/update_shooter.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-#
-# Updates the shooter controller.
-
-cd $(dirname $0)
-
-./python/shooter.py shooter/shooter_motor_plant.h \
-    shooter/shooter_motor_plant.cc \
-    shooter/unaugmented_shooter_motor_plant.h \
-    shooter/unaugmented_shooter_motor_plant.cc
diff --git a/frc971/crio/build.sh b/frc971/crio/build.sh
deleted file mode 100755
index 39b0bf2..0000000
--- a/frc971/crio/build.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-
-cd $(dirname $0)
-
-exec ../../aos/build/build.py $0 crio crio.gyp "$@"
diff --git a/frc971/crio/crio.gyp b/frc971/crio/crio.gyp
deleted file mode 100644
index 6ce501a..0000000
--- a/frc971/crio/crio.gyp
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'dumb_main',
-      'type': 'static_library',
-      'sources': [
-        'dumb_main.cc',
-      ],
-      'dependencies': [
-        '<(EXTERNALS):WPILib',
-        '<(AOS)/crio/crio.gyp:ip',
-        '<(AOS)/common/util/util.gyp:inet_addr',
-      ],
-    },
-    {
-      'target_name': 'FRC_UserProgram',
-      'type': 'shared_library',
-      'dependencies': [
-        '<(EXTERNALS):libgcc-4.5.2',
-        'dumb_main',
-      ],
-    },
-  ],
-}
diff --git a/frc971/crio/dumb_main.cc b/frc971/crio/dumb_main.cc
deleted file mode 100644
index 116fc02..0000000
--- a/frc971/crio/dumb_main.cc
+++ /dev/null
@@ -1,25 +0,0 @@
-#include "WPILib/NetworkRobot/NetworkRobot.h"
-#include "WPILib/RobotBase.h"
-
-#include "aos/common/network_port.h"
-#include "aos/crio/ip.h"
-#include "aos/common/util/inet_addr.h"
-
-using ::aos::util::MakeIPAddress;
-using ::aos::util::GetOwnIPAddress;
-
-namespace frc971 {
-
-class MyRobot : public NetworkRobot {
- public:
-  MyRobot() : NetworkRobot(static_cast<uint16_t>(::aos::NetworkPort::kMotors),
-                           ::MakeIPAddress(::GetOwnIPAddress(),
-                               ::aos::NetworkAddress::kPrime),
-                           static_cast<uint16_t>(::aos::NetworkPort::kDS),
-                           ::MakeIPAddress(::GetOwnIPAddress(),
-                               ::aos::NetworkAddress::kPrime)) {}
-};
-
-}  // namespace frc971
-
-START_ROBOT_CLASS(::frc971::MyRobot);
diff --git a/frc971/frc971.gyp b/frc971/frc971.gyp
index b6d842d..b2f9435 100644
--- a/frc971/frc971.gyp
+++ b/frc971/frc971.gyp
@@ -16,6 +16,26 @@
       'export_dependent_settings': [
         '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop',
       ],
-    }
+    },
+    {
+      'target_name': 'joystick_reader',
+      'type': 'executable',
+      'sources': [
+        'joystick_reader.cc',
+      ],
+      'dependencies': [
+        '<(AOS)/prime/input/input.gyp:joystick_input',
+        '<(AOS)/linux_code/linux_code.gyp:init',
+        '<(AOS)/build/aos.gyp:logging',
+        '<(AOS)/common/common.gyp:time',
+        '<(AOS)/common/util/util.gyp:log_interval',
+
+        '<(DEPTH)/frc971/queues/queues.gyp:gyro',
+        '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
+        '<(DEPTH)/frc971/frc971.gyp:constants',
+        '<(DEPTH)/frc971/autonomous/autonomous.gyp:auto_queue',
+        '<(DEPTH)/frc971/actions/actions.gyp:action_client',
+      ],
+    },
   ],
 }
diff --git a/frc971/input/hot_goal_reader.cc b/frc971/input/hot_goal_reader.cc
deleted file mode 100644
index cf05a6a..0000000
--- a/frc971/input/hot_goal_reader.cc
+++ /dev/null
@@ -1,108 +0,0 @@
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <errno.h>
-#include <string.h>
-#include <netinet/in.h>
-#include <arpa/inet.h>
-
-#include "aos/common/time.h"
-#include "aos/common/logging/queue_logging.h"
-#include "aos/common/logging/logging.h"
-#include "aos/linux_code/init.h"
-#include "aos/common/byteorder.h"
-
-#include "frc971/queues/hot_goal.q.h"
-
-int main() {
-  ::aos::InitNRT();
-
-  uint64_t left_count, right_count;
-  ::frc971::hot_goal.FetchLatest();
-  if (::frc971::hot_goal.get()) {
-    LOG_STRUCT(DEBUG, "starting with", *::frc971::hot_goal);
-    left_count = ::frc971::hot_goal->left_count;
-    right_count = ::frc971::hot_goal->left_count;
-  } else {
-    LOG(DEBUG, "no starting message\n");
-    left_count = right_count = 0;
-  }
-
-  int my_socket = -1;
-  while (true) {
-    if (my_socket == -1) {
-      my_socket = socket(AF_INET, SOCK_STREAM, 0);
-      if (my_socket == -1) {
-        PLOG(WARNING, "socket(AF_INET, SOCK_STREAM, 0) failed");
-        continue;
-      } else {
-        LOG(INFO, "opened socket (is %d)\n", my_socket);
-        sockaddr_in address, *sockaddr_pointer;
-        memset(&address, 0, sizeof(address));
-        address.sin_family = AF_INET;
-        address.sin_port = ::aos::hton<uint16_t>(1180);
-        sockaddr *address_pointer;
-        sockaddr_pointer = &address;
-        memcpy(&address_pointer, &sockaddr_pointer, sizeof(void *));
-        if (bind(my_socket, address_pointer, sizeof(address)) == -1) {
-          PLOG(WARNING, "bind(%d, %p, %zu) failed",
-               my_socket, &address, sizeof(address));
-          close(my_socket);
-          my_socket = -1;
-          continue;
-        }
-
-        if (listen(my_socket, 1) == -1) {
-          PLOG(WARNING, "listen(%d, 1) failed", my_socket);
-          close(my_socket);
-          my_socket = -1;
-          continue;
-        }
-      }
-    }
-
-    int connection = accept4(my_socket, nullptr, nullptr, SOCK_NONBLOCK);
-    if (connection == -1) {
-      PLOG(WARNING, "accept(%d, nullptr, nullptr) failed", my_socket);
-      continue;
-    }
-    LOG(INFO, "accepted (is %d)\n", connection);
-
-    while (connection != -1) {
-      fd_set fds;
-      FD_ZERO(&fds);
-      FD_SET(connection, &fds);
-      struct timeval timeout_timeval =
-          ::aos::time::Time::InSeconds(1).ToTimeval();
-      switch (
-          select(connection + 1, &fds, nullptr, nullptr, &timeout_timeval)) {
-        case 1: {
-          uint8_t data;
-          ssize_t read_bytes = read(connection, &data, sizeof(data));
-          if (read_bytes != sizeof(data)) {
-            LOG(WARNING, "read %zd bytes instead of %zd\n", read_bytes,
-                sizeof(data));
-            break;
-          }
-          if (data & 0x01) ++right_count;
-          if (data & 0x02) ++left_count;
-          auto message = ::frc971::hot_goal.MakeMessage();
-          message->left_count = left_count;
-          message->right_count = right_count;
-          LOG_STRUCT(DEBUG, "sending", *message);
-          message.Send();
-        } break;
-        case 0:
-          LOG(WARNING, "read on %d timed out\n", connection);
-          close(connection);
-          connection = -1;
-          break;
-        default:
-          PLOG(FATAL,
-               "select(%d, %p, nullptr, nullptr, %p) failed",
-               connection + 1, &fds, &timeout_timeval);
-      }
-    }
-  }
-
-  LOG(FATAL, "finished???\n");
-}
diff --git a/frc971/input/input.gyp b/frc971/input/input.gyp
deleted file mode 100644
index 8473fe5..0000000
--- a/frc971/input/input.gyp
+++ /dev/null
@@ -1,65 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'hot_goal_reader',
-      'type': 'executable',
-      'sources': [
-        'hot_goal_reader.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/logging/logging.gyp:queue_logging',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        '<(DEPTH)/frc971/queues/queues.gyp:hot_goal',
-      ],
-    },
-    {
-      'target_name': 'joystick_reader',
-      'type': 'executable',
-      'sources': [
-        'joystick_reader.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/prime/input/input.gyp:joystick_input',
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/util/util.gyp:log_interval',
-
-        '<(DEPTH)/frc971/queues/queues.gyp:gyro',
-        '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
-        '<(DEPTH)/frc971/frc971.gyp:constants',
-        '<(DEPTH)/frc971/autonomous/autonomous.gyp:auto_queue',
-        '<(DEPTH)/frc971/control_loops/claw/claw.gyp:claw_loop',
-        '<(DEPTH)/frc971/control_loops/shooter/shooter.gyp:shooter_loop',
-        '<(DEPTH)/frc971/actions/actions.gyp:shoot_action_queue',
-        '<(DEPTH)/frc971/actions/actions.gyp:action_client',
-        '<(DEPTH)/frc971/actions/actions.gyp:catch_action_queue',
-        '<(DEPTH)/frc971/actions/actions.gyp:shoot_action_lib',
-      ],
-    },
-    {
-      'target_name': 'sensor_receiver',
-      'type': 'executable',
-      'sources': [
-        'sensor_receiver.cc',
-      ],
-      'dependencies': [
-        '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
-        '<(DEPTH)/frc971/queues/queues.gyp:queues',
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/common/util/util.gyp:wrapping_counter',
-        '<(DEPTH)/frc971/frc971.gyp:constants',
-        '<(DEPTH)/bbb_cape/src/bbb/bbb.gyp:sensor_reader',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/logging/logging.gyp:queue_logging',
-        '<(DEPTH)/frc971/control_loops/claw/claw.gyp:claw_loop',
-        '<(DEPTH)/frc971/control_loops/shooter/shooter.gyp:shooter_loop',
-        '<(AOS)/common/controls/controls.gyp:output_check',
-        '<(DEPTH)/frc971/queues/queues.gyp:gyro',
-      ],
-    },
-  ],
-}
diff --git a/frc971/input/joystick_reader.cc b/frc971/input/joystick_reader.cc
deleted file mode 100644
index 771a06c..0000000
--- a/frc971/input/joystick_reader.cc
+++ /dev/null
@@ -1,613 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-#include <unistd.h>
-#include <math.h>
-
-#include "aos/linux_code/init.h"
-#include "aos/prime/input/joystick_input.h"
-#include "aos/common/input/driver_station_data.h"
-#include "aos/common/logging/logging.h"
-#include "aos/common/util/log_interval.h"
-#include "aos/common/time.h"
-
-#include "frc971/control_loops/drivetrain/drivetrain.q.h"
-#include "frc971/constants.h"
-#include "frc971/queues/gyro.q.h"
-#include "frc971/autonomous/auto.q.h"
-#include "frc971/control_loops/claw/claw.q.h"
-#include "frc971/control_loops/shooter/shooter.q.h"
-#include "frc971/actions/shoot_action.q.h"
-#include "frc971/actions/action_client.h"
-#include "frc971/actions/catch_action.q.h"
-#include "frc971/actions/shoot_action.h"
-
-using ::frc971::control_loops::drivetrain;
-using ::frc971::sensors::gyro_reading;
-
-using ::aos::input::driver_station::ButtonLocation;
-using ::aos::input::driver_station::JoystickAxis;
-using ::aos::input::driver_station::ControlBit;
-
-#define OLD_DS 0
-
-namespace frc971 {
-namespace input {
-namespace joysticks {
-
-const ButtonLocation kDriveControlLoopEnable1(1, 7),
-                     kDriveControlLoopEnable2(1, 11);
-const JoystickAxis kSteeringWheel(1, 1), kDriveThrottle(2, 2);
-const ButtonLocation kShiftHigh(2, 1), kShiftLow(2, 3);
-const ButtonLocation kQuickTurn(1, 5);
-
-const ButtonLocation kCatch(3, 10);
-
-#if OLD_DS
-const ButtonLocation kFire(3, 11);
-const ButtonLocation kUnload(1, 4);
-const ButtonLocation kReload(1, 2);
-
-const ButtonLocation kRollersOut(3, 12);
-const ButtonLocation kRollersIn(3, 7);
-
-const ButtonLocation kTuck(3, 9);
-const ButtonLocation kIntakePosition(3, 8);
-const ButtonLocation kIntakeOpenPosition(3, 10);
-const ButtonLocation kVerticalTuck(3, 1);
-const JoystickAxis kFlipRobot(3, 3);
-
-const ButtonLocation kLongShot(3, 5);
-const ButtonLocation kCloseShot(3, 2);
-const ButtonLocation kFenderShot(3, 3);
-const ButtonLocation kTrussShot(2, 11);
-const ButtonLocation kHumanPlayerShot(3, 2);
-#else
-const ButtonLocation kFire(3, 9);
-const ButtonLocation kUnload(1, 4);
-const ButtonLocation kReload(1, 2);
-
-const ButtonLocation kRollersOut(3, 8);
-const ButtonLocation kRollersIn(3, 3);
-
-const ButtonLocation kTuck(3, 4);
-const ButtonLocation kIntakePosition(3, 5);
-const ButtonLocation kIntakeOpenPosition(3, 11);
-const ButtonLocation kVerticalTuck(2, 6);
-const JoystickAxis kFlipRobot(3, 3);
-
-const ButtonLocation kLongShot(3, 7);
-const ButtonLocation kCloseShot(3, 6);
-const ButtonLocation kFenderShot(3, 2);
-const ButtonLocation kTrussShot(2, 11);
-const ButtonLocation kHumanPlayerShot(3, 1);
-#endif
-
-const ButtonLocation kUserLeft(2, 7);
-const ButtonLocation kUserRight(2, 10);
-
-const JoystickAxis kAdjustClawGoal(3, 2);
-const JoystickAxis kAdjustClawSeparation(3, 1);
-
-struct ClawGoal {
-  double angle;
-  double separation;
-};
-
-struct ShotGoal {
-  ClawGoal claw;
-  double shot_power;
-  double velocity_compensation;
-  double intake_power;
-};
-
-const double kIntakePower = 4.0;
-// In case we have to quickly adjust it.
-const double kGrabSeparation = 0;
-const double kShootSeparation = 0.11 + kGrabSeparation;
-
-const ClawGoal kTuckGoal = {-2.273474, -0.749484};
-const ClawGoal kVerticalTuckGoal = {0, kGrabSeparation};
-const ClawGoal kIntakeGoal = {-2.24, kGrabSeparation};
-const ClawGoal kIntakeOpenGoal = {-2.0, 1.1};
-
-// TODO(austin): Tune these by hand...
-const ClawGoal kFlippedTuckGoal = {2.733474, -0.75};
-const ClawGoal kFlippedIntakeGoal = {2.0, kGrabSeparation};
-const ClawGoal kFlippedIntakeOpenGoal = {0.95, 1.0};
-
-// 34" between near edge of colored line and rear edge of bumper.
-// Only works running?
-const ShotGoal kLongShotGoal = {
-    {-1.08, kShootSeparation}, 145, 0.04, kIntakePower};
-// old 34" {-1.06, kShootSeparation}, 140, 0.04, kIntakePower};
-const ShotGoal kFlippedLongShotGoal = {
-    {0.96, kShootSeparation}, 145, 0.09, kIntakePower};
-// old 34" {0.96, kShootSeparation}, 140, 0.09, kIntakePower};
-
-// 78" between near edge of colored line and rear edge of bumper.
-const ShotGoal kCloseShotGoal = {
-    {-0.95, kShootSeparation}, 105, 0.2, kIntakePower};
-// 3/4" plunger {-0.90, kShootSeparation}, 105, 0.2, kIntakePower};
-const ShotGoal kFlippedMediumShotGoal = {
-    {0.865, kShootSeparation}, 120, 0.2, kIntakePower};
-// 3/4" plunger {0.80, kShootSeparation}, 105, 0.2, kIntakePower};
-
-// Shot from the fender.
-const ShotGoal kFenderShotGoal = {
-    {-0.68, kShootSeparation}, 115.0, 0.0, kIntakePower};
-const ShotGoal kFlippedShortShotGoal = {
-    {0.63, kShootSeparation}, 115.0, 0.0, kIntakePower};
-
-const ShotGoal kHumanShotGoal = {
-    {-0.90, kShootSeparation}, 140, 0.04, kIntakePower};
-const ShotGoal kFlippedHumanShotGoal = {
-    {0.90, kShootSeparation}, 140, 0, kIntakePower};
-const ShotGoal kTrussShotGoal = {
-    {-0.68, kShootSeparation}, 88.0, 0.4, kIntakePower};
-const ShotGoal kFlippedTrussShotGoal = {
-    {0.68, kShootSeparation}, 92.0, 0.4, kIntakePower};
-
-const ShotGoal kFlippedDemoShotGoal = {
-    {1.0, kShootSeparation}, 65.0, 0.0, kIntakePower};
-const ShotGoal kDemoShotGoal = {
-    {-1.0, kShootSeparation}, 50.0, 0.0, kIntakePower};
-
-const ClawGoal k254PassGoal = {-1.95, kGrabSeparation};
-const ClawGoal kFlipped254PassGoal = {1.96, kGrabSeparation};
-
-// Makes a new ShootAction action.
-::std::unique_ptr<TypedAction< ::frc971::actions::CatchActionGroup>>
-MakeCatchAction() {
-  return ::std::unique_ptr<TypedAction< ::frc971::actions::CatchActionGroup>>(
-      new TypedAction< ::frc971::actions::CatchActionGroup>(
-          &::frc971::actions::catch_action));
-}
-
-// A queue which queues Actions and cancels them.
-class ActionQueue {
- public:
-  // Queues up an action for sending.
-  void QueueAction(::std::unique_ptr<Action> action) {
-    if (current_action_) {
-      LOG(INFO, "Queueing action, canceling prior\n");
-      current_action_->Cancel();
-      next_action_ = ::std::move(action);
-    } else {
-      LOG(INFO, "Queueing action\n");
-      current_action_ = ::std::move(action);
-      current_action_->Start();
-    }
-  }
-
-  // Cancels the current action, and runs the next one when the current one has
-  // finished.
-  void CancelCurrentAction() {
-    LOG(INFO, "Canceling current action\n");
-    if (current_action_) {
-      current_action_->Cancel();
-    }
-  }
-
-  // Cancels all running actions.
-  void CancelAllActions() {
-    LOG(DEBUG, "Cancelling all actions\n");
-    if (current_action_) {
-      current_action_->Cancel();
-    }
-    next_action_.reset();
-  }
-
-  // Runs the next action when the current one is finished running.
-  void Tick() {
-    if (current_action_) {
-      if (!current_action_->Running()) {
-        LOG(INFO, "Action is done.\n");
-        current_action_ = ::std::move(next_action_);
-        if (current_action_) {
-          LOG(INFO, "Running next action\n");
-          current_action_->Start();
-        }
-      }
-    }
-  }
-
-  // Returns true if any action is running or could be running.
-  // For a one cycle faster response, call Tick before running this.
-  bool Running() { return static_cast<bool>(current_action_); }
-
- private:
-  ::std::unique_ptr<Action> current_action_;
-  ::std::unique_ptr<Action> next_action_;
-};
-
-
-class Reader : public ::aos::input::JoystickInput {
- public:
-  Reader()
-      : is_high_gear_(false),
-        shot_power_(80.0),
-        goal_angle_(0.0),
-        separation_angle_(kGrabSeparation),
-        velocity_compensation_(0.0),
-        intake_power_(0.0),
-        was_running_(false) {}
-
-  virtual void RunIteration(const ::aos::input::driver_station::Data &data) {
-    if (data.GetControlBit(ControlBit::kAutonomous)) {
-      if (data.PosEdge(ControlBit::kEnabled)){
-        LOG(INFO, "Starting auto mode\n");
-        ::frc971::autonomous::autonomous.MakeWithBuilder()
-            .run_auto(true)
-            .Send();
-      } else if (data.NegEdge(ControlBit::kEnabled)) {
-        LOG(INFO, "Stopping auto mode\n");
-        ::frc971::autonomous::autonomous.MakeWithBuilder()
-            .run_auto(false)
-            .Send();
-      } else if (!data.GetControlBit(ControlBit::kEnabled)) {
-        {
-          auto goal = drivetrain.goal.MakeMessage();
-          goal->Zero();
-          goal->control_loop_driving = false;
-          goal->left_goal = goal->right_goal = 0;
-          goal->left_velocity_goal = goal->right_velocity_goal = 0;
-          if (!goal.Send()) {
-            LOG(WARNING, "sending 0 drivetrain goal failed\n");
-          }
-        }
-        {
-          // TODO(brians): Make sure this doesn't make it unbrake and not move
-          // or something weird.
-          auto goal = control_loops::shooter_queue_group.goal.MakeMessage();
-          goal->Zero();
-          if (!goal.Send()) {
-            LOG(WARNING, "sending 0 shooter goal failed\n");
-          }
-        }
-      }
-    } else {
-      HandleTeleop(data);
-    }
-  }
-
-  void HandleDrivetrain(const ::aos::input::driver_station::Data &data) {
-    bool is_control_loop_driving = false;
-    double left_goal = 0.0;
-    double right_goal = 0.0;
-    const double wheel = -data.GetAxis(kSteeringWheel);
-    const double throttle = -data.GetAxis(kDriveThrottle);
-    const double kThrottleGain = 1.0 / 2.5;
-    if (false && (data.IsPressed(kDriveControlLoopEnable1) ||
-                  data.IsPressed(kDriveControlLoopEnable2))) {
-      // TODO(austin): Static sucks!
-      static double distance = 0.0;
-      static double angle = 0.0;
-      static double filtered_goal_distance = 0.0;
-      if (data.PosEdge(kDriveControlLoopEnable1) ||
-          data.PosEdge(kDriveControlLoopEnable2)) {
-        if (drivetrain.position.FetchLatest() && gyro_reading.FetchLatest()) {
-          distance = (drivetrain.position->left_encoder +
-                      drivetrain.position->right_encoder) /
-                         2.0 -
-                     throttle * kThrottleGain / 2.0;
-          angle = gyro_reading->angle;
-          filtered_goal_distance = distance;
-        }
-      }
-      is_control_loop_driving = true;
-
-      // const double gyro_angle = Gyro.View().angle;
-      const double goal_theta = angle - wheel * 0.27;
-      const double goal_distance = distance + throttle * kThrottleGain;
-      const double robot_width = 22.0 / 100.0 * 2.54;
-      const double kMaxVelocity = 0.6;
-      if (goal_distance > kMaxVelocity * 0.02 + filtered_goal_distance) {
-        filtered_goal_distance += kMaxVelocity * 0.02;
-      } else if (goal_distance <
-                 -kMaxVelocity * 0.02 + filtered_goal_distance) {
-        filtered_goal_distance -= kMaxVelocity * 0.02;
-      } else {
-        filtered_goal_distance = goal_distance;
-      }
-      left_goal = filtered_goal_distance - robot_width * goal_theta / 2.0;
-      right_goal = filtered_goal_distance + robot_width * goal_theta / 2.0;
-      is_high_gear_ = false;
-
-      LOG(DEBUG, "Left goal %f Right goal %f\n", left_goal, right_goal);
-    }
-    if (!drivetrain.goal.MakeWithBuilder()
-             .steering(wheel)
-             .throttle(throttle)
-             .highgear(is_high_gear_)
-             .quickturn(data.IsPressed(kQuickTurn))
-             .control_loop_driving(is_control_loop_driving)
-             .left_goal(left_goal)
-             .right_goal(right_goal)
-             .left_velocity_goal(0)
-             .right_velocity_goal(0)
-             .Send()) {
-      LOG(WARNING, "sending stick values failed\n");
-    }
-    if (data.PosEdge(kShiftHigh)) {
-      is_high_gear_ = false;
-    }
-    if (data.PosEdge(kShiftLow)) {
-      is_high_gear_ = true;
-    }
-  }
-
-  void SetGoal(ClawGoal goal) {
-    goal_angle_ = goal.angle;
-    separation_angle_ = goal.separation;
-    moving_for_shot_ = false;
-    velocity_compensation_ = 0.0;
-    intake_power_ = 0.0;
-  }
-
-  void SetGoal(ShotGoal goal) {
-    goal_angle_ = goal.claw.angle;
-    shot_separation_angle_ = goal.claw.separation;
-    separation_angle_ = kGrabSeparation;
-    moving_for_shot_ = true;
-    shot_power_ = goal.shot_power;
-    velocity_compensation_ = goal.velocity_compensation;
-    intake_power_ = goal.intake_power;
-  }
-
-  void HandleTeleop(const ::aos::input::driver_station::Data &data) {
-    HandleDrivetrain(data);
-    if (!data.GetControlBit(ControlBit::kEnabled)) {
-      action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-    }
-    if (data.IsPressed(kRollersIn) || data.IsPressed(kRollersOut)) {
-      intake_power_ = 0.0;
-      separation_angle_ = kGrabSeparation;
-      moving_for_shot_ = false;
-    }
-
-    static const double kAdjustClawGoalDeadband = 0.08;
-    double claw_goal_adjust = data.GetAxis(kAdjustClawGoal);
-    if (OLD_DS || ::std::abs(claw_goal_adjust) < kAdjustClawGoalDeadband) {
-      claw_goal_adjust = 0;
-    } else {
-      claw_goal_adjust = (claw_goal_adjust -
-                          ((claw_goal_adjust < 0) ? -kAdjustClawGoalDeadband
-                                                  : kAdjustClawGoalDeadband)) *
-                         0.035;
-    }
-    double claw_separation_adjust = data.GetAxis(kAdjustClawSeparation);
-    if (OLD_DS ||
-        ::std::abs(claw_separation_adjust) < kAdjustClawGoalDeadband) {
-      claw_separation_adjust = 0;
-    } else {
-      claw_separation_adjust =
-          (claw_separation_adjust -
-           ((claw_separation_adjust < 0) ? -kAdjustClawGoalDeadband
-                                         : kAdjustClawGoalDeadband)) *
-          -0.035;
-    }
-
-#if OLD_DS
-    if (data.IsPressed(kFenderShot)) {
-#else
-    if (data.GetAxis(kFlipRobot) > 0.9) {
-#endif
-      claw_goal_adjust += claw_separation_adjust;
-      claw_goal_adjust *= -1;
-
-      if (data.IsPressed(kIntakeOpenPosition)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kFlippedIntakeOpenGoal);
-      } else if (data.IsPressed(kIntakePosition)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kFlippedIntakeGoal);
-      } else if (data.IsPressed(kVerticalTuck)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kVerticalTuckGoal);
-      } else if (data.IsPressed(kTuck)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kFlippedTuckGoal);
-      } else if (data.PosEdge(kLongShot)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kFlippedLongShotGoal);
-      } else if (data.PosEdge(kCloseShot)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kFlippedMediumShotGoal);
-      } else if (data.PosEdge(kFenderShot)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kFlippedShortShotGoal);
-      } else if (data.PosEdge(kHumanPlayerShot)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kFlippedHumanShotGoal);
-      } else if (data.PosEdge(kUserLeft)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kFlipped254PassGoal);
-      } else if (data.PosEdge(kUserRight)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kFlippedDemoShotGoal);
-      } else if (data.PosEdge(kTrussShot)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kFlippedTrussShotGoal);
-      }
-    } else {
-      if (data.IsPressed(kIntakeOpenPosition)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kIntakeOpenGoal);
-      } else if (data.IsPressed(kIntakePosition)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kIntakeGoal);
-      } else if (data.IsPressed(kVerticalTuck)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kVerticalTuckGoal);
-      } else if (data.IsPressed(kTuck)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kTuckGoal);
-      } else if (data.PosEdge(kLongShot)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kLongShotGoal);
-      } else if (data.PosEdge(kCloseShot)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kCloseShotGoal);
-      } else if (data.PosEdge(kFenderShot)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kFenderShotGoal);
-      } else if (data.PosEdge(kHumanPlayerShot)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kHumanShotGoal);
-      } else if (data.PosEdge(kUserLeft)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(k254PassGoal);
-      } else if (data.PosEdge(kUserRight)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kDemoShotGoal);
-      } else if (data.PosEdge(kTrussShot)) {
-        action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-        SetGoal(kTrussShotGoal);
-      }
-    }
-
-    /*
-    if (data.PosEdge(kCatch)) {
-      auto catch_action = MakeCatchAction();
-      catch_action->GetGoal()->catch_angle = goal_angle_;
-      action_queue_.QueueAction(::std::move(catch_action));
-    }
-    */
-
-    if (data.PosEdge(kFire)) {
-      action_queue_.QueueAction(actions::MakeShootAction());
-    } else if (data.NegEdge(kFire)) {
-      action_queue_.CancelCurrentAction();
-    }
-
-    action_queue_.Tick();
-    if (data.IsPressed(kUnload) || data.IsPressed(kReload)) {
-      action_queue_.CancelAllActions();
-        LOG(DEBUG, "Canceling\n");
-      intake_power_ = 0.0;
-      velocity_compensation_ = 0.0;
-    }
-
-    // Send out the claw and shooter goals if no actions are running.
-    if (!action_queue_.Running()) {
-      goal_angle_ += claw_goal_adjust;
-      separation_angle_ += claw_separation_adjust;
-
-      // If the action just ended, turn the intake off and stop velocity
-      // compensating.
-      if (was_running_) {
-        intake_power_ = 0.0;
-        velocity_compensation_ = 0.0;
-      }
-
-      control_loops::drivetrain.status.FetchLatest();
-      double goal_angle = goal_angle_;
-      if (control_loops::drivetrain.status.get()) {
-        goal_angle +=
-            SpeedToAngleOffset(control_loops::drivetrain.status->robot_speed);
-      } else {
-        LOG_INTERVAL(no_drivetrain_status_);
-      }
-
-      if (moving_for_shot_) {
-        auto &claw_status = control_loops::claw_queue_group.status;
-        claw_status.FetchLatest();
-        if (claw_status.get()) {
-          if (::std::abs(claw_status->bottom - goal_angle) < 0.2) {
-            moving_for_shot_ = false;
-            separation_angle_ = shot_separation_angle_;
-          }
-        }
-      }
-
-      double separation_angle = separation_angle_;
-
-      if (data.IsPressed(kCatch)) {
-        const double kCatchSeparation = 1.0;
-        goal_angle -= kCatchSeparation / 2.0;
-        separation_angle = kCatchSeparation;
-      }
-
-      bool intaking =
-          data.IsPressed(kRollersIn) || data.IsPressed(kIntakePosition) ||
-          data.IsPressed(kIntakeOpenPosition) || data.IsPressed(kCatch);
-      if (!control_loops::claw_queue_group.goal.MakeWithBuilder()
-               .bottom_angle(goal_angle)
-               .separation_angle(separation_angle)
-               .intake(intaking ? 12.0
-                                : (data.IsPressed(kRollersOut) ? -12.0
-                                                               : intake_power_))
-               .centering(intaking ? 12.0 : 0.0)
-               .Send()) {
-        LOG(WARNING, "sending claw goal failed\n");
-      }
-
-      if (!control_loops::shooter_queue_group.goal.MakeWithBuilder()
-               .shot_power(shot_power_)
-               .shot_requested(data.IsPressed(kFire))
-               .unload_requested(data.IsPressed(kUnload))
-               .load_requested(data.IsPressed(kReload))
-               .Send()) {
-        LOG(WARNING, "sending shooter goal failed\n");
-      }
-    }
-    was_running_ = action_queue_.Running();
-  }
-
-  double SpeedToAngleOffset(double speed) {
-    const frc971::constants::Values &values = frc971::constants::GetValues();
-    // scale speed to a [0.0-1.0] on something close to the max
-    // TODO(austin): Change the scale factor for different shots.
-    return (speed / values.drivetrain_max_speed) * velocity_compensation_;
-  }
-
- private:
-  bool is_high_gear_;
-  double shot_power_;
-  double goal_angle_;
-  double separation_angle_, shot_separation_angle_;
-  double velocity_compensation_;
-  double intake_power_;
-  bool was_running_;
-  bool moving_for_shot_ = false;
-  
-  ActionQueue action_queue_;
-
-  ::aos::util::SimpleLogInterval no_drivetrain_status_ =
-      ::aos::util::SimpleLogInterval(::aos::time::Time::InSeconds(0.2), WARNING,
-                                     "no drivetrain status");
-};
-
-}  // namespace joysticks
-}  // namespace input
-}  // namespace frc971
-
-int main() {
-  ::aos::Init();
-  ::frc971::input::joysticks::Reader reader;
-  reader.Run();
-  ::aos::Cleanup();
-}
diff --git a/frc971/input/sensor_receiver.cc b/frc971/input/sensor_receiver.cc
deleted file mode 100644
index 1cdf201..0000000
--- a/frc971/input/sensor_receiver.cc
+++ /dev/null
@@ -1,279 +0,0 @@
-#include <inttypes.h>
-
-#include "aos/linux_code/init.h"
-#include "aos/common/logging/logging.h"
-#include "aos/common/util/wrapping_counter.h"
-#include "aos/common/time.h"
-#include "aos/common/logging/queue_logging.h"
-#include "aos/common/controls/output_check.q.h"
-
-#include "bbb/sensor_reader.h"
-
-#include "frc971/control_loops/drivetrain/drivetrain.q.h"
-#include "frc971/queues/other_sensors.q.h"
-#include "frc971/queues/gyro.q.h"
-#include "frc971/constants.h"
-#include "frc971/queues/to_log.q.h"
-#include "frc971/control_loops/shooter/shooter.q.h"
-#include "frc971/control_loops/claw/claw.q.h"
-#include "frc971/shifter_hall_effect.h"
-
-#ifndef M_PI
-#define M_PI 3.14159265358979323846
-#endif
-
-using ::frc971::control_loops::drivetrain;
-using ::frc971::sensors::other_sensors;
-using ::frc971::sensors::gyro_reading;
-using ::aos::util::WrappingCounter;
-
-namespace frc971 {
-namespace {
-
-struct State {
-  struct HallEffectCounters {
-    WrappingCounter posedges, negedges;
-  };
-
-  HallEffectCounters plunger, pusher_distal, pusher_proximal, latch;
-
-  struct SingleClawState {
-    HallEffectCounters front, calibration, back;
-  } top_claw, bottom_claw;
-};
-
-double drivetrain_translate(int32_t in) {
-  return static_cast<double>(in)
-      / (256.0 /*cpr*/ * 4.0 /*quad*/)
-      * (18.0 / 50.0 /*output stage*/) * (56.0 / 30.0 /*encoder gears*/)
-      // * constants::GetValues().drivetrain_encoder_ratio
-      * (3.5 /*wheel diameter*/ * 2.54 / 100.0 * M_PI);
-}
-
-static const double kVcc = 5.15;
-
-// Translates values from the ADC into voltage.
-double adc_translate(uint16_t in) {
-  if (false) {
-    // This is the simple theoretical math.
-    static const uint16_t kMaximumValue = 0x3FF;
-    static const double kR1 = 5, kR2 = 6.65;
-    const double raw =
-        (kVcc * static_cast<double>(in) / static_cast<double>(kMaximumValue));
-    return (raw * (kR1 + kR2) - (kVcc / 2) * kR2) / kR1;
-  } else {
-    // This is from a linear regression calculated with some actual data points.
-    static const double kM = 0.012133, kB = -3.6813;
-    return static_cast<double>(in) * kM + kB;
-  }
-}
-
-double battery_translate(uint16_t in_high, uint16_t in_low) {
-  const double high = adc_translate(in_high), low = adc_translate(in_low);
-  static const double kDividerBig = 5.55, kDividerSmall = 2.66;
-  return (high - low) * (kDividerBig + kDividerSmall) / kDividerSmall +
-      kDividerBig / kDividerSmall * kVcc;
-}
-
-double gyro_translate(int64_t in) {
-  return in / 16.0 / 1000.0 / (180.0 / M_PI);
-}
-
-double sonar_translate(uint32_t in) {
-  return static_cast<double>(in) * 10.0 /*us/tick*/ / 147.0 /*in/us*/ *
-         0.0254 /*m/in*/;
-}
-
-double hall_translate(const constants::ShifterHallEffect &k, uint16_t in_low,
-                      uint16_t in_high) {
-  const double low_ratio =
-      0.5 * (in_low - static_cast<double>(k.low_gear_low)) /
-      static_cast<double>(k.low_gear_middle - k.low_gear_low);
-  const double high_ratio =
-      0.5 + 0.5 * (in_high - static_cast<double>(k.high_gear_middle)) /
-      static_cast<double>(k.high_gear_high - k.high_gear_middle);
-
-  // Return low when we are below 1/2, and high when we are above 1/2.
-  if (low_ratio + high_ratio < 1.0) {
-    return low_ratio;
-  } else {
-    return high_ratio;
-  }
-}
-
-double claw_translate(int32_t in) {
-  return static_cast<double>(in)
-      / (256.0 /*cpr*/ * 4.0 /*quad*/)
-      / (18.0 / 48.0 /*encoder gears*/)
-      / (12.0 / 60.0 /*chain reduction*/)
-      * (M_PI / 180.0)
-      * 2.0 /*TODO(austin): Debug this, encoders read too little*/;
-}
-
-double shooter_translate(int32_t in) {
-  return static_cast<double>(in)
-      / (256.0 /*cpr*/ * 4.0 /*quad*/)
-      * 16 /*sprocket teeth*/ * 0.375 /*chain pitch*/
-      * (2.54 / 100.0 /*in to m*/);
-}
-
-template<typename Structure>
-void CopyHallEffectEdges(Structure *output,
-                         const ::bbb::HallEffectEdges &input,
-                         State::HallEffectCounters *state) {
-  output->posedge_count = state->posedges.Update(input.posedges);
-  output->negedge_count = state->negedges.Update(input.negedges);
-}
-
-void CopyClawPosition(control_loops::HalfClawPosition *output,
-                      const ::bbb::SingleClawPosition &input,
-                      State::SingleClawState *state,
-                      bool reversed) {
-  CopyHallEffectEdges(&output->front, input.front, &state->front);
-  output->front.current = input.bools.front;
-  CopyHallEffectEdges(&output->calibration, input.calibration,
-                      &state->calibration);
-  output->calibration.current = input.bools.calibration;
-  CopyHallEffectEdges(&output->back, input.back, &state->back);
-  output->back.current = input.bools.back;
-
-  const double multiplier = reversed ? -1.0 : 1.0;
-
-  output->position = multiplier * claw_translate(input.position);
-  output->posedge_value = multiplier * claw_translate(input.posedge_position);
-  output->negedge_value = multiplier * claw_translate(input.negedge_position);
-}
-
-void PacketReceived(const ::bbb::DataStruct *data,
-                    const ::aos::time::Time &cape_timestamp,
-                    State *state) {
-  ::aos::time::TimeFreezer time_freezer;
-
-  ::frc971::logging_structs::CapeReading reading_to_log(
-      cape_timestamp, static_cast<uint16_t>(sizeof(*data)),
-      sonar_translate(data->main.ultrasonic_pulse_length),
-      adc_translate(data->main.auto_mode_selector),
-      data->main.low_left_drive_hall, data->main.high_left_drive_hall,
-      data->main.low_right_drive_hall, data->main.high_right_drive_hall);
-  LOG_STRUCT(DEBUG, "cape reading", reading_to_log);
-  bool bad_gyro;
-  // TODO(brians): Switch to LogInterval for these things.
-  if (data->uninitialized_gyro) {
-    LOG(DEBUG, "uninitialized gyro\n");
-    bad_gyro = true;
-  } else if (data->zeroing_gyro) {
-    LOG(DEBUG, "zeroing gyro\n");
-    bad_gyro = true;
-  } else if (data->bad_gyro) {
-    LOG(ERROR, "bad gyro\n");
-    bad_gyro = true;
-  } else if (data->old_gyro_reading) {
-    LOG(WARNING, "old/bad gyro reading\n");
-    bad_gyro = true;
-  } else {
-    bad_gyro = false;
-  }
-
-  if (!bad_gyro) {
-    gyro_reading.MakeWithBuilder()
-        .angle(gyro_translate(data->gyro_angle))
-        .Send();
-  }
-
-  if (data->analog_errors != 0) {
-    LOG(WARNING, "%" PRIu8 " analog errors\n", data->analog_errors);
-  }
-
-  if (data->main.output_check_pulse_length != 0) {
-    auto message = ::aos::controls::output_check_received.MakeMessage();
-    // TODO(brians): Fix this math to match what the cRIO actually does.
-    // It's close but not quite right.
-    message->pulse_length =
-        static_cast<double>(data->main.output_check_pulse_length) / 10000.0;
-    if (message->pulse_length > 2.7) {
-      LOG(WARNING, "insane PWM pulse length %fms\n", message->pulse_length);
-    } else {
-      message->pwm_value = (message->pulse_length - 0.5) / 2.0 * 255.0 + 0.5;
-      LOG_STRUCT(DEBUG, "received", *message);
-      message.Send();
-    }
-  }
-
-  // Only send them out (approximately) every 10ms because the loops are now
-  // clocked off of this.
-  static int i = 0;
-  ++i;
-  if (i < 5) {
-    LOG(DEBUG, "skipping\n");
-    return;
-  } else {
-    i = 0;
-  }
-
-  other_sensors.MakeWithBuilder()
-      .sonar_distance(sonar_translate(data->main.ultrasonic_pulse_length))
-      .Send();
-
-  ::frc971::sensors::auto_mode.MakeWithBuilder()
-      .voltage(adc_translate(data->main.auto_mode_selector))
-      .Send();
-
-  drivetrain.position.MakeWithBuilder()
-      .right_encoder(drivetrain_translate(data->main.right_drive))
-      .left_encoder(-drivetrain_translate(data->main.left_drive))
-      .left_shifter_position(hall_translate(constants::GetValues().left_drive,
-                                            data->main.low_left_drive_hall,
-                                            data->main.high_left_drive_hall))
-      .right_shifter_position(hall_translate(constants::GetValues().right_drive,
-                                             data->main.low_right_drive_hall,
-                                             data->main.high_right_drive_hall))
-      .battery_voltage(battery_translate(data->main.battery_voltage_high,
-                                         data->main.battery_voltage_low))
-      .Send();
-
-  {
-    auto claw_position = control_loops::claw_queue_group.position.MakeMessage();
-    CopyClawPosition(&claw_position->top, data->main.top_claw,
-                     &state->top_claw, false);
-    CopyClawPosition(&claw_position->bottom, data->main.bottom_claw,
-                     &state->bottom_claw, true);
-    claw_position.Send();
-  }
-
-  {
-    auto shooter_position =
-        control_loops::shooter_queue_group.position.MakeMessage();
-
-    shooter_position->plunger = data->main.bools.plunger;
-    CopyHallEffectEdges(&shooter_position->pusher_distal,
-                        data->main.pusher_distal, &state->pusher_distal);
-    shooter_position->pusher_distal.current = data->main.bools.pusher_distal;
-    CopyHallEffectEdges(&shooter_position->pusher_proximal,
-                        data->main.pusher_proximal, &state->pusher_proximal);
-    shooter_position->pusher_proximal.current =
-        data->main.bools.pusher_proximal;
-    shooter_position->latch = data->main.bools.latch;
-
-    shooter_position->position = shooter_translate(data->main.shooter_position);
-    shooter_position->pusher_distal.posedge_value =
-        shooter_translate(data->main.pusher_distal_posedge_position);
-    shooter_position->pusher_proximal.posedge_value =
-        shooter_translate(data->main.pusher_proximal_posedge_position);
-
-    shooter_position.Send();
-  }
-}
-
-}  // namespace
-}  // namespace frc971
-
-int main() {
-  ::aos::Init(::bbb::SensorReader::kRelativePriority);
-  ::bbb::SensorReader reader("comp");
-  ::frc971::State state;
-  while (true) {
-    ::frc971::PacketReceived(reader.ReadPacket(), reader.GetCapeTimestamp(),
-                             &state);
-  }
-  ::aos::Cleanup();
-}
diff --git a/frc971/joystick_reader.cc b/frc971/joystick_reader.cc
new file mode 100644
index 0000000..c96734c
--- /dev/null
+++ b/frc971/joystick_reader.cc
@@ -0,0 +1,226 @@
+#include <stdio.h>
+#include <string.h>
+#include <unistd.h>
+#include <math.h>
+
+#include "aos/linux_code/init.h"
+#include "aos/prime/input/joystick_input.h"
+#include "aos/common/input/driver_station_data.h"
+#include "aos/common/logging/logging.h"
+#include "aos/common/util/log_interval.h"
+#include "aos/common/time.h"
+
+#include "frc971/control_loops/drivetrain/drivetrain.q.h"
+#include "frc971/constants.h"
+#include "frc971/queues/gyro.q.h"
+#include "frc971/autonomous/auto.q.h"
+#include "frc971/actions/action_client.h"
+
+using ::frc971::control_loops::drivetrain;
+using ::frc971::sensors::gyro_reading;
+
+using ::aos::input::driver_station::ButtonLocation;
+using ::aos::input::driver_station::JoystickAxis;
+using ::aos::input::driver_station::ControlBit;
+
+namespace frc971 {
+namespace input {
+namespace joysticks {
+
+const ButtonLocation kDriveControlLoopEnable1(1, 7),
+                     kDriveControlLoopEnable2(1, 11);
+const JoystickAxis kSteeringWheel(1, 1), kDriveThrottle(2, 2);
+const ButtonLocation kShiftHigh(2, 1), kShiftLow(2, 3);
+const ButtonLocation kQuickTurn(1, 5);
+
+// A queue which queues Actions and cancels them.
+class ActionQueue {
+ public:
+  // Queues up an action for sending.
+  void QueueAction(::std::unique_ptr<Action> action) {
+    if (current_action_) {
+      LOG(INFO, "Queueing action, canceling prior\n");
+      current_action_->Cancel();
+      next_action_ = ::std::move(action);
+    } else {
+      LOG(INFO, "Queueing action\n");
+      current_action_ = ::std::move(action);
+      current_action_->Start();
+    }
+  }
+
+  // Cancels the current action, and runs the next one when the current one has
+  // finished.
+  void CancelCurrentAction() {
+    LOG(INFO, "Canceling current action\n");
+    if (current_action_) {
+      current_action_->Cancel();
+    }
+  }
+
+  // Cancels all running actions.
+  void CancelAllActions() {
+    LOG(DEBUG, "Cancelling all actions\n");
+    if (current_action_) {
+      current_action_->Cancel();
+    }
+    next_action_.reset();
+  }
+
+  // Runs the next action when the current one is finished running.
+  void Tick() {
+    if (current_action_) {
+      if (!current_action_->Running()) {
+        LOG(INFO, "Action is done.\n");
+        current_action_ = ::std::move(next_action_);
+        if (current_action_) {
+          LOG(INFO, "Running next action\n");
+          current_action_->Start();
+        }
+      }
+    }
+  }
+
+  // Returns true if any action is running or could be running.
+  // For a one cycle faster response, call Tick before running this.
+  bool Running() { return static_cast<bool>(current_action_); }
+
+ private:
+  ::std::unique_ptr<Action> current_action_;
+  ::std::unique_ptr<Action> next_action_;
+};
+
+
+class Reader : public ::aos::input::JoystickInput {
+ public:
+  Reader()
+      : is_high_gear_(false),
+        was_running_(false) {}
+
+  virtual void RunIteration(const ::aos::input::driver_station::Data &data) {
+    if (data.GetControlBit(ControlBit::kAutonomous)) {
+      if (data.PosEdge(ControlBit::kEnabled)){
+        LOG(INFO, "Starting auto mode\n");
+        ::frc971::autonomous::autonomous.MakeWithBuilder()
+            .run_auto(true)
+            .Send();
+      } else if (data.NegEdge(ControlBit::kEnabled)) {
+        LOG(INFO, "Stopping auto mode\n");
+        ::frc971::autonomous::autonomous.MakeWithBuilder()
+            .run_auto(false)
+            .Send();
+      } else if (!data.GetControlBit(ControlBit::kEnabled)) {
+        {
+          auto goal = drivetrain.goal.MakeMessage();
+          goal->Zero();
+          goal->control_loop_driving = false;
+          goal->left_goal = goal->right_goal = 0;
+          goal->left_velocity_goal = goal->right_velocity_goal = 0;
+          if (!goal.Send()) {
+            LOG(WARNING, "sending 0 drivetrain goal failed\n");
+          }
+        }
+      }
+    } else {
+      HandleTeleop(data);
+    }
+  }
+
+  void HandleDrivetrain(const ::aos::input::driver_station::Data &data) {
+    bool is_control_loop_driving = false;
+    double left_goal = 0.0;
+    double right_goal = 0.0;
+    const double wheel = -data.GetAxis(kSteeringWheel);
+    const double throttle = -data.GetAxis(kDriveThrottle);
+    const double kThrottleGain = 1.0 / 2.5;
+    if (false && (data.IsPressed(kDriveControlLoopEnable1) ||
+                  data.IsPressed(kDriveControlLoopEnable2))) {
+      // TODO(austin): Static sucks!
+      static double distance = 0.0;
+      static double angle = 0.0;
+      static double filtered_goal_distance = 0.0;
+      if (data.PosEdge(kDriveControlLoopEnable1) ||
+          data.PosEdge(kDriveControlLoopEnable2)) {
+        if (drivetrain.position.FetchLatest() && gyro_reading.FetchLatest()) {
+          distance = (drivetrain.position->left_encoder +
+                      drivetrain.position->right_encoder) /
+                         2.0 -
+                     throttle * kThrottleGain / 2.0;
+          angle = gyro_reading->angle;
+          filtered_goal_distance = distance;
+        }
+      }
+      is_control_loop_driving = true;
+
+      // const double gyro_angle = Gyro.View().angle;
+      const double goal_theta = angle - wheel * 0.27;
+      const double goal_distance = distance + throttle * kThrottleGain;
+      const double robot_width = 22.0 / 100.0 * 2.54;
+      const double kMaxVelocity = 0.6;
+      if (goal_distance > kMaxVelocity * 0.02 + filtered_goal_distance) {
+        filtered_goal_distance += kMaxVelocity * 0.02;
+      } else if (goal_distance <
+                 -kMaxVelocity * 0.02 + filtered_goal_distance) {
+        filtered_goal_distance -= kMaxVelocity * 0.02;
+      } else {
+        filtered_goal_distance = goal_distance;
+      }
+      left_goal = filtered_goal_distance - robot_width * goal_theta / 2.0;
+      right_goal = filtered_goal_distance + robot_width * goal_theta / 2.0;
+      is_high_gear_ = false;
+
+      LOG(DEBUG, "Left goal %f Right goal %f\n", left_goal, right_goal);
+    }
+    if (!drivetrain.goal.MakeWithBuilder()
+             .steering(wheel)
+             .throttle(throttle)
+             .highgear(is_high_gear_)
+             .quickturn(data.IsPressed(kQuickTurn))
+             .control_loop_driving(is_control_loop_driving)
+             .left_goal(left_goal)
+             .right_goal(right_goal)
+             .left_velocity_goal(0)
+             .right_velocity_goal(0)
+             .Send()) {
+      LOG(WARNING, "sending stick values failed\n");
+    }
+    if (data.PosEdge(kShiftHigh)) {
+      is_high_gear_ = false;
+    }
+    if (data.PosEdge(kShiftLow)) {
+      is_high_gear_ = true;
+    }
+  }
+
+  void HandleTeleop(const ::aos::input::driver_station::Data &data) {
+    HandleDrivetrain(data);
+    if (!data.GetControlBit(ControlBit::kEnabled)) {
+      action_queue_.CancelAllActions();
+        LOG(DEBUG, "Canceling\n");
+    }
+
+    action_queue_.Tick();
+    was_running_ = action_queue_.Running();
+  }
+
+ private:
+  bool is_high_gear_;
+  bool was_running_;
+
+  ActionQueue action_queue_;
+
+  ::aos::util::SimpleLogInterval no_drivetrain_status_ =
+      ::aos::util::SimpleLogInterval(::aos::time::Time::InSeconds(0.2), WARNING,
+                                     "no drivetrain status");
+};
+
+}  // namespace joysticks
+}  // namespace input
+}  // namespace frc971
+
+int main() {
+  ::aos::Init();
+  ::frc971::input::joysticks::Reader reader;
+  reader.Run();
+  ::aos::Cleanup();
+}
diff --git a/frc971/output/led_setter.cc b/frc971/output/led_setter.cc
deleted file mode 100644
index 53c4974..0000000
--- a/frc971/output/led_setter.cc
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "aos/common/logging/logging.h"
-#include "aos/linux_code/init.h"
-
-#include "bbb/led.h"
-
-#include "frc971/control_loops/claw/claw.q.h"
-
-using ::frc971::control_loops::claw_queue_group;
-
-int main() {
-  ::aos::InitNRT();
-
-  ::bbb::LED claw_zeroed(3);
-
-  while (true) {
-    claw_queue_group.status.FetchNextBlocking();
-    claw_zeroed.Set(claw_queue_group.status->zeroed_for_auto);
-  }
-}
diff --git a/frc971/output/motor_writer.cc b/frc971/output/motor_writer.cc
deleted file mode 100644
index 19d431c..0000000
--- a/frc971/output/motor_writer.cc
+++ /dev/null
@@ -1,130 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-#include <unistd.h>
-
-#include "aos/prime/output/motor_output.h"
-#include "aos/common/logging/logging.h"
-#include "aos/linux_code/init.h"
-#include "aos/common/util/log_interval.h"
-#include "aos/common/time.h"
-#include "aos/common/logging/queue_logging.h"
-#include "aos/common/controls/output_check.q.h"
-
-#include "frc971/control_loops/drivetrain/drivetrain.q.h"
-#include "frc971/control_loops/claw/claw.q.h"
-#include "frc971/control_loops/shooter/shooter.q.h"
-
-using ::aos::util::SimpleLogInterval;
-
-namespace frc971 {
-namespace output {
-
-class MotorWriter : public ::aos::MotorOutput {
-  // Maximum age of an output packet before the motors get zeroed instead.
-  static const int kOutputMaxAgeMS = 20;
-  static constexpr ::aos::time::Time kOldLogInterval =
-      ::aos::time::Time::InSeconds(0.5);
-
-  double Cap(double value, double max) {
-    if (value > max) return max;
-    if (value < -max) return -max;
-    return value;
-  }
-
-  virtual void RunIteration() {
-    values_.digital_module = 0;
-    values_.pressure_switch_channel = 1;
-    values_.compressor_channel = 1;
-    values_.solenoid_module = 0;
-
-    if (true) {
-      static auto &drivetrain = ::frc971::control_loops::drivetrain.output;
-      drivetrain.FetchLatest();
-      if (drivetrain.IsNewerThanMS(kOutputMaxAgeMS)) {
-        LOG_STRUCT(DEBUG, "will output", *drivetrain);
-        SetPWMOutput(3, drivetrain->right_voltage / 12.0, kTalonBounds);
-        SetPWMOutput(6, -drivetrain->left_voltage / 12.0, kTalonBounds);
-        SetSolenoid(7, drivetrain->left_high);
-        SetSolenoid(8, drivetrain->right_high);
-      } else {
-        DisablePWMOutput(3);
-        DisablePWMOutput(6);
-        LOG_INTERVAL(drivetrain_old_);
-      }
-      drivetrain_old_.Print();
-    }
-
-    {
-      static auto &shooter =
-          ::frc971::control_loops::shooter_queue_group.output;
-      shooter.FetchLatest();
-      if (shooter.IsNewerThanMS(kOutputMaxAgeMS)) {
-        LOG_STRUCT(DEBUG, "will output", *shooter);
-        SetPWMOutput(7, shooter->voltage / 12.0, kTalonBounds);
-        SetSolenoid(6, !shooter->latch_piston);
-        SetSolenoid(5, !shooter->brake_piston);
-      } else {
-        DisablePWMOutput(9);
-        SetSolenoid(5, false);  // engage the brake
-        LOG_INTERVAL(shooter_old_);
-      }
-      shooter_old_.Print();
-    }
-
-    {
-      static auto &claw = ::frc971::control_loops::claw_queue_group.output;
-      claw.FetchLatest();
-      if (claw.IsNewerThanMS(kOutputMaxAgeMS)) {
-        LOG_STRUCT(DEBUG, "will output", *claw);
-        SetPWMOutput(9, claw->intake_voltage / 12.0, kTalonBounds);
-        SetPWMOutput(8, claw->intake_voltage / 12.0, kTalonBounds);
-        SetPWMOutput(1, -claw->bottom_claw_voltage / 12.0, kTalonBounds);
-        SetPWMOutput(2, claw->top_claw_voltage / 12.0, kTalonBounds);
-        SetPWMOutput(5, claw->tusk_voltage / 12.0, kTalonBounds);  // left
-        SetPWMOutput(4, -claw->tusk_voltage / 12.0, kTalonBounds);  // right
-      } else {
-        DisablePWMOutput(6);
-        DisablePWMOutput(7);
-        DisablePWMOutput(1);
-        DisablePWMOutput(2);
-        DisablePWMOutput(4);
-        DisablePWMOutput(5);
-        LOG_INTERVAL(claw_old_);
-      }
-      claw_old_.Print();
-    }
-
-    {
-      auto message = ::aos::controls::output_check_sent.MakeMessage();
-      ++output_check_;
-      if (output_check_ == 0) output_check_ = 1;
-      SetRawPWMOutput(10, output_check_);
-      message->pwm_value = output_check_;
-      message->pulse_length =
-          static_cast<double>(message->pwm_value) / 255.0 * 2.0 + 0.5;
-      LOG_STRUCT(DEBUG, "sending", *message);
-      message.Send();
-    }
-  }
-
-  SimpleLogInterval drivetrain_old_ =
-      SimpleLogInterval(kOldLogInterval, WARNING, "drivetrain too old");
-  SimpleLogInterval shooter_old_ =
-      SimpleLogInterval(kOldLogInterval, WARNING, "shooter too old");
-  SimpleLogInterval claw_old_ =
-      SimpleLogInterval(kOldLogInterval, WARNING, "claw too old");
-
-  uint8_t output_check_ = 0;
-};
-
-constexpr ::aos::time::Time MotorWriter::kOldLogInterval;
-
-}  // namespace output
-}  // namespace frc971
-
-int main() {
-  ::aos::Init();
-  ::frc971::output::MotorWriter writer;
-  writer.Run();
-  ::aos::Cleanup();
-}
diff --git a/frc971/output/output.gyp b/frc971/output/output.gyp
deleted file mode 100644
index edae002..0000000
--- a/frc971/output/output.gyp
+++ /dev/null
@@ -1,60 +0,0 @@
-{
-  'targets': [
-    {
-      'target_name': 'led_setter',
-      'type': 'executable',
-      'sources': [
-        'led_setter.cc',
-      ],
-      'dependencies': [
-        '<(DEPTH)/frc971/control_loops/claw/claw.gyp:claw_loop',
-        '<(DEPTH)/bbb_cape/src/bbb/bbb.gyp:led',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/linux_code/linux_code.gyp:init',
-      ],
-    },
-    {
-      'target_name': 'CameraServer',
-      'type': 'executable',
-      'sources': [
-        'CameraServer.cc',
-      ],
-      'dependencies': [
-        '<(AOS)/linux_code/output/output.gyp:http_server',
-        '../frc971.gyp:constants',
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(AOS)/linux_code/linux_code.gyp:configuration',
-      ],
-      'copies': [
-        {
-          'destination': '<(rsync_dir)',
-          'files': [
-            'robot.html.tpl',
-          ],
-        },
-      ],
-    },
-    {
-      'target_name': 'motor_writer',
-      'type': 'executable',
-      'sources': [
-        'motor_writer.cc'
-      ],
-      'dependencies': [
-        '<(AOS)/prime/output/output.gyp:motor_output',
-        '<(AOS)/linux_code/linux_code.gyp:init',
-        '<(AOS)/build/aos.gyp:logging',
-        '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
-        '<(AOS)/common/controls/controls.gyp:control_loop',
-        '<(DEPTH)/frc971/queues/queues.gyp:queues',
-        '<(AOS)/common/util/util.gyp:log_interval',
-        '<(AOS)/common/common.gyp:time',
-        '<(AOS)/common/logging/logging.gyp:queue_logging',
-        '<(DEPTH)/frc971/control_loops/claw/claw.gyp:claw_loop',
-        '<(DEPTH)/frc971/control_loops/shooter/shooter.gyp:shooter_loop',
-        '<(AOS)/common/controls/controls.gyp:output_check',
-      ],
-    },
-  ],
-}
diff --git a/frc971/prime/.gitignore b/frc971/prime/.gitignore
deleted file mode 100644
index b1eea9c..0000000
--- a/frc971/prime/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-/shooter.csv
-/wrist.csv
diff --git a/frc971/prime/prime.gyp b/frc971/prime/prime.gyp
index 8455ba9..121ce33 100644
--- a/frc971/prime/prime.gyp
+++ b/frc971/prime/prime.gyp
@@ -5,78 +5,29 @@
       'type': 'none',
       'dependencies': [
         '<(AOS)/build/aos_all.gyp:Prime',
-        '<(DEPTH)/bbb_cape/src/bbb/bbb.gyp:all_tests',
 
         '../control_loops/control_loops.gyp:state_feedback_loop_test',
         '../control_loops/drivetrain/drivetrain.gyp:drivetrain',
         '../control_loops/drivetrain/drivetrain.gyp:drivetrain_lib_test',
-        '../control_loops/claw/claw.gyp:claw',
-        '../control_loops/claw/claw.gyp:claw_calibration',
-        '../control_loops/claw/claw.gyp:claw_lib_test',
-        '../control_loops/shooter/shooter.gyp:shooter',
-        '../control_loops/shooter/shooter.gyp:shooter_lib_test',
         '../autonomous/autonomous.gyp:auto',
-        '../actions/actions.gyp:shoot_action',
-        '../actions/actions.gyp:selfcatch_action',
-        '../actions/actions.gyp:catch_action',
         '../actions/actions.gyp:drivetrain_action',
-        '../input/input.gyp:joystick_reader',
-        '../input/input.gyp:hot_goal_reader',
-        '../input/input.gyp:sensor_receiver',
-      ],
-      'variables': {
-        'cape_src': '<(DEPTH)/bbb_cape/src/cape',
-        'cape_hex': '<(cape_src)/.obj/main_comp.hex',
-      },
-      'actions': [
-        {
-          'action_name': 'make_cape',
-          'inputs': [
-            '<!@(find <(cape_src) -name ".*" -prune -o -type f -print)',
-            '<(cape_src)/Makefile',
-          ],
-          'outputs': [
-            '<(cape_hex)',
-          ],
-          'action': ['make', '-C', '<(cape_src)'],
-          'message': 'Building cape code',
-        },
+        '../frc971.gyp:joystick_reader',
       ],
       'copies': [
         {
           'destination': '<(rsync_dir)',
           'files': [
-            '<(cape_hex)',
+            'start_list.txt',
           ],
-          'conditions': [
-            ['FULL_COMPILER=="gcc_frc"', {
-              'files': [
-                'roborio/start_list.txt',
-              ],
-            }, {
-              'files': [
-                'start_list.txt',
-              ],
-            }
-          ]],
         },
       ],
       'conditions': [
-        ['FULL_COMPILER=="gcc_frc"', {
+        ['ARCHITECTURE=="arm"', {
           'dependencies': [
             '../wpilib/wpilib.gyp:wpilib_interface',
           ],
-        }, {
-          'dependencies': [
-            '<(DEPTH)/bbb_cape/src/flasher/flasher.gyp:stm32_flasher',
-            '../output/output.gyp:motor_writer',
-            '<(DEPTH)/bbb_cape/src/bbb/bbb.gyp:uart_reader_main',
-            '<(DEPTH)/bbb_cape/src/bbb/bbb.gyp:test_sensor_receiver',
-            '../output/output.gyp:led_setter',
-            '<(AOS)/prime/input/input.gyp:joystick_proxy',
-          ],
-        }
-      ]],
+        }],
+      ],
     },
   ],
 }
diff --git a/frc971/prime/roborio/start_list.txt b/frc971/prime/roborio/start_list.txt
deleted file mode 100644
index d13d0d1..0000000
--- a/frc971/prime/roborio/start_list.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-binary_log_writer
-wpilib_interface
-joystick_reader
-drivetrain
-auto
-claw
-shooter
-shoot_action
-drivetrain_action
-catch_action
-hot_goal_reader
diff --git a/frc971/prime/start_list.txt b/frc971/prime/start_list.txt
index 276aca8..d13d0d1 100644
--- a/frc971/prime/start_list.txt
+++ b/frc971/prime/start_list.txt
@@ -1,10 +1,8 @@
 binary_log_writer
-motor_writer
+wpilib_interface
 joystick_reader
 drivetrain
 auto
-sensor_receiver
-joystick_proxy
 claw
 shooter
 shoot_action
diff --git a/frc971/queues/hot_goal.q b/frc971/queues/hot_goal.q
deleted file mode 100644
index 3444553..0000000
--- a/frc971/queues/hot_goal.q
+++ /dev/null
@@ -1,7 +0,0 @@
-package frc971;
-
-message HotGoal {
-	uint64_t left_count;
-	uint64_t right_count;
-};
-queue HotGoal hot_goal;
diff --git a/frc971/queues/other_sensors.q b/frc971/queues/other_sensors.q
deleted file mode 100644
index 85f2ad6..0000000
--- a/frc971/queues/other_sensors.q
+++ /dev/null
@@ -1,12 +0,0 @@
-package frc971.sensors;
-
-message OtherSensors {
-	double sonar_distance;
-	double plunger_hall_effect_distance;
-};
-queue OtherSensors other_sensors;
-
-message AutoMode {
-	double voltage;
-};
-queue AutoMode auto_mode;
diff --git a/frc971/queues/queues.gyp b/frc971/queues/queues.gyp
index e503e46..1818f89 100644
--- a/frc971/queues/queues.gyp
+++ b/frc971/queues/queues.gyp
@@ -1,23 +1,6 @@
 {
-  'variables': {
-    'queue_files': [
-      'other_sensors.q',
-      'to_log.q',
-    ]
-  },
   'targets': [
     {
-      'target_name': 'hot_goal',
-      'type': 'static_library',
-      'sources': [
-        'hot_goal.q',
-      ],
-      'variables': {
-        'header_path': 'frc971/queues',
-      },
-      'includes': ['../../aos/build/queues.gypi'],
-    },
-    {
       'target_name': 'gyro',
       'type': 'static_library',
       'sources': [
@@ -28,14 +11,5 @@
       },
       'includes': ['../../aos/build/queues.gypi'],
     },
-    {
-      'target_name': 'queues',
-      'type': 'static_library',
-      'sources': ['<@(queue_files)'],
-      'variables': {
-        'header_path': 'frc971/queues',
-      },
-      'includes': ['../../aos/build/queues.gypi'],
-    },
   ],
 }
diff --git a/frc971/queues/to_log.q b/frc971/queues/to_log.q
deleted file mode 100644
index 218f37e..0000000
--- a/frc971/queues/to_log.q
+++ /dev/null
@@ -1,13 +0,0 @@
-package frc971.logging_structs;
-
-struct CapeReading {
-  Time time;
-  uint16_t struct_size;
-  double sonar;
-  double auto_choice;
-
-  uint16_t left_low;
-  uint16_t left_high;
-  uint16_t right_low;
-  uint16_t right_high;
-};
diff --git a/frc971/output/CameraServer.cc b/frc971/vision/CameraServer.cc
similarity index 100%
rename from frc971/output/CameraServer.cc
rename to frc971/vision/CameraServer.cc
diff --git a/frc971/output/robot.html.tpl b/frc971/vision/robot.html.tpl
similarity index 100%
rename from frc971/output/robot.html.tpl
rename to frc971/vision/robot.html.tpl
diff --git a/frc971/vision/vision.gyp b/frc971/vision/vision.gyp
new file mode 100644
index 0000000..b5cf558
--- /dev/null
+++ b/frc971/vision/vision.gyp
@@ -0,0 +1,26 @@
+{
+  'targets': [
+    {
+      'target_name': 'CameraServer',
+      'type': 'executable',
+      'sources': [
+        'CameraServer.cc',
+      ],
+      'dependencies': [
+        '<(AOS)/linux_code/output/output.gyp:http_server',
+        '../frc971.gyp:constants',
+        '<(AOS)/linux_code/linux_code.gyp:init',
+        '<(AOS)/build/aos.gyp:logging',
+        '<(AOS)/linux_code/linux_code.gyp:configuration',
+      ],
+      'copies': [
+        {
+          'destination': '<(rsync_dir)',
+          'files': [
+            'robot.html.tpl',
+          ],
+        },
+      ],
+    },
+  ],
+}
diff --git a/frc971/wpilib/wpilib.gyp b/frc971/wpilib/wpilib.gyp
index a7c7dff..66a191d 100644
--- a/frc971/wpilib/wpilib.gyp
+++ b/frc971/wpilib/wpilib.gyp
@@ -12,14 +12,11 @@
         '<(EXTERNALS):WPILib_roboRIO',
         '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
         '<(AOS)/common/controls/controls.gyp:control_loop',
-        '<(DEPTH)/frc971/queues/queues.gyp:queues',
         '<(AOS)/common/controls/controls.gyp:sensor_generation',
         '<(AOS)/common/util/util.gyp:log_interval',
         '../frc971.gyp:constants',
         '<(AOS)/common/common.gyp:time',
         '<(AOS)/common/logging/logging.gyp:queue_logging',
-        '<(DEPTH)/frc971/control_loops/claw/claw.gyp:claw_loop',
-        '<(DEPTH)/frc971/control_loops/shooter/shooter.gyp:shooter_loop',
         '<(AOS)/common/controls/controls.gyp:output_check',
         '<(AOS)/common/messages/messages.gyp:robot_state',
         '<(AOS)/common/util/util.gyp:phased_loop',
diff --git a/frc971/wpilib/wpilib_interface.cc b/frc971/wpilib/wpilib_interface.cc
index 6f13205..86a456b 100644
--- a/frc971/wpilib/wpilib_interface.cc
+++ b/frc971/wpilib/wpilib_interface.cc
@@ -7,7 +7,6 @@
 #include <mutex>
 #include <functional>
 
-#include "aos/prime/output/motor_output.h"
 #include "aos/common/controls/output_check.q.h"
 #include "aos/common/controls/sensor_generation.q.h"
 #include "aos/common/logging/logging.h"
@@ -20,11 +19,7 @@
 #include "aos/linux_code/init.h"
 
 #include "frc971/control_loops/drivetrain/drivetrain.q.h"
-#include "frc971/control_loops/claw/claw.q.h"
-#include "frc971/control_loops/shooter/shooter.q.h"
 #include "frc971/constants.h"
-#include "frc971/queues/other_sensors.q.h"
-#include "frc971/queues/to_log.q.h"
 #include "frc971/shifter_hall_effect.h"
 
 #include "frc971/wpilib/hall_effect.h"
@@ -352,331 +347,29 @@
          (3.5 /*wheel diameter*/ * 2.54 / 100.0 * M_PI);
 }
 
-static const double kVcc = 5.15;
-
-float hall_translate(const constants::ShifterHallEffect &k, float in_low,
-                     float in_high) {
-  const float low_ratio =
-      0.5 * (in_low - static_cast<float>(k.low_gear_low)) /
-      static_cast<float>(k.low_gear_middle - k.low_gear_low);
-  const float high_ratio =
-      0.5 + 0.5 * (in_high - static_cast<float>(k.high_gear_middle)) /
-                static_cast<float>(k.high_gear_high - k.high_gear_middle);
-
-  // Return low when we are below 1/2, and high when we are above 1/2.
-  if (low_ratio + high_ratio < 1.0) {
-    return low_ratio;
-  } else {
-    return high_ratio;
-  }
-}
-
-double claw_translate(int32_t in) {
-  return static_cast<double>(in) / (256.0 /*cpr*/ * 4.0 /*quad*/) /
-         (18.0 / 48.0 /*encoder gears*/) / (12.0 / 60.0 /*chain reduction*/) *
-         (M_PI / 180.0) *
-         2.0 /*TODO(austin): Debug this, encoders read too little*/;
-}
-
-double shooter_translate(int32_t in) {
-  return static_cast<double>(in) / (256.0 /*cpr*/ * 4.0 /*quad*/) *
-         16 /*sprocket teeth*/ * 0.375 /*chain pitch*/
-         * (2.54 / 100.0 /*in to m*/);
-}
-
-// This class sends out half of the claw position state at 100 hz.
-class HalfClawHallSynchronizer : public PeriodicHallSynchronizer<3> {
- public:
-  // Constructs a HalfClawHallSynchronizer.
-  //
-  // priority is the priority of the polling thread.
-  // interrupt_priority is the priority of the interrupt threads.
-  // encoder is the encoder to read.
-  // sensors is an array of hall effect sensors.  The sensors[0] is the front
-  //   sensor, sensors[1] is the calibration sensor, sensors[2] is the back
-  //   sensor.
-  HalfClawHallSynchronizer(
-      const char *name, int priority, int interrupt_priority,
-      ::std::unique_ptr<Encoder> encoder,
-      ::std::array<::std::unique_ptr<HallEffect>, 3> *sensors, bool reversed)
-      : PeriodicHallSynchronizer<3>(name, priority, interrupt_priority,
-                                    ::std::move(encoder), sensors),
-        reversed_(reversed) {}
-
-  void set_position(control_loops::HalfClawPosition *half_claw_position) {
-    half_claw_position_ = half_claw_position;
-  }
-
-  // Saves the state so that it can be sent if it was synchronized.
-  virtual void SaveState() {
-    const auto &front = edge_counters()[0];
-    half_claw_position_->front.current = front->polled_value();
-    half_claw_position_->front.posedge_count =
-        front->positive_interrupt_count();
-    half_claw_position_->front.negedge_count =
-        front->negative_interrupt_count();
-
-    const auto &calibration = edge_counters()[1];
-    half_claw_position_->calibration.current = calibration->polled_value();
-    half_claw_position_->calibration.posedge_count =
-        calibration->positive_interrupt_count();
-    half_claw_position_->calibration.negedge_count =
-        calibration->negative_interrupt_count();
-
-    const auto &back = edge_counters()[2];
-    half_claw_position_->back.current = back->polled_value();
-    half_claw_position_->back.posedge_count = back->positive_interrupt_count();
-    half_claw_position_->back.negedge_count = back->negative_interrupt_count();
-
-    const double multiplier = reversed_ ? -1.0 : 1.0;
-
-    half_claw_position_->position =
-        multiplier * claw_translate(encoder_value());
-
-    // We assume here that we can only have 1 sensor have a posedge per cycle.
-    {
-      half_claw_position_->posedge_value =
-          last_half_claw_position_.posedge_value;
-      int posedge_changes = 0;
-      if (half_claw_position_->front.posedge_count !=
-          last_half_claw_position_.front.posedge_count) {
-        ++posedge_changes;
-        half_claw_position_->posedge_value =
-            multiplier * claw_translate(front->last_positive_encoder_value());
-        LOG(INFO, "Got a front posedge\n");
-      }
-
-      if (half_claw_position_->back.posedge_count !=
-          last_half_claw_position_.back.posedge_count) {
-        ++posedge_changes;
-        half_claw_position_->posedge_value =
-            multiplier * claw_translate(back->last_positive_encoder_value());
-        LOG(INFO, "Got a back posedge\n");
-      }
-
-      if (half_claw_position_->calibration.posedge_count !=
-          last_half_claw_position_.calibration.posedge_count) {
-        ++posedge_changes;
-        half_claw_position_->posedge_value =
-            multiplier *
-            claw_translate(calibration->last_positive_encoder_value());
-        LOG(INFO, "Got a calibration posedge\n");
-      }
-
-      if (posedge_changes > 1) {
-        LOG(WARNING, "Found more than 1 positive edge on %s\n", name());
-      }
-    }
-
-    {
-      half_claw_position_->negedge_value =
-          last_half_claw_position_.negedge_value;
-      int negedge_changes = 0;
-      if (half_claw_position_->front.negedge_count !=
-          last_half_claw_position_.front.negedge_count) {
-        ++negedge_changes;
-        half_claw_position_->negedge_value =
-            multiplier * claw_translate(front->last_negative_encoder_value());
-        LOG(INFO, "Got a front negedge\n");
-      }
-
-      if (half_claw_position_->back.negedge_count !=
-          last_half_claw_position_.back.negedge_count) {
-        ++negedge_changes;
-        half_claw_position_->negedge_value =
-            multiplier * claw_translate(back->last_negative_encoder_value());
-        LOG(INFO, "Got a back negedge\n");
-      }
-
-      if (half_claw_position_->calibration.negedge_count !=
-          last_half_claw_position_.calibration.negedge_count) {
-        ++negedge_changes;
-        half_claw_position_->negedge_value =
-            multiplier *
-            claw_translate(calibration->last_negative_encoder_value());
-        LOG(INFO, "Got a calibration negedge\n");
-      }
-
-      if (negedge_changes > 1) {
-        LOG(WARNING, "Found more than 1 negative edge on %s\n", name());
-      }
-    }
-
-    last_half_claw_position_ = *half_claw_position_;
-  }
-
- private:
-  control_loops::HalfClawPosition *half_claw_position_;
-  control_loops::HalfClawPosition last_half_claw_position_;
-  bool reversed_;
-};
-
-// This class sends out the shooter position state at 100 hz.
-class ShooterHallSynchronizer : public PeriodicHallSynchronizer<2> {
- public:
-  // Constructs a ShooterHallSynchronizer.
-  //
-  // priority is the priority of the polling thread.
-  // interrupt_priority is the priority of the interrupt threads.
-  // encoder is the encoder to read.
-  // sensors is an array of hall effect sensors.  The sensors[0] is the proximal
-  //   sensor, sensors[1] is the distal sensor.
-  // shooter_plunger is the plunger.
-  // shooter_latch is the latch.
-  ShooterHallSynchronizer(
-      int priority, int interrupt_priority, ::std::unique_ptr<Encoder> encoder,
-      ::std::array<::std::unique_ptr<HallEffect>, 2> *sensors,
-      ::std::unique_ptr<HallEffect> shooter_plunger,
-      ::std::unique_ptr<HallEffect> shooter_latch)
-      : PeriodicHallSynchronizer<2>("shooter", priority, interrupt_priority,
-                                    ::std::move(encoder), sensors),
-        shooter_plunger_(::std::move(shooter_plunger)),
-        shooter_latch_(::std::move(shooter_latch)) {}
-
-  // Saves the state so that it can be sent if it was synchronized.
-  virtual void SaveState() {
-    auto shooter_position =
-        control_loops::shooter_queue_group.position.MakeMessage();
-
-    shooter_position->plunger = shooter_plunger_->GetHall();
-    shooter_position->latch = shooter_latch_->GetHall();
-    shooter_position->position = shooter_translate(encoder_value());
-
-    {
-      const auto &proximal_edge_counter = edge_counters()[0];
-      shooter_position->pusher_proximal.current =
-          proximal_edge_counter->polled_value();
-      shooter_position->pusher_proximal.posedge_count =
-          proximal_edge_counter->positive_interrupt_count();
-      shooter_position->pusher_proximal.negedge_count =
-          proximal_edge_counter->negative_interrupt_count();
-      shooter_position->pusher_proximal.posedge_value = shooter_translate(
-          proximal_edge_counter->last_positive_encoder_value());
-    }
-
-    {
-      const auto &distal_edge_counter = edge_counters()[1];
-      shooter_position->pusher_distal.current =
-          distal_edge_counter->polled_value();
-      shooter_position->pusher_distal.posedge_count =
-          distal_edge_counter->positive_interrupt_count();
-      shooter_position->pusher_distal.negedge_count =
-          distal_edge_counter->negative_interrupt_count();
-      shooter_position->pusher_distal.posedge_value =
-          shooter_translate(distal_edge_counter->last_positive_encoder_value());
-    }
-
-    shooter_position.Send();
-  }
-
- private:
-  ::std::unique_ptr<HallEffect> shooter_plunger_;
-  ::std::unique_ptr<HallEffect> shooter_latch_;
-};
-
 class SensorReader {
  public:
   SensorReader()
-      : auto_selector_analog_(new AnalogInput(4)),
-        left_encoder_(new Encoder(11, 10, false, Encoder::k2X)),   // E0
+      : left_encoder_(new Encoder(11, 10, false, Encoder::k2X)),   // E0
         right_encoder_(new Encoder(13, 12, false, Encoder::k2X)),  // E1
-        low_left_drive_hall_(new AnalogInput(1)),
-        high_left_drive_hall_(new AnalogInput(0)),
-        low_right_drive_hall_(new AnalogInput(2)),
-        high_right_drive_hall_(new AnalogInput(3)),
-        shooter_plunger_(new HallEffect(8)),            // S3
-        shooter_latch_(new HallEffect(9)),              // S4
-        shooter_distal_(new HallEffect(7)),             // S2
-        shooter_proximal_(new HallEffect(6)),           // S1
-        shooter_encoder_(new Encoder(14, 15)),          // E2
-        claw_top_front_hall_(new HallEffect(4)),        // R2
-        claw_top_calibration_hall_(new HallEffect(3)),  // R3
-        claw_top_back_hall_(new HallEffect(5)),         // R1
-        claw_top_encoder_(new Encoder(17, 16)),         // E3
-        // L2  Middle Left hall effect sensor.
-        claw_bottom_front_hall_(new HallEffect(1)),
-        // L3  Bottom Left hall effect sensor
-        claw_bottom_calibration_hall_(new HallEffect(0)),
-        // L1  Top Left hall effect sensor
-        claw_bottom_back_hall_(new HallEffect(2)),
-        claw_bottom_encoder_(new Encoder(21, 20)),  // E5
         run_(true) {
     filter_.SetPeriodNanoSeconds(100000);
-    filter_.Add(shooter_plunger_.get());
-    filter_.Add(shooter_latch_.get());
-    filter_.Add(shooter_distal_.get());
-    filter_.Add(shooter_proximal_.get());
-    filter_.Add(claw_top_front_hall_.get());
-    filter_.Add(claw_top_calibration_hall_.get());
-    filter_.Add(claw_top_back_hall_.get());
-    filter_.Add(claw_bottom_front_hall_.get());
-    filter_.Add(claw_bottom_calibration_hall_.get());
-    filter_.Add(claw_bottom_back_hall_.get());
   }
 
   void operator()() {
     ::aos::SetCurrentThreadName("SensorReader");
 
     const int kPriority = 30;
-    const int kInterruptPriority = 55;
-
-    ::std::array<::std::unique_ptr<HallEffect>, 2> shooter_sensors;
-    shooter_sensors[0] = ::std::move(shooter_proximal_);
-    shooter_sensors[1] = ::std::move(shooter_distal_);
-    ShooterHallSynchronizer shooter(
-        kPriority, kInterruptPriority, ::std::move(shooter_encoder_),
-        &shooter_sensors, ::std::move(shooter_plunger_),
-        ::std::move(shooter_latch_));
-    shooter.StartThread();
-
-    ::std::array<::std::unique_ptr<HallEffect>, 3> claw_top_sensors;
-    claw_top_sensors[0] = ::std::move(claw_top_front_hall_);
-    claw_top_sensors[1] = ::std::move(claw_top_calibration_hall_);
-    claw_top_sensors[2] = ::std::move(claw_top_back_hall_);
-    HalfClawHallSynchronizer top_claw("top_claw", kPriority, kInterruptPriority,
-                                      ::std::move(claw_top_encoder_),
-                                      &claw_top_sensors, false);
-
-    ::std::array<::std::unique_ptr<HallEffect>, 3> claw_bottom_sensors;
-    claw_bottom_sensors[0] = ::std::move(claw_bottom_front_hall_);
-    claw_bottom_sensors[1] = ::std::move(claw_bottom_calibration_hall_);
-    claw_bottom_sensors[2] = ::std::move(claw_bottom_back_hall_);
-    HalfClawHallSynchronizer bottom_claw(
-        "bottom_claw", kPriority, kInterruptPriority,
-        ::std::move(claw_bottom_encoder_), &claw_bottom_sensors, true);
+    //const int kInterruptPriority = 55;
 
     ::aos::SetCurrentThreadRealtimePriority(kPriority);
     while (run_) {
-      ::aos::time::PhasedLoopXMS(10, 9000);
+      ::aos::time::PhasedLoopXMS(5, 9000);
       RunIteration();
-
-      auto claw_position =
-          control_loops::claw_queue_group.position.MakeMessage();
-      bottom_claw.set_position(&claw_position->bottom);
-      top_claw.set_position(&claw_position->top);
-      while (true) {
-        bottom_claw.StartIteration();
-        top_claw.StartIteration();
-
-        // Wait more than the amount of time it takes for a digital input change
-        // to go from visible to software to having triggered an interrupt.
-        ::aos::time::SleepFor(::aos::time::Time::InUS(120));
-
-        if (bottom_claw.TryFinishingIteration() &&
-            top_claw.TryFinishingIteration()) {
-          break;
-        }
-      }
-
-      claw_position.Send();
     }
-    shooter.Quit();
-    top_claw.Quit();
-    bottom_claw.Quit();
   }
 
   void RunIteration() {
-    //::aos::time::TimeFreezer time_freezer;
     DriverStation *ds = DriverStation::GetInstance();
 
     if (ds->IsSysActive()) {
@@ -688,22 +381,13 @@
       message.Send();
     }
 
-    ::frc971::sensors::auto_mode.MakeWithBuilder()
-        .voltage(auto_selector_analog_->GetVoltage())
-        .Send();
-
     // TODO(austin): Calibrate the shifter constants again.
+    // TODO(sensors): Hook up the new dog position sensors.
     drivetrain.position.MakeWithBuilder()
         .right_encoder(drivetrain_translate(right_encoder_->GetRaw()))
         .left_encoder(-drivetrain_translate(left_encoder_->GetRaw()))
-        .left_shifter_position(
-             hall_translate(constants::GetValues().left_drive,
-                            low_left_drive_hall_->GetVoltage(),
-                            high_left_drive_hall_->GetVoltage()))
-        .right_shifter_position(
-             hall_translate(constants::GetValues().right_drive,
-                            low_right_drive_hall_->GetVoltage(),
-                            high_right_drive_hall_->GetVoltage()))
+        .left_shifter_position(0)
+        .right_shifter_position(0)
         .battery_voltage(ds->GetBatteryVoltage())
         .Send();
 
@@ -721,26 +405,6 @@
 
   ::std::unique_ptr<Encoder> left_encoder_;
   ::std::unique_ptr<Encoder> right_encoder_;
-  ::std::unique_ptr<AnalogInput> low_left_drive_hall_;
-  ::std::unique_ptr<AnalogInput> high_left_drive_hall_;
-  ::std::unique_ptr<AnalogInput> low_right_drive_hall_;
-  ::std::unique_ptr<AnalogInput> high_right_drive_hall_;
-
-  ::std::unique_ptr<HallEffect> shooter_plunger_;
-  ::std::unique_ptr<HallEffect> shooter_latch_;
-  ::std::unique_ptr<HallEffect> shooter_distal_;
-  ::std::unique_ptr<HallEffect> shooter_proximal_;
-  ::std::unique_ptr<Encoder> shooter_encoder_;
-
-  ::std::unique_ptr<HallEffect> claw_top_front_hall_;
-  ::std::unique_ptr<HallEffect> claw_top_calibration_hall_;
-  ::std::unique_ptr<HallEffect> claw_top_back_hall_;
-  ::std::unique_ptr<Encoder> claw_top_encoder_;
-
-  ::std::unique_ptr<HallEffect> claw_bottom_front_hall_;
-  ::std::unique_ptr<HallEffect> claw_bottom_calibration_hall_;
-  ::std::unique_ptr<HallEffect> claw_bottom_back_hall_;
-  ::std::unique_ptr<Encoder> claw_bottom_encoder_;
 
   ::std::atomic<bool> run_;
   DigitalGlitchFilter filter_;
@@ -749,9 +413,7 @@
 class SolenoidWriter {
  public:
   SolenoidWriter(const ::std::unique_ptr<BufferedPcm> &pcm)
-      : pcm_(pcm),
-        drivetrain_(".frc971.control_loops.drivetrain.output"),
-        shooter_(".frc971.control_loops.shooter_queue_group.output") {}
+      : pcm_(pcm), drivetrain_(".frc971.control_loops.drivetrain.output") {}
 
   void set_drivetrain_left(::std::unique_ptr<BufferedSolenoid> s) {
     drivetrain_left_ = ::std::move(s);
@@ -761,14 +423,6 @@
     drivetrain_right_ = ::std::move(s);
   }
 
-  void set_shooter_latch(::std::unique_ptr<BufferedSolenoid> s) {
-    shooter_latch_ = ::std::move(s);
-  }
-
-  void set_shooter_brake(::std::unique_ptr<BufferedSolenoid> s) {
-    shooter_brake_ = ::std::move(s);
-  }
-
   void operator()() {
     ::aos::SetCurrentThreadName("Solenoids");
     ::aos::SetCurrentThreadRealtimePriority(30);
@@ -785,15 +439,6 @@
         }
       }
 
-      {
-        shooter_.FetchLatest();
-        if (shooter_.get()) {
-          LOG_STRUCT(DEBUG, "solenoids", *shooter_);
-          shooter_latch_->Set(!shooter_->latch_piston);
-          shooter_brake_->Set(!shooter_->brake_piston);
-        }
-      }
-
       pcm_->Flush();
     }
   }
@@ -804,11 +449,8 @@
   const ::std::unique_ptr<BufferedPcm> &pcm_;
   ::std::unique_ptr<BufferedSolenoid> drivetrain_left_;
   ::std::unique_ptr<BufferedSolenoid> drivetrain_right_;
-  ::std::unique_ptr<BufferedSolenoid> shooter_latch_;
-  ::std::unique_ptr<BufferedSolenoid> shooter_brake_;
 
   ::aos::Queue<::frc971::control_loops::Drivetrain::Output> drivetrain_;
-  ::aos::Queue<::frc971::control_loops::ShooterGroup::Output> shooter_;
 
   ::std::atomic<bool> run_{true};
 };
@@ -845,91 +487,6 @@
   ::std::unique_ptr<Talon> right_drivetrain_talon_;
 };
 
-class ShooterWriter : public LoopOutputHandler {
- public:
-  void set_shooter_talon(::std::unique_ptr<Talon> t) {
-    shooter_talon_ = ::std::move(t);
-  }
-
- private:
-  virtual void Read() override {
-    ::frc971::control_loops::shooter_queue_group.output.FetchAnother();
-  }
-
-  virtual void Write() override {
-    auto &queue = ::frc971::control_loops::shooter_queue_group.output;
-    LOG_STRUCT(DEBUG, "will output", *queue);
-    shooter_talon_->Set(queue->voltage / 12.0);
-  }
-
-  virtual void Stop() override {
-    LOG(WARNING, "shooter output too old\n");
-    shooter_talon_->Disable();
-  }
-
-  ::std::unique_ptr<Talon> shooter_talon_;
-};
-
-class ClawWriter : public LoopOutputHandler {
- public:
-  void set_top_claw_talon(::std::unique_ptr<Talon> t) {
-    top_claw_talon_ = ::std::move(t);
-  }
-
-  void set_bottom_claw_talon(::std::unique_ptr<Talon> t) {
-    bottom_claw_talon_ = ::std::move(t);
-  }
-
-  void set_left_tusk_talon(::std::unique_ptr<Talon> t) {
-    left_tusk_talon_ = ::std::move(t);
-  }
-
-  void set_right_tusk_talon(::std::unique_ptr<Talon> t) {
-    right_tusk_talon_ = ::std::move(t);
-  }
-
-  void set_intake1_talon(::std::unique_ptr<Talon> t) {
-    intake1_talon_ = ::std::move(t);
-  }
-
-  void set_intake2_talon(::std::unique_ptr<Talon> t) {
-    intake2_talon_ = ::std::move(t);
-  }
-
- private:
-  virtual void Read() override {
-    ::frc971::control_loops::claw_queue_group.output.FetchAnother();
-  }
-
-  virtual void Write() override {
-    auto &queue = ::frc971::control_loops::claw_queue_group.output;
-    LOG_STRUCT(DEBUG, "will output", *queue);
-    intake1_talon_->Set(queue->intake_voltage / 12.0);
-    intake2_talon_->Set(queue->intake_voltage / 12.0);
-    bottom_claw_talon_->Set(-queue->bottom_claw_voltage / 12.0);
-    top_claw_talon_->Set(queue->top_claw_voltage / 12.0);
-    left_tusk_talon_->Set(queue->tusk_voltage / 12.0);
-    right_tusk_talon_->Set(-queue->tusk_voltage / 12.0);
-  }
-
-  virtual void Stop() override {
-    LOG(WARNING, "claw output too old\n");
-    intake1_talon_->Disable();
-    intake2_talon_->Disable();
-    bottom_claw_talon_->Disable();
-    top_claw_talon_->Disable();
-    left_tusk_talon_->Disable();
-    right_tusk_talon_->Disable();
-  }
-
-  ::std::unique_ptr<Talon> top_claw_talon_;
-  ::std::unique_ptr<Talon> bottom_claw_talon_;
-  ::std::unique_ptr<Talon> left_tusk_talon_;
-  ::std::unique_ptr<Talon> right_tusk_talon_;
-  ::std::unique_ptr<Talon> intake1_talon_;
-  ::std::unique_ptr<Talon> intake2_talon_;
-};
-
 }  // namespace wpilib
 }  // namespace frc971
 
@@ -955,26 +512,11 @@
         ::std::unique_ptr<Talon>(new Talon(2)));
     ::std::thread drivetrain_writer_thread(::std::ref(drivetrain_writer));
 
-    ::frc971::wpilib::ClawWriter claw_writer;
-    claw_writer.set_top_claw_talon(::std::unique_ptr<Talon>(new Talon(1)));
-    claw_writer.set_bottom_claw_talon(::std::unique_ptr<Talon>(new Talon(0)));
-    claw_writer.set_left_tusk_talon(::std::unique_ptr<Talon>(new Talon(4)));
-    claw_writer.set_right_tusk_talon(::std::unique_ptr<Talon>(new Talon(3)));
-    claw_writer.set_intake1_talon(::std::unique_ptr<Talon>(new Talon(7)));
-    claw_writer.set_intake2_talon(::std::unique_ptr<Talon>(new Talon(8)));
-    ::std::thread claw_writer_thread(::std::ref(claw_writer));
-
-    ::frc971::wpilib::ShooterWriter shooter_writer;
-    shooter_writer.set_shooter_talon(::std::unique_ptr<Talon>(new Talon(6)));
-    ::std::thread shooter_writer_thread(::std::ref(shooter_writer));
-
     ::std::unique_ptr<::frc971::wpilib::BufferedPcm> pcm(
         new ::frc971::wpilib::BufferedPcm());
     ::frc971::wpilib::SolenoidWriter solenoid_writer(pcm);
     solenoid_writer.set_drivetrain_left(pcm->MakeSolenoid(6));
     solenoid_writer.set_drivetrain_right(pcm->MakeSolenoid(7));
-    solenoid_writer.set_shooter_latch(pcm->MakeSolenoid(5));
-    solenoid_writer.set_shooter_brake(pcm->MakeSolenoid(4));
     ::std::thread solenoid_thread(::std::ref(solenoid_writer));
 
     // Wait forever. Not much else to do...
@@ -991,10 +533,6 @@
 
     drivetrain_writer.Quit();
     drivetrain_writer_thread.join();
-    claw_writer.Quit();
-    claw_writer_thread.join();
-    shooter_writer.Quit();
-    shooter_writer_thread.join();
     solenoid_writer.Quit();
     solenoid_thread.join();
 
diff --git a/output/downloaded/.gitignore b/output/downloaded/.gitignore
index 53de81a..69f5098 100644
--- a/output/downloaded/.gitignore
+++ b/output/downloaded/.gitignore
@@ -2,8 +2,6 @@
 /ctemplate-129/
 /eigen-3.2.1.tar.bz2
 /eigen-3.2.1/
-/gccdist.zip
-/gccdist/
 /gtest-1.6.0-p2/
 /gtest-1.6.0.zip
 /gyp-1738/
@@ -13,12 +11,10 @@
 /ninja-v1.4.0/
 /gflags-2.0.tar.gz
 /gflags-2.0/
-/compiler-rt-RELEASE_32_final/
 /libevent-2.0.21.tar.gz
 /libevent-2.0.21/
 /libcdd-094g.tar.gz
 /libcdd-094g/
 /gmp-5.1.3.tar.lz
-/stm32flash-8399fbe1baf2b7d097746786458021d92895d71b/
 /gperftools-2.3.tar.gz
 /libunwind-1.1.tar.gz
diff --git a/roborio_expansion_boards/.gitignore b/roborio_expansion_boards/.gitignore
deleted file mode 100644
index 2017901..0000000
--- a/roborio_expansion_boards/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.[bsl]#[0-9]
diff --git a/roborio_expansion_boards/analog_adapter.brd b/roborio_expansion_boards/analog_adapter.brd
deleted file mode 100644
index f3376be..0000000
--- a/roborio_expansion_boards/analog_adapter.brd
+++ /dev/null
@@ -1,496 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE eagle SYSTEM "eagle.dtd">
-<eagle version="6.5.0">
-<drawing>
-<settings>
-<setting alwaysvectorfont="no"/>
-<setting verticaltext="up"/>
-</settings>
-<grid distance="0.0125" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.001" altunitdist="inch" altunit="inch"/>
-<layers>
-<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
-<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
-<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
-<layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="28" name="bValues" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="29" name="tStop" color="7" fill="3" visible="yes" active="yes"/>
-<layer number="30" name="bStop" color="7" fill="6" visible="yes" active="yes"/>
-<layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/>
-<layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/>
-<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/>
-<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/>
-<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="yes"/>
-<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/>
-<layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/>
-<layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/>
-<layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/>
-<layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/>
-<layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
-<layer number="45" name="Holes" color="7" fill="1" visible="no" active="yes"/>
-<layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/>
-<layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/>
-<layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
-<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
-<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
-<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
-<layer number="91" name="Nets" color="2" fill="1" visible="no" active="no"/>
-<layer number="92" name="Busses" color="1" fill="1" visible="no" active="no"/>
-<layer number="93" name="Pins" color="2" fill="1" visible="no" active="no"/>
-<layer number="94" name="Symbols" color="4" fill="1" visible="no" active="no"/>
-<layer number="95" name="Names" color="7" fill="1" visible="no" active="no"/>
-<layer number="96" name="Values" color="7" fill="1" visible="no" active="no"/>
-<layer number="97" name="Info" color="7" fill="1" visible="no" active="no"/>
-<layer number="98" name="Guide" color="6" fill="1" visible="no" active="no"/>
-<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
-<layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
-<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
-<layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
-<layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
-<layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
-<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
-<layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
-<layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
-<layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
-<layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
-<layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
-<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
-<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
-<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
-<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
-<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
-<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
-<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
-<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
-<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
-<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
-<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
-</layers>
-<board>
-<plain>
-<wire x1="0" y1="0" x2="16.815" y2="0" width="0" layer="20"/>
-<wire x1="16.815" y1="0" x2="16.815" y2="30.47" width="0" layer="20"/>
-<wire x1="16.815" y1="30.47" x2="0" y2="30.47" width="0" layer="20"/>
-<wire x1="0" y1="30.47" x2="0" y2="0" width="0" layer="20"/>
-<text x="1.905" y="28.575" size="1.016" layer="21">-  + S</text>
-<text x="9.398" y="24.13" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<text x="9.398" y="16.51" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<text x="9.398" y="8.89" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<text x="9.398" y="1.27" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<wire x1="16.51" y1="22.86" x2="0.3175" y2="22.86" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="15.24" x2="0.3175" y2="15.24" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="7.62" x2="0.3175" y2="7.62" width="0.4064" layer="21"/>
-<text x="1.905" y="5.715" size="0.6096" layer="1" font="vector" rot="R90">FRC Team 971 Analog Connector Adapter
-20140818</text>
-<text x="0.9525" y="26.3525" size="0.6096" layer="21" font="vector" rot="R90">0</text>
-<text x="0.9525" y="18.7325" size="0.6096" layer="21" font="vector" rot="R90">2</text>
-<text x="0.9525" y="11.1125" size="0.6096" layer="21" font="vector" rot="R90">2</text>
-<text x="0.9525" y="3.4925" size="0.6096" layer="21" font="vector" rot="R90">3</text>
-<text x="16.51" y="26.3525" size="0.6096" layer="21" font="vector" rot="R90">0</text>
-<text x="16.51" y="18.7325" size="0.6096" layer="21" font="vector" rot="R90">2</text>
-<text x="16.51" y="11.1125" size="0.6096" layer="21" font="vector" rot="R90">2</text>
-<text x="16.51" y="3.4925" size="0.6096" layer="21" font="vector" rot="R90">3</text>
-</plain>
-<libraries>
-<library name="custom">
-<packages>
-<package name="PWM_1X3">
-<description>Generic 1x3 0.1" pitch connector.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-1.27" y1="3.81" x2="1.27" y2="3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="3.81" x2="1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="-3.81" x2="-1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="-1.27" y1="-3.81" x2="-1.27" y2="3.81" width="0.127" layer="21"/>
-<rectangle x1="-1.27" y1="-3.81" x2="1.27" y2="3.81" layer="39"/>
-</package>
-<package name="22-23-2031">
-<description>3-pin Molex locking connector (male) 22-23-2031.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-3.1242" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="-3.7338" x2="-3.1242" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="-3.1242" y1="-3.7338" x2="-3.1242" y2="3.7338" width="0.127" layer="21"/>
-<rectangle x1="-3.1242" y1="-3.7338" x2="3.0988" y2="3.7338" layer="39"/>
-<wire x1="3.0988" y1="3.7338" x2="3.0988" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="-3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-</package>
-<package name="0603">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-</packages>
-</library>
-</libraries>
-<attributes>
-</attributes>
-<variantdefs>
-</variantdefs>
-<classes>
-<class number="0" name="default" width="0" drill="0">
-</class>
-</classes>
-<designrules name="SeeedStudio_2layer_DRU_no_angle_20140221 *">
-<description language="de">&lt;b&gt;EAGLE Design Rules&lt;/b&gt;
-&lt;p&gt;
-Die Standard-Design-Rules sind so gewählt, dass sie für 
-die meisten Anwendungen passen. Sollte ihre Platine 
-besondere Anforderungen haben, treffen Sie die erforderlichen
-Einstellungen hier und speichern die Design Rules unter 
-einem neuen Namen ab.</description>
-<description language="en">&lt;b&gt;EAGLE Design Rules&lt;/b&gt;
-&lt;p&gt;
-The default Design Rules have been set to cover
-a wide range of applications. Your particular design
-may have different requirements, so please make the
-necessary adjustments and save your customized
-design rules under a new name.</description>
-<description language="zh">&lt;b&gt;Seeed Studio EAGLE Design Rules&lt;/b&gt;
-</description>
-<param name="layerSetup" value="(1*16)"/>
-<param name="mtCopper" value="0.035mm 0.0175mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.0175mm 0.035mm"/>
-<param name="mtIsolate" value="1.5mm 1.1mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm"/>
-<param name="mdWireWire" value="6mil"/>
-<param name="mdWirePad" value="6mil"/>
-<param name="mdWireVia" value="6mil"/>
-<param name="mdPadPad" value="6mil"/>
-<param name="mdPadVia" value="6mil"/>
-<param name="mdViaVia" value="6mil"/>
-<param name="mdSmdPad" value="0mil"/>
-<param name="mdSmdVia" value="0mil"/>
-<param name="mdSmdSmd" value="0mil"/>
-<param name="mdViaViaSameLayer" value="8mil"/>
-<param name="mnLayersViaInSmd" value="2"/>
-<param name="mdCopperDimension" value="10mil"/>
-<param name="mdDrill" value="10mil"/>
-<param name="mdSmdStop" value="0mil"/>
-<param name="msWidth" value="6mil"/>
-<param name="msDrill" value="12mil"/>
-<param name="msMicroVia" value="12mil"/>
-<param name="msBlindViaRatio" value="0.5"/>
-<param name="rvPadTop" value="0.25"/>
-<param name="rvPadInner" value="0.25"/>
-<param name="rvPadBottom" value="0.25"/>
-<param name="rvViaOuter" value="0.25"/>
-<param name="rvViaInner" value="0.25"/>
-<param name="rvMicroViaOuter" value="0.25"/>
-<param name="rvMicroViaInner" value="0.25"/>
-<param name="rlMinPadTop" value="10mil"/>
-<param name="rlMaxPadTop" value="20mil"/>
-<param name="rlMinPadInner" value="10mil"/>
-<param name="rlMaxPadInner" value="20mil"/>
-<param name="rlMinPadBottom" value="10mil"/>
-<param name="rlMaxPadBottom" value="20mil"/>
-<param name="rlMinViaOuter" value="6mil"/>
-<param name="rlMaxViaOuter" value="20mil"/>
-<param name="rlMinViaInner" value="6mil"/>
-<param name="rlMaxViaInner" value="20mil"/>
-<param name="rlMinMicroViaOuter" value="4mil"/>
-<param name="rlMaxMicroViaOuter" value="20mil"/>
-<param name="rlMinMicroViaInner" value="4mil"/>
-<param name="rlMaxMicroViaInner" value="20mil"/>
-<param name="psTop" value="-1"/>
-<param name="psBottom" value="-1"/>
-<param name="psFirst" value="0"/>
-<param name="psElongationLong" value="100"/>
-<param name="psElongationOffset" value="100"/>
-<param name="mvStopFrame" value="1"/>
-<param name="mvCreamFrame" value="0"/>
-<param name="mlMinStopFrame" value="2mil"/>
-<param name="mlMaxStopFrame" value="2mil"/>
-<param name="mlMinCreamFrame" value="0mil"/>
-<param name="mlMaxCreamFrame" value="0mil"/>
-<param name="mlViaStopLimit" value="100mil"/>
-<param name="srRoundness" value="0"/>
-<param name="srMinRoundness" value="0mil"/>
-<param name="srMaxRoundness" value="0mil"/>
-<param name="slThermalIsolate" value="10mil"/>
-<param name="slThermalsForVias" value="0"/>
-<param name="dpMaxLengthDifference" value="10mm"/>
-<param name="dpGapFactor" value="2.5"/>
-<param name="checkGrid" value="0"/>
-<param name="checkAngle" value="1"/>
-<param name="checkFont" value="1"/>
-<param name="checkRestrict" value="1"/>
-<param name="useDiameter" value="13"/>
-<param name="maxErrors" value="50"/>
-</designrules>
-<autorouter>
-<pass name="Default">
-<param name="RoutingGrid" value="50mil"/>
-<param name="tpViaShape" value="round"/>
-<param name="PrefDir.1" value="|"/>
-<param name="PrefDir.2" value="0"/>
-<param name="PrefDir.3" value="0"/>
-<param name="PrefDir.4" value="0"/>
-<param name="PrefDir.5" value="0"/>
-<param name="PrefDir.6" value="0"/>
-<param name="PrefDir.7" value="0"/>
-<param name="PrefDir.8" value="0"/>
-<param name="PrefDir.9" value="0"/>
-<param name="PrefDir.10" value="0"/>
-<param name="PrefDir.11" value="0"/>
-<param name="PrefDir.12" value="0"/>
-<param name="PrefDir.13" value="0"/>
-<param name="PrefDir.14" value="0"/>
-<param name="PrefDir.15" value="0"/>
-<param name="PrefDir.16" value="-"/>
-<param name="cfVia" value="8"/>
-<param name="cfNonPref" value="5"/>
-<param name="cfChangeDir" value="2"/>
-<param name="cfOrthStep" value="2"/>
-<param name="cfDiagStep" value="3"/>
-<param name="cfExtdStep" value="0"/>
-<param name="cfBonusStep" value="1"/>
-<param name="cfMalusStep" value="1"/>
-<param name="cfPadImpact" value="4"/>
-<param name="cfSmdImpact" value="4"/>
-<param name="cfBusImpact" value="0"/>
-<param name="cfHugging" value="3"/>
-<param name="cfAvoid" value="4"/>
-<param name="cfPolygon" value="10"/>
-<param name="cfBase.1" value="0"/>
-<param name="cfBase.2" value="1"/>
-<param name="cfBase.3" value="1"/>
-<param name="cfBase.4" value="1"/>
-<param name="cfBase.5" value="1"/>
-<param name="cfBase.6" value="1"/>
-<param name="cfBase.7" value="1"/>
-<param name="cfBase.8" value="1"/>
-<param name="cfBase.9" value="1"/>
-<param name="cfBase.10" value="1"/>
-<param name="cfBase.11" value="1"/>
-<param name="cfBase.12" value="1"/>
-<param name="cfBase.13" value="1"/>
-<param name="cfBase.14" value="1"/>
-<param name="cfBase.15" value="1"/>
-<param name="cfBase.16" value="0"/>
-<param name="mnVias" value="20"/>
-<param name="mnSegments" value="9999"/>
-<param name="mnExtdSteps" value="9999"/>
-<param name="mnRipupLevel" value="10"/>
-<param name="mnRipupSteps" value="100"/>
-<param name="mnRipupTotal" value="100"/>
-</pass>
-<pass name="Follow-me" refer="Default" active="yes">
-</pass>
-<pass name="Busses" refer="Default" active="yes">
-<param name="cfNonPref" value="4"/>
-<param name="cfBusImpact" value="4"/>
-<param name="cfHugging" value="0"/>
-<param name="mnVias" value="0"/>
-</pass>
-<pass name="Route" refer="Default" active="yes">
-</pass>
-<pass name="Optimize1" refer="Default" active="yes">
-<param name="cfVia" value="99"/>
-<param name="cfExtdStep" value="10"/>
-<param name="cfHugging" value="1"/>
-<param name="mnExtdSteps" value="1"/>
-<param name="mnRipupLevel" value="0"/>
-</pass>
-<pass name="Optimize2" refer="Optimize1" active="yes">
-<param name="cfNonPref" value="0"/>
-<param name="cfChangeDir" value="6"/>
-<param name="cfExtdStep" value="0"/>
-<param name="cfBonusStep" value="2"/>
-<param name="cfMalusStep" value="2"/>
-<param name="cfPadImpact" value="2"/>
-<param name="cfSmdImpact" value="2"/>
-<param name="cfHugging" value="0"/>
-</pass>
-<pass name="Optimize3" refer="Optimize2" active="yes">
-<param name="cfChangeDir" value="8"/>
-<param name="cfPadImpact" value="0"/>
-<param name="cfSmdImpact" value="0"/>
-</pass>
-<pass name="Optimize4" refer="Optimize3" active="yes">
-<param name="cfChangeDir" value="25"/>
-</pass>
-</autorouter>
-<elements>
-<element name="U$7" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="3.81" rot="MR270"/>
-<element name="U$8" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="11.43" rot="MR270"/>
-<element name="U$9" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="19.05" rot="MR270"/>
-<element name="U$10" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="26.67" rot="MR270"/>
-<element name="U$17" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="3.81" rot="R180"/>
-<element name="U$18" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="11.43" rot="R180"/>
-<element name="U$19" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="19.05" rot="R180"/>
-<element name="U$20" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="26.67" rot="R180"/>
-<element name="C1" library="custom" package="0603" value="0.1 uF" x="3.81" y="24.4475"/>
-<element name="C2" library="custom" package="0603" value="0.1 uF" x="3.81" y="16.8275"/>
-<element name="C3" library="custom" package="0603" value="0.1 uF" x="3.81" y="9.2075"/>
-<element name="C4" library="custom" package="0603" value="0.1 uF" x="3.81" y="1.5875"/>
-</elements>
-<signals>
-<signal name="N$2">
-<contactref element="U$10" pad="2"/>
-<contactref element="U$20" pad="2"/>
-<wire x1="5.08" y1="26.67" x2="5.08" y2="28.2575" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="28.2575" x2="10.16" y2="28.2575" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="28.2575" x2="10.16" y2="26.67" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="26.67" x2="12.7" y2="26.67" width="0.4064" layer="1"/>
-<contactref element="C1" pad="2"/>
-<wire x1="5.08" y1="26.67" x2="5.08" y2="24.4475" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="24.4475" x2="4.66" y2="24.4475" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$3">
-<contactref element="U$10" pad="3"/>
-<wire x1="7.62" y1="26.67" x2="7.62" y2="24.13" width="0.4064" layer="1"/>
-<contactref element="U$20" pad="1"/>
-<wire x1="12.7" y1="24.13" x2="7.62" y2="24.13" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$5">
-<contactref element="U$9" pad="2"/>
-<contactref element="U$19" pad="2"/>
-<wire x1="5.08" y1="19.05" x2="5.08" y2="20.6375" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="20.6375" x2="10.16" y2="20.6375" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="20.6375" x2="10.16" y2="19.05" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="19.05" x2="12.7" y2="19.05" width="0.4064" layer="1"/>
-<contactref element="C2" pad="2"/>
-<wire x1="5.08" y1="19.05" x2="5.08" y2="16.8275" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="16.8275" x2="4.66" y2="16.8275" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$6">
-<contactref element="U$9" pad="3"/>
-<wire x1="7.62" y1="19.05" x2="7.62" y2="16.51" width="0.4064" layer="1"/>
-<contactref element="U$19" pad="1"/>
-<wire x1="12.7" y1="16.51" x2="7.62" y2="16.51" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$8">
-<contactref element="U$8" pad="2"/>
-<contactref element="U$18" pad="2"/>
-<wire x1="5.08" y1="11.43" x2="5.08" y2="13.0175" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="13.0175" x2="10.16" y2="13.0175" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="13.0175" x2="10.16" y2="11.43" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="11.43" x2="12.7" y2="11.43" width="0.4064" layer="1"/>
-<contactref element="C3" pad="2"/>
-<wire x1="5.08" y1="11.43" x2="5.08" y2="9.2075" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="9.2075" x2="4.66" y2="9.2075" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$9">
-<contactref element="U$8" pad="3"/>
-<wire x1="7.62" y1="11.43" x2="7.62" y2="8.89" width="0.4064" layer="1"/>
-<contactref element="U$18" pad="1"/>
-<wire x1="12.7" y1="8.89" x2="7.62" y2="8.89" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$11">
-<contactref element="U$7" pad="2"/>
-<contactref element="U$17" pad="2"/>
-<wire x1="5.08" y1="3.81" x2="5.08" y2="5.3975" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="5.3975" x2="10.16" y2="5.3975" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="5.3975" x2="10.16" y2="3.81" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="3.81" x2="12.7" y2="3.81" width="0.4064" layer="1"/>
-<contactref element="C4" pad="2"/>
-<wire x1="5.08" y1="3.81" x2="5.08" y2="1.5875" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="1.5875" x2="4.66" y2="1.5875" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$12">
-<contactref element="U$7" pad="3"/>
-<wire x1="7.62" y1="3.81" x2="7.62" y2="1.27" width="0.4064" layer="1"/>
-<contactref element="U$17" pad="1"/>
-<wire x1="12.7" y1="1.27" x2="7.62" y2="1.27" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$1">
-<contactref element="U$10" pad="1"/>
-<contactref element="C1" pad="1"/>
-<wire x1="2.54" y1="26.67" x2="2.54" y2="29.21" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="26.67" x2="2.54" y2="24.4475" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="24.4475" x2="2.96" y2="24.4475" width="0.4064" layer="1"/>
-<contactref element="U$20" pad="3"/>
-<wire x1="12.7" y1="29.21" x2="2.54" y2="29.21" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$22">
-<contactref element="U$7" pad="1"/>
-<contactref element="C4" pad="1"/>
-<wire x1="2.54" y1="6.35" x2="2.54" y2="3.81" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="3.81" x2="2.54" y2="1.5875" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="1.5875" x2="2.96" y2="1.5875" width="0.4064" layer="1"/>
-<contactref element="U$17" pad="3"/>
-<wire x1="12.7" y1="6.35" x2="2.54" y2="6.35" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$25">
-<contactref element="U$8" pad="1"/>
-<contactref element="C3" pad="1"/>
-<wire x1="2.54" y1="13.97" x2="2.54" y2="11.43" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="11.43" x2="2.54" y2="9.2075" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="9.2075" x2="2.96" y2="9.2075" width="0.4064" layer="1"/>
-<contactref element="U$18" pad="3"/>
-<wire x1="12.7" y1="13.97" x2="2.54" y2="13.97" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$28">
-<contactref element="U$9" pad="1"/>
-<contactref element="C2" pad="1"/>
-<wire x1="2.54" y1="21.59" x2="2.54" y2="19.05" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="19.05" x2="2.54" y2="16.8275" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="16.8275" x2="2.96" y2="16.8275" width="0.4064" layer="1"/>
-<contactref element="U$19" pad="3"/>
-<wire x1="12.7" y1="21.59" x2="2.54" y2="21.59" width="0.4064" layer="1"/>
-</signal>
-</signals>
-<errors>
-<approved hash="3,1,6fdb95d1a4565e5c"/>
-<approved hash="3,1,4b6d71664bea71e1"/>
-<approved hash="3,1,b7a391a960e646ec"/>
-</errors>
-</board>
-</drawing>
-<compatibility>
-<note version="6.3" minversion="6.2.2" severity="warning">
-Since Version 6.2.2 text objects can contain more than one line,
-which will not be processed correctly with this version.
-</note>
-</compatibility>
-</eagle>
diff --git a/roborio_expansion_boards/analog_adapter.sch b/roborio_expansion_boards/analog_adapter.sch
deleted file mode 100644
index 125c295..0000000
--- a/roborio_expansion_boards/analog_adapter.sch
+++ /dev/null
@@ -1,740 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE eagle SYSTEM "eagle.dtd">
-<eagle version="6.5.0">
-<drawing>
-<settings>
-<setting alwaysvectorfont="no"/>
-<setting verticaltext="up"/>
-</settings>
-<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
-<layers>
-<layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
-<layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
-<layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
-<layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
-<layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
-<layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
-<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
-<layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
-<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
-<layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
-<layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
-<layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
-<layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
-<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
-<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
-<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
-<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
-<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
-<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
-<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
-<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
-<layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
-<layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
-<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
-<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
-<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
-<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
-<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
-<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
-<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
-<layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
-<layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
-<layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
-<layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
-<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
-<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
-<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
-<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
-<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
-<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
-<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
-<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
-<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
-<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
-<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
-<layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
-<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
-<layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
-<layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
-<layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
-<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
-<layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
-<layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
-<layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
-<layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
-<layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
-<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
-<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
-<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
-<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
-<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
-<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
-<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
-<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
-<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
-<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
-<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
-</layers>
-<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
-<libraries>
-<library name="custom">
-<packages>
-<package name="22-23-2031">
-<description>3-pin Molex locking connector (male) 22-23-2031.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-3.1242" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="-3.7338" x2="-3.1242" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="-3.1242" y1="-3.7338" x2="-3.1242" y2="3.7338" width="0.127" layer="21"/>
-<rectangle x1="-3.1242" y1="-3.7338" x2="3.0988" y2="3.7338" layer="39"/>
-<wire x1="3.0988" y1="3.7338" x2="3.0988" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="-3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-</package>
-<package name="PWM_1X3">
-<description>Generic 1x3 0.1" pitch connector.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-1.27" y1="3.81" x2="1.27" y2="3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="3.81" x2="1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="-3.81" x2="-1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="-1.27" y1="-3.81" x2="-1.27" y2="3.81" width="0.127" layer="21"/>
-<rectangle x1="-1.27" y1="-3.81" x2="1.27" y2="3.81" layer="39"/>
-</package>
-<package name="0603">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-<package name="CAP-PTH-SMALL">
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651"/>
-<text x="0.508" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="0.254" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="CAP-PTH-SMALL2">
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="1.27" x2="3.81" y2="1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="1.27" x2="3.81" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="-1.27" x2="-1.27" y2="1.27" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651"/>
-<text x="-1.27" y="1.905" size="0.6096" layer="25">&gt;Name</text>
-<text x="-1.27" y="-2.54" size="0.6096" layer="27">&gt;Value</text>
-</package>
-<package name="0805">
-<wire x1="-0.3" y1="0.6" x2="0.3" y2="0.6" width="0.1524" layer="21"/>
-<wire x1="-0.3" y1="-0.6" x2="0.3" y2="-0.6" width="0.1524" layer="21"/>
-<smd name="1" x="-0.9" y="0" dx="0.8" dy="1.2" layer="1"/>
-<smd name="2" x="0.9" y="0" dx="0.8" dy="1.2" layer="1"/>
-<text x="-0.762" y="0.8255" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.016" y="-1.397" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="CAP-PTH-LARGE">
-<wire x1="0" y1="0.635" x2="0" y2="0" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="0" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="-2.54" y2="0" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="2.54" y2="0" width="0.2032" layer="21"/>
-<pad name="1" x="-4.826" y="0" drill="0.9" diameter="1.905"/>
-<pad name="2" x="4.572" y="0" drill="0.9" diameter="1.905"/>
-<text x="-0.762" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="-1.016" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="GRM43D">
-<wire x1="2.25" y1="1.6" x2="1.1" y2="1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="1.6" x2="-1.1" y2="1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="1.6" x2="-2.25" y2="1.6" width="0.127" layer="51"/>
-<wire x1="-2.25" y1="1.6" x2="-2.25" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-2.25" y1="-1.6" x2="-1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="-1.6" x2="1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="-1.6" x2="2.25" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="2.25" y1="-1.6" x2="2.25" y2="1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="1.6" x2="1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="1.6" x2="-1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-2.3" y1="1.8" x2="2.3" y2="1.8" width="0.127" layer="21"/>
-<wire x1="-2.3" y1="-1.8" x2="2.3" y2="-1.8" width="0.127" layer="21"/>
-<smd name="A" x="1.927" y="0" dx="3.2" dy="1.65" layer="1" rot="R90"/>
-<smd name="C" x="-1.927" y="0" dx="3.2" dy="1.65" layer="1" rot="R90"/>
-<text x="-2" y="2" size="0.4064" layer="25">&gt;NAME</text>
-<text x="0" y="-2" size="0.4064" layer="27" rot="R180">&gt;VALUE</text>
-<rectangle x1="-2.2" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
-<rectangle x1="1.1" y1="-1.6" x2="2.2" y2="1.6" layer="51"/>
-</package>
-<package name="0603-CAP">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<wire x1="0" y1="0.0305" x2="0" y2="-0.0305" width="0.5588" layer="21"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-<package name="0402-CAP">
-<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
-chip</description>
-<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
-<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
-<wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
-<wire x1="0" y1="0.0305" x2="0" y2="-0.0305" width="0.4064" layer="21"/>
-<smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
-<smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
-<text x="-0.889" y="0.6985" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.0795" y="-1.143" size="0.4064" layer="27">&gt;VALUE</text>
-<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
-<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-<package name="CAP-PTH-5MM">
-<wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.2032" layer="21"/>
-<pad name="1" x="-2.5" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.5" y="0" drill="0.7" diameter="1.651"/>
-<text x="-0.762" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="-1.016" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="AXIAL-5MM">
-<wire x1="-1.14" y1="0.762" x2="1.14" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0.762" x2="1.14" y2="0" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0" x2="1.14" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="-0.762" x2="-1.14" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="-0.762" x2="-1.14" y2="0" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="0" x2="-1.14" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0" x2="1.394" y2="0" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="0" x2="-1.394" y2="0" width="0.2032" layer="21"/>
-<pad name="P$1" x="-2.5" y="0" drill="0.9" diameter="1.8796"/>
-<pad name="P$2" x="2.5" y="0" drill="0.9" diameter="1.8796"/>
-<text x="-2.54" y="1.17" size="0.4" layer="25">&gt;Name</text>
-<text x="-1.032" y="-0.208" size="0.4" layer="21" ratio="15">&gt;Value</text>
-</package>
-<package name="1210">
-<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.3" x2="1.6" y2="-1.3" width="0.127" layer="51"/>
-<wire x1="1.6" y1="-1.3" x2="-1.6" y2="-1.3" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="-1.3" x2="-1.6" y2="1.3" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.2032" layer="21"/>
-<wire x1="-1.6" y1="-1.3" x2="1.6" y2="-1.3" width="0.2032" layer="21"/>
-<smd name="1" x="-1.6" y="0" dx="1.2" dy="2" layer="1"/>
-<smd name="2" x="1.6" y="0" dx="1.2" dy="2" layer="1"/>
-<text x="-0.8" y="0.5" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-0.9" y="-0.7" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="1206">
-<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
-<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
-<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
-<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
-<text x="-1.27" y="1.143" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.397" y="-1.524" size="0.4064" layer="27">&gt;VALUE</text>
-<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
-<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
-</package>
-<package name="CTZ3">
-<description>CTZ3 Series land pattern for variable capacitor - CTZ3E-50C-W1-PF</description>
-<wire x1="-1.6" y1="1.4" x2="-1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="-2.25" x2="1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.4" x2="1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="-0.5" y1="0" x2="0.5" y2="0" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="1.4" x2="-1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.4" x2="1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="-1" y1="2.2" x2="1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="0" y1="0.8" x2="0" y2="-0.8" width="0.127" layer="51"/>
-<wire x1="-0.8" y1="0" x2="0.8" y2="0" width="0.127" layer="51"/>
-<wire x1="-1.05" y1="2.25" x2="-1.7" y2="1.45" width="0.127" layer="21"/>
-<wire x1="-1.7" y1="1.45" x2="-1.7" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="-1.7" y1="-2.35" x2="-1.05" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="1.05" y1="2.25" x2="1.7" y2="1.4" width="0.127" layer="21"/>
-<wire x1="1.7" y1="1.4" x2="1.7" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="1.7" y1="-2.35" x2="1.05" y2="-2.35" width="0.127" layer="21"/>
-<smd name="+" x="0" y="2.05" dx="1.5" dy="1.2" layer="1"/>
-<smd name="-" x="0" y="-2.05" dx="1.5" dy="1.2" layer="1"/>
-<text x="-2" y="3" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-2" y="-3.4" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="CAP-PTH-SMALL-KIT">
-<description>&lt;h3&gt;CAP-PTH-SMALL-KIT&lt;/h3&gt;
-Commonly used for small ceramic capacitors. Like our 0.1uF (http://www.sparkfun.com/products/8375) or 22pF caps (http://www.sparkfun.com/products/8571).&lt;br&gt;
-&lt;br&gt;
-&lt;b&gt;Warning:&lt;/b&gt; This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.</description>
-<wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.254" layer="21"/>
-<wire x1="-2.667" y1="1.27" x2="2.667" y2="1.27" width="0.254" layer="21"/>
-<wire x1="2.667" y1="1.27" x2="2.667" y2="-1.27" width="0.254" layer="21"/>
-<wire x1="2.667" y1="-1.27" x2="-2.667" y2="-1.27" width="0.254" layer="21"/>
-<wire x1="-2.667" y1="-1.27" x2="-2.667" y2="1.27" width="0.254" layer="21"/>
-<pad name="1" x="-1.397" y="0" drill="1.016" diameter="2.032" stop="no"/>
-<pad name="2" x="1.397" y="0" drill="1.016" diameter="2.032" stop="no"/>
-<polygon width="0.127" layer="30">
-<vertex x="-1.4021" y="-0.9475" curve="-90"/>
-<vertex x="-2.357" y="-0.0178" curve="-90.011749"/>
-<vertex x="-1.4046" y="0.9576" curve="-90"/>
-<vertex x="-0.4546" y="-0.0204" curve="-90.024193"/>
-</polygon>
-<polygon width="0.127" layer="29">
-<vertex x="-1.4046" y="-0.4395" curve="-90.012891"/>
-<vertex x="-1.8491" y="-0.0153" curve="-90"/>
-<vertex x="-1.4046" y="0.452" curve="-90"/>
-<vertex x="-0.9627" y="-0.0051" curve="-90.012967"/>
-</polygon>
-<polygon width="0.127" layer="30">
-<vertex x="1.397" y="-0.9475" curve="-90"/>
-<vertex x="0.4421" y="-0.0178" curve="-90.011749"/>
-<vertex x="1.3945" y="0.9576" curve="-90"/>
-<vertex x="2.3445" y="-0.0204" curve="-90.024193"/>
-</polygon>
-<polygon width="0.127" layer="29">
-<vertex x="1.3945" y="-0.4395" curve="-90.012891"/>
-<vertex x="0.95" y="-0.0153" curve="-90"/>
-<vertex x="1.3945" y="0.452" curve="-90"/>
-<vertex x="1.8364" y="-0.0051" curve="-90.012967"/>
-</polygon>
-</package>
-<package name="CAP-PTH-SMALLEZ">
-<description>This is the "EZ" version of the .1" spaced ceramic thru-hole cap.&lt;br&gt;
-It has reduced top mask to make it harder to put the component on the wrong side of the board.</description>
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="1.27" x2="3.81" y2="1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="1.27" x2="3.81" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="-1.27" x2="-1.27" y2="1.27" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651" stop="no"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651" stop="no"/>
-<text x="-1.27" y="1.905" size="0.6096" layer="25">&gt;Name</text>
-<text x="-1.27" y="-2.54" size="0.6096" layer="27">&gt;Value</text>
-<circle x="0" y="0" radius="0.898025" width="0" layer="30"/>
-<circle x="2.54" y="0" radius="0.915809375" width="0" layer="30"/>
-<circle x="0" y="0" radius="0.40160625" width="0" layer="29"/>
-<circle x="2.54" y="0" radius="0.40160625" width="0" layer="29"/>
-</package>
-</packages>
-<symbols>
-<symbol name="22-23-2031">
-<description>3-pin Molex locking connector (male).</description>
-<pin name="PWR" x="-7.62" y="0" length="middle" direction="pwr"/>
-<pin name="GND" x="-7.62" y="5.08" length="middle" direction="pwr"/>
-<pin name="SIG" x="-7.62" y="-5.08" length="middle"/>
-<wire x1="-2.54" y1="7.62" x2="5.08" y2="7.62" width="0.254" layer="94"/>
-<wire x1="5.08" y1="7.62" x2="5.08" y2="-7.62" width="0.254" layer="94"/>
-<wire x1="5.08" y1="-7.62" x2="-2.54" y2="-7.62" width="0.254" layer="94"/>
-<wire x1="-2.54" y1="-7.62" x2="-2.54" y2="7.62" width="0.254" layer="94"/>
-<text x="-5.08" y="8.255" size="1.778" layer="95">&gt;NAME</text>
-</symbol>
-<symbol name="CAP">
-<wire x1="0" y1="2.54" x2="0" y2="2.032" width="0.1524" layer="94"/>
-<wire x1="0" y1="0" x2="0" y2="0.508" width="0.1524" layer="94"/>
-<text x="1.524" y="2.921" size="1.778" layer="95">&gt;NAME</text>
-<text x="1.524" y="-2.159" size="1.778" layer="96">&gt;VALUE</text>
-<rectangle x1="-2.032" y1="0.508" x2="2.032" y2="1.016" layer="94"/>
-<rectangle x1="-2.032" y1="1.524" x2="2.032" y2="2.032" layer="94"/>
-<pin name="1" x="0" y="5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
-<pin name="2" x="0" y="-2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
-</symbol>
-</symbols>
-<devicesets>
-<deviceset name="22-23-2031">
-<description>Molex 3-pin male connector 22-23-2031.</description>
-<gates>
-<gate name="G$1" symbol="22-23-2031" x="0" y="0"/>
-</gates>
-<devices>
-<device name="" package="22-23-2031">
-<connects>
-<connect gate="G$1" pin="GND" pad="1"/>
-<connect gate="G$1" pin="PWR" pad="2"/>
-<connect gate="G$1" pin="SIG" pad="3"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="GENERIC" package="PWM_1X3">
-<connects>
-<connect gate="G$1" pin="GND" pad="1"/>
-<connect gate="G$1" pin="PWR" pad="2"/>
-<connect gate="G$1" pin="SIG" pad="3"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-<deviceset name="CAP" prefix="C" uservalue="yes">
-<description>&lt;b&gt;Capacitor&lt;/b&gt;
-Standard 0603 ceramic capacitor, and 0.1" leaded capacitor.</description>
-<gates>
-<gate name="G$1" symbol="CAP" x="0" y="0"/>
-</gates>
-<devices>
-<device name="PTH" package="CAP-PTH-SMALL">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH2" package="CAP-PTH-SMALL2">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0805" package="0805">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH3" package="CAP-PTH-LARGE">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="SMD" package="GRM43D">
-<connects>
-<connect gate="G$1" pin="1" pad="A"/>
-<connect gate="G$1" pin="2" pad="C"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0603-CAP" package="0603-CAP">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0402-CAP" package="0402-CAP">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH1" package="CAP-PTH-5MM">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="_" package="AXIAL-5MM">
-<connects>
-<connect gate="G$1" pin="1" pad="P$1"/>
-<connect gate="G$1" pin="2" pad="P$2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="1210" package="1210">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="1206" package="1206">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="ASMD" package="CTZ3">
-<connects>
-<connect gate="G$1" pin="1" pad="+"/>
-<connect gate="G$1" pin="2" pad="-"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="KIT" package="CAP-PTH-SMALL-KIT">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="EZ" package="CAP-PTH-SMALLEZ">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0603" package="0603">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-</devicesets>
-</library>
-</libraries>
-<attributes>
-</attributes>
-<variantdefs>
-</variantdefs>
-<classes>
-<class number="0" name="default" width="0" drill="0">
-</class>
-</classes>
-<parts>
-<part name="U$7" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$8" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$9" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$10" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$17" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$18" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$19" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$20" library="custom" deviceset="22-23-2031" device=""/>
-<part name="C1" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C2" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C3" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C4" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-</parts>
-<sheets>
-<sheet>
-<plain>
-</plain>
-<instances>
-<instance part="U$7" gate="G$1" x="7.62" y="10.16" rot="MR0"/>
-<instance part="U$8" gate="G$1" x="7.62" y="30.48" rot="MR0"/>
-<instance part="U$9" gate="G$1" x="7.62" y="50.8" rot="MR0"/>
-<instance part="U$10" gate="G$1" x="7.62" y="71.12" rot="MR0"/>
-<instance part="U$17" gate="G$1" x="35.56" y="10.16"/>
-<instance part="U$18" gate="G$1" x="35.56" y="30.48"/>
-<instance part="U$19" gate="G$1" x="35.56" y="50.8"/>
-<instance part="U$20" gate="G$1" x="35.56" y="71.12"/>
-<instance part="C1" gate="G$1" x="17.78" y="73.66"/>
-<instance part="C2" gate="G$1" x="17.78" y="53.34"/>
-<instance part="C3" gate="G$1" x="17.78" y="33.02"/>
-<instance part="C4" gate="G$1" x="17.78" y="12.7"/>
-</instances>
-<busses>
-</busses>
-<nets>
-<net name="N$2" class="0">
-<segment>
-<pinref part="U$10" gate="G$1" pin="PWR"/>
-<pinref part="U$20" gate="G$1" pin="PWR"/>
-<wire x1="15.24" y1="71.12" x2="17.78" y2="71.12" width="0.1524" layer="91"/>
-<pinref part="C1" gate="G$1" pin="2"/>
-<wire x1="17.78" y1="71.12" x2="27.94" y2="71.12" width="0.1524" layer="91"/>
-<junction x="17.78" y="71.12"/>
-</segment>
-</net>
-<net name="N$3" class="0">
-<segment>
-<pinref part="U$10" gate="G$1" pin="SIG"/>
-<wire x1="15.24" y1="66.04" x2="22.86" y2="66.04" width="0.1524" layer="91"/>
-<pinref part="U$20" gate="G$1" pin="GND"/>
-<wire x1="22.86" y1="66.04" x2="22.86" y2="76.2" width="0.1524" layer="91"/>
-<wire x1="22.86" y1="76.2" x2="27.94" y2="76.2" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$5" class="0">
-<segment>
-<pinref part="U$9" gate="G$1" pin="PWR"/>
-<pinref part="U$19" gate="G$1" pin="PWR"/>
-<wire x1="15.24" y1="50.8" x2="17.78" y2="50.8" width="0.1524" layer="91"/>
-<pinref part="C2" gate="G$1" pin="2"/>
-<wire x1="17.78" y1="50.8" x2="27.94" y2="50.8" width="0.1524" layer="91"/>
-<junction x="17.78" y="50.8"/>
-</segment>
-</net>
-<net name="N$6" class="0">
-<segment>
-<pinref part="U$9" gate="G$1" pin="SIG"/>
-<wire x1="15.24" y1="45.72" x2="22.86" y2="45.72" width="0.1524" layer="91"/>
-<pinref part="U$19" gate="G$1" pin="GND"/>
-<wire x1="22.86" y1="45.72" x2="22.86" y2="55.88" width="0.1524" layer="91"/>
-<wire x1="22.86" y1="55.88" x2="27.94" y2="55.88" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$8" class="0">
-<segment>
-<pinref part="U$8" gate="G$1" pin="PWR"/>
-<pinref part="U$18" gate="G$1" pin="PWR"/>
-<wire x1="15.24" y1="30.48" x2="17.78" y2="30.48" width="0.1524" layer="91"/>
-<pinref part="C3" gate="G$1" pin="2"/>
-<wire x1="17.78" y1="30.48" x2="27.94" y2="30.48" width="0.1524" layer="91"/>
-<junction x="17.78" y="30.48"/>
-</segment>
-</net>
-<net name="N$9" class="0">
-<segment>
-<pinref part="U$8" gate="G$1" pin="SIG"/>
-<wire x1="15.24" y1="25.4" x2="22.86" y2="25.4" width="0.1524" layer="91"/>
-<pinref part="U$18" gate="G$1" pin="GND"/>
-<wire x1="22.86" y1="25.4" x2="22.86" y2="35.56" width="0.1524" layer="91"/>
-<wire x1="22.86" y1="35.56" x2="27.94" y2="35.56" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$11" class="0">
-<segment>
-<pinref part="U$7" gate="G$1" pin="PWR"/>
-<pinref part="U$17" gate="G$1" pin="PWR"/>
-<wire x1="15.24" y1="10.16" x2="17.78" y2="10.16" width="0.1524" layer="91"/>
-<pinref part="C4" gate="G$1" pin="2"/>
-<wire x1="17.78" y1="10.16" x2="27.94" y2="10.16" width="0.1524" layer="91"/>
-<junction x="17.78" y="10.16"/>
-</segment>
-</net>
-<net name="N$12" class="0">
-<segment>
-<pinref part="U$7" gate="G$1" pin="SIG"/>
-<wire x1="15.24" y1="5.08" x2="22.86" y2="5.08" width="0.1524" layer="91"/>
-<pinref part="U$17" gate="G$1" pin="GND"/>
-<wire x1="22.86" y1="5.08" x2="22.86" y2="15.24" width="0.1524" layer="91"/>
-<wire x1="22.86" y1="15.24" x2="27.94" y2="15.24" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$1" class="0">
-<segment>
-<pinref part="U$10" gate="G$1" pin="GND"/>
-<pinref part="C1" gate="G$1" pin="1"/>
-<wire x1="15.24" y1="76.2" x2="15.24" y2="78.74" width="0.1524" layer="91"/>
-<wire x1="15.24" y1="78.74" x2="17.78" y2="78.74" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="78.74" x2="25.4" y2="78.74" width="0.1524" layer="91"/>
-<junction x="17.78" y="78.74"/>
-<pinref part="U$20" gate="G$1" pin="SIG"/>
-<wire x1="25.4" y1="78.74" x2="25.4" y2="66.04" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="66.04" x2="27.94" y2="66.04" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$22" class="0">
-<segment>
-<pinref part="U$7" gate="G$1" pin="GND"/>
-<pinref part="C4" gate="G$1" pin="1"/>
-<wire x1="15.24" y1="15.24" x2="15.24" y2="17.78" width="0.1524" layer="91"/>
-<wire x1="15.24" y1="17.78" x2="17.78" y2="17.78" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="17.78" x2="25.4" y2="17.78" width="0.1524" layer="91"/>
-<junction x="17.78" y="17.78"/>
-<pinref part="U$17" gate="G$1" pin="SIG"/>
-<wire x1="25.4" y1="17.78" x2="25.4" y2="5.08" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="5.08" x2="27.94" y2="5.08" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$25" class="0">
-<segment>
-<pinref part="U$8" gate="G$1" pin="GND"/>
-<pinref part="C3" gate="G$1" pin="1"/>
-<wire x1="15.24" y1="35.56" x2="15.24" y2="38.1" width="0.1524" layer="91"/>
-<wire x1="15.24" y1="38.1" x2="17.78" y2="38.1" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="38.1" x2="25.4" y2="38.1" width="0.1524" layer="91"/>
-<junction x="17.78" y="38.1"/>
-<pinref part="U$18" gate="G$1" pin="SIG"/>
-<wire x1="25.4" y1="38.1" x2="25.4" y2="25.4" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="25.4" x2="27.94" y2="25.4" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$28" class="0">
-<segment>
-<pinref part="U$9" gate="G$1" pin="GND"/>
-<pinref part="C2" gate="G$1" pin="1"/>
-<wire x1="15.24" y1="55.88" x2="15.24" y2="58.42" width="0.1524" layer="91"/>
-<wire x1="15.24" y1="58.42" x2="17.78" y2="58.42" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="58.42" x2="25.4" y2="58.42" width="0.1524" layer="91"/>
-<junction x="17.78" y="58.42"/>
-<pinref part="U$19" gate="G$1" pin="SIG"/>
-<wire x1="25.4" y1="58.42" x2="25.4" y2="45.72" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="45.72" x2="27.94" y2="45.72" width="0.1524" layer="91"/>
-</segment>
-</net>
-</nets>
-</sheet>
-</sheets>
-</schematic>
-</drawing>
-</eagle>
diff --git a/roborio_expansion_boards/custom.lbr b/roborio_expansion_boards/custom.lbr
deleted file mode 100644
index 6ccb295..0000000
--- a/roborio_expansion_boards/custom.lbr
+++ /dev/null
@@ -1,756 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE eagle SYSTEM "eagle.dtd">
-<eagle version="6.5.0">
-<drawing>
-<settings>
-<setting alwaysvectorfont="no"/>
-<setting verticaltext="up"/>
-</settings>
-<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
-<layers>
-<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
-<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
-<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
-<layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="28" name="bValues" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="29" name="tStop" color="7" fill="3" visible="no" active="yes"/>
-<layer number="30" name="bStop" color="7" fill="6" visible="no" active="yes"/>
-<layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/>
-<layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/>
-<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/>
-<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/>
-<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="yes"/>
-<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/>
-<layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/>
-<layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/>
-<layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/>
-<layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/>
-<layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
-<layer number="45" name="Holes" color="7" fill="1" visible="no" active="yes"/>
-<layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/>
-<layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/>
-<layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
-<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
-<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
-<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
-<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
-<layer number="93" name="Pins" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
-<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
-<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
-<layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
-<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
-<layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
-<layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
-<layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
-<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
-<layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
-<layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
-<layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
-<layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
-<layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
-<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
-<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
-<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
-<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
-<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
-<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
-<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
-<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
-<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
-<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
-<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
-</layers>
-<library>
-<packages>
-<package name="SFH11-PBPC-D17-ST-BK">
-<description>2x17 0.01" keyed female connector.
-
-Sullins SFH11-PBPC-D17-ST-BK&lt;br&gt;&lt;br&gt;
-
-This package is upside down (you put it on the top side and it corresponds to a connector on the bottom); oops...</description>
-<pad name="18" x="-1.27" y="0" drill="1.016"/>
-<pad name="17" x="1.27" y="0" drill="1.016"/>
-<pad name="20" x="-1.27" y="2.54" drill="1.016"/>
-<pad name="22" x="-1.27" y="5.08" drill="1.016"/>
-<pad name="24" x="-1.27" y="7.62" drill="1.016"/>
-<pad name="26" x="-1.27" y="10.16" drill="1.016"/>
-<pad name="28" x="-1.27" y="12.7" drill="1.016"/>
-<pad name="30" x="-1.27" y="15.24" drill="1.016"/>
-<pad name="32" x="-1.27" y="17.78" drill="1.016"/>
-<pad name="34" x="-1.27" y="20.32" drill="1.016"/>
-<pad name="16" x="-1.27" y="-2.54" drill="1.016"/>
-<pad name="14" x="-1.27" y="-5.08" drill="1.016"/>
-<pad name="12" x="-1.27" y="-7.62" drill="1.016"/>
-<pad name="10" x="-1.27" y="-10.16" drill="1.016"/>
-<pad name="8" x="-1.27" y="-12.7" drill="1.016"/>
-<pad name="6" x="-1.27" y="-15.24" drill="1.016"/>
-<pad name="4" x="-1.27" y="-17.78" drill="1.016"/>
-<pad name="2" x="-1.27" y="-20.32" drill="1.016"/>
-<pad name="1" x="1.27" y="-20.32" drill="1.016" shape="square"/>
-<pad name="3" x="1.27" y="-17.78" drill="1.016"/>
-<pad name="5" x="1.27" y="-15.24" drill="1.016"/>
-<pad name="7" x="1.27" y="-12.7" drill="1.016"/>
-<pad name="9" x="1.27" y="-10.16" drill="1.016"/>
-<pad name="11" x="1.27" y="-7.62" drill="1.016"/>
-<pad name="13" x="1.27" y="-5.08" drill="1.016"/>
-<pad name="15" x="1.27" y="-2.54" drill="1.016"/>
-<pad name="19" x="1.27" y="2.54" drill="1.016"/>
-<pad name="21" x="1.27" y="5.08" drill="1.016"/>
-<pad name="23" x="1.27" y="7.62" drill="1.016"/>
-<pad name="25" x="1.27" y="10.16" drill="1.016"/>
-<pad name="27" x="1.27" y="12.7" drill="1.016"/>
-<pad name="29" x="1.27" y="15.24" drill="1.016"/>
-<pad name="31" x="1.27" y="17.78" drill="1.016"/>
-<pad name="33" x="1.27" y="20.32" drill="1.016"/>
-<text x="4.445" y="-20.32" size="1.27" layer="21" rot="R90">1</text>
-<text x="-3.175" y="19.05" size="1.27" layer="21" rot="R90">34</text>
-<wire x1="2.9972" y1="1.8542" x2="3.9878" y2="1.8542" width="0.127" layer="22"/>
-<wire x1="3.9878" y1="1.8542" x2="3.9878" y2="-1.8542" width="0.127" layer="22"/>
-<wire x1="3.9878" y1="-1.8542" x2="2.9972" y2="-1.8542" width="0.127" layer="22"/>
-<wire x1="-2.9972" y1="24.13" x2="2.9972" y2="24.13" width="0.127" layer="22"/>
-<wire x1="2.9972" y1="24.13" x2="2.9972" y2="1.8542" width="0.127" layer="22"/>
-<wire x1="2.9972" y1="1.8542" x2="2.9972" y2="-1.8542" width="0.127" layer="22"/>
-<wire x1="2.9972" y1="-1.8542" x2="2.9972" y2="-24.13" width="0.127" layer="22"/>
-<wire x1="2.9972" y1="-24.13" x2="-2.9972" y2="-24.13" width="0.127" layer="22"/>
-<wire x1="-2.9972" y1="-24.13" x2="-2.9972" y2="24.13" width="0.127" layer="22"/>
-<wire x1="-4.5466" y1="25.4" x2="4.5466" y2="25.4" width="0.127" layer="21"/>
-<wire x1="4.5466" y1="25.4" x2="4.5466" y2="-25.4" width="0.127" layer="21"/>
-<wire x1="4.5466" y1="-25.4" x2="-4.5466" y2="-25.4" width="0.127" layer="21"/>
-<wire x1="-4.5466" y1="-25.4" x2="-4.5466" y2="25.4" width="0.127" layer="21"/>
-<rectangle x1="-4.5466" y1="-25.4" x2="4.5466" y2="25.4" layer="40"/>
-</package>
-<package name="22-23-2031">
-<description>3-pin Molex locking connector (male) 22-23-2031.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-3.1242" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="-3.7338" x2="-3.1242" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="-3.1242" y1="-3.7338" x2="-3.1242" y2="3.7338" width="0.127" layer="21"/>
-<rectangle x1="-3.1242" y1="-3.7338" x2="3.0988" y2="3.7338" layer="39"/>
-<wire x1="3.0988" y1="3.7338" x2="3.0988" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="-3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-</package>
-<package name="22-23-2041">
-<description>4-pin Molex locking connector (male) 22-23-2041.</description>
-<pad name="2" x="0" y="1.27" drill="1.016"/>
-<pad name="1" x="0" y="3.81" drill="1.016"/>
-<pad name="3" x="0" y="-1.27" drill="1.016"/>
-<wire x1="-3.1242" y1="5.0038" x2="1.0668" y2="5.0038" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="5.0038" x2="1.0668" y2="-5.0038" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="-5.0038" x2="-3.1242" y2="-5.0038" width="0.127" layer="21"/>
-<wire x1="-3.1242" y1="-5.0038" x2="-3.1242" y2="5.0038" width="0.127" layer="21"/>
-<rectangle x1="-3.1242" y1="-5.0038" x2="3.0988" y2="5.0038" layer="39"/>
-<wire x1="3.0988" y1="5.0038" x2="3.0988" y2="-5.0038" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="5.0038" x2="1.0668" y2="5.0038" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="-5.0038" x2="1.0668" y2="-5.0038" width="0.127" layer="21"/>
-<pad name="4" x="0" y="-3.81" drill="1.016"/>
-</package>
-<package name="PWM_1X3">
-<description>Generic 1x3 0.1" pitch connector.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-1.27" y1="3.81" x2="1.27" y2="3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="3.81" x2="1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="-3.81" x2="-1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="-1.27" y1="-3.81" x2="-1.27" y2="3.81" width="0.127" layer="21"/>
-<rectangle x1="-1.27" y1="-3.81" x2="1.27" y2="3.81" layer="39"/>
-</package>
-<package name="CAP-PTH-SMALL">
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651"/>
-<text x="0.508" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="0.254" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="CAP-PTH-SMALL2">
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="1.27" x2="3.81" y2="1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="1.27" x2="3.81" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="-1.27" x2="-1.27" y2="1.27" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651"/>
-<text x="-1.27" y="1.905" size="0.6096" layer="25">&gt;Name</text>
-<text x="-1.27" y="-2.54" size="0.6096" layer="27">&gt;Value</text>
-</package>
-<package name="0805">
-<wire x1="-0.3" y1="0.6" x2="0.3" y2="0.6" width="0.1524" layer="21"/>
-<wire x1="-0.3" y1="-0.6" x2="0.3" y2="-0.6" width="0.1524" layer="21"/>
-<smd name="1" x="-0.9" y="0" dx="0.8" dy="1.2" layer="1"/>
-<smd name="2" x="0.9" y="0" dx="0.8" dy="1.2" layer="1"/>
-<text x="-0.762" y="0.8255" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.016" y="-1.397" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="CAP-PTH-LARGE">
-<wire x1="0" y1="0.635" x2="0" y2="0" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="0" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="-2.54" y2="0" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="2.54" y2="0" width="0.2032" layer="21"/>
-<pad name="1" x="-4.826" y="0" drill="0.9" diameter="1.905"/>
-<pad name="2" x="4.572" y="0" drill="0.9" diameter="1.905"/>
-<text x="-0.762" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="-1.016" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="GRM43D">
-<wire x1="2.25" y1="1.6" x2="1.1" y2="1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="1.6" x2="-1.1" y2="1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="1.6" x2="-2.25" y2="1.6" width="0.127" layer="51"/>
-<wire x1="-2.25" y1="1.6" x2="-2.25" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-2.25" y1="-1.6" x2="-1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="-1.6" x2="1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="-1.6" x2="2.25" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="2.25" y1="-1.6" x2="2.25" y2="1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="1.6" x2="1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="1.6" x2="-1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-2.3" y1="1.8" x2="2.3" y2="1.8" width="0.127" layer="21"/>
-<wire x1="-2.3" y1="-1.8" x2="2.3" y2="-1.8" width="0.127" layer="21"/>
-<smd name="A" x="1.927" y="0" dx="3.2" dy="1.65" layer="1" rot="R90"/>
-<smd name="C" x="-1.927" y="0" dx="3.2" dy="1.65" layer="1" rot="R90"/>
-<text x="-2" y="2" size="0.4064" layer="25">&gt;NAME</text>
-<text x="0" y="-2" size="0.4064" layer="27" rot="R180">&gt;VALUE</text>
-<rectangle x1="-2.2" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
-<rectangle x1="1.1" y1="-1.6" x2="2.2" y2="1.6" layer="51"/>
-</package>
-<package name="0603-CAP">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<wire x1="0" y1="0.0305" x2="0" y2="-0.0305" width="0.5588" layer="21"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-<package name="0402-CAP">
-<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
-chip</description>
-<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
-<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
-<wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
-<wire x1="0" y1="0.0305" x2="0" y2="-0.0305" width="0.4064" layer="21"/>
-<smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
-<smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
-<text x="-0.889" y="0.6985" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.0795" y="-1.143" size="0.4064" layer="27">&gt;VALUE</text>
-<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
-<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-<package name="CAP-PTH-5MM">
-<wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.2032" layer="21"/>
-<pad name="1" x="-2.5" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.5" y="0" drill="0.7" diameter="1.651"/>
-<text x="-0.762" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="-1.016" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="AXIAL-5MM">
-<wire x1="-1.14" y1="0.762" x2="1.14" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0.762" x2="1.14" y2="0" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0" x2="1.14" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="-0.762" x2="-1.14" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="-0.762" x2="-1.14" y2="0" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="0" x2="-1.14" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0" x2="1.394" y2="0" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="0" x2="-1.394" y2="0" width="0.2032" layer="21"/>
-<pad name="P$1" x="-2.5" y="0" drill="0.9" diameter="1.8796"/>
-<pad name="P$2" x="2.5" y="0" drill="0.9" diameter="1.8796"/>
-<text x="-2.54" y="1.17" size="0.4" layer="25">&gt;Name</text>
-<text x="-1.032" y="-0.208" size="0.4" layer="21" ratio="15">&gt;Value</text>
-</package>
-<package name="1210">
-<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.3" x2="1.6" y2="-1.3" width="0.127" layer="51"/>
-<wire x1="1.6" y1="-1.3" x2="-1.6" y2="-1.3" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="-1.3" x2="-1.6" y2="1.3" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.2032" layer="21"/>
-<wire x1="-1.6" y1="-1.3" x2="1.6" y2="-1.3" width="0.2032" layer="21"/>
-<smd name="1" x="-1.6" y="0" dx="1.2" dy="2" layer="1"/>
-<smd name="2" x="1.6" y="0" dx="1.2" dy="2" layer="1"/>
-<text x="-0.8" y="0.5" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-0.9" y="-0.7" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="1206">
-<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
-<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
-<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
-<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
-<text x="-1.27" y="1.143" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.397" y="-1.524" size="0.4064" layer="27">&gt;VALUE</text>
-<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
-<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
-</package>
-<package name="CTZ3">
-<description>CTZ3 Series land pattern for variable capacitor - CTZ3E-50C-W1-PF</description>
-<wire x1="-1.6" y1="1.4" x2="-1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="-2.25" x2="1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.4" x2="1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="-0.5" y1="0" x2="0.5" y2="0" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="1.4" x2="-1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.4" x2="1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="-1" y1="2.2" x2="1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="0" y1="0.8" x2="0" y2="-0.8" width="0.127" layer="51"/>
-<wire x1="-0.8" y1="0" x2="0.8" y2="0" width="0.127" layer="51"/>
-<wire x1="-1.05" y1="2.25" x2="-1.7" y2="1.45" width="0.127" layer="21"/>
-<wire x1="-1.7" y1="1.45" x2="-1.7" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="-1.7" y1="-2.35" x2="-1.05" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="1.05" y1="2.25" x2="1.7" y2="1.4" width="0.127" layer="21"/>
-<wire x1="1.7" y1="1.4" x2="1.7" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="1.7" y1="-2.35" x2="1.05" y2="-2.35" width="0.127" layer="21"/>
-<smd name="+" x="0" y="2.05" dx="1.5" dy="1.2" layer="1"/>
-<smd name="-" x="0" y="-2.05" dx="1.5" dy="1.2" layer="1"/>
-<text x="-2" y="3" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-2" y="-3.4" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="CAP-PTH-SMALL-KIT">
-<description>&lt;h3&gt;CAP-PTH-SMALL-KIT&lt;/h3&gt;
-Commonly used for small ceramic capacitors. Like our 0.1uF (http://www.sparkfun.com/products/8375) or 22pF caps (http://www.sparkfun.com/products/8571).&lt;br&gt;
-&lt;br&gt;
-&lt;b&gt;Warning:&lt;/b&gt; This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.</description>
-<wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.254" layer="21"/>
-<wire x1="-2.667" y1="1.27" x2="2.667" y2="1.27" width="0.254" layer="21"/>
-<wire x1="2.667" y1="1.27" x2="2.667" y2="-1.27" width="0.254" layer="21"/>
-<wire x1="2.667" y1="-1.27" x2="-2.667" y2="-1.27" width="0.254" layer="21"/>
-<wire x1="-2.667" y1="-1.27" x2="-2.667" y2="1.27" width="0.254" layer="21"/>
-<pad name="1" x="-1.397" y="0" drill="1.016" diameter="2.032" stop="no"/>
-<pad name="2" x="1.397" y="0" drill="1.016" diameter="2.032" stop="no"/>
-<polygon width="0.127" layer="30">
-<vertex x="-1.4021" y="-0.9475" curve="-90"/>
-<vertex x="-2.357" y="-0.0178" curve="-90.011749"/>
-<vertex x="-1.4046" y="0.9576" curve="-90"/>
-<vertex x="-0.4546" y="-0.0204" curve="-90.024193"/>
-</polygon>
-<polygon width="0.127" layer="29">
-<vertex x="-1.4046" y="-0.4395" curve="-90.012891"/>
-<vertex x="-1.8491" y="-0.0153" curve="-90"/>
-<vertex x="-1.4046" y="0.452" curve="-90"/>
-<vertex x="-0.9627" y="-0.0051" curve="-90.012967"/>
-</polygon>
-<polygon width="0.127" layer="30">
-<vertex x="1.397" y="-0.9475" curve="-90"/>
-<vertex x="0.4421" y="-0.0178" curve="-90.011749"/>
-<vertex x="1.3945" y="0.9576" curve="-90"/>
-<vertex x="2.3445" y="-0.0204" curve="-90.024193"/>
-</polygon>
-<polygon width="0.127" layer="29">
-<vertex x="1.3945" y="-0.4395" curve="-90.012891"/>
-<vertex x="0.95" y="-0.0153" curve="-90"/>
-<vertex x="1.3945" y="0.452" curve="-90"/>
-<vertex x="1.8364" y="-0.0051" curve="-90.012967"/>
-</polygon>
-</package>
-<package name="CAP-PTH-SMALLEZ">
-<description>This is the "EZ" version of the .1" spaced ceramic thru-hole cap.&lt;br&gt;
-It has reduced top mask to make it harder to put the component on the wrong side of the board.</description>
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="1.27" x2="3.81" y2="1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="1.27" x2="3.81" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="-1.27" x2="-1.27" y2="1.27" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651" stop="no"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651" stop="no"/>
-<text x="-1.27" y="1.905" size="0.6096" layer="25">&gt;Name</text>
-<text x="-1.27" y="-2.54" size="0.6096" layer="27">&gt;Value</text>
-<circle x="0" y="0" radius="0.898025" width="0" layer="30"/>
-<circle x="2.54" y="0" radius="0.915809375" width="0" layer="30"/>
-<circle x="0" y="0" radius="0.40160625" width="0" layer="29"/>
-<circle x="2.54" y="0" radius="0.40160625" width="0" layer="29"/>
-</package>
-<package name="0603">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-</packages>
-<symbols>
-<symbol name="CONN_34PIN">
-<description>2x17 pin connector (NI MXP port).</description>
-<pin name="DIO7_SPI-MOSI" x="-20.32" y="5.08" length="middle"/>
-<pin name="DIO6_SPI-MISO" x="-20.32" y="10.16" length="middle"/>
-<pin name="DIO5_SPI-CLK" x="-20.32" y="15.24" length="middle"/>
-<pin name="DIO4_SPI-CS" x="-20.32" y="20.32" length="middle"/>
-<pin name="DIO3_PWM3" x="-20.32" y="25.4" length="middle"/>
-<pin name="DIO2_PWM2" x="-20.32" y="30.48" length="middle"/>
-<pin name="DIO1_PWM1" x="-20.32" y="35.56" length="middle"/>
-<pin name="DIO0_PWM0" x="-20.32" y="40.64" length="middle"/>
-<pin name="DIO8_PWM4" x="-20.32" y="0" length="middle"/>
-<pin name="DIO9_PWM5" x="-20.32" y="-5.08" length="middle"/>
-<pin name="DIO10_PWM6" x="-20.32" y="-10.16" length="middle"/>
-<pin name="DIO11_PWM7" x="-20.32" y="-15.24" length="middle"/>
-<pin name="DIO12_PWM8" x="-20.32" y="-20.32" length="middle"/>
-<pin name="DIO13_PWM9" x="-20.32" y="-25.4" length="middle"/>
-<pin name="DIO14_I2C-SCL" x="-20.32" y="-30.48" length="middle"/>
-<pin name="DIO15_I2C-SDA" x="-20.32" y="-35.56" length="middle"/>
-<pin name="5V" x="-20.32" y="-40.64" length="middle" direction="pwr"/>
-<pin name="DGND0" x="20.32" y="-5.08" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="DGND1" x="20.32" y="-10.16" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="DGND2" x="20.32" y="-15.24" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="DGND3" x="20.32" y="-20.32" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="DGND4" x="20.32" y="-25.4" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="DGND5" x="20.32" y="-30.48" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="DGND6" x="20.32" y="-35.56" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="3V3" x="20.32" y="-40.64" length="middle" direction="pwr" rot="R180"/>
-<pin name="UART-RX" x="20.32" y="0" length="middle" direction="in" rot="R180"/>
-<pin name="UART-TX" x="20.32" y="5.08" length="middle" direction="out" rot="R180"/>
-<pin name="AGND" x="20.32" y="10.16" length="middle" direction="pwr" rot="R180"/>
-<pin name="AI3" x="20.32" y="15.24" length="middle" direction="in" rot="R180"/>
-<pin name="AI2" x="20.32" y="20.32" length="middle" direction="in" rot="R180"/>
-<pin name="AI1" x="20.32" y="25.4" length="middle" direction="in" rot="R180"/>
-<pin name="AI0" x="20.32" y="30.48" length="middle" direction="in" rot="R180"/>
-<pin name="AO1" x="20.32" y="35.56" length="middle" direction="out" rot="R180"/>
-<pin name="AO0" x="20.32" y="40.64" length="middle" direction="out" rot="R180"/>
-<wire x1="-15.24" y1="43.18" x2="15.24" y2="43.18" width="0.254" layer="94"/>
-<wire x1="15.24" y1="43.18" x2="15.24" y2="-43.18" width="0.254" layer="94"/>
-<wire x1="15.24" y1="-43.18" x2="-15.24" y2="-43.18" width="0.254" layer="94"/>
-<wire x1="-15.24" y1="-43.18" x2="-15.24" y2="43.18" width="0.254" layer="94"/>
-<text x="-12.7" y="45.72" size="1.778" layer="95">&gt;NAME</text>
-</symbol>
-<symbol name="22-23-2031">
-<description>3-pin Molex locking connector (male).</description>
-<pin name="PWR" x="-7.62" y="0" length="middle" direction="pwr"/>
-<pin name="GND" x="-7.62" y="5.08" length="middle" direction="pwr"/>
-<pin name="SIG" x="-7.62" y="-5.08" length="middle"/>
-<wire x1="-2.54" y1="7.62" x2="5.08" y2="7.62" width="0.254" layer="94"/>
-<wire x1="5.08" y1="7.62" x2="5.08" y2="-7.62" width="0.254" layer="94"/>
-<wire x1="5.08" y1="-7.62" x2="-2.54" y2="-7.62" width="0.254" layer="94"/>
-<wire x1="-2.54" y1="-7.62" x2="-2.54" y2="7.62" width="0.254" layer="94"/>
-<text x="-5.08" y="8.255" size="1.778" layer="95">&gt;NAME</text>
-</symbol>
-<symbol name="22-23-2041">
-<description>4-pin Molex locking connector (male).</description>
-<pin name="PWR" x="-10.16" y="2.54" length="middle" direction="pwr"/>
-<pin name="GND" x="-10.16" y="7.62" length="middle" direction="pwr"/>
-<pin name="A" x="-10.16" y="-2.54" length="middle"/>
-<wire x1="-5.08" y1="10.16" x2="2.54" y2="10.16" width="0.254" layer="94"/>
-<wire x1="2.54" y1="10.16" x2="2.54" y2="-10.16" width="0.254" layer="94"/>
-<wire x1="2.54" y1="-10.16" x2="-5.08" y2="-10.16" width="0.254" layer="94"/>
-<wire x1="-5.08" y1="-10.16" x2="-5.08" y2="10.16" width="0.254" layer="94"/>
-<pin name="B" x="-10.16" y="-7.62" length="middle"/>
-<text x="-7.62" y="10.795" size="1.778" layer="95">&gt;NAME</text>
-</symbol>
-<symbol name="CAP">
-<wire x1="0" y1="2.54" x2="0" y2="2.032" width="0.1524" layer="94"/>
-<wire x1="0" y1="0" x2="0" y2="0.508" width="0.1524" layer="94"/>
-<text x="1.524" y="2.921" size="1.778" layer="95">&gt;NAME</text>
-<text x="1.524" y="-2.159" size="1.778" layer="96">&gt;VALUE</text>
-<rectangle x1="-2.032" y1="0.508" x2="2.032" y2="1.016" layer="94"/>
-<rectangle x1="-2.032" y1="1.524" x2="2.032" y2="2.032" layer="94"/>
-<pin name="1" x="0" y="5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
-<pin name="2" x="0" y="-2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
-</symbol>
-</symbols>
-<devicesets>
-<deviceset name="MXP">
-<description>NI MXP female connector.</description>
-<gates>
-<gate name="G$1" symbol="CONN_34PIN" x="0" y="0" swaplevel="1"/>
-</gates>
-<devices>
-<device name="" package="SFH11-PBPC-D17-ST-BK">
-<connects>
-<connect gate="G$1" pin="3V3" pad="33"/>
-<connect gate="G$1" pin="5V" pad="1"/>
-<connect gate="G$1" pin="AGND" pad="6"/>
-<connect gate="G$1" pin="AI0" pad="3"/>
-<connect gate="G$1" pin="AI1" pad="5"/>
-<connect gate="G$1" pin="AI2" pad="7"/>
-<connect gate="G$1" pin="AI3" pad="9"/>
-<connect gate="G$1" pin="AO0" pad="2"/>
-<connect gate="G$1" pin="AO1" pad="4"/>
-<connect gate="G$1" pin="DGND0" pad="8"/>
-<connect gate="G$1" pin="DGND1" pad="12"/>
-<connect gate="G$1" pin="DGND2" pad="16"/>
-<connect gate="G$1" pin="DGND3" pad="20"/>
-<connect gate="G$1" pin="DGND4" pad="24"/>
-<connect gate="G$1" pin="DGND5" pad="28"/>
-<connect gate="G$1" pin="DGND6" pad="30"/>
-<connect gate="G$1" pin="DIO0_PWM0" pad="11"/>
-<connect gate="G$1" pin="DIO10_PWM6" pad="31"/>
-<connect gate="G$1" pin="DIO11_PWM7" pad="18"/>
-<connect gate="G$1" pin="DIO12_PWM8" pad="22"/>
-<connect gate="G$1" pin="DIO13_PWM9" pad="26"/>
-<connect gate="G$1" pin="DIO14_I2C-SCL" pad="32"/>
-<connect gate="G$1" pin="DIO15_I2C-SDA" pad="34"/>
-<connect gate="G$1" pin="DIO1_PWM1" pad="13"/>
-<connect gate="G$1" pin="DIO2_PWM2" pad="15"/>
-<connect gate="G$1" pin="DIO3_PWM3" pad="17"/>
-<connect gate="G$1" pin="DIO4_SPI-CS" pad="19"/>
-<connect gate="G$1" pin="DIO5_SPI-CLK" pad="21"/>
-<connect gate="G$1" pin="DIO6_SPI-MISO" pad="23"/>
-<connect gate="G$1" pin="DIO7_SPI-MOSI" pad="25"/>
-<connect gate="G$1" pin="DIO8_PWM4" pad="27"/>
-<connect gate="G$1" pin="DIO9_PWM5" pad="29"/>
-<connect gate="G$1" pin="UART-RX" pad="10"/>
-<connect gate="G$1" pin="UART-TX" pad="14"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-<deviceset name="22-23-2031">
-<description>Molex 3-pin male connector 22-23-2031.</description>
-<gates>
-<gate name="G$1" symbol="22-23-2031" x="0" y="0"/>
-</gates>
-<devices>
-<device name="" package="22-23-2031">
-<connects>
-<connect gate="G$1" pin="GND" pad="1"/>
-<connect gate="G$1" pin="PWR" pad="2"/>
-<connect gate="G$1" pin="SIG" pad="3"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="GENERIC" package="PWM_1X3">
-<connects>
-<connect gate="G$1" pin="GND" pad="1"/>
-<connect gate="G$1" pin="PWR" pad="2"/>
-<connect gate="G$1" pin="SIG" pad="3"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-<deviceset name="22-23-2041">
-<description>Molex 4-pin male connector 22-23-2041.</description>
-<gates>
-<gate name="G$1" symbol="22-23-2041" x="0" y="0"/>
-</gates>
-<devices>
-<device name="" package="22-23-2041">
-<connects>
-<connect gate="G$1" pin="A" pad="3"/>
-<connect gate="G$1" pin="B" pad="4"/>
-<connect gate="G$1" pin="GND" pad="1"/>
-<connect gate="G$1" pin="PWR" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-<deviceset name="CAP" prefix="C" uservalue="yes">
-<description>&lt;b&gt;Capacitor&lt;/b&gt;
-Standard 0603 ceramic capacitor, and 0.1" leaded capacitor.</description>
-<gates>
-<gate name="G$1" symbol="CAP" x="0" y="0"/>
-</gates>
-<devices>
-<device name="PTH" package="CAP-PTH-SMALL">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH2" package="CAP-PTH-SMALL2">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0805" package="0805">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH3" package="CAP-PTH-LARGE">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="SMD" package="GRM43D">
-<connects>
-<connect gate="G$1" pin="1" pad="A"/>
-<connect gate="G$1" pin="2" pad="C"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0603-CAP" package="0603-CAP">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0402-CAP" package="0402-CAP">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH1" package="CAP-PTH-5MM">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="_" package="AXIAL-5MM">
-<connects>
-<connect gate="G$1" pin="1" pad="P$1"/>
-<connect gate="G$1" pin="2" pad="P$2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="1210" package="1210">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="1206" package="1206">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="ASMD" package="CTZ3">
-<connects>
-<connect gate="G$1" pin="1" pad="+"/>
-<connect gate="G$1" pin="2" pad="-"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="KIT" package="CAP-PTH-SMALL-KIT">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="EZ" package="CAP-PTH-SMALLEZ">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0603" package="0603">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-</devicesets>
-</library>
-</drawing>
-</eagle>
diff --git a/roborio_expansion_boards/dio_adapter.brd b/roborio_expansion_boards/dio_adapter.brd
deleted file mode 100644
index dd54707..0000000
--- a/roborio_expansion_boards/dio_adapter.brd
+++ /dev/null
@@ -1,697 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE eagle SYSTEM "eagle.dtd">
-<eagle version="6.5.0">
-<drawing>
-<settings>
-<setting alwaysvectorfont="no"/>
-<setting verticaltext="up"/>
-</settings>
-<grid distance="0.0125" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.001" altunitdist="inch" altunit="inch"/>
-<layers>
-<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
-<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
-<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
-<layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="28" name="bValues" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="29" name="tStop" color="7" fill="3" visible="yes" active="yes"/>
-<layer number="30" name="bStop" color="7" fill="6" visible="yes" active="yes"/>
-<layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/>
-<layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/>
-<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/>
-<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/>
-<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="yes"/>
-<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/>
-<layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/>
-<layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/>
-<layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/>
-<layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/>
-<layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
-<layer number="45" name="Holes" color="7" fill="1" visible="no" active="yes"/>
-<layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/>
-<layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/>
-<layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
-<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
-<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
-<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
-<layer number="91" name="Nets" color="2" fill="1" visible="no" active="no"/>
-<layer number="92" name="Busses" color="1" fill="1" visible="no" active="no"/>
-<layer number="93" name="Pins" color="2" fill="1" visible="no" active="no"/>
-<layer number="94" name="Symbols" color="4" fill="1" visible="no" active="no"/>
-<layer number="95" name="Names" color="7" fill="1" visible="no" active="no"/>
-<layer number="96" name="Values" color="7" fill="1" visible="no" active="no"/>
-<layer number="97" name="Info" color="7" fill="1" visible="no" active="no"/>
-<layer number="98" name="Guide" color="6" fill="1" visible="no" active="no"/>
-<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
-<layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
-<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
-<layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
-<layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
-<layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
-<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
-<layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
-<layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
-<layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
-<layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
-<layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
-<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
-<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
-<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
-<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
-<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
-<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
-<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
-<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
-<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
-<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
-<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
-</layers>
-<board>
-<plain>
-<wire x1="0" y1="0" x2="16.815" y2="0" width="0" layer="20"/>
-<wire x1="16.815" y1="0" x2="16.815" y2="76.19" width="0" layer="20"/>
-<wire x1="16.815" y1="76.19" x2="0" y2="76.19" width="0" layer="20"/>
-<wire x1="0" y1="76.19" x2="0" y2="0" width="0" layer="20"/>
-<text x="1.905" y="74.295" size="1.016" layer="21">-  + S</text>
-<text x="9.398" y="69.85" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<text x="1.905" y="5.715" size="1.016" layer="21">-  + S</text>
-<text x="9.398" y="62.23" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<text x="9.398" y="54.61" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<text x="9.398" y="46.99" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<text x="9.398" y="39.37" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<text x="9.398" y="31.75" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<text x="9.398" y="24.13" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<text x="9.398" y="16.51" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<text x="9.398" y="8.89" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<text x="9.398" y="1.27" size="0.8128" layer="21" rot="R90">S  +  -</text>
-<wire x1="16.51" y1="68.58" x2="0.3175" y2="68.58" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="60.96" x2="0.3175" y2="60.96" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="53.34" x2="0.3175" y2="53.34" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="45.72" x2="0.3175" y2="45.72" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="38.1" x2="0.3175" y2="38.1" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="30.48" x2="0.3175" y2="30.48" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="22.86" x2="0.3175" y2="22.86" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="15.24" x2="0.3175" y2="15.24" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="7.62" x2="0.3175" y2="7.62" width="0.4064" layer="21"/>
-<text x="1.905" y="13.0175" size="0.6096" layer="1" font="vector" rot="R90">FRC Team 971 DIO Connector Adapter
-20140818</text>
-<text x="1.905" y="51.435" size="0.6096" layer="1" font="vector" rot="R90">FRC Team 971 DIO Connector Adapter
-20140818</text>
-<text x="0.9525" y="72.0725" size="0.6096" layer="21" font="vector" rot="R90">0</text>
-<text x="0.9525" y="64.4525" size="0.6096" layer="21" font="vector" rot="R90">2</text>
-<text x="0.9525" y="56.8325" size="0.6096" layer="21" font="vector" rot="R90">2</text>
-<text x="0.9525" y="49.2125" size="0.6096" layer="21" font="vector" rot="R90">3</text>
-<text x="0.9525" y="41.5925" size="0.6096" layer="21" font="vector" rot="R90">4</text>
-<text x="0.9525" y="33.9725" size="0.6096" layer="21" font="vector" rot="R90">5</text>
-<text x="0.9525" y="26.3525" size="0.6096" layer="21" font="vector" rot="R90">6</text>
-<text x="0.9525" y="18.7325" size="0.6096" layer="21" font="vector" rot="R90">7</text>
-<text x="0.9525" y="11.1125" size="0.6096" layer="21" font="vector" rot="R90">8</text>
-<text x="0.9525" y="3.4925" size="0.6096" layer="21" font="vector" rot="R90">9</text>
-<text x="16.51" y="72.0725" size="0.6096" layer="21" font="vector" rot="R90">0</text>
-<text x="16.51" y="64.4525" size="0.6096" layer="21" font="vector" rot="R90">2</text>
-<text x="16.51" y="56.8325" size="0.6096" layer="21" font="vector" rot="R90">2</text>
-<text x="16.51" y="49.2125" size="0.6096" layer="21" font="vector" rot="R90">3</text>
-<text x="16.51" y="41.5925" size="0.6096" layer="21" font="vector" rot="R90">4</text>
-<text x="16.51" y="33.9725" size="0.6096" layer="21" font="vector" rot="R90">5</text>
-<text x="16.51" y="26.3525" size="0.6096" layer="21" font="vector" rot="R90">6</text>
-<text x="16.51" y="18.7325" size="0.6096" layer="21" font="vector" rot="R90">7</text>
-<text x="16.51" y="11.1125" size="0.6096" layer="21" font="vector" rot="R90">8</text>
-<text x="16.51" y="3.4925" size="0.6096" layer="21" font="vector" rot="R90">9</text>
-</plain>
-<libraries>
-<library name="custom">
-<packages>
-<package name="PWM_1X3">
-<description>Generic 1x3 0.1" pitch connector.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-1.27" y1="3.81" x2="1.27" y2="3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="3.81" x2="1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="-3.81" x2="-1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="-1.27" y1="-3.81" x2="-1.27" y2="3.81" width="0.127" layer="21"/>
-<rectangle x1="-1.27" y1="-3.81" x2="1.27" y2="3.81" layer="39"/>
-</package>
-<package name="22-23-2031">
-<description>3-pin Molex locking connector (male) 22-23-2031.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-3.1242" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="-3.7338" x2="-3.1242" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="-3.1242" y1="-3.7338" x2="-3.1242" y2="3.7338" width="0.127" layer="21"/>
-<rectangle x1="-3.1242" y1="-3.7338" x2="3.0988" y2="3.7338" layer="39"/>
-<wire x1="3.0988" y1="3.7338" x2="3.0988" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="-3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-</package>
-<package name="0603">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-</packages>
-</library>
-</libraries>
-<attributes>
-</attributes>
-<variantdefs>
-</variantdefs>
-<classes>
-<class number="0" name="default" width="0" drill="0">
-</class>
-</classes>
-<designrules name="SeeedStudio_2layer_DRU_no_angle_20140221 *">
-<description language="de">&lt;b&gt;EAGLE Design Rules&lt;/b&gt;
-&lt;p&gt;
-Die Standard-Design-Rules sind so gewählt, dass sie für 
-die meisten Anwendungen passen. Sollte ihre Platine 
-besondere Anforderungen haben, treffen Sie die erforderlichen
-Einstellungen hier und speichern die Design Rules unter 
-einem neuen Namen ab.</description>
-<description language="en">&lt;b&gt;EAGLE Design Rules&lt;/b&gt;
-&lt;p&gt;
-The default Design Rules have been set to cover
-a wide range of applications. Your particular design
-may have different requirements, so please make the
-necessary adjustments and save your customized
-design rules under a new name.</description>
-<description language="zh">&lt;b&gt;Seeed Studio EAGLE Design Rules&lt;/b&gt;
-</description>
-<param name="layerSetup" value="(1*16)"/>
-<param name="mtCopper" value="0.035mm 0.0175mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.0175mm 0.035mm"/>
-<param name="mtIsolate" value="1.5mm 1.1mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm"/>
-<param name="mdWireWire" value="6mil"/>
-<param name="mdWirePad" value="6mil"/>
-<param name="mdWireVia" value="6mil"/>
-<param name="mdPadPad" value="6mil"/>
-<param name="mdPadVia" value="6mil"/>
-<param name="mdViaVia" value="6mil"/>
-<param name="mdSmdPad" value="0mil"/>
-<param name="mdSmdVia" value="0mil"/>
-<param name="mdSmdSmd" value="0mil"/>
-<param name="mdViaViaSameLayer" value="8mil"/>
-<param name="mnLayersViaInSmd" value="2"/>
-<param name="mdCopperDimension" value="10mil"/>
-<param name="mdDrill" value="10mil"/>
-<param name="mdSmdStop" value="0mil"/>
-<param name="msWidth" value="6mil"/>
-<param name="msDrill" value="12mil"/>
-<param name="msMicroVia" value="12mil"/>
-<param name="msBlindViaRatio" value="0.5"/>
-<param name="rvPadTop" value="0.25"/>
-<param name="rvPadInner" value="0.25"/>
-<param name="rvPadBottom" value="0.25"/>
-<param name="rvViaOuter" value="0.25"/>
-<param name="rvViaInner" value="0.25"/>
-<param name="rvMicroViaOuter" value="0.25"/>
-<param name="rvMicroViaInner" value="0.25"/>
-<param name="rlMinPadTop" value="10mil"/>
-<param name="rlMaxPadTop" value="20mil"/>
-<param name="rlMinPadInner" value="10mil"/>
-<param name="rlMaxPadInner" value="20mil"/>
-<param name="rlMinPadBottom" value="10mil"/>
-<param name="rlMaxPadBottom" value="20mil"/>
-<param name="rlMinViaOuter" value="6mil"/>
-<param name="rlMaxViaOuter" value="20mil"/>
-<param name="rlMinViaInner" value="6mil"/>
-<param name="rlMaxViaInner" value="20mil"/>
-<param name="rlMinMicroViaOuter" value="4mil"/>
-<param name="rlMaxMicroViaOuter" value="20mil"/>
-<param name="rlMinMicroViaInner" value="4mil"/>
-<param name="rlMaxMicroViaInner" value="20mil"/>
-<param name="psTop" value="-1"/>
-<param name="psBottom" value="-1"/>
-<param name="psFirst" value="0"/>
-<param name="psElongationLong" value="100"/>
-<param name="psElongationOffset" value="100"/>
-<param name="mvStopFrame" value="1"/>
-<param name="mvCreamFrame" value="0"/>
-<param name="mlMinStopFrame" value="2mil"/>
-<param name="mlMaxStopFrame" value="2mil"/>
-<param name="mlMinCreamFrame" value="0mil"/>
-<param name="mlMaxCreamFrame" value="0mil"/>
-<param name="mlViaStopLimit" value="100mil"/>
-<param name="srRoundness" value="0"/>
-<param name="srMinRoundness" value="0mil"/>
-<param name="srMaxRoundness" value="0mil"/>
-<param name="slThermalIsolate" value="10mil"/>
-<param name="slThermalsForVias" value="0"/>
-<param name="dpMaxLengthDifference" value="10mm"/>
-<param name="dpGapFactor" value="2.5"/>
-<param name="checkGrid" value="0"/>
-<param name="checkAngle" value="1"/>
-<param name="checkFont" value="1"/>
-<param name="checkRestrict" value="1"/>
-<param name="useDiameter" value="13"/>
-<param name="maxErrors" value="50"/>
-</designrules>
-<autorouter>
-<pass name="Default">
-<param name="RoutingGrid" value="50mil"/>
-<param name="tpViaShape" value="round"/>
-<param name="PrefDir.1" value="|"/>
-<param name="PrefDir.2" value="0"/>
-<param name="PrefDir.3" value="0"/>
-<param name="PrefDir.4" value="0"/>
-<param name="PrefDir.5" value="0"/>
-<param name="PrefDir.6" value="0"/>
-<param name="PrefDir.7" value="0"/>
-<param name="PrefDir.8" value="0"/>
-<param name="PrefDir.9" value="0"/>
-<param name="PrefDir.10" value="0"/>
-<param name="PrefDir.11" value="0"/>
-<param name="PrefDir.12" value="0"/>
-<param name="PrefDir.13" value="0"/>
-<param name="PrefDir.14" value="0"/>
-<param name="PrefDir.15" value="0"/>
-<param name="PrefDir.16" value="-"/>
-<param name="cfVia" value="8"/>
-<param name="cfNonPref" value="5"/>
-<param name="cfChangeDir" value="2"/>
-<param name="cfOrthStep" value="2"/>
-<param name="cfDiagStep" value="3"/>
-<param name="cfExtdStep" value="0"/>
-<param name="cfBonusStep" value="1"/>
-<param name="cfMalusStep" value="1"/>
-<param name="cfPadImpact" value="4"/>
-<param name="cfSmdImpact" value="4"/>
-<param name="cfBusImpact" value="0"/>
-<param name="cfHugging" value="3"/>
-<param name="cfAvoid" value="4"/>
-<param name="cfPolygon" value="10"/>
-<param name="cfBase.1" value="0"/>
-<param name="cfBase.2" value="1"/>
-<param name="cfBase.3" value="1"/>
-<param name="cfBase.4" value="1"/>
-<param name="cfBase.5" value="1"/>
-<param name="cfBase.6" value="1"/>
-<param name="cfBase.7" value="1"/>
-<param name="cfBase.8" value="1"/>
-<param name="cfBase.9" value="1"/>
-<param name="cfBase.10" value="1"/>
-<param name="cfBase.11" value="1"/>
-<param name="cfBase.12" value="1"/>
-<param name="cfBase.13" value="1"/>
-<param name="cfBase.14" value="1"/>
-<param name="cfBase.15" value="1"/>
-<param name="cfBase.16" value="0"/>
-<param name="mnVias" value="20"/>
-<param name="mnSegments" value="9999"/>
-<param name="mnExtdSteps" value="9999"/>
-<param name="mnRipupLevel" value="10"/>
-<param name="mnRipupSteps" value="100"/>
-<param name="mnRipupTotal" value="100"/>
-</pass>
-<pass name="Follow-me" refer="Default" active="yes">
-</pass>
-<pass name="Busses" refer="Default" active="yes">
-<param name="cfNonPref" value="4"/>
-<param name="cfBusImpact" value="4"/>
-<param name="cfHugging" value="0"/>
-<param name="mnVias" value="0"/>
-</pass>
-<pass name="Route" refer="Default" active="yes">
-</pass>
-<pass name="Optimize1" refer="Default" active="yes">
-<param name="cfVia" value="99"/>
-<param name="cfExtdStep" value="10"/>
-<param name="cfHugging" value="1"/>
-<param name="mnExtdSteps" value="1"/>
-<param name="mnRipupLevel" value="0"/>
-</pass>
-<pass name="Optimize2" refer="Optimize1" active="yes">
-<param name="cfNonPref" value="0"/>
-<param name="cfChangeDir" value="6"/>
-<param name="cfExtdStep" value="0"/>
-<param name="cfBonusStep" value="2"/>
-<param name="cfMalusStep" value="2"/>
-<param name="cfPadImpact" value="2"/>
-<param name="cfSmdImpact" value="2"/>
-<param name="cfHugging" value="0"/>
-</pass>
-<pass name="Optimize3" refer="Optimize2" active="yes">
-<param name="cfChangeDir" value="8"/>
-<param name="cfPadImpact" value="0"/>
-<param name="cfSmdImpact" value="0"/>
-</pass>
-<pass name="Optimize4" refer="Optimize3" active="yes">
-<param name="cfChangeDir" value="25"/>
-</pass>
-</autorouter>
-<elements>
-<element name="U$1" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="3.81" rot="MR270"/>
-<element name="U$2" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="11.43" rot="MR270"/>
-<element name="U$3" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="19.05" rot="MR270"/>
-<element name="U$4" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="26.67" rot="MR270"/>
-<element name="U$5" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="34.29" rot="MR270"/>
-<element name="U$6" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="41.91" rot="MR270"/>
-<element name="U$7" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="49.53" rot="MR270"/>
-<element name="U$8" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="57.15" rot="MR270"/>
-<element name="U$9" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="64.77" rot="MR270"/>
-<element name="U$10" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="72.39" rot="MR270"/>
-<element name="U$11" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="3.81" rot="R180"/>
-<element name="U$12" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="11.43" rot="R180"/>
-<element name="U$13" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="19.05" rot="R180"/>
-<element name="U$14" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="26.67" rot="R180"/>
-<element name="U$15" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="34.29" rot="R180"/>
-<element name="U$16" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="41.91" rot="R180"/>
-<element name="U$17" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="49.53" rot="R180"/>
-<element name="U$18" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="57.15" rot="R180"/>
-<element name="U$19" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="64.77" rot="R180"/>
-<element name="U$20" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="72.39" rot="R180"/>
-<element name="C1" library="custom" package="0603" value="0.1 uF" x="3.81" y="70.1675"/>
-<element name="C2" library="custom" package="0603" value="0.1 uF" x="3.81" y="62.5475"/>
-<element name="C3" library="custom" package="0603" value="0.1 uF" x="3.81" y="54.9275"/>
-<element name="C4" library="custom" package="0603" value="0.1 uF" x="3.81" y="47.3075"/>
-<element name="C5" library="custom" package="0603" value="0.1 uF" x="3.81" y="39.6875"/>
-<element name="C6" library="custom" package="0603" value="0.1 uF" x="3.81" y="32.0675"/>
-<element name="C7" library="custom" package="0603" value="0.1 uF" x="3.81" y="24.4475"/>
-<element name="C8" library="custom" package="0603" value="0.1 uF" x="3.81" y="16.8275"/>
-<element name="C9" library="custom" package="0603" value="0.1 uF" x="3.81" y="9.2075"/>
-<element name="C10" library="custom" package="0603" value="0.1 uF" x="3.81" y="1.5875"/>
-</elements>
-<signals>
-<signal name="N$2">
-<contactref element="U$10" pad="2"/>
-<contactref element="U$20" pad="2"/>
-<wire x1="5.08" y1="72.39" x2="5.08" y2="73.9775" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="73.9775" x2="10.16" y2="73.9775" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="73.9775" x2="10.16" y2="72.39" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="72.39" x2="12.7" y2="72.39" width="0.4064" layer="1"/>
-<contactref element="C1" pad="2"/>
-<wire x1="5.08" y1="72.39" x2="5.08" y2="70.1675" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="70.1675" x2="4.66" y2="70.1675" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$3">
-<contactref element="U$10" pad="3"/>
-<wire x1="7.62" y1="72.39" x2="7.62" y2="69.85" width="0.4064" layer="1"/>
-<contactref element="U$20" pad="1"/>
-<wire x1="12.7" y1="69.85" x2="7.62" y2="69.85" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$5">
-<contactref element="U$9" pad="2"/>
-<contactref element="U$19" pad="2"/>
-<wire x1="5.08" y1="64.77" x2="5.08" y2="66.3575" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="66.3575" x2="10.16" y2="66.3575" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="66.3575" x2="10.16" y2="64.77" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="64.77" x2="12.7" y2="64.77" width="0.4064" layer="1"/>
-<contactref element="C2" pad="2"/>
-<wire x1="5.08" y1="64.77" x2="5.08" y2="62.5475" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="62.5475" x2="4.66" y2="62.5475" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$6">
-<contactref element="U$9" pad="3"/>
-<wire x1="7.62" y1="64.77" x2="7.62" y2="62.23" width="0.4064" layer="1"/>
-<contactref element="U$19" pad="1"/>
-<wire x1="12.7" y1="62.23" x2="7.62" y2="62.23" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$8">
-<contactref element="U$8" pad="2"/>
-<contactref element="U$18" pad="2"/>
-<wire x1="5.08" y1="57.15" x2="5.08" y2="58.7375" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="58.7375" x2="10.16" y2="58.7375" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="58.7375" x2="10.16" y2="57.15" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="57.15" x2="12.7" y2="57.15" width="0.4064" layer="1"/>
-<contactref element="C3" pad="2"/>
-<wire x1="5.08" y1="57.15" x2="5.08" y2="54.9275" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="54.9275" x2="4.66" y2="54.9275" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$9">
-<contactref element="U$8" pad="3"/>
-<wire x1="7.62" y1="57.15" x2="7.62" y2="54.61" width="0.4064" layer="1"/>
-<contactref element="U$18" pad="1"/>
-<wire x1="12.7" y1="54.61" x2="7.62" y2="54.61" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$11">
-<contactref element="U$7" pad="2"/>
-<contactref element="U$17" pad="2"/>
-<wire x1="5.08" y1="49.53" x2="5.08" y2="51.1175" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="51.1175" x2="10.16" y2="51.1175" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="51.1175" x2="10.16" y2="49.53" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="49.53" x2="12.7" y2="49.53" width="0.4064" layer="1"/>
-<contactref element="C4" pad="2"/>
-<wire x1="5.08" y1="49.53" x2="5.08" y2="47.3075" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="47.3075" x2="4.66" y2="47.3075" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$12">
-<contactref element="U$7" pad="3"/>
-<wire x1="7.62" y1="49.53" x2="7.62" y2="46.99" width="0.4064" layer="1"/>
-<contactref element="U$17" pad="1"/>
-<wire x1="12.7" y1="46.99" x2="7.62" y2="46.99" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$14">
-<contactref element="U$6" pad="2"/>
-<contactref element="U$16" pad="2"/>
-<wire x1="5.08" y1="41.91" x2="5.08" y2="43.4975" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="43.4975" x2="10.16" y2="43.4975" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="43.4975" x2="10.16" y2="41.91" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="41.91" x2="12.7" y2="41.91" width="0.4064" layer="1"/>
-<contactref element="C5" pad="2"/>
-<wire x1="5.08" y1="41.91" x2="5.08" y2="39.6875" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="39.6875" x2="4.66" y2="39.6875" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$15">
-<contactref element="U$6" pad="3"/>
-<wire x1="7.62" y1="41.91" x2="7.62" y2="39.37" width="0.4064" layer="1"/>
-<contactref element="U$16" pad="1"/>
-<wire x1="12.7" y1="39.37" x2="7.62" y2="39.37" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$17">
-<contactref element="U$5" pad="2"/>
-<contactref element="U$15" pad="2"/>
-<wire x1="5.08" y1="34.29" x2="5.08" y2="35.8775" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="35.8775" x2="10.16" y2="35.8775" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="35.8775" x2="10.16" y2="34.29" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="34.29" x2="12.7" y2="34.29" width="0.4064" layer="1"/>
-<contactref element="C6" pad="2"/>
-<wire x1="5.08" y1="34.29" x2="5.08" y2="32.0675" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="32.0675" x2="4.66" y2="32.0675" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$18">
-<contactref element="U$5" pad="3"/>
-<wire x1="7.62" y1="34.29" x2="7.62" y2="31.75" width="0.4064" layer="1"/>
-<contactref element="U$15" pad="1"/>
-<wire x1="12.7" y1="31.75" x2="7.62" y2="31.75" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$20">
-<contactref element="U$4" pad="2"/>
-<contactref element="U$14" pad="2"/>
-<wire x1="5.08" y1="26.67" x2="5.08" y2="28.2575" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="28.2575" x2="10.16" y2="28.2575" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="28.2575" x2="10.16" y2="26.67" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="26.67" x2="12.7" y2="26.67" width="0.4064" layer="1"/>
-<contactref element="C7" pad="2"/>
-<wire x1="5.08" y1="26.67" x2="5.08" y2="24.4475" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="24.4475" x2="4.66" y2="24.4475" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$21">
-<contactref element="U$4" pad="3"/>
-<wire x1="7.62" y1="26.67" x2="7.62" y2="24.13" width="0.4064" layer="1"/>
-<contactref element="U$14" pad="1"/>
-<wire x1="12.7" y1="24.13" x2="7.62" y2="24.13" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$23">
-<contactref element="U$3" pad="2"/>
-<contactref element="U$13" pad="2"/>
-<wire x1="5.08" y1="19.05" x2="5.08" y2="20.6375" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="20.6375" x2="10.16" y2="20.6375" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="20.6375" x2="10.16" y2="19.05" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="19.05" x2="12.7" y2="19.05" width="0.4064" layer="1"/>
-<contactref element="C8" pad="2"/>
-<wire x1="5.08" y1="19.05" x2="5.08" y2="16.8275" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="16.8275" x2="4.66" y2="16.8275" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$24">
-<contactref element="U$3" pad="3"/>
-<wire x1="7.62" y1="19.05" x2="7.62" y2="16.51" width="0.4064" layer="1"/>
-<contactref element="U$13" pad="1"/>
-<wire x1="12.7" y1="16.51" x2="7.62" y2="16.51" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$26">
-<contactref element="U$2" pad="2"/>
-<contactref element="U$12" pad="2"/>
-<wire x1="5.08" y1="11.43" x2="5.08" y2="13.0175" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="13.0175" x2="10.16" y2="13.0175" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="13.0175" x2="10.16" y2="11.43" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="11.43" x2="12.7" y2="11.43" width="0.4064" layer="1"/>
-<contactref element="C9" pad="2"/>
-<wire x1="5.08" y1="11.43" x2="5.08" y2="9.2075" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="9.2075" x2="4.66" y2="9.2075" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$27">
-<contactref element="U$2" pad="3"/>
-<wire x1="7.62" y1="11.43" x2="7.62" y2="8.89" width="0.4064" layer="1"/>
-<contactref element="U$12" pad="1"/>
-<wire x1="12.7" y1="8.89" x2="7.62" y2="8.89" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$29">
-<contactref element="U$1" pad="2"/>
-<contactref element="U$11" pad="2"/>
-<wire x1="5.08" y1="3.81" x2="5.08" y2="5.3975" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="5.3975" x2="10.16" y2="5.3975" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="5.3975" x2="10.16" y2="3.81" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="3.81" x2="12.7" y2="3.81" width="0.4064" layer="1"/>
-<contactref element="C10" pad="2"/>
-<wire x1="5.08" y1="3.81" x2="5.08" y2="1.5875" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="1.5875" x2="4.66" y2="1.5875" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$30">
-<contactref element="U$1" pad="3"/>
-<contactref element="U$11" pad="1"/>
-<wire x1="7.62" y1="3.81" x2="7.62" y2="1.27" width="0.4064" layer="1"/>
-<wire x1="7.62" y1="1.27" x2="12.7" y2="1.27" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$1">
-<contactref element="U$10" pad="1"/>
-<contactref element="C1" pad="1"/>
-<wire x1="2.54" y1="72.39" x2="2.54" y2="74.93" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="72.39" x2="2.54" y2="70.1675" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="70.1675" x2="2.96" y2="70.1675" width="0.4064" layer="1"/>
-<contactref element="U$20" pad="3"/>
-<wire x1="12.7" y1="74.93" x2="2.54" y2="74.93" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$4">
-<contactref element="U$1" pad="1"/>
-<contactref element="C10" pad="1"/>
-<wire x1="2.54" y1="6.0325" x2="2.54" y2="3.81" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="3.81" x2="2.54" y2="1.5875" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="1.5875" x2="2.96" y2="1.5875" width="0.4064" layer="1"/>
-<contactref element="U$11" pad="3"/>
-<wire x1="12.7" y1="6.35" x2="2.54" y2="6.35" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="6.35" x2="2.54" y2="6.0325" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$7">
-<contactref element="U$2" pad="1"/>
-<contactref element="C9" pad="1"/>
-<wire x1="2.54" y1="13.97" x2="2.54" y2="11.43" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="11.43" x2="2.54" y2="9.2075" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="9.2075" x2="2.96" y2="9.2075" width="0.4064" layer="1"/>
-<contactref element="U$12" pad="3"/>
-<wire x1="12.7" y1="13.97" x2="2.54" y2="13.97" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$10">
-<contactref element="U$3" pad="1"/>
-<contactref element="C8" pad="1"/>
-<wire x1="2.54" y1="21.59" x2="2.54" y2="19.05" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="19.05" x2="2.54" y2="16.8275" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="16.8275" x2="2.96" y2="16.8275" width="0.4064" layer="1"/>
-<contactref element="U$13" pad="3"/>
-<wire x1="12.7" y1="21.59" x2="2.54" y2="21.59" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$13">
-<contactref element="U$4" pad="1"/>
-<contactref element="C7" pad="1"/>
-<wire x1="2.54" y1="29.21" x2="2.54" y2="26.67" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="26.67" x2="2.54" y2="24.4475" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="24.4475" x2="2.96" y2="24.4475" width="0.4064" layer="1"/>
-<contactref element="U$14" pad="3"/>
-<wire x1="12.7" y1="29.21" x2="2.54" y2="29.21" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$16">
-<contactref element="U$5" pad="1"/>
-<contactref element="C6" pad="1"/>
-<wire x1="2.54" y1="36.83" x2="2.54" y2="34.29" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="34.29" x2="2.54" y2="32.0675" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="32.0675" x2="2.96" y2="32.0675" width="0.4064" layer="1"/>
-<contactref element="U$15" pad="3"/>
-<wire x1="12.7" y1="36.83" x2="2.54" y2="36.83" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$19">
-<contactref element="U$6" pad="1"/>
-<contactref element="C5" pad="1"/>
-<wire x1="2.54" y1="44.45" x2="2.54" y2="41.91" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="41.91" x2="2.54" y2="39.6875" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="39.6875" x2="2.96" y2="39.6875" width="0.4064" layer="1"/>
-<contactref element="U$16" pad="3"/>
-<wire x1="12.7" y1="44.45" x2="2.54" y2="44.45" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$22">
-<contactref element="U$7" pad="1"/>
-<contactref element="C4" pad="1"/>
-<wire x1="2.54" y1="52.07" x2="2.54" y2="49.53" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="49.53" x2="2.54" y2="47.3075" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="47.3075" x2="2.96" y2="47.3075" width="0.4064" layer="1"/>
-<contactref element="U$17" pad="3"/>
-<wire x1="12.7" y1="52.07" x2="2.54" y2="52.07" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$25">
-<contactref element="U$8" pad="1"/>
-<contactref element="C3" pad="1"/>
-<wire x1="2.54" y1="59.69" x2="2.54" y2="57.15" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="57.15" x2="2.54" y2="54.9275" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="54.9275" x2="2.96" y2="54.9275" width="0.4064" layer="1"/>
-<contactref element="U$18" pad="3"/>
-<wire x1="12.7" y1="59.69" x2="2.54" y2="59.69" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$28">
-<contactref element="U$9" pad="1"/>
-<contactref element="C2" pad="1"/>
-<wire x1="2.54" y1="67.31" x2="2.54" y2="64.77" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="64.77" x2="2.54" y2="62.5475" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="62.5475" x2="2.96" y2="62.5475" width="0.4064" layer="1"/>
-<contactref element="U$19" pad="3"/>
-<wire x1="12.7" y1="67.31" x2="2.54" y2="67.31" width="0.4064" layer="1"/>
-</signal>
-</signals>
-<errors>
-<approved hash="3,1,6fdb95d1a4565e5c"/>
-<approved hash="3,1,4b6d71664bea71e1"/>
-</errors>
-</board>
-</drawing>
-<compatibility>
-<note version="6.3" minversion="6.2.2" severity="warning">
-Since Version 6.2.2 text objects can contain more than one line,
-which will not be processed correctly with this version.
-</note>
-</compatibility>
-</eagle>
diff --git a/roborio_expansion_boards/dio_adapter.sch b/roborio_expansion_boards/dio_adapter.sch
deleted file mode 100644
index 418ab58..0000000
--- a/roborio_expansion_boards/dio_adapter.sch
+++ /dev/null
@@ -1,968 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE eagle SYSTEM "eagle.dtd">
-<eagle version="6.5.0">
-<drawing>
-<settings>
-<setting alwaysvectorfont="no"/>
-<setting verticaltext="up"/>
-</settings>
-<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
-<layers>
-<layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
-<layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
-<layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
-<layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
-<layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
-<layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
-<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
-<layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
-<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
-<layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
-<layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
-<layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
-<layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
-<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
-<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
-<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
-<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
-<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
-<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
-<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
-<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
-<layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
-<layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
-<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
-<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
-<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
-<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
-<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
-<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
-<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
-<layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
-<layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
-<layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
-<layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
-<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
-<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
-<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
-<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
-<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
-<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
-<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
-<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
-<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
-<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
-<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
-<layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
-<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
-<layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
-<layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
-<layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
-<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
-<layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
-<layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
-<layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
-<layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
-<layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
-<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
-<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
-<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
-<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
-<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
-<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
-<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
-<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
-<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
-<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
-<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
-</layers>
-<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
-<libraries>
-<library name="custom">
-<packages>
-<package name="22-23-2031">
-<description>3-pin Molex locking connector (male) 22-23-2031.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-3.1242" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="-3.7338" x2="-3.1242" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="-3.1242" y1="-3.7338" x2="-3.1242" y2="3.7338" width="0.127" layer="21"/>
-<rectangle x1="-3.1242" y1="-3.7338" x2="3.0988" y2="3.7338" layer="39"/>
-<wire x1="3.0988" y1="3.7338" x2="3.0988" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="-3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-</package>
-<package name="PWM_1X3">
-<description>Generic 1x3 0.1" pitch connector.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-1.27" y1="3.81" x2="1.27" y2="3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="3.81" x2="1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="-3.81" x2="-1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="-1.27" y1="-3.81" x2="-1.27" y2="3.81" width="0.127" layer="21"/>
-<rectangle x1="-1.27" y1="-3.81" x2="1.27" y2="3.81" layer="39"/>
-</package>
-<package name="0603">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-<package name="CAP-PTH-SMALL">
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651"/>
-<text x="0.508" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="0.254" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="CAP-PTH-SMALL2">
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="1.27" x2="3.81" y2="1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="1.27" x2="3.81" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="-1.27" x2="-1.27" y2="1.27" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651"/>
-<text x="-1.27" y="1.905" size="0.6096" layer="25">&gt;Name</text>
-<text x="-1.27" y="-2.54" size="0.6096" layer="27">&gt;Value</text>
-</package>
-<package name="0805">
-<wire x1="-0.3" y1="0.6" x2="0.3" y2="0.6" width="0.1524" layer="21"/>
-<wire x1="-0.3" y1="-0.6" x2="0.3" y2="-0.6" width="0.1524" layer="21"/>
-<smd name="1" x="-0.9" y="0" dx="0.8" dy="1.2" layer="1"/>
-<smd name="2" x="0.9" y="0" dx="0.8" dy="1.2" layer="1"/>
-<text x="-0.762" y="0.8255" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.016" y="-1.397" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="CAP-PTH-LARGE">
-<wire x1="0" y1="0.635" x2="0" y2="0" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="0" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="-2.54" y2="0" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="2.54" y2="0" width="0.2032" layer="21"/>
-<pad name="1" x="-4.826" y="0" drill="0.9" diameter="1.905"/>
-<pad name="2" x="4.572" y="0" drill="0.9" diameter="1.905"/>
-<text x="-0.762" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="-1.016" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="GRM43D">
-<wire x1="2.25" y1="1.6" x2="1.1" y2="1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="1.6" x2="-1.1" y2="1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="1.6" x2="-2.25" y2="1.6" width="0.127" layer="51"/>
-<wire x1="-2.25" y1="1.6" x2="-2.25" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-2.25" y1="-1.6" x2="-1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="-1.6" x2="1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="-1.6" x2="2.25" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="2.25" y1="-1.6" x2="2.25" y2="1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="1.6" x2="1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="1.6" x2="-1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-2.3" y1="1.8" x2="2.3" y2="1.8" width="0.127" layer="21"/>
-<wire x1="-2.3" y1="-1.8" x2="2.3" y2="-1.8" width="0.127" layer="21"/>
-<smd name="A" x="1.927" y="0" dx="3.2" dy="1.65" layer="1" rot="R90"/>
-<smd name="C" x="-1.927" y="0" dx="3.2" dy="1.65" layer="1" rot="R90"/>
-<text x="-2" y="2" size="0.4064" layer="25">&gt;NAME</text>
-<text x="0" y="-2" size="0.4064" layer="27" rot="R180">&gt;VALUE</text>
-<rectangle x1="-2.2" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
-<rectangle x1="1.1" y1="-1.6" x2="2.2" y2="1.6" layer="51"/>
-</package>
-<package name="0603-CAP">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<wire x1="0" y1="0.0305" x2="0" y2="-0.0305" width="0.5588" layer="21"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-<package name="0402-CAP">
-<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
-chip</description>
-<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
-<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
-<wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
-<wire x1="0" y1="0.0305" x2="0" y2="-0.0305" width="0.4064" layer="21"/>
-<smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
-<smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
-<text x="-0.889" y="0.6985" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.0795" y="-1.143" size="0.4064" layer="27">&gt;VALUE</text>
-<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
-<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-<package name="CAP-PTH-5MM">
-<wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.2032" layer="21"/>
-<pad name="1" x="-2.5" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.5" y="0" drill="0.7" diameter="1.651"/>
-<text x="-0.762" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="-1.016" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="AXIAL-5MM">
-<wire x1="-1.14" y1="0.762" x2="1.14" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0.762" x2="1.14" y2="0" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0" x2="1.14" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="-0.762" x2="-1.14" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="-0.762" x2="-1.14" y2="0" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="0" x2="-1.14" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0" x2="1.394" y2="0" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="0" x2="-1.394" y2="0" width="0.2032" layer="21"/>
-<pad name="P$1" x="-2.5" y="0" drill="0.9" diameter="1.8796"/>
-<pad name="P$2" x="2.5" y="0" drill="0.9" diameter="1.8796"/>
-<text x="-2.54" y="1.17" size="0.4" layer="25">&gt;Name</text>
-<text x="-1.032" y="-0.208" size="0.4" layer="21" ratio="15">&gt;Value</text>
-</package>
-<package name="1210">
-<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.3" x2="1.6" y2="-1.3" width="0.127" layer="51"/>
-<wire x1="1.6" y1="-1.3" x2="-1.6" y2="-1.3" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="-1.3" x2="-1.6" y2="1.3" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.2032" layer="21"/>
-<wire x1="-1.6" y1="-1.3" x2="1.6" y2="-1.3" width="0.2032" layer="21"/>
-<smd name="1" x="-1.6" y="0" dx="1.2" dy="2" layer="1"/>
-<smd name="2" x="1.6" y="0" dx="1.2" dy="2" layer="1"/>
-<text x="-0.8" y="0.5" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-0.9" y="-0.7" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="1206">
-<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
-<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
-<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
-<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
-<text x="-1.27" y="1.143" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.397" y="-1.524" size="0.4064" layer="27">&gt;VALUE</text>
-<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
-<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
-</package>
-<package name="CTZ3">
-<description>CTZ3 Series land pattern for variable capacitor - CTZ3E-50C-W1-PF</description>
-<wire x1="-1.6" y1="1.4" x2="-1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="-2.25" x2="1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.4" x2="1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="-0.5" y1="0" x2="0.5" y2="0" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="1.4" x2="-1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.4" x2="1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="-1" y1="2.2" x2="1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="0" y1="0.8" x2="0" y2="-0.8" width="0.127" layer="51"/>
-<wire x1="-0.8" y1="0" x2="0.8" y2="0" width="0.127" layer="51"/>
-<wire x1="-1.05" y1="2.25" x2="-1.7" y2="1.45" width="0.127" layer="21"/>
-<wire x1="-1.7" y1="1.45" x2="-1.7" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="-1.7" y1="-2.35" x2="-1.05" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="1.05" y1="2.25" x2="1.7" y2="1.4" width="0.127" layer="21"/>
-<wire x1="1.7" y1="1.4" x2="1.7" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="1.7" y1="-2.35" x2="1.05" y2="-2.35" width="0.127" layer="21"/>
-<smd name="+" x="0" y="2.05" dx="1.5" dy="1.2" layer="1"/>
-<smd name="-" x="0" y="-2.05" dx="1.5" dy="1.2" layer="1"/>
-<text x="-2" y="3" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-2" y="-3.4" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="CAP-PTH-SMALL-KIT">
-<description>&lt;h3&gt;CAP-PTH-SMALL-KIT&lt;/h3&gt;
-Commonly used for small ceramic capacitors. Like our 0.1uF (http://www.sparkfun.com/products/8375) or 22pF caps (http://www.sparkfun.com/products/8571).&lt;br&gt;
-&lt;br&gt;
-&lt;b&gt;Warning:&lt;/b&gt; This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.</description>
-<wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.254" layer="21"/>
-<wire x1="-2.667" y1="1.27" x2="2.667" y2="1.27" width="0.254" layer="21"/>
-<wire x1="2.667" y1="1.27" x2="2.667" y2="-1.27" width="0.254" layer="21"/>
-<wire x1="2.667" y1="-1.27" x2="-2.667" y2="-1.27" width="0.254" layer="21"/>
-<wire x1="-2.667" y1="-1.27" x2="-2.667" y2="1.27" width="0.254" layer="21"/>
-<pad name="1" x="-1.397" y="0" drill="1.016" diameter="2.032" stop="no"/>
-<pad name="2" x="1.397" y="0" drill="1.016" diameter="2.032" stop="no"/>
-<polygon width="0.127" layer="30">
-<vertex x="-1.4021" y="-0.9475" curve="-90"/>
-<vertex x="-2.357" y="-0.0178" curve="-90.011749"/>
-<vertex x="-1.4046" y="0.9576" curve="-90"/>
-<vertex x="-0.4546" y="-0.0204" curve="-90.024193"/>
-</polygon>
-<polygon width="0.127" layer="29">
-<vertex x="-1.4046" y="-0.4395" curve="-90.012891"/>
-<vertex x="-1.8491" y="-0.0153" curve="-90"/>
-<vertex x="-1.4046" y="0.452" curve="-90"/>
-<vertex x="-0.9627" y="-0.0051" curve="-90.012967"/>
-</polygon>
-<polygon width="0.127" layer="30">
-<vertex x="1.397" y="-0.9475" curve="-90"/>
-<vertex x="0.4421" y="-0.0178" curve="-90.011749"/>
-<vertex x="1.3945" y="0.9576" curve="-90"/>
-<vertex x="2.3445" y="-0.0204" curve="-90.024193"/>
-</polygon>
-<polygon width="0.127" layer="29">
-<vertex x="1.3945" y="-0.4395" curve="-90.012891"/>
-<vertex x="0.95" y="-0.0153" curve="-90"/>
-<vertex x="1.3945" y="0.452" curve="-90"/>
-<vertex x="1.8364" y="-0.0051" curve="-90.012967"/>
-</polygon>
-</package>
-<package name="CAP-PTH-SMALLEZ">
-<description>This is the "EZ" version of the .1" spaced ceramic thru-hole cap.&lt;br&gt;
-It has reduced top mask to make it harder to put the component on the wrong side of the board.</description>
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="1.27" x2="3.81" y2="1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="1.27" x2="3.81" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="-1.27" x2="-1.27" y2="1.27" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651" stop="no"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651" stop="no"/>
-<text x="-1.27" y="1.905" size="0.6096" layer="25">&gt;Name</text>
-<text x="-1.27" y="-2.54" size="0.6096" layer="27">&gt;Value</text>
-<circle x="0" y="0" radius="0.898025" width="0" layer="30"/>
-<circle x="2.54" y="0" radius="0.915809375" width="0" layer="30"/>
-<circle x="0" y="0" radius="0.40160625" width="0" layer="29"/>
-<circle x="2.54" y="0" radius="0.40160625" width="0" layer="29"/>
-</package>
-</packages>
-<symbols>
-<symbol name="22-23-2031">
-<description>3-pin Molex locking connector (male).</description>
-<pin name="PWR" x="-7.62" y="0" length="middle" direction="pwr"/>
-<pin name="GND" x="-7.62" y="5.08" length="middle" direction="pwr"/>
-<pin name="SIG" x="-7.62" y="-5.08" length="middle"/>
-<wire x1="-2.54" y1="7.62" x2="5.08" y2="7.62" width="0.254" layer="94"/>
-<wire x1="5.08" y1="7.62" x2="5.08" y2="-7.62" width="0.254" layer="94"/>
-<wire x1="5.08" y1="-7.62" x2="-2.54" y2="-7.62" width="0.254" layer="94"/>
-<wire x1="-2.54" y1="-7.62" x2="-2.54" y2="7.62" width="0.254" layer="94"/>
-<text x="-5.08" y="8.255" size="1.778" layer="95">&gt;NAME</text>
-</symbol>
-<symbol name="CAP">
-<wire x1="0" y1="2.54" x2="0" y2="2.032" width="0.1524" layer="94"/>
-<wire x1="0" y1="0" x2="0" y2="0.508" width="0.1524" layer="94"/>
-<text x="1.524" y="2.921" size="1.778" layer="95">&gt;NAME</text>
-<text x="1.524" y="-2.159" size="1.778" layer="96">&gt;VALUE</text>
-<rectangle x1="-2.032" y1="0.508" x2="2.032" y2="1.016" layer="94"/>
-<rectangle x1="-2.032" y1="1.524" x2="2.032" y2="2.032" layer="94"/>
-<pin name="1" x="0" y="5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
-<pin name="2" x="0" y="-2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
-</symbol>
-</symbols>
-<devicesets>
-<deviceset name="22-23-2031">
-<description>Molex 3-pin male connector 22-23-2031.</description>
-<gates>
-<gate name="G$1" symbol="22-23-2031" x="0" y="0"/>
-</gates>
-<devices>
-<device name="" package="22-23-2031">
-<connects>
-<connect gate="G$1" pin="GND" pad="1"/>
-<connect gate="G$1" pin="PWR" pad="2"/>
-<connect gate="G$1" pin="SIG" pad="3"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="GENERIC" package="PWM_1X3">
-<connects>
-<connect gate="G$1" pin="GND" pad="1"/>
-<connect gate="G$1" pin="PWR" pad="2"/>
-<connect gate="G$1" pin="SIG" pad="3"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-<deviceset name="CAP" prefix="C" uservalue="yes">
-<description>&lt;b&gt;Capacitor&lt;/b&gt;
-Standard 0603 ceramic capacitor, and 0.1" leaded capacitor.</description>
-<gates>
-<gate name="G$1" symbol="CAP" x="0" y="0"/>
-</gates>
-<devices>
-<device name="PTH" package="CAP-PTH-SMALL">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH2" package="CAP-PTH-SMALL2">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0805" package="0805">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH3" package="CAP-PTH-LARGE">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="SMD" package="GRM43D">
-<connects>
-<connect gate="G$1" pin="1" pad="A"/>
-<connect gate="G$1" pin="2" pad="C"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0603-CAP" package="0603-CAP">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0402-CAP" package="0402-CAP">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH1" package="CAP-PTH-5MM">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="_" package="AXIAL-5MM">
-<connects>
-<connect gate="G$1" pin="1" pad="P$1"/>
-<connect gate="G$1" pin="2" pad="P$2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="1210" package="1210">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="1206" package="1206">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="ASMD" package="CTZ3">
-<connects>
-<connect gate="G$1" pin="1" pad="+"/>
-<connect gate="G$1" pin="2" pad="-"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="KIT" package="CAP-PTH-SMALL-KIT">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="EZ" package="CAP-PTH-SMALLEZ">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0603" package="0603">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-</devicesets>
-</library>
-</libraries>
-<attributes>
-</attributes>
-<variantdefs>
-</variantdefs>
-<classes>
-<class number="0" name="default" width="0" drill="0">
-</class>
-</classes>
-<parts>
-<part name="U$1" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$2" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$3" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$4" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$5" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$6" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$7" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$8" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$9" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$10" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$11" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$12" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$13" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$14" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$15" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$16" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$17" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$18" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$19" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$20" library="custom" deviceset="22-23-2031" device=""/>
-<part name="C1" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C2" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C3" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C4" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C5" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C6" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C7" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C8" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C9" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C10" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-</parts>
-<sheets>
-<sheet>
-<plain>
-</plain>
-<instances>
-<instance part="U$1" gate="G$1" x="10.16" y="10.16" rot="MR0"/>
-<instance part="U$2" gate="G$1" x="10.16" y="30.48" rot="MR0"/>
-<instance part="U$3" gate="G$1" x="10.16" y="50.8" rot="MR0"/>
-<instance part="U$4" gate="G$1" x="10.16" y="71.12" rot="MR0"/>
-<instance part="U$5" gate="G$1" x="10.16" y="91.44" rot="MR0"/>
-<instance part="U$6" gate="G$1" x="10.16" y="111.76" rot="MR0"/>
-<instance part="U$7" gate="G$1" x="10.16" y="132.08" rot="MR0"/>
-<instance part="U$8" gate="G$1" x="10.16" y="152.4" rot="MR0"/>
-<instance part="U$9" gate="G$1" x="10.16" y="172.72" rot="MR0"/>
-<instance part="U$10" gate="G$1" x="10.16" y="193.04" rot="MR0"/>
-<instance part="U$11" gate="G$1" x="38.1" y="10.16"/>
-<instance part="U$12" gate="G$1" x="38.1" y="30.48"/>
-<instance part="U$13" gate="G$1" x="38.1" y="50.8"/>
-<instance part="U$14" gate="G$1" x="38.1" y="71.12"/>
-<instance part="U$15" gate="G$1" x="38.1" y="91.44"/>
-<instance part="U$16" gate="G$1" x="38.1" y="111.76"/>
-<instance part="U$17" gate="G$1" x="38.1" y="132.08"/>
-<instance part="U$18" gate="G$1" x="38.1" y="152.4"/>
-<instance part="U$19" gate="G$1" x="38.1" y="172.72"/>
-<instance part="U$20" gate="G$1" x="38.1" y="193.04"/>
-<instance part="C1" gate="G$1" x="20.32" y="195.58"/>
-<instance part="C2" gate="G$1" x="20.32" y="175.26"/>
-<instance part="C3" gate="G$1" x="20.32" y="154.94"/>
-<instance part="C4" gate="G$1" x="20.32" y="134.62"/>
-<instance part="C5" gate="G$1" x="20.32" y="114.3"/>
-<instance part="C6" gate="G$1" x="20.32" y="93.98"/>
-<instance part="C7" gate="G$1" x="20.32" y="73.66"/>
-<instance part="C8" gate="G$1" x="20.32" y="53.34"/>
-<instance part="C9" gate="G$1" x="20.32" y="33.02"/>
-<instance part="C10" gate="G$1" x="20.32" y="12.7"/>
-</instances>
-<busses>
-</busses>
-<nets>
-<net name="N$2" class="0">
-<segment>
-<pinref part="U$10" gate="G$1" pin="PWR"/>
-<pinref part="U$20" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="193.04" x2="20.32" y2="193.04" width="0.1524" layer="91"/>
-<pinref part="C1" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="193.04" x2="30.48" y2="193.04" width="0.1524" layer="91"/>
-<junction x="20.32" y="193.04"/>
-</segment>
-</net>
-<net name="N$3" class="0">
-<segment>
-<pinref part="U$10" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="187.96" x2="25.4" y2="187.96" width="0.1524" layer="91"/>
-<pinref part="U$20" gate="G$1" pin="GND"/>
-<wire x1="25.4" y1="187.96" x2="25.4" y2="198.12" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="198.12" x2="30.48" y2="198.12" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$5" class="0">
-<segment>
-<pinref part="U$9" gate="G$1" pin="PWR"/>
-<pinref part="U$19" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="172.72" x2="20.32" y2="172.72" width="0.1524" layer="91"/>
-<pinref part="C2" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="172.72" x2="30.48" y2="172.72" width="0.1524" layer="91"/>
-<junction x="20.32" y="172.72"/>
-</segment>
-</net>
-<net name="N$6" class="0">
-<segment>
-<pinref part="U$9" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="167.64" x2="25.4" y2="167.64" width="0.1524" layer="91"/>
-<pinref part="U$19" gate="G$1" pin="GND"/>
-<wire x1="25.4" y1="167.64" x2="25.4" y2="177.8" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="177.8" x2="30.48" y2="177.8" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$8" class="0">
-<segment>
-<pinref part="U$8" gate="G$1" pin="PWR"/>
-<pinref part="U$18" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="152.4" x2="20.32" y2="152.4" width="0.1524" layer="91"/>
-<pinref part="C3" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="152.4" x2="30.48" y2="152.4" width="0.1524" layer="91"/>
-<junction x="20.32" y="152.4"/>
-</segment>
-</net>
-<net name="N$9" class="0">
-<segment>
-<pinref part="U$8" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="147.32" x2="25.4" y2="147.32" width="0.1524" layer="91"/>
-<pinref part="U$18" gate="G$1" pin="GND"/>
-<wire x1="25.4" y1="147.32" x2="25.4" y2="157.48" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="157.48" x2="30.48" y2="157.48" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$11" class="0">
-<segment>
-<pinref part="U$7" gate="G$1" pin="PWR"/>
-<pinref part="U$17" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="132.08" x2="20.32" y2="132.08" width="0.1524" layer="91"/>
-<pinref part="C4" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="132.08" x2="30.48" y2="132.08" width="0.1524" layer="91"/>
-<junction x="20.32" y="132.08"/>
-</segment>
-</net>
-<net name="N$12" class="0">
-<segment>
-<pinref part="U$7" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="127" x2="25.4" y2="127" width="0.1524" layer="91"/>
-<pinref part="U$17" gate="G$1" pin="GND"/>
-<wire x1="25.4" y1="127" x2="25.4" y2="137.16" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="137.16" x2="30.48" y2="137.16" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$14" class="0">
-<segment>
-<pinref part="U$6" gate="G$1" pin="PWR"/>
-<pinref part="U$16" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="111.76" x2="20.32" y2="111.76" width="0.1524" layer="91"/>
-<pinref part="C5" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="111.76" x2="30.48" y2="111.76" width="0.1524" layer="91"/>
-<junction x="20.32" y="111.76"/>
-</segment>
-</net>
-<net name="N$15" class="0">
-<segment>
-<pinref part="U$6" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="106.68" x2="25.4" y2="106.68" width="0.1524" layer="91"/>
-<pinref part="U$16" gate="G$1" pin="GND"/>
-<wire x1="25.4" y1="106.68" x2="25.4" y2="116.84" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="116.84" x2="30.48" y2="116.84" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$17" class="0">
-<segment>
-<pinref part="U$5" gate="G$1" pin="PWR"/>
-<pinref part="U$15" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="91.44" x2="20.32" y2="91.44" width="0.1524" layer="91"/>
-<pinref part="C6" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="91.44" x2="30.48" y2="91.44" width="0.1524" layer="91"/>
-<junction x="20.32" y="91.44"/>
-</segment>
-</net>
-<net name="N$18" class="0">
-<segment>
-<pinref part="U$5" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="86.36" x2="25.4" y2="86.36" width="0.1524" layer="91"/>
-<pinref part="U$15" gate="G$1" pin="GND"/>
-<wire x1="25.4" y1="86.36" x2="25.4" y2="96.52" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="96.52" x2="30.48" y2="96.52" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$20" class="0">
-<segment>
-<pinref part="U$4" gate="G$1" pin="PWR"/>
-<pinref part="U$14" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="71.12" x2="20.32" y2="71.12" width="0.1524" layer="91"/>
-<pinref part="C7" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="71.12" x2="30.48" y2="71.12" width="0.1524" layer="91"/>
-<junction x="20.32" y="71.12"/>
-</segment>
-</net>
-<net name="N$21" class="0">
-<segment>
-<pinref part="U$4" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="66.04" x2="25.4" y2="66.04" width="0.1524" layer="91"/>
-<pinref part="U$14" gate="G$1" pin="GND"/>
-<wire x1="25.4" y1="66.04" x2="25.4" y2="76.2" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="76.2" x2="30.48" y2="76.2" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$23" class="0">
-<segment>
-<pinref part="U$3" gate="G$1" pin="PWR"/>
-<pinref part="U$13" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="50.8" x2="20.32" y2="50.8" width="0.1524" layer="91"/>
-<pinref part="C8" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="50.8" x2="30.48" y2="50.8" width="0.1524" layer="91"/>
-<junction x="20.32" y="50.8"/>
-</segment>
-</net>
-<net name="N$24" class="0">
-<segment>
-<pinref part="U$3" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="45.72" x2="25.4" y2="45.72" width="0.1524" layer="91"/>
-<pinref part="U$13" gate="G$1" pin="GND"/>
-<wire x1="25.4" y1="45.72" x2="25.4" y2="55.88" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="55.88" x2="30.48" y2="55.88" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$26" class="0">
-<segment>
-<pinref part="U$2" gate="G$1" pin="PWR"/>
-<pinref part="U$12" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="30.48" x2="20.32" y2="30.48" width="0.1524" layer="91"/>
-<pinref part="C9" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="30.48" x2="30.48" y2="30.48" width="0.1524" layer="91"/>
-<junction x="20.32" y="30.48"/>
-</segment>
-</net>
-<net name="N$27" class="0">
-<segment>
-<pinref part="U$2" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="25.4" x2="25.4" y2="25.4" width="0.1524" layer="91"/>
-<pinref part="U$12" gate="G$1" pin="GND"/>
-<wire x1="25.4" y1="25.4" x2="25.4" y2="35.56" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="35.56" x2="30.48" y2="35.56" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$29" class="0">
-<segment>
-<pinref part="U$1" gate="G$1" pin="PWR"/>
-<pinref part="U$11" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="10.16" x2="20.32" y2="10.16" width="0.1524" layer="91"/>
-<pinref part="C10" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="10.16" x2="30.48" y2="10.16" width="0.1524" layer="91"/>
-<junction x="20.32" y="10.16"/>
-</segment>
-</net>
-<net name="N$30" class="0">
-<segment>
-<pinref part="U$1" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="5.08" x2="25.4" y2="5.08" width="0.1524" layer="91"/>
-<wire x1="25.4" y1="5.08" x2="25.4" y2="15.24" width="0.1524" layer="91"/>
-<pinref part="U$11" gate="G$1" pin="GND"/>
-<wire x1="25.4" y1="15.24" x2="30.48" y2="15.24" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$1" class="0">
-<segment>
-<pinref part="U$10" gate="G$1" pin="GND"/>
-<pinref part="C1" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="198.12" x2="17.78" y2="200.66" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="200.66" x2="20.32" y2="200.66" width="0.1524" layer="91"/>
-<wire x1="20.32" y1="200.66" x2="27.94" y2="200.66" width="0.1524" layer="91"/>
-<junction x="20.32" y="200.66"/>
-<pinref part="U$20" gate="G$1" pin="SIG"/>
-<wire x1="27.94" y1="200.66" x2="27.94" y2="187.96" width="0.1524" layer="91"/>
-<wire x1="27.94" y1="187.96" x2="30.48" y2="187.96" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$4" class="0">
-<segment>
-<pinref part="U$1" gate="G$1" pin="GND"/>
-<pinref part="C10" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="15.24" x2="17.78" y2="17.78" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="17.78" x2="20.32" y2="17.78" width="0.1524" layer="91"/>
-<wire x1="20.32" y1="17.78" x2="27.94" y2="17.78" width="0.1524" layer="91"/>
-<junction x="20.32" y="17.78"/>
-<wire x1="27.94" y1="17.78" x2="27.94" y2="5.08" width="0.1524" layer="91"/>
-<pinref part="U$11" gate="G$1" pin="SIG"/>
-<wire x1="27.94" y1="5.08" x2="30.48" y2="5.08" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$7" class="0">
-<segment>
-<pinref part="U$2" gate="G$1" pin="GND"/>
-<pinref part="C9" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="35.56" x2="17.78" y2="38.1" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="38.1" x2="20.32" y2="38.1" width="0.1524" layer="91"/>
-<wire x1="20.32" y1="38.1" x2="27.94" y2="38.1" width="0.1524" layer="91"/>
-<junction x="20.32" y="38.1"/>
-<pinref part="U$12" gate="G$1" pin="SIG"/>
-<wire x1="27.94" y1="38.1" x2="27.94" y2="25.4" width="0.1524" layer="91"/>
-<wire x1="27.94" y1="25.4" x2="30.48" y2="25.4" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$10" class="0">
-<segment>
-<pinref part="U$3" gate="G$1" pin="GND"/>
-<pinref part="C8" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="55.88" x2="17.78" y2="58.42" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="58.42" x2="20.32" y2="58.42" width="0.1524" layer="91"/>
-<wire x1="20.32" y1="58.42" x2="27.94" y2="58.42" width="0.1524" layer="91"/>
-<junction x="20.32" y="58.42"/>
-<pinref part="U$13" gate="G$1" pin="SIG"/>
-<wire x1="27.94" y1="58.42" x2="27.94" y2="45.72" width="0.1524" layer="91"/>
-<wire x1="27.94" y1="45.72" x2="30.48" y2="45.72" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$13" class="0">
-<segment>
-<pinref part="U$4" gate="G$1" pin="GND"/>
-<pinref part="C7" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="76.2" x2="17.78" y2="78.74" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="78.74" x2="20.32" y2="78.74" width="0.1524" layer="91"/>
-<wire x1="20.32" y1="78.74" x2="27.94" y2="78.74" width="0.1524" layer="91"/>
-<junction x="20.32" y="78.74"/>
-<pinref part="U$14" gate="G$1" pin="SIG"/>
-<wire x1="27.94" y1="78.74" x2="27.94" y2="66.04" width="0.1524" layer="91"/>
-<wire x1="27.94" y1="66.04" x2="30.48" y2="66.04" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$16" class="0">
-<segment>
-<pinref part="U$5" gate="G$1" pin="GND"/>
-<pinref part="C6" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="96.52" x2="17.78" y2="99.06" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="99.06" x2="20.32" y2="99.06" width="0.1524" layer="91"/>
-<wire x1="20.32" y1="99.06" x2="27.94" y2="99.06" width="0.1524" layer="91"/>
-<junction x="20.32" y="99.06"/>
-<pinref part="U$15" gate="G$1" pin="SIG"/>
-<wire x1="27.94" y1="99.06" x2="27.94" y2="86.36" width="0.1524" layer="91"/>
-<wire x1="27.94" y1="86.36" x2="30.48" y2="86.36" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$19" class="0">
-<segment>
-<pinref part="U$6" gate="G$1" pin="GND"/>
-<pinref part="C5" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="116.84" x2="17.78" y2="119.38" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="119.38" x2="20.32" y2="119.38" width="0.1524" layer="91"/>
-<wire x1="20.32" y1="119.38" x2="27.94" y2="119.38" width="0.1524" layer="91"/>
-<junction x="20.32" y="119.38"/>
-<pinref part="U$16" gate="G$1" pin="SIG"/>
-<wire x1="27.94" y1="119.38" x2="27.94" y2="106.68" width="0.1524" layer="91"/>
-<wire x1="27.94" y1="106.68" x2="30.48" y2="106.68" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$22" class="0">
-<segment>
-<pinref part="U$7" gate="G$1" pin="GND"/>
-<pinref part="C4" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="137.16" x2="17.78" y2="139.7" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="139.7" x2="20.32" y2="139.7" width="0.1524" layer="91"/>
-<wire x1="20.32" y1="139.7" x2="27.94" y2="139.7" width="0.1524" layer="91"/>
-<junction x="20.32" y="139.7"/>
-<pinref part="U$17" gate="G$1" pin="SIG"/>
-<wire x1="27.94" y1="139.7" x2="27.94" y2="127" width="0.1524" layer="91"/>
-<wire x1="27.94" y1="127" x2="30.48" y2="127" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$25" class="0">
-<segment>
-<pinref part="U$8" gate="G$1" pin="GND"/>
-<pinref part="C3" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="157.48" x2="17.78" y2="160.02" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="160.02" x2="20.32" y2="160.02" width="0.1524" layer="91"/>
-<wire x1="20.32" y1="160.02" x2="27.94" y2="160.02" width="0.1524" layer="91"/>
-<junction x="20.32" y="160.02"/>
-<pinref part="U$18" gate="G$1" pin="SIG"/>
-<wire x1="27.94" y1="160.02" x2="27.94" y2="147.32" width="0.1524" layer="91"/>
-<wire x1="27.94" y1="147.32" x2="30.48" y2="147.32" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$28" class="0">
-<segment>
-<pinref part="U$9" gate="G$1" pin="GND"/>
-<pinref part="C2" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="177.8" x2="17.78" y2="180.34" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="180.34" x2="20.32" y2="180.34" width="0.1524" layer="91"/>
-<wire x1="20.32" y1="180.34" x2="27.94" y2="180.34" width="0.1524" layer="91"/>
-<junction x="20.32" y="180.34"/>
-<pinref part="U$19" gate="G$1" pin="SIG"/>
-<wire x1="27.94" y1="180.34" x2="27.94" y2="167.64" width="0.1524" layer="91"/>
-<wire x1="27.94" y1="167.64" x2="30.48" y2="167.64" width="0.1524" layer="91"/>
-</segment>
-</net>
-</nets>
-</sheet>
-</sheets>
-</schematic>
-</drawing>
-</eagle>
diff --git a/roborio_expansion_boards/expansion_board.brd b/roborio_expansion_boards/expansion_board.brd
deleted file mode 100644
index 9f2cccf..0000000
--- a/roborio_expansion_boards/expansion_board.brd
+++ /dev/null
@@ -1,958 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE eagle SYSTEM "eagle.dtd">
-<eagle version="6.5.0">
-<drawing>
-<settings>
-<setting alwaysvectorfont="no"/>
-<setting verticaltext="up"/>
-</settings>
-<grid distance="0.0125" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.001" altunitdist="inch" altunit="inch"/>
-<layers>
-<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
-<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
-<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
-<layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="25" name="tNames" color="7" fill="1" visible="no" active="yes"/>
-<layer number="26" name="bNames" color="7" fill="1" visible="no" active="yes"/>
-<layer number="27" name="tValues" color="7" fill="1" visible="no" active="yes"/>
-<layer number="28" name="bValues" color="7" fill="1" visible="no" active="yes"/>
-<layer number="29" name="tStop" color="7" fill="3" visible="yes" active="yes"/>
-<layer number="30" name="bStop" color="7" fill="6" visible="yes" active="yes"/>
-<layer number="31" name="tCream" color="7" fill="4" visible="yes" active="yes"/>
-<layer number="32" name="bCream" color="7" fill="5" visible="yes" active="yes"/>
-<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/>
-<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/>
-<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="yes"/>
-<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/>
-<layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/>
-<layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/>
-<layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/>
-<layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/>
-<layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
-<layer number="45" name="Holes" color="7" fill="1" visible="no" active="yes"/>
-<layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/>
-<layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/>
-<layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
-<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="yes"/>
-<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="yes"/>
-<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
-<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
-<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
-<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/>
-<layer number="91" name="Nets" color="2" fill="1" visible="no" active="no"/>
-<layer number="92" name="Busses" color="1" fill="1" visible="no" active="no"/>
-<layer number="93" name="Pins" color="2" fill="1" visible="no" active="no"/>
-<layer number="94" name="Symbols" color="4" fill="1" visible="no" active="no"/>
-<layer number="95" name="Names" color="7" fill="1" visible="no" active="no"/>
-<layer number="96" name="Values" color="7" fill="1" visible="no" active="no"/>
-<layer number="97" name="Info" color="7" fill="1" visible="no" active="no"/>
-<layer number="98" name="Guide" color="6" fill="1" visible="no" active="no"/>
-<layer number="99" name="SpiceOrder" color="7" fill="1" visible="no" active="no"/>
-<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
-<layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
-<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
-<layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
-<layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
-<layer number="110" name="fp0" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="111" name="LPC17xx" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
-<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="123" name="tTestmark" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="124" name="bTestmark" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="126" name="_bNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="127" name="_tValues" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="128" name="_bValues" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="131" name="tAdjust" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="132" name="bAdjust" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="150" name="Notes" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="152" name="_bDocu" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="153" name="FabDoc1" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="154" name="FabDoc2" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="155" name="FabDoc3" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
-<layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
-<layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
-<layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
-<layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
-<layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
-<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
-<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
-<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
-<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
-<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
-<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
-<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
-<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
-<layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="249" name="Edge" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
-<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
-<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
-</layers>
-<board>
-<plain>
-<wire x1="0" y1="0" x2="55.88" y2="0" width="0" layer="20"/>
-<wire x1="55.88" y1="0" x2="55.88" y2="81.915" width="0" layer="20"/>
-<wire x1="55.88" y1="81.915" x2="0" y2="81.915" width="0" layer="20"/>
-<wire x1="0" y1="81.915" x2="0" y2="0" width="0" layer="20"/>
-<text x="44.45" y="37.465" size="1.27" layer="21" rot="R270">D  + -</text>
-<text x="44.45" y="47.625" size="1.27" layer="21" rot="R270">A  + -</text>
-<text x="50.8" y="27.305" size="1.27" layer="21" rot="R270">A B  + -</text>
-<text x="15.24" y="38.608" size="1.778" layer="21">A7</text>
-<text x="22.86" y="38.608" size="1.778" layer="21">A6</text>
-<text x="30.48" y="38.608" size="1.778" layer="21">A5</text>
-<text x="38.1" y="38.608" size="1.778" layer="21">A4</text>
-<text x="13.97" y="28.448" size="1.778" layer="21">D17</text>
-<text x="21.59" y="28.448" size="1.778" layer="21">D16</text>
-<text x="28.575" y="28.448" size="1.778" layer="21">D15</text>
-<text x="36.195" y="28.448" size="1.778" layer="21">D14</text>
-<text x="45.085" y="15.24" size="1.778" layer="21">E0</text>
-<text x="38.1" y="15.24" size="1.778" layer="21">E1</text>
-<text x="29.845" y="15.24" size="1.778" layer="21">E2</text>
-<text x="22.225" y="15.24" size="1.778" layer="21">E3</text>
-<text x="14.605" y="15.24" size="1.778" layer="21">E4</text>
-<text x="6.985" y="15.24" size="1.778" layer="21">E5</text>
-<text x="13.335" y="24.765" size="0.8128" layer="21" rot="R90">2.2K</text>
-<text x="13.335" y="18.415" size="0.8128" layer="21" rot="R90">SCL</text>
-<text x="6.35" y="35.56" size="1.016" layer="21">5V</text>
-<text x="5.715" y="29.718" size="1.016" layer="21">3V3</text>
-<text x="13.335" y="20.955" size="0.8128" layer="21" rot="R90">SDA</text>
-<text x="20.955" y="1.5875" size="0.6096" layer="1" font="vector">FRC Team 971 MXP Breakout
-20140818</text>
-<text x="9.525" y="50.165" size="1.778" layer="1" font="vector">FRC Team 971 MXP Breakout
-20140818</text>
-<text x="9.525" y="69.85" size="1.778" layer="1" font="vector">FRC Team 971 MXP Breakout
-20140818</text>
-</plain>
-<libraries>
-<library name="custom">
-<packages>
-<package name="SFH11-PBPC-D17-ST-BK">
-<description>2x17 0.01" keyed female connector.
-
-Sullins SFH11-PBPC-D17-ST-BK&lt;br&gt;&lt;br&gt;
-
-This package is upside down (you put it on the top side and it corresponds to a connector on the bottom); oops...</description>
-<pad name="18" x="-1.27" y="0" drill="1.016"/>
-<pad name="17" x="1.27" y="0" drill="1.016"/>
-<pad name="20" x="-1.27" y="2.54" drill="1.016"/>
-<pad name="22" x="-1.27" y="5.08" drill="1.016"/>
-<pad name="24" x="-1.27" y="7.62" drill="1.016"/>
-<pad name="26" x="-1.27" y="10.16" drill="1.016"/>
-<pad name="28" x="-1.27" y="12.7" drill="1.016"/>
-<pad name="30" x="-1.27" y="15.24" drill="1.016"/>
-<pad name="32" x="-1.27" y="17.78" drill="1.016"/>
-<pad name="34" x="-1.27" y="20.32" drill="1.016"/>
-<pad name="16" x="-1.27" y="-2.54" drill="1.016"/>
-<pad name="14" x="-1.27" y="-5.08" drill="1.016"/>
-<pad name="12" x="-1.27" y="-7.62" drill="1.016"/>
-<pad name="10" x="-1.27" y="-10.16" drill="1.016"/>
-<pad name="8" x="-1.27" y="-12.7" drill="1.016"/>
-<pad name="6" x="-1.27" y="-15.24" drill="1.016"/>
-<pad name="4" x="-1.27" y="-17.78" drill="1.016"/>
-<pad name="2" x="-1.27" y="-20.32" drill="1.016"/>
-<pad name="1" x="1.27" y="-20.32" drill="1.016" shape="square"/>
-<pad name="3" x="1.27" y="-17.78" drill="1.016"/>
-<pad name="5" x="1.27" y="-15.24" drill="1.016"/>
-<pad name="7" x="1.27" y="-12.7" drill="1.016"/>
-<pad name="9" x="1.27" y="-10.16" drill="1.016"/>
-<pad name="11" x="1.27" y="-7.62" drill="1.016"/>
-<pad name="13" x="1.27" y="-5.08" drill="1.016"/>
-<pad name="15" x="1.27" y="-2.54" drill="1.016"/>
-<pad name="19" x="1.27" y="2.54" drill="1.016"/>
-<pad name="21" x="1.27" y="5.08" drill="1.016"/>
-<pad name="23" x="1.27" y="7.62" drill="1.016"/>
-<pad name="25" x="1.27" y="10.16" drill="1.016"/>
-<pad name="27" x="1.27" y="12.7" drill="1.016"/>
-<pad name="29" x="1.27" y="15.24" drill="1.016"/>
-<pad name="31" x="1.27" y="17.78" drill="1.016"/>
-<pad name="33" x="1.27" y="20.32" drill="1.016"/>
-<text x="4.445" y="-20.32" size="1.27" layer="21" rot="R90">1</text>
-<text x="-3.175" y="19.05" size="1.27" layer="21" rot="R90">34</text>
-<wire x1="2.9972" y1="1.8542" x2="3.9878" y2="1.8542" width="0.127" layer="22"/>
-<wire x1="3.9878" y1="1.8542" x2="3.9878" y2="-1.8542" width="0.127" layer="22"/>
-<wire x1="3.9878" y1="-1.8542" x2="2.9972" y2="-1.8542" width="0.127" layer="22"/>
-<wire x1="-2.9972" y1="24.13" x2="2.9972" y2="24.13" width="0.127" layer="22"/>
-<wire x1="2.9972" y1="24.13" x2="2.9972" y2="1.8542" width="0.127" layer="22"/>
-<wire x1="2.9972" y1="1.8542" x2="2.9972" y2="-1.8542" width="0.127" layer="22"/>
-<wire x1="2.9972" y1="-1.8542" x2="2.9972" y2="-24.13" width="0.127" layer="22"/>
-<wire x1="2.9972" y1="-24.13" x2="-2.9972" y2="-24.13" width="0.127" layer="22"/>
-<wire x1="-2.9972" y1="-24.13" x2="-2.9972" y2="24.13" width="0.127" layer="22"/>
-<wire x1="-4.5466" y1="25.4" x2="4.5466" y2="25.4" width="0.127" layer="21"/>
-<wire x1="4.5466" y1="25.4" x2="4.5466" y2="-25.4" width="0.127" layer="21"/>
-<wire x1="4.5466" y1="-25.4" x2="-4.5466" y2="-25.4" width="0.127" layer="21"/>
-<wire x1="-4.5466" y1="-25.4" x2="-4.5466" y2="25.4" width="0.127" layer="21"/>
-<rectangle x1="-4.5466" y1="-25.4" x2="4.5466" y2="25.4" layer="40"/>
-</package>
-<package name="22-23-2031">
-<description>3-pin Molex locking connector (male) 22-23-2031.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-3.1242" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="-3.7338" x2="-3.1242" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="-3.1242" y1="-3.7338" x2="-3.1242" y2="3.7338" width="0.127" layer="21"/>
-<rectangle x1="-3.1242" y1="-3.7338" x2="3.0988" y2="3.7338" layer="39"/>
-<wire x1="3.0988" y1="3.7338" x2="3.0988" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="-3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-</package>
-<package name="22-23-2041">
-<description>4-pin Molex locking connector (male) 22-23-2041.</description>
-<pad name="2" x="0" y="1.27" drill="1.016"/>
-<pad name="1" x="0" y="3.81" drill="1.016"/>
-<pad name="3" x="0" y="-1.27" drill="1.016"/>
-<wire x1="-3.1242" y1="5.0038" x2="1.0668" y2="5.0038" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="5.0038" x2="1.0668" y2="-5.0038" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="-5.0038" x2="-3.1242" y2="-5.0038" width="0.127" layer="21"/>
-<wire x1="-3.1242" y1="-5.0038" x2="-3.1242" y2="5.0038" width="0.127" layer="21"/>
-<rectangle x1="-3.1242" y1="-5.0038" x2="3.0988" y2="5.0038" layer="39"/>
-<wire x1="3.0988" y1="5.0038" x2="3.0988" y2="-5.0038" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="5.0038" x2="1.0668" y2="5.0038" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="-5.0038" x2="1.0668" y2="-5.0038" width="0.127" layer="21"/>
-<pad name="4" x="0" y="-3.81" drill="1.016"/>
-</package>
-<package name="0603">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-</packages>
-</library>
-<library name="SparkFun-LED">
-<description>&lt;h3&gt;SparkFun Electronics' preferred foot prints&lt;/h3&gt;
-In this library you'll find discrete LEDs for illumination or indication, but no displays.&lt;br&gt;&lt;br&gt;
-We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
-&lt;br&gt;&lt;br&gt;
-&lt;b&gt;Licensing:&lt;/b&gt; Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 
-&lt;br&gt;&lt;br&gt;
-You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description>
-<packages>
-<package name="LED-0603">
-<wire x1="0.46" y1="0.17" x2="0" y2="0.17" width="0.2032" layer="21"/>
-<wire x1="-0.46" y1="0.17" x2="0" y2="0.17" width="0.2032" layer="21"/>
-<wire x1="0" y1="0.17" x2="0.2338" y2="-0.14" width="0.2032" layer="21"/>
-<wire x1="-0.0254" y1="0.1546" x2="-0.2184" y2="-0.14" width="0.2032" layer="21"/>
-<smd name="C" x="0" y="0.877" dx="1" dy="1" layer="1" roundness="30"/>
-<smd name="A" x="0" y="-0.877" dx="1" dy="1" layer="1" roundness="30"/>
-<text x="-0.6985" y="-0.889" size="0.4064" layer="25" rot="R90">&gt;NAME</text>
-<text x="1.0795" y="-1.016" size="0.4064" layer="27" rot="R90">&gt;VALUE</text>
-</package>
-</packages>
-</library>
-<library name="SparkFun-Passives">
-<description>&lt;h3&gt;SparkFun Electronics' preferred foot prints&lt;/h3&gt;
-In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.&lt;br&gt;&lt;br&gt;
-We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
-&lt;br&gt;&lt;br&gt;
-&lt;b&gt;Licensing:&lt;/b&gt; Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 
-&lt;br&gt;&lt;br&gt;
-You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description>
-<packages>
-<package name="0603-RES">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-<rectangle x1="-0.2286" y1="-0.381" x2="0.2286" y2="0.381" layer="21"/>
-</package>
-</packages>
-</library>
-</libraries>
-<attributes>
-</attributes>
-<variantdefs>
-</variantdefs>
-<classes>
-<class number="0" name="default" width="0" drill="0">
-</class>
-</classes>
-<designrules name="SeeedStudio_2layer_DRU_no_angle_20140221 *">
-<description language="de">&lt;b&gt;EAGLE Design Rules&lt;/b&gt;
-&lt;p&gt;
-Die Standard-Design-Rules sind so gewählt, dass sie für 
-die meisten Anwendungen passen. Sollte ihre Platine 
-besondere Anforderungen haben, treffen Sie die erforderlichen
-Einstellungen hier und speichern die Design Rules unter 
-einem neuen Namen ab.</description>
-<description language="en">&lt;b&gt;EAGLE Design Rules&lt;/b&gt;
-&lt;p&gt;
-The default Design Rules have been set to cover
-a wide range of applications. Your particular design
-may have different requirements, so please make the
-necessary adjustments and save your customized
-design rules under a new name.</description>
-<description language="zh">&lt;b&gt;Seeed Studio EAGLE Design Rules&lt;/b&gt;
-</description>
-<param name="layerSetup" value="(1*16)"/>
-<param name="mtCopper" value="0.035mm 0.0175mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.0175mm 0.035mm"/>
-<param name="mtIsolate" value="1.5mm 1.1mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm"/>
-<param name="mdWireWire" value="6mil"/>
-<param name="mdWirePad" value="6mil"/>
-<param name="mdWireVia" value="6mil"/>
-<param name="mdPadPad" value="6mil"/>
-<param name="mdPadVia" value="6mil"/>
-<param name="mdViaVia" value="6mil"/>
-<param name="mdSmdPad" value="0mil"/>
-<param name="mdSmdVia" value="0mil"/>
-<param name="mdSmdSmd" value="0mil"/>
-<param name="mdViaViaSameLayer" value="8mil"/>
-<param name="mnLayersViaInSmd" value="2"/>
-<param name="mdCopperDimension" value="10mil"/>
-<param name="mdDrill" value="10mil"/>
-<param name="mdSmdStop" value="0mil"/>
-<param name="msWidth" value="6mil"/>
-<param name="msDrill" value="12mil"/>
-<param name="msMicroVia" value="12mil"/>
-<param name="msBlindViaRatio" value="0.5"/>
-<param name="rvPadTop" value="0.25"/>
-<param name="rvPadInner" value="0.25"/>
-<param name="rvPadBottom" value="0.25"/>
-<param name="rvViaOuter" value="0.25"/>
-<param name="rvViaInner" value="0.25"/>
-<param name="rvMicroViaOuter" value="0.25"/>
-<param name="rvMicroViaInner" value="0.25"/>
-<param name="rlMinPadTop" value="10mil"/>
-<param name="rlMaxPadTop" value="20mil"/>
-<param name="rlMinPadInner" value="10mil"/>
-<param name="rlMaxPadInner" value="20mil"/>
-<param name="rlMinPadBottom" value="10mil"/>
-<param name="rlMaxPadBottom" value="20mil"/>
-<param name="rlMinViaOuter" value="6mil"/>
-<param name="rlMaxViaOuter" value="20mil"/>
-<param name="rlMinViaInner" value="6mil"/>
-<param name="rlMaxViaInner" value="20mil"/>
-<param name="rlMinMicroViaOuter" value="4mil"/>
-<param name="rlMaxMicroViaOuter" value="20mil"/>
-<param name="rlMinMicroViaInner" value="4mil"/>
-<param name="rlMaxMicroViaInner" value="20mil"/>
-<param name="psTop" value="-1"/>
-<param name="psBottom" value="-1"/>
-<param name="psFirst" value="0"/>
-<param name="psElongationLong" value="100"/>
-<param name="psElongationOffset" value="100"/>
-<param name="mvStopFrame" value="1"/>
-<param name="mvCreamFrame" value="0"/>
-<param name="mlMinStopFrame" value="2mil"/>
-<param name="mlMaxStopFrame" value="2mil"/>
-<param name="mlMinCreamFrame" value="0mil"/>
-<param name="mlMaxCreamFrame" value="0mil"/>
-<param name="mlViaStopLimit" value="100mil"/>
-<param name="srRoundness" value="0"/>
-<param name="srMinRoundness" value="0mil"/>
-<param name="srMaxRoundness" value="0mil"/>
-<param name="slThermalIsolate" value="10mil"/>
-<param name="slThermalsForVias" value="0"/>
-<param name="dpMaxLengthDifference" value="10mm"/>
-<param name="dpGapFactor" value="2.5"/>
-<param name="checkGrid" value="0"/>
-<param name="checkAngle" value="1"/>
-<param name="checkFont" value="1"/>
-<param name="checkRestrict" value="1"/>
-<param name="useDiameter" value="13"/>
-<param name="maxErrors" value="50"/>
-</designrules>
-<autorouter>
-<pass name="Default">
-<param name="RoutingGrid" value="50mil"/>
-<param name="tpViaShape" value="round"/>
-<param name="PrefDir.1" value="|"/>
-<param name="PrefDir.2" value="0"/>
-<param name="PrefDir.3" value="0"/>
-<param name="PrefDir.4" value="0"/>
-<param name="PrefDir.5" value="0"/>
-<param name="PrefDir.6" value="0"/>
-<param name="PrefDir.7" value="0"/>
-<param name="PrefDir.8" value="0"/>
-<param name="PrefDir.9" value="0"/>
-<param name="PrefDir.10" value="0"/>
-<param name="PrefDir.11" value="0"/>
-<param name="PrefDir.12" value="0"/>
-<param name="PrefDir.13" value="0"/>
-<param name="PrefDir.14" value="0"/>
-<param name="PrefDir.15" value="0"/>
-<param name="PrefDir.16" value="-"/>
-<param name="cfVia" value="8"/>
-<param name="cfNonPref" value="5"/>
-<param name="cfChangeDir" value="2"/>
-<param name="cfOrthStep" value="2"/>
-<param name="cfDiagStep" value="3"/>
-<param name="cfExtdStep" value="0"/>
-<param name="cfBonusStep" value="1"/>
-<param name="cfMalusStep" value="1"/>
-<param name="cfPadImpact" value="4"/>
-<param name="cfSmdImpact" value="4"/>
-<param name="cfBusImpact" value="0"/>
-<param name="cfHugging" value="3"/>
-<param name="cfAvoid" value="4"/>
-<param name="cfPolygon" value="10"/>
-<param name="cfBase.1" value="0"/>
-<param name="cfBase.2" value="1"/>
-<param name="cfBase.3" value="1"/>
-<param name="cfBase.4" value="1"/>
-<param name="cfBase.5" value="1"/>
-<param name="cfBase.6" value="1"/>
-<param name="cfBase.7" value="1"/>
-<param name="cfBase.8" value="1"/>
-<param name="cfBase.9" value="1"/>
-<param name="cfBase.10" value="1"/>
-<param name="cfBase.11" value="1"/>
-<param name="cfBase.12" value="1"/>
-<param name="cfBase.13" value="1"/>
-<param name="cfBase.14" value="1"/>
-<param name="cfBase.15" value="1"/>
-<param name="cfBase.16" value="0"/>
-<param name="mnVias" value="20"/>
-<param name="mnSegments" value="9999"/>
-<param name="mnExtdSteps" value="9999"/>
-<param name="mnRipupLevel" value="10"/>
-<param name="mnRipupSteps" value="100"/>
-<param name="mnRipupTotal" value="100"/>
-</pass>
-<pass name="Follow-me" refer="Default" active="yes">
-</pass>
-<pass name="Busses" refer="Default" active="yes">
-<param name="cfNonPref" value="4"/>
-<param name="cfBusImpact" value="4"/>
-<param name="cfHugging" value="0"/>
-<param name="mnVias" value="0"/>
-</pass>
-<pass name="Route" refer="Default" active="yes">
-</pass>
-<pass name="Optimize1" refer="Default" active="yes">
-<param name="cfVia" value="99"/>
-<param name="cfExtdStep" value="10"/>
-<param name="cfHugging" value="1"/>
-<param name="mnExtdSteps" value="1"/>
-<param name="mnRipupLevel" value="0"/>
-</pass>
-<pass name="Optimize2" refer="Optimize1" active="yes">
-<param name="cfNonPref" value="0"/>
-<param name="cfChangeDir" value="6"/>
-<param name="cfExtdStep" value="0"/>
-<param name="cfBonusStep" value="2"/>
-<param name="cfMalusStep" value="2"/>
-<param name="cfPadImpact" value="2"/>
-<param name="cfSmdImpact" value="2"/>
-<param name="cfHugging" value="0"/>
-</pass>
-<pass name="Optimize3" refer="Optimize2" active="yes">
-<param name="cfChangeDir" value="8"/>
-<param name="cfPadImpact" value="0"/>
-<param name="cfSmdImpact" value="0"/>
-</pass>
-<pass name="Optimize4" refer="Optimize3" active="yes">
-<param name="cfChangeDir" value="25"/>
-</pass>
-</autorouter>
-<elements>
-<element name="U$1" library="custom" package="SFH11-PBPC-D17-ST-BK" value="MXP" x="27.94" y="8.89" rot="R90"/>
-<element name="U$2" library="custom" package="22-23-2031" value="22-23-2031" x="39.37" y="44.45"/>
-<element name="U$3" library="custom" package="22-23-2041" value="22-23-2041" x="24.13" y="22.86"/>
-<element name="U$4" library="custom" package="22-23-2041" value="22-23-2041" x="8.89" y="22.86"/>
-<element name="U$5" library="custom" package="22-23-2041" value="22-23-2041" x="16.51" y="22.86"/>
-<element name="U$6" library="custom" package="22-23-2041" value="22-23-2041" x="46.99" y="22.86"/>
-<element name="U$7" library="custom" package="22-23-2041" value="22-23-2041" x="39.37" y="22.86"/>
-<element name="U$8" library="custom" package="22-23-2041" value="22-23-2041" x="31.75" y="22.86"/>
-<element name="U$9" library="custom" package="22-23-2031" value="22-23-2031" x="31.75" y="44.45"/>
-<element name="U$10" library="custom" package="22-23-2031" value="22-23-2031" x="24.13" y="44.45"/>
-<element name="U$11" library="custom" package="22-23-2031" value="22-23-2031" x="16.51" y="44.45"/>
-<element name="U$12" library="custom" package="22-23-2031" value="22-23-2031" x="16.51" y="34.29"/>
-<element name="U$13" library="custom" package="22-23-2031" value="22-23-2031" x="24.13" y="34.29"/>
-<element name="U$14" library="custom" package="22-23-2031" value="22-23-2031" x="31.75" y="34.29"/>
-<element name="U$15" library="custom" package="22-23-2031" value="22-23-2031" x="39.37" y="34.29"/>
-<element name="D1" library="SparkFun-LED" package="LED-0603" value="LTST-C191KGKT" x="6.985" y="31.75" rot="R90">
-<attribute name="PROD_ID" value="DIO-00821" x="6.985" y="31.75" size="1.016" layer="27" rot="R90" display="off"/>
-</element>
-<element name="R1" library="SparkFun-Passives" package="0603-RES" value="64.9" x="10.795" y="31.75" rot="R180"/>
-<element name="D2" library="SparkFun-LED" package="LED-0603" value="LTST-C191KGKT" x="6.985" y="34.29" rot="R90">
-<attribute name="PROD_ID" value="DIO-00821" x="6.985" y="34.29" size="1.016" layer="27" rot="R90" display="off"/>
-</element>
-<element name="R2" library="SparkFun-Passives" package="0603-RES" value="150" x="10.795" y="34.29" rot="R180"/>
-<element name="C1" library="custom" package="0603" value="" x="49.2125" y="25.4" rot="MR90"/>
-<element name="C2" library="custom" package="0603" value="" x="37.1475" y="25.4" rot="MR90"/>
-<element name="C3" library="custom" package="0603" value="" x="33.9725" y="25.4" rot="MR90"/>
-<element name="C4" library="custom" package="0603" value="" x="26.3525" y="25.4" rot="MR90"/>
-<element name="C5" library="custom" package="0603" value="" x="14.2875" y="25.4" rot="MR90"/>
-<element name="C6" library="custom" package="0603" value="" x="11.1125" y="25.4" rot="MR90"/>
-<element name="C7" library="custom" package="0603" value="" x="14.2875" y="35.56" rot="MR270"/>
-<element name="C8" library="custom" package="0603" value="" x="21.9075" y="35.56" rot="MR270"/>
-<element name="C9" library="custom" package="0603" value="" x="29.5275" y="35.56" rot="MR270"/>
-<element name="C10" library="custom" package="0603" value="" x="37.1475" y="35.56" rot="MR270"/>
-<element name="C11" library="custom" package="0603" value="" x="37.1475" y="45.72" rot="MR270"/>
-<element name="C12" library="custom" package="0603" value="" x="29.5275" y="45.72" rot="MR270"/>
-<element name="C13" library="custom" package="0603" value="" x="21.9075" y="45.72" rot="MR270"/>
-<element name="C14" library="custom" package="0603" value="" x="14.2875" y="45.72" rot="MR270"/>
-</elements>
-<signals>
-<signal name="N$1">
-<contactref element="U$6" pad="4"/>
-<contactref element="U$1" pad="11"/>
-<wire x1="46.99" y1="19.05" x2="46.99" y2="12.065" width="0.4064" layer="1"/>
-<wire x1="46.99" y1="12.065" x2="35.56" y2="12.065" width="0.4064" layer="1"/>
-<wire x1="35.56" y1="12.065" x2="35.56" y2="10.16" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$2">
-<contactref element="U$6" pad="3"/>
-<contactref element="U$1" pad="13"/>
-<wire x1="46.99" y1="21.59" x2="41.275" y2="21.59" width="0.4064" layer="1"/>
-<wire x1="41.275" y1="21.59" x2="41.275" y2="13.335" width="0.4064" layer="1"/>
-<wire x1="41.275" y1="13.335" x2="33.02" y2="13.335" width="0.4064" layer="1"/>
-<wire x1="33.02" y1="13.335" x2="33.02" y2="10.16" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$3">
-<contactref element="U$7" pad="4"/>
-<contactref element="U$1" pad="15"/>
-<wire x1="39.37" y1="19.05" x2="39.37" y2="14.605" width="0.4064" layer="1"/>
-<wire x1="39.37" y1="14.605" x2="30.48" y2="14.605" width="0.4064" layer="1"/>
-<wire x1="30.48" y1="14.605" x2="30.48" y2="10.16" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$4">
-<contactref element="U$7" pad="3"/>
-<contactref element="U$1" pad="17"/>
-<wire x1="39.37" y1="21.59" x2="33.655" y2="21.59" width="0.4064" layer="1"/>
-<wire x1="33.655" y1="21.59" x2="33.655" y2="15.875" width="0.4064" layer="1"/>
-<wire x1="33.655" y1="15.875" x2="28.575" y2="15.875" width="0.4064" layer="1"/>
-<wire x1="28.575" y1="15.875" x2="28.575" y2="10.16" width="0.4064" layer="1"/>
-<wire x1="28.575" y1="10.16" x2="27.94" y2="10.16" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$5">
-<contactref element="U$8" pad="4"/>
-<contactref element="U$1" pad="27"/>
-<wire x1="31.75" y1="19.05" x2="31.75" y2="17.145" width="0.4064" layer="1"/>
-<wire x1="31.75" y1="17.145" x2="27.305" y2="17.145" width="0.4064" layer="1"/>
-<wire x1="27.305" y1="17.145" x2="27.305" y2="13.335" width="0.4064" layer="1"/>
-<wire x1="27.305" y1="13.335" x2="23.495" y2="13.335" width="0.4064" layer="1"/>
-<wire x1="23.495" y1="13.335" x2="23.495" y2="12.065" width="0.4064" layer="1"/>
-<wire x1="23.495" y1="12.065" x2="15.24" y2="12.065" width="0.4064" layer="1"/>
-<wire x1="15.24" y1="12.065" x2="15.24" y2="10.16" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$6">
-<contactref element="U$8" pad="3"/>
-<contactref element="U$1" pad="29"/>
-<wire x1="31.75" y1="21.59" x2="29.845" y2="21.59" width="0.4064" layer="1"/>
-<wire x1="29.845" y1="21.59" x2="29.845" y2="18.415" width="0.4064" layer="1"/>
-<wire x1="29.845" y1="18.415" x2="26.035" y2="18.415" width="0.4064" layer="1"/>
-<wire x1="26.035" y1="18.415" x2="26.035" y2="14.605" width="0.4064" layer="1"/>
-<wire x1="26.035" y1="14.605" x2="22.225" y2="14.605" width="0.4064" layer="1"/>
-<wire x1="22.225" y1="14.605" x2="22.225" y2="13.335" width="0.4064" layer="1"/>
-<wire x1="22.225" y1="13.335" x2="12.7" y2="13.335" width="0.4064" layer="1"/>
-<wire x1="12.7" y1="13.335" x2="12.7" y2="10.16" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$7">
-<contactref element="U$3" pad="4"/>
-<contactref element="U$1" pad="31"/>
-<wire x1="24.13" y1="19.05" x2="24.13" y2="15.875" width="0.4064" layer="1"/>
-<wire x1="24.13" y1="15.875" x2="20.955" y2="15.875" width="0.4064" layer="1"/>
-<wire x1="20.955" y1="15.875" x2="20.955" y2="14.605" width="0.4064" layer="1"/>
-<wire x1="20.955" y1="14.605" x2="10.16" y2="14.605" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="14.605" x2="10.16" y2="10.16" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$8">
-<contactref element="U$3" pad="3"/>
-<contactref element="U$1" pad="18"/>
-<wire x1="24.13" y1="21.59" x2="22.225" y2="21.59" width="0.4064" layer="1"/>
-<wire x1="22.225" y1="21.59" x2="22.225" y2="17.145" width="0.4064" layer="1"/>
-<wire x1="22.225" y1="17.145" x2="19.685" y2="17.145" width="0.4064" layer="1"/>
-<wire x1="19.685" y1="17.145" x2="19.685" y2="15.875" width="0.4064" layer="1"/>
-<wire x1="19.685" y1="15.875" x2="13.335" y2="15.875" width="0.4064" layer="1"/>
-<via x="13.335" y="15.875" extent="1-16" drill="0.6"/>
-<wire x1="13.335" y1="15.875" x2="13.335" y2="14.605" width="0.4064" layer="16"/>
-<wire x1="13.335" y1="14.605" x2="5.715" y2="14.605" width="0.4064" layer="16"/>
-<wire x1="5.715" y1="14.605" x2="5.715" y2="4.445" width="0.4064" layer="16"/>
-<wire x1="5.715" y1="4.445" x2="17.145" y2="4.445" width="0.4064" layer="16"/>
-<via x="17.145" y="4.445" extent="1-16" drill="0.6"/>
-<wire x1="17.145" y1="4.445" x2="27.94" y2="4.445" width="0.4064" layer="1"/>
-<via x="27.94" y="4.445" extent="1-16" drill="0.6"/>
-<wire x1="27.94" y1="4.445" x2="27.94" y2="7.62" width="0.4064" layer="16"/>
-</signal>
-<signal name="5V">
-<contactref element="U$3" pad="2"/>
-<contactref element="U$4" pad="2"/>
-<contactref element="U$1" pad="1"/>
-<contactref element="U$6" pad="2"/>
-<contactref element="U$7" pad="2"/>
-<contactref element="U$8" pad="2"/>
-<contactref element="U$5" pad="2"/>
-<contactref element="U$2" pad="2"/>
-<contactref element="U$9" pad="2"/>
-<contactref element="U$10" pad="2"/>
-<contactref element="U$11" pad="2"/>
-<contactref element="U$12" pad="2"/>
-<contactref element="U$13" pad="2"/>
-<contactref element="U$14" pad="2"/>
-<contactref element="U$15" pad="2"/>
-<wire x1="16.51" y1="34.29" x2="24.13" y2="34.29" width="0.8128" layer="1"/>
-<wire x1="24.13" y1="34.29" x2="39.37" y2="34.29" width="0.8128" layer="1"/>
-<wire x1="39.37" y1="34.29" x2="31.75" y2="34.29" width="0.8128" layer="1"/>
-<wire x1="16.51" y1="44.45" x2="39.37" y2="44.45" width="0.8128" layer="1"/>
-<wire x1="39.37" y1="44.45" x2="31.75" y2="44.45" width="0.8128" layer="1"/>
-<wire x1="31.75" y1="44.45" x2="24.13" y2="44.45" width="0.8128" layer="1"/>
-<wire x1="46.99" y1="24.13" x2="39.37" y2="24.13" width="0.8128" layer="1"/>
-<wire x1="39.37" y1="24.13" x2="8.89" y2="24.13" width="0.8128" layer="1"/>
-<wire x1="8.89" y1="24.13" x2="31.75" y2="24.13" width="0.8128" layer="1"/>
-<wire x1="31.75" y1="24.13" x2="24.13" y2="24.13" width="0.8128" layer="1"/>
-<wire x1="24.13" y1="24.13" x2="16.51" y2="24.13" width="0.8128" layer="1"/>
-<wire x1="16.51" y1="44.45" x2="49.53" y2="44.45" width="0.8128" layer="1"/>
-<wire x1="49.53" y1="44.45" x2="49.53" y2="34.29" width="0.8128" layer="1"/>
-<wire x1="49.53" y1="34.29" x2="49.53" y2="24.13" width="0.8128" layer="1"/>
-<wire x1="49.53" y1="24.13" x2="49.53" y2="10.16" width="0.8128" layer="1"/>
-<wire x1="49.53" y1="10.16" x2="48.26" y2="10.16" width="0.8128" layer="1"/>
-<wire x1="24.13" y1="34.29" x2="49.53" y2="34.29" width="0.8128" layer="1"/>
-<wire x1="46.99" y1="24.13" x2="49.53" y2="24.13" width="0.8128" layer="1"/>
-<contactref element="R2" pad="1"/>
-<wire x1="11.645" y1="34.29" x2="16.51" y2="34.29" width="0.4064" layer="1"/>
-<contactref element="C1" pad="1"/>
-<contactref element="C2" pad="1"/>
-<contactref element="C3" pad="1"/>
-<contactref element="C4" pad="1"/>
-<contactref element="C5" pad="1"/>
-<contactref element="C6" pad="1"/>
-<wire x1="49.2125" y1="24.55" x2="49.2125" y2="24.13" width="0.4064" layer="16"/>
-<wire x1="49.2125" y1="24.13" x2="46.99" y2="24.13" width="0.4064" layer="16"/>
-<wire x1="37.1475" y1="24.55" x2="37.1475" y2="24.13" width="0.4064" layer="16"/>
-<wire x1="37.1475" y1="24.13" x2="39.37" y2="24.13" width="0.4064" layer="16"/>
-<wire x1="33.9725" y1="24.55" x2="33.9725" y2="24.13" width="0.4064" layer="16"/>
-<wire x1="33.9725" y1="24.13" x2="31.75" y2="24.13" width="0.4064" layer="16"/>
-<wire x1="26.3525" y1="24.55" x2="26.3525" y2="24.13" width="0.4064" layer="16"/>
-<wire x1="26.3525" y1="24.13" x2="24.13" y2="24.13" width="0.4064" layer="16"/>
-<wire x1="14.2875" y1="24.55" x2="14.2875" y2="24.13" width="0.4064" layer="16"/>
-<wire x1="14.2875" y1="24.13" x2="16.51" y2="24.13" width="0.4064" layer="16"/>
-<wire x1="11.1125" y1="24.55" x2="11.1125" y2="24.13" width="0.4064" layer="16"/>
-<wire x1="11.1125" y1="24.13" x2="8.89" y2="24.13" width="0.4064" layer="16"/>
-<contactref element="C7" pad="2"/>
-<contactref element="C8" pad="2"/>
-<contactref element="C9" pad="2"/>
-<contactref element="C10" pad="2"/>
-<wire x1="14.2875" y1="34.71" x2="14.2875" y2="34.29" width="0.4064" layer="16"/>
-<wire x1="14.2875" y1="34.29" x2="16.51" y2="34.29" width="0.4064" layer="16"/>
-<wire x1="21.9075" y1="34.71" x2="21.9075" y2="34.29" width="0.4064" layer="16"/>
-<wire x1="21.9075" y1="34.29" x2="24.13" y2="34.29" width="0.4064" layer="16"/>
-<wire x1="29.5275" y1="34.71" x2="29.5275" y2="34.29" width="0.4064" layer="16"/>
-<wire x1="29.5275" y1="34.29" x2="31.75" y2="34.29" width="0.4064" layer="16"/>
-<wire x1="37.1475" y1="34.71" x2="37.1475" y2="34.29" width="0.4064" layer="16"/>
-<wire x1="37.1475" y1="34.29" x2="39.37" y2="34.29" width="0.4064" layer="16"/>
-<contactref element="C11" pad="2"/>
-<contactref element="C12" pad="2"/>
-<contactref element="C13" pad="2"/>
-<contactref element="C14" pad="2"/>
-<wire x1="14.2875" y1="44.87" x2="14.2875" y2="44.45" width="0.4064" layer="16"/>
-<wire x1="14.2875" y1="44.45" x2="16.51" y2="44.45" width="0.4064" layer="16"/>
-<wire x1="21.9075" y1="44.87" x2="21.9075" y2="44.45" width="0.4064" layer="16"/>
-<wire x1="21.9075" y1="44.45" x2="24.13" y2="44.45" width="0.4064" layer="16"/>
-<wire x1="29.5275" y1="44.87" x2="29.5275" y2="44.45" width="0.4064" layer="16"/>
-<wire x1="29.5275" y1="44.45" x2="31.75" y2="44.45" width="0.4064" layer="16"/>
-<wire x1="37.1475" y1="44.87" x2="37.1475" y2="44.45" width="0.4064" layer="16"/>
-<wire x1="37.1475" y1="44.45" x2="39.37" y2="44.45" width="0.4064" layer="16"/>
-</signal>
-<signal name="DGND">
-<contactref element="U$3" pad="1"/>
-<contactref element="U$4" pad="1"/>
-<contactref element="U$5" pad="1"/>
-<contactref element="U$8" pad="1"/>
-<contactref element="U$7" pad="1"/>
-<contactref element="U$6" pad="1"/>
-<contactref element="U$1" pad="8"/>
-<contactref element="U$1" pad="30"/>
-<contactref element="U$1" pad="28"/>
-<contactref element="U$1" pad="24"/>
-<contactref element="U$1" pad="20"/>
-<contactref element="U$1" pad="16"/>
-<contactref element="U$1" pad="12"/>
-<contactref element="U$12" pad="1"/>
-<contactref element="U$13" pad="1"/>
-<contactref element="U$14" pad="1"/>
-<contactref element="U$15" pad="1"/>
-<wire x1="46.99" y1="26.67" x2="39.37" y2="26.67" width="0.8128" layer="1"/>
-<wire x1="39.37" y1="26.67" x2="8.89" y2="26.67" width="0.8128" layer="1"/>
-<wire x1="8.89" y1="26.67" x2="31.75" y2="26.67" width="0.8128" layer="1"/>
-<wire x1="31.75" y1="26.67" x2="24.13" y2="26.67" width="0.8128" layer="1"/>
-<wire x1="24.13" y1="26.67" x2="16.51" y2="26.67" width="0.8128" layer="1"/>
-<wire x1="24.13" y1="36.83" x2="16.51" y2="36.83" width="0.8128" layer="1"/>
-<wire x1="16.51" y1="36.83" x2="31.75" y2="36.83" width="0.8128" layer="1"/>
-<wire x1="39.37" y1="36.83" x2="31.75" y2="36.83" width="0.8128" layer="1"/>
-<wire x1="12.7" y1="7.62" x2="15.24" y2="7.62" width="0.8128" layer="1"/>
-<wire x1="15.24" y1="7.62" x2="15.24" y2="5.715" width="0.8128" layer="1"/>
-<wire x1="15.24" y1="5.715" x2="20.32" y2="5.715" width="0.8128" layer="1"/>
-<wire x1="20.32" y1="5.715" x2="20.32" y2="7.62" width="0.8128" layer="1"/>
-<wire x1="25.4" y1="7.62" x2="25.4" y2="5.715" width="0.8128" layer="1"/>
-<wire x1="25.4" y1="5.715" x2="20.32" y2="5.715" width="0.8128" layer="1"/>
-<wire x1="40.64" y1="7.62" x2="40.64" y2="5.715" width="0.8128" layer="1"/>
-<wire x1="40.64" y1="5.715" x2="35.56" y2="5.715" width="0.8128" layer="1"/>
-<wire x1="35.56" y1="5.715" x2="30.48" y2="5.715" width="0.8128" layer="1"/>
-<wire x1="30.48" y1="5.715" x2="25.4" y2="5.715" width="0.8128" layer="1"/>
-<wire x1="30.48" y1="7.62" x2="30.48" y2="5.715" width="0.8128" layer="1"/>
-<wire x1="35.56" y1="7.62" x2="35.56" y2="5.715" width="0.8128" layer="1"/>
-<wire x1="31.75" y1="36.83" x2="6.096" y2="36.83" width="0.8128" layer="1"/>
-<wire x1="6.096" y1="36.83" x2="2.54" y2="36.83" width="0.8128" layer="1"/>
-<wire x1="2.54" y1="36.83" x2="2.54" y2="26.67" width="0.8128" layer="1"/>
-<wire x1="2.54" y1="26.67" x2="2.54" y2="3.81" width="0.8128" layer="1"/>
-<wire x1="2.54" y1="3.81" x2="15.24" y2="3.81" width="0.8128" layer="1"/>
-<wire x1="15.24" y1="3.81" x2="15.24" y2="5.715" width="0.8128" layer="1"/>
-<wire x1="16.51" y1="26.67" x2="2.54" y2="26.67" width="0.8128" layer="1"/>
-<contactref element="D1" pad="C"/>
-<contactref element="D2" pad="C"/>
-<wire x1="6.108" y1="34.29" x2="6.108" y2="31.75" width="0.4064" layer="1"/>
-<wire x1="6.108" y1="34.29" x2="6.096" y2="34.29" width="0.4064" layer="1"/>
-<wire x1="6.096" y1="34.29" x2="6.096" y2="36.83" width="0.4064" layer="1"/>
-<contactref element="C1" pad="2"/>
-<contactref element="C2" pad="2"/>
-<contactref element="C3" pad="2"/>
-<contactref element="C4" pad="2"/>
-<contactref element="C5" pad="2"/>
-<contactref element="C6" pad="2"/>
-<wire x1="49.2125" y1="26.25" x2="49.2125" y2="26.67" width="0.4064" layer="16"/>
-<wire x1="49.2125" y1="26.67" x2="46.99" y2="26.67" width="0.4064" layer="16"/>
-<wire x1="37.1475" y1="26.25" x2="37.1475" y2="26.67" width="0.4064" layer="16"/>
-<wire x1="37.1475" y1="26.67" x2="39.37" y2="26.67" width="0.4064" layer="16"/>
-<wire x1="33.9725" y1="26.25" x2="33.9725" y2="26.67" width="0.4064" layer="16"/>
-<wire x1="33.9725" y1="26.67" x2="31.75" y2="26.67" width="0.4064" layer="16"/>
-<wire x1="26.3525" y1="26.25" x2="26.3525" y2="26.67" width="0.4064" layer="16"/>
-<wire x1="26.3525" y1="26.67" x2="24.13" y2="26.67" width="0.4064" layer="16"/>
-<wire x1="14.2875" y1="26.25" x2="14.2875" y2="26.67" width="0.4064" layer="16"/>
-<wire x1="14.2875" y1="26.67" x2="16.51" y2="26.67" width="0.4064" layer="16"/>
-<wire x1="11.1125" y1="26.25" x2="11.1125" y2="26.67" width="0.4064" layer="16"/>
-<wire x1="11.1125" y1="26.67" x2="8.89" y2="26.67" width="0.4064" layer="16"/>
-<contactref element="C7" pad="1"/>
-<contactref element="C8" pad="1"/>
-<contactref element="C9" pad="1"/>
-<contactref element="C10" pad="1"/>
-<wire x1="14.2875" y1="36.41" x2="14.2875" y2="36.83" width="0.4064" layer="16"/>
-<wire x1="14.2875" y1="36.83" x2="16.51" y2="36.83" width="0.4064" layer="16"/>
-<wire x1="21.9075" y1="36.41" x2="21.9075" y2="36.83" width="0.4064" layer="16"/>
-<wire x1="21.9075" y1="36.83" x2="24.13" y2="36.83" width="0.4064" layer="16"/>
-<wire x1="29.5275" y1="36.41" x2="29.5275" y2="36.83" width="0.4064" layer="16"/>
-<wire x1="29.5275" y1="36.83" x2="31.75" y2="36.83" width="0.4064" layer="16"/>
-<wire x1="37.1475" y1="36.41" x2="37.1475" y2="36.83" width="0.4064" layer="16"/>
-<wire x1="37.1475" y1="36.83" x2="39.37" y2="36.83" width="0.4064" layer="16"/>
-</signal>
-<signal name="N$9">
-<contactref element="U$4" pad="4"/>
-<contactref element="U$1" pad="22"/>
-<wire x1="8.89" y1="19.05" x2="3.175" y2="19.05" width="0.4064" layer="16"/>
-<wire x1="3.175" y1="19.05" x2="3.175" y2="1.905" width="0.4064" layer="16"/>
-<wire x1="3.175" y1="1.905" x2="22.86" y2="1.905" width="0.4064" layer="16"/>
-<wire x1="22.86" y1="1.905" x2="22.86" y2="7.62" width="0.4064" layer="16"/>
-</signal>
-<signal name="N$10">
-<contactref element="U$4" pad="3"/>
-<contactref element="U$1" pad="26"/>
-<wire x1="8.89" y1="21.59" x2="10.795" y2="21.59" width="0.4064" layer="16"/>
-<wire x1="10.795" y1="21.59" x2="10.795" y2="15.875" width="0.4064" layer="16"/>
-<wire x1="10.795" y1="15.875" x2="4.445" y2="15.875" width="0.4064" layer="16"/>
-<wire x1="4.445" y1="15.875" x2="4.445" y2="3.175" width="0.4064" layer="16"/>
-<wire x1="4.445" y1="3.175" x2="19.05" y2="3.175" width="0.4064" layer="16"/>
-<wire x1="19.05" y1="3.175" x2="19.05" y2="5.715" width="0.4064" layer="16"/>
-<wire x1="19.05" y1="5.715" x2="17.78" y2="5.715" width="0.4064" layer="16"/>
-<wire x1="17.78" y1="5.715" x2="17.78" y2="7.62" width="0.4064" layer="16"/>
-</signal>
-<signal name="N$11">
-<contactref element="U$5" pad="4"/>
-<contactref element="U$1" pad="32"/>
-<wire x1="16.51" y1="19.05" x2="10.795" y2="19.05" width="0.4064" layer="1"/>
-<wire x1="10.795" y1="19.05" x2="10.795" y2="17.145" width="0.4064" layer="1"/>
-<wire x1="10.795" y1="17.145" x2="4.445" y2="17.145" width="0.4064" layer="1"/>
-<wire x1="4.445" y1="17.145" x2="4.445" y2="5.715" width="0.4064" layer="1"/>
-<wire x1="4.445" y1="5.715" x2="10.16" y2="5.715" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="5.715" x2="10.16" y2="7.62" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$12">
-<contactref element="U$5" pad="3"/>
-<contactref element="U$1" pad="34"/>
-<wire x1="16.51" y1="21.59" x2="18.415" y2="21.59" width="0.4064" layer="1"/>
-<wire x1="18.415" y1="21.59" x2="18.415" y2="17.145" width="0.4064" layer="1"/>
-<wire x1="18.415" y1="17.145" x2="12.065" y2="17.145" width="0.4064" layer="1"/>
-<wire x1="12.065" y1="17.145" x2="12.065" y2="15.875" width="0.4064" layer="1"/>
-<wire x1="12.065" y1="15.875" x2="5.715" y2="15.875" width="0.4064" layer="1"/>
-<wire x1="5.715" y1="15.875" x2="5.715" y2="7.62" width="0.4064" layer="1"/>
-<wire x1="5.715" y1="7.62" x2="7.62" y2="7.62" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$13">
-<contactref element="U$2" pad="3"/>
-<contactref element="U$1" pad="3"/>
-<wire x1="39.37" y1="41.91" x2="45.085" y2="41.91" width="0.4064" layer="16"/>
-<wire x1="45.72" y1="10.16" x2="45.72" y2="12.7" width="0.4064" layer="16"/>
-<wire x1="45.72" y1="12.7" x2="45.085" y2="12.7" width="0.4064" layer="16"/>
-<wire x1="45.085" y1="12.7" x2="45.085" y2="41.91" width="0.4064" layer="16"/>
-</signal>
-<signal name="N$14">
-<contactref element="U$9" pad="3"/>
-<contactref element="U$1" pad="5"/>
-<wire x1="31.75" y1="41.91" x2="31.75" y2="40.64" width="0.4064" layer="16"/>
-<wire x1="31.75" y1="40.64" x2="43.815" y2="40.64" width="0.4064" layer="16"/>
-<wire x1="43.18" y1="10.16" x2="43.18" y2="12.7" width="0.4064" layer="16"/>
-<wire x1="43.18" y1="12.7" x2="43.815" y2="12.7" width="0.4064" layer="16"/>
-<wire x1="43.815" y1="12.7" x2="43.815" y2="40.64" width="0.4064" layer="16"/>
-</signal>
-<signal name="N$15">
-<contactref element="U$1" pad="7"/>
-<contactref element="U$10" pad="3"/>
-<wire x1="24.13" y1="41.91" x2="24.13" y2="39.37" width="0.4064" layer="16"/>
-<wire x1="24.13" y1="39.37" x2="42.545" y2="39.37" width="0.4064" layer="16"/>
-<wire x1="42.545" y1="39.37" x2="42.545" y2="15.24" width="0.4064" layer="16"/>
-<wire x1="42.545" y1="15.24" x2="40.64" y2="15.24" width="0.4064" layer="16"/>
-<wire x1="40.64" y1="15.24" x2="40.64" y2="10.16" width="0.4064" layer="16"/>
-</signal>
-<signal name="N$16">
-<contactref element="U$11" pad="3"/>
-<contactref element="U$1" pad="9"/>
-<wire x1="16.51" y1="41.91" x2="16.51" y2="38.1" width="0.4064" layer="16"/>
-<wire x1="16.51" y1="38.1" x2="41.275" y2="38.1" width="0.4064" layer="16"/>
-<wire x1="41.275" y1="38.1" x2="41.275" y2="16.51" width="0.4064" layer="16"/>
-<wire x1="41.275" y1="16.51" x2="38.1" y2="16.51" width="0.4064" layer="16"/>
-<wire x1="38.1" y1="16.51" x2="38.1" y2="10.16" width="0.4064" layer="16"/>
-</signal>
-<signal name="AGND">
-<contactref element="U$2" pad="1"/>
-<contactref element="U$9" pad="1"/>
-<contactref element="U$10" pad="1"/>
-<contactref element="U$11" pad="1"/>
-<contactref element="U$1" pad="6"/>
-<wire x1="16.51" y1="46.99" x2="39.37" y2="46.99" width="0.8128" layer="1"/>
-<wire x1="39.37" y1="46.99" x2="31.75" y2="46.99" width="0.8128" layer="1"/>
-<wire x1="31.75" y1="46.99" x2="24.13" y2="46.99" width="0.8128" layer="1"/>
-<wire x1="16.51" y1="46.99" x2="52.07" y2="46.99" width="0.8128" layer="1"/>
-<wire x1="52.07" y1="46.99" x2="52.07" y2="5.08" width="0.8128" layer="1"/>
-<wire x1="52.07" y1="5.08" x2="43.18" y2="5.08" width="0.8128" layer="1"/>
-<wire x1="43.18" y1="5.08" x2="43.18" y2="7.62" width="0.8128" layer="1"/>
-<contactref element="C11" pad="1"/>
-<contactref element="C12" pad="1"/>
-<contactref element="C13" pad="1"/>
-<contactref element="C14" pad="1"/>
-<wire x1="14.2875" y1="46.57" x2="14.2875" y2="46.99" width="0.4064" layer="16"/>
-<wire x1="14.2875" y1="46.99" x2="16.51" y2="46.99" width="0.4064" layer="16"/>
-<wire x1="21.9075" y1="46.57" x2="21.9075" y2="46.99" width="0.4064" layer="16"/>
-<wire x1="21.9075" y1="46.99" x2="24.13" y2="46.99" width="0.4064" layer="16"/>
-<wire x1="29.5275" y1="46.57" x2="29.5275" y2="46.99" width="0.4064" layer="16"/>
-<wire x1="29.5275" y1="46.99" x2="31.75" y2="46.99" width="0.4064" layer="16"/>
-<wire x1="37.1475" y1="46.57" x2="37.1475" y2="46.99" width="0.4064" layer="16"/>
-<wire x1="37.1475" y1="46.99" x2="39.37" y2="46.99" width="0.4064" layer="16"/>
-</signal>
-<signal name="N$17">
-<contactref element="U$1" pad="25"/>
-<contactref element="U$12" pad="3"/>
-<wire x1="16.51" y1="31.75" x2="20.32" y2="31.75" width="0.4064" layer="16"/>
-<wire x1="20.32" y1="31.75" x2="20.32" y2="15.24" width="0.4064" layer="16"/>
-<wire x1="20.32" y1="15.24" x2="17.78" y2="15.24" width="0.4064" layer="16"/>
-<wire x1="17.78" y1="15.24" x2="17.78" y2="10.16" width="0.4064" layer="16"/>
-</signal>
-<signal name="N$18">
-<contactref element="U$13" pad="3"/>
-<contactref element="U$1" pad="23"/>
-<wire x1="24.13" y1="31.75" x2="21.59" y2="31.75" width="0.4064" layer="16"/>
-<wire x1="21.59" y1="31.75" x2="21.59" y2="13.97" width="0.4064" layer="16"/>
-<wire x1="21.59" y1="13.97" x2="20.32" y2="13.97" width="0.4064" layer="16"/>
-<wire x1="20.32" y1="13.97" x2="20.32" y2="10.16" width="0.4064" layer="16"/>
-</signal>
-<signal name="N$19">
-<contactref element="U$1" pad="21"/>
-<contactref element="U$14" pad="3"/>
-<wire x1="31.75" y1="31.75" x2="27.94" y2="31.75" width="0.4064" layer="16"/>
-<wire x1="27.94" y1="31.75" x2="27.94" y2="13.97" width="0.4064" layer="16"/>
-<wire x1="27.94" y1="13.97" x2="22.86" y2="13.97" width="0.4064" layer="16"/>
-<wire x1="22.86" y1="13.97" x2="22.86" y2="10.16" width="0.4064" layer="16"/>
-</signal>
-<signal name="N$20">
-<contactref element="U$1" pad="19"/>
-<contactref element="U$15" pad="3"/>
-<wire x1="39.37" y1="31.75" x2="35.56" y2="31.75" width="0.4064" layer="16"/>
-<wire x1="35.56" y1="31.75" x2="35.56" y2="12.7" width="0.4064" layer="16"/>
-<wire x1="35.56" y1="12.7" x2="25.4" y2="12.7" width="0.4064" layer="16"/>
-<wire x1="25.4" y1="12.7" x2="25.4" y2="10.16" width="0.4064" layer="16"/>
-</signal>
-<signal name="N$21">
-<via x="3.1242" y="78.1685" extent="1-16" drill="3.2"/>
-</signal>
-<signal name="N$22">
-<via x="52.7558" y="78.1685" extent="1-16" drill="3.2"/>
-</signal>
-<signal name="N$23">
-<contactref element="D1" pad="A"/>
-<contactref element="R1" pad="2"/>
-<wire x1="9.945" y1="31.75" x2="7.862" y2="31.75" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$24">
-<contactref element="R1" pad="1"/>
-<contactref element="U$1" pad="33"/>
-<wire x1="13.97" y1="29.21" x2="19.05" y2="29.21" width="0.4064" layer="16"/>
-<wire x1="19.05" y1="29.21" x2="19.05" y2="16.51" width="0.4064" layer="16"/>
-<wire x1="19.05" y1="16.51" x2="16.51" y2="16.51" width="0.4064" layer="16"/>
-<wire x1="16.51" y1="16.51" x2="16.51" y2="12.7" width="0.4064" layer="16"/>
-<wire x1="16.51" y1="12.7" x2="7.62" y2="12.7" width="0.4064" layer="16"/>
-<wire x1="7.62" y1="12.7" x2="7.62" y2="10.16" width="0.4064" layer="16"/>
-<wire x1="13.97" y1="29.21" x2="13.97" y2="31.75" width="0.4064" layer="16"/>
-<via x="13.97" y="31.75" extent="1-16" drill="0.6"/>
-<wire x1="13.97" y1="31.75" x2="11.645" y2="31.75" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$25">
-<contactref element="D2" pad="A"/>
-<contactref element="R2" pad="2"/>
-<wire x1="9.945" y1="34.29" x2="7.862" y2="34.29" width="0.4064" layer="1"/>
-</signal>
-</signals>
-<errors>
-<approved hash="3,1,665d238a23456692"/>
-<approved hash="3,1,7526fbcac5134bff"/>
-</errors>
-</board>
-</drawing>
-<compatibility>
-<note version="6.3" minversion="6.2.2" severity="warning">
-Since Version 6.2.2 text objects can contain more than one line,
-which will not be processed correctly with this version.
-</note>
-</compatibility>
-</eagle>
diff --git a/roborio_expansion_boards/expansion_board.sch b/roborio_expansion_boards/expansion_board.sch
deleted file mode 100644
index 2ab92de..0000000
--- a/roborio_expansion_boards/expansion_board.sch
+++ /dev/null
@@ -1,1862 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE eagle SYSTEM "eagle.dtd">
-<eagle version="6.5.0">
-<drawing>
-<settings>
-<setting alwaysvectorfont="no"/>
-<setting verticaltext="up"/>
-</settings>
-<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
-<layers>
-<layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
-<layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
-<layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
-<layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
-<layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
-<layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
-<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
-<layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
-<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
-<layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
-<layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
-<layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
-<layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
-<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
-<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
-<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
-<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
-<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
-<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
-<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
-<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
-<layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
-<layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
-<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
-<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
-<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
-<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
-<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
-<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
-<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
-<layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
-<layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
-<layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
-<layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
-<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
-<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
-<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
-<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
-<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
-<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
-<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/>
-<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
-<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
-<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
-<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
-<layer number="99" name="SpiceOrder" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
-<layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
-<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
-<layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
-<layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
-<layer number="110" name="fp0" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="111" name="LPC17xx" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
-<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="123" name="tTestmark" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="124" name="bTestmark" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="126" name="_bNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="127" name="_tValues" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="128" name="_bValues" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="131" name="tAdjust" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="132" name="bAdjust" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="150" name="Notes" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="152" name="_bDocu" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="153" name="FabDoc1" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="154" name="FabDoc2" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="155" name="FabDoc3" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
-<layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
-<layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
-<layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
-<layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
-<layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
-<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
-<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
-<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
-<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
-<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
-<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
-<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
-<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
-<layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="249" name="Edge" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
-<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
-<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
-</layers>
-<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
-<libraries>
-<library name="custom">
-<packages>
-<package name="SFH11-PBPC-D17-ST-BK">
-<description>2x17 0.01" keyed female connector.
-
-Sullins SFH11-PBPC-D17-ST-BK&lt;br&gt;&lt;br&gt;
-
-This package is upside down (you put it on the top side and it corresponds to a connector on the bottom); oops...</description>
-<pad name="18" x="-1.27" y="0" drill="1.016"/>
-<pad name="17" x="1.27" y="0" drill="1.016"/>
-<pad name="20" x="-1.27" y="2.54" drill="1.016"/>
-<pad name="22" x="-1.27" y="5.08" drill="1.016"/>
-<pad name="24" x="-1.27" y="7.62" drill="1.016"/>
-<pad name="26" x="-1.27" y="10.16" drill="1.016"/>
-<pad name="28" x="-1.27" y="12.7" drill="1.016"/>
-<pad name="30" x="-1.27" y="15.24" drill="1.016"/>
-<pad name="32" x="-1.27" y="17.78" drill="1.016"/>
-<pad name="34" x="-1.27" y="20.32" drill="1.016"/>
-<pad name="16" x="-1.27" y="-2.54" drill="1.016"/>
-<pad name="14" x="-1.27" y="-5.08" drill="1.016"/>
-<pad name="12" x="-1.27" y="-7.62" drill="1.016"/>
-<pad name="10" x="-1.27" y="-10.16" drill="1.016"/>
-<pad name="8" x="-1.27" y="-12.7" drill="1.016"/>
-<pad name="6" x="-1.27" y="-15.24" drill="1.016"/>
-<pad name="4" x="-1.27" y="-17.78" drill="1.016"/>
-<pad name="2" x="-1.27" y="-20.32" drill="1.016"/>
-<pad name="1" x="1.27" y="-20.32" drill="1.016" shape="square"/>
-<pad name="3" x="1.27" y="-17.78" drill="1.016"/>
-<pad name="5" x="1.27" y="-15.24" drill="1.016"/>
-<pad name="7" x="1.27" y="-12.7" drill="1.016"/>
-<pad name="9" x="1.27" y="-10.16" drill="1.016"/>
-<pad name="11" x="1.27" y="-7.62" drill="1.016"/>
-<pad name="13" x="1.27" y="-5.08" drill="1.016"/>
-<pad name="15" x="1.27" y="-2.54" drill="1.016"/>
-<pad name="19" x="1.27" y="2.54" drill="1.016"/>
-<pad name="21" x="1.27" y="5.08" drill="1.016"/>
-<pad name="23" x="1.27" y="7.62" drill="1.016"/>
-<pad name="25" x="1.27" y="10.16" drill="1.016"/>
-<pad name="27" x="1.27" y="12.7" drill="1.016"/>
-<pad name="29" x="1.27" y="15.24" drill="1.016"/>
-<pad name="31" x="1.27" y="17.78" drill="1.016"/>
-<pad name="33" x="1.27" y="20.32" drill="1.016"/>
-<text x="4.445" y="-20.32" size="1.27" layer="21" rot="R90">1</text>
-<text x="-3.175" y="19.05" size="1.27" layer="21" rot="R90">34</text>
-<wire x1="2.9972" y1="1.8542" x2="3.9878" y2="1.8542" width="0.127" layer="22"/>
-<wire x1="3.9878" y1="1.8542" x2="3.9878" y2="-1.8542" width="0.127" layer="22"/>
-<wire x1="3.9878" y1="-1.8542" x2="2.9972" y2="-1.8542" width="0.127" layer="22"/>
-<wire x1="-2.9972" y1="24.13" x2="2.9972" y2="24.13" width="0.127" layer="22"/>
-<wire x1="2.9972" y1="24.13" x2="2.9972" y2="1.8542" width="0.127" layer="22"/>
-<wire x1="2.9972" y1="1.8542" x2="2.9972" y2="-1.8542" width="0.127" layer="22"/>
-<wire x1="2.9972" y1="-1.8542" x2="2.9972" y2="-24.13" width="0.127" layer="22"/>
-<wire x1="2.9972" y1="-24.13" x2="-2.9972" y2="-24.13" width="0.127" layer="22"/>
-<wire x1="-2.9972" y1="-24.13" x2="-2.9972" y2="24.13" width="0.127" layer="22"/>
-<wire x1="-4.5466" y1="25.4" x2="4.5466" y2="25.4" width="0.127" layer="21"/>
-<wire x1="4.5466" y1="25.4" x2="4.5466" y2="-25.4" width="0.127" layer="21"/>
-<wire x1="4.5466" y1="-25.4" x2="-4.5466" y2="-25.4" width="0.127" layer="21"/>
-<wire x1="-4.5466" y1="-25.4" x2="-4.5466" y2="25.4" width="0.127" layer="21"/>
-<rectangle x1="-4.5466" y1="-25.4" x2="4.5466" y2="25.4" layer="40"/>
-</package>
-<package name="22-23-2031">
-<description>3-pin Molex locking connector (male) 22-23-2031.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-3.1242" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="-3.7338" x2="-3.1242" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="-3.1242" y1="-3.7338" x2="-3.1242" y2="3.7338" width="0.127" layer="21"/>
-<rectangle x1="-3.1242" y1="-3.7338" x2="3.0988" y2="3.7338" layer="39"/>
-<wire x1="3.0988" y1="3.7338" x2="3.0988" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="-3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-</package>
-<package name="22-23-2041">
-<description>4-pin Molex locking connector (male) 22-23-2041.</description>
-<pad name="2" x="0" y="1.27" drill="1.016"/>
-<pad name="1" x="0" y="3.81" drill="1.016"/>
-<pad name="3" x="0" y="-1.27" drill="1.016"/>
-<wire x1="-3.1242" y1="5.0038" x2="1.0668" y2="5.0038" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="5.0038" x2="1.0668" y2="-5.0038" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="-5.0038" x2="-3.1242" y2="-5.0038" width="0.127" layer="21"/>
-<wire x1="-3.1242" y1="-5.0038" x2="-3.1242" y2="5.0038" width="0.127" layer="21"/>
-<rectangle x1="-3.1242" y1="-5.0038" x2="3.0988" y2="5.0038" layer="39"/>
-<wire x1="3.0988" y1="5.0038" x2="3.0988" y2="-5.0038" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="5.0038" x2="1.0668" y2="5.0038" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="-5.0038" x2="1.0668" y2="-5.0038" width="0.127" layer="21"/>
-<pad name="4" x="0" y="-3.81" drill="1.016"/>
-</package>
-<package name="PWM_1X3">
-<description>Generic 1x3 0.1" pitch connector.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-1.27" y1="3.81" x2="1.27" y2="3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="3.81" x2="1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="-3.81" x2="-1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="-1.27" y1="-3.81" x2="-1.27" y2="3.81" width="0.127" layer="21"/>
-<rectangle x1="-1.27" y1="-3.81" x2="1.27" y2="3.81" layer="39"/>
-</package>
-<package name="CAP-PTH-SMALL">
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651"/>
-<text x="0.508" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="0.254" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="CAP-PTH-SMALL2">
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="1.27" x2="3.81" y2="1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="1.27" x2="3.81" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="-1.27" x2="-1.27" y2="1.27" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651"/>
-<text x="-1.27" y="1.905" size="0.6096" layer="25">&gt;Name</text>
-<text x="-1.27" y="-2.54" size="0.6096" layer="27">&gt;Value</text>
-</package>
-<package name="0805">
-<wire x1="-0.3" y1="0.6" x2="0.3" y2="0.6" width="0.1524" layer="21"/>
-<wire x1="-0.3" y1="-0.6" x2="0.3" y2="-0.6" width="0.1524" layer="21"/>
-<smd name="1" x="-0.9" y="0" dx="0.8" dy="1.2" layer="1"/>
-<smd name="2" x="0.9" y="0" dx="0.8" dy="1.2" layer="1"/>
-<text x="-0.762" y="0.8255" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.016" y="-1.397" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="CAP-PTH-LARGE">
-<wire x1="0" y1="0.635" x2="0" y2="0" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="0" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="-2.54" y2="0" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="2.54" y2="0" width="0.2032" layer="21"/>
-<pad name="1" x="-4.826" y="0" drill="0.9" diameter="1.905"/>
-<pad name="2" x="4.572" y="0" drill="0.9" diameter="1.905"/>
-<text x="-0.762" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="-1.016" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="GRM43D">
-<wire x1="2.25" y1="1.6" x2="1.1" y2="1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="1.6" x2="-1.1" y2="1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="1.6" x2="-2.25" y2="1.6" width="0.127" layer="51"/>
-<wire x1="-2.25" y1="1.6" x2="-2.25" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-2.25" y1="-1.6" x2="-1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="-1.6" x2="1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="-1.6" x2="2.25" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="2.25" y1="-1.6" x2="2.25" y2="1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="1.6" x2="1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="1.6" x2="-1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-2.3" y1="1.8" x2="2.3" y2="1.8" width="0.127" layer="21"/>
-<wire x1="-2.3" y1="-1.8" x2="2.3" y2="-1.8" width="0.127" layer="21"/>
-<smd name="A" x="1.927" y="0" dx="3.2" dy="1.65" layer="1" rot="R90"/>
-<smd name="C" x="-1.927" y="0" dx="3.2" dy="1.65" layer="1" rot="R90"/>
-<text x="-2" y="2" size="0.4064" layer="25">&gt;NAME</text>
-<text x="0" y="-2" size="0.4064" layer="27" rot="R180">&gt;VALUE</text>
-<rectangle x1="-2.2" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
-<rectangle x1="1.1" y1="-1.6" x2="2.2" y2="1.6" layer="51"/>
-</package>
-<package name="0603-CAP">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<wire x1="0" y1="0.0305" x2="0" y2="-0.0305" width="0.5588" layer="21"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-<package name="0402-CAP">
-<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
-chip</description>
-<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
-<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
-<wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
-<wire x1="0" y1="0.0305" x2="0" y2="-0.0305" width="0.4064" layer="21"/>
-<smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
-<smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
-<text x="-0.889" y="0.6985" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.0795" y="-1.143" size="0.4064" layer="27">&gt;VALUE</text>
-<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
-<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-<package name="CAP-PTH-5MM">
-<wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.2032" layer="21"/>
-<pad name="1" x="-2.5" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.5" y="0" drill="0.7" diameter="1.651"/>
-<text x="-0.762" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="-1.016" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="AXIAL-5MM">
-<wire x1="-1.14" y1="0.762" x2="1.14" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0.762" x2="1.14" y2="0" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0" x2="1.14" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="-0.762" x2="-1.14" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="-0.762" x2="-1.14" y2="0" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="0" x2="-1.14" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0" x2="1.394" y2="0" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="0" x2="-1.394" y2="0" width="0.2032" layer="21"/>
-<pad name="P$1" x="-2.5" y="0" drill="0.9" diameter="1.8796"/>
-<pad name="P$2" x="2.5" y="0" drill="0.9" diameter="1.8796"/>
-<text x="-2.54" y="1.17" size="0.4" layer="25">&gt;Name</text>
-<text x="-1.032" y="-0.208" size="0.4" layer="21" ratio="15">&gt;Value</text>
-</package>
-<package name="1210">
-<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.3" x2="1.6" y2="-1.3" width="0.127" layer="51"/>
-<wire x1="1.6" y1="-1.3" x2="-1.6" y2="-1.3" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="-1.3" x2="-1.6" y2="1.3" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.2032" layer="21"/>
-<wire x1="-1.6" y1="-1.3" x2="1.6" y2="-1.3" width="0.2032" layer="21"/>
-<smd name="1" x="-1.6" y="0" dx="1.2" dy="2" layer="1"/>
-<smd name="2" x="1.6" y="0" dx="1.2" dy="2" layer="1"/>
-<text x="-0.8" y="0.5" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-0.9" y="-0.7" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="1206">
-<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
-<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
-<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
-<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
-<text x="-1.27" y="1.143" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.397" y="-1.524" size="0.4064" layer="27">&gt;VALUE</text>
-<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
-<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
-</package>
-<package name="CTZ3">
-<description>CTZ3 Series land pattern for variable capacitor - CTZ3E-50C-W1-PF</description>
-<wire x1="-1.6" y1="1.4" x2="-1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="-2.25" x2="1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.4" x2="1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="-0.5" y1="0" x2="0.5" y2="0" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="1.4" x2="-1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.4" x2="1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="-1" y1="2.2" x2="1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="0" y1="0.8" x2="0" y2="-0.8" width="0.127" layer="51"/>
-<wire x1="-0.8" y1="0" x2="0.8" y2="0" width="0.127" layer="51"/>
-<wire x1="-1.05" y1="2.25" x2="-1.7" y2="1.45" width="0.127" layer="21"/>
-<wire x1="-1.7" y1="1.45" x2="-1.7" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="-1.7" y1="-2.35" x2="-1.05" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="1.05" y1="2.25" x2="1.7" y2="1.4" width="0.127" layer="21"/>
-<wire x1="1.7" y1="1.4" x2="1.7" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="1.7" y1="-2.35" x2="1.05" y2="-2.35" width="0.127" layer="21"/>
-<smd name="+" x="0" y="2.05" dx="1.5" dy="1.2" layer="1"/>
-<smd name="-" x="0" y="-2.05" dx="1.5" dy="1.2" layer="1"/>
-<text x="-2" y="3" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-2" y="-3.4" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="CAP-PTH-SMALL-KIT">
-<description>&lt;h3&gt;CAP-PTH-SMALL-KIT&lt;/h3&gt;
-Commonly used for small ceramic capacitors. Like our 0.1uF (http://www.sparkfun.com/products/8375) or 22pF caps (http://www.sparkfun.com/products/8571).&lt;br&gt;
-&lt;br&gt;
-&lt;b&gt;Warning:&lt;/b&gt; This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.</description>
-<wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.254" layer="21"/>
-<wire x1="-2.667" y1="1.27" x2="2.667" y2="1.27" width="0.254" layer="21"/>
-<wire x1="2.667" y1="1.27" x2="2.667" y2="-1.27" width="0.254" layer="21"/>
-<wire x1="2.667" y1="-1.27" x2="-2.667" y2="-1.27" width="0.254" layer="21"/>
-<wire x1="-2.667" y1="-1.27" x2="-2.667" y2="1.27" width="0.254" layer="21"/>
-<pad name="1" x="-1.397" y="0" drill="1.016" diameter="2.032" stop="no"/>
-<pad name="2" x="1.397" y="0" drill="1.016" diameter="2.032" stop="no"/>
-<polygon width="0.127" layer="30">
-<vertex x="-1.4021" y="-0.9475" curve="-90"/>
-<vertex x="-2.357" y="-0.0178" curve="-90.011749"/>
-<vertex x="-1.4046" y="0.9576" curve="-90"/>
-<vertex x="-0.4546" y="-0.0204" curve="-90.024193"/>
-</polygon>
-<polygon width="0.127" layer="29">
-<vertex x="-1.4046" y="-0.4395" curve="-90.012891"/>
-<vertex x="-1.8491" y="-0.0153" curve="-90"/>
-<vertex x="-1.4046" y="0.452" curve="-90"/>
-<vertex x="-0.9627" y="-0.0051" curve="-90.012967"/>
-</polygon>
-<polygon width="0.127" layer="30">
-<vertex x="1.397" y="-0.9475" curve="-90"/>
-<vertex x="0.4421" y="-0.0178" curve="-90.011749"/>
-<vertex x="1.3945" y="0.9576" curve="-90"/>
-<vertex x="2.3445" y="-0.0204" curve="-90.024193"/>
-</polygon>
-<polygon width="0.127" layer="29">
-<vertex x="1.3945" y="-0.4395" curve="-90.012891"/>
-<vertex x="0.95" y="-0.0153" curve="-90"/>
-<vertex x="1.3945" y="0.452" curve="-90"/>
-<vertex x="1.8364" y="-0.0051" curve="-90.012967"/>
-</polygon>
-</package>
-<package name="CAP-PTH-SMALLEZ">
-<description>This is the "EZ" version of the .1" spaced ceramic thru-hole cap.&lt;br&gt;
-It has reduced top mask to make it harder to put the component on the wrong side of the board.</description>
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="1.27" x2="3.81" y2="1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="1.27" x2="3.81" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="-1.27" x2="-1.27" y2="1.27" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651" stop="no"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651" stop="no"/>
-<text x="-1.27" y="1.905" size="0.6096" layer="25">&gt;Name</text>
-<text x="-1.27" y="-2.54" size="0.6096" layer="27">&gt;Value</text>
-<circle x="0" y="0" radius="0.898025" width="0" layer="30"/>
-<circle x="2.54" y="0" radius="0.915809375" width="0" layer="30"/>
-<circle x="0" y="0" radius="0.40160625" width="0" layer="29"/>
-<circle x="2.54" y="0" radius="0.40160625" width="0" layer="29"/>
-</package>
-<package name="0603">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-</packages>
-<symbols>
-<symbol name="CONN_34PIN">
-<description>2x17 pin connector (NI MXP port).</description>
-<pin name="DIO7_SPI-MOSI" x="-20.32" y="5.08" length="middle"/>
-<pin name="DIO6_SPI-MISO" x="-20.32" y="10.16" length="middle"/>
-<pin name="DIO5_SPI-CLK" x="-20.32" y="15.24" length="middle"/>
-<pin name="DIO4_SPI-CS" x="-20.32" y="20.32" length="middle"/>
-<pin name="DIO3_PWM3" x="-20.32" y="25.4" length="middle"/>
-<pin name="DIO2_PWM2" x="-20.32" y="30.48" length="middle"/>
-<pin name="DIO1_PWM1" x="-20.32" y="35.56" length="middle"/>
-<pin name="DIO0_PWM0" x="-20.32" y="40.64" length="middle"/>
-<pin name="DIO8_PWM4" x="-20.32" y="0" length="middle"/>
-<pin name="DIO9_PWM5" x="-20.32" y="-5.08" length="middle"/>
-<pin name="DIO10_PWM6" x="-20.32" y="-10.16" length="middle"/>
-<pin name="DIO11_PWM7" x="-20.32" y="-15.24" length="middle"/>
-<pin name="DIO12_PWM8" x="-20.32" y="-20.32" length="middle"/>
-<pin name="DIO13_PWM9" x="-20.32" y="-25.4" length="middle"/>
-<pin name="DIO14_I2C-SCL" x="-20.32" y="-30.48" length="middle"/>
-<pin name="DIO15_I2C-SDA" x="-20.32" y="-35.56" length="middle"/>
-<pin name="5V" x="-20.32" y="-40.64" length="middle" direction="pwr"/>
-<pin name="DGND0" x="20.32" y="-5.08" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="DGND1" x="20.32" y="-10.16" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="DGND2" x="20.32" y="-15.24" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="DGND3" x="20.32" y="-20.32" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="DGND4" x="20.32" y="-25.4" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="DGND5" x="20.32" y="-30.48" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="DGND6" x="20.32" y="-35.56" length="middle" direction="pwr" swaplevel="1" rot="R180"/>
-<pin name="3V3" x="20.32" y="-40.64" length="middle" direction="pwr" rot="R180"/>
-<pin name="UART-RX" x="20.32" y="0" length="middle" direction="in" rot="R180"/>
-<pin name="UART-TX" x="20.32" y="5.08" length="middle" direction="out" rot="R180"/>
-<pin name="AGND" x="20.32" y="10.16" length="middle" direction="pwr" rot="R180"/>
-<pin name="AI3" x="20.32" y="15.24" length="middle" direction="in" rot="R180"/>
-<pin name="AI2" x="20.32" y="20.32" length="middle" direction="in" rot="R180"/>
-<pin name="AI1" x="20.32" y="25.4" length="middle" direction="in" rot="R180"/>
-<pin name="AI0" x="20.32" y="30.48" length="middle" direction="in" rot="R180"/>
-<pin name="AO1" x="20.32" y="35.56" length="middle" direction="out" rot="R180"/>
-<pin name="AO0" x="20.32" y="40.64" length="middle" direction="out" rot="R180"/>
-<wire x1="-15.24" y1="43.18" x2="15.24" y2="43.18" width="0.254" layer="94"/>
-<wire x1="15.24" y1="43.18" x2="15.24" y2="-43.18" width="0.254" layer="94"/>
-<wire x1="15.24" y1="-43.18" x2="-15.24" y2="-43.18" width="0.254" layer="94"/>
-<wire x1="-15.24" y1="-43.18" x2="-15.24" y2="43.18" width="0.254" layer="94"/>
-<text x="-12.7" y="45.72" size="1.778" layer="95">&gt;NAME</text>
-</symbol>
-<symbol name="22-23-2031">
-<description>3-pin Molex locking connector (male).</description>
-<pin name="PWR" x="-7.62" y="0" length="middle" direction="pwr"/>
-<pin name="GND" x="-7.62" y="5.08" length="middle" direction="pwr"/>
-<pin name="SIG" x="-7.62" y="-5.08" length="middle"/>
-<wire x1="-2.54" y1="7.62" x2="5.08" y2="7.62" width="0.254" layer="94"/>
-<wire x1="5.08" y1="7.62" x2="5.08" y2="-7.62" width="0.254" layer="94"/>
-<wire x1="5.08" y1="-7.62" x2="-2.54" y2="-7.62" width="0.254" layer="94"/>
-<wire x1="-2.54" y1="-7.62" x2="-2.54" y2="7.62" width="0.254" layer="94"/>
-<text x="-5.08" y="8.255" size="1.778" layer="95">&gt;NAME</text>
-</symbol>
-<symbol name="22-23-2041">
-<description>4-pin Molex locking connector (male).</description>
-<pin name="PWR" x="-10.16" y="2.54" length="middle" direction="pwr"/>
-<pin name="GND" x="-10.16" y="7.62" length="middle" direction="pwr"/>
-<pin name="A" x="-10.16" y="-2.54" length="middle"/>
-<wire x1="-5.08" y1="10.16" x2="2.54" y2="10.16" width="0.254" layer="94"/>
-<wire x1="2.54" y1="10.16" x2="2.54" y2="-10.16" width="0.254" layer="94"/>
-<wire x1="2.54" y1="-10.16" x2="-5.08" y2="-10.16" width="0.254" layer="94"/>
-<wire x1="-5.08" y1="-10.16" x2="-5.08" y2="10.16" width="0.254" layer="94"/>
-<pin name="B" x="-10.16" y="-7.62" length="middle"/>
-<text x="-7.62" y="10.795" size="1.778" layer="95">&gt;NAME</text>
-</symbol>
-<symbol name="CAP">
-<wire x1="0" y1="2.54" x2="0" y2="2.032" width="0.1524" layer="94"/>
-<wire x1="0" y1="0" x2="0" y2="0.508" width="0.1524" layer="94"/>
-<text x="1.524" y="2.921" size="1.778" layer="95">&gt;NAME</text>
-<text x="1.524" y="-2.159" size="1.778" layer="96">&gt;VALUE</text>
-<rectangle x1="-2.032" y1="0.508" x2="2.032" y2="1.016" layer="94"/>
-<rectangle x1="-2.032" y1="1.524" x2="2.032" y2="2.032" layer="94"/>
-<pin name="1" x="0" y="5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
-<pin name="2" x="0" y="-2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
-</symbol>
-</symbols>
-<devicesets>
-<deviceset name="MXP">
-<description>NI MXP female connector.</description>
-<gates>
-<gate name="G$1" symbol="CONN_34PIN" x="0" y="0" swaplevel="1"/>
-</gates>
-<devices>
-<device name="" package="SFH11-PBPC-D17-ST-BK">
-<connects>
-<connect gate="G$1" pin="3V3" pad="33"/>
-<connect gate="G$1" pin="5V" pad="1"/>
-<connect gate="G$1" pin="AGND" pad="6"/>
-<connect gate="G$1" pin="AI0" pad="3"/>
-<connect gate="G$1" pin="AI1" pad="5"/>
-<connect gate="G$1" pin="AI2" pad="7"/>
-<connect gate="G$1" pin="AI3" pad="9"/>
-<connect gate="G$1" pin="AO0" pad="2"/>
-<connect gate="G$1" pin="AO1" pad="4"/>
-<connect gate="G$1" pin="DGND0" pad="8"/>
-<connect gate="G$1" pin="DGND1" pad="12"/>
-<connect gate="G$1" pin="DGND2" pad="16"/>
-<connect gate="G$1" pin="DGND3" pad="20"/>
-<connect gate="G$1" pin="DGND4" pad="24"/>
-<connect gate="G$1" pin="DGND5" pad="28"/>
-<connect gate="G$1" pin="DGND6" pad="30"/>
-<connect gate="G$1" pin="DIO0_PWM0" pad="11"/>
-<connect gate="G$1" pin="DIO10_PWM6" pad="31"/>
-<connect gate="G$1" pin="DIO11_PWM7" pad="18"/>
-<connect gate="G$1" pin="DIO12_PWM8" pad="22"/>
-<connect gate="G$1" pin="DIO13_PWM9" pad="26"/>
-<connect gate="G$1" pin="DIO14_I2C-SCL" pad="32"/>
-<connect gate="G$1" pin="DIO15_I2C-SDA" pad="34"/>
-<connect gate="G$1" pin="DIO1_PWM1" pad="13"/>
-<connect gate="G$1" pin="DIO2_PWM2" pad="15"/>
-<connect gate="G$1" pin="DIO3_PWM3" pad="17"/>
-<connect gate="G$1" pin="DIO4_SPI-CS" pad="19"/>
-<connect gate="G$1" pin="DIO5_SPI-CLK" pad="21"/>
-<connect gate="G$1" pin="DIO6_SPI-MISO" pad="23"/>
-<connect gate="G$1" pin="DIO7_SPI-MOSI" pad="25"/>
-<connect gate="G$1" pin="DIO8_PWM4" pad="27"/>
-<connect gate="G$1" pin="DIO9_PWM5" pad="29"/>
-<connect gate="G$1" pin="UART-RX" pad="10"/>
-<connect gate="G$1" pin="UART-TX" pad="14"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-<deviceset name="22-23-2031">
-<description>Molex 3-pin male connector 22-23-2031.</description>
-<gates>
-<gate name="G$1" symbol="22-23-2031" x="0" y="0"/>
-</gates>
-<devices>
-<device name="" package="22-23-2031">
-<connects>
-<connect gate="G$1" pin="GND" pad="1"/>
-<connect gate="G$1" pin="PWR" pad="2"/>
-<connect gate="G$1" pin="SIG" pad="3"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="GENERIC" package="PWM_1X3">
-<connects>
-<connect gate="G$1" pin="GND" pad="1"/>
-<connect gate="G$1" pin="PWR" pad="2"/>
-<connect gate="G$1" pin="SIG" pad="3"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-<deviceset name="22-23-2041">
-<description>Molex 4-pin male connector 22-23-2041.</description>
-<gates>
-<gate name="G$1" symbol="22-23-2041" x="0" y="0"/>
-</gates>
-<devices>
-<device name="" package="22-23-2041">
-<connects>
-<connect gate="G$1" pin="A" pad="3"/>
-<connect gate="G$1" pin="B" pad="4"/>
-<connect gate="G$1" pin="GND" pad="1"/>
-<connect gate="G$1" pin="PWR" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-<deviceset name="CAP" prefix="C" uservalue="yes">
-<description>&lt;b&gt;Capacitor&lt;/b&gt;
-Standard 0603 ceramic capacitor, and 0.1" leaded capacitor.</description>
-<gates>
-<gate name="G$1" symbol="CAP" x="0" y="0"/>
-</gates>
-<devices>
-<device name="PTH" package="CAP-PTH-SMALL">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH2" package="CAP-PTH-SMALL2">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0805" package="0805">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH3" package="CAP-PTH-LARGE">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="SMD" package="GRM43D">
-<connects>
-<connect gate="G$1" pin="1" pad="A"/>
-<connect gate="G$1" pin="2" pad="C"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0603-CAP" package="0603-CAP">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0402-CAP" package="0402-CAP">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH1" package="CAP-PTH-5MM">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="_" package="AXIAL-5MM">
-<connects>
-<connect gate="G$1" pin="1" pad="P$1"/>
-<connect gate="G$1" pin="2" pad="P$2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="1210" package="1210">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="1206" package="1206">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="ASMD" package="CTZ3">
-<connects>
-<connect gate="G$1" pin="1" pad="+"/>
-<connect gate="G$1" pin="2" pad="-"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="KIT" package="CAP-PTH-SMALL-KIT">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="EZ" package="CAP-PTH-SMALLEZ">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0603" package="0603">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-</devicesets>
-</library>
-<library name="SparkFun-LED">
-<description>&lt;h3&gt;SparkFun Electronics' preferred foot prints&lt;/h3&gt;
-In this library you'll find discrete LEDs for illumination or indication, but no displays.&lt;br&gt;&lt;br&gt;
-We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
-&lt;br&gt;&lt;br&gt;
-&lt;b&gt;Licensing:&lt;/b&gt; Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 
-&lt;br&gt;&lt;br&gt;
-You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description>
-<packages>
-<package name="LED-0603">
-<wire x1="0.46" y1="0.17" x2="0" y2="0.17" width="0.2032" layer="21"/>
-<wire x1="-0.46" y1="0.17" x2="0" y2="0.17" width="0.2032" layer="21"/>
-<wire x1="0" y1="0.17" x2="0.2338" y2="-0.14" width="0.2032" layer="21"/>
-<wire x1="-0.0254" y1="0.1546" x2="-0.2184" y2="-0.14" width="0.2032" layer="21"/>
-<smd name="C" x="0" y="0.877" dx="1" dy="1" layer="1" roundness="30"/>
-<smd name="A" x="0" y="-0.877" dx="1" dy="1" layer="1" roundness="30"/>
-<text x="-0.6985" y="-0.889" size="0.4064" layer="25" rot="R90">&gt;NAME</text>
-<text x="1.0795" y="-1.016" size="0.4064" layer="27" rot="R90">&gt;VALUE</text>
-</package>
-<package name="LED-1206">
-<wire x1="-1" y1="1" x2="-2.4" y2="1" width="0.2032" layer="21"/>
-<wire x1="-2.4" y1="1" x2="-2.4" y2="-1" width="0.2032" layer="21"/>
-<wire x1="-2.4" y1="-1" x2="-1" y2="-1" width="0.2032" layer="21"/>
-<wire x1="1" y1="1" x2="2.4" y2="1" width="0.2032" layer="21"/>
-<wire x1="2.4" y1="1" x2="2.4" y2="-1" width="0.2032" layer="21"/>
-<wire x1="2.4" y1="-1" x2="1" y2="-1" width="0.2032" layer="21"/>
-<wire x1="0.3" y1="0.7" x2="0.3" y2="0" width="0.2032" layer="21"/>
-<wire x1="0.3" y1="0" x2="0.3" y2="-0.7" width="0.2032" layer="21"/>
-<wire x1="0.3" y1="0" x2="-0.3" y2="0.6" width="0.2032" layer="21"/>
-<wire x1="-0.3" y1="0.6" x2="-0.3" y2="-0.6" width="0.2032" layer="21"/>
-<wire x1="-0.3" y1="-0.6" x2="0.3" y2="0" width="0.2032" layer="21"/>
-<smd name="A" x="-1.5" y="0" dx="1.2" dy="1.4" layer="1"/>
-<smd name="C" x="1.5" y="0" dx="1.2" dy="1.4" layer="1"/>
-<text x="-0.889" y="1.397" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.016" y="-1.778" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="LED-1206-BOTTOM">
-<wire x1="-2" y1="0.4" x2="-2" y2="-0.4" width="0.127" layer="49"/>
-<wire x1="-2.4" y1="0" x2="-1.6" y2="0" width="0.127" layer="49"/>
-<wire x1="1.6" y1="0" x2="2.4" y2="0" width="0.127" layer="49"/>
-<wire x1="-1.27" y1="0" x2="-0.381" y2="0" width="0.127" layer="49"/>
-<wire x1="-0.381" y1="0" x2="-0.381" y2="0.635" width="0.127" layer="49"/>
-<wire x1="-0.381" y1="0.635" x2="0.254" y2="0" width="0.127" layer="49"/>
-<wire x1="0.254" y1="0" x2="-0.381" y2="-0.635" width="0.127" layer="49"/>
-<wire x1="-0.381" y1="-0.635" x2="-0.381" y2="0" width="0.127" layer="49"/>
-<wire x1="0.254" y1="0" x2="0.254" y2="0.635" width="0.127" layer="49"/>
-<wire x1="0.254" y1="0" x2="0.254" y2="-0.635" width="0.127" layer="49"/>
-<wire x1="0.254" y1="0" x2="1.27" y2="0" width="0.127" layer="49"/>
-<rectangle x1="-0.75" y1="-0.75" x2="0.75" y2="0.75" layer="51"/>
-<smd name="A" x="-1.8" y="0" dx="1.5" dy="1.6" layer="1"/>
-<smd name="C" x="1.8" y="0" dx="1.5" dy="1.6" layer="1"/>
-<hole x="0" y="0" drill="2.3"/>
-<polygon width="0" layer="51">
-<vertex x="1.1" y="-0.5"/>
-<vertex x="1.1" y="0.5"/>
-<vertex x="1.6" y="0.5"/>
-<vertex x="1.6" y="0.25" curve="90"/>
-<vertex x="1.4" y="0.05"/>
-<vertex x="1.4" y="-0.05" curve="90"/>
-<vertex x="1.6" y="-0.25"/>
-<vertex x="1.6" y="-0.5"/>
-</polygon>
-<polygon width="0" layer="51">
-<vertex x="-1.1" y="0.5"/>
-<vertex x="-1.1" y="-0.5"/>
-<vertex x="-1.6" y="-0.5"/>
-<vertex x="-1.6" y="-0.25" curve="90"/>
-<vertex x="-1.4" y="-0.05"/>
-<vertex x="-1.4" y="0.05" curve="90"/>
-<vertex x="-1.6" y="0.25"/>
-<vertex x="-1.6" y="0.5"/>
-</polygon>
-</package>
-</packages>
-<symbols>
-<symbol name="LED">
-<wire x1="1.27" y1="0" x2="0" y2="-2.54" width="0.254" layer="94"/>
-<wire x1="0" y1="-2.54" x2="-1.27" y2="0" width="0.254" layer="94"/>
-<wire x1="1.27" y1="-2.54" x2="0" y2="-2.54" width="0.254" layer="94"/>
-<wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.254" layer="94"/>
-<wire x1="1.27" y1="0" x2="0" y2="0" width="0.254" layer="94"/>
-<wire x1="0" y1="0" x2="-1.27" y2="0" width="0.254" layer="94"/>
-<wire x1="-2.032" y1="-0.762" x2="-3.429" y2="-2.159" width="0.1524" layer="94"/>
-<wire x1="-1.905" y1="-1.905" x2="-3.302" y2="-3.302" width="0.1524" layer="94"/>
-<text x="3.556" y="-4.572" size="1.778" layer="95" rot="R90">&gt;NAME</text>
-<text x="5.715" y="-4.572" size="1.778" layer="96" rot="R90">&gt;VALUE</text>
-<pin name="C" x="0" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
-<pin name="A" x="0" y="2.54" visible="off" length="short" direction="pas" rot="R270"/>
-<polygon width="0.1524" layer="94">
-<vertex x="-3.429" y="-2.159"/>
-<vertex x="-3.048" y="-1.27"/>
-<vertex x="-2.54" y="-1.778"/>
-</polygon>
-<polygon width="0.1524" layer="94">
-<vertex x="-3.302" y="-3.302"/>
-<vertex x="-2.921" y="-2.413"/>
-<vertex x="-2.413" y="-2.921"/>
-</polygon>
-</symbol>
-</symbols>
-<devicesets>
-<deviceset name="LED-GREEN" prefix="D" uservalue="yes">
-<description>&lt;B&gt;Various green LEDs&lt;br&gt;&lt;br&gt;&lt;/B&gt;
-Green LEDs used in SFE Production&lt;br&gt;&lt;br&gt;
-0603- DIO-00821&lt;br&gt;
-LARGE- DIO-00862&lt;br&gt;
-LILYPAD- DIO-09910&lt;br&gt;</description>
-<gates>
-<gate name="G$1" symbol="LED" x="0" y="0"/>
-</gates>
-<devices>
-<device name="0603" package="LED-0603">
-<connects>
-<connect gate="G$1" pin="A" pad="A"/>
-<connect gate="G$1" pin="C" pad="C"/>
-</connects>
-<technologies>
-<technology name="">
-<attribute name="PROD_ID" value="DIO-00821" constant="no"/>
-<attribute name="VALUE" value="GREEN" constant="no"/>
-</technology>
-</technologies>
-</device>
-<device name="LILYPAD" package="LED-1206">
-<connects>
-<connect gate="G$1" pin="A" pad="A"/>
-<connect gate="G$1" pin="C" pad="C"/>
-</connects>
-<technologies>
-<technology name="">
-<attribute name="PROD_ID" value="DIO-09910"/>
-<attribute name="VALUE" value="GREEN" constant="no"/>
-</technology>
-</technologies>
-</device>
-<device name="LARGE" package="LED-1206">
-<connects>
-<connect gate="G$1" pin="A" pad="A"/>
-<connect gate="G$1" pin="C" pad="C"/>
-</connects>
-<technologies>
-<technology name="">
-<attribute name="PROD_ID" value="DIO-00862" constant="no"/>
-<attribute name="VALUE" value="GREEN" constant="no"/>
-</technology>
-</technologies>
-</device>
-<device name="1206-BOTTOM" package="LED-1206-BOTTOM">
-<connects>
-<connect gate="G$1" pin="A" pad="A"/>
-<connect gate="G$1" pin="C" pad="C"/>
-</connects>
-<technologies>
-<technology name="">
-<attribute name="PROD_ID" value="DIO-11076" constant="no"/>
-<attribute name="VALUE" value="Green" constant="no"/>
-</technology>
-</technologies>
-</device>
-</devices>
-</deviceset>
-</devicesets>
-</library>
-<library name="SparkFun-Passives">
-<description>&lt;h3&gt;SparkFun Electronics' preferred foot prints&lt;/h3&gt;
-In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.&lt;br&gt;&lt;br&gt;
-We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
-&lt;br&gt;&lt;br&gt;
-&lt;b&gt;Licensing:&lt;/b&gt; Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 
-&lt;br&gt;&lt;br&gt;
-You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description>
-<packages>
-<package name="1206">
-<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
-<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
-<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
-<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
-<text x="-1.27" y="1.143" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.397" y="-1.524" size="0.4064" layer="27">&gt;VALUE</text>
-<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
-<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
-</package>
-<package name="AXIAL-0.3">
-<wire x1="-2.54" y1="0.762" x2="2.54" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="2.54" y1="0.762" x2="2.54" y2="0" width="0.2032" layer="21"/>
-<wire x1="2.54" y1="0" x2="2.54" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="2.54" y1="-0.762" x2="-2.54" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0" width="0.2032" layer="21"/>
-<wire x1="-2.54" y1="0" x2="-2.54" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="2.54" y1="0" x2="2.794" y2="0" width="0.2032" layer="21"/>
-<wire x1="-2.54" y1="0" x2="-2.794" y2="0" width="0.2032" layer="21"/>
-<pad name="P$1" x="-3.81" y="0" drill="0.9" diameter="1.8796"/>
-<pad name="P$2" x="3.81" y="0" drill="0.9" diameter="1.8796"/>
-<text x="-2.54" y="1.27" size="0.4064" layer="25" font="vector">&gt;Name</text>
-<text x="-2.032" y="-0.381" size="1.016" layer="21" font="vector" ratio="15">&gt;Value</text>
-</package>
-<package name="R2010">
-<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
-chip</description>
-<wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
-<wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
-<wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
-<wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
-<wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
-<wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
-<wire x1="-1.027" y1="1.245" x2="1.027" y2="1.245" width="0.1524" layer="21"/>
-<wire x1="-1.002" y1="-1.245" x2="1.016" y2="-1.245" width="0.1524" layer="21"/>
-<smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
-<smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
-<text x="-2.54" y="1.5875" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-2.54" y="-2.032" size="0.4064" layer="27">&gt;VALUE</text>
-<rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
-<rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
-</package>
-<package name="0805">
-<wire x1="-0.3" y1="0.6" x2="0.3" y2="0.6" width="0.1524" layer="21"/>
-<wire x1="-0.3" y1="-0.6" x2="0.3" y2="-0.6" width="0.1524" layer="21"/>
-<smd name="1" x="-0.9" y="0" dx="0.8" dy="1.2" layer="1"/>
-<smd name="2" x="0.9" y="0" dx="0.8" dy="1.2" layer="1"/>
-<text x="-0.762" y="0.8255" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.016" y="-1.397" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="0603-RES">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-<rectangle x1="-0.2286" y1="-0.381" x2="0.2286" y2="0.381" layer="21"/>
-</package>
-<package name="0402-RES">
-<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
-chip</description>
-<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
-<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
-<wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
-<smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
-<smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
-<text x="-0.889" y="0.6985" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.0795" y="-1.143" size="0.4064" layer="27">&gt;VALUE</text>
-<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
-<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-<rectangle x1="-0.2032" y1="-0.3556" x2="0.2032" y2="0.3556" layer="21"/>
-</package>
-<package name="1/6W-RES">
-<description>1/6W Thru-hole Resistor - *UNPROVEN*</description>
-<wire x1="-1.55" y1="0.85" x2="-1.55" y2="-0.85" width="0.2032" layer="21"/>
-<wire x1="-1.55" y1="-0.85" x2="1.55" y2="-0.85" width="0.2032" layer="21"/>
-<wire x1="1.55" y1="-0.85" x2="1.55" y2="0.85" width="0.2032" layer="21"/>
-<wire x1="1.55" y1="0.85" x2="-1.55" y2="0.85" width="0.2032" layer="21"/>
-<pad name="1" x="-2.5" y="0" drill="0.762"/>
-<pad name="2" x="2.5" y="0" drill="0.762"/>
-<text x="-1.2662" y="0.9552" size="0.6096" layer="25">&gt;NAME</text>
-<text x="-1.423" y="-0.4286" size="0.8128" layer="21" ratio="15">&gt;VALUE</text>
-</package>
-<package name="R2512">
-<wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
-<wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
-<smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
-<smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
-<text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
-<text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
-<rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
-<rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
-</package>
-<package name="AXIAL-0.4">
-<description>1/4W Resistor, 0.4" wide&lt;p&gt;
-
-Yageo CFR series &lt;a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf"&gt;http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf&lt;/a&gt;</description>
-<wire x1="-3.15" y1="-1.2" x2="-3.15" y2="1.2" width="0.2032" layer="21"/>
-<wire x1="-3.15" y1="1.2" x2="3.15" y2="1.2" width="0.2032" layer="21"/>
-<wire x1="3.15" y1="1.2" x2="3.15" y2="-1.2" width="0.2032" layer="21"/>
-<wire x1="3.15" y1="-1.2" x2="-3.15" y2="-1.2" width="0.2032" layer="21"/>
-<pad name="P$1" x="-5.08" y="0" drill="0.9" diameter="1.8796"/>
-<pad name="P$2" x="5.08" y="0" drill="0.9" diameter="1.8796"/>
-<text x="-3.175" y="1.905" size="0.8128" layer="25" font="vector" ratio="15">&gt;Name</text>
-<text x="-2.286" y="-0.381" size="0.8128" layer="21" font="vector" ratio="15">&gt;Value</text>
-</package>
-<package name="AXIAL-0.5">
-<description>1/2W Resistor, 0.5" wide&lt;p&gt;
-
-Yageo CFR series &lt;a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf"&gt;http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf&lt;/a&gt;</description>
-<wire x1="-4.5" y1="-1.65" x2="-4.5" y2="1.65" width="0.2032" layer="21"/>
-<wire x1="-4.5" y1="1.65" x2="4.5" y2="1.65" width="0.2032" layer="21"/>
-<wire x1="4.5" y1="1.65" x2="4.5" y2="-1.65" width="0.2032" layer="21"/>
-<wire x1="4.5" y1="-1.65" x2="-4.5" y2="-1.65" width="0.2032" layer="21"/>
-<pad name="P$1" x="-6.35" y="0" drill="0.9" diameter="1.8796"/>
-<pad name="P$2" x="6.35" y="0" drill="0.9" diameter="1.8796"/>
-<text x="-4.445" y="2.54" size="0.8128" layer="25" font="vector" ratio="15">&gt;Name</text>
-<text x="-3.429" y="-0.381" size="0.8128" layer="21" font="vector" ratio="15">&gt;Value</text>
-</package>
-<package name="AXIAL-0.6">
-<description>1W Resistor, 0.6" wide&lt;p&gt;
-
-Yageo CFR series &lt;a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf"&gt;http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf&lt;/a&gt;</description>
-<wire x1="-5.75" y1="-2.25" x2="-5.75" y2="2.25" width="0.2032" layer="21"/>
-<wire x1="-5.75" y1="2.25" x2="5.75" y2="2.25" width="0.2032" layer="21"/>
-<wire x1="5.75" y1="2.25" x2="5.75" y2="-2.25" width="0.2032" layer="21"/>
-<wire x1="5.75" y1="-2.25" x2="-5.75" y2="-2.25" width="0.2032" layer="21"/>
-<pad name="P$1" x="-7.62" y="0" drill="1.2" diameter="1.8796"/>
-<pad name="P$2" x="7.62" y="0" drill="1.2" diameter="1.8796"/>
-<text x="-5.715" y="3.175" size="0.8128" layer="25" font="vector" ratio="15">&gt;Name</text>
-<text x="-4.064" y="-0.381" size="0.8128" layer="21" font="vector" ratio="15">&gt;Value</text>
-</package>
-<package name="AXIAL-0.8">
-<description>2W Resistor, 0.8" wide&lt;p&gt;
-
-Yageo CFR series &lt;a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf"&gt;http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf&lt;/a&gt;</description>
-<wire x1="-7.75" y1="-2.5" x2="-7.75" y2="2.5" width="0.2032" layer="21"/>
-<wire x1="-7.75" y1="2.5" x2="7.75" y2="2.5" width="0.2032" layer="21"/>
-<wire x1="7.75" y1="2.5" x2="7.75" y2="-2.5" width="0.2032" layer="21"/>
-<wire x1="7.75" y1="-2.5" x2="-7.75" y2="-2.5" width="0.2032" layer="21"/>
-<pad name="P$1" x="-10.16" y="0" drill="1.2" diameter="1.8796"/>
-<pad name="P$2" x="10.16" y="0" drill="1.2" diameter="1.8796"/>
-<text x="-7.62" y="3.175" size="0.8128" layer="25" font="vector" ratio="15">&gt;Name</text>
-<text x="-5.969" y="-0.381" size="0.8128" layer="21" font="vector" ratio="15">&gt;Value</text>
-</package>
-<package name="AXIAL-0.3-KIT">
-<description>&lt;h3&gt;AXIAL-0.3-KIT&lt;/h3&gt;
-
-Commonly used for 1/4W through-hole resistors. 0.3" pitch between holes.&lt;br&gt;
-&lt;br&gt;
-
-&lt;b&gt;Warning:&lt;/b&gt; This is the KIT version of the AXIAL-0.3 package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.</description>
-<wire x1="-2.54" y1="1.27" x2="2.54" y2="1.27" width="0.254" layer="21"/>
-<wire x1="2.54" y1="1.27" x2="2.54" y2="0" width="0.254" layer="21"/>
-<wire x1="2.54" y1="0" x2="2.54" y2="-1.27" width="0.254" layer="21"/>
-<wire x1="2.54" y1="-1.27" x2="-2.54" y2="-1.27" width="0.254" layer="21"/>
-<wire x1="-2.54" y1="-1.27" x2="-2.54" y2="0" width="0.254" layer="21"/>
-<wire x1="-2.54" y1="0" x2="-2.54" y2="1.27" width="0.254" layer="21"/>
-<wire x1="2.54" y1="0" x2="2.794" y2="0" width="0.254" layer="21"/>
-<wire x1="-2.54" y1="0" x2="-2.794" y2="0" width="0.254" layer="21"/>
-<pad name="P$1" x="-3.81" y="0" drill="1.016" diameter="2.032" stop="no"/>
-<pad name="P$2" x="3.81" y="0" drill="1.016" diameter="2.032" stop="no"/>
-<text x="-2.54" y="1.27" size="0.4064" layer="25" font="vector">&gt;Name</text>
-<text x="-2.159" y="-0.762" size="1.27" layer="21" font="vector" ratio="15">&gt;Value</text>
-<polygon width="0.127" layer="30">
-<vertex x="3.8201" y="-0.9449" curve="-90"/>
-<vertex x="2.8652" y="-0.0152" curve="-90.011749"/>
-<vertex x="3.8176" y="0.9602" curve="-90"/>
-<vertex x="4.7676" y="-0.0178" curve="-90.024193"/>
-</polygon>
-<polygon width="0.127" layer="29">
-<vertex x="3.8176" y="-0.4369" curve="-90.012891"/>
-<vertex x="3.3731" y="-0.0127" curve="-90"/>
-<vertex x="3.8176" y="0.4546" curve="-90"/>
-<vertex x="4.2595" y="-0.0025" curve="-90.012967"/>
-</polygon>
-<polygon width="0.127" layer="30">
-<vertex x="-3.8075" y="-0.9525" curve="-90"/>
-<vertex x="-4.7624" y="-0.0228" curve="-90.011749"/>
-<vertex x="-3.81" y="0.9526" curve="-90"/>
-<vertex x="-2.86" y="-0.0254" curve="-90.024193"/>
-</polygon>
-<polygon width="0.127" layer="29">
-<vertex x="-3.81" y="-0.4445" curve="-90.012891"/>
-<vertex x="-4.2545" y="-0.0203" curve="-90"/>
-<vertex x="-3.81" y="0.447" curve="-90"/>
-<vertex x="-3.3681" y="-0.0101" curve="-90.012967"/>
-</polygon>
-</package>
-<package name="AXIAL-0.3EZ">
-<description>This is the "EZ" version of the standard .3" spaced resistor package.&lt;br&gt;
-It has a reduced top mask to make it harder to install upside-down.</description>
-<wire x1="-2.54" y1="0.762" x2="2.54" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="2.54" y1="0.762" x2="2.54" y2="0" width="0.2032" layer="21"/>
-<wire x1="2.54" y1="0" x2="2.54" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="2.54" y1="-0.762" x2="-2.54" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0" width="0.2032" layer="21"/>
-<wire x1="-2.54" y1="0" x2="-2.54" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="2.54" y1="0" x2="2.794" y2="0" width="0.2032" layer="21"/>
-<wire x1="-2.54" y1="0" x2="-2.794" y2="0" width="0.2032" layer="21"/>
-<pad name="P$1" x="-3.81" y="0" drill="0.9" diameter="1.8796" stop="no"/>
-<pad name="P$2" x="3.81" y="0" drill="0.9" diameter="1.8796" stop="no"/>
-<text x="-2.54" y="1.27" size="0.4064" layer="25" font="vector">&gt;Name</text>
-<text x="-2.032" y="-0.381" size="1.016" layer="21" font="vector" ratio="15">&gt;Value</text>
-<circle x="-3.81" y="0" radius="0.508" width="0" layer="29"/>
-<circle x="3.81" y="0" radius="0.523634375" width="0" layer="29"/>
-<circle x="-3.81" y="0" radius="1.02390625" width="0" layer="30"/>
-<circle x="3.81" y="0" radius="1.04726875" width="0" layer="30"/>
-</package>
-</packages>
-<symbols>
-<symbol name="RESISTOR">
-<wire x1="-2.54" y1="0" x2="-2.159" y2="1.016" width="0.1524" layer="94"/>
-<wire x1="-2.159" y1="1.016" x2="-1.524" y2="-1.016" width="0.1524" layer="94"/>
-<wire x1="-1.524" y1="-1.016" x2="-0.889" y2="1.016" width="0.1524" layer="94"/>
-<wire x1="-0.889" y1="1.016" x2="-0.254" y2="-1.016" width="0.1524" layer="94"/>
-<wire x1="-0.254" y1="-1.016" x2="0.381" y2="1.016" width="0.1524" layer="94"/>
-<wire x1="0.381" y1="1.016" x2="1.016" y2="-1.016" width="0.1524" layer="94"/>
-<wire x1="1.016" y1="-1.016" x2="1.651" y2="1.016" width="0.1524" layer="94"/>
-<wire x1="1.651" y1="1.016" x2="2.286" y2="-1.016" width="0.1524" layer="94"/>
-<wire x1="2.286" y1="-1.016" x2="2.54" y2="0" width="0.1524" layer="94"/>
-<text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
-<text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
-<pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
-<pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
-</symbol>
-</symbols>
-<devicesets>
-<deviceset name="RESISTOR" prefix="R" uservalue="yes">
-<description>&lt;b&gt;Resistor&lt;/b&gt;
-Basic schematic elements and footprints for 0603, 1206, and PTH resistors.</description>
-<gates>
-<gate name="G$1" symbol="RESISTOR" x="0" y="0"/>
-</gates>
-<devices>
-<device name="1206" package="1206">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="AXIAL-0.3" package="AXIAL-0.3">
-<connects>
-<connect gate="G$1" pin="1" pad="P$1"/>
-<connect gate="G$1" pin="2" pad="P$2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="2010" package="R2010">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0805-RES" package="0805">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0603-RES" package="0603-RES">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0402-RES" package="0402-RES">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH-1/6W" package="1/6W-RES">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="2512" package="R2512">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH-1/4W" package="AXIAL-0.4">
-<connects>
-<connect gate="G$1" pin="1" pad="P$1"/>
-<connect gate="G$1" pin="2" pad="P$2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH-1/2W" package="AXIAL-0.5">
-<connects>
-<connect gate="G$1" pin="1" pad="P$1"/>
-<connect gate="G$1" pin="2" pad="P$2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH-1W" package="AXIAL-0.6">
-<connects>
-<connect gate="G$1" pin="1" pad="P$1"/>
-<connect gate="G$1" pin="2" pad="P$2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH-2W" package="AXIAL-0.8">
-<connects>
-<connect gate="G$1" pin="1" pad="P$1"/>
-<connect gate="G$1" pin="2" pad="P$2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="KIT" package="AXIAL-0.3-KIT">
-<connects>
-<connect gate="G$1" pin="1" pad="P$1"/>
-<connect gate="G$1" pin="2" pad="P$2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="EZ" package="AXIAL-0.3EZ">
-<connects>
-<connect gate="G$1" pin="1" pad="P$1"/>
-<connect gate="G$1" pin="2" pad="P$2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-</devicesets>
-</library>
-</libraries>
-<attributes>
-</attributes>
-<variantdefs>
-</variantdefs>
-<classes>
-<class number="0" name="default" width="0" drill="0">
-</class>
-</classes>
-<parts>
-<part name="U$1" library="custom" deviceset="MXP" device=""/>
-<part name="U$2" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$3" library="custom" deviceset="22-23-2041" device=""/>
-<part name="U$4" library="custom" deviceset="22-23-2041" device=""/>
-<part name="U$5" library="custom" deviceset="22-23-2041" device=""/>
-<part name="U$6" library="custom" deviceset="22-23-2041" device=""/>
-<part name="U$7" library="custom" deviceset="22-23-2041" device=""/>
-<part name="U$8" library="custom" deviceset="22-23-2041" device=""/>
-<part name="U$9" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$10" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$11" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$12" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$13" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$14" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$15" library="custom" deviceset="22-23-2031" device=""/>
-<part name="D1" library="SparkFun-LED" deviceset="LED-GREEN" device="0603" value="LTST-C191KGKT"/>
-<part name="R1" library="SparkFun-Passives" deviceset="RESISTOR" device="0603-RES" value="64.9"/>
-<part name="D2" library="SparkFun-LED" deviceset="LED-GREEN" device="0603" value="LTST-C191KGKT"/>
-<part name="R2" library="SparkFun-Passives" deviceset="RESISTOR" device="0603-RES" value="150"/>
-<part name="C1" library="custom" deviceset="CAP" device="0603"/>
-<part name="C2" library="custom" deviceset="CAP" device="0603"/>
-<part name="C3" library="custom" deviceset="CAP" device="0603"/>
-<part name="C4" library="custom" deviceset="CAP" device="0603"/>
-<part name="C5" library="custom" deviceset="CAP" device="0603"/>
-<part name="C6" library="custom" deviceset="CAP" device="0603"/>
-<part name="C7" library="custom" deviceset="CAP" device="0603"/>
-<part name="C8" library="custom" deviceset="CAP" device="0603"/>
-<part name="C9" library="custom" deviceset="CAP" device="0603"/>
-<part name="C10" library="custom" deviceset="CAP" device="0603"/>
-<part name="C11" library="custom" deviceset="CAP" device="0603"/>
-<part name="C12" library="custom" deviceset="CAP" device="0603"/>
-<part name="C13" library="custom" deviceset="CAP" device="0603"/>
-<part name="C14" library="custom" deviceset="CAP" device="0603"/>
-</parts>
-<sheets>
-<sheet>
-<plain>
-</plain>
-<instances>
-<instance part="U$1" gate="G$1" x="93.98" y="50.8"/>
-<instance part="U$2" gate="G$1" x="147.32" y="99.06"/>
-<instance part="U$3" gate="G$1" x="27.94" y="38.1" rot="R180"/>
-<instance part="U$4" gate="G$1" x="27.94" y="12.7" rot="R180"/>
-<instance part="U$5" gate="G$1" x="27.94" y="-12.7" rot="R180"/>
-<instance part="U$6" gate="G$1" x="27.94" y="114.3" rot="R180"/>
-<instance part="U$7" gate="G$1" x="27.94" y="88.9" rot="R180"/>
-<instance part="U$8" gate="G$1" x="27.94" y="63.5" rot="R180"/>
-<instance part="U$9" gate="G$1" x="147.32" y="78.74"/>
-<instance part="U$10" gate="G$1" x="147.32" y="58.42"/>
-<instance part="U$11" gate="G$1" x="147.32" y="38.1"/>
-<instance part="U$12" gate="G$1" x="88.9" y="-5.08"/>
-<instance part="U$13" gate="G$1" x="88.9" y="-25.4"/>
-<instance part="U$14" gate="G$1" x="88.9" y="-45.72"/>
-<instance part="U$15" gate="G$1" x="88.9" y="-66.04"/>
-<instance part="D1" gate="G$1" x="127" y="10.16" rot="R180"/>
-<instance part="R1" gate="G$1" x="127" y="0" rot="R90"/>
-<instance part="D2" gate="G$1" x="142.24" y="10.16" rot="R180"/>
-<instance part="R2" gate="G$1" x="142.24" y="0" rot="R90"/>
-<instance part="C1" gate="G$1" x="40.64" y="106.68"/>
-<instance part="C2" gate="G$1" x="40.64" y="81.28"/>
-<instance part="C3" gate="G$1" x="40.64" y="55.88"/>
-<instance part="C4" gate="G$1" x="40.64" y="30.48"/>
-<instance part="C5" gate="G$1" x="40.64" y="5.08"/>
-<instance part="C6" gate="G$1" x="40.64" y="-20.32"/>
-<instance part="C7" gate="G$1" x="76.2" y="-2.54"/>
-<instance part="C8" gate="G$1" x="76.2" y="-22.86"/>
-<instance part="C9" gate="G$1" x="76.2" y="-43.18"/>
-<instance part="C10" gate="G$1" x="76.2" y="-63.5"/>
-<instance part="C11" gate="G$1" x="134.62" y="101.6"/>
-<instance part="C12" gate="G$1" x="134.62" y="81.28"/>
-<instance part="C13" gate="G$1" x="134.62" y="60.96"/>
-<instance part="C14" gate="G$1" x="134.62" y="40.64"/>
-</instances>
-<busses>
-</busses>
-<nets>
-<net name="N$1" class="0">
-<segment>
-<pinref part="U$6" gate="G$1" pin="B"/>
-<pinref part="U$1" gate="G$1" pin="DIO0_PWM0"/>
-<wire x1="38.1" y1="121.92" x2="73.66" y2="121.92" width="0.1524" layer="91"/>
-<wire x1="73.66" y1="121.92" x2="73.66" y2="91.44" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$2" class="0">
-<segment>
-<pinref part="U$6" gate="G$1" pin="A"/>
-<wire x1="38.1" y1="116.84" x2="71.12" y2="116.84" width="0.1524" layer="91"/>
-<wire x1="71.12" y1="116.84" x2="71.12" y2="86.36" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DIO1_PWM1"/>
-<wire x1="71.12" y1="86.36" x2="73.66" y2="86.36" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$3" class="0">
-<segment>
-<pinref part="U$7" gate="G$1" pin="B"/>
-<wire x1="38.1" y1="96.52" x2="68.58" y2="96.52" width="0.1524" layer="91"/>
-<wire x1="68.58" y1="96.52" x2="68.58" y2="81.28" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DIO2_PWM2"/>
-<wire x1="68.58" y1="81.28" x2="73.66" y2="81.28" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$4" class="0">
-<segment>
-<pinref part="U$7" gate="G$1" pin="A"/>
-<wire x1="38.1" y1="91.44" x2="66.04" y2="91.44" width="0.1524" layer="91"/>
-<wire x1="66.04" y1="91.44" x2="66.04" y2="76.2" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DIO3_PWM3"/>
-<wire x1="66.04" y1="76.2" x2="73.66" y2="76.2" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$5" class="0">
-<segment>
-<pinref part="U$8" gate="G$1" pin="B"/>
-<wire x1="38.1" y1="71.12" x2="55.88" y2="71.12" width="0.1524" layer="91"/>
-<wire x1="55.88" y1="71.12" x2="55.88" y2="50.8" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DIO8_PWM4"/>
-<wire x1="55.88" y1="50.8" x2="73.66" y2="50.8" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$6" class="0">
-<segment>
-<pinref part="U$8" gate="G$1" pin="A"/>
-<wire x1="38.1" y1="66.04" x2="53.34" y2="66.04" width="0.1524" layer="91"/>
-<wire x1="53.34" y1="66.04" x2="53.34" y2="45.72" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DIO9_PWM5"/>
-<wire x1="53.34" y1="45.72" x2="73.66" y2="45.72" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$7" class="0">
-<segment>
-<pinref part="U$3" gate="G$1" pin="B"/>
-<wire x1="38.1" y1="45.72" x2="50.8" y2="45.72" width="0.1524" layer="91"/>
-<wire x1="50.8" y1="45.72" x2="50.8" y2="40.64" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DIO10_PWM6"/>
-<wire x1="50.8" y1="40.64" x2="73.66" y2="40.64" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$8" class="0">
-<segment>
-<pinref part="U$3" gate="G$1" pin="A"/>
-<wire x1="38.1" y1="40.64" x2="48.26" y2="40.64" width="0.1524" layer="91"/>
-<wire x1="48.26" y1="40.64" x2="48.26" y2="35.56" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DIO11_PWM7"/>
-<wire x1="48.26" y1="35.56" x2="73.66" y2="35.56" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="5V" class="0">
-<segment>
-<pinref part="U$3" gate="G$1" pin="PWR"/>
-<wire x1="38.1" y1="35.56" x2="40.64" y2="35.56" width="0.1524" layer="91"/>
-<label x="40.64" y="35.56" size="1.778" layer="95"/>
-<pinref part="C4" gate="G$1" pin="1"/>
-</segment>
-<segment>
-<pinref part="U$4" gate="G$1" pin="PWR"/>
-<wire x1="38.1" y1="10.16" x2="40.64" y2="10.16" width="0.1524" layer="91"/>
-<label x="40.64" y="10.16" size="1.778" layer="95"/>
-<pinref part="C5" gate="G$1" pin="1"/>
-</segment>
-<segment>
-<pinref part="U$1" gate="G$1" pin="5V"/>
-<wire x1="73.66" y1="10.16" x2="71.12" y2="10.16" width="0.1524" layer="91"/>
-<label x="71.12" y="10.16" size="1.778" layer="95"/>
-</segment>
-<segment>
-<pinref part="U$6" gate="G$1" pin="PWR"/>
-<wire x1="38.1" y1="111.76" x2="40.64" y2="111.76" width="0.1524" layer="91"/>
-<label x="40.64" y="111.76" size="1.778" layer="95"/>
-<pinref part="C1" gate="G$1" pin="1"/>
-</segment>
-<segment>
-<pinref part="U$7" gate="G$1" pin="PWR"/>
-<wire x1="38.1" y1="86.36" x2="40.64" y2="86.36" width="0.1524" layer="91"/>
-<label x="40.64" y="86.36" size="1.778" layer="95"/>
-<pinref part="C2" gate="G$1" pin="1"/>
-</segment>
-<segment>
-<pinref part="U$8" gate="G$1" pin="PWR"/>
-<wire x1="38.1" y1="60.96" x2="40.64" y2="60.96" width="0.1524" layer="91"/>
-<label x="40.64" y="60.96" size="1.778" layer="95"/>
-<pinref part="C3" gate="G$1" pin="1"/>
-</segment>
-<segment>
-<pinref part="U$5" gate="G$1" pin="PWR"/>
-<wire x1="38.1" y1="-15.24" x2="40.64" y2="-15.24" width="0.1524" layer="91"/>
-<label x="40.64" y="-15.24" size="1.778" layer="95"/>
-<pinref part="C6" gate="G$1" pin="1"/>
-</segment>
-<segment>
-<pinref part="U$2" gate="G$1" pin="PWR"/>
-<wire x1="139.7" y1="99.06" x2="134.62" y2="99.06" width="0.1524" layer="91"/>
-<label x="134.62" y="99.06" size="1.778" layer="95"/>
-<pinref part="C11" gate="G$1" pin="2"/>
-</segment>
-<segment>
-<pinref part="U$9" gate="G$1" pin="PWR"/>
-<wire x1="139.7" y1="78.74" x2="134.62" y2="78.74" width="0.1524" layer="91"/>
-<label x="134.62" y="78.74" size="1.778" layer="95"/>
-<pinref part="C12" gate="G$1" pin="2"/>
-</segment>
-<segment>
-<pinref part="U$10" gate="G$1" pin="PWR"/>
-<wire x1="139.7" y1="58.42" x2="134.62" y2="58.42" width="0.1524" layer="91"/>
-<label x="134.62" y="58.42" size="1.778" layer="95"/>
-<pinref part="C13" gate="G$1" pin="2"/>
-</segment>
-<segment>
-<pinref part="U$11" gate="G$1" pin="PWR"/>
-<wire x1="139.7" y1="38.1" x2="134.62" y2="38.1" width="0.1524" layer="91"/>
-<label x="134.62" y="38.1" size="1.778" layer="95"/>
-<pinref part="C14" gate="G$1" pin="2"/>
-</segment>
-<segment>
-<pinref part="U$12" gate="G$1" pin="PWR"/>
-<wire x1="81.28" y1="-5.08" x2="76.2" y2="-5.08" width="0.1524" layer="91"/>
-<label x="76.2" y="-5.08" size="1.778" layer="95"/>
-<pinref part="C7" gate="G$1" pin="2"/>
-</segment>
-<segment>
-<pinref part="U$13" gate="G$1" pin="PWR"/>
-<wire x1="81.28" y1="-25.4" x2="76.2" y2="-25.4" width="0.1524" layer="91"/>
-<label x="76.2" y="-25.4" size="1.778" layer="95"/>
-<pinref part="C8" gate="G$1" pin="2"/>
-</segment>
-<segment>
-<pinref part="U$14" gate="G$1" pin="PWR"/>
-<wire x1="81.28" y1="-45.72" x2="76.2" y2="-45.72" width="0.1524" layer="91"/>
-<label x="76.2" y="-45.72" size="1.778" layer="95"/>
-<pinref part="C9" gate="G$1" pin="2"/>
-</segment>
-<segment>
-<pinref part="U$15" gate="G$1" pin="PWR"/>
-<wire x1="81.28" y1="-66.04" x2="76.2" y2="-66.04" width="0.1524" layer="91"/>
-<label x="76.2" y="-66.04" size="1.778" layer="95"/>
-<pinref part="C10" gate="G$1" pin="2"/>
-</segment>
-<segment>
-<pinref part="R2" gate="G$1" pin="1"/>
-<wire x1="142.24" y1="-5.08" x2="142.24" y2="-7.62" width="0.1524" layer="91"/>
-<label x="142.24" y="-7.62" size="1.778" layer="95" rot="R270"/>
-</segment>
-</net>
-<net name="DGND" class="0">
-<segment>
-<pinref part="U$3" gate="G$1" pin="GND"/>
-<wire x1="38.1" y1="30.48" x2="38.1" y2="27.94" width="0.1524" layer="91"/>
-<label x="45.72" y="27.94" size="1.778" layer="95" rot="R180"/>
-<pinref part="C4" gate="G$1" pin="2"/>
-<wire x1="38.1" y1="27.94" x2="40.64" y2="27.94" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="U$4" gate="G$1" pin="GND"/>
-<wire x1="38.1" y1="5.08" x2="38.1" y2="2.54" width="0.1524" layer="91"/>
-<label x="45.72" y="2.54" size="1.778" layer="95" rot="R180"/>
-<pinref part="C5" gate="G$1" pin="2"/>
-<wire x1="38.1" y1="2.54" x2="40.64" y2="2.54" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="U$5" gate="G$1" pin="GND"/>
-<wire x1="38.1" y1="-20.32" x2="38.1" y2="-22.86" width="0.1524" layer="91"/>
-<label x="45.72" y="-22.86" size="1.778" layer="95" rot="R180"/>
-<pinref part="C6" gate="G$1" pin="2"/>
-<wire x1="38.1" y1="-22.86" x2="40.64" y2="-22.86" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="U$8" gate="G$1" pin="GND"/>
-<wire x1="38.1" y1="55.88" x2="38.1" y2="53.34" width="0.1524" layer="91"/>
-<label x="45.72" y="53.34" size="1.778" layer="95" rot="R180"/>
-<pinref part="C3" gate="G$1" pin="2"/>
-<wire x1="38.1" y1="53.34" x2="40.64" y2="53.34" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="U$7" gate="G$1" pin="GND"/>
-<wire x1="38.1" y1="81.28" x2="38.1" y2="78.74" width="0.1524" layer="91"/>
-<label x="45.72" y="78.74" size="1.778" layer="95" rot="R180"/>
-<pinref part="C2" gate="G$1" pin="2"/>
-<wire x1="38.1" y1="78.74" x2="40.64" y2="78.74" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="U$6" gate="G$1" pin="GND"/>
-<wire x1="38.1" y1="106.68" x2="38.1" y2="104.14" width="0.1524" layer="91"/>
-<label x="45.72" y="104.14" size="1.778" layer="95" rot="R180"/>
-<pinref part="C1" gate="G$1" pin="2"/>
-<wire x1="38.1" y1="104.14" x2="40.64" y2="104.14" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="U$1" gate="G$1" pin="DGND0"/>
-<wire x1="114.3" y1="45.72" x2="116.84" y2="45.72" width="0.1524" layer="91"/>
-<wire x1="116.84" y1="45.72" x2="116.84" y2="40.64" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DGND6"/>
-<wire x1="116.84" y1="40.64" x2="116.84" y2="35.56" width="0.1524" layer="91"/>
-<wire x1="116.84" y1="35.56" x2="116.84" y2="30.48" width="0.1524" layer="91"/>
-<wire x1="116.84" y1="30.48" x2="116.84" y2="25.4" width="0.1524" layer="91"/>
-<wire x1="116.84" y1="25.4" x2="116.84" y2="20.32" width="0.1524" layer="91"/>
-<wire x1="116.84" y1="20.32" x2="116.84" y2="15.24" width="0.1524" layer="91"/>
-<wire x1="116.84" y1="15.24" x2="114.3" y2="15.24" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DGND5"/>
-<wire x1="114.3" y1="20.32" x2="116.84" y2="20.32" width="0.1524" layer="91"/>
-<junction x="116.84" y="20.32"/>
-<pinref part="U$1" gate="G$1" pin="DGND4"/>
-<wire x1="114.3" y1="25.4" x2="116.84" y2="25.4" width="0.1524" layer="91"/>
-<junction x="116.84" y="25.4"/>
-<pinref part="U$1" gate="G$1" pin="DGND3"/>
-<wire x1="114.3" y1="30.48" x2="116.84" y2="30.48" width="0.1524" layer="91"/>
-<junction x="116.84" y="30.48"/>
-<pinref part="U$1" gate="G$1" pin="DGND2"/>
-<wire x1="114.3" y1="35.56" x2="116.84" y2="35.56" width="0.1524" layer="91"/>
-<junction x="116.84" y="35.56"/>
-<pinref part="U$1" gate="G$1" pin="DGND1"/>
-<wire x1="114.3" y1="40.64" x2="116.84" y2="40.64" width="0.1524" layer="91"/>
-<junction x="116.84" y="40.64"/>
-<label x="119.38" y="38.1" size="1.778" layer="95"/>
-<pinref part="D1" gate="G$1" pin="C"/>
-<wire x1="116.84" y1="20.32" x2="127" y2="20.32" width="0.1524" layer="91"/>
-<wire x1="127" y1="20.32" x2="127" y2="15.24" width="0.1524" layer="91"/>
-<pinref part="D2" gate="G$1" pin="C"/>
-<wire x1="142.24" y1="15.24" x2="142.24" y2="20.32" width="0.1524" layer="91"/>
-<wire x1="142.24" y1="20.32" x2="127" y2="20.32" width="0.1524" layer="91"/>
-<junction x="127" y="20.32"/>
-</segment>
-<segment>
-<pinref part="U$12" gate="G$1" pin="GND"/>
-<wire x1="81.28" y1="0" x2="81.28" y2="2.54" width="0.1524" layer="91"/>
-<label x="73.66" y="2.54" size="1.778" layer="95"/>
-<pinref part="C7" gate="G$1" pin="1"/>
-<wire x1="81.28" y1="2.54" x2="76.2" y2="2.54" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="U$13" gate="G$1" pin="GND"/>
-<wire x1="81.28" y1="-20.32" x2="81.28" y2="-17.78" width="0.1524" layer="91"/>
-<label x="73.66" y="-17.78" size="1.778" layer="95"/>
-<pinref part="C8" gate="G$1" pin="1"/>
-<wire x1="81.28" y1="-17.78" x2="76.2" y2="-17.78" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="U$14" gate="G$1" pin="GND"/>
-<wire x1="81.28" y1="-40.64" x2="81.28" y2="-38.1" width="0.1524" layer="91"/>
-<label x="73.66" y="-38.1" size="1.778" layer="95"/>
-<pinref part="C9" gate="G$1" pin="1"/>
-<wire x1="81.28" y1="-38.1" x2="76.2" y2="-38.1" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="U$15" gate="G$1" pin="GND"/>
-<wire x1="81.28" y1="-60.96" x2="81.28" y2="-58.42" width="0.1524" layer="91"/>
-<label x="73.66" y="-58.42" size="1.778" layer="95"/>
-<pinref part="C10" gate="G$1" pin="1"/>
-<wire x1="81.28" y1="-58.42" x2="76.2" y2="-58.42" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$9" class="0">
-<segment>
-<pinref part="U$4" gate="G$1" pin="B"/>
-<wire x1="38.1" y1="20.32" x2="48.26" y2="20.32" width="0.1524" layer="91"/>
-<wire x1="48.26" y1="20.32" x2="48.26" y2="30.48" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DIO12_PWM8"/>
-<wire x1="48.26" y1="30.48" x2="73.66" y2="30.48" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$10" class="0">
-<segment>
-<pinref part="U$4" gate="G$1" pin="A"/>
-<wire x1="38.1" y1="15.24" x2="50.8" y2="15.24" width="0.1524" layer="91"/>
-<wire x1="50.8" y1="15.24" x2="50.8" y2="25.4" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DIO13_PWM9"/>
-<wire x1="50.8" y1="25.4" x2="73.66" y2="25.4" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$11" class="0">
-<segment>
-<pinref part="U$5" gate="G$1" pin="B"/>
-<wire x1="38.1" y1="-5.08" x2="53.34" y2="-5.08" width="0.1524" layer="91"/>
-<wire x1="53.34" y1="-5.08" x2="53.34" y2="20.32" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DIO14_I2C-SCL"/>
-<wire x1="53.34" y1="20.32" x2="73.66" y2="20.32" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$12" class="0">
-<segment>
-<pinref part="U$5" gate="G$1" pin="A"/>
-<wire x1="38.1" y1="-10.16" x2="55.88" y2="-10.16" width="0.1524" layer="91"/>
-<wire x1="55.88" y1="-10.16" x2="55.88" y2="15.24" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DIO15_I2C-SDA"/>
-<wire x1="55.88" y1="15.24" x2="73.66" y2="15.24" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$13" class="0">
-<segment>
-<pinref part="U$2" gate="G$1" pin="SIG"/>
-<wire x1="139.7" y1="93.98" x2="119.38" y2="93.98" width="0.1524" layer="91"/>
-<wire x1="119.38" y1="93.98" x2="119.38" y2="81.28" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="AI0"/>
-<wire x1="119.38" y1="81.28" x2="114.3" y2="81.28" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$14" class="0">
-<segment>
-<pinref part="U$9" gate="G$1" pin="SIG"/>
-<wire x1="139.7" y1="73.66" x2="129.54" y2="73.66" width="0.1524" layer="91"/>
-<wire x1="129.54" y1="73.66" x2="129.54" y2="76.2" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="AI1"/>
-<wire x1="129.54" y1="76.2" x2="114.3" y2="76.2" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$15" class="0">
-<segment>
-<wire x1="127" y1="53.34" x2="127" y2="71.12" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="AI2"/>
-<wire x1="127" y1="71.12" x2="114.3" y2="71.12" width="0.1524" layer="91"/>
-<pinref part="U$10" gate="G$1" pin="SIG"/>
-<wire x1="139.7" y1="53.34" x2="127" y2="53.34" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$16" class="0">
-<segment>
-<pinref part="U$11" gate="G$1" pin="SIG"/>
-<wire x1="139.7" y1="33.02" x2="127" y2="33.02" width="0.1524" layer="91"/>
-<wire x1="127" y1="33.02" x2="127" y2="48.26" width="0.1524" layer="91"/>
-<wire x1="127" y1="48.26" x2="124.46" y2="48.26" width="0.1524" layer="91"/>
-<wire x1="124.46" y1="48.26" x2="124.46" y2="66.04" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="AI3"/>
-<wire x1="124.46" y1="66.04" x2="114.3" y2="66.04" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="AGND" class="0">
-<segment>
-<pinref part="U$2" gate="G$1" pin="GND"/>
-<wire x1="139.7" y1="104.14" x2="139.7" y2="106.68" width="0.1524" layer="91"/>
-<label x="132.08" y="106.68" size="1.778" layer="95"/>
-<pinref part="C11" gate="G$1" pin="1"/>
-<wire x1="139.7" y1="106.68" x2="134.62" y2="106.68" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="U$9" gate="G$1" pin="GND"/>
-<wire x1="139.7" y1="83.82" x2="139.7" y2="86.36" width="0.1524" layer="91"/>
-<label x="132.08" y="86.36" size="1.778" layer="95"/>
-<pinref part="C12" gate="G$1" pin="1"/>
-<wire x1="139.7" y1="86.36" x2="134.62" y2="86.36" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="U$10" gate="G$1" pin="GND"/>
-<wire x1="139.7" y1="63.5" x2="139.7" y2="66.04" width="0.1524" layer="91"/>
-<label x="132.08" y="66.04" size="1.778" layer="95"/>
-<pinref part="C13" gate="G$1" pin="1"/>
-<wire x1="139.7" y1="66.04" x2="134.62" y2="66.04" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="U$11" gate="G$1" pin="GND"/>
-<wire x1="139.7" y1="43.18" x2="139.7" y2="45.72" width="0.1524" layer="91"/>
-<label x="132.08" y="45.72" size="1.778" layer="95"/>
-<pinref part="C14" gate="G$1" pin="1"/>
-<wire x1="139.7" y1="45.72" x2="134.62" y2="45.72" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="U$1" gate="G$1" pin="AGND"/>
-<wire x1="114.3" y1="60.96" x2="116.84" y2="60.96" width="0.1524" layer="91"/>
-<label x="116.84" y="60.96" size="1.778" layer="95"/>
-</segment>
-</net>
-<net name="N$17" class="0">
-<segment>
-<pinref part="U$1" gate="G$1" pin="DIO7_SPI-MOSI"/>
-<wire x1="73.66" y1="55.88" x2="68.58" y2="55.88" width="0.1524" layer="91"/>
-<wire x1="68.58" y1="55.88" x2="68.58" y2="-10.16" width="0.1524" layer="91"/>
-<pinref part="U$12" gate="G$1" pin="SIG"/>
-<wire x1="68.58" y1="-10.16" x2="81.28" y2="-10.16" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$18" class="0">
-<segment>
-<wire x1="66.04" y1="60.96" x2="66.04" y2="-30.48" width="0.1524" layer="91"/>
-<pinref part="U$13" gate="G$1" pin="SIG"/>
-<wire x1="66.04" y1="-30.48" x2="81.28" y2="-30.48" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DIO6_SPI-MISO"/>
-<wire x1="66.04" y1="60.96" x2="73.66" y2="60.96" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$19" class="0">
-<segment>
-<wire x1="63.5" y1="66.04" x2="63.5" y2="-50.8" width="0.1524" layer="91"/>
-<pinref part="U$1" gate="G$1" pin="DIO5_SPI-CLK"/>
-<wire x1="73.66" y1="66.04" x2="63.5" y2="66.04" width="0.1524" layer="91"/>
-<pinref part="U$14" gate="G$1" pin="SIG"/>
-<wire x1="81.28" y1="-50.8" x2="63.5" y2="-50.8" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$20" class="0">
-<segment>
-<pinref part="U$1" gate="G$1" pin="DIO4_SPI-CS"/>
-<wire x1="73.66" y1="71.12" x2="60.96" y2="71.12" width="0.1524" layer="91"/>
-<wire x1="60.96" y1="71.12" x2="60.96" y2="-71.12" width="0.1524" layer="91"/>
-<pinref part="U$15" gate="G$1" pin="SIG"/>
-<wire x1="60.96" y1="-71.12" x2="81.28" y2="-71.12" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$23" class="0">
-<segment>
-<pinref part="D1" gate="G$1" pin="A"/>
-<pinref part="R1" gate="G$1" pin="2"/>
-<wire x1="127" y1="7.62" x2="127" y2="5.08" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$24" class="0">
-<segment>
-<pinref part="R1" gate="G$1" pin="1"/>
-<pinref part="U$1" gate="G$1" pin="3V3"/>
-<wire x1="127" y1="-5.08" x2="114.3" y2="-5.08" width="0.1524" layer="91"/>
-<wire x1="114.3" y1="-5.08" x2="114.3" y2="10.16" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$25" class="0">
-<segment>
-<pinref part="D2" gate="G$1" pin="A"/>
-<pinref part="R2" gate="G$1" pin="2"/>
-<wire x1="142.24" y1="7.62" x2="142.24" y2="5.08" width="0.1524" layer="91"/>
-</segment>
-</net>
-</nets>
-</sheet>
-</sheets>
-</schematic>
-</drawing>
-</eagle>
diff --git a/roborio_expansion_boards/pwm_adapter.brd b/roborio_expansion_boards/pwm_adapter.brd
deleted file mode 100644
index 2e5323f..0000000
--- a/roborio_expansion_boards/pwm_adapter.brd
+++ /dev/null
@@ -1,696 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE eagle SYSTEM "eagle.dtd">
-<eagle version="6.5.0">
-<drawing>
-<settings>
-<setting alwaysvectorfont="no"/>
-<setting verticaltext="up"/>
-</settings>
-<grid distance="0.0125" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.001" altunitdist="inch" altunit="inch"/>
-<layers>
-<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
-<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
-<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
-<layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/>
-<layer number="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="28" name="bValues" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="29" name="tStop" color="7" fill="3" visible="yes" active="yes"/>
-<layer number="30" name="bStop" color="7" fill="6" visible="yes" active="yes"/>
-<layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/>
-<layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/>
-<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/>
-<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/>
-<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="yes"/>
-<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/>
-<layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/>
-<layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/>
-<layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/>
-<layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/>
-<layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
-<layer number="45" name="Holes" color="7" fill="1" visible="no" active="yes"/>
-<layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/>
-<layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/>
-<layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
-<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
-<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
-<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
-<layer number="91" name="Nets" color="2" fill="1" visible="no" active="no"/>
-<layer number="92" name="Busses" color="1" fill="1" visible="no" active="no"/>
-<layer number="93" name="Pins" color="2" fill="1" visible="no" active="no"/>
-<layer number="94" name="Symbols" color="4" fill="1" visible="no" active="no"/>
-<layer number="95" name="Names" color="7" fill="1" visible="no" active="no"/>
-<layer number="96" name="Values" color="7" fill="1" visible="no" active="no"/>
-<layer number="97" name="Info" color="7" fill="1" visible="no" active="no"/>
-<layer number="98" name="Guide" color="6" fill="1" visible="no" active="no"/>
-<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
-<layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
-<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
-<layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
-<layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
-<layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
-<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
-<layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
-<layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
-<layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
-<layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
-<layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
-<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
-<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
-<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
-<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
-<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
-<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
-<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
-<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
-<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
-<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
-<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
-</layers>
-<board>
-<plain>
-<wire x1="0" y1="0" x2="16.815" y2="0" width="0" layer="20"/>
-<wire x1="16.815" y1="0" x2="16.815" y2="76.19" width="0" layer="20"/>
-<wire x1="16.815" y1="76.19" x2="0" y2="76.19" width="0" layer="20"/>
-<wire x1="0" y1="76.19" x2="0" y2="0" width="0" layer="20"/>
-<text x="1.905" y="74.295" size="1.016" layer="21">-  + S</text>
-<text x="9.398" y="69.85" size="0.8128" layer="21" rot="R90">-  +  S</text>
-<text x="1.905" y="5.715" size="1.016" layer="21">-  + S</text>
-<text x="9.398" y="62.23" size="0.8128" layer="21" rot="R90">-  +  S</text>
-<text x="9.398" y="54.61" size="0.8128" layer="21" rot="R90">-  +  S</text>
-<text x="9.398" y="46.99" size="0.8128" layer="21" rot="R90">-  +  S</text>
-<text x="9.398" y="39.37" size="0.8128" layer="21" rot="R90">-  +  S</text>
-<text x="9.398" y="31.75" size="0.8128" layer="21" rot="R90">-  +  S</text>
-<text x="9.398" y="24.13" size="0.8128" layer="21" rot="R90">-  +  S</text>
-<text x="9.398" y="16.51" size="0.8128" layer="21" rot="R90">-  +  S</text>
-<text x="9.398" y="8.89" size="0.8128" layer="21" rot="R90">-  +  S</text>
-<text x="9.398" y="1.27" size="0.8128" layer="21" rot="R90">-  +  S</text>
-<wire x1="16.51" y1="68.58" x2="0.3175" y2="68.58" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="60.96" x2="0.3175" y2="60.96" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="53.34" x2="0.3175" y2="53.34" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="45.72" x2="0.3175" y2="45.72" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="38.1" x2="0.3175" y2="38.1" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="30.48" x2="0.3175" y2="30.48" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="22.86" x2="0.3175" y2="22.86" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="15.24" x2="0.3175" y2="15.24" width="0.4064" layer="21"/>
-<wire x1="16.51" y1="7.62" x2="0.3175" y2="7.62" width="0.4064" layer="21"/>
-<text x="1.905" y="13.0175" size="0.6096" layer="1" font="vector" rot="R90">FRC Team 971 PWM Connector Adapter
-20140818</text>
-<text x="1.905" y="51.435" size="0.6096" layer="1" font="vector" rot="R90">FRC Team 971 PWM Connector Adapter
-20140818</text>
-<text x="0.9525" y="72.0725" size="0.6096" layer="21" font="vector" rot="R90">9</text>
-<text x="0.9525" y="64.4525" size="0.6096" layer="21" font="vector" rot="R90">8</text>
-<text x="0.9525" y="56.8325" size="0.6096" layer="21" font="vector" rot="R90">7</text>
-<text x="0.9525" y="49.2125" size="0.6096" layer="21" font="vector" rot="R90">6</text>
-<text x="0.9525" y="41.5925" size="0.6096" layer="21" font="vector" rot="R90">5</text>
-<text x="0.9525" y="33.9725" size="0.6096" layer="21" font="vector" rot="R90">4</text>
-<text x="0.9525" y="26.3525" size="0.6096" layer="21" font="vector" rot="R90">3</text>
-<text x="0.9525" y="18.7325" size="0.6096" layer="21" font="vector" rot="R90">2</text>
-<text x="0.9525" y="11.1125" size="0.6096" layer="21" font="vector" rot="R90">1</text>
-<text x="0.9525" y="3.4925" size="0.6096" layer="21" font="vector" rot="R90">0</text>
-<text x="16.51" y="72.0725" size="0.6096" layer="21" font="vector" rot="R90">9</text>
-<text x="16.51" y="64.4525" size="0.6096" layer="21" font="vector" rot="R90">8</text>
-<text x="16.51" y="56.8325" size="0.6096" layer="21" font="vector" rot="R90">7</text>
-<text x="16.51" y="49.2125" size="0.6096" layer="21" font="vector" rot="R90">6</text>
-<text x="16.51" y="41.5925" size="0.6096" layer="21" font="vector" rot="R90">5</text>
-<text x="16.51" y="33.9725" size="0.6096" layer="21" font="vector" rot="R90">4</text>
-<text x="16.51" y="26.3525" size="0.6096" layer="21" font="vector" rot="R90">3</text>
-<text x="16.51" y="18.7325" size="0.6096" layer="21" font="vector" rot="R90">2</text>
-<text x="16.51" y="11.1125" size="0.6096" layer="21" font="vector" rot="R90">1</text>
-<text x="16.51" y="3.4925" size="0.6096" layer="21" font="vector" rot="R90">0</text>
-</plain>
-<libraries>
-<library name="custom">
-<packages>
-<package name="PWM_1X3">
-<description>Generic 1x3 0.1" pitch connector.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-1.27" y1="3.81" x2="1.27" y2="3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="3.81" x2="1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="-3.81" x2="-1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="-1.27" y1="-3.81" x2="-1.27" y2="3.81" width="0.127" layer="21"/>
-<rectangle x1="-1.27" y1="-3.81" x2="1.27" y2="3.81" layer="39"/>
-</package>
-<package name="22-23-2031">
-<description>3-pin Molex locking connector (male) 22-23-2031.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-3.1242" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="-3.7338" x2="-3.1242" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="-3.1242" y1="-3.7338" x2="-3.1242" y2="3.7338" width="0.127" layer="21"/>
-<rectangle x1="-3.1242" y1="-3.7338" x2="3.0988" y2="3.7338" layer="39"/>
-<wire x1="3.0988" y1="3.7338" x2="3.0988" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="-3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-</package>
-<package name="0603">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-</packages>
-</library>
-</libraries>
-<attributes>
-</attributes>
-<variantdefs>
-</variantdefs>
-<classes>
-<class number="0" name="default" width="0" drill="0">
-</class>
-</classes>
-<designrules name="SeeedStudio_2layer_DRU_no_angle_20140221 *">
-<description language="de">&lt;b&gt;EAGLE Design Rules&lt;/b&gt;
-&lt;p&gt;
-Die Standard-Design-Rules sind so gewählt, dass sie für 
-die meisten Anwendungen passen. Sollte ihre Platine 
-besondere Anforderungen haben, treffen Sie die erforderlichen
-Einstellungen hier und speichern die Design Rules unter 
-einem neuen Namen ab.</description>
-<description language="en">&lt;b&gt;EAGLE Design Rules&lt;/b&gt;
-&lt;p&gt;
-The default Design Rules have been set to cover
-a wide range of applications. Your particular design
-may have different requirements, so please make the
-necessary adjustments and save your customized
-design rules under a new name.</description>
-<description language="zh">&lt;b&gt;Seeed Studio EAGLE Design Rules&lt;/b&gt;
-</description>
-<param name="layerSetup" value="(1*16)"/>
-<param name="mtCopper" value="0.035mm 0.0175mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.0175mm 0.035mm"/>
-<param name="mtIsolate" value="1.5mm 1.1mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm"/>
-<param name="mdWireWire" value="6mil"/>
-<param name="mdWirePad" value="6mil"/>
-<param name="mdWireVia" value="6mil"/>
-<param name="mdPadPad" value="6mil"/>
-<param name="mdPadVia" value="6mil"/>
-<param name="mdViaVia" value="6mil"/>
-<param name="mdSmdPad" value="0mil"/>
-<param name="mdSmdVia" value="0mil"/>
-<param name="mdSmdSmd" value="0mil"/>
-<param name="mdViaViaSameLayer" value="8mil"/>
-<param name="mnLayersViaInSmd" value="2"/>
-<param name="mdCopperDimension" value="10mil"/>
-<param name="mdDrill" value="10mil"/>
-<param name="mdSmdStop" value="0mil"/>
-<param name="msWidth" value="6mil"/>
-<param name="msDrill" value="12mil"/>
-<param name="msMicroVia" value="12mil"/>
-<param name="msBlindViaRatio" value="0.5"/>
-<param name="rvPadTop" value="0.25"/>
-<param name="rvPadInner" value="0.25"/>
-<param name="rvPadBottom" value="0.25"/>
-<param name="rvViaOuter" value="0.25"/>
-<param name="rvViaInner" value="0.25"/>
-<param name="rvMicroViaOuter" value="0.25"/>
-<param name="rvMicroViaInner" value="0.25"/>
-<param name="rlMinPadTop" value="10mil"/>
-<param name="rlMaxPadTop" value="20mil"/>
-<param name="rlMinPadInner" value="10mil"/>
-<param name="rlMaxPadInner" value="20mil"/>
-<param name="rlMinPadBottom" value="10mil"/>
-<param name="rlMaxPadBottom" value="20mil"/>
-<param name="rlMinViaOuter" value="6mil"/>
-<param name="rlMaxViaOuter" value="20mil"/>
-<param name="rlMinViaInner" value="6mil"/>
-<param name="rlMaxViaInner" value="20mil"/>
-<param name="rlMinMicroViaOuter" value="4mil"/>
-<param name="rlMaxMicroViaOuter" value="20mil"/>
-<param name="rlMinMicroViaInner" value="4mil"/>
-<param name="rlMaxMicroViaInner" value="20mil"/>
-<param name="psTop" value="-1"/>
-<param name="psBottom" value="-1"/>
-<param name="psFirst" value="0"/>
-<param name="psElongationLong" value="100"/>
-<param name="psElongationOffset" value="100"/>
-<param name="mvStopFrame" value="1"/>
-<param name="mvCreamFrame" value="0"/>
-<param name="mlMinStopFrame" value="2mil"/>
-<param name="mlMaxStopFrame" value="2mil"/>
-<param name="mlMinCreamFrame" value="0mil"/>
-<param name="mlMaxCreamFrame" value="0mil"/>
-<param name="mlViaStopLimit" value="100mil"/>
-<param name="srRoundness" value="0"/>
-<param name="srMinRoundness" value="0mil"/>
-<param name="srMaxRoundness" value="0mil"/>
-<param name="slThermalIsolate" value="10mil"/>
-<param name="slThermalsForVias" value="0"/>
-<param name="dpMaxLengthDifference" value="10mm"/>
-<param name="dpGapFactor" value="2.5"/>
-<param name="checkGrid" value="0"/>
-<param name="checkAngle" value="1"/>
-<param name="checkFont" value="1"/>
-<param name="checkRestrict" value="1"/>
-<param name="useDiameter" value="13"/>
-<param name="maxErrors" value="50"/>
-</designrules>
-<autorouter>
-<pass name="Default">
-<param name="RoutingGrid" value="50mil"/>
-<param name="tpViaShape" value="round"/>
-<param name="PrefDir.1" value="|"/>
-<param name="PrefDir.2" value="0"/>
-<param name="PrefDir.3" value="0"/>
-<param name="PrefDir.4" value="0"/>
-<param name="PrefDir.5" value="0"/>
-<param name="PrefDir.6" value="0"/>
-<param name="PrefDir.7" value="0"/>
-<param name="PrefDir.8" value="0"/>
-<param name="PrefDir.9" value="0"/>
-<param name="PrefDir.10" value="0"/>
-<param name="PrefDir.11" value="0"/>
-<param name="PrefDir.12" value="0"/>
-<param name="PrefDir.13" value="0"/>
-<param name="PrefDir.14" value="0"/>
-<param name="PrefDir.15" value="0"/>
-<param name="PrefDir.16" value="-"/>
-<param name="cfVia" value="8"/>
-<param name="cfNonPref" value="5"/>
-<param name="cfChangeDir" value="2"/>
-<param name="cfOrthStep" value="2"/>
-<param name="cfDiagStep" value="3"/>
-<param name="cfExtdStep" value="0"/>
-<param name="cfBonusStep" value="1"/>
-<param name="cfMalusStep" value="1"/>
-<param name="cfPadImpact" value="4"/>
-<param name="cfSmdImpact" value="4"/>
-<param name="cfBusImpact" value="0"/>
-<param name="cfHugging" value="3"/>
-<param name="cfAvoid" value="4"/>
-<param name="cfPolygon" value="10"/>
-<param name="cfBase.1" value="0"/>
-<param name="cfBase.2" value="1"/>
-<param name="cfBase.3" value="1"/>
-<param name="cfBase.4" value="1"/>
-<param name="cfBase.5" value="1"/>
-<param name="cfBase.6" value="1"/>
-<param name="cfBase.7" value="1"/>
-<param name="cfBase.8" value="1"/>
-<param name="cfBase.9" value="1"/>
-<param name="cfBase.10" value="1"/>
-<param name="cfBase.11" value="1"/>
-<param name="cfBase.12" value="1"/>
-<param name="cfBase.13" value="1"/>
-<param name="cfBase.14" value="1"/>
-<param name="cfBase.15" value="1"/>
-<param name="cfBase.16" value="0"/>
-<param name="mnVias" value="20"/>
-<param name="mnSegments" value="9999"/>
-<param name="mnExtdSteps" value="9999"/>
-<param name="mnRipupLevel" value="10"/>
-<param name="mnRipupSteps" value="100"/>
-<param name="mnRipupTotal" value="100"/>
-</pass>
-<pass name="Follow-me" refer="Default" active="yes">
-</pass>
-<pass name="Busses" refer="Default" active="yes">
-<param name="cfNonPref" value="4"/>
-<param name="cfBusImpact" value="4"/>
-<param name="cfHugging" value="0"/>
-<param name="mnVias" value="0"/>
-</pass>
-<pass name="Route" refer="Default" active="yes">
-</pass>
-<pass name="Optimize1" refer="Default" active="yes">
-<param name="cfVia" value="99"/>
-<param name="cfExtdStep" value="10"/>
-<param name="cfHugging" value="1"/>
-<param name="mnExtdSteps" value="1"/>
-<param name="mnRipupLevel" value="0"/>
-</pass>
-<pass name="Optimize2" refer="Optimize1" active="yes">
-<param name="cfNonPref" value="0"/>
-<param name="cfChangeDir" value="6"/>
-<param name="cfExtdStep" value="0"/>
-<param name="cfBonusStep" value="2"/>
-<param name="cfMalusStep" value="2"/>
-<param name="cfPadImpact" value="2"/>
-<param name="cfSmdImpact" value="2"/>
-<param name="cfHugging" value="0"/>
-</pass>
-<pass name="Optimize3" refer="Optimize2" active="yes">
-<param name="cfChangeDir" value="8"/>
-<param name="cfPadImpact" value="0"/>
-<param name="cfSmdImpact" value="0"/>
-</pass>
-<pass name="Optimize4" refer="Optimize3" active="yes">
-<param name="cfChangeDir" value="25"/>
-</pass>
-</autorouter>
-<elements>
-<element name="U$1" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="3.81" rot="MR270"/>
-<element name="U$2" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="11.43" rot="MR270"/>
-<element name="U$3" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="19.05" rot="MR270"/>
-<element name="U$4" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="26.67" rot="MR270"/>
-<element name="U$5" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="34.29" rot="MR270"/>
-<element name="U$6" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="41.91" rot="MR270"/>
-<element name="U$7" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="49.53" rot="MR270"/>
-<element name="U$8" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="57.15" rot="MR270"/>
-<element name="U$9" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="64.77" rot="MR270"/>
-<element name="U$10" library="custom" package="PWM_1X3" value="22-23-2031GENERIC" x="5.08" y="72.39" rot="MR270"/>
-<element name="U$11" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="3.81"/>
-<element name="U$12" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="11.43"/>
-<element name="U$13" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="19.05"/>
-<element name="U$14" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="26.67"/>
-<element name="U$15" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="34.29"/>
-<element name="U$16" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="41.91"/>
-<element name="U$17" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="49.53"/>
-<element name="U$18" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="57.15"/>
-<element name="U$19" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="64.77"/>
-<element name="U$20" library="custom" package="22-23-2031" value="22-23-2031" x="12.7" y="72.39"/>
-<element name="C1" library="custom" package="0603" value="0.1 uF" x="3.81" y="70.1675"/>
-<element name="C2" library="custom" package="0603" value="0.1 uF" x="3.81" y="62.5475"/>
-<element name="C3" library="custom" package="0603" value="0.1 uF" x="3.81" y="54.9275"/>
-<element name="C4" library="custom" package="0603" value="0.1 uF" x="3.81" y="47.3075"/>
-<element name="C5" library="custom" package="0603" value="0.1 uF" x="3.81" y="39.6875"/>
-<element name="C6" library="custom" package="0603" value="0.1 uF" x="3.81" y="32.0675"/>
-<element name="C7" library="custom" package="0603" value="0.1 uF" x="3.81" y="24.4475"/>
-<element name="C8" library="custom" package="0603" value="0.1 uF" x="3.81" y="16.8275"/>
-<element name="C9" library="custom" package="0603" value="0.1 uF" x="3.81" y="9.2075"/>
-<element name="C10" library="custom" package="0603" value="0.1 uF" x="3.81" y="1.5875"/>
-</elements>
-<signals>
-<signal name="N$2">
-<contactref element="U$10" pad="2"/>
-<contactref element="U$20" pad="2"/>
-<wire x1="5.08" y1="72.39" x2="5.08" y2="73.9775" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="73.9775" x2="10.16" y2="73.9775" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="73.9775" x2="10.16" y2="72.39" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="72.39" x2="12.7" y2="72.39" width="0.4064" layer="1"/>
-<contactref element="C1" pad="2"/>
-<wire x1="5.08" y1="72.39" x2="5.08" y2="70.1675" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="70.1675" x2="4.66" y2="70.1675" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$3">
-<contactref element="U$10" pad="3"/>
-<contactref element="U$20" pad="3"/>
-<wire x1="7.62" y1="72.39" x2="7.62" y2="69.85" width="0.4064" layer="1"/>
-<wire x1="7.62" y1="69.85" x2="12.7" y2="69.85" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$5">
-<contactref element="U$9" pad="2"/>
-<contactref element="U$19" pad="2"/>
-<wire x1="5.08" y1="64.77" x2="5.08" y2="66.3575" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="66.3575" x2="10.16" y2="66.3575" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="66.3575" x2="10.16" y2="64.77" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="64.77" x2="12.7" y2="64.77" width="0.4064" layer="1"/>
-<contactref element="C2" pad="2"/>
-<wire x1="5.08" y1="64.77" x2="5.08" y2="62.5475" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="62.5475" x2="4.66" y2="62.5475" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$6">
-<contactref element="U$9" pad="3"/>
-<contactref element="U$19" pad="3"/>
-<wire x1="7.62" y1="64.77" x2="7.62" y2="62.23" width="0.4064" layer="1"/>
-<wire x1="7.62" y1="62.23" x2="12.7" y2="62.23" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$8">
-<contactref element="U$8" pad="2"/>
-<contactref element="U$18" pad="2"/>
-<wire x1="5.08" y1="57.15" x2="5.08" y2="58.7375" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="58.7375" x2="10.16" y2="58.7375" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="58.7375" x2="10.16" y2="57.15" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="57.15" x2="12.7" y2="57.15" width="0.4064" layer="1"/>
-<contactref element="C3" pad="2"/>
-<wire x1="5.08" y1="57.15" x2="5.08" y2="54.9275" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="54.9275" x2="4.66" y2="54.9275" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$9">
-<contactref element="U$8" pad="3"/>
-<contactref element="U$18" pad="3"/>
-<wire x1="7.62" y1="57.15" x2="7.62" y2="54.61" width="0.4064" layer="1"/>
-<wire x1="7.62" y1="54.61" x2="12.7" y2="54.61" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$11">
-<contactref element="U$7" pad="2"/>
-<contactref element="U$17" pad="2"/>
-<wire x1="5.08" y1="49.53" x2="5.08" y2="51.1175" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="51.1175" x2="10.16" y2="51.1175" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="51.1175" x2="10.16" y2="49.53" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="49.53" x2="12.7" y2="49.53" width="0.4064" layer="1"/>
-<contactref element="C4" pad="2"/>
-<wire x1="5.08" y1="49.53" x2="5.08" y2="47.3075" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="47.3075" x2="4.66" y2="47.3075" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$12">
-<contactref element="U$7" pad="3"/>
-<contactref element="U$17" pad="3"/>
-<wire x1="7.62" y1="49.53" x2="7.62" y2="46.99" width="0.4064" layer="1"/>
-<wire x1="7.62" y1="46.99" x2="12.7" y2="46.99" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$14">
-<contactref element="U$6" pad="2"/>
-<contactref element="U$16" pad="2"/>
-<wire x1="5.08" y1="41.91" x2="5.08" y2="43.4975" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="43.4975" x2="10.16" y2="43.4975" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="43.4975" x2="10.16" y2="41.91" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="41.91" x2="12.7" y2="41.91" width="0.4064" layer="1"/>
-<contactref element="C5" pad="2"/>
-<wire x1="5.08" y1="41.91" x2="5.08" y2="39.6875" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="39.6875" x2="4.66" y2="39.6875" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$15">
-<contactref element="U$6" pad="3"/>
-<contactref element="U$16" pad="3"/>
-<wire x1="7.62" y1="41.91" x2="7.62" y2="39.37" width="0.4064" layer="1"/>
-<wire x1="7.62" y1="39.37" x2="12.7" y2="39.37" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$17">
-<contactref element="U$5" pad="2"/>
-<contactref element="U$15" pad="2"/>
-<wire x1="5.08" y1="34.29" x2="5.08" y2="35.8775" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="35.8775" x2="10.16" y2="35.8775" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="35.8775" x2="10.16" y2="34.29" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="34.29" x2="12.7" y2="34.29" width="0.4064" layer="1"/>
-<contactref element="C6" pad="2"/>
-<wire x1="5.08" y1="34.29" x2="5.08" y2="32.0675" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="32.0675" x2="4.66" y2="32.0675" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$18">
-<contactref element="U$5" pad="3"/>
-<contactref element="U$15" pad="3"/>
-<wire x1="7.62" y1="34.29" x2="7.62" y2="31.75" width="0.4064" layer="1"/>
-<wire x1="7.62" y1="31.75" x2="12.7" y2="31.75" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$20">
-<contactref element="U$4" pad="2"/>
-<contactref element="U$14" pad="2"/>
-<wire x1="5.08" y1="26.67" x2="5.08" y2="28.2575" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="28.2575" x2="10.16" y2="28.2575" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="28.2575" x2="10.16" y2="26.67" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="26.67" x2="12.7" y2="26.67" width="0.4064" layer="1"/>
-<contactref element="C7" pad="2"/>
-<wire x1="5.08" y1="26.67" x2="5.08" y2="24.4475" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="24.4475" x2="4.66" y2="24.4475" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$21">
-<contactref element="U$4" pad="3"/>
-<contactref element="U$14" pad="3"/>
-<wire x1="7.62" y1="26.67" x2="7.62" y2="24.13" width="0.4064" layer="1"/>
-<wire x1="7.62" y1="24.13" x2="12.7" y2="24.13" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$23">
-<contactref element="U$3" pad="2"/>
-<contactref element="U$13" pad="2"/>
-<wire x1="5.08" y1="19.05" x2="5.08" y2="20.6375" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="20.6375" x2="10.16" y2="20.6375" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="20.6375" x2="10.16" y2="19.05" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="19.05" x2="12.7" y2="19.05" width="0.4064" layer="1"/>
-<contactref element="C8" pad="2"/>
-<wire x1="5.08" y1="19.05" x2="5.08" y2="16.8275" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="16.8275" x2="4.66" y2="16.8275" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$24">
-<contactref element="U$3" pad="3"/>
-<contactref element="U$13" pad="3"/>
-<wire x1="7.62" y1="19.05" x2="7.62" y2="16.51" width="0.4064" layer="1"/>
-<wire x1="7.62" y1="16.51" x2="12.7" y2="16.51" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$26">
-<contactref element="U$2" pad="2"/>
-<contactref element="U$12" pad="2"/>
-<wire x1="5.08" y1="11.43" x2="5.08" y2="13.0175" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="13.0175" x2="10.16" y2="13.0175" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="13.0175" x2="10.16" y2="11.43" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="11.43" x2="12.7" y2="11.43" width="0.4064" layer="1"/>
-<contactref element="C9" pad="2"/>
-<wire x1="5.08" y1="11.43" x2="5.08" y2="9.2075" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="9.2075" x2="4.66" y2="9.2075" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$27">
-<contactref element="U$2" pad="3"/>
-<contactref element="U$12" pad="3"/>
-<wire x1="7.62" y1="11.43" x2="7.62" y2="8.89" width="0.4064" layer="1"/>
-<wire x1="7.62" y1="8.89" x2="12.7" y2="8.89" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$29">
-<contactref element="U$1" pad="2"/>
-<contactref element="U$11" pad="2"/>
-<wire x1="5.08" y1="3.81" x2="5.08" y2="5.3975" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="5.3975" x2="10.16" y2="5.3975" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="5.3975" x2="10.16" y2="3.81" width="0.4064" layer="1"/>
-<wire x1="10.16" y1="3.81" x2="12.7" y2="3.81" width="0.4064" layer="1"/>
-<contactref element="C10" pad="2"/>
-<wire x1="5.08" y1="3.81" x2="5.08" y2="1.5875" width="0.4064" layer="1"/>
-<wire x1="5.08" y1="1.5875" x2="4.66" y2="1.5875" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$30">
-<contactref element="U$1" pad="3"/>
-<contactref element="U$11" pad="3"/>
-<wire x1="7.62" y1="3.81" x2="7.62" y2="1.27" width="0.4064" layer="1"/>
-<wire x1="7.62" y1="1.27" x2="12.7" y2="1.27" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$1">
-<contactref element="U$10" pad="1"/>
-<contactref element="C1" pad="1"/>
-<contactref element="U$20" pad="1"/>
-<wire x1="2.54" y1="72.39" x2="2.54" y2="74.93" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="74.93" x2="12.7" y2="74.93" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="72.39" x2="2.54" y2="70.1675" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="70.1675" x2="2.96" y2="70.1675" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$4">
-<contactref element="U$1" pad="1"/>
-<contactref element="C10" pad="1"/>
-<contactref element="U$11" pad="1"/>
-<wire x1="12.7" y1="6.35" x2="2.54" y2="6.35" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="6.35" x2="2.54" y2="3.81" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="3.81" x2="2.54" y2="1.5875" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="1.5875" x2="2.96" y2="1.5875" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$7">
-<contactref element="U$2" pad="1"/>
-<contactref element="C9" pad="1"/>
-<contactref element="U$12" pad="1"/>
-<wire x1="12.7" y1="13.97" x2="2.54" y2="13.97" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="13.97" x2="2.54" y2="11.43" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="11.43" x2="2.54" y2="9.2075" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="9.2075" x2="2.96" y2="9.2075" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$10">
-<contactref element="U$3" pad="1"/>
-<contactref element="C8" pad="1"/>
-<contactref element="U$13" pad="1"/>
-<wire x1="12.7" y1="21.59" x2="2.54" y2="21.59" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="21.59" x2="2.54" y2="19.05" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="19.05" x2="2.54" y2="16.8275" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="16.8275" x2="2.96" y2="16.8275" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$13">
-<contactref element="U$4" pad="1"/>
-<contactref element="C7" pad="1"/>
-<contactref element="U$14" pad="1"/>
-<wire x1="12.7" y1="29.21" x2="2.54" y2="29.21" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="29.21" x2="2.54" y2="26.67" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="26.67" x2="2.54" y2="24.4475" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="24.4475" x2="2.96" y2="24.4475" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$16">
-<contactref element="U$5" pad="1"/>
-<contactref element="C6" pad="1"/>
-<contactref element="U$15" pad="1"/>
-<wire x1="12.7" y1="36.83" x2="2.54" y2="36.83" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="36.83" x2="2.54" y2="34.29" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="34.29" x2="2.54" y2="32.0675" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="32.0675" x2="2.96" y2="32.0675" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$19">
-<contactref element="U$6" pad="1"/>
-<contactref element="C5" pad="1"/>
-<contactref element="U$16" pad="1"/>
-<wire x1="12.7" y1="44.45" x2="2.54" y2="44.45" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="44.45" x2="2.54" y2="41.91" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="41.91" x2="2.54" y2="39.6875" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="39.6875" x2="2.96" y2="39.6875" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$22">
-<contactref element="U$7" pad="1"/>
-<contactref element="C4" pad="1"/>
-<contactref element="U$17" pad="1"/>
-<wire x1="12.7" y1="52.07" x2="2.54" y2="52.07" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="52.07" x2="2.54" y2="49.53" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="49.53" x2="2.54" y2="47.3075" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="47.3075" x2="2.96" y2="47.3075" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$25">
-<contactref element="U$8" pad="1"/>
-<contactref element="C3" pad="1"/>
-<contactref element="U$18" pad="1"/>
-<wire x1="12.7" y1="59.69" x2="2.54" y2="59.69" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="59.69" x2="2.54" y2="57.15" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="57.15" x2="2.54" y2="54.9275" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="54.9275" x2="2.96" y2="54.9275" width="0.4064" layer="1"/>
-</signal>
-<signal name="N$28">
-<contactref element="U$9" pad="1"/>
-<contactref element="C2" pad="1"/>
-<contactref element="U$19" pad="1"/>
-<wire x1="12.7" y1="67.31" x2="2.54" y2="67.31" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="67.31" x2="2.54" y2="64.77" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="64.77" x2="2.54" y2="62.5475" width="0.4064" layer="1"/>
-<wire x1="2.54" y1="62.5475" x2="2.96" y2="62.5475" width="0.4064" layer="1"/>
-</signal>
-</signals>
-<errors>
-<approved hash="3,1,6fdb95d1a4565e5c"/>
-<approved hash="3,1,4b6d71664bea71e1"/>
-</errors>
-</board>
-</drawing>
-<compatibility>
-<note version="6.3" minversion="6.2.2" severity="warning">
-Since Version 6.2.2 text objects can contain more than one line,
-which will not be processed correctly with this version.
-</note>
-</compatibility>
-</eagle>
diff --git a/roborio_expansion_boards/pwm_adapter.sch b/roborio_expansion_boards/pwm_adapter.sch
deleted file mode 100644
index 0eeeb5a..0000000
--- a/roborio_expansion_boards/pwm_adapter.sch
+++ /dev/null
@@ -1,938 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE eagle SYSTEM "eagle.dtd">
-<eagle version="6.5.0">
-<drawing>
-<settings>
-<setting alwaysvectorfont="no"/>
-<setting verticaltext="up"/>
-</settings>
-<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
-<layers>
-<layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
-<layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
-<layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
-<layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
-<layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
-<layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
-<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
-<layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
-<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
-<layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
-<layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
-<layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
-<layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
-<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
-<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
-<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
-<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
-<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
-<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
-<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
-<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
-<layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
-<layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
-<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
-<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
-<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
-<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
-<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
-<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
-<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
-<layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
-<layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
-<layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
-<layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
-<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
-<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
-<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
-<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
-<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
-<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
-<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
-<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
-<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
-<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
-<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
-<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
-<layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
-<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
-<layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
-<layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
-<layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
-<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
-<layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
-<layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
-<layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
-<layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
-<layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
-<layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
-<layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
-<layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
-<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
-<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
-<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
-<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
-<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
-<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
-<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
-<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
-<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
-<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
-<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
-<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
-</layers>
-<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
-<libraries>
-<library name="custom">
-<packages>
-<package name="22-23-2031">
-<description>3-pin Molex locking connector (male) 22-23-2031.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-3.1242" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="1.0668" y1="-3.7338" x2="-3.1242" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="-3.1242" y1="-3.7338" x2="-3.1242" y2="3.7338" width="0.127" layer="21"/>
-<rectangle x1="-3.1242" y1="-3.7338" x2="3.0988" y2="3.7338" layer="39"/>
-<wire x1="3.0988" y1="3.7338" x2="3.0988" y2="-3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="3.7338" x2="1.0668" y2="3.7338" width="0.127" layer="21"/>
-<wire x1="3.0988" y1="-3.7338" x2="1.0668" y2="-3.7338" width="0.127" layer="21"/>
-</package>
-<package name="PWM_1X3">
-<description>Generic 1x3 0.1" pitch connector.</description>
-<pad name="2" x="0" y="0" drill="1.016"/>
-<pad name="1" x="0" y="2.54" drill="1.016"/>
-<pad name="3" x="0" y="-2.54" drill="1.016"/>
-<wire x1="-1.27" y1="3.81" x2="1.27" y2="3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="3.81" x2="1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="1.27" y1="-3.81" x2="-1.27" y2="-3.81" width="0.127" layer="21"/>
-<wire x1="-1.27" y1="-3.81" x2="-1.27" y2="3.81" width="0.127" layer="21"/>
-<rectangle x1="-1.27" y1="-3.81" x2="1.27" y2="3.81" layer="39"/>
-</package>
-<package name="0603">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-<package name="CAP-PTH-SMALL">
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651"/>
-<text x="0.508" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="0.254" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="CAP-PTH-SMALL2">
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="1.27" x2="3.81" y2="1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="1.27" x2="3.81" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="-1.27" x2="-1.27" y2="1.27" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651"/>
-<text x="-1.27" y="1.905" size="0.6096" layer="25">&gt;Name</text>
-<text x="-1.27" y="-2.54" size="0.6096" layer="27">&gt;Value</text>
-</package>
-<package name="0805">
-<wire x1="-0.3" y1="0.6" x2="0.3" y2="0.6" width="0.1524" layer="21"/>
-<wire x1="-0.3" y1="-0.6" x2="0.3" y2="-0.6" width="0.1524" layer="21"/>
-<smd name="1" x="-0.9" y="0" dx="0.8" dy="1.2" layer="1"/>
-<smd name="2" x="0.9" y="0" dx="0.8" dy="1.2" layer="1"/>
-<text x="-0.762" y="0.8255" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.016" y="-1.397" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="CAP-PTH-LARGE">
-<wire x1="0" y1="0.635" x2="0" y2="0" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="0" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="-2.54" y2="0" width="0.2032" layer="21"/>
-<wire x1="0" y1="0" x2="2.54" y2="0" width="0.2032" layer="21"/>
-<pad name="1" x="-4.826" y="0" drill="0.9" diameter="1.905"/>
-<pad name="2" x="4.572" y="0" drill="0.9" diameter="1.905"/>
-<text x="-0.762" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="-1.016" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="GRM43D">
-<wire x1="2.25" y1="1.6" x2="1.1" y2="1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="1.6" x2="-1.1" y2="1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="1.6" x2="-2.25" y2="1.6" width="0.127" layer="51"/>
-<wire x1="-2.25" y1="1.6" x2="-2.25" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-2.25" y1="-1.6" x2="-1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="-1.6" x2="1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="-1.6" x2="2.25" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="2.25" y1="-1.6" x2="2.25" y2="1.6" width="0.127" layer="51"/>
-<wire x1="1.1" y1="1.6" x2="1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-1.1" y1="1.6" x2="-1.1" y2="-1.6" width="0.127" layer="51"/>
-<wire x1="-2.3" y1="1.8" x2="2.3" y2="1.8" width="0.127" layer="21"/>
-<wire x1="-2.3" y1="-1.8" x2="2.3" y2="-1.8" width="0.127" layer="21"/>
-<smd name="A" x="1.927" y="0" dx="3.2" dy="1.65" layer="1" rot="R90"/>
-<smd name="C" x="-1.927" y="0" dx="3.2" dy="1.65" layer="1" rot="R90"/>
-<text x="-2" y="2" size="0.4064" layer="25">&gt;NAME</text>
-<text x="0" y="-2" size="0.4064" layer="27" rot="R180">&gt;VALUE</text>
-<rectangle x1="-2.2" y1="-1.6" x2="-1.1" y2="1.6" layer="51"/>
-<rectangle x1="1.1" y1="-1.6" x2="2.2" y2="1.6" layer="51"/>
-</package>
-<package name="0603-CAP">
-<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
-<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
-<wire x1="0" y1="0.0305" x2="0" y2="-0.0305" width="0.5588" layer="21"/>
-<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
-<text x="-0.889" y="0.762" size="0.4064" layer="25" font="vector">&gt;NAME</text>
-<text x="-1.016" y="-1.143" size="0.4064" layer="27" font="vector">&gt;VALUE</text>
-<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
-<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-<package name="0402-CAP">
-<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;
-chip</description>
-<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
-<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
-<wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
-<wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
-<wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
-<wire x1="0" y1="0.0305" x2="0" y2="-0.0305" width="0.4064" layer="21"/>
-<smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
-<smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
-<text x="-0.889" y="0.6985" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.0795" y="-1.143" size="0.4064" layer="27">&gt;VALUE</text>
-<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
-<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
-</package>
-<package name="CAP-PTH-5MM">
-<wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.2032" layer="21"/>
-<pad name="1" x="-2.5" y="0" drill="0.7" diameter="1.651"/>
-<pad name="2" x="2.5" y="0" drill="0.7" diameter="1.651"/>
-<text x="-0.762" y="1.27" size="0.4064" layer="25">&gt;Name</text>
-<text x="-1.016" y="-1.524" size="0.4064" layer="27">&gt;Value</text>
-</package>
-<package name="AXIAL-5MM">
-<wire x1="-1.14" y1="0.762" x2="1.14" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0.762" x2="1.14" y2="0" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0" x2="1.14" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="-0.762" x2="-1.14" y2="-0.762" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="-0.762" x2="-1.14" y2="0" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="0" x2="-1.14" y2="0.762" width="0.2032" layer="21"/>
-<wire x1="1.14" y1="0" x2="1.394" y2="0" width="0.2032" layer="21"/>
-<wire x1="-1.14" y1="0" x2="-1.394" y2="0" width="0.2032" layer="21"/>
-<pad name="P$1" x="-2.5" y="0" drill="0.9" diameter="1.8796"/>
-<pad name="P$2" x="2.5" y="0" drill="0.9" diameter="1.8796"/>
-<text x="-2.54" y="1.17" size="0.4" layer="25">&gt;Name</text>
-<text x="-1.032" y="-0.208" size="0.4" layer="21" ratio="15">&gt;Value</text>
-</package>
-<package name="1210">
-<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.3" x2="1.6" y2="-1.3" width="0.127" layer="51"/>
-<wire x1="1.6" y1="-1.3" x2="-1.6" y2="-1.3" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="-1.3" x2="-1.6" y2="1.3" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.2032" layer="21"/>
-<wire x1="-1.6" y1="-1.3" x2="1.6" y2="-1.3" width="0.2032" layer="21"/>
-<smd name="1" x="-1.6" y="0" dx="1.2" dy="2" layer="1"/>
-<smd name="2" x="1.6" y="0" dx="1.2" dy="2" layer="1"/>
-<text x="-0.8" y="0.5" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-0.9" y="-0.7" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="1206">
-<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
-<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
-<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
-<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
-<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
-<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
-<text x="-1.27" y="1.143" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-1.397" y="-1.524" size="0.4064" layer="27">&gt;VALUE</text>
-<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
-<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
-<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
-</package>
-<package name="CTZ3">
-<description>CTZ3 Series land pattern for variable capacitor - CTZ3E-50C-W1-PF</description>
-<wire x1="-1.6" y1="1.4" x2="-1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="-2.25" x2="1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.4" x2="1.6" y2="-2.25" width="0.127" layer="51"/>
-<wire x1="-0.5" y1="0" x2="0.5" y2="0" width="0.127" layer="51"/>
-<wire x1="-1.6" y1="1.4" x2="-1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="1.6" y1="1.4" x2="1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="-1" y1="2.2" x2="1" y2="2.2" width="0.127" layer="51"/>
-<wire x1="0" y1="0.8" x2="0" y2="-0.8" width="0.127" layer="51"/>
-<wire x1="-0.8" y1="0" x2="0.8" y2="0" width="0.127" layer="51"/>
-<wire x1="-1.05" y1="2.25" x2="-1.7" y2="1.45" width="0.127" layer="21"/>
-<wire x1="-1.7" y1="1.45" x2="-1.7" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="-1.7" y1="-2.35" x2="-1.05" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="1.05" y1="2.25" x2="1.7" y2="1.4" width="0.127" layer="21"/>
-<wire x1="1.7" y1="1.4" x2="1.7" y2="-2.35" width="0.127" layer="21"/>
-<wire x1="1.7" y1="-2.35" x2="1.05" y2="-2.35" width="0.127" layer="21"/>
-<smd name="+" x="0" y="2.05" dx="1.5" dy="1.2" layer="1"/>
-<smd name="-" x="0" y="-2.05" dx="1.5" dy="1.2" layer="1"/>
-<text x="-2" y="3" size="0.4064" layer="25">&gt;NAME</text>
-<text x="-2" y="-3.4" size="0.4064" layer="27">&gt;VALUE</text>
-</package>
-<package name="CAP-PTH-SMALL-KIT">
-<description>&lt;h3&gt;CAP-PTH-SMALL-KIT&lt;/h3&gt;
-Commonly used for small ceramic capacitors. Like our 0.1uF (http://www.sparkfun.com/products/8375) or 22pF caps (http://www.sparkfun.com/products/8571).&lt;br&gt;
-&lt;br&gt;
-&lt;b&gt;Warning:&lt;/b&gt; This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.</description>
-<wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.254" layer="21"/>
-<wire x1="-2.667" y1="1.27" x2="2.667" y2="1.27" width="0.254" layer="21"/>
-<wire x1="2.667" y1="1.27" x2="2.667" y2="-1.27" width="0.254" layer="21"/>
-<wire x1="2.667" y1="-1.27" x2="-2.667" y2="-1.27" width="0.254" layer="21"/>
-<wire x1="-2.667" y1="-1.27" x2="-2.667" y2="1.27" width="0.254" layer="21"/>
-<pad name="1" x="-1.397" y="0" drill="1.016" diameter="2.032" stop="no"/>
-<pad name="2" x="1.397" y="0" drill="1.016" diameter="2.032" stop="no"/>
-<polygon width="0.127" layer="30">
-<vertex x="-1.4021" y="-0.9475" curve="-90"/>
-<vertex x="-2.357" y="-0.0178" curve="-90.011749"/>
-<vertex x="-1.4046" y="0.9576" curve="-90"/>
-<vertex x="-0.4546" y="-0.0204" curve="-90.024193"/>
-</polygon>
-<polygon width="0.127" layer="29">
-<vertex x="-1.4046" y="-0.4395" curve="-90.012891"/>
-<vertex x="-1.8491" y="-0.0153" curve="-90"/>
-<vertex x="-1.4046" y="0.452" curve="-90"/>
-<vertex x="-0.9627" y="-0.0051" curve="-90.012967"/>
-</polygon>
-<polygon width="0.127" layer="30">
-<vertex x="1.397" y="-0.9475" curve="-90"/>
-<vertex x="0.4421" y="-0.0178" curve="-90.011749"/>
-<vertex x="1.3945" y="0.9576" curve="-90"/>
-<vertex x="2.3445" y="-0.0204" curve="-90.024193"/>
-</polygon>
-<polygon width="0.127" layer="29">
-<vertex x="1.3945" y="-0.4395" curve="-90.012891"/>
-<vertex x="0.95" y="-0.0153" curve="-90"/>
-<vertex x="1.3945" y="0.452" curve="-90"/>
-<vertex x="1.8364" y="-0.0051" curve="-90.012967"/>
-</polygon>
-</package>
-<package name="CAP-PTH-SMALLEZ">
-<description>This is the "EZ" version of the .1" spaced ceramic thru-hole cap.&lt;br&gt;
-It has reduced top mask to make it harder to put the component on the wrong side of the board.</description>
-<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="1.27" x2="3.81" y2="1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="1.27" x2="3.81" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="3.81" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
-<wire x1="-1.27" y1="-1.27" x2="-1.27" y2="1.27" width="0.2032" layer="21"/>
-<pad name="1" x="0" y="0" drill="0.7" diameter="1.651" stop="no"/>
-<pad name="2" x="2.54" y="0" drill="0.7" diameter="1.651" stop="no"/>
-<text x="-1.27" y="1.905" size="0.6096" layer="25">&gt;Name</text>
-<text x="-1.27" y="-2.54" size="0.6096" layer="27">&gt;Value</text>
-<circle x="0" y="0" radius="0.898025" width="0" layer="30"/>
-<circle x="2.54" y="0" radius="0.915809375" width="0" layer="30"/>
-<circle x="0" y="0" radius="0.40160625" width="0" layer="29"/>
-<circle x="2.54" y="0" radius="0.40160625" width="0" layer="29"/>
-</package>
-</packages>
-<symbols>
-<symbol name="22-23-2031">
-<description>3-pin Molex locking connector (male).</description>
-<pin name="PWR" x="-7.62" y="0" length="middle" direction="pwr"/>
-<pin name="GND" x="-7.62" y="5.08" length="middle" direction="pwr"/>
-<pin name="SIG" x="-7.62" y="-5.08" length="middle"/>
-<wire x1="-2.54" y1="7.62" x2="5.08" y2="7.62" width="0.254" layer="94"/>
-<wire x1="5.08" y1="7.62" x2="5.08" y2="-7.62" width="0.254" layer="94"/>
-<wire x1="5.08" y1="-7.62" x2="-2.54" y2="-7.62" width="0.254" layer="94"/>
-<wire x1="-2.54" y1="-7.62" x2="-2.54" y2="7.62" width="0.254" layer="94"/>
-<text x="-5.08" y="8.255" size="1.778" layer="95">&gt;NAME</text>
-</symbol>
-<symbol name="CAP">
-<wire x1="0" y1="2.54" x2="0" y2="2.032" width="0.1524" layer="94"/>
-<wire x1="0" y1="0" x2="0" y2="0.508" width="0.1524" layer="94"/>
-<text x="1.524" y="2.921" size="1.778" layer="95">&gt;NAME</text>
-<text x="1.524" y="-2.159" size="1.778" layer="96">&gt;VALUE</text>
-<rectangle x1="-2.032" y1="0.508" x2="2.032" y2="1.016" layer="94"/>
-<rectangle x1="-2.032" y1="1.524" x2="2.032" y2="2.032" layer="94"/>
-<pin name="1" x="0" y="5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
-<pin name="2" x="0" y="-2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
-</symbol>
-</symbols>
-<devicesets>
-<deviceset name="22-23-2031">
-<description>Molex 3-pin male connector 22-23-2031.</description>
-<gates>
-<gate name="G$1" symbol="22-23-2031" x="0" y="0"/>
-</gates>
-<devices>
-<device name="" package="22-23-2031">
-<connects>
-<connect gate="G$1" pin="GND" pad="1"/>
-<connect gate="G$1" pin="PWR" pad="2"/>
-<connect gate="G$1" pin="SIG" pad="3"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="GENERIC" package="PWM_1X3">
-<connects>
-<connect gate="G$1" pin="GND" pad="1"/>
-<connect gate="G$1" pin="PWR" pad="2"/>
-<connect gate="G$1" pin="SIG" pad="3"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-<deviceset name="CAP" prefix="C" uservalue="yes">
-<description>&lt;b&gt;Capacitor&lt;/b&gt;
-Standard 0603 ceramic capacitor, and 0.1" leaded capacitor.</description>
-<gates>
-<gate name="G$1" symbol="CAP" x="0" y="0"/>
-</gates>
-<devices>
-<device name="PTH" package="CAP-PTH-SMALL">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH2" package="CAP-PTH-SMALL2">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0805" package="0805">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH3" package="CAP-PTH-LARGE">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="SMD" package="GRM43D">
-<connects>
-<connect gate="G$1" pin="1" pad="A"/>
-<connect gate="G$1" pin="2" pad="C"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0603-CAP" package="0603-CAP">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0402-CAP" package="0402-CAP">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="PTH1" package="CAP-PTH-5MM">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="_" package="AXIAL-5MM">
-<connects>
-<connect gate="G$1" pin="1" pad="P$1"/>
-<connect gate="G$1" pin="2" pad="P$2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="1210" package="1210">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="1206" package="1206">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="ASMD" package="CTZ3">
-<connects>
-<connect gate="G$1" pin="1" pad="+"/>
-<connect gate="G$1" pin="2" pad="-"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="KIT" package="CAP-PTH-SMALL-KIT">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="EZ" package="CAP-PTH-SMALLEZ">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-<device name="0603" package="0603">
-<connects>
-<connect gate="G$1" pin="1" pad="1"/>
-<connect gate="G$1" pin="2" pad="2"/>
-</connects>
-<technologies>
-<technology name=""/>
-</technologies>
-</device>
-</devices>
-</deviceset>
-</devicesets>
-</library>
-</libraries>
-<attributes>
-</attributes>
-<variantdefs>
-</variantdefs>
-<classes>
-<class number="0" name="default" width="0" drill="0">
-</class>
-</classes>
-<parts>
-<part name="U$1" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$2" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$3" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$4" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$5" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$6" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$7" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$8" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$9" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$10" library="custom" deviceset="22-23-2031" device="GENERIC"/>
-<part name="U$11" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$12" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$13" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$14" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$15" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$16" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$17" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$18" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$19" library="custom" deviceset="22-23-2031" device=""/>
-<part name="U$20" library="custom" deviceset="22-23-2031" device=""/>
-<part name="C1" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C2" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C3" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C4" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C5" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C6" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C7" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C8" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C9" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-<part name="C10" library="custom" deviceset="CAP" device="0603" value="0.1 uF"/>
-</parts>
-<sheets>
-<sheet>
-<plain>
-</plain>
-<instances>
-<instance part="U$1" gate="G$1" x="10.16" y="10.16" rot="MR0"/>
-<instance part="U$2" gate="G$1" x="10.16" y="30.48" rot="MR0"/>
-<instance part="U$3" gate="G$1" x="10.16" y="50.8" rot="MR0"/>
-<instance part="U$4" gate="G$1" x="10.16" y="71.12" rot="MR0"/>
-<instance part="U$5" gate="G$1" x="10.16" y="91.44" rot="MR0"/>
-<instance part="U$6" gate="G$1" x="10.16" y="111.76" rot="MR0"/>
-<instance part="U$7" gate="G$1" x="10.16" y="132.08" rot="MR0"/>
-<instance part="U$8" gate="G$1" x="10.16" y="152.4" rot="MR0"/>
-<instance part="U$9" gate="G$1" x="10.16" y="172.72" rot="MR0"/>
-<instance part="U$10" gate="G$1" x="10.16" y="193.04" rot="MR0"/>
-<instance part="U$11" gate="G$1" x="38.1" y="10.16"/>
-<instance part="U$12" gate="G$1" x="38.1" y="30.48"/>
-<instance part="U$13" gate="G$1" x="38.1" y="50.8"/>
-<instance part="U$14" gate="G$1" x="38.1" y="71.12"/>
-<instance part="U$15" gate="G$1" x="38.1" y="91.44"/>
-<instance part="U$16" gate="G$1" x="38.1" y="111.76"/>
-<instance part="U$17" gate="G$1" x="38.1" y="132.08"/>
-<instance part="U$18" gate="G$1" x="38.1" y="152.4"/>
-<instance part="U$19" gate="G$1" x="38.1" y="172.72"/>
-<instance part="U$20" gate="G$1" x="38.1" y="193.04"/>
-<instance part="C1" gate="G$1" x="20.32" y="195.58"/>
-<instance part="C2" gate="G$1" x="20.32" y="175.26"/>
-<instance part="C3" gate="G$1" x="20.32" y="154.94"/>
-<instance part="C4" gate="G$1" x="20.32" y="134.62"/>
-<instance part="C5" gate="G$1" x="20.32" y="114.3"/>
-<instance part="C6" gate="G$1" x="20.32" y="93.98"/>
-<instance part="C7" gate="G$1" x="20.32" y="73.66"/>
-<instance part="C8" gate="G$1" x="20.32" y="53.34"/>
-<instance part="C9" gate="G$1" x="20.32" y="33.02"/>
-<instance part="C10" gate="G$1" x="20.32" y="12.7"/>
-</instances>
-<busses>
-</busses>
-<nets>
-<net name="N$2" class="0">
-<segment>
-<pinref part="U$10" gate="G$1" pin="PWR"/>
-<pinref part="U$20" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="193.04" x2="20.32" y2="193.04" width="0.1524" layer="91"/>
-<pinref part="C1" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="193.04" x2="30.48" y2="193.04" width="0.1524" layer="91"/>
-<junction x="20.32" y="193.04"/>
-</segment>
-</net>
-<net name="N$3" class="0">
-<segment>
-<pinref part="U$10" gate="G$1" pin="SIG"/>
-<pinref part="U$20" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="187.96" x2="30.48" y2="187.96" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$5" class="0">
-<segment>
-<pinref part="U$9" gate="G$1" pin="PWR"/>
-<pinref part="U$19" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="172.72" x2="20.32" y2="172.72" width="0.1524" layer="91"/>
-<pinref part="C2" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="172.72" x2="30.48" y2="172.72" width="0.1524" layer="91"/>
-<junction x="20.32" y="172.72"/>
-</segment>
-</net>
-<net name="N$6" class="0">
-<segment>
-<pinref part="U$9" gate="G$1" pin="SIG"/>
-<pinref part="U$19" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="167.64" x2="30.48" y2="167.64" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$8" class="0">
-<segment>
-<pinref part="U$8" gate="G$1" pin="PWR"/>
-<pinref part="U$18" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="152.4" x2="20.32" y2="152.4" width="0.1524" layer="91"/>
-<pinref part="C3" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="152.4" x2="30.48" y2="152.4" width="0.1524" layer="91"/>
-<junction x="20.32" y="152.4"/>
-</segment>
-</net>
-<net name="N$9" class="0">
-<segment>
-<pinref part="U$8" gate="G$1" pin="SIG"/>
-<pinref part="U$18" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="147.32" x2="30.48" y2="147.32" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$11" class="0">
-<segment>
-<pinref part="U$7" gate="G$1" pin="PWR"/>
-<pinref part="U$17" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="132.08" x2="20.32" y2="132.08" width="0.1524" layer="91"/>
-<pinref part="C4" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="132.08" x2="30.48" y2="132.08" width="0.1524" layer="91"/>
-<junction x="20.32" y="132.08"/>
-</segment>
-</net>
-<net name="N$12" class="0">
-<segment>
-<pinref part="U$7" gate="G$1" pin="SIG"/>
-<pinref part="U$17" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="127" x2="30.48" y2="127" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$14" class="0">
-<segment>
-<pinref part="U$6" gate="G$1" pin="PWR"/>
-<pinref part="U$16" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="111.76" x2="20.32" y2="111.76" width="0.1524" layer="91"/>
-<pinref part="C5" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="111.76" x2="30.48" y2="111.76" width="0.1524" layer="91"/>
-<junction x="20.32" y="111.76"/>
-</segment>
-</net>
-<net name="N$15" class="0">
-<segment>
-<pinref part="U$6" gate="G$1" pin="SIG"/>
-<pinref part="U$16" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="106.68" x2="30.48" y2="106.68" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$17" class="0">
-<segment>
-<pinref part="U$5" gate="G$1" pin="PWR"/>
-<pinref part="U$15" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="91.44" x2="20.32" y2="91.44" width="0.1524" layer="91"/>
-<pinref part="C6" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="91.44" x2="30.48" y2="91.44" width="0.1524" layer="91"/>
-<junction x="20.32" y="91.44"/>
-</segment>
-</net>
-<net name="N$18" class="0">
-<segment>
-<pinref part="U$5" gate="G$1" pin="SIG"/>
-<pinref part="U$15" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="86.36" x2="30.48" y2="86.36" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$20" class="0">
-<segment>
-<pinref part="U$4" gate="G$1" pin="PWR"/>
-<pinref part="U$14" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="71.12" x2="20.32" y2="71.12" width="0.1524" layer="91"/>
-<pinref part="C7" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="71.12" x2="30.48" y2="71.12" width="0.1524" layer="91"/>
-<junction x="20.32" y="71.12"/>
-</segment>
-</net>
-<net name="N$21" class="0">
-<segment>
-<pinref part="U$4" gate="G$1" pin="SIG"/>
-<pinref part="U$14" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="66.04" x2="30.48" y2="66.04" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$23" class="0">
-<segment>
-<pinref part="U$3" gate="G$1" pin="PWR"/>
-<pinref part="U$13" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="50.8" x2="20.32" y2="50.8" width="0.1524" layer="91"/>
-<pinref part="C8" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="50.8" x2="30.48" y2="50.8" width="0.1524" layer="91"/>
-<junction x="20.32" y="50.8"/>
-</segment>
-</net>
-<net name="N$24" class="0">
-<segment>
-<pinref part="U$3" gate="G$1" pin="SIG"/>
-<pinref part="U$13" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="45.72" x2="30.48" y2="45.72" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$26" class="0">
-<segment>
-<pinref part="U$2" gate="G$1" pin="PWR"/>
-<pinref part="U$12" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="30.48" x2="20.32" y2="30.48" width="0.1524" layer="91"/>
-<pinref part="C9" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="30.48" x2="30.48" y2="30.48" width="0.1524" layer="91"/>
-<junction x="20.32" y="30.48"/>
-</segment>
-</net>
-<net name="N$27" class="0">
-<segment>
-<pinref part="U$2" gate="G$1" pin="SIG"/>
-<pinref part="U$12" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="25.4" x2="30.48" y2="25.4" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$29" class="0">
-<segment>
-<pinref part="U$1" gate="G$1" pin="PWR"/>
-<pinref part="U$11" gate="G$1" pin="PWR"/>
-<wire x1="17.78" y1="10.16" x2="20.32" y2="10.16" width="0.1524" layer="91"/>
-<pinref part="C10" gate="G$1" pin="2"/>
-<wire x1="20.32" y1="10.16" x2="30.48" y2="10.16" width="0.1524" layer="91"/>
-<junction x="20.32" y="10.16"/>
-</segment>
-</net>
-<net name="N$30" class="0">
-<segment>
-<pinref part="U$1" gate="G$1" pin="SIG"/>
-<pinref part="U$11" gate="G$1" pin="SIG"/>
-<wire x1="17.78" y1="5.08" x2="30.48" y2="5.08" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$1" class="0">
-<segment>
-<pinref part="U$10" gate="G$1" pin="GND"/>
-<pinref part="C1" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="198.12" x2="17.78" y2="200.66" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="200.66" x2="20.32" y2="200.66" width="0.1524" layer="91"/>
-<wire x1="20.32" y1="200.66" x2="30.48" y2="200.66" width="0.1524" layer="91"/>
-<junction x="20.32" y="200.66"/>
-<pinref part="U$20" gate="G$1" pin="GND"/>
-<wire x1="30.48" y1="200.66" x2="30.48" y2="198.12" width="0.1524" layer="91"/>
-</segment>
-</net>
-<net name="N$4" class="0">
-<segment>
-<pinref part="U$1" gate="G$1" pin="GND"/>
-<pinref part="C10" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="15.24" x2="17.78" y2="17.78" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="17.78" x2="20.32" y2="17.78" width="0.1524" layer="91"/>
-<pinref part="U$11" gate="G$1" pin="GND"/>
-<wire x1="20.32" y1="17.78" x2="30.48" y2="17.78" width="0.1524" layer="91"/>
-<wire x1="30.48" y1="17.78" x2="30.48" y2="15.24" width="0.1524" layer="91"/>
-<junction x="20.32" y="17.78"/>
-</segment>
-</net>
-<net name="N$7" class="0">
-<segment>
-<pinref part="U$2" gate="G$1" pin="GND"/>
-<pinref part="C9" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="35.56" x2="17.78" y2="38.1" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="38.1" x2="20.32" y2="38.1" width="0.1524" layer="91"/>
-<pinref part="U$12" gate="G$1" pin="GND"/>
-<wire x1="20.32" y1="38.1" x2="30.48" y2="38.1" width="0.1524" layer="91"/>
-<wire x1="30.48" y1="38.1" x2="30.48" y2="35.56" width="0.1524" layer="91"/>
-<junction x="20.32" y="38.1"/>
-</segment>
-</net>
-<net name="N$10" class="0">
-<segment>
-<pinref part="U$3" gate="G$1" pin="GND"/>
-<pinref part="C8" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="55.88" x2="17.78" y2="58.42" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="58.42" x2="20.32" y2="58.42" width="0.1524" layer="91"/>
-<pinref part="U$13" gate="G$1" pin="GND"/>
-<wire x1="20.32" y1="58.42" x2="30.48" y2="58.42" width="0.1524" layer="91"/>
-<wire x1="30.48" y1="58.42" x2="30.48" y2="55.88" width="0.1524" layer="91"/>
-<junction x="20.32" y="58.42"/>
-</segment>
-</net>
-<net name="N$13" class="0">
-<segment>
-<pinref part="U$4" gate="G$1" pin="GND"/>
-<pinref part="C7" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="76.2" x2="17.78" y2="78.74" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="78.74" x2="20.32" y2="78.74" width="0.1524" layer="91"/>
-<pinref part="U$14" gate="G$1" pin="GND"/>
-<wire x1="20.32" y1="78.74" x2="30.48" y2="78.74" width="0.1524" layer="91"/>
-<wire x1="30.48" y1="78.74" x2="30.48" y2="76.2" width="0.1524" layer="91"/>
-<junction x="20.32" y="78.74"/>
-</segment>
-</net>
-<net name="N$16" class="0">
-<segment>
-<pinref part="U$5" gate="G$1" pin="GND"/>
-<pinref part="C6" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="96.52" x2="17.78" y2="99.06" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="99.06" x2="20.32" y2="99.06" width="0.1524" layer="91"/>
-<pinref part="U$15" gate="G$1" pin="GND"/>
-<wire x1="20.32" y1="99.06" x2="30.48" y2="99.06" width="0.1524" layer="91"/>
-<wire x1="30.48" y1="99.06" x2="30.48" y2="96.52" width="0.1524" layer="91"/>
-<junction x="20.32" y="99.06"/>
-</segment>
-</net>
-<net name="N$19" class="0">
-<segment>
-<pinref part="U$6" gate="G$1" pin="GND"/>
-<pinref part="C5" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="116.84" x2="17.78" y2="119.38" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="119.38" x2="20.32" y2="119.38" width="0.1524" layer="91"/>
-<pinref part="U$16" gate="G$1" pin="GND"/>
-<wire x1="20.32" y1="119.38" x2="30.48" y2="119.38" width="0.1524" layer="91"/>
-<wire x1="30.48" y1="119.38" x2="30.48" y2="116.84" width="0.1524" layer="91"/>
-<junction x="20.32" y="119.38"/>
-</segment>
-</net>
-<net name="N$22" class="0">
-<segment>
-<pinref part="U$7" gate="G$1" pin="GND"/>
-<pinref part="C4" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="137.16" x2="17.78" y2="139.7" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="139.7" x2="20.32" y2="139.7" width="0.1524" layer="91"/>
-<pinref part="U$17" gate="G$1" pin="GND"/>
-<wire x1="20.32" y1="139.7" x2="30.48" y2="139.7" width="0.1524" layer="91"/>
-<wire x1="30.48" y1="139.7" x2="30.48" y2="137.16" width="0.1524" layer="91"/>
-<junction x="20.32" y="139.7"/>
-</segment>
-</net>
-<net name="N$25" class="0">
-<segment>
-<pinref part="U$8" gate="G$1" pin="GND"/>
-<pinref part="C3" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="157.48" x2="17.78" y2="160.02" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="160.02" x2="20.32" y2="160.02" width="0.1524" layer="91"/>
-<pinref part="U$18" gate="G$1" pin="GND"/>
-<wire x1="20.32" y1="160.02" x2="30.48" y2="160.02" width="0.1524" layer="91"/>
-<wire x1="30.48" y1="160.02" x2="30.48" y2="157.48" width="0.1524" layer="91"/>
-<junction x="20.32" y="160.02"/>
-</segment>
-</net>
-<net name="N$28" class="0">
-<segment>
-<pinref part="U$9" gate="G$1" pin="GND"/>
-<pinref part="C2" gate="G$1" pin="1"/>
-<wire x1="17.78" y1="177.8" x2="17.78" y2="180.34" width="0.1524" layer="91"/>
-<wire x1="17.78" y1="180.34" x2="20.32" y2="180.34" width="0.1524" layer="91"/>
-<pinref part="U$19" gate="G$1" pin="GND"/>
-<wire x1="20.32" y1="180.34" x2="30.48" y2="180.34" width="0.1524" layer="91"/>
-<wire x1="30.48" y1="180.34" x2="30.48" y2="177.8" width="0.1524" layer="91"/>
-<junction x="20.32" y="180.34"/>
-</segment>
-</net>
-</nets>
-</sheet>
-</sheets>
-</schematic>
-</drawing>
-</eagle>
diff --git a/roborio_expansion_boards/seed_studio_20140818/analog_adapter.zip b/roborio_expansion_boards/seed_studio_20140818/analog_adapter.zip
deleted file mode 100644
index e429554..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/analog_adapter.zip
+++ /dev/null
Binary files differ
diff --git a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GBL b/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GBL
deleted file mode 100644
index 678f58a..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GBL
+++ /dev/null
@@ -1,43 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0600*%
-D10*
-X000100Y000125D02*
-X000100Y012121D01*
-X006720Y012121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X001100Y001625D03*
-X002100Y001625D03*
-X003100Y001625D03*
-X003100Y004625D03*
-X002100Y004625D03*
-X001100Y004625D03*
-X001100Y007625D03*
-X002100Y007625D03*
-X003100Y007625D03*
-X003100Y010625D03*
-X002100Y010625D03*
-X001100Y010625D03*
-X005100Y010625D03*
-X005100Y009625D03*
-X005100Y008625D03*
-X005100Y007625D03*
-X005100Y006625D03*
-X005100Y005625D03*
-X005100Y004625D03*
-X005100Y003625D03*
-X005100Y002625D03*
-X005100Y001625D03*
-X005100Y000625D03*
-X005100Y011625D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GBO b/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GBO
deleted file mode 100644
index b9f04cf..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GBO
+++ /dev/null
@@ -1,39 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0050*%
-D10*
-X000100Y000125D02*
-X000100Y012121D01*
-X006720Y012121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X000600Y001125D02*
-X003600Y001125D01*
-X003600Y002125D01*
-X000600Y002125D01*
-X000600Y001125D01*
-X000600Y004125D02*
-X003600Y004125D01*
-X003600Y005125D01*
-X000600Y005125D01*
-X000600Y004125D01*
-X000600Y007125D02*
-X003600Y007125D01*
-X003600Y008125D01*
-X000600Y008125D01*
-X000600Y007125D01*
-X000600Y010125D02*
-X003600Y010125D01*
-X003600Y011125D01*
-X000600Y011125D01*
-X000600Y010125D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GBP b/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GBP
deleted file mode 100644
index 3c61cce..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GBP
+++ /dev/null
@@ -1,17 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-D10*
-X000100Y000125D02*
-X000100Y012121D01*
-X006720Y012121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GBS b/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GBS
deleted file mode 100644
index 77de121..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GBS
+++ /dev/null
@@ -1,43 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0640*%
-D10*
-X000100Y000125D02*
-X000100Y012121D01*
-X006720Y012121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X001100Y001625D03*
-X002100Y001625D03*
-X003100Y001625D03*
-X003100Y004625D03*
-X002100Y004625D03*
-X001100Y004625D03*
-X001100Y007625D03*
-X002100Y007625D03*
-X003100Y007625D03*
-X003100Y010625D03*
-X002100Y010625D03*
-X001100Y010625D03*
-X005100Y010625D03*
-X005100Y009625D03*
-X005100Y008625D03*
-X005100Y007625D03*
-X005100Y006625D03*
-X005100Y005625D03*
-X005100Y004625D03*
-X005100Y003625D03*
-X005100Y002625D03*
-X005100Y001625D03*
-X005100Y000625D03*
-X005100Y011625D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GML b/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GML
deleted file mode 100644
index 3c61cce..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GML
+++ /dev/null
@@ -1,17 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-D10*
-X000100Y000125D02*
-X000100Y012121D01*
-X006720Y012121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GTL b/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GTL
deleted file mode 100644
index 8db9d3e..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GTL
+++ /dev/null
@@ -1,446 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0020*%
-%ADD12C,0.0600*%
-%ADD13R,0.0433X0.0394*%
-%ADD14C,0.0160*%
-D10*
-X000100Y000125D02*
-X000100Y012121D01*
-X006720Y012121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X000260Y002385D02*
-X000260Y002532D01*
-X000260Y002606D02*
-X000260Y002716D01*
-X000297Y002753D01*
-X000370Y002753D01*
-X000407Y002716D01*
-X000407Y002606D01*
-X000480Y002606D02*
-X000260Y002606D01*
-X000407Y002679D02*
-X000480Y002753D01*
-X000443Y002827D02*
-X000480Y002864D01*
-X000480Y002937D01*
-X000443Y002974D01*
-X000443Y002827D02*
-X000297Y002827D01*
-X000260Y002864D01*
-X000260Y002937D01*
-X000297Y002974D01*
-X000260Y003269D02*
-X000260Y003416D01*
-X000260Y003342D02*
-X000480Y003342D01*
-X000443Y003490D02*
-X000370Y003490D01*
-X000333Y003527D01*
-X000333Y003600D01*
-X000370Y003637D01*
-X000407Y003637D01*
-X000407Y003490D01*
-X000443Y003490D02*
-X000480Y003527D01*
-X000480Y003600D01*
-X000443Y003711D02*
-X000407Y003748D01*
-X000407Y003858D01*
-X000370Y003858D02*
-X000480Y003858D01*
-X000480Y003748D01*
-X000443Y003711D01*
-X000333Y003821D02*
-X000370Y003858D01*
-X000333Y003821D02*
-X000333Y003748D01*
-X000333Y003932D02*
-X000333Y003969D01*
-X000370Y004005D01*
-X000333Y004042D01*
-X000370Y004079D01*
-X000480Y004079D01*
-X000480Y004005D02*
-X000370Y004005D01*
-X000333Y003932D02*
-X000480Y003932D01*
-X000620Y003969D02*
-X000620Y004042D01*
-X000657Y004079D01*
-X000693Y004079D01*
-X000730Y004042D01*
-X000730Y003969D01*
-X000693Y003932D01*
-X000657Y003932D01*
-X000620Y003969D01*
-X000730Y003969D02*
-X000767Y003932D01*
-X000803Y003932D01*
-X000840Y003969D01*
-X000840Y004042D01*
-X000803Y004079D01*
-X000767Y004079D01*
-X000730Y004042D01*
-X000840Y003858D02*
-X000840Y003711D01*
-X000840Y003784D02*
-X000620Y003784D01*
-X000693Y003711D01*
-X000693Y003637D02*
-X000657Y003637D01*
-X000620Y003600D01*
-X000620Y003527D01*
-X000657Y003490D01*
-X000693Y003490D01*
-X000730Y003527D01*
-X000730Y003600D01*
-X000767Y003637D01*
-X000803Y003637D01*
-X000840Y003600D01*
-X000840Y003527D01*
-X000803Y003490D01*
-X000767Y003490D01*
-X000730Y003527D01*
-X000730Y003600D02*
-X000693Y003637D01*
-X000657Y003416D02*
-X000620Y003379D01*
-X000620Y003306D01*
-X000657Y003269D01*
-X000803Y003269D01*
-X000657Y003416D01*
-X000803Y003416D01*
-X000840Y003379D01*
-X000840Y003306D01*
-X000803Y003269D01*
-X000730Y003195D02*
-X000730Y003048D01*
-X000620Y003158D01*
-X000840Y003158D01*
-X000840Y002974D02*
-X000840Y002827D01*
-X000840Y002900D02*
-X000620Y002900D01*
-X000693Y002827D01*
-X000657Y002753D02*
-X000803Y002606D01*
-X000840Y002643D01*
-X000840Y002716D01*
-X000803Y002753D01*
-X000657Y002753D01*
-X000620Y002716D01*
-X000620Y002643D01*
-X000657Y002606D01*
-X000803Y002606D01*
-X000840Y002532D02*
-X000840Y002385D01*
-X000693Y002532D01*
-X000657Y002532D01*
-X000620Y002495D01*
-X000620Y002422D01*
-X000657Y002385D01*
-X000480Y002385D02*
-X000260Y002385D01*
-X000370Y002385D02*
-X000370Y002458D01*
-X000333Y004374D02*
-X000370Y004411D01*
-X000370Y004521D01*
-X000443Y004521D02*
-X000297Y004521D01*
-X000260Y004484D01*
-X000260Y004411D01*
-X000297Y004374D01*
-X000333Y004374D01*
-X000443Y004374D02*
-X000480Y004411D01*
-X000480Y004484D01*
-X000443Y004521D01*
-X000443Y004595D02*
-X000480Y004595D01*
-X000443Y004595D02*
-X000297Y004742D01*
-X000260Y004742D01*
-X000260Y004595D01*
-X000333Y004816D02*
-X000260Y004889D01*
-X000480Y004889D01*
-X000480Y004816D02*
-X000480Y004963D01*
-X000480Y005258D02*
-X000333Y005258D01*
-X000260Y005331D01*
-X000333Y005405D01*
-X000480Y005405D01*
-X000480Y005479D02*
-X000333Y005479D01*
-X000333Y005589D01*
-X000370Y005626D01*
-X000480Y005626D01*
-X000443Y005700D02*
-X000407Y005737D01*
-X000407Y005847D01*
-X000370Y005847D02*
-X000480Y005847D01*
-X000480Y005737D01*
-X000443Y005700D01*
-X000333Y005810D02*
-X000370Y005847D01*
-X000333Y005810D02*
-X000333Y005737D01*
-X000260Y005921D02*
-X000260Y005958D01*
-X000480Y005958D01*
-X000480Y005994D02*
-X000480Y005921D01*
-X000443Y006068D02*
-X000370Y006068D01*
-X000333Y006105D01*
-X000333Y006178D01*
-X000370Y006215D01*
-X000443Y006215D01*
-X000480Y006178D01*
-X000480Y006105D01*
-X000443Y006068D01*
-X000443Y006289D02*
-X000370Y006289D01*
-X000333Y006326D01*
-X000333Y006436D01*
-X000517Y006436D01*
-X000553Y006399D01*
-X000553Y006363D01*
-X000480Y006326D02*
-X000480Y006436D01*
-X000480Y006326D02*
-X000443Y006289D01*
-X000443Y006731D02*
-X000297Y006731D01*
-X000260Y006768D01*
-X000260Y006841D01*
-X000297Y006878D01*
-X000370Y006952D02*
-X000333Y006989D01*
-X000333Y007062D01*
-X000370Y007099D01*
-X000443Y007099D01*
-X000480Y007062D01*
-X000480Y006989D01*
-X000443Y006952D01*
-X000370Y006952D01*
-X000443Y006878D02*
-X000480Y006841D01*
-X000480Y006768D01*
-X000443Y006731D01*
-X000480Y007173D02*
-X000333Y007173D01*
-X000333Y007283D01*
-X000370Y007320D01*
-X000480Y007320D01*
-X000480Y007394D02*
-X000333Y007394D01*
-X000333Y007504D01*
-X000370Y007541D01*
-X000480Y007541D01*
-X000443Y007615D02*
-X000370Y007615D01*
-X000333Y007652D01*
-X000333Y007725D01*
-X000370Y007762D01*
-X000407Y007762D01*
-X000407Y007615D01*
-X000443Y007615D02*
-X000480Y007652D01*
-X000480Y007725D01*
-X000443Y007836D02*
-X000370Y007836D01*
-X000333Y007873D01*
-X000333Y007983D01*
-X000333Y008057D02*
-X000333Y008130D01*
-X000297Y008094D02*
-X000443Y008094D01*
-X000480Y008130D01*
-X000443Y008204D02*
-X000370Y008204D01*
-X000333Y008241D01*
-X000333Y008314D01*
-X000370Y008351D01*
-X000443Y008351D01*
-X000480Y008314D01*
-X000480Y008241D01*
-X000443Y008204D01*
-X000407Y008425D02*
-X000333Y008499D01*
-X000333Y008535D01*
-X000333Y008425D02*
-X000480Y008425D01*
-X000480Y007983D02*
-X000480Y007873D01*
-X000443Y007836D01*
-X000480Y008830D02*
-X000333Y008830D01*
-X000260Y008904D01*
-X000333Y008977D01*
-X000480Y008977D01*
-X000443Y009051D02*
-X000370Y009051D01*
-X000333Y009088D01*
-X000333Y009198D01*
-X000260Y009198D02*
-X000480Y009198D01*
-X000480Y009088D01*
-X000443Y009051D01*
-X000370Y008977D02*
-X000370Y008830D01*
-X000443Y009272D02*
-X000407Y009309D01*
-X000407Y009419D01*
-X000370Y009419D02*
-X000480Y009419D01*
-X000480Y009309D01*
-X000443Y009272D01*
-X000333Y009309D02*
-X000333Y009383D01*
-X000370Y009419D01*
-X000333Y009493D02*
-X000333Y009604D01*
-X000370Y009640D01*
-X000443Y009640D01*
-X000480Y009604D01*
-X000480Y009493D01*
-X000553Y009493D02*
-X000333Y009493D01*
-X000333Y009714D02*
-X000333Y009788D01*
-X000297Y009751D02*
-X000443Y009751D01*
-X000480Y009788D01*
-X000443Y009862D02*
-X000370Y009862D01*
-X000333Y009898D01*
-X000333Y009972D01*
-X000370Y010009D01*
-X000407Y010009D01*
-X000407Y009862D01*
-X000443Y009862D02*
-X000480Y009898D01*
-X000480Y009972D01*
-X000480Y010083D02*
-X000333Y010083D01*
-X000333Y010156D02*
-X000333Y010193D01*
-X000333Y010156D02*
-X000407Y010083D01*
-X000370Y005405D02*
-X000370Y005258D01*
-D12*
-X001100Y004625D03*
-X002100Y004625D03*
-X003100Y004625D03*
-X003100Y001625D03*
-X002100Y001625D03*
-X001100Y001625D03*
-X001100Y007625D03*
-X002100Y007625D03*
-X003100Y007625D03*
-X003100Y010625D03*
-X002100Y010625D03*
-X001100Y010625D03*
-X005100Y010625D03*
-X005100Y009625D03*
-X005100Y008625D03*
-X005100Y007625D03*
-X005100Y006625D03*
-X005100Y005625D03*
-X005100Y004625D03*
-X005100Y003625D03*
-X005100Y002625D03*
-X005100Y001625D03*
-X005100Y000625D03*
-X005100Y011625D03*
-D13*
-X001935Y009750D03*
-X001265Y009750D03*
-X001265Y006750D03*
-X001935Y006750D03*
-X001935Y003750D03*
-X001265Y003750D03*
-X001265Y000750D03*
-X001935Y000750D03*
-D14*
-X002100Y000750D01*
-X002100Y001625D01*
-X002100Y002250D01*
-X004100Y002250D01*
-X004100Y001625D01*
-X005100Y001625D01*
-X005100Y000625D02*
-X003100Y000625D01*
-X003100Y001625D01*
-X003100Y003625D02*
-X005100Y003625D01*
-X005100Y002625D02*
-X001100Y002625D01*
-X001100Y001625D01*
-X001100Y000750D01*
-X001265Y000750D01*
-X001265Y003750D02*
-X001100Y003750D01*
-X001100Y004625D01*
-X001100Y005625D01*
-X005100Y005625D01*
-X005100Y006625D02*
-X003100Y006625D01*
-X003100Y007625D01*
-X002100Y007625D02*
-X002100Y006750D01*
-X001935Y006750D01*
-X002100Y007625D02*
-X002100Y008250D01*
-X004100Y008250D01*
-X004100Y007625D01*
-X005100Y007625D01*
-X005100Y008625D02*
-X001100Y008625D01*
-X001100Y007625D01*
-X001100Y006750D01*
-X001265Y006750D01*
-X002100Y005250D02*
-X004100Y005250D01*
-X004100Y004625D01*
-X005100Y004625D01*
-X003100Y004625D02*
-X003100Y003625D01*
-X002100Y003750D02*
-X001935Y003750D01*
-X002100Y003750D02*
-X002100Y004625D01*
-X002100Y005250D01*
-X003100Y009625D02*
-X005100Y009625D01*
-X005100Y010625D02*
-X004100Y010625D01*
-X004100Y011250D01*
-X002100Y011250D01*
-X002100Y010625D01*
-X002100Y009750D01*
-X001935Y009750D01*
-X001265Y009750D02*
-X001100Y009750D01*
-X001100Y010625D01*
-X001100Y011625D01*
-X005100Y011625D01*
-X003100Y010625D02*
-X003100Y009625D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GTO b/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GTO
deleted file mode 100644
index 80a16d5..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GTO
+++ /dev/null
@@ -1,309 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0030*%
-%ADD12C,0.0160*%
-%ADD13C,0.0020*%
-%ADD14C,0.0050*%
-%ADD15C,0.0010*%
-D10*
-X000100Y000125D02*
-X000100Y012121D01*
-X006720Y012121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X003495Y000688D02*
-X003543Y000640D01*
-X003592Y000640D01*
-X003640Y000688D01*
-X003640Y000785D01*
-X003688Y000833D01*
-X003737Y000833D01*
-X003785Y000785D01*
-X003785Y000688D01*
-X003737Y000640D01*
-X003543Y000833D02*
-X003495Y000785D01*
-X003495Y000688D01*
-X003640Y001524D02*
-X003640Y001717D01*
-X003543Y001621D02*
-X003737Y001621D01*
-X003640Y002408D02*
-X003640Y002601D01*
-X003592Y003640D02*
-X003543Y003640D01*
-X003495Y003688D01*
-X003495Y003785D01*
-X003543Y003833D01*
-X003640Y003785D02*
-X003688Y003833D01*
-X003737Y003833D01*
-X003785Y003785D01*
-X003785Y003688D01*
-X003737Y003640D01*
-X003640Y003688D02*
-X003592Y003640D01*
-X003640Y003688D02*
-X003640Y003785D01*
-X003640Y004524D02*
-X003640Y004717D01*
-X003543Y004621D02*
-X003737Y004621D01*
-X003640Y005408D02*
-X003640Y005601D01*
-X003592Y006640D02*
-X003543Y006640D01*
-X003495Y006688D01*
-X003495Y006785D01*
-X003543Y006833D01*
-X003640Y006785D02*
-X003640Y006688D01*
-X003592Y006640D01*
-X003640Y006785D02*
-X003688Y006833D01*
-X003737Y006833D01*
-X003785Y006785D01*
-X003785Y006688D01*
-X003737Y006640D01*
-X003640Y007524D02*
-X003640Y007717D01*
-X003543Y007621D02*
-X003737Y007621D01*
-X003640Y008408D02*
-X003640Y008601D01*
-X003592Y009640D02*
-X003543Y009640D01*
-X003495Y009688D01*
-X003495Y009785D01*
-X003543Y009833D01*
-X003640Y009785D02*
-X003640Y009688D01*
-X003592Y009640D01*
-X003737Y009640D02*
-X003785Y009688D01*
-X003785Y009785D01*
-X003737Y009833D01*
-X003688Y009833D01*
-X003640Y009785D01*
-X003640Y010524D02*
-X003640Y010717D01*
-X003543Y010621D02*
-X003737Y010621D01*
-X003640Y011408D02*
-X003640Y011601D01*
-X002953Y011513D02*
-X002953Y011452D01*
-X002892Y011390D01*
-X002768Y011390D01*
-X002707Y011452D01*
-X002768Y011575D02*
-X002892Y011575D01*
-X002953Y011513D01*
-X002953Y011699D02*
-X002892Y011760D01*
-X002768Y011760D01*
-X002707Y011699D01*
-X002707Y011637D01*
-X002768Y011575D01*
-X002217Y011575D02*
-X001970Y011575D01*
-X002093Y011452D02*
-X002093Y011699D01*
-X001112Y011575D02*
-X000865Y011575D01*
-D12*
-X000225Y009125D02*
-X006600Y009125D01*
-X006600Y006125D02*
-X000225Y006125D01*
-X000225Y003125D02*
-X006600Y003125D01*
-D13*
-X006590Y004510D02*
-X006443Y004657D01*
-X006407Y004657D01*
-X006370Y004620D01*
-X006370Y004547D01*
-X006407Y004510D01*
-X006590Y004510D02*
-X006590Y004657D01*
-X006590Y007510D02*
-X006443Y007657D01*
-X006407Y007657D01*
-X006370Y007620D01*
-X006370Y007547D01*
-X006407Y007510D01*
-X006590Y007510D02*
-X006590Y007657D01*
-X006553Y010510D02*
-X006407Y010510D01*
-X006370Y010547D01*
-X006370Y010620D01*
-X006407Y010657D01*
-X006553Y010510D01*
-X006590Y010547D01*
-X006590Y010620D01*
-X006553Y010657D01*
-X006407Y010657D01*
-X006407Y001657D02*
-X006443Y001657D01*
-X006480Y001620D01*
-X006517Y001657D01*
-X006553Y001657D01*
-X006590Y001620D01*
-X006590Y001547D01*
-X006553Y001510D01*
-X006480Y001583D02*
-X006480Y001620D01*
-X006407Y001657D02*
-X006370Y001620D01*
-X006370Y001547D01*
-X006407Y001510D01*
-X000465Y001547D02*
-X000428Y001510D01*
-X000465Y001547D02*
-X000465Y001620D01*
-X000428Y001657D01*
-X000392Y001657D01*
-X000355Y001620D01*
-X000355Y001583D01*
-X000355Y001620D02*
-X000318Y001657D01*
-X000282Y001657D01*
-X000245Y001620D01*
-X000245Y001547D01*
-X000282Y001510D01*
-X000282Y004510D02*
-X000245Y004547D01*
-X000245Y004620D01*
-X000282Y004657D01*
-X000318Y004657D01*
-X000465Y004510D01*
-X000465Y004657D01*
-X000465Y007510D02*
-X000318Y007657D01*
-X000282Y007657D01*
-X000245Y007620D01*
-X000245Y007547D01*
-X000282Y007510D01*
-X000465Y007510D02*
-X000465Y007657D01*
-X000428Y010510D02*
-X000282Y010510D01*
-X000245Y010547D01*
-X000245Y010620D01*
-X000282Y010657D01*
-X000428Y010510D01*
-X000465Y010547D01*
-X000465Y010620D01*
-X000428Y010657D01*
-X000282Y010657D01*
-D14*
-X003880Y012095D02*
-X003880Y009155D01*
-X004680Y009155D01*
-X004680Y012095D01*
-X003880Y012095D01*
-X004680Y012095D02*
-X006330Y012095D01*
-X006330Y009155D01*
-X004680Y009155D01*
-X004680Y009095D02*
-X003880Y009095D01*
-X003880Y006155D01*
-X004680Y006155D01*
-X004680Y009095D01*
-X006330Y009095D01*
-X006330Y006155D01*
-X004680Y006155D01*
-X004680Y006095D02*
-X003880Y006095D01*
-X003880Y003155D01*
-X004680Y003155D01*
-X004680Y006095D01*
-X006330Y006095D01*
-X006330Y003155D01*
-X004680Y003155D01*
-X004680Y003095D02*
-X003880Y003095D01*
-X003880Y000155D01*
-X004680Y000155D01*
-X004680Y003095D01*
-X006330Y003095D01*
-X006330Y000155D01*
-X004680Y000155D01*
-D15*
-X001502Y001130D02*
-X001402Y001130D01*
-X001477Y001205D01*
-X001477Y001055D01*
-X001355Y001080D02*
-X001330Y001055D01*
-X001280Y001055D01*
-X001255Y001080D01*
-X001255Y001180D01*
-X001280Y001205D01*
-X001330Y001205D01*
-X001355Y001180D01*
-X001280Y004055D02*
-X001330Y004055D01*
-X001355Y004080D01*
-X001402Y004080D02*
-X001427Y004055D01*
-X001477Y004055D01*
-X001502Y004080D01*
-X001502Y004105D01*
-X001477Y004130D01*
-X001452Y004130D01*
-X001477Y004130D02*
-X001502Y004155D01*
-X001502Y004180D01*
-X001477Y004205D01*
-X001427Y004205D01*
-X001402Y004180D01*
-X001355Y004180D02*
-X001330Y004205D01*
-X001280Y004205D01*
-X001255Y004180D01*
-X001255Y004080D01*
-X001280Y004055D01*
-X001280Y007055D02*
-X001330Y007055D01*
-X001355Y007080D01*
-X001402Y007055D02*
-X001502Y007155D01*
-X001502Y007180D01*
-X001477Y007205D01*
-X001427Y007205D01*
-X001402Y007180D01*
-X001355Y007180D02*
-X001330Y007205D01*
-X001280Y007205D01*
-X001255Y007180D01*
-X001255Y007080D01*
-X001280Y007055D01*
-X001402Y007055D02*
-X001502Y007055D01*
-X001502Y010055D02*
-X001402Y010055D01*
-X001452Y010055D02*
-X001452Y010205D01*
-X001402Y010155D01*
-X001355Y010180D02*
-X001330Y010205D01*
-X001280Y010205D01*
-X001255Y010180D01*
-X001255Y010080D01*
-X001280Y010055D01*
-X001330Y010055D01*
-X001355Y010080D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GTP b/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GTP
deleted file mode 100644
index 4c73784..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GTP
+++ /dev/null
@@ -1,27 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11R,0.0433X0.0394*%
-D10*
-X000100Y000125D02*
-X000100Y012121D01*
-X006720Y012121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X001265Y000750D03*
-X001935Y000750D03*
-X001935Y003750D03*
-X001265Y003750D03*
-X001265Y006750D03*
-X001935Y006750D03*
-X001935Y009750D03*
-X001265Y009750D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GTS b/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GTS
deleted file mode 100644
index 367cd59..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.GTS
+++ /dev/null
@@ -1,53 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0640*%
-%ADD12R,0.0473X0.0434*%
-D10*
-X000100Y000125D02*
-X000100Y012121D01*
-X006720Y012121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X001100Y001625D03*
-X002100Y001625D03*
-X003100Y001625D03*
-X003100Y004625D03*
-X002100Y004625D03*
-X001100Y004625D03*
-X001100Y007625D03*
-X002100Y007625D03*
-X003100Y007625D03*
-X003100Y010625D03*
-X002100Y010625D03*
-X001100Y010625D03*
-X005100Y010625D03*
-X005100Y009625D03*
-X005100Y008625D03*
-X005100Y007625D03*
-X005100Y006625D03*
-X005100Y005625D03*
-X005100Y004625D03*
-X005100Y003625D03*
-X005100Y002625D03*
-X005100Y001625D03*
-X005100Y000625D03*
-X005100Y011625D03*
-D12*
-X001935Y009750D03*
-X001265Y009750D03*
-X001265Y006750D03*
-X001935Y006750D03*
-X001935Y003750D03*
-X001265Y003750D03*
-X001265Y000750D03*
-X001935Y000750D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.TXT b/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.TXT
deleted file mode 100644
index faa3724..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.TXT
+++ /dev/null
@@ -1,31 +0,0 @@
-%
-M48
-M72
-T01C0.0400
-%
-T01
-X1100Y1625
-X2100Y1625
-X3100Y1625
-X3100Y4625
-X2100Y4625
-X1100Y4625
-X1100Y7625
-X2100Y7625
-X3100Y7625
-X3100Y10625
-X2100Y10625
-X1100Y10625
-X5100Y10625
-X5100Y9625
-X5100Y8625
-X5100Y7625
-X5100Y6625
-X5100Y5625
-X5100Y4625
-X5100Y3625
-X5100Y2625
-X5100Y1625
-X5100Y625
-X5100Y11625
-M30
diff --git a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.dri b/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.dri
deleted file mode 100644
index fe70a24..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.dri
+++ /dev/null
@@ -1,36 +0,0 @@
-Generated by EAGLE CAM Processor 6.5.0
-
-Drill Station Info File: /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/analog_adapter.dri
-
- Date              : 19 Aug 2014 00:32:26
- Drills            : generated
- Device            : Excellon drill station
-
-Parameter settings:
-
- Tolerance Drill + :  0.00 %
- Tolerance Drill - :  0.00 %
- Rotate            : no
- Mirror            : no
- Optimize          : yes
- Auto fit          : yes
- OffsetX           : 0inch
- OffsetY           : 0inch
- Layers            : Drills Holes
-
-Drill File Info:
-
- Data Mode         : Absolute
- Units             : 1/10000 Inch
-
-Drills used:
-
- Code  Size       used
-
- T01   0.0400inch    24
-
-Total number of drills: 24
-
-Plotfiles:
-
- /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/analog_adapter.TXT
diff --git a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.gpi b/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.gpi
deleted file mode 100644
index a1f17ba..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/analog_adapter/analog_adapter.gpi
+++ /dev/null
@@ -1,41 +0,0 @@
-Generated by EAGLE CAM Processor 6.5.0
-
-Photoplotter Info File: /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/analog_adapter.gpi
-
- Date              : 19 Aug 2014 00:32:27
- Plotfile          : /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/analog_adapter.GTL
- Apertures         : generated: 
- Device            : Gerber RS-274-X photoplotter, coordinate format 2.4 inch
-
-Parameter settings:
-
- Emulate Apertures : no
- Tolerance Draw  + :  0.00 %
- Tolerance Draw  - :  0.00 %
- Tolerance Flash + :  0.00 %
- Tolerance Flash - :  0.00 %
- Rotate            : no
- Mirror            : no
- Optimize          : yes
- Auto fit          : yes
- OffsetX           : 0inch
- OffsetY           : 0inch
-
-Plotfile Info:
-
- Coordinate Format : 2.4
- Coordinate Units  : Inch
- Data Mode         : Absolute
- Zero Suppression  : None
- End Of Block      : *
-
-Apertures used:
-
- Code     Shape     Size                  used
-
- D10      draw      0.0000inch               4
- D11      draw      0.0020inch             244
- D12      round     0.0600inch              24
- D13      rectangle 0.0433inch x 0.0394inch     8
- D14      draw      0.0160inch              48
-
diff --git a/roborio_expansion_boards/seed_studio_20140818/dio_adapter.zip b/roborio_expansion_boards/seed_studio_20140818/dio_adapter.zip
deleted file mode 100644
index 02dc036..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/dio_adapter.zip
+++ /dev/null
Binary files differ
diff --git a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GBL b/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GBL
deleted file mode 100644
index a3504a1..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GBL
+++ /dev/null
@@ -1,79 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0600*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X001100Y001625D03*
-X001100Y004625D03*
-X001100Y007625D03*
-X001100Y010625D03*
-X001100Y013625D03*
-X001100Y016625D03*
-X001100Y019625D03*
-X001100Y022625D03*
-X001100Y025625D03*
-X001100Y028625D03*
-X002100Y028625D03*
-X002100Y025625D03*
-X002100Y022625D03*
-X002100Y019625D03*
-X002100Y016625D03*
-X002100Y013625D03*
-X002100Y010625D03*
-X002100Y007625D03*
-X002100Y004625D03*
-X002100Y001625D03*
-X003100Y001625D03*
-X003100Y004625D03*
-X003100Y007625D03*
-X003100Y010625D03*
-X003100Y013625D03*
-X003100Y016625D03*
-X003100Y019625D03*
-X003100Y022625D03*
-X003100Y025625D03*
-X003100Y028625D03*
-X005100Y028625D03*
-X005100Y027625D03*
-X005100Y026625D03*
-X005100Y025625D03*
-X005100Y024625D03*
-X005100Y023625D03*
-X005100Y022625D03*
-X005100Y021625D03*
-X005100Y020625D03*
-X005100Y019625D03*
-X005100Y018625D03*
-X005100Y017625D03*
-X005100Y016625D03*
-X005100Y015625D03*
-X005100Y014625D03*
-X005100Y013625D03*
-X005100Y012625D03*
-X005100Y011625D03*
-X005100Y010625D03*
-X005100Y009625D03*
-X005100Y008625D03*
-X005100Y007625D03*
-X005100Y006625D03*
-X005100Y005625D03*
-X005100Y004625D03*
-X005100Y003625D03*
-X005100Y002625D03*
-X005100Y001625D03*
-X005100Y000625D03*
-X005100Y029625D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GBO b/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GBO
deleted file mode 100644
index ea93d81..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GBO
+++ /dev/null
@@ -1,69 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0050*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X000600Y001125D02*
-X000600Y002125D01*
-X003600Y002125D01*
-X003600Y001125D01*
-X000600Y001125D01*
-X000600Y004125D02*
-X003600Y004125D01*
-X003600Y005125D01*
-X000600Y005125D01*
-X000600Y004125D01*
-X000600Y007125D02*
-X003600Y007125D01*
-X003600Y008125D01*
-X000600Y008125D01*
-X000600Y007125D01*
-X000600Y010125D02*
-X003600Y010125D01*
-X003600Y011125D01*
-X000600Y011125D01*
-X000600Y010125D01*
-X000600Y013125D02*
-X003600Y013125D01*
-X003600Y014125D01*
-X000600Y014125D01*
-X000600Y013125D01*
-X000600Y016125D02*
-X003600Y016125D01*
-X003600Y017125D01*
-X000600Y017125D01*
-X000600Y016125D01*
-X000600Y019125D02*
-X003600Y019125D01*
-X003600Y020125D01*
-X000600Y020125D01*
-X000600Y019125D01*
-X000600Y022125D02*
-X003600Y022125D01*
-X003600Y023125D01*
-X000600Y023125D01*
-X000600Y022125D01*
-X000600Y025125D02*
-X003600Y025125D01*
-X003600Y026125D01*
-X000600Y026125D01*
-X000600Y025125D01*
-X000600Y028125D02*
-X003600Y028125D01*
-X003600Y029125D01*
-X000600Y029125D01*
-X000600Y028125D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GBP b/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GBP
deleted file mode 100644
index f166dff..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GBP
+++ /dev/null
@@ -1,17 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GBS b/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GBS
deleted file mode 100644
index ddb86fd..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GBS
+++ /dev/null
@@ -1,79 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0640*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X001100Y001625D03*
-X001100Y004625D03*
-X001100Y007625D03*
-X001100Y010625D03*
-X001100Y013625D03*
-X001100Y016625D03*
-X001100Y019625D03*
-X001100Y022625D03*
-X001100Y025625D03*
-X001100Y028625D03*
-X002100Y028625D03*
-X002100Y025625D03*
-X002100Y022625D03*
-X002100Y019625D03*
-X002100Y016625D03*
-X002100Y013625D03*
-X002100Y010625D03*
-X002100Y007625D03*
-X002100Y004625D03*
-X002100Y001625D03*
-X003100Y001625D03*
-X003100Y004625D03*
-X003100Y007625D03*
-X003100Y010625D03*
-X003100Y013625D03*
-X003100Y016625D03*
-X003100Y019625D03*
-X003100Y022625D03*
-X003100Y025625D03*
-X003100Y028625D03*
-X005100Y028625D03*
-X005100Y027625D03*
-X005100Y026625D03*
-X005100Y025625D03*
-X005100Y024625D03*
-X005100Y023625D03*
-X005100Y022625D03*
-X005100Y021625D03*
-X005100Y020625D03*
-X005100Y019625D03*
-X005100Y018625D03*
-X005100Y017625D03*
-X005100Y016625D03*
-X005100Y015625D03*
-X005100Y014625D03*
-X005100Y013625D03*
-X005100Y012625D03*
-X005100Y011625D03*
-X005100Y010625D03*
-X005100Y009625D03*
-X005100Y008625D03*
-X005100Y007625D03*
-X005100Y006625D03*
-X005100Y005625D03*
-X005100Y004625D03*
-X005100Y003625D03*
-X005100Y002625D03*
-X005100Y001625D03*
-X005100Y000625D03*
-X005100Y029625D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GML b/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GML
deleted file mode 100644
index f166dff..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GML
+++ /dev/null
@@ -1,17 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GTL b/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GTL
deleted file mode 100644
index 0289310..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GTL
+++ /dev/null
@@ -1,863 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0020*%
-%ADD12C,0.0600*%
-%ADD13R,0.0433X0.0394*%
-%ADD14C,0.0160*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X000260Y005260D02*
-X000260Y005407D01*
-X000260Y005481D02*
-X000260Y005591D01*
-X000297Y005628D01*
-X000370Y005628D01*
-X000407Y005591D01*
-X000407Y005481D01*
-X000480Y005481D02*
-X000260Y005481D01*
-X000260Y005260D02*
-X000480Y005260D01*
-X000370Y005260D02*
-X000370Y005333D01*
-X000407Y005554D02*
-X000480Y005628D01*
-X000443Y005702D02*
-X000480Y005739D01*
-X000480Y005812D01*
-X000443Y005849D01*
-X000443Y005702D02*
-X000297Y005702D01*
-X000260Y005739D01*
-X000260Y005812D01*
-X000297Y005849D01*
-X000260Y006144D02*
-X000260Y006291D01*
-X000260Y006217D02*
-X000480Y006217D01*
-X000443Y006365D02*
-X000370Y006365D01*
-X000333Y006402D01*
-X000333Y006475D01*
-X000370Y006512D01*
-X000407Y006512D01*
-X000407Y006365D01*
-X000443Y006365D02*
-X000480Y006402D01*
-X000480Y006475D01*
-X000443Y006586D02*
-X000407Y006623D01*
-X000407Y006733D01*
-X000370Y006733D02*
-X000480Y006733D01*
-X000480Y006623D01*
-X000443Y006586D01*
-X000333Y006696D02*
-X000370Y006733D01*
-X000333Y006696D02*
-X000333Y006623D01*
-X000333Y006807D02*
-X000333Y006844D01*
-X000370Y006880D01*
-X000333Y006917D01*
-X000370Y006954D01*
-X000480Y006954D01*
-X000480Y006880D02*
-X000370Y006880D01*
-X000333Y006807D02*
-X000480Y006807D01*
-X000443Y007249D02*
-X000480Y007286D01*
-X000480Y007359D01*
-X000443Y007396D01*
-X000297Y007396D01*
-X000260Y007359D01*
-X000260Y007286D01*
-X000297Y007249D01*
-X000333Y007249D01*
-X000370Y007286D01*
-X000370Y007396D01*
-X000443Y007470D02*
-X000297Y007617D01*
-X000260Y007617D01*
-X000260Y007470D01*
-X000333Y007691D02*
-X000260Y007764D01*
-X000480Y007764D01*
-X000480Y007691D02*
-X000480Y007838D01*
-X000480Y008133D02*
-X000480Y008243D01*
-X000443Y008280D01*
-X000297Y008280D01*
-X000260Y008243D01*
-X000260Y008133D01*
-X000480Y008133D01*
-X000480Y008354D02*
-X000480Y008427D01*
-X000480Y008391D02*
-X000260Y008391D01*
-X000260Y008427D02*
-X000260Y008354D01*
-X000297Y008501D02*
-X000260Y008538D01*
-X000260Y008611D01*
-X000297Y008648D01*
-X000443Y008648D01*
-X000480Y008611D01*
-X000480Y008538D01*
-X000443Y008501D01*
-X000297Y008501D01*
-X000297Y008943D02*
-X000260Y008980D01*
-X000260Y009053D01*
-X000297Y009090D01*
-X000370Y009164D02*
-X000333Y009201D01*
-X000333Y009274D01*
-X000370Y009311D01*
-X000443Y009311D01*
-X000480Y009274D01*
-X000480Y009201D01*
-X000443Y009164D01*
-X000370Y009164D01*
-X000443Y009090D02*
-X000480Y009053D01*
-X000480Y008980D01*
-X000443Y008943D01*
-X000297Y008943D01*
-X000333Y009385D02*
-X000333Y009495D01*
-X000370Y009532D01*
-X000480Y009532D01*
-X000480Y009606D02*
-X000333Y009606D01*
-X000333Y009716D01*
-X000370Y009753D01*
-X000480Y009753D01*
-X000443Y009827D02*
-X000370Y009827D01*
-X000333Y009864D01*
-X000333Y009937D01*
-X000370Y009974D01*
-X000407Y009974D01*
-X000407Y009827D01*
-X000443Y009827D02*
-X000480Y009864D01*
-X000480Y009937D01*
-X000443Y010048D02*
-X000370Y010048D01*
-X000333Y010085D01*
-X000333Y010195D01*
-X000333Y010269D02*
-X000333Y010342D01*
-X000297Y010306D02*
-X000443Y010306D01*
-X000480Y010342D01*
-X000443Y010416D02*
-X000480Y010453D01*
-X000480Y010526D01*
-X000443Y010563D01*
-X000370Y010563D01*
-X000333Y010526D01*
-X000333Y010453D01*
-X000370Y010416D01*
-X000443Y010416D01*
-X000480Y010195D02*
-X000480Y010085D01*
-X000443Y010048D01*
-X000407Y010637D02*
-X000333Y010711D01*
-X000333Y010747D01*
-X000333Y010637D02*
-X000480Y010637D01*
-X000480Y011043D02*
-X000333Y011043D01*
-X000260Y011116D01*
-X000333Y011189D01*
-X000480Y011189D01*
-X000443Y011264D02*
-X000370Y011264D01*
-X000333Y011300D01*
-X000333Y011410D01*
-X000260Y011410D02*
-X000480Y011410D01*
-X000480Y011300D01*
-X000443Y011264D01*
-X000370Y011189D02*
-X000370Y011043D01*
-X000443Y011484D02*
-X000407Y011521D01*
-X000407Y011631D01*
-X000370Y011631D02*
-X000480Y011631D01*
-X000480Y011521D01*
-X000443Y011484D01*
-X000333Y011595D02*
-X000370Y011631D01*
-X000333Y011595D02*
-X000333Y011521D01*
-X000333Y011705D02*
-X000333Y011816D01*
-X000370Y011852D01*
-X000443Y011852D01*
-X000480Y011816D01*
-X000480Y011705D01*
-X000443Y011963D02*
-X000480Y012000D01*
-X000443Y011963D02*
-X000297Y011963D01*
-X000333Y011926D02*
-X000333Y012000D01*
-X000370Y012074D02*
-X000333Y012110D01*
-X000333Y012184D01*
-X000370Y012221D01*
-X000407Y012221D01*
-X000407Y012074D01*
-X000443Y012074D02*
-X000370Y012074D01*
-X000443Y012074D02*
-X000480Y012110D01*
-X000480Y012184D01*
-X000480Y012295D02*
-X000333Y012295D01*
-X000333Y012368D02*
-X000333Y012405D01*
-X000333Y012368D02*
-X000407Y012295D01*
-X000333Y011705D02*
-X000553Y011705D01*
-X000480Y009385D02*
-X000333Y009385D01*
-X000443Y007470D02*
-X000480Y007470D01*
-X000657Y006954D02*
-X000620Y006917D01*
-X000620Y006844D01*
-X000657Y006807D01*
-X000693Y006807D01*
-X000730Y006844D01*
-X000730Y006917D01*
-X000767Y006954D01*
-X000803Y006954D01*
-X000840Y006917D01*
-X000840Y006844D01*
-X000803Y006807D01*
-X000767Y006807D01*
-X000730Y006844D01*
-X000730Y006917D02*
-X000693Y006954D01*
-X000657Y006954D01*
-X000620Y006659D02*
-X000840Y006659D01*
-X000840Y006586D02*
-X000840Y006733D01*
-X000803Y006512D02*
-X000840Y006475D01*
-X000840Y006402D01*
-X000803Y006365D01*
-X000767Y006365D01*
-X000730Y006402D01*
-X000730Y006475D01*
-X000767Y006512D01*
-X000803Y006512D01*
-X000730Y006475D02*
-X000693Y006512D01*
-X000657Y006512D01*
-X000620Y006475D01*
-X000620Y006402D01*
-X000657Y006365D01*
-X000693Y006365D01*
-X000730Y006402D01*
-X000657Y006291D02*
-X000803Y006291D01*
-X000840Y006254D01*
-X000840Y006181D01*
-X000803Y006144D01*
-X000657Y006291D01*
-X000620Y006254D01*
-X000620Y006181D01*
-X000657Y006144D01*
-X000803Y006144D01*
-X000730Y006070D02*
-X000730Y005923D01*
-X000620Y006033D01*
-X000840Y006033D01*
-X000840Y005849D02*
-X000840Y005702D01*
-X000840Y005775D02*
-X000620Y005775D01*
-X000693Y005702D01*
-X000657Y005628D02*
-X000803Y005481D01*
-X000840Y005518D01*
-X000840Y005591D01*
-X000803Y005628D01*
-X000657Y005628D01*
-X000620Y005591D01*
-X000620Y005518D01*
-X000657Y005481D01*
-X000803Y005481D01*
-X000840Y005407D02*
-X000840Y005260D01*
-X000693Y005407D01*
-X000657Y005407D01*
-X000620Y005370D01*
-X000620Y005297D01*
-X000657Y005260D01*
-X000693Y006586D02*
-X000620Y006659D01*
-X000657Y020385D02*
-X000620Y020422D01*
-X000620Y020495D01*
-X000657Y020532D01*
-X000693Y020532D01*
-X000840Y020385D01*
-X000840Y020532D01*
-X000803Y020606D02*
-X000657Y020753D01*
-X000803Y020753D01*
-X000840Y020716D01*
-X000840Y020643D01*
-X000803Y020606D01*
-X000657Y020606D01*
-X000620Y020643D01*
-X000620Y020716D01*
-X000657Y020753D01*
-X000693Y020827D02*
-X000620Y020900D01*
-X000840Y020900D01*
-X000840Y020827D02*
-X000840Y020974D01*
-X000840Y021158D02*
-X000620Y021158D01*
-X000730Y021048D01*
-X000730Y021195D01*
-X000803Y021269D02*
-X000657Y021416D01*
-X000803Y021416D01*
-X000840Y021379D01*
-X000840Y021306D01*
-X000803Y021269D01*
-X000657Y021269D01*
-X000620Y021306D01*
-X000620Y021379D01*
-X000657Y021416D01*
-X000657Y021490D02*
-X000620Y021527D01*
-X000620Y021600D01*
-X000657Y021637D01*
-X000693Y021637D01*
-X000730Y021600D01*
-X000730Y021527D01*
-X000693Y021490D01*
-X000657Y021490D01*
-X000730Y021527D02*
-X000767Y021490D01*
-X000803Y021490D01*
-X000840Y021527D01*
-X000840Y021600D01*
-X000803Y021637D01*
-X000767Y021637D01*
-X000730Y021600D01*
-X000693Y021711D02*
-X000620Y021784D01*
-X000840Y021784D01*
-X000840Y021711D02*
-X000840Y021858D01*
-X000803Y021932D02*
-X000840Y021969D01*
-X000840Y022042D01*
-X000803Y022079D01*
-X000767Y022079D01*
-X000730Y022042D01*
-X000730Y021969D01*
-X000693Y021932D01*
-X000657Y021932D01*
-X000620Y021969D01*
-X000620Y022042D01*
-X000657Y022079D01*
-X000693Y022079D01*
-X000730Y022042D01*
-X000730Y021969D02*
-X000767Y021932D01*
-X000803Y021932D01*
-X000480Y021932D02*
-X000333Y021932D01*
-X000333Y021969D01*
-X000370Y022005D01*
-X000333Y022042D01*
-X000370Y022079D01*
-X000480Y022079D01*
-X000480Y022005D02*
-X000370Y022005D01*
-X000370Y021858D02*
-X000480Y021858D01*
-X000480Y021748D01*
-X000443Y021711D01*
-X000407Y021748D01*
-X000407Y021858D01*
-X000370Y021858D02*
-X000333Y021821D01*
-X000333Y021748D01*
-X000370Y021637D02*
-X000333Y021600D01*
-X000333Y021527D01*
-X000370Y021490D01*
-X000443Y021490D01*
-X000480Y021527D01*
-X000480Y021600D01*
-X000407Y021637D02*
-X000407Y021490D01*
-X000407Y021637D02*
-X000370Y021637D01*
-X000480Y021342D02*
-X000260Y021342D01*
-X000260Y021269D02*
-X000260Y021416D01*
-X000297Y020974D02*
-X000260Y020937D01*
-X000260Y020864D01*
-X000297Y020827D01*
-X000443Y020827D01*
-X000480Y020864D01*
-X000480Y020937D01*
-X000443Y020974D01*
-X000480Y020753D02*
-X000407Y020679D01*
-X000407Y020716D02*
-X000407Y020606D01*
-X000480Y020606D02*
-X000260Y020606D01*
-X000260Y020716D01*
-X000297Y020753D01*
-X000370Y020753D01*
-X000407Y020716D01*
-X000370Y020458D02*
-X000370Y020385D01*
-X000480Y020385D02*
-X000260Y020385D01*
-X000260Y020532D01*
-X000297Y022374D02*
-X000260Y022411D01*
-X000260Y022484D01*
-X000297Y022521D01*
-X000443Y022521D01*
-X000480Y022484D01*
-X000480Y022411D01*
-X000443Y022374D01*
-X000370Y022411D02*
-X000370Y022521D01*
-X000443Y022595D02*
-X000297Y022742D01*
-X000260Y022742D01*
-X000260Y022595D01*
-X000370Y022411D02*
-X000333Y022374D01*
-X000297Y022374D01*
-X000333Y022816D02*
-X000260Y022889D01*
-X000480Y022889D01*
-X000480Y022816D02*
-X000480Y022963D01*
-X000480Y023258D02*
-X000480Y023368D01*
-X000443Y023405D01*
-X000297Y023405D01*
-X000260Y023368D01*
-X000260Y023258D01*
-X000480Y023258D01*
-X000480Y023479D02*
-X000480Y023552D01*
-X000480Y023516D02*
-X000260Y023516D01*
-X000260Y023552D02*
-X000260Y023479D01*
-X000297Y023626D02*
-X000260Y023663D01*
-X000260Y023736D01*
-X000297Y023773D01*
-X000443Y023773D01*
-X000480Y023736D01*
-X000480Y023663D01*
-X000443Y023626D01*
-X000297Y023626D01*
-X000297Y024068D02*
-X000260Y024105D01*
-X000260Y024178D01*
-X000297Y024215D01*
-X000370Y024289D02*
-X000333Y024326D01*
-X000333Y024399D01*
-X000370Y024436D01*
-X000443Y024436D01*
-X000480Y024399D01*
-X000480Y024326D01*
-X000443Y024289D01*
-X000370Y024289D01*
-X000443Y024215D02*
-X000480Y024178D01*
-X000480Y024105D01*
-X000443Y024068D01*
-X000297Y024068D01*
-X000333Y024510D02*
-X000333Y024620D01*
-X000370Y024657D01*
-X000480Y024657D01*
-X000480Y024731D02*
-X000333Y024731D01*
-X000333Y024841D01*
-X000370Y024878D01*
-X000480Y024878D01*
-X000443Y024952D02*
-X000370Y024952D01*
-X000333Y024989D01*
-X000333Y025062D01*
-X000370Y025099D01*
-X000407Y025099D01*
-X000407Y024952D01*
-X000443Y024952D02*
-X000480Y024989D01*
-X000480Y025062D01*
-X000443Y025173D02*
-X000370Y025173D01*
-X000333Y025210D01*
-X000333Y025320D01*
-X000333Y025394D02*
-X000333Y025467D01*
-X000297Y025431D02*
-X000443Y025431D01*
-X000480Y025467D01*
-X000443Y025541D02*
-X000480Y025578D01*
-X000480Y025651D01*
-X000443Y025688D01*
-X000370Y025688D01*
-X000333Y025651D01*
-X000333Y025578D01*
-X000370Y025541D01*
-X000443Y025541D01*
-X000480Y025320D02*
-X000480Y025210D01*
-X000443Y025173D01*
-X000407Y025762D02*
-X000333Y025836D01*
-X000333Y025872D01*
-X000333Y025762D02*
-X000480Y025762D01*
-X000480Y026168D02*
-X000333Y026168D01*
-X000260Y026241D01*
-X000333Y026314D01*
-X000480Y026314D01*
-X000443Y026389D02*
-X000370Y026389D01*
-X000333Y026425D01*
-X000333Y026535D01*
-X000260Y026535D02*
-X000480Y026535D01*
-X000480Y026425D01*
-X000443Y026389D01*
-X000370Y026314D02*
-X000370Y026168D01*
-X000443Y026609D02*
-X000407Y026646D01*
-X000407Y026756D01*
-X000370Y026756D02*
-X000480Y026756D01*
-X000480Y026646D01*
-X000443Y026609D01*
-X000333Y026720D02*
-X000370Y026756D01*
-X000333Y026720D02*
-X000333Y026646D01*
-X000333Y026830D02*
-X000333Y026941D01*
-X000370Y026977D01*
-X000443Y026977D01*
-X000480Y026941D01*
-X000480Y026830D01*
-X000443Y027088D02*
-X000480Y027125D01*
-X000443Y027088D02*
-X000297Y027088D01*
-X000333Y027051D02*
-X000333Y027125D01*
-X000370Y027199D02*
-X000333Y027235D01*
-X000333Y027309D01*
-X000370Y027346D01*
-X000407Y027346D01*
-X000407Y027199D01*
-X000443Y027199D02*
-X000370Y027199D01*
-X000443Y027199D02*
-X000480Y027235D01*
-X000480Y027309D01*
-X000480Y027420D02*
-X000333Y027420D01*
-X000333Y027493D02*
-X000333Y027530D01*
-X000333Y027493D02*
-X000407Y027420D01*
-X000333Y026830D02*
-X000553Y026830D01*
-X000480Y024510D02*
-X000333Y024510D01*
-X000443Y022595D02*
-X000480Y022595D01*
-D12*
-X001100Y022625D03*
-X001100Y019625D03*
-X001100Y016625D03*
-X001100Y013625D03*
-X001100Y010625D03*
-X001100Y007625D03*
-X001100Y004625D03*
-X001100Y001625D03*
-X002100Y001625D03*
-X002100Y004625D03*
-X002100Y007625D03*
-X002100Y010625D03*
-X002100Y013625D03*
-X002100Y016625D03*
-X002100Y019625D03*
-X002100Y022625D03*
-X002100Y025625D03*
-X002100Y028625D03*
-X003100Y028625D03*
-X003100Y025625D03*
-X003100Y022625D03*
-X003100Y019625D03*
-X003100Y016625D03*
-X003100Y013625D03*
-X003100Y010625D03*
-X003100Y007625D03*
-X003100Y004625D03*
-X003100Y001625D03*
-X005100Y001625D03*
-X005100Y000625D03*
-X005100Y002625D03*
-X005100Y003625D03*
-X005100Y004625D03*
-X005100Y005625D03*
-X005100Y006625D03*
-X005100Y007625D03*
-X005100Y008625D03*
-X005100Y009625D03*
-X005100Y010625D03*
-X005100Y011625D03*
-X005100Y012625D03*
-X005100Y013625D03*
-X005100Y014625D03*
-X005100Y015625D03*
-X005100Y016625D03*
-X005100Y017625D03*
-X005100Y018625D03*
-X005100Y019625D03*
-X005100Y020625D03*
-X005100Y021625D03*
-X005100Y022625D03*
-X005100Y023625D03*
-X005100Y024625D03*
-X005100Y025625D03*
-X005100Y026625D03*
-X005100Y027625D03*
-X005100Y028625D03*
-X005100Y029625D03*
-X001100Y028625D03*
-X001100Y025625D03*
-D13*
-X001265Y024750D03*
-X001935Y024750D03*
-X001935Y021750D03*
-X001935Y018750D03*
-X001265Y018750D03*
-X001265Y021750D03*
-X001265Y015750D03*
-X001935Y015750D03*
-X001935Y012750D03*
-X001265Y012750D03*
-X001265Y009750D03*
-X001935Y009750D03*
-X001935Y006750D03*
-X001265Y006750D03*
-X001265Y003750D03*
-X001935Y003750D03*
-X001935Y000750D03*
-X001265Y000750D03*
-X001265Y027750D03*
-X001935Y027750D03*
-D14*
-X002100Y027750D01*
-X002100Y028625D01*
-X002100Y029250D01*
-X004100Y029250D01*
-X004100Y028625D01*
-X005100Y028625D01*
-X005100Y027625D02*
-X003100Y027625D01*
-X003100Y028625D01*
-X003100Y025625D02*
-X003100Y024625D01*
-X005100Y024625D01*
-X005100Y023625D02*
-X001100Y023625D01*
-X001100Y022625D01*
-X001100Y021750D01*
-X001265Y021750D01*
-X001100Y020625D02*
-X005100Y020625D01*
-X005100Y021625D02*
-X003100Y021625D01*
-X003100Y022625D01*
-X003100Y019625D02*
-X003100Y018625D01*
-X005100Y018625D01*
-X005100Y017625D02*
-X001100Y017625D01*
-X001100Y016625D01*
-X001100Y015750D01*
-X001265Y015750D01*
-X001100Y014625D02*
-X005100Y014625D01*
-X005100Y013625D02*
-X004100Y013625D01*
-X004100Y014250D01*
-X002100Y014250D01*
-X002100Y013625D01*
-X002100Y012750D01*
-X001935Y012750D01*
-X002100Y011250D02*
-X004100Y011250D01*
-X004100Y010625D01*
-X005100Y010625D01*
-X005100Y011625D02*
-X001100Y011625D01*
-X001100Y010625D01*
-X001100Y009750D01*
-X001265Y009750D01*
-X001100Y008625D02*
-X005100Y008625D01*
-X005100Y007625D02*
-X004100Y007625D01*
-X004100Y008250D01*
-X002100Y008250D01*
-X002100Y007625D01*
-X002100Y006750D01*
-X001935Y006750D01*
-X002100Y005250D02*
-X004100Y005250D01*
-X004100Y004625D01*
-X005100Y004625D01*
-X005100Y005625D02*
-X001100Y005625D01*
-X001100Y004625D01*
-X001100Y003750D01*
-X001265Y003750D01*
-X001100Y002625D02*
-X001100Y002500D01*
-X001100Y001625D01*
-X001100Y000750D01*
-X001265Y000750D01*
-X001100Y002625D02*
-X005100Y002625D01*
-X005100Y001625D02*
-X004100Y001625D01*
-X004100Y002250D01*
-X002100Y002250D01*
-X002100Y001625D01*
-X002100Y000750D01*
-X001935Y000750D01*
-X001935Y003750D02*
-X002100Y003750D01*
-X002100Y004625D01*
-X002100Y005250D01*
-X001265Y006750D02*
-X001100Y006750D01*
-X001100Y007625D01*
-X001100Y008625D01*
-X001935Y009750D02*
-X002100Y009750D01*
-X002100Y010625D01*
-X002100Y011250D01*
-X001265Y012750D02*
-X001100Y012750D01*
-X001100Y013625D01*
-X001100Y014625D01*
-X001935Y015750D02*
-X002100Y015750D01*
-X002100Y016625D01*
-X002100Y017250D01*
-X004100Y017250D01*
-X004100Y016625D01*
-X005100Y016625D01*
-X005100Y015625D02*
-X003100Y015625D01*
-X003100Y016625D01*
-X003100Y013625D02*
-X003100Y012625D01*
-X005100Y012625D01*
-X005100Y009625D02*
-X003100Y009625D01*
-X003100Y010625D01*
-X003100Y007625D02*
-X003100Y006625D01*
-X005100Y006625D01*
-X005100Y003625D02*
-X003100Y003625D01*
-X003100Y004625D01*
-X003100Y001625D02*
-X003100Y000625D01*
-X005100Y000625D01*
-X002100Y018750D02*
-X001935Y018750D01*
-X002100Y018750D02*
-X002100Y019625D01*
-X002100Y020250D01*
-X004100Y020250D01*
-X004100Y019625D01*
-X005100Y019625D01*
-X005100Y022625D02*
-X004100Y022625D01*
-X004100Y023250D01*
-X002100Y023250D01*
-X002100Y022625D01*
-X002100Y021750D01*
-X001935Y021750D01*
-X001935Y024750D02*
-X002100Y024750D01*
-X002100Y025625D01*
-X002100Y026250D01*
-X004100Y026250D01*
-X004100Y025625D01*
-X005100Y025625D01*
-X005100Y026625D02*
-X001100Y026625D01*
-X001100Y025625D01*
-X001100Y024750D01*
-X001265Y024750D01*
-X001265Y027750D02*
-X001100Y027750D01*
-X001100Y028625D01*
-X001100Y029625D01*
-X005100Y029625D01*
-X001265Y018750D02*
-X001100Y018750D01*
-X001100Y019625D01*
-X001100Y020625D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GTO b/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GTO
deleted file mode 100644
index 64bf99c..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GTO
+++ /dev/null
@@ -1,772 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0030*%
-%ADD12C,0.0160*%
-%ADD13C,0.0020*%
-%ADD14C,0.0050*%
-%ADD15C,0.0010*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X000865Y002575D02*
-X001112Y002575D01*
-X001970Y002575D02*
-X002217Y002575D01*
-X002093Y002452D02*
-X002093Y002699D01*
-X002707Y002699D02*
-X002707Y002637D01*
-X002768Y002575D01*
-X002892Y002575D01*
-X002953Y002513D01*
-X002953Y002452D01*
-X002892Y002390D01*
-X002768Y002390D01*
-X002707Y002452D01*
-X002707Y002699D02*
-X002768Y002760D01*
-X002892Y002760D01*
-X002953Y002699D01*
-X003543Y003640D02*
-X003495Y003688D01*
-X003495Y003785D01*
-X003543Y003833D01*
-X003640Y003785D02*
-X003688Y003833D01*
-X003737Y003833D01*
-X003785Y003785D01*
-X003785Y003688D01*
-X003737Y003640D01*
-X003640Y003688D02*
-X003640Y003785D01*
-X003640Y003688D02*
-X003592Y003640D01*
-X003543Y003640D01*
-X003640Y004524D02*
-X003640Y004717D01*
-X003543Y004621D02*
-X003737Y004621D01*
-X003640Y005408D02*
-X003640Y005601D01*
-X003592Y006640D02*
-X003543Y006640D01*
-X003495Y006688D01*
-X003495Y006785D01*
-X003543Y006833D01*
-X003640Y006785D02*
-X003688Y006833D01*
-X003737Y006833D01*
-X003785Y006785D01*
-X003785Y006688D01*
-X003737Y006640D01*
-X003640Y006688D02*
-X003592Y006640D01*
-X003640Y006688D02*
-X003640Y006785D01*
-X003640Y007524D02*
-X003640Y007717D01*
-X003543Y007621D02*
-X003737Y007621D01*
-X003640Y008408D02*
-X003640Y008601D01*
-X003592Y009640D02*
-X003543Y009640D01*
-X003495Y009688D01*
-X003495Y009785D01*
-X003543Y009833D01*
-X003640Y009785D02*
-X003688Y009833D01*
-X003737Y009833D01*
-X003785Y009785D01*
-X003785Y009688D01*
-X003737Y009640D01*
-X003640Y009688D02*
-X003592Y009640D01*
-X003640Y009688D02*
-X003640Y009785D01*
-X003640Y010524D02*
-X003640Y010717D01*
-X003543Y010621D02*
-X003737Y010621D01*
-X003640Y011408D02*
-X003640Y011601D01*
-X003592Y012640D02*
-X003543Y012640D01*
-X003495Y012688D01*
-X003495Y012785D01*
-X003543Y012833D01*
-X003640Y012785D02*
-X003640Y012688D01*
-X003592Y012640D01*
-X003640Y012785D02*
-X003688Y012833D01*
-X003737Y012833D01*
-X003785Y012785D01*
-X003785Y012688D01*
-X003737Y012640D01*
-X003640Y013524D02*
-X003640Y013717D01*
-X003543Y013621D02*
-X003737Y013621D01*
-X003640Y014408D02*
-X003640Y014601D01*
-X003592Y015640D02*
-X003543Y015640D01*
-X003495Y015688D01*
-X003495Y015785D01*
-X003543Y015833D01*
-X003640Y015785D02*
-X003640Y015688D01*
-X003592Y015640D01*
-X003640Y015785D02*
-X003688Y015833D01*
-X003737Y015833D01*
-X003785Y015785D01*
-X003785Y015688D01*
-X003737Y015640D01*
-X003640Y016524D02*
-X003640Y016717D01*
-X003543Y016621D02*
-X003737Y016621D01*
-X003640Y017408D02*
-X003640Y017601D01*
-X003592Y018640D02*
-X003543Y018640D01*
-X003495Y018688D01*
-X003495Y018785D01*
-X003543Y018833D01*
-X003640Y018785D02*
-X003640Y018688D01*
-X003592Y018640D01*
-X003640Y018785D02*
-X003688Y018833D01*
-X003737Y018833D01*
-X003785Y018785D01*
-X003785Y018688D01*
-X003737Y018640D01*
-X003640Y019524D02*
-X003640Y019717D01*
-X003543Y019621D02*
-X003737Y019621D01*
-X003640Y020408D02*
-X003640Y020601D01*
-X003592Y021640D02*
-X003543Y021640D01*
-X003495Y021688D01*
-X003495Y021785D01*
-X003543Y021833D01*
-X003640Y021785D02*
-X003640Y021688D01*
-X003592Y021640D01*
-X003640Y021785D02*
-X003688Y021833D01*
-X003737Y021833D01*
-X003785Y021785D01*
-X003785Y021688D01*
-X003737Y021640D01*
-X003640Y022524D02*
-X003640Y022717D01*
-X003543Y022621D02*
-X003737Y022621D01*
-X003640Y023408D02*
-X003640Y023601D01*
-X003592Y024640D02*
-X003543Y024640D01*
-X003495Y024688D01*
-X003495Y024785D01*
-X003543Y024833D01*
-X003640Y024785D02*
-X003640Y024688D01*
-X003592Y024640D01*
-X003640Y024785D02*
-X003688Y024833D01*
-X003737Y024833D01*
-X003785Y024785D01*
-X003785Y024688D01*
-X003737Y024640D01*
-X003640Y025524D02*
-X003640Y025717D01*
-X003543Y025621D02*
-X003737Y025621D01*
-X003640Y026408D02*
-X003640Y026601D01*
-X003592Y027640D02*
-X003543Y027640D01*
-X003495Y027688D01*
-X003495Y027785D01*
-X003543Y027833D01*
-X003640Y027785D02*
-X003688Y027833D01*
-X003737Y027833D01*
-X003785Y027785D01*
-X003785Y027688D01*
-X003737Y027640D01*
-X003640Y027688D02*
-X003640Y027785D01*
-X003640Y027688D02*
-X003592Y027640D01*
-X003640Y028524D02*
-X003640Y028717D01*
-X003543Y028621D02*
-X003737Y028621D01*
-X003640Y029408D02*
-X003640Y029601D01*
-X002953Y029513D02*
-X002953Y029452D01*
-X002892Y029390D01*
-X002768Y029390D01*
-X002707Y029452D01*
-X002768Y029575D02*
-X002707Y029637D01*
-X002707Y029699D01*
-X002768Y029760D01*
-X002892Y029760D01*
-X002953Y029699D01*
-X002892Y029575D02*
-X002953Y029513D01*
-X002892Y029575D02*
-X002768Y029575D01*
-X002217Y029575D02*
-X001970Y029575D01*
-X002093Y029452D02*
-X002093Y029699D01*
-X001112Y029575D02*
-X000865Y029575D01*
-X003640Y002601D02*
-X003640Y002408D01*
-X003640Y001717D02*
-X003640Y001524D01*
-X003543Y001621D02*
-X003737Y001621D01*
-X003737Y000833D02*
-X003688Y000833D01*
-X003640Y000785D01*
-X003640Y000688D01*
-X003592Y000640D01*
-X003543Y000640D01*
-X003495Y000688D01*
-X003495Y000785D01*
-X003543Y000833D01*
-X003737Y000833D02*
-X003785Y000785D01*
-X003785Y000688D01*
-X003737Y000640D01*
-D12*
-X006600Y003125D02*
-X000225Y003125D01*
-X000225Y006125D02*
-X006600Y006125D01*
-X006600Y009125D02*
-X000225Y009125D01*
-X000225Y012125D02*
-X006600Y012125D01*
-X006600Y015125D02*
-X000225Y015125D01*
-X000225Y018125D02*
-X006600Y018125D01*
-X006600Y021125D02*
-X000225Y021125D01*
-X000225Y024125D02*
-X006600Y024125D01*
-X006600Y027125D02*
-X000225Y027125D01*
-D13*
-X000282Y028510D02*
-X000245Y028547D01*
-X000245Y028620D01*
-X000282Y028657D01*
-X000428Y028510D01*
-X000465Y028547D01*
-X000465Y028620D01*
-X000428Y028657D01*
-X000282Y028657D01*
-X000282Y028510D02*
-X000428Y028510D01*
-X000465Y025657D02*
-X000465Y025510D01*
-X000318Y025657D01*
-X000282Y025657D01*
-X000245Y025620D01*
-X000245Y025547D01*
-X000282Y025510D01*
-X000282Y022657D02*
-X000245Y022620D01*
-X000245Y022547D01*
-X000282Y022510D01*
-X000282Y022657D02*
-X000318Y022657D01*
-X000465Y022510D01*
-X000465Y022657D01*
-X000392Y019657D02*
-X000428Y019657D01*
-X000465Y019620D01*
-X000465Y019547D01*
-X000428Y019510D01*
-X000355Y019583D02*
-X000355Y019620D01*
-X000392Y019657D01*
-X000355Y019620D02*
-X000318Y019657D01*
-X000282Y019657D01*
-X000245Y019620D01*
-X000245Y019547D01*
-X000282Y019510D01*
-X000355Y016657D02*
-X000355Y016510D01*
-X000245Y016620D01*
-X000465Y016620D01*
-X000428Y013657D02*
-X000355Y013657D01*
-X000318Y013620D01*
-X000318Y013583D01*
-X000355Y013510D01*
-X000245Y013510D01*
-X000245Y013657D01*
-X000428Y013657D02*
-X000465Y013620D01*
-X000465Y013547D01*
-X000428Y013510D01*
-X000428Y010657D02*
-X000392Y010657D01*
-X000355Y010620D01*
-X000355Y010510D01*
-X000428Y010510D01*
-X000465Y010547D01*
-X000465Y010620D01*
-X000428Y010657D01*
-X000282Y010583D02*
-X000355Y010510D01*
-X000282Y010583D02*
-X000245Y010657D01*
-X000245Y007657D02*
-X000282Y007657D01*
-X000428Y007510D01*
-X000465Y007510D01*
-X000245Y007510D02*
-X000245Y007657D01*
-X000282Y004657D02*
-X000245Y004620D01*
-X000245Y004547D01*
-X000282Y004510D01*
-X000318Y004510D01*
-X000355Y004547D01*
-X000355Y004620D01*
-X000392Y004657D01*
-X000428Y004657D01*
-X000465Y004620D01*
-X000465Y004547D01*
-X000428Y004510D01*
-X000392Y004510D01*
-X000355Y004547D01*
-X000355Y004620D02*
-X000318Y004657D01*
-X000282Y004657D01*
-X000282Y001657D02*
-X000245Y001620D01*
-X000245Y001547D01*
-X000282Y001510D01*
-X000318Y001510D01*
-X000355Y001547D01*
-X000355Y001657D01*
-X000428Y001657D02*
-X000282Y001657D01*
-X000428Y001657D02*
-X000465Y001620D01*
-X000465Y001547D01*
-X000428Y001510D01*
-X006370Y001547D02*
-X006407Y001510D01*
-X006443Y001510D01*
-X006480Y001547D01*
-X006480Y001657D01*
-X006553Y001657D02*
-X006407Y001657D01*
-X006370Y001620D01*
-X006370Y001547D01*
-X006553Y001510D02*
-X006590Y001547D01*
-X006590Y001620D01*
-X006553Y001657D01*
-X006553Y004510D02*
-X006517Y004510D01*
-X006480Y004547D01*
-X006480Y004620D01*
-X006517Y004657D01*
-X006553Y004657D01*
-X006590Y004620D01*
-X006590Y004547D01*
-X006553Y004510D01*
-X006480Y004547D02*
-X006443Y004510D01*
-X006407Y004510D01*
-X006370Y004547D01*
-X006370Y004620D01*
-X006407Y004657D01*
-X006443Y004657D01*
-X006480Y004620D01*
-X006553Y007510D02*
-X006590Y007510D01*
-X006553Y007510D02*
-X006407Y007657D01*
-X006370Y007657D01*
-X006370Y007510D01*
-X006480Y010510D02*
-X006480Y010620D01*
-X006517Y010657D01*
-X006553Y010657D01*
-X006590Y010620D01*
-X006590Y010547D01*
-X006553Y010510D01*
-X006480Y010510D01*
-X006407Y010583D01*
-X006370Y010657D01*
-X006370Y013510D02*
-X006480Y013510D01*
-X006443Y013583D01*
-X006443Y013620D01*
-X006480Y013657D01*
-X006553Y013657D01*
-X006590Y013620D01*
-X006590Y013547D01*
-X006553Y013510D01*
-X006370Y013510D02*
-X006370Y013657D01*
-X006480Y016510D02*
-X006370Y016620D01*
-X006590Y016620D01*
-X006480Y016657D02*
-X006480Y016510D01*
-X006553Y019510D02*
-X006590Y019547D01*
-X006590Y019620D01*
-X006553Y019657D01*
-X006517Y019657D01*
-X006480Y019620D01*
-X006480Y019583D01*
-X006480Y019620D02*
-X006443Y019657D01*
-X006407Y019657D01*
-X006370Y019620D01*
-X006370Y019547D01*
-X006407Y019510D01*
-X006407Y022510D02*
-X006370Y022547D01*
-X006370Y022620D01*
-X006407Y022657D01*
-X006443Y022657D01*
-X006590Y022510D01*
-X006590Y022657D01*
-X006590Y025510D02*
-X006443Y025657D01*
-X006407Y025657D01*
-X006370Y025620D01*
-X006370Y025547D01*
-X006407Y025510D01*
-X006590Y025510D02*
-X006590Y025657D01*
-X006553Y028510D02*
-X006407Y028657D01*
-X006553Y028657D01*
-X006590Y028620D01*
-X006590Y028547D01*
-X006553Y028510D01*
-X006407Y028510D01*
-X006370Y028547D01*
-X006370Y028620D01*
-X006407Y028657D01*
-D14*
-X006330Y030095D02*
-X006330Y027155D01*
-X004680Y027155D01*
-X003880Y027155D01*
-X003880Y030095D01*
-X004680Y030095D01*
-X006330Y030095D01*
-X006330Y027095D02*
-X006330Y024155D01*
-X004680Y024155D01*
-X003880Y024155D01*
-X003880Y027095D01*
-X004680Y027095D01*
-X006330Y027095D01*
-X006330Y024095D02*
-X006330Y021155D01*
-X004680Y021155D01*
-X003880Y021155D01*
-X003880Y024095D01*
-X004680Y024095D01*
-X006330Y024095D01*
-X006330Y021095D02*
-X006330Y018155D01*
-X004680Y018155D01*
-X003880Y018155D01*
-X003880Y021095D01*
-X004680Y021095D01*
-X006330Y021095D01*
-X006330Y018095D02*
-X006330Y015155D01*
-X004680Y015155D01*
-X003880Y015155D01*
-X003880Y018095D01*
-X004680Y018095D01*
-X006330Y018095D01*
-X006330Y015095D02*
-X006330Y012155D01*
-X004680Y012155D01*
-X003880Y012155D01*
-X003880Y015095D01*
-X004680Y015095D01*
-X006330Y015095D01*
-X006330Y012095D02*
-X006330Y009155D01*
-X004680Y009155D01*
-X003880Y009155D01*
-X003880Y012095D01*
-X004680Y012095D01*
-X006330Y012095D01*
-X006330Y009095D02*
-X006330Y006155D01*
-X004680Y006155D01*
-X003880Y006155D01*
-X003880Y009095D01*
-X004680Y009095D01*
-X006330Y009095D01*
-X006330Y006095D02*
-X006330Y003155D01*
-X004680Y003155D01*
-X003880Y003155D01*
-X003880Y006095D01*
-X004680Y006095D01*
-X006330Y006095D01*
-X006330Y003095D02*
-X006330Y000155D01*
-X004680Y000155D01*
-X003880Y000155D01*
-X003880Y003095D01*
-X004680Y003095D01*
-X006330Y003095D01*
-X004680Y003095D02*
-X004680Y000155D01*
-X004680Y003155D02*
-X004680Y006095D01*
-X004680Y006155D02*
-X004680Y009095D01*
-X004680Y009155D02*
-X004680Y012095D01*
-X004680Y012155D02*
-X004680Y015095D01*
-X004680Y015155D02*
-X004680Y018095D01*
-X004680Y018155D02*
-X004680Y021095D01*
-X004680Y021155D02*
-X004680Y024095D01*
-X004680Y024155D02*
-X004680Y027095D01*
-X004680Y027155D02*
-X004680Y030095D01*
-D15*
-X001452Y028205D02*
-X001452Y028055D01*
-X001402Y028055D02*
-X001502Y028055D01*
-X001402Y028155D02*
-X001452Y028205D01*
-X001355Y028180D02*
-X001330Y028205D01*
-X001280Y028205D01*
-X001255Y028180D01*
-X001255Y028080D01*
-X001280Y028055D01*
-X001330Y028055D01*
-X001355Y028080D01*
-X001330Y025205D02*
-X001280Y025205D01*
-X001255Y025180D01*
-X001255Y025080D01*
-X001280Y025055D01*
-X001330Y025055D01*
-X001355Y025080D01*
-X001402Y025055D02*
-X001502Y025155D01*
-X001502Y025180D01*
-X001477Y025205D01*
-X001427Y025205D01*
-X001402Y025180D01*
-X001355Y025180D02*
-X001330Y025205D01*
-X001402Y025055D02*
-X001502Y025055D01*
-X001427Y022205D02*
-X001477Y022205D01*
-X001502Y022180D01*
-X001502Y022155D01*
-X001477Y022130D01*
-X001502Y022105D01*
-X001502Y022080D01*
-X001477Y022055D01*
-X001427Y022055D01*
-X001402Y022080D01*
-X001355Y022080D02*
-X001330Y022055D01*
-X001280Y022055D01*
-X001255Y022080D01*
-X001255Y022180D01*
-X001280Y022205D01*
-X001330Y022205D01*
-X001355Y022180D01*
-X001402Y022180D02*
-X001427Y022205D01*
-X001452Y022130D02*
-X001477Y022130D01*
-X001477Y019205D02*
-X001402Y019130D01*
-X001502Y019130D01*
-X001477Y019055D02*
-X001477Y019205D01*
-X001355Y019180D02*
-X001330Y019205D01*
-X001280Y019205D01*
-X001255Y019180D01*
-X001255Y019080D01*
-X001280Y019055D01*
-X001330Y019055D01*
-X001355Y019080D01*
-X001330Y016205D02*
-X001280Y016205D01*
-X001255Y016180D01*
-X001255Y016080D01*
-X001280Y016055D01*
-X001330Y016055D01*
-X001355Y016080D01*
-X001402Y016080D02*
-X001427Y016055D01*
-X001477Y016055D01*
-X001502Y016080D01*
-X001502Y016130D01*
-X001477Y016155D01*
-X001452Y016155D01*
-X001402Y016130D01*
-X001402Y016205D01*
-X001502Y016205D01*
-X001355Y016180D02*
-X001330Y016205D01*
-X001330Y013205D02*
-X001280Y013205D01*
-X001255Y013180D01*
-X001255Y013080D01*
-X001280Y013055D01*
-X001330Y013055D01*
-X001355Y013080D01*
-X001402Y013080D02*
-X001427Y013055D01*
-X001477Y013055D01*
-X001502Y013080D01*
-X001502Y013105D01*
-X001477Y013130D01*
-X001402Y013130D01*
-X001402Y013080D01*
-X001402Y013130D02*
-X001452Y013180D01*
-X001502Y013205D01*
-X001355Y013180D02*
-X001330Y013205D01*
-X001330Y010205D02*
-X001280Y010205D01*
-X001255Y010180D01*
-X001255Y010080D01*
-X001280Y010055D01*
-X001330Y010055D01*
-X001355Y010080D01*
-X001402Y010080D02*
-X001402Y010055D01*
-X001402Y010080D02*
-X001502Y010180D01*
-X001502Y010205D01*
-X001402Y010205D01*
-X001355Y010180D02*
-X001330Y010205D01*
-X001330Y007205D02*
-X001280Y007205D01*
-X001255Y007180D01*
-X001255Y007080D01*
-X001280Y007055D01*
-X001330Y007055D01*
-X001355Y007080D01*
-X001402Y007080D02*
-X001402Y007105D01*
-X001427Y007130D01*
-X001477Y007130D01*
-X001502Y007105D01*
-X001502Y007080D01*
-X001477Y007055D01*
-X001427Y007055D01*
-X001402Y007080D01*
-X001427Y007130D02*
-X001402Y007155D01*
-X001402Y007180D01*
-X001427Y007205D01*
-X001477Y007205D01*
-X001502Y007180D01*
-X001502Y007155D01*
-X001477Y007130D01*
-X001355Y007180D02*
-X001330Y007205D01*
-X001330Y004205D02*
-X001280Y004205D01*
-X001255Y004180D01*
-X001255Y004080D01*
-X001280Y004055D01*
-X001330Y004055D01*
-X001355Y004080D01*
-X001402Y004080D02*
-X001427Y004055D01*
-X001477Y004055D01*
-X001502Y004080D01*
-X001502Y004180D01*
-X001477Y004205D01*
-X001427Y004205D01*
-X001402Y004180D01*
-X001402Y004155D01*
-X001427Y004130D01*
-X001502Y004130D01*
-X001355Y004180D02*
-X001330Y004205D01*
-X001330Y001205D02*
-X001280Y001205D01*
-X001255Y001180D01*
-X001255Y001080D01*
-X001280Y001055D01*
-X001330Y001055D01*
-X001355Y001080D01*
-X001402Y001055D02*
-X001502Y001055D01*
-X001452Y001055D02*
-X001452Y001205D01*
-X001402Y001155D01*
-X001355Y001180D02*
-X001330Y001205D01*
-X001550Y001180D02*
-X001575Y001205D01*
-X001625Y001205D01*
-X001650Y001180D01*
-X001550Y001080D01*
-X001575Y001055D01*
-X001625Y001055D01*
-X001650Y001080D01*
-X001650Y001180D01*
-X001550Y001180D02*
-X001550Y001080D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GTP b/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GTP
deleted file mode 100644
index 9c03f2a..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GTP
+++ /dev/null
@@ -1,39 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11R,0.0433X0.0394*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X001265Y000750D03*
-X001935Y000750D03*
-X001935Y003750D03*
-X001265Y003750D03*
-X001265Y006750D03*
-X001935Y006750D03*
-X001935Y009750D03*
-X001265Y009750D03*
-X001265Y012750D03*
-X001935Y012750D03*
-X001935Y015750D03*
-X001265Y015750D03*
-X001265Y018750D03*
-X001265Y021750D03*
-X001935Y021750D03*
-X001935Y018750D03*
-X001935Y024750D03*
-X001265Y024750D03*
-X001265Y027750D03*
-X001935Y027750D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GTS b/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GTS
deleted file mode 100644
index 074b513..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.GTS
+++ /dev/null
@@ -1,101 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0640*%
-%ADD12R,0.0473X0.0434*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X001100Y001625D03*
-X001100Y004625D03*
-X001100Y007625D03*
-X001100Y010625D03*
-X001100Y013625D03*
-X001100Y016625D03*
-X001100Y019625D03*
-X001100Y022625D03*
-X001100Y025625D03*
-X001100Y028625D03*
-X002100Y028625D03*
-X002100Y025625D03*
-X002100Y022625D03*
-X002100Y019625D03*
-X002100Y016625D03*
-X002100Y013625D03*
-X002100Y010625D03*
-X002100Y007625D03*
-X002100Y004625D03*
-X002100Y001625D03*
-X003100Y001625D03*
-X003100Y004625D03*
-X003100Y007625D03*
-X003100Y010625D03*
-X003100Y013625D03*
-X003100Y016625D03*
-X003100Y019625D03*
-X003100Y022625D03*
-X003100Y025625D03*
-X003100Y028625D03*
-X005100Y028625D03*
-X005100Y027625D03*
-X005100Y026625D03*
-X005100Y025625D03*
-X005100Y024625D03*
-X005100Y023625D03*
-X005100Y022625D03*
-X005100Y021625D03*
-X005100Y020625D03*
-X005100Y019625D03*
-X005100Y018625D03*
-X005100Y017625D03*
-X005100Y016625D03*
-X005100Y015625D03*
-X005100Y014625D03*
-X005100Y013625D03*
-X005100Y012625D03*
-X005100Y011625D03*
-X005100Y010625D03*
-X005100Y009625D03*
-X005100Y008625D03*
-X005100Y007625D03*
-X005100Y006625D03*
-X005100Y005625D03*
-X005100Y004625D03*
-X005100Y003625D03*
-X005100Y002625D03*
-X005100Y001625D03*
-X005100Y000625D03*
-X005100Y029625D03*
-D12*
-X001935Y027750D03*
-X001265Y027750D03*
-X001265Y024750D03*
-X001935Y024750D03*
-X001935Y021750D03*
-X001935Y018750D03*
-X001265Y018750D03*
-X001265Y021750D03*
-X001265Y015750D03*
-X001935Y015750D03*
-X001935Y012750D03*
-X001265Y012750D03*
-X001265Y009750D03*
-X001935Y009750D03*
-X001935Y006750D03*
-X001265Y006750D03*
-X001265Y003750D03*
-X001935Y003750D03*
-X001935Y000750D03*
-X001265Y000750D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.TXT b/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.TXT
deleted file mode 100644
index 3f64e35..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.TXT
+++ /dev/null
@@ -1,67 +0,0 @@
-%
-M48
-M72
-T01C0.0400
-%
-T01
-X1100Y1625
-X1100Y4625
-X1100Y7625
-X1100Y10625
-X1100Y13625
-X1100Y16625
-X1100Y19625
-X1100Y22625
-X1100Y25625
-X1100Y28625
-X2100Y28625
-X2100Y25625
-X2100Y22625
-X2100Y19625
-X2100Y16625
-X2100Y13625
-X2100Y10625
-X2100Y7625
-X2100Y4625
-X2100Y1625
-X3100Y1625
-X3100Y4625
-X3100Y7625
-X3100Y10625
-X3100Y13625
-X3100Y16625
-X3100Y19625
-X3100Y22625
-X3100Y25625
-X3100Y28625
-X5100Y28625
-X5100Y27625
-X5100Y26625
-X5100Y25625
-X5100Y24625
-X5100Y23625
-X5100Y22625
-X5100Y21625
-X5100Y20625
-X5100Y19625
-X5100Y18625
-X5100Y17625
-X5100Y16625
-X5100Y15625
-X5100Y14625
-X5100Y13625
-X5100Y12625
-X5100Y11625
-X5100Y10625
-X5100Y9625
-X5100Y8625
-X5100Y7625
-X5100Y6625
-X5100Y5625
-X5100Y4625
-X5100Y3625
-X5100Y2625
-X5100Y1625
-X5100Y625
-X5100Y29625
-M30
diff --git a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.dri b/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.dri
deleted file mode 100644
index 0311ca5..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.dri
+++ /dev/null
@@ -1,36 +0,0 @@
-Generated by EAGLE CAM Processor 6.5.0
-
-Drill Station Info File: /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/dio_adapter.dri
-
- Date              : 19 Aug 2014 00:30:22
- Drills            : generated
- Device            : Excellon drill station
-
-Parameter settings:
-
- Tolerance Drill + :  0.00 %
- Tolerance Drill - :  0.00 %
- Rotate            : no
- Mirror            : no
- Optimize          : yes
- Auto fit          : yes
- OffsetX           : 0inch
- OffsetY           : 0inch
- Layers            : Drills Holes
-
-Drill File Info:
-
- Data Mode         : Absolute
- Units             : 1/10000 Inch
-
-Drills used:
-
- Code  Size       used
-
- T01   0.0400inch    60
-
-Total number of drills: 60
-
-Plotfiles:
-
- /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/dio_adapter.TXT
diff --git a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.gpi b/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.gpi
deleted file mode 100644
index ae5a3c1..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/dio_adapter/dio_adapter.gpi
+++ /dev/null
@@ -1,41 +0,0 @@
-Generated by EAGLE CAM Processor 6.5.0
-
-Photoplotter Info File: /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/dio_adapter.gpi
-
- Date              : 19 Aug 2014 00:30:23
- Plotfile          : /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/dio_adapter.GTL
- Apertures         : generated: 
- Device            : Gerber RS-274-X photoplotter, coordinate format 2.4 inch
-
-Parameter settings:
-
- Emulate Apertures : no
- Tolerance Draw  + :  0.00 %
- Tolerance Draw  - :  0.00 %
- Tolerance Flash + :  0.00 %
- Tolerance Flash - :  0.00 %
- Rotate            : no
- Mirror            : no
- Optimize          : yes
- Auto fit          : yes
- OffsetX           : 0inch
- OffsetY           : 0inch
-
-Plotfile Info:
-
- Coordinate Format : 2.4
- Coordinate Units  : Inch
- Data Mode         : Absolute
- Zero Suppression  : None
- End Of Block      : *
-
-Apertures used:
-
- Code     Shape     Size                  used
-
- D10      draw      0.0000inch               4
- D11      draw      0.0020inch             452
- D12      round     0.0600inch              60
- D13      rectangle 0.0433inch x 0.0394inch    20
- D14      draw      0.0160inch             121
-
diff --git a/roborio_expansion_boards/seed_studio_20140818/expansion_board.zip b/roborio_expansion_boards/seed_studio_20140818/expansion_board.zip
deleted file mode 100644
index 73d33e5..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/expansion_board.zip
+++ /dev/null
Binary files differ
diff --git a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GBL b/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GBL
deleted file mode 100644
index 53ffe01..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GBL
+++ /dev/null
@@ -1,311 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0600*%
-%ADD12R,0.0600X0.0600*%
-%ADD13R,0.0394X0.0433*%
-%ADD14C,0.0356*%
-%ADD15C,0.0160*%
-%ADD16C,0.1660*%
-D10*
-X000100Y000100D02*
-X000100Y032350D01*
-X022100Y032350D01*
-X022100Y000100D01*
-X000100Y000100D01*
-D11*
-X003100Y003100D03*
-X003100Y004100D03*
-X004100Y004100D03*
-X004100Y003100D03*
-X005100Y003100D03*
-X005100Y004100D03*
-X006100Y004100D03*
-X006100Y003100D03*
-X007100Y003100D03*
-X007100Y004100D03*
-X008100Y004100D03*
-X008100Y003100D03*
-X009100Y003100D03*
-X009100Y004100D03*
-X010100Y004100D03*
-X010100Y003100D03*
-X011100Y003100D03*
-X011100Y004100D03*
-X012100Y004100D03*
-X012100Y003100D03*
-X013100Y003100D03*
-X013100Y004100D03*
-X014100Y004100D03*
-X014100Y003100D03*
-X015100Y003100D03*
-X015100Y004100D03*
-X016100Y004100D03*
-X016100Y003100D03*
-X017100Y003100D03*
-X017100Y004100D03*
-X018100Y004100D03*
-X018100Y003100D03*
-X019100Y003100D03*
-X018600Y007600D03*
-X018600Y008600D03*
-X018600Y009600D03*
-X018600Y010600D03*
-X015600Y010600D03*
-X015600Y009600D03*
-X015600Y008600D03*
-X015600Y007600D03*
-X012600Y007600D03*
-X012600Y008600D03*
-X012600Y009600D03*
-X012600Y010600D03*
-X012600Y012600D03*
-X012600Y013600D03*
-X012600Y014600D03*
-X012600Y016600D03*
-X012600Y017600D03*
-X012600Y018600D03*
-X009600Y018600D03*
-X009600Y017600D03*
-X009600Y016600D03*
-X009600Y014600D03*
-X009600Y013600D03*
-X009600Y012600D03*
-X009600Y010600D03*
-X009600Y009600D03*
-X009600Y008600D03*
-X009600Y007600D03*
-X006600Y007600D03*
-X006600Y008600D03*
-X006600Y009600D03*
-X006600Y010600D03*
-X006600Y012600D03*
-X006600Y013600D03*
-X006600Y014600D03*
-X006600Y016600D03*
-X006600Y017600D03*
-X006600Y018600D03*
-X003600Y010600D03*
-X003600Y009600D03*
-X003600Y008600D03*
-X003600Y007600D03*
-X015600Y012600D03*
-X015600Y013600D03*
-X015600Y014600D03*
-X015600Y016600D03*
-X015600Y017600D03*
-X015600Y018600D03*
-D12*
-X019100Y004100D03*
-D13*
-X019475Y009765D03*
-X019475Y010435D03*
-X014725Y010435D03*
-X014725Y009765D03*
-X013475Y009765D03*
-X013475Y010435D03*
-X014725Y013765D03*
-X014725Y014435D03*
-X014725Y017765D03*
-X014725Y018435D03*
-X011725Y018435D03*
-X011725Y017765D03*
-X011725Y014435D03*
-X011725Y013765D03*
-X010475Y010435D03*
-X010475Y009765D03*
-X008725Y013765D03*
-X008725Y014435D03*
-X008725Y017765D03*
-X008725Y018435D03*
-X005725Y018435D03*
-X005725Y017765D03*
-X005725Y014435D03*
-X005725Y013765D03*
-X005725Y010435D03*
-X005725Y009765D03*
-X004475Y009765D03*
-X004475Y010435D03*
-D14*
-X005600Y012600D03*
-X005350Y006350D03*
-X006850Y001850D03*
-X011100Y001850D03*
-D15*
-X011100Y003100D01*
-X010100Y004100D02*
-X010100Y005100D01*
-X014100Y005100D01*
-X014100Y012600D01*
-X015600Y012600D01*
-X015600Y013600D02*
-X014725Y013600D01*
-X014725Y013765D01*
-X014725Y014435D02*
-X014725Y014600D01*
-X015600Y014600D01*
-X016350Y015100D02*
-X016350Y006600D01*
-X015100Y006600D01*
-X015100Y004100D01*
-X016100Y004100D02*
-X016100Y006100D01*
-X016850Y006100D01*
-X016850Y015600D01*
-X009600Y015600D01*
-X009600Y016600D01*
-X009600Y017600D02*
-X008725Y017600D01*
-X008725Y017765D01*
-X008725Y018435D02*
-X008725Y018600D01*
-X009600Y018600D01*
-X011725Y018600D02*
-X011725Y018435D01*
-X011725Y018600D02*
-X012600Y018600D01*
-X012600Y017600D02*
-X011725Y017600D01*
-X011725Y017765D01*
-X012600Y016600D02*
-X012600Y016100D01*
-X017350Y016100D01*
-X017350Y005100D01*
-X017100Y005100D01*
-X017100Y004100D01*
-X017850Y005100D02*
-X017850Y016600D01*
-X015600Y016600D01*
-X015600Y017600D02*
-X014725Y017600D01*
-X014725Y017765D01*
-X014725Y018435D02*
-X014725Y018600D01*
-X015600Y018600D01*
-X016350Y015100D02*
-X006600Y015100D01*
-X006600Y016600D01*
-X006600Y017600D02*
-X005725Y017600D01*
-X005725Y017765D01*
-X005725Y018435D02*
-X005725Y018600D01*
-X006600Y018600D01*
-X006600Y014600D02*
-X005725Y014600D01*
-X005725Y014435D01*
-X005725Y013765D02*
-X005725Y013600D01*
-X006600Y013600D01*
-X006600Y012600D02*
-X008100Y012600D01*
-X008100Y006100D01*
-X007100Y006100D01*
-X007100Y004100D01*
-X007100Y003100D02*
-X007100Y002350D01*
-X007600Y002350D01*
-X007600Y001350D01*
-X001850Y001350D01*
-X001850Y006350D01*
-X004350Y006350D01*
-X004350Y008600D01*
-X003600Y008600D01*
-X003600Y007600D02*
-X001350Y007600D01*
-X001350Y000850D01*
-X009100Y000850D01*
-X009100Y003100D01*
-X009100Y004100D02*
-X009100Y005600D01*
-X011100Y005600D01*
-X011100Y012600D01*
-X012600Y012600D01*
-X012600Y013600D02*
-X011725Y013600D01*
-X011725Y013765D01*
-X011725Y014435D02*
-X011725Y014600D01*
-X012600Y014600D01*
-X012600Y010600D02*
-X013475Y010600D01*
-X013475Y010435D01*
-X013475Y009765D02*
-X013475Y009600D01*
-X012600Y009600D01*
-X010475Y009600D02*
-X009600Y009600D01*
-X009600Y010600D02*
-X010475Y010600D01*
-X010475Y010435D01*
-X010475Y009765D02*
-X010475Y009600D01*
-X009600Y012600D02*
-X008600Y012600D01*
-X008600Y005600D01*
-X008100Y005600D01*
-X008100Y004100D01*
-X006600Y005100D02*
-X003100Y005100D01*
-X003100Y004100D01*
-X002350Y005850D02*
-X002350Y001850D01*
-X006850Y001850D01*
-X006600Y005100D02*
-X006600Y006600D01*
-X007600Y006600D01*
-X007600Y011600D01*
-X005600Y011600D01*
-X005600Y012600D01*
-X005725Y010600D02*
-X006600Y010600D01*
-X006600Y009600D02*
-X005725Y009600D01*
-X005725Y009765D01*
-X005725Y010435D02*
-X005725Y010600D01*
-X004475Y010600D02*
-X003600Y010600D01*
-X003600Y009600D02*
-X004475Y009600D01*
-X004475Y009765D01*
-X004475Y010435D02*
-X004475Y010600D01*
-X005350Y006350D02*
-X005350Y005850D01*
-X002350Y005850D01*
-X008725Y013600D02*
-X009600Y013600D01*
-X009600Y014600D02*
-X008725Y014600D01*
-X008725Y014435D01*
-X008725Y013765D02*
-X008725Y013600D01*
-X014725Y010600D02*
-X015600Y010600D01*
-X015600Y009600D02*
-X014725Y009600D01*
-X014725Y009765D01*
-X014725Y010435D02*
-X014725Y010600D01*
-X018600Y010600D02*
-X019475Y010600D01*
-X019475Y010435D01*
-X019475Y009765D02*
-X019475Y009600D01*
-X018600Y009600D01*
-X018100Y005100D02*
-X017850Y005100D01*
-X018100Y005100D02*
-X018100Y004100D01*
-D16*
-X020870Y030875D03*
-X001330Y030875D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GBO b/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GBO
deleted file mode 100644
index 862f37f..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GBO
+++ /dev/null
@@ -1,30 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0050*%
-D10*
-X000100Y000100D02*
-X000100Y032350D01*
-X022100Y032350D01*
-X022100Y000100D01*
-X000100Y000100D01*
-D11*
-X001600Y002420D02*
-X020600Y002420D01*
-X020600Y004780D01*
-X011830Y004780D01*
-X010370Y004780D01*
-X001600Y004780D01*
-X001600Y002420D01*
-X010370Y004780D02*
-X010370Y005170D01*
-X011830Y005170D01*
-X011830Y004780D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GBP b/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GBP
deleted file mode 100644
index b2eee85..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GBP
+++ /dev/null
@@ -1,47 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11R,0.0394X0.0433*%
-D10*
-X000100Y000100D02*
-X000100Y032350D01*
-X022100Y032350D01*
-X022100Y000100D01*
-X000100Y000100D01*
-D11*
-X004475Y009765D03*
-X004475Y010435D03*
-X005725Y010435D03*
-X005725Y009765D03*
-X005725Y013765D03*
-X005725Y014435D03*
-X005725Y017765D03*
-X005725Y018435D03*
-X008725Y018435D03*
-X008725Y017765D03*
-X008725Y014435D03*
-X008725Y013765D03*
-X010475Y010435D03*
-X010475Y009765D03*
-X011725Y013765D03*
-X011725Y014435D03*
-X011725Y017765D03*
-X011725Y018435D03*
-X014725Y018435D03*
-X014725Y017765D03*
-X014725Y014435D03*
-X014725Y013765D03*
-X014725Y010435D03*
-X014725Y009765D03*
-X013475Y009765D03*
-X013475Y010435D03*
-X019475Y010435D03*
-X019475Y009765D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GBS b/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GBS
deleted file mode 100644
index cf3d8db..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GBS
+++ /dev/null
@@ -1,137 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0640*%
-%ADD12R,0.0640X0.0640*%
-%ADD13R,0.0434X0.0473*%
-%ADD14C,0.1700*%
-D10*
-X000100Y000100D02*
-X000100Y032350D01*
-X022100Y032350D01*
-X022100Y000100D01*
-X000100Y000100D01*
-D11*
-X003100Y003100D03*
-X003100Y004100D03*
-X004100Y004100D03*
-X004100Y003100D03*
-X005100Y003100D03*
-X005100Y004100D03*
-X006100Y004100D03*
-X006100Y003100D03*
-X007100Y003100D03*
-X007100Y004100D03*
-X008100Y004100D03*
-X008100Y003100D03*
-X009100Y003100D03*
-X009100Y004100D03*
-X010100Y004100D03*
-X010100Y003100D03*
-X011100Y003100D03*
-X011100Y004100D03*
-X012100Y004100D03*
-X012100Y003100D03*
-X013100Y003100D03*
-X013100Y004100D03*
-X014100Y004100D03*
-X014100Y003100D03*
-X015100Y003100D03*
-X015100Y004100D03*
-X016100Y004100D03*
-X016100Y003100D03*
-X017100Y003100D03*
-X017100Y004100D03*
-X018100Y004100D03*
-X018100Y003100D03*
-X019100Y003100D03*
-X018600Y007600D03*
-X018600Y008600D03*
-X018600Y009600D03*
-X018600Y010600D03*
-X015600Y010600D03*
-X015600Y009600D03*
-X015600Y008600D03*
-X015600Y007600D03*
-X012600Y007600D03*
-X012600Y008600D03*
-X012600Y009600D03*
-X012600Y010600D03*
-X012600Y012600D03*
-X012600Y013600D03*
-X012600Y014600D03*
-X012600Y016600D03*
-X012600Y017600D03*
-X012600Y018600D03*
-X009600Y018600D03*
-X009600Y017600D03*
-X009600Y016600D03*
-X009600Y014600D03*
-X009600Y013600D03*
-X009600Y012600D03*
-X009600Y010600D03*
-X009600Y009600D03*
-X009600Y008600D03*
-X009600Y007600D03*
-X006600Y007600D03*
-X006600Y008600D03*
-X006600Y009600D03*
-X006600Y010600D03*
-X006600Y012600D03*
-X006600Y013600D03*
-X006600Y014600D03*
-X006600Y016600D03*
-X006600Y017600D03*
-X006600Y018600D03*
-X003600Y010600D03*
-X003600Y009600D03*
-X003600Y008600D03*
-X003600Y007600D03*
-X015600Y012600D03*
-X015600Y013600D03*
-X015600Y014600D03*
-X015600Y016600D03*
-X015600Y017600D03*
-X015600Y018600D03*
-D12*
-X019100Y004100D03*
-D13*
-X019475Y009765D03*
-X019475Y010435D03*
-X014725Y010435D03*
-X014725Y009765D03*
-X013475Y009765D03*
-X013475Y010435D03*
-X014725Y013765D03*
-X014725Y014435D03*
-X014725Y017765D03*
-X014725Y018435D03*
-X011725Y018435D03*
-X011725Y017765D03*
-X011725Y014435D03*
-X011725Y013765D03*
-X010475Y010435D03*
-X010475Y009765D03*
-X008725Y013765D03*
-X008725Y014435D03*
-X008725Y017765D03*
-X008725Y018435D03*
-X005725Y018435D03*
-X005725Y017765D03*
-X005725Y014435D03*
-X005725Y013765D03*
-X005725Y010435D03*
-X005725Y009765D03*
-X004475Y009765D03*
-X004475Y010435D03*
-D14*
-X001330Y030875D03*
-X020870Y030875D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GML b/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GML
deleted file mode 100644
index 236662b..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GML
+++ /dev/null
@@ -1,17 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-D10*
-X000100Y000100D02*
-X000100Y032350D01*
-X022100Y032350D01*
-X022100Y000100D01*
-X000100Y000100D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GTL b/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GTL
deleted file mode 100644
index a04279b..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GTL
+++ /dev/null
@@ -1,1039 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0020*%
-%ADD12C,0.0060*%
-%ADD13C,0.0600*%
-%ADD14R,0.0600X0.0600*%
-%ADD15C,0.0118*%
-%ADD16R,0.0433X0.0394*%
-%ADD17C,0.0160*%
-%ADD18C,0.0356*%
-%ADD19C,0.0320*%
-%ADD20C,0.1660*%
-D10*
-X000100Y000100D02*
-X000100Y032350D01*
-X022100Y032350D01*
-X022100Y000100D01*
-X000100Y000100D01*
-D11*
-X008360Y000735D02*
-X008507Y000882D01*
-X008507Y000918D01*
-X008470Y000955D01*
-X008397Y000955D01*
-X008360Y000918D01*
-X008360Y001095D02*
-X008360Y001315D01*
-X008507Y001315D01*
-X008581Y001315D02*
-X008691Y001315D01*
-X008728Y001278D01*
-X008728Y001205D01*
-X008691Y001168D01*
-X008581Y001168D01*
-X008581Y001095D02*
-X008581Y001315D01*
-X008654Y001168D02*
-X008728Y001095D01*
-X008802Y001132D02*
-X008839Y001095D01*
-X008912Y001095D01*
-X008949Y001132D01*
-X008949Y001278D02*
-X008912Y001315D01*
-X008839Y001315D01*
-X008802Y001278D01*
-X008802Y001132D01*
-X008875Y000955D02*
-X008875Y000735D01*
-X008802Y000735D02*
-X008949Y000735D01*
-X009023Y000845D02*
-X009170Y000845D01*
-X009244Y000772D02*
-X009391Y000918D01*
-X009391Y000772D01*
-X009354Y000735D01*
-X009281Y000735D01*
-X009244Y000772D01*
-X009244Y000918D01*
-X009281Y000955D01*
-X009354Y000955D01*
-X009391Y000918D01*
-X009465Y000918D02*
-X009465Y000882D01*
-X009502Y000845D01*
-X009575Y000845D01*
-X009612Y000808D01*
-X009612Y000772D01*
-X009575Y000735D01*
-X009502Y000735D01*
-X009465Y000772D01*
-X009465Y000808D01*
-X009502Y000845D01*
-X009575Y000845D02*
-X009612Y000882D01*
-X009612Y000918D01*
-X009575Y000955D01*
-X009502Y000955D01*
-X009465Y000918D01*
-X009502Y001095D02*
-X009465Y001132D01*
-X009465Y001205D01*
-X009502Y001242D01*
-X009575Y001242D01*
-X009612Y001205D01*
-X009612Y001168D01*
-X009465Y001168D01*
-X009502Y001095D02*
-X009575Y001095D01*
-X009686Y001132D02*
-X009723Y001168D01*
-X009833Y001168D01*
-X009833Y001205D02*
-X009833Y001095D01*
-X009723Y001095D01*
-X009686Y001132D01*
-X009723Y001242D02*
-X009796Y001242D01*
-X009833Y001205D01*
-X009907Y001242D02*
-X009944Y001242D01*
-X009980Y001205D01*
-X010017Y001242D01*
-X010054Y001205D01*
-X010054Y001095D01*
-X009980Y001095D02*
-X009980Y001205D01*
-X009907Y001242D02*
-X009907Y001095D01*
-X009944Y000955D02*
-X010017Y000955D01*
-X010054Y000918D01*
-X010054Y000882D01*
-X010017Y000845D01*
-X009944Y000845D01*
-X009907Y000882D01*
-X009907Y000918D01*
-X009944Y000955D01*
-X009944Y000845D02*
-X009907Y000808D01*
-X009907Y000772D01*
-X009944Y000735D01*
-X010017Y000735D01*
-X010054Y000772D01*
-X010054Y000808D01*
-X010017Y000845D01*
-X009833Y000735D02*
-X009686Y000735D01*
-X009759Y000735D02*
-X009759Y000955D01*
-X009686Y000882D01*
-X009317Y001095D02*
-X009317Y001315D01*
-X009244Y001315D02*
-X009391Y001315D01*
-X009133Y000955D02*
-X009023Y000845D01*
-X009133Y000735D02*
-X009133Y000955D01*
-X008875Y000955D02*
-X008802Y000882D01*
-X008728Y000918D02*
-X008581Y000772D01*
-X008618Y000735D01*
-X008691Y000735D01*
-X008728Y000772D01*
-X008728Y000918D01*
-X008691Y000955D01*
-X008618Y000955D01*
-X008581Y000918D01*
-X008581Y000772D01*
-X008507Y000735D02*
-X008360Y000735D01*
-X008360Y001205D02*
-X008433Y001205D01*
-X010349Y001242D02*
-X010386Y001205D01*
-X010496Y001205D01*
-X010496Y001132D02*
-X010496Y001278D01*
-X010459Y001315D01*
-X010386Y001315D01*
-X010349Y001278D01*
-X010349Y001242D01*
-X010349Y001132D02*
-X010386Y001095D01*
-X010459Y001095D01*
-X010496Y001132D01*
-X010570Y001132D02*
-X010570Y001095D01*
-X010570Y001132D02*
-X010717Y001278D01*
-X010717Y001315D01*
-X010570Y001315D01*
-X010791Y001242D02*
-X010864Y001315D01*
-X010864Y001095D01*
-X010791Y001095D02*
-X010938Y001095D01*
-X011233Y001095D02*
-X011233Y001315D01*
-X011306Y001242D01*
-X011380Y001315D01*
-X011380Y001095D01*
-X011454Y001095D02*
-X011601Y001315D01*
-X011675Y001315D02*
-X011785Y001315D01*
-X011822Y001278D01*
-X011822Y001205D01*
-X011785Y001168D01*
-X011675Y001168D01*
-X011675Y001095D02*
-X011675Y001315D01*
-X011454Y001315D02*
-X011601Y001095D01*
-X012117Y001095D02*
-X012227Y001095D01*
-X012264Y001132D01*
-X012264Y001168D01*
-X012227Y001205D01*
-X012117Y001205D01*
-X012227Y001205D02*
-X012264Y001242D01*
-X012264Y001278D01*
-X012227Y001315D01*
-X012117Y001315D01*
-X012117Y001095D01*
-X012338Y001095D02*
-X012338Y001242D01*
-X012411Y001242D02*
-X012448Y001242D01*
-X012411Y001242D02*
-X012338Y001168D01*
-X012522Y001168D02*
-X012669Y001168D01*
-X012669Y001205D01*
-X012632Y001242D01*
-X012559Y001242D01*
-X012522Y001205D01*
-X012522Y001132D01*
-X012559Y001095D01*
-X012632Y001095D01*
-X012743Y001132D02*
-X012780Y001168D01*
-X012890Y001168D01*
-X012890Y001205D02*
-X012890Y001095D01*
-X012780Y001095D01*
-X012743Y001132D01*
-X012780Y001242D02*
-X012853Y001242D01*
-X012890Y001205D01*
-X012964Y001168D02*
-X013074Y001242D01*
-X013148Y001205D02*
-X013148Y001132D01*
-X013185Y001095D01*
-X013258Y001095D01*
-X013295Y001132D01*
-X013295Y001205D01*
-X013258Y001242D01*
-X013185Y001242D01*
-X013148Y001205D01*
-X013074Y001095D02*
-X012964Y001168D01*
-X012964Y001095D02*
-X012964Y001315D01*
-X013369Y001242D02*
-X013369Y001132D01*
-X013406Y001095D01*
-X013516Y001095D01*
-X013516Y001242D01*
-X013590Y001242D02*
-X013663Y001242D01*
-X013627Y001278D02*
-X013627Y001132D01*
-X013663Y001095D01*
-D12*
-X008712Y019880D02*
-X008499Y019880D01*
-X008392Y019987D01*
-X008392Y020094D01*
-X008499Y020200D01*
-X008712Y020200D01*
-X008819Y020094D01*
-X008819Y019987D01*
-X008712Y019880D01*
-X008712Y020200D02*
-X008819Y020307D01*
-X008819Y020414D01*
-X008712Y020521D01*
-X008499Y020521D01*
-X008392Y020414D01*
-X008392Y020307D01*
-X008499Y020200D01*
-X008174Y019880D02*
-X007747Y019880D01*
-X007961Y019880D02*
-X007961Y020521D01*
-X007747Y020307D01*
-X007530Y020307D02*
-X007423Y020200D01*
-X007210Y020200D01*
-X007103Y020307D01*
-X007103Y020414D01*
-X007210Y020521D01*
-X007423Y020521D01*
-X007530Y020414D01*
-X007530Y020307D01*
-X007423Y020200D02*
-X007530Y020094D01*
-X007530Y019987D01*
-X007423Y019880D01*
-X007210Y019880D01*
-X007103Y019987D01*
-X007103Y020094D01*
-X007210Y020200D01*
-X006885Y019987D02*
-X006778Y019880D01*
-X006565Y019880D01*
-X006458Y019987D01*
-X006885Y020414D01*
-X006885Y019987D01*
-X006885Y020414D02*
-X006778Y020521D01*
-X006565Y020521D01*
-X006458Y020414D01*
-X006458Y019987D01*
-X006241Y020200D02*
-X005814Y020200D01*
-X006134Y020521D01*
-X006134Y019880D01*
-X005596Y019880D02*
-X005169Y019880D01*
-X005383Y019880D02*
-X005383Y020521D01*
-X005169Y020307D01*
-X004952Y020414D02*
-X004952Y019987D01*
-X004845Y019880D01*
-X004631Y019880D01*
-X004525Y019987D01*
-X004952Y020414D01*
-X004845Y020521D01*
-X004631Y020521D01*
-X004525Y020414D01*
-X004525Y019987D01*
-X004307Y019880D02*
-X003880Y019880D01*
-X004307Y020307D01*
-X004307Y020414D01*
-X004200Y020521D01*
-X003987Y020521D01*
-X003880Y020414D01*
-X003880Y020930D02*
-X003880Y021571D01*
-X004307Y021571D01*
-X004525Y021571D02*
-X004845Y021571D01*
-X004952Y021464D01*
-X004952Y021250D01*
-X004845Y021144D01*
-X004525Y021144D01*
-X004738Y021144D02*
-X004952Y020930D01*
-X005169Y021037D02*
-X005276Y020930D01*
-X005489Y020930D01*
-X005596Y021037D01*
-X005596Y021464D02*
-X005489Y021571D01*
-X005276Y021571D01*
-X005169Y021464D01*
-X005169Y021037D01*
-X004525Y020930D02*
-X004525Y021571D01*
-X004094Y021250D02*
-X003880Y021250D01*
-X006458Y021571D02*
-X006885Y021571D01*
-X006672Y021571D02*
-X006672Y020930D01*
-X007103Y021037D02*
-X007103Y021250D01*
-X007210Y021357D01*
-X007423Y021357D01*
-X007530Y021250D01*
-X007530Y021144D01*
-X007103Y021144D01*
-X007103Y021037D02*
-X007210Y020930D01*
-X007423Y020930D01*
-X007747Y021037D02*
-X007854Y021144D01*
-X008174Y021144D01*
-X008174Y021250D02*
-X008174Y020930D01*
-X007854Y020930D01*
-X007747Y021037D01*
-X007854Y021357D02*
-X008068Y021357D01*
-X008174Y021250D01*
-X008392Y021357D02*
-X008392Y020930D01*
-X008605Y020930D02*
-X008605Y021250D01*
-X008712Y021357D01*
-X008819Y021250D01*
-X008819Y020930D01*
-X008605Y021250D02*
-X008499Y021357D01*
-X008392Y021357D01*
-X009681Y021357D02*
-X009788Y021250D01*
-X010108Y021250D01*
-X010108Y021037D02*
-X010108Y021464D01*
-X010001Y021571D01*
-X009788Y021571D01*
-X009681Y021464D01*
-X009681Y021357D01*
-X009681Y021037D02*
-X009788Y020930D01*
-X010001Y020930D01*
-X010108Y021037D01*
-X010325Y021037D02*
-X010325Y020930D01*
-X010325Y021037D02*
-X010753Y021464D01*
-X010753Y021571D01*
-X010325Y021571D01*
-X010970Y021357D02*
-X011184Y021571D01*
-X011184Y020930D01*
-X011397Y020930D02*
-X010970Y020930D01*
-X012259Y020930D02*
-X012259Y021571D01*
-X012473Y021357D01*
-X012686Y021571D01*
-X012686Y020930D01*
-X012904Y020930D02*
-X013331Y021571D01*
-X013548Y021571D02*
-X013869Y021571D01*
-X013975Y021464D01*
-X013975Y021250D01*
-X013869Y021144D01*
-X013548Y021144D01*
-X013548Y020930D02*
-X013548Y021571D01*
-X012904Y021571D02*
-X013331Y020930D01*
-X014837Y020930D02*
-X015158Y020930D01*
-X015264Y021037D01*
-X015264Y021144D01*
-X015158Y021250D01*
-X014837Y021250D01*
-X014837Y020930D02*
-X014837Y021571D01*
-X015158Y021571D01*
-X015264Y021464D01*
-X015264Y021357D01*
-X015158Y021250D01*
-X015482Y021144D02*
-X015695Y021357D01*
-X015802Y021357D01*
-X016019Y021250D02*
-X016019Y021037D01*
-X016126Y020930D01*
-X016339Y020930D01*
-X016446Y021144D02*
-X016019Y021144D01*
-X016019Y021250D02*
-X016126Y021357D01*
-X016339Y021357D01*
-X016446Y021250D01*
-X016446Y021144D01*
-X016664Y021037D02*
-X016770Y021144D01*
-X017091Y021144D01*
-X017091Y021250D02*
-X017091Y020930D01*
-X016770Y020930D01*
-X016664Y021037D01*
-X016770Y021357D02*
-X016984Y021357D01*
-X017091Y021250D01*
-X017308Y021144D02*
-X017628Y021357D01*
-X017845Y021250D02*
-X017845Y021037D01*
-X017952Y020930D01*
-X018166Y020930D01*
-X018272Y021037D01*
-X018272Y021250D01*
-X018166Y021357D01*
-X017952Y021357D01*
-X017845Y021250D01*
-X017628Y020930D02*
-X017308Y021144D01*
-X017308Y020930D02*
-X017308Y021571D01*
-X018490Y021357D02*
-X018490Y021037D01*
-X018597Y020930D01*
-X018917Y020930D01*
-X018917Y021357D01*
-X019134Y021357D02*
-X019348Y021357D01*
-X019241Y021464D02*
-X019241Y021037D01*
-X019348Y020930D01*
-X015482Y020930D02*
-X015482Y021357D01*
-X015482Y028680D02*
-X015482Y029107D01*
-X015482Y028894D02*
-X015695Y029107D01*
-X015802Y029107D01*
-X016019Y029000D02*
-X016019Y028787D01*
-X016126Y028680D01*
-X016339Y028680D01*
-X016446Y028894D02*
-X016019Y028894D01*
-X016019Y029000D02*
-X016126Y029107D01*
-X016339Y029107D01*
-X016446Y029000D01*
-X016446Y028894D01*
-X016664Y028787D02*
-X016770Y028894D01*
-X017091Y028894D01*
-X017091Y029000D02*
-X017091Y028680D01*
-X016770Y028680D01*
-X016664Y028787D01*
-X016770Y029107D02*
-X016984Y029107D01*
-X017091Y029000D01*
-X017308Y028894D02*
-X017628Y029107D01*
-X017845Y029000D02*
-X017845Y028787D01*
-X017952Y028680D01*
-X018166Y028680D01*
-X018272Y028787D01*
-X018272Y029000D01*
-X018166Y029107D01*
-X017952Y029107D01*
-X017845Y029000D01*
-X017628Y028680D02*
-X017308Y028894D01*
-X017308Y028680D02*
-X017308Y029321D01*
-X018490Y029107D02*
-X018490Y028787D01*
-X018597Y028680D01*
-X018917Y028680D01*
-X018917Y029107D01*
-X019134Y029107D02*
-X019348Y029107D01*
-X019241Y029214D02*
-X019241Y028787D01*
-X019348Y028680D01*
-X015264Y028787D02*
-X015158Y028680D01*
-X014837Y028680D01*
-X014837Y029321D01*
-X015158Y029321D01*
-X015264Y029214D01*
-X015264Y029107D01*
-X015158Y029000D01*
-X014837Y029000D01*
-X015158Y029000D02*
-X015264Y028894D01*
-X015264Y028787D01*
-X013975Y029000D02*
-X013869Y028894D01*
-X013548Y028894D01*
-X013548Y028680D02*
-X013548Y029321D01*
-X013869Y029321D01*
-X013975Y029214D01*
-X013975Y029000D01*
-X013331Y028680D02*
-X012904Y029321D01*
-X012686Y029321D02*
-X012686Y028680D01*
-X012904Y028680D02*
-X013331Y029321D01*
-X012686Y029321D02*
-X012473Y029107D01*
-X012259Y029321D01*
-X012259Y028680D01*
-X011397Y028680D02*
-X010970Y028680D01*
-X011184Y028680D02*
-X011184Y029321D01*
-X010970Y029107D01*
-X010753Y029214D02*
-X010325Y028787D01*
-X010325Y028680D01*
-X010108Y028787D02*
-X010108Y029214D01*
-X010001Y029321D01*
-X009788Y029321D01*
-X009681Y029214D01*
-X009681Y029107D01*
-X009788Y029000D01*
-X010108Y029000D01*
-X010108Y028787D02*
-X010001Y028680D01*
-X009788Y028680D01*
-X009681Y028787D01*
-X010325Y029321D02*
-X010753Y029321D01*
-X010753Y029214D01*
-X008819Y029000D02*
-X008819Y028680D01*
-X008605Y028680D02*
-X008605Y029000D01*
-X008712Y029107D01*
-X008819Y029000D01*
-X008605Y029000D02*
-X008499Y029107D01*
-X008392Y029107D01*
-X008392Y028680D01*
-X008174Y028680D02*
-X008174Y029000D01*
-X008068Y029107D01*
-X007854Y029107D01*
-X007854Y028894D02*
-X008174Y028894D01*
-X008174Y028680D02*
-X007854Y028680D01*
-X007747Y028787D01*
-X007854Y028894D01*
-X007530Y028894D02*
-X007103Y028894D01*
-X007103Y029000D02*
-X007210Y029107D01*
-X007423Y029107D01*
-X007530Y029000D01*
-X007530Y028894D01*
-X007423Y028680D02*
-X007210Y028680D01*
-X007103Y028787D01*
-X007103Y029000D01*
-X006885Y029321D02*
-X006458Y029321D01*
-X006672Y029321D02*
-X006672Y028680D01*
-X006565Y028271D02*
-X006778Y028271D01*
-X006885Y028164D01*
-X006458Y027737D01*
-X006565Y027630D01*
-X006778Y027630D01*
-X006885Y027737D01*
-X006885Y028164D01*
-X007103Y028164D02*
-X007103Y028057D01*
-X007210Y027950D01*
-X007423Y027950D01*
-X007530Y027844D01*
-X007530Y027737D01*
-X007423Y027630D01*
-X007210Y027630D01*
-X007103Y027737D01*
-X007103Y027844D01*
-X007210Y027950D01*
-X007423Y027950D02*
-X007530Y028057D01*
-X007530Y028164D01*
-X007423Y028271D01*
-X007210Y028271D01*
-X007103Y028164D01*
-X006565Y028271D02*
-X006458Y028164D01*
-X006458Y027737D01*
-X006241Y027950D02*
-X005814Y027950D01*
-X006134Y028271D01*
-X006134Y027630D01*
-X005596Y027630D02*
-X005169Y027630D01*
-X005383Y027630D02*
-X005383Y028271D01*
-X005169Y028057D01*
-X004952Y028164D02*
-X004952Y027737D01*
-X004845Y027630D01*
-X004631Y027630D01*
-X004525Y027737D01*
-X004952Y028164D01*
-X004845Y028271D01*
-X004631Y028271D01*
-X004525Y028164D01*
-X004525Y027737D01*
-X004307Y027630D02*
-X003880Y027630D01*
-X004307Y028057D01*
-X004307Y028164D01*
-X004200Y028271D01*
-X003987Y028271D01*
-X003880Y028164D01*
-X003880Y028680D02*
-X003880Y029321D01*
-X004307Y029321D01*
-X004525Y029321D02*
-X004845Y029321D01*
-X004952Y029214D01*
-X004952Y029000D01*
-X004845Y028894D01*
-X004525Y028894D01*
-X004738Y028894D02*
-X004952Y028680D01*
-X005169Y028787D02*
-X005276Y028680D01*
-X005489Y028680D01*
-X005596Y028787D01*
-X005596Y029214D02*
-X005489Y029321D01*
-X005276Y029321D01*
-X005169Y029214D01*
-X005169Y028787D01*
-X004525Y028680D02*
-X004525Y029321D01*
-X004094Y029000D02*
-X003880Y029000D01*
-X007747Y028057D02*
-X007961Y028271D01*
-X007961Y027630D01*
-X008174Y027630D02*
-X007747Y027630D01*
-X008392Y027737D02*
-X008392Y027844D01*
-X008499Y027950D01*
-X008712Y027950D01*
-X008819Y027844D01*
-X008819Y027737D01*
-X008712Y027630D01*
-X008499Y027630D01*
-X008392Y027737D01*
-X008499Y027950D02*
-X008392Y028057D01*
-X008392Y028164D01*
-X008499Y028271D01*
-X008712Y028271D01*
-X008819Y028164D01*
-X008819Y028057D01*
-X008712Y027950D01*
-D13*
-X009600Y018600D03*
-X009600Y017600D03*
-X009600Y016600D03*
-X009600Y014600D03*
-X009600Y013600D03*
-X009600Y012600D03*
-X009600Y010600D03*
-X009600Y009600D03*
-X009600Y008600D03*
-X009600Y007600D03*
-X009100Y004100D03*
-X009100Y003100D03*
-X008100Y003100D03*
-X008100Y004100D03*
-X007100Y004100D03*
-X007100Y003100D03*
-X006100Y003100D03*
-X006100Y004100D03*
-X005100Y004100D03*
-X005100Y003100D03*
-X004100Y003100D03*
-X004100Y004100D03*
-X003100Y004100D03*
-X003100Y003100D03*
-X003600Y007600D03*
-X003600Y008600D03*
-X003600Y009600D03*
-X003600Y010600D03*
-X006600Y010600D03*
-X006600Y009600D03*
-X006600Y008600D03*
-X006600Y007600D03*
-X006600Y012600D03*
-X006600Y013600D03*
-X006600Y014600D03*
-X006600Y016600D03*
-X006600Y017600D03*
-X006600Y018600D03*
-X012600Y018600D03*
-X012600Y017600D03*
-X012600Y016600D03*
-X012600Y014600D03*
-X012600Y013600D03*
-X012600Y012600D03*
-X012600Y010600D03*
-X012600Y009600D03*
-X012600Y008600D03*
-X012600Y007600D03*
-X012100Y004100D03*
-X012100Y003100D03*
-X011100Y003100D03*
-X011100Y004100D03*
-X010100Y004100D03*
-X010100Y003100D03*
-X013100Y003100D03*
-X013100Y004100D03*
-X014100Y004100D03*
-X014100Y003100D03*
-X015100Y003100D03*
-X015100Y004100D03*
-X016100Y004100D03*
-X016100Y003100D03*
-X017100Y003100D03*
-X017100Y004100D03*
-X018100Y004100D03*
-X018100Y003100D03*
-X019100Y003100D03*
-X018600Y007600D03*
-X018600Y008600D03*
-X018600Y009600D03*
-X018600Y010600D03*
-X015600Y010600D03*
-X015600Y009600D03*
-X015600Y008600D03*
-X015600Y007600D03*
-X015600Y012600D03*
-X015600Y013600D03*
-X015600Y014600D03*
-X015600Y016600D03*
-X015600Y017600D03*
-X015600Y018600D03*
-D14*
-X019100Y004100D03*
-D15*
-X003333Y012462D02*
-X003333Y012738D01*
-X003333Y012462D02*
-X003057Y012462D01*
-X003057Y012738D01*
-X003333Y012738D01*
-X003333Y012579D02*
-X003057Y012579D01*
-X003057Y012696D02*
-X003333Y012696D01*
-X003333Y013462D02*
-X003333Y013738D01*
-X003333Y013462D02*
-X003057Y013462D01*
-X003057Y013738D01*
-X003333Y013738D01*
-X003333Y013579D02*
-X003057Y013579D01*
-X003057Y013696D02*
-X003333Y013696D01*
-X002643Y013738D02*
-X002643Y013462D01*
-X002367Y013462D01*
-X002367Y013738D01*
-X002643Y013738D01*
-X002643Y013579D02*
-X002367Y013579D01*
-X002367Y013696D02*
-X002643Y013696D01*
-X002643Y012738D02*
-X002643Y012462D01*
-X002367Y012462D01*
-X002367Y012738D01*
-X002643Y012738D01*
-X002643Y012579D02*
-X002367Y012579D01*
-X002367Y012696D02*
-X002643Y012696D01*
-D16*
-X004015Y012600D03*
-X004685Y012600D03*
-X004685Y013600D03*
-X004015Y013600D03*
-D17*
-X003195Y013600D01*
-X002505Y013600D02*
-X002505Y012600D01*
-X003195Y012600D02*
-X004015Y012600D01*
-X004685Y012600D02*
-X005600Y012600D01*
-X004685Y013600D02*
-X006600Y013600D01*
-X006600Y008600D02*
-X007350Y008600D01*
-X007350Y006850D01*
-X004850Y006850D01*
-X004850Y006350D01*
-X002350Y006350D01*
-X002350Y003100D01*
-X003100Y003100D01*
-X004100Y003100D02*
-X004100Y002350D01*
-X001850Y002350D01*
-X001850Y006850D01*
-X004350Y006850D01*
-X004350Y007600D01*
-X006600Y007600D01*
-X007850Y006350D02*
-X005350Y006350D01*
-X005100Y005350D02*
-X005100Y004100D01*
-X004100Y004100D02*
-X004100Y005850D01*
-X008350Y005850D01*
-X008350Y006350D01*
-X009600Y006350D01*
-X009600Y007600D01*
-X010350Y007350D02*
-X010350Y005850D01*
-X008850Y005850D01*
-X008850Y005350D01*
-X005100Y005350D01*
-X006100Y004850D02*
-X006100Y004100D01*
-X006100Y004850D02*
-X009350Y004850D01*
-X009350Y005350D01*
-X010850Y005350D01*
-X010850Y006850D01*
-X012600Y006850D01*
-X012600Y007600D01*
-X011850Y007350D02*
-X011850Y008600D01*
-X012600Y008600D01*
-X013350Y008600D02*
-X013350Y006350D01*
-X011350Y006350D01*
-X011350Y004100D01*
-X011100Y004100D01*
-X012100Y004100D02*
-X012100Y005850D01*
-X015600Y005850D01*
-X015600Y007600D01*
-X015600Y008600D02*
-X013350Y008600D01*
-X011850Y007350D02*
-X010350Y007350D01*
-X009600Y008600D02*
-X008850Y008600D01*
-X008850Y006850D01*
-X007850Y006850D01*
-X007850Y006350D01*
-X006850Y001850D02*
-X011100Y001850D01*
-X013100Y004100D02*
-X013100Y005350D01*
-X016350Y005350D01*
-X016350Y008600D01*
-X018600Y008600D01*
-X018600Y007600D02*
-X018600Y004850D01*
-X014100Y004850D01*
-X014100Y004100D01*
-X002505Y013600D02*
-X002500Y013600D01*
-X002500Y014600D01*
-D18*
-X005600Y012600D03*
-X005350Y006350D03*
-X006850Y001850D03*
-X011100Y001850D03*
-D19*
-X012100Y002350D02*
-X012100Y003100D01*
-X012100Y002350D02*
-X010100Y002350D01*
-X008100Y002350D01*
-X008100Y003100D01*
-X008100Y002350D02*
-X006100Y002350D01*
-X006100Y001600D01*
-X001100Y001600D01*
-X001100Y010600D01*
-X006600Y010600D01*
-X009600Y010600D01*
-X012600Y010600D01*
-X003600Y010600D01*
-X015600Y010600D01*
-X018600Y010600D01*
-X018600Y009600D02*
-X019600Y009600D01*
-X019600Y004100D01*
-X019100Y004100D01*
-X020600Y002100D02*
-X017100Y002100D01*
-X017100Y003100D01*
-X016100Y003100D02*
-X016100Y002350D01*
-X014100Y002350D01*
-X014100Y003100D01*
-X014100Y002350D02*
-X012100Y002350D01*
-X010100Y002350D02*
-X010100Y003100D01*
-X006100Y003100D02*
-X006100Y002350D01*
-X006100Y003100D02*
-X005100Y003100D01*
-X003600Y009600D02*
-X012600Y009600D01*
-X009600Y009600D01*
-X006600Y009600D01*
-X006600Y013600D02*
-X009600Y013600D01*
-X019600Y013600D01*
-X019600Y009600D01*
-X018600Y009600D02*
-X015600Y009600D01*
-X003600Y009600D01*
-X001100Y010600D02*
-X001100Y014600D01*
-X002500Y014600D01*
-X012600Y014600D01*
-X015600Y014600D01*
-X015600Y013600D02*
-X012600Y013600D01*
-X012600Y014600D02*
-X006600Y014600D01*
-X009600Y014600D01*
-X009600Y013600D02*
-X015600Y013600D01*
-X015600Y017600D02*
-X012600Y017600D01*
-X009600Y017600D01*
-X009600Y018600D02*
-X012600Y018600D01*
-X015600Y018600D01*
-X006600Y018600D01*
-X020600Y018600D01*
-X020600Y002100D01*
-X019600Y013600D02*
-X019600Y017600D01*
-X006600Y017600D01*
-X015600Y017600D01*
-D20*
-X020870Y030875D03*
-X001330Y030875D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GTO b/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GTO
deleted file mode 100644
index 9747690..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GTO
+++ /dev/null
@@ -1,610 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0040*%
-%ADD12C,0.0060*%
-%ADD13C,0.0030*%
-%ADD14C,0.0050*%
-%ADD15C,0.0080*%
-%ADD16R,0.0180X0.0300*%
-D10*
-X000100Y000100D02*
-X000100Y032350D01*
-X022100Y032350D01*
-X022100Y000100D01*
-X000100Y000100D01*
-D11*
-X002699Y001947D02*
-X002776Y001870D01*
-X002929Y001870D01*
-X003006Y001947D01*
-X003006Y002023D01*
-X002929Y002100D01*
-X002853Y002100D01*
-X002929Y002100D02*
-X003006Y002177D01*
-X003006Y002254D01*
-X002929Y002330D01*
-X002776Y002330D01*
-X002699Y002254D01*
-X003160Y002100D02*
-X003467Y002100D01*
-X003390Y001870D02*
-X003390Y002330D01*
-X003160Y002100D01*
-X017620Y012108D02*
-X017620Y012338D01*
-X017696Y012415D01*
-X018003Y012415D01*
-X018080Y012338D01*
-X018080Y012108D01*
-X017620Y012108D01*
-X017850Y013489D02*
-X017850Y013796D01*
-X017696Y013642D02*
-X018003Y013642D01*
-X017850Y014410D02*
-X017850Y014717D01*
-X017850Y016108D02*
-X017850Y016415D01*
-X017773Y016415D02*
-X018080Y016415D01*
-X017773Y016415D02*
-X017620Y016261D01*
-X017773Y016108D01*
-X018080Y016108D01*
-X017850Y017489D02*
-X017850Y017796D01*
-X017696Y017642D02*
-X018003Y017642D01*
-X017850Y018410D02*
-X017850Y018717D01*
-X020350Y010717D02*
-X020350Y010410D01*
-X020350Y009796D02*
-X020350Y009489D01*
-X020503Y009642D02*
-X020196Y009642D01*
-X020196Y008415D02*
-X020273Y008415D01*
-X020350Y008338D01*
-X020350Y008108D01*
-X020350Y008338D02*
-X020427Y008415D01*
-X020503Y008415D01*
-X020580Y008338D01*
-X020580Y008108D01*
-X020120Y008108D01*
-X020120Y008338D01*
-X020196Y008415D01*
-X020273Y007494D02*
-X020580Y007494D01*
-X020350Y007494D02*
-X020350Y007187D01*
-X020273Y007187D02*
-X020120Y007340D01*
-X020273Y007494D01*
-X020273Y007187D02*
-X020580Y007187D01*
-X018967Y004870D02*
-X018660Y004870D01*
-X018813Y004870D02*
-X018813Y005330D01*
-X018660Y005177D01*
-D12*
-X018631Y006130D02*
-X018525Y006237D01*
-X018952Y006664D01*
-X018952Y006237D01*
-X018845Y006130D01*
-X018631Y006130D01*
-X018525Y006237D02*
-X018525Y006664D01*
-X018631Y006771D01*
-X018845Y006771D01*
-X018952Y006664D01*
-X018307Y006771D02*
-X017880Y006771D01*
-X017880Y006130D01*
-X018307Y006130D01*
-X018094Y006450D02*
-X017880Y006450D01*
-X016202Y006130D02*
-X015775Y006130D01*
-X015988Y006130D02*
-X015988Y006771D01*
-X015775Y006557D01*
-X015557Y006771D02*
-X015130Y006771D01*
-X015130Y006130D01*
-X015557Y006130D01*
-X015344Y006450D02*
-X015130Y006450D01*
-X012952Y006557D02*
-X012952Y006664D01*
-X012845Y006771D01*
-X012631Y006771D01*
-X012525Y006664D01*
-X012307Y006771D02*
-X011880Y006771D01*
-X011880Y006130D01*
-X012307Y006130D01*
-X012525Y006130D02*
-X012952Y006557D01*
-X012952Y006130D02*
-X012525Y006130D01*
-X012094Y006450D02*
-X011880Y006450D01*
-X009952Y006344D02*
-X009952Y006237D01*
-X009845Y006130D01*
-X009631Y006130D01*
-X009525Y006237D01*
-X009307Y006130D02*
-X008880Y006130D01*
-X008880Y006771D01*
-X009307Y006771D01*
-X009525Y006664D02*
-X009631Y006771D01*
-X009845Y006771D01*
-X009952Y006664D01*
-X009952Y006557D01*
-X009845Y006450D01*
-X009952Y006344D01*
-X009845Y006450D02*
-X009738Y006450D01*
-X009094Y006450D02*
-X008880Y006450D01*
-X006952Y006450D02*
-X006525Y006450D01*
-X006845Y006771D01*
-X006845Y006130D01*
-X006307Y006130D02*
-X005880Y006130D01*
-X005880Y006771D01*
-X006307Y006771D01*
-X006094Y006450D02*
-X005880Y006450D01*
-X003952Y006450D02*
-X003952Y006237D01*
-X003845Y006130D01*
-X003631Y006130D01*
-X003525Y006237D01*
-X003525Y006450D02*
-X003738Y006557D01*
-X003845Y006557D01*
-X003952Y006450D01*
-X003952Y006771D02*
-X003525Y006771D01*
-X003525Y006450D01*
-X003307Y006130D02*
-X002880Y006130D01*
-X002880Y006771D01*
-X003307Y006771D01*
-X003094Y006450D02*
-X002880Y006450D01*
-X005630Y011330D02*
-X005950Y011330D01*
-X006057Y011437D01*
-X006057Y011864D01*
-X005950Y011971D01*
-X005630Y011971D01*
-X005630Y011330D01*
-X006275Y011330D02*
-X006702Y011330D01*
-X006488Y011330D02*
-X006488Y011971D01*
-X006275Y011757D01*
-X006919Y011971D02*
-X007346Y011971D01*
-X007346Y011864D01*
-X006919Y011437D01*
-X006919Y011330D01*
-X008630Y011330D02*
-X008950Y011330D01*
-X009057Y011437D01*
-X009057Y011864D01*
-X008950Y011971D01*
-X008630Y011971D01*
-X008630Y011330D01*
-X009275Y011330D02*
-X009702Y011330D01*
-X009488Y011330D02*
-X009488Y011971D01*
-X009275Y011757D01*
-X009919Y011650D02*
-X010239Y011650D01*
-X010346Y011544D01*
-X010346Y011437D01*
-X010239Y011330D01*
-X010026Y011330D01*
-X009919Y011437D01*
-X009919Y011650D01*
-X010133Y011864D01*
-X010346Y011971D01*
-X011380Y011971D02*
-X011380Y011330D01*
-X011700Y011330D01*
-X011807Y011437D01*
-X011807Y011864D01*
-X011700Y011971D01*
-X011380Y011971D01*
-X012025Y011757D02*
-X012238Y011971D01*
-X012238Y011330D01*
-X012025Y011330D02*
-X012452Y011330D01*
-X012669Y011437D02*
-X012776Y011330D01*
-X012989Y011330D01*
-X013096Y011437D01*
-X013096Y011650D01*
-X012989Y011757D01*
-X012883Y011757D01*
-X012669Y011650D01*
-X012669Y011971D01*
-X013096Y011971D01*
-X014380Y011971D02*
-X014380Y011330D01*
-X014700Y011330D01*
-X014807Y011437D01*
-X014807Y011864D01*
-X014700Y011971D01*
-X014380Y011971D01*
-X015025Y011757D02*
-X015238Y011971D01*
-X015238Y011330D01*
-X015025Y011330D02*
-X015452Y011330D01*
-X015669Y011650D02*
-X016096Y011650D01*
-X015989Y011330D02*
-X015989Y011971D01*
-X015669Y011650D01*
-X015557Y015330D02*
-X015557Y015757D01*
-X015344Y015971D01*
-X015130Y015757D01*
-X015130Y015330D01*
-X015130Y015650D02*
-X015557Y015650D01*
-X015775Y015650D02*
-X016202Y015650D01*
-X016095Y015330D02*
-X016095Y015971D01*
-X015775Y015650D01*
-X013202Y015650D02*
-X013202Y015437D01*
-X013095Y015330D01*
-X012881Y015330D01*
-X012775Y015437D01*
-X012775Y015650D02*
-X012988Y015757D01*
-X013095Y015757D01*
-X013202Y015650D01*
-X013202Y015971D02*
-X012775Y015971D01*
-X012775Y015650D01*
-X012557Y015650D02*
-X012130Y015650D01*
-X012130Y015757D02*
-X012344Y015971D01*
-X012557Y015757D01*
-X012557Y015330D01*
-X012130Y015330D02*
-X012130Y015757D01*
-X010202Y015544D02*
-X010095Y015650D01*
-X009775Y015650D01*
-X009775Y015437D01*
-X009881Y015330D01*
-X010095Y015330D01*
-X010202Y015437D01*
-X010202Y015544D01*
-X009988Y015864D02*
-X009775Y015650D01*
-X009557Y015650D02*
-X009130Y015650D01*
-X009130Y015757D02*
-X009344Y015971D01*
-X009557Y015757D01*
-X009557Y015330D01*
-X009988Y015864D02*
-X010202Y015971D01*
-X009130Y015757D02*
-X009130Y015330D01*
-X007202Y015864D02*
-X006775Y015437D01*
-X006775Y015330D01*
-X006557Y015330D02*
-X006557Y015757D01*
-X006344Y015971D01*
-X006130Y015757D01*
-X006130Y015330D01*
-X006130Y015650D02*
-X006557Y015650D01*
-X006775Y015971D02*
-X007202Y015971D01*
-X007202Y015864D01*
-D13*
-X005335Y010795D02*
-X005190Y010650D01*
-X005238Y010602D02*
-X005045Y010795D01*
-X005045Y010602D02*
-X005335Y010602D01*
-X005335Y010500D02*
-X005335Y010307D01*
-X005142Y010500D01*
-X005093Y010500D01*
-X005045Y010452D01*
-X005045Y010355D01*
-X005093Y010307D01*
-X005287Y010208D02*
-X005335Y010208D01*
-X005335Y010160D01*
-X005287Y010160D01*
-X005287Y010208D01*
-X005335Y010058D02*
-X005335Y009865D01*
-X005142Y010058D01*
-X005093Y010058D01*
-X005045Y010010D01*
-X005045Y009913D01*
-X005093Y009865D01*
-X005142Y009148D02*
-X005335Y009148D01*
-X005190Y009148D02*
-X005190Y008954D01*
-X005142Y008954D02*
-X005045Y009051D01*
-X005142Y009148D01*
-X005142Y008954D02*
-X005335Y008954D01*
-X005287Y008853D02*
-X005335Y008805D01*
-X005335Y008660D01*
-X005045Y008660D01*
-X005045Y008805D01*
-X005093Y008853D01*
-X005287Y008853D01*
-X005287Y008558D02*
-X005335Y008510D01*
-X005335Y008413D01*
-X005287Y008365D01*
-X005190Y008413D02*
-X005190Y008510D01*
-X005238Y008558D01*
-X005287Y008558D01*
-X005190Y008413D02*
-X005142Y008365D01*
-X005093Y008365D01*
-X005045Y008413D01*
-X005045Y008510D01*
-X005093Y008558D01*
-X005335Y008148D02*
-X005335Y007954D01*
-X005045Y007954D01*
-X005093Y007853D02*
-X005045Y007805D01*
-X005045Y007708D01*
-X005093Y007660D01*
-X005287Y007660D01*
-X005335Y007708D01*
-X005335Y007805D01*
-X005287Y007853D01*
-X005287Y007558D02*
-X005335Y007510D01*
-X005335Y007413D01*
-X005287Y007365D01*
-X005190Y007413D02*
-X005190Y007510D01*
-X005238Y007558D01*
-X005287Y007558D01*
-X005190Y007413D02*
-X005142Y007365D01*
-X005093Y007365D01*
-X005045Y007413D01*
-X005045Y007510D01*
-X005093Y007558D01*
-X003287Y011815D02*
-X003163Y011815D01*
-X003102Y011877D01*
-X002980Y011938D02*
-X002980Y012185D01*
-X003102Y012124D02*
-X003163Y012185D01*
-X003287Y012185D01*
-X003349Y012124D01*
-X003349Y012062D01*
-X003287Y012000D01*
-X003349Y011938D01*
-X003349Y011877D01*
-X003287Y011815D01*
-X003287Y012000D02*
-X003225Y012000D01*
-X002980Y011938D02*
-X002857Y011815D01*
-X002733Y011938D01*
-X002733Y012185D01*
-X002612Y012124D02*
-X002612Y012062D01*
-X002550Y012000D01*
-X002612Y011938D01*
-X002612Y011877D01*
-X002550Y011815D01*
-X002427Y011815D01*
-X002365Y011877D01*
-X002488Y012000D02*
-X002550Y012000D01*
-X002612Y012124D02*
-X002550Y012185D01*
-X002427Y012185D01*
-X002365Y012124D01*
-X002677Y014115D02*
-X002615Y014177D01*
-X002677Y014115D02*
-X002800Y014115D01*
-X002862Y014177D01*
-X002862Y014300D01*
-X002800Y014362D01*
-X002738Y014362D01*
-X002615Y014300D01*
-X002615Y014485D01*
-X002862Y014485D01*
-X002983Y014485D02*
-X002983Y014238D01*
-X003107Y014115D01*
-X003230Y014238D01*
-X003230Y014485D01*
-D14*
-X005370Y015070D02*
-X005370Y012130D01*
-X007020Y012130D01*
-X007820Y012130D01*
-X007820Y015070D01*
-X007020Y015070D01*
-X007020Y012130D01*
-X007020Y011070D02*
-X007820Y011070D01*
-X007820Y007130D01*
-X007020Y007130D01*
-X005370Y007130D01*
-X005370Y011070D01*
-X007020Y011070D01*
-X007020Y007130D01*
-X008370Y007130D02*
-X008370Y011070D01*
-X010020Y011070D01*
-X010820Y011070D01*
-X010820Y007130D01*
-X010020Y007130D01*
-X008370Y007130D01*
-X010020Y007130D02*
-X010020Y011070D01*
-X010020Y012130D02*
-X010820Y012130D01*
-X010820Y015070D01*
-X010020Y015070D01*
-X010020Y012130D01*
-X008370Y012130D01*
-X008370Y015070D01*
-X010020Y015070D01*
-X010020Y016130D02*
-X010820Y016130D01*
-X010820Y019070D01*
-X010020Y019070D01*
-X010020Y016130D01*
-X008370Y016130D01*
-X008370Y019070D01*
-X010020Y019070D01*
-X011370Y019070D02*
-X011370Y016130D01*
-X013020Y016130D01*
-X013820Y016130D01*
-X013820Y019070D01*
-X013020Y019070D01*
-X013020Y016130D01*
-X013020Y015070D02*
-X013820Y015070D01*
-X013820Y012130D01*
-X013020Y012130D01*
-X011370Y012130D01*
-X011370Y015070D01*
-X013020Y015070D01*
-X013020Y012130D01*
-X013020Y011070D02*
-X013820Y011070D01*
-X013820Y007130D01*
-X013020Y007130D01*
-X011370Y007130D01*
-X011370Y011070D01*
-X013020Y011070D01*
-X013020Y007130D01*
-X014370Y007130D02*
-X014370Y011070D01*
-X016020Y011070D01*
-X016820Y011070D01*
-X016820Y007130D01*
-X016020Y007130D01*
-X014370Y007130D01*
-X016020Y007130D02*
-X016020Y011070D01*
-X016020Y012130D02*
-X016820Y012130D01*
-X016820Y015070D01*
-X016020Y015070D01*
-X016020Y012130D01*
-X014370Y012130D01*
-X014370Y015070D01*
-X016020Y015070D01*
-X016020Y016130D02*
-X016820Y016130D01*
-X016820Y019070D01*
-X016020Y019070D01*
-X016020Y016130D01*
-X014370Y016130D01*
-X014370Y019070D01*
-X016020Y019070D01*
-X013020Y019070D02*
-X011370Y019070D01*
-X007820Y019070D02*
-X007820Y016130D01*
-X007020Y016130D01*
-X005370Y016130D01*
-X005370Y019070D01*
-X007020Y019070D01*
-X007820Y019070D01*
-X007020Y019070D02*
-X007020Y016130D01*
-X007020Y015070D02*
-X005370Y015070D01*
-X004820Y011070D02*
-X004020Y011070D01*
-X004020Y007130D01*
-X004820Y007130D01*
-X004820Y011070D01*
-X004020Y011070D02*
-X002370Y011070D01*
-X002370Y007130D01*
-X004020Y007130D01*
-X001100Y005390D02*
-X021100Y005390D01*
-X021100Y001810D01*
-X001100Y001810D01*
-X001100Y005390D01*
-X017370Y007130D02*
-X017370Y011070D01*
-X019020Y011070D01*
-X019820Y011070D01*
-X019820Y007130D01*
-X019020Y007130D01*
-X017370Y007130D01*
-X019020Y007130D02*
-X019020Y011070D01*
-D15*
-X002905Y012514D02*
-X002789Y012590D01*
-X002783Y012600D02*
-X002905Y012692D01*
-X002783Y012781D02*
-X002783Y012600D01*
-X002783Y012419D01*
-X002783Y013419D02*
-X002783Y013600D01*
-X002905Y013692D01*
-X002783Y013781D02*
-X002783Y013600D01*
-X002789Y013590D02*
-X002905Y013514D01*
-D16*
-X004350Y013600D03*
-X004350Y012600D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GTP b/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GTP
deleted file mode 100644
index 710750b..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GTP
+++ /dev/null
@@ -1,63 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0118*%
-%ADD12R,0.0433X0.0394*%
-D10*
-X000100Y000100D02*
-X000100Y032350D01*
-X022100Y032350D01*
-X022100Y000100D01*
-X000100Y000100D01*
-D11*
-X002643Y012462D02*
-X002643Y012738D01*
-X002643Y012462D02*
-X002367Y012462D01*
-X002367Y012738D01*
-X002643Y012738D01*
-X002643Y012579D02*
-X002367Y012579D01*
-X002367Y012696D02*
-X002643Y012696D01*
-X002643Y013462D02*
-X002643Y013738D01*
-X002643Y013462D02*
-X002367Y013462D01*
-X002367Y013738D01*
-X002643Y013738D01*
-X002643Y013579D02*
-X002367Y013579D01*
-X002367Y013696D02*
-X002643Y013696D01*
-X003333Y013738D02*
-X003333Y013462D01*
-X003057Y013462D01*
-X003057Y013738D01*
-X003333Y013738D01*
-X003333Y013579D02*
-X003057Y013579D01*
-X003057Y013696D02*
-X003333Y013696D01*
-X003333Y012738D02*
-X003333Y012462D01*
-X003057Y012462D01*
-X003057Y012738D01*
-X003333Y012738D01*
-X003333Y012579D02*
-X003057Y012579D01*
-X003057Y012696D02*
-X003333Y012696D01*
-D12*
-X004015Y012600D03*
-X004685Y012600D03*
-X004685Y013600D03*
-X004015Y013600D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GTS b/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GTS
deleted file mode 100644
index 5ff4cd5..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.GTS
+++ /dev/null
@@ -1,153 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0640*%
-%ADD12R,0.0640X0.0640*%
-%ADD13C,0.0130*%
-%ADD14R,0.0473X0.0434*%
-%ADD15C,0.1700*%
-D10*
-X000100Y000100D02*
-X000100Y032350D01*
-X022100Y032350D01*
-X022100Y000100D01*
-X000100Y000100D01*
-D11*
-X003100Y003100D03*
-X003100Y004100D03*
-X004100Y004100D03*
-X004100Y003100D03*
-X005100Y003100D03*
-X005100Y004100D03*
-X006100Y004100D03*
-X006100Y003100D03*
-X007100Y003100D03*
-X007100Y004100D03*
-X008100Y004100D03*
-X008100Y003100D03*
-X009100Y003100D03*
-X009100Y004100D03*
-X010100Y004100D03*
-X010100Y003100D03*
-X011100Y003100D03*
-X011100Y004100D03*
-X012100Y004100D03*
-X012100Y003100D03*
-X013100Y003100D03*
-X013100Y004100D03*
-X014100Y004100D03*
-X014100Y003100D03*
-X015100Y003100D03*
-X015100Y004100D03*
-X016100Y004100D03*
-X016100Y003100D03*
-X017100Y003100D03*
-X017100Y004100D03*
-X018100Y004100D03*
-X018100Y003100D03*
-X019100Y003100D03*
-X018600Y007600D03*
-X018600Y008600D03*
-X018600Y009600D03*
-X018600Y010600D03*
-X015600Y010600D03*
-X015600Y009600D03*
-X015600Y008600D03*
-X015600Y007600D03*
-X012600Y007600D03*
-X012600Y008600D03*
-X012600Y009600D03*
-X012600Y010600D03*
-X012600Y012600D03*
-X012600Y013600D03*
-X012600Y014600D03*
-X012600Y016600D03*
-X012600Y017600D03*
-X012600Y018600D03*
-X009600Y018600D03*
-X009600Y017600D03*
-X009600Y016600D03*
-X009600Y014600D03*
-X009600Y013600D03*
-X009600Y012600D03*
-X009600Y010600D03*
-X009600Y009600D03*
-X009600Y008600D03*
-X009600Y007600D03*
-X006600Y007600D03*
-X006600Y008600D03*
-X006600Y009600D03*
-X006600Y010600D03*
-X006600Y012600D03*
-X006600Y013600D03*
-X006600Y014600D03*
-X006600Y016600D03*
-X006600Y017600D03*
-X006600Y018600D03*
-X003600Y010600D03*
-X003600Y009600D03*
-X003600Y008600D03*
-X003600Y007600D03*
-X015600Y012600D03*
-X015600Y013600D03*
-X015600Y014600D03*
-X015600Y016600D03*
-X015600Y017600D03*
-X015600Y018600D03*
-D12*
-X019100Y004100D03*
-D13*
-X003347Y012448D02*
-X003347Y012752D01*
-X003347Y012448D02*
-X003043Y012448D01*
-X003043Y012752D01*
-X003347Y012752D01*
-X003347Y012577D02*
-X003043Y012577D01*
-X003043Y012706D02*
-X003347Y012706D01*
-X003347Y013448D02*
-X003347Y013752D01*
-X003347Y013448D02*
-X003043Y013448D01*
-X003043Y013752D01*
-X003347Y013752D01*
-X003347Y013577D02*
-X003043Y013577D01*
-X003043Y013706D02*
-X003347Y013706D01*
-X002657Y013752D02*
-X002657Y013448D01*
-X002353Y013448D01*
-X002353Y013752D01*
-X002657Y013752D01*
-X002657Y013577D02*
-X002353Y013577D01*
-X002353Y013706D02*
-X002657Y013706D01*
-X002657Y012752D02*
-X002657Y012448D01*
-X002353Y012448D01*
-X002353Y012752D01*
-X002657Y012752D01*
-X002657Y012577D02*
-X002353Y012577D01*
-X002353Y012706D02*
-X002657Y012706D01*
-D14*
-X004015Y012600D03*
-X004685Y012600D03*
-X004685Y013600D03*
-X004015Y013600D03*
-D15*
-X001330Y030875D03*
-X020870Y030875D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.TXT b/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.TXT
deleted file mode 100644
index e13d4d9..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.TXT
+++ /dev/null
@@ -1,99 +0,0 @@
-%
-M48
-M72
-T01C0.0236
-T02C0.0400
-T03C0.1260
-%
-T01
-X5350Y6350
-X6850Y1850
-X11100Y1850
-X5600Y12600
-T02
-X3100Y3100
-X3100Y4100
-X4100Y4100
-X4100Y3100
-X5100Y3100
-X5100Y4100
-X6100Y4100
-X6100Y3100
-X7100Y3100
-X7100Y4100
-X8100Y4100
-X8100Y3100
-X9100Y3100
-X9100Y4100
-X10100Y4100
-X10100Y3100
-X11100Y3100
-X11100Y4100
-X12100Y4100
-X12100Y3100
-X13100Y3100
-X13100Y4100
-X14100Y4100
-X14100Y3100
-X15100Y3100
-X15100Y4100
-X16100Y4100
-X16100Y3100
-X17100Y3100
-X17100Y4100
-X18100Y4100
-X18100Y3100
-X19100Y3100
-X19100Y4100
-X18600Y7600
-X18600Y8600
-X18600Y9600
-X18600Y10600
-X15600Y10600
-X15600Y9600
-X15600Y8600
-X15600Y7600
-X12600Y7600
-X12600Y8600
-X12600Y9600
-X12600Y10600
-X12600Y12600
-X12600Y13600
-X12600Y14600
-X12600Y16600
-X12600Y17600
-X12600Y18600
-X9600Y18600
-X9600Y17600
-X9600Y16600
-X9600Y14600
-X9600Y13600
-X9600Y12600
-X9600Y10600
-X9600Y9600
-X9600Y8600
-X9600Y7600
-X6600Y7600
-X6600Y8600
-X6600Y9600
-X6600Y10600
-X6600Y12600
-X6600Y13600
-X6600Y14600
-X6600Y16600
-X6600Y17600
-X6600Y18600
-X3600Y10600
-X3600Y9600
-X3600Y8600
-X3600Y7600
-X15600Y12600
-X15600Y13600
-X15600Y14600
-X15600Y16600
-X15600Y17600
-X15600Y18600
-T03
-X1330Y30875
-X20870Y30875
-M30
diff --git a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.dri b/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.dri
deleted file mode 100644
index c924da2..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.dri
+++ /dev/null
@@ -1,38 +0,0 @@
-Generated by EAGLE CAM Processor 6.5.0
-
-Drill Station Info File: /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/expansion_board.dri
-
- Date              : 19 Aug 2014 01:47:35
- Drills            : generated
- Device            : Excellon drill station
-
-Parameter settings:
-
- Tolerance Drill + :  0.00 %
- Tolerance Drill - :  0.00 %
- Rotate            : no
- Mirror            : no
- Optimize          : yes
- Auto fit          : yes
- OffsetX           : 0inch
- OffsetY           : 0inch
- Layers            : Drills Holes
-
-Drill File Info:
-
- Data Mode         : Absolute
- Units             : 1/10000 Inch
-
-Drills used:
-
- Code  Size       used
-
- T01   0.0236inch     4
- T02   0.0400inch    82
- T03   0.1260inch     2
-
-Total number of drills: 88
-
-Plotfiles:
-
- /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/expansion_board.TXT
diff --git a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.gpi b/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.gpi
deleted file mode 100644
index 7078af9..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/expansion_board/expansion_board.gpi
+++ /dev/null
@@ -1,47 +0,0 @@
-Generated by EAGLE CAM Processor 6.5.0
-
-Photoplotter Info File: /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/expansion_board.gpi
-
- Date              : 19 Aug 2014 01:47:36
- Plotfile          : /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/expansion_board.GTL
- Apertures         : generated: 
- Device            : Gerber RS-274-X photoplotter, coordinate format 2.4 inch
-
-Parameter settings:
-
- Emulate Apertures : no
- Tolerance Draw  + :  0.00 %
- Tolerance Draw  - :  0.00 %
- Tolerance Flash + :  0.00 %
- Tolerance Flash - :  0.00 %
- Rotate            : no
- Mirror            : no
- Optimize          : yes
- Auto fit          : yes
- OffsetX           : 0inch
- OffsetY           : 0inch
-
-Plotfile Info:
-
- Coordinate Format : 2.4
- Coordinate Units  : Inch
- Data Mode         : Absolute
- Zero Suppression  : None
- End Of Block      : *
-
-Apertures used:
-
- Code     Shape     Size                  used
-
- D10      draw      0.0000inch               4
- D11      draw      0.0020inch             179
- D12      draw      0.0060inch             358
- D13      round     0.0600inch              81
- D14      square    0.0600inch               1
- D15      draw      0.0118inch               4
- D16      rectangle 0.0433inch x 0.0394inch     4
- D17      draw      0.0160inch              61
- D18      round     0.0356inch               4
- D19      draw      0.0320inch              52
- D20      round     0.1660inch               2
-
diff --git a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter.zip b/roborio_expansion_boards/seed_studio_20140818/pwm_adapter.zip
deleted file mode 100644
index e765833..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter.zip
+++ /dev/null
Binary files differ
diff --git a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GBL b/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GBL
deleted file mode 100644
index a3504a1..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GBL
+++ /dev/null
@@ -1,79 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0600*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X001100Y001625D03*
-X001100Y004625D03*
-X001100Y007625D03*
-X001100Y010625D03*
-X001100Y013625D03*
-X001100Y016625D03*
-X001100Y019625D03*
-X001100Y022625D03*
-X001100Y025625D03*
-X001100Y028625D03*
-X002100Y028625D03*
-X002100Y025625D03*
-X002100Y022625D03*
-X002100Y019625D03*
-X002100Y016625D03*
-X002100Y013625D03*
-X002100Y010625D03*
-X002100Y007625D03*
-X002100Y004625D03*
-X002100Y001625D03*
-X003100Y001625D03*
-X003100Y004625D03*
-X003100Y007625D03*
-X003100Y010625D03*
-X003100Y013625D03*
-X003100Y016625D03*
-X003100Y019625D03*
-X003100Y022625D03*
-X003100Y025625D03*
-X003100Y028625D03*
-X005100Y028625D03*
-X005100Y027625D03*
-X005100Y026625D03*
-X005100Y025625D03*
-X005100Y024625D03*
-X005100Y023625D03*
-X005100Y022625D03*
-X005100Y021625D03*
-X005100Y020625D03*
-X005100Y019625D03*
-X005100Y018625D03*
-X005100Y017625D03*
-X005100Y016625D03*
-X005100Y015625D03*
-X005100Y014625D03*
-X005100Y013625D03*
-X005100Y012625D03*
-X005100Y011625D03*
-X005100Y010625D03*
-X005100Y009625D03*
-X005100Y008625D03*
-X005100Y007625D03*
-X005100Y006625D03*
-X005100Y005625D03*
-X005100Y004625D03*
-X005100Y003625D03*
-X005100Y002625D03*
-X005100Y001625D03*
-X005100Y000625D03*
-X005100Y029625D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GBO b/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GBO
deleted file mode 100644
index ea93d81..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GBO
+++ /dev/null
@@ -1,69 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0050*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X000600Y001125D02*
-X000600Y002125D01*
-X003600Y002125D01*
-X003600Y001125D01*
-X000600Y001125D01*
-X000600Y004125D02*
-X003600Y004125D01*
-X003600Y005125D01*
-X000600Y005125D01*
-X000600Y004125D01*
-X000600Y007125D02*
-X003600Y007125D01*
-X003600Y008125D01*
-X000600Y008125D01*
-X000600Y007125D01*
-X000600Y010125D02*
-X003600Y010125D01*
-X003600Y011125D01*
-X000600Y011125D01*
-X000600Y010125D01*
-X000600Y013125D02*
-X003600Y013125D01*
-X003600Y014125D01*
-X000600Y014125D01*
-X000600Y013125D01*
-X000600Y016125D02*
-X003600Y016125D01*
-X003600Y017125D01*
-X000600Y017125D01*
-X000600Y016125D01*
-X000600Y019125D02*
-X003600Y019125D01*
-X003600Y020125D01*
-X000600Y020125D01*
-X000600Y019125D01*
-X000600Y022125D02*
-X003600Y022125D01*
-X003600Y023125D01*
-X000600Y023125D01*
-X000600Y022125D01*
-X000600Y025125D02*
-X003600Y025125D01*
-X003600Y026125D01*
-X000600Y026125D01*
-X000600Y025125D01*
-X000600Y028125D02*
-X003600Y028125D01*
-X003600Y029125D01*
-X000600Y029125D01*
-X000600Y028125D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GBP b/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GBP
deleted file mode 100644
index f166dff..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GBP
+++ /dev/null
@@ -1,17 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GBS b/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GBS
deleted file mode 100644
index ddb86fd..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GBS
+++ /dev/null
@@ -1,79 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0640*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X001100Y001625D03*
-X001100Y004625D03*
-X001100Y007625D03*
-X001100Y010625D03*
-X001100Y013625D03*
-X001100Y016625D03*
-X001100Y019625D03*
-X001100Y022625D03*
-X001100Y025625D03*
-X001100Y028625D03*
-X002100Y028625D03*
-X002100Y025625D03*
-X002100Y022625D03*
-X002100Y019625D03*
-X002100Y016625D03*
-X002100Y013625D03*
-X002100Y010625D03*
-X002100Y007625D03*
-X002100Y004625D03*
-X002100Y001625D03*
-X003100Y001625D03*
-X003100Y004625D03*
-X003100Y007625D03*
-X003100Y010625D03*
-X003100Y013625D03*
-X003100Y016625D03*
-X003100Y019625D03*
-X003100Y022625D03*
-X003100Y025625D03*
-X003100Y028625D03*
-X005100Y028625D03*
-X005100Y027625D03*
-X005100Y026625D03*
-X005100Y025625D03*
-X005100Y024625D03*
-X005100Y023625D03*
-X005100Y022625D03*
-X005100Y021625D03*
-X005100Y020625D03*
-X005100Y019625D03*
-X005100Y018625D03*
-X005100Y017625D03*
-X005100Y016625D03*
-X005100Y015625D03*
-X005100Y014625D03*
-X005100Y013625D03*
-X005100Y012625D03*
-X005100Y011625D03*
-X005100Y010625D03*
-X005100Y009625D03*
-X005100Y008625D03*
-X005100Y007625D03*
-X005100Y006625D03*
-X005100Y005625D03*
-X005100Y004625D03*
-X005100Y003625D03*
-X005100Y002625D03*
-X005100Y001625D03*
-X005100Y000625D03*
-X005100Y029625D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GML b/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GML
deleted file mode 100644
index f166dff..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GML
+++ /dev/null
@@ -1,17 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GTL b/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GTL
deleted file mode 100644
index 09a322a..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GTL
+++ /dev/null
@@ -1,854 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0020*%
-%ADD12C,0.0600*%
-%ADD13R,0.0433X0.0394*%
-%ADD14C,0.0160*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X000260Y005260D02*
-X000260Y005407D01*
-X000260Y005481D02*
-X000260Y005591D01*
-X000297Y005628D01*
-X000370Y005628D01*
-X000407Y005591D01*
-X000407Y005481D01*
-X000480Y005481D02*
-X000260Y005481D01*
-X000260Y005260D02*
-X000480Y005260D01*
-X000370Y005260D02*
-X000370Y005333D01*
-X000407Y005554D02*
-X000480Y005628D01*
-X000443Y005702D02*
-X000480Y005739D01*
-X000480Y005812D01*
-X000443Y005849D01*
-X000443Y005702D02*
-X000297Y005702D01*
-X000260Y005739D01*
-X000260Y005812D01*
-X000297Y005849D01*
-X000260Y006144D02*
-X000260Y006291D01*
-X000260Y006217D02*
-X000480Y006217D01*
-X000443Y006365D02*
-X000370Y006365D01*
-X000333Y006402D01*
-X000333Y006475D01*
-X000370Y006512D01*
-X000407Y006512D01*
-X000407Y006365D01*
-X000443Y006365D02*
-X000480Y006402D01*
-X000480Y006475D01*
-X000443Y006586D02*
-X000407Y006623D01*
-X000407Y006733D01*
-X000370Y006733D02*
-X000480Y006733D01*
-X000480Y006623D01*
-X000443Y006586D01*
-X000333Y006696D02*
-X000370Y006733D01*
-X000333Y006696D02*
-X000333Y006623D01*
-X000333Y006807D02*
-X000333Y006844D01*
-X000370Y006880D01*
-X000333Y006917D01*
-X000370Y006954D01*
-X000480Y006954D01*
-X000480Y006880D02*
-X000370Y006880D01*
-X000333Y006807D02*
-X000480Y006807D01*
-X000443Y007249D02*
-X000480Y007286D01*
-X000480Y007359D01*
-X000443Y007396D01*
-X000297Y007396D01*
-X000260Y007359D01*
-X000260Y007286D01*
-X000297Y007249D01*
-X000333Y007249D01*
-X000370Y007286D01*
-X000370Y007396D01*
-X000443Y007470D02*
-X000297Y007617D01*
-X000260Y007617D01*
-X000260Y007470D01*
-X000333Y007691D02*
-X000260Y007764D01*
-X000480Y007764D01*
-X000480Y007691D02*
-X000480Y007838D01*
-X000480Y008133D02*
-X000260Y008133D01*
-X000260Y008243D01*
-X000297Y008280D01*
-X000370Y008280D01*
-X000407Y008243D01*
-X000407Y008133D01*
-X000480Y008354D02*
-X000407Y008427D01*
-X000480Y008501D01*
-X000260Y008501D01*
-X000260Y008575D02*
-X000333Y008648D01*
-X000260Y008722D01*
-X000480Y008722D01*
-X000480Y008575D02*
-X000260Y008575D01*
-X000260Y008354D02*
-X000480Y008354D01*
-X000443Y009017D02*
-X000297Y009017D01*
-X000260Y009053D01*
-X000260Y009127D01*
-X000297Y009164D01*
-X000370Y009238D02*
-X000333Y009274D01*
-X000333Y009348D01*
-X000370Y009385D01*
-X000443Y009385D01*
-X000480Y009348D01*
-X000480Y009274D01*
-X000443Y009238D01*
-X000370Y009238D01*
-X000443Y009164D02*
-X000480Y009127D01*
-X000480Y009053D01*
-X000443Y009017D01*
-X000480Y009459D02*
-X000333Y009459D01*
-X000333Y009569D01*
-X000370Y009606D01*
-X000480Y009606D01*
-X000480Y009680D02*
-X000333Y009680D01*
-X000333Y009790D01*
-X000370Y009827D01*
-X000480Y009827D01*
-X000443Y009901D02*
-X000370Y009901D01*
-X000333Y009937D01*
-X000333Y010011D01*
-X000370Y010048D01*
-X000407Y010048D01*
-X000407Y009901D01*
-X000443Y009901D02*
-X000480Y009937D01*
-X000480Y010011D01*
-X000443Y010122D02*
-X000480Y010158D01*
-X000480Y010269D01*
-X000443Y010379D02*
-X000480Y010416D01*
-X000443Y010379D02*
-X000297Y010379D01*
-X000333Y010343D02*
-X000333Y010416D01*
-X000370Y010490D02*
-X000333Y010527D01*
-X000333Y010600D01*
-X000370Y010637D01*
-X000443Y010637D01*
-X000480Y010600D01*
-X000480Y010527D01*
-X000443Y010490D01*
-X000370Y010490D01*
-X000407Y010711D02*
-X000333Y010784D01*
-X000333Y010821D01*
-X000333Y010711D02*
-X000480Y010711D01*
-X000480Y011116D02*
-X000333Y011116D01*
-X000260Y011190D01*
-X000333Y011263D01*
-X000480Y011263D01*
-X000443Y011337D02*
-X000370Y011337D01*
-X000333Y011374D01*
-X000333Y011484D01*
-X000260Y011484D02*
-X000480Y011484D01*
-X000480Y011374D01*
-X000443Y011337D01*
-X000370Y011263D02*
-X000370Y011116D01*
-X000443Y011558D02*
-X000407Y011595D01*
-X000407Y011705D01*
-X000370Y011705D02*
-X000480Y011705D01*
-X000480Y011595D01*
-X000443Y011558D01*
-X000333Y011668D02*
-X000370Y011705D01*
-X000333Y011668D02*
-X000333Y011595D01*
-X000333Y011779D02*
-X000333Y011889D01*
-X000370Y011926D01*
-X000443Y011926D01*
-X000480Y011889D01*
-X000480Y011779D01*
-X000443Y012037D02*
-X000480Y012074D01*
-X000443Y012037D02*
-X000297Y012037D01*
-X000333Y012000D02*
-X000333Y012074D01*
-X000370Y012147D02*
-X000333Y012184D01*
-X000333Y012258D01*
-X000370Y012294D01*
-X000407Y012294D01*
-X000407Y012147D01*
-X000443Y012147D02*
-X000370Y012147D01*
-X000443Y012147D02*
-X000480Y012184D01*
-X000480Y012258D01*
-X000480Y012368D02*
-X000333Y012368D01*
-X000407Y012368D02*
-X000333Y012442D01*
-X000333Y012479D01*
-X000333Y011779D02*
-X000553Y011779D01*
-X000333Y010269D02*
-X000333Y010158D01*
-X000370Y010122D01*
-X000443Y010122D01*
-X000443Y007470D02*
-X000480Y007470D01*
-X000657Y006954D02*
-X000620Y006917D01*
-X000620Y006844D01*
-X000657Y006807D01*
-X000693Y006807D01*
-X000730Y006844D01*
-X000730Y006917D01*
-X000767Y006954D01*
-X000803Y006954D01*
-X000840Y006917D01*
-X000840Y006844D01*
-X000803Y006807D01*
-X000767Y006807D01*
-X000730Y006844D01*
-X000730Y006917D02*
-X000693Y006954D01*
-X000657Y006954D01*
-X000620Y006659D02*
-X000840Y006659D01*
-X000840Y006586D02*
-X000840Y006733D01*
-X000803Y006512D02*
-X000840Y006475D01*
-X000840Y006402D01*
-X000803Y006365D01*
-X000767Y006365D01*
-X000730Y006402D01*
-X000730Y006475D01*
-X000767Y006512D01*
-X000803Y006512D01*
-X000730Y006475D02*
-X000693Y006512D01*
-X000657Y006512D01*
-X000620Y006475D01*
-X000620Y006402D01*
-X000657Y006365D01*
-X000693Y006365D01*
-X000730Y006402D01*
-X000657Y006291D02*
-X000803Y006291D01*
-X000840Y006254D01*
-X000840Y006181D01*
-X000803Y006144D01*
-X000657Y006291D01*
-X000620Y006254D01*
-X000620Y006181D01*
-X000657Y006144D01*
-X000803Y006144D01*
-X000730Y006070D02*
-X000730Y005923D01*
-X000620Y006033D01*
-X000840Y006033D01*
-X000840Y005849D02*
-X000840Y005702D01*
-X000840Y005775D02*
-X000620Y005775D01*
-X000693Y005702D01*
-X000657Y005628D02*
-X000803Y005481D01*
-X000840Y005518D01*
-X000840Y005591D01*
-X000803Y005628D01*
-X000657Y005628D01*
-X000620Y005591D01*
-X000620Y005518D01*
-X000657Y005481D01*
-X000803Y005481D01*
-X000840Y005407D02*
-X000840Y005260D01*
-X000693Y005407D01*
-X000657Y005407D01*
-X000620Y005370D01*
-X000620Y005297D01*
-X000657Y005260D01*
-X000693Y006586D02*
-X000620Y006659D01*
-X000657Y020385D02*
-X000620Y020422D01*
-X000620Y020495D01*
-X000657Y020532D01*
-X000693Y020532D01*
-X000840Y020385D01*
-X000840Y020532D01*
-X000803Y020606D02*
-X000657Y020753D01*
-X000803Y020753D01*
-X000840Y020716D01*
-X000840Y020643D01*
-X000803Y020606D01*
-X000657Y020606D01*
-X000620Y020643D01*
-X000620Y020716D01*
-X000657Y020753D01*
-X000693Y020827D02*
-X000620Y020900D01*
-X000840Y020900D01*
-X000840Y020827D02*
-X000840Y020974D01*
-X000840Y021158D02*
-X000620Y021158D01*
-X000730Y021048D01*
-X000730Y021195D01*
-X000803Y021269D02*
-X000657Y021416D01*
-X000803Y021416D01*
-X000840Y021379D01*
-X000840Y021306D01*
-X000803Y021269D01*
-X000657Y021269D01*
-X000620Y021306D01*
-X000620Y021379D01*
-X000657Y021416D01*
-X000657Y021490D02*
-X000620Y021527D01*
-X000620Y021600D01*
-X000657Y021637D01*
-X000693Y021637D01*
-X000730Y021600D01*
-X000730Y021527D01*
-X000693Y021490D01*
-X000657Y021490D01*
-X000730Y021527D02*
-X000767Y021490D01*
-X000803Y021490D01*
-X000840Y021527D01*
-X000840Y021600D01*
-X000803Y021637D01*
-X000767Y021637D01*
-X000730Y021600D01*
-X000693Y021711D02*
-X000620Y021784D01*
-X000840Y021784D01*
-X000840Y021711D02*
-X000840Y021858D01*
-X000803Y021932D02*
-X000840Y021969D01*
-X000840Y022042D01*
-X000803Y022079D01*
-X000767Y022079D01*
-X000730Y022042D01*
-X000730Y021969D01*
-X000693Y021932D01*
-X000657Y021932D01*
-X000620Y021969D01*
-X000620Y022042D01*
-X000657Y022079D01*
-X000693Y022079D01*
-X000730Y022042D01*
-X000730Y021969D02*
-X000767Y021932D01*
-X000803Y021932D01*
-X000480Y021932D02*
-X000333Y021932D01*
-X000333Y021969D01*
-X000370Y022005D01*
-X000333Y022042D01*
-X000370Y022079D01*
-X000480Y022079D01*
-X000480Y022005D02*
-X000370Y022005D01*
-X000370Y021858D02*
-X000480Y021858D01*
-X000480Y021748D01*
-X000443Y021711D01*
-X000407Y021748D01*
-X000407Y021858D01*
-X000370Y021858D02*
-X000333Y021821D01*
-X000333Y021748D01*
-X000370Y021637D02*
-X000333Y021600D01*
-X000333Y021527D01*
-X000370Y021490D01*
-X000443Y021490D01*
-X000480Y021527D01*
-X000480Y021600D01*
-X000407Y021637D02*
-X000407Y021490D01*
-X000407Y021637D02*
-X000370Y021637D01*
-X000480Y021342D02*
-X000260Y021342D01*
-X000260Y021269D02*
-X000260Y021416D01*
-X000297Y020974D02*
-X000260Y020937D01*
-X000260Y020864D01*
-X000297Y020827D01*
-X000443Y020827D01*
-X000480Y020864D01*
-X000480Y020937D01*
-X000443Y020974D01*
-X000480Y020753D02*
-X000407Y020679D01*
-X000407Y020716D02*
-X000407Y020606D01*
-X000480Y020606D02*
-X000260Y020606D01*
-X000260Y020716D01*
-X000297Y020753D01*
-X000370Y020753D01*
-X000407Y020716D01*
-X000370Y020458D02*
-X000370Y020385D01*
-X000480Y020385D02*
-X000260Y020385D01*
-X000260Y020532D01*
-X000297Y022374D02*
-X000260Y022411D01*
-X000260Y022484D01*
-X000297Y022521D01*
-X000443Y022521D01*
-X000480Y022484D01*
-X000480Y022411D01*
-X000443Y022374D01*
-X000370Y022411D02*
-X000370Y022521D01*
-X000443Y022595D02*
-X000297Y022742D01*
-X000260Y022742D01*
-X000260Y022595D01*
-X000370Y022411D02*
-X000333Y022374D01*
-X000297Y022374D01*
-X000333Y022816D02*
-X000260Y022889D01*
-X000480Y022889D01*
-X000480Y022816D02*
-X000480Y022963D01*
-X000480Y023258D02*
-X000260Y023258D01*
-X000260Y023368D01*
-X000297Y023405D01*
-X000370Y023405D01*
-X000407Y023368D01*
-X000407Y023258D01*
-X000480Y023479D02*
-X000407Y023552D01*
-X000480Y023626D01*
-X000260Y023626D01*
-X000260Y023700D02*
-X000333Y023773D01*
-X000260Y023847D01*
-X000480Y023847D01*
-X000480Y023700D02*
-X000260Y023700D01*
-X000260Y023479D02*
-X000480Y023479D01*
-X000443Y024142D02*
-X000297Y024142D01*
-X000260Y024178D01*
-X000260Y024252D01*
-X000297Y024289D01*
-X000370Y024363D02*
-X000333Y024399D01*
-X000333Y024473D01*
-X000370Y024510D01*
-X000443Y024510D01*
-X000480Y024473D01*
-X000480Y024399D01*
-X000443Y024363D01*
-X000370Y024363D01*
-X000443Y024289D02*
-X000480Y024252D01*
-X000480Y024178D01*
-X000443Y024142D01*
-X000480Y024584D02*
-X000333Y024584D01*
-X000333Y024694D01*
-X000370Y024731D01*
-X000480Y024731D01*
-X000480Y024805D02*
-X000333Y024805D01*
-X000333Y024915D01*
-X000370Y024952D01*
-X000480Y024952D01*
-X000443Y025026D02*
-X000370Y025026D01*
-X000333Y025062D01*
-X000333Y025136D01*
-X000370Y025173D01*
-X000407Y025173D01*
-X000407Y025026D01*
-X000443Y025026D02*
-X000480Y025062D01*
-X000480Y025136D01*
-X000443Y025247D02*
-X000480Y025283D01*
-X000480Y025394D01*
-X000443Y025504D02*
-X000480Y025541D01*
-X000443Y025504D02*
-X000297Y025504D01*
-X000333Y025468D02*
-X000333Y025541D01*
-X000370Y025615D02*
-X000333Y025652D01*
-X000333Y025725D01*
-X000370Y025762D01*
-X000443Y025762D01*
-X000480Y025725D01*
-X000480Y025652D01*
-X000443Y025615D01*
-X000370Y025615D01*
-X000407Y025836D02*
-X000333Y025909D01*
-X000333Y025946D01*
-X000333Y025836D02*
-X000480Y025836D01*
-X000480Y026241D02*
-X000333Y026241D01*
-X000260Y026315D01*
-X000333Y026388D01*
-X000480Y026388D01*
-X000443Y026462D02*
-X000370Y026462D01*
-X000333Y026499D01*
-X000333Y026609D01*
-X000260Y026609D02*
-X000480Y026609D01*
-X000480Y026499D01*
-X000443Y026462D01*
-X000370Y026388D02*
-X000370Y026241D01*
-X000443Y026683D02*
-X000407Y026720D01*
-X000407Y026830D01*
-X000370Y026830D02*
-X000480Y026830D01*
-X000480Y026720D01*
-X000443Y026683D01*
-X000333Y026793D02*
-X000370Y026830D01*
-X000333Y026793D02*
-X000333Y026720D01*
-X000333Y026904D02*
-X000333Y027014D01*
-X000370Y027051D01*
-X000443Y027051D01*
-X000480Y027014D01*
-X000480Y026904D01*
-X000443Y027162D02*
-X000480Y027199D01*
-X000443Y027162D02*
-X000297Y027162D01*
-X000333Y027125D02*
-X000333Y027199D01*
-X000370Y027272D02*
-X000333Y027309D01*
-X000333Y027383D01*
-X000370Y027419D01*
-X000407Y027419D01*
-X000407Y027272D01*
-X000443Y027272D02*
-X000370Y027272D01*
-X000443Y027272D02*
-X000480Y027309D01*
-X000480Y027383D01*
-X000480Y027493D02*
-X000333Y027493D01*
-X000407Y027493D02*
-X000333Y027567D01*
-X000333Y027604D01*
-X000333Y026904D02*
-X000553Y026904D01*
-X000333Y025394D02*
-X000333Y025283D01*
-X000370Y025247D01*
-X000443Y025247D01*
-X000443Y022595D02*
-X000480Y022595D01*
-D12*
-X001100Y022625D03*
-X001100Y019625D03*
-X001100Y016625D03*
-X001100Y013625D03*
-X001100Y010625D03*
-X001100Y007625D03*
-X001100Y004625D03*
-X001100Y001625D03*
-X002100Y001625D03*
-X002100Y004625D03*
-X002100Y007625D03*
-X002100Y010625D03*
-X002100Y013625D03*
-X002100Y016625D03*
-X002100Y019625D03*
-X002100Y022625D03*
-X002100Y025625D03*
-X002100Y028625D03*
-X003100Y028625D03*
-X003100Y025625D03*
-X003100Y022625D03*
-X003100Y019625D03*
-X003100Y016625D03*
-X003100Y013625D03*
-X003100Y010625D03*
-X003100Y007625D03*
-X003100Y004625D03*
-X003100Y001625D03*
-X005100Y001625D03*
-X005100Y000625D03*
-X005100Y002625D03*
-X005100Y003625D03*
-X005100Y004625D03*
-X005100Y005625D03*
-X005100Y006625D03*
-X005100Y007625D03*
-X005100Y008625D03*
-X005100Y009625D03*
-X005100Y010625D03*
-X005100Y011625D03*
-X005100Y012625D03*
-X005100Y013625D03*
-X005100Y014625D03*
-X005100Y015625D03*
-X005100Y016625D03*
-X005100Y017625D03*
-X005100Y018625D03*
-X005100Y019625D03*
-X005100Y020625D03*
-X005100Y021625D03*
-X005100Y022625D03*
-X005100Y023625D03*
-X005100Y024625D03*
-X005100Y025625D03*
-X005100Y026625D03*
-X005100Y027625D03*
-X005100Y028625D03*
-X005100Y029625D03*
-X001100Y028625D03*
-X001100Y025625D03*
-D13*
-X001265Y024750D03*
-X001935Y024750D03*
-X001935Y021750D03*
-X001935Y018750D03*
-X001265Y018750D03*
-X001265Y021750D03*
-X001265Y015750D03*
-X001935Y015750D03*
-X001935Y012750D03*
-X001265Y012750D03*
-X001265Y009750D03*
-X001935Y009750D03*
-X001935Y006750D03*
-X001265Y006750D03*
-X001265Y003750D03*
-X001935Y003750D03*
-X001935Y000750D03*
-X001265Y000750D03*
-X001265Y027750D03*
-X001935Y027750D03*
-D14*
-X002100Y027750D01*
-X002100Y028625D01*
-X002100Y029250D01*
-X004100Y029250D01*
-X004100Y028625D01*
-X005100Y028625D01*
-X005100Y027625D02*
-X003100Y027625D01*
-X003100Y028625D01*
-X003100Y025625D02*
-X003100Y024625D01*
-X005100Y024625D01*
-X005100Y023625D02*
-X001100Y023625D01*
-X001100Y022625D01*
-X001100Y021750D01*
-X001265Y021750D01*
-X001100Y020625D02*
-X001100Y019625D01*
-X001100Y018750D01*
-X001265Y018750D01*
-X001100Y017625D02*
-X001100Y016625D01*
-X001100Y015750D01*
-X001265Y015750D01*
-X001100Y014625D02*
-X001100Y013625D01*
-X001100Y012750D01*
-X001265Y012750D01*
-X001100Y011625D02*
-X001100Y010625D01*
-X001100Y009750D01*
-X001265Y009750D01*
-X001100Y008625D02*
-X001100Y007625D01*
-X001100Y006750D01*
-X001265Y006750D01*
-X001100Y005625D02*
-X001100Y004625D01*
-X001100Y003750D01*
-X001265Y003750D01*
-X001100Y002625D02*
-X001100Y001625D01*
-X001100Y000750D01*
-X001265Y000750D01*
-X001100Y002625D02*
-X005100Y002625D01*
-X005100Y001625D02*
-X004100Y001625D01*
-X004100Y002250D01*
-X002100Y002250D01*
-X002100Y001625D01*
-X002100Y000750D01*
-X001935Y000750D01*
-X001935Y003750D02*
-X002100Y003750D01*
-X002100Y004625D01*
-X002100Y005250D01*
-X004100Y005250D01*
-X004100Y004625D01*
-X005100Y004625D01*
-X005100Y005625D02*
-X001100Y005625D01*
-X001100Y008625D02*
-X005100Y008625D01*
-X005100Y007625D02*
-X004100Y007625D01*
-X004100Y008250D01*
-X002100Y008250D01*
-X002100Y007625D01*
-X002100Y006750D01*
-X001935Y006750D01*
-X001935Y009750D02*
-X002100Y009750D01*
-X002100Y010625D01*
-X002100Y011250D01*
-X004100Y011250D01*
-X004100Y010625D01*
-X005100Y010625D01*
-X005100Y011625D02*
-X001100Y011625D01*
-X001100Y014625D02*
-X005100Y014625D01*
-X005100Y013625D02*
-X004100Y013625D01*
-X004100Y014250D01*
-X002100Y014250D01*
-X002100Y013625D01*
-X002100Y012750D01*
-X001935Y012750D01*
-X001935Y015750D02*
-X002100Y015750D01*
-X002100Y016625D01*
-X002100Y017250D01*
-X004100Y017250D01*
-X004100Y016625D01*
-X005100Y016625D01*
-X005100Y017625D02*
-X001100Y017625D01*
-X001100Y020625D02*
-X005100Y020625D01*
-X005100Y021625D02*
-X003100Y021625D01*
-X003100Y022625D01*
-X003100Y019625D02*
-X003100Y018625D01*
-X005100Y018625D01*
-X005100Y019625D02*
-X004100Y019625D01*
-X004100Y020250D01*
-X002100Y020250D01*
-X002100Y019625D01*
-X002100Y018750D01*
-X001935Y018750D01*
-X001935Y021750D02*
-X002100Y021750D01*
-X002100Y022625D01*
-X002100Y023250D01*
-X004100Y023250D01*
-X004100Y022625D01*
-X005100Y022625D01*
-X005100Y025625D02*
-X004100Y025625D01*
-X004100Y026250D01*
-X002100Y026250D01*
-X002100Y025625D01*
-X002100Y024750D01*
-X001935Y024750D01*
-X001265Y024750D02*
-X001100Y024750D01*
-X001100Y025625D01*
-X001100Y026625D01*
-X005100Y026625D01*
-X005100Y029625D02*
-X001100Y029625D01*
-X001100Y028625D01*
-X001100Y027750D01*
-X001265Y027750D01*
-X003100Y016625D02*
-X003100Y015625D01*
-X005100Y015625D01*
-X005100Y012625D02*
-X003100Y012625D01*
-X003100Y013625D01*
-X003100Y010625D02*
-X003100Y009625D01*
-X005100Y009625D01*
-X005100Y006625D02*
-X003100Y006625D01*
-X003100Y007625D01*
-X003100Y004625D02*
-X003100Y003625D01*
-X005100Y003625D01*
-X005100Y000625D02*
-X003100Y000625D01*
-X003100Y001625D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GTO b/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GTO
deleted file mode 100644
index 3b72377..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GTO
+++ /dev/null
@@ -1,744 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0030*%
-%ADD12C,0.0160*%
-%ADD13C,0.0020*%
-%ADD14C,0.0050*%
-%ADD15C,0.0010*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X000865Y002575D02*
-X001112Y002575D01*
-X001970Y002575D02*
-X002217Y002575D01*
-X002093Y002452D02*
-X002093Y002699D01*
-X002707Y002699D02*
-X002707Y002637D01*
-X002768Y002575D01*
-X002892Y002575D01*
-X002953Y002513D01*
-X002953Y002452D01*
-X002892Y002390D01*
-X002768Y002390D01*
-X002707Y002452D01*
-X002707Y002699D02*
-X002768Y002760D01*
-X002892Y002760D01*
-X002953Y002699D01*
-X003495Y002553D02*
-X003495Y002456D01*
-X003543Y002408D01*
-X003592Y002408D01*
-X003640Y002456D01*
-X003640Y002553D01*
-X003688Y002601D01*
-X003737Y002601D01*
-X003785Y002553D01*
-X003785Y002456D01*
-X003737Y002408D01*
-X003640Y001717D02*
-X003640Y001524D01*
-X003543Y001621D02*
-X003737Y001621D01*
-X003640Y000833D02*
-X003640Y000640D01*
-X003495Y002553D02*
-X003543Y002601D01*
-X003640Y003640D02*
-X003640Y003833D01*
-X003640Y004524D02*
-X003640Y004717D01*
-X003543Y004621D02*
-X003737Y004621D01*
-X003737Y005408D02*
-X003785Y005456D01*
-X003785Y005553D01*
-X003737Y005601D01*
-X003688Y005601D01*
-X003640Y005553D01*
-X003640Y005456D01*
-X003592Y005408D01*
-X003543Y005408D01*
-X003495Y005456D01*
-X003495Y005553D01*
-X003543Y005601D01*
-X003640Y006640D02*
-X003640Y006833D01*
-X003640Y007524D02*
-X003640Y007717D01*
-X003543Y007621D02*
-X003737Y007621D01*
-X003737Y008408D02*
-X003785Y008456D01*
-X003785Y008553D01*
-X003737Y008601D01*
-X003688Y008601D01*
-X003640Y008553D01*
-X003640Y008456D01*
-X003592Y008408D01*
-X003543Y008408D01*
-X003495Y008456D01*
-X003495Y008553D01*
-X003543Y008601D01*
-X003640Y009640D02*
-X003640Y009833D01*
-X003640Y010524D02*
-X003640Y010717D01*
-X003543Y010621D02*
-X003737Y010621D01*
-X003737Y011408D02*
-X003785Y011456D01*
-X003785Y011553D01*
-X003737Y011601D01*
-X003688Y011601D01*
-X003640Y011553D01*
-X003640Y011456D01*
-X003592Y011408D01*
-X003543Y011408D01*
-X003495Y011456D01*
-X003495Y011553D01*
-X003543Y011601D01*
-X003640Y012640D02*
-X003640Y012833D01*
-X003640Y013524D02*
-X003640Y013717D01*
-X003543Y013621D02*
-X003737Y013621D01*
-X003737Y014408D02*
-X003785Y014456D01*
-X003785Y014553D01*
-X003737Y014601D01*
-X003688Y014601D01*
-X003640Y014553D01*
-X003640Y014456D01*
-X003592Y014408D01*
-X003543Y014408D01*
-X003495Y014456D01*
-X003495Y014553D01*
-X003543Y014601D01*
-X003640Y015640D02*
-X003640Y015833D01*
-X003640Y016524D02*
-X003640Y016717D01*
-X003543Y016621D02*
-X003737Y016621D01*
-X003737Y017408D02*
-X003785Y017456D01*
-X003785Y017553D01*
-X003737Y017601D01*
-X003688Y017601D01*
-X003640Y017553D01*
-X003640Y017456D01*
-X003592Y017408D01*
-X003543Y017408D01*
-X003495Y017456D01*
-X003495Y017553D01*
-X003543Y017601D01*
-X003640Y018640D02*
-X003640Y018833D01*
-X003640Y019524D02*
-X003640Y019717D01*
-X003543Y019621D02*
-X003737Y019621D01*
-X003737Y020408D02*
-X003785Y020456D01*
-X003785Y020553D01*
-X003737Y020601D01*
-X003688Y020601D01*
-X003640Y020553D01*
-X003640Y020456D01*
-X003592Y020408D01*
-X003543Y020408D01*
-X003495Y020456D01*
-X003495Y020553D01*
-X003543Y020601D01*
-X003640Y021640D02*
-X003640Y021833D01*
-X003640Y022524D02*
-X003640Y022717D01*
-X003543Y022621D02*
-X003737Y022621D01*
-X003737Y023408D02*
-X003785Y023456D01*
-X003785Y023553D01*
-X003737Y023601D01*
-X003688Y023601D01*
-X003640Y023553D01*
-X003640Y023456D01*
-X003592Y023408D01*
-X003543Y023408D01*
-X003495Y023456D01*
-X003495Y023553D01*
-X003543Y023601D01*
-X003640Y024640D02*
-X003640Y024833D01*
-X003640Y025524D02*
-X003640Y025717D01*
-X003543Y025621D02*
-X003737Y025621D01*
-X003737Y026408D02*
-X003785Y026456D01*
-X003785Y026553D01*
-X003737Y026601D01*
-X003688Y026601D01*
-X003640Y026553D01*
-X003640Y026456D01*
-X003592Y026408D01*
-X003543Y026408D01*
-X003495Y026456D01*
-X003495Y026553D01*
-X003543Y026601D01*
-X003640Y027640D02*
-X003640Y027833D01*
-X003640Y028524D02*
-X003640Y028717D01*
-X003543Y028621D02*
-X003737Y028621D01*
-X003737Y029408D02*
-X003785Y029456D01*
-X003785Y029553D01*
-X003737Y029601D01*
-X003688Y029601D01*
-X003640Y029553D01*
-X003640Y029456D01*
-X003592Y029408D01*
-X003543Y029408D01*
-X003495Y029456D01*
-X003495Y029553D01*
-X003543Y029601D01*
-X002953Y029513D02*
-X002953Y029452D01*
-X002892Y029390D01*
-X002768Y029390D01*
-X002707Y029452D01*
-X002768Y029575D02*
-X002707Y029637D01*
-X002707Y029699D01*
-X002768Y029760D01*
-X002892Y029760D01*
-X002953Y029699D01*
-X002892Y029575D02*
-X002953Y029513D01*
-X002892Y029575D02*
-X002768Y029575D01*
-X002217Y029575D02*
-X001970Y029575D01*
-X002093Y029452D02*
-X002093Y029699D01*
-X001112Y029575D02*
-X000865Y029575D01*
-D12*
-X000225Y027125D02*
-X006600Y027125D01*
-X006600Y024125D02*
-X000225Y024125D01*
-X000225Y021125D02*
-X006600Y021125D01*
-X006600Y018125D02*
-X000225Y018125D01*
-X000225Y015125D02*
-X006600Y015125D01*
-X006600Y012125D02*
-X000225Y012125D01*
-X000225Y009125D02*
-X006600Y009125D01*
-X006600Y006125D02*
-X000225Y006125D01*
-X000225Y003125D02*
-X006600Y003125D01*
-D13*
-X006590Y004510D02*
-X006590Y004657D01*
-X006590Y004583D02*
-X006370Y004583D01*
-X006443Y004510D01*
-X006407Y001657D02*
-X006553Y001510D01*
-X006590Y001547D01*
-X006590Y001620D01*
-X006553Y001657D01*
-X006407Y001657D01*
-X006370Y001620D01*
-X006370Y001547D01*
-X006407Y001510D01*
-X006553Y001510D01*
-X006590Y007510D02*
-X006443Y007657D01*
-X006407Y007657D01*
-X006370Y007620D01*
-X006370Y007547D01*
-X006407Y007510D01*
-X006590Y007510D02*
-X006590Y007657D01*
-X006553Y010510D02*
-X006590Y010547D01*
-X006590Y010620D01*
-X006553Y010657D01*
-X006517Y010657D01*
-X006480Y010620D01*
-X006480Y010583D01*
-X006480Y010620D02*
-X006443Y010657D01*
-X006407Y010657D01*
-X006370Y010620D01*
-X006370Y010547D01*
-X006407Y010510D01*
-X006480Y013510D02*
-X006480Y013657D01*
-X006590Y013620D02*
-X006370Y013620D01*
-X006480Y013510D01*
-X006480Y016510D02*
-X006370Y016510D01*
-X006370Y016657D01*
-X006443Y016620D02*
-X006480Y016657D01*
-X006553Y016657D01*
-X006590Y016620D01*
-X006590Y016547D01*
-X006553Y016510D01*
-X006480Y016510D02*
-X006443Y016583D01*
-X006443Y016620D01*
-X006480Y019510D02*
-X006407Y019583D01*
-X006370Y019657D01*
-X006480Y019620D02*
-X006480Y019510D01*
-X006553Y019510D01*
-X006590Y019547D01*
-X006590Y019620D01*
-X006553Y019657D01*
-X006517Y019657D01*
-X006480Y019620D01*
-X006553Y022510D02*
-X006407Y022657D01*
-X006370Y022657D01*
-X006370Y022510D01*
-X006553Y022510D02*
-X006590Y022510D01*
-X006553Y025510D02*
-X006517Y025510D01*
-X006480Y025547D01*
-X006480Y025620D01*
-X006517Y025657D01*
-X006553Y025657D01*
-X006590Y025620D01*
-X006590Y025547D01*
-X006553Y025510D01*
-X006480Y025547D02*
-X006443Y025510D01*
-X006407Y025510D01*
-X006370Y025547D01*
-X006370Y025620D01*
-X006407Y025657D01*
-X006443Y025657D01*
-X006480Y025620D01*
-X006407Y028510D02*
-X006443Y028510D01*
-X006480Y028547D01*
-X006480Y028657D01*
-X006553Y028657D02*
-X006407Y028657D01*
-X006370Y028620D01*
-X006370Y028547D01*
-X006407Y028510D01*
-X006553Y028510D02*
-X006590Y028547D01*
-X006590Y028620D01*
-X006553Y028657D01*
-X000465Y028620D02*
-X000428Y028657D01*
-X000282Y028657D01*
-X000245Y028620D01*
-X000245Y028547D01*
-X000282Y028510D01*
-X000318Y028510D01*
-X000355Y028547D01*
-X000355Y028657D01*
-X000465Y028620D02*
-X000465Y028547D01*
-X000428Y028510D01*
-X000392Y025657D02*
-X000428Y025657D01*
-X000465Y025620D01*
-X000465Y025547D01*
-X000428Y025510D01*
-X000392Y025510D01*
-X000355Y025547D01*
-X000355Y025620D01*
-X000392Y025657D01*
-X000355Y025620D02*
-X000318Y025657D01*
-X000282Y025657D01*
-X000245Y025620D01*
-X000245Y025547D01*
-X000282Y025510D01*
-X000318Y025510D01*
-X000355Y025547D01*
-X000282Y022657D02*
-X000245Y022657D01*
-X000245Y022510D01*
-X000282Y022657D02*
-X000428Y022510D01*
-X000465Y022510D01*
-X000428Y019657D02*
-X000392Y019657D01*
-X000355Y019620D01*
-X000355Y019510D01*
-X000428Y019510D01*
-X000465Y019547D01*
-X000465Y019620D01*
-X000428Y019657D01*
-X000282Y019583D02*
-X000355Y019510D01*
-X000282Y019583D02*
-X000245Y019657D01*
-X000245Y016657D02*
-X000245Y016510D01*
-X000355Y016510D01*
-X000318Y016583D01*
-X000318Y016620D01*
-X000355Y016657D01*
-X000428Y016657D01*
-X000465Y016620D01*
-X000465Y016547D01*
-X000428Y016510D01*
-X000355Y013657D02*
-X000355Y013510D01*
-X000245Y013620D01*
-X000465Y013620D01*
-X000392Y010657D02*
-X000428Y010657D01*
-X000465Y010620D01*
-X000465Y010547D01*
-X000428Y010510D01*
-X000355Y010583D02*
-X000355Y010620D01*
-X000392Y010657D01*
-X000355Y010620D02*
-X000318Y010657D01*
-X000282Y010657D01*
-X000245Y010620D01*
-X000245Y010547D01*
-X000282Y010510D01*
-X000282Y007657D02*
-X000245Y007620D01*
-X000245Y007547D01*
-X000282Y007510D01*
-X000282Y007657D02*
-X000318Y007657D01*
-X000465Y007510D01*
-X000465Y007657D01*
-X000465Y004657D02*
-X000465Y004510D01*
-X000465Y004583D02*
-X000245Y004583D01*
-X000318Y004510D01*
-X000282Y001657D02*
-X000245Y001620D01*
-X000245Y001547D01*
-X000282Y001510D01*
-X000428Y001510D01*
-X000282Y001657D01*
-X000428Y001657D01*
-X000465Y001620D01*
-X000465Y001547D01*
-X000428Y001510D01*
-D14*
-X003870Y000155D02*
-X003870Y003095D01*
-X005520Y003095D01*
-X006320Y003095D01*
-X006320Y000155D01*
-X005520Y000155D01*
-X003870Y000155D01*
-X003870Y003155D02*
-X003870Y006095D01*
-X005520Y006095D01*
-X006320Y006095D01*
-X006320Y003155D01*
-X005520Y003155D01*
-X003870Y003155D01*
-X003870Y006155D02*
-X003870Y009095D01*
-X005520Y009095D01*
-X006320Y009095D01*
-X006320Y006155D01*
-X005520Y006155D01*
-X003870Y006155D01*
-X003870Y009155D02*
-X003870Y012095D01*
-X005520Y012095D01*
-X006320Y012095D01*
-X006320Y009155D01*
-X005520Y009155D01*
-X003870Y009155D01*
-X003870Y012155D02*
-X003870Y015095D01*
-X005520Y015095D01*
-X006320Y015095D01*
-X006320Y012155D01*
-X005520Y012155D01*
-X003870Y012155D01*
-X003870Y015155D02*
-X003870Y018095D01*
-X005520Y018095D01*
-X006320Y018095D01*
-X006320Y015155D01*
-X005520Y015155D01*
-X003870Y015155D01*
-X003870Y018155D02*
-X003870Y021095D01*
-X005520Y021095D01*
-X006320Y021095D01*
-X006320Y018155D01*
-X005520Y018155D01*
-X003870Y018155D01*
-X003870Y021155D02*
-X003870Y024095D01*
-X005520Y024095D01*
-X006320Y024095D01*
-X006320Y021155D01*
-X005520Y021155D01*
-X003870Y021155D01*
-X003870Y024155D02*
-X003870Y027095D01*
-X005520Y027095D01*
-X006320Y027095D01*
-X006320Y024155D01*
-X005520Y024155D01*
-X003870Y024155D01*
-X003870Y027155D02*
-X003870Y030095D01*
-X005520Y030095D01*
-X006320Y030095D01*
-X006320Y027155D01*
-X005520Y027155D01*
-X003870Y027155D01*
-X005520Y027155D02*
-X005520Y030095D01*
-X005520Y027095D02*
-X005520Y024155D01*
-X005520Y024095D02*
-X005520Y021155D01*
-X005520Y021095D02*
-X005520Y018155D01*
-X005520Y018095D02*
-X005520Y015155D01*
-X005520Y015095D02*
-X005520Y012155D01*
-X005520Y012095D02*
-X005520Y009155D01*
-X005520Y009095D02*
-X005520Y006155D01*
-X005520Y006095D02*
-X005520Y003155D01*
-X005520Y003095D02*
-X005520Y000155D01*
-D15*
-X001650Y001080D02*
-X001625Y001055D01*
-X001575Y001055D01*
-X001550Y001080D01*
-X001650Y001180D01*
-X001650Y001080D01*
-X001650Y001180D02*
-X001625Y001205D01*
-X001575Y001205D01*
-X001550Y001180D01*
-X001550Y001080D01*
-X001502Y001055D02*
-X001402Y001055D01*
-X001452Y001055D02*
-X001452Y001205D01*
-X001402Y001155D01*
-X001355Y001180D02*
-X001330Y001205D01*
-X001280Y001205D01*
-X001255Y001180D01*
-X001255Y001080D01*
-X001280Y001055D01*
-X001330Y001055D01*
-X001355Y001080D01*
-X001280Y004055D02*
-X001330Y004055D01*
-X001355Y004080D01*
-X001402Y004080D02*
-X001427Y004055D01*
-X001477Y004055D01*
-X001502Y004080D01*
-X001502Y004180D01*
-X001477Y004205D01*
-X001427Y004205D01*
-X001402Y004180D01*
-X001402Y004155D01*
-X001427Y004130D01*
-X001502Y004130D01*
-X001355Y004180D02*
-X001330Y004205D01*
-X001280Y004205D01*
-X001255Y004180D01*
-X001255Y004080D01*
-X001280Y004055D01*
-X001280Y007055D02*
-X001330Y007055D01*
-X001355Y007080D01*
-X001402Y007080D02*
-X001402Y007105D01*
-X001427Y007130D01*
-X001477Y007130D01*
-X001502Y007105D01*
-X001502Y007080D01*
-X001477Y007055D01*
-X001427Y007055D01*
-X001402Y007080D01*
-X001427Y007130D02*
-X001402Y007155D01*
-X001402Y007180D01*
-X001427Y007205D01*
-X001477Y007205D01*
-X001502Y007180D01*
-X001502Y007155D01*
-X001477Y007130D01*
-X001355Y007180D02*
-X001330Y007205D01*
-X001280Y007205D01*
-X001255Y007180D01*
-X001255Y007080D01*
-X001280Y007055D01*
-X001280Y010055D02*
-X001330Y010055D01*
-X001355Y010080D01*
-X001402Y010080D02*
-X001402Y010055D01*
-X001402Y010080D02*
-X001502Y010180D01*
-X001502Y010205D01*
-X001402Y010205D01*
-X001355Y010180D02*
-X001330Y010205D01*
-X001280Y010205D01*
-X001255Y010180D01*
-X001255Y010080D01*
-X001280Y010055D01*
-X001280Y013055D02*
-X001330Y013055D01*
-X001355Y013080D01*
-X001402Y013080D02*
-X001427Y013055D01*
-X001477Y013055D01*
-X001502Y013080D01*
-X001502Y013105D01*
-X001477Y013130D01*
-X001402Y013130D01*
-X001402Y013080D01*
-X001402Y013130D02*
-X001452Y013180D01*
-X001502Y013205D01*
-X001355Y013180D02*
-X001330Y013205D01*
-X001280Y013205D01*
-X001255Y013180D01*
-X001255Y013080D01*
-X001280Y013055D01*
-X001280Y016055D02*
-X001330Y016055D01*
-X001355Y016080D01*
-X001402Y016080D02*
-X001427Y016055D01*
-X001477Y016055D01*
-X001502Y016080D01*
-X001502Y016130D01*
-X001477Y016155D01*
-X001452Y016155D01*
-X001402Y016130D01*
-X001402Y016205D01*
-X001502Y016205D01*
-X001355Y016180D02*
-X001330Y016205D01*
-X001280Y016205D01*
-X001255Y016180D01*
-X001255Y016080D01*
-X001280Y016055D01*
-X001280Y019055D02*
-X001330Y019055D01*
-X001355Y019080D01*
-X001402Y019130D02*
-X001502Y019130D01*
-X001477Y019055D02*
-X001477Y019205D01*
-X001402Y019130D01*
-X001355Y019180D02*
-X001330Y019205D01*
-X001280Y019205D01*
-X001255Y019180D01*
-X001255Y019080D01*
-X001280Y019055D01*
-X001280Y022055D02*
-X001330Y022055D01*
-X001355Y022080D01*
-X001402Y022080D02*
-X001427Y022055D01*
-X001477Y022055D01*
-X001502Y022080D01*
-X001502Y022105D01*
-X001477Y022130D01*
-X001452Y022130D01*
-X001477Y022130D02*
-X001502Y022155D01*
-X001502Y022180D01*
-X001477Y022205D01*
-X001427Y022205D01*
-X001402Y022180D01*
-X001355Y022180D02*
-X001330Y022205D01*
-X001280Y022205D01*
-X001255Y022180D01*
-X001255Y022080D01*
-X001280Y022055D01*
-X001280Y025055D02*
-X001330Y025055D01*
-X001355Y025080D01*
-X001402Y025055D02*
-X001502Y025155D01*
-X001502Y025180D01*
-X001477Y025205D01*
-X001427Y025205D01*
-X001402Y025180D01*
-X001355Y025180D02*
-X001330Y025205D01*
-X001280Y025205D01*
-X001255Y025180D01*
-X001255Y025080D01*
-X001280Y025055D01*
-X001402Y025055D02*
-X001502Y025055D01*
-X001502Y028055D02*
-X001402Y028055D01*
-X001452Y028055D02*
-X001452Y028205D01*
-X001402Y028155D01*
-X001355Y028180D02*
-X001330Y028205D01*
-X001280Y028205D01*
-X001255Y028180D01*
-X001255Y028080D01*
-X001280Y028055D01*
-X001330Y028055D01*
-X001355Y028080D01*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GTP b/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GTP
deleted file mode 100644
index 9c03f2a..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GTP
+++ /dev/null
@@ -1,39 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11R,0.0433X0.0394*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X001265Y000750D03*
-X001935Y000750D03*
-X001935Y003750D03*
-X001265Y003750D03*
-X001265Y006750D03*
-X001935Y006750D03*
-X001935Y009750D03*
-X001265Y009750D03*
-X001265Y012750D03*
-X001935Y012750D03*
-X001935Y015750D03*
-X001265Y015750D03*
-X001265Y018750D03*
-X001265Y021750D03*
-X001935Y021750D03*
-X001935Y018750D03*
-X001935Y024750D03*
-X001265Y024750D03*
-X001265Y027750D03*
-X001935Y027750D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GTS b/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GTS
deleted file mode 100644
index 074b513..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.GTS
+++ /dev/null
@@ -1,101 +0,0 @@
-G75*
-%MOIN*%
-%OFA0B0*%
-%FSLAX24Y24*%
-%IPPOS*%
-%LPD*%
-%AMOC8*
-5,1,8,0,0,1.08239X$1,22.5*
-%
-%ADD10C,0.0000*%
-%ADD11C,0.0640*%
-%ADD12R,0.0473X0.0434*%
-D10*
-X000100Y000125D02*
-X000100Y030121D01*
-X006720Y030121D01*
-X006720Y000125D01*
-X000100Y000125D01*
-D11*
-X001100Y001625D03*
-X001100Y004625D03*
-X001100Y007625D03*
-X001100Y010625D03*
-X001100Y013625D03*
-X001100Y016625D03*
-X001100Y019625D03*
-X001100Y022625D03*
-X001100Y025625D03*
-X001100Y028625D03*
-X002100Y028625D03*
-X002100Y025625D03*
-X002100Y022625D03*
-X002100Y019625D03*
-X002100Y016625D03*
-X002100Y013625D03*
-X002100Y010625D03*
-X002100Y007625D03*
-X002100Y004625D03*
-X002100Y001625D03*
-X003100Y001625D03*
-X003100Y004625D03*
-X003100Y007625D03*
-X003100Y010625D03*
-X003100Y013625D03*
-X003100Y016625D03*
-X003100Y019625D03*
-X003100Y022625D03*
-X003100Y025625D03*
-X003100Y028625D03*
-X005100Y028625D03*
-X005100Y027625D03*
-X005100Y026625D03*
-X005100Y025625D03*
-X005100Y024625D03*
-X005100Y023625D03*
-X005100Y022625D03*
-X005100Y021625D03*
-X005100Y020625D03*
-X005100Y019625D03*
-X005100Y018625D03*
-X005100Y017625D03*
-X005100Y016625D03*
-X005100Y015625D03*
-X005100Y014625D03*
-X005100Y013625D03*
-X005100Y012625D03*
-X005100Y011625D03*
-X005100Y010625D03*
-X005100Y009625D03*
-X005100Y008625D03*
-X005100Y007625D03*
-X005100Y006625D03*
-X005100Y005625D03*
-X005100Y004625D03*
-X005100Y003625D03*
-X005100Y002625D03*
-X005100Y001625D03*
-X005100Y000625D03*
-X005100Y029625D03*
-D12*
-X001935Y027750D03*
-X001265Y027750D03*
-X001265Y024750D03*
-X001935Y024750D03*
-X001935Y021750D03*
-X001935Y018750D03*
-X001265Y018750D03*
-X001265Y021750D03*
-X001265Y015750D03*
-X001935Y015750D03*
-X001935Y012750D03*
-X001265Y012750D03*
-X001265Y009750D03*
-X001935Y009750D03*
-X001935Y006750D03*
-X001265Y006750D03*
-X001265Y003750D03*
-X001935Y003750D03*
-X001935Y000750D03*
-X001265Y000750D03*
-M02*
diff --git a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.TXT b/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.TXT
deleted file mode 100644
index 3f64e35..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.TXT
+++ /dev/null
@@ -1,67 +0,0 @@
-%
-M48
-M72
-T01C0.0400
-%
-T01
-X1100Y1625
-X1100Y4625
-X1100Y7625
-X1100Y10625
-X1100Y13625
-X1100Y16625
-X1100Y19625
-X1100Y22625
-X1100Y25625
-X1100Y28625
-X2100Y28625
-X2100Y25625
-X2100Y22625
-X2100Y19625
-X2100Y16625
-X2100Y13625
-X2100Y10625
-X2100Y7625
-X2100Y4625
-X2100Y1625
-X3100Y1625
-X3100Y4625
-X3100Y7625
-X3100Y10625
-X3100Y13625
-X3100Y16625
-X3100Y19625
-X3100Y22625
-X3100Y25625
-X3100Y28625
-X5100Y28625
-X5100Y27625
-X5100Y26625
-X5100Y25625
-X5100Y24625
-X5100Y23625
-X5100Y22625
-X5100Y21625
-X5100Y20625
-X5100Y19625
-X5100Y18625
-X5100Y17625
-X5100Y16625
-X5100Y15625
-X5100Y14625
-X5100Y13625
-X5100Y12625
-X5100Y11625
-X5100Y10625
-X5100Y9625
-X5100Y8625
-X5100Y7625
-X5100Y6625
-X5100Y5625
-X5100Y4625
-X5100Y3625
-X5100Y2625
-X5100Y1625
-X5100Y625
-X5100Y29625
-M30
diff --git a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.dri b/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.dri
deleted file mode 100644
index ae18749..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.dri
+++ /dev/null
@@ -1,36 +0,0 @@
-Generated by EAGLE CAM Processor 6.5.0
-
-Drill Station Info File: /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/pwm_adapter.dri
-
- Date              : 19 Aug 2014 00:16:30
- Drills            : generated
- Device            : Excellon drill station
-
-Parameter settings:
-
- Tolerance Drill + :  0.00 %
- Tolerance Drill - :  0.00 %
- Rotate            : no
- Mirror            : no
- Optimize          : yes
- Auto fit          : yes
- OffsetX           : 0inch
- OffsetY           : 0inch
- Layers            : Drills Holes
-
-Drill File Info:
-
- Data Mode         : Absolute
- Units             : 1/10000 Inch
-
-Drills used:
-
- Code  Size       used
-
- T01   0.0400inch    60
-
-Total number of drills: 60
-
-Plotfiles:
-
- /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/pwm_adapter.TXT
diff --git a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.gpi b/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.gpi
deleted file mode 100644
index 2e8961a..0000000
--- a/roborio_expansion_boards/seed_studio_20140818/pwm_adapter/pwm_adapter.gpi
+++ /dev/null
@@ -1,41 +0,0 @@
-Generated by EAGLE CAM Processor 6.5.0
-
-Photoplotter Info File: /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/pwm_adapter.gpi
-
- Date              : 19 Aug 2014 00:16:30
- Plotfile          : /home/brians/Desktop/git_frc971/2014/trunk/src/roborio_expansion_boards/pwm_adapter.GTL
- Apertures         : generated: 
- Device            : Gerber RS-274-X photoplotter, coordinate format 2.4 inch
-
-Parameter settings:
-
- Emulate Apertures : no
- Tolerance Draw  + :  0.00 %
- Tolerance Draw  - :  0.00 %
- Tolerance Flash + :  0.00 %
- Tolerance Flash - :  0.00 %
- Rotate            : no
- Mirror            : no
- Optimize          : yes
- Auto fit          : yes
- OffsetX           : 0inch
- OffsetY           : 0inch
-
-Plotfile Info:
-
- Coordinate Format : 2.4
- Coordinate Units  : Inch
- Data Mode         : Absolute
- Zero Suppression  : None
- End Of Block      : *
-
-Apertures used:
-
- Code     Shape     Size                  used
-
- D10      draw      0.0000inch               4
- D11      draw      0.0020inch             446
- D12      round     0.0600inch              60
- D13      rectangle 0.0433inch x 0.0394inch    20
- D14      draw      0.0160inch             120
-